Update eclipse.org-common

Signed-off-by: Christopher Guindon <chris.guindon@eclipse-foundation.org>
Change-Id: Ice6987edad66f1eec7e8f07783aa8958b5c5e759
diff --git a/eclipse.org-common/classes/ads/adReports.class.php b/eclipse.org-common/classes/ads/adReports.class.php
index 259fb4b..feb773c 100644
--- a/eclipse.org-common/classes/ads/adReports.class.php
+++ b/eclipse.org-common/classes/ads/adReports.class.php
@@ -29,7 +29,7 @@
 
   private $state = "";
 
-  public function AdReports() {
+  public function __construct() {
 
     $this->App = new App();
 
diff --git a/eclipse.org-common/classes/ads/campaign.class.php b/eclipse.org-common/classes/ads/campaign.class.php
index b296303..9435e33 100644
--- a/eclipse.org-common/classes/ads/campaign.class.php
+++ b/eclipse.org-common/classes/ads/campaign.class.php
@@ -109,7 +109,7 @@
   private $campaign_new_clicks = "";
 
 
-  public function Campaign() {
+  public function __construct() {
     $this->App = new App();
     // Require login for this page.
     $Session = $this->App->useSession(true);
diff --git a/eclipse.org-common/classes/ads/campaignImpression.class.php b/eclipse.org-common/classes/ads/campaignImpression.class.php
index e4aa40f..0a72ea2 100644
--- a/eclipse.org-common/classes/ads/campaignImpression.class.php
+++ b/eclipse.org-common/classes/ads/campaignImpression.class.php
@@ -53,7 +53,7 @@
    * @param string $_source
    * @param string $_remote_addr
    */
-  function CampaignImpression($_campaign_key, $_source, $_remote_addr) {
+  function __construct($_campaign_key, $_source, $_remote_addr) {
     $this->campaign_key = $_campaign_key;
     $this->source = $_source;
     $this->remote_addr = $_remote_addr;
diff --git a/eclipse.org-common/classes/ads/campaignManager.class.php b/eclipse.org-common/classes/ads/campaignManager.class.php
index 5c4005f..83b60da 100644
--- a/eclipse.org-common/classes/ads/campaignManager.class.php
+++ b/eclipse.org-common/classes/ads/campaignManager.class.php
@@ -38,7 +38,7 @@
   private $page_header_html = '';
 
 
-  public function CampaignManager() {
+  public function __construct() {
     parent::__construct();
 
     $Session = $this->App->useSession(true);
diff --git a/eclipse.org-common/classes/ads/downloadsBannerAd.class.php b/eclipse.org-common/classes/ads/downloadsBannerAd.class.php
index b120c5d..1979360 100644
--- a/eclipse.org-common/classes/ads/downloadsBannerAd.class.php
+++ b/eclipse.org-common/classes/ads/downloadsBannerAd.class.php
@@ -1,44 +1,36 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 2016 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2016, 2018 Eclipse Foundation and others.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Eric Poirier(Eclipse Foundation)
- *******************************************************************************/
+ *   Eric Poirier (Eclipse Foundation) - initial API and implementation
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+
 require_once("eclipseAds.class.php");
 
 class DownloadsBannerAd extends EclipseAds {
 
   public function __construct() {
-    parent::__construct($source);
+    parent::__construct();
 
-    $campaign = "PROMO_FRANCE2017_DOWNLOADS_PAGE";
-
+    $campaign = "";
     $content['body'] ="";
     $content['banner_styles'] = "";
 
-    if (date("Y/m/d") >= "2017/04/21" && date("Y/m/d") < "2017/05/06") {
-      $content['body'] ="Early registration prices end May 5! EclipseCon France 2017, June 21 - 22, Toulouse";
-      $content['banner_styles'] = "background-color:#ce2227;";
+    if ((time() >= strtotime("2018/02/26") && time() < strtotime("2018/04/05")) || (time() >= strtotime("2018/04/30") && time() < strtotime("2018/05/11"))) {
+      $content['body'] ="Register now for FOSS4G NA 2018 ~ St. Louis, Missouri ~ May 14 - 17, 2018";
+      $campaign = "PROMO_F4G2018_DOWNLOADS_PAGE";
     }
 
-    if (date("Y/m/d") >= "2017/05/10" && date("Y/m/d") < "2017/05/24") {
-      $content['body'] ="Register now for EclipseCon France 2017, June 21-22, Toulouse";
-      $content['banner_styles'] = "background-color:#3a7939;";
-    }
-
-    if (date("Y/m/d") >= "2017/06/07" && date("Y/m/d") < "2017/06/14") {
-      $content['body'] ="EclipseCon France: Two weeks left to register! June 21-22, Toulouse";
-      $content['banner_styles'] = "background-color:#F68B1F;";
-    }
-
-    if (date("Y/m/d") >= "2017/06/14" && date("Y/m/d") < "2017/06/21") {
-      $content['body'] ="Last week left to register for EclipseCon France! June 21-22, Toulouse";
-      $content['banner_styles'] = "background-color:#F68B1F;";
+    if ((time() >= strtotime("2018/04/16") && time() < strtotime("2018/04/30")) || (time() >= strtotime("2018/05/14") && time() < strtotime("2018/06/13"))) {
+      $content['body'] ="Register now for EclipseCon France 2018 ~ Toulouse, France ~ June 13 - 14, 2018";
+      $campaign = "PROMO_ECF2018_DOWNLOADS_PAGE";
     }
 
     $content['button_text'] = "Register Today!";
@@ -65,10 +57,11 @@
   protected function _build($layout = "", $type = "") {
 
     // Check if the ad should be printed depending on the date
-    if ((date("Y/m/d") >= "2017/04/21" && date("Y/m/d") < "2017/05/06") ||
-        (date("Y/m/d") >= "2017/05/10" && date("Y/m/d") < "2017/05/24") ||
-        (date("Y/m/d") >= "2017/06/07" && date("Y/m/d") < "2017/06/14") ||
-        (date("Y/m/d") >= "2017/06/14" && date("Y/m/d") < "2017/06/21")) {
+    if ((time() >= strtotime("2018/02/26") && time() < strtotime("2018/04/05")) || (time() >= strtotime("2018/04/30") && time() < strtotime("2018/05/11"))) {
+      $this->output = $this->ad->getHtml();
+    }
+
+    if ((time() >= strtotime("2018/04/16") && time() < strtotime("2018/04/30")) || (time() >= strtotime("2018/05/14") && time() < strtotime("2018/06/13"))) {
       $this->output = $this->ad->getHtml();
     }
   }
diff --git a/eclipse.org-common/classes/ads/eclipseAds.class.php b/eclipse.org-common/classes/ads/eclipseAds.class.php
index 06fe4fe..a101063 100644
--- a/eclipse.org-common/classes/ads/eclipseAds.class.php
+++ b/eclipse.org-common/classes/ads/eclipseAds.class.php
@@ -61,7 +61,7 @@
    * Constructor
    * @param string $source
    */
-  public function EclipseAds($source = "") {
+  public function __construct($source = "") {
     if ($source != "") {
       $this->source =  $source;
     }
diff --git a/eclipse.org-common/classes/ads/promotedPlugin.class.php b/eclipse.org-common/classes/ads/promotedPlugin.class.php
index 751a80b..250ee92 100644
--- a/eclipse.org-common/classes/ads/promotedPlugin.class.php
+++ b/eclipse.org-common/classes/ads/promotedPlugin.class.php
@@ -26,12 +26,12 @@
    * @param string $source
    *   The description of the location of the ad.
    */
-  public function PromotedPlugin($source = "") {
+  public function __construct($source = "") {
     parent::__construct($source);
 
-    /* Note: Keeping the next block as a reference. 
+    /* Note: Keeping the next block as a reference.
              If we decide to add the promoted plugins back to display */
-    
+
     /*$Ad = new Ad();
     $Ad->setTitle('Java 9 Support (Beta)');
     $this->_setMarketplaceNodeId('2393593', $Ad);
@@ -47,7 +47,7 @@
    * Custom implementation of _build()
    * @see EclipseAds::_build()
    */
-  protected function _build() {
+  protected function _build($layout = "", $type = "") {
     ob_start();
     include("tpl/promotedPlugin.tpl.php");
     $this->output = ob_get_clean();
diff --git a/eclipse.org-common/classes/ads/tpl/downloadsBannerAd.tpl.php b/eclipse.org-common/classes/ads/tpl/downloadsBannerAd.tpl.php
index 47aab36..262253f 100644
--- a/eclipse.org-common/classes/ads/tpl/downloadsBannerAd.tpl.php
+++ b/eclipse.org-common/classes/ads/tpl/downloadsBannerAd.tpl.php
@@ -1,24 +1,26 @@
 <?php
-/*******************************************************************************
- * Copyright (c) 2016 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2016, 2018 Eclipse Foundation and others.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Eric Poirier (Eclipse Foundation) - initial API and implementation
- *******************************************************************************/
+ *   Eric Poirier (Eclipse Foundation) - initial API and implementation
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 ?>
 
-<div class="downloads-bar-ad" style="<?php print $variables['banner_styles']?>">
+<div class="downloads-bar-ad">
   <div class="container">
     <div class="row">
       <div class="col-lg-20 col-md-18 downloads-bar-ad-white-shape">
         <p><?php print $variables['body']; ?></p>
       </div>
       <div class="col-lg-4 col-md-6 downloads-bar-ad-white-content">
-        <a class="btn btn-default" href="/go/<?php print $variables['button_url']; ?>"><?php print $variables['button_text']; ?></a>
+        <a class="btn btn-primary" href="/go/<?php print $variables['button_url']; ?>"><?php print $variables['button_text']; ?></a>
       </div>
     </div>
   </div>
diff --git a/eclipse.org-common/classes/directors/directors.class.php b/eclipse.org-common/classes/directors/directors.class.php
index d88c980..af77dcb 100644
--- a/eclipse.org-common/classes/directors/directors.class.php
+++ b/eclipse.org-common/classes/directors/directors.class.php
@@ -47,10 +47,12 @@
       // Replace periods in name
       $formatted_name = str_replace('.', '', $formatted_name);
 
+      $content = "";
       if (file_exists($file = $_SERVER['DOCUMENT_ROOT'] . $this->path_to_boardbio . '/' . $formatted_name . '.php')) {
         $content = file_get_contents($file);
       }
 
+      $img = "";
       if (!empty($info['OrganizationID'])) {
         $img = "<img src='http://www.eclipse.org/membership/scripts/get_image.php?id=". $info['OrganizationID'] ."&size=small'>";
       }
diff --git a/eclipse.org-common/classes/downloads/downloads.class.php b/eclipse.org-common/classes/downloads/downloads.class.php
index b6aba0f..f8318aa 100644
--- a/eclipse.org-common/classes/downloads/downloads.class.php
+++ b/eclipse.org-common/classes/downloads/downloads.class.php
@@ -14,7 +14,7 @@
 if(basename(__FILE__) == basename($_SERVER['PHP_SELF'])){exit();}
 
 require_once(dirname(__FILE__) . "/DownloadsProject.class.php");
-require_once(dirname(__FILE__) . "/../../../membership/promo/promos.php");
+require_once($_SERVER['DOCUMENT_ROOT'] . "/membership/promo/promos.php");
 require_once(dirname(__FILE__) . "/eclipseInstaller.php");
 require_once(dirname(__FILE__) . "/../ads/promotedDownloads.class.php");
 require_once(dirname(__FILE__) . "/../ads/downloadsBannerAd.class.php");
@@ -37,7 +37,7 @@
 
   public function __construct() {
 
-    $this->Installer = new EclipseInstaller('oxygen/R');
+    $this->Installer = new EclipseInstaller('oxygen/R2');
     $this->Installer->setInstallerLayout('layout_a');
 
     $this->PromotedDownloads = New PromotedDownloads();
@@ -77,7 +77,7 @@
     $Project->setProjectType($this->projects['runtime_platforms']['title']);
     $Project->setDownloadUrl64Bit('https://www.eclipse.org/jetty/download.html');
     $Project->setLearnMoreUrl('http://www.eclipse.org/jetty/');
-    $Project->setProjectsAttributes('container','style','margin-left:9.7%;');
+    $Project->setProjectsAttributes('container','class','jetty-spacing');
     $this->newProject($Project);
 
     // Runtime Platforms item
diff --git a/eclipse.org-common/classes/downloads/eclipseInstaller.php b/eclipse.org-common/classes/downloads/eclipseInstaller.php
index 8287684..49ba97b 100644
--- a/eclipse.org-common/classes/downloads/eclipseInstaller.php
+++ b/eclipse.org-common/classes/downloads/eclipseInstaller.php
@@ -31,7 +31,7 @@
   /**
    * Constructor
    */
-  function EclipseInstaller($release = NULL) {
+  function __construct($release = NULL) {
     parent::__construct();
     $this->_addPlaform('Mac OS X');
     $this->_addPlaform('Windows');
diff --git a/eclipse.org-common/classes/downloads/tpl/downloadsCategory.tpl.php b/eclipse.org-common/classes/downloads/tpl/downloadsCategory.tpl.php
index 08ed7c9..cc0334b 100644
--- a/eclipse.org-common/classes/downloads/tpl/downloadsCategory.tpl.php
+++ b/eclipse.org-common/classes/downloads/tpl/downloadsCategory.tpl.php
@@ -12,7 +12,7 @@
 ?>
 
 <!-- RUNTIMES PLATFORM -->
-<div id="runtime-platforms" class="downloads-section">
+<div id="<?php print strtolower(str_replace(" ", "-", $category['title'])); ?>" class="downloads-section">
   <div class="container">
     <h2><span class="downloads-title"><?php print $category['title']; ?></span></h2>
     <div class="row downloads-content-padding">
diff --git a/eclipse.org-common/classes/downloads/view/eclipseInstallerLayoutA.php b/eclipse.org-common/classes/downloads/view/eclipseInstallerLayoutA.php
index d16ce85..4819ea0 100644
--- a/eclipse.org-common/classes/downloads/view/eclipseInstallerLayoutA.php
+++ b/eclipse.org-common/classes/downloads/view/eclipseInstallerLayoutA.php
@@ -22,5 +22,5 @@
       <a class="<?php print $link['link_classes']; ?>" href="<?php print $link['url']; ?>" title="<?php print $link['text']; ?> Download"><?php print $link['text_prefix'] . ' ' . $link['text']; ?></a>
     <?php endforeach; ?>
   </p>
-  <p><a href="/downloads/eclipse-packages" class="grey-link">Download Packages</a></p>
+  <p><a href="/downloads/eclipse-packages" class="grey-link">Download Packages</a> | <a class="grey-link" href="/downloads/eclipse-packages/?show_instructions=TRUE#page-download" title="Instructions">Need Help?</a></p>
 </div>
\ No newline at end of file
diff --git a/eclipse.org-common/classes/friends/contribution.class.php b/eclipse.org-common/classes/friends/contribution.class.php
index 9cc3656..6903d8a 100644
--- a/eclipse.org-common/classes/friends/contribution.class.php
+++ b/eclipse.org-common/classes/friends/contribution.class.php
@@ -32,7 +32,7 @@
 
   private $table_prefix = '';
 
-  public function Contribution($testmode = FALSE) {
+  public function __construct($testmode = FALSE) {
     if ($testmode === TRUE){
       $this->table_prefix = 'testing_';
     }
@@ -137,7 +137,7 @@
           " . $App->returnQuotedString($App->sqlSanitize($this->getCurrency())) . ",
           " . $App->returnQuotedString($App->sqlSanitize($this->getProcessId())) .
           ")";
-      $App->eclipse_sql($sql);
+      return $App->eclipse_sql($sql);
     }
     return $result;
   }
@@ -156,7 +156,7 @@
           currency = " . $App->returnQuotedString($App->sqlSanitize($this->getCurrency())) . ",
           process_id = " . $App->returnQuotedString($App->sqlSanitize($this->getProcessId())) . "
           WHERE contribution_id = " . $App->returnQuotedString($App->sqlSanitize($this->getContributionID()));
-      $App->eclipse_sql($sql);
+      return $App->eclipse_sql($sql);
     }
     else {
       $result = -1;
diff --git a/eclipse.org-common/classes/friends/donation.class.php b/eclipse.org-common/classes/friends/donation.class.php
index 2bd6864..35b012f 100644
--- a/eclipse.org-common/classes/friends/donation.class.php
+++ b/eclipse.org-common/classes/friends/donation.class.php
@@ -101,7 +101,7 @@
 
   public $table_prefix = FALSE;
 
-  public function Donation($test_mode = FALSE)  {
+  public function __construct($test_mode = FALSE)  {
     if ($test_mode === TRUE){
       $this->table_prefix = 'testing_';
     }
diff --git a/eclipse.org-common/classes/friends/donationEmails.class.php b/eclipse.org-common/classes/friends/donationEmails.class.php
index 8a8d111..f8b0097 100644
--- a/eclipse.org-common/classes/friends/donationEmails.class.php
+++ b/eclipse.org-common/classes/friends/donationEmails.class.php
@@ -94,13 +94,13 @@
    *
    * @param stdClass $Donation
    */
-  public function DonationEmails($Donation) {
+  public function __construct($Donation) {
     $this->App = new App();
     $this->Donation = $Donation;
     if ($Donation->table_prefix == 'testing_') {
       $this->_set_test_mode(TRUE);
     }
-    $this->_set_email_headers('From: Eclipse Webmaster (automated) <webmaster@eclipse.org>'. PHP_EOL .'Bcc: donate@eclipse.org'. PHP_EOL .'Content-Type: text/plain; charset=UTF-8');
+    $this->_set_email_headers('From: Eclipse Webmaster (automated) <webmaster@eclipse.org>'. PHP_EOL .'Content-Type: text/plain; charset=UTF-8');
     $this->_set_email_foe_logo_link('https://dev.eclipse.org/site_login/myaccount.php');
     $this->_set_email_code('ECLIPSECON', 'FRIEND');
     $this->_set_email_code('OREILLY', 'PCBW');
@@ -129,29 +129,44 @@
       $this->_get_email_donor();
     }
 
-    // Check if the donation is at the friend, best_friend or webmaster_idol level
+    // Check if the donation is at the friend, best_friend or webmaster_idol
+    // level
     if ($level == 'friend' || $level == 'best_friend' || $level == 'webmaster_idol') {
       $this->_get_email_friend();
     }
 
     $EventLog = new EvtLog();
+    // Bug 519257 - Donations spam
+    $fields = array(
+      'LogAction' => "DONATION_EMAIL_SENT",
+      'PK1' => $this->_get_email_to(),
+      'uid' => $transaction_id
+    );
+    $evt_log_results = EvtLog::fetchLogRecord($fields);
     if (!empty($this->email_to) && !empty($this->email_content)) {
       if ($this->_get_test_mode()) {
-        $this->email_content .= PHP_EOL . PHP_EOL . '--TEST MODE--' .PHP_EOL . PHP_EOL;
+        $this->email_content .= PHP_EOL . PHP_EOL . '--TEST MODE--' . PHP_EOL . PHP_EOL;
         ob_start();
-        print 'This email is addressed to: ' . $this->_get_email_to() .PHP_EOL . PHP_EOL;
+        print 'This email is addressed to: ' . $this->_get_email_to() . PHP_EOL . PHP_EOL;
         print_r($this);
         $this->email_content .= ob_get_clean();
       }
-      mail($this->_get_email_to(),  "Thank You For Your Donation", $this->_get_email_content(), $this->_get_email_headers());
       $EventLog->setPK1($this->_get_email_to());
-      $EventLog->setLogAction("DONATION_EMAIL_SENT");
+      if (empty($evt_log_results)) {
+        mail($this->_get_email_to(), "Thank You For Your Donation", $this->_get_email_content(), $this->_get_email_headers());
+        $EventLog->setLogAction("DONATION_EMAIL_SENT");
+      }
+      else {
+        $EventLog->setLogAction("DONATION_EMAIL_ALREADY_SENT");
+      }
     }
     else {
       $EventLog->setPK1($level);
       $EventLog->setLogAction("DONATION_EMAIL_NOT_SENT");
     }
-    $EventLog->setLogTable("__paypal.class"); // To make browsing the log table easier
+
+    // To make browsing the log table easier
+    $EventLog->setLogTable("__paypal.class");
     $EventLog->setPK2($_SERVER['REMOTE_ADDR']);
     $EventLog->insertModLog($transaction_id);
     return $this->email_content;
@@ -246,7 +261,7 @@
    */
   private function _get_email_donor() {
     $email = $this->_get_email_greeting_string();
-    $email .= "Thank you for your donation. Your support is greatly appreciated and your donation will help make the Eclipse Platform even better for millions of developers around the world." . PHP_EOL . PHP_EOL;
+    $email .= "Thank you for your donation. Your support is greatly appreciated and your donation will help make the Eclipse Community even better for millions of developers and users around the world." . PHP_EOL . PHP_EOL;
     $email .= $this->_get_email_footer_string();
     $this->email_content = $email;
   }
@@ -264,9 +279,9 @@
     );
     $query_string = http_build_query($query);
     $email = $this->_get_email_greeting_string();
-    $email .= "Thank you for your donation. Your support is greatly appreciated and your donation will help make the Eclipse Platform even better for millions of developers around the world." . PHP_EOL . PHP_EOL;
+    $email .= "Thank you for your donation. Your support is greatly appreciated and your donation will help make the Eclipse Community even better for millions of developers and users around the world." . PHP_EOL . PHP_EOL;
     $email .= "You’ve donated more than 35 USD, which means that you are now a Friend of Eclipse (FoE)! You will now be identified as a FoE with a Friend badge for your Eclipse Account and Bugzilla. Use this personalized link to login into your Eclipse Account to get access to the badge: https://" . $domain['domain'] . "/donate/link-account.php?" . $query_string . PHP_EOL . PHP_EOL;
-    $email .= "Finally, as a Friend, you also get 40% off print & 50% off ebooks at oreilly.com using the discount code " . $this->_get_email_code('OREILLY') . PHP_EOL . PHP_EOL;
+    //$email .= "Finally, as a Friend, you also get 40% off print & 50% off ebooks at oreilly.com using the discount code " . $this->_get_email_code('OREILLY') . PHP_EOL . PHP_EOL;
     $email .= $this->_get_email_footer_string();
     $this->email_content = $email;
   }
diff --git a/eclipse.org-common/classes/friends/donationList.class.php b/eclipse.org-common/classes/friends/donationList.class.php
index 8914290..0fc4bb6 100644
--- a/eclipse.org-common/classes/friends/donationList.class.php
+++ b/eclipse.org-common/classes/friends/donationList.class.php
@@ -30,7 +30,7 @@
 
   private $test_mode = FALSE;
 
-  public function DonationList($test_mode = FALSE){
+  public function __construct($test_mode = FALSE){
     $this->App = new App();
     if ($test_mode == TRUE){
       $this->test_mode = TRUE;
@@ -149,13 +149,13 @@
           <td style="text-align:left">
         <?php
           if ($_start >= $_pageValue) {
-                      ?><a href="<?=$previous;?>"><< Previous Page</a><?php
+                      ?><a href="<?php print $previous;?>">&lt;&lt; Previous Page</a><?php
           }
         ?>&nbsp;</td>
           <td style="text-align:right">
         <?php
           if (($_start + $_pageValue) < $_pageCount) {
-                      ?><a href="<?=$next;?>">Next Page >></a><?php
+                      ?><a href="<?php print $next;?>">Next Page &gt;&gt;</a><?php
           }
         ?>
           </td>
@@ -245,7 +245,7 @@
       foreach ($friendsContributions as $contributions) {
         $result = array();
         $result['Friend'] = $contributions->getFriendObject();
-        $name = ucfirst(strtolower($result['Friend']->getFirstName())) . ' ' . ucfirst(strtolower($result['Friend']->getLastName()));
+        $name = ucwords(strtolower($result['Friend']->getFirstName())) . ' ' . ucwords(strtolower($result['Friend']->getLastName()));
         if ($name == " ") {
           $name = 'Anonymous';
         }
diff --git a/eclipse.org-common/classes/friends/donor.class.php b/eclipse.org-common/classes/friends/donor.class.php
index 6fb9bc1..fb69bce 100644
--- a/eclipse.org-common/classes/friends/donor.class.php
+++ b/eclipse.org-common/classes/friends/donor.class.php
@@ -75,7 +75,7 @@
    */
   public $Friend = NULL;
 
-  public function Donor($test_mode)  {
+  public function __construct($test_mode)  {
     $Session = New Session();
     $Friend = $Session->getFriend();
     $fid = $Friend->getFriendID();
@@ -130,7 +130,7 @@
    * Get donor first name
    */
   public function get_donor_first_name() {
-    return ucfirst(strtolower($this->donor_first_name));
+    return ucwords(strtolower($this->donor_first_name));
   }
 
   /**
@@ -147,7 +147,7 @@
    * Get donor last name
    */
   public function get_donor_last_name() {
-    return ucfirst(strtolower($this->donor_last_name));
+    return ucwords(strtolower($this->donor_last_name));
   }
 
   /**
@@ -203,7 +203,7 @@
    */
   public function set_donor_first_name($name) {
     $name = filter_var($name, FILTER_SANITIZE_STRING);
-    $name = ucfirst(strtolower($name));
+    $name = ucwords(strtolower($name));
     if ($name != "") {
       $this->donor_first_name = $name;
     }
@@ -221,7 +221,7 @@
    */
   public function set_donor_last_name($name) {
     $name = filter_var($name, FILTER_SANITIZE_STRING);
-    $name = ucfirst(strtolower($name));
+    $name = ucwords(strtolower($name));
     if ($name != "") {
       $this->donor_last_name = $name;
     }
diff --git a/eclipse.org-common/classes/friends/friend.class.php b/eclipse.org-common/classes/friends/friend.class.php
index 826f3fe..1f86ed2 100755
--- a/eclipse.org-common/classes/friends/friend.class.php
+++ b/eclipse.org-common/classes/friends/friend.class.php
@@ -40,7 +40,7 @@
 
   private $table_prefix = '';
 
-  public function Friend($testmode = FALSE) {
+  public function __construct($testmode = FALSE) {
     if ($testmode === TRUE){
       $this->table_prefix = 'testing_';
     }
diff --git a/eclipse.org-common/classes/friends/friendsContributions.class.php b/eclipse.org-common/classes/friends/friendsContributions.class.php
index 636c963..25545ad 100644
--- a/eclipse.org-common/classes/friends/friendsContributions.class.php
+++ b/eclipse.org-common/classes/friends/friendsContributions.class.php
@@ -23,7 +23,7 @@
   private $contributionObject;
 
   # default constructor
-  function FriendsContributions($testmode = FALSE) {
+  function __construct($testmode = FALSE) {
     $this->friend_id     = "";
     $this->contribution_id  = "";
     $this->friendObject  = new Friend($testmode);
diff --git a/eclipse.org-common/classes/friends/friendsContributionsList.class.php b/eclipse.org-common/classes/friends/friendsContributionsList.class.php
index e09c7b3..b271681 100644
--- a/eclipse.org-common/classes/friends/friendsContributionsList.class.php
+++ b/eclipse.org-common/classes/friends/friendsContributionsList.class.php
@@ -19,7 +19,7 @@
 
   private $table_prefix = "";
 
-  public function FriendsContributionsList($testmode = FALSE) {
+  public function __construct($testmode = FALSE) {
     if ($testmode === TRUE){
       $this->table_prefix = 'testing_';
     }
diff --git a/eclipse.org-common/classes/friends/payment.class.php b/eclipse.org-common/classes/friends/payment.class.php
index 4efeb56..a42c8fe 100644
--- a/eclipse.org-common/classes/friends/payment.class.php
+++ b/eclipse.org-common/classes/friends/payment.class.php
@@ -35,7 +35,7 @@
   /**
    * Constructor
    */
-  public function Payment() {
+  public function __construct() {
      parent::__construct();
   }
 
diff --git a/eclipse.org-common/classes/friends/paymentGateway.class.php b/eclipse.org-common/classes/friends/paymentGateway.class.php
index 8774d46..93378a7 100644
--- a/eclipse.org-common/classes/friends/paymentGateway.class.php
+++ b/eclipse.org-common/classes/friends/paymentGateway.class.php
@@ -48,6 +48,16 @@
   protected $gateway_notify_url = '';
 
   /**
+   * Location of the donation preprocess form for credit cards.
+   *
+   * This is the script that will redirect the user
+   * to the proper donation based off certain criteria.
+   *
+   * @var unknown
+   */
+  protected $gateway_credit_process_url = '';
+
+    /**
    * Location of the donation preprocess form.
    *
    * This is the script that will redirect the user
@@ -91,11 +101,13 @@
    */
   protected $gateway_url = '';
 
-  public function PaymentGateway()  {
+  public function __construct()  {
     parent::__construct();
     $this->Donation = new Donation($this->_get_debug_mode());
+    $domain = $this->getEclipseEnv();
     $this->_set_gateway_process_url('https://'. $this->_get_prefix_domain() . '/donate/process.php');
     $this->_set_gateway_return_url('https://'. $this->_get_prefix_domain() . '/donate/credit.php');
+    $this->_set_gateway_credit_process_url('https://'. $domain['accounts'] . '/donate/process');
   }
 
   /**
@@ -108,6 +120,14 @@
   }
 
   /**
+   * Get gateway process url
+   *
+   * @return unknown
+   */
+  public function get_gateway_credit_process_url() {
+    return $this->gateway_credit_process_url;
+  }
+  /**
    * Get gateway redirect value
    *
    * @return unknown
@@ -291,6 +311,17 @@
   }
 
   /**
+   * Set gateway process url
+   *
+   * @param string $url
+   */
+ protected function _set_gateway_credit_process_url($url = '') {
+   if (filter_var($url, FILTER_VALIDATE_URL)) {
+      $this->gateway_credit_process_url = $url;
+    }
+  }
+
+  /**
    * Set gateway redirect url
    *
    * @param string $url
diff --git a/eclipse.org-common/classes/membership/membership.class.php b/eclipse.org-common/classes/membership/membership.class.php
index 710980c..d63e6b1 100644
--- a/eclipse.org-common/classes/membership/membership.class.php
+++ b/eclipse.org-common/classes/membership/membership.class.php
@@ -229,7 +229,7 @@
       N.title,
       CTR.field_companyname_value as name,
       N.nid,
-      if(fv.field_version_value IS NULL ,'',MAX(fv.field_version_value)) as version,
+      CASE MAX(CAST(fv.field_version_value as INTEGER)) WHEN fv.field_version_value IS NULL THEN '' ELSE fv.field_version_value END as version,
       B.body_value as teaser
     FROM field_data_field_companyname as CTR
     INNER JOIN node as N on CTR.entity_id = N.nid
diff --git a/eclipse.org-common/classes/membership/membershipImage.class.php b/eclipse.org-common/classes/membership/membershipImage.class.php
index 244b43e..a441d44 100644
--- a/eclipse.org-common/classes/membership/membershipImage.class.php
+++ b/eclipse.org-common/classes/membership/membershipImage.class.php
@@ -34,7 +34,7 @@
 
 
 	# default constructor
-	function MemberImage() {
+	function __construct() {
 		$this->DEBUG = 0;
 	    $this->details[0] = -1;
 	    $this->details[1] = -1;
diff --git a/eclipse.org-common/classes/parser/feedparser.class.php b/eclipse.org-common/classes/parser/feedparser.class.php
index 2bf28c4..52e293c 100644
--- a/eclipse.org-common/classes/parser/feedparser.class.php
+++ b/eclipse.org-common/classes/parser/feedparser.class.php
@@ -1,5 +1,6 @@
 <?php
-/*******************************************************************************
+/**
+ * *****************************************************************************
  * Copyright (c) 2014 Eclipse Foundation and others.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
@@ -7,135 +8,346 @@
  * http://eclipse.org/legal/epl-v10.html
  *
  * Contributors:
- *    Christopher Guindon (Eclipse Foundation) - Initial implementation
- *******************************************************************************/
+ * Christopher Guindon (Eclipse Foundation) - Initial implementation
+ * *****************************************************************************
+ */
 
 class FeedParser {
 
-	private $url = "";
+  /**
+   * List of rss paths
+   *
+   * @var string
+   */
+  private $path = array();
 
-	private $count = 4;
+  /**
+   * Default display count
+   *
+   * @var integer
+   */
+  private $count = 4;
 
-	private $description = TRUE;
+  /**
+   * Flag to only display press_releases
+   *
+   * @var string
+   */
+  private $press_release = FALSE;
 
-	private $press_release = FALSE;
+  /**
+   * Array of news item
+   *
+   * @var array
+   */
+  private $items = array();
 
-	private $items = array();
+  /**
+   * View more link values
+   *
+   * @var string
+   */
+  private $view_more = array();
 
-	private $more = "";
+  /**
+   * Link to feedburner feed
+   *
+   * @var string
+   */
+  private $rss_link = "";
 
-	private $rssLink = "";
+  /**
+   * Default date_format
+   *
+   * @var string
+   */
+  private $date_format = "Y/m/d";
 
-	private $date_format = "Y/m/d";
+  /**
+   * Default news item limit
+   *
+   * @var integer
+   */
+  private $limit = 200;
 
-	private $limit = 200;
+  /**
+   * Set date format
+   *
+   * @param string $format
+   */
+  public function setDateFormat($format = "Y/m/d") {
+    $this->date_format = $format;
+    return TRUE;
+  }
 
-	public function setUrl($url) {
-	  $this->url = $url;
-	}
+  /**
+   * Get date format
+   *
+   * @return string
+   */
+  public function getDateFormat() {
+    return $this->date_format;
+  }
 
-	public function setRssLink($url) {
-		$this->rssLink = '<a href="' . $url . '" class="link-rss-feed  orange" title="Subscribe to our RSS-feed"><i class="fa fa-rss"></i> <span>Subscribe to our RSS-feed</span></a>';
-	}
-
-	public function setPressReleaseFlag($flag = FALSE){
-    $this->press_release = $flag;
-	}
-
-	public function setCount($count) {
-		if (is_int($count)) {
-			$this->count = $count;
-		}
-	}
-
-	public function setLimit($limit) {
-		if (is_int($limit)) {
-			$this->limit = $limit;
-		}
-	}
-
-	public function setPressRelease($press_release = FALSE) {
-		$this->press_release = ($press_release) ? TRUE : FALSE;
-	}
-
-	public function setDescription($show = TRUE) {
-		$this->description = ($show) ? TRUE : FALSE;
-	}
-
-	public function setMore($url, $caption = 'View all', $prefix = '> ') {
-		$this->more = $prefix . '<a href="' . $url . '">' . $caption . '</a>';
-	}
-
-	private function parse_feed() {
-
-		if (empty($this->url)) {
-			return FALSE;
-		}
-
-
-		if (file_exists($this->url)) {
-		  $feed = simplexml_load_file($this->url);
-		}
-
-		$feed_array = array();
-		$count = 0;
-    if(isset($feed) && $feed != FALSE) {
-			foreach($feed->channel->item as $item){
-
-				if ($count >= $this->count) {
-					break;
-				}
-
-				if ($this->press_release && $item->pressrelease != 1) {
-	        continue;
-				}
-
-				$date = strtotime((string) $item->pubDate);
-				$date = date($this->date_format, $date);
-
-				$description = (string) $item->description;
-				if (strlen($description) > $this->limit) {
-					$description = substr(strip_tags($description, "<a>"), 0, $this->limit);
-					$description = strip_tags($description, "<a>");
-					$description .= "...";
-				}
-
-				$item_array = array (
-				  'title' => (string) $item->title,
-					'description' => $description,
-					'link' => (string) $item->link,
-					'date' => $date,
-				);
-
-				array_push($feed_array, $item_array);
-				$count++;
-			}
+  /**
+   * Set path for RSS feed
+   *
+   * @param string $url
+   */
+  public function addPath($path = "") {
+    if (is_string($path)) {
+      $this->path[] = $path;
+      return TRUE;
     }
-		$this->items = $feed_array;
-	}
+    return FALSE;
+  }
 
-	public function output() {
-		$this->parse_feed();
-		$output = '<div class="news_item_header">' . $this->rssLink . '</div>';
-		if (!empty($this->items)) {
-			foreach ($this->items as $item) {
-				$output .= '<div class="news_item">';
-				$output .= '<div class="news_item_date">' .$item['date'] . '</div>';
-				$output .= '<div class="news_item_title">';
-				$output .= '<h3><a href="' . $item['link'] . '">' . $item['title'] . '</a></h3>';
-				$output .= '</div>';
-				if ($this->description) {
-					$output .= '<div class="news_item_description">' .$item['description'] . '</div>';
-				}
-				$output .= '</div>';
-			}
-			if (!empty($this->more) || !empty($this->rssLink)) {
-				$output .= '<div class="news_view_all">' . $this->more . $this->rssLink . '</div>';
-			}
-		}
-		else {
-			$output = '<p>This news feed is currently empty. Please try again later.</p>';
-		}
-		print $output;
-	}
+  /**
+   * Get path for RSS feed
+   *
+   * @return string
+   */
+  public function getPath() {
+    return $this->path;
+  }
+
+  /**
+   * Set RSS link
+   *
+   * @param string $url
+   */
+  public function setRssLink($url = "") {
+    if (is_string($url)) {
+      $this->rss_link = $url;
+      return TRUE;
+    }
+    return FALSE;
+  }
+
+  /**
+   * Get RSS link
+   *
+   * @param string $html
+   *
+   * @return string
+   */
+  public function getRssLink() {
+    return $this->rss_link;
+  }
+
+  /**
+   * Get RSS link
+   *
+   * @param string $html
+   *
+   * @return string
+   */
+  public function getRssLinkHTML() {
+    $url = $this->getRssLink();
+    if (empty($url)) {
+      return "";
+    }
+    return '<a href="' . $url . '" class="link-rss-feed  orange" title="Subscribe to our RSS-feed"><i class="fa fa-rss"></i> <span>Subscribe to our RSS-feed</span></a>';
+  }
+
+  /**
+   * Set Press Release Flag
+   *
+   * @param string $flag
+   */
+  public function setPressRelease($flag = FALSE) {
+    if (is_bool($flag)) {
+      $this->press_release = $flag;
+      return TRUE;
+    }
+    return FALSE;
+  }
+
+  /**
+   * Get Press Release Flag
+   *
+   * @return string
+   */
+  public function getPressRelease() {
+    return $this->press_release;
+  }
+
+  /**
+   * Set item count
+   *
+   * @param number $count
+   */
+  public function setCount($count = 4) {
+    if (is_numeric($count)) {
+      $this->count = $count;
+      return TRUE;
+    }
+    return FALSE;
+  }
+
+  /**
+   * Get item count
+   *
+   * @return number $count
+   */
+  public function getCount() {
+    return $this->count;
+  }
+
+  /**
+   * Set description limit
+   *
+   * @param number $limit
+   */
+  public function setLimit($limit = 200) {
+    if (is_numeric($limit)) {
+      $this->limit = $limit;
+      return TRUE;
+    }
+    return FALSE;
+  }
+
+  /**
+   * Get description limit
+   *
+   * @return number $limit
+   */
+  public function getLimit() {
+    return $this->limit;
+  }
+
+  /**
+   * Set view_more link
+   *
+   * @param string $url
+   * @param string $caption
+   * @param string $prefix
+   */
+  public function setViewMoreLink($url = "", $caption = 'View all', $prefix = '> ') {
+    if (is_string($url) && is_string($caption) && is_string($prefix)) {
+      $this->view_more = array(
+        'url' => $url,
+        'caption' => $caption,
+        'prefix' => $prefix
+      );
+      return TRUE;
+    }
+    return FALSE;
+  }
+
+  /**
+   * Get ViewMore link
+   *
+   * @return string
+   */
+  public function getViewMoreLink() {
+    $view_more = $this->view_more;
+
+    if (empty($view_more['url']) || empty($view_more['caption'])) {
+      return array();
+    }
+
+    if (!isset($view_more['prefix'])) {
+      $view_more['prefix'] = "";
+    }
+
+    return $view_more;
+  }
+
+  /**
+   * Get view_more link (HTML)
+   *
+   * @return string
+   */
+  public function getViewMoreLinkHTML() {
+    $view_more = $this->getViewMoreLink();
+    if (empty($view_more)) {
+      return "";
+    }
+    return $view_more['prefix'] . '<a href="' . $view_more['url'] . '">' . $view_more['caption'] . '</a>';
+  }
+
+  /**
+   * Html Output
+   *
+   * @return string
+   */
+  public function output() {
+    if (!$this->_parseFeeds()) {
+      return '<p>This news feed is currently empty. Please try again later.</p>';
+    }
+
+    $output = '';
+    if (!empty($this->items)) {
+      $output = '<ul class="news-list-media list-unstyled">';
+      foreach ($this->items as $item) {
+        $output .= '<li><a href="' . $item['link'] . '" class="media media-link">';
+        $output .= '<p class="media-date">' . $item['date'] . '</p><h4 class="media-heading">' . $item['title'] . '</h4>';
+        if ($this->getLimit() > 0) {
+          $output .= '<p class="media-text">' . $item['description'] . '</p>';
+        }
+        $output .= ' </a></li>';
+      }
+      $output .= '</ul>';
+    }
+
+    return $output;
+  }
+
+  /**
+   * Parse the Feed
+   *
+   * @return boolean
+   */
+  private function _parseFeeds() {
+    $path = $this->getPath();
+    if (empty($path)) {
+      return FALSE;
+    }
+
+    $count = 0;
+    foreach ($path as $p) {
+      if (file_exists($p)) {
+        $feed = simplexml_load_file($p);
+      }
+
+      if (isset($feed) && $feed != FALSE) {
+        foreach ($feed->channel->item as $item) {
+          $feed_array = array();
+          if ($count >= $this->count) {
+            break;
+          }
+
+          if ($this->getPressRelease() && $item->pressrelease != 1) {
+            continue;
+          }
+
+          $date = strtotime((string) $item->pubDate);
+          $date = date($this->getDateFormat(), $date);
+
+          $description = (string) strip_tags($item->description);
+          if (strlen($description) > $this->getLimit()) {
+            $description = substr($description, 0, $this->limit);
+            $description .= "...";
+          }
+
+          $item_array = array(
+            'title' => (string) $item->title,
+            'description' => $description,
+            'link' => (string) $item->link,
+            'date' => $date
+          );
+
+          $this->items[] = $item_array;
+          $count++;
+        }
+      }
+    }
+
+    if (!empty($this->items)) {
+      return TRUE;
+    }
+    return FALSE;
+  }
+
 }
diff --git a/eclipse.org-common/classes/polls/poll.php b/eclipse.org-common/classes/polls/poll.php
index dd263a8..451d1b4 100644
--- a/eclipse.org-common/classes/polls/poll.php
+++ b/eclipse.org-common/classes/polls/poll.php
@@ -20,7 +20,7 @@
 # Author: 		Denis Roy
 # Date:			2006-02-02
 #
-# Description: Class to use polls  
+# Description: Class to use polls
 #
 #****************************************************************************
 
@@ -41,24 +41,24 @@
 	var $require_login	= false;
 	var $bugzilla_id	= 0;
 	var $error			= "";
-	
+
 	var $COOKIE_NAME = "ECLIPSE_INSTA_POLLS";
-	
+
 	# Initiate session
 	var $Session = 		null;
-	 	
-	var $poll_options	= array(); # Array of PollOption objects	
-	
-	
+
+	var $poll_options	= array(); # Array of PollOption objects
+
+
 	/**
 	 * Default constructor
 	 * @param int $poll_index  to identify the poll index on a page (for multiple polls)
 	 * @param string $poll_title
-	 * @param string $id optional static id to identify the poll, instead of the URL, so it can be used anywhere 
-	 * 
+	 * @param string $id optional static id to identify the poll, instead of the URL, so it can be used anywhere
+	 *
 	 */
-	function Poll($_poll_index, $_poll_title, $_id = null) {
-		
+	function __construct($_poll_index, $_poll_title, $_id = null) {
+
 		if($_id == null) {
 			$this->url			= $_SERVER['SCRIPT_NAME'];
 		}
@@ -68,26 +68,26 @@
 		$this->poll_index	= $_poll_index;
 		$this->poll_title	= $_poll_title;
 		$this->selectInsertPollID();  ## We need this before going on!
-		
-		
+
+
 		if(isset($_POST['poll_action' . $_poll_index])) {
 			$this->poll_action 	= $_POST['poll_action' . $_poll_index];
 		}
-		
+
 		$App = new App();
 		$this->Session = $App->useSession("optional");
-		
+
 		# Clean incoming
 		$this->url = str_replace("..", "", $this->url);
 		$this->url = str_replace(";", "", $this->url);
-		
+
 		if(!is_numeric($this->poll_index)) {
 			$this->poll_index = 1;
 		}
-			
+
 		# Determine the action to take.
 		if($this->poll_action == "vote" && $this->isVoteable()) {
-			
+
 			if($this->require_login && $this->Session->getBugzillaID() <= 0) {
 				# should not happen unless someone forces a post.
 				$this->error = "You must be logged in to vote.";
@@ -107,34 +107,34 @@
 
 	/**
 	 * fetch poll counts from the database
-	 * 
+	 *
 	 */
 	function selectPollCounts() {
 		# Get poll counts for poll id
-		
+
 		if($this->isValidPollID()) {
-		 
+
 			$App = new App();
-			
+
 			$this->total_votes = 0;
-			
-		    $sql = "SELECT 
+
+		    $sql = "SELECT
 						option_id,
 						answer_count
 		        	FROM
 						poll_options
 					WHERE poll_id = " . $this->poll_id;
-					
+
 		    $dbc = new DBConnectionPollsRW();
 		    $dbh = $dbc->connect();
-	
+
 		    $result = mysql_query($sql, $dbh);
-	
+
 			# find the right poll option, and increment the count
 		    while($myrow = mysql_fetch_array($result)) {
 				for($i = 0; $i < count($this->poll_options); $i++) {
 					$PollOption = $this->poll_options[$i];
-					
+
 					if($PollOption->option_id == $myrow['option_id']) {
 						$PollOption->answer_count 	= $myrow['answer_count'];
 						$this->total_votes 			+= $myrow['answer_count'];
@@ -143,13 +143,13 @@
 					}
 				}
 		    }
-	
+
 		    $dbc->disconnect();
 		    $dbh 	= null;
 		    $dbc 	= null;
 		    $result = null;
 		    $myrow	= null;
-		}		   
+		}
 	}
 
 
@@ -158,23 +158,23 @@
 	 * get poll id from db, or create if not found
 	 */
 	function selectInsertPollID() {
-		
+
 		if($this->isValidPollID()) {
 			# Get poll ID from the database, or create one if it doesn't exist.
 			$App = new App();
-			
-		    $sql = "SELECT 
+
+		    $sql = "SELECT
 						POL.poll_id, POL.require_login
 		        	FROM
 						polls AS POL
 					WHERE POL.url = " . $App->returnQuotedString($this->url) . "
 						AND POL.poll_index = " . $this->poll_index;
-					
+
 		    $dbc = new DBConnectionPollsRW();
 		    $dbh = $dbc->connect();
-	
+
 		    $result = mysql_query($sql, $dbh);
-	
+
 		    if($myrow = mysql_fetch_array($result)) {
 		            $this->poll_id  		= $myrow["poll_id"];
 		            $this->require_login	= $myrow['require_login'];
@@ -186,19 +186,19 @@
 							poll_index,
 							first_seen)
 						VALUES (
-							NULL,  
+							NULL,
 						" . $App->returnQuotedString($this->url) . ",
 						" . $this->poll_index . ",
 							CURDATE())";
-						
+
 				mysql_query($sql, $dbh);
 				$this->poll_id = mysql_insert_id($dbh);
-				
+
 				# Perform house cleaning when creating new polls
 				# Pass database handle to recycle the connection
 				$this->flushOldPolls($dbh);
 		    }
-	    	
+
 	    	$dbc->disconnect();
 	    	$dbh 	= null;
 	    	$dbc 	= null;
@@ -206,8 +206,8 @@
 	    	$myrow	= null;
 		}
 	}
-	
-	
+
+
 	/**
 	 * update poll count in db as a result of voting
 	 */
@@ -215,12 +215,12 @@
 
 		if($this->isValidPollID()) {
 			$App = new App();
-			
+
 			# if poll requires login, ensure client is logged in
 			$Session = $this->Session;
 			# echo "Session: " . $Session->getBugzillaID() . " Login req: " . $this->require_login; exit;
 			if( ($this->require_login && $Session->getBugzillaID() > 0) || !$this->require_login) {
-	    
+
 			    # we have the poll id, add a count
 			    $poll_option = $_POST['polloption'];
 				if(!is_numeric($poll_option)) {
@@ -229,47 +229,47 @@
 
 				$dbc = new DBConnectionPollsRW();
 			    $dbh = $dbc->connect();
-				
+
 				# Attempt to insert this user's vote in poll_login_votes.
 				# If it fails, the user has already voted and we must not continue
 				$error = false;
 				if($this->require_login && $Session->getBugzillaID() > 0) {
 					$sql = "INSERT INTO poll_login_votes (poll_id, bugzilla_id) VALUES (" . $this->poll_id . ", " . $Session->getBugzillaID() . ")";
 					mysql_query($sql, $dbh);
-				
+
 					if(mysql_affected_rows() <= 0) {
 						$error = true;
 					}
 				}
-				
+
 				if(!$error) {
-			    
+
 			    	$sql = "UPDATE poll_options SET
 								answer_count = answer_count + 1
 							WHERE
 								poll_id = " . $this->poll_id . "
-								AND option_id = " . $poll_option;  
-			
-			
+								AND option_id = " . $poll_option;
+
+
 					mysql_query($sql, $dbh);
-					
+
 					if(mysql_affected_rows() == 0) {
 						# Update failed.  Issue insert statement
 						$sql = "INSERT INTO poll_options (
 									poll_id,
-									option_id, 
+									option_id,
 									answer_count) VALUES (
 								" . $this->poll_id . ",
 								" . $poll_option . ",
-								1)";  
-									  
+								1)";
+
 						mysql_query($sql, $dbh);
 					}
-					
+
 					# put cookie on the browser to indicate user has voted
 					$this->setCookie();
-				} 
-		
+				}
+
 			    $dbc->disconnect();
 			    $dbh 	= null;
 			    $dbc 	= null;
@@ -278,8 +278,8 @@
 			}
 		}
 	}
-	
-	
+
+
 	/**
 	 * set cookie on the browser to avoid ballot stuffers
 	 */
@@ -288,18 +288,18 @@
 		 * Cookie is called ECLIPSE_INSTA_POLLS
 		 * We put a csv list of poll id's the user has voted on
 		 * all in one cookie.  Makes for fewer cookies on the browser
-		 * 
+		 *
 		 */
-		
+
 		$insta_polls = array();
 		if(isset($_COOKIE[$this->COOKIE_NAME])) {
 			$insta_polls = explode(",", $_COOKIE[$this->COOKIE_NAME]);
 		}
-		
+
 		if(!is_numeric(array_search($this->poll_id, $insta_polls))) {
 			$insta_polls[count($insta_polls)] = $this->poll_id;
-		} 
-		
+		}
+
 		setcookie($this->COOKIE_NAME, implode(",", $insta_polls), time()+604800, "/");
 	}
 
@@ -308,40 +308,40 @@
 	 * @return bool
 	 */
 	function isVoteable() {
-		
+
 		/*
 		 * isVoteable - used to determine if we display a form or just get the actual results
 		 */
-		
+
 		$rValue = false;
-				
+
 		$insta_polls = array();
 		if(isset($_COOKIE[$this->COOKIE_NAME])) {
 			$insta_polls = explode(",", $_COOKIE[$this->COOKIE_NAME]);
 		}
-		
+
 		if(!is_numeric(array_search($this->poll_id, $insta_polls))) {
 			$rValue = true;
 		}
 		return $rValue;
 	}
-	
-	
+
+
 	/**
 	 * Add a poll option to the object's array
 	 * @param string $option_id a 12-character alphanumeric key to represent the option
 	 * @param string $option_text
 	 */
-	function addOption($_option_id, $_option_text) {		
+	function addOption($_option_id, $_option_text) {
 		$PollOption = new PollOption();
 		$PollOption->poll_id = $this->poll_id;
 		$PollOption->option_id = $_option_id;
-		$PollOption->option_text = str_replace("\"", "'", $_option_text);	
-		
+		$PollOption->option_text = str_replace("\"", "'", $_option_text);
+
 		$this->poll_options[count($this->poll_options)] = $PollOption;
-		
+
 	}
-	
+
 	/**
 	 * disable graph display
 	 */
@@ -353,57 +353,57 @@
 	 * disable anonymous polls
 	 */
 	function requireLogin() {
-		
+
 		# the constructor should have read this state from the DB
 		# if we're setting requireLogin() and it's false in this object,
 		# then this is the first time we've set requireLogin
-		
+
 		if(!$this->require_login) {
-			
+
 			$this->require_login = true;
-		
+
 			$App = new App();
-				
+
 		    $dbc = new DBConnectionPollsRW();
 		    $dbh = $dbc->connect();
 			$sql = "UPDATE polls SET require_login = 1 WHERE poll_id = " . $this->poll_id;
-							
+
 			mysql_query($sql, $dbh);
-		    
-		    	
+
+
 	    	$dbc->disconnect();
 	    	$dbh 	= null;
 	    	$dbc 	= null;
 		}
 	}
-	
+
 	/**
 	 * generate HTML required for the poll
 	 * @return string
 	 */
 	function getHTML() {
-		
+
 		$rValue = "";
-		
+
 		if($this->poll_action == "" && $this->isVoteable()) {
-			
+
 			# display poll options
-		
+
 			$rValue = "<p><b>" . $this->poll_title . "</b><form method=\"post\">";
 			$rValue .= "<input type=\"hidden\" name=\"poll_index\" value=\"" . $this->poll_index . "\" />";
 			$rValue .= "<input type=\"hidden\" name=\"poll_action" . $this->poll_index . "\" value=\"vote\" />";
 			for($i = 0; $i < count($this->poll_options); $i++) {
 				$PollOption = $this->poll_options[$i];
-				
+
 				$rValue .= "<input type=\"radio\" name=\"polloption\" value=\"" . $PollOption->option_id . "\" />" . $PollOption->option_text . "<br />";
 			}
-			
+
 			if($this->error != "") {
 				$rValue .= "<font color='red'>Error: " . $this->error . "</font><br />";
 			}
-			
+
 			$Session = $this->Session;
-			
+
 			if($Session->getBugzillaID() <= 0 && $this->require_login) {
 				$rValue .= "You must be logged in to vote. Please login <a href='" . $Session->getLoginPageURL() . "'>here</a>.";
 			}
@@ -413,23 +413,23 @@
 		}
 
 		if($this->poll_action == "vote" || !($this->isVoteable())) {
-			
+
 			# display poll options
-			
+
 			$this->selectPollCounts();
-		
+
 			$rValue = "<p><b>Results: " . $this->poll_title . "</b></p>";
-			
+
 			for($i = 0; $i < count($this->poll_options); $i++) {
 				$PollOption = $this->poll_options[$i];
-				
+
 				$thisPercent = 0;
-				
+
 				if($this->total_votes > 0) {
 					$thisPercent = round($PollOption->answer_count / $this->total_votes * 100);
-				}				
+				}
 				$rValue .= $PollOption->option_text . ": " . $thisPercent . " %<br />";
-				
+
 				if($thisPercent > 0 && $this->show_graph) {
 					$rValue .= "<table height=\"9\" cellpadding=\"0\" cellspacing=\"0\"><td class=\"poll_start\" width=\"3\"></td><td width=\"$thisPercent\" class=\"poll_bar\"></td><td width=\"3\" class=\"poll_end\" style=\"font-size: 2pt;\">&nbsp;</td></tr></table><br />";
 				}
@@ -438,15 +438,15 @@
 				}
 
 			}
-			
-			
+
+
 			$rValue .= "<p><b>Total votes: </b>" . $this->total_votes . "</p>";
 		}
 
 		return $rValue;
 	}
-	
-	
+
+
 	/**
 	 * determine if poll_id is valid
 	 * @return bool
@@ -459,23 +459,23 @@
 			return false;
 		}
 	}
-	
+
 	/**
 	 * flush old polls and results.  Polls can still be used, this is simply for house cleaning.
 	 * This code should be run automatically when a new poll is created.
 	 * @param dbh $_dbh a writable database connection
-	 * 
+	 *
 	 */
 	function flushOldPolls($_dbh) {
 
-		# a Foreign Key constraint will enforce deletion of poll_options 
-		$sql = "DELETE FROM 
-					polls 
-				WHERE 
+		# a Foreign Key constraint will enforce deletion of poll_options
+		$sql = "DELETE FROM
+					polls
+				WHERE
 					first_seen <=  DATE_SUB(CURDATE(), INTERVAL 3 MONTH)";
 
 		mysql_query($sql, $_dbh);
-	
+
 	    $_dbh 	= null;
 	}
 }
diff --git a/eclipse.org-common/classes/projects/forge.class.php b/eclipse.org-common/classes/projects/forge.class.php
index 2426f74..8cd5924 100644
--- a/eclipse.org-common/classes/projects/forge.class.php
+++ b/eclipse.org-common/classes/projects/forge.class.php
@@ -212,4 +212,60 @@
     return $this->getId() == 'eclipse';
   }
 
+  /**
+   * Validate if url is a valid CI url
+   *
+   * @param string $url
+   * @return boolean
+   */
+  public function isValidCIUrl($url = "") {
+    // Verify the syntax of the given URL
+    if (!filter_var($url, FILTER_VALIDATE_URL)) {
+      return FALSE;
+    }
+
+    // get forge class from eclipse.org-common
+    $parsed_url = parse_url(strtolower($url));
+    if (!isset($parsed_url['path'])) {
+      // no path specified
+      return FALSE;
+    }
+    $host_parts = explode('.', $parsed_url['host']);
+
+    // main domain name should be 2nd from last
+    if (count($host_parts) < 2) {
+      // the build link url is very unlikely to be valid
+      return FALSE;
+    }
+
+    // check host is in the list of accepted domains
+    $hudson_domain = $this->getHudsonDomain();
+    if (!in_array($parsed_url['host'], $hudson_domain)) {
+      return FALSE;
+    }
+
+    // break the path into parts
+    $path_parts = explode('/', trim($parsed_url['path'], '/'));
+    if (empty($path_parts[0])) {
+      // first part is empty, parsed path had only contained '/'
+      return FALSE;
+    }
+
+    // check path size, should be 1 or 3 parts
+    if (count($path_parts) < 1 || count($path_parts) > 3) {
+      // path longer than expected
+      return FALSE;
+    }
+
+    if (count($path_parts) === 3) {
+      // some projects have hudson for first path part - should be project name
+      // 2nd part should be job if job specified (3rd part is build job name)
+      if ($path_parts[0] === 'hudson' || $path_parts[1] !== 'job') {
+        return FALSE;
+      }
+    }
+
+    return TRUE;
+  }
+
 }
\ No newline at end of file
diff --git a/eclipse.org-common/classes/projects/hipp.class.php b/eclipse.org-common/classes/projects/hipp.class.php
index 95b6dea..a45ab7e 100644
--- a/eclipse.org-common/classes/projects/hipp.class.php
+++ b/eclipse.org-common/classes/projects/hipp.class.php
@@ -73,13 +73,10 @@
    */
   public function getControlLink($id, $shortname){
     $state = $this->getState();
-    $str = "<span id='" . $shortname . "_state' class='" . $state . "'>" . ucfirst($state) . " (" . $this->getServiceVersion() . ")</span> &#160; <span id='" . $shortname . "_instance'>";
+    $str = "<span id='" . $shortname . "_state' class='" . $state . "'>" . ucfirst($state) . "</span> &#160; <span id='" . $shortname . "_instance'>";
 
     # Examine Service status to determine control knobs to place
     if ($state == "running") {
-      # Add STOP button
-      $str .= '<a title="stop" href="#ct" data-action="stop" data-projectid="' . $id . '" data-shortname="' . $shortname . '" class="hipp-control-action-link" ><i class="fa fa-power-off"></i></a> &#160; ';
-
       # Add RESTART button
       $str .= '<a title="restart" href="#ct" data-action="restart" data-projectid="' . $id . '" data-shortname="' . $shortname . '" class="hipp-control-action-link" ><i class="fa fa-refresh"></i></a>';
     }
@@ -89,16 +86,6 @@
       $str .= '<a title="start"  href="#ct" data-action="start" data-projectid="' . $id . '" data-shortname="' . $shortname . '" class="hipp-control-action-link" ><i class="fa fa-power-off"></i></a>';
     }
 
-    # Upgrade available?
-    if($this->getServiceLatestVersion("hipp") != $this->getServiceVersion() && $this->getServiceLatestVersion("hipp") != "" && $this->getServiceVersion() != "") {
-
-      $str .= '<br /><a title="upgrade"  href="#ct" data-action="upgrade" data-projectid="' . $id . '" data-shortname="' . $shortname . '" class="hipp-control-action-link" ><i class="fa fa-download"></i> Upgrade to ' . $this->getServiceLatestVersion("hipp") . '</a>';
-      $readme = $this->getReadmeContents("hipp", $this->getServiceLatestVersion("hipp"));
-      if($readme != "") {
-        $str .= "<br /><span id='" . $shortname . "_readme'><a title='readme'  href='#ct' data-action='readme' data-projectid='" . $id . "' data-shortname='" . $shortname . "' class='hipp-control-action-link'><i class='fa fa-file-o'></i> README for " . $this->getServiceLatestVersion("hipp") . '</a></span>';
-      }
-    }
-
     return $str . "</span>";
   }
 
@@ -196,7 +183,7 @@
 
     if ($_ProjectID != "") {
       $WHERE .= " WHERE SRV.ProjectID = " . $App->returnQuotedString($App->sqlSanitize($_ProjectID)) . "
-                  AND SRV.ServiceType = 'hipp'";
+                  AND SRV.ServiceType LIKE '_ipp'";
       $sql = "SELECT /*  hipp.class.php */
           SRV.ID,
           SRV.ProjectID,
@@ -246,22 +233,4 @@
     }
   }
 
-  /**
-   * getReadmeContents - Fetch README contents for a version
-   * @param string - Servicetype (HIPP), string Version (3.2.2)
-   * @return String
-   * @since 2015-02-26
-   * @author droy
-   */
-  function getReadmeContents($_ServiceType="hipp", $_version) {
-    $rValue = "";
-    if($_version != "") {
-      $_version = preg_replace($this->VersionRegexp, '', $_version);
-      $filename = $this->HIPPImagePath . "/hudson-" . $_version . ".README";
-      if(is_readable($filename)) {
-        $rValue = file_get_contents($filename);
-      }
-    }
-    return $rValue;
-  }
 }
\ No newline at end of file
diff --git a/eclipse.org-common/classes/projects/projectCategory.class.php b/eclipse.org-common/classes/projects/projectCategory.class.php
index 157e81e..58f0ffe 100644
--- a/eclipse.org-common/classes/projects/projectCategory.class.php
+++ b/eclipse.org-common/classes/projects/projectCategory.class.php
@@ -39,7 +39,7 @@
 
 
 	# default constructor
-	function projectCategory() {
+	function __construct() {
 		$this->project_id 		= "";
 		$this->category_id		= "";
 		$this->description 		= "";
diff --git a/eclipse.org-common/classes/projects/projectInfoData.class.php b/eclipse.org-common/classes/projects/projectInfoData.class.php
index 448ad30..984ac01 100644
--- a/eclipse.org-common/classes/projects/projectInfoData.class.php
+++ b/eclipse.org-common/classes/projects/projectInfoData.class.php
@@ -27,7 +27,7 @@
 	private $projectshortname; // Same reason as $projectname
 	private $inherited = false;
 
-	function ProjectInfoData( $projectid )
+	function __construct( $projectid )
 	{
 		$App = new App();
 		$this->original_projectid = $projectid;
@@ -181,7 +181,7 @@
 
 class ProjectInfoValues implements Countable {
 	private $rows;
-	function ProjectInfoValues( $projectinfo, $subrows ) {
+	function __construct( $projectinfo, $subrows ) {
 		$this->rows = $subrows;
 	}
 	function __get( $varname )
diff --git a/eclipse.org-common/classes/rest/committerpaperwork.class.php b/eclipse.org-common/classes/rest/committerpaperwork.class.php
index 43857c1..e754a28 100644
--- a/eclipse.org-common/classes/rest/committerpaperwork.class.php
+++ b/eclipse.org-common/classes/rest/committerpaperwork.class.php
@@ -152,6 +152,16 @@
   }
 
   /**
+   * Retire a committer from a specific project. (GET)
+   *
+   * @param string $username
+   * @param int $id
+   */
+  public function targetedActionRetireCommitter($username = NULL, $body = array()) {
+    return $this->post('committer/paperwork/' . $username . '/retire', json_encode($body));
+  }
+
+  /**
    * Validate a username
    *
    * @param string $username
diff --git a/eclipse.org-common/classes/rest/lib/eclipseussblob.class.php b/eclipse.org-common/classes/rest/lib/eclipseussblob.class.php
index 8eb66c5..43affa1 100644
--- a/eclipse.org-common/classes/rest/lib/eclipseussblob.class.php
+++ b/eclipse.org-common/classes/rest/lib/eclipseussblob.class.php
@@ -38,7 +38,7 @@
 
     switch ($this->getEnvShortName()) {
       case 'local':
-        $this->setBaseUrl('https://api.eclipse.local:51243');
+        $this->setBaseUrl('https://api.php53.dev.docker');
         break;
       case 'staging':
         $this->setBaseUrl('https://api-staging.eclipse.org');
diff --git a/eclipse.org-common/classes/rest/lib/restclient.class.php b/eclipse.org-common/classes/rest/lib/restclient.class.php
index 1bd33ea..b65d8ac 100644
--- a/eclipse.org-common/classes/rest/lib/restclient.class.php
+++ b/eclipse.org-common/classes/rest/lib/restclient.class.php
@@ -375,7 +375,7 @@
    * @return Response $return
    */
   public function _getNextPage($data) {
-    if (!isset($data->error) && !empty($data->body) && $data) {
+    if ($data && isset($data->headers['Link']) && !isset($data->error) && !empty($data->body)) {
       $pages = $this->_getHeaderLink($data->headers['Link']);
       if (($pages['self'] !== $pages['last']) && !empty($pages['next'])){
         if ($data = $this->get($pages['next'])) {
diff --git a/eclipse.org-common/classes/rest/userinformation.class.php b/eclipse.org-common/classes/rest/userinformation.class.php
index 267a94d..2ecf0f9 100644
--- a/eclipse.org-common/classes/rest/userinformation.class.php
+++ b/eclipse.org-common/classes/rest/userinformation.class.php
@@ -42,6 +42,42 @@
   }
 
   /**
+   * Retrieve a user's information by mail
+   *
+   * @param string $identifier
+   *
+   * @return array
+   */
+  public function retrieveUserByMail($identifier = "") {
+    if (empty($identifier)) {
+      return array();
+    }
+
+    $query = http_build_query(array('mail' => $identifier));
+    $response = $this->get("account/profile/?" . $query);
+    $this->unsetHeader('If-Match');
+    return $response;
+  }
+
+  /**
+   * Retrieve a user's information by UID
+   *
+   * @param string $identifier
+   *
+   * @return array
+   */
+  public function retrieveUserByUID($identifier = "") {
+    if (empty($identifier)) {
+      return array();
+    }
+
+    $query = http_build_query(array('uid' => $identifier));
+    $response = $this->get("account/profile/?" . $query);
+    $this->unsetHeader('If-Match');
+    return $response;
+  }
+
+  /**
    * Retrieve a user's projects
    *
    * @param string $identifier
diff --git a/eclipse.org-common/classes/themes/baseTheme.class.php b/eclipse.org-common/classes/themes/baseTheme.class.php
index 2554ebd..a9811f3 100644
--- a/eclipse.org-common/classes/themes/baseTheme.class.php
+++ b/eclipse.org-common/classes/themes/baseTheme.class.php
@@ -57,6 +57,13 @@
   protected $display_header_right = TRUE;
 
   /**
+   * Display header title
+   *
+   * @var bool
+   */
+  protected $display_header_title = FALSE;
+
+  /**
    * More menu flag
    *
    * @var bool
@@ -86,11 +93,9 @@
   protected $extra_headers = "";
 
   /**
-   * Google analytics code
-   *
-   * @var string
+   * Extra header html for #header-wrapper element
    */
-  protected $ga_code = "";
+  protected $extra_header_html = "";
 
   /**
    * Page HTML content
@@ -126,6 +131,41 @@
    */
   protected $metatags = array();
 
+    /**
+   * Open Graph Protocol title
+   *
+   * @var string
+   */
+  private $MetaTitle = "";
+
+  /**
+   * Open Graph Protocol description
+   *
+   * @var string
+   */
+  private $MetaDescription = "";
+
+  /**
+   * Open Graph Protocol image
+   *
+   * @var string
+   */
+  private $MetaImage = "";
+
+  /**
+   * Open Graph Protocol image width
+   *
+   * @var string
+   */
+  private $MetaImageWidth = "";
+
+  /**
+   * Open Graph Protocol image height
+   *
+   * @var string
+   */
+  private $MetaImageHeight = "";
+
   /**
    *
    * @var Nav()
@@ -154,13 +194,6 @@
   protected $page_title = "";
 
   /**
-   * Eclipse Promo HTML
-   *
-   * @var unknown
-   */
-  protected $promo_html = NULL;
-
-  /**
    *
    * @var Session()
    */
@@ -190,6 +223,15 @@
   protected $theme_variables = array();
 
   /**
+   * Text for <title> tag
+   *
+   * @var string
+   */
+  protected $title = "";
+
+  protected $toolbar_left_content = "";
+
+  /**
    * Constructor
    */
   function __construct($App = NULL) {
@@ -197,19 +239,19 @@
     $image_path = '//www.eclipse.org' . $this->getThemeUrl('solstice') . 'public/images/logo/';
 
     // Set default images
-    $this->setAttributes('img_logo_default', $image_path . 'eclipse-426x100.png', 'src');
+    $this->setAttributes('img_logo_default', $image_path . 'eclipse-foundation-grey-orange.svg', 'src');
     $this->setAttributes('img_logo_default', 'Eclipse.org logo', 'alt');
     $this->setAttributes('img_logo_default', 'logo-eclipse-default img-responsive hidden-xs', 'class');
 
-    $this->setAttributes('img_logo_eclipse_default', $image_path . 'eclipse-426x100.png', 'src');
+    $this->setAttributes('img_logo_eclipse_default', $image_path . 'eclipse-foundation-grey-orange.svg', 'src');
     $this->setAttributes('img_logo_eclipse_default', 'Eclipse.org logo', 'alt');
     $this->setAttributes('img_logo_eclipse_default', 'img-responsive hidden-xs', 'class');
 
-    $this->setAttributes('img_logo_eclipse_white', $image_path . 'eclipse-logo-bw-332x78.png', 'src');
+    $this->setAttributes('img_logo_eclipse_white', $image_path . 'eclipse-foundation-white.svg', 'src');
     $this->setAttributes('img_logo_eclipse_white', 'Eclipse.org black and white logo', 'alt');
     $this->setAttributes('img_logo_eclipse_white', 'logo-eclipse-white img-responsive');
 
-    $this->setAttributes('img_logo_mobile', $image_path . 'eclipse-800x188.png', 'src');
+    $this->setAttributes('img_logo_mobile', $image_path . 'eclipse-foundation-grey-orange.svg', 'src');
     $this->setAttributes('img_logo_mobile', 'Eclipse.org logo', 'alt');
     $this->setAttributes('img_logo_mobile', 'logo-eclipse-default-mobile img-responsive', 'class');
 
@@ -227,6 +269,7 @@
 
     // Set attributes for header
     $this->setAttributes('header-wrapper', 'header-wrapper', 'id');
+    $this->setAttributes('header-wrapper', 'header-wrapper');
     $this->setAttributes('header-container', 'container');
     $this->setAttributes('header-row', 'header-row', 'id');
     $this->setAttributes('header-row', 'row');
@@ -242,10 +285,14 @@
     $this->setAttributes('main-menu', 'main-menu', 'id');
     $this->setAttributes('main-menu', 'navbar yamm');
     $this->setAttributes('main-menu-ul-navbar', 'nav navbar-nav');
+    $this->setAttributes('navbar-main-menu', 'navbar-main-menu', 'id');
+    $this->setAttributes('navbar-main-menu', 'navbar-collapse collapse reset');
 
     // Set attributes on breadcrumbs
+    $this->setAttributes('breadcrumbs', 'default-breadcrumbs');
     $this->setAttributes('breadcrumbs', 'breadcrumb', 'id');
     $this->setAttributes('breadcrumbs', 'hidden-print');
+    $this->setAttributes('breadcrumbs-container', 'container');
 
     // Set attributes on main content
     $this->setAttributes('main', 'main', 'role');
@@ -253,12 +300,73 @@
     $this->setAttributes('main-container', 'novaContent');
     $this->setAttributes('main-container', 'novaContent', 'id');
 
+    // Set attributes on main sidebar
+    $this->setAttributes('main-sidebar', 'main-sidebar','id');
+    $this->setAttributes('main-sidebar-html-block', 'main-sidebar-html-block');
+
     // Set attributes on footer
+    $this->setAttributes('footer', 'solstice-footer', 'id');
+    $this->setAttributes('footer', 'contentinfo', 'role');
+    $this->setAttributes('footer-container', 'container');
+
     $this->setAttributes('footer1', 'footer-eclipse-foundation', 'id');
     $this->setAttributes('footer2', 'footer-legal', 'id');
     $this->setAttributes('footer3', 'footer-useful-links', 'id');
     $this->setAttributes('footer4', 'footer-other', 'id');
 
+    // Default theme js file
+    $this->setAttributes('script-theme-main-js', $this->getThemeUrl('solstice') . 'public/javascript/main.min.js?var=1.0', 'src');
+  }
+
+  /**
+   * Verify if consent was given to use cookies
+   *
+   * @return boolean
+   */
+  public function hasCookieConsent() {
+    if (isset($_COOKIE['eclipse_cookieconsent_status']) && $_COOKIE['eclipse_cookieconsent_status'] === 'allow') {
+      return TRUE;
+    }
+    return FALSE;
+  }
+
+  /**
+   * Get Google Tag Manager
+   *
+   * Insert this code as high in the <head> of the page as possible.
+   *
+   * @return string
+   */
+  public function getGoogleTagManager(){
+    return "<!-- Google Tag Manager -->
+<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
+new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
+j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-5WLCZXC');</script>
+<!-- End Google Tag Manager -->";
+  }
+
+  /**
+   * Get Google Tag Manager (noscript)
+   *
+   * Insert this code immediately after the opening <body> tag
+   *
+   * @return string
+   */
+  public function getGoogleTagManagerNoScript(){
+    return '<!-- Google Tag Manager (noscript) -->
+<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5WLCZXC"
+height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
+<!-- End Google Tag Manager (noscript) -->';
+  }
+
+
+  /**
+   * Set alternate layout
+   */
+  public function setAlternateLayout($enable = FALSE) {
+
   }
 
   /**
@@ -304,24 +412,51 @@
    * @return string
    */
   public function getShareButtonsHTML() {
-    $display_sharethis = $this->getThemeVariables('sharethis');
-    if ($display_sharethis) {
-      return '<div class="sharethis-inline-share-buttons"></div>';
+    $display_buttons = $this->getThemeVariables('sharethis');
+    $page_title = $this->getPageTitle();
+
+    if (!$display_buttons || empty($page_title)) {
+      return "";
     }
-    return "";
+
+    // Create Twitter button
+    $buttons['twitter'] = '<a class="share-button share-button-twitter" href="#" onclick="
+    window.open(
+      \'https://twitter.com/intent/tweet?text='. $this->getPageTitle() .' - '. $this->App->getCurrentURL() .'\',
+      \'twitter-share-dialog\',
+      \'width=626,height=436\');
+    return false;"><i class="fa fa-twitter"></i></a>';
+
+    // Create Facebook button
+    $buttons['facebook'] = '<a class="share-button share-button-facebook" href="#" onclick="
+    window.open(
+      \'https://www.facebook.com/sharer/sharer.php?u=\'+encodeURIComponent(location.href),
+      \'facebook-share-dialog\',
+      \'width=626,height=436\');
+    return false;"><i class="fa fa-facebook"></i></a>';
+
+    // Create Mail button
+    $buttons['mail'] = '<a class="share-button share-button-mail" href="mailto:?subject=' . str_replace(' ', '%20', $this->getPageTitle()) . '"><i class="fa fa-envelope"></i></a>';
+
+    $html = '<ul class="list-inline margin-bottom-0 text-right">';
+    foreach ($buttons as $button) {
+      $html .= "<li>" . $button . "</li>";
+    }
+    $html .= "</ul>";
+
+    return $html;
+
   }
 
   /**
    * Get the JS of the Share buttons
    * (This should go in the head of the html page)
    *
+   * @deprecated
+   *
    * @return string
    */
   public function getShareButtonsJS() {
-    $display_sharethis = $this->getThemeVariables('sharethis');
-    if ($display_sharethis) {
-      return '<script type="text/javascript" src="//platform-api.sharethis.com/js/sharethis.js#property=58af133aa168200011ff98fe&product=inline-share-buttons"></script>';
-    }
     return "";
   }
 
@@ -437,10 +572,61 @@
     return $this->attributes;
   }
 
+  /**
+   * Remove attributes
+   *
+   * @param string $element
+   * @param string $value
+   * @param string $type
+   */
+  public function removeAttributes($element = '', $value = "", $type = 'class') {
+
+    if (!is_string($element) || empty($element) || empty($value)) {
+      return FALSE;
+    }
+
+    $type = strtolower($type);
+
+    if ($type !== "class") {
+      $this->resetAttributes($element, $type);
+      return TRUE;
+    }
+
+    $number_value = count($value);
+    $value = explode(' ', $value);
+    $count = 0;
+    foreach ($value as $val) {
+      if (isset($this->attributes[$type][$element]) && in_array($val, $this->attributes[$type][$element])) {
+        $key = array_search ($val, $this->attributes['class'][$element]);
+        unset($this->attributes['class'][$element][$key]);
+        continue;
+      }
+      $count++;
+    }
+
+    // Remove element if now empty
+    if (empty($this->attributes['class'][$element])) {
+      unset($this->attributes['class'][$element]);
+    }
+
+    // Check if we removed the value from the array
+    if ($count !== $number_value) {
+      return TRUE;
+    }
+    // Nothing happened
+    return FALSE;
+  }
+
   function getBareboneAssets() {
     $url = $this->getEclipseUrl() . $this->getThemeUrl("solstice") . "public/stylesheets/";
     $current_theme = $this->getTheme();
-    if ($current_theme !== "solstice") {
+
+    $themes = array(
+      'locationtech',
+      'polarsys'
+    );
+
+    if (in_array($current_theme, $themes)) {
       $url .= $current_theme . '-';
     }
     $url .= 'barebone.min.css';
@@ -517,14 +703,6 @@
       return "";
     }
 
-    $theme_breadcrumbs_html = $this->getThemeVariables('breadcrumbs_html');
-    if (!empty($theme_breadcrumbs_html)) {
-      $this->setAttributes('breadcrumbs', 'large-breadcrumbs');
-    }
-    else {
-      $this->setAttributes('breadcrumbs', 'default-breadcrumbs');
-    }
-
     $Breadcrumb = $this->_getBreadcrumb();
     $crumb_list = $Breadcrumb->getCrumbList();
 
@@ -547,15 +725,20 @@
     }
     $breadcrumb_html .= "</ol>";
 
+    $content_html = '<div class="col-sm-24">' . $breadcrumb_html . '</div>';
+    $sharethis_html = $this->getShareButtonsHTML();
+    if (!empty($sharethis_html)) {
+      $content_html = '<div class="col-sm-16">' . $breadcrumb_html . '</div>';
+      $content_html .= '<div class="col-sm-8 padding-top-5">' . $sharethis_html . '</div>';
+    }
+
     return <<<EOHTML
     <section{$this->getAttributes('breadcrumbs')}>
-      <div class="container">
+      <div{$this->getAttributes('breadcrumbs-container')}>
         <h3 class="sr-only">Breadcrumbs</h3>
         <div class="row">
-          <div class="col-sm-16 padding-left-30">{$breadcrumb_html}</div>
-          <div class="col-sm-8 margin-top-15">{$this->getShareButtonsHTML()}</div>
+          {$content_html}
         </div>
-        {$theme_breadcrumbs_html}
       </div>
     </section> <!-- /#breadcrumb -->
 EOHTML;
@@ -611,6 +794,7 @@
         $btn['btn_cfa']['class'] = 'btn btn-huge btn-info';
         $theme_variables = $this->setThemeVariables($btn);
         $btn_cfa = $theme_variables['btn_cfa'];
+        $this->setAttributes('main-container', 'legacy-page');
       }
     }
 
@@ -661,7 +845,7 @@
    */
   protected function _getCfaButtonDefault() {
     $default['class'] = 'btn btn-huge btn-warning';
-    $default['href'] = '//www.eclipse.org/downloads/';
+    $default['href'] = '/downloads/';
     $default['text'] = '<i class="fa fa-download"></i> Download';
     return $default;
   }
@@ -672,7 +856,7 @@
    * @return string
    */
   public function getCopyrightNotice() {
-    return 'Copyright &copy; ' . date("Y") . ' The Eclipse Foundation. All Rights Reserved.';
+    return 'Copyright &copy; Eclipse Foundation, Inc. All Rights Reserved.';
   }
 
   /**
@@ -698,9 +882,9 @@
     $App = $this->_getApp();
     if ($App->getOutDated()) {
       $classes[] = "deprecated";
-      $deprecated = '<div class="col-md-24"><div class="alert alert-danger" role="alert">';
+      $deprecated = '<div class="alert alert-danger" role="alert">';
       $deprecated .= $App->getOutDatedMessage();
-      $deprecated .= '</div></div>';
+      $deprecated .= '</div>';
     }
     return $deprecated;
   }
@@ -764,6 +948,25 @@
   }
 
   /**
+   * Get $display_header_right
+   */
+  public function getDisplayHeaderTitle() {
+    return $this->display_header_title;
+  }
+
+  /**
+   * Set $display_header_title
+   *
+   * @param bool $display
+   */
+  public function setDisplayHeaderTitle($display = TRUE) {
+    if ($display !== FALSE) {
+      $display = TRUE;
+    }
+    $this->display_header_title = $display;
+  }
+
+  /**
    * Get $display_toolbar
    */
   public function getDisplayToolbar() {
@@ -851,7 +1054,7 @@
    */
   public function getExtraHeaders() {
     $App = $this->_getApp();
-    $App->setOGTitle($this->getPageTitle());
+    $this->setMetaTitle($this->getPageTitle() . ' | The Eclipse Foundation');
 
     $styles_name = 'styles';
     switch ($this->getTheme()) {
@@ -862,63 +1065,73 @@
       case 'polarsys':
         $styles_name = 'polarsys';
         break;
+
+      case 'quicksilver':
+        $styles_name = 'quicksilver';
+        break;
+
+      case 'jakarta':
+        $styles_name = 'jakarta';
+        break;
+
+      case 'eclipse_ide':
+        $styles_name = 'eclipse-ide';
+        break;
     }
 
-    $css = '<link rel="stylesheet" href="' . $this->getThemeUrl('solstice') . 'public/stylesheets/' . $styles_name . '.min.css"/>';
-
-    $return = $css . PHP_EOL;
+    $return = '<link rel="stylesheet" href="' . $this->getThemeUrl('solstice') . 'public/stylesheets/' . $styles_name . '.min.css?v1.0"/>' . PHP_EOL;
 
     // Add og:metatags if they haven't been set.
     // @todo: deprecated og functions in App().
     if (!$this->getMetatagByKey('og:description')) {
       $this->setMetatags('og:description', array(
         'property' => 'og:description',
-        'content' => $App->getOGDescription(),
+        'content' => $this->getMetaDescription(),
       ));
     }
 
     if (!$this->getMetatagByKey('og:image')) {
       $this->setMetatags('og:image', array(
         'property' => 'og:image',
-        'content' => $App->getOGImage(),
+        'content' => $this->getMetaImage(),
       ));
     }
 
     if (!$this->getMetatagByKey('og:title')) {
       $this->setMetatags('og:title', array(
         'property' => 'og:title',
-        'content' => $App->getOGTitle(),
+        'content' => $this->getMetaTitle(),
       ));
     }
 
     if (!$this->getMetatagByKey('og:image:width')) {
       $this->setMetatags('og:image:width', array(
         'property' => 'og:image:width',
-        'content' => $App->getOGImageWidth(),
+        'content' => $this->getMetaImageWidth(),
       ));
     }
 
     if (!$this->getMetatagByKey('og:image:height')) {
       $this->setMetatags('og:image:height', array(
         'property' => 'og:image:height',
-        'content' => $App->getOGImageHeight(),
+        'content' => $this->getMetaImageHeight(),
       ));
     }
 
-    $image = 'https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-400x400.png';
+    $image = 'https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-400x400.png';
 
     // Schema.org markup for Google+
     if (!$this->getMetatagByKey('itemprop:name')) {
       $this->setMetatags('itemprop:name', array(
         'itemprop' => 'name',
-        'content' => $App->getOGTitle(),
+        'content' => $this->getMetaTitle(),
       ));
     }
 
     if (!$this->getMetatagByKey('itemprop:description')) {
       $this->setMetatags('itemprop:description', array(
         'itemprop' => 'description',
-        'content' => $App->getOGDescription(),
+        'content' => $this->getMetaDescription(),
       ));
     }
 
@@ -947,7 +1160,7 @@
     if (!$this->getMetatagByKey('twitter:title')) {
       $this->setMetatags('twitter:title', array(
         'name' => 'twitter:title',
-        'content' => $App->getOGTitle(),
+        'content' => $this->getMetaTitle(),
       ));
     }
 
@@ -961,7 +1174,7 @@
     if (!$this->getMetatagByKey('twitter:description')) {
       $this->setMetatags('twitter:description', array(
         'name' => 'twitter:description',
-        'content' => $App->getOGDescription(),
+        'content' => $this->getMetaDescription(),
       ));
     }
 
@@ -972,7 +1185,6 @@
       ));
     }
 
-    $return .= $this->getShareButtonsJS();
     $return .= $this->getMetatagsHTML();
     $return .= $this->extra_headers;
     $return .= $App->ExtraHtmlHeaders;
@@ -982,7 +1194,18 @@
       if ($App->PageRSSTitle != "") {
         $App->PageRSSTitle = "Eclipse RSS Feed";
       }
-      $return .= '<link rel="alternate" title="' . $App->PageRSSTitle . '" href="' . $App->PageRSS . '" type="application/rss+xml"/>';
+      $return .= '<link rel="alternate" title="' . $App->PageRSSTitle . '" href="' . $App->PageRSS . '" type="application/rss+xml"/>' . PHP_EOL;
+    }
+
+    // Load proper font for each theme
+    switch ($this->getTheme()) {
+      case 'solstice':
+      case 'polarsys':
+      case 'locationtech':
+        $return .= '<link href="//fonts.googleapis.com/css?family=Open+Sans:400,700,300,600,100" rel="stylesheet" type="text/css"/>';
+        break;
+      default:
+        $return .= '<link href="//fonts.googleapis.com/css?family=Libre+Franklin:400,700,300,600,100" rel="stylesheet" type="text/css"/>';
     }
 
     return $return. PHP_EOL;
@@ -994,7 +1217,17 @@
    * @param string $headers
    */
   public function setExtraHeaders($headers = "") {
-    $this->extra_headers = $headers;
+    $this->extra_headers .= $headers;
+  }
+
+  /**
+   * Get Html of Footer prexix
+   *
+   * This is a way for sub-themes to inject
+   * html before the footer.
+   */
+  public function getFooterPrexfix() {
+    return "";
   }
 
   /**
@@ -1040,11 +1273,59 @@
   public function getExtraJsFooter() {
     $App = $this->_getApp();
     $return = $App->ExtraJSFooter . PHP_EOL;
-    $return .= $this->getGoogleAnalytics() . PHP_EOL;
     return $return;
   }
 
-  public function getHeaderRight(){
+  /**
+   * Get extra html for the #header-wrapper element
+   */
+  public function getExtraHeaderHtml() {
+    return $this->extra_header_html;
+  }
+
+  /**
+   * Set extra html for the #header-wrapper element
+   *
+   * @param string $html
+   */
+  public function setExtraHeaderHtml($html) {
+    if (!empty($html)) {
+      $this->extra_header_html .= $html;
+    }
+  }
+
+  /**
+   * Set title
+   *
+   * @param string $title
+   */
+  public function setTitle($title) {
+    if (!empty($title) && is_string($title)) {
+      $this->title = $title;
+    }
+  }
+
+  /**
+   * Get title
+   *
+   * @return string
+   */
+  public function getTitle() {
+    if (empty($this->title)) {
+      return $this->getPageTitle();
+    }
+    return $this->title;
+  }
+
+  /**
+   * Get HeaderRight
+   *
+   * This section is usually reserved for the google search (solstice),
+   * and our Call for Action link.
+   *
+   * @return string
+   */
+  public function getHeaderRight() {
     if (!$this->getDisplayHeaderRight()) {
       return "";
     }
@@ -1081,19 +1362,21 @@
     $html = "";
     $html .= '<div class="header_nav">';
     $html .= '<div class="col-xs-24 col-md-10 vcenter">';
-    $logo = '<img src="' . $header_nav['logo']['src'] . '" alt="' . $header_nav['logo']['alt'] . '" class="img-responsive  header_nav_logo"/>';
+    if (!empty($header_nav['logo']['src'])) {
+      $logo = '<img src="' . $header_nav['logo']['src'] . '" alt="' . $header_nav['logo']['alt'] . '" class="img-responsive  header_nav_logo"/>';
 
-    if (!empty($header_nav['logo']['url'])) {
-      $html .= '<a href="' . $header_nav['logo']['url'] . '" title="' . $header_nav['logo']['alt'] . '" target="' . $header_nav['logo']['target'] . '">';
-      $html .= $logo;
-      $html .= '</a>';
-    }
-    else {
-      $html .= $logo;
+      if (!empty($header_nav['logo']['url'])) {
+        $html .= '<a href="' . $header_nav['logo']['url'] . '" title="' . $header_nav['logo']['alt'] . '" target="' . $header_nav['logo']['target'] . '">';
+        $html .= $logo;
+        $html .= '</a>';
+      }
+      else {
+        $html .= $logo;
+      }
     }
 
     $html .= '</div>';
-    $html .= '<div class="col-xs-24 col-md-offset-2 col-md-12 vcenter">';
+    $html .= '<div class="col-xs-24 col-md-14 vcenter">';
     $html .= '<ul class="clearfix">';
 
     foreach ($header_nav['links'] as $l) {
@@ -1159,7 +1442,7 @@
   private function _getHeaderNavDefaultLogo() {
     $h = $this->getThemeVariables('header_nav');
 
-    if (!is_array($h) || empty($h['logo']) || !is_array($h['logo'])) {
+    if (!is_array($h) || empty($h)) {
       return FALSE;
     }
 
@@ -1175,14 +1458,16 @@
       )
     );
 
-    foreach ($h['logo'] as &$logo) {
-      $logo = $this->is_var($logo);
-    }
+    if (!empty($h['logo'])) {
+      foreach ($h['logo'] as &$logo) {
+        $logo = $this->is_var($logo);
+      }
 
-    $h['logo'] = array_merge($default['logo'], $h['logo']);
+      $h['logo'] = array_merge($default['logo'], $h['logo']);
 
-    if (empty($h['logo']['src']) || empty($h['links']) || !is_array($h['links'])) {
-      return FALSE;
+      if (empty($h['logo']['src']) || empty($h['links']) || !is_array($h['links'])) {
+        return FALSE;
+      }
     }
 
     foreach ($h['links'] as $l) {
@@ -1205,44 +1490,21 @@
    * Get Google Analytics JS code
    *
    * @return string
+   * @deprecated
    */
   public function getGoogleAnalytics() {
-    if (empty($this->ga_code) && !is_null($this->ga_code)) {
-      $this->setGoogleAnalytics();
-    }
-
-    if (is_null($this->ga_code)) {
-      return "";
-    }
-
-    return <<<EOHTML
-      <script type="text/javascript">
-
-        var _gaq = _gaq || [];
-        _gaq.push(['_setAccount', '$this->ga_code']);
-        _gaq.push(['_trackPageview']);
-
-        (function() {
-          var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
-          ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
-          var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
-        })();
-
-      </script>
-EOHTML;
+    trigger_error("Deprecated function called.", E_USER_NOTICE);
+    return "";
   }
 
   /**
    * Set google analytics id code
    *
    * @param string $code
+   * @deprecated
    */
   public function setGoogleAnalytics($code = "") {
-    $App = $this->_getApp();
-    if (empty($code)) {
-      $code = $App->getGoogleAnalyticsTrackingCode();
-    }
-    $this->ga_code = $code;
+    trigger_error("Deprecated function called.", E_USER_NOTICE);
   }
 
   /**
@@ -1252,6 +1514,11 @@
     if (!$this->getDisplayGoogleSearch()) {
       return "";
     }
+
+    if (!$this->hasCookieConsent()) {
+      return '';
+    }
+
     $domain = $this->App->getEclipseDomain();
     return <<<EOHTML
     <div class="row"><div class="col-md-24">
@@ -1288,7 +1555,58 @@
    * Get page $html
    */
   public function getHtml() {
-    return $this->html;
+
+    // Define the body content
+    $body = $this->getDeprecatedMessage();
+    $body .= $this->getHeaderNav();
+    $body .= $this->getSystemMessages();
+    $body .= $this->getThemeVariables('main_container_html');
+    $body .= $this->html;
+
+    // If Title is in the Header
+    $html_page_title = "";
+    if ($this->getDisplayHeaderTitle()) {
+      // Remove attributes of breadcrumbs
+      $this->removeAttributes('breadcrumbs', 'breadcrumbs-default-margin');
+
+      // Set attributes for sidebar
+      $this->setAttributes('main-sidebar', 'hidden-sm hidden-xs');
+
+      // Define Main page Title
+      $html_page_title = '<div class="main-page-title"><div class="container">';
+      $html_page_title .= '<div class="' . ($nav = $this->getThemeFile('nav') ? 'col-sm-18' : 'col-sm-24') . ' reset">';
+      $html_page_title .= '<h1>' . $this->getPageTitle() . '</h1>';
+      $html_page_title .= '</div>';
+      if ($nav = $this->getThemeFile('nav')) {
+        $html_page_title .= '<div class="col-md-6">' . $nav . '</div>';
+      }
+      $html_page_title .= '</div></div>';
+
+      // Reset attributes for sidebar that will be in the body
+      $this->removeAttributes('main-sidebar', 'hidden-sm hidden-xs');
+      $this->setAttributes('main-sidebar', 'hidden-md hidden-lg');
+    }
+
+    // set a different body if there's a sidebar
+    if ($nav = $this->getThemeFile('nav')) {
+      $body_content = $body;
+      $body = '<div class="row">';
+      $body .= '<div class="col-md-18">' . $body_content . '</div>';
+      $body .= '<div class="col-md-6">' . $nav . '</div>';
+      $body .= '</div>';
+    }
+
+    // Define the html
+    return <<<EOHTML
+      {$this->getBreadcrumbHtml()}
+      <main{$this->getAttributes('main')}>
+        {$html_page_title}
+        <div{$this->getAttributes('main-container')}>
+          {$body}
+        </div>
+      </main>
+EOHTML;
+
   }
 
   /**
@@ -1311,11 +1629,12 @@
       'default',
       'default-header',
       'default-footer',
+      'default-fluid',
       'barebone',
       'thin',
       'thin-header',
       'default-with-footer-min',
-      'thin-with-footer-min'
+      'thin-with-footer-min',
     );
     $this->layout = 'default';
     if (in_array($layout, $acceptable_layouts)) {
@@ -1337,7 +1656,7 @@
     $link_logo = $this->getAttributes('link_logo_' . $id);
     $img_logo = $this->getAttributes('img_logo_' . $id);
     $return = "";
-    if (!empty($img_logo['src'])) {
+    if (!empty($img_logo)) {
       $att_id = str_replace('_', '-', 'logo-' . $id);
       $this->setAttributes($att_id, 'wrapper-' . $att_id);
       //$logo['white_link'] = '<a href="' . $base_url . '">' . $logo['white'] . '</a>';
@@ -1447,9 +1766,8 @@
     }
     $Menu = new Menu();
     $Menu->setMenuItemList(array());
-    $Menu->addMenuItem("Download", $base_url . "downloads/", "_self");
-    $Menu->addMenuItem("Getting Started", $base_url . "users/", "_self");
     $Menu->addMenuItem("Members", $base_url . "membership/", "_self");
+    $Menu->addMenuItem("Working Groups", $base_url . "org/workinggroups/", "_self");
     $Menu->addMenuItem("Projects", $base_url . "projects/", "_self");
     return $Menu;
   }
@@ -1524,6 +1842,11 @@
       'caption' => 'Videos'
     );
 
+    $variables['Community'][] = array(
+      'url' => 'https://blogs.eclipse.org',
+      'caption' => 'Blogs'
+    );
+
     $variables['Participate'][] = array(
       'url' => 'https://bugs.eclipse.org/bugs/',
       'caption' => 'Report a Bug'
@@ -1549,44 +1872,50 @@
       'caption' => 'IRC'
     );
 
-    $variables['Participate'][] = array(
+    $variables['Eclipse IDE'][] = array(
+      'url' => $base_url . 'downloads',
+      'caption' => 'Download'
+    );
+
+    $variables['Eclipse IDE'][] = array(
+      'url' => 'https://help.eclipse.org',
+      'caption' => 'Documentation'
+    );
+
+    $variables['Eclipse IDE'][] = array(
+      'url' => $base_url . 'getting_started',
+      'caption' => 'Getting Started / Support'
+    );
+
+    $variables['Eclipse IDE'][] = array(
       'url' => $base_url . 'contribute/',
       'caption' => 'How to Contribute'
     );
 
-    $variables['Working Groups'][] = array(
-      'url' => 'http://iot.eclipse.org',
-      'caption' => 'Internet of Things'
+    $variables['Eclipse IDE'][] = array(
+      'url' => $base_url . 'ide/',
+      'caption' => 'IDE and Tools'
     );
 
-    $variables['Working Groups'][] = array(
-      'url' => 'http://locationtech.org',
-      'caption' => 'LocationTech'
+    $variables['Eclipse IDE'][] = array(
+      'url' => 'https://www.eclipse.org/forums/index.php/f/89/',
+      'caption' => 'Newcomer Forum'
     );
 
-    $variables['Working Groups'][] = array(
-      'url' => 'http://lts.eclipse.org',
-      'caption' => 'Long-Term Support'
-    );
-
-    $variables['Working Groups'][] = array(
-      'url' => 'http://polarsys.org',
-      'caption' => 'PolarSys'
-    );
-
-    $variables['Working Groups'][] = array(
-      'url' => 'http://science.eclipse.org',
-      'caption' => 'Science'
-    );
-
-    $variables['Working Groups'][] = array(
-      'url' => 'http://www.openmdm.org',
-      'caption' => 'OpenMDM'
-    );
     return $variables;
   }
 
   /**
+   * Get Menu Suffix
+   *
+   * @return string
+   */
+  protected function _getMenuSuffix(){
+    return "";
+  }
+
+
+  /**
    * Get Navigation variables
    *
    * @return array
@@ -1602,7 +1931,6 @@
     );
     if ($this->Nav instanceof Nav) {
       // add faux class to #novaContent
-      $this->setAttributes('main_container_classes', 'background-image-none');
       $variables['link_count'] = $this->Nav->getLinkCount();
       $variables['html_block'] = $this->Nav->getHTMLBlock();
       for ($i = 0; $i < $variables['link_count']; $i++) {
@@ -1688,46 +2016,6 @@
   }
 
   /**
-   * Get $promo_html html output
-   *
-   * @return string
-   */
-  public function getPromoHtml() {
-    if (is_null($this->promo_html)) {
-      $this->setPromoHtml();
-    }
-    if (empty($this->promo_html)) {
-      return '';
-    }
-
-    return '<div class="container"><div class="col-md-24">' . $this->promo_html . '</div></div>';
-  }
-
-  /**
-   * Set $promo_html
-   *
-   * @param string $html
-   */
-  public function setPromoHtml($html = "") {
-    if (!empty($html) && is_string($html)) {
-      $this->promo_html = $html;
-      return TRUE;
-    }
-    $App = $this->_getApp();
-    $theme = $this->getTheme();
-    ob_start();
-    if ($App->Promotion == TRUE) {
-      if ($App->CustomPromotionPath != "") {
-        include ($App->CustomPromotionPath);
-      }
-      else {
-        include ($App->getPromotionPath($theme));
-      }
-    }
-    $this->promo_html = trim(ob_get_clean());
-  }
-
-  /**
    * Get $Session
    *
    * @return Session
@@ -1786,27 +2074,31 @@
         'name' => '',
         'last_name' => ''
       );
-      $Session = $this->_getSession();
-      $Friend = $Session->getFriend();
+
       $this->session_variables['create_account_link'] = '<a href="' . $this->getBaseUrlLogin() . '/user/register"><i class="fa fa-user fa-fw"></i> Create account</a>';
       $this->session_variables['my_account_link'] = '<a href="' . $this->getBaseUrlLogin() . '/user/login/' . $this->_getTakeMeBack() . '"><i class="fa fa-sign-in fa-fw"></i> Log in</a>';
       $this->session_variables['logout'] = '';
 
-      if ($Session->isLoggedIn()) {
-        $this->session_variables['user_ldap_uid'] = $Friend->getUID();
-        $this->session_variables['name'] = $Friend->getFirstName();
-        $this->session_variables['last_name'] = $Friend->getLastName();
-        $this->session_variables['full_name'] = $this->App->checkPlain($this->session_variables['name'] . ' ' . $this->session_variables['last_name']);
-        $this->session_variables['create_account_link'] = 'Welcome, ' . $this->session_variables['full_name'];
-        if (!empty($this->session_variables['user_ldap_uid'])){
-           $this->session_variables['create_account_link'] = '<a href="https://www.eclipse.org/user/' . $this->session_variables['user_ldap_uid'] . '">Welcome, ' . $this->session_variables['full_name'] . '</a>';
+      if ($this->hasCookieConsent()) {
+        $Session = $this->_getSession();
+        $Friend = $Session->getFriend();
+        if ($Session->isLoggedIn()) {
+          $this->session_variables['user_ldap_uid'] = $Friend->getUID();
+          $this->session_variables['name'] = $Friend->getFirstName();
+          $this->session_variables['last_name'] = $Friend->getLastName();
+          $this->session_variables['full_name'] = $this->App->checkPlain($this->session_variables['name'] . ' ' . $this->session_variables['last_name']);
+          $this->session_variables['create_account_link'] = 'Welcome, ' . $this->session_variables['full_name'];
+          if (!empty($this->session_variables['user_ldap_uid'])){
+             $this->session_variables['create_account_link'] = '<a href="https://www.eclipse.org/user/' . $this->session_variables['user_ldap_uid'] . '">Welcome, ' . $this->session_variables['full_name'] . '</a>';
+          }
+          $this->session_variables['my_account_link'] = '<a href="' . $this->getBaseUrlLogin() . '/user/edit" class="" data-tab-destination="tab-profile"><i class="fa fa-edit fa-fw"></i> Edit my account</a>';
+          // Adding <li> with logout because we only display
+          // two options if the user is not logged in.
+          $this->session_variables['logout'] = '<li><a href="' . $this->getBaseUrlLogin() . '/user/logout"><i class="fa fa-power-off fa-fw"></i> Log out</a></li>';
         }
-        $this->session_variables['my_account_link'] = '<a href="' . $this->getBaseUrlLogin() . '/user/edit" class="" data-tab-destination="tab-profile"><i class="fa fa-edit fa-fw"></i> Edit my account</a>';
-        // Adding <li> with logout because we only display
-        // two options if the user is not logged in.
-        $this->session_variables['logout'] = '<li><a href="' . $this->getBaseUrlLogin() . '/user/logout"><i class="fa fa-power-off fa-fw"></i> Log out</a></li>';
       }
     }
+
     if (!empty($this->session_variables[$id])) {
       return $this->session_variables[$id];
     }
@@ -1821,6 +2113,10 @@
   public function getSystemMessages() {
     // System messages
     $variables['sys_messages'] = "";
+
+    if (!$this->hasCookieConsent()) {
+       return $variables['sys_messages'];
+    }
     $App = $this->_getApp();
     if ($sys_messages = $App->getSystemMessage()) {
       $main_container_classes = $this->getAttributes('main_container_classes', 'class');
@@ -1892,11 +2188,6 @@
       $this->setAttributes('body', 'hidden-cfa-button');
     }
 
-    $promo_html = $this->getPromoHtml();
-    if (!empty($promo_html) && !empty($theme_variables['btn_cfa']['hide_breadcrumbs'])) {
-      $this->setAttributes('body', "no-breadcrumbs-with-promo");
-    }
-
     ob_start();
     switch ($this->getLayout()) {
       case 'barebone':
@@ -1915,6 +2206,7 @@
         $this->setAttributes('main-menu-wrapper', 'col-sm-16 col-md-18 col-lg-20');
         $this->setAttributes('main-menu-ul-navbar', 'navbar-right');
         $this->setDisplayHeaderRight(FALSE);
+        $this->setAlternateLayout(TRUE);
         print $this->getBareboneAssets();
         print $this->getThemeFile('menu');
         break;
@@ -1931,7 +2223,7 @@
         $this->setDisplayHeaderRight(FALSE);
         print $this->getThemeFile('header');
         print $this->getThemeFile('menu');
-        print $this->getThemeFile('body');
+        print $this->getHtml();
         print $this->getThemeFile('footer');
         break;
 
@@ -1959,10 +2251,43 @@
         $this->setDisplayHeaderRight(FALSE);
         print $this->getThemeFile('header');
         print $this->getThemeFile('menu');
-        print $this->getThemeFile('body');
+        print $this->getHtml();
         print $this->getThemeFile('footer-min');
         break;
 
+      case 'default-fluid':
+
+        // Reduce size of logo for fluid layout
+        $this->resetAttributes('header-left', 'class');
+        $this->setAttributes('header-left', 'col-sm-8 col-md-6 col-lg-4');
+
+       // Override main_container_classes for this layout
+        $this->resetAttributes('main-container', 'class');
+       // $this->setAttributes('main-container', 'container-fluid');
+        $this->setThemeVariables(array('main_container_classes' => 'container-fluid'));
+
+        // reset header container
+        $this->resetAttributes('header-container', 'class');
+        $this->setAttributes('header-container', 'container-fluid');
+
+        // reset toolbar container
+        $this->resetAttributes('toolbar-container', 'class');
+        $this->setAttributes('toolbar-container', 'container-fluid');
+
+        // reset breadcrumbs container
+        $this->resetAttributes('breadcrumbs-container', 'class');
+        $this->setAttributes('breadcrumbs-container', 'container-fluid');
+
+        // reset footer container
+        $this->resetAttributes('footer-container', 'class');
+        $this->setAttributes('footer-container', 'container-fluid');
+
+        print $this->getThemeFile('header');
+        print $this->getThemeFile('menu');
+        print $this->getHtml();
+        print $this->getThemeFile('footer');
+        break;
+
       case 'default-header':
         print $this->getThemeFile('header');
         print $this->getThemeFile('menu');
@@ -1971,14 +2296,14 @@
       case 'default-with-footer-min':
         print $this->getThemeFile('header');
         print $this->getThemeFile('menu');
-        print $this->getThemeFile('body');
+        print $this->getHtml();
         print $this->getThemeFile('footer-min');
         break;
 
       case 'default':
         print $this->getThemeFile('header');
         print $this->getThemeFile('menu');
-        print $this->getThemeFile('body');
+        print $this->getHtml();
         print $this->getThemeFile('footer');
         break;
 
@@ -1987,7 +2312,7 @@
         break;
 
     }
-    return ob_flush();
+    return ob_end_flush();
   }
 
   /**
@@ -2021,9 +2346,7 @@
     if (empty($theme)) {
       $theme = $this->getTheme();
     }
-    $App = $this->_getApp();
-    $path = $App->getBasePath() . '/themes/' . $theme . '/';
-    return strstr($path, '/eclipse.org-common/');
+    return '/eclipse.org-common/themes/' . $theme . '/';
   }
 
   /**
@@ -2062,6 +2385,35 @@
     return $this->theme_variables;
   }
 
+  /**
+   * Set the toolbar left content div element
+   *
+   * @param string $text
+   */
+  public function setToolbarLeftContent($text){
+
+    // Set the proper attributes
+    $this->setAttributes('toolbar-left-content', 'text-left col-md-12 col-md-pull-12 row-toolbar-col toolbar-left-content');
+    $this->resetAttributes('toolbar-user-links', 'class');
+    $this->setAttributes('toolbar-user-links', 'col-md-12 col-md-push-12 row-toolbar-col');
+
+    // Add the text to the container
+    $left_content_attr = $this->getAttributes("toolbar-left-content");
+    if (!empty($text) && !empty($left_content_attr)) {
+      $this->toolbar_left_content = '<div' . $left_content_attr . '>
+            <span>' . $text . '</span></div>';
+    }
+  }
+
+  /**
+   * Get the toolbar left content div element
+   *
+   * @return string
+   */
+  public function getToolbarLeftContent(){
+    return $this->toolbar_left_content;
+  }
+
   public function getToolbarHtml() {
     if (!$this->getDisplayToolbar()) {
       return "";
@@ -2077,6 +2429,7 @@
               {$this->getSessionVariables('logout')}
             </ul>
           </div>
+          {$this->getToolbarLeftContent()}
         </div>
       </div>
     </div>
@@ -2160,4 +2513,163 @@
 
     return "<script> var eclipse_org_common = ". json_encode($script_array) ."</script>";
   }
+
+  /**
+   * Get $OGTitle output
+   *
+   * @return string
+   */
+  public function getMetaTitle() {
+    if (empty($this->MetaTitle)) {
+      $App = $this->_getApp();
+      return $App->getOGTitle();
+    }
+    return $this->MetaTitle;
+  }
+
+  /**
+   * Set $MetaTitle
+   *
+   * @param unknown $title
+   */
+  public function setMetaTitle($title) {
+    $this->MetaTitle = $title;
+  }
+
+  /**
+   * Get $MetaDescription output
+   *
+   * @return string
+   */
+  public function getMetaDescription() {
+    if (empty($this->MetaDescription)) {
+      $App = $this->_getApp();
+      return $App->getOGDescription();
+    }
+    return $this->MetaDescription;
+  }
+
+  /**
+   * Set $MetaDescription
+   *
+   * @param unknown $description
+   */
+  public function setMetaDescription($description) {
+    $this->MetaDescription = $description;
+  }
+
+  /**
+   * Get $MetaImage output
+   *
+   * @return string
+   */
+  public function getMetaImage() {
+    if (empty($this->MetaImage)) {
+      $App = $this->_getApp();
+      return $App->getOGImage();
+    }
+    return $this->MetaImage;
+  }
+
+  /**
+   * Set $MetaImage
+   *
+   * @param unknown $image
+   */
+  public function setMetaImage($image) {
+    $this->MetaImage = $image;
+  }
+
+  /**
+   * Get $MetaImageWidth output
+   */
+  public function getMetaImageWidth() {
+    if (empty($this->MetaImageWidth)) {
+      $App = $this->_getApp();
+      return $App->getOGImageWidth();
+    }
+    return $this->MetaImageWidth;
+  }
+
+  /**
+   * Set $MetaImageWidth
+   *
+   * @param string $width
+   */
+  public function setMetaImageWidth($width) {
+    if (is_numeric($width)) {
+      $this->MetaImageWidth = $width;
+    }
+  }
+
+  /**
+   * Get $MetaImageHeight output
+   */
+  public function getMetaImageHeight() {
+    if (empty($this->MetaImageHeight)) {
+      $App = $this->_getApp();
+      return $App->getOGImageHeight();
+    }
+    return $this->MetaImageHeight;
+  }
+
+  /**
+   * Set $MetaImageHeight
+   *
+   * @param string $height
+   */
+  public function setMetaImageHeight($height) {
+    if (is_numeric($height)) {
+      $this->MetaImageHeight = $height;
+    }
+  }
+
+  /**
+   * Get random promo ad
+   *
+   * @return string
+   */
+  public function getRandomPromo($frontpage = FALSE){
+    include_once ($_SERVER['DOCUMENT_ROOT'] . "/membership/promo/promos.php");
+    if (!function_exists('chooseRandomPromo')) {
+      return '';
+    }
+
+    $ad_id = null;
+    if (isset($_GET['ad_id']) && ctype_digit($_GET['ad_id'])) {
+      $ad_id = $_GET['ad_id'];
+    }
+
+    return chooseRandomPromo($ad_id, $frontpage);
+  }
+
+  /**
+   * Prevent page caching
+   *
+   * @return boolean
+   */
+  function preventCaching() {
+    $this->App->preventCaching();
+    return TRUE;
+  }
+
+  /**
+   * Fetch EF google banner ad
+   *
+   * @return string
+   */
+  function getGoogleBannerAd(){
+    return <<<EOHTML
+<script type="text/javascript">
+<!--
+google_ad_client = "pub-6797025590085056";
+/* 728x90, created 4/17/09 */
+google_ad_slot = "9174493316";
+google_ad_width = 468;
+google_ad_height = 60;
+//-->
+</script>
+ <script type="text/javascript" src="//pagead2.googlesyndication.com/pagead/show_ads.js"></script>
+EOHTML;
+  }
 }
\ No newline at end of file
diff --git a/eclipse.org-common/classes/themes/eclipse_ide.class.php b/eclipse.org-common/classes/themes/eclipse_ide.class.php
new file mode 100644
index 0000000..29d54ee
--- /dev/null
+++ b/eclipse.org-common/classes/themes/eclipse_ide.class.php
@@ -0,0 +1,39 @@
+<?php
+/**
+ * Copyright (c) 2018 Eclipse Foundation and others.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+
+require_once ('quicksilver.class.php');
+class Eclipse_ide extends Quicksilver {
+
+  /**
+   * Constructor
+   */
+  public function __construct($App = NULL) {
+    parent::__construct($App);
+
+    $this->setTheme('eclipse_ide');
+
+    // Set default images
+    $image_path = $this->getThemeUrl('solstice') . 'public/images/logo/eclipse-ide/';
+
+    $this->setAttributes('img_logo_default', $image_path . 'eclipse_logo_white.svg', 'src');
+    $this->setAttributes('img_logo_eclipse_default', $image_path . 'eclipse_logo_white.svg', 'src');
+    $this->setAttributes('img_logo_eclipse_white', $image_path . 'eclipse_logo_white.svg', 'src');
+    $this->setAttributes('img_logo_mobile', $image_path . 'eclipse_logo_white.svg', 'src');
+
+
+    $this->removeAttributes('featured-footer', 'background-secondary');
+    $this->setAttributes('featured-footer', 'background-tertiary');
+
+  }
+}
diff --git a/eclipse.org-common/classes/themes/jakarta.class.php b/eclipse.org-common/classes/themes/jakarta.class.php
new file mode 100644
index 0000000..92d74df
--- /dev/null
+++ b/eclipse.org-common/classes/themes/jakarta.class.php
@@ -0,0 +1,56 @@
+<?php
+/**
+ * Copyright (c) 2018 Eclipse Foundation and others.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ *   Eric Poirier (Eclipse Foundation) - Initial implementation
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+
+require_once ('quicksilver.class.php');
+class Jakarta extends Quicksilver {
+
+  /**
+   * Constructor
+   */
+  public function __construct($App = NULL) {
+    parent::__construct($App);
+
+    $this->setTheme('jakarta');
+
+    // Set default images
+    $image_path = $this->getThemeUrl('solstice') . 'public/images/logo/';
+    $this->setAttributes('img_logo_default', $image_path . 'jakarta-ee-white.svg', 'src');
+    $this->setAttributes('img_logo_default', 'Eclipse.org logo', 'alt');
+    $this->setAttributes('img_logo_default', 'logo-eclipse-default img-responsive hidden-xs', 'class');
+
+    $this->setAttributes('img_logo_eclipse_default', $image_path . 'jakarta-ee-white.svg', 'src');
+    $this->setAttributes('img_logo_eclipse_default', 'Eclipse.org logo', 'alt');
+    $this->setAttributes('img_logo_eclipse_default', 'img-responsive hidden-xs', 'class');
+
+    $this->setAttributes('img_logo_eclipse_white', $image_path . 'jakarta-ee-white.svg', 'src');
+    $this->setAttributes('img_logo_eclipse_white', 'Eclipse.org black and white logo', 'alt');
+    $this->setAttributes('img_logo_eclipse_white', 'logo-eclipse-white img-responsive');
+
+    $this->setAttributes('img_logo_mobile', $image_path . 'jakarta-ee-white.svg', 'src');
+    $this->setAttributes('img_logo_mobile', 'Eclipse.org logo', 'alt');
+    $this->setAttributes('img_logo_mobile', 'logo-eclipse-default-mobile img-responsive', 'class');
+
+  }
+
+
+  /**
+   * Implement BaseTheme::getFooterPrexfix()
+   *
+   * {@inheritDoc}
+   * @see BaseTheme::getFooterPrexfix()
+   */
+  public function getFooterPrexfix() {
+    return "";
+  }
+}
diff --git a/eclipse.org-common/classes/themes/locationtech.class.php b/eclipse.org-common/classes/themes/locationtech.class.php
index d4c7c0d..b8a2420 100644
--- a/eclipse.org-common/classes/themes/locationtech.class.php
+++ b/eclipse.org-common/classes/themes/locationtech.class.php
@@ -179,7 +179,8 @@
         <li class="leaf"><a href="https://locationtech.org/wiki" title="">Wiki</a></li>
         <li class="leaf"><a href="http://foss4g-na.org" title="">FOSS4G NA</a></li>
         <li class="leaf"><a href="http://tour.locationtech.org" title="">Tour</a></li>
-        <li class="last leaf"><a href="http://fedgeoday.org" title="">FedGeoDay</a></li>
+        <li class="leaf"><a href="http://fedgeoday.org" title="">FedGeoDay</a></li>
+        <li class="last leaf"><a href="https://status.eclipse.org">Service Status</a></li>
       </ul>
 EOHTML;
   }
@@ -191,16 +192,9 @@
     return <<<EOHTML
       <div id="footer-working-group-left" class="col-sm-10 col-xs-offset-1 col-md-11 col-md-offset-1 footer-working-group-col">
         {$this->getLogo('default', TRUE)}<br/>
-        <h2 class="section-title sr-only">Other</h2>
-        <ul class="list-inline social-media">
-          <li class="link_twitter first"><a href="//twitter.com/locationtech"><i class="fa fa-twitter-square"></i></a></li>
-          <li class="link_facebook last"><a href="//www.facebook.com/groups/401867609865450/"><i class="fa fa-facebook-square"></i></a></li>
-        </ul>
       </div>
       <div  id="footer-working-group-right" class="col-sm-10 col-xs-offset-1 col-sm-offset-3 col-md-11 col-md-offset-1 footer-working-group-col">
        <span class="hidden-print">{$this->getLogo('eclipse_white', $this->getEclipseUrl())}</span>
-        <p class="padding-top-15">LocationTech is a Working Group of The Eclipse Foundation.</p>
-        <p>{$this->getCopyrightNotice()}</p>
       </div>
 EOHTML;
   }
@@ -209,7 +203,32 @@
    * Get Html of Footer Region 5
    */
   public function getFooterRegion5() {
-    return "";
+    return <<<EOHTML
+      <div class="col-sm-24 margin-top-20">
+        <div class="row">
+          <div id="copyright" class="col-md-16">
+            <p>LocationTech is a Working Group of The Eclipse Foundation.</p>
+            <p id="copyright-text">{$this->getCopyrightNotice()}</p>
+          </div>
+          <div class="col-md-8 social-media">
+            <ul class="list-inline">
+              <li>
+                <a class="social-media-link fa-stack fa-lg" href="//twitter.com/locationtech">
+                  <i class="fa fa-circle-thin fa-stack-2x"></i>
+                  <i class="fa fa-twitter fa-stack-1x"></i>
+                </a>
+              </li>
+              <li>
+                <a class="social-media-link fa-stack fa-lg" href="//www.facebook.com/groups/401867609865450/">
+                  <i class="fa fa-circle-thin fa-stack-2x"></i>
+                  <i class="fa fa-facebook fa-stack-1x"></i>
+                </a>
+              </li>
+            </ul>
+          </div>
+        </div>
+      </div>
+EOHTML;
   }
 
 }
diff --git a/eclipse.org-common/classes/themes/polarsys.class.php b/eclipse.org-common/classes/themes/polarsys.class.php
index a0f5139..60933e6 100644
--- a/eclipse.org-common/classes/themes/polarsys.class.php
+++ b/eclipse.org-common/classes/themes/polarsys.class.php
@@ -176,6 +176,7 @@
         <li class="leaf"><a href="//polarsys.org/faq" title="Frequently Asked Questions">FAQ</a></li>
         <li class="leaf"><a href="//polarsys.org/news" title="">News and Events</a></li>
         <li class="last leaf"><a href="//polarsys.org/polarsys-newsletter" title="">Newsletter</a></li>
+        <li class="last leaf"><a href="https://status.eclipse.org">Service Status</a></li>
       </ul>
 EOHTML;
   }
@@ -188,20 +189,10 @@
       <div id="footer-working-group-left" class="col-sm-10 col-xs-offset-1 col-md-11 col-md-offset-1 footer-working-group-col">
         {$this->getLogo('default', TRUE)}<br/>
         {$this->getLogo('polarsys_sectors', TRUE)}
-
-        <h2 class="section-title sr-only">Other</h2>
-        <ul class="list-inline social-media">
-          <li class="link_twitter first"><a href="//twitter.com/EclipseFdn"><i class="fa fa-twitter-square"></i></a></li>
-          <li class="link_google"><a href="//plus.google.com/+Eclipse"><i class="fa fa-google-plus-square"></i></a></li>
-          <li class="link_facebook"><a href="//www.facebook.com/eclipse.org"><i class="fa fa-facebook-square"></i></a></li>
-          <li class="link_youtube last"><a href="//www.youtube.com/user/EclipseFdn"><i class="fa fa-youtube-square"></i></a></li>
-        </ul>
       </div>
 
       <div  id="footer-working-group-right" class="col-sm-10 col-xs-offset-1 col-sm-offset-3 col-md-11 col-md-offset-1 footer-working-group-col">
         {$this->getLogo('eclipse_default', $this->getEclipseUrl())}
-        <p class="padding-top-15">PolarSys is a Working Group of The Eclipse Foundation.</p>
-        <p>{$this->getCopyrightNotice()}</p>
        </div>
 EOHTML;
   }
@@ -210,7 +201,50 @@
    * Get Html of Footer Region 5
    */
   public function getFooterRegion5() {
-    return "";
+    return <<<EOHTML
+      <div class="col-sm-24 margin-top-20">
+        <div class="row">
+          <div id="copyright" class="col-md-16">
+            <p>PolarSys is a Working Group of The Eclipse Foundation.</p>
+            <p id="copyright-text">{$this->getCopyrightNotice()}</p>
+          </div>
+          <div class="col-md-8 social-media">
+            <ul class="list-inline">
+              <li>
+                <a class="social-media-link fa-stack fa-lg" href="https://twitter.com/EclipseFdn">
+                  <i class="fa fa-circle-thin fa-stack-2x"></i>
+                  <i class="fa fa-twitter fa-stack-1x"></i>
+                </a>
+              </li>
+              <li>
+                <a class="social-media-link fa-stack fa-lg" href="https://plus.google.com/+Eclipse">
+                  <i class="fa fa-circle-thin fa-stack-2x"></i>
+                  <i class="fa fa-google-plus fa-stack-1x"></i>
+                </a>
+              </li>
+              <li>
+                <a class="social-media-link fa-stack fa-lg" href="https://www.facebook.com/eclipse.org">
+                  <i class="fa fa-circle-thin fa-stack-2x"></i>
+                  <i class="fa fa-facebook fa-stack-1x"></i>
+                </a>
+              </li>
+              <li>
+                <a class="social-media-link fa-stack fa-lg" href="https://www.youtube.com/user/EclipseFdn">
+                  <i class="fa fa-circle-thin fa-stack-2x"></i>
+                  <i class="fa fa-youtube fa-stack-1x"></i>
+                </a>
+              </li>
+              <li>
+                <a class="social-media-link fa-stack fa-lg" href="https://www.linkedin.com/company/eclipse-foundation">
+                  <i class="fa fa-circle-thin fa-stack-2x"></i>
+                  <i class="fa fa-linkedin fa-stack-1x"></i>
+                </a>
+              </li>
+            </ul>
+          </div>
+        </div>
+      </div>
+EOHTML;
   }
 
 }
diff --git a/eclipse.org-common/classes/themes/quicksilver.class.php b/eclipse.org-common/classes/themes/quicksilver.class.php
new file mode 100644
index 0000000..ad60275
--- /dev/null
+++ b/eclipse.org-common/classes/themes/quicksilver.class.php
@@ -0,0 +1,198 @@
+<?php
+/**
+ * *****************************************************************************
+ * Copyright (c) 2016 Eclipse Foundation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Christopher Guindon (Eclipse Foundation) - Initial implementation
+ * *****************************************************************************
+ */
+
+require_once ('solstice.class.php');
+class Quicksilver extends solstice {
+
+  /**
+   * Constructor
+   */
+  public function __construct($App = NULL) {
+    parent::__construct($App);
+    $this->setTheme('quicksilver');
+
+    $this->resetAttributes('header-left');
+    $this->resetAttributes('main-menu-wrapper');
+    $this->resetAttributes('header-right');
+    $this->resetAttributes('main-sidebar');
+
+    $this->setAttributes('header-left', 'col-sm-5 col-md-4');
+    $this->setAttributes('main-menu-wrapper', 'col-sm-15 col-md-15 reset margin-top-10');
+    $this->setAttributes('main-menu-wrapper-no-header-right', 'col-sm-24 col-md-19 reset margin-top-10');
+    $this->setAttributes('header-right', 'col-sm-4 col-md-5 text-right hidden-print hidden-xs pull-right margin-top-10');
+
+    $this->setAttributes('navbar-main-menu', 'float-right');
+    $this->removeAttributes('main', 'no-promo');
+    $this->setAttributes('breadcrumbs', 'breadcrumbs-default-margin');
+    $this->setAlternateLayout();
+    $this->removeAttributes('img_logo_default', 'img-responsive', 'class');
+    $this->setAttributes('img_logo_default', '160', 'width');
+    $this->setAttributes('img_logo_mobile', '160', 'width');
+
+    // Featured footer
+    $this->setAttributes('featured-footer', 'featured-footer featured-footer-newsletter background-secondary');
+
+    // Set attributes on main sidebar
+    $this->setAttributes('main-sidebar', 'main-sidebar-default-margin');
+  }
+
+  public function setAlternateLayout($enable = FALSE) {
+   $image_path = '//www.eclipse.org' . $this->getThemeUrl('solstice') . 'public/images/logo/';
+   $default_logo = 'eclipse-foundation-white-orange.svg';
+    if ($enable) {
+      $default_logo = 'eclipse-foundation-grey-orange.svg';
+      $this->setAttributes('body', 'alternate-layout');
+    }
+    else {
+      $this->removeAttributes('body', 'alternate-layout');
+    }
+
+    // Set default images
+    $this->setAttributes('img_logo_default', $image_path . $default_logo, 'src');
+    $this->setAttributes('img_logo_eclipse_default', $image_path . $default_logo, 'src');
+    $this->setAttributes('img_logo_eclipse_white', $image_path . 'eclipse-foundation-white.svg', 'src');
+    $this->setAttributes('img_logo_mobile', $image_path . $default_logo, 'src');
+  }
+
+  /**
+   * Implement BaseTheme::_getHeaderRight();
+   *
+   * Hide headerRight div if empty
+   *
+   * {@inheritDoc}
+   * @see BaseTheme::_getHeaderRight()
+   */
+  public function getHeaderRight(){
+    $cfa_button = $this->getCfaButton();
+    if (!$this->getDisplayHeaderRight() || empty($cfa_button)) {
+      $this->setDisplayHeaderRight(FALSE);
+      $this->resetAttributes('main-menu-wrapper');
+      $this->setAttributes('main-menu-wrapper', 'col-sm-19 col-md-20 reset');
+
+      if (strtolower($this->getLayout()) !== 'barebone') {
+        $this->setAttributes('main-menu-wrapper', 'margin-top-10');
+      }
+      return "";
+    }
+
+   return <<<EOHTML
+      <div{$this->getAttributes('header-right')}>
+        {$this->getCfaButton()}
+      </div>
+EOHTML;
+  }
+
+  /**
+   * Implement BaseTheme::getHeaderLeft();
+   *
+   * Reset header left classes for thin layout
+   *
+   * {@inheritDoc}
+   * @see BaseTheme::getHeaderLeft()
+   */
+  public function getHeaderLeft(){
+    $layout_types = array(
+      'thin',
+      'thin-header',
+      'thin-with-footer-min'
+    );
+    $cfa_button = $this->getCfaButton();
+    if (in_array($this->getLayout(), $layout_types) && (!$this->getDisplayHeaderRight() || empty($cfa_button))) {
+      $this->resetAttributes('header-left', 'class');
+      $this->setAttributes('header-left', 'col-sm-5 col-md-4');
+    }
+    return <<<EOHTML
+      <div{$this->getAttributes('header-left')}>
+        {$this->getLogo('default', TRUE)}
+      </div>
+EOHTML;
+  }
+
+  /**
+   * Get Menu Suffix
+   *
+   * @return string
+   */
+  protected function _getMenuSuffix(){
+    $suffix_items = array();
+
+    $google_search = $this->getGoogleSearch();
+    if (!empty($google_search)) {
+      $suffix_items[] = <<<EOHTML
+      <li class="dropdown eclipse-more main-menu-search">
+        <a data-toggle="dropdown" class="dropdown-toggle" role="button"><i class="fa fa-search"></i> <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+          <li>
+            <!-- Content container to add padding -->
+            <div class="yamm-content">
+              <div class="row">
+                <div class="col-sm-24">
+                  <p>Search</p>
+                  {$this->getGoogleSearch()}
+                </div>
+              </div>
+            </div>
+          </li>
+        </ul>
+      </li>
+EOHTML;
+    }
+
+   return implode('',$suffix_items);
+  }
+
+  /**
+   * Implement BaseTheme::getFooterPrexfix()
+   *
+   * {@inheritDoc}
+   * @see BaseTheme::getFooterPrexfix()
+   */
+  public function getFooterPrexfix() {
+    $main_container_col = "col-sm-24";
+    $promo_html = "";
+
+    include_once ($_SERVER['DOCUMENT_ROOT'] . "/membership/promo/promos.php");
+    if (function_exists('getFoundationPromos') && function_exists('buildStrategicAd')) {
+      $foundation_promo = getFoundationPromos();
+      if (!empty($foundation_promo)) {
+        $main_container_col = "col-sm-10 col-sm-offset-3 margin-bottom-20";
+        $foundation_promo = reset($foundation_promo);
+        $promo_html = '<div class="col-sm-8">' . buildStrategicAd($foundation_promo) . '</div>';
+      }
+    }
+
+    return <<<EOHTML
+    <!-- Sign Up to our Newsletter -->
+    <div{$this->getAttributes('featured-footer')}>
+      <div class="container">
+        <div class="row">
+          <div class="{$main_container_col}">
+            <p><i data-feather="mail" stroke-width="1"></i></p>
+            <h2>Sign up to our Newsletter</h2>
+            <p>A fresh new issue delivered monthly</p>
+            <form action="https://eclipsecon.us6.list-manage.com/subscribe/post" method="post" target="_blank">
+              <div class="form-group">
+                <input type="hidden" name="u" value="eaf9e1f06f194eadc66788a85">
+                <input type="hidden" name="id" value="46e57eacf1">
+              </div>
+              <input type="submit" value="Subscribe" name="subscribe" class="button btn btn-warning">
+            </form>
+          </div>
+          {$promo_html}
+        </div>
+      </div>
+    </div>
+EOHTML;
+  }
+}
diff --git a/eclipse.org-common/classes/themes/solstice.class.php b/eclipse.org-common/classes/themes/solstice.class.php
index 499aecf..e988348 100644
--- a/eclipse.org-common/classes/themes/solstice.class.php
+++ b/eclipse.org-common/classes/themes/solstice.class.php
@@ -22,14 +22,14 @@
     $this->setTheme('solstice');
     parent::__construct($App);
 
-    $this->setAttributes('header-left', 'col-sm-8 col-md-6 col-lg-5');
+    $this->setAttributes('header-left', 'col-sm-5 col-md-4');
     $this->setAttributes('main-menu-wrapper', 'col-sm-14 col-md-16 col-lg-19 reset');
     $this->setAttributes('header-right', 'col-sm-10 col-md-8 col-lg-5 hidden-print hidden-xs pull-right');
 
-    $this->setAttributes('footer1', 'col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print');
-    $this->setAttributes('footer2', 'col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print');
-    $this->setAttributes('footer3', 'col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print');
-    $this->setAttributes('footer4', 'col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print');
+    $this->setAttributes('footer1', 'col-sm-6 hidden-print');
+    $this->setAttributes('footer2', 'col-sm-6 hidden-print');
+    $this->setAttributes('footer3', 'col-sm-6 hidden-print');
+    $this->setAttributes('footer4', 'col-sm-6 hidden-print');
   }
 
   /**
@@ -39,7 +39,7 @@
     return <<<EOHTML
     <h2 class="section-title">Eclipse Foundation</h2>
     <ul class="nav">
-    <li><a href="{$this->getBaseUrl()}org/">About us</a></li>
+    <li><a href="{$this->getBaseUrl()}org/">About Us</a></li>
     <li><a href="{$this->getBaseUrl()}org/foundation/contact.php">Contact Us</a></li>
     <li><a href="{$this->getBaseUrl()}donate">Donate</a></li>
       <li><a href="{$this->getBaseUrl()}org/documents/">Governance</a></li>
@@ -93,14 +93,7 @@
       <li><a href="{$this->getBaseUrl()}projects">Community of Projects</a></li>
       <li><a href="{$this->getBaseUrl()}org/workinggroups/">Working Groups</a></li>
       <li><a href="{$this->getBaseUrl()}org/research/">Research@Eclipse</a></li>
-    </ul>
-
-    <ul class="list-inline social-media">
-      <li><a href="https://twitter.com/EclipseFdn"><i class="fa fa-twitter-square"></i></a></li>
-      <li><a href="https://plus.google.com/+Eclipse"><i class="fa fa-google-plus-square"></i></a></li>
-      <li><a href="https://www.facebook.com/eclipse.org"><i class="fa fa-facebook-square"></i> </a></li>
-      <li><a href="https://www.youtube.com/user/EclipseFdn"><i class="fa fa-youtube-square"></i></a></li>
-      <li><a href="https://www.linkedin.com/company/eclipse-foundation"><i class="fa fa-linkedin-square"></i></a></li>
+      <li><a href="https://status.eclipse.org">Service Status</a></li>
     </ul>
 EOHTML;
   }
@@ -110,9 +103,46 @@
    */
   public function getFooterRegion5() {
     return <<<EOHTML
-      <div id="copyright" class="col-sm-offset-1 col-sm-14 col-md-24 col-md-offset-0">
-        <span class="hidden-print">{$this->getLogo('eclipse_white', $this->getEclipseUrl())}</span>
-        <p id="copyright-text">{$this->getCopyrightNotice()}</p>
+      <div class="col-sm-24 margin-top-20">
+        <div class="row">
+          <div id="copyright" class="col-md-16">
+            <p id="copyright-text">{$this->getCopyrightNotice()}</p>
+          </div>
+          <div class="col-md-8 social-media">
+            <ul class="list-inline">
+              <li>
+                <a class="social-media-link fa-stack fa-lg" href="https://twitter.com/EclipseFdn">
+                  <i class="fa fa-circle-thin fa-stack-2x"></i>
+                  <i class="fa fa-twitter fa-stack-1x"></i>
+                </a>
+              </li>
+              <li>
+                <a class="social-media-link fa-stack fa-lg" href="https://plus.google.com/+Eclipse">
+                  <i class="fa fa-circle-thin fa-stack-2x"></i>
+                  <i class="fa fa-google-plus fa-stack-1x"></i>
+                </a>
+              </li>
+              <li>
+                <a class="social-media-link fa-stack fa-lg" href="https://www.facebook.com/eclipse.org">
+                  <i class="fa fa-circle-thin fa-stack-2x"></i>
+                  <i class="fa fa-facebook fa-stack-1x"></i>
+                </a>
+              </li>
+              <li>
+                <a class="social-media-link fa-stack fa-lg" href="https://www.youtube.com/user/EclipseFdn">
+                  <i class="fa fa-circle-thin fa-stack-2x"></i>
+                  <i class="fa fa-youtube fa-stack-1x"></i>
+                </a>
+              </li>
+              <li>
+                <a class="social-media-link fa-stack fa-lg" href="https://www.linkedin.com/company/eclipse-foundation">
+                  <i class="fa fa-circle-thin fa-stack-2x"></i>
+                  <i class="fa fa-linkedin fa-stack-1x"></i>
+                </a>
+              </li>
+            </ul>
+          </div>
+        </div>
       </div>
 EOHTML;
   }
diff --git a/eclipse.org-common/classes/users/infraBlock.class.php b/eclipse.org-common/classes/users/infraBlock.class.php
index a4a39bc..a4b635d 100644
--- a/eclipse.org-common/classes/users/infraBlock.class.php
+++ b/eclipse.org-common/classes/users/infraBlock.class.php
@@ -31,7 +31,7 @@
   /**
    * Constructor
    */
-  function InfraBlock() {
+  function __construct() {
 
     global $App;
     $this->App = $App;
diff --git a/eclipse.org-common/json/JSON.php b/eclipse.org-common/json/JSON.php
deleted file mode 100644
index 9caa5f8..0000000
--- a/eclipse.org-common/json/JSON.php
+++ /dev/null
@@ -1,806 +0,0 @@
-<?php
-/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
-
-/**
- * Converts to and from JSON format.
- *
- * JSON (JavaScript Object Notation) is a lightweight data-interchange
- * format. It is easy for humans to read and write. It is easy for machines
- * to parse and generate. It is based on a subset of the JavaScript
- * Programming Language, Standard ECMA-262 3rd Edition - December 1999.
- * This feature can also be found in  Python. JSON is a text format that is
- * completely language independent but uses conventions that are familiar
- * to programmers of the C-family of languages, including C, C++, C#, Java,
- * JavaScript, Perl, TCL, and many others. These properties make JSON an
- * ideal data-interchange language.
- *
- * This package provides a simple encoder and decoder for JSON notation. It
- * is intended for use with client-side Javascript applications that make
- * use of HTTPRequest to perform server communication functions - data can
- * be encoded into JSON notation for use in a client-side javascript, or
- * decoded from incoming Javascript requests. JSON format is native to
- * Javascript, and can be directly eval()'ed with no further parsing
- * overhead
- *
- * All strings should be in ASCII or UTF-8 format!
- *
- * LICENSE: Redistribution and use in source and binary forms, with or
- * without modification, are permitted provided that the following
- * conditions are met: Redistributions of source code must retain the
- * above copyright notice, this list of conditions and the following
- * disclaimer. Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
- * NO EVENT SHALL CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
- * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
- * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
- * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
- * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
- * DAMAGE.
- *
- * @category
- * @package     Services_JSON
- * @author      Michal Migurski <mike-json@teczno.com>
- * @author      Matt Knapp <mdknapp[at]gmail[dot]com>
- * @author      Brett Stimmerman <brettstimmerman[at]gmail[dot]com>
- * @copyright   2005 Michal Migurski
- * @version     CVS: $Id: JSON.php,v 1.1 2009/05/06 18:23:36 droy Exp $
- * @license     http://www.opensource.org/licenses/bsd-license.php
- * @link        http://pear.php.net/pepr/pepr-proposal-show.php?id=198
- */
-
-/**
- * Marker constant for Services_JSON::decode(), used to flag stack state
- */
-define('SERVICES_JSON_SLICE',   1);
-
-/**
- * Marker constant for Services_JSON::decode(), used to flag stack state
- */
-define('SERVICES_JSON_IN_STR',  2);
-
-/**
- * Marker constant for Services_JSON::decode(), used to flag stack state
- */
-define('SERVICES_JSON_IN_ARR',  3);
-
-/**
- * Marker constant for Services_JSON::decode(), used to flag stack state
- */
-define('SERVICES_JSON_IN_OBJ',  4);
-
-/**
- * Marker constant for Services_JSON::decode(), used to flag stack state
- */
-define('SERVICES_JSON_IN_CMT', 5);
-
-/**
- * Behavior switch for Services_JSON::decode()
- */
-define('SERVICES_JSON_LOOSE_TYPE', 16);
-
-/**
- * Behavior switch for Services_JSON::decode()
- */
-define('SERVICES_JSON_SUPPRESS_ERRORS', 32);
-
-/**
- * Converts to and from JSON format.
- *
- * Brief example of use:
- *
- * <code>
- * // create a new instance of Services_JSON
- * $json = new Services_JSON();
- *
- * // convert a complexe value to JSON notation, and send it to the browser
- * $value = array('foo', 'bar', array(1, 2, 'baz'), array(3, array(4)));
- * $output = $json->encode($value);
- *
- * print($output);
- * // prints: ["foo","bar",[1,2,"baz"],[3,[4]]]
- *
- * // accept incoming POST data, assumed to be in JSON notation
- * $input = file_get_contents('php://input', 1000000);
- * $value = $json->decode($input);
- * </code>
- */
-class Services_JSON
-{
-   /**
-    * constructs a new JSON instance
-    *
-    * @param    int     $use    object behavior flags; combine with boolean-OR
-    *
-    *                           possible values:
-    *                           - SERVICES_JSON_LOOSE_TYPE:  loose typing.
-    *                                   "{...}" syntax creates associative arrays
-    *                                   instead of objects in decode().
-    *                           - SERVICES_JSON_SUPPRESS_ERRORS:  error suppression.
-    *                                   Values which can't be encoded (e.g. resources)
-    *                                   appear as NULL instead of throwing errors.
-    *                                   By default, a deeply-nested resource will
-    *                                   bubble up with an error, so all return values
-    *                                   from encode() should be checked with isError()
-    */
-    function Services_JSON($use = 0)
-    {
-        $this->use = $use;
-    }
-
-   /**
-    * convert a string from one UTF-16 char to one UTF-8 char
-    *
-    * Normally should be handled by mb_convert_encoding, but
-    * provides a slower PHP-only method for installations
-    * that lack the multibye string extension.
-    *
-    * @param    string  $utf16  UTF-16 character
-    * @return   string  UTF-8 character
-    * @access   private
-    */
-    function utf162utf8($utf16)
-    {
-        // oh please oh please oh please oh please oh please
-        if(function_exists('mb_convert_encoding')) {
-            return mb_convert_encoding($utf16, 'UTF-8', 'UTF-16');
-        }
-
-        $bytes = (ord($utf16{0}) << 8) | ord($utf16{1});
-
-        switch(true) {
-            case ((0x7F & $bytes) == $bytes):
-                // this case should never be reached, because we are in ASCII range
-                // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                return chr(0x7F & $bytes);
-
-            case (0x07FF & $bytes) == $bytes:
-                // return a 2-byte UTF-8 character
-                // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                return chr(0xC0 | (($bytes >> 6) & 0x1F))
-                     . chr(0x80 | ($bytes & 0x3F));
-
-            case (0xFFFF & $bytes) == $bytes:
-                // return a 3-byte UTF-8 character
-                // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                return chr(0xE0 | (($bytes >> 12) & 0x0F))
-                     . chr(0x80 | (($bytes >> 6) & 0x3F))
-                     . chr(0x80 | ($bytes & 0x3F));
-        }
-
-        // ignoring UTF-32 for now, sorry
-        return '';
-    }
-
-   /**
-    * convert a string from one UTF-8 char to one UTF-16 char
-    *
-    * Normally should be handled by mb_convert_encoding, but
-    * provides a slower PHP-only method for installations
-    * that lack the multibye string extension.
-    *
-    * @param    string  $utf8   UTF-8 character
-    * @return   string  UTF-16 character
-    * @access   private
-    */
-    function utf82utf16($utf8)
-    {
-        // oh please oh please oh please oh please oh please
-        if(function_exists('mb_convert_encoding')) {
-            return mb_convert_encoding($utf8, 'UTF-16', 'UTF-8');
-        }
-
-        switch(strlen($utf8)) {
-            case 1:
-                // this case should never be reached, because we are in ASCII range
-                // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                return $utf8;
-
-            case 2:
-                // return a UTF-16 character from a 2-byte UTF-8 char
-                // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                return chr(0x07 & (ord($utf8{0}) >> 2))
-                     . chr((0xC0 & (ord($utf8{0}) << 6))
-                         | (0x3F & ord($utf8{1})));
-
-            case 3:
-                // return a UTF-16 character from a 3-byte UTF-8 char
-                // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                return chr((0xF0 & (ord($utf8{0}) << 4))
-                         | (0x0F & (ord($utf8{1}) >> 2)))
-                     . chr((0xC0 & (ord($utf8{1}) << 6))
-                         | (0x7F & ord($utf8{2})));
-        }
-
-        // ignoring UTF-32 for now, sorry
-        return '';
-    }
-
-   /**
-    * encodes an arbitrary variable into JSON format
-    *
-    * @param    mixed   $var    any number, boolean, string, array, or object to be encoded.
-    *                           see argument 1 to Services_JSON() above for array-parsing behavior.
-    *                           if var is a strng, note that encode() always expects it
-    *                           to be in ASCII or UTF-8 format!
-    *
-    * @return   mixed   JSON string representation of input var or an error if a problem occurs
-    * @access   public
-    */
-    function encode($var)
-    {
-        switch (gettype($var)) {
-            case 'boolean':
-                return $var ? 'true' : 'false';
-
-            case 'NULL':
-                return 'null';
-
-            case 'integer':
-                return (int) $var;
-
-            case 'double':
-            case 'float':
-                return (float) $var;
-
-            case 'string':
-                // STRINGS ARE EXPECTED TO BE IN ASCII OR UTF-8 FORMAT
-                $ascii = '';
-                $strlen_var = strlen($var);
-
-               /*
-                * Iterate over every character in the string,
-                * escaping with a slash or encoding to UTF-8 where necessary
-                */
-                for ($c = 0; $c < $strlen_var; ++$c) {
-
-                    $ord_var_c = ord($var{$c});
-
-                    switch (true) {
-                        case $ord_var_c == 0x08:
-                            $ascii .= '\b';
-                            break;
-                        case $ord_var_c == 0x09:
-                            $ascii .= '\t';
-                            break;
-                        case $ord_var_c == 0x0A:
-                            $ascii .= '\n';
-                            break;
-                        case $ord_var_c == 0x0C:
-                            $ascii .= '\f';
-                            break;
-                        case $ord_var_c == 0x0D:
-                            $ascii .= '\r';
-                            break;
-
-                        case $ord_var_c == 0x22:
-                        case $ord_var_c == 0x2F:
-                        case $ord_var_c == 0x5C:
-                            // double quote, slash, slosh
-                            $ascii .= '\\'.$var{$c};
-                            break;
-
-                        case (($ord_var_c >= 0x20) && ($ord_var_c <= 0x7F)):
-                            // characters U-00000000 - U-0000007F (same as ASCII)
-                            $ascii .= $var{$c};
-                            break;
-
-                        case (($ord_var_c & 0xE0) == 0xC0):
-                            // characters U-00000080 - U-000007FF, mask 110XXXXX
-                            // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                            $char = pack('C*', $ord_var_c, ord($var{$c + 1}));
-                            $c += 1;
-                            $utf16 = $this->utf82utf16($char);
-                            $ascii .= sprintf('\u%04s', bin2hex($utf16));
-                            break;
-
-                        case (($ord_var_c & 0xF0) == 0xE0):
-                            // characters U-00000800 - U-0000FFFF, mask 1110XXXX
-                            // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                            $char = pack('C*', $ord_var_c,
-                                         ord($var{$c + 1}),
-                                         ord($var{$c + 2}));
-                            $c += 2;
-                            $utf16 = $this->utf82utf16($char);
-                            $ascii .= sprintf('\u%04s', bin2hex($utf16));
-                            break;
-
-                        case (($ord_var_c & 0xF8) == 0xF0):
-                            // characters U-00010000 - U-001FFFFF, mask 11110XXX
-                            // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                            $char = pack('C*', $ord_var_c,
-                                         ord($var{$c + 1}),
-                                         ord($var{$c + 2}),
-                                         ord($var{$c + 3}));
-                            $c += 3;
-                            $utf16 = $this->utf82utf16($char);
-                            $ascii .= sprintf('\u%04s', bin2hex($utf16));
-                            break;
-
-                        case (($ord_var_c & 0xFC) == 0xF8):
-                            // characters U-00200000 - U-03FFFFFF, mask 111110XX
-                            // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                            $char = pack('C*', $ord_var_c,
-                                         ord($var{$c + 1}),
-                                         ord($var{$c + 2}),
-                                         ord($var{$c + 3}),
-                                         ord($var{$c + 4}));
-                            $c += 4;
-                            $utf16 = $this->utf82utf16($char);
-                            $ascii .= sprintf('\u%04s', bin2hex($utf16));
-                            break;
-
-                        case (($ord_var_c & 0xFE) == 0xFC):
-                            // characters U-04000000 - U-7FFFFFFF, mask 1111110X
-                            // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                            $char = pack('C*', $ord_var_c,
-                                         ord($var{$c + 1}),
-                                         ord($var{$c + 2}),
-                                         ord($var{$c + 3}),
-                                         ord($var{$c + 4}),
-                                         ord($var{$c + 5}));
-                            $c += 5;
-                            $utf16 = $this->utf82utf16($char);
-                            $ascii .= sprintf('\u%04s', bin2hex($utf16));
-                            break;
-                    }
-                }
-
-                return '"'.$ascii.'"';
-
-            case 'array':
-               /*
-                * As per JSON spec if any array key is not an integer
-                * we must treat the the whole array as an object. We
-                * also try to catch a sparsely populated associative
-                * array with numeric keys here because some JS engines
-                * will create an array with empty indexes up to
-                * max_index which can cause memory issues and because
-                * the keys, which may be relevant, will be remapped
-                * otherwise.
-                *
-                * As per the ECMA and JSON specification an object may
-                * have any string as a property. Unfortunately due to
-                * a hole in the ECMA specification if the key is a
-                * ECMA reserved word or starts with a digit the
-                * parameter is only accessible using ECMAScript's
-                * bracket notation.
-                */
-
-                // treat as a JSON object
-                if (is_array($var) && count($var) && (array_keys($var) !== range(0, sizeof($var) - 1))) {
-                    $properties = array_map(array($this, 'name_value'),
-                                            array_keys($var),
-                                            array_values($var));
-
-                    foreach($properties as $property) {
-                        if(Services_JSON::isError($property)) {
-                            return $property;
-                        }
-                    }
-
-                    return '{' . join(',', $properties) . '}';
-                }
-
-                // treat it like a regular array
-                $elements = array_map(array($this, 'encode'), $var);
-
-                foreach($elements as $element) {
-                    if(Services_JSON::isError($element)) {
-                        return $element;
-                    }
-                }
-
-                return '[' . join(',', $elements) . ']';
-
-            case 'object':
-                $vars = get_object_vars($var);
-
-                $properties = array_map(array($this, 'name_value'),
-                                        array_keys($vars),
-                                        array_values($vars));
-
-                foreach($properties as $property) {
-                    if(Services_JSON::isError($property)) {
-                        return $property;
-                    }
-                }
-
-                return '{' . join(',', $properties) . '}';
-
-            default:
-                return ($this->use & SERVICES_JSON_SUPPRESS_ERRORS)
-                    ? 'null'
-                    : new Services_JSON_Error(gettype($var)." can not be encoded as JSON string");
-        }
-    }
-
-   /**
-    * array-walking function for use in generating JSON-formatted name-value pairs
-    *
-    * @param    string  $name   name of key to use
-    * @param    mixed   $value  reference to an array element to be encoded
-    *
-    * @return   string  JSON-formatted name-value pair, like '"name":value'
-    * @access   private
-    */
-    function name_value($name, $value)
-    {
-        $encoded_value = $this->encode($value);
-
-        if(Services_JSON::isError($encoded_value)) {
-            return $encoded_value;
-        }
-
-        return $this->encode(strval($name)) . ':' . $encoded_value;
-    }
-
-   /**
-    * reduce a string by removing leading and trailing comments and whitespace
-    *
-    * @param    $str    string      string value to strip of comments and whitespace
-    *
-    * @return   string  string value stripped of comments and whitespace
-    * @access   private
-    */
-    function reduce_string($str)
-    {
-        $str = preg_replace(array(
-
-                // eliminate single line comments in '// ...' form
-                '#^\s*//(.+)$#m',
-
-                // eliminate multi-line comments in '/* ... */' form, at start of string
-                '#^\s*/\*(.+)\*/#Us',
-
-                // eliminate multi-line comments in '/* ... */' form, at end of string
-                '#/\*(.+)\*/\s*$#Us'
-
-            ), '', $str);
-
-        // eliminate extraneous space
-        return trim($str);
-    }
-
-   /**
-    * decodes a JSON string into appropriate variable
-    *
-    * @param    string  $str    JSON-formatted string
-    *
-    * @return   mixed   number, boolean, string, array, or object
-    *                   corresponding to given JSON input string.
-    *                   See argument 1 to Services_JSON() above for object-output behavior.
-    *                   Note that decode() always returns strings
-    *                   in ASCII or UTF-8 format!
-    * @access   public
-    */
-    function decode($str)
-    {
-        $str = $this->reduce_string($str);
-
-        switch (strtolower($str)) {
-            case 'true':
-                return true;
-
-            case 'false':
-                return false;
-
-            case 'null':
-                return null;
-
-            default:
-                $m = array();
-
-                if (is_numeric($str)) {
-                    // Lookie-loo, it's a number
-
-                    // This would work on its own, but I'm trying to be
-                    // good about returning integers where appropriate:
-                    // return (float)$str;
-
-                    // Return float or int, as appropriate
-                    return ((float)$str == (integer)$str)
-                        ? (integer)$str
-                        : (float)$str;
-
-                } elseif (preg_match('/^("|\').*(\1)$/s', $str, $m) && $m[1] == $m[2]) {
-                    // STRINGS RETURNED IN UTF-8 FORMAT
-                    $delim = substr($str, 0, 1);
-                    $chrs = substr($str, 1, -1);
-                    $utf8 = '';
-                    $strlen_chrs = strlen($chrs);
-
-                    for ($c = 0; $c < $strlen_chrs; ++$c) {
-
-                        $substr_chrs_c_2 = substr($chrs, $c, 2);
-                        $ord_chrs_c = ord($chrs{$c});
-
-                        switch (true) {
-                            case $substr_chrs_c_2 == '\b':
-                                $utf8 .= chr(0x08);
-                                ++$c;
-                                break;
-                            case $substr_chrs_c_2 == '\t':
-                                $utf8 .= chr(0x09);
-                                ++$c;
-                                break;
-                            case $substr_chrs_c_2 == '\n':
-                                $utf8 .= chr(0x0A);
-                                ++$c;
-                                break;
-                            case $substr_chrs_c_2 == '\f':
-                                $utf8 .= chr(0x0C);
-                                ++$c;
-                                break;
-                            case $substr_chrs_c_2 == '\r':
-                                $utf8 .= chr(0x0D);
-                                ++$c;
-                                break;
-
-                            case $substr_chrs_c_2 == '\\"':
-                            case $substr_chrs_c_2 == '\\\'':
-                            case $substr_chrs_c_2 == '\\\\':
-                            case $substr_chrs_c_2 == '\\/':
-                                if (($delim == '"' && $substr_chrs_c_2 != '\\\'') ||
-                                   ($delim == "'" && $substr_chrs_c_2 != '\\"')) {
-                                    $utf8 .= $chrs{++$c};
-                                }
-                                break;
-
-                            case preg_match('/\\\u[0-9A-F]{4}/i', substr($chrs, $c, 6)):
-                                // single, escaped unicode character
-                                $utf16 = chr(hexdec(substr($chrs, ($c + 2), 2)))
-                                       . chr(hexdec(substr($chrs, ($c + 4), 2)));
-                                $utf8 .= $this->utf162utf8($utf16);
-                                $c += 5;
-                                break;
-
-                            case ($ord_chrs_c >= 0x20) && ($ord_chrs_c <= 0x7F):
-                                $utf8 .= $chrs{$c};
-                                break;
-
-                            case ($ord_chrs_c & 0xE0) == 0xC0:
-                                // characters U-00000080 - U-000007FF, mask 110XXXXX
-                                //see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                                $utf8 .= substr($chrs, $c, 2);
-                                ++$c;
-                                break;
-
-                            case ($ord_chrs_c & 0xF0) == 0xE0:
-                                // characters U-00000800 - U-0000FFFF, mask 1110XXXX
-                                // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                                $utf8 .= substr($chrs, $c, 3);
-                                $c += 2;
-                                break;
-
-                            case ($ord_chrs_c & 0xF8) == 0xF0:
-                                // characters U-00010000 - U-001FFFFF, mask 11110XXX
-                                // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                                $utf8 .= substr($chrs, $c, 4);
-                                $c += 3;
-                                break;
-
-                            case ($ord_chrs_c & 0xFC) == 0xF8:
-                                // characters U-00200000 - U-03FFFFFF, mask 111110XX
-                                // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                                $utf8 .= substr($chrs, $c, 5);
-                                $c += 4;
-                                break;
-
-                            case ($ord_chrs_c & 0xFE) == 0xFC:
-                                // characters U-04000000 - U-7FFFFFFF, mask 1111110X
-                                // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
-                                $utf8 .= substr($chrs, $c, 6);
-                                $c += 5;
-                                break;
-
-                        }
-
-                    }
-
-                    return $utf8;
-
-                } elseif (preg_match('/^\[.*\]$/s', $str) || preg_match('/^\{.*\}$/s', $str)) {
-                    // array, or object notation
-
-                    if ($str{0} == '[') {
-                        $stk = array(SERVICES_JSON_IN_ARR);
-                        $arr = array();
-                    } else {
-                        if ($this->use & SERVICES_JSON_LOOSE_TYPE) {
-                            $stk = array(SERVICES_JSON_IN_OBJ);
-                            $obj = array();
-                        } else {
-                            $stk = array(SERVICES_JSON_IN_OBJ);
-                            $obj = new stdClass();
-                        }
-                    }
-
-                    array_push($stk, array('what'  => SERVICES_JSON_SLICE,
-                                           'where' => 0,
-                                           'delim' => false));
-
-                    $chrs = substr($str, 1, -1);
-                    $chrs = $this->reduce_string($chrs);
-
-                    if ($chrs == '') {
-                        if (reset($stk) == SERVICES_JSON_IN_ARR) {
-                            return $arr;
-
-                        } else {
-                            return $obj;
-
-                        }
-                    }
-
-                    //print("\nparsing {$chrs}\n");
-
-                    $strlen_chrs = strlen($chrs);
-
-                    for ($c = 0; $c <= $strlen_chrs; ++$c) {
-
-                        $top = end($stk);
-                        $substr_chrs_c_2 = substr($chrs, $c, 2);
-
-                        if (($c == $strlen_chrs) || (($chrs{$c} == ',') && ($top['what'] == SERVICES_JSON_SLICE))) {
-                            // found a comma that is not inside a string, array, etc.,
-                            // OR we've reached the end of the character list
-                            $slice = substr($chrs, $top['where'], ($c - $top['where']));
-                            array_push($stk, array('what' => SERVICES_JSON_SLICE, 'where' => ($c + 1), 'delim' => false));
-                            //print("Found split at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n");
-
-                            if (reset($stk) == SERVICES_JSON_IN_ARR) {
-                                // we are in an array, so just push an element onto the stack
-                                array_push($arr, $this->decode($slice));
-
-                            } elseif (reset($stk) == SERVICES_JSON_IN_OBJ) {
-                                // we are in an object, so figure
-                                // out the property name and set an
-                                // element in an associative array,
-                                // for now
-                                $parts = array();
-                                
-                                if (preg_match('/^\s*(["\'].*[^\\\]["\'])\s*:\s*(\S.*),?$/Uis', $slice, $parts)) {
-                                    // "name":value pair
-                                    $key = $this->decode($parts[1]);
-                                    $val = $this->decode($parts[2]);
-
-                                    if ($this->use & SERVICES_JSON_LOOSE_TYPE) {
-                                        $obj[$key] = $val;
-                                    } else {
-                                        $obj->$key = $val;
-                                    }
-                                } elseif (preg_match('/^\s*(\w+)\s*:\s*(\S.*),?$/Uis', $slice, $parts)) {
-                                    // name:value pair, where name is unquoted
-                                    $key = $parts[1];
-                                    $val = $this->decode($parts[2]);
-
-                                    if ($this->use & SERVICES_JSON_LOOSE_TYPE) {
-                                        $obj[$key] = $val;
-                                    } else {
-                                        $obj->$key = $val;
-                                    }
-                                }
-
-                            }
-
-                        } elseif ((($chrs{$c} == '"') || ($chrs{$c} == "'")) && ($top['what'] != SERVICES_JSON_IN_STR)) {
-                            // found a quote, and we are not inside a string
-                            array_push($stk, array('what' => SERVICES_JSON_IN_STR, 'where' => $c, 'delim' => $chrs{$c}));
-                            //print("Found start of string at {$c}\n");
-
-                        } elseif (($chrs{$c} == $top['delim']) &&
-                                 ($top['what'] == SERVICES_JSON_IN_STR) &&
-                                 ((strlen(substr($chrs, 0, $c)) - strlen(rtrim(substr($chrs, 0, $c), '\\'))) % 2 != 1)) {
-                            // found a quote, we're in a string, and it's not escaped
-                            // we know that it's not escaped becase there is _not_ an
-                            // odd number of backslashes at the end of the string so far
-                            array_pop($stk);
-                            //print("Found end of string at {$c}: ".substr($chrs, $top['where'], (1 + 1 + $c - $top['where']))."\n");
-
-                        } elseif (($chrs{$c} == '[') &&
-                                 in_array($top['what'], array(SERVICES_JSON_SLICE, SERVICES_JSON_IN_ARR, SERVICES_JSON_IN_OBJ))) {
-                            // found a left-bracket, and we are in an array, object, or slice
-                            array_push($stk, array('what' => SERVICES_JSON_IN_ARR, 'where' => $c, 'delim' => false));
-                            //print("Found start of array at {$c}\n");
-
-                        } elseif (($chrs{$c} == ']') && ($top['what'] == SERVICES_JSON_IN_ARR)) {
-                            // found a right-bracket, and we're in an array
-                            array_pop($stk);
-                            //print("Found end of array at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n");
-
-                        } elseif (($chrs{$c} == '{') &&
-                                 in_array($top['what'], array(SERVICES_JSON_SLICE, SERVICES_JSON_IN_ARR, SERVICES_JSON_IN_OBJ))) {
-                            // found a left-brace, and we are in an array, object, or slice
-                            array_push($stk, array('what' => SERVICES_JSON_IN_OBJ, 'where' => $c, 'delim' => false));
-                            //print("Found start of object at {$c}\n");
-
-                        } elseif (($chrs{$c} == '}') && ($top['what'] == SERVICES_JSON_IN_OBJ)) {
-                            // found a right-brace, and we're in an object
-                            array_pop($stk);
-                            //print("Found end of object at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n");
-
-                        } elseif (($substr_chrs_c_2 == '/*') &&
-                                 in_array($top['what'], array(SERVICES_JSON_SLICE, SERVICES_JSON_IN_ARR, SERVICES_JSON_IN_OBJ))) {
-                            // found a comment start, and we are in an array, object, or slice
-                            array_push($stk, array('what' => SERVICES_JSON_IN_CMT, 'where' => $c, 'delim' => false));
-                            $c++;
-                            //print("Found start of comment at {$c}\n");
-
-                        } elseif (($substr_chrs_c_2 == '*/') && ($top['what'] == SERVICES_JSON_IN_CMT)) {
-                            // found a comment end, and we're in one now
-                            array_pop($stk);
-                            $c++;
-
-                            for ($i = $top['where']; $i <= $c; ++$i)
-                                $chrs = substr_replace($chrs, ' ', $i, 1);
-
-                            //print("Found end of comment at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n");
-
-                        }
-
-                    }
-
-                    if (reset($stk) == SERVICES_JSON_IN_ARR) {
-                        return $arr;
-
-                    } elseif (reset($stk) == SERVICES_JSON_IN_OBJ) {
-                        return $obj;
-
-                    }
-
-                }
-        }
-    }
-
-    /**
-     * @todo Ultimately, this should just call PEAR::isError()
-     */
-    function isError($data, $code = null)
-    {
-        if (class_exists('pear')) {
-            return PEAR::isError($data, $code);
-        } elseif (is_object($data) && (get_class($data) == 'services_json_error' ||
-                                 is_subclass_of($data, 'services_json_error'))) {
-            return true;
-        }
-
-        return false;
-    }
-}
-
-if (class_exists('PEAR_Error')) {
-
-    class Services_JSON_Error extends PEAR_Error
-    {
-        function Services_JSON_Error($message = 'unknown error', $code = null,
-                                     $mode = null, $options = null, $userinfo = null)
-        {
-            parent::PEAR_Error($message, $code, $mode, $options, $userinfo);
-        }
-    }
-
-} else {
-
-    /**
-     * @todo Ultimately, this class shall be descended from PEAR_Error
-     */
-    class Services_JSON_Error
-    {
-        function Services_JSON_Error($message = 'unknown error', $code = null,
-                                     $mode = null, $options = null, $userinfo = null)
-        {
-
-        }
-    }
-
-}
-    
-?>
diff --git a/eclipse.org-common/json/LICENSE b/eclipse.org-common/json/LICENSE
deleted file mode 100644
index 4ae6bef..0000000
--- a/eclipse.org-common/json/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
-Redistributions of source code must retain the above copyright notice,
-this list of conditions and the following disclaimer.
-
-Redistributions in binary form must reproduce the above copyright
-notice, this list of conditions and the following disclaimer in the
-documentation and/or other materials provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
-WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
-NO EVENT SHALL CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
-USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
-ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/eclipse.org-common/json/Test-JSON.php b/eclipse.org-common/json/Test-JSON.php
deleted file mode 100644
index c70812f..0000000
--- a/eclipse.org-common/json/Test-JSON.php
+++ /dev/null
@@ -1,521 +0,0 @@
-<?php
-// $Id: Test-JSON.php,v 1.1 2009/05/06 18:23:36 droy Exp $
-/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
-
-/**
- * Unit tests for Services_JSON.
- * @see JSON.php
- *
- * @category
- * @package     Services_JSON
- * @author      Michal Migurski <mike-json@teczno.com>
- * @author      Matt Knapp <mdknapp[at]gmail[dot]com>
- * @author      Brett Stimmerman <brettstimmerman[at]gmail[dot]com>
- * @copyright   2005 Michal Migurski
- * @version     CVS: $Id: Test-JSON.php,v 1.1 2009/05/06 18:23:36 droy Exp $
- * @license     http://www.opensource.org/licenses/bsd-license.php
- * @link        http://pear.php.net/pepr/pepr-proposal-show.php?id=198
- */
-
-    error_reporting(E_ALL);
-
-    require_once 'PHPUnit.php';
-    require_once 'JSON.php';
-
-    class Services_JSON_EncDec_TestCase extends PHPUnit_TestCase {
-
-        function Services_JSON_EncDec_TestCase($name) {
-            $this->PHPUnit_TestCase($name);
-        }
-
-        function setUp() {
-            $this->json = new Services_JSON();
-
-            $obj = new stdClass();
-            $obj->a_string = '"he":llo}:{world';
-            $obj->an_array = array(1, 2, 3);
-            $obj->obj = new stdClass();
-            $obj->obj->a_number = 123;
-
-            $this->obj = $obj;
-            $this->obj_j = '{"a_string":"\"he\":llo}:{world","an_array":[1,2,3],"obj":{"a_number":123}}';
-            $this->obj_d = 'object with properties, nested object and arrays';
-
-            $this->arr = array(null, true, array(1, 2, 3), "hello\"],[world!");
-            $this->arr_j = '[null,true,[1,2,3],"hello\"],[world!"]';
-            $this->arr_d = 'array with elements and nested arrays';
-
-            $this->str1 = 'hello world';
-            $this->str1_j = '"hello world"';
-            $this->str1_j_ = "'hello world'";
-            $this->str1_d = 'hello world';
-            $this->str1_d_ = 'hello world, double quotes';
-
-            $this->str2 = "hello\t\"world\"";
-            $this->str2_j = '"hello\\t\\"world\\""';
-            $this->str2_d = 'hello world, with tab, double-quotes';
-
-            $this->str3 = "\\\r\n\t\"/";
-            $this->str3_j = '"\\\\\\r\\n\\t\\"\\/"';
-            $this->str3_d = 'backslash, return, newline, tab, double-quote';
-
-            $this->str4 = 'héllö wørÅ‚d';
-            $this->str4_j = '"h\u00e9ll\u00f6 w\u00f8r\u0142d"';
-            $this->str4_j_ = '"héllö wørÅ‚d"';
-            $this->str4_d = 'hello world, with unicode';
-        }
-
-        function test_to_JSON()
-        {
-            $this->assertEquals('null', $this->json->encode(null), 'type case: null');
-            $this->assertEquals('true', $this->json->encode(true), 'type case: boolean true');
-            $this->assertEquals('false', $this->json->encode(false), 'type case: boolean false');
-
-            $this->assertEquals('1', $this->json->encode(1), 'numeric case: 1');
-            $this->assertEquals('-1', $this->json->encode(-1), 'numeric case: -1');
-            $this->assertEquals('1.000000', $this->json->encode(1.0), 'numeric case: 1.0');
-            $this->assertEquals('1.100000', $this->json->encode(1.1), 'numeric case: 1.1');
-
-            $this->assertEquals($this->str1_j, $this->json->encode($this->str1), "string case: {$this->str1_d}");
-            $this->assertEquals($this->str2_j, $this->json->encode($this->str2), "string case: {$this->str2_d}");
-            $this->assertEquals($this->str3_j, $this->json->encode($this->str3), "string case: {$this->str3_d}");
-            $this->assertEquals($this->str4_j, $this->json->encode($this->str4), "string case: {$this->str4_d}");
-
-            $this->assertEquals($this->arr_j, $this->json->encode($this->arr), "array case: {$this->arr_d}");
-            $this->assertEquals($this->obj_j, $this->json->encode($this->obj), "object case: {$this->obj_d}");
-        }
-
-        function test_from_JSON()
-        {
-            $this->assertEquals(null, $this->json->decode('null'), 'type case: null');
-            $this->assertEquals(true, $this->json->decode('true'), 'type case: boolean true');
-            $this->assertEquals(false, $this->json->decode('false'), 'type case: boolean false');
-
-            $this->assertEquals(1, $this->json->decode('1'), 'numeric case: 1');
-            $this->assertEquals(-1, $this->json->decode('-1'), 'numeric case: -1');
-            $this->assertEquals(1.0, $this->json->decode('1.0'), 'numeric case: 1.0');
-            $this->assertEquals(1.1, $this->json->decode('1.1'), 'numeric case: 1.1');
-
-            $this->assertEquals(11.0, $this->json->decode('1.1e1'), 'numeric case: 1.1e1');
-            $this->assertEquals(11.0, $this->json->decode('1.10e+1'), 'numeric case: 1.10e+1');
-            $this->assertEquals(0.11, $this->json->decode('1.1e-1'), 'numeric case: 1.1e-1');
-            $this->assertEquals(-0.11, $this->json->decode('-1.1e-1'), 'numeric case: -1.1e-1');
-
-            $this->assertEquals($this->str1, $this->json->decode($this->str1_j),  "string case: {$this->str1_d}");
-            $this->assertEquals($this->str1, $this->json->decode($this->str1_j_), "string case: {$this->str1_d_}");
-            $this->assertEquals($this->str2, $this->json->decode($this->str2_j),  "string case: {$this->str2_d}");
-            $this->assertEquals($this->str3, $this->json->decode($this->str3_j),  "string case: {$this->str3_d}");
-            $this->assertEquals($this->str4, $this->json->decode($this->str4_j),  "string case: {$this->str4_d}");
-            $this->assertEquals($this->str4, $this->json->decode($this->str4_j_),  "string case: {$this->str4_d}");
-
-            $this->assertEquals($this->arr, $this->json->decode($this->arr_j), "array case: {$this->arr_d}");
-            $this->assertEquals($this->obj, $this->json->decode($this->obj_j), "object case: {$this->obj_d}");
-        }
-
-        function test_to_then_from_JSON()
-        {
-            $this->assertEquals(null, $this->json->decode($this->json->encode(null)), 'type case: null');
-            $this->assertEquals(true, $this->json->decode($this->json->encode(true)), 'type case: boolean true');
-            $this->assertEquals(false, $this->json->decode($this->json->encode(false)), 'type case: boolean false');
-
-            $this->assertEquals(1, $this->json->decode($this->json->encode(1)), 'numeric case: 1');
-            $this->assertEquals(-1, $this->json->decode($this->json->encode(-1)), 'numeric case: -1');
-            $this->assertEquals(1.0, $this->json->decode($this->json->encode(1.0)), 'numeric case: 1.0');
-            $this->assertEquals(1.1, $this->json->decode($this->json->encode(1.1)), 'numeric case: 1.1');
-
-            $this->assertEquals($this->str1, $this->json->decode($this->json->encode($this->str1)), "string case: {$this->str1_d}");
-            $this->assertEquals($this->str2, $this->json->decode($this->json->encode($this->str2)), "string case: {$this->str2_d}");
-            $this->assertEquals($this->str3, $this->json->decode($this->json->encode($this->str3)), "string case: {$this->str3_d}");
-            $this->assertEquals($this->str4, $this->json->decode($this->json->encode($this->str4)), "string case: {$this->str4_d}");
-
-            $this->assertEquals($this->arr, $this->json->decode($this->json->encode($this->arr)), "array case: {$this->arr_d}");
-            $this->assertEquals($this->obj, $this->json->decode($this->json->encode($this->obj)), "object case: {$this->obj_d}");
-        }
-
-        function test_from_then_to_JSON()
-        {
-            $this->assertEquals('null', $this->json->encode($this->json->decode('null')), 'type case: null');
-            $this->assertEquals('true', $this->json->encode($this->json->decode('true')), 'type case: boolean true');
-            $this->assertEquals('false', $this->json->encode($this->json->decode('false')), 'type case: boolean false');
-
-            $this->assertEquals('1', $this->json->encode($this->json->decode('1')), 'numeric case: 1');
-            $this->assertEquals('-1', $this->json->encode($this->json->decode('-1')), 'numeric case: -1');
-            $this->assertEquals('1.0', $this->json->encode($this->json->decode('1.0')), 'numeric case: 1.0');
-            $this->assertEquals('1.1', $this->json->encode($this->json->decode('1.1')), 'numeric case: 1.1');
-
-            $this->assertEquals($this->str1_j, $this->json->encode($this->json->decode($this->str1_j)), "string case: {$this->str1_d}");
-            $this->assertEquals($this->str2_j, $this->json->encode($this->json->decode($this->str2_j)), "string case: {$this->str2_d}");
-            $this->assertEquals($this->str3_j, $this->json->encode($this->json->decode($this->str3_j)), "string case: {$this->str3_d}");
-            $this->assertEquals($this->str4_j, $this->json->encode($this->json->decode($this->str4_j)), "string case: {$this->str4_d}");
-            $this->assertEquals($this->str4_j, $this->json->encode($this->json->decode($this->str4_j_)), "string case: {$this->str4_d}");
-
-            $this->assertEquals($this->arr_j, $this->json->encode($this->json->decode($this->arr_j)), "array case: {$this->arr_d}");
-            $this->assertEquals($this->obj_j, $this->json->encode($this->json->decode($this->obj_j)), "object case: {$this->obj_d}");
-        }
-    }
-
-    class Services_JSON_AssocArray_TestCase extends PHPUnit_TestCase {
-
-        function Services_JSON_AssocArray_TestCase($name) {
-            $this->PHPUnit_TestCase($name);
-        }
-
-        function setUp() {
-            $this->json_l = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);
-            $this->json_s = new Services_JSON();
-
-            $this->arr = array('car1'=> array('color'=> 'tan', 'model' => 'sedan'),
-            	'car2' => array('color' => 'red', 'model' => 'sports'));
-            $this->arr_jo = '{"car1":{"color":"tan","model":"sedan"},"car2":{"color":"red","model":"sports"}}';
-            $this->arr_d = 'associative array with nested associative arrays';
-
-            $this->arn = array(0=> array(0=> 'tan\\', 'model\\' => 'sedan'), 1 => array(0 => 'red', 'model' => 'sports'));
-            $this->arn_ja = '[{"0":"tan\\\\","model\\\\":"sedan"},{"0":"red","model":"sports"}]';
-            $this->arn_d = 'associative array with nested associative arrays, and some numeric keys thrown in';
-
-            $this->arrs = array (1 => 'one', 2 => 'two', 5 => 'five');
-            $this->arrs_jo = '{"1":"one","2":"two","5":"five"}';
-            $this->arrs_d = 'associative array numeric keys which are not fully populated in a range of 0 to length-1';
-        }
-
-        function test_type()
-        {
-            $this->assertEquals('array',  gettype($this->json_l->decode($this->arn_ja)), "loose type should be array");
-            $this->assertEquals('array',  gettype($this->json_s->decode($this->arn_ja)), "strict type should be array");
-        }
-
-        function test_to_JSON()
-        {
-            // both strict and loose JSON should result in an object
-            $this->assertEquals($this->arr_jo, $this->json_l->encode($this->arr), "array case - loose: {$this->arr_d}");
-            $this->assertEquals($this->arr_jo, $this->json_s->encode($this->arr), "array case - strict: {$this->arr_d}");
-
-            // ...unless the input array has some numeric indeces, in which case the behavior is to degrade to a regular array
-            $this->assertEquals($this->arn_ja, $this->json_s->encode($this->arn), "array case - strict: {$this->arn_d}");
-
-            // Test a sparsely populated numerically indexed associative array
-            $this->assertEquals($this->arrs_jo, $this->json_l->encode($this->arrs), "sparse numeric assoc array: {$this->arrs_d}");
-        }
-
-        function test_to_then_from_JSON()
-        {
-            // these tests motivated by a bug in which strings that end
-            // with backslashes followed by quotes were incorrectly decoded.
-            
-            foreach(array('\\"', '\\\\"', '\\"\\"', '\\""\\""', '\\\\"\\\\"') as $v) {
-                $this->assertEquals(array($v), $this->json_l->decode($this->json_l->encode(array($v))));
-                $this->assertEquals(array('a' => $v), $this->json_l->decode($this->json_l->encode(array('a' => $v))));
-            }
-        }
-    }
-
-    class Services_JSON_NestedArray_TestCase extends PHPUnit_TestCase {
-
-        function Services_JSON_NestedArray_TestCase($name) {
-            $this->PHPUnit_TestCase($name);
-        }
-
-        function setUp() {
-            $this->json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);
-
-            $this->str1 = '[{"this":"that"}]';
-            $this->arr1 = array(array('this' => 'that'));
-
-            $this->str2 = '{"this":["that"]}';
-            $this->arr2 = array('this' => array('that'));
-
-            $this->str3 = '{"params":[{"foo":["1"],"bar":"1"}]}';
-            $this->arr3 = array('params' => array(array('foo' => array('1'), 'bar' => '1')));
-
-            $this->str4 = '{"0": {"foo": "bar", "baz": "winkle"}}';
-            $this->arr4 = array('0' => array('foo' => 'bar', 'baz' => 'winkle'));
-
-            $this->str5 = '{"params":[{"options": {"old": [ ], "new": {"0": {"elements": {"old": [], "new": {"0": {"elementName": "aa", "isDefault": false, "elementRank": "0", "priceAdjust": "0", "partNumber": ""}}}, "optionName": "aa", "isRequired": false, "optionDesc": null}}}}]}';
-            $this->arr5 = array (
-              'params' => array (
-                0 => array (
-                  'options' =>
-                  array (
-                    'old' => array(),
-                    'new' => array (
-                      0 => array (
-                        'elements' => array (
-                          'old' => array(),
-                          'new' => array (
-                            0 => array (
-                              'elementName' => 'aa',
-                              'isDefault' => false,
-                              'elementRank' => '0',
-                              'priceAdjust' => '0',
-                              'partNumber' => '',
-                            ),
-                          ),
-                        ),
-                        'optionName' => 'aa',
-                        'isRequired' => false,
-                        'optionDesc' => NULL,
-                      ),
-                    ),
-                  ),
-                ),
-              ),
-            );
-        }
-
-        function test_type()
-        {
-            $this->assertEquals('array', gettype($this->json->decode($this->str1)), "loose type should be array");
-            $this->assertEquals('array', gettype($this->json->decode($this->str2)), "loose type should be array");
-            $this->assertEquals('array', gettype($this->json->decode($this->str3)), "loose type should be array");
-        }
-
-        function test_from_JSON()
-        {
-            $this->assertEquals($this->arr1, $this->json->decode($this->str1), "simple compactly-nested array");
-            $this->assertEquals($this->arr2, $this->json->decode($this->str2), "simple compactly-nested array");
-            $this->assertEquals($this->arr3, $this->json->decode($this->str3), "complex compactly nested array");
-            $this->assertEquals($this->arr4, $this->json->decode($this->str4), "complex compactly nested array");
-            $this->assertEquals($this->arr5, $this->json->decode($this->str5), "super complex compactly nested array");
-        }
-
-        function _test_from_JSON()
-        {
-            $super = '{"params":[{"options": {"old": {}, "new": {"0": {"elements": {"old": {}, "new": {"0": {"elementName": "aa", "isDefault": false, "elementRank": "0", "priceAdjust": "0", "partNumber": ""}}}, "optionName": "aa", "isRequired": false, "optionDesc": ""}}}}]}';
-            print("trying {$super}...\n");
-            print var_export($this->json->decode($super));
-        }
-    }
-
-    class Services_JSON_Object_TestCase extends PHPUnit_TestCase {
-
-        function Services_JSON_Object_TestCase($name) {
-            $this->PHPUnit_TestCase($name);
-        }
-
-        function setUp() {
-            $this->json_l = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);
-            $this->json_s = new Services_JSON();
-
-            $this->obj_j = '{"a_string":"\"he\":llo}:{world","an_array":[1,2,3],"obj":{"a_number":123}}';
-
-            $this->obj1->car1->color = 'tan';
-            $this->obj1->car1->model = 'sedan';
-            $this->obj1->car2->color = 'red';
-            $this->obj1->car2->model = 'sports';
-            $this->obj1_j = '{"car1":{"color":"tan","model":"sedan"},"car2":{"color":"red","model":"sports"}}';
-            $this->obj1_d = 'Object with nested objects';
-        }
-
-        function test_type()
-        {
-            $this->assertEquals('object', gettype($this->json_s->decode($this->obj_j)), "checking whether decoded type is object");
-            $this->assertEquals('array',  gettype($this->json_l->decode($this->obj_j)), "checking whether decoded type is array");
-        }
-
-        function test_to_JSON()
-        {
-            $this->assertEquals($this->obj1_j, $this->json_s->encode($this->obj1), "object - strict: {$this->obj1_d}");
-            $this->assertEquals($this->obj1_j, $this->json_l->encode($this->obj1), "object - loose: {$this->obj1_d}");
-        }
-
-        function test_from_then_to_JSON()
-        {
-            $this->assertEquals($this->obj_j, $this->json_s->encode($this->json_s->decode($this->obj_j)), "object case");
-            $this->assertEquals($this->obj_j, $this->json_l->encode($this->json_l->decode($this->obj_j)), "array case");
-        }
-    }
-
-    class Services_JSON_Spaces_Comments_TestCase extends PHPUnit_TestCase {
-
-        function Services_JSON_Spaces_Comments_TestCase($name) {
-            $this->PHPUnit_TestCase($name);
-        }
-
-        function setUp() {
-            $this->json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);
-
-            $this->obj_j = '{"a_string":"\"he\":llo}:{world","an_array":[1,2,3],"obj":{"a_number":123}}';
-
-            $this->obj_js = '{"a_string": "\"he\":llo}:{world",
-                              "an_array":[1, 2, 3],
-                              "obj": {"a_number":123}}';
-
-            $this->obj_jc1 = '{"a_string": "\"he\":llo}:{world",
-                              // here is a comment, hoorah
-                              "an_array":[1, 2, 3],
-                              "obj": {"a_number":123}}';
-
-            $this->obj_jc2 = '/* this here is the sneetch */ "the sneetch"
-                              // this has been the sneetch.';
-
-            $this->obj_jc3 = '{"a_string": "\"he\":llo}:{world",
-                              /* here is a comment, hoorah */
-                              "an_array":[1, 2, 3 /* and here is another */],
-                              "obj": {"a_number":123}}';
-
-            $this->obj_jc4 = '{\'a_string\': "\"he\":llo}:{world",
-                              /* here is a comment, hoorah */
-                              \'an_array\':[1, 2, 3 /* and here is another */],
-                              "obj": {"a_number":123}}';
-        }
-
-        function test_spaces()
-        {
-            $this->assertEquals($this->json->decode($this->obj_j), $this->json->decode($this->obj_js), "checking whether notation with spaces works");
-        }
-
-        function test_comments()
-        {
-            $this->assertEquals($this->json->decode($this->obj_j), $this->json->decode($this->obj_jc1), "checking whether notation with single line comments works");
-            $this->assertEquals('the sneetch', $this->json->decode($this->obj_jc2), "checking whether notation with multiline comments works");
-            $this->assertEquals($this->json->decode($this->obj_j), $this->json->decode($this->obj_jc3), "checking whether notation with multiline comments works");
-            $this->assertEquals($this->json->decode($this->obj_j), $this->json->decode($this->obj_jc4), "checking whether notation with single-quotes and multiline comments works");
-        }
-    }
-
-    class Services_JSON_Empties_TestCase extends PHPUnit_TestCase {
-
-        function Services_JSON_Empties_TestCase($name) {
-            $this->PHPUnit_TestCase($name);
-        }
-
-        function setUp() {
-            $this->json_l = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);
-            $this->json_s = new Services_JSON();
-
-            $this->obj0_j = '{}';
-            $this->arr0_j = '[]';
-
-            $this->obj1_j = '{ }';
-            $this->arr1_j = '[ ]';
-
-            $this->obj2_j = '{ /* comment inside */ }';
-            $this->arr2_j = '[ /* comment inside */ ]';
-        }
-
-        function test_type()
-        {
-            $this->assertEquals('array',   gettype($this->json_l->decode($this->arr0_j)), "should be array");
-            $this->assertEquals('object',  gettype($this->json_s->decode($this->obj0_j)), "should be object");
-
-            $this->assertEquals(0,  count($this->json_l->decode($this->arr0_j)), "should be empty array");
-            $this->assertEquals(0,  count(get_object_vars($this->json_s->decode($this->obj0_j))), "should be empty object");
-
-            $this->assertEquals('array',   gettype($this->json_l->decode($this->arr1_j)), "should be array, even with space");
-            $this->assertEquals('object',  gettype($this->json_s->decode($this->obj1_j)), "should be object, even with space");
-
-            $this->assertEquals(0,  count($this->json_l->decode($this->arr1_j)), "should be empty array, even with space");
-            $this->assertEquals(0,  count(get_object_vars($this->json_s->decode($this->obj1_j))), "should be empty object, even with space");
-
-            $this->assertEquals('array',   gettype($this->json_l->decode($this->arr2_j)), "should be array, despite comment");
-            $this->assertEquals('object',  gettype($this->json_s->decode($this->obj2_j)), "should be object, despite comment");
-
-            $this->assertEquals(0,  count($this->json_l->decode($this->arr2_j)), "should be empty array, despite comment");
-            $this->assertEquals(0,  count(get_object_vars($this->json_s->decode($this->obj2_j))), "should be empty object, despite commentt");
-        }
-    }
-
-    class Services_JSON_UnquotedKeys_TestCase extends PHPUnit_TestCase {
-
-        function Services_JSON_UnquotedKeys_TestCase($name) {
-            $this->PHPUnit_TestCase($name);
-        }
-
-        function setUp() {
-            $this->json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);
-
-            $this->arn = array(0=> array(0=> 'tan', 'model' => 'sedan'), 1 => array(0 => 'red', 'model' => 'sports'));
-            $this->arn_ja = '[{0:"tan","model":"sedan"},{"0":"red",model:"sports"}]';
-            $this->arn_d = 'associative array with unquoted keys, nested associative arrays, and some numeric keys thrown in';
-
-            $this->arrs = array (1 => 'one', 2 => 'two', 5 => 'fi"ve');
-            $this->arrs_jo = '{"1":"one",2:"two","5":\'fi"ve\'}';
-            $this->arrs_d = 'associative array with unquoted keys, single-quoted values, numeric keys which are not fully populated in a range of 0 to length-1';
-        }
-
-        function test_from_JSON()
-        {
-            // ...unless the input array has some numeric indeces, in which case the behavior is to degrade to a regular array
-            $this->assertEquals($this->arn, $this->json->decode($this->arn_ja), "array case - strict: {$this->arn_d}");
-
-            // Test a sparsely populated numerically indexed associative array
-            $this->assertEquals($this->arrs, $this->json->decode($this->arrs_jo), "sparse numeric assoc array: {$this->arrs_d}");
-        }
-    }
-
-    class Services_JSON_ErrorSuppression_TestCase extends PHPUnit_TestCase {
-
-        function Services_JSON_ErrorSuppression_TestCase($name) {
-            $this->PHPUnit_TestCase($name);
-        }
-
-        function setUp() {
-            $this->json = new Services_JSON();
-            $this->json_ = new Services_JSON(SERVICES_JSON_SUPPRESS_ERRORS);
-
-            $this->res = tmpfile();
-            $this->res_j_ = 'null';
-            $this->res_d = 'naked resource';
-
-            $this->arr = array('a', 1, tmpfile());
-            $this->arr_j_ = '["a",1,null]';
-            $this->arr_d = 'array with string, number and resource';
-
-            $obj = new stdClass();
-            $obj->a_string = '"he":llo}:{world';
-            $obj->an_array = array(1, 2, 3);
-            $obj->resource = tmpfile();
-
-            $this->obj = $obj;
-            $this->obj_j_ = '{"a_string":"\"he\":llo}:{world","an_array":[1,2,3],"resource":null}';
-            $this->obj_d = 'object with properties, array, and nested resource';
-        }
-
-        function test_to_JSON()
-        {
-            $this->assertTrue(Services_JSON::isError($this->json->encode($this->res)), "resource case: {$this->res_d}");
-            $this->assertTrue(Services_JSON::isError($this->json->encode($this->arr)), "array case: {$this->arr_d}");
-            $this->assertTrue(Services_JSON::isError($this->json->encode($this->obj)), "object case: {$this->obj_d}");
-        }
-
-        function test_to_JSON_suppressed()
-        {
-            $this->assertEquals($this->res_j_, $this->json_->encode($this->res), "resource case: {$this->res_d}");
-            $this->assertEquals($this->arr_j_, $this->json_->encode($this->arr), "array case: {$this->arr_d}");
-            $this->assertEquals($this->obj_j_, $this->json_->encode($this->obj), "object case: {$this->obj_d}");
-        }
-    }
-
-    $suite  = new PHPUnit_TestSuite('Services_JSON_EncDec_TestCase');
-    $result = PHPUnit::run($suite);
-    echo $result->toString();
-
-    $suite  = new PHPUnit_TestSuite('Services_JSON_AssocArray_TestCase');
-    $result = PHPUnit::run($suite);
-    echo $result->toString();
-
-    $suite  = new PHPUnit_TestSuite('Services_JSON_NestedArray_TestCase');
-    $result = PHPUnit::run($suite);
-    echo $result->toString();
-
-    $suite  = new PHPUnit_TestSuite('Services_JSON_Object_TestCase');
-    $result = PHPUnit::run($suite);
-    echo $result->toString();
-
-    $suite  = new PHPUnit_TestSuite('Services_JSON_Spaces_Comments_TestCase');
-    $result = PHPUnit::run($suite);
-    echo $result->toString();
-
-    $suite  = new PHPUnit_TestSuite('Services_JSON_Empties_TestCase');
-    $result = PHPUnit::run($suite);
-    echo $result->toString();
-
-    $suite  = new PHPUnit_TestSuite('Services_JSON_UnquotedKeys_TestCase');
-    $result = PHPUnit::run($suite);
-    echo $result->toString();
-
-    $suite  = new PHPUnit_TestSuite('Services_JSON_ErrorSuppression_TestCase');
-    $result = PHPUnit::run($suite);
-    echo $result->toString();
-
-?>
diff --git a/eclipse.org-common/json/doc/Services_JSON/Services_JSON.html b/eclipse.org-common/json/doc/Services_JSON/Services_JSON.html
deleted file mode 100644
index 3147578..0000000
--- a/eclipse.org-common/json/doc/Services_JSON/Services_JSON.html
+++ /dev/null
@@ -1,210 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title>Docs For Class Services_JSON</title>

-			<link rel="stylesheet" href="../media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-			<div class="page-body">			

-<h2 class="class-name">Class Services_JSON</h2>

-

-<a name="sec-description"></a>

-<div class="info-box">

-	<div class="info-box-title">Description</div>

-	<div class="nav-bar">

-					<span class="disabled">Description</span> |

-															<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)

-						

-			</div>

-	<div class="info-box-body">

-		<!-- ========== Info from phpDoc block ========= -->

-<p class="short-description">Converts to and from JSON format.</p>

-<p class="description"><p>Brief example of use:</p><p><pre><code><pre><br />1     <span class="src-comm">// create a new instance of Services_JSON</span><br />2      <span class="src-var">$json</span> = <span class="src-key">new</span> <a href="../Services_JSON/Services_JSON.html#methodServices_JSON">Services_JSON</a><span class="src-sym">(</span><span class="src-sym">)</span>;<br />3     <br />4      <span class="src-comm">// convert a complexe value to JSON notation, and send it to the browser</span><br />5      <span class="src-var">$value</span> = <span class="src-key">array</span><span class="src-sym">(</span><span class="src-str">'foo'</span><span class="src-sym">,</span> <span class="src-str">'bar'</span><span class="src-sym">,</span> <span class="src-key">array</span><span class="src-sym">(</span><span class="src-num">1</span><span class="src-sym">,</span> <span class="src-num">2</span><span class="src-sym">,</span> <span class="src-str">'baz'</span><span class="src-sym">)</span><span class="src-sym">,</span> <span class="src-key">array</span><span class="src-sym">(</span><span class="src-num">3</span><span class="src-sym">,</span> <span class="src-key">array</span><span class="src-sym">(</span><span class="src-num">4</span><span class="src-sym">)</span><span class="src-sym">)</span><span class="src-sym">)</span>;<br />6      <span class="src-var">$output</span> = <span class="src-var">$json</span><span class="src-sym">-&gt;</span><a href="../Services_JSON/Services_JSON.html#methodencode">encode</a><span class="src-sym">(</span><span class="src-var">$value</span><span class="src-sym">)</span>;<br />7     <br />8      print<span class="src-sym">(</span><span class="src-var">$output</span><span class="src-sym">)</span>;<br />9      <span class="src-comm">// prints: [&quot;foo&quot;,&quot;bar&quot;,[1,2,&quot;baz&quot;],[3,[4]]]</span><br />10    <br />11     <span class="src-comm">// accept incoming POST data, assumed to be in JSON notation</span><br />12     <span class="src-var">$input</span> = <a href="http://www.php.net/file_get_contents">file_get_contents</a><span class="src-sym">(</span><span class="src-str">'php://input'</span><span class="src-sym">,</span> <span class="src-num">1000000</span><span class="src-sym">)</span>;<br />13     <span class="src-var">$value</span> = <span class="src-var">$json</span><span class="src-sym">-&gt;</span><a href="../Services_JSON/Services_JSON.html#methoddecode">decode</a><span class="src-sym">(</span><span class="src-var">$input</span><span class="src-sym">)</span>;</pre></code></pre></p></p>

-		<p class="notes">

-			Located in <a class="field" href="_JSON_php.html">/JSON.php</a> (line <span class="field">115</span>)

-		</p>

-		

-				

-		<pre></pre>

-	

-			</div>

-</div>

-

-

-

-	<a name="sec-method-summary"></a>

-	<div class="info-box">

-		<div class="info-box-title">Method Summary</span></div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-									<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)

-		</div>

-		<div class="info-box-body">			

-			<div class="method-summary">

-								

-				<div class="method-definition">

-											<span class="method-result">Services_JSON</span>

-										<a href="#Services_JSON" title="details" class="method-name">Services_JSON</a>

-											(<span class="var-type">int</span>&nbsp;<span class="var-name">$use</span>)

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">mixed</span>

-										<a href="#decode" title="details" class="method-name">decode</a>

-											(<span class="var-type">string</span>&nbsp;<span class="var-name">$str</span>)

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">mixed</span>

-										<a href="#encode" title="details" class="method-name">encode</a>

-											(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$var</span>)

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#isError" title="details" class="method-name">isError</a>

-											(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$data</span>, [<span class="var-type">mixed</span>&nbsp;<span class="var-name">$code</span> = <span class="var-default">null</span>])

-									</div>

-							</div>

-		</div>

-	</div>		

-

-	

-	<a name="sec-methods"></a>

-	<div class="info-box">

-		<div class="info-box-title">Methods</div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-													<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)

-						

-		</div>

-		<div class="info-box-body">

-			<A NAME='method_detail'></A>

-<a name="methodServices_JSON" id="Services_JSON"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">Constructor Services_JSON</span> (line <span class="line-number">133</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-<p class="short-description">constructs a new JSON instance</p>

-	

-	<div class="method-signature">

-		<span class="method-result">Services_JSON</span>

-		<span class="method-name">

-			Services_JSON

-		</span>

-					(<span class="var-type">int</span>&nbsp;<span class="var-name">$use</span>)

-			</div>

-	

-			<ul class="parameters">

-					<li>

-				<span class="var-type">int</span>

-				<span class="var-name">$use</span><span class="var-description">: <p>object behavior flags; combine with boolean-OR</p><p>possible values: <ul><li>SERVICES_JSON_LOOSE_TYPE:  loose typing.
-                                   &quot;{...}&quot; syntax creates associative arrays
-                                   instead of objects in decode().</li><li>SERVICES_JSON_SUPPRESS_ERRORS:  error suppression.
-                                   Values which can't be encoded (e.g. resources)
-                                   appear as NULL instead of throwing errors.
-                                   By default, a deeply-nested resource will
-                                   bubble up with an error, so all return values
-                                   from encode() should be checked with isError()</li></ul></p></span>			</li>

-				</ul>

-		

-		

-	</div>

-<a name="methoddecode" id="decode"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">decode</span> (line <span class="line-number">484</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-<p class="short-description">decodes a JSON string into appropriate variable</p>

-	<ul class="tags">

-				<li><span class="field">return:</span> number, boolean, string, array, or object                    corresponding to given JSON input string.                    See argument 1 to Services_JSON() above for object-output behavior.                    Note that decode() always returns strings                    in ASCII or UTF-8 format!</li>

-				<li><span class="field">access:</span> public</li>

-			</ul>

-	

-	<div class="method-signature">

-		<span class="method-result">mixed</span>

-		<span class="method-name">

-			decode

-		</span>

-					(<span class="var-type">string</span>&nbsp;<span class="var-name">$str</span>)

-			</div>

-	

-			<ul class="parameters">

-					<li>

-				<span class="var-type">string</span>

-				<span class="var-name">$str</span><span class="var-description">: JSON-formatted string</span>			</li>

-				</ul>

-		

-		

-	</div>

-<a name="methodencode" id="encode"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">encode</span> (line <span class="line-number">237</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-<p class="short-description">encodes an arbitrary variable into JSON format</p>

-	<ul class="tags">

-				<li><span class="field">return:</span> JSON string representation of input var or an error if a problem occurs</li>

-				<li><span class="field">access:</span> public</li>

-			</ul>

-	

-	<div class="method-signature">

-		<span class="method-result">mixed</span>

-		<span class="method-name">

-			encode

-		</span>

-					(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$var</span>)

-			</div>

-	

-			<ul class="parameters">

-					<li>

-				<span class="var-type">mixed</span>

-				<span class="var-name">$var</span><span class="var-description">: any number, boolean, string, array, or object to be encoded.                            see argument 1 to Services_JSON() above for array-parsing behavior.                            if var is a strng, note that encode() always expects it                            to be in ASCII or UTF-8 format!</span>			</li>

-				</ul>

-		

-		

-	</div>

-<a name="methodisError" id="isError"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">isError</span> (line <span class="line-number">766</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	<ul class="tags">

-				<li><span class="field">todo:</span> Ultimately, this should just call PEAR::isError()</li>

-			</ul>

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			isError

-		</span>

-					(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$data</span>, [<span class="var-type">mixed</span>&nbsp;<span class="var-name">$code</span> = <span class="var-default">null</span>])

-			</div>

-	

-		

-		

-	</div>

-						

-		</div>

-	</div>

-	

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:25 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</div></body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_AssocArray_TestCase.html b/eclipse.org-common/json/doc/Services_JSON/Services_JSON_AssocArray_TestCase.html
deleted file mode 100644
index 4cbc05f..0000000
--- a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_AssocArray_TestCase.html
+++ /dev/null
@@ -1,200 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title>Docs For Class Services_JSON_AssocArray_TestCase</title>

-			<link rel="stylesheet" href="../media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-			<div class="page-body">			

-<h2 class="class-name">Class Services_JSON_AssocArray_TestCase</h2>

-

-<a name="sec-description"></a>

-<div class="info-box">

-	<div class="info-box-title">Description</div>

-	<div class="nav-bar">

-					<span class="disabled">Description</span> |

-															<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)

-						

-			</div>

-	<div class="info-box-body">

-		<!-- ========== Info from phpDoc block ========= -->

-		<p class="notes">

-			Located in <a class="field" href="_Test-JSON_php.html">/Test-JSON.php</a> (line <span class="field">157</span>)

-		</p>

-		

-				

-		<pre>PHPUnit_TestCase
-   |
-   --Services_JSON_AssocArray_TestCase</pre>

-	

-			</div>

-</div>

-

-

-

-	<a name="sec-method-summary"></a>

-	<div class="info-box">

-		<div class="info-box-title">Method Summary</span></div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-									<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)

-		</div>

-		<div class="info-box-body">			

-			<div class="method-summary">

-								

-				<div class="method-definition">

-											<span class="method-result">Services_JSON_AssocArray_TestCase</span>

-										<a href="#Services_JSON_AssocArray_TestCase" title="details" class="method-name">Services_JSON_AssocArray_TestCase</a>

-											(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#setUp" title="details" class="method-name">setUp</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_to_JSON" title="details" class="method-name">test_to_JSON</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_to_then_from_JSON" title="details" class="method-name">test_to_then_from_JSON</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_type" title="details" class="method-name">test_type</a>

-										()

-									</div>

-							</div>

-		</div>

-	</div>		

-

-	

-	<a name="sec-methods"></a>

-	<div class="info-box">

-		<div class="info-box-title">Methods</div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-													<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)

-						

-		</div>

-		<div class="info-box-body">

-			<A NAME='method_detail'></A>

-<a name="methodServices_JSON_AssocArray_TestCase" id="Services_JSON_AssocArray_TestCase"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">Constructor Services_JSON_AssocArray_TestCase</span> (line <span class="line-number">159</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">Services_JSON_AssocArray_TestCase</span>

-		<span class="method-name">

-			Services_JSON_AssocArray_TestCase

-		</span>

-					(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-			</div>

-	

-		

-		

-	</div>

-<a name="methodsetUp" id="setUp"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">setUp</span> (line <span class="line-number">163</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			setUp

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_to_JSON" id="test_to_JSON"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_to_JSON</span> (line <span class="line-number">187</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_to_JSON

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_to_then_from_JSON" id="test_to_then_from_JSON"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_to_then_from_JSON</span> (line <span class="line-number">200</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_to_then_from_JSON

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_type" id="test_type"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_type</span> (line <span class="line-number">181</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_type

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-						

-		</div>

-	</div>

-	

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:26 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</div></body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_Empties_TestCase.html b/eclipse.org-common/json/doc/Services_JSON/Services_JSON_Empties_TestCase.html
deleted file mode 100644
index 7184b0a..0000000
--- a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_Empties_TestCase.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title>Docs For Class Services_JSON_Empties_TestCase</title>

-			<link rel="stylesheet" href="../media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-			<div class="page-body">			

-<h2 class="class-name">Class Services_JSON_Empties_TestCase</h2>

-

-<a name="sec-description"></a>

-<div class="info-box">

-	<div class="info-box-title">Description</div>

-	<div class="nav-bar">

-					<span class="disabled">Description</span> |

-															<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)

-						

-			</div>

-	<div class="info-box-body">

-		<!-- ========== Info from phpDoc block ========= -->

-		<p class="notes">

-			Located in <a class="field" href="_Test-JSON_php.html">/Test-JSON.php</a> (line <span class="field">364</span>)

-		</p>

-		

-				

-		<pre>PHPUnit_TestCase
-   |
-   --Services_JSON_Empties_TestCase</pre>

-	

-			</div>

-</div>

-

-

-

-	<a name="sec-method-summary"></a>

-	<div class="info-box">

-		<div class="info-box-title">Method Summary</span></div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-									<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)

-		</div>

-		<div class="info-box-body">			

-			<div class="method-summary">

-								

-				<div class="method-definition">

-											<span class="method-result">Services_JSON_Empties_TestCase</span>

-										<a href="#Services_JSON_Empties_TestCase" title="details" class="method-name">Services_JSON_Empties_TestCase</a>

-											(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#setUp" title="details" class="method-name">setUp</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_type" title="details" class="method-name">test_type</a>

-										()

-									</div>

-							</div>

-		</div>

-	</div>		

-

-	

-	<a name="sec-methods"></a>

-	<div class="info-box">

-		<div class="info-box-title">Methods</div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-													<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)

-						

-		</div>

-		<div class="info-box-body">

-			<A NAME='method_detail'></A>

-<a name="methodServices_JSON_Empties_TestCase" id="Services_JSON_Empties_TestCase"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">Constructor Services_JSON_Empties_TestCase</span> (line <span class="line-number">366</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">Services_JSON_Empties_TestCase</span>

-		<span class="method-name">

-			Services_JSON_Empties_TestCase

-		</span>

-					(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-			</div>

-	

-		

-		

-	</div>

-<a name="methodsetUp" id="setUp"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">setUp</span> (line <span class="line-number">370</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			setUp

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_type" id="test_type"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_type</span> (line <span class="line-number">384</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_type

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-						

-		</div>

-	</div>

-	

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:26 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</div></body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_EncDec_TestCase.html b/eclipse.org-common/json/doc/Services_JSON/Services_JSON_EncDec_TestCase.html
deleted file mode 100644
index 9203d68..0000000
--- a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_EncDec_TestCase.html
+++ /dev/null
@@ -1,226 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title>Docs For Class Services_JSON_EncDec_TestCase</title>

-			<link rel="stylesheet" href="../media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-			<div class="page-body">			

-<h2 class="class-name">Class Services_JSON_EncDec_TestCase</h2>

-

-<a name="sec-description"></a>

-<div class="info-box">

-	<div class="info-box-title">Description</div>

-	<div class="nav-bar">

-					<span class="disabled">Description</span> |

-															<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)

-						

-			</div>

-	<div class="info-box-body">

-		<!-- ========== Info from phpDoc block ========= -->

-		<p class="notes">

-			Located in <a class="field" href="_Test-JSON_php.html">/Test-JSON.php</a> (line <span class="field">25</span>)

-		</p>

-		

-				

-		<pre>PHPUnit_TestCase
-   |
-   --Services_JSON_EncDec_TestCase</pre>

-	

-			</div>

-</div>

-

-

-

-	<a name="sec-method-summary"></a>

-	<div class="info-box">

-		<div class="info-box-title">Method Summary</span></div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-									<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)

-		</div>

-		<div class="info-box-body">			

-			<div class="method-summary">

-								

-				<div class="method-definition">

-											<span class="method-result">Services_JSON_EncDec_TestCase</span>

-										<a href="#Services_JSON_EncDec_TestCase" title="details" class="method-name">Services_JSON_EncDec_TestCase</a>

-											(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#setUp" title="details" class="method-name">setUp</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_from_JSON" title="details" class="method-name">test_from_JSON</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_from_then_to_JSON" title="details" class="method-name">test_from_then_to_JSON</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_to_JSON" title="details" class="method-name">test_to_JSON</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_to_then_from_JSON" title="details" class="method-name">test_to_then_from_JSON</a>

-										()

-									</div>

-							</div>

-		</div>

-	</div>		

-

-	

-	<a name="sec-methods"></a>

-	<div class="info-box">

-		<div class="info-box-title">Methods</div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-													<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)

-						

-		</div>

-		<div class="info-box-body">

-			<A NAME='method_detail'></A>

-<a name="methodServices_JSON_EncDec_TestCase" id="Services_JSON_EncDec_TestCase"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">Constructor Services_JSON_EncDec_TestCase</span> (line <span class="line-number">27</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">Services_JSON_EncDec_TestCase</span>

-		<span class="method-name">

-			Services_JSON_EncDec_TestCase

-		</span>

-					(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-			</div>

-	

-		

-		

-	</div>

-<a name="methodsetUp" id="setUp"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">setUp</span> (line <span class="line-number">31</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			setUp

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_from_JSON" id="test_from_JSON"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_from_JSON</span> (line <span class="line-number">88</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_from_JSON

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_from_then_to_JSON" id="test_from_then_to_JSON"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_from_then_to_JSON</span> (line <span class="line-number">135</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_from_then_to_JSON

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_to_JSON" id="test_to_JSON"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_to_JSON</span> (line <span class="line-number">68</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_to_JSON

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_to_then_from_JSON" id="test_to_then_from_JSON"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_to_then_from_JSON</span> (line <span class="line-number">115</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_to_then_from_JSON

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-						

-		</div>

-	</div>

-	

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:26 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</div></body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_Error.html b/eclipse.org-common/json/doc/Services_JSON/Services_JSON_Error.html
deleted file mode 100644
index f607ab6..0000000
--- a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_Error.html
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title>Docs For Class Services_JSON_Error</title>

-			<link rel="stylesheet" href="../media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-			<div class="page-body">			

-<h2 class="class-name">Class Services_JSON_Error</h2>

-

-<a name="sec-description"></a>

-<div class="info-box">

-	<div class="info-box-title">Description</div>

-	<div class="nav-bar">

-					<span class="disabled">Description</span> |

-															<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)

-						

-			</div>

-	<div class="info-box-body">

-		<!-- ========== Info from phpDoc block ========= -->

-		<p class="notes">

-			Located in <a class="field" href="_JSON_php.html">/JSON.php</a> (line <span class="field">781</span>)

-		</p>

-		

-				

-		<pre>PEAR_Error
-   |
-   --Services_JSON_Error</pre>

-	

-			</div>

-</div>

-

-

-

-	<a name="sec-method-summary"></a>

-	<div class="info-box">

-		<div class="info-box-title">Method Summary</span></div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-									<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)

-		</div>

-		<div class="info-box-body">			

-			<div class="method-summary">

-								

-				<div class="method-definition">

-											<span class="method-result">Services_JSON_Error</span>

-										<a href="#Services_JSON_Error" title="details" class="method-name">Services_JSON_Error</a>

-											([<span class="var-type">mixed</span>&nbsp;<span class="var-name">$message</span> = <span class="var-default">'unknown error'</span>], [<span class="var-type">mixed</span>&nbsp;<span class="var-name">$code</span> = <span class="var-default">null</span>], [<span class="var-type">mixed</span>&nbsp;<span class="var-name">$mode</span> = <span class="var-default">null</span>], [<span class="var-type">mixed</span>&nbsp;<span class="var-name">$options</span> = <span class="var-default">null</span>], [<span class="var-type">mixed</span>&nbsp;<span class="var-name">$userinfo</span> = <span class="var-default">null</span>])

-									</div>

-							</div>

-		</div>

-	</div>		

-

-	

-	<a name="sec-methods"></a>

-	<div class="info-box">

-		<div class="info-box-title">Methods</div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-													<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)

-						

-		</div>

-		<div class="info-box-body">

-			<A NAME='method_detail'></A>

-<a name="methodServices_JSON_Error" id="Services_JSON_Error"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">Constructor Services_JSON_Error</span> (line <span class="line-number">783</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">Services_JSON_Error</span>

-		<span class="method-name">

-			Services_JSON_Error

-		</span>

-					([<span class="var-type">mixed</span>&nbsp;<span class="var-name">$message</span> = <span class="var-default">'unknown error'</span>], [<span class="var-type">mixed</span>&nbsp;<span class="var-name">$code</span> = <span class="var-default">null</span>], [<span class="var-type">mixed</span>&nbsp;<span class="var-name">$mode</span> = <span class="var-default">null</span>], [<span class="var-type">mixed</span>&nbsp;<span class="var-name">$options</span> = <span class="var-default">null</span>], [<span class="var-type">mixed</span>&nbsp;<span class="var-name">$userinfo</span> = <span class="var-default">null</span>])

-			</div>

-	

-		

-		

-	</div>

-						

-		</div>

-	</div>

-	

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:26 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</div></body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_ErrorSuppression_TestCase.html b/eclipse.org-common/json/doc/Services_JSON/Services_JSON_ErrorSuppression_TestCase.html
deleted file mode 100644
index 5948f96..0000000
--- a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_ErrorSuppression_TestCase.html
+++ /dev/null
@@ -1,174 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title>Docs For Class Services_JSON_ErrorSuppression_TestCase</title>

-			<link rel="stylesheet" href="../media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-			<div class="page-body">			

-<h2 class="class-name">Class Services_JSON_ErrorSuppression_TestCase</h2>

-

-<a name="sec-description"></a>

-<div class="info-box">

-	<div class="info-box-title">Description</div>

-	<div class="nav-bar">

-					<span class="disabled">Description</span> |

-															<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)

-						

-			</div>

-	<div class="info-box-body">

-		<!-- ========== Info from phpDoc block ========= -->

-		<p class="notes">

-			Located in <a class="field" href="_Test-JSON_php.html">/Test-JSON.php</a> (line <span class="field">434</span>)

-		</p>

-		

-				

-		<pre>PHPUnit_TestCase
-   |
-   --Services_JSON_ErrorSuppression_TestCase</pre>

-	

-			</div>

-</div>

-

-

-

-	<a name="sec-method-summary"></a>

-	<div class="info-box">

-		<div class="info-box-title">Method Summary</span></div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-									<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)

-		</div>

-		<div class="info-box-body">			

-			<div class="method-summary">

-								

-				<div class="method-definition">

-											<span class="method-result">Services_JSON_ErrorSuppression_TestCase</span>

-										<a href="#Services_JSON_ErrorSuppression_TestCase" title="details" class="method-name">Services_JSON_ErrorSuppression_TestCase</a>

-											(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#setUp" title="details" class="method-name">setUp</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_to_JSON" title="details" class="method-name">test_to_JSON</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_to_JSON_suppressed" title="details" class="method-name">test_to_JSON_suppressed</a>

-										()

-									</div>

-							</div>

-		</div>

-	</div>		

-

-	

-	<a name="sec-methods"></a>

-	<div class="info-box">

-		<div class="info-box-title">Methods</div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-													<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)

-						

-		</div>

-		<div class="info-box-body">

-			<A NAME='method_detail'></A>

-<a name="methodServices_JSON_ErrorSuppression_TestCase" id="Services_JSON_ErrorSuppression_TestCase"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">Constructor Services_JSON_ErrorSuppression_TestCase</span> (line <span class="line-number">436</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">Services_JSON_ErrorSuppression_TestCase</span>

-		<span class="method-name">

-			Services_JSON_ErrorSuppression_TestCase

-		</span>

-					(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-			</div>

-	

-		

-		

-	</div>

-<a name="methodsetUp" id="setUp"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">setUp</span> (line <span class="line-number">440</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			setUp

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_to_JSON" id="test_to_JSON"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_to_JSON</span> (line <span class="line-number">462</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_to_JSON

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_to_JSON_suppressed" id="test_to_JSON_suppressed"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_to_JSON_suppressed</span> (line <span class="line-number">469</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_to_JSON_suppressed

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-						

-		</div>

-	</div>

-	

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:26 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</div></body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_NestedArray_TestCase.html b/eclipse.org-common/json/doc/Services_JSON/Services_JSON_NestedArray_TestCase.html
deleted file mode 100644
index b2ad409..0000000
--- a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_NestedArray_TestCase.html
+++ /dev/null
@@ -1,200 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title>Docs For Class Services_JSON_NestedArray_TestCase</title>

-			<link rel="stylesheet" href="../media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-			<div class="page-body">			

-<h2 class="class-name">Class Services_JSON_NestedArray_TestCase</h2>

-

-<a name="sec-description"></a>

-<div class="info-box">

-	<div class="info-box-title">Description</div>

-	<div class="nav-bar">

-					<span class="disabled">Description</span> |

-															<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)

-						

-			</div>

-	<div class="info-box-body">

-		<!-- ========== Info from phpDoc block ========= -->

-		<p class="notes">

-			Located in <a class="field" href="_Test-JSON_php.html">/Test-JSON.php</a> (line <span class="field">212</span>)

-		</p>

-		

-				

-		<pre>PHPUnit_TestCase
-   |
-   --Services_JSON_NestedArray_TestCase</pre>

-	

-			</div>

-</div>

-

-

-

-	<a name="sec-method-summary"></a>

-	<div class="info-box">

-		<div class="info-box-title">Method Summary</span></div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-									<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)

-		</div>

-		<div class="info-box-body">			

-			<div class="method-summary">

-								

-				<div class="method-definition">

-											<span class="method-result">Services_JSON_NestedArray_TestCase</span>

-										<a href="#Services_JSON_NestedArray_TestCase" title="details" class="method-name">Services_JSON_NestedArray_TestCase</a>

-											(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#setUp" title="details" class="method-name">setUp</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_from_JSON" title="details" class="method-name">test_from_JSON</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_type" title="details" class="method-name">test_type</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#_test_from_JSON" title="details" class="method-name">_test_from_JSON</a>

-										()

-									</div>

-							</div>

-		</div>

-	</div>		

-

-	

-	<a name="sec-methods"></a>

-	<div class="info-box">

-		<div class="info-box-title">Methods</div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-													<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)

-						

-		</div>

-		<div class="info-box-body">

-			<A NAME='method_detail'></A>

-<a name="methodServices_JSON_NestedArray_TestCase" id="Services_JSON_NestedArray_TestCase"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">Constructor Services_JSON_NestedArray_TestCase</span> (line <span class="line-number">214</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">Services_JSON_NestedArray_TestCase</span>

-		<span class="method-name">

-			Services_JSON_NestedArray_TestCase

-		</span>

-					(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-			</div>

-	

-		

-		

-	</div>

-<a name="methodsetUp" id="setUp"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">setUp</span> (line <span class="line-number">218</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			setUp

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_from_JSON" id="test_from_JSON"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_from_JSON</span> (line <span class="line-number">272</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_from_JSON

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_type" id="test_type"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_type</span> (line <span class="line-number">265</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_type

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="method_test_from_JSON" id="_test_from_JSON"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">_test_from_JSON</span> (line <span class="line-number">281</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			_test_from_JSON

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-						

-		</div>

-	</div>

-	

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:26 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</div></body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_Object_TestCase.html b/eclipse.org-common/json/doc/Services_JSON/Services_JSON_Object_TestCase.html
deleted file mode 100644
index bab4319..0000000
--- a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_Object_TestCase.html
+++ /dev/null
@@ -1,200 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title>Docs For Class Services_JSON_Object_TestCase</title>

-			<link rel="stylesheet" href="../media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-			<div class="page-body">			

-<h2 class="class-name">Class Services_JSON_Object_TestCase</h2>

-

-<a name="sec-description"></a>

-<div class="info-box">

-	<div class="info-box-title">Description</div>

-	<div class="nav-bar">

-					<span class="disabled">Description</span> |

-															<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)

-						

-			</div>

-	<div class="info-box-body">

-		<!-- ========== Info from phpDoc block ========= -->

-		<p class="notes">

-			Located in <a class="field" href="_Test-JSON_php.html">/Test-JSON.php</a> (line <span class="field">289</span>)

-		</p>

-		

-				

-		<pre>PHPUnit_TestCase
-   |
-   --Services_JSON_Object_TestCase</pre>

-	

-			</div>

-</div>

-

-

-

-	<a name="sec-method-summary"></a>

-	<div class="info-box">

-		<div class="info-box-title">Method Summary</span></div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-									<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)

-		</div>

-		<div class="info-box-body">			

-			<div class="method-summary">

-								

-				<div class="method-definition">

-											<span class="method-result">Services_JSON_Object_TestCase</span>

-										<a href="#Services_JSON_Object_TestCase" title="details" class="method-name">Services_JSON_Object_TestCase</a>

-											(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#setUp" title="details" class="method-name">setUp</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_from_then_to_JSON" title="details" class="method-name">test_from_then_to_JSON</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_to_JSON" title="details" class="method-name">test_to_JSON</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_type" title="details" class="method-name">test_type</a>

-										()

-									</div>

-							</div>

-		</div>

-	</div>		

-

-	

-	<a name="sec-methods"></a>

-	<div class="info-box">

-		<div class="info-box-title">Methods</div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-													<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)

-						

-		</div>

-		<div class="info-box-body">

-			<A NAME='method_detail'></A>

-<a name="methodServices_JSON_Object_TestCase" id="Services_JSON_Object_TestCase"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">Constructor Services_JSON_Object_TestCase</span> (line <span class="line-number">291</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">Services_JSON_Object_TestCase</span>

-		<span class="method-name">

-			Services_JSON_Object_TestCase

-		</span>

-					(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-			</div>

-	

-		

-		

-	</div>

-<a name="methodsetUp" id="setUp"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">setUp</span> (line <span class="line-number">295</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			setUp

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_from_then_to_JSON" id="test_from_then_to_JSON"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_from_then_to_JSON</span> (line <span class="line-number">321</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_from_then_to_JSON

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_to_JSON" id="test_to_JSON"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_to_JSON</span> (line <span class="line-number">315</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_to_JSON

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_type" id="test_type"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_type</span> (line <span class="line-number">309</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_type

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-						

-		</div>

-	</div>

-	

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:26 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</div></body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_Spaces_Comments_TestCase.html b/eclipse.org-common/json/doc/Services_JSON/Services_JSON_Spaces_Comments_TestCase.html
deleted file mode 100644
index c9e4c2f..0000000
--- a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_Spaces_Comments_TestCase.html
+++ /dev/null
@@ -1,174 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title>Docs For Class Services_JSON_Spaces_Comments_TestCase</title>

-			<link rel="stylesheet" href="../media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-			<div class="page-body">			

-<h2 class="class-name">Class Services_JSON_Spaces_Comments_TestCase</h2>

-

-<a name="sec-description"></a>

-<div class="info-box">

-	<div class="info-box-title">Description</div>

-	<div class="nav-bar">

-					<span class="disabled">Description</span> |

-															<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)

-						

-			</div>

-	<div class="info-box-body">

-		<!-- ========== Info from phpDoc block ========= -->

-		<p class="notes">

-			Located in <a class="field" href="_Test-JSON_php.html">/Test-JSON.php</a> (line <span class="field">328</span>)

-		</p>

-		

-				

-		<pre>PHPUnit_TestCase
-   |
-   --Services_JSON_Spaces_Comments_TestCase</pre>

-	

-			</div>

-</div>

-

-

-

-	<a name="sec-method-summary"></a>

-	<div class="info-box">

-		<div class="info-box-title">Method Summary</span></div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-									<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)

-		</div>

-		<div class="info-box-body">			

-			<div class="method-summary">

-								

-				<div class="method-definition">

-											<span class="method-result">Services_JSON_Spaces_Comments_TestCase</span>

-										<a href="#Services_JSON_Spaces_Comments_TestCase" title="details" class="method-name">Services_JSON_Spaces_Comments_TestCase</a>

-											(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#setUp" title="details" class="method-name">setUp</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_comments" title="details" class="method-name">test_comments</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_spaces" title="details" class="method-name">test_spaces</a>

-										()

-									</div>

-							</div>

-		</div>

-	</div>		

-

-	

-	<a name="sec-methods"></a>

-	<div class="info-box">

-		<div class="info-box-title">Methods</div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-													<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)

-						

-		</div>

-		<div class="info-box-body">

-			<A NAME='method_detail'></A>

-<a name="methodServices_JSON_Spaces_Comments_TestCase" id="Services_JSON_Spaces_Comments_TestCase"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">Constructor Services_JSON_Spaces_Comments_TestCase</span> (line <span class="line-number">330</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">Services_JSON_Spaces_Comments_TestCase</span>

-		<span class="method-name">

-			Services_JSON_Spaces_Comments_TestCase

-		</span>

-					(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-			</div>

-	

-		

-		

-	</div>

-<a name="methodsetUp" id="setUp"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">setUp</span> (line <span class="line-number">334</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			setUp

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_comments" id="test_comments"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_comments</span> (line <span class="line-number">355</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_comments

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_spaces" id="test_spaces"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_spaces</span> (line <span class="line-number">350</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_spaces

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-						

-		</div>

-	</div>

-	

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:26 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</div></body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_UnquotedKeys_TestCase.html b/eclipse.org-common/json/doc/Services_JSON/Services_JSON_UnquotedKeys_TestCase.html
deleted file mode 100644
index ea2d0b8..0000000
--- a/eclipse.org-common/json/doc/Services_JSON/Services_JSON_UnquotedKeys_TestCase.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title>Docs For Class Services_JSON_UnquotedKeys_TestCase</title>

-			<link rel="stylesheet" href="../media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-			<div class="page-body">			

-<h2 class="class-name">Class Services_JSON_UnquotedKeys_TestCase</h2>

-

-<a name="sec-description"></a>

-<div class="info-box">

-	<div class="info-box-title">Description</div>

-	<div class="nav-bar">

-					<span class="disabled">Description</span> |

-															<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)

-						

-			</div>

-	<div class="info-box-body">

-		<!-- ========== Info from phpDoc block ========= -->

-		<p class="notes">

-			Located in <a class="field" href="_Test-JSON_php.html">/Test-JSON.php</a> (line <span class="field">406</span>)

-		</p>

-		

-				

-		<pre>PHPUnit_TestCase
-   |
-   --Services_JSON_UnquotedKeys_TestCase</pre>

-	

-			</div>

-</div>

-

-

-

-	<a name="sec-method-summary"></a>

-	<div class="info-box">

-		<div class="info-box-title">Method Summary</span></div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-									<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)

-		</div>

-		<div class="info-box-body">			

-			<div class="method-summary">

-								

-				<div class="method-definition">

-											<span class="method-result">Services_JSON_UnquotedKeys_TestCase</span>

-										<a href="#Services_JSON_UnquotedKeys_TestCase" title="details" class="method-name">Services_JSON_UnquotedKeys_TestCase</a>

-											(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#setUp" title="details" class="method-name">setUp</a>

-										()

-									</div>

-								

-				<div class="method-definition">

-											<span class="method-result">void</span>

-										<a href="#test_from_JSON" title="details" class="method-name">test_from_JSON</a>

-										()

-									</div>

-							</div>

-		</div>

-	</div>		

-

-	

-	<a name="sec-methods"></a>

-	<div class="info-box">

-		<div class="info-box-title">Methods</div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-													<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)

-						

-		</div>

-		<div class="info-box-body">

-			<A NAME='method_detail'></A>

-<a name="methodServices_JSON_UnquotedKeys_TestCase" id="Services_JSON_UnquotedKeys_TestCase"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">Constructor Services_JSON_UnquotedKeys_TestCase</span> (line <span class="line-number">408</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">Services_JSON_UnquotedKeys_TestCase</span>

-		<span class="method-name">

-			Services_JSON_UnquotedKeys_TestCase

-		</span>

-					(<span class="var-type">mixed</span>&nbsp;<span class="var-name">$name</span>)

-			</div>

-	

-		

-		

-	</div>

-<a name="methodsetUp" id="setUp"><!-- --></a>

-<div class="oddrow">

-	

-	<div class="method-header">

-		<span class="method-title">setUp</span> (line <span class="line-number">412</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			setUp

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-<a name="methodtest_from_JSON" id="test_from_JSON"><!-- --></a>

-<div class="evenrow">

-	

-	<div class="method-header">

-		<span class="method-title">test_from_JSON</span> (line <span class="line-number">424</span>)

-	</div> 

-	

-	<!-- ========== Info from phpDoc block ========= -->

-	

-	<div class="method-signature">

-		<span class="method-result">void</span>

-		<span class="method-name">

-			test_from_JSON

-		</span>

-				()

-			</div>

-	

-		

-		

-	</div>

-						

-		</div>

-	</div>

-	

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:27 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</div></body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/Services_JSON/_JSON_php.html b/eclipse.org-common/json/doc/Services_JSON/_JSON_php.html
deleted file mode 100644
index 2992ecd..0000000
--- a/eclipse.org-common/json/doc/Services_JSON/_JSON_php.html
+++ /dev/null
@@ -1,197 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title>Docs for page JSON.php</title>

-			<link rel="stylesheet" href="../media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-			<div class="page-body">			

-<h2 class="file-name">/JSON.php</h2>

-

-<a name="sec-description"></a>

-<div class="info-box">

-	<div class="info-box-title">Description</div>

-	<div class="nav-bar">

-					<span class="disabled">Description</span> |

-							<a href="#sec-classes">Classes</a>

-			|									<a href="#sec-constants">Constants</a>

-										</div>

-	<div class="info-box-body">	

-		<!-- ========== Info from phpDoc block ========= -->

-<p class="short-description">Converts to and from JSON format.</p>

-<p class="description"><p>JSON (JavaScript Object Notation) is a lightweight data-interchange  format. It is easy for humans to read and write. It is easy for machines  to parse and generate. It is based on a subset of the JavaScript  Programming Language, Standard ECMA-262 3rd Edition - December 1999.  This feature can also be found in  Python. JSON is a text format that is  completely language independent but uses conventions that are familiar  to programmers of the C-family of languages, including C, C++, C#, Java,  JavaScript, Perl, TCL, and many others. These properties make JSON an  ideal data-interchange language.</p><p>This package provides a simple encoder and decoder for JSON notation. It  is intended for use with client-side Javascript applications that make  use of HTTPRequest to perform server communication functions - data can  be encoded into JSON notation for use in a client-side javascript, or  decoded from incoming Javascript requests. JSON format is native to  Javascript, and can be directly eval()'ed with no further parsing  overhead</p><p>All strings should be in ASCII or UTF-8 format!</p><p>LICENSE: Redistribution and use in source and binary forms, with or  without modification, are permitted provided that the following  conditions are met: Redistributions of source code must retain the  above copyright notice, this list of conditions and the following  disclaimer. Redistributions in binary form must reproduce the above  copyright notice, this list of conditions and the following disclaimer  in the documentation and/or other materials provided with the  distribution.</p><p>THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN  NO EVENT SHALL CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH  DAMAGE.</p></p>

-	<ul class="tags">

-				<li><span class="field">license:</span> <a href="http://www.opensource.org/licenses/bsd-license.php">http://www.opensource.org/licenses/bsd-license.php</a></li>

-				<li><span class="field">link:</span> <a href="http://pear.php.net/pepr/pepr-proposal-show.php?id=198">http://pear.php.net/pepr/pepr-proposal-show.php?id=198</a></li>

-				<li><span class="field">version:</span> CVS: $Id: _JSON_php.html,v 1.1 2009/05/06 18:23:36 droy Exp $</li>

-				<li><span class="field">copyright:</span> 2005 Michal Migurski</li>

-				<li><span class="field">author:</span> Matt Knapp &lt;<a href="mailto:mdknapp[at]gmail[dot]com">mailto:mdknapp[at]gmail[dot]com</a>&gt;</li>

-				<li><span class="field">author:</span> Brett Stimmerman &lt;<a href="mailto:brettstimmerman[at]gmail[dot]com">mailto:brettstimmerman[at]gmail[dot]com</a>&gt;</li>

-				<li><span class="field">author:</span> Michal Migurski &lt;<a href="mailto:mike-json@teczno.com">mailto:mike-json@teczno.com</a>&gt;</li>

-			</ul>

-		

-			</div>

-</div>

-		

-	<a name="sec-classes"></a>	

-	<div class="info-box">

-		<div class="info-box-title">Classes</div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-			<span class="disabled">Classes</span>

-			|										<a href="#sec-constants">Constants</a>

-															</div>

-		<div class="info-box-body">	

-			<table cellpadding="2" cellspacing="0" class="class-table">

-				<tr>

-					<th class="class-table-header">Class</th>

-					<th class="class-table-header">Description</th>

-				</tr>

-								<tr>

-					<td style="padding-right: 2em; vertical-align: top">

-						<a href="../Services_JSON/Services_JSON.html">Services_JSON</a>

-					</td>

-					<td>

-											Converts to and from JSON format.

-										</td>

-				</tr>

-								<tr>

-					<td style="padding-right: 2em; vertical-align: top">

-						<a href="../Services_JSON/Services_JSON_Error.html">Services_JSON_Error</a>

-					</td>

-					<td>

-											

-										</td>

-				</tr>

-							</table>

-		</div>

-	</div>

-

-	

-	<a name="sec-constants"></a>	

-	<div class="info-box">

-		<div class="info-box-title">Constants</div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-							<a href="#sec-classes">Classes</a>

-				|									<span class="disabled">Constants</span>

-											</div>

-		<div class="info-box-body">	

-			<a name="defineSERVICES_JSON_IN_ARR"><!-- --></a>

-<div class="oddrow">

-	

-	<div>

-		<span class="const-title">

-			<span class="const-name">SERVICES_JSON_IN_ARR</span> = 3

-			(line <span class="line-number">72</span>)

-		</span>

-	</div>

-	

-	<!-- ========== Info from phpDoc block ========= -->

-<p class="short-description">Marker constant for Services_JSON::decode(), used to flag stack state</p>

-	

-		

-</div>

-<a name="defineSERVICES_JSON_IN_CMT"><!-- --></a>

-<div class="evenrow">

-	

-	<div>

-		<span class="const-title">

-			<span class="const-name">SERVICES_JSON_IN_CMT</span> = 5

-			(line <span class="line-number">82</span>)

-		</span>

-	</div>

-	

-	<!-- ========== Info from phpDoc block ========= -->

-<p class="short-description">Marker constant for Services_JSON::decode(), used to flag stack state</p>

-	

-		

-</div>

-<a name="defineSERVICES_JSON_IN_OBJ"><!-- --></a>

-<div class="oddrow">

-	

-	<div>

-		<span class="const-title">

-			<span class="const-name">SERVICES_JSON_IN_OBJ</span> = 4

-			(line <span class="line-number">77</span>)

-		</span>

-	</div>

-	

-	<!-- ========== Info from phpDoc block ========= -->

-<p class="short-description">Marker constant for Services_JSON::decode(), used to flag stack state</p>

-	

-		

-</div>

-<a name="defineSERVICES_JSON_IN_STR"><!-- --></a>

-<div class="evenrow">

-	

-	<div>

-		<span class="const-title">

-			<span class="const-name">SERVICES_JSON_IN_STR</span> = 2

-			(line <span class="line-number">67</span>)

-		</span>

-	</div>

-	

-	<!-- ========== Info from phpDoc block ========= -->

-<p class="short-description">Marker constant for Services_JSON::decode(), used to flag stack state</p>

-	

-		

-</div>

-<a name="defineSERVICES_JSON_LOOSE_TYPE"><!-- --></a>

-<div class="oddrow">

-	

-	<div>

-		<span class="const-title">

-			<span class="const-name">SERVICES_JSON_LOOSE_TYPE</span> = 16

-			(line <span class="line-number">87</span>)

-		</span>

-	</div>

-	

-	<!-- ========== Info from phpDoc block ========= -->

-<p class="short-description">Behavior switch for Services_JSON::decode()</p>

-	

-		

-</div>

-<a name="defineSERVICES_JSON_SLICE"><!-- --></a>

-<div class="evenrow">

-	

-	<div>

-		<span class="const-title">

-			<span class="const-name">SERVICES_JSON_SLICE</span> = 1

-			(line <span class="line-number">62</span>)

-		</span>

-	</div>

-	

-	<!-- ========== Info from phpDoc block ========= -->

-<p class="short-description">Marker constant for Services_JSON::decode(), used to flag stack state</p>

-	

-		

-</div>

-<a name="defineSERVICES_JSON_SUPPRESS_ERRORS"><!-- --></a>

-<div class="oddrow">

-	

-	<div>

-		<span class="const-title">

-			<span class="const-name">SERVICES_JSON_SUPPRESS_ERRORS</span> = 32

-			(line <span class="line-number">92</span>)

-		</span>

-	</div>

-	

-	<!-- ========== Info from phpDoc block ========= -->

-<p class="short-description">Behavior switch for Services_JSON::decode()</p>

-	

-		

-</div>

-		</div>

-	</div>

-	

-	

-	

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:25 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</div></body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/Services_JSON/_Test-JSON_php.html b/eclipse.org-common/json/doc/Services_JSON/_Test-JSON_php.html
deleted file mode 100644
index 79c2ab3..0000000
--- a/eclipse.org-common/json/doc/Services_JSON/_Test-JSON_php.html
+++ /dev/null
@@ -1,168 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title>Docs for page Test-JSON.php</title>

-			<link rel="stylesheet" href="../media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-			<div class="page-body">			

-<h2 class="file-name">/Test-JSON.php</h2>

-

-<a name="sec-description"></a>

-<div class="info-box">

-	<div class="info-box-title">Description</div>

-	<div class="nav-bar">

-					<span class="disabled">Description</span> |

-							<a href="#sec-classes">Classes</a>

-			|							<a href="#sec-includes">Includes</a>

-												</div>

-	<div class="info-box-body">	

-		<!-- ========== Info from phpDoc block ========= -->

-<p class="short-description">Unit tests for Services_JSON.</p>

-	<ul class="tags">

-				<li><span class="field">version:</span> CVS: $Id: _Test-JSON_php.html,v 1.1 2009/05/06 18:23:36 droy Exp $</li>

-				<li><span class="field">license:</span> <a href="http://www.opensource.org/licenses/bsd-license.php">http://www.opensource.org/licenses/bsd-license.php</a></li>

-				<li><span class="field">link:</span> <a href="http://pear.php.net/pepr/pepr-proposal-show.php?id=198">http://pear.php.net/pepr/pepr-proposal-show.php?id=198</a></li>

-				<li><span class="field">copyright:</span> 2005 Michal Migurski</li>

-				<li><span class="field">author:</span> Brett Stimmerman &lt;<a href="mailto:brettstimmerman[at]gmail[dot]com">mailto:brettstimmerman[at]gmail[dot]com</a>&gt;</li>

-				<li><span class="field">author:</span> Michal Migurski &lt;<a href="mailto:mike-json@teczno.com">mailto:mike-json@teczno.com</a>&gt;</li>

-				<li><span class="field">author:</span> Matt Knapp &lt;<a href="mailto:mdknapp[at]gmail[dot]com">mailto:mdknapp[at]gmail[dot]com</a>&gt;</li>

-				<li><span class="field">see:</span> <a href="../Services_JSON/_JSON_php.html">JSON.php</a></li>

-			</ul>

-		

-			</div>

-</div>

-		

-	<a name="sec-classes"></a>	

-	<div class="info-box">

-		<div class="info-box-title">Classes</div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-			<span class="disabled">Classes</span>

-			|							<a href="#sec-includes">Includes</a>

-																		</div>

-		<div class="info-box-body">	

-			<table cellpadding="2" cellspacing="0" class="class-table">

-				<tr>

-					<th class="class-table-header">Class</th>

-					<th class="class-table-header">Description</th>

-				</tr>

-								<tr>

-					<td style="padding-right: 2em; vertical-align: top">

-						<a href="../Services_JSON/Services_JSON_EncDec_TestCase.html">Services_JSON_EncDec_TestCase</a>

-					</td>

-					<td>

-											

-										</td>

-				</tr>

-								<tr>

-					<td style="padding-right: 2em; vertical-align: top">

-						<a href="../Services_JSON/Services_JSON_AssocArray_TestCase.html">Services_JSON_AssocArray_TestCase</a>

-					</td>

-					<td>

-											

-										</td>

-				</tr>

-								<tr>

-					<td style="padding-right: 2em; vertical-align: top">

-						<a href="../Services_JSON/Services_JSON_NestedArray_TestCase.html">Services_JSON_NestedArray_TestCase</a>

-					</td>

-					<td>

-											

-										</td>

-				</tr>

-								<tr>

-					<td style="padding-right: 2em; vertical-align: top">

-						<a href="../Services_JSON/Services_JSON_Object_TestCase.html">Services_JSON_Object_TestCase</a>

-					</td>

-					<td>

-											

-										</td>

-				</tr>

-								<tr>

-					<td style="padding-right: 2em; vertical-align: top">

-						<a href="../Services_JSON/Services_JSON_Spaces_Comments_TestCase.html">Services_JSON_Spaces_Comments_TestCase</a>

-					</td>

-					<td>

-											

-										</td>

-				</tr>

-								<tr>

-					<td style="padding-right: 2em; vertical-align: top">

-						<a href="../Services_JSON/Services_JSON_Empties_TestCase.html">Services_JSON_Empties_TestCase</a>

-					</td>

-					<td>

-											

-										</td>

-				</tr>

-								<tr>

-					<td style="padding-right: 2em; vertical-align: top">

-						<a href="../Services_JSON/Services_JSON_UnquotedKeys_TestCase.html">Services_JSON_UnquotedKeys_TestCase</a>

-					</td>

-					<td>

-											

-										</td>

-				</tr>

-								<tr>

-					<td style="padding-right: 2em; vertical-align: top">

-						<a href="../Services_JSON/Services_JSON_ErrorSuppression_TestCase.html">Services_JSON_ErrorSuppression_TestCase</a>

-					</td>

-					<td>

-											

-										</td>

-				</tr>

-							</table>

-		</div>

-	</div>

-

-	<a name="sec-includes"></a>	

-	<div class="info-box">

-		<div class="info-box-title">Includes</div>

-		<div class="nav-bar">

-			<a href="#sec-description">Description</a> |

-							<a href="#sec-classes">Classes</a>

-				|						<span class="disabled">Includes</span>

-														</div>

-		<div class="info-box-body">	

-			<a name="_PHPUnit_php"><!-- --></a>

-<div class="oddrow">

-	

-	<div>

-		<span class="include-title">

-			<span class="include-type">require_once</span>

-			(<span class="include-name">'PHPUnit.php'</span>)

-			(line <span class="line-number">22</span>)

-		</span>

-	</div>

-

-	<!-- ========== Info from phpDoc block ========= -->

-	

-</div>

-<a name="_JSON_php"><!-- --></a>

-<div class="evenrow">

-	

-	<div>

-		<span class="include-title">

-			<span class="include-type">require_once</span>

-			(<span class="include-name"><a href="../Services_JSON/_JSON_php.html">'JSON.php'</a></span>)

-			(line <span class="line-number">23</span>)

-		</span>

-	</div>

-

-	<!-- ========== Info from phpDoc block ========= -->

-	

-</div>

-		</div>

-	</div>

-	

-	

-	

-	

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:26 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</div></body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/blank.html b/eclipse.org-common/json/doc/blank.html
deleted file mode 100644
index 328d966..0000000
--- a/eclipse.org-common/json/doc/blank.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<html>

-<head>

-	<title>Generated Documentation</title>

-			<link rel="stylesheet" href="media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-</head>

-<body>

-<div align="center"><h1>Generated Documentation</h1></div>

-<b>Welcome to default!</b><br />

-<br />

-This documentation was generated by <a href="http://www.phpdoc.org">phpDocumentor v1.2.3</a><br />

-</body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/classtrees_Services_JSON.html b/eclipse.org-common/json/doc/classtrees_Services_JSON.html
deleted file mode 100644
index 535fcfd..0000000
--- a/eclipse.org-common/json/doc/classtrees_Services_JSON.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title></title>

-			<link rel="stylesheet" href="media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-						

-<!-- Start of Class Data -->

-<H2>

-	

-</H2>

-<h2>Root class Services_JSON</h2>

-<ul>
-<li><a href="Services_JSON/Services_JSON.html">Services_JSON</a></li></ul>
-

-<h2>Root class Services_JSON_AssocArray_TestCase</h2>

-<ul>
-<li>PHPUnit_TestCase<ul><li><a href="Services_JSON/Services_JSON_AssocArray_TestCase.html">Services_JSON_AssocArray_TestCase</a></li></ul></li></ul>
-

-<h2>Root class Services_JSON_Empties_TestCase</h2>

-<ul>
-<li>PHPUnit_TestCase<ul><li><a href="Services_JSON/Services_JSON_Empties_TestCase.html">Services_JSON_Empties_TestCase</a></li></ul></li></ul>
-

-<h2>Root class Services_JSON_EncDec_TestCase</h2>

-<ul>
-<li>PHPUnit_TestCase<ul><li><a href="Services_JSON/Services_JSON_EncDec_TestCase.html">Services_JSON_EncDec_TestCase</a></li></ul></li></ul>
-

-<h2>Root class Services_JSON_Error</h2>

-<ul>
-<li>PEAR_Error<ul><li><a href="Services_JSON/Services_JSON_Error.html">Services_JSON_Error</a></li></ul></li></ul>
-

-<h2>Root class Services_JSON_ErrorSuppression_TestCase</h2>

-<ul>
-<li>PHPUnit_TestCase<ul><li><a href="Services_JSON/Services_JSON_ErrorSuppression_TestCase.html">Services_JSON_ErrorSuppression_TestCase</a></li></ul></li></ul>
-

-<h2>Root class Services_JSON_NestedArray_TestCase</h2>

-<ul>
-<li>PHPUnit_TestCase<ul><li><a href="Services_JSON/Services_JSON_NestedArray_TestCase.html">Services_JSON_NestedArray_TestCase</a></li></ul></li></ul>
-

-<h2>Root class Services_JSON_Object_TestCase</h2>

-<ul>
-<li>PHPUnit_TestCase<ul><li><a href="Services_JSON/Services_JSON_Object_TestCase.html">Services_JSON_Object_TestCase</a></li></ul></li></ul>
-

-<h2>Root class Services_JSON_Spaces_Comments_TestCase</h2>

-<ul>
-<li>PHPUnit_TestCase<ul><li><a href="Services_JSON/Services_JSON_Spaces_Comments_TestCase.html">Services_JSON_Spaces_Comments_TestCase</a></li></ul></li></ul>
-

-<h2>Root class Services_JSON_UnquotedKeys_TestCase</h2>

-<ul>
-<li>PHPUnit_TestCase<ul><li><a href="Services_JSON/Services_JSON_UnquotedKeys_TestCase.html">Services_JSON_UnquotedKeys_TestCase</a></li></ul></li></ul>
-

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:25 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/elementindex.html b/eclipse.org-common/json/doc/elementindex.html
deleted file mode 100644
index 82b52b0..0000000
--- a/eclipse.org-common/json/doc/elementindex.html
+++ /dev/null
@@ -1,457 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title></title>

-			<link rel="stylesheet" href="media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-						<a name="top"></a>

-<h2>Full index</h2>

-<h3>Package indexes</h3>

-<ul>

-	<li><a href="elementindex_Services_JSON.html">Services_JSON</a></li>

-</ul>

-<br />

-<div class="index-letter-menu">

-	<a class="index-letter" href="elementindex.html#d">d</a>

-	<a class="index-letter" href="elementindex.html#e">e</a>

-	<a class="index-letter" href="elementindex.html#i">i</a>

-	<a class="index-letter" href="elementindex.html#"></a>

-	<a class="index-letter" href="elementindex.html#s">s</a>

-	<a class="index-letter" href="elementindex.html#t">t</a>

-</div>

-

-	<a name="d"></a>

-	<div class="index-letter-section">

-		<div style="float: left" class="index-letter-title">d</div>

-		<div style="float: right"><a href="#top">top</a></div>

-		<div style="clear: both"></div>

-	</div>

-	<dl>

-			<dt class="field">

-						<span class="method-title">decode</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON.html#methoddecode">Services_JSON::decode()</a> in JSON.php</div>

-							<div class="index-item-description">decodes a JSON string into appropriate variable</div>

-					</dd>

-		</dl>

-	<a name="e"></a>

-	<div class="index-letter-section">

-		<div style="float: left" class="index-letter-title">e</div>

-		<div style="float: right"><a href="#top">top</a></div>

-		<div style="clear: both"></div>

-	</div>

-	<dl>

-			<dt class="field">

-						<span class="method-title">encode</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON.html#methodencode">Services_JSON::encode()</a> in JSON.php</div>

-							<div class="index-item-description">encodes an arbitrary variable into JSON format</div>

-					</dd>

-		</dl>

-	<a name="i"></a>

-	<div class="index-letter-section">

-		<div style="float: left" class="index-letter-title">i</div>

-		<div style="float: right"><a href="#top">top</a></div>

-		<div style="clear: both"></div>

-	</div>

-	<dl>

-			<dt class="field">

-						<span class="method-title">isError</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON.html#methodisError">Services_JSON::isError()</a> in JSON.php</div>

-					</dd>

-		</dl>

-	<a name="j"></a>

-	<div class="index-letter-section">

-		<div style="float: left" class="index-letter-title">j</div>

-		<div style="float: right"><a href="#top">top</a></div>

-		<div style="clear: both"></div>

-	</div>

-	<dl>

-			<dt class="field">

-						<span class="include-title">JSON.php</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html">JSON.php</a> in JSON.php</div>

-					</dd>

-		</dl>

-	<a name="s"></a>

-	<div class="index-letter-section">

-		<div style="float: left" class="index-letter-title">s</div>

-		<div style="float: right"><a href="#top">top</a></div>

-		<div style="clear: both"></div>

-	</div>

-	<dl>

-			<dt class="field">

-						Services_JSON

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON.html">Services_JSON</a> in JSON.php</div>

-							<div class="index-item-description">Converts to and from JSON format.</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON.html#methodServices_JSON">Services_JSON::Services_JSON()</a> in JSON.php</div>

-							<div class="index-item-description">constructs a new JSON instance</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_AssocArray_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_AssocArray_TestCase.html#methodServices_JSON_AssocArray_TestCase">Services_JSON_AssocArray_TestCase::Services_JSON_AssocArray_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_AssocArray_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_AssocArray_TestCase.html">Services_JSON_AssocArray_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_Empties_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Empties_TestCase.html">Services_JSON_Empties_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_Empties_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Empties_TestCase.html#methodServices_JSON_Empties_TestCase">Services_JSON_Empties_TestCase::Services_JSON_Empties_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_EncDec_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_EncDec_TestCase.html#methodServices_JSON_EncDec_TestCase">Services_JSON_EncDec_TestCase::Services_JSON_EncDec_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_EncDec_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_EncDec_TestCase.html">Services_JSON_EncDec_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_Error</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Error.html#methodServices_JSON_Error">Services_JSON_Error::Services_JSON_Error()</a> in JSON.php</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_Error

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Error.html">Services_JSON_Error</a> in JSON.php</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_ErrorSuppression_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_ErrorSuppression_TestCase.html">Services_JSON_ErrorSuppression_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_ErrorSuppression_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_ErrorSuppression_TestCase.html#methodServices_JSON_ErrorSuppression_TestCase">Services_JSON_ErrorSuppression_TestCase::Services_JSON_ErrorSuppression_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="const-title">SERVICES_JSON_IN_ARR</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html#defineSERVICES_JSON_IN_ARR">SERVICES_JSON_IN_ARR</a> in JSON.php</div>

-							<div class="index-item-description">Marker constant for Services_JSON::decode(), used to flag stack state</div>

-					</dd>

-			<dt class="field">

-						<span class="const-title">SERVICES_JSON_IN_CMT</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html#defineSERVICES_JSON_IN_CMT">SERVICES_JSON_IN_CMT</a> in JSON.php</div>

-							<div class="index-item-description">Marker constant for Services_JSON::decode(), used to flag stack state</div>

-					</dd>

-			<dt class="field">

-						<span class="const-title">SERVICES_JSON_IN_OBJ</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html#defineSERVICES_JSON_IN_OBJ">SERVICES_JSON_IN_OBJ</a> in JSON.php</div>

-							<div class="index-item-description">Marker constant for Services_JSON::decode(), used to flag stack state</div>

-					</dd>

-			<dt class="field">

-						<span class="const-title">SERVICES_JSON_IN_STR</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html#defineSERVICES_JSON_IN_STR">SERVICES_JSON_IN_STR</a> in JSON.php</div>

-							<div class="index-item-description">Marker constant for Services_JSON::decode(), used to flag stack state</div>

-					</dd>

-			<dt class="field">

-						<span class="const-title">SERVICES_JSON_LOOSE_TYPE</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html#defineSERVICES_JSON_LOOSE_TYPE">SERVICES_JSON_LOOSE_TYPE</a> in JSON.php</div>

-							<div class="index-item-description">Behavior switch for Services_JSON::decode()</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_NestedArray_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_NestedArray_TestCase.html#methodServices_JSON_NestedArray_TestCase">Services_JSON_NestedArray_TestCase::Services_JSON_NestedArray_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_NestedArray_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_NestedArray_TestCase.html">Services_JSON_NestedArray_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_Object_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Object_TestCase.html#methodServices_JSON_Object_TestCase">Services_JSON_Object_TestCase::Services_JSON_Object_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_Object_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Object_TestCase.html">Services_JSON_Object_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="const-title">SERVICES_JSON_SLICE</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html#defineSERVICES_JSON_SLICE">SERVICES_JSON_SLICE</a> in JSON.php</div>

-							<div class="index-item-description">Marker constant for Services_JSON::decode(), used to flag stack state</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_Spaces_Comments_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Spaces_Comments_TestCase.html">Services_JSON_Spaces_Comments_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_Spaces_Comments_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Spaces_Comments_TestCase.html#methodServices_JSON_Spaces_Comments_TestCase">Services_JSON_Spaces_Comments_TestCase::Services_JSON_Spaces_Comments_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="const-title">SERVICES_JSON_SUPPRESS_ERRORS</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html#defineSERVICES_JSON_SUPPRESS_ERRORS">SERVICES_JSON_SUPPRESS_ERRORS</a> in JSON.php</div>

-							<div class="index-item-description">Behavior switch for Services_JSON::decode()</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_UnquotedKeys_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_UnquotedKeys_TestCase.html">Services_JSON_UnquotedKeys_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_UnquotedKeys_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_UnquotedKeys_TestCase.html#methodServices_JSON_UnquotedKeys_TestCase">Services_JSON_UnquotedKeys_TestCase::Services_JSON_UnquotedKeys_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_UnquotedKeys_TestCase.html#methodsetUp">Services_JSON_UnquotedKeys_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Spaces_Comments_TestCase.html#methodsetUp">Services_JSON_Spaces_Comments_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Object_TestCase.html#methodsetUp">Services_JSON_Object_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Empties_TestCase.html#methodsetUp">Services_JSON_Empties_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_AssocArray_TestCase.html#methodsetUp">Services_JSON_AssocArray_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_NestedArray_TestCase.html#methodsetUp">Services_JSON_NestedArray_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_EncDec_TestCase.html#methodsetUp">Services_JSON_EncDec_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_ErrorSuppression_TestCase.html#methodsetUp">Services_JSON_ErrorSuppression_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-		</dl>

-	<a name="t"></a>

-	<div class="index-letter-section">

-		<div style="float: left" class="index-letter-title">t</div>

-		<div style="float: right"><a href="#top">top</a></div>

-		<div style="clear: both"></div>

-	</div>

-	<dl>

-			<dt class="field">

-						<span class="include-title">Test-JSON.php</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_Test-JSON_php.html">Test-JSON.php</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_comments</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Spaces_Comments_TestCase.html#methodtest_comments">Services_JSON_Spaces_Comments_TestCase::test_comments()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_from_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_EncDec_TestCase.html#methodtest_from_JSON">Services_JSON_EncDec_TestCase::test_from_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_from_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_UnquotedKeys_TestCase.html#methodtest_from_JSON">Services_JSON_UnquotedKeys_TestCase::test_from_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_from_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_NestedArray_TestCase.html#methodtest_from_JSON">Services_JSON_NestedArray_TestCase::test_from_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_from_then_to_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Object_TestCase.html#methodtest_from_then_to_JSON">Services_JSON_Object_TestCase::test_from_then_to_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_from_then_to_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_EncDec_TestCase.html#methodtest_from_then_to_JSON">Services_JSON_EncDec_TestCase::test_from_then_to_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_spaces</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Spaces_Comments_TestCase.html#methodtest_spaces">Services_JSON_Spaces_Comments_TestCase::test_spaces()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_to_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Object_TestCase.html#methodtest_to_JSON">Services_JSON_Object_TestCase::test_to_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_to_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_ErrorSuppression_TestCase.html#methodtest_to_JSON">Services_JSON_ErrorSuppression_TestCase::test_to_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_to_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_EncDec_TestCase.html#methodtest_to_JSON">Services_JSON_EncDec_TestCase::test_to_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_to_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_AssocArray_TestCase.html#methodtest_to_JSON">Services_JSON_AssocArray_TestCase::test_to_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_to_JSON_suppressed</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_ErrorSuppression_TestCase.html#methodtest_to_JSON_suppressed">Services_JSON_ErrorSuppression_TestCase::test_to_JSON_suppressed()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_to_then_from_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_AssocArray_TestCase.html#methodtest_to_then_from_JSON">Services_JSON_AssocArray_TestCase::test_to_then_from_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_to_then_from_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_EncDec_TestCase.html#methodtest_to_then_from_JSON">Services_JSON_EncDec_TestCase::test_to_then_from_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_type</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_AssocArray_TestCase.html#methodtest_type">Services_JSON_AssocArray_TestCase::test_type()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_type</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Empties_TestCase.html#methodtest_type">Services_JSON_Empties_TestCase::test_type()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_type</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_NestedArray_TestCase.html#methodtest_type">Services_JSON_NestedArray_TestCase::test_type()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_type</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Object_TestCase.html#methodtest_type">Services_JSON_Object_TestCase::test_type()</a> in Test-JSON.php</div>

-					</dd>

-		</dl>

-	<a name="_"></a>

-	<div class="index-letter-section">

-		<div style="float: left" class="index-letter-title">_</div>

-		<div style="float: right"><a href="#top">top</a></div>

-		<div style="clear: both"></div>

-	</div>

-	<dl>

-			<dt class="field">

-						<span class="method-title">_test_from_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_NestedArray_TestCase.html#method_test_from_JSON">Services_JSON_NestedArray_TestCase::_test_from_JSON()</a> in Test-JSON.php</div>

-					</dd>

-		</dl>

-

-<div class="index-letter-menu">

-	<a class="index-letter" href="elementindex.html#d">d</a>

-	<a class="index-letter" href="elementindex.html#e">e</a>

-	<a class="index-letter" href="elementindex.html#i">i</a>

-	<a class="index-letter" href="elementindex.html#"></a>

-	<a class="index-letter" href="elementindex.html#s">s</a>

-	<a class="index-letter" href="elementindex.html#t">t</a>

-</div>	</body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/elementindex_Services_JSON.html b/eclipse.org-common/json/doc/elementindex_Services_JSON.html
deleted file mode 100644
index 04aafda..0000000
--- a/eclipse.org-common/json/doc/elementindex_Services_JSON.html
+++ /dev/null
@@ -1,456 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title></title>

-			<link rel="stylesheet" href="media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-						<a name="top"></a>

-<h2>[Services_JSON] element index</h2>

-<a href="elementindex.html">All elements</a>

-<br />

-<div class="index-letter-menu">

-	<a class="index-letter" href="elementindex_Services_JSON.html#d">d</a>

-	<a class="index-letter" href="elementindex_Services_JSON.html#e">e</a>

-	<a class="index-letter" href="elementindex_Services_JSON.html#i">i</a>

-	<a class="index-letter" href="elementindex_Services_JSON.html#j">j</a>

-	<a class="index-letter" href="elementindex_Services_JSON.html#s">s</a>

-	<a class="index-letter" href="elementindex_Services_JSON.html#t">t</a>

-	<a class="index-letter" href="elementindex_Services_JSON.html#_">_</a>

-</div>

-

-	<a name="_"></a>

-	<div class="index-letter-section">

-		<div style="float: left" class="index-letter-title">_</div>

-		<div style="float: right"><a href="#top">top</a></div>

-		<div style="clear: both"></div>

-	</div>

-	<dl>

-			<dt class="field">

-						<span class="method-title">_test_from_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_NestedArray_TestCase.html#method_test_from_JSON">Services_JSON_NestedArray_TestCase::_test_from_JSON()</a> in Test-JSON.php</div>

-					</dd>

-		</dl>

-	<a name="d"></a>

-	<div class="index-letter-section">

-		<div style="float: left" class="index-letter-title">d</div>

-		<div style="float: right"><a href="#top">top</a></div>

-		<div style="clear: both"></div>

-	</div>

-	<dl>

-			<dt class="field">

-						<span class="method-title">decode</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON.html#methoddecode">Services_JSON::decode()</a> in JSON.php</div>

-							<div class="index-item-description">decodes a JSON string into appropriate variable</div>

-					</dd>

-		</dl>

-	<a name="e"></a>

-	<div class="index-letter-section">

-		<div style="float: left" class="index-letter-title">e</div>

-		<div style="float: right"><a href="#top">top</a></div>

-		<div style="clear: both"></div>

-	</div>

-	<dl>

-			<dt class="field">

-						<span class="method-title">encode</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON.html#methodencode">Services_JSON::encode()</a> in JSON.php</div>

-							<div class="index-item-description">encodes an arbitrary variable into JSON format</div>

-					</dd>

-		</dl>

-	<a name="i"></a>

-	<div class="index-letter-section">

-		<div style="float: left" class="index-letter-title">i</div>

-		<div style="float: right"><a href="#top">top</a></div>

-		<div style="clear: both"></div>

-	</div>

-	<dl>

-			<dt class="field">

-						<span class="method-title">isError</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON.html#methodisError">Services_JSON::isError()</a> in JSON.php</div>

-					</dd>

-		</dl>

-	<a name="j"></a>

-	<div class="index-letter-section">

-		<div style="float: left" class="index-letter-title">j</div>

-		<div style="float: right"><a href="#top">top</a></div>

-		<div style="clear: both"></div>

-	</div>

-	<dl>

-			<dt class="field">

-						<span class="include-title">JSON.php</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html">JSON.php</a> in JSON.php</div>

-					</dd>

-		</dl>

-	<a name="s"></a>

-	<div class="index-letter-section">

-		<div style="float: left" class="index-letter-title">s</div>

-		<div style="float: right"><a href="#top">top</a></div>

-		<div style="clear: both"></div>

-	</div>

-	<dl>

-			<dt class="field">

-						Services_JSON

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON.html">Services_JSON</a> in JSON.php</div>

-							<div class="index-item-description">Converts to and from JSON format.</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON.html#methodServices_JSON">Services_JSON::Services_JSON()</a> in JSON.php</div>

-							<div class="index-item-description">constructs a new JSON instance</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_AssocArray_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_AssocArray_TestCase.html#methodServices_JSON_AssocArray_TestCase">Services_JSON_AssocArray_TestCase::Services_JSON_AssocArray_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_AssocArray_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_AssocArray_TestCase.html">Services_JSON_AssocArray_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_Empties_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Empties_TestCase.html">Services_JSON_Empties_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_Empties_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Empties_TestCase.html#methodServices_JSON_Empties_TestCase">Services_JSON_Empties_TestCase::Services_JSON_Empties_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_EncDec_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_EncDec_TestCase.html#methodServices_JSON_EncDec_TestCase">Services_JSON_EncDec_TestCase::Services_JSON_EncDec_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_EncDec_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_EncDec_TestCase.html">Services_JSON_EncDec_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_Error</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Error.html#methodServices_JSON_Error">Services_JSON_Error::Services_JSON_Error()</a> in JSON.php</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_Error

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Error.html">Services_JSON_Error</a> in JSON.php</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_ErrorSuppression_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_ErrorSuppression_TestCase.html">Services_JSON_ErrorSuppression_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_ErrorSuppression_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_ErrorSuppression_TestCase.html#methodServices_JSON_ErrorSuppression_TestCase">Services_JSON_ErrorSuppression_TestCase::Services_JSON_ErrorSuppression_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="const-title">SERVICES_JSON_IN_ARR</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html#defineSERVICES_JSON_IN_ARR">SERVICES_JSON_IN_ARR</a> in JSON.php</div>

-							<div class="index-item-description">Marker constant for Services_JSON::decode(), used to flag stack state</div>

-					</dd>

-			<dt class="field">

-						<span class="const-title">SERVICES_JSON_IN_CMT</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html#defineSERVICES_JSON_IN_CMT">SERVICES_JSON_IN_CMT</a> in JSON.php</div>

-							<div class="index-item-description">Marker constant for Services_JSON::decode(), used to flag stack state</div>

-					</dd>

-			<dt class="field">

-						<span class="const-title">SERVICES_JSON_IN_OBJ</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html#defineSERVICES_JSON_IN_OBJ">SERVICES_JSON_IN_OBJ</a> in JSON.php</div>

-							<div class="index-item-description">Marker constant for Services_JSON::decode(), used to flag stack state</div>

-					</dd>

-			<dt class="field">

-						<span class="const-title">SERVICES_JSON_IN_STR</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html#defineSERVICES_JSON_IN_STR">SERVICES_JSON_IN_STR</a> in JSON.php</div>

-							<div class="index-item-description">Marker constant for Services_JSON::decode(), used to flag stack state</div>

-					</dd>

-			<dt class="field">

-						<span class="const-title">SERVICES_JSON_LOOSE_TYPE</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html#defineSERVICES_JSON_LOOSE_TYPE">SERVICES_JSON_LOOSE_TYPE</a> in JSON.php</div>

-							<div class="index-item-description">Behavior switch for Services_JSON::decode()</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_NestedArray_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_NestedArray_TestCase.html#methodServices_JSON_NestedArray_TestCase">Services_JSON_NestedArray_TestCase::Services_JSON_NestedArray_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_NestedArray_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_NestedArray_TestCase.html">Services_JSON_NestedArray_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_Object_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Object_TestCase.html#methodServices_JSON_Object_TestCase">Services_JSON_Object_TestCase::Services_JSON_Object_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_Object_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Object_TestCase.html">Services_JSON_Object_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="const-title">SERVICES_JSON_SLICE</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html#defineSERVICES_JSON_SLICE">SERVICES_JSON_SLICE</a> in JSON.php</div>

-							<div class="index-item-description">Marker constant for Services_JSON::decode(), used to flag stack state</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_Spaces_Comments_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Spaces_Comments_TestCase.html">Services_JSON_Spaces_Comments_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_Spaces_Comments_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Spaces_Comments_TestCase.html#methodServices_JSON_Spaces_Comments_TestCase">Services_JSON_Spaces_Comments_TestCase::Services_JSON_Spaces_Comments_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="const-title">SERVICES_JSON_SUPPRESS_ERRORS</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_JSON_php.html#defineSERVICES_JSON_SUPPRESS_ERRORS">SERVICES_JSON_SUPPRESS_ERRORS</a> in JSON.php</div>

-							<div class="index-item-description">Behavior switch for Services_JSON::decode()</div>

-					</dd>

-			<dt class="field">

-						Services_JSON_UnquotedKeys_TestCase

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_UnquotedKeys_TestCase.html">Services_JSON_UnquotedKeys_TestCase</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">Services_JSON_UnquotedKeys_TestCase</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_UnquotedKeys_TestCase.html#methodServices_JSON_UnquotedKeys_TestCase">Services_JSON_UnquotedKeys_TestCase::Services_JSON_UnquotedKeys_TestCase()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_UnquotedKeys_TestCase.html#methodsetUp">Services_JSON_UnquotedKeys_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Spaces_Comments_TestCase.html#methodsetUp">Services_JSON_Spaces_Comments_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Object_TestCase.html#methodsetUp">Services_JSON_Object_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Empties_TestCase.html#methodsetUp">Services_JSON_Empties_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_AssocArray_TestCase.html#methodsetUp">Services_JSON_AssocArray_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_NestedArray_TestCase.html#methodsetUp">Services_JSON_NestedArray_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_EncDec_TestCase.html#methodsetUp">Services_JSON_EncDec_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">setUp</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_ErrorSuppression_TestCase.html#methodsetUp">Services_JSON_ErrorSuppression_TestCase::setUp()</a> in Test-JSON.php</div>

-					</dd>

-		</dl>

-	<a name="t"></a>

-	<div class="index-letter-section">

-		<div style="float: left" class="index-letter-title">t</div>

-		<div style="float: right"><a href="#top">top</a></div>

-		<div style="clear: both"></div>

-	</div>

-	<dl>

-			<dt class="field">

-						<span class="include-title">Test-JSON.php</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/_Test-JSON_php.html">Test-JSON.php</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_comments</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Spaces_Comments_TestCase.html#methodtest_comments">Services_JSON_Spaces_Comments_TestCase::test_comments()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_from_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_EncDec_TestCase.html#methodtest_from_JSON">Services_JSON_EncDec_TestCase::test_from_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_from_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_UnquotedKeys_TestCase.html#methodtest_from_JSON">Services_JSON_UnquotedKeys_TestCase::test_from_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_from_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_NestedArray_TestCase.html#methodtest_from_JSON">Services_JSON_NestedArray_TestCase::test_from_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_from_then_to_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Object_TestCase.html#methodtest_from_then_to_JSON">Services_JSON_Object_TestCase::test_from_then_to_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_from_then_to_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_EncDec_TestCase.html#methodtest_from_then_to_JSON">Services_JSON_EncDec_TestCase::test_from_then_to_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_spaces</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Spaces_Comments_TestCase.html#methodtest_spaces">Services_JSON_Spaces_Comments_TestCase::test_spaces()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_to_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Object_TestCase.html#methodtest_to_JSON">Services_JSON_Object_TestCase::test_to_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_to_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_ErrorSuppression_TestCase.html#methodtest_to_JSON">Services_JSON_ErrorSuppression_TestCase::test_to_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_to_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_EncDec_TestCase.html#methodtest_to_JSON">Services_JSON_EncDec_TestCase::test_to_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_to_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_AssocArray_TestCase.html#methodtest_to_JSON">Services_JSON_AssocArray_TestCase::test_to_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_to_JSON_suppressed</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_ErrorSuppression_TestCase.html#methodtest_to_JSON_suppressed">Services_JSON_ErrorSuppression_TestCase::test_to_JSON_suppressed()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_to_then_from_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_AssocArray_TestCase.html#methodtest_to_then_from_JSON">Services_JSON_AssocArray_TestCase::test_to_then_from_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_to_then_from_JSON</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_EncDec_TestCase.html#methodtest_to_then_from_JSON">Services_JSON_EncDec_TestCase::test_to_then_from_JSON()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_type</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_AssocArray_TestCase.html#methodtest_type">Services_JSON_AssocArray_TestCase::test_type()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_type</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Empties_TestCase.html#methodtest_type">Services_JSON_Empties_TestCase::test_type()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_type</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_NestedArray_TestCase.html#methodtest_type">Services_JSON_NestedArray_TestCase::test_type()</a> in Test-JSON.php</div>

-					</dd>

-			<dt class="field">

-						<span class="method-title">test_type</span>

-					</dt>

-		<dd class="index-item-body">

-			<div class="index-item-details"><a href="Services_JSON/Services_JSON_Object_TestCase.html#methodtest_type">Services_JSON_Object_TestCase::test_type()</a> in Test-JSON.php</div>

-					</dd>

-		</dl>

-

-<div class="index-letter-menu">

-	<a class="index-letter" href="elementindex_Services_JSON.html#d">d</a>

-	<a class="index-letter" href="elementindex_Services_JSON.html#e">e</a>

-	<a class="index-letter" href="elementindex_Services_JSON.html#i">i</a>

-	<a class="index-letter" href="elementindex_Services_JSON.html#j">j</a>

-	<a class="index-letter" href="elementindex_Services_JSON.html#s">s</a>

-	<a class="index-letter" href="elementindex_Services_JSON.html#t">t</a>

-	<a class="index-letter" href="elementindex_Services_JSON.html#_">_</a>

-</div>	</body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/errors.html b/eclipse.org-common/json/doc/errors.html
deleted file mode 100644
index d4a1d0e..0000000
--- a/eclipse.org-common/json/doc/errors.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title>phpDocumentor Parser Errors and Warnings</title>

-			<link rel="stylesheet" href="media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-						<a href="#Post-parsing">Post-parsing</a><br>

-<a href="#Test-JSON.php">Test-JSON.php</a><br>

-<a name="Post-parsing"></a>

-<h1>Post-parsing</h1>

-<h2>Warnings:</h2><br>

-<b>Warning</b> - Class Services_JSON_ErrorSuppression_TestCase parent PHPUnit_TestCase not found<br>

-<b>Warning</b> - Class Services_JSON_Spaces_Comments_TestCase parent PHPUnit_TestCase not found<br>

-<b>Warning</b> - Class Services_JSON_Empties_TestCase parent PHPUnit_TestCase not found<br>

-<b>Warning</b> - Class Services_JSON_UnquotedKeys_TestCase parent PHPUnit_TestCase not found<br>

-<b>Warning</b> - Class Services_JSON_Error parent PEAR_Error not found<br>

-<b>Warning</b> - Class Services_JSON_AssocArray_TestCase parent PHPUnit_TestCase not found<br>

-<b>Warning</b> - Class Services_JSON_EncDec_TestCase parent PHPUnit_TestCase not found<br>

-<b>Warning</b> - Class Services_JSON_NestedArray_TestCase parent PHPUnit_TestCase not found<br>

-<b>Warning</b> - Class Services_JSON_Object_TestCase parent PHPUnit_TestCase not found<br>

-<a name="JSON.php"></a>

-<h1>JSON.php</h1>

-<h2>Warnings:</h2><br>

-<b>Warning on line 115</b> - no @package tag was used in a DocBlock for class Services_JSON<br>

-<b>Warning on line 781</b> - no @package tag was used in a DocBlock for class Services_JSON_Error<br>

-<b>Warning on line 795</b> - no @package tag was used in a DocBlock for class Services_JSON_Error<br>

-<b>Warning on line 795</b> - 
-duplicate class element "Services_JSON_Error" in file /Users/migurski/Sites/JSON-PHP/JSON.php will be ignored.
-Use an @ignore tag on the original if you want this case to be documented.<br>

-<a name="Test-JSON.php"></a>

-<h1>Test-JSON.php</h1>

-<h2>Warnings:</h2><br>

-<b>Warning on line 19</b> - package default is already in category , will now replace with category <br>

-<b>Warning on line 21</b> - Page-level DocBlock precedes "require_once Test-JSON.php", use another DocBlock to document the source element<br>

-<b>Warning on line 24</b> - no @package tag was used in a DocBlock for class Services_JSON_EncDec_TestCase<br>

-<b>Warning on line 156</b> - no @package tag was used in a DocBlock for class Services_JSON_AssocArray_TestCase<br>

-<b>Warning on line 211</b> - no @package tag was used in a DocBlock for class Services_JSON_NestedArray_TestCase<br>

-<b>Warning on line 288</b> - no @package tag was used in a DocBlock for class Services_JSON_Object_TestCase<br>

-<b>Warning on line 327</b> - no @package tag was used in a DocBlock for class Services_JSON_Spaces_Comments_TestCase<br>

-<b>Warning on line 363</b> - no @package tag was used in a DocBlock for class Services_JSON_Empties_TestCase<br>

-<b>Warning on line 405</b> - no @package tag was used in a DocBlock for class Services_JSON_UnquotedKeys_TestCase<br>

-<b>Warning on line 433</b> - no @package tag was used in a DocBlock for class Services_JSON_ErrorSuppression_TestCase<br>

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:27 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/index.html b/eclipse.org-common/json/doc/index.html
deleted file mode 100644
index 1a467ab..0000000
--- a/eclipse.org-common/json/doc/index.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html 

-     PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR"

-     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">

-   <html xmlns="http://www.w3.org/1999/xhtml">

-<head>

-	<!-- Generated by phpDocumentor on Tue, 27 Jun 2006 22:54:25 -0700  -->

-  <title>Generated Documentation</title>

-  <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-</head>

-

-<FRAMESET rows='100,*'>

-	<FRAME src='packages.html' name='left_top' frameborder="1" bordercolor="#999999">

-	<FRAMESET cols='25%,*'>

-		<FRAME src='li_Services_JSON.html' name='left_bottom' frameborder="1" bordercolor="#999999">

-		<FRAME src='blank.html' name='right' frameborder="1" bordercolor="#999999">

-	</FRAMESET>

-	<NOFRAMES>

-		<H2>Frame Alert</H2>

-		<P>This document is designed to be viewed using the frames feature.

-		If you see this message, you are using a non-frame-capable web client.</P>

-	</NOFRAMES>

-</FRAMESET>

-</HTML>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/li_Services_JSON.html b/eclipse.org-common/json/doc/li_Services_JSON.html
deleted file mode 100644
index a8d1fe7..0000000
--- a/eclipse.org-common/json/doc/li_Services_JSON.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title></title>

-			<link rel="stylesheet" href="media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-						<div class="package-title">Services_JSON</div>

-<div class="package-details">

-

-	<dl class="tree">

-		

-		<dt class="folder-title">Description</dt>

-		<dd>

-			<a href='classtrees_Services_JSON.html' target='right'>Class trees</a><br />

-			<a href='elementindex_Services_JSON.html' target='right'>Index of elements</a><br />

-							<a href="todolist.html" target="right">Todo List</a><br />

-					</dd>

-	

-							

-							

-													<dt class="folder-title">Classes</dt>

-											<dd><a href='Services_JSON/Services_JSON.html' target='right'>Services_JSON</a></dd>

-											<dd><a href='Services_JSON/Services_JSON_AssocArray_TestCase.html' target='right'>Services_JSON_AssocArray_TestCase</a></dd>

-											<dd><a href='Services_JSON/Services_JSON_Empties_TestCase.html' target='right'>Services_JSON_Empties_TestCase</a></dd>

-											<dd><a href='Services_JSON/Services_JSON_EncDec_TestCase.html' target='right'>Services_JSON_EncDec_TestCase</a></dd>

-											<dd><a href='Services_JSON/Services_JSON_Error.html' target='right'>Services_JSON_Error</a></dd>

-											<dd><a href='Services_JSON/Services_JSON_ErrorSuppression_TestCase.html' target='right'>Services_JSON_ErrorSuppression_TestCase</a></dd>

-											<dd><a href='Services_JSON/Services_JSON_NestedArray_TestCase.html' target='right'>Services_JSON_NestedArray_TestCase</a></dd>

-											<dd><a href='Services_JSON/Services_JSON_Object_TestCase.html' target='right'>Services_JSON_Object_TestCase</a></dd>

-											<dd><a href='Services_JSON/Services_JSON_Spaces_Comments_TestCase.html' target='right'>Services_JSON_Spaces_Comments_TestCase</a></dd>

-											<dd><a href='Services_JSON/Services_JSON_UnquotedKeys_TestCase.html' target='right'>Services_JSON_UnquotedKeys_TestCase</a></dd>

-																						<dt class="folder-title">Files</dt>

-											<dd><a href='Services_JSON/_JSON_php.html' target='right'>JSON.php</a></dd>

-											<dd><a href='Services_JSON/_Test-JSON_php.html' target='right'>Test-JSON.php</a></dd>

-																	

-						

-			</dl>

-</div>

-<p class="notes"><a href="http://www.phpdoc.org" target="_blank">phpDocumentor v <span class="field">1.2.3</span></a></p>

-</BODY>

-</HTML>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/media/banner.css b/eclipse.org-common/json/doc/media/banner.css
deleted file mode 100644
index e67227b..0000000
--- a/eclipse.org-common/json/doc/media/banner.css
+++ /dev/null
@@ -1,32 +0,0 @@
-body 

-{ 

-	background-color: #CCCCFF; 

-	margin: 0px; 

-	padding: 0px;

-}

-

-/* Banner (top bar) classes */

-

-.banner {  }

-

-.banner-menu 

-{ 

-	clear: both;

-	padding: .5em;

-	border-top: 2px solid #6666AA;	

-}

-

-.banner-title 

-{ 

-	text-align: right; 

-	font-size: 20pt; 

-	font-weight: bold; 

-	margin: .2em;

-}

-

-.package-selector 

-{ 

-	background-color: #AAAADD; 

-	border: 1px solid black; 

-	color: yellow;

-}

diff --git a/eclipse.org-common/json/doc/media/stylesheet.css b/eclipse.org-common/json/doc/media/stylesheet.css
deleted file mode 100644
index 4a097a2..0000000
--- a/eclipse.org-common/json/doc/media/stylesheet.css
+++ /dev/null
@@ -1,134 +0,0 @@
-a { color: #336699; text-decoration: none; }

-a:hover { color: #6699CC; text-decoration: underline; }

-a:active { color: #6699CC; text-decoration: underline; }

-

-body { background : #FFFFFF; }

-body, table { font-family: Georgia, Times New Roman, Times, serif; font-size: 10pt }

-p, li { line-height: 140% }

-a img { border: 0px; }

-dd { margin-left: 0px; padding-left: 1em; }

-

-/* Page layout/boxes */

-

-.info-box {}

-.info-box-title { margin: 1em 0em 0em 0em; padding: .25em; font-weight: normal; font-size: 14pt; border: 2px solid #999999; background-color: #CCCCFF }

-.info-box-body { border: 1px solid #999999; padding: .5em; }

-.nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; }

-

-.oddrow { background-color: #F8F8F8; border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em}

-.evenrow { border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em}

-

-.page-body { max-width: 800px; margin: auto; }

-.tree dl { margin: 0px }

-

-/* Index formatting classes */

-

-.index-item-body { margin-top: .5em; margin-bottom: .5em}

-.index-item-description { margin-top: .25em }

-.index-item-details { font-weight: normal; font-style: italic; font-size: 8pt }

-.index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em}

-.index-letter-title { font-size: 12pt; font-weight: bold }

-.index-letter-menu { text-align: center; margin: 1em }

-.index-letter { font-size: 12pt }

-

-/* Docbook classes */

-

-.description {}

-.short-description { font-weight: bold; color: #666666; }

-.tags {	padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; }

-.parameters {	padding-left: 0em; margin-left: 3em; font-style: italic; list-style-type: square; }

-.redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; }

-.package {  }

-.package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black }

-.package-details { font-size: 85%; }

-.sub-package { font-weight: bold; font-size: 120% }

-.tutorial { border-width: thin; border-color: #0066ff }

-.tutorial-nav-box { width: 100%; border: 1px solid #999999; background-color: #F8F8F8; }

-.nav-button-disabled { color: #999999; }

-.nav-button:active, 

-.nav-button:focus, 

-.nav-button:hover { background-color: #DDDDDD; outline: 1px solid #999999; text-decoration: none }

-.folder-title { font-style: italic }

-

-/* Generic formatting */

-

-.field { font-weight: bold; }

-.detail { font-size: 8pt; }

-.notes { font-style: italic; font-size: 8pt; }

-.separator { background-color: #999999; height: 2px; }

-.warning {  color: #FF6600; }

-.disabled { font-style: italic; color: #999999; }

-

-/* Code elements */

-

-.line-number {  }

-

-.class-table { width: 100%; }

-.class-table-header { border-bottom: 1px dotted #666666; text-align: left}

-.class-name { color: #000000; font-weight: bold; }

-

-.method-summary { padding-left: 1em; font-size: 8pt }

-.method-header { }

-.method-definition { margin-bottom: .3em }

-.method-title { font-weight: bold; }

-.method-name { font-weight: bold; }

-.method-signature { font-size: 85%; color: #666666; margin: .5em 0em }

-.method-result { font-style: italic; }

-

-.var-summary { padding-left: 1em; font-size: 8pt; }

-.var-header { }

-.var-title { margin-bottom: .3em }

-.var-type { font-style: italic; }

-.var-name { font-weight: bold; }

-.var-default {}

-.var-description { font-weight: normal; color: #000000; }

-

-.include-title {  }

-.include-type { font-style: italic; }

-.include-name { font-weight: bold; }

-

-.const-title {  }

-.const-name { font-weight: bold; }

-

-/* Syntax highlighting */

-

-.src-code {  border: 1px solid #336699; padding: 1em; background-color: #EEEEEE; }

-

-.src-comm { color: green; }

-.src-id {  }

-.src-inc { color: #0000FF; }

-.src-key { color: #0000FF; }

-.src-num { color: #CC0000; }

-.src-str { color: #66cccc; }

-.src-sym { font-weight: bold; }

-.src-var { }

-

-.src-php { font-weight: bold; }

-

-.src-doc { color: #009999 }

-.src-doc-close-template { color: #0000FF }

-.src-doc-coretag { color: #0099FF; font-weight: bold }

-.src-doc-inlinetag { color: #0099FF }

-.src-doc-internal { color: #6699cc }

-.src-doc-tag { color: #0080CC }

-.src-doc-template { color: #0000FF }

-.src-doc-type { font-style: italic }

-.src-doc-var { font-style: italic }

-

-/* tutorial */

-

-.authors {  }

-.author { font-style: italic; font-weight: bold }

-.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal }

-.example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em }

-.listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap }

-.release-info { font-size: 85%; font-style: italic; margin: 1em 0em }

-.ref-title-box {  }

-.ref-title {  }

-.ref-purpose { font-style: italic; color: #666666 }

-.ref-synopsis {  }

-.title { font-weight: bold; margin: 1em 0em 0em 0em; padding: .25em; border: 2px solid #999999; background-color: #CCCCFF  }

-.cmd-synopsis { margin: 1em 0em }

-.cmd-title { font-weight: bold }

-.toc { margin-left: 2em; padding-left: 0em }

-

diff --git a/eclipse.org-common/json/doc/packages.html b/eclipse.org-common/json/doc/packages.html
deleted file mode 100644
index 468beb0..0000000
--- a/eclipse.org-common/json/doc/packages.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title></title>

-			<link rel="stylesheet" href="media/stylesheet.css" />

-			<link rel="stylesheet" href="media/banner.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-			<div class="banner">

-				<div class="banner-title">Services_JSON</div>

-				<div class="banner-menu">

-	        <table cellpadding="0" cellspacing="0" style="width: 100%">

-	          <tr>

-              <td>

-								              </td>

-              <td style="width: 2em">&nbsp;</td>

-              <td style="text-align: right">

-								              </td>

-						</tr>

-          </table>

-				</div>

-			</div>

-		</body>

-	</html>
\ No newline at end of file
diff --git a/eclipse.org-common/json/doc/todolist.html b/eclipse.org-common/json/doc/todolist.html
deleted file mode 100644
index 46cb3cb..0000000
--- a/eclipse.org-common/json/doc/todolist.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>

-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-  <html xmlns="http://www.w3.org/1999/xhtml">

-		<head>

-			<!-- template designed by Marco Von Ballmoos -->

-			<title>Todo List</title>

-			<link rel="stylesheet" href="media/stylesheet.css" />

-			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>

-		</head>

-		<body>

-						<div align="center"><h1>Todo List</h1></div>

-<h2>Services_JSON</h2>

-<h3><a href="Services_JSON/Services_JSON.html#methodisError">Services_JSON::isError()</a></h3>

-<ul>

-    <li>Ultimately, this should just call PEAR::isError()</li>

-</ul>

-	<p class="notes" id="credit">

-		Documentation generated on Tue, 27 Jun 2006 22:54:27 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.3</a>

-	</p>

-	</body>

-</html>
\ No newline at end of file
diff --git a/eclipse.org-common/lib/jquery/jquery-1.4.4.min.js b/eclipse.org-common/lib/jquery/jquery-1.4.4.min.js
deleted file mode 100644
index 8f3ca2e..0000000
--- a/eclipse.org-common/lib/jquery/jquery-1.4.4.min.js
+++ /dev/null
@@ -1,167 +0,0 @@
-/*!
- * jQuery JavaScript Library v1.4.4
- * http://jquery.com/
- *
- * Copyright 2010, John Resig
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * Includes Sizzle.js
- * http://sizzlejs.com/
- * Copyright 2010, The Dojo Foundation
- * Released under the MIT, BSD, and GPL Licenses.
- *
- * Date: Thu Nov 11 19:04:53 2010 -0500
- */
-(function(E,B){function ka(a,b,d){if(d===B&&a.nodeType===1){d=a.getAttribute("data-"+b);if(typeof d==="string"){try{d=d==="true"?true:d==="false"?false:d==="null"?null:!c.isNaN(d)?parseFloat(d):Ja.test(d)?c.parseJSON(d):d}catch(e){}c.data(a,b,d)}else d=B}return d}function U(){return false}function ca(){return true}function la(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function Ka(a){var b,d,e,f,h,l,k,o,x,r,A,C=[];f=[];h=c.data(this,this.nodeType?"events":"__events__");if(typeof h==="function")h=
-h.events;if(!(a.liveFired===this||!h||!h.live||a.button&&a.type==="click")){if(a.namespace)A=RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)");a.liveFired=this;var J=h.live.slice(0);for(k=0;k<J.length;k++){h=J[k];h.origType.replace(X,"")===a.type?f.push(h.selector):J.splice(k--,1)}f=c(a.target).closest(f,a.currentTarget);o=0;for(x=f.length;o<x;o++){r=f[o];for(k=0;k<J.length;k++){h=J[k];if(r.selector===h.selector&&(!A||A.test(h.namespace))){l=r.elem;e=null;if(h.preType==="mouseenter"||
-h.preType==="mouseleave"){a.type=h.preType;e=c(a.relatedTarget).closest(h.selector)[0]}if(!e||e!==l)C.push({elem:l,handleObj:h,level:r.level})}}}o=0;for(x=C.length;o<x;o++){f=C[o];if(d&&f.level>d)break;a.currentTarget=f.elem;a.data=f.handleObj.data;a.handleObj=f.handleObj;A=f.handleObj.origHandler.apply(f.elem,arguments);if(A===false||a.isPropagationStopped()){d=f.level;if(A===false)b=false;if(a.isImmediatePropagationStopped())break}}return b}}function Y(a,b){return(a&&a!=="*"?a+".":"")+b.replace(La,
-"`").replace(Ma,"&")}function ma(a,b,d){if(c.isFunction(b))return c.grep(a,function(f,h){return!!b.call(f,h,f)===d});else if(b.nodeType)return c.grep(a,function(f){return f===b===d});else if(typeof b==="string"){var e=c.grep(a,function(f){return f.nodeType===1});if(Na.test(b))return c.filter(b,e,!d);else b=c.filter(b,e)}return c.grep(a,function(f){return c.inArray(f,b)>=0===d})}function na(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var e=c.data(a[d++]),f=c.data(this,
-e);if(e=e&&e.events){delete f.handle;f.events={};for(var h in e)for(var l in e[h])c.event.add(this,h,e[h][l],e[h][l].data)}}})}function Oa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function oa(a,b,d){var e=b==="width"?a.offsetWidth:a.offsetHeight;if(d==="border")return e;c.each(b==="width"?Pa:Qa,function(){d||(e-=parseFloat(c.css(a,"padding"+this))||0);if(d==="margin")e+=parseFloat(c.css(a,
-"margin"+this))||0;else e-=parseFloat(c.css(a,"border"+this+"Width"))||0});return e}function da(a,b,d,e){if(c.isArray(b)&&b.length)c.each(b,function(f,h){d||Ra.test(a)?e(a,h):da(a+"["+(typeof h==="object"||c.isArray(h)?f:"")+"]",h,d,e)});else if(!d&&b!=null&&typeof b==="object")c.isEmptyObject(b)?e(a,""):c.each(b,function(f,h){da(a+"["+f+"]",h,d,e)});else e(a,b)}function S(a,b){var d={};c.each(pa.concat.apply([],pa.slice(0,b)),function(){d[this]=a});return d}function qa(a){if(!ea[a]){var b=c("<"+
-a+">").appendTo("body"),d=b.css("display");b.remove();if(d==="none"||d==="")d="block";ea[a]=d}return ea[a]}function fa(a){return c.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var t=E.document,c=function(){function a(){if(!b.isReady){try{t.documentElement.doScroll("left")}catch(j){setTimeout(a,1);return}b.ready()}}var b=function(j,s){return new b.fn.init(j,s)},d=E.jQuery,e=E.$,f,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,l=/\S/,k=/^\s+/,o=/\s+$/,x=/\W/,r=/\d/,A=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,
-C=/^[\],:{}\s]*$/,J=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,w=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,I=/(?:^|:|,)(?:\s*\[)+/g,L=/(webkit)[ \/]([\w.]+)/,g=/(opera)(?:.*version)?[ \/]([\w.]+)/,i=/(msie) ([\w.]+)/,n=/(mozilla)(?:.*? rv:([\w.]+))?/,m=navigator.userAgent,p=false,q=[],u,y=Object.prototype.toString,F=Object.prototype.hasOwnProperty,M=Array.prototype.push,N=Array.prototype.slice,O=String.prototype.trim,D=Array.prototype.indexOf,R={};b.fn=b.prototype={init:function(j,
-s){var v,z,H;if(!j)return this;if(j.nodeType){this.context=this[0]=j;this.length=1;return this}if(j==="body"&&!s&&t.body){this.context=t;this[0]=t.body;this.selector="body";this.length=1;return this}if(typeof j==="string")if((v=h.exec(j))&&(v[1]||!s))if(v[1]){H=s?s.ownerDocument||s:t;if(z=A.exec(j))if(b.isPlainObject(s)){j=[t.createElement(z[1])];b.fn.attr.call(j,s,true)}else j=[H.createElement(z[1])];else{z=b.buildFragment([v[1]],[H]);j=(z.cacheable?z.fragment.cloneNode(true):z.fragment).childNodes}return b.merge(this,
-j)}else{if((z=t.getElementById(v[2]))&&z.parentNode){if(z.id!==v[2])return f.find(j);this.length=1;this[0]=z}this.context=t;this.selector=j;return this}else if(!s&&!x.test(j)){this.selector=j;this.context=t;j=t.getElementsByTagName(j);return b.merge(this,j)}else return!s||s.jquery?(s||f).find(j):b(s).find(j);else if(b.isFunction(j))return f.ready(j);if(j.selector!==B){this.selector=j.selector;this.context=j.context}return b.makeArray(j,this)},selector:"",jquery:"1.4.4",length:0,size:function(){return this.length},
-toArray:function(){return N.call(this,0)},get:function(j){return j==null?this.toArray():j<0?this.slice(j)[0]:this[j]},pushStack:function(j,s,v){var z=b();b.isArray(j)?M.apply(z,j):b.merge(z,j);z.prevObject=this;z.context=this.context;if(s==="find")z.selector=this.selector+(this.selector?" ":"")+v;else if(s)z.selector=this.selector+"."+s+"("+v+")";return z},each:function(j,s){return b.each(this,j,s)},ready:function(j){b.bindReady();if(b.isReady)j.call(t,b);else q&&q.push(j);return this},eq:function(j){return j===
--1?this.slice(j):this.slice(j,+j+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(N.apply(this,arguments),"slice",N.call(arguments).join(","))},map:function(j){return this.pushStack(b.map(this,function(s,v){return j.call(s,v,s)}))},end:function(){return this.prevObject||b(null)},push:M,sort:[].sort,splice:[].splice};b.fn.init.prototype=b.fn;b.extend=b.fn.extend=function(){var j,s,v,z,H,G=arguments[0]||{},K=1,Q=arguments.length,ga=false;
-if(typeof G==="boolean"){ga=G;G=arguments[1]||{};K=2}if(typeof G!=="object"&&!b.isFunction(G))G={};if(Q===K){G=this;--K}for(;K<Q;K++)if((j=arguments[K])!=null)for(s in j){v=G[s];z=j[s];if(G!==z)if(ga&&z&&(b.isPlainObject(z)||(H=b.isArray(z)))){if(H){H=false;v=v&&b.isArray(v)?v:[]}else v=v&&b.isPlainObject(v)?v:{};G[s]=b.extend(ga,v,z)}else if(z!==B)G[s]=z}return G};b.extend({noConflict:function(j){E.$=e;if(j)E.jQuery=d;return b},isReady:false,readyWait:1,ready:function(j){j===true&&b.readyWait--;
-if(!b.readyWait||j!==true&&!b.isReady){if(!t.body)return setTimeout(b.ready,1);b.isReady=true;if(!(j!==true&&--b.readyWait>0))if(q){var s=0,v=q;for(q=null;j=v[s++];)j.call(t,b);b.fn.trigger&&b(t).trigger("ready").unbind("ready")}}},bindReady:function(){if(!p){p=true;if(t.readyState==="complete")return setTimeout(b.ready,1);if(t.addEventListener){t.addEventListener("DOMContentLoaded",u,false);E.addEventListener("load",b.ready,false)}else if(t.attachEvent){t.attachEvent("onreadystatechange",u);E.attachEvent("onload",
-b.ready);var j=false;try{j=E.frameElement==null}catch(s){}t.documentElement.doScroll&&j&&a()}}},isFunction:function(j){return b.type(j)==="function"},isArray:Array.isArray||function(j){return b.type(j)==="array"},isWindow:function(j){return j&&typeof j==="object"&&"setInterval"in j},isNaN:function(j){return j==null||!r.test(j)||isNaN(j)},type:function(j){return j==null?String(j):R[y.call(j)]||"object"},isPlainObject:function(j){if(!j||b.type(j)!=="object"||j.nodeType||b.isWindow(j))return false;if(j.constructor&&
-!F.call(j,"constructor")&&!F.call(j.constructor.prototype,"isPrototypeOf"))return false;for(var s in j);return s===B||F.call(j,s)},isEmptyObject:function(j){for(var s in j)return false;return true},error:function(j){throw j;},parseJSON:function(j){if(typeof j!=="string"||!j)return null;j=b.trim(j);if(C.test(j.replace(J,"@").replace(w,"]").replace(I,"")))return E.JSON&&E.JSON.parse?E.JSON.parse(j):(new Function("return "+j))();else b.error("Invalid JSON: "+j)},noop:function(){},globalEval:function(j){if(j&&
-l.test(j)){var s=t.getElementsByTagName("head")[0]||t.documentElement,v=t.createElement("script");v.type="text/javascript";if(b.support.scriptEval)v.appendChild(t.createTextNode(j));else v.text=j;s.insertBefore(v,s.firstChild);s.removeChild(v)}},nodeName:function(j,s){return j.nodeName&&j.nodeName.toUpperCase()===s.toUpperCase()},each:function(j,s,v){var z,H=0,G=j.length,K=G===B||b.isFunction(j);if(v)if(K)for(z in j){if(s.apply(j[z],v)===false)break}else for(;H<G;){if(s.apply(j[H++],v)===false)break}else if(K)for(z in j){if(s.call(j[z],
-z,j[z])===false)break}else for(v=j[0];H<G&&s.call(v,H,v)!==false;v=j[++H]);return j},trim:O?function(j){return j==null?"":O.call(j)}:function(j){return j==null?"":j.toString().replace(k,"").replace(o,"")},makeArray:function(j,s){var v=s||[];if(j!=null){var z=b.type(j);j.length==null||z==="string"||z==="function"||z==="regexp"||b.isWindow(j)?M.call(v,j):b.merge(v,j)}return v},inArray:function(j,s){if(s.indexOf)return s.indexOf(j);for(var v=0,z=s.length;v<z;v++)if(s[v]===j)return v;return-1},merge:function(j,
-s){var v=j.length,z=0;if(typeof s.length==="number")for(var H=s.length;z<H;z++)j[v++]=s[z];else for(;s[z]!==B;)j[v++]=s[z++];j.length=v;return j},grep:function(j,s,v){var z=[],H;v=!!v;for(var G=0,K=j.length;G<K;G++){H=!!s(j[G],G);v!==H&&z.push(j[G])}return z},map:function(j,s,v){for(var z=[],H,G=0,K=j.length;G<K;G++){H=s(j[G],G,v);if(H!=null)z[z.length]=H}return z.concat.apply([],z)},guid:1,proxy:function(j,s,v){if(arguments.length===2)if(typeof s==="string"){v=j;j=v[s];s=B}else if(s&&!b.isFunction(s)){v=
-s;s=B}if(!s&&j)s=function(){return j.apply(v||this,arguments)};if(j)s.guid=j.guid=j.guid||s.guid||b.guid++;return s},access:function(j,s,v,z,H,G){var K=j.length;if(typeof s==="object"){for(var Q in s)b.access(j,Q,s[Q],z,H,v);return j}if(v!==B){z=!G&&z&&b.isFunction(v);for(Q=0;Q<K;Q++)H(j[Q],s,z?v.call(j[Q],Q,H(j[Q],s)):v,G);return j}return K?H(j[0],s):B},now:function(){return(new Date).getTime()},uaMatch:function(j){j=j.toLowerCase();j=L.exec(j)||g.exec(j)||i.exec(j)||j.indexOf("compatible")<0&&n.exec(j)||
-[];return{browser:j[1]||"",version:j[2]||"0"}},browser:{}});b.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(j,s){R["[object "+s+"]"]=s.toLowerCase()});m=b.uaMatch(m);if(m.browser){b.browser[m.browser]=true;b.browser.version=m.version}if(b.browser.webkit)b.browser.safari=true;if(D)b.inArray=function(j,s){return D.call(s,j)};if(!/\s/.test("\u00a0")){k=/^[\s\xA0]+/;o=/[\s\xA0]+$/}f=b(t);if(t.addEventListener)u=function(){t.removeEventListener("DOMContentLoaded",u,
-false);b.ready()};else if(t.attachEvent)u=function(){if(t.readyState==="complete"){t.detachEvent("onreadystatechange",u);b.ready()}};return E.jQuery=E.$=b}();(function(){c.support={};var a=t.documentElement,b=t.createElement("script"),d=t.createElement("div"),e="script"+c.now();d.style.display="none";d.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var f=d.getElementsByTagName("*"),h=d.getElementsByTagName("a")[0],l=t.createElement("select"),
-k=l.appendChild(t.createElement("option"));if(!(!f||!f.length||!h)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(h.getAttribute("style")),hrefNormalized:h.getAttribute("href")==="/a",opacity:/^0.55$/.test(h.style.opacity),cssFloat:!!h.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:k.selected,deleteExpando:true,optDisabled:false,checkClone:false,
-scriptEval:false,noCloneEvent:true,boxModel:null,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableHiddenOffsets:true};l.disabled=true;c.support.optDisabled=!k.disabled;b.type="text/javascript";try{b.appendChild(t.createTextNode("window."+e+"=1;"))}catch(o){}a.insertBefore(b,a.firstChild);if(E[e]){c.support.scriptEval=true;delete E[e]}try{delete b.test}catch(x){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function r(){c.support.noCloneEvent=
-false;d.detachEvent("onclick",r)});d.cloneNode(true).fireEvent("onclick")}d=t.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=t.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var r=t.createElement("div");r.style.width=r.style.paddingLeft="1px";t.body.appendChild(r);c.boxModel=c.support.boxModel=r.offsetWidth===2;if("zoom"in r.style){r.style.display="inline";r.style.zoom=
-1;c.support.inlineBlockNeedsLayout=r.offsetWidth===2;r.style.display="";r.innerHTML="<div style='width:4px;'></div>";c.support.shrinkWrapBlocks=r.offsetWidth!==2}r.innerHTML="<table><tr><td style='padding:0;display:none'></td><td>t</td></tr></table>";var A=r.getElementsByTagName("td");c.support.reliableHiddenOffsets=A[0].offsetHeight===0;A[0].style.display="";A[1].style.display="none";c.support.reliableHiddenOffsets=c.support.reliableHiddenOffsets&&A[0].offsetHeight===0;r.innerHTML="";t.body.removeChild(r).style.display=
-"none"});a=function(r){var A=t.createElement("div");r="on"+r;var C=r in A;if(!C){A.setAttribute(r,"return;");C=typeof A[r]==="function"}return C};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=f=h=null}})();var ra={},Ja=/^(?:\{.*\}|\[.*\])$/;c.extend({cache:{},uuid:0,expando:"jQuery"+c.now(),noData:{embed:true,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:true},data:function(a,b,d){if(c.acceptData(a)){a=a==E?ra:a;var e=a.nodeType,f=e?a[c.expando]:null,h=
-c.cache;if(!(e&&!f&&typeof b==="string"&&d===B)){if(e)f||(a[c.expando]=f=++c.uuid);else h=a;if(typeof b==="object")if(e)h[f]=c.extend(h[f],b);else c.extend(h,b);else if(e&&!h[f])h[f]={};a=e?h[f]:h;if(d!==B)a[b]=d;return typeof b==="string"?a[b]:a}}},removeData:function(a,b){if(c.acceptData(a)){a=a==E?ra:a;var d=a.nodeType,e=d?a[c.expando]:a,f=c.cache,h=d?f[e]:e;if(b){if(h){delete h[b];d&&c.isEmptyObject(h)&&c.removeData(a)}}else if(d&&c.support.deleteExpando)delete a[c.expando];else if(a.removeAttribute)a.removeAttribute(c.expando);
-else if(d)delete f[e];else for(var l in a)delete a[l]}},acceptData:function(a){if(a.nodeName){var b=c.noData[a.nodeName.toLowerCase()];if(b)return!(b===true||a.getAttribute("classid")!==b)}return true}});c.fn.extend({data:function(a,b){var d=null;if(typeof a==="undefined"){if(this.length){var e=this[0].attributes,f;d=c.data(this[0]);for(var h=0,l=e.length;h<l;h++){f=e[h].name;if(f.indexOf("data-")===0){f=f.substr(5);ka(this[0],f,d[f])}}}return d}else if(typeof a==="object")return this.each(function(){c.data(this,
-a)});var k=a.split(".");k[1]=k[1]?"."+k[1]:"";if(b===B){d=this.triggerHandler("getData"+k[1]+"!",[k[0]]);if(d===B&&this.length){d=c.data(this[0],a);d=ka(this[0],a,d)}return d===B&&k[1]?this.data(k[0]):d}else return this.each(function(){var o=c(this),x=[k[0],b];o.triggerHandler("setData"+k[1]+"!",x);c.data(this,a,b);o.triggerHandler("changeData"+k[1]+"!",x)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var e=
-c.data(a,b);if(!d)return e||[];if(!e||c.isArray(d))e=c.data(a,b,c.makeArray(d));else e.push(d);return e}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),e=d.shift();if(e==="inprogress")e=d.shift();if(e){b==="fx"&&d.unshift("inprogress");e.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b===B)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,
-a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var sa=/[\n\t]/g,ha=/\s+/,Sa=/\r/g,Ta=/^(?:href|src|style)$/,Ua=/^(?:button|input)$/i,Va=/^(?:button|input|object|select|textarea)$/i,Wa=/^a(?:rea)?$/i,ta=/^(?:radio|checkbox)$/i;c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",
-colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};c.fn.extend({attr:function(a,b){return c.access(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(x){var r=c(this);r.addClass(a.call(this,x,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ha),d=0,e=this.length;d<e;d++){var f=this[d];if(f.nodeType===
-1)if(f.className){for(var h=" "+f.className+" ",l=f.className,k=0,o=b.length;k<o;k++)if(h.indexOf(" "+b[k]+" ")<0)l+=" "+b[k];f.className=c.trim(l)}else f.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(o){var x=c(this);x.removeClass(a.call(this,o,x.attr("class")))});if(a&&typeof a==="string"||a===B)for(var b=(a||"").split(ha),d=0,e=this.length;d<e;d++){var f=this[d];if(f.nodeType===1&&f.className)if(a){for(var h=(" "+f.className+" ").replace(sa," "),
-l=0,k=b.length;l<k;l++)h=h.replace(" "+b[l]+" "," ");f.className=c.trim(h)}else f.className=""}return this},toggleClass:function(a,b){var d=typeof a,e=typeof b==="boolean";if(c.isFunction(a))return this.each(function(f){var h=c(this);h.toggleClass(a.call(this,f,h.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var f,h=0,l=c(this),k=b,o=a.split(ha);f=o[h++];){k=e?k:!l.hasClass(f);l[k?"addClass":"removeClass"](f)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this,
-"__className__",this.className);this.className=this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(sa," ").indexOf(a)>-1)return true;return false},val:function(a){if(!arguments.length){var b=this[0];if(b){if(c.nodeName(b,"option")){var d=b.attributes.value;return!d||d.specified?b.value:b.text}if(c.nodeName(b,"select")){var e=b.selectedIndex;d=[];var f=b.options;b=b.type==="select-one";
-if(e<0)return null;var h=b?e:0;for(e=b?e+1:f.length;h<e;h++){var l=f[h];if(l.selected&&(c.support.optDisabled?!l.disabled:l.getAttribute("disabled")===null)&&(!l.parentNode.disabled||!c.nodeName(l.parentNode,"optgroup"))){a=c(l).val();if(b)return a;d.push(a)}}return d}if(ta.test(b.type)&&!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Sa,"")}return B}var k=c.isFunction(a);return this.each(function(o){var x=c(this),r=a;if(this.nodeType===1){if(k)r=
-a.call(this,o,x.val());if(r==null)r="";else if(typeof r==="number")r+="";else if(c.isArray(r))r=c.map(r,function(C){return C==null?"":C+""});if(c.isArray(r)&&ta.test(this.type))this.checked=c.inArray(x.val(),r)>=0;else if(c.nodeName(this,"select")){var A=c.makeArray(r);c("option",this).each(function(){this.selected=c.inArray(c(this).val(),A)>=0});if(!A.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},
-attr:function(a,b,d,e){if(!a||a.nodeType===3||a.nodeType===8)return B;if(e&&b in c.attrFn)return c(a)[b](d);e=a.nodeType!==1||!c.isXMLDoc(a);var f=d!==B;b=e&&c.props[b]||b;var h=Ta.test(b);if((b in a||a[b]!==B)&&e&&!h){if(f){b==="type"&&Ua.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed");if(d===null)a.nodeType===1&&a.removeAttribute(b);else a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&
-b.specified?b.value:Va.test(a.nodeName)||Wa.test(a.nodeName)&&a.href?0:B;return a[b]}if(!c.support.style&&e&&b==="style"){if(f)a.style.cssText=""+d;return a.style.cssText}f&&a.setAttribute(b,""+d);if(!a.attributes[b]&&a.hasAttribute&&!a.hasAttribute(b))return B;a=!c.support.hrefNormalized&&e&&h?a.getAttribute(b,2):a.getAttribute(b);return a===null?B:a}});var X=/\.(.*)$/,ia=/^(?:textarea|input|select)$/i,La=/\./g,Ma=/ /g,Xa=/[^\w\s.|`]/g,Ya=function(a){return a.replace(Xa,"\\$&")},ua={focusin:0,focusout:0};
-c.event={add:function(a,b,d,e){if(!(a.nodeType===3||a.nodeType===8)){if(c.isWindow(a)&&a!==E&&!a.frameElement)a=E;if(d===false)d=U;else if(!d)return;var f,h;if(d.handler){f=d;d=f.handler}if(!d.guid)d.guid=c.guid++;if(h=c.data(a)){var l=a.nodeType?"events":"__events__",k=h[l],o=h.handle;if(typeof k==="function"){o=k.handle;k=k.events}else if(!k){a.nodeType||(h[l]=h=function(){});h.events=k={}}if(!o)h.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,
-arguments):B};o.elem=a;b=b.split(" ");for(var x=0,r;l=b[x++];){h=f?c.extend({},f):{handler:d,data:e};if(l.indexOf(".")>-1){r=l.split(".");l=r.shift();h.namespace=r.slice(0).sort().join(".")}else{r=[];h.namespace=""}h.type=l;if(!h.guid)h.guid=d.guid;var A=k[l],C=c.event.special[l]||{};if(!A){A=k[l]=[];if(!C.setup||C.setup.call(a,e,r,o)===false)if(a.addEventListener)a.addEventListener(l,o,false);else a.attachEvent&&a.attachEvent("on"+l,o)}if(C.add){C.add.call(a,h);if(!h.handler.guid)h.handler.guid=
-d.guid}A.push(h);c.event.global[l]=true}a=null}}},global:{},remove:function(a,b,d,e){if(!(a.nodeType===3||a.nodeType===8)){if(d===false)d=U;var f,h,l=0,k,o,x,r,A,C,J=a.nodeType?"events":"__events__",w=c.data(a),I=w&&w[J];if(w&&I){if(typeof I==="function"){w=I;I=I.events}if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(f in I)c.event.remove(a,f+b)}else{for(b=b.split(" ");f=b[l++];){r=f;k=f.indexOf(".")<0;o=[];if(!k){o=f.split(".");f=o.shift();x=RegExp("(^|\\.)"+
-c.map(o.slice(0).sort(),Ya).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(A=I[f])if(d){r=c.event.special[f]||{};for(h=e||0;h<A.length;h++){C=A[h];if(d.guid===C.guid){if(k||x.test(C.namespace)){e==null&&A.splice(h--,1);r.remove&&r.remove.call(a,C)}if(e!=null)break}}if(A.length===0||e!=null&&A.length===1){if(!r.teardown||r.teardown.call(a,o)===false)c.removeEvent(a,f,w.handle);delete I[f]}}else for(h=0;h<A.length;h++){C=A[h];if(k||x.test(C.namespace)){c.event.remove(a,r,C.handler,h);A.splice(h--,1)}}}if(c.isEmptyObject(I)){if(b=
-w.handle)b.elem=null;delete w.events;delete w.handle;if(typeof w==="function")c.removeData(a,J);else c.isEmptyObject(w)&&c.removeData(a)}}}}},trigger:function(a,b,d,e){var f=a.type||a;if(!e){a=typeof a==="object"?a[c.expando]?a:c.extend(c.Event(f),a):c.Event(f);if(f.indexOf("!")>=0){a.type=f=f.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[f]&&c.each(c.cache,function(){this.events&&this.events[f]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===
-8)return B;a.result=B;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(e=d.nodeType?c.data(d,"handle"):(c.data(d,"__events__")||{}).handle)&&e.apply(d,b);e=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+f]&&d["on"+f].apply(d,b)===false){a.result=false;a.preventDefault()}}catch(h){}if(!a.isPropagationStopped()&&e)c.event.trigger(a,b,e,true);else if(!a.isDefaultPrevented()){var l;e=a.target;var k=f.replace(X,""),o=c.nodeName(e,"a")&&k===
-"click",x=c.event.special[k]||{};if((!x._default||x._default.call(d,a)===false)&&!o&&!(e&&e.nodeName&&c.noData[e.nodeName.toLowerCase()])){try{if(e[k]){if(l=e["on"+k])e["on"+k]=null;c.event.triggered=true;e[k]()}}catch(r){}if(l)e["on"+k]=l;c.event.triggered=false}}},handle:function(a){var b,d,e,f;d=[];var h=c.makeArray(arguments);a=h[0]=c.event.fix(a||E.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive;if(!b){e=a.type.split(".");a.type=e.shift();d=e.slice(0).sort();e=RegExp("(^|\\.)"+
-d.join("\\.(?:.*\\.)?")+"(\\.|$)")}a.namespace=a.namespace||d.join(".");f=c.data(this,this.nodeType?"events":"__events__");if(typeof f==="function")f=f.events;d=(f||{})[a.type];if(f&&d){d=d.slice(0);f=0;for(var l=d.length;f<l;f++){var k=d[f];if(b||e.test(k.namespace)){a.handler=k.handler;a.data=k.data;a.handleObj=k;k=k.handler.apply(this,h);if(k!==B){a.result=k;if(k===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),
-fix:function(a){if(a[c.expando])return a;var b=a;a=c.Event(b);for(var d=this.props.length,e;d;){e=this.props[--d];a[e]=b[e]}if(!a.target)a.target=a.srcElement||t;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=t.documentElement;d=t.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop||
-d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(a.which==null&&(a.charCode!=null||a.keyCode!=null))a.which=a.charCode!=null?a.charCode:a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==B)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,Y(a.origType,a.selector),c.extend({},a,{handler:Ka,guid:a.handler.guid}))},remove:function(a){c.event.remove(this,
-Y(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,d){if(c.isWindow(this))this.onbeforeunload=d},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};c.removeEvent=t.removeEventListener?function(a,b,d){a.removeEventListener&&a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent&&a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent=a;this.type=a.type}else this.type=a;this.timeStamp=
-c.now();this[c.expando]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=ca;var a=this.originalEvent;if(a)if(a.preventDefault)a.preventDefault();else a.returnValue=false},stopPropagation:function(){this.isPropagationStopped=ca;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=ca;this.stopPropagation()},isDefaultPrevented:U,isPropagationStopped:U,isImmediatePropagationStopped:U};
-var va=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},wa=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?wa:va,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?wa:va)}}});if(!c.support.submitBubbles)c.event.special.submit={setup:function(){if(this.nodeName.toLowerCase()!==
-"form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length){a.liveFired=B;return la("submit",this,arguments)}});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13){a.liveFired=B;return la("submit",this,arguments)}})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}};if(!c.support.changeBubbles){var V,
-xa=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(e){return e.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},Z=function(a,b){var d=a.target,e,f;if(!(!ia.test(d.nodeName)||d.readOnly)){e=c.data(d,"_change_data");f=xa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data",f);if(!(e===B||f===e))if(e!=null||f){a.type="change";a.liveFired=
-B;return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:Z,beforedeactivate:Z,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return Z.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return Z.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a,"_change_data",xa(a))}},setup:function(){if(this.type===
-"file")return false;for(var a in V)c.event.add(this,a+".specialChange",V[a]);return ia.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return ia.test(this.nodeName)}};V=c.event.special.change.filters;V.focus=V.beforeactivate}t.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(e){e=c.event.fix(e);e.type=b;return c.event.trigger(e,null,e.target)}c.event.special[b]={setup:function(){ua[b]++===0&&t.addEventListener(a,d,true)},teardown:function(){--ua[b]===
-0&&t.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,e,f){if(typeof d==="object"){for(var h in d)this[b](h,e,d[h],f);return this}if(c.isFunction(e)||e===false){f=e;e=B}var l=b==="one"?c.proxy(f,function(o){c(this).unbind(o,l);return f.apply(this,arguments)}):f;if(d==="unload"&&b!=="one")this.one(d,e,f);else{h=0;for(var k=this.length;h<k;h++)c.event.add(this[h],d,l,e)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&&!a.preventDefault)for(var d in a)this.unbind(d,
-a[d]);else{d=0;for(var e=this.length;d<e;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,e){return this.live(b,d,e,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){var d=c.Event(a);d.preventDefault();d.stopPropagation();c.event.trigger(d,b,this[0]);return d.result}},toggle:function(a){for(var b=arguments,d=
-1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(e){var f=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,f+1);e.preventDefault();return b[f].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var ya={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,e,f,h){var l,k=0,o,x,r=h||this.selector;h=h?this:c(this.context);if(typeof d===
-"object"&&!d.preventDefault){for(l in d)h[b](l,e,d[l],r);return this}if(c.isFunction(e)){f=e;e=B}for(d=(d||"").split(" ");(l=d[k++])!=null;){o=X.exec(l);x="";if(o){x=o[0];l=l.replace(X,"")}if(l==="hover")d.push("mouseenter"+x,"mouseleave"+x);else{o=l;if(l==="focus"||l==="blur"){d.push(ya[l]+x);l+=x}else l=(ya[l]||l)+x;if(b==="live"){x=0;for(var A=h.length;x<A;x++)c.event.add(h[x],"live."+Y(l,r),{data:e,selector:r,handler:f,origType:l,origHandler:f,preType:o})}else h.unbind("live."+Y(l,r),f)}}return this}});
-c.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){c.fn[b]=function(d,e){if(e==null){e=d;d=null}return arguments.length>0?this.bind(b,d,e):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});E.attachEvent&&!E.addEventListener&&c(E).bind("unload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}});
-(function(){function a(g,i,n,m,p,q){p=0;for(var u=m.length;p<u;p++){var y=m[p];if(y){var F=false;for(y=y[g];y;){if(y.sizcache===n){F=m[y.sizset];break}if(y.nodeType===1&&!q){y.sizcache=n;y.sizset=p}if(y.nodeName.toLowerCase()===i){F=y;break}y=y[g]}m[p]=F}}}function b(g,i,n,m,p,q){p=0;for(var u=m.length;p<u;p++){var y=m[p];if(y){var F=false;for(y=y[g];y;){if(y.sizcache===n){F=m[y.sizset];break}if(y.nodeType===1){if(!q){y.sizcache=n;y.sizset=p}if(typeof i!=="string"){if(y===i){F=true;break}}else if(k.filter(i,
-[y]).length>0){F=y;break}}y=y[g]}m[p]=F}}}var d=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,h=false,l=true;[0,0].sort(function(){l=false;return 0});var k=function(g,i,n,m){n=n||[];var p=i=i||t;if(i.nodeType!==1&&i.nodeType!==9)return[];if(!g||typeof g!=="string")return n;var q,u,y,F,M,N=true,O=k.isXML(i),D=[],R=g;do{d.exec("");if(q=d.exec(R)){R=q[3];D.push(q[1]);if(q[2]){F=q[3];
-break}}}while(q);if(D.length>1&&x.exec(g))if(D.length===2&&o.relative[D[0]])u=L(D[0]+D[1],i);else for(u=o.relative[D[0]]?[i]:k(D.shift(),i);D.length;){g=D.shift();if(o.relative[g])g+=D.shift();u=L(g,u)}else{if(!m&&D.length>1&&i.nodeType===9&&!O&&o.match.ID.test(D[0])&&!o.match.ID.test(D[D.length-1])){q=k.find(D.shift(),i,O);i=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]}if(i){q=m?{expr:D.pop(),set:C(m)}:k.find(D.pop(),D.length===1&&(D[0]==="~"||D[0]==="+")&&i.parentNode?i.parentNode:i,O);u=q.expr?k.filter(q.expr,
-q.set):q.set;if(D.length>0)y=C(u);else N=false;for(;D.length;){q=M=D.pop();if(o.relative[M])q=D.pop();else M="";if(q==null)q=i;o.relative[M](y,q,O)}}else y=[]}y||(y=u);y||k.error(M||g);if(f.call(y)==="[object Array]")if(N)if(i&&i.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&k.contains(i,y[g])))n.push(u[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&n.push(u[g]);else n.push.apply(n,y);else C(y,n);if(F){k(F,p,n,m);k.uniqueSort(n)}return n};k.uniqueSort=function(g){if(w){h=
-l;g.sort(w);if(h)for(var i=1;i<g.length;i++)g[i]===g[i-1]&&g.splice(i--,1)}return g};k.matches=function(g,i){return k(g,null,null,i)};k.matchesSelector=function(g,i){return k(i,null,null,[g]).length>0};k.find=function(g,i,n){var m;if(!g)return[];for(var p=0,q=o.order.length;p<q;p++){var u,y=o.order[p];if(u=o.leftMatch[y].exec(g)){var F=u[1];u.splice(1,1);if(F.substr(F.length-1)!=="\\"){u[1]=(u[1]||"").replace(/\\/g,"");m=o.find[y](u,i,n);if(m!=null){g=g.replace(o.match[y],"");break}}}}m||(m=i.getElementsByTagName("*"));
-return{set:m,expr:g}};k.filter=function(g,i,n,m){for(var p,q,u=g,y=[],F=i,M=i&&i[0]&&k.isXML(i[0]);g&&i.length;){for(var N in o.filter)if((p=o.leftMatch[N].exec(g))!=null&&p[2]){var O,D,R=o.filter[N];D=p[1];q=false;p.splice(1,1);if(D.substr(D.length-1)!=="\\"){if(F===y)y=[];if(o.preFilter[N])if(p=o.preFilter[N](p,F,n,y,m,M)){if(p===true)continue}else q=O=true;if(p)for(var j=0;(D=F[j])!=null;j++)if(D){O=R(D,p,j,F);var s=m^!!O;if(n&&O!=null)if(s)q=true;else F[j]=false;else if(s){y.push(D);q=true}}if(O!==
-B){n||(F=y);g=g.replace(o.match[N],"");if(!q)return[];break}}}if(g===u)if(q==null)k.error(g);else break;u=g}return F};k.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var o=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+\-]*)\))?/,
-POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}},relative:{"+":function(g,i){var n=typeof i==="string",m=n&&!/\W/.test(i);n=n&&!m;if(m)i=i.toLowerCase();m=0;for(var p=g.length,q;m<p;m++)if(q=g[m]){for(;(q=q.previousSibling)&&q.nodeType!==1;);g[m]=n||q&&q.nodeName.toLowerCase()===
-i?q||false:q===i}n&&k.filter(i,g,true)},">":function(g,i){var n,m=typeof i==="string",p=0,q=g.length;if(m&&!/\W/.test(i))for(i=i.toLowerCase();p<q;p++){if(n=g[p]){n=n.parentNode;g[p]=n.nodeName.toLowerCase()===i?n:false}}else{for(;p<q;p++)if(n=g[p])g[p]=m?n.parentNode:n.parentNode===i;m&&k.filter(i,g,true)}},"":function(g,i,n){var m,p=e++,q=b;if(typeof i==="string"&&!/\W/.test(i)){m=i=i.toLowerCase();q=a}q("parentNode",i,p,g,m,n)},"~":function(g,i,n){var m,p=e++,q=b;if(typeof i==="string"&&!/\W/.test(i)){m=
-i=i.toLowerCase();q=a}q("previousSibling",i,p,g,m,n)}},find:{ID:function(g,i,n){if(typeof i.getElementById!=="undefined"&&!n)return(g=i.getElementById(g[1]))&&g.parentNode?[g]:[]},NAME:function(g,i){if(typeof i.getElementsByName!=="undefined"){for(var n=[],m=i.getElementsByName(g[1]),p=0,q=m.length;p<q;p++)m[p].getAttribute("name")===g[1]&&n.push(m[p]);return n.length===0?null:n}},TAG:function(g,i){return i.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,i,n,m,p,q){g=" "+g[1].replace(/\\/g,
-"")+" ";if(q)return g;q=0;for(var u;(u=i[q])!=null;q++)if(u)if(p^(u.className&&(" "+u.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))n||m.push(u);else if(n)i[q]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()},CHILD:function(g){if(g[1]==="nth"){var i=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=i[1]+(i[2]||1)-0;g[3]=i[3]-0}g[0]=e++;return g},ATTR:function(g,i,n,
-m,p,q){i=g[1].replace(/\\/g,"");if(!q&&o.attrMap[i])g[1]=o.attrMap[i];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,i,n,m,p){if(g[1]==="not")if((d.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,i);else{g=k.filter(g[3],i,n,true^p);n||m.push.apply(m,g);return false}else if(o.match.POS.test(g[0])||o.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===
-true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,i,n){return!!k(n[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)},text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===
-g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}},setFilters:{first:function(g,i){return i===0},last:function(g,i,n,m){return i===m.length-1},even:function(g,i){return i%2===0},odd:function(g,i){return i%2===1},lt:function(g,i,n){return i<n[3]-0},gt:function(g,i,n){return i>n[3]-0},nth:function(g,i,n){return n[3]-
-0===i},eq:function(g,i,n){return n[3]-0===i}},filter:{PSEUDO:function(g,i,n,m){var p=i[1],q=o.filters[p];if(q)return q(g,n,i,m);else if(p==="contains")return(g.textContent||g.innerText||k.getText([g])||"").indexOf(i[3])>=0;else if(p==="not"){i=i[3];n=0;for(m=i.length;n<m;n++)if(i[n]===g)return false;return true}else k.error("Syntax error, unrecognized expression: "+p)},CHILD:function(g,i){var n=i[1],m=g;switch(n){case "only":case "first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(n===
-"first")return true;m=g;case "last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case "nth":n=i[2];var p=i[3];if(n===1&&p===0)return true;var q=i[0],u=g.parentNode;if(u&&(u.sizcache!==q||!g.nodeIndex)){var y=0;for(m=u.firstChild;m;m=m.nextSibling)if(m.nodeType===1)m.nodeIndex=++y;u.sizcache=q}m=g.nodeIndex-p;return n===0?m===0:m%n===0&&m/n>=0}},ID:function(g,i){return g.nodeType===1&&g.getAttribute("id")===i},TAG:function(g,i){return i==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===
-i},CLASS:function(g,i){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(i)>-1},ATTR:function(g,i){var n=i[1];n=o.attrHandle[n]?o.attrHandle[n](g):g[n]!=null?g[n]:g.getAttribute(n);var m=n+"",p=i[2],q=i[4];return n==null?p==="!=":p==="="?m===q:p==="*="?m.indexOf(q)>=0:p==="~="?(" "+m+" ").indexOf(q)>=0:!q?m&&n!==false:p==="!="?m!==q:p==="^="?m.indexOf(q)===0:p==="$="?m.substr(m.length-q.length)===q:p==="|="?m===q||m.substr(0,q.length+1)===q+"-":false},POS:function(g,i,n,m){var p=o.setFilters[i[2]];
-if(p)return p(g,n,i,m)}}},x=o.match.POS,r=function(g,i){return"\\"+(i-0+1)},A;for(A in o.match){o.match[A]=RegExp(o.match[A].source+/(?![^\[]*\])(?![^\(]*\))/.source);o.leftMatch[A]=RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[A].source.replace(/\\(\d+)/g,r))}var C=function(g,i){g=Array.prototype.slice.call(g,0);if(i){i.push.apply(i,g);return i}return g};try{Array.prototype.slice.call(t.documentElement.childNodes,0)}catch(J){C=function(g,i){var n=0,m=i||[];if(f.call(g)==="[object Array]")Array.prototype.push.apply(m,
-g);else if(typeof g.length==="number")for(var p=g.length;n<p;n++)m.push(g[n]);else for(;g[n];n++)m.push(g[n]);return m}}var w,I;if(t.documentElement.compareDocumentPosition)w=function(g,i){if(g===i){h=true;return 0}if(!g.compareDocumentPosition||!i.compareDocumentPosition)return g.compareDocumentPosition?-1:1;return g.compareDocumentPosition(i)&4?-1:1};else{w=function(g,i){var n,m,p=[],q=[];n=g.parentNode;m=i.parentNode;var u=n;if(g===i){h=true;return 0}else if(n===m)return I(g,i);else if(n){if(!m)return 1}else return-1;
-for(;u;){p.unshift(u);u=u.parentNode}for(u=m;u;){q.unshift(u);u=u.parentNode}n=p.length;m=q.length;for(u=0;u<n&&u<m;u++)if(p[u]!==q[u])return I(p[u],q[u]);return u===n?I(g,q[u],-1):I(p[u],i,1)};I=function(g,i,n){if(g===i)return n;for(g=g.nextSibling;g;){if(g===i)return-1;g=g.nextSibling}return 1}}k.getText=function(g){for(var i="",n,m=0;g[m];m++){n=g[m];if(n.nodeType===3||n.nodeType===4)i+=n.nodeValue;else if(n.nodeType!==8)i+=k.getText(n.childNodes)}return i};(function(){var g=t.createElement("div"),
-i="script"+(new Date).getTime(),n=t.documentElement;g.innerHTML="<a name='"+i+"'/>";n.insertBefore(g,n.firstChild);if(t.getElementById(i)){o.find.ID=function(m,p,q){if(typeof p.getElementById!=="undefined"&&!q)return(p=p.getElementById(m[1]))?p.id===m[1]||typeof p.getAttributeNode!=="undefined"&&p.getAttributeNode("id").nodeValue===m[1]?[p]:B:[]};o.filter.ID=function(m,p){var q=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&q&&q.nodeValue===p}}n.removeChild(g);
-n=g=null})();(function(){var g=t.createElement("div");g.appendChild(t.createComment(""));if(g.getElementsByTagName("*").length>0)o.find.TAG=function(i,n){var m=n.getElementsByTagName(i[1]);if(i[1]==="*"){for(var p=[],q=0;m[q];q++)m[q].nodeType===1&&p.push(m[q]);m=p}return m};g.innerHTML="<a href='#'></a>";if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")o.attrHandle.href=function(i){return i.getAttribute("href",2)};g=null})();t.querySelectorAll&&
-function(){var g=k,i=t.createElement("div");i.innerHTML="<p class='TEST'></p>";if(!(i.querySelectorAll&&i.querySelectorAll(".TEST").length===0)){k=function(m,p,q,u){p=p||t;m=m.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!u&&!k.isXML(p))if(p.nodeType===9)try{return C(p.querySelectorAll(m),q)}catch(y){}else if(p.nodeType===1&&p.nodeName.toLowerCase()!=="object"){var F=p.getAttribute("id"),M=F||"__sizzle__";F||p.setAttribute("id",M);try{return C(p.querySelectorAll("#"+M+" "+m),q)}catch(N){}finally{F||
-p.removeAttribute("id")}}return g(m,p,q,u)};for(var n in g)k[n]=g[n];i=null}}();(function(){var g=t.documentElement,i=g.matchesSelector||g.mozMatchesSelector||g.webkitMatchesSelector||g.msMatchesSelector,n=false;try{i.call(t.documentElement,"[test!='']:sizzle")}catch(m){n=true}if(i)k.matchesSelector=function(p,q){q=q.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(p))try{if(n||!o.match.PSEUDO.test(q)&&!/!=/.test(q))return i.call(p,q)}catch(u){}return k(q,null,null,[p]).length>0}})();(function(){var g=
-t.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){o.order.splice(1,0,"CLASS");o.find.CLASS=function(i,n,m){if(typeof n.getElementsByClassName!=="undefined"&&!m)return n.getElementsByClassName(i[1])};g=null}}})();k.contains=t.documentElement.contains?function(g,i){return g!==i&&(g.contains?g.contains(i):true)}:t.documentElement.compareDocumentPosition?
-function(g,i){return!!(g.compareDocumentPosition(i)&16)}:function(){return false};k.isXML=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false};var L=function(g,i){for(var n,m=[],p="",q=i.nodeType?[i]:i;n=o.match.PSEUDO.exec(g);){p+=n[0];g=g.replace(o.match.PSEUDO,"")}g=o.relative[g]?g+"*":g;n=0;for(var u=q.length;n<u;n++)k(g,q[n],m);return k.filter(p,m)};c.find=k;c.expr=k.selectors;c.expr[":"]=c.expr.filters;c.unique=k.uniqueSort;c.text=k.getText;c.isXMLDoc=k.isXML;
-c.contains=k.contains})();var Za=/Until$/,$a=/^(?:parents|prevUntil|prevAll)/,ab=/,/,Na=/^.[^:#\[\.,]*$/,bb=Array.prototype.slice,cb=c.expr.match.POS;c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,e=0,f=this.length;e<f;e++){d=b.length;c.find(a,this[e],b);if(e>0)for(var h=d;h<b.length;h++)for(var l=0;l<d;l++)if(b[l]===b[h]){b.splice(h--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,e=b.length;d<e;d++)if(c.contains(this,b[d]))return true})},
-not:function(a){return this.pushStack(ma(this,a,false),"not",a)},filter:function(a){return this.pushStack(ma(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,b){var d=[],e,f,h=this[0];if(c.isArray(a)){var l,k={},o=1;if(h&&a.length){e=0;for(f=a.length;e<f;e++){l=a[e];k[l]||(k[l]=c.expr.match.POS.test(l)?c(l,b||this.context):l)}for(;h&&h.ownerDocument&&h!==b;){for(l in k){e=k[l];if(e.jquery?e.index(h)>-1:c(h).is(e))d.push({selector:l,elem:h,level:o})}h=
-h.parentNode;o++}}return d}l=cb.test(a)?c(a,b||this.context):null;e=0;for(f=this.length;e<f;e++)for(h=this[e];h;)if(l?l.index(h)>-1:c.find.matchesSelector(h,a)){d.push(h);break}else{h=h.parentNode;if(!h||!h.ownerDocument||h===b)break}d=d.length>1?c.unique(d):d;return this.pushStack(d,"closest",a)},index:function(a){if(!a||typeof a==="string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var d=typeof a==="string"?c(a,b||this.context):
-c.makeArray(a),e=c.merge(this.get(),d);return this.pushStack(!d[0]||!d[0].parentNode||d[0].parentNode.nodeType===11||!e[0]||!e[0].parentNode||e[0].parentNode.nodeType===11?e:c.unique(e))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode",d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,
-2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,
-b){c.fn[a]=function(d,e){var f=c.map(this,b,d);Za.test(a)||(e=d);if(e&&typeof e==="string")f=c.filter(e,f);f=this.length>1?c.unique(f):f;if((this.length>1||ab.test(e))&&$a.test(a))f=f.reverse();return this.pushStack(f,a,bb.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return b.length===1?c.find.matchesSelector(b[0],a)?[b[0]]:[]:c.find.matches(a,b)},dir:function(a,b,d){var e=[];for(a=a[b];a&&a.nodeType!==9&&(d===B||a.nodeType!==1||!c(a).is(d));){a.nodeType===1&&
-e.push(a);a=a[b]}return e},nth:function(a,b,d){b=b||1;for(var e=0;a;a=a[d])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var za=/ jQuery\d+="(?:\d+|null)"/g,$=/^\s+/,Aa=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Ba=/<([\w:]+)/,db=/<tbody/i,eb=/<|&#?\w+;/,Ca=/<(?:script|object|embed|option|style)/i,Da=/checked\s*(?:[^=]|=\s*.checked.)/i,fb=/\=([^="'>\s]+\/)>/g,P={option:[1,
-"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};P.optgroup=P.option;P.tbody=P.tfoot=P.colgroup=P.caption=P.thead;P.th=P.td;if(!c.support.htmlSerialize)P._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d=
-c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==B)return this.empty().append((this[0]&&this[0].ownerDocument||t).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this},
-wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})},
-prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,
-this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,e;(e=this[d])!=null;d++)if(!a||c.filter(a,[e]).length){if(!b&&e.nodeType===1){c.cleanData(e.getElementsByTagName("*"));c.cleanData([e])}e.parentNode&&e.parentNode.removeChild(e)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild);
-return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,e=this.ownerDocument;if(!d){d=e.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(za,"").replace(fb,'="$1">').replace($,"")],e)[0]}else return this.cloneNode(true)});if(a===true){na(this,b);na(this.find("*"),b.find("*"))}return b},html:function(a){if(a===B)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(za,""):null;
-else if(typeof a==="string"&&!Ca.test(a)&&(c.support.leadingWhitespace||!$.test(a))&&!P[(Ba.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Aa,"<$1></$2>");try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(e){this.empty().append(a)}}else c.isFunction(a)?this.each(function(f){var h=c(this);h.html(a.call(this,f,h.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d=
-c(this),e=d.html();d.replaceWith(a.call(this,b,e))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,true)},domManip:function(a,b,d){var e,f,h,l=a[0],k=[];if(!c.support.checkClone&&arguments.length===3&&typeof l==="string"&&Da.test(l))return this.each(function(){c(this).domManip(a,
-b,d,true)});if(c.isFunction(l))return this.each(function(x){var r=c(this);a[0]=l.call(this,x,b?r.html():B);r.domManip(a,b,d)});if(this[0]){e=l&&l.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:c.buildFragment(a,this,k);h=e.fragment;if(f=h.childNodes.length===1?h=h.firstChild:h.firstChild){b=b&&c.nodeName(f,"tr");f=0;for(var o=this.length;f<o;f++)d.call(b?c.nodeName(this[f],"table")?this[f].getElementsByTagName("tbody")[0]||this[f].appendChild(this[f].ownerDocument.createElement("tbody")):
-this[f]:this[f],f>0||e.cacheable||this.length>1?h.cloneNode(true):h)}k.length&&c.each(k,Oa)}return this}});c.buildFragment=function(a,b,d){var e,f,h;b=b&&b[0]?b[0].ownerDocument||b[0]:t;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===t&&!Ca.test(a[0])&&(c.support.checkClone||!Da.test(a[0]))){f=true;if(h=c.fragments[a[0]])if(h!==1)e=h}if(!e){e=b.createDocumentFragment();c.clean(a,b,e,d)}if(f)c.fragments[a[0]]=h?e:1;return{fragment:e,cacheable:f}};c.fragments={};c.each({appendTo:"append",
-prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var e=[];d=c(d);var f=this.length===1&&this[0].parentNode;if(f&&f.nodeType===11&&f.childNodes.length===1&&d.length===1){d[b](this[0]);return this}else{f=0;for(var h=d.length;f<h;f++){var l=(f>0?this.clone(true):this).get();c(d[f])[b](l);e=e.concat(l)}return this.pushStack(e,a,d.selector)}}});c.extend({clean:function(a,b,d,e){b=b||t;if(typeof b.createElement==="undefined")b=b.ownerDocument||
-b[0]&&b[0].ownerDocument||t;for(var f=[],h=0,l;(l=a[h])!=null;h++){if(typeof l==="number")l+="";if(l){if(typeof l==="string"&&!eb.test(l))l=b.createTextNode(l);else if(typeof l==="string"){l=l.replace(Aa,"<$1></$2>");var k=(Ba.exec(l)||["",""])[1].toLowerCase(),o=P[k]||P._default,x=o[0],r=b.createElement("div");for(r.innerHTML=o[1]+l+o[2];x--;)r=r.lastChild;if(!c.support.tbody){x=db.test(l);k=k==="table"&&!x?r.firstChild&&r.firstChild.childNodes:o[1]==="<table>"&&!x?r.childNodes:[];for(o=k.length-
-1;o>=0;--o)c.nodeName(k[o],"tbody")&&!k[o].childNodes.length&&k[o].parentNode.removeChild(k[o])}!c.support.leadingWhitespace&&$.test(l)&&r.insertBefore(b.createTextNode($.exec(l)[0]),r.firstChild);l=r.childNodes}if(l.nodeType)f.push(l);else f=c.merge(f,l)}}if(d)for(h=0;f[h];h++)if(e&&c.nodeName(f[h],"script")&&(!f[h].type||f[h].type.toLowerCase()==="text/javascript"))e.push(f[h].parentNode?f[h].parentNode.removeChild(f[h]):f[h]);else{f[h].nodeType===1&&f.splice.apply(f,[h+1,0].concat(c.makeArray(f[h].getElementsByTagName("script"))));
-d.appendChild(f[h])}return f},cleanData:function(a){for(var b,d,e=c.cache,f=c.event.special,h=c.support.deleteExpando,l=0,k;(k=a[l])!=null;l++)if(!(k.nodeName&&c.noData[k.nodeName.toLowerCase()]))if(d=k[c.expando]){if((b=e[d])&&b.events)for(var o in b.events)f[o]?c.event.remove(k,o):c.removeEvent(k,o,b.handle);if(h)delete k[c.expando];else k.removeAttribute&&k.removeAttribute(c.expando);delete e[d]}}});var Ea=/alpha\([^)]*\)/i,gb=/opacity=([^)]*)/,hb=/-([a-z])/ig,ib=/([A-Z])/g,Fa=/^-?\d+(?:px)?$/i,
-jb=/^-?\d/,kb={position:"absolute",visibility:"hidden",display:"block"},Pa=["Left","Right"],Qa=["Top","Bottom"],W,Ga,aa,lb=function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){if(arguments.length===2&&b===B)return this;return c.access(this,a,b,true,function(d,e,f){return f!==B?c.style(d,e,f):c.css(d,e)})};c.extend({cssHooks:{opacity:{get:function(a,b){if(b){var d=W(a,"opacity","opacity");return d===""?"1":d}else return a.style.opacity}}},cssNumber:{zIndex:true,fontWeight:true,opacity:true,
-zoom:true,lineHeight:true},cssProps:{"float":c.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,d,e){if(!(!a||a.nodeType===3||a.nodeType===8||!a.style)){var f,h=c.camelCase(b),l=a.style,k=c.cssHooks[h];b=c.cssProps[h]||h;if(d!==B){if(!(typeof d==="number"&&isNaN(d)||d==null)){if(typeof d==="number"&&!c.cssNumber[h])d+="px";if(!k||!("set"in k)||(d=k.set(a,d))!==B)try{l[b]=d}catch(o){}}}else{if(k&&"get"in k&&(f=k.get(a,false,e))!==B)return f;return l[b]}}},css:function(a,b,d){var e,f=c.camelCase(b),
-h=c.cssHooks[f];b=c.cssProps[f]||f;if(h&&"get"in h&&(e=h.get(a,true,d))!==B)return e;else if(W)return W(a,b,f)},swap:function(a,b,d){var e={},f;for(f in b){e[f]=a.style[f];a.style[f]=b[f]}d.call(a);for(f in b)a.style[f]=e[f]},camelCase:function(a){return a.replace(hb,lb)}});c.curCSS=c.css;c.each(["height","width"],function(a,b){c.cssHooks[b]={get:function(d,e,f){var h;if(e){if(d.offsetWidth!==0)h=oa(d,b,f);else c.swap(d,kb,function(){h=oa(d,b,f)});if(h<=0){h=W(d,b,b);if(h==="0px"&&aa)h=aa(d,b,b);
-if(h!=null)return h===""||h==="auto"?"0px":h}if(h<0||h==null){h=d.style[b];return h===""||h==="auto"?"0px":h}return typeof h==="string"?h:h+"px"}},set:function(d,e){if(Fa.test(e)){e=parseFloat(e);if(e>=0)return e+"px"}else return e}}});if(!c.support.opacity)c.cssHooks.opacity={get:function(a,b){return gb.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var d=a.style;d.zoom=1;var e=c.isNaN(b)?"":"alpha(opacity="+b*100+")",f=
-d.filter||"";d.filter=Ea.test(f)?f.replace(Ea,e):d.filter+" "+e}};if(t.defaultView&&t.defaultView.getComputedStyle)Ga=function(a,b,d){var e;d=d.replace(ib,"-$1").toLowerCase();if(!(b=a.ownerDocument.defaultView))return B;if(b=b.getComputedStyle(a,null)){e=b.getPropertyValue(d);if(e===""&&!c.contains(a.ownerDocument.documentElement,a))e=c.style(a,d)}return e};if(t.documentElement.currentStyle)aa=function(a,b){var d,e,f=a.currentStyle&&a.currentStyle[b],h=a.style;if(!Fa.test(f)&&jb.test(f)){d=h.left;
-e=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;h.left=b==="fontSize"?"1em":f||0;f=h.pixelLeft+"px";h.left=d;a.runtimeStyle.left=e}return f===""?"auto":f};W=Ga||aa;if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b=a.offsetHeight;return a.offsetWidth===0&&b===0||!c.support.reliableHiddenOffsets&&(a.style.display||c.css(a,"display"))==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var mb=c.now(),nb=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
-ob=/^(?:select|textarea)/i,pb=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,qb=/^(?:GET|HEAD)$/,Ra=/\[\]$/,T=/\=\?(&|$)/,ja=/\?/,rb=/([?&])_=[^&]*/,sb=/^(\w+:)?\/\/([^\/?#]+)/,tb=/%20/g,ub=/#.*$/,Ha=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!=="string"&&Ha)return Ha.apply(this,arguments);else if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var f=a.slice(e,a.length);a=a.slice(0,e)}e="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b===
-"object"){b=c.param(b,c.ajaxSettings.traditional);e="POST"}var h=this;c.ajax({url:a,type:e,dataType:"html",data:b,complete:function(l,k){if(k==="success"||k==="notmodified")h.html(f?c("<div>").append(l.responseText.replace(nb,"")).find(f):l.responseText);d&&h.each(d,[l.responseText,k,l])}});return this},serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&
-!this.disabled&&(this.checked||ob.test(this.nodeName)||pb.test(this.type))}).map(function(a,b){var d=c(this).val();return d==null?null:c.isArray(d)?c.map(d,function(e){return{name:b.name,value:e}}):{name:b.name,value:d}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,e){if(c.isFunction(b)){e=e||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:e})},
-getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,e){if(c.isFunction(b)){e=e||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:e})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return new E.XMLHttpRequest},accepts:{xml:"application/xml, text/xml",html:"text/html",
-script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},ajax:function(a){var b=c.extend(true,{},c.ajaxSettings,a),d,e,f,h=b.type.toUpperCase(),l=qb.test(h);b.url=b.url.replace(ub,"");b.context=a&&a.context!=null?a.context:b;if(b.data&&b.processData&&typeof b.data!=="string")b.data=c.param(b.data,b.traditional);if(b.dataType==="jsonp"){if(h==="GET")T.test(b.url)||(b.url+=(ja.test(b.url)?"&":"?")+(b.jsonp||"callback")+"=?");else if(!b.data||
-!T.test(b.data))b.data=(b.data?b.data+"&":"")+(b.jsonp||"callback")+"=?";b.dataType="json"}if(b.dataType==="json"&&(b.data&&T.test(b.data)||T.test(b.url))){d=b.jsonpCallback||"jsonp"+mb++;if(b.data)b.data=(b.data+"").replace(T,"="+d+"$1");b.url=b.url.replace(T,"="+d+"$1");b.dataType="script";var k=E[d];E[d]=function(m){if(c.isFunction(k))k(m);else{E[d]=B;try{delete E[d]}catch(p){}}f=m;c.handleSuccess(b,w,e,f);c.handleComplete(b,w,e,f);r&&r.removeChild(A)}}if(b.dataType==="script"&&b.cache===null)b.cache=
-false;if(b.cache===false&&l){var o=c.now(),x=b.url.replace(rb,"$1_="+o);b.url=x+(x===b.url?(ja.test(b.url)?"&":"?")+"_="+o:"")}if(b.data&&l)b.url+=(ja.test(b.url)?"&":"?")+b.data;b.global&&c.active++===0&&c.event.trigger("ajaxStart");o=(o=sb.exec(b.url))&&(o[1]&&o[1].toLowerCase()!==location.protocol||o[2].toLowerCase()!==location.host);if(b.dataType==="script"&&h==="GET"&&o){var r=t.getElementsByTagName("head")[0]||t.documentElement,A=t.createElement("script");if(b.scriptCharset)A.charset=b.scriptCharset;
-A.src=b.url;if(!d){var C=false;A.onload=A.onreadystatechange=function(){if(!C&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){C=true;c.handleSuccess(b,w,e,f);c.handleComplete(b,w,e,f);A.onload=A.onreadystatechange=null;r&&A.parentNode&&r.removeChild(A)}}}r.insertBefore(A,r.firstChild);return B}var J=false,w=b.xhr();if(w){b.username?w.open(h,b.url,b.async,b.username,b.password):w.open(h,b.url,b.async);try{if(b.data!=null&&!l||a&&a.contentType)w.setRequestHeader("Content-Type",
-b.contentType);if(b.ifModified){c.lastModified[b.url]&&w.setRequestHeader("If-Modified-Since",c.lastModified[b.url]);c.etag[b.url]&&w.setRequestHeader("If-None-Match",c.etag[b.url])}o||w.setRequestHeader("X-Requested-With","XMLHttpRequest");w.setRequestHeader("Accept",b.dataType&&b.accepts[b.dataType]?b.accepts[b.dataType]+", */*; q=0.01":b.accepts._default)}catch(I){}if(b.beforeSend&&b.beforeSend.call(b.context,w,b)===false){b.global&&c.active--===1&&c.event.trigger("ajaxStop");w.abort();return false}b.global&&
-c.triggerGlobal(b,"ajaxSend",[w,b]);var L=w.onreadystatechange=function(m){if(!w||w.readyState===0||m==="abort"){J||c.handleComplete(b,w,e,f);J=true;if(w)w.onreadystatechange=c.noop}else if(!J&&w&&(w.readyState===4||m==="timeout")){J=true;w.onreadystatechange=c.noop;e=m==="timeout"?"timeout":!c.httpSuccess(w)?"error":b.ifModified&&c.httpNotModified(w,b.url)?"notmodified":"success";var p;if(e==="success")try{f=c.httpData(w,b.dataType,b)}catch(q){e="parsererror";p=q}if(e==="success"||e==="notmodified")d||
-c.handleSuccess(b,w,e,f);else c.handleError(b,w,e,p);d||c.handleComplete(b,w,e,f);m==="timeout"&&w.abort();if(b.async)w=null}};try{var g=w.abort;w.abort=function(){w&&Function.prototype.call.call(g,w);L("abort")}}catch(i){}b.async&&b.timeout>0&&setTimeout(function(){w&&!J&&L("timeout")},b.timeout);try{w.send(l||b.data==null?null:b.data)}catch(n){c.handleError(b,w,null,n);c.handleComplete(b,w,e,f)}b.async||L();return w}},param:function(a,b){var d=[],e=function(h,l){l=c.isFunction(l)?l():l;d[d.length]=
-encodeURIComponent(h)+"="+encodeURIComponent(l)};if(b===B)b=c.ajaxSettings.traditional;if(c.isArray(a)||a.jquery)c.each(a,function(){e(this.name,this.value)});else for(var f in a)da(f,a[f],b,e);return d.join("&").replace(tb,"+")}});c.extend({active:0,lastModified:{},etag:{},handleError:function(a,b,d,e){a.error&&a.error.call(a.context,b,d,e);a.global&&c.triggerGlobal(a,"ajaxError",[b,a,e])},handleSuccess:function(a,b,d,e){a.success&&a.success.call(a.context,e,d,b);a.global&&c.triggerGlobal(a,"ajaxSuccess",
-[b,a])},handleComplete:function(a,b,d){a.complete&&a.complete.call(a.context,b,d);a.global&&c.triggerGlobal(a,"ajaxComplete",[b,a]);a.global&&c.active--===1&&c.event.trigger("ajaxStop")},triggerGlobal:function(a,b,d){(a.context&&a.context.url==null?c(a.context):c.event).trigger(b,d)},httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status===1223}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),
-e=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(e)c.etag[b]=e;return a.status===304},httpData:function(a,b,d){var e=a.getResponseHeader("content-type")||"",f=b==="xml"||!b&&e.indexOf("xml")>=0;a=f?a.responseXML:a.responseText;f&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b==="json"||!b&&e.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&e.indexOf("javascript")>=0)c.globalEval(a);return a}});
-if(E.ActiveXObject)c.ajaxSettings.xhr=function(){if(E.location.protocol!=="file:")try{return new E.XMLHttpRequest}catch(a){}try{return new E.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}};c.support.ajax=!!c.ajaxSettings.xhr();var ea={},vb=/^(?:toggle|show|hide)$/,wb=/^([+\-]=)?([\d+.\-]+)(.*)$/,ba,pa=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b,d){if(a||a===0)return this.animate(S("show",
-3),a,b,d);else{d=0;for(var e=this.length;d<e;d++){a=this[d];b=a.style.display;if(!c.data(a,"olddisplay")&&b==="none")b=a.style.display="";b===""&&c.css(a,"display")==="none"&&c.data(a,"olddisplay",qa(a.nodeName))}for(d=0;d<e;d++){a=this[d];b=a.style.display;if(b===""||b==="none")a.style.display=c.data(a,"olddisplay")||""}return this}},hide:function(a,b,d){if(a||a===0)return this.animate(S("hide",3),a,b,d);else{a=0;for(b=this.length;a<b;a++){d=c.css(this[a],"display");d!=="none"&&c.data(this[a],"olddisplay",
-d)}for(a=0;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b,d){var e=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||e?this.each(function(){var f=e?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(S("toggle",3),a,b,d);return this},fadeTo:function(a,b,d,e){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d,e)},animate:function(a,b,d,e){var f=c.speed(b,
-d,e);if(c.isEmptyObject(a))return this.each(f.complete);return this[f.queue===false?"each":"queue"](function(){var h=c.extend({},f),l,k=this.nodeType===1,o=k&&c(this).is(":hidden"),x=this;for(l in a){var r=c.camelCase(l);if(l!==r){a[r]=a[l];delete a[l];l=r}if(a[l]==="hide"&&o||a[l]==="show"&&!o)return h.complete.call(this);if(k&&(l==="height"||l==="width")){h.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(c.css(this,"display")==="inline"&&c.css(this,"float")==="none")if(c.support.inlineBlockNeedsLayout)if(qa(this.nodeName)===
-"inline")this.style.display="inline-block";else{this.style.display="inline";this.style.zoom=1}else this.style.display="inline-block"}if(c.isArray(a[l])){(h.specialEasing=h.specialEasing||{})[l]=a[l][1];a[l]=a[l][0]}}if(h.overflow!=null)this.style.overflow="hidden";h.curAnim=c.extend({},a);c.each(a,function(A,C){var J=new c.fx(x,h,A);if(vb.test(C))J[C==="toggle"?o?"show":"hide":C](a);else{var w=wb.exec(C),I=J.cur()||0;if(w){var L=parseFloat(w[2]),g=w[3]||"px";if(g!=="px"){c.style(x,A,(L||1)+g);I=(L||
-1)/J.cur()*I;c.style(x,A,I+g)}if(w[1])L=(w[1]==="-="?-1:1)*L+I;J.custom(I,L,g)}else J.custom(I,C,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]);this.each(function(){for(var e=d.length-1;e>=0;e--)if(d[e].elem===this){b&&d[e](true);d.splice(e,1)}});b||this.dequeue();return this}});c.each({slideDown:S("show",1),slideUp:S("hide",1),slideToggle:S("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){c.fn[a]=function(d,e,f){return this.animate(b,
-d,e,f)}});c.extend({speed:function(a,b,d){var e=a&&typeof a==="object"?c.extend({},a):{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};e.duration=c.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in c.fx.speeds?c.fx.speeds[e.duration]:c.fx.speeds._default;e.old=e.complete;e.complete=function(){e.queue!==false&&c(this).dequeue();c.isFunction(e.old)&&e.old.call(this)};return e},easing:{linear:function(a,b,d,e){return d+e*a},swing:function(a,b,d,e){return(-Math.cos(a*
-Math.PI)/2+0.5)*e+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]||c.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a=parseFloat(c.css(this.elem,this.prop));return a&&a>-1E4?a:0},custom:function(a,b,d){function e(l){return f.step(l)}
-var f=this,h=c.fx;this.startTime=c.now();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start;this.pos=this.state=0;e.elem=this.elem;if(e()&&c.timers.push(e)&&!ba)ba=setInterval(h.tick,h.interval)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;
-this.custom(this.cur(),0)},step:function(a){var b=c.now(),d=true;if(a||b>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var e in this.options.curAnim)if(this.options.curAnim[e]!==true)d=false;if(d){if(this.options.overflow!=null&&!c.support.shrinkWrapBlocks){var f=this.elem,h=this.options;c.each(["","X","Y"],function(k,o){f.style["overflow"+o]=h.overflow[k]})}this.options.hide&&c(this.elem).hide();if(this.options.hide||
-this.options.show)for(var l in this.options.curAnim)c.style(this.elem,l,this.options.orig[l]);this.options.complete.call(this.elem)}return false}else{a=b-this.startTime;this.state=a/this.options.duration;b=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||b](this.state,a,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=
-c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||c.fx.stop()},interval:13,stop:function(){clearInterval(ba);ba=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=null)a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a===
-b.elem}).length};var xb=/^t(?:able|d|h)$/i,Ia=/^(?:body|html)$/i;c.fn.offset="getBoundingClientRect"in t.documentElement?function(a){var b=this[0],d;if(a)return this.each(function(l){c.offset.setOffset(this,a,l)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);try{d=b.getBoundingClientRect()}catch(e){}var f=b.ownerDocument,h=f.documentElement;if(!d||!c.contains(h,b))return d||{top:0,left:0};b=f.body;f=fa(f);return{top:d.top+(f.pageYOffset||c.support.boxModel&&
-h.scrollTop||b.scrollTop)-(h.clientTop||b.clientTop||0),left:d.left+(f.pageXOffset||c.support.boxModel&&h.scrollLeft||b.scrollLeft)-(h.clientLeft||b.clientLeft||0)}}:function(a){var b=this[0];if(a)return this.each(function(x){c.offset.setOffset(this,a,x)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d,e=b.offsetParent,f=b.ownerDocument,h=f.documentElement,l=f.body;d=(f=f.defaultView)?f.getComputedStyle(b,null):b.currentStyle;
-for(var k=b.offsetTop,o=b.offsetLeft;(b=b.parentNode)&&b!==l&&b!==h;){if(c.offset.supportsFixedPosition&&d.position==="fixed")break;d=f?f.getComputedStyle(b,null):b.currentStyle;k-=b.scrollTop;o-=b.scrollLeft;if(b===e){k+=b.offsetTop;o+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&xb.test(b.nodeName))){k+=parseFloat(d.borderTopWidth)||0;o+=parseFloat(d.borderLeftWidth)||0}e=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&d.overflow!=="visible"){k+=
-parseFloat(d.borderTopWidth)||0;o+=parseFloat(d.borderLeftWidth)||0}d=d}if(d.position==="relative"||d.position==="static"){k+=l.offsetTop;o+=l.offsetLeft}if(c.offset.supportsFixedPosition&&d.position==="fixed"){k+=Math.max(h.scrollTop,l.scrollTop);o+=Math.max(h.scrollLeft,l.scrollLeft)}return{top:k,left:o}};c.offset={initialize:function(){var a=t.body,b=t.createElement("div"),d,e,f,h=parseFloat(c.css(a,"marginTop"))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",
-height:"1px",visibility:"hidden"});b.innerHTML="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";a.insertBefore(b,a.firstChild);d=b.firstChild;e=d.firstChild;f=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=e.offsetTop!==5;this.doesAddBorderForTableAndCells=
-f.offsetTop===5;e.style.position="fixed";e.style.top="20px";this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15;e.style.position=e.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==h;a.removeChild(b);c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.css(a,
-"marginTop"))||0;d+=parseFloat(c.css(a,"marginLeft"))||0}return{top:b,left:d}},setOffset:function(a,b,d){var e=c.css(a,"position");if(e==="static")a.style.position="relative";var f=c(a),h=f.offset(),l=c.css(a,"top"),k=c.css(a,"left"),o=e==="absolute"&&c.inArray("auto",[l,k])>-1;e={};var x={};if(o)x=f.position();l=o?x.top:parseInt(l,10)||0;k=o?x.left:parseInt(k,10)||0;if(c.isFunction(b))b=b.call(a,d,h);if(b.top!=null)e.top=b.top-h.top+l;if(b.left!=null)e.left=b.left-h.left+k;"using"in b?b.using.call(a,
-e):f.css(e)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),e=Ia.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.css(a,"marginTop"))||0;d.left-=parseFloat(c.css(a,"marginLeft"))||0;e.top+=parseFloat(c.css(b[0],"borderTopWidth"))||0;e.left+=parseFloat(c.css(b[0],"borderLeftWidth"))||0;return{top:d.top-e.top,left:d.left-e.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||t.body;a&&!Ia.test(a.nodeName)&&
-c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(e){var f=this[0],h;if(!f)return null;if(e!==B)return this.each(function(){if(h=fa(this))h.scrollTo(!a?e:c(h).scrollLeft(),a?e:c(h).scrollTop());else this[d]=e});else return(h=fa(f))?"pageXOffset"in h?h[a?"pageYOffset":"pageXOffset"]:c.support.boxModel&&h.document.documentElement[d]||h.document.body[d]:f[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();
-c.fn["inner"+b]=function(){return this[0]?parseFloat(c.css(this[0],d,"padding")):null};c.fn["outer"+b]=function(e){return this[0]?parseFloat(c.css(this[0],d,e?"margin":"border")):null};c.fn[d]=function(e){var f=this[0];if(!f)return e==null?null:this;if(c.isFunction(e))return this.each(function(l){var k=c(this);k[d](e.call(this,l,k[d]()))});if(c.isWindow(f))return f.document.compatMode==="CSS1Compat"&&f.document.documentElement["client"+b]||f.document.body["client"+b];else if(f.nodeType===9)return Math.max(f.documentElement["client"+
-b],f.body["scroll"+b],f.documentElement["scroll"+b],f.body["offset"+b],f.documentElement["offset"+b]);else if(e===B){f=c.css(f,d);var h=parseFloat(f);return c.isNaN(h)?f:h}else return this.css(d,typeof e==="string"?e:e+"px")}})})(window);
diff --git a/eclipse.org-common/lib/jquery/jquery-1.5.1.min.js b/eclipse.org-common/lib/jquery/jquery-1.5.1.min.js
deleted file mode 100644
index 6437874..0000000
--- a/eclipse.org-common/lib/jquery/jquery-1.5.1.min.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*!
- * jQuery JavaScript Library v1.5.1
- * http://jquery.com/
- *
- * Copyright 2011, John Resig
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * Includes Sizzle.js
- * http://sizzlejs.com/
- * Copyright 2011, The Dojo Foundation
- * Released under the MIT, BSD, and GPL Licenses.
- *
- * Date: Wed Feb 23 13:55:29 2011 -0500
- */
-(function(a,b){function cg(a){return d.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cd(a){if(!bZ[a]){var b=d("<"+a+">").appendTo("body"),c=b.css("display");b.remove();if(c==="none"||c==="")c="block";bZ[a]=c}return bZ[a]}function cc(a,b){var c={};d.each(cb.concat.apply([],cb.slice(0,b)),function(){c[this]=a});return c}function bY(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function bX(){try{return new a.XMLHttpRequest}catch(b){}}function bW(){d(a).unload(function(){for(var a in bU)bU[a](0,1)})}function bQ(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var e=a.dataTypes,f={},g,h,i=e.length,j,k=e[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h==="string"&&(f[h.toLowerCase()]=a.converters[h]);l=k,k=e[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=f[m]||f["* "+k];if(!n){p=b;for(o in f){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=f[j[1]+" "+k];if(p){o=f[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&d.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function bP(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function bO(a,b,c,e){if(d.isArray(b)&&b.length)d.each(b,function(b,f){c||bq.test(a)?e(a,f):bO(a+"["+(typeof f==="object"||d.isArray(f)?b:"")+"]",f,c,e)});else if(c||b==null||typeof b!=="object")e(a,b);else if(d.isArray(b)||d.isEmptyObject(b))e(a,"");else for(var f in b)bO(a+"["+f+"]",b[f],c,e)}function bN(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bH,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l==="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=bN(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=bN(a,c,d,e,"*",g));return l}function bM(a){return function(b,c){typeof b!=="string"&&(c=b,b="*");if(d.isFunction(c)){var e=b.toLowerCase().split(bB),f=0,g=e.length,h,i,j;for(;f<g;f++)h=e[f],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bo(a,b,c){var e=b==="width"?bi:bj,f=b==="width"?a.offsetWidth:a.offsetHeight;if(c==="border")return f;d.each(e,function(){c||(f-=parseFloat(d.css(a,"padding"+this))||0),c==="margin"?f+=parseFloat(d.css(a,"margin"+this))||0:f-=parseFloat(d.css(a,"border"+this+"Width"))||0});return f}function ba(a,b){b.src?d.ajax({url:b.src,async:!1,dataType:"script"}):d.globalEval(b.text||b.textContent||b.innerHTML||""),b.parentNode&&b.parentNode.removeChild(b)}function _(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function $(a,b){if(b.nodeType===1){var c=b.nodeName.toLowerCase();b.clearAttributes(),b.mergeAttributes(a);if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(d.expando)}}function Z(a,b){if(b.nodeType===1&&d.hasData(a)){var c=d.expando,e=d.data(a),f=d.data(b,e);if(e=e[c]){var g=e.events;f=f[c]=d.extend({},e);if(g){delete f.handle,f.events={};for(var h in g)for(var i=0,j=g[h].length;i<j;i++)d.event.add(b,h+(g[h][i].namespace?".":"")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function Y(a,b){return d.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function O(a,b,c){if(d.isFunction(b))return d.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return d.grep(a,function(a,d){return a===b===c});if(typeof b==="string"){var e=d.grep(a,function(a){return a.nodeType===1});if(J.test(b))return d.filter(b,e,!c);b=d.filter(b,e)}return d.grep(a,function(a,e){return d.inArray(a,b)>=0===c})}function N(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function F(a,b){return(a&&a!=="*"?a+".":"")+b.replace(r,"`").replace(s,"&")}function E(a){var b,c,e,f,g,h,i,j,k,l,m,n,o,q=[],r=[],s=d._data(this,"events");if(a.liveFired!==this&&s&&s.live&&!a.target.disabled&&(!a.button||a.type!=="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var t=s.live.slice(0);for(i=0;i<t.length;i++)g=t[i],g.origType.replace(p,"")===a.type?r.push(g.selector):t.splice(i--,1);f=d(a.target).closest(r,a.currentTarget);for(j=0,k=f.length;j<k;j++){m=f[j];for(i=0;i<t.length;i++){g=t[i];if(m.selector===g.selector&&(!n||n.test(g.namespace))&&!m.elem.disabled){h=m.elem,e=null;if(g.preType==="mouseenter"||g.preType==="mouseleave")a.type=g.preType,e=d(a.relatedTarget).closest(g.selector)[0];(!e||e!==h)&&q.push({elem:h,handleObj:g,level:m.level})}}}for(j=0,k=q.length;j<k;j++){f=q[j];if(c&&f.level>c)break;a.currentTarget=f.elem,a.data=f.handleObj.data,a.handleObj=f.handleObj,o=f.handleObj.origHandler.apply(f.elem,arguments);if(o===!1||a.isPropagationStopped()){c=f.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function C(a,c,e){var f=d.extend({},e[0]);f.type=a,f.originalEvent={},f.liveFired=b,d.event.handle.call(c,f),f.isDefaultPrevented()&&e[0].preventDefault()}function w(){return!0}function v(){return!1}function g(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function f(a,c,f){if(f===b&&a.nodeType===1){f=a.getAttribute("data-"+c);if(typeof f==="string"){try{f=f==="true"?!0:f==="false"?!1:f==="null"?null:d.isNaN(f)?e.test(f)?d.parseJSON(f):f:parseFloat(f)}catch(g){}d.data(a,c,f)}else f=b}return f}var c=a.document,d=function(){function I(){if(!d.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(I,1);return}d.ready()}}var d=function(a,b){return new d.fn.init(a,b,g)},e=a.jQuery,f=a.$,g,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,i=/\S/,j=/^\s+/,k=/\s+$/,l=/\d/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=navigator.userAgent,w,x=!1,y,z="then done fail isResolved isRejected promise".split(" "),A,B=Object.prototype.toString,C=Object.prototype.hasOwnProperty,D=Array.prototype.push,E=Array.prototype.slice,F=String.prototype.trim,G=Array.prototype.indexOf,H={};d.fn=d.prototype={constructor:d,init:function(a,e,f){var g,i,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!e&&c.body){this.context=c,this[0]=c.body,this.selector="body",this.length=1;return this}if(typeof a==="string"){g=h.exec(a);if(!g||!g[1]&&e)return!e||e.jquery?(e||f).find(a):this.constructor(e).find(a);if(g[1]){e=e instanceof d?e[0]:e,k=e?e.ownerDocument||e:c,j=m.exec(a),j?d.isPlainObject(e)?(a=[c.createElement(j[1])],d.fn.attr.call(a,e,!0)):a=[k.createElement(j[1])]:(j=d.buildFragment([g[1]],[k]),a=(j.cacheable?d.clone(j.fragment):j.fragment).childNodes);return d.merge(this,a)}i=c.getElementById(g[2]);if(i&&i.parentNode){if(i.id!==g[2])return f.find(a);this.length=1,this[0]=i}this.context=c,this.selector=a;return this}if(d.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return d.makeArray(a,this)},selector:"",jquery:"1.5.1",length:0,size:function(){return this.length},toArray:function(){return E.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var e=this.constructor();d.isArray(a)?D.apply(e,a):d.merge(e,a),e.prevObject=this,e.context=this.context,b==="find"?e.selector=this.selector+(this.selector?" ":"")+c:b&&(e.selector=this.selector+"."+b+"("+c+")");return e},each:function(a,b){return d.each(this,a,b)},ready:function(a){d.bindReady(),y.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(E.apply(this,arguments),"slice",E.call(arguments).join(","))},map:function(a){return this.pushStack(d.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:D,sort:[].sort,splice:[].splice},d.fn.init.prototype=d.fn,d.extend=d.fn.extend=function(){var a,c,e,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i==="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!=="object"&&!d.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){e=i[c],f=a[c];if(i===f)continue;l&&f&&(d.isPlainObject(f)||(g=d.isArray(f)))?(g?(g=!1,h=e&&d.isArray(e)?e:[]):h=e&&d.isPlainObject(e)?e:{},i[c]=d.extend(l,h,f)):f!==b&&(i[c]=f)}return i},d.extend({noConflict:function(b){a.$=f,b&&(a.jQuery=e);return d},isReady:!1,readyWait:1,ready:function(a){a===!0&&d.readyWait--;if(!d.readyWait||a!==!0&&!d.isReady){if(!c.body)return setTimeout(d.ready,1);d.isReady=!0;if(a!==!0&&--d.readyWait>0)return;y.resolveWith(c,[d]),d.fn.trigger&&d(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!x){x=!0;if(c.readyState==="complete")return setTimeout(d.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",A,!1),a.addEventListener("load",d.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",A),a.attachEvent("onload",d.ready);var b=!1;try{b=a.frameElement==null}catch(e){}c.documentElement.doScroll&&b&&I()}}},isFunction:function(a){return d.type(a)==="function"},isArray:Array.isArray||function(a){return d.type(a)==="array"},isWindow:function(a){return a&&typeof a==="object"&&"setInterval"in a},isNaN:function(a){return a==null||!l.test(a)||isNaN(a)},type:function(a){return a==null?String(a):H[B.call(a)]||"object"},isPlainObject:function(a){if(!a||d.type(a)!=="object"||a.nodeType||d.isWindow(a))return!1;if(a.constructor&&!C.call(a,"constructor")&&!C.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a){}return c===b||C.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!=="string"||!b)return null;b=d.trim(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return a.JSON&&a.JSON.parse?a.JSON.parse(b):(new Function("return "+b))();d.error("Invalid JSON: "+b)},parseXML:function(b,c,e){a.DOMParser?(e=new DOMParser,c=e.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),e=c.documentElement,(!e||!e.nodeName||e.nodeName==="parsererror")&&d.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(a){if(a&&i.test(a)){var b=c.head||c.getElementsByTagName("head")[0]||c.documentElement,e=c.createElement("script");d.support.scriptEval()?e.appendChild(c.createTextNode(a)):e.text=a,b.insertBefore(e,b.firstChild),b.removeChild(e)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,e){var f,g=0,h=a.length,i=h===b||d.isFunction(a);if(e){if(i){for(f in a)if(c.apply(a[f],e)===!1)break}else for(;g<h;)if(c.apply(a[g++],e)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(var j=a[0];g<h&&c.call(j,g,j)!==!1;j=a[++g]){}return a},trim:F?function(a){return a==null?"":F.call(a)}:function(a){return a==null?"":(a+"").replace(j,"").replace(k,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var e=d.type(a);a.length==null||e==="string"||e==="function"||e==="regexp"||d.isWindow(a)?D.call(c,a):d.merge(c,a)}return c},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var c=0,d=b.length;c<d;c++)if(b[c]===a)return c;return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length==="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,b,c){var d=[],e;for(var f=0,g=a.length;f<g;f++)e=b(a[f],f,c),e!=null&&(d[d.length]=e);return d.concat.apply([],d)},guid:1,proxy:function(a,c,e){arguments.length===2&&(typeof c==="string"?(e=a,a=e[c],c=b):c&&!d.isFunction(c)&&(e=c,c=b)),!c&&a&&(c=function(){return a.apply(e||this,arguments)}),a&&(c.guid=a.guid=a.guid||c.guid||d.guid++);return c},access:function(a,c,e,f,g,h){var i=a.length;if(typeof c==="object"){for(var j in c)d.access(a,j,c[j],f,g,e);return a}if(e!==b){f=!h&&f&&d.isFunction(e);for(var k=0;k<i;k++)g(a[k],c,f?e.call(a[k],k,g(a[k],c)):e,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},_Deferred:function(){var a=[],b,c,e,f={done:function(){if(!e){var c=arguments,g,h,i,j,k;b&&(k=b,b=0);for(g=0,h=c.length;g<h;g++)i=c[g],j=d.type(i),j==="array"?f.done.apply(f,i):j==="function"&&a.push(i);k&&f.resolveWith(k[0],k[1])}return this},resolveWith:function(d,f){if(!e&&!b&&!c){c=1;try{while(a[0])a.shift().apply(d,f)}catch(g){throw g}finally{b=[d,f],c=0}}return this},resolve:function(){f.resolveWith(d.isFunction(this.promise)?this.promise():this,arguments);return this},isResolved:function(){return c||b},cancel:function(){e=1,a=[];return this}};return f},Deferred:function(a){var b=d._Deferred(),c=d._Deferred(),e;d.extend(b,{then:function(a,c){b.done(a).fail(c);return this},fail:c.done,rejectWith:c.resolveWith,reject:c.resolve,isRejected:c.isResolved,promise:function(a){if(a==null){if(e)return e;e=a={}}var c=z.length;while(c--)a[z[c]]=b[z[c]];return a}}),b.done(c.cancel).fail(b.cancel),delete b.cancel,a&&a.call(b,b);return b},when:function(a){var b=arguments.length,c=b<=1&&a&&d.isFunction(a.promise)?a:d.Deferred(),e=c.promise();if(b>1){var f=E.call(arguments,0),g=b,h=function(a){return function(b){f[a]=arguments.length>1?E.call(arguments,0):b,--g||c.resolveWith(e,f)}};while(b--)a=f[b],a&&d.isFunction(a.promise)?a.promise().then(h(b),c.reject):--g;g||c.resolveWith(e,f)}else c!==a&&c.resolve(a);return e},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}d.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.subclass=this.subclass,a.fn.init=function b(b,c){c&&c instanceof d&&!(c instanceof a)&&(c=a(c));return d.fn.init.call(this,b,c,e)},a.fn.init.prototype=a.fn;var e=a(c);return a},browser:{}}),y=d._Deferred(),d.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){H["[object "+b+"]"]=b.toLowerCase()}),w=d.uaMatch(v),w.browser&&(d.browser[w.browser]=!0,d.browser.version=w.version),d.browser.webkit&&(d.browser.safari=!0),G&&(d.inArray=function(a,b){return G.call(b,a)}),i.test(" ")&&(j=/^[\s\xA0]+/,k=/[\s\xA0]+$/),g=d(c),c.addEventListener?A=function(){c.removeEventListener("DOMContentLoaded",A,!1),d.ready()}:c.attachEvent&&(A=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",A),d.ready())});return d}();(function(){d.support={};var b=c.createElement("div");b.style.display="none",b.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var e=b.getElementsByTagName("*"),f=b.getElementsByTagName("a")[0],g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=b.getElementsByTagName("input")[0];if(e&&e.length&&f){d.support={leadingWhitespace:b.firstChild.nodeType===3,tbody:!b.getElementsByTagName("tbody").length,htmlSerialize:!!b.getElementsByTagName("link").length,style:/red/.test(f.getAttribute("style")),hrefNormalized:f.getAttribute("href")==="/a",opacity:/^0.55$/.test(f.style.opacity),cssFloat:!!f.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,deleteExpando:!0,optDisabled:!1,checkClone:!1,noCloneEvent:!0,noCloneChecked:!0,boxModel:null,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableHiddenOffsets:!0},i.checked=!0,d.support.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,d.support.optDisabled=!h.disabled;var j=null;d.support.scriptEval=function(){if(j===null){var b=c.documentElement,e=c.createElement("script"),f="script"+d.now();try{e.appendChild(c.createTextNode("window."+f+"=1;"))}catch(g){}b.insertBefore(e,b.firstChild),a[f]?(j=!0,delete a[f]):j=!1,b.removeChild(e),b=e=f=null}return j};try{delete b.test}catch(k){d.support.deleteExpando=!1}!b.addEventListener&&b.attachEvent&&b.fireEvent&&(b.attachEvent("onclick",function l(){d.support.noCloneEvent=!1,b.detachEvent("onclick",l)}),b.cloneNode(!0).fireEvent("onclick")),b=c.createElement("div"),b.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";var m=c.createDocumentFragment();m.appendChild(b.firstChild),d.support.checkClone=m.cloneNode(!0).cloneNode(!0).lastChild.checked,d(function(){var a=c.createElement("div"),b=c.getElementsByTagName("body")[0];if(b){a.style.width=a.style.paddingLeft="1px",b.appendChild(a),d.boxModel=d.support.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,d.support.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="<div style='width:4px;'></div>",d.support.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>";var e=a.getElementsByTagName("td");d.support.reliableHiddenOffsets=e[0].offsetHeight===0,e[0].style.display="",e[1].style.display="none",d.support.reliableHiddenOffsets=d.support.reliableHiddenOffsets&&e[0].offsetHeight===0,a.innerHTML="",b.removeChild(a).style.display="none",a=e=null}});var n=function(a){var b=c.createElement("div");a="on"+a;if(!b.attachEvent)return!0;var d=a in b;d||(b.setAttribute(a,"return;"),d=typeof b[a]==="function"),b=null;return d};d.support.submitBubbles=n("submit"),d.support.changeBubbles=n("change"),b=e=f=null}})();var e=/^(?:\{.*\}|\[.*\])$/;d.extend({cache:{},uuid:0,expando:"jQuery"+(d.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?d.cache[a[d.expando]]:a[d.expando];return!!a&&!g(a)},data:function(a,c,e,f){if(d.acceptData(a)){var g=d.expando,h=typeof c==="string",i,j=a.nodeType,k=j?d.cache:a,l=j?a[d.expando]:a[d.expando]&&d.expando;if((!l||f&&l&&!k[l][g])&&h&&e===b)return;l||(j?a[d.expando]=l=++d.uuid:l=d.expando),k[l]||(k[l]={},j||(k[l].toJSON=d.noop));if(typeof c==="object"||typeof c==="function")f?k[l][g]=d.extend(k[l][g],c):k[l]=d.extend(k[l],c);i=k[l],f&&(i[g]||(i[g]={}),i=i[g]),e!==b&&(i[c]=e);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[c]:i}},removeData:function(b,c,e){if(d.acceptData(b)){var f=d.expando,h=b.nodeType,i=h?d.cache:b,j=h?b[d.expando]:d.expando;if(!i[j])return;if(c){var k=e?i[j][f]:i[j];if(k){delete k[c];if(!g(k))return}}if(e){delete i[j][f];if(!g(i[j]))return}var l=i[j][f];d.support.deleteExpando||i!=a?delete i[j]:i[j]=null,l?(i[j]={},h||(i[j].toJSON=d.noop),i[j][f]=l):h&&(d.support.deleteExpando?delete b[d.expando]:b.removeAttribute?b.removeAttribute(d.expando):b[d.expando]=null)}},_data:function(a,b,c){return d.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=d.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),d.fn.extend({data:function(a,c){var e=null;if(typeof a==="undefined"){if(this.length){e=d.data(this[0]);if(this[0].nodeType===1){var g=this[0].attributes,h;for(var i=0,j=g.length;i<j;i++)h=g[i].name,h.indexOf("data-")===0&&(h=h.substr(5),f(this[0],h,e[h]))}}return e}if(typeof a==="object")return this.each(function(){d.data(this,a)});var k=a.split(".");k[1]=k[1]?"."+k[1]:"";if(c===b){e=this.triggerHandler("getData"+k[1]+"!",[k[0]]),e===b&&this.length&&(e=d.data(this[0],a),e=f(this[0],a,e));return e===b&&k[1]?this.data(k[0]):e}return this.each(function(){var b=d(this),e=[k[0],c];b.triggerHandler("setData"+k[1]+"!",e),d.data(this,a,c),b.triggerHandler("changeData"+k[1]+"!",e)})},removeData:function(a){return this.each(function(){d.removeData(this,a)})}}),d.extend({queue:function(a,b,c){if(a){b=(b||"fx")+"queue";var e=d._data(a,b);if(!c)return e||[];!e||d.isArray(c)?e=d._data(a,b,d.makeArray(c)):e.push(c);return e}},dequeue:function(a,b){b=b||"fx";var c=d.queue(a,b),e=c.shift();e==="inprogress"&&(e=c.shift()),e&&(b==="fx"&&c.unshift("inprogress"),e.call(a,function(){d.dequeue(a,b)})),c.length||d.removeData(a,b+"queue",!0)}}),d.fn.extend({queue:function(a,c){typeof a!=="string"&&(c=a,a="fx");if(c===b)return d.queue(this[0],a);return this.each(function(b){var e=d.queue(this,a,c);a==="fx"&&e[0]!=="inprogress"&&d.dequeue(this,a)})},dequeue:function(a){return this.each(function(){d.dequeue(this,a)})},delay:function(a,b){a=d.fx?d.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(){var c=this;setTimeout(function(){d.dequeue(c,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var h=/[\n\t\r]/g,i=/\s+/,j=/\r/g,k=/^(?:href|src|style)$/,l=/^(?:button|input)$/i,m=/^(?:button|input|object|select|textarea)$/i,n=/^a(?:rea)?$/i,o=/^(?:radio|checkbox)$/i;d.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"},d.fn.extend({attr:function(a,b){return d.access(this,a,b,!0,d.attr)},removeAttr:function(a,b){return this.each(function(){d.attr(this,a,""),this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.addClass(a.call(this,b,c.attr("class")))});if(a&&typeof a==="string"){var b=(a||"").split(i);for(var c=0,e=this.length;c<e;c++){var f=this[c];if(f.nodeType===1)if(f.className){var g=" "+f.className+" ",h=f.className;for(var j=0,k=b.length;j<k;j++)g.indexOf(" "+b[j]+" ")<0&&(h+=" "+b[j]);f.className=d.trim(h)}else f.className=a}}return this},removeClass:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.removeClass(a.call(this,b,c.attr("class")))});if(a&&typeof a==="string"||a===b){var c=(a||"").split(i);for(var e=0,f=this.length;e<f;e++){var g=this[e];if(g.nodeType===1&&g.className)if(a){var j=(" "+g.className+" ").replace(h," ");for(var k=0,l=c.length;k<l;k++)j=j.replace(" "+c[k]+" "," ");g.className=d.trim(j)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,e=typeof b==="boolean";if(d.isFunction(a))return this.each(function(c){var e=d(this);e.toggleClass(a.call(this,c,e.attr("class"),b),b)});return this.each(function(){if(c==="string"){var f,g=0,h=d(this),j=b,k=a.split(i);while(f=k[g++])j=e?j:!h.hasClass(f),h[j?"addClass":"removeClass"](f)}else if(c==="undefined"||c==="boolean")this.className&&d._data(this,"__className__",this.className),this.className=this.className||a===!1?"":d._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ";for(var c=0,d=this.length;c<d;c++)if((" "+this[c].className+" ").replace(h," ").indexOf(b)>-1)return!0;return!1},val:function(a){if(!arguments.length){var c=this[0];if(c){if(d.nodeName(c,"option")){var e=c.attributes.value;return!e||e.specified?c.value:c.text}if(d.nodeName(c,"select")){var f=c.selectedIndex,g=[],h=c.options,i=c.type==="select-one";if(f<0)return null;for(var k=i?f:0,l=i?f+1:h.length;k<l;k++){var m=h[k];if(m.selected&&(d.support.optDisabled?!m.disabled:m.getAttribute("disabled")===null)&&(!m.parentNode.disabled||!d.nodeName(m.parentNode,"optgroup"))){a=d(m).val();if(i)return a;g.push(a)}}if(i&&!g.length&&h.length)return d(h[f]).val();return g}if(o.test(c.type)&&!d.support.checkOn)return c.getAttribute("value")===null?"on":c.value;return(c.value||"").replace(j,"")}return b}var n=d.isFunction(a);return this.each(function(b){var c=d(this),e=a;if(this.nodeType===1){n&&(e=a.call(this,b,c.val())),e==null?e="":typeof e==="number"?e+="":d.isArray(e)&&(e=d.map(e,function(a){return a==null?"":a+""}));if(d.isArray(e)&&o.test(this.type))this.checked=d.inArray(c.val(),e)>=0;else if(d.nodeName(this,"select")){var f=d.makeArray(e);d("option",this).each(function(){this.selected=d.inArray(d(this).val(),f)>=0}),f.length||(this.selectedIndex=-1)}else this.value=e}})}}),d.extend({attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,e,f){if(!a||a.nodeType===3||a.nodeType===8||a.nodeType===2)return b;if(f&&c in d.attrFn)return d(a)[c](e);var g=a.nodeType!==1||!d.isXMLDoc(a),h=e!==b;c=g&&d.props[c]||c;if(a.nodeType===1){var i=k.test(c);if(c==="selected"&&!d.support.optSelected){var j=a.parentNode;j&&(j.selectedIndex,j.parentNode&&j.parentNode.selectedIndex)}if((c in a||a[c]!==b)&&g&&!i){h&&(c==="type"&&l.test(a.nodeName)&&a.parentNode&&d.error("type property can't be changed"),e===null?a.nodeType===1&&a.removeAttribute(c):a[c]=e);if(d.nodeName(a,"form")&&a.getAttributeNode(c))return a.getAttributeNode(c).nodeValue;if(c==="tabIndex"){var o=a.getAttributeNode("tabIndex");return o&&o.specified?o.value:m.test(a.nodeName)||n.test(a.nodeName)&&a.href?0:b}return a[c]}if(!d.support.style&&g&&c==="style"){h&&(a.style.cssText=""+e);return a.style.cssText}h&&a.setAttribute(c,""+e);if(!a.attributes[c]&&(a.hasAttribute&&!a.hasAttribute(c)))return b;var p=!d.support.hrefNormalized&&g&&i?a.getAttribute(c,2):a.getAttribute(c);return p===null?b:p}h&&(a[c]=e);return a[c]}});var p=/\.(.*)$/,q=/^(?:textarea|input|select)$/i,r=/\./g,s=/ /g,t=/[^\w\s.|`]/g,u=function(a){return a.replace(t,"\\$&")};d.event={add:function(c,e,f,g){if(c.nodeType!==3&&c.nodeType!==8){try{d.isWindow(c)&&(c!==a&&!c.frameElement)&&(c=a)}catch(h){}if(f===!1)f=v;else if(!f)return;var i,j;f.handler&&(i=f,f=i.handler),f.guid||(f.guid=d.guid++);var k=d._data(c);if(!k)return;var l=k.events,m=k.handle;l||(k.events=l={}),m||(k.handle=m=function(){return typeof d!=="undefined"&&!d.event.triggered?d.event.handle.apply(m.elem,arguments):b}),m.elem=c,e=e.split(" ");var n,o=0,p;while(n=e[o++]){j=i?d.extend({},i):{handler:f,data:g},n.indexOf(".")>-1?(p=n.split("."),n=p.shift(),j.namespace=p.slice(0).sort().join(".")):(p=[],j.namespace=""),j.type=n,j.guid||(j.guid=f.guid);var q=l[n],r=d.event.special[n]||{};if(!q){q=l[n]=[];if(!r.setup||r.setup.call(c,g,p,m)===!1)c.addEventListener?c.addEventListener(n,m,!1):c.attachEvent&&c.attachEvent("on"+n,m)}r.add&&(r.add.call(c,j),j.handler.guid||(j.handler.guid=f.guid)),q.push(j),d.event.global[n]=!0}c=null}},global:{},remove:function(a,c,e,f){if(a.nodeType!==3&&a.nodeType!==8){e===!1&&(e=v);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=d.hasData(a)&&d._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(e=c.handler,c=c.type);if(!c||typeof c==="string"&&c.charAt(0)==="."){c=c||"";for(h in t)d.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+d.map(m.slice(0).sort(),u).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!e){for(j=0;j<p.length;j++){q=p[j];if(l||n.test(q.namespace))d.event.remove(a,r,q.handler,j),p.splice(j--,1)}continue}o=d.event.special[h]||{};for(j=f||0;j<p.length;j++){q=p[j];if(e.guid===q.guid){if(l||n.test(q.namespace))f==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(f!=null)break}}if(p.length===0||f!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&d.removeEvent(a,h,s.handle),g=null,delete t[h]}if(d.isEmptyObject(t)){var w=s.handle;w&&(w.elem=null),delete s.events,delete s.handle,d.isEmptyObject(s)&&d.removeData(a,b,!0)}}},trigger:function(a,c,e){var f=a.type||a,g=arguments[3];if(!g){a=typeof a==="object"?a[d.expando]?a:d.extend(d.Event(f),a):d.Event(f),f.indexOf("!")>=0&&(a.type=f=f.slice(0,-1),a.exclusive=!0),e||(a.stopPropagation(),d.event.global[f]&&d.each(d.cache,function(){var b=d.expando,e=this[b];e&&e.events&&e.events[f]&&d.event.trigger(a,c,e.handle.elem)}));if(!e||e.nodeType===3||e.nodeType===8)return b;a.result=b,a.target=e,c=d.makeArray(c),c.unshift(a)}a.currentTarget=e;var h=d._data(e,"handle");h&&h.apply(e,c);var i=e.parentNode||e.ownerDocument;try{e&&e.nodeName&&d.noData[e.nodeName.toLowerCase()]||e["on"+f]&&e["on"+f].apply(e,c)===!1&&(a.result=!1,a.preventDefault())}catch(j){}if(!a.isPropagationStopped()&&i)d.event.trigger(a,c,i,!0);else if(!a.isDefaultPrevented()){var k,l=a.target,m=f.replace(p,""),n=d.nodeName(l,"a")&&m==="click",o=d.event.special[m]||{};if((!o._default||o._default.call(e,a)===!1)&&!n&&!(l&&l.nodeName&&d.noData[l.nodeName.toLowerCase()])){try{l[m]&&(k=l["on"+m],k&&(l["on"+m]=null),d.event.triggered=!0,l[m]())}catch(q){}k&&(l["on"+m]=k),d.event.triggered=!1}}},handle:function(c){var e,f,g,h,i,j=[],k=d.makeArray(arguments);c=k[0]=d.event.fix(c||a.event),c.currentTarget=this,e=c.type.indexOf(".")<0&&!c.exclusive,e||(g=c.type.split("."),c.type=g.shift(),j=g.slice(0).sort(),h=new RegExp("(^|\\.)"+j.join("\\.(?:.*\\.)?")+"(\\.|$)")),c.namespace=c.namespace||j.join("."),i=d._data(this,"events"),f=(i||{})[c.type];if(i&&f){f=f.slice(0);for(var l=0,m=f.length;l<m;l++){var n=f[l];if(e||h.test(n.namespace)){c.handler=n.handler,c.data=n.data,c.handleObj=n;var o=n.handler.apply(this,k);o!==b&&(c.result=o,o===!1&&(c.preventDefault(),c.stopPropagation()));if(c.isImmediatePropagationStopped())break}}}return c.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[d.expando])return a;var e=a;a=d.Event(e);for(var f=this.props.length,g;f;)g=this.props[--f],a[g]=e[g];a.target||(a.target=a.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),!a.relatedTarget&&a.fromElement&&(a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement);if(a.pageX==null&&a.clientX!=null){var h=c.documentElement,i=c.body;a.pageX=a.clientX+(h&&h.scrollLeft||i&&i.scrollLeft||0)-(h&&h.clientLeft||i&&i.clientLeft||0),a.pageY=a.clientY+(h&&h.scrollTop||i&&i.scrollTop||0)-(h&&h.clientTop||i&&i.clientTop||0)}a.which==null&&(a.charCode!=null||a.keyCode!=null)&&(a.which=a.charCode!=null?a.charCode:a.keyCode),!a.metaKey&&a.ctrlKey&&(a.metaKey=a.ctrlKey),!a.which&&a.button!==b&&(a.which=a.button&1?1:a.button&2?3:a.button&4?2:0);return a},guid:1e8,proxy:d.proxy,special:{ready:{setup:d.bindReady,teardown:d.noop},live:{add:function(a){d.event.add(this,F(a.origType,a.selector),d.extend({},a,{handler:E,guid:a.handler.guid}))},remove:function(a){d.event.remove(this,F(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,c){d.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}}},d.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},d.Event=function(a){if(!this.preventDefault)return new d.Event(a);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?w:v):this.type=a,this.timeStamp=d.now(),this[d.expando]=!0},d.Event.prototype={preventDefault:function(){this.isDefaultPrevented=w;var a=this.originalEvent;a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=w;var a=this.originalEvent;a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=w,this.stopPropagation()},isDefaultPrevented:v,isPropagationStopped:v,isImmediatePropagationStopped:v};var x=function(a){var b=a.relatedTarget;try{if(b!==c&&!b.parentNode)return;while(b&&b!==this)b=b.parentNode;b!==this&&(a.type=a.data,d.event.handle.apply(this,arguments))}catch(e){}},y=function(a){a.type=a.data,d.event.handle.apply(this,arguments)};d.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){d.event.special[a]={setup:function(c){d.event.add(this,b,c&&c.selector?y:x,a)},teardown:function(a){d.event.remove(this,b,a&&a.selector?y:x)}}}),d.support.submitBubbles||(d.event.special.submit={setup:function(a,b){if(this.nodeName&&this.nodeName.toLowerCase()!=="form")d.event.add(this,"click.specialSubmit",function(a){var b=a.target,c=b.type;(c==="submit"||c==="image")&&d(b).closest("form").length&&C("submit",this,arguments)}),d.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,c=b.type;(c==="text"||c==="password")&&d(b).closest("form").length&&a.keyCode===13&&C("submit",this,arguments)});else return!1},teardown:function(a){d.event.remove(this,".specialSubmit")}});if(!d.support.changeBubbles){var z,A=function(a){var b=a.type,c=a.value;b==="radio"||b==="checkbox"?c=a.checked:b==="select-multiple"?c=a.selectedIndex>-1?d.map(a.options,function(a){return a.selected}).join("-"):"":a.nodeName.toLowerCase()==="select"&&(c=a.selectedIndex);return c},B=function B(a){var c=a.target,e,f;if(q.test(c.nodeName)&&!c.readOnly){e=d._data(c,"_change_data"),f=A(c),(a.type!=="focusout"||c.type!=="radio")&&d._data(c,"_change_data",f);if(e===b||f===e)return;if(e!=null||f)a.type="change",a.liveFired=b,d.event.trigger(a,arguments[1],c)}};d.event.special.change={filters:{focusout:B,beforedeactivate:B,click:function(a){var b=a.target,c=b.type;(c==="radio"||c==="checkbox"||b.nodeName.toLowerCase()==="select")&&B.call(this,a)},keydown:function(a){var b=a.target,c=b.type;(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&B.call(this,a)},beforeactivate:function(a){var b=a.target;d._data(b,"_change_data",A(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in z)d.event.add(this,c+".specialChange",z[c]);return q.test(this.nodeName)},teardown:function(a){d.event.remove(this,".specialChange");return q.test(this.nodeName)}},z=d.event.special.change.filters,z.focus=z.beforeactivate}c.addEventListener&&d.each({focus:"focusin",blur:"focusout"},function(a,b){function c(a){a=d.event.fix(a),a.type=b;return d.event.handle.call(this,a)}d.event.special[b]={setup:function(){this.addEventListener(a,c,!0)},teardown:function(){this.removeEventListener(a,c,!0)}}}),d.each(["bind","one"],function(a,c){d.fn[c]=function(a,e,f){if(typeof a==="object"){for(var g in a)this[c](g,e,a[g],f);return this}if(d.isFunction(e)||e===!1)f=e,e=b;var h=c==="one"?d.proxy(f,function(a){d(this).unbind(a,h);return f.apply(this,arguments)}):f;if(a==="unload"&&c!=="one")this.one(a,e,f);else for(var i=0,j=this.length;i<j;i++)d.event.add(this[i],a,h,e);return this}}),d.fn.extend({unbind:function(a,b){if(typeof a!=="object"||a.preventDefault)for(var e=0,f=this.length;e<f;e++)d.event.remove(this[e],a,b);else for(var c in a)this.unbind(c,a[c]);return this},delegate:function(a,b,c,d){return this.live(b,c,d,a)},undelegate:function(a,b,c){return arguments.length===0?this.unbind("live"):this.die(b,null,c,a)},trigger:function(a,b){return this.each(function(){d.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){var c=d.Event(a);c.preventDefault(),c.stopPropagation(),d.event.trigger(c,b,this[0]);return c.result}},toggle:function(a){var b=arguments,c=1;while(c<b.length)d.proxy(a,b[c++]);return this.click(d.proxy(a,function(e){var f=(d._data(this,"lastToggle"+a.guid)||0)%c;d._data(this,"lastToggle"+a.guid,f+1),e.preventDefault();return b[f].apply(this,arguments)||!1}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var D={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};d.each(["live","die"],function(a,c){d.fn[c]=function(a,e,f,g){var h,i=0,j,k,l,m=g||this.selector,n=g?this:d(this.context);if(typeof a==="object"&&!a.preventDefault){for(var o in a)n[c](o,e,a[o],m);return this}d.isFunction(e)&&(f=e,e=b),a=(a||"").split(" ");while((h=a[i++])!=null){j=p.exec(h),k="",j&&(k=j[0],h=h.replace(p,""));if(h==="hover"){a.push("mouseenter"+k,"mouseleave"+k);continue}l=h,h==="focus"||h==="blur"?(a.push(D[h]+k),h=h+k):h=(D[h]||h)+k;if(c==="live")for(var q=0,r=n.length;q<r;q++)d.event.add(n[q],"live."+F(h,m),{data:e,selector:m,handler:f,origType:h,origHandler:f,preType:l});else n.unbind("live."+F(h,m),f)}return this}}),d.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){d.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.bind(b,a,c):this.trigger(b)},d.attrFn&&(d.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}if(i.nodeType===1){f||(i.sizcache=c,i.sizset=g);if(typeof b!=="string"){if(i===b){j=!0;break}}else if(k.filter(b,[i]).length>0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}i.nodeType===1&&!f&&(i.sizcache=c,i.sizset=g);if(i.nodeName.toLowerCase()===b){j=i;break}i=i[a]}d[g]=j}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,e,g){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!=="string")return e;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(f.call(n)==="[object Array]")if(u)if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&e.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&e.push(j[t]);else e.push.apply(e,n);else p(n,e);o&&(k(o,h,e,g),k.uniqueSort(e));return e};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},k.matches=function(a,b){return k(a,null,null,b)},k.matchesSelector=function(a,b){return k(b,null,null,[a]).length>0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e<f;e++){var g,h=l.order[e];if(g=l.leftMatch[h].exec(a)){var j=g[1];g.splice(1,1);if(j.substr(j.length-1)!=="\\"){g[1]=(g[1]||"").replace(i,""),d=l.find[h](g,b,c);if(d!=null){a=a.replace(l.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!=="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},k.filter=function(a,c,d,e){var f,g,h=a,i=[],j=c,m=c&&c[0]&&k.isXML(c[0]);while(a&&c.length){for(var n in l.filter)if((f=l.leftMatch[n].exec(a))!=null&&f[2]){var o,p,q=l.filter[n],r=f[1];g=!1,f.splice(1,1);if(r.substr(r.length-1)==="\\")continue;j===i&&(i=[]);if(l.preFilter[n]){f=l.preFilter[n](f,j,d,i,e,m);if(f){if(f===!0)continue}else g=o=!0}if(f)for(var s=0;(p=j[s])!=null;s++)if(p){o=q(p,f,s,j);var t=e^!!o;d&&o!=null?t?g=!0:j[s]=!1:t&&(i.push(p),g=!0)}if(o!==b){d||(j=i),a=a.replace(l.match[n],"");if(!g)return[];break}}if(a===h)if(g==null)k.error(a);else break;h=a}return j},k.error=function(a){throw"Syntax error, unrecognized expression: "+a};var l=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b==="string",d=c&&!j.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1){}a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},">":function(a,b){var c,d=typeof b==="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&k.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=u;typeof b==="string"&&!j.test(b)&&(b=b.toLowerCase(),d=b,g=t),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=u;typeof b==="string"&&!j.test(b)&&(b=b.toLowerCase(),d=b,g=t),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!=="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!=="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!=="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(i,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){return"text"===a.getAttribute("type")},radio:function(a){return"radio"===a.type},checkbox:function(a){return"checkbox"===a.type},file:function(a){return"file"===a.type},password:function(a){return"password"===a.type},submit:function(a){return"submit"===a.type},image:function(a){return"image"===a.type},reset:function(a){return"reset"===a.type},button:function(a){return"button"===a.type||a.nodeName.toLowerCase()==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}k.error(e)},CHILD:function(a,b){var c=b[1],d=a;switch(c){case"only":case"first":while(d=d.previousSibling)if(d.nodeType===1)return!1;if(c==="first")return!0;d=a;case"last":while(d=d.nextSibling)if(d.nodeType===1)return!1;return!0;case"nth":var e=b[2],f=b[3];if(e===1&&f===0)return!0;var g=b[0],h=a.parentNode;if(h&&(h.sizcache!==g||!a.nodeIndex)){var i=0;for(d=h.firstChild;d;d=d.nextSibling)d.nodeType===1&&(d.nodeIndex=++i);h.sizcache=g}var j=a.nodeIndex-f;return e===0?j===0:j%e===0&&j/e>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(f.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length==="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var r,s;c.documentElement.compareDocumentPosition?r=function(a,b){if(a===b){g=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(r=function(a,b){var c,d,e=[],f=[],h=a.parentNode,i=b.parentNode,j=h;if(a===b){g=!0;return 0}if(h===i)return s(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return s(e[k],f[k]);return k===c?s(a,f[k],-1):s(e[k],b,1)},s=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),k.getText=function(a){var b="",c;for(var d=0;a[d];d++)c=a[d],c.nodeType===3||c.nodeType===4?b+=c.nodeValue:c.nodeType!==8&&(b+=k.getText(c.childNodes));return b},function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!=="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!=="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!=="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!=="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector,d=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(e){d=!0}b&&(k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(d||!l.match.PSEUDO.test(c)&&!/!=/.test(c))return b.call(a,c)}catch(e){}return k(c,null,null,[a]).length>0})}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!=="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g<h;g++)k(a,f[g],d);return k.filter(e,d)};d.find=k,d.expr=k.selectors,d.expr[":"]=d.expr.filters,d.unique=k.uniqueSort,d.text=k.getText,d.isXMLDoc=k.isXML,d.contains=k.contains}();var G=/Until$/,H=/^(?:parents|prevUntil|prevAll)/,I=/,/,J=/^.[^:#\[\.,]*$/,K=Array.prototype.slice,L=d.expr.match.POS,M={children:!0,contents:!0,next:!0,prev:!0};d.fn.extend({find:function(a){var b=this.pushStack("","find",a),c=0;for(var e=0,f=this.length;e<f;e++){c=b.length,d.find(a,this[e],b);if(e>0)for(var g=c;g<b.length;g++)for(var h=0;h<c;h++)if(b[h]===b[g]){b.splice(g--,1);break}}return b},has:function(a){var b=d(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(d.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(O(this,a,!1),"not",a)},filter:function(a){return this.pushStack(O(this,a,!0),"filter",a)},is:function(a){return!!a&&d.filter(a,this).length>0},closest:function(a,b){var c=[],e,f,g=this[0];if(d.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(e=0,f=a.length;e<f;e++)i=a[e],j[i]||(j[i]=d.expr.match.POS.test(i)?d(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){for(i in j)h=j[i],(h.jquery?h.index(g)>-1:d(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=L.test(a)?d(a,b||this.context):null;for(e=0,f=this.length;e<f;e++){g=this[e];while(g){if(l?l.index(g)>-1:d.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b)break}}c=c.length>1?d.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a==="string")return d.inArray(this[0],a?d(a):this.parent().children());return d.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a==="string"?d(a,b):d.makeArray(a),e=d.merge(this.get(),c);return this.pushStack(N(c[0])||N(e[0])?e:d.unique(e))},andSelf:function(){return this.add(this.prevObject)}}),d.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return d.dir(a,"parentNode")},parentsUntil:function(a,b,c){return d.dir(a,"parentNode",c)},next:function(a){return d.nth(a,2,"nextSibling")},prev:function(a){return d.nth(a,2,"previousSibling")},nextAll:function(a){return d.dir(a,"nextSibling")},prevAll:function(a){return d.dir(a,"previousSibling")},nextUntil:function(a,b,c){return d.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return d.dir(a,"previousSibling",c)},siblings:function(a){return d.sibling(a.parentNode.firstChild,a)},children:function(a){return d.sibling(a.firstChild)},contents:function(a){return d.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:d.makeArray(a.childNodes)}},function(a,b){d.fn[a]=function(c,e){var f=d.map(this,b,c),g=K.call(arguments);G.test(a)||(e=c),e&&typeof e==="string"&&(f=d.filter(e,f)),f=this.length>1&&!M[a]?d.unique(f):f,(this.length>1||I.test(e))&&H.test(a)&&(f=f.reverse());return this.pushStack(f,a,g.join(","))}}),d.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?d.find.matchesSelector(b[0],a)?[b[0]]:[]:d.find.matches(a,b)},dir:function(a,c,e){var f=[],g=a[c];while(g&&g.nodeType!==9&&(e===b||g.nodeType!==1||!d(g).is(e)))g.nodeType===1&&f.push(g),g=g[c];return f},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var P=/ jQuery\d+="(?:\d+|null)"/g,Q=/^\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,S=/<([\w:]+)/,T=/<tbody/i,U=/<|&#?\w+;/,V=/<(?:script|object|embed|option|style)/i,W=/checked\s*(?:[^=]|=\s*.checked.)/i,X={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};X.optgroup=X.option,X.tbody=X.tfoot=X.colgroup=X.caption=X.thead,X.th=X.td,d.support.htmlSerialize||(X._default=[1,"div<div>","</div>"]),d.fn.extend({text:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.text(a.call(this,b,c.text()))});if(typeof a!=="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return d.text(this)},wrapAll:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapAll(a.call(this,b))});if(this[0]){var b=d(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapInner(a.call(this,b))});return this.each(function(){var b=d(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){d(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){d.nodeName(this,"body")||d(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=d(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,d(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,e;(e=this[c])!=null;c++)if(!a||d.filter(a,[e]).length)!b&&e.nodeType===1&&(d.cleanData(e.getElementsByTagName("*")),d.cleanData([e])),e.parentNode&&e.parentNode.removeChild(e);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&d.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return d.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(P,""):null;if(typeof a!=="string"||V.test(a)||!d.support.leadingWhitespace&&Q.test(a)||X[(S.exec(a)||["",""])[1].toLowerCase()])d.isFunction(a)?this.each(function(b){var c=d(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);else{a=a.replace(R,"<$1></$2>");try{for(var c=0,e=this.length;c<e;c++)this[c].nodeType===1&&(d.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(f){this.empty().append(a)}}return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(d.isFunction(a))return this.each(function(b){var c=d(this),e=c.html();c.replaceWith(a.call(this,b,e))});typeof a!=="string"&&(a=d(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;d(this).remove(),b?d(b).before(a):d(c).append(a)})}return this.pushStack(d(d.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,e){var f,g,h,i,j=a[0],k=[];if(!d.support.checkClone&&arguments.length===3&&typeof j==="string"&&W.test(j))return this.each(function(){d(this).domManip(a,c,e,!0)});if(d.isFunction(j))return this.each(function(f){var g=d(this);a[0]=j.call(this,f,c?g.html():b),g.domManip(a,c,e)});if(this[0]){i=j&&j.parentNode,d.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?f={fragment:i}:f=d.buildFragment(a,this,k),h=f.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&d.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)e.call(c?Y(this[l],g):this[l],f.cacheable||m>1&&l<n?d.clone(h,!0,!0):h)}k.length&&d.each(k,ba)}return this}}),d.buildFragment=function(a,b,e){var f,g,h,i=b&&b[0]?b[0].ownerDocument||b[0]:c;a.length===1&&typeof a[0]==="string"&&a[0].length<512&&i===c&&a[0].charAt(0)==="<"&&!V.test(a[0])&&(d.support.checkClone||!W.test(a[0]))&&(g=!0,h=d.fragments[a[0]],h&&(h!==1&&(f=h))),f||(f=i.createDocumentFragment(),d.clean(a,i,f,e)),g&&(d.fragments[a[0]]=h?f:1);return{fragment:f,cacheable:g}},d.fragments={},d.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){d.fn[a]=function(c){var e=[],f=d(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&f.length===1){f[b](this[0]);return this}for(var h=0,i=f.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();d(f[h])[b](j),e=e.concat(j)}return this.pushStack(e,a,f.selector)}}),d.extend({clone:function(a,b,c){var e=a.cloneNode(!0),f,g,h;if((!d.support.noCloneEvent||!d.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!d.isXMLDoc(a)){$(a,e),f=_(a),g=_(e);for(h=0;f[h];++h)$(f[h],g[h])}if(b){Z(a,e);if(c){f=_(a),g=_(e);for(h=0;f[h];++h)Z(f[h],g[h])}}return e},clean:function(a,b,e,f){b=b||c,typeof b.createElement==="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var g=[];for(var h=0,i;(i=a[h])!=null;h++){typeof i==="number"&&(i+="");if(!i)continue;if(typeof i!=="string"||U.test(i)){if(typeof i==="string"){i=i.replace(R,"<$1></$2>");var j=(S.exec(i)||["",""])[1].toLowerCase(),k=X[j]||X._default,l=k[0],m=b.createElement("div");m.innerHTML=k[1]+i+k[2];while(l--)m=m.lastChild;if(!d.support.tbody){var n=T.test(i),o=j==="table"&&!n?m.firstChild&&m.firstChild.childNodes:k[1]==="<table>"&&!n?m.childNodes:[];for(var p=o.length-1;p>=0;--p)d.nodeName(o[p],"tbody")&&!o[p].childNodes.length&&o[p].parentNode.removeChild(o[p])}!d.support.leadingWhitespace&&Q.test(i)&&m.insertBefore(b.createTextNode(Q.exec(i)[0]),m.firstChild),i=m.childNodes}}else i=b.createTextNode(i);i.nodeType?g.push(i):g=d.merge(g,i)}if(e)for(h=0;g[h];h++)!f||!d.nodeName(g[h],"script")||g[h].type&&g[h].type.toLowerCase()!=="text/javascript"?(g[h].nodeType===1&&g.splice.apply(g,[h+1,0].concat(d.makeArray(g[h].getElementsByTagName("script")))),e.appendChild(g[h])):f.push(g[h].parentNode?g[h].parentNode.removeChild(g[h]):g[h]);return g},cleanData:function(a){var b,c,e=d.cache,f=d.expando,g=d.event.special,h=d.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&d.noData[j.nodeName.toLowerCase()])continue;c=j[d.expando];if(c){b=e[c]&&e[c][f];if(b&&b.events){for(var k in b.events)g[k]?d.event.remove(j,k):d.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[d.expando]:j.removeAttribute&&j.removeAttribute(d.expando),delete e[c]}}}});var bb=/alpha\([^)]*\)/i,bc=/opacity=([^)]*)/,bd=/-([a-z])/ig,be=/([A-Z])/g,bf=/^-?\d+(?:px)?$/i,bg=/^-?\d/,bh={position:"absolute",visibility:"hidden",display:"block"},bi=["Left","Right"],bj=["Top","Bottom"],bk,bl,bm,bn=function(a,b){return b.toUpperCase()};d.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return d.access(this,a,c,!0,function(a,c,e){return e!==b?d.style(a,c,e):d.css(a,c)})},d.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bk(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{zIndex:!0,fontWeight:!0,opacity:!0,zoom:!0,lineHeight:!0},cssProps:{"float":d.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,e,f){if(a&&a.nodeType!==3&&a.nodeType!==8&&a.style){var g,h=d.camelCase(c),i=a.style,j=d.cssHooks[h];c=d.cssProps[h]||h;if(e===b){if(j&&"get"in j&&(g=j.get(a,!1,f))!==b)return g;return i[c]}if(typeof e==="number"&&isNaN(e)||e==null)return;typeof e==="number"&&!d.cssNumber[h]&&(e+="px");if(!j||!("set"in j)||(e=j.set(a,e))!==b)try{i[c]=e}catch(k){}}},css:function(a,c,e){var f,g=d.camelCase(c),h=d.cssHooks[g];c=d.cssProps[g]||g;if(h&&"get"in h&&(f=h.get(a,!0,e))!==b)return f;if(bk)return bk(a,c,g)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]},camelCase:function(a){return a.replace(bd,bn)}}),d.curCSS=d.css,d.each(["height","width"],function(a,b){d.cssHooks[b]={get:function(a,c,e){var f;if(c){a.offsetWidth!==0?f=bo(a,b,e):d.swap(a,bh,function(){f=bo(a,b,e)});if(f<=0){f=bk(a,b,b),f==="0px"&&bm&&(f=bm(a,b,b));if(f!=null)return f===""||f==="auto"?"0px":f}if(f<0||f==null){f=a.style[b];return f===""||f==="auto"?"0px":f}return typeof f==="string"?f:f+"px"}},set:function(a,b){if(!bf.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),d.support.opacity||(d.cssHooks.opacity={get:function(a,b){return bc.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style;c.zoom=1;var e=d.isNaN(b)?"":"alpha(opacity="+b*100+")",f=c.filter||"";c.filter=bb.test(f)?f.replace(bb,e):c.filter+" "+e}}),c.defaultView&&c.defaultView.getComputedStyle&&(bl=function(a,c,e){var f,g,h;e=e.replace(be,"-$1").toLowerCase();if(!(g=a.ownerDocument.defaultView))return b;if(h=g.getComputedStyle(a,null))f=h.getPropertyValue(e),f===""&&!d.contains(a.ownerDocument.documentElement,a)&&(f=d.style(a,e));return f}),c.documentElement.currentStyle&&(bm=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bf.test(d)&&bg.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bk=bl||bm,d.expr&&d.expr.filters&&(d.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!d.support.reliableHiddenOffsets&&(a.style.display||d.css(a,"display"))==="none"},d.expr.filters.visible=function(a){return!d.expr.filters.hidden(a)});var bp=/%20/g,bq=/\[\]$/,br=/\r?\n/g,bs=/#.*$/,bt=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bu=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bv=/(?:^file|^widget|\-extension):$/,bw=/^(?:GET|HEAD)$/,bx=/^\/\//,by=/\?/,bz=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bA=/^(?:select|textarea)/i,bB=/\s+/,bC=/([?&])_=[^&]*/,bD=/(^|\-)([a-z])/g,bE=function(a,b,c){return b+c.toUpperCase()},bF=/^([\w\+\.\-]+:)\/\/([^\/?#:]*)(?::(\d+))?/,bG=d.fn.load,bH={},bI={},bJ,bK;try{bJ=c.location.href}catch(bL){bJ=c.createElement("a"),bJ.href="",bJ=bJ.href}bK=bF.exec(bJ.toLowerCase()),d.fn.extend({load:function(a,c,e){if(typeof a!=="string"&&bG)return bG.apply(this,arguments);if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var g=a.slice(f,a.length);a=a.slice(0,f)}var h="GET";c&&(d.isFunction(c)?(e=c,c=b):typeof c==="object"&&(c=d.param(c,d.ajaxSettings.traditional),h="POST"));var i=this;d.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?d("<div>").append(c.replace(bz,"")).find(g):c)),e&&i.each(e,[c,b,a])}});return this},serialize:function(){return d.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?d.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bA.test(this.nodeName)||bu.test(this.type))}).map(function(a,b){var c=d(this).val();return c==null?null:d.isArray(c)?d.map(c,function(a,c){return{name:b.name,value:a.replace(br,"\r\n")}}):{name:b.name,value:c.replace(br,"\r\n")}}).get()}}),d.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){d.fn[b]=function(a){return this.bind(b,a)}}),d.each(["get","post"],function(a,c){d[c]=function(a,e,f,g){d.isFunction(e)&&(g=g||f,f=e,e=b);return d.ajax({type:c,url:a,data:e,success:f,dataType:g})}}),d.extend({getScript:function(a,c){return d.get(a,b,c,"script")},getJSON:function(a,b,c){return d.get(a,b,c,"json")},ajaxSetup:function(a,b){b?d.extend(!0,a,d.ajaxSettings,b):(b=a,a=d.extend(!0,d.ajaxSettings,b));for(var c in {context:1,url:1})c in b?a[c]=b[c]:c in d.ajaxSettings&&(a[c]=d.ajaxSettings[c]);return a},ajaxSettings:{url:bJ,isLocal:bv.test(bK[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":d.parseJSON,"text xml":d.parseXML}},ajaxPrefilter:bM(bH),ajaxTransport:bM(bI),ajax:function(a,c){function v(a,c,l,n){if(r!==2){r=2,p&&clearTimeout(p),o=b,m=n||"",u.readyState=a?4:0;var q,t,v,w=l?bP(e,u,l):b,x,y;if(a>=200&&a<300||a===304){if(e.ifModified){if(x=u.getResponseHeader("Last-Modified"))d.lastModified[k]=x;if(y=u.getResponseHeader("Etag"))d.etag[k]=y}if(a===304)c="notmodified",q=!0;else try{t=bQ(e,w),c="success",q=!0}catch(z){c="parsererror",v=z}}else{v=c;if(!c||a)c="error",a<0&&(a=0)}u.status=a,u.statusText=c,q?h.resolveWith(f,[t,c,u]):h.rejectWith(f,[u,c,v]),u.statusCode(j),j=b,s&&g.trigger("ajax"+(q?"Success":"Error"),[u,e,q?t:v]),i.resolveWith(f,[u,c]),s&&(g.trigger("ajaxComplete",[u,e]),--d.active||d.event.trigger("ajaxStop"))}}typeof a==="object"&&(c=a,a=b),c=c||{};var e=d.ajaxSetup({},c),f=e.context||e,g=f!==e&&(f.nodeType||f instanceof d)?d(f):d.event,h=d.Deferred(),i=d._Deferred(),j=e.statusCode||{},k,l={},m,n,o,p,q,r=0,s,t,u={readyState:0,setRequestHeader:function(a,b){r||(l[a.toLowerCase().replace(bD,bE)]=b);return this},getAllResponseHeaders:function(){return r===2?m:null},getResponseHeader:function(a){var c;if(r===2){if(!n){n={};while(c=bt.exec(m))n[c[1].toLowerCase()]=c[2]}c=n[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){r||(e.mimeType=a);return this},abort:function(a){a=a||"abort",o&&o.abort(a),v(0,a);return this}};h.promise(u),u.success=u.done,u.error=u.fail,u.complete=i.done,u.statusCode=function(a){if(a){var b;if(r<2)for(b in a)j[b]=[j[b],a[b]];else b=a[u.status],u.then(b,b)}return this},e.url=((a||e.url)+"").replace(bs,"").replace(bx,bK[1]+"//"),e.dataTypes=d.trim(e.dataType||"*").toLowerCase().split(bB),e.crossDomain||(q=bF.exec(e.url.toLowerCase()),e.crossDomain=q&&(q[1]!=bK[1]||q[2]!=bK[2]||(q[3]||(q[1]==="http:"?80:443))!=(bK[3]||(bK[1]==="http:"?80:443)))),e.data&&e.processData&&typeof e.data!=="string"&&(e.data=d.param(e.data,e.traditional)),bN(bH,e,c,u);if(r===2)return!1;s=e.global,e.type=e.type.toUpperCase(),e.hasContent=!bw.test(e.type),s&&d.active++===0&&d.event.trigger("ajaxStart");if(!e.hasContent){e.data&&(e.url+=(by.test(e.url)?"&":"?")+e.data),k=e.url;if(e.cache===!1){var w=d.now(),x=e.url.replace(bC,"$1_="+w);e.url=x+(x===e.url?(by.test(e.url)?"&":"?")+"_="+w:"")}}if(e.data&&e.hasContent&&e.contentType!==!1||c.contentType)l["Content-Type"]=e.contentType;e.ifModified&&(k=k||e.url,d.lastModified[k]&&(l["If-Modified-Since"]=d.lastModified[k]),d.etag[k]&&(l["If-None-Match"]=d.etag[k])),l.Accept=e.dataTypes[0]&&e.accepts[e.dataTypes[0]]?e.accepts[e.dataTypes[0]]+(e.dataTypes[0]!=="*"?", */*; q=0.01":""):e.accepts["*"];for(t in e.headers)u.setRequestHeader(t,e.headers[t]);if(e.beforeSend&&(e.beforeSend.call(f,u,e)===!1||r===2)){u.abort();return!1}for(t in {success:1,error:1,complete:1})u[t](e[t]);o=bN(bI,e,c,u);if(o){u.readyState=1,s&&g.trigger("ajaxSend",[u,e]),e.async&&e.timeout>0&&(p=setTimeout(function(){u.abort("timeout")},e.timeout));try{r=1,o.send(l,v)}catch(y){status<2?v(-1,y):d.error(y)}}else v(-1,"No Transport");return u},param:function(a,c){var e=[],f=function(a,b){b=d.isFunction(b)?b():b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=d.ajaxSettings.traditional);if(d.isArray(a)||a.jquery&&!d.isPlainObject(a))d.each(a,function(){f(this.name,this.value)});else for(var g in a)bO(g,a[g],c,f);return e.join("&").replace(bp,"+")}}),d.extend({active:0,lastModified:{},etag:{}});var bR=d.now(),bS=/(\=)\?(&|$)|()\?\?()/i;d.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return d.expando+"_"+bR++}}),d.ajaxPrefilter("json jsonp",function(b,c,e){var f=typeof b.data==="string";if(b.dataTypes[0]==="jsonp"||c.jsonpCallback||c.jsonp!=null||b.jsonp!==!1&&(bS.test(b.url)||f&&bS.test(b.data))){var g,h=b.jsonpCallback=d.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2",m=function(){a[h]=i,g&&d.isFunction(i)&&a[h](g[0])};b.jsonp!==!1&&(j=j.replace(bS,l),b.url===j&&(f&&(k=k.replace(bS,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},e.then(m,m),b.converters["script json"]=function(){g||d.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),d.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){d.globalEval(a);return a}}}),d.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),d.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var bT=d.now(),bU,bV;d.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&bX()||bY()}:bX,bV=d.ajaxSettings.xhr(),d.support.ajax=!!bV,d.support.cors=bV&&"withCredentials"in bV,bV=b,d.support.ajax&&d.ajaxTransport(function(a){if(!a.crossDomain||d.support.cors){var c;return{send:function(e,f){var g=a.xhr(),h,i;a.username?g.open(a.type,a.url,a.async,a.username,a.password):g.open(a.type,a.url,a.async);if(a.xhrFields)for(i in a.xhrFields)g[i]=a.xhrFields[i];a.mimeType&&g.overrideMimeType&&g.overrideMimeType(a.mimeType),(!a.crossDomain||a.hasContent)&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(i in e)g.setRequestHeader(i,e[i])}catch(j){}g.send(a.hasContent&&a.data||null),c=function(e,i){var j,k,l,m,n;try{if(c&&(i||g.readyState===4)){c=b,h&&(g.onreadystatechange=d.noop,delete bU[h]);if(i)g.readyState!==4&&g.abort();else{j=g.status,l=g.getAllResponseHeaders(),m={},n=g.responseXML,n&&n.documentElement&&(m.xml=n),m.text=g.responseText;try{k=g.statusText}catch(o){k=""}j||!a.isLocal||a.crossDomain?j===1223&&(j=204):j=m.text?200:404}}}catch(p){i||f(-1,p)}m&&f(j,k,m,l)},a.async&&g.readyState!==4?(bU||(bU={},bW()),h=bT++,g.onreadystatechange=bU[h]=c):c()},abort:function(){c&&c(0,1)}}}});var bZ={},b$=/^(?:toggle|show|hide)$/,b_=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,ca,cb=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];d.fn.extend({show:function(a,b,c){var e,f;if(a||a===0)return this.animate(cc("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)e=this[g],f=e.style.display,!d._data(e,"olddisplay")&&f==="none"&&(f=e.style.display=""),f===""&&d.css(e,"display")==="none"&&d._data(e,"olddisplay",cd(e.nodeName));for(g=0;g<h;g++){e=this[g],f=e.style.display;if(f===""||f==="none")e.style.display=d._data(e,"olddisplay")||""}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cc("hide",3),a,b,c);for(var e=0,f=this.length;e<f;e++){var g=d.css(this[e],"display");g!=="none"&&!d._data(this[e],"olddisplay")&&d._data(this[e],"olddisplay",g)}for(e=0;e<f;e++)this[e].style.display="none";return this},_toggle:d.fn.toggle,toggle:function(a,b,c){var e=typeof a==="boolean";d.isFunction(a)&&d.isFunction(b)?this._toggle.apply(this,arguments):a==null||e?this.each(function(){var b=e?a:d(this).is(":hidden");d(this)[b?"show":"hide"]()}):this.animate(cc("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,e){var f=d.speed(b,c,e);if(d.isEmptyObject(a))return this.each(f.complete);return this[f.queue===!1?"each":"queue"](function(){var b=d.extend({},f),c,e=this.nodeType===1,g=e&&d(this).is(":hidden"),h=this;for(c in a){var i=d.camelCase(c);c!==i&&(a[i]=a[c],delete a[c],c=i);if(a[c]==="hide"&&g||a[c]==="show"&&!g)return b.complete.call(this);if(e&&(c==="height"||c==="width")){b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(d.css(this,"display")==="inline"&&d.css(this,"float")==="none")if(d.support.inlineBlockNeedsLayout){var j=cd(this.nodeName);j==="inline"?this.style.display="inline-block":(this.style.display="inline",this.style.zoom=1)}else this.style.display="inline-block"}d.isArray(a[c])&&((b.specialEasing=b.specialEasing||{})[c]=a[c][1],a[c]=a[c][0])}b.overflow!=null&&(this.style.overflow="hidden"),b.curAnim=d.extend({},a),d.each(a,function(c,e){var f=new d.fx(h,b,c);if(b$.test(e))f[e==="toggle"?g?"show":"hide":e](a);else{var i=b_.exec(e),j=f.cur();if(i){var k=parseFloat(i[2]),l=i[3]||(d.cssNumber[c]?"":"px");l!=="px"&&(d.style(h,c,(k||1)+l),j=(k||1)/f.cur()*j,d.style(h,c,j+l)),i[1]&&(k=(i[1]==="-="?-1:1)*k+j),f.custom(j,k,l)}else f.custom(j,e,"")}});return!0})},stop:function(a,b){var c=d.timers;a&&this.queue([]),this.each(function(){for(var a=c.length-1;a>=0;a--)c[a].elem===this&&(b&&c[a](!0),c.splice(a,1))}),b||this.dequeue();return this}}),d.each({slideDown:cc("show",1),slideUp:cc("hide",1),slideToggle:cc("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){d.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),d.extend({speed:function(a,b,c){var e=a&&typeof a==="object"?d.extend({},a):{complete:c||!c&&b||d.isFunction(a)&&a,duration:a,easing:c&&b||b&&!d.isFunction(b)&&b};e.duration=d.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in d.fx.speeds?d.fx.speeds[e.duration]:d.fx.speeds._default,e.old=e.complete,e.complete=function(){e.queue!==!1&&d(this).dequeue(),d.isFunction(e.old)&&e.old.call(this)};return e},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig||(b.orig={})}}),d.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(d.fx.step[this.prop]||d.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=d.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function g(a){return e.step(a)}var e=this,f=d.fx;this.startTime=d.now(),this.start=a,this.end=b,this.unit=c||this.unit||(d.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,g.elem=this.elem,g()&&d.timers.push(g)&&!ca&&(ca=setInterval(f.tick,f.interval))},show:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),d(this.elem).show()},hide:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=d.now(),c=!0;if(a||b>=this.options.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),this.options.curAnim[this.prop]=!0;for(var e in this.options.curAnim)this.options.curAnim[e]!==!0&&(c=!1);if(c){if(this.options.overflow!=null&&!d.support.shrinkWrapBlocks){var f=this.elem,g=this.options;d.each(["","X","Y"],function(a,b){f.style["overflow"+b]=g.overflow[a]})}this.options.hide&&d(this.elem).hide();if(this.options.hide||this.options.show)for(var h in this.options.curAnim)d.style(this.elem,h,this.options.orig[h]);this.options.complete.call(this.elem)}return!1}var i=b-this.startTime;this.state=i/this.options.duration;var j=this.options.specialEasing&&this.options.specialEasing[this.prop],k=this.options.easing||(d.easing.swing?"swing":"linear");this.pos=d.easing[j||k](this.state,i,0,1,this.options.duration),this.now=this.start+(this.end-this.start)*this.pos,this.update();return!0}},d.extend(d.fx,{tick:function(){var a=d.timers;for(var b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||d.fx.stop()},interval:13,stop:function(){clearInterval(ca),ca=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){d.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit:a.elem[a.prop]=a.now}}}),d.expr&&d.expr.filters&&(d.expr.filters.animated=function(a){return d.grep(d.timers,function(b){return a===b.elem}).length});var ce=/^t(?:able|d|h)$/i,cf=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?d.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){d.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return d.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(e){}var f=b.ownerDocument,g=f.documentElement;if(!c||!d.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=f.body,i=cg(f),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||d.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||d.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:d.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){d.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return d.offset.bodyOffset(b);d.offset.initialize();var c,e=b.offsetParent,f=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(d.offset.supportsFixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===e&&(l+=b.offsetTop,m+=b.offsetLeft,d.offset.doesNotAddBorder&&(!d.offset.doesAddBorderForTableAndCells||!ce.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),f=e,e=b.offsetParent),d.offset.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;d.offset.supportsFixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},d.offset={initialize:function(){var a=c.body,b=c.createElement("div"),e,f,g,h,i=parseFloat(d.css(a,"marginTop"))||0,j="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";d.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),e=b.firstChild,f=e.firstChild,h=e.nextSibling.firstChild.firstChild,this.doesNotAddBorder=f.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,f.style.position="fixed",f.style.top="20px",this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15,f.style.position=f.style.top="",e.style.overflow="hidden",e.style.position="relative",this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),a=b=e=f=g=h=null,d.offset.initialize=d.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;d.offset.initialize(),d.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(d.css(a,"marginTop"))||0,c+=parseFloat(d.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var e=d.css(a,"position");e==="static"&&(a.style.position="relative");var f=d(a),g=f.offset(),h=d.css(a,"top"),i=d.css(a,"left"),j=e==="absolute"&&d.inArray("auto",[h,i])>-1,k={},l={},m,n;j&&(l=f.position()),m=j?l.top:parseInt(h,10)||0,n=j?l.left:parseInt(i,10)||0,d.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):f.css(k)}},d.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),e=cf.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(d.css(a,"marginTop"))||0,c.left-=parseFloat(d.css(a,"marginLeft"))||0,e.top+=parseFloat(d.css(b[0],"borderTopWidth"))||0,e.left+=parseFloat(d.css(b[0],"borderLeftWidth"))||0;return{top:c.top-e.top,left:c.left-e.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&(!cf.test(a.nodeName)&&d.css(a,"position")==="static"))a=a.offsetParent;return a})}}),d.each(["Left","Top"],function(a,c){var e="scroll"+c;d.fn[e]=function(c){var f=this[0],g;if(!f)return null;if(c!==b)return this.each(function(){g=cg(this),g?g.scrollTo(a?d(g).scrollLeft():c,a?c:d(g).scrollTop()):this[e]=c});g=cg(f);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:d.support.boxModel&&g.document.documentElement[e]||g.document.body[e]:f[e]}}),d.each(["Height","Width"],function(a,c){var e=c.toLowerCase();d.fn["inner"+c]=function(){return this[0]?parseFloat(d.css(this[0],e,"padding")):null},d.fn["outer"+c]=function(a){return this[0]?parseFloat(d.css(this[0],e,a?"margin":"border")):null},d.fn[e]=function(a){var f=this[0];if(!f)return a==null?null:this;if(d.isFunction(a))return this.each(function(b){var c=d(this);c[e](a.call(this,b,c[e]()))});if(d.isWindow(f)){var g=f.document.documentElement["client"+c];return f.document.compatMode==="CSS1Compat"&&g||f.document.body["client"+c]||g}if(f.nodeType===9)return Math.max(f.documentElement["client"+c],f.body["scroll"+c],f.documentElement["scroll"+c],f.body["offset"+c],f.documentElement["offset"+c]);if(a===b){var h=d.css(f,e),i=parseFloat(h);return d.isNaN(i)?h:i}return this.css(e,typeof a==="string"?a:a+"px")}}),a.jQuery=a.$=d})(window);
\ No newline at end of file
diff --git a/eclipse.org-common/lib/jquery/jquery-1.5.2.min.js b/eclipse.org-common/lib/jquery/jquery-1.5.2.min.js
deleted file mode 100644
index f78f96a..0000000
--- a/eclipse.org-common/lib/jquery/jquery-1.5.2.min.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*!
- * jQuery JavaScript Library v1.5.2
- * http://jquery.com/
- *
- * Copyright 2011, John Resig
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * Includes Sizzle.js
- * http://sizzlejs.com/
- * Copyright 2011, The Dojo Foundation
- * Released under the MIT, BSD, and GPL Licenses.
- *
- * Date: Thu Mar 31 15:28:23 2011 -0400
- */
-(function(a,b){function ci(a){return d.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cf(a){if(!b_[a]){var b=d("<"+a+">").appendTo("body"),c=b.css("display");b.remove();if(c==="none"||c==="")c="block";b_[a]=c}return b_[a]}function ce(a,b){var c={};d.each(cd.concat.apply([],cd.slice(0,b)),function(){c[this]=a});return c}function b$(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function bZ(){try{return new a.XMLHttpRequest}catch(b){}}function bY(){d(a).unload(function(){for(var a in bW)bW[a](0,1)})}function bS(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var e=a.dataTypes,f={},g,h,i=e.length,j,k=e[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h==="string"&&(f[h.toLowerCase()]=a.converters[h]);l=k,k=e[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=f[m]||f["* "+k];if(!n){p=b;for(o in f){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=f[j[1]+" "+k];if(p){o=f[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&d.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function bR(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function bQ(a,b,c,e){if(d.isArray(b)&&b.length)d.each(b,function(b,f){c||bs.test(a)?e(a,f):bQ(a+"["+(typeof f==="object"||d.isArray(f)?b:"")+"]",f,c,e)});else if(c||b==null||typeof b!=="object")e(a,b);else if(d.isArray(b)||d.isEmptyObject(b))e(a,"");else for(var f in b)bQ(a+"["+f+"]",b[f],c,e)}function bP(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bJ,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l==="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=bP(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=bP(a,c,d,e,"*",g));return l}function bO(a){return function(b,c){typeof b!=="string"&&(c=b,b="*");if(d.isFunction(c)){var e=b.toLowerCase().split(bD),f=0,g=e.length,h,i,j;for(;f<g;f++)h=e[f],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bq(a,b,c){var e=b==="width"?bk:bl,f=b==="width"?a.offsetWidth:a.offsetHeight;if(c==="border")return f;d.each(e,function(){c||(f-=parseFloat(d.css(a,"padding"+this))||0),c==="margin"?f+=parseFloat(d.css(a,"margin"+this))||0:f-=parseFloat(d.css(a,"border"+this+"Width"))||0});return f}function bc(a,b){b.src?d.ajax({url:b.src,async:!1,dataType:"script"}):d.globalEval(b.text||b.textContent||b.innerHTML||""),b.parentNode&&b.parentNode.removeChild(b)}function bb(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function ba(a,b){if(b.nodeType===1){var c=b.nodeName.toLowerCase();b.clearAttributes(),b.mergeAttributes(a);if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(d.expando)}}function _(a,b){if(b.nodeType===1&&d.hasData(a)){var c=d.expando,e=d.data(a),f=d.data(b,e);if(e=e[c]){var g=e.events;f=f[c]=d.extend({},e);if(g){delete f.handle,f.events={};for(var h in g)for(var i=0,j=g[h].length;i<j;i++)d.event.add(b,h+(g[h][i].namespace?".":"")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function $(a,b){return d.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function Q(a,b,c){if(d.isFunction(b))return d.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return d.grep(a,function(a,d){return a===b===c});if(typeof b==="string"){var e=d.grep(a,function(a){return a.nodeType===1});if(L.test(b))return d.filter(b,e,!c);b=d.filter(b,e)}return d.grep(a,function(a,e){return d.inArray(a,b)>=0===c})}function P(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function H(a,b){return(a&&a!=="*"?a+".":"")+b.replace(t,"`").replace(u,"&")}function G(a){var b,c,e,f,g,h,i,j,k,l,m,n,o,p=[],q=[],s=d._data(this,"events");if(a.liveFired!==this&&s&&s.live&&!a.target.disabled&&(!a.button||a.type!=="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var t=s.live.slice(0);for(i=0;i<t.length;i++)g=t[i],g.origType.replace(r,"")===a.type?q.push(g.selector):t.splice(i--,1);f=d(a.target).closest(q,a.currentTarget);for(j=0,k=f.length;j<k;j++){m=f[j];for(i=0;i<t.length;i++){g=t[i];if(m.selector===g.selector&&(!n||n.test(g.namespace))&&!m.elem.disabled){h=m.elem,e=null;if(g.preType==="mouseenter"||g.preType==="mouseleave")a.type=g.preType,e=d(a.relatedTarget).closest(g.selector)[0];(!e||e!==h)&&p.push({elem:h,handleObj:g,level:m.level})}}}for(j=0,k=p.length;j<k;j++){f=p[j];if(c&&f.level>c)break;a.currentTarget=f.elem,a.data=f.handleObj.data,a.handleObj=f.handleObj,o=f.handleObj.origHandler.apply(f.elem,arguments);if(o===!1||a.isPropagationStopped()){c=f.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function E(a,c,e){var f=d.extend({},e[0]);f.type=a,f.originalEvent={},f.liveFired=b,d.event.handle.call(c,f),f.isDefaultPrevented()&&e[0].preventDefault()}function y(){return!0}function x(){return!1}function i(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function h(a,c,e){if(e===b&&a.nodeType===1){e=a.getAttribute("data-"+c);if(typeof e==="string"){try{e=e==="true"?!0:e==="false"?!1:e==="null"?null:d.isNaN(e)?g.test(e)?d.parseJSON(e):e:parseFloat(e)}catch(f){}d.data(a,c,e)}else e=b}return e}var c=a.document,d=function(){function G(){if(!d.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(G,1);return}d.ready()}}var d=function(a,b){return new d.fn.init(a,b,g)},e=a.jQuery,f=a.$,g,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,i=/\S/,j=/^\s+/,k=/\s+$/,l=/\d/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=navigator.userAgent,w,x,y,z=Object.prototype.toString,A=Object.prototype.hasOwnProperty,B=Array.prototype.push,C=Array.prototype.slice,D=String.prototype.trim,E=Array.prototype.indexOf,F={};d.fn=d.prototype={constructor:d,init:function(a,e,f){var g,i,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!e&&c.body){this.context=c,this[0]=c.body,this.selector="body",this.length=1;return this}if(typeof a==="string"){g=h.exec(a);if(!g||!g[1]&&e)return!e||e.jquery?(e||f).find(a):this.constructor(e).find(a);if(g[1]){e=e instanceof d?e[0]:e,k=e?e.ownerDocument||e:c,j=m.exec(a),j?d.isPlainObject(e)?(a=[c.createElement(j[1])],d.fn.attr.call(a,e,!0)):a=[k.createElement(j[1])]:(j=d.buildFragment([g[1]],[k]),a=(j.cacheable?d.clone(j.fragment):j.fragment).childNodes);return d.merge(this,a)}i=c.getElementById(g[2]);if(i&&i.parentNode){if(i.id!==g[2])return f.find(a);this.length=1,this[0]=i}this.context=c,this.selector=a;return this}if(d.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return d.makeArray(a,this)},selector:"",jquery:"1.5.2",length:0,size:function(){return this.length},toArray:function(){return C.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var e=this.constructor();d.isArray(a)?B.apply(e,a):d.merge(e,a),e.prevObject=this,e.context=this.context,b==="find"?e.selector=this.selector+(this.selector?" ":"")+c:b&&(e.selector=this.selector+"."+b+"("+c+")");return e},each:function(a,b){return d.each(this,a,b)},ready:function(a){d.bindReady(),x.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(C.apply(this,arguments),"slice",C.call(arguments).join(","))},map:function(a){return this.pushStack(d.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:B,sort:[].sort,splice:[].splice},d.fn.init.prototype=d.fn,d.extend=d.fn.extend=function(){var a,c,e,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i==="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!=="object"&&!d.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){e=i[c],f=a[c];if(i===f)continue;l&&f&&(d.isPlainObject(f)||(g=d.isArray(f)))?(g?(g=!1,h=e&&d.isArray(e)?e:[]):h=e&&d.isPlainObject(e)?e:{},i[c]=d.extend(l,h,f)):f!==b&&(i[c]=f)}return i},d.extend({noConflict:function(b){a.$=f,b&&(a.jQuery=e);return d},isReady:!1,readyWait:1,ready:function(a){a===!0&&d.readyWait--;if(!d.readyWait||a!==!0&&!d.isReady){if(!c.body)return setTimeout(d.ready,1);d.isReady=!0;if(a!==!0&&--d.readyWait>0)return;x.resolveWith(c,[d]),d.fn.trigger&&d(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!x){x=d._Deferred();if(c.readyState==="complete")return setTimeout(d.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",y,!1),a.addEventListener("load",d.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",y),a.attachEvent("onload",d.ready);var b=!1;try{b=a.frameElement==null}catch(e){}c.documentElement.doScroll&&b&&G()}}},isFunction:function(a){return d.type(a)==="function"},isArray:Array.isArray||function(a){return d.type(a)==="array"},isWindow:function(a){return a&&typeof a==="object"&&"setInterval"in a},isNaN:function(a){return a==null||!l.test(a)||isNaN(a)},type:function(a){return a==null?String(a):F[z.call(a)]||"object"},isPlainObject:function(a){if(!a||d.type(a)!=="object"||a.nodeType||d.isWindow(a))return!1;if(a.constructor&&!A.call(a,"constructor")&&!A.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a){}return c===b||A.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!=="string"||!b)return null;b=d.trim(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return a.JSON&&a.JSON.parse?a.JSON.parse(b):(new Function("return "+b))();d.error("Invalid JSON: "+b)},parseXML:function(b,c,e){a.DOMParser?(e=new DOMParser,c=e.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),e=c.documentElement,(!e||!e.nodeName||e.nodeName==="parsererror")&&d.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(a){if(a&&i.test(a)){var b=c.head||c.getElementsByTagName("head")[0]||c.documentElement,e=c.createElement("script");d.support.scriptEval()?e.appendChild(c.createTextNode(a)):e.text=a,b.insertBefore(e,b.firstChild),b.removeChild(e)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,e){var f,g=0,h=a.length,i=h===b||d.isFunction(a);if(e){if(i){for(f in a)if(c.apply(a[f],e)===!1)break}else for(;g<h;)if(c.apply(a[g++],e)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(var j=a[0];g<h&&c.call(j,g,j)!==!1;j=a[++g]){}return a},trim:D?function(a){return a==null?"":D.call(a)}:function(a){return a==null?"":(a+"").replace(j,"").replace(k,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var e=d.type(a);a.length==null||e==="string"||e==="function"||e==="regexp"||d.isWindow(a)?B.call(c,a):d.merge(c,a)}return c},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var c=0,d=b.length;c<d;c++)if(b[c]===a)return c;return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length==="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,b,c){var d=[],e;for(var f=0,g=a.length;f<g;f++)e=b(a[f],f,c),e!=null&&(d[d.length]=e);return d.concat.apply([],d)},guid:1,proxy:function(a,c,e){arguments.length===2&&(typeof c==="string"?(e=a,a=e[c],c=b):c&&!d.isFunction(c)&&(e=c,c=b)),!c&&a&&(c=function(){return a.apply(e||this,arguments)}),a&&(c.guid=a.guid=a.guid||c.guid||d.guid++);return c},access:function(a,c,e,f,g,h){var i=a.length;if(typeof c==="object"){for(var j in c)d.access(a,j,c[j],f,g,e);return a}if(e!==b){f=!h&&f&&d.isFunction(e);for(var k=0;k<i;k++)g(a[k],c,f?e.call(a[k],k,g(a[k],c)):e,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}d.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.subclass=this.subclass,a.fn.init=function b(b,c){c&&c instanceof d&&!(c instanceof a)&&(c=a(c));return d.fn.init.call(this,b,c,e)},a.fn.init.prototype=a.fn;var e=a(c);return a},browser:{}}),d.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){F["[object "+b+"]"]=b.toLowerCase()}),w=d.uaMatch(v),w.browser&&(d.browser[w.browser]=!0,d.browser.version=w.version),d.browser.webkit&&(d.browser.safari=!0),E&&(d.inArray=function(a,b){return E.call(b,a)}),i.test(" ")&&(j=/^[\s\xA0]+/,k=/[\s\xA0]+$/),g=d(c),c.addEventListener?y=function(){c.removeEventListener("DOMContentLoaded",y,!1),d.ready()}:c.attachEvent&&(y=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",y),d.ready())});return d}(),e="then done fail isResolved isRejected promise".split(" "),f=[].slice;d.extend({_Deferred:function(){var a=[],b,c,e,f={done:function(){if(!e){var c=arguments,g,h,i,j,k;b&&(k=b,b=0);for(g=0,h=c.length;g<h;g++)i=c[g],j=d.type(i),j==="array"?f.done.apply(f,i):j==="function"&&a.push(i);k&&f.resolveWith(k[0],k[1])}return this},resolveWith:function(d,f){if(!e&&!b&&!c){f=f||[],c=1;try{while(a[0])a.shift().apply(d,f)}finally{b=[d,f],c=0}}return this},resolve:function(){f.resolveWith(this,arguments);return this},isResolved:function(){return c||b},cancel:function(){e=1,a=[];return this}};return f},Deferred:function(a){var b=d._Deferred(),c=d._Deferred(),f;d.extend(b,{then:function(a,c){b.done(a).fail(c);return this},fail:c.done,rejectWith:c.resolveWith,reject:c.resolve,isRejected:c.isResolved,promise:function(a){if(a==null){if(f)return f;f=a={}}var c=e.length;while(c--)a[e[c]]=b[e[c]];return a}}),b.done(c.cancel).fail(b.cancel),delete b.cancel,a&&a.call(b,b);return b},when:function(a){function i(a){return function(c){b[a]=arguments.length>1?f.call(arguments,0):c,--g||h.resolveWith(h,f.call(b,0))}}var b=arguments,c=0,e=b.length,g=e,h=e<=1&&a&&d.isFunction(a.promise)?a:d.Deferred();if(e>1){for(;c<e;c++)b[c]&&d.isFunction(b[c].promise)?b[c].promise().then(i(c),h.reject):--g;g||h.resolveWith(h,b)}else h!==a&&h.resolveWith(h,e?[a]:[]);return h.promise()}}),function(){d.support={};var b=c.createElement("div");b.style.display="none",b.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var e=b.getElementsByTagName("*"),f=b.getElementsByTagName("a")[0],g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=b.getElementsByTagName("input")[0];if(e&&e.length&&f){d.support={leadingWhitespace:b.firstChild.nodeType===3,tbody:!b.getElementsByTagName("tbody").length,htmlSerialize:!!b.getElementsByTagName("link").length,style:/red/.test(f.getAttribute("style")),hrefNormalized:f.getAttribute("href")==="/a",opacity:/^0.55$/.test(f.style.opacity),cssFloat:!!f.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,deleteExpando:!0,optDisabled:!1,checkClone:!1,noCloneEvent:!0,noCloneChecked:!0,boxModel:null,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableHiddenOffsets:!0,reliableMarginRight:!0},i.checked=!0,d.support.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,d.support.optDisabled=!h.disabled;var j=null;d.support.scriptEval=function(){if(j===null){var b=c.documentElement,e=c.createElement("script"),f="script"+d.now();try{e.appendChild(c.createTextNode("window."+f+"=1;"))}catch(g){}b.insertBefore(e,b.firstChild),a[f]?(j=!0,delete a[f]):j=!1,b.removeChild(e)}return j};try{delete b.test}catch(k){d.support.deleteExpando=!1}!b.addEventListener&&b.attachEvent&&b.fireEvent&&(b.attachEvent("onclick",function l(){d.support.noCloneEvent=!1,b.detachEvent("onclick",l)}),b.cloneNode(!0).fireEvent("onclick")),b=c.createElement("div"),b.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";var m=c.createDocumentFragment();m.appendChild(b.firstChild),d.support.checkClone=m.cloneNode(!0).cloneNode(!0).lastChild.checked,d(function(){var a=c.createElement("div"),b=c.getElementsByTagName("body")[0];if(b){a.style.width=a.style.paddingLeft="1px",b.appendChild(a),d.boxModel=d.support.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,d.support.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="<div style='width:4px;'></div>",d.support.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>";var e=a.getElementsByTagName("td");d.support.reliableHiddenOffsets=e[0].offsetHeight===0,e[0].style.display="",e[1].style.display="none",d.support.reliableHiddenOffsets=d.support.reliableHiddenOffsets&&e[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(a.style.width="1px",a.style.marginRight="0",d.support.reliableMarginRight=(parseInt(c.defaultView.getComputedStyle(a,null).marginRight,10)||0)===0),b.removeChild(a).style.display="none",a=e=null}});var n=function(a){var b=c.createElement("div");a="on"+a;if(!b.attachEvent)return!0;var d=a in b;d||(b.setAttribute(a,"return;"),d=typeof b[a]==="function");return d};d.support.submitBubbles=n("submit"),d.support.changeBubbles=n("change"),b=e=f=null}}();var g=/^(?:\{.*\}|\[.*\])$/;d.extend({cache:{},uuid:0,expando:"jQuery"+(d.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?d.cache[a[d.expando]]:a[d.expando];return!!a&&!i(a)},data:function(a,c,e,f){if(d.acceptData(a)){var g=d.expando,h=typeof c==="string",i,j=a.nodeType,k=j?d.cache:a,l=j?a[d.expando]:a[d.expando]&&d.expando;if((!l||f&&l&&!k[l][g])&&h&&e===b)return;l||(j?a[d.expando]=l=++d.uuid:l=d.expando),k[l]||(k[l]={},j||(k[l].toJSON=d.noop));if(typeof c==="object"||typeof c==="function")f?k[l][g]=d.extend(k[l][g],c):k[l]=d.extend(k[l],c);i=k[l],f&&(i[g]||(i[g]={}),i=i[g]),e!==b&&(i[c]=e);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[c]:i}},removeData:function(b,c,e){if(d.acceptData(b)){var f=d.expando,g=b.nodeType,h=g?d.cache:b,j=g?b[d.expando]:d.expando;if(!h[j])return;if(c){var k=e?h[j][f]:h[j];if(k){delete k[c];if(!i(k))return}}if(e){delete h[j][f];if(!i(h[j]))return}var l=h[j][f];d.support.deleteExpando||h!=a?delete h[j]:h[j]=null,l?(h[j]={},g||(h[j].toJSON=d.noop),h[j][f]=l):g&&(d.support.deleteExpando?delete b[d.expando]:b.removeAttribute?b.removeAttribute(d.expando):b[d.expando]=null)}},_data:function(a,b,c){return d.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=d.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),d.fn.extend({data:function(a,c){var e=null;if(typeof a==="undefined"){if(this.length){e=d.data(this[0]);if(this[0].nodeType===1){var f=this[0].attributes,g;for(var i=0,j=f.length;i<j;i++)g=f[i].name,g.indexOf("data-")===0&&(g=g.substr(5),h(this[0],g,e[g]))}}return e}if(typeof a==="object")return this.each(function(){d.data(this,a)});var k=a.split(".");k[1]=k[1]?"."+k[1]:"";if(c===b){e=this.triggerHandler("getData"+k[1]+"!",[k[0]]),e===b&&this.length&&(e=d.data(this[0],a),e=h(this[0],a,e));return e===b&&k[1]?this.data(k[0]):e}return this.each(function(){var b=d(this),e=[k[0],c];b.triggerHandler("setData"+k[1]+"!",e),d.data(this,a,c),b.triggerHandler("changeData"+k[1]+"!",e)})},removeData:function(a){return this.each(function(){d.removeData(this,a)})}}),d.extend({queue:function(a,b,c){if(a){b=(b||"fx")+"queue";var e=d._data(a,b);if(!c)return e||[];!e||d.isArray(c)?e=d._data(a,b,d.makeArray(c)):e.push(c);return e}},dequeue:function(a,b){b=b||"fx";var c=d.queue(a,b),e=c.shift();e==="inprogress"&&(e=c.shift()),e&&(b==="fx"&&c.unshift("inprogress"),e.call(a,function(){d.dequeue(a,b)})),c.length||d.removeData(a,b+"queue",!0)}}),d.fn.extend({queue:function(a,c){typeof a!=="string"&&(c=a,a="fx");if(c===b)return d.queue(this[0],a);return this.each(function(b){var e=d.queue(this,a,c);a==="fx"&&e[0]!=="inprogress"&&d.dequeue(this,a)})},dequeue:function(a){return this.each(function(){d.dequeue(this,a)})},delay:function(a,b){a=d.fx?d.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(){var c=this;setTimeout(function(){d.dequeue(c,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var j=/[\n\t\r]/g,k=/\s+/,l=/\r/g,m=/^(?:href|src|style)$/,n=/^(?:button|input)$/i,o=/^(?:button|input|object|select|textarea)$/i,p=/^a(?:rea)?$/i,q=/^(?:radio|checkbox)$/i;d.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"},d.fn.extend({attr:function(a,b){return d.access(this,a,b,!0,d.attr)},removeAttr:function(a,b){return this.each(function(){d.attr(this,a,""),this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.addClass(a.call(this,b,c.attr("class")))});if(a&&typeof a==="string"){var b=(a||"").split(k);for(var c=0,e=this.length;c<e;c++){var f=this[c];if(f.nodeType===1)if(f.className){var g=" "+f.className+" ",h=f.className;for(var i=0,j=b.length;i<j;i++)g.indexOf(" "+b[i]+" ")<0&&(h+=" "+b[i]);f.className=d.trim(h)}else f.className=a}}return this},removeClass:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.removeClass(a.call(this,b,c.attr("class")))});if(a&&typeof a==="string"||a===b){var c=(a||"").split(k);for(var e=0,f=this.length;e<f;e++){var g=this[e];if(g.nodeType===1&&g.className)if(a){var h=(" "+g.className+" ").replace(j," ");for(var i=0,l=c.length;i<l;i++)h=h.replace(" "+c[i]+" "," ");g.className=d.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,e=typeof b==="boolean";if(d.isFunction(a))return this.each(function(c){var e=d(this);e.toggleClass(a.call(this,c,e.attr("class"),b),b)});return this.each(function(){if(c==="string"){var f,g=0,h=d(this),i=b,j=a.split(k);while(f=j[g++])i=e?i:!h.hasClass(f),h[i?"addClass":"removeClass"](f)}else if(c==="undefined"||c==="boolean")this.className&&d._data(this,"__className__",this.className),this.className=this.className||a===!1?"":d._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ";for(var c=0,d=this.length;c<d;c++)if((" "+this[c].className+" ").replace(j," ").indexOf(b)>-1)return!0;return!1},val:function(a){if(!arguments.length){var c=this[0];if(c){if(d.nodeName(c,"option")){var e=c.attributes.value;return!e||e.specified?c.value:c.text}if(d.nodeName(c,"select")){var f=c.selectedIndex,g=[],h=c.options,i=c.type==="select-one";if(f<0)return null;for(var j=i?f:0,k=i?f+1:h.length;j<k;j++){var m=h[j];if(m.selected&&(d.support.optDisabled?!m.disabled:m.getAttribute("disabled")===null)&&(!m.parentNode.disabled||!d.nodeName(m.parentNode,"optgroup"))){a=d(m).val();if(i)return a;g.push(a)}}if(i&&!g.length&&h.length)return d(h[f]).val();return g}if(q.test(c.type)&&!d.support.checkOn)return c.getAttribute("value")===null?"on":c.value;return(c.value||"").replace(l,"")}return b}var n=d.isFunction(a);return this.each(function(b){var c=d(this),e=a;if(this.nodeType===1){n&&(e=a.call(this,b,c.val())),e==null?e="":typeof e==="number"?e+="":d.isArray(e)&&(e=d.map(e,function(a){return a==null?"":a+""}));if(d.isArray(e)&&q.test(this.type))this.checked=d.inArray(c.val(),e)>=0;else if(d.nodeName(this,"select")){var f=d.makeArray(e);d("option",this).each(function(){this.selected=d.inArray(d(this).val(),f)>=0}),f.length||(this.selectedIndex=-1)}else this.value=e}})}}),d.extend({attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,e,f){if(!a||a.nodeType===3||a.nodeType===8||a.nodeType===2)return b;if(f&&c in d.attrFn)return d(a)[c](e);var g=a.nodeType!==1||!d.isXMLDoc(a),h=e!==b;c=g&&d.props[c]||c;if(a.nodeType===1){var i=m.test(c);if(c==="selected"&&!d.support.optSelected){var j=a.parentNode;j&&(j.selectedIndex,j.parentNode&&j.parentNode.selectedIndex)}if((c in a||a[c]!==b)&&g&&!i){h&&(c==="type"&&n.test(a.nodeName)&&a.parentNode&&d.error("type property can't be changed"),e===null?a.nodeType===1&&a.removeAttribute(c):a[c]=e);if(d.nodeName(a,"form")&&a.getAttributeNode(c))return a.getAttributeNode(c).nodeValue;if(c==="tabIndex"){var k=a.getAttributeNode("tabIndex");return k&&k.specified?k.value:o.test(a.nodeName)||p.test(a.nodeName)&&a.href?0:b}return a[c]}if(!d.support.style&&g&&c==="style"){h&&(a.style.cssText=""+e);return a.style.cssText}h&&a.setAttribute(c,""+e);if(!a.attributes[c]&&(a.hasAttribute&&!a.hasAttribute(c)))return b;var l=!d.support.hrefNormalized&&g&&i?a.getAttribute(c,2):a.getAttribute(c);return l===null?b:l}h&&(a[c]=e);return a[c]}});var r=/\.(.*)$/,s=/^(?:textarea|input|select)$/i,t=/\./g,u=/ /g,v=/[^\w\s.|`]/g,w=function(a){return a.replace(v,"\\$&")};d.event={add:function(c,e,f,g){if(c.nodeType!==3&&c.nodeType!==8){try{d.isWindow(c)&&(c!==a&&!c.frameElement)&&(c=a)}catch(h){}if(f===!1)f=x;else if(!f)return;var i,j;f.handler&&(i=f,f=i.handler),f.guid||(f.guid=d.guid++);var k=d._data(c);if(!k)return;var l=k.events,m=k.handle;l||(k.events=l={}),m||(k.handle=m=function(a){return typeof d!=="undefined"&&d.event.triggered!==a.type?d.event.handle.apply(m.elem,arguments):b}),m.elem=c,e=e.split(" ");var n,o=0,p;while(n=e[o++]){j=i?d.extend({},i):{handler:f,data:g},n.indexOf(".")>-1?(p=n.split("."),n=p.shift(),j.namespace=p.slice(0).sort().join(".")):(p=[],j.namespace=""),j.type=n,j.guid||(j.guid=f.guid);var q=l[n],r=d.event.special[n]||{};if(!q){q=l[n]=[];if(!r.setup||r.setup.call(c,g,p,m)===!1)c.addEventListener?c.addEventListener(n,m,!1):c.attachEvent&&c.attachEvent("on"+n,m)}r.add&&(r.add.call(c,j),j.handler.guid||(j.handler.guid=f.guid)),q.push(j),d.event.global[n]=!0}c=null}},global:{},remove:function(a,c,e,f){if(a.nodeType!==3&&a.nodeType!==8){e===!1&&(e=x);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=d.hasData(a)&&d._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(e=c.handler,c=c.type);if(!c||typeof c==="string"&&c.charAt(0)==="."){c=c||"";for(h in t)d.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+d.map(m.slice(0).sort(),w).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!e){for(j=0;j<p.length;j++){q=p[j];if(l||n.test(q.namespace))d.event.remove(a,r,q.handler,j),p.splice(j--,1)}continue}o=d.event.special[h]||{};for(j=f||0;j<p.length;j++){q=p[j];if(e.guid===q.guid){if(l||n.test(q.namespace))f==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(f!=null)break}}if(p.length===0||f!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&d.removeEvent(a,h,s.handle),g=null,delete t[h]}if(d.isEmptyObject(t)){var u=s.handle;u&&(u.elem=null),delete s.events,delete s.handle,d.isEmptyObject(s)&&d.removeData(a,b,!0)}}},trigger:function(a,c,e){var f=a.type||a,g=arguments[3];if(!g){a=typeof a==="object"?a[d.expando]?a:d.extend(d.Event(f),a):d.Event(f),f.indexOf("!")>=0&&(a.type=f=f.slice(0,-1),a.exclusive=!0),e||(a.stopPropagation(),d.event.global[f]&&d.each(d.cache,function(){var b=d.expando,e=this[b];e&&e.events&&e.events[f]&&d.event.trigger(a,c,e.handle.elem)}));if(!e||e.nodeType===3||e.nodeType===8)return b;a.result=b,a.target=e,c=d.makeArray(c),c.unshift(a)}a.currentTarget=e;var h=d._data(e,"handle");h&&h.apply(e,c);var i=e.parentNode||e.ownerDocument;try{e&&e.nodeName&&d.noData[e.nodeName.toLowerCase()]||e["on"+f]&&e["on"+f].apply(e,c)===!1&&(a.result=!1,a.preventDefault())}catch(j){}if(!a.isPropagationStopped()&&i)d.event.trigger(a,c,i,!0);else if(!a.isDefaultPrevented()){var k,l=a.target,m=f.replace(r,""),n=d.nodeName(l,"a")&&m==="click",o=d.event.special[m]||{};if((!o._default||o._default.call(e,a)===!1)&&!n&&!(l&&l.nodeName&&d.noData[l.nodeName.toLowerCase()])){try{l[m]&&(k=l["on"+m],k&&(l["on"+m]=null),d.event.triggered=a.type,l[m]())}catch(p){}k&&(l["on"+m]=k),d.event.triggered=b}}},handle:function(c){var e,f,g,h,i,j=[],k=d.makeArray(arguments);c=k[0]=d.event.fix(c||a.event),c.currentTarget=this,e=c.type.indexOf(".")<0&&!c.exclusive,e||(g=c.type.split("."),c.type=g.shift(),j=g.slice(0).sort(),h=new RegExp("(^|\\.)"+j.join("\\.(?:.*\\.)?")+"(\\.|$)")),c.namespace=c.namespace||j.join("."),i=d._data(this,"events"),f=(i||{})[c.type];if(i&&f){f=f.slice(0);for(var l=0,m=f.length;l<m;l++){var n=f[l];if(e||h.test(n.namespace)){c.handler=n.handler,c.data=n.data,c.handleObj=n;var o=n.handler.apply(this,k);o!==b&&(c.result=o,o===!1&&(c.preventDefault(),c.stopPropagation()));if(c.isImmediatePropagationStopped())break}}}return c.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[d.expando])return a;var e=a;a=d.Event(e);for(var f=this.props.length,g;f;)g=this.props[--f],a[g]=e[g];a.target||(a.target=a.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),!a.relatedTarget&&a.fromElement&&(a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement);if(a.pageX==null&&a.clientX!=null){var h=c.documentElement,i=c.body;a.pageX=a.clientX+(h&&h.scrollLeft||i&&i.scrollLeft||0)-(h&&h.clientLeft||i&&i.clientLeft||0),a.pageY=a.clientY+(h&&h.scrollTop||i&&i.scrollTop||0)-(h&&h.clientTop||i&&i.clientTop||0)}a.which==null&&(a.charCode!=null||a.keyCode!=null)&&(a.which=a.charCode!=null?a.charCode:a.keyCode),!a.metaKey&&a.ctrlKey&&(a.metaKey=a.ctrlKey),!a.which&&a.button!==b&&(a.which=a.button&1?1:a.button&2?3:a.button&4?2:0);return a},guid:1e8,proxy:d.proxy,special:{ready:{setup:d.bindReady,teardown:d.noop},live:{add:function(a){d.event.add(this,H(a.origType,a.selector),d.extend({},a,{handler:G,guid:a.handler.guid}))},remove:function(a){d.event.remove(this,H(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,c){d.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}}},d.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},d.Event=function(a){if(!this.preventDefault)return new d.Event(a);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?y:x):this.type=a,this.timeStamp=d.now(),this[d.expando]=!0},d.Event.prototype={preventDefault:function(){this.isDefaultPrevented=y;var a=this.originalEvent;a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=y;var a=this.originalEvent;a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=y,this.stopPropagation()},isDefaultPrevented:x,isPropagationStopped:x,isImmediatePropagationStopped:x};var z=function(a){var b=a.relatedTarget;try{if(b&&b!==c&&!b.parentNode)return;while(b&&b!==this)b=b.parentNode;b!==this&&(a.type=a.data,d.event.handle.apply(this,arguments))}catch(e){}},A=function(a){a.type=a.data,d.event.handle.apply(this,arguments)};d.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){d.event.special[a]={setup:function(c){d.event.add(this,b,c&&c.selector?A:z,a)},teardown:function(a){d.event.remove(this,b,a&&a.selector?A:z)}}}),d.support.submitBubbles||(d.event.special.submit={setup:function(a,b){if(this.nodeName&&this.nodeName.toLowerCase()!=="form")d.event.add(this,"click.specialSubmit",function(a){var b=a.target,c=b.type;(c==="submit"||c==="image")&&d(b).closest("form").length&&E("submit",this,arguments)}),d.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,c=b.type;(c==="text"||c==="password")&&d(b).closest("form").length&&a.keyCode===13&&E("submit",this,arguments)});else return!1},teardown:function(a){d.event.remove(this,".specialSubmit")}});if(!d.support.changeBubbles){var B,C=function(a){var b=a.type,c=a.value;b==="radio"||b==="checkbox"?c=a.checked:b==="select-multiple"?c=a.selectedIndex>-1?d.map(a.options,function(a){return a.selected}).join("-"):"":a.nodeName.toLowerCase()==="select"&&(c=a.selectedIndex);return c},D=function D(a){var c=a.target,e,f;if(s.test(c.nodeName)&&!c.readOnly){e=d._data(c,"_change_data"),f=C(c),(a.type!=="focusout"||c.type!=="radio")&&d._data(c,"_change_data",f);if(e===b||f===e)return;if(e!=null||f)a.type="change",a.liveFired=b,d.event.trigger(a,arguments[1],c)}};d.event.special.change={filters:{focusout:D,beforedeactivate:D,click:function(a){var b=a.target,c=b.type;(c==="radio"||c==="checkbox"||b.nodeName.toLowerCase()==="select")&&D.call(this,a)},keydown:function(a){var b=a.target,c=b.type;(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&D.call(this,a)},beforeactivate:function(a){var b=a.target;d._data(b,"_change_data",C(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in B)d.event.add(this,c+".specialChange",B[c]);return s.test(this.nodeName)},teardown:function(a){d.event.remove(this,".specialChange");return s.test(this.nodeName)}},B=d.event.special.change.filters,B.focus=B.beforeactivate}c.addEventListener&&d.each({focus:"focusin",blur:"focusout"},function(a,b){function f(a){var c=d.event.fix(a);c.type=b,c.originalEvent={},d.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var e=0;d.event.special[b]={setup:function(){e++===0&&c.addEventListener(a,f,!0)},teardown:function(){--e===0&&c.removeEventListener(a,f,!0)}}}),d.each(["bind","one"],function(a,c){d.fn[c]=function(a,e,f){if(typeof a==="object"){for(var g in a)this[c](g,e,a[g],f);return this}if(d.isFunction(e)||e===!1)f=e,e=b;var h=c==="one"?d.proxy(f,function(a){d(this).unbind(a,h);return f.apply(this,arguments)}):f;if(a==="unload"&&c!=="one")this.one(a,e,f);else for(var i=0,j=this.length;i<j;i++)d.event.add(this[i],a,h,e);return this}}),d.fn.extend({unbind:function(a,b){if(typeof a!=="object"||a.preventDefault)for(var e=0,f=this.length;e<f;e++)d.event.remove(this[e],a,b);else for(var c in a)this.unbind(c,a[c]);return this},delegate:function(a,b,c,d){return this.live(b,c,d,a)},undelegate:function(a,b,c){return arguments.length===0?this.unbind("live"):this.die(b,null,c,a)},trigger:function(a,b){return this.each(function(){d.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){var c=d.Event(a);c.preventDefault(),c.stopPropagation(),d.event.trigger(c,b,this[0]);return c.result}},toggle:function(a){var b=arguments,c=1;while(c<b.length)d.proxy(a,b[c++]);return this.click(d.proxy(a,function(e){var f=(d._data(this,"lastToggle"+a.guid)||0)%c;d._data(this,"lastToggle"+a.guid,f+1),e.preventDefault();return b[f].apply(this,arguments)||!1}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var F={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};d.each(["live","die"],function(a,c){d.fn[c]=function(a,e,f,g){var h,i=0,j,k,l,m=g||this.selector,n=g?this:d(this.context);if(typeof a==="object"&&!a.preventDefault){for(var o in a)n[c](o,e,a[o],m);return this}d.isFunction(e)&&(f=e,e=b),a=(a||"").split(" ");while((h=a[i++])!=null){j=r.exec(h),k="",j&&(k=j[0],h=h.replace(r,""));if(h==="hover"){a.push("mouseenter"+k,"mouseleave"+k);continue}l=h,h==="focus"||h==="blur"?(a.push(F[h]+k),h=h+k):h=(F[h]||h)+k;if(c==="live")for(var p=0,q=n.length;p<q;p++)d.event.add(n[p],"live."+H(h,m),{data:e,selector:m,handler:f,origType:h,origHandler:f,preType:l});else n.unbind("live."+H(h,m),f)}return this}}),d.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){d.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.bind(b,a,c):this.trigger(b)},d.attrFn&&(d.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}if(i.nodeType===1){f||(i.sizcache=c,i.sizset=g);if(typeof b!=="string"){if(i===b){j=!0;break}}else if(k.filter(b,[i]).length>0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}i.nodeType===1&&!f&&(i.sizcache=c,i.sizset=g);if(i.nodeName.toLowerCase()===b){j=i;break}i=i[a]}d[g]=j}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,e,g){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!=="string")return e;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(f.call(n)==="[object Array]")if(u)if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&e.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&e.push(j[t]);else e.push.apply(e,n);else p(n,e);o&&(k(o,h,e,g),k.uniqueSort(e));return e};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},k.matches=function(a,b){return k(a,null,null,b)},k.matchesSelector=function(a,b){return k(b,null,null,[a]).length>0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e<f;e++){var g,h=l.order[e];if(g=l.leftMatch[h].exec(a)){var j=g[1];g.splice(1,1);if(j.substr(j.length-1)!=="\\"){g[1]=(g[1]||"").replace(i,""),d=l.find[h](g,b,c);if(d!=null){a=a.replace(l.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!=="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},k.filter=function(a,c,d,e){var f,g,h=a,i=[],j=c,m=c&&c[0]&&k.isXML(c[0]);while(a&&c.length){for(var n in l.filter)if((f=l.leftMatch[n].exec(a))!=null&&f[2]){var o,p,q=l.filter[n],r=f[1];g=!1,f.splice(1,1);if(r.substr(r.length-1)==="\\")continue;j===i&&(i=[]);if(l.preFilter[n]){f=l.preFilter[n](f,j,d,i,e,m);if(f){if(f===!0)continue}else g=o=!0}if(f)for(var s=0;(p=j[s])!=null;s++)if(p){o=q(p,f,s,j);var t=e^!!o;d&&o!=null?t?g=!0:j[s]=!1:t&&(i.push(p),g=!0)}if(o!==b){d||(j=i),a=a.replace(l.match[n],"");if(!g)return[];break}}if(a===h)if(g==null)k.error(a);else break;h=a}return j},k.error=function(a){throw"Syntax error, unrecognized expression: "+a};var l=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b==="string",d=c&&!j.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1){}a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},">":function(a,b){var c,d=typeof b==="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&k.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=u;typeof b==="string"&&!j.test(b)&&(b=b.toLowerCase(),d=b,g=t),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=u;typeof b==="string"&&!j.test(b)&&(b=b.toLowerCase(),d=b,g=t),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!=="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!=="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!=="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(i,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return"text"===c&&(b===c||b===null)},radio:function(a){return"radio"===a.type},checkbox:function(a){return"checkbox"===a.type},file:function(a){return"file"===a.type},password:function(a){return"password"===a.type},submit:function(a){return"submit"===a.type},image:function(a){return"image"===a.type},reset:function(a){return"reset"===a.type},button:function(a){return"button"===a.type||a.nodeName.toLowerCase()==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}k.error(e)},CHILD:function(a,b){var c=b[1],d=a;switch(c){case"only":case"first":while(d=d.previousSibling)if(d.nodeType===1)return!1;if(c==="first")return!0;d=a;case"last":while(d=d.nextSibling)if(d.nodeType===1)return!1;return!0;case"nth":var e=b[2],f=b[3];if(e===1&&f===0)return!0;var g=b[0],h=a.parentNode;if(h&&(h.sizcache!==g||!a.nodeIndex)){var i=0;for(d=h.firstChild;d;d=d.nextSibling)d.nodeType===1&&(d.nodeIndex=++i);h.sizcache=g}var j=a.nodeIndex-f;return e===0?j===0:j%e===0&&j/e>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(f.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length==="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var r,s;c.documentElement.compareDocumentPosition?r=function(a,b){if(a===b){g=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(r=function(a,b){var c,d,e=[],f=[],h=a.parentNode,i=b.parentNode,j=h;if(a===b){g=!0;return 0}if(h===i)return s(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return s(e[k],f[k]);return k===c?s(a,f[k],-1):s(e[k],b,1)},s=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),k.getText=function(a){var b="",c;for(var d=0;a[d];d++)c=a[d],c.nodeType===3||c.nodeType===4?b+=c.nodeValue:c.nodeType!==8&&(b+=k.getText(c.childNodes));return b},function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!=="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!=="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!=="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!=="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!=="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g<h;g++)k(a,f[g],d);return k.filter(e,d)};d.find=k,d.expr=k.selectors,d.expr[":"]=d.expr.filters,d.unique=k.uniqueSort,d.text=k.getText,d.isXMLDoc=k.isXML,d.contains=k.contains}();var I=/Until$/,J=/^(?:parents|prevUntil|prevAll)/,K=/,/,L=/^.[^:#\[\.,]*$/,M=Array.prototype.slice,N=d.expr.match.POS,O={children:!0,contents:!0,next:!0,prev:!0};d.fn.extend({find:function(a){var b=this.pushStack("","find",a),c=0;for(var e=0,f=this.length;e<f;e++){c=b.length,d.find(a,this[e],b);if(e>0)for(var g=c;g<b.length;g++)for(var h=0;h<c;h++)if(b[h]===b[g]){b.splice(g--,1);break}}return b},has:function(a){var b=d(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(d.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(Q(this,a,!1),"not",a)},filter:function(a){return this.pushStack(Q(this,a,!0),"filter",a)},is:function(a){return!!a&&d.filter(a,this).length>0},closest:function(a,b){var c=[],e,f,g=this[0];if(d.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(e=0,f=a.length;e<f;e++)i=a[e],j[i]||(j[i]=d.expr.match.POS.test(i)?d(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){for(i in j)h=j[i],(h.jquery?h.index(g)>-1:d(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=N.test(a)?d(a,b||this.context):null;for(e=0,f=this.length;e<f;e++){g=this[e];while(g){if(l?l.index(g)>-1:d.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b)break}}c=c.length>1?d.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a==="string")return d.inArray(this[0],a?d(a):this.parent().children());return d.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a==="string"?d(a,b):d.makeArray(a),e=d.merge(this.get(),c);return this.pushStack(P(c[0])||P(e[0])?e:d.unique(e))},andSelf:function(){return this.add(this.prevObject)}}),d.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return d.dir(a,"parentNode")},parentsUntil:function(a,b,c){return d.dir(a,"parentNode",c)},next:function(a){return d.nth(a,2,"nextSibling")},prev:function(a){return d.nth(a,2,"previousSibling")},nextAll:function(a){return d.dir(a,"nextSibling")},prevAll:function(a){return d.dir(a,"previousSibling")},nextUntil:function(a,b,c){return d.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return d.dir(a,"previousSibling",c)},siblings:function(a){return d.sibling(a.parentNode.firstChild,a)},children:function(a){return d.sibling(a.firstChild)},contents:function(a){return d.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:d.makeArray(a.childNodes)}},function(a,b){d.fn[a]=function(c,e){var f=d.map(this,b,c),g=M.call(arguments);I.test(a)||(e=c),e&&typeof e==="string"&&(f=d.filter(e,f)),f=this.length>1&&!O[a]?d.unique(f):f,(this.length>1||K.test(e))&&J.test(a)&&(f=f.reverse());return this.pushStack(f,a,g.join(","))}}),d.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?d.find.matchesSelector(b[0],a)?[b[0]]:[]:d.find.matches(a,b)},dir:function(a,c,e){var f=[],g=a[c];while(g&&g.nodeType!==9&&(e===b||g.nodeType!==1||!d(g).is(e)))g.nodeType===1&&f.push(g),g=g[c];return f},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var R=/ jQuery\d+="(?:\d+|null)"/g,S=/^\s+/,T=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,U=/<([\w:]+)/,V=/<tbody/i,W=/<|&#?\w+;/,X=/<(?:script|object|embed|option|style)/i,Y=/checked\s*(?:[^=]|=\s*.checked.)/i,Z={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};Z.optgroup=Z.option,Z.tbody=Z.tfoot=Z.colgroup=Z.caption=Z.thead,Z.th=Z.td,d.support.htmlSerialize||(Z._default=[1,"div<div>","</div>"]),d.fn.extend({text:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.text(a.call(this,b,c.text()))});if(typeof a!=="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return d.text(this)},wrapAll:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapAll(a.call(this,b))});if(this[0]){var b=d(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapInner(a.call(this,b))});return this.each(function(){var b=d(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){d(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){d.nodeName(this,"body")||d(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=d(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,d(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,e;(e=this[c])!=null;c++)if(!a||d.filter(a,[e]).length)!b&&e.nodeType===1&&(d.cleanData(e.getElementsByTagName("*")),d.cleanData([e])),e.parentNode&&e.parentNode.removeChild(e);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&d.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return d.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(R,""):null;if(typeof a!=="string"||X.test(a)||!d.support.leadingWhitespace&&S.test(a)||Z[(U.exec(a)||["",""])[1].toLowerCase()])d.isFunction(a)?this.each(function(b){var c=d(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);else{a=a.replace(T,"<$1></$2>");try{for(var c=0,e=this.length;c<e;c++)this[c].nodeType===1&&(d.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(f){this.empty().append(a)}}return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(d.isFunction(a))return this.each(function(b){var c=d(this),e=c.html();c.replaceWith(a.call(this,b,e))});typeof a!=="string"&&(a=d(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;d(this).remove(),b?d(b).before(a):d(c).append(a)})}return this.length?this.pushStack(d(d.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,e){var f,g,h,i,j=a[0],k=[];if(!d.support.checkClone&&arguments.length===3&&typeof j==="string"&&Y.test(j))return this.each(function(){d(this).domManip(a,c,e,!0)});if(d.isFunction(j))return this.each(function(f){var g=d(this);a[0]=j.call(this,f,c?g.html():b),g.domManip(a,c,e)});if(this[0]){i=j&&j.parentNode,d.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?f={fragment:i}:f=d.buildFragment(a,this,k),h=f.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&d.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)e.call(c?$(this[l],g):this[l],f.cacheable||m>1&&l<n?d.clone(h,!0,!0):h)}k.length&&d.each(k,bc)}return this}}),d.buildFragment=function(a,b,e){var f,g,h,i=b&&b[0]?b[0].ownerDocument||b[0]:c;a.length===1&&typeof a[0]==="string"&&a[0].length<512&&i===c&&a[0].charAt(0)==="<"&&!X.test(a[0])&&(d.support.checkClone||!Y.test(a[0]))&&(g=!0,h=d.fragments[a[0]],h&&(h!==1&&(f=h))),f||(f=i.createDocumentFragment(),d.clean(a,i,f,e)),g&&(d.fragments[a[0]]=h?f:1);return{fragment:f,cacheable:g}},d.fragments={},d.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){d.fn[a]=function(c){var e=[],f=d(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&f.length===1){f[b](this[0]);return this}for(var h=0,i=f.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();d(f[h])[b](j),e=e.concat(j)}return this.pushStack(e,a,f.selector)}}),d.extend({clone:function(a,b,c){var e=a.cloneNode(!0),f,g,h;if((!d.support.noCloneEvent||!d.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!d.isXMLDoc(a)){ba(a,e),f=bb(a),g=bb(e);for(h=0;f[h];++h)ba(f[h],g[h])}if(b){_(a,e);if(c){f=bb(a),g=bb(e);for(h=0;f[h];++h)_(f[h],g[h])}}return e},clean:function(a,b,e,f){b=b||c,typeof b.createElement==="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var g=[];for(var h=0,i;(i=a[h])!=null;h++){typeof i==="number"&&(i+="");if(!i)continue;if(typeof i!=="string"||W.test(i)){if(typeof i==="string"){i=i.replace(T,"<$1></$2>");var j=(U.exec(i)||["",""])[1].toLowerCase(),k=Z[j]||Z._default,l=k[0],m=b.createElement("div");m.innerHTML=k[1]+i+k[2];while(l--)m=m.lastChild;if(!d.support.tbody){var n=V.test(i),o=j==="table"&&!n?m.firstChild&&m.firstChild.childNodes:k[1]==="<table>"&&!n?m.childNodes:[];for(var p=o.length-1;p>=0;--p)d.nodeName(o[p],"tbody")&&!o[p].childNodes.length&&o[p].parentNode.removeChild(o[p])}!d.support.leadingWhitespace&&S.test(i)&&m.insertBefore(b.createTextNode(S.exec(i)[0]),m.firstChild),i=m.childNodes}}else i=b.createTextNode(i);i.nodeType?g.push(i):g=d.merge(g,i)}if(e)for(h=0;g[h];h++)!f||!d.nodeName(g[h],"script")||g[h].type&&g[h].type.toLowerCase()!=="text/javascript"?(g[h].nodeType===1&&g.splice.apply(g,[h+1,0].concat(d.makeArray(g[h].getElementsByTagName("script")))),e.appendChild(g[h])):f.push(g[h].parentNode?g[h].parentNode.removeChild(g[h]):g[h]);return g},cleanData:function(a){var b,c,e=d.cache,f=d.expando,g=d.event.special,h=d.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&d.noData[j.nodeName.toLowerCase()])continue;c=j[d.expando];if(c){b=e[c]&&e[c][f];if(b&&b.events){for(var k in b.events)g[k]?d.event.remove(j,k):d.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[d.expando]:j.removeAttribute&&j.removeAttribute(d.expando),delete e[c]}}}});var bd=/alpha\([^)]*\)/i,be=/opacity=([^)]*)/,bf=/-([a-z])/ig,bg=/([A-Z]|^ms)/g,bh=/^-?\d+(?:px)?$/i,bi=/^-?\d/,bj={position:"absolute",visibility:"hidden",display:"block"},bk=["Left","Right"],bl=["Top","Bottom"],bm,bn,bo,bp=function(a,b){return b.toUpperCase()};d.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return d.access(this,a,c,!0,function(a,c,e){return e!==b?d.style(a,c,e):d.css(a,c)})},d.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bm(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{zIndex:!0,fontWeight:!0,opacity:!0,zoom:!0,lineHeight:!0},cssProps:{"float":d.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,e,f){if(a&&a.nodeType!==3&&a.nodeType!==8&&a.style){var g,h=d.camelCase(c),i=a.style,j=d.cssHooks[h];c=d.cssProps[h]||h;if(e===b){if(j&&"get"in j&&(g=j.get(a,!1,f))!==b)return g;return i[c]}if(typeof e==="number"&&isNaN(e)||e==null)return;typeof e==="number"&&!d.cssNumber[h]&&(e+="px");if(!j||!("set"in j)||(e=j.set(a,e))!==b)try{i[c]=e}catch(k){}}},css:function(a,c,e){var f,g=d.camelCase(c),h=d.cssHooks[g];c=d.cssProps[g]||g;if(h&&"get"in h&&(f=h.get(a,!0,e))!==b)return f;if(bm)return bm(a,c,g)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]},camelCase:function(a){return a.replace(bf,bp)}}),d.curCSS=d.css,d.each(["height","width"],function(a,b){d.cssHooks[b]={get:function(a,c,e){var f;if(c){a.offsetWidth!==0?f=bq(a,b,e):d.swap(a,bj,function(){f=bq(a,b,e)});if(f<=0){f=bm(a,b,b),f==="0px"&&bo&&(f=bo(a,b,b));if(f!=null)return f===""||f==="auto"?"0px":f}if(f<0||f==null){f=a.style[b];return f===""||f==="auto"?"0px":f}return typeof f==="string"?f:f+"px"}},set:function(a,b){if(!bh.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),d.support.opacity||(d.cssHooks.opacity={get:function(a,b){return be.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style;c.zoom=1;var e=d.isNaN(b)?"":"alpha(opacity="+b*100+")",f=c.filter||"";c.filter=bd.test(f)?f.replace(bd,e):c.filter+" "+e}}),d(function(){d.support.reliableMarginRight||(d.cssHooks.marginRight={get:function(a,b){var c;d.swap(a,{display:"inline-block"},function(){b?c=bm(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bn=function(a,c,e){var f,g,h;e=e.replace(bg,"-$1").toLowerCase();if(!(g=a.ownerDocument.defaultView))return b;if(h=g.getComputedStyle(a,null))f=h.getPropertyValue(e),f===""&&!d.contains(a.ownerDocument.documentElement,a)&&(f=d.style(a,e));return f}),c.documentElement.currentStyle&&(bo=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bh.test(d)&&bi.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bm=bn||bo,d.expr&&d.expr.filters&&(d.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!d.support.reliableHiddenOffsets&&(a.style.display||d.css(a,"display"))==="none"},d.expr.filters.visible=function(a){return!d.expr.filters.hidden(a)});var br=/%20/g,bs=/\[\]$/,bt=/\r?\n/g,bu=/#.*$/,bv=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bw=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bx=/^(?:about|app|app\-storage|.+\-extension|file|widget):$/,by=/^(?:GET|HEAD)$/,bz=/^\/\//,bA=/\?/,bB=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bC=/^(?:select|textarea)/i,bD=/\s+/,bE=/([?&])_=[^&]*/,bF=/(^|\-)([a-z])/g,bG=function(a,b,c){return b+c.toUpperCase()},bH=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bI=d.fn.load,bJ={},bK={},bL,bM;try{bL=c.location.href}catch(bN){bL=c.createElement("a"),bL.href="",bL=bL.href}bM=bH.exec(bL.toLowerCase())||[],d.fn.extend({load:function(a,c,e){if(typeof a!=="string"&&bI)return bI.apply(this,arguments);if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var g=a.slice(f,a.length);a=a.slice(0,f)}var h="GET";c&&(d.isFunction(c)?(e=c,c=b):typeof c==="object"&&(c=d.param(c,d.ajaxSettings.traditional),h="POST"));var i=this;d.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?d("<div>").append(c.replace(bB,"")).find(g):c)),e&&i.each(e,[c,b,a])}});return this},serialize:function(){return d.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?d.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bC.test(this.nodeName)||bw.test(this.type))}).map(function(a,b){var c=d(this).val();return c==null?null:d.isArray(c)?d.map(c,function(a,c){return{name:b.name,value:a.replace(bt,"\r\n")}}):{name:b.name,value:c.replace(bt,"\r\n")}}).get()}}),d.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){d.fn[b]=function(a){return this.bind(b,a)}}),d.each(["get","post"],function(a,c){d[c]=function(a,e,f,g){d.isFunction(e)&&(g=g||f,f=e,e=b);return d.ajax({type:c,url:a,data:e,success:f,dataType:g})}}),d.extend({getScript:function(a,c){return d.get(a,b,c,"script")},getJSON:function(a,b,c){return d.get(a,b,c,"json")},ajaxSetup:function(a,b){b?d.extend(!0,a,d.ajaxSettings,b):(b=a,a=d.extend(!0,d.ajaxSettings,b));for(var c in {context:1,url:1})c in b?a[c]=b[c]:c in d.ajaxSettings&&(a[c]=d.ajaxSettings[c]);return a},ajaxSettings:{url:bL,isLocal:bx.test(bM[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":d.parseJSON,"text xml":d.parseXML}},ajaxPrefilter:bO(bJ),ajaxTransport:bO(bK),ajax:function(a,c){function v(a,c,l,n){if(r!==2){r=2,p&&clearTimeout(p),o=b,m=n||"",u.readyState=a?4:0;var q,t,v,w=l?bR(e,u,l):b,x,y;if(a>=200&&a<300||a===304){if(e.ifModified){if(x=u.getResponseHeader("Last-Modified"))d.lastModified[k]=x;if(y=u.getResponseHeader("Etag"))d.etag[k]=y}if(a===304)c="notmodified",q=!0;else try{t=bS(e,w),c="success",q=!0}catch(z){c="parsererror",v=z}}else{v=c;if(!c||a)c="error",a<0&&(a=0)}u.status=a,u.statusText=c,q?h.resolveWith(f,[t,c,u]):h.rejectWith(f,[u,c,v]),u.statusCode(j),j=b,s&&g.trigger("ajax"+(q?"Success":"Error"),[u,e,q?t:v]),i.resolveWith(f,[u,c]),s&&(g.trigger("ajaxComplete",[u,e]),--d.active||d.event.trigger("ajaxStop"))}}typeof a==="object"&&(c=a,a=b),c=c||{};var e=d.ajaxSetup({},c),f=e.context||e,g=f!==e&&(f.nodeType||f instanceof d)?d(f):d.event,h=d.Deferred(),i=d._Deferred(),j=e.statusCode||{},k,l={},m,n,o,p,q,r=0,s,t,u={readyState:0,setRequestHeader:function(a,b){r||(l[a.toLowerCase().replace(bF,bG)]=b);return this},getAllResponseHeaders:function(){return r===2?m:null},getResponseHeader:function(a){var c;if(r===2){if(!n){n={};while(c=bv.exec(m))n[c[1].toLowerCase()]=c[2]}c=n[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){r||(e.mimeType=a);return this},abort:function(a){a=a||"abort",o&&o.abort(a),v(0,a);return this}};h.promise(u),u.success=u.done,u.error=u.fail,u.complete=i.done,u.statusCode=function(a){if(a){var b;if(r<2)for(b in a)j[b]=[j[b],a[b]];else b=a[u.status],u.then(b,b)}return this},e.url=((a||e.url)+"").replace(bu,"").replace(bz,bM[1]+"//"),e.dataTypes=d.trim(e.dataType||"*").toLowerCase().split(bD),e.crossDomain==null&&(q=bH.exec(e.url.toLowerCase()),e.crossDomain=q&&(q[1]!=bM[1]||q[2]!=bM[2]||(q[3]||(q[1]==="http:"?80:443))!=(bM[3]||(bM[1]==="http:"?80:443)))),e.data&&e.processData&&typeof e.data!=="string"&&(e.data=d.param(e.data,e.traditional)),bP(bJ,e,c,u);if(r===2)return!1;s=e.global,e.type=e.type.toUpperCase(),e.hasContent=!by.test(e.type),s&&d.active++===0&&d.event.trigger("ajaxStart");if(!e.hasContent){e.data&&(e.url+=(bA.test(e.url)?"&":"?")+e.data),k=e.url;if(e.cache===!1){var w=d.now(),x=e.url.replace(bE,"$1_="+w);e.url=x+(x===e.url?(bA.test(e.url)?"&":"?")+"_="+w:"")}}if(e.data&&e.hasContent&&e.contentType!==!1||c.contentType)l["Content-Type"]=e.contentType;e.ifModified&&(k=k||e.url,d.lastModified[k]&&(l["If-Modified-Since"]=d.lastModified[k]),d.etag[k]&&(l["If-None-Match"]=d.etag[k])),l.Accept=e.dataTypes[0]&&e.accepts[e.dataTypes[0]]?e.accepts[e.dataTypes[0]]+(e.dataTypes[0]!=="*"?", */*; q=0.01":""):e.accepts["*"];for(t in e.headers)u.setRequestHeader(t,e.headers[t]);if(e.beforeSend&&(e.beforeSend.call(f,u,e)===!1||r===2)){u.abort();return!1}for(t in {success:1,error:1,complete:1})u[t](e[t]);o=bP(bK,e,c,u);if(o){u.readyState=1,s&&g.trigger("ajaxSend",[u,e]),e.async&&e.timeout>0&&(p=setTimeout(function(){u.abort("timeout")},e.timeout));try{r=1,o.send(l,v)}catch(y){status<2?v(-1,y):d.error(y)}}else v(-1,"No Transport");return u},param:function(a,c){var e=[],f=function(a,b){b=d.isFunction(b)?b():b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=d.ajaxSettings.traditional);if(d.isArray(a)||a.jquery&&!d.isPlainObject(a))d.each(a,function(){f(this.name,this.value)});else for(var g in a)bQ(g,a[g],c,f);return e.join("&").replace(br,"+")}}),d.extend({active:0,lastModified:{},etag:{}});var bT=d.now(),bU=/(\=)\?(&|$)|\?\?/i;d.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return d.expando+"_"+bT++}}),d.ajaxPrefilter("json jsonp",function(b,c,e){var f=typeof b.data==="string";if(b.dataTypes[0]==="jsonp"||c.jsonpCallback||c.jsonp!=null||b.jsonp!==!1&&(bU.test(b.url)||f&&bU.test(b.data))){var g,h=b.jsonpCallback=d.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2",m=function(){a[h]=i,g&&d.isFunction(i)&&a[h](g[0])};b.jsonp!==!1&&(j=j.replace(bU,l),b.url===j&&(f&&(k=k.replace(bU,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},e.then(m,m),b.converters["script json"]=function(){g||d.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),d.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){d.globalEval(a);return a}}}),d.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),d.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var bV=d.now(),bW,bX;d.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&bZ()||b$()}:bZ,bX=d.ajaxSettings.xhr(),d.support.ajax=!!bX,d.support.cors=bX&&"withCredentials"in bX,bX=b,d.support.ajax&&d.ajaxTransport(function(a){if(!a.crossDomain||d.support.cors){var c;return{send:function(e,f){var g=a.xhr(),h,i;a.username?g.open(a.type,a.url,a.async,a.username,a.password):g.open(a.type,a.url,a.async);if(a.xhrFields)for(i in a.xhrFields)g[i]=a.xhrFields[i];a.mimeType&&g.overrideMimeType&&g.overrideMimeType(a.mimeType),!a.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(i in e)g.setRequestHeader(i,e[i])}catch(j){}g.send(a.hasContent&&a.data||null),c=function(e,i){var j,k,l,m,n;try{if(c&&(i||g.readyState===4)){c=b,h&&(g.onreadystatechange=d.noop,delete bW[h]);if(i)g.readyState!==4&&g.abort();else{j=g.status,l=g.getAllResponseHeaders(),m={},n=g.responseXML,n&&n.documentElement&&(m.xml=n),m.text=g.responseText;try{k=g.statusText}catch(o){k=""}j||!a.isLocal||a.crossDomain?j===1223&&(j=204):j=m.text?200:404}}}catch(p){i||f(-1,p)}m&&f(j,k,m,l)},a.async&&g.readyState!==4?(bW||(bW={},bY()),h=bV++,g.onreadystatechange=bW[h]=c):c()},abort:function(){c&&c(0,1)}}}});var b_={},ca=/^(?:toggle|show|hide)$/,cb=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cc,cd=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];d.fn.extend({show:function(a,b,c){var e,f;if(a||a===0)return this.animate(ce("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)e=this[g],f=e.style.display,!d._data(e,"olddisplay")&&f==="none"&&(f=e.style.display=""),f===""&&d.css(e,"display")==="none"&&d._data(e,"olddisplay",cf(e.nodeName));for(g=0;g<h;g++){e=this[g],f=e.style.display;if(f===""||f==="none")e.style.display=d._data(e,"olddisplay")||""}return this},hide:function(a,b,c){if(a||a===0)return this.animate(ce("hide",3),a,b,c);for(var e=0,f=this.length;e<f;e++){var g=d.css(this[e],"display");g!=="none"&&!d._data(this[e],"olddisplay")&&d._data(this[e],"olddisplay",g)}for(e=0;e<f;e++)this[e].style.display="none";return this},_toggle:d.fn.toggle,toggle:function(a,b,c){var e=typeof a==="boolean";d.isFunction(a)&&d.isFunction(b)?this._toggle.apply(this,arguments):a==null||e?this.each(function(){var b=e?a:d(this).is(":hidden");d(this)[b?"show":"hide"]()}):this.animate(ce("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,e){var f=d.speed(b,c,e);if(d.isEmptyObject(a))return this.each(f.complete);return this[f.queue===!1?"each":"queue"](function(){var b=d.extend({},f),c,e=this.nodeType===1,g=e&&d(this).is(":hidden"),h=this;for(c in a){var i=d.camelCase(c);c!==i&&(a[i]=a[c],delete a[c],c=i);if(a[c]==="hide"&&g||a[c]==="show"&&!g)return b.complete.call(this);if(e&&(c==="height"||c==="width")){b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(d.css(this,"display")==="inline"&&d.css(this,"float")==="none")if(d.support.inlineBlockNeedsLayout){var j=cf(this.nodeName);j==="inline"?this.style.display="inline-block":(this.style.display="inline",this.style.zoom=1)}else this.style.display="inline-block"}d.isArray(a[c])&&((b.specialEasing=b.specialEasing||{})[c]=a[c][1],a[c]=a[c][0])}b.overflow!=null&&(this.style.overflow="hidden"),b.curAnim=d.extend({},a),d.each(a,function(c,e){var f=new d.fx(h,b,c);if(ca.test(e))f[e==="toggle"?g?"show":"hide":e](a);else{var i=cb.exec(e),j=f.cur();if(i){var k=parseFloat(i[2]),l=i[3]||(d.cssNumber[c]?"":"px");l!=="px"&&(d.style(h,c,(k||1)+l),j=(k||1)/f.cur()*j,d.style(h,c,j+l)),i[1]&&(k=(i[1]==="-="?-1:1)*k+j),f.custom(j,k,l)}else f.custom(j,e,"")}});return!0})},stop:function(a,b){var c=d.timers;a&&this.queue([]),this.each(function(){for(var a=c.length-1;a>=0;a--)c[a].elem===this&&(b&&c[a](!0),c.splice(a,1))}),b||this.dequeue();return this}}),d.each({slideDown:ce("show",1),slideUp:ce("hide",1),slideToggle:ce("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){d.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),d.extend({speed:function(a,b,c){var e=a&&typeof a==="object"?d.extend({},a):{complete:c||!c&&b||d.isFunction(a)&&a,duration:a,easing:c&&b||b&&!d.isFunction(b)&&b};e.duration=d.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in d.fx.speeds?d.fx.speeds[e.duration]:d.fx.speeds._default,e.old=e.complete,e.complete=function(){e.queue!==!1&&d(this).dequeue(),d.isFunction(e.old)&&e.old.call(this)};return e},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig||(b.orig={})}}),d.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(d.fx.step[this.prop]||d.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=d.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function g(a){return e.step(a)}var e=this,f=d.fx;this.startTime=d.now(),this.start=a,this.end=b,this.unit=c||this.unit||(d.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,g.elem=this.elem,g()&&d.timers.push(g)&&!cc&&(cc=setInterval(f.tick,f.interval))},show:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),d(this.elem).show()},hide:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=d.now(),c=!0;if(a||b>=this.options.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),this.options.curAnim[this.prop]=!0;for(var e in this.options.curAnim)this.options.curAnim[e]!==!0&&(c=!1);if(c){if(this.options.overflow!=null&&!d.support.shrinkWrapBlocks){var f=this.elem,g=this.options;d.each(["","X","Y"],function(a,b){f.style["overflow"+b]=g.overflow[a]})}this.options.hide&&d(this.elem).hide();if(this.options.hide||this.options.show)for(var h in this.options.curAnim)d.style(this.elem,h,this.options.orig[h]);this.options.complete.call(this.elem)}return!1}var i=b-this.startTime;this.state=i/this.options.duration;var j=this.options.specialEasing&&this.options.specialEasing[this.prop],k=this.options.easing||(d.easing.swing?"swing":"linear");this.pos=d.easing[j||k](this.state,i,0,1,this.options.duration),this.now=this.start+(this.end-this.start)*this.pos,this.update();return!0}},d.extend(d.fx,{tick:function(){var a=d.timers;for(var b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||d.fx.stop()},interval:13,stop:function(){clearInterval(cc),cc=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){d.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit:a.elem[a.prop]=a.now}}}),d.expr&&d.expr.filters&&(d.expr.filters.animated=function(a){return d.grep(d.timers,function(b){return a===b.elem}).length});var cg=/^t(?:able|d|h)$/i,ch=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?d.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){d.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return d.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(e){}var f=b.ownerDocument,g=f.documentElement;if(!c||!d.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=f.body,i=ci(f),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||d.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||d.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:d.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){d.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return d.offset.bodyOffset(b);d.offset.initialize();var c,e=b.offsetParent,f=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(d.offset.supportsFixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===e&&(l+=b.offsetTop,m+=b.offsetLeft,d.offset.doesNotAddBorder&&(!d.offset.doesAddBorderForTableAndCells||!cg.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),f=e,e=b.offsetParent),d.offset.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;d.offset.supportsFixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},d.offset={initialize:function(){var a=c.body,b=c.createElement("div"),e,f,g,h,i=parseFloat(d.css(a,"marginTop"))||0,j="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";d.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),e=b.firstChild,f=e.firstChild,h=e.nextSibling.firstChild.firstChild,this.doesNotAddBorder=f.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,f.style.position="fixed",f.style.top="20px",this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15,f.style.position=f.style.top="",e.style.overflow="hidden",e.style.position="relative",this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),d.offset.initialize=d.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;d.offset.initialize(),d.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(d.css(a,"marginTop"))||0,c+=parseFloat(d.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var e=d.css(a,"position");e==="static"&&(a.style.position="relative");var f=d(a),g=f.offset(),h=d.css(a,"top"),i=d.css(a,"left"),j=(e==="absolute"||e==="fixed")&&d.inArray("auto",[h,i])>-1,k={},l={},m,n;j&&(l=f.position()),m=j?l.top:parseInt(h,10)||0,n=j?l.left:parseInt(i,10)||0,d.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):f.css(k)}},d.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),e=ch.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(d.css(a,"marginTop"))||0,c.left-=parseFloat(d.css(a,"marginLeft"))||0,e.top+=parseFloat(d.css(b[0],"borderTopWidth"))||0,e.left+=parseFloat(d.css(b[0],"borderLeftWidth"))||0;return{top:c.top-e.top,left:c.left-e.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&(!ch.test(a.nodeName)&&d.css(a,"position")==="static"))a=a.offsetParent;return a})}}),d.each(["Left","Top"],function(a,c){var e="scroll"+c;d.fn[e]=function(c){var f=this[0],g;if(!f)return null;if(c!==b)return this.each(function(){g=ci(this),g?g.scrollTo(a?d(g).scrollLeft():c,a?c:d(g).scrollTop()):this[e]=c});g=ci(f);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:d.support.boxModel&&g.document.documentElement[e]||g.document.body[e]:f[e]}}),d.each(["Height","Width"],function(a,c){var e=c.toLowerCase();d.fn["inner"+c]=function(){return this[0]?parseFloat(d.css(this[0],e,"padding")):null},d.fn["outer"+c]=function(a){return this[0]?parseFloat(d.css(this[0],e,a?"margin":"border")):null},d.fn[e]=function(a){var f=this[0];if(!f)return a==null?null:this;if(d.isFunction(a))return this.each(function(b){var c=d(this);c[e](a.call(this,b,c[e]()))});if(d.isWindow(f)){var g=f.document.documentElement["client"+c];return f.document.compatMode==="CSS1Compat"&&g||f.document.body["client"+c]||g}if(f.nodeType===9)return Math.max(f.documentElement["client"+c],f.body["scroll"+c],f.documentElement["scroll"+c],f.body["offset"+c],f.documentElement["offset"+c]);if(a===b){var h=d.css(f,e),i=parseFloat(h);return d.isNaN(i)?h:i}return this.css(e,typeof a==="string"?a:a+"px")}}),a.jQuery=a.$=d})(window);
\ No newline at end of file
diff --git a/eclipse.org-common/lib/jquery/jquery-1.7.2.min.js b/eclipse.org-common/lib/jquery/jquery-1.7.2.min.js
deleted file mode 100644
index 16ad06c..0000000
--- a/eclipse.org-common/lib/jquery/jquery-1.7.2.min.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/*! jQuery v1.7.2 jquery.com | jquery.org/license */
-(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cu(a){if(!cj[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ck||(ck=c.createElement("iframe"),ck.frameBorder=ck.width=ck.height=0),b.appendChild(ck);if(!cl||!ck.createElement)cl=(ck.contentWindow||ck.contentDocument).document,cl.write((f.support.boxModel?"<!doctype html>":"")+"<html><body>"),cl.close();d=cl.createElement(a),cl.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ck)}cj[a]=e}return cj[a]}function ct(a,b){var c={};f.each(cp.concat.apply([],cp.slice(0,b)),function(){c[this]=a});return c}function cs(){cq=b}function cr(){setTimeout(cs,0);return cq=f.now()}function ci(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ch(){try{return new a.XMLHttpRequest}catch(b){}}function cb(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function ca(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function b_(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bD.test(a)?d(a,e):b_(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&f.type(b)==="object")for(var e in b)b_(a+"["+e+"]",b[e],c,d);else d(a,b)}function b$(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function bZ(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bS,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=bZ(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=bZ(a,c,d,e,"*",g));return l}function bY(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bO),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bB(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?1:0,g=4;if(d>0){if(c!=="border")for(;e<g;e+=2)c||(d-=parseFloat(f.css(a,"padding"+bx[e]))||0),c==="margin"?d+=parseFloat(f.css(a,c+bx[e]))||0:d-=parseFloat(f.css(a,"border"+bx[e]+"Width"))||0;return d+"px"}d=by(a,b);if(d<0||d==null)d=a.style[b];if(bt.test(d))return d;d=parseFloat(d)||0;if(c)for(;e<g;e+=2)d+=parseFloat(f.css(a,"padding"+bx[e]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+bx[e]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+bx[e]))||0);return d+"px"}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;b.nodeType===1&&(b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?b.outerHTML=a.outerHTML:c!=="input"||a.type!=="checkbox"&&a.type!=="radio"?c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text):(a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value)),b.removeAttribute(f.expando),b.removeAttribute("_submit_attached"),b.removeAttribute("_change_attached"))}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c,i[c][d])}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?+d:j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.2",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){if(typeof c!="string"||!c)return null;var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h,i){var j,k=d==null,l=0,m=a.length;if(d&&typeof d=="object"){for(l in d)e.access(a,c,l,d[l],1,h,f);g=1}else if(f!==b){j=i===b&&e.isFunction(f),k&&(j?(j=c,c=function(a,b,c){return j.call(e(a),c)}):(c.call(a,f),c=null));if(c)for(;l<m;l++)c(a[l],d,j?f.call(a[l],l,c(a[l],d)):f,i);g=1}return g?a:k?c.call(a):m?c(a[0],d):h},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m,n=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?n(g):h==="function"&&(!a.unique||!p.has(g))&&c.push(g)},o=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,j=!0,m=k||0,k=0,l=c.length;for(;c&&m<l;m++)if(c[m].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}j=!1,c&&(a.once?e===!0?p.disable():c=[]:d&&d.length&&(e=d.shift(),p.fireWith(e[0],e[1])))},p={add:function(){if(c){var a=c.length;n(arguments),j?l=c.length:e&&e!==!0&&(k=a,o(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){j&&f<=l&&(l--,f<=m&&m--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&p.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(j?a.once||d.push([b,c]):(!a.once||!e)&&o(b,c));return this},fire:function(){p.fireWith(this,arguments);return this},fired:function(){return!!i}};return p};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p=c.createElement("div"),q=c.documentElement;p.setAttribute("className","t"),p.innerHTML="   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=p.getElementsByTagName("*"),e=p.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=p.getElementsByTagName("input")[0],b={leadingWhitespace:p.firstChild.nodeType===3,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:p.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,pixelMargin:!0},f.boxModel=b.boxModel=c.compatMode==="CSS1Compat",i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete p.test}catch(r){b.deleteExpando=!1}!p.addEventListener&&p.attachEvent&&p.fireEvent&&(p.attachEvent("onclick",function(){b.noCloneEvent=!1}),p.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),i.setAttribute("name","t"),p.appendChild(i),j=c.createDocumentFragment(),j.appendChild(p.lastChild),b.checkClone=j.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,j.removeChild(i),j.appendChild(p);if(p.attachEvent)for(n in{submit:1,change:1,focusin:1})m="on"+n,o=m in p,o||(p.setAttribute(m,"return;"),o=typeof p[m]=="function"),b[n+"Bubbles"]=o;j.removeChild(p),j=g=h=p=i=null,f(function(){var d,e,g,h,i,j,l,m,n,q,r,s,t,u=c.getElementsByTagName("body")[0];!u||(m=1,t="padding:0;margin:0;border:",r="position:absolute;top:0;left:0;width:1px;height:1px;",s=t+"0;visibility:hidden;",n="style='"+r+t+"5px solid #000;",q="<div "+n+"display:block;'><div style='"+t+"0;display:block;overflow:hidden;'></div></div>"+"<table "+n+"' cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",d=c.createElement("div"),d.style.cssText=s+"width:0;height:0;position:static;top:0;margin-top:"+m+"px",u.insertBefore(d,u.firstChild),p=c.createElement("div"),d.appendChild(p),p.innerHTML="<table><tr><td style='"+t+"0;display:none'></td><td>t</td></tr></table>",k=p.getElementsByTagName("td"),o=k[0].offsetHeight===0,k[0].style.display="",k[1].style.display="none",b.reliableHiddenOffsets=o&&k[0].offsetHeight===0,a.getComputedStyle&&(p.innerHTML="",l=c.createElement("div"),l.style.width="0",l.style.marginRight="0",p.style.width="2px",p.appendChild(l),b.reliableMarginRight=(parseInt((a.getComputedStyle(l,null)||{marginRight:0}).marginRight,10)||0)===0),typeof p.style.zoom!="undefined"&&(p.innerHTML="",p.style.width=p.style.padding="1px",p.style.border=0,p.style.overflow="hidden",p.style.display="inline",p.style.zoom=1,b.inlineBlockNeedsLayout=p.offsetWidth===3,p.style.display="block",p.style.overflow="visible",p.innerHTML="<div style='width:5px;'></div>",b.shrinkWrapBlocks=p.offsetWidth!==3),p.style.cssText=r+s,p.innerHTML=q,e=p.firstChild,g=e.firstChild,i=e.nextSibling.firstChild.firstChild,j={doesNotAddBorder:g.offsetTop!==5,doesAddBorderForTableAndCells:i.offsetTop===5},g.style.position="fixed",g.style.top="20px",j.fixedPosition=g.offsetTop===20||g.offsetTop===15,g.style.position=g.style.top="",e.style.overflow="hidden",e.style.position="relative",j.subtractsBorderForOverflowNotVisible=g.offsetTop===-5,j.doesNotIncludeMarginInBodyOffset=u.offsetTop!==m,a.getComputedStyle&&(p.style.marginTop="1%",b.pixelMargin=(a.getComputedStyle(p,null)||{marginTop:0}).marginTop!=="1%"),typeof d.style.zoom!="undefined"&&(d.style.zoom=1),u.removeChild(d),l=p=d=null,f.extend(b,j))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h,i,j=this[0],k=0,m=null;if(a===b){if(this.length){m=f.data(j);if(j.nodeType===1&&!f._data(j,"parsedAttrs")){g=j.attributes;for(i=g.length;k<i;k++)h=g[k].name,h.indexOf("data-")===0&&(h=f.camelCase(h.substring(5)),l(j,h,m[h]));f._data(j,"parsedAttrs",!0)}}return m}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!";return f.access(this,function(c){if(c===b){m=this.triggerHandler("getData"+e,[d[0]]),m===b&&j&&(m=f.data(j,a),m=l(j,a,m));return m===b&&d[1]?this.data(d[0]):m}d[1]=c,this.each(function(){var b=f(this);b.triggerHandler("setData"+e,d),f.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1)},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){var d=2;typeof a!="string"&&(c=a,a="fx",d--);if(arguments.length<d)return f.queue(this[0],a);return c===b?this:this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise(c)}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,f.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,f.prop,a,b,arguments.length>1)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.type]||f.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.type]||f.valHooks[g.nodeName.toLowerCase()];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h,i=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;i<g;i++)e=d[i],e&&(c=f.propFix[e]||e,h=u.test(e),h||f.attr(a,e,""),a.removeAttribute(v?e:c),h&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0,coords:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/(?:^|\s)hover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(
-a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler,g=p.selector),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:g&&G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=f.event.special[c.type]||{},j=[],k,l,m,n,o,p,q,r,s,t,u;g[0]=c,c.delegateTarget=this;if(!i.preDispatch||i.preDispatch.call(this,c)!==!1){if(e&&(!c.button||c.type!=="click")){n=f(this),n.context=this.ownerDocument||this;for(m=c.target;m!=this;m=m.parentNode||this)if(m.disabled!==!0){p={},r=[],n[0]=m;for(k=0;k<e;k++)s=d[k],t=s.selector,p[t]===b&&(p[t]=s.quick?H(m,s.quick):n.is(t)),p[t]&&r.push(s);r.length&&j.push({elem:m,matches:r})}}d.length>e&&j.push({elem:this,matches:d.slice(e)});for(k=0;k<j.length&&!c.isPropagationStopped();k++){q=j[k],c.currentTarget=q.elem;for(l=0;l<q.matches.length&&!c.isImmediatePropagationStopped();l++){s=q.matches[l];if(h||!c.namespace&&!s.namespace||c.namespace_re&&c.namespace_re.test(s.namespace))c.data=s.data,c.handleObj=s,o=((f.event.special[s.origType]||{}).handle||s.handler).apply(q.elem,g),o!==b&&(c.result=o,o===!1&&(c.preventDefault(),c.stopPropagation()))}}i.postDispatch&&i.postDispatch.call(this,c);return c.result}},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),d._submit_attached=!0)})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9||d===11){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));o.match.globalPOS=p;var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.globalPOS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")[\\s/>]","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){return f.access(this,function(a){return a===b?f.text(this):this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f
-.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){return f.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(f.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(g){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bi(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,function(a,b){b.src?f.ajax({type:"GET",global:!1,url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i,j=a[0];b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof j=="string"&&j.length<512&&i===c&&j.charAt(0)==="<"&&!bb.test(j)&&(f.support.checkClone||!bd.test(j))&&(f.support.html5Clone||!bc.test(j))&&(g=!0,h=f.fragments[j],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[j]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||f.isXMLDoc(a)||!bc.test("<"+a.nodeName+">")?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g,h,i,j=[];b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);for(var k=0,l;(l=a[k])!=null;k++){typeof l=="number"&&(l+="");if(!l)continue;if(typeof l=="string")if(!_.test(l))l=b.createTextNode(l);else{l=l.replace(Y,"<$1></$2>");var m=(Z.exec(l)||["",""])[1].toLowerCase(),n=bg[m]||bg._default,o=n[0],p=b.createElement("div"),q=bh.childNodes,r;b===c?bh.appendChild(p):U(b).appendChild(p),p.innerHTML=n[1]+l+n[2];while(o--)p=p.lastChild;if(!f.support.tbody){var s=$.test(l),t=m==="table"&&!s?p.firstChild&&p.firstChild.childNodes:n[1]==="<table>"&&!s?p.childNodes:[];for(i=t.length-1;i>=0;--i)f.nodeName(t[i],"tbody")&&!t[i].childNodes.length&&t[i].parentNode.removeChild(t[i])}!f.support.leadingWhitespace&&X.test(l)&&p.insertBefore(b.createTextNode(X.exec(l)[0]),p.firstChild),l=p.childNodes,p&&(p.parentNode.removeChild(p),q.length>0&&(r=q[q.length-1],r&&r.parentNode&&r.parentNode.removeChild(r)))}var u;if(!f.support.appendChecked)if(l[0]&&typeof (u=l.length)=="number")for(i=0;i<u;i++)bn(l[i]);else bn(l);l.nodeType?j.push(l):j=f.merge(j,l)}if(d){g=function(a){return!a.type||be.test(a.type)};for(k=0;j[k];k++){h=j[k];if(e&&f.nodeName(h,"script")&&(!h.type||be.test(h.type)))e.push(h.parentNode?h.parentNode.removeChild(h):h);else{if(h.nodeType===1){var v=f.grep(h.getElementsByTagName("script"),g);j.splice.apply(j,[k+1,0].concat(v))}d.appendChild(h)}}}return j},cleanData:function(a){var b,c,d=f.cache,e=f.event.special,g=f.support.deleteExpando;for(var h=0,i;(i=a[h])!=null;h++){if(i.nodeName&&f.noData[i.nodeName.toLowerCase()])continue;c=i[f.expando];if(c){b=d[c];if(b&&b.events){for(var j in b.events)e[j]?f.event.remove(i,j):f.removeEvent(i,j,b.handle);b.handle&&(b.handle.elem=null)}g?delete i[f.expando]:i.removeAttribute&&i.removeAttribute(f.expando),delete d[c]}}}});var bp=/alpha\([^)]*\)/i,bq=/opacity=([^)]*)/,br=/([A-Z]|^ms)/g,bs=/^[\-+]?(?:\d*\.)?\d+$/i,bt=/^-?(?:\d*\.)?\d+(?!px)[^\d\s]+$/i,bu=/^([\-+])=([\-+.\de]+)/,bv=/^margin/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Top","Right","Bottom","Left"],by,bz,bA;f.fn.css=function(a,c){return f.access(this,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)},a,c,arguments.length>1)},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=by(a,"opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bu.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(by)return by(a,c)},swap:function(a,b,c){var d={},e,f;for(f in b)d[f]=a.style[f],a.style[f]=b[f];e=c.call(a);for(f in b)a.style[f]=d[f];return e}}),f.curCSS=f.css,c.defaultView&&c.defaultView.getComputedStyle&&(bz=function(a,b){var c,d,e,g,h=a.style;b=b.replace(br,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b))),!f.support.pixelMargin&&e&&bv.test(b)&&bt.test(c)&&(g=h.width,h.width=c,c=e.width,h.width=g);return c}),c.documentElement.currentStyle&&(bA=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f==null&&g&&(e=g[b])&&(f=e),bt.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),by=bz||bA,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth!==0?bB(a,b,d):f.swap(a,bw,function(){return bB(a,b,d)})},set:function(a,b){return bs.test(b)?b+"px":b}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bq.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bp,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bp.test(g)?g.replace(bp,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){return f.swap(a,{display:"inline-block"},function(){return b?by(a,"margin-right"):a.style.marginRight})}})}),f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)}),f.each({margin:"",padding:"",border:"Width"},function(a,b){f.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bx[d]+b]=e[d]||e[d-2]||e[0];return f}}});var bC=/%20/g,bD=/\[\]$/,bE=/\r?\n/g,bF=/#.*$/,bG=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bH=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bI=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bJ=/^(?:GET|HEAD)$/,bK=/^\/\//,bL=/\?/,bM=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bN=/^(?:select|textarea)/i,bO=/\s+/,bP=/([?&])_=[^&]*/,bQ=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bR=f.fn.load,bS={},bT={},bU,bV,bW=["*/"]+["*"];try{bU=e.href}catch(bX){bU=c.createElement("a"),bU.href="",bU=bU.href}bV=bQ.exec(bU.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bR)return bR.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bM,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bN.test(this.nodeName)||bH.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bE,"\r\n")}}):{name:b.name,value:c.replace(bE,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b$(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b$(a,b);return a},ajaxSettings:{url:bU,isLocal:bI.test(bV[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bW},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bY(bS),ajaxTransport:bY(bT),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?ca(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cb(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bG.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bF,"").replace(bK,bV[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bO),d.crossDomain==null&&(r=bQ.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bV[1]&&r[2]==bV[2]&&(r[3]||(r[1]==="http:"?80:443))==(bV[3]||(bV[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bZ(bS,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bJ.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bL.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bP,"$1_="+x);d.url=y+(y===d.url?(bL.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bW+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bZ(bT,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)b_(g,a[g],c,e);return d.join("&").replace(bC,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cc=f.now(),cd=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cc++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=typeof b.data=="string"&&/^application\/x\-www\-form\-urlencoded/.test(b.contentType);if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cd.test(b.url)||e&&cd.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cd,l),b.url===j&&(e&&(k=k.replace(cd,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ce=a.ActiveXObject?function(){for(var a in cg)cg[a](0,1)}:!1,cf=0,cg;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ch()||ci()}:ch,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ce&&delete cg[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n);try{m.text=h.responseText}catch(a){}try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cf,ce&&(cg||(cg={},f(a).unload(ce)),cg[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cj={},ck,cl,cm=/^(?:toggle|show|hide)$/,cn=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,co,cp=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cq;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(ct("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),(e===""&&f.css(d,"display")==="none"||!f.contains(d.ownerDocument.documentElement,d))&&f._data(d,"olddisplay",cu(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(ct("hide",3),a,b,c);var d,e,g=0,h=this.length;for(;g<h;g++)d=this[g],d.style&&(e=f.css(d,"display"),e!=="none"&&!f._data(d,"olddisplay")&&f._data(d,"olddisplay",e));for(g=0;g<h;g++)this[g].style&&(this[g].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(ct("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){function g(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o,p,q;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]);if((k=f.cssHooks[g])&&"expand"in k){l=k.expand(a[g]),delete a[g];for(i in l)i in a||(a[i]=l[i])}}for(g in a){h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(!f.support.inlineBlockNeedsLayout||cu(this.nodeName)==="inline"?this.style.display="inline-block":this.style.zoom=1))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)j=new f.fx(this,b,i),h=a[i],cm.test(h)?(q=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),q?(f._data(this,"toggle"+i,q==="show"?"hide":"show"),j[q]()):j[h]()):(m=cn.exec(h),n=j.cur(),m?(o=parseFloat(m[2]),p=m[3]||(f.cssNumber[i]?"":"px"),p!=="px"&&(f.style(this,i,(o||1)+p),n=(o||1)/j.cur()*n,f.style(this,i,n+p)),m[1]&&(o=(m[1]==="-="?-1:1)*o+n),j.custom(n,o,p)):j.custom(n,h,""));return!0}var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return e.queue===!1?this.each(g):this.queue(e.queue,g)},stop:function(a,c,d){typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]);return this.each(function(){function h(a,b,c){var e=b[c];f.removeData(a,c,!0),e.stop(d)}var b,c=!1,e=f.timers,g=f._data(this);d||f._unmark(!0,this);if(a==null)for(b in g)g[b]&&g[b].stop&&b.indexOf(".run")===b.length-4&&h(this,g,b);else g[b=a+".run"]&&g[b].stop&&h(this,g,b);for(b=e.length;b--;)e[b].elem===this&&(a==null||e[b].queue===a)&&(d?e[b](!0):e[b].saveState(),c=!0,e.splice(b,1));(!d||!c)&&f.dequeue(this,a)})}}),f.each({slideDown:ct("show",1),slideUp:ct("hide",1),slideToggle:ct("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue?f.dequeue(this,d.queue):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a){return a},swing:function(a){return-Math.cos(a*Math.PI)/2+.5}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,c,d){function h(a){return e.step(a)}var e=this,g=f.fx;this.startTime=cq||cr(),this.end=c,this.now=this.start=a,this.pos=this.state=0,this.unit=d||this.unit||(f.cssNumber[this.prop]?"":"px"),h.queue=this.options.queue,h.elem=this.elem,h.saveState=function(){f._data(e.elem,"fxshow"+e.prop)===b&&(e.options.hide?f._data(e.elem,"fxshow"+e.prop,e.start):e.options.show&&f._data(e.elem,"fxshow"+e.prop,e.end))},h()&&f.timers.push(h)&&!co&&(co=setInterval(g.tick,g.interval))},show:function(){var a=f._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=a||f.style(this.elem,this.prop),this.options.show=!0,a!==b?this.custom(this.cur(),a):this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f._data(this.elem,"fxshow"+this.prop)||f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b,c,d,e=cq||cr(),g=!0,h=this.elem,i=this.options;if(a||e>=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||f.fx.stop()},interval:13,stop:function(){clearInterval(co),co=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=a.now+a.unit:a.elem[a.prop]=a.now}}}),f.each(cp.concat.apply([],cp),function(a,b){b.indexOf("margin")&&(f.fx.step[b]=function(a){f.style(a.elem,b,Math.max(0,a.now)+a.unit)})}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cv,cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?cv=function(a,b,c,d){try{d=a.getBoundingClientRect()}catch(e){}if(!d||!f.contains(c,a))return d?{top:d.top,left:d.left}:{top:0,left:0};var g=b.body,h=cy(b),i=c.clientTop||g.clientTop||0,j=c.clientLeft||g.clientLeft||0,k=h.pageYOffset||f.support.boxModel&&c.scrollTop||g.scrollTop,l=h.pageXOffset||f.support.boxModel&&c.scrollLeft||g.scrollLeft,m=d.top+k-i,n=d.left+l-j;return{top:m,left:n}}:cv=function(a,b,c){var d,e=a.offsetParent,g=a,h=b.body,i=b.defaultView,j=i?i.getComputedStyle(a,null):a.currentStyle,k=a.offsetTop,l=a.offsetLeft;while((a=a.parentNode)&&a!==h&&a!==c){if(f.support.fixedPosition&&j.position==="fixed")break;d=i?i.getComputedStyle(a,null):a.currentStyle,k-=a.scrollTop,l-=a.scrollLeft,a===e&&(k+=a.offsetTop,l+=a.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(a.nodeName))&&(k+=parseFloat(d.borderTopWidth)||0,l+=parseFloat(d.borderLeftWidth)||0),g=e,e=a.offsetParent),f.support.subtractsBorderForOverflowNotVisible&&d.overflow!=="visible"&&(k+=parseFloat(d.borderTopWidth)||0,l+=parseFloat(d.borderLeftWidth)||0),j=d}if(j.position==="relative"||j.position==="static")k+=h.offsetTop,l+=h.offsetLeft;f.support.fixedPosition&&j.position==="fixed"&&(k+=Math.max(c.scrollTop,h.scrollTop),l+=Math.max(c.scrollLeft,h.scrollLeft));return{top:k,left:l}},f.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){f.offset.setOffset(this,a,b)});var c=this[0],d=c&&c.ownerDocument;if(!d)return null;if(c===d.body)return f.offset.bodyOffset(c);return cv(c,d,d.documentElement)},f.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);f.fn[a]=function(e){return f.access(this,function(a,e,g){var h=cy(a);if(g===b)return h?c in h?h[c]:f.support.boxModel&&h.document.documentElement[e]||h.document.body[e]:a[e];h?h.scrollTo(d?f(h).scrollLeft():g,d?g:f(h).scrollTop()):a[e]=g},a,e,arguments.length,null)}}),f.each({Height:"height",Width:"width"},function(a,c){var d="client"+a,e="scroll"+a,g="offset"+a;f.fn["inner"+a]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,c,"padding")):this[c]():null},f.fn["outer"+a]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,c,a?"margin":"border")):this[c]():null},f.fn[c]=function(a){return f.access(this,function(a,c,h){var i,j,k,l;if(f.isWindow(a)){i=a.document,j=i.documentElement[d];return f.support.boxModel&&j||i.body&&i.body[d]||j}if(a.nodeType===9){i=a.documentElement;if(i[d]>=i[e])return i[d];return Math.max(a.body[e],i[e],a.body[g],i[g])}if(h===b){k=f.css(a,c),l=parseFloat(k);return f.isNumeric(l)?l:k}f(a).css(c,h)},c,a,arguments.length,null)}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window);
\ No newline at end of file
diff --git a/eclipse.org-common/lib/jquery/jquery-1.9.1.min.js b/eclipse.org-common/lib/jquery/jquery-1.9.1.min.js
deleted file mode 100644
index 006e953..0000000
--- a/eclipse.org-common/lib/jquery/jquery-1.9.1.min.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license
-//@ sourceMappingURL=jquery.min.map
-*/(function(e,t){var n,r,i=typeof t,o=e.document,a=e.location,s=e.jQuery,u=e.$,l={},c=[],p="1.9.1",f=c.concat,d=c.push,h=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,b=function(e,t){return new b.fn.init(e,t,r)},x=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^[\],:{}\s]*$/,E=/(?:^|:|,)(?:\s*\[)+/g,S=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,A=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,j=/^-ms-/,D=/-([\da-z])/gi,L=function(e,t){return t.toUpperCase()},H=function(e){(o.addEventListener||"load"===e.type||"complete"===o.readyState)&&(q(),b.ready())},q=function(){o.addEventListener?(o.removeEventListener("DOMContentLoaded",H,!1),e.removeEventListener("load",H,!1)):(o.detachEvent("onreadystatechange",H),e.detachEvent("onload",H))};b.fn=b.prototype={jquery:p,constructor:b,init:function(e,n,r){var i,a;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof b?n[0]:n,b.merge(this,b.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:o,!0)),C.test(i[1])&&b.isPlainObject(n))for(i in n)b.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(a=o.getElementById(i[2]),a&&a.parentNode){if(a.id!==i[2])return r.find(e);this.length=1,this[0]=a}return this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):b.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),b.makeArray(e,this))},selector:"",length:0,size:function(){return this.length},toArray:function(){return h.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return b.each(this,e,t)},ready:function(e){return b.ready.promise().done(e),this},slice:function(){return this.pushStack(h.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(b.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:d,sort:[].sort,splice:[].splice},b.fn.init.prototype=b.fn,b.extend=b.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},u=1,l=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},u=2),"object"==typeof s||b.isFunction(s)||(s={}),l===u&&(s=this,--u);l>u;u++)if(null!=(o=arguments[u]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(b.isPlainObject(r)||(n=b.isArray(r)))?(n?(n=!1,a=e&&b.isArray(e)?e:[]):a=e&&b.isPlainObject(e)?e:{},s[i]=b.extend(c,a,r)):r!==t&&(s[i]=r));return s},b.extend({noConflict:function(t){return e.$===b&&(e.$=u),t&&e.jQuery===b&&(e.jQuery=s),b},isReady:!1,readyWait:1,holdReady:function(e){e?b.readyWait++:b.ready(!0)},ready:function(e){if(e===!0?!--b.readyWait:!b.isReady){if(!o.body)return setTimeout(b.ready);b.isReady=!0,e!==!0&&--b.readyWait>0||(n.resolveWith(o,[b]),b.fn.trigger&&b(o).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===b.type(e)},isArray:Array.isArray||function(e){return"array"===b.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if(!e||"object"!==b.type(e)||e.nodeType||b.isWindow(e))return!1;try{if(e.constructor&&!y.call(e,"constructor")&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||y.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=b.buildFragment([e],t,i),i&&b(i).remove(),b.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=b.trim(n),n&&k.test(n.replace(S,"@").replace(A,"]").replace(E,"")))?Function("return "+n)():(b.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||b.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&b.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(j,"ms-").replace(D,L)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:v&&!v.call("\ufeff\u00a0")?function(e){return null==e?"":v.call(e)}:function(e){return null==e?"":(e+"").replace(T,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?b.merge(n,"string"==typeof e?[e]:e):d.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(g)return g.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return f.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),b.isFunction(e)?(r=h.call(arguments,2),i=function(){return e.apply(n||this,r.concat(h.call(arguments)))},i.guid=e.guid=e.guid||b.guid++,i):t},access:function(e,n,r,i,o,a,s){var u=0,l=e.length,c=null==r;if("object"===b.type(r)){o=!0;for(u in r)b.access(e,n,u,r[u],!0,a,s)}else if(i!==t&&(o=!0,b.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(b(e),n)})),n))for(;l>u;u++)n(e[u],r,s?i:i.call(e[u],u,n(e[u],r)));return o?e:c?n.call(e):l?n(e[0],r):a},now:function(){return(new Date).getTime()}}),b.ready.promise=function(t){if(!n)if(n=b.Deferred(),"complete"===o.readyState)setTimeout(b.ready);else if(o.addEventListener)o.addEventListener("DOMContentLoaded",H,!1),e.addEventListener("load",H,!1);else{o.attachEvent("onreadystatechange",H),e.attachEvent("onload",H);var r=!1;try{r=null==e.frameElement&&o.documentElement}catch(i){}r&&r.doScroll&&function a(){if(!b.isReady){try{r.doScroll("left")}catch(e){return setTimeout(a,50)}q(),b.ready()}}()}return n.promise(t)},b.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=b.type(e);return b.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=b(o);var _={};function F(e){var t=_[e]={};return b.each(e.match(w)||[],function(e,n){t[n]=!0}),t}b.Callbacks=function(e){e="string"==typeof e?_[e]||F(e):b.extend({},e);var n,r,i,o,a,s,u=[],l=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=u.length,n=!0;u&&o>a;a++)if(u[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,u&&(l?l.length&&c(l.shift()):r?u=[]:p.disable())},p={add:function(){if(u){var t=u.length;(function i(t){b.each(t,function(t,n){var r=b.type(n);"function"===r?e.unique&&p.has(n)||u.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=u.length:r&&(s=t,c(r))}return this},remove:function(){return u&&b.each(arguments,function(e,t){var r;while((r=b.inArray(t,u,r))>-1)u.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?b.inArray(e,u)>-1:!(!u||!u.length)},empty:function(){return u=[],this},disable:function(){return u=l=r=t,this},disabled:function(){return!u},lock:function(){return l=t,r||p.disable(),this},locked:function(){return!l},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!u||i&&!l||(n?l.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},b.extend({Deferred:function(e){var t=[["resolve","done",b.Callbacks("once memory"),"resolved"],["reject","fail",b.Callbacks("once memory"),"rejected"],["notify","progress",b.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return b.Deferred(function(n){b.each(t,function(t,o){var a=o[0],s=b.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&b.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?b.extend(e,r):r}},i={};return r.pipe=r.then,b.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=h.call(arguments),r=n.length,i=1!==r||e&&b.isFunction(e.promise)?r:0,o=1===i?e:b.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?h.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,u,l;if(r>1)for(s=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&b.isFunction(n[t].promise)?n[t].promise().done(a(t,l,n)).fail(o.reject).progress(a(t,u,s)):--i;return i||o.resolveWith(l,n),o.promise()}}),b.support=function(){var t,n,r,a,s,u,l,c,p,f,d=o.createElement("div");if(d.setAttribute("className","t"),d.innerHTML="  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=d.getElementsByTagName("*"),r=d.getElementsByTagName("a")[0],!n||!r||!n.length)return{};s=o.createElement("select"),l=s.appendChild(o.createElement("option")),a=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={getSetAttribute:"t"!==d.className,leadingWhitespace:3===d.firstChild.nodeType,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:"/a"===r.getAttribute("href"),opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:!!a.value,optSelected:l.selected,enctype:!!o.createElement("form").enctype,html5Clone:"<:nav></:nav>"!==o.createElement("nav").cloneNode(!0).outerHTML,boxModel:"CSS1Compat"===o.compatMode,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},a.checked=!0,t.noCloneChecked=a.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!l.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}a=o.createElement("input"),a.setAttribute("value",""),t.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),t.radioValue="t"===a.value,a.setAttribute("checked","t"),a.setAttribute("name","t"),u=o.createDocumentFragment(),u.appendChild(a),t.appendChecked=a.checked,t.checkClone=u.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;return d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip,b(function(){var n,r,a,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",u=o.getElementsByTagName("body")[0];u&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",u.appendChild(n).appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",a=d.getElementsByTagName("td"),a[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===a[0].offsetHeight,a[0].style.display="",a[1].style.display="none",t.reliableHiddenOffsets=p&&0===a[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",t.boxSizing=4===d.offsetWidth,t.doesNotIncludeMarginInBodyOffset=1!==u.offsetTop,e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(o.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="<div></div>",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(u.style.zoom=1)),u.removeChild(n),n=d=a=r=null)}),n=s=u=l=r=a=null,t}();var O=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,B=/([A-Z])/g;function P(e,n,r,i){if(b.acceptData(e)){var o,a,s=b.expando,u="string"==typeof n,l=e.nodeType,p=l?b.cache:e,f=l?e[s]:e[s]&&s;if(f&&p[f]&&(i||p[f].data)||!u||r!==t)return f||(l?e[s]=f=c.pop()||b.guid++:f=s),p[f]||(p[f]={},l||(p[f].toJSON=b.noop)),("object"==typeof n||"function"==typeof n)&&(i?p[f]=b.extend(p[f],n):p[f].data=b.extend(p[f].data,n)),o=p[f],i||(o.data||(o.data={}),o=o.data),r!==t&&(o[b.camelCase(n)]=r),u?(a=o[n],null==a&&(a=o[b.camelCase(n)])):a=o,a}}function R(e,t,n){if(b.acceptData(e)){var r,i,o,a=e.nodeType,s=a?b.cache:e,u=a?e[b.expando]:b.expando;if(s[u]){if(t&&(o=n?s[u]:s[u].data)){b.isArray(t)?t=t.concat(b.map(t,b.camelCase)):t in o?t=[t]:(t=b.camelCase(t),t=t in o?[t]:t.split(" "));for(r=0,i=t.length;i>r;r++)delete o[t[r]];if(!(n?$:b.isEmptyObject)(o))return}(n||(delete s[u].data,$(s[u])))&&(a?b.cleanData([e],!0):b.support.deleteExpando||s!=s.window?delete s[u]:s[u]=null)}}}b.extend({cache:{},expando:"jQuery"+(p+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?b.cache[e[b.expando]]:e[b.expando],!!e&&!$(e)},data:function(e,t,n){return P(e,t,n)},removeData:function(e,t){return R(e,t)},_data:function(e,t,n){return P(e,t,n,!0)},_removeData:function(e,t){return R(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&b.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),b.fn.extend({data:function(e,n){var r,i,o=this[0],a=0,s=null;if(e===t){if(this.length&&(s=b.data(o),1===o.nodeType&&!b._data(o,"parsedAttrs"))){for(r=o.attributes;r.length>a;a++)i=r[a].name,i.indexOf("data-")||(i=b.camelCase(i.slice(5)),W(o,i,s[i]));b._data(o,"parsedAttrs",!0)}return s}return"object"==typeof e?this.each(function(){b.data(this,e)}):b.access(this,function(n){return n===t?o?W(o,e,b.data(o,e)):null:(this.each(function(){b.data(this,e,n)}),t)},null,n,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){b.removeData(this,e)})}});function W(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(B,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:O.test(r)?b.parseJSON(r):r}catch(o){}b.data(e,n,r)}else r=t}return r}function $(e){var t;for(t in e)if(("data"!==t||!b.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}b.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=b._data(e,n),r&&(!i||b.isArray(r)?i=b._data(e,n,b.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t),a=function(){b.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return b._data(e,n)||b._data(e,n,{empty:b.Callbacks("once memory").add(function(){b._removeData(e,t+"queue"),b._removeData(e,n)})})}}),b.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?b.queue(this[0],e):n===t?this:this.each(function(){var t=b.queue(this,e,n);b._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&b.dequeue(this,e)})},dequeue:function(e){return this.each(function(){b.dequeue(this,e)})},delay:function(e,t){return e=b.fx?b.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=b.Deferred(),a=this,s=this.length,u=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=b._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(u));return u(),o.promise(n)}});var I,z,X=/[\t\r\n]/g,U=/\r/g,V=/^(?:input|select|textarea|button|object)$/i,Y=/^(?:a|area)$/i,J=/^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,G=/^(?:checked|selected)$/i,Q=b.support.getSetAttribute,K=b.support.input;b.fn.extend({attr:function(e,t){return b.access(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){b.removeAttr(this,e)})},prop:function(e,t){return b.access(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return e=b.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,u="string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=b.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,u=0===arguments.length||"string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?b.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return b.isFunction(e)?this.each(function(n){b(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,a=0,s=b(this),u=t,l=e.match(w)||[];while(o=l[a++])u=r?u:!s.hasClass(o),s[u?"addClass":"removeClass"](o)}else(n===i||"boolean"===n)&&(this.className&&b._data(this,"__className__",this.className),this.className=this.className||e===!1?"":b._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(X," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=b.isFunction(e),this.each(function(n){var o,a=b(this);1===this.nodeType&&(o=i?e.call(this,n,a.val()):e,null==o?o="":"number"==typeof o?o+="":b.isArray(o)&&(o=b.map(o,function(e){return null==e?"":e+""})),r=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=b.valHooks[o.type]||b.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(U,""):null==n?"":n)}}}),b.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,u=0>i?s:o?i:0;for(;s>u;u++)if(n=r[u],!(!n.selected&&u!==i||(b.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&b.nodeName(n.parentNode,"optgroup"))){if(t=b(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n=b.makeArray(t);return b(e).find("option").each(function(){this.selected=b.inArray(b(this).val(),n)>=0}),n.length||(e.selectedIndex=-1),n}}},attr:function(e,n,r){var o,a,s,u=e.nodeType;if(e&&3!==u&&8!==u&&2!==u)return typeof e.getAttribute===i?b.prop(e,n,r):(a=1!==u||!b.isXMLDoc(e),a&&(n=n.toLowerCase(),o=b.attrHooks[n]||(J.test(n)?z:I)),r===t?o&&a&&"get"in o&&null!==(s=o.get(e,n))?s:(typeof e.getAttribute!==i&&(s=e.getAttribute(n)),null==s?t:s):null!==r?o&&a&&"set"in o&&(s=o.set(e,r,n))!==t?s:(e.setAttribute(n,r+""),r):(b.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=b.propFix[n]||n,J.test(n)?!Q&&G.test(n)?e[b.camelCase("default-"+n)]=e[r]=!1:e[r]=!1:b.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!b.support.radioValue&&"radio"===t&&b.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!b.isXMLDoc(e),a&&(n=b.propFix[n]||n,o=b.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var n=e.getAttributeNode("tabindex");return n&&n.specified?parseInt(n.value,10):V.test(e.nodeName)||Y.test(e.nodeName)&&e.href?0:t}}}}),z={get:function(e,n){var r=b.prop(e,n),i="boolean"==typeof r&&e.getAttribute(n),o="boolean"==typeof r?K&&Q?null!=i:G.test(n)?e[b.camelCase("default-"+n)]:!!i:e.getAttributeNode(n);return o&&o.value!==!1?n.toLowerCase():t},set:function(e,t,n){return t===!1?b.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&b.propFix[n]||n,n):e[b.camelCase("default-"+n)]=e[n]=!0,n}},K&&Q||(b.attrHooks.value={get:function(e,n){var r=e.getAttributeNode(n);return b.nodeName(e,"input")?e.defaultValue:r&&r.specified?r.value:t},set:function(e,n,r){return b.nodeName(e,"input")?(e.defaultValue=n,t):I&&I.set(e,n,r)}}),Q||(I=b.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&("id"===n||"name"===n||"coords"===n?""!==r.value:r.specified)?r.value:t},set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},b.attrHooks.contenteditable={get:I.get,set:function(e,t,n){I.set(e,""===t?!1:t,n)}},b.each(["width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}})})),b.support.hrefNormalized||(b.each(["href","src","width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{get:function(e){var r=e.getAttribute(n,2);return null==r?t:r}})}),b.each(["href","src"],function(e,t){b.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}})),b.support.style||(b.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),b.support.optSelected||(b.propHooks.selected=b.extend(b.propHooks.selected,{get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}})),b.support.enctype||(b.propFix.enctype="encoding"),b.support.checkOn||b.each(["radio","checkbox"],function(){b.valHooks[this]={get:function(e){return null===e.getAttribute("value")?"on":e.value}}}),b.each(["radio","checkbox"],function(){b.valHooks[this]=b.extend(b.valHooks[this],{set:function(e,n){return b.isArray(n)?e.checked=b.inArray(b(e).val(),n)>=0:t}})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}b.event={global:{},add:function(e,n,r,o,a){var s,u,l,c,p,f,d,h,g,m,y,v=b._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=b.guid++),(u=v.events)||(u=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof b===i||e&&b.event.triggered===e.type?t:b.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(w)||[""],l=n.length;while(l--)s=rt.exec(n[l])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),p=b.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=b.event.special[g]||{},d=b.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&b.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=u[g])||(h=u[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),b.event.global[g]=!0;e=null}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,p,f,d,h,g,m=b.hasData(e)&&b._data(e);if(m&&(c=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(s=rt.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=b.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));u&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||b.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(c)&&(delete m.handle,b._removeData(e,"events"))}},trigger:function(n,r,i,a){var s,u,l,c,p,f,d,h=[i||o],g=y.call(n,"type")?n.type:n,m=y.call(n,"namespace")?n.namespace.split("."):[];if(l=f=i=i||o,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+b.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),u=0>g.indexOf(":")&&"on"+g,n=n[b.expando]?n:new b.Event(g,"object"==typeof n&&n),n.isTrigger=!0,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:b.makeArray(r,[n]),p=b.event.special[g]||{},a||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!a&&!p.noBubble&&!b.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(l=l.parentNode);l;l=l.parentNode)h.push(l),f=l;f===(i.ownerDocument||o)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((l=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(b._data(l,"events")||{})[n.type]&&b._data(l,"handle"),s&&s.apply(l,r),s=u&&l[u],s&&b.acceptData(l)&&s.apply&&s.apply(l,r)===!1&&n.preventDefault();if(n.type=g,!(a||n.isDefaultPrevented()||p._default&&p._default.apply(i.ownerDocument,r)!==!1||"click"===g&&b.nodeName(i,"a")||!b.acceptData(i)||!u||!i[g]||b.isWindow(i))){f=i[u],f&&(i[u]=null),b.event.triggered=g;try{i[g]()}catch(v){}b.event.triggered=t,f&&(i[u]=f)}return n.result}},dispatch:function(e){e=b.event.fix(e);var n,r,i,o,a,s=[],u=h.call(arguments),l=(b._data(this,"events")||{})[e.type]||[],c=b.event.special[e.type]||{};if(u[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=b.event.handlers.call(this,e,l),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((b.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,u),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],u=n.delegateCount,l=e.target;if(u&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(1===l.nodeType&&(l.disabled!==!0||"click"!==e.type)){for(o=[],a=0;u>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?b(r,this).index(l)>=0:b.find(r,this,null,[l]).length),o[r]&&o.push(i);o.length&&s.push({elem:l,handlers:o})}return n.length>u&&s.push({elem:this,handlers:n.slice(u)}),s},fix:function(e){if(e[b.expando])return e;var t,n,r,i=e.type,a=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new b.Event(a),t=r.length;while(t--)n=r[t],e[n]=a[n];return e.target||(e.target=a.srcElement||o),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,a):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,a,s=n.button,u=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||o,a=i.documentElement,r=i.body,e.pageX=n.clientX+(a&&a.scrollLeft||r&&r.scrollLeft||0)-(a&&a.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(a&&a.scrollTop||r&&r.scrollTop||0)-(a&&a.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&u&&(e.relatedTarget=u===e.target?n.toElement:u),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},click:{trigger:function(){return b.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t}},focus:{trigger:function(){if(this!==o.activeElement&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===o.activeElement&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=b.extend(new b.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?b.event.trigger(i,null,t):b.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},b.removeEvent=o.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},b.Event=function(e,n){return this instanceof b.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&b.extend(this,n),this.timeStamp=e&&e.timeStamp||b.now(),this[b.expando]=!0,t):new b.Event(e,n)},b.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},b.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;
-return(!i||i!==r&&!b.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),b.support.submitBubbles||(b.event.special.submit={setup:function(){return b.nodeName(this,"form")?!1:(b.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=b.nodeName(n,"input")||b.nodeName(n,"button")?n.form:t;r&&!b._data(r,"submitBubbles")&&(b.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),b._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&b.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return b.nodeName(this,"form")?!1:(b.event.remove(this,"._submit"),t)}}),b.support.changeBubbles||(b.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(b.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),b.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),b.event.simulate("change",this,e,!0)})),!1):(b.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!b._data(t,"changeBubbles")&&(b.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||b.event.simulate("change",this.parentNode,e,!0)}),b._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return b.event.remove(this,"._change"),!Z.test(this.nodeName)}}),b.support.focusinBubbles||b.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){b.event.simulate(t,e.target,b.event.fix(e),!0)};b.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),b.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return b().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=b.guid++)),this.each(function(){b.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,b(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){b.event.remove(this,e,r,n)})},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},trigger:function(e,t){return this.each(function(){b.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?b.event.trigger(e,n,r,!0):t}}),function(e,t){var n,r,i,o,a,s,u,l,c,p,f,d,h,g,m,y,v,x="sizzle"+-new Date,w=e.document,T={},N=0,C=0,k=it(),E=it(),S=it(),A=typeof t,j=1<<31,D=[],L=D.pop,H=D.push,q=D.slice,M=D.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},_="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=F.replace("w","w#"),B="([*^$|!~]?=)",P="\\["+_+"*("+F+")"+_+"*(?:"+B+_+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+O+")|)|)"+_+"*\\]",R=":("+F+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+P.replace(3,8)+")*)|.*)\\)|)",W=RegExp("^"+_+"+|((?:^|[^\\\\])(?:\\\\.)*)"+_+"+$","g"),$=RegExp("^"+_+"*,"+_+"*"),I=RegExp("^"+_+"*([\\x20\\t\\r\\n\\f>+~])"+_+"*"),z=RegExp(R),X=RegExp("^"+O+"$"),U={ID:RegExp("^#("+F+")"),CLASS:RegExp("^\\.("+F+")"),NAME:RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:RegExp("^("+F.replace("w","w*")+")"),ATTR:RegExp("^"+P),PSEUDO:RegExp("^"+R),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+_+"*(even|odd|(([+-]|)(\\d*)n|)"+_+"*(?:([+-]|)"+_+"*(\\d+)|))"+_+"*\\)|)","i"),needsContext:RegExp("^"+_+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+_+"*((?:-\\d)?\\d*)"+_+"*\\)|)(?=[^-]|$)","i")},V=/[\x20\t\r\n\f]*[+~]/,Y=/^[^{]+\{\s*\[native code/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,G=/^(?:input|select|textarea|button)$/i,Q=/^h\d$/i,K=/'|\\/g,Z=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,et=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,tt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{q.call(w.documentElement.childNodes,0)[0].nodeType}catch(nt){q=function(e){var t,n=[];while(t=this[e++])n.push(t);return n}}function rt(e){return Y.test(e+"")}function it(){var e,t=[];return e=function(n,r){return t.push(n+=" ")>i.cacheLength&&delete e[t.shift()],e[n]=r}}function ot(e){return e[x]=!0,e}function at(e){var t=p.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}}function st(e,t,n,r){var i,o,a,s,u,l,f,g,m,v;if((t?t.ownerDocument||t:w)!==p&&c(t),t=t||p,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(!d&&!r){if(i=J.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&y(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return H.apply(n,q.call(t.getElementsByTagName(e),0)),n;if((a=i[3])&&T.getByClassName&&t.getElementsByClassName)return H.apply(n,q.call(t.getElementsByClassName(a),0)),n}if(T.qsa&&!h.test(e)){if(f=!0,g=x,m=t,v=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){l=ft(e),(f=t.getAttribute("id"))?g=f.replace(K,"\\$&"):t.setAttribute("id",g),g="[id='"+g+"'] ",u=l.length;while(u--)l[u]=g+dt(l[u]);m=V.test(e)&&t.parentNode||t,v=l.join(",")}if(v)try{return H.apply(n,q.call(m.querySelectorAll(v),0)),n}catch(b){}finally{f||t.removeAttribute("id")}}}return wt(e.replace(W,"$1"),t,n,r)}a=st.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},c=st.setDocument=function(e){var n=e?e.ownerDocument||e:w;return n!==p&&9===n.nodeType&&n.documentElement?(p=n,f=n.documentElement,d=a(n),T.tagNameNoComments=at(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),T.attributes=at(function(e){e.innerHTML="<select></select>";var t=typeof e.lastChild.getAttribute("multiple");return"boolean"!==t&&"string"!==t}),T.getByClassName=at(function(e){return e.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",e.getElementsByClassName&&e.getElementsByClassName("e").length?(e.lastChild.className="e",2===e.getElementsByClassName("e").length):!1}),T.getByName=at(function(e){e.id=x+0,e.innerHTML="<a name='"+x+"'></a><div name='"+x+"'></div>",f.insertBefore(e,f.firstChild);var t=n.getElementsByName&&n.getElementsByName(x).length===2+n.getElementsByName(x+0).length;return T.getIdNotName=!n.getElementById(x),f.removeChild(e),t}),i.attrHandle=at(function(e){return e.innerHTML="<a href='#'></a>",e.firstChild&&typeof e.firstChild.getAttribute!==A&&"#"===e.firstChild.getAttribute("href")})?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},T.getIdNotName?(i.find.ID=function(e,t){if(typeof t.getElementById!==A&&!d){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){return e.getAttribute("id")===t}}):(i.find.ID=function(e,n){if(typeof n.getElementById!==A&&!d){var r=n.getElementById(e);return r?r.id===e||typeof r.getAttributeNode!==A&&r.getAttributeNode("id").value===e?[r]:t:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){var n=typeof e.getAttributeNode!==A&&e.getAttributeNode("id");return n&&n.value===t}}),i.find.TAG=T.tagNameNoComments?function(e,n){return typeof n.getElementsByTagName!==A?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},i.find.NAME=T.getByName&&function(e,n){return typeof n.getElementsByName!==A?n.getElementsByName(name):t},i.find.CLASS=T.getByClassName&&function(e,n){return typeof n.getElementsByClassName===A||d?t:n.getElementsByClassName(e)},g=[],h=[":focus"],(T.qsa=rt(n.querySelectorAll))&&(at(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||h.push("\\["+_+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||h.push(":checked")}),at(function(e){e.innerHTML="<input type='hidden' i=''/>",e.querySelectorAll("[i^='']").length&&h.push("[*^$]="+_+"*(?:\"\"|'')"),e.querySelectorAll(":enabled").length||h.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),h.push(",.*:")})),(T.matchesSelector=rt(m=f.matchesSelector||f.mozMatchesSelector||f.webkitMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&at(function(e){T.disconnectedMatch=m.call(e,"div"),m.call(e,"[s!='']:x"),g.push("!=",R)}),h=RegExp(h.join("|")),g=RegExp(g.join("|")),y=rt(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},v=f.compareDocumentPosition?function(e,t){var r;return e===t?(u=!0,0):(r=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t))?1&r||e.parentNode&&11===e.parentNode.nodeType?e===n||y(w,e)?-1:t===n||y(w,t)?1:0:4&r?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return u=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:0;if(o===a)return ut(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?ut(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},u=!1,[0,0].sort(v),T.detectDuplicates=u,p):p},st.matches=function(e,t){return st(e,null,null,t)},st.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&c(e),t=t.replace(Z,"='$1']"),!(!T.matchesSelector||d||g&&g.test(t)||h.test(t)))try{var n=m.call(e,t);if(n||T.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return st(t,p,null,[e]).length>0},st.contains=function(e,t){return(e.ownerDocument||e)!==p&&c(e),y(e,t)},st.attr=function(e,t){var n;return(e.ownerDocument||e)!==p&&c(e),d||(t=t.toLowerCase()),(n=i.attrHandle[t])?n(e):d||T.attributes?e.getAttribute(t):((n=e.getAttributeNode(t))||e.getAttribute(t))&&e[t]===!0?t:n&&n.specified?n.value:null},st.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},st.uniqueSort=function(e){var t,n=[],r=1,i=0;if(u=!T.detectDuplicates,e.sort(v),u){for(;t=e[r];r++)t===e[r-1]&&(i=n.push(r));while(i--)e.splice(n[i],1)}return e};function ut(e,t){var n=t&&e,r=n&&(~t.sourceIndex||j)-(~e.sourceIndex||j);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function lt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ct(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function pt(e){return ot(function(t){return t=+t,ot(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}o=st.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=o(t);return n},i=st.selectors={cacheLength:50,createPseudo:ot,match:U,find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(et,tt),e[3]=(e[4]||e[5]||"").replace(et,tt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||st.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&st.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return U.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&z.test(n)&&(t=ft(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){return"*"===e?function(){return!0}:(e=e.replace(et,tt).toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=k[e+" "];return t||(t=RegExp("(^|"+_+")"+e+"("+_+"|$)"))&&k(e,function(e){return t.test(e.className||typeof e.getAttribute!==A&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=st.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!u&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[x]||(m[x]={}),l=c[e]||[],d=l[0]===N&&l[1],f=l[0]===N&&l[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[N,d,f];break}}else if(v&&(l=(t[x]||(t[x]={}))[e])&&l[0]===N)f=l[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[x]||(p[x]={}))[e]=[N,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||st.error("unsupported pseudo: "+e);return r[x]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?ot(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=M.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:ot(function(e){var t=[],n=[],r=s(e.replace(W,"$1"));return r[x]?ot(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:ot(function(e){return function(t){return st(e,t).length>0}}),contains:ot(function(e){return function(t){return(t.textContent||t.innerText||o(t)).indexOf(e)>-1}}),lang:ot(function(e){return X.test(e||"")||st.error("unsupported lang: "+e),e=e.replace(et,tt).toLowerCase(),function(t){var n;do if(n=d?t.getAttribute("xml:lang")||t.getAttribute("lang"):t.lang)return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:pt(function(){return[0]}),last:pt(function(e,t){return[t-1]}),eq:pt(function(e,t,n){return[0>n?n+t:n]}),even:pt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:pt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:pt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:pt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[n]=lt(n);for(n in{submit:!0,reset:!0})i.pseudos[n]=ct(n);function ft(e,t){var n,r,o,a,s,u,l,c=E[e+" "];if(c)return t?0:c.slice(0);s=e,u=[],l=i.preFilter;while(s){(!n||(r=$.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),u.push(o=[])),n=!1,(r=I.exec(s))&&(n=r.shift(),o.push({value:n,type:r[0].replace(W," ")}),s=s.slice(n.length));for(a in i.filter)!(r=U[a].exec(s))||l[a]&&!(r=l[a](r))||(n=r.shift(),o.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?st.error(e):E(e,u).slice(0)}function dt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function ht(e,t,n){var i=t.dir,o=n&&"parentNode"===i,a=C++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,n,s){var u,l,c,p=N+" "+a;if(s){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[x]||(t[x]={}),(l=c[i])&&l[0]===p){if((u=l[1])===!0||u===r)return u===!0}else if(l=c[i]=[p],l[1]=e(t,n,s)||r,l[1]===!0)return!0}}function gt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function mt(e,t,n,r,i){var o,a=[],s=0,u=e.length,l=null!=t;for(;u>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),l&&t.push(s));return a}function yt(e,t,n,r,i,o){return r&&!r[x]&&(r=yt(r)),i&&!i[x]&&(i=yt(i,o)),ot(function(o,a,s,u){var l,c,p,f=[],d=[],h=a.length,g=o||xt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:mt(g,f,e,s,u),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,u),r){l=mt(y,d),r(l,[],s,u),c=l.length;while(c--)(p=l[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(p=y[c])&&l.push(m[c]=p);i(null,y=[],l,u)}c=y.length;while(c--)(p=y[c])&&(l=i?M.call(o,p):f[c])>-1&&(o[l]=!(a[l]=p))}}else y=mt(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)})}function vt(e){var t,n,r,o=e.length,a=i.relative[e[0].type],s=a||i.relative[" "],u=a?1:0,c=ht(function(e){return e===t},s,!0),p=ht(function(e){return M.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;o>u;u++)if(n=i.relative[e[u].type])f=[ht(gt(f),n)];else{if(n=i.filter[e[u].type].apply(null,e[u].matches),n[x]){for(r=++u;o>r;r++)if(i.relative[e[r].type])break;return yt(u>1&&gt(f),u>1&&dt(e.slice(0,u-1)).replace(W,"$1"),n,r>u&&vt(e.slice(u,r)),o>r&&vt(e=e.slice(r)),o>r&&dt(e))}f.push(n)}return gt(f)}function bt(e,t){var n=0,o=t.length>0,a=e.length>0,s=function(s,u,c,f,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,T=l,C=s||a&&i.find.TAG("*",d&&u.parentNode||u),k=N+=null==T?1:Math.random()||.1;for(w&&(l=u!==p&&u,r=n);null!=(h=C[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,u,c)){f.push(h);break}w&&(N=k,r=++n)}o&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,o&&b!==v){g=0;while(m=t[g++])m(x,y,u,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=L.call(f));y=mt(y)}H.apply(f,y),w&&!s&&y.length>0&&v+t.length>1&&st.uniqueSort(f)}return w&&(N=k,l=T),x};return o?ot(s):s}s=st.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=ft(e)),n=t.length;while(n--)o=vt(t[n]),o[x]?r.push(o):i.push(o);o=S(e,bt(i,r))}return o};function xt(e,t,n){var r=0,i=t.length;for(;i>r;r++)st(e,t[r],n);return n}function wt(e,t,n,r){var o,a,u,l,c,p=ft(e);if(!r&&1===p.length){if(a=p[0]=p[0].slice(0),a.length>2&&"ID"===(u=a[0]).type&&9===t.nodeType&&!d&&i.relative[a[1].type]){if(t=i.find.ID(u.matches[0].replace(et,tt),t)[0],!t)return n;e=e.slice(a.shift().value.length)}o=U.needsContext.test(e)?0:a.length;while(o--){if(u=a[o],i.relative[l=u.type])break;if((c=i.find[l])&&(r=c(u.matches[0].replace(et,tt),V.test(a[0].type)&&t.parentNode||t))){if(a.splice(o,1),e=r.length&&dt(a),!e)return H.apply(n,q.call(r,0)),n;break}}}return s(e,p)(r,t,d,n,V.test(e)),n}i.pseudos.nth=i.pseudos.eq;function Tt(){}i.filters=Tt.prototype=i.pseudos,i.setFilters=new Tt,c(),st.attr=b.attr,b.find=st,b.expr=st.selectors,b.expr[":"]=b.expr.pseudos,b.unique=st.uniqueSort,b.text=st.getText,b.isXMLDoc=st.isXML,b.contains=st.contains}(e);var at=/Until$/,st=/^(?:parents|prev(?:Until|All))/,ut=/^.[^:#\[\.,]*$/,lt=b.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};b.fn.extend({find:function(e){var t,n,r,i=this.length;if("string"!=typeof e)return r=this,this.pushStack(b(e).filter(function(){for(t=0;i>t;t++)if(b.contains(r[t],this))return!0}));for(n=[],t=0;i>t;t++)b.find(e,this[t],n);return n=this.pushStack(i>1?b.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t,n=b(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(b.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e,!1))},filter:function(e){return this.pushStack(ft(this,e,!0))},is:function(e){return!!e&&("string"==typeof e?lt.test(e)?b(e,this.context).index(this[0])>=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,o=[],a=lt.test(e)||"string"!=typeof e?b(e,t||this.context):0;for(;i>r;r++){n=this[r];while(n&&n.ownerDocument&&n!==t&&11!==n.nodeType){if(a?a.index(n)>-1:b.find.matchesSelector(n,e)){o.push(n);break}n=n.parentNode}}return this.pushStack(o.length>1?b.unique(o):o)},index:function(e){return e?"string"==typeof e?b.inArray(this[0],b(e)):b.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?b(e,t):b.makeArray(e&&e.nodeType?[e]:e),r=b.merge(this.get(),n);return this.pushStack(b.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.fn.andSelf=b.fn.addBack;function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(e,t,n){return b.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(e,t,n){return b.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return b.dir(e,"previousSibling",n)},siblings:function(e){return b.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.merge([],e.childNodes)}},function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return at.test(e)||(r=n),r&&"string"==typeof r&&(i=b.filter(r,i)),i=this.length>1&&!ct[e]?b.unique(i):i,this.length>1&&st.test(e)&&(i=i.reverse()),this.pushStack(i)}}),b.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),1===t.length?b.find.matchesSelector(t[0],e)?[t[0]]:[]:b.find.matches(e,t)},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!b(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(t=t||0,b.isFunction(t))return b.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return b.grep(e,function(e){return e===t===n});if("string"==typeof t){var r=b.grep(e,function(e){return 1===e.nodeType});if(ut.test(t))return b.filter(t,r,!n);t=b.filter(t,r)}return b.grep(e,function(e){return b.inArray(e,t)>=0===n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/<tbody/i,wt=/<|&#?\w+;/,Tt=/<(?:script|style|link)/i,Nt=/^(?:checkbox|radio)$/i,Ct=/checked\s*(?:[^=]|=\s*.checked.)/i,kt=/^$|\/(?:java|ecma)script/i,Et=/^true\/(.*)/,St=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,At={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:b.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},jt=dt(o),Dt=jt.appendChild(o.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,b.fn.extend({text:function(e){return b.access(this,function(e){return e===t?b.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(b.isFunction(e))return this.each(function(t){b(this).wrapAll(e.call(this,t))});if(this[0]){var t=b(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return b.isFunction(e)?this.each(function(t){b(this).wrapInner(e.call(this,t))}):this.each(function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=b.isFunction(e);return this.each(function(n){b(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){b.nodeName(this,"body")||b(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.insertBefore(e,this.firstChild)})},before:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=0;for(;null!=(n=this[r]);r++)(!e||b.filter(e,[n]).length>0)&&(t||1!==n.nodeType||b.cleanData(Ot(n)),n.parentNode&&(t&&b.contains(n.ownerDocument,n)&&Mt(Ot(n,"script")),n.parentNode.removeChild(n)));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&b.cleanData(Ot(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&b.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return b.clone(this,e,t)})},html:function(e){return b.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!b.support.htmlSerialize&&mt.test(e)||!b.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(b.cleanData(Ot(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(e){var t=b.isFunction(e);return t||"string"==typeof e||(e=b(e).not(this).detach()),this.domManip([e],!0,function(e){var t=this.nextSibling,n=this.parentNode;n&&(b(this).remove(),n.insertBefore(e,t))})},detach:function(e){return this.remove(e,!0)},domManip:function(e,n,r){e=f.apply([],e);var i,o,a,s,u,l,c=0,p=this.length,d=this,h=p-1,g=e[0],m=b.isFunction(g);if(m||!(1>=p||"string"!=typeof g||b.support.checkClone)&&Ct.test(g))return this.each(function(i){var o=d.eq(i);m&&(e[0]=g.call(this,i,n?o.html():t)),o.domManip(e,n,r)});if(p&&(l=b.buildFragment(e,this[0].ownerDocument,!1,this),i=l.firstChild,1===l.childNodes.length&&(l=i),i)){for(n=n&&b.nodeName(i,"tr"),s=b.map(Ot(l,"script"),Ht),a=s.length;p>c;c++)o=l,c!==h&&(o=b.clone(o,!0,!0),a&&b.merge(s,Ot(o,"script"))),r.call(n&&b.nodeName(this[c],"table")?Lt(this[c],"tbody"):this[c],o,c);if(a)for(u=s[s.length-1].ownerDocument,b.map(s,qt),c=0;a>c;c++)o=s[c],kt.test(o.type||"")&&!b._data(o,"globalEval")&&b.contains(u,o)&&(o.src?b.ajax({url:o.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):b.globalEval((o.text||o.textContent||o.innerHTML||"").replace(St,"")));l=i=null}return this}});function Lt(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function Ht(e){var t=e.getAttributeNode("type");return e.type=(t&&t.specified)+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function Mt(e,t){var n,r=0;for(;null!=(n=e[r]);r++)b._data(n,"globalEval",!t||b._data(t[r],"globalEval"))}function _t(e,t){if(1===t.nodeType&&b.hasData(e)){var n,r,i,o=b._data(e),a=b._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)b.event.add(t,n,s[n][r])}a.data&&(a.data=b.extend({},a.data))}}function Ft(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!b.support.noCloneEvent&&t[b.expando]){i=b._data(t);for(r in i.events)b.removeEvent(t,r,i.handle);t.removeAttribute(b.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),b.support.html5Clone&&e.innerHTML&&!b.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Nt.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){b.fn[e]=function(e){var n,r=0,i=[],o=b(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),b(o[r])[t](n),d.apply(i,n.get());return this.pushStack(i)}});function Ot(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||b.nodeName(o,n)?s.push(o):b.merge(s,Ot(o,n));return n===t||n&&b.nodeName(e,n)?b.merge([e],s):s}function Bt(e){Nt.test(e.type)&&(e.defaultChecked=e.checked)}b.extend({clone:function(e,t,n){var r,i,o,a,s,u=b.contains(e.ownerDocument,e);if(b.support.html5Clone||b.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(b.support.noCloneEvent&&b.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(r=Ot(o),s=Ot(e),a=0;null!=(i=s[a]);++a)r[a]&&Ft(i,r[a]);if(t)if(n)for(s=s||Ot(e),r=r||Ot(o),a=0;null!=(i=s[a]);a++)_t(i,r[a]);else _t(e,o);return r=Ot(o,"script"),r.length>0&&Mt(r,!u&&Ot(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,u,l,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===b.type(o))b.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),u=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[u]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1></$2>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!b.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!b.support.tbody){o="table"!==u||xt.test(o)?"<table>"!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)b.nodeName(l=o.childNodes[i],"tbody")&&!l.childNodes.length&&o.removeChild(l)
-}b.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),b.support.appendChecked||b.grep(Ot(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===b.inArray(o,r))&&(a=b.contains(o.ownerDocument,o),s=Ot(f.appendChild(o),"script"),a&&Mt(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,u=b.expando,l=b.cache,p=b.support.deleteExpando,f=b.event.special;for(;null!=(n=e[s]);s++)if((t||b.acceptData(n))&&(o=n[u],a=o&&l[o])){if(a.events)for(r in a.events)f[r]?b.event.remove(n,r):b.removeEvent(n,r,a.handle);l[o]&&(delete l[o],p?delete n[u]:typeof n.removeAttribute!==i?n.removeAttribute(u):n[u]=null,c.push(o))}}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+x+")(.*)$","i"),Yt=RegExp("^("+x+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+x+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===b.css(e,"display")||!b.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=b._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=b._data(r,"olddisplay",un(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&b._data(r,"olddisplay",i?n:b.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}b.fn.extend({css:function(e,n){return b.access(this,function(e,n,r){var i,o,a={},s=0;if(b.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=b.css(e,n[s],!1,o);return a}return r!==t?b.style(e,n,r):b.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:nn(this))?b(this).show():b(this).hide()})}}),b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":b.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,u=b.camelCase(n),l=e.style;if(n=b.cssProps[u]||(b.cssProps[u]=tn(l,u)),s=b.cssHooks[n]||b.cssHooks[u],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:l[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(b.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||b.cssNumber[u]||(r+="px"),b.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(l[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{l[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,u=b.camelCase(n);return n=b.cssProps[u]||(b.cssProps[u]=tn(e.style,u)),s=b.cssHooks[n]||b.cssHooks[u],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||b.isNumeric(o)?o||0:a):a},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s.getPropertyValue(n)||s[n]:t,l=e.style;return s&&(""!==u||b.contains(e.ownerDocument,e)||(u=b.style(e,n)),Yt.test(u)&&Ut.test(n)&&(i=l.width,o=l.minWidth,a=l.maxWidth,l.minWidth=l.maxWidth=l.width=u,u=s.width,l.width=i,l.minWidth=o,l.maxWidth=a)),u}):o.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s[n]:t,l=e.style;return null==u&&l&&l[n]&&(u=l[n]),Yt.test(u)&&!zt.test(n)&&(i=l.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),l.left="fontSize"===n?"1em":u,u=l.pixelLeft+"px",l.left=i,a&&(o.left=a)),""===u?"auto":u});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=b.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=b.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=b.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=b.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=b.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(b.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function un(e){var t=o,n=Gt[e];return n||(n=ln(e,t),"none"!==n&&n||(Pt=(Pt||b("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(Pt[0].contentWindow||Pt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=ln(e,t),Pt.detach()),Gt[e]=n),n}function ln(e,t){var n=b(t.createElement(e)).appendTo(t.body),r=b.css(n[0],"display");return n.remove(),r}b.each(["height","width"],function(e,n){b.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&Xt.test(b.css(e,"display"))?b.swap(e,Qt,function(){return sn(e,n,i)}):sn(e,n,i):t},set:function(e,t,r){var i=r&&Rt(e);return on(e,t,r?an(e,n,r,b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,i),i):0)}}}),b.support.opacity||(b.cssHooks.opacity={get:function(e,t){return It.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=b.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===b.trim(o.replace($t,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=$t.test(o)?o.replace($t,i):o+" "+i)}}),b(function(){b.support.reliableMarginRight||(b.cssHooks.marginRight={get:function(e,n){return n?b.swap(e,{display:"inline-block"},Wt,[e,"marginRight"]):t}}),!b.support.pixelPosition&&b.fn.position&&b.each(["top","left"],function(e,n){b.cssHooks[n]={get:function(e,r){return r?(r=Wt(e,n),Yt.test(r)?b(e).position()[n]+"px":r):t}}})}),b.expr&&b.expr.filters&&(b.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!b.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||b.css(e,"display"))},b.expr.filters.visible=function(e){return!b.expr.filters.hidden(e)}),b.each({margin:"",padding:"",border:"Width"},function(e,t){b.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+Zt[r]+t]=o[r]||o[r-2]||o[0];return i}},Ut.test(e)||(b.cssHooks[e+t].set=on)});var cn=/%20/g,pn=/\[\]$/,fn=/\r?\n/g,dn=/^(?:submit|button|image|reset|file)$/i,hn=/^(?:input|select|textarea|keygen)/i;b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=b.prop(this,"elements");return e?b.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!b(this).is(":disabled")&&hn.test(this.nodeName)&&!dn.test(e)&&(this.checked||!Nt.test(e))}).map(function(e,t){var n=b(this).val();return null==n?null:b.isArray(n)?b.map(n,function(e){return{name:t.name,value:e.replace(fn,"\r\n")}}):{name:t.name,value:n.replace(fn,"\r\n")}}).get()}}),b.param=function(e,n){var r,i=[],o=function(e,t){t=b.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=b.ajaxSettings&&b.ajaxSettings.traditional),b.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,function(){o(this.name,this.value)});else for(r in e)gn(r,e[r],n,o);return i.join("&").replace(cn,"+")};function gn(e,t,n,r){var i;if(b.isArray(t))b.each(t,function(t,i){n||pn.test(e)?r(e,i):gn(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==b.type(t))r(e,t);else for(i in t)gn(e+"["+i+"]",t[i],n,r)}b.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){b.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),b.fn.hover=function(e,t){return this.mouseenter(e).mouseleave(t||e)};var mn,yn,vn=b.now(),bn=/\?/,xn=/#.*$/,wn=/([?&])_=[^&]*/,Tn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Nn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Cn=/^(?:GET|HEAD)$/,kn=/^\/\//,En=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Sn=b.fn.load,An={},jn={},Dn="*/".concat("*");try{yn=a.href}catch(Ln){yn=o.createElement("a"),yn.href="",yn=yn.href}mn=En.exec(yn.toLowerCase())||[];function Hn(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(w)||[];if(b.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qn(e,n,r,i){var o={},a=e===jn;function s(u){var l;return o[u]=!0,b.each(e[u]||[],function(e,u){var c=u(n,r,i);return"string"!=typeof c||a||o[c]?a?!(l=c):t:(n.dataTypes.unshift(c),s(c),!1)}),l}return s(n.dataTypes[0])||!o["*"]&&s("*")}function Mn(e,n){var r,i,o=b.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&&b.extend(!0,e,r),e}b.fn.load=function(e,n,r){if("string"!=typeof e&&Sn)return Sn.apply(this,arguments);var i,o,a,s=this,u=e.indexOf(" ");return u>=0&&(i=e.slice(u,e.length),e=e.slice(0,u)),b.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&b.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?b("<div>").append(b.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},b.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){b.fn[t]=function(e){return this.on(t,e)}}),b.each(["get","post"],function(e,n){b[n]=function(e,r,i,o){return b.isFunction(r)&&(o=o||i,i=r,r=t),b.ajax({url:e,type:n,dataType:o,data:r,success:i})}}),b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yn,type:"GET",isLocal:Nn.test(mn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Dn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":e.String,"text html":!0,"text json":b.parseJSON,"text xml":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Mn(Mn(e,b.ajaxSettings),t):Mn(b.ajaxSettings,e)},ajaxPrefilter:Hn(An),ajaxTransport:Hn(jn),ajax:function(e,n){"object"==typeof e&&(n=e,e=t),n=n||{};var r,i,o,a,s,u,l,c,p=b.ajaxSetup({},n),f=p.context||p,d=p.context&&(f.nodeType||f.jquery)?b(f):b.event,h=b.Deferred(),g=b.Callbacks("once memory"),m=p.statusCode||{},y={},v={},x=0,T="canceled",N={readyState:0,getResponseHeader:function(e){var t;if(2===x){if(!c){c={};while(t=Tn.exec(a))c[t[1].toLowerCase()]=t[2]}t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===x?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return x||(e=v[n]=v[n]||e,y[e]=t),this},overrideMimeType:function(e){return x||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>x)for(t in e)m[t]=[m[t],e[t]];else N.always(e[N.status]);return this},abort:function(e){var t=e||T;return l&&l.abort(t),k(0,t),this}};if(h.promise(N).complete=g.add,N.success=N.done,N.error=N.fail,p.url=((e||p.url||yn)+"").replace(xn,"").replace(kn,mn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=b.trim(p.dataType||"*").toLowerCase().match(w)||[""],null==p.crossDomain&&(r=En.exec(p.url.toLowerCase()),p.crossDomain=!(!r||r[1]===mn[1]&&r[2]===mn[2]&&(r[3]||("http:"===r[1]?80:443))==(mn[3]||("http:"===mn[1]?80:443)))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=b.param(p.data,p.traditional)),qn(An,p,n,N),2===x)return N;u=p.global,u&&0===b.active++&&b.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Cn.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(bn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=wn.test(o)?o.replace(wn,"$1_="+vn++):o+(bn.test(o)?"&":"?")+"_="+vn++)),p.ifModified&&(b.lastModified[o]&&N.setRequestHeader("If-Modified-Since",b.lastModified[o]),b.etag[o]&&N.setRequestHeader("If-None-Match",b.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&N.setRequestHeader("Content-Type",p.contentType),N.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Dn+"; q=0.01":""):p.accepts["*"]);for(i in p.headers)N.setRequestHeader(i,p.headers[i]);if(p.beforeSend&&(p.beforeSend.call(f,N,p)===!1||2===x))return N.abort();T="abort";for(i in{success:1,error:1,complete:1})N[i](p[i]);if(l=qn(jn,p,n,N)){N.readyState=1,u&&d.trigger("ajaxSend",[N,p]),p.async&&p.timeout>0&&(s=setTimeout(function(){N.abort("timeout")},p.timeout));try{x=1,l.send(y,k)}catch(C){if(!(2>x))throw C;k(-1,C)}}else k(-1,"No Transport");function k(e,n,r,i){var c,y,v,w,T,C=n;2!==x&&(x=2,s&&clearTimeout(s),l=t,a=i||"",N.readyState=e>0?4:0,r&&(w=_n(p,N,r)),e>=200&&300>e||304===e?(p.ifModified&&(T=N.getResponseHeader("Last-Modified"),T&&(b.lastModified[o]=T),T=N.getResponseHeader("etag"),T&&(b.etag[o]=T)),204===e?(c=!0,C="nocontent"):304===e?(c=!0,C="notmodified"):(c=Fn(p,w),C=c.state,y=c.data,v=c.error,c=!v)):(v=C,(e||!C)&&(C="error",0>e&&(e=0))),N.status=e,N.statusText=(n||C)+"",c?h.resolveWith(f,[y,C,N]):h.rejectWith(f,[N,C,v]),N.statusCode(m),m=t,u&&d.trigger(c?"ajaxSuccess":"ajaxError",[N,p,c?y:v]),g.fireWith(f,[N,C]),u&&(d.trigger("ajaxComplete",[N,p]),--b.active||b.event.trigger("ajaxStop")))}return N},getScript:function(e,n){return b.get(e,t,n,"script")},getJSON:function(e,t,n){return b.get(e,t,n,"json")}});function _n(e,n,r){var i,o,a,s,u=e.contents,l=e.dataTypes,c=e.responseFields;for(s in c)s in r&&(n[c[s]]=r[s]);while("*"===l[0])l.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in u)if(u[s]&&u[s].test(o)){l.unshift(s);break}if(l[0]in r)a=l[0];else{for(s in r){if(!l[0]||e.converters[s+" "+l[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==l[0]&&l.unshift(a),r[a]):t}function Fn(e,t){var n,r,i,o,a={},s=0,u=e.dataTypes.slice(),l=u[0];if(e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u[1])for(i in e.converters)a[i.toLowerCase()]=e.converters[i];for(;r=u[++s];)if("*"!==r){if("*"!==l&&l!==r){if(i=a[l+" "+r]||a["* "+r],!i)for(n in a)if(o=n.split(" "),o[1]===r&&(i=a[l+" "+o[0]]||a["* "+o[0]])){i===!0?i=a[n]:a[n]!==!0&&(r=o[0],u.splice(s--,0,r));break}if(i!==!0)if(i&&e["throws"])t=i(t);else try{t=i(t)}catch(c){return{state:"parsererror",error:i?c:"No conversion from "+l+" to "+r}}}l=r}return{state:"success",data:t}}b.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),b.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=o.head||b("head")[0]||o.documentElement;return{send:function(t,i){n=o.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var On=[],Bn=/(=)\?(?=&|$)|\?\?/;b.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=On.pop()||b.expando+"_"+vn++;return this[e]=!0,e}}),b.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,u=n.jsonp!==!1&&(Bn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Bn.test(n.data)&&"data");return u||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=b.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,u?n[u]=n[u].replace(Bn,"$1"+o):n.jsonp!==!1&&(n.url+=(bn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||b.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,On.push(o)),s&&b.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Pn,Rn,Wn=0,$n=e.ActiveXObject&&function(){var e;for(e in Pn)Pn[e](t,!0)};function In(){try{return new e.XMLHttpRequest}catch(t){}}function zn(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}b.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&In()||zn()}:In,Rn=b.ajaxSettings.xhr(),b.support.cors=!!Rn&&"withCredentials"in Rn,Rn=b.support.ajax=!!Rn,Rn&&b.ajaxTransport(function(n){if(!n.crossDomain||b.support.cors){var r;return{send:function(i,o){var a,s,u=n.xhr();if(n.username?u.open(n.type,n.url,n.async,n.username,n.password):u.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)u[s]=n.xhrFields[s];n.mimeType&&u.overrideMimeType&&u.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)u.setRequestHeader(s,i[s])}catch(l){}u.send(n.hasContent&&n.data||null),r=function(e,i){var s,l,c,p;try{if(r&&(i||4===u.readyState))if(r=t,a&&(u.onreadystatechange=b.noop,$n&&delete Pn[a]),i)4!==u.readyState&&u.abort();else{p={},s=u.status,l=u.getAllResponseHeaders(),"string"==typeof u.responseText&&(p.text=u.responseText);try{c=u.statusText}catch(f){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(d){i||o(-1,d)}p&&o(s,c,p,l)},n.async?4===u.readyState?setTimeout(r):(a=++Wn,$n&&(Pn||(Pn={},b(e).unload($n)),Pn[a]=r),u.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Xn,Un,Vn=/^(?:toggle|show|hide)$/,Yn=RegExp("^(?:([+-])=|)("+x+")([a-z%]*)$","i"),Jn=/queueHooks$/,Gn=[nr],Qn={"*":[function(e,t){var n,r,i=this.createTween(e,t),o=Yn.exec(t),a=i.cur(),s=+a||0,u=1,l=20;if(o){if(n=+o[2],r=o[3]||(b.cssNumber[e]?"":"px"),"px"!==r&&s){s=b.css(i.elem,e,!0)||n||1;do u=u||".5",s/=u,b.style(i.elem,e,s+r);while(u!==(u=i.cur()/a)&&1!==u&&--l)}i.unit=r,i.start=s,i.end=o[1]?s+(o[1]+1)*n:n}return i}]};function Kn(){return setTimeout(function(){Xn=t}),Xn=b.now()}function Zn(e,t){b.each(t,function(t,n){var r=(Qn[t]||[]).concat(Qn["*"]),i=0,o=r.length;for(;o>i;i++)if(r[i].call(e,t,n))return})}function er(e,t,n){var r,i,o=0,a=Gn.length,s=b.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;var t=Xn||Kn(),n=Math.max(0,l.startTime+l.duration-t),r=n/l.duration||0,o=1-r,a=0,u=l.tweens.length;for(;u>a;a++)l.tweens[a].run(o);return s.notifyWith(e,[l,o,n]),1>o&&u?n:(s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:b.extend({},t),opts:b.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Xn||Kn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=b.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)l.tweens[n].run(1);return t?s.resolveWith(e,[l,t]):s.rejectWith(e,[l,t]),this}}),c=l.props;for(tr(c,l.opts.specialEasing);a>o;o++)if(r=Gn[o].call(l,e,c,l.opts))return r;return Zn(l,c),b.isFunction(l.opts.start)&&l.opts.start.call(e,l),b.fx.timer(b.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always)}function tr(e,t){var n,r,i,o,a;for(i in e)if(r=b.camelCase(i),o=t[r],n=e[i],b.isArray(n)&&(o=n[1],n=e[i]=n[0]),i!==r&&(e[r]=n,delete e[i]),a=b.cssHooks[r],a&&"expand"in a){n=a.expand(n),delete e[r];for(i in n)i in e||(e[i]=n[i],t[i]=o)}else t[r]=o}b.Animation=b.extend(er,{tweener:function(e,t){b.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Qn[n]=Qn[n]||[],Qn[n].unshift(t)},prefilter:function(e,t){t?Gn.unshift(e):Gn.push(e)}});function nr(e,t,n){var r,i,o,a,s,u,l,c,p,f=this,d=e.style,h={},g=[],m=e.nodeType&&nn(e);n.queue||(c=b._queueHooks(e,"fx"),null==c.unqueued&&(c.unqueued=0,p=c.empty.fire,c.empty.fire=function(){c.unqueued||p()}),c.unqueued++,f.always(function(){f.always(function(){c.unqueued--,b.queue(e,"fx").length||c.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[d.overflow,d.overflowX,d.overflowY],"inline"===b.css(e,"display")&&"none"===b.css(e,"float")&&(b.support.inlineBlockNeedsLayout&&"inline"!==un(e.nodeName)?d.zoom=1:d.display="inline-block")),n.overflow&&(d.overflow="hidden",b.support.shrinkWrapBlocks||f.always(function(){d.overflow=n.overflow[0],d.overflowX=n.overflow[1],d.overflowY=n.overflow[2]}));for(i in t)if(a=t[i],Vn.exec(a)){if(delete t[i],u=u||"toggle"===a,a===(m?"hide":"show"))continue;g.push(i)}if(o=g.length){s=b._data(e,"fxshow")||b._data(e,"fxshow",{}),"hidden"in s&&(m=s.hidden),u&&(s.hidden=!m),m?b(e).show():f.done(function(){b(e).hide()}),f.done(function(){var t;b._removeData(e,"fxshow");for(t in h)b.style(e,t,h[t])});for(i=0;o>i;i++)r=g[i],l=f.createTween(r,m?s[r]:0),h[r]=s[r]||b.style(e,r),r in s||(s[r]=l.start,m&&(l.end=l.start,l.start="width"===r||"height"===r?1:0))}}function rr(e,t,n,r,i){return new rr.prototype.init(e,t,n,r,i)}b.Tween=rr,rr.prototype={constructor:rr,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(b.cssNumber[n]?"":"px")},cur:function(){var e=rr.propHooks[this.prop];return e&&e.get?e.get(this):rr.propHooks._default.get(this)},run:function(e){var t,n=rr.propHooks[this.prop];return this.pos=t=this.options.duration?b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rr.propHooks._default.set(this),this}},rr.prototype.init.prototype=rr.prototype,rr.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=b.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[b.cssProps[e.prop]]||b.cssHooks[e.prop])?b.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},rr.propHooks.scrollTop=rr.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.each(["toggle","show","hide"],function(e,t){var n=b.fn[t];b.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ir(t,!0),e,r,i)}}),b.fn.extend({fadeTo:function(e,t,n,r){return this.filter(nn).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=b.isEmptyObject(e),o=b.speed(t,n,r),a=function(){var t=er(this,b.extend({},e),o);a.finish=function(){t.stop(!0)},(i||b._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=b.timers,a=b._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&Jn.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&b.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=b._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=b.timers,a=r?r.length:0;for(n.finish=!0,b.queue(this,e,[]),i&&i.cur&&i.cur.finish&&i.cur.finish.call(this),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function ir(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Zt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}b.each({slideDown:ir("show"),slideUp:ir("hide"),slideToggle:ir("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){b.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),b.speed=function(e,t,n){var r=e&&"object"==typeof e?b.extend({},e):{complete:n||!n&&t||b.isFunction(e)&&e,duration:e,easing:n&&t||t&&!b.isFunction(t)&&t};return r.duration=b.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in b.fx.speeds?b.fx.speeds[r.duration]:b.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){b.isFunction(r.old)&&r.old.call(this),r.queue&&b.dequeue(this,r.queue)},r},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},b.timers=[],b.fx=rr.prototype.init,b.fx.tick=function(){var e,n=b.timers,r=0;for(Xn=b.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||b.fx.stop(),Xn=t},b.fx.timer=function(e){e()&&b.timers.push(e)&&b.fx.start()},b.fx.interval=13,b.fx.start=function(){Un||(Un=setInterval(b.fx.tick,b.fx.interval))},b.fx.stop=function(){clearInterval(Un),Un=null},b.fx.speeds={slow:600,fast:200,_default:400},b.fx.step={},b.expr&&b.expr.filters&&(b.expr.filters.animated=function(e){return b.grep(b.timers,function(t){return e===t.elem}).length}),b.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){b.offset.setOffset(this,e,t)});var n,r,o={top:0,left:0},a=this[0],s=a&&a.ownerDocument;if(s)return n=s.documentElement,b.contains(n,a)?(typeof a.getBoundingClientRect!==i&&(o=a.getBoundingClientRect()),r=or(s),{top:o.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:o.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):o},b.offset={setOffset:function(e,t,n){var r=b.css(e,"position");"static"===r&&(e.style.position="relative");var i=b(e),o=i.offset(),a=b.css(e,"top"),s=b.css(e,"left"),u=("absolute"===r||"fixed"===r)&&b.inArray("auto",[a,s])>-1,l={},c={},p,f;u?(c=i.position(),p=c.top,f=c.left):(p=parseFloat(a)||0,f=parseFloat(s)||0),b.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(l.top=t.top-o.top+p),null!=t.left&&(l.left=t.left-o.left+f),"using"in t?t.using.call(e,l):i.css(l)}},b.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===b.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),b.nodeName(e[0],"html")||(n=e.offset()),n.top+=b.css(e[0],"borderTopWidth",!0),n.left+=b.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-b.css(r,"marginTop",!0),left:t.left-n.left-b.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||o.documentElement;while(e&&!b.nodeName(e,"html")&&"static"===b.css(e,"position"))e=e.offsetParent;return e||o.documentElement})}}),b.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);b.fn[e]=function(i){return b.access(this,function(e,i,o){var a=or(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?b(a).scrollLeft():o,r?o:b(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}});function or(e){return b.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}b.each({Height:"height",Width:"width"},function(e,n){b.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){b.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return b.access(this,function(n,r,i){var o;return b.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?b.css(n,r,s):b.style(n,r,i,s)},n,a?i:t,a,null)}})}),e.jQuery=e.$=b,"function"==typeof define&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return b})})(window);
\ No newline at end of file
diff --git a/eclipse.org-common/lib/jquery/jquery-2.0.0.min.js b/eclipse.org-common/lib/jquery/jquery-2.0.0.min.js
deleted file mode 100644
index b18e05a..0000000
--- a/eclipse.org-common/lib/jquery/jquery-2.0.0.min.js
+++ /dev/null
@@ -1,6 +0,0 @@
-/*! jQuery v2.0.0 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license
-//@ sourceMappingURL=jquery.min.map
-*/
-(function(e,undefined){var t,n,r=typeof undefined,i=e.location,o=e.document,s=o.documentElement,a=e.jQuery,u=e.$,l={},c=[],f="2.0.0",p=c.concat,h=c.push,d=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=f.trim,x=function(e,n){return new x.fn.init(e,n,t)},b=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^-ms-/,N=/-([\da-z])/gi,E=function(e,t){return t.toUpperCase()},S=function(){o.removeEventListener("DOMContentLoaded",S,!1),e.removeEventListener("load",S,!1),x.ready()};x.fn=x.prototype={jquery:f,constructor:x,init:function(e,t,n){var r,i;if(!e)return this;if("string"==typeof e){if(r="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:T.exec(e),!r||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof x?t[0]:t,x.merge(this,x.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:o,!0)),C.test(r[1])&&x.isPlainObject(t))for(r in t)x.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return i=o.getElementById(r[2]),i&&i.parentNode&&(this.length=1,this[0]=i),this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?n.ready(e):(e.selector!==undefined&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return d.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,t,n,r,i,o,s=arguments[0]||{},a=1,u=arguments.length,l=!1;for("boolean"==typeof s&&(l=s,s=arguments[1]||{},a=2),"object"==typeof s||x.isFunction(s)||(s={}),u===a&&(s=this,--a);u>a;a++)if(null!=(e=arguments[a]))for(t in e)n=s[t],r=e[t],s!==r&&(l&&r&&(x.isPlainObject(r)||(i=x.isArray(r)))?(i?(i=!1,o=n&&x.isArray(n)?n:[]):o=n&&x.isPlainObject(n)?n:{},s[t]=x.extend(l,o,r)):r!==undefined&&(s[t]=r));return s},x.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=a),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){(e===!0?--x.readyWait:x.isReady)||(x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(o,[x]),x.fn.trigger&&x(o).trigger("ready").off("ready")))},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray,isWindow:function(e){return null!=e&&e===e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if("object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(t){return!1}return!0},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:JSON.parse,parseXML:function(e){var t,n;if(!e||"string"!=typeof e)return null;try{n=new DOMParser,t=n.parseFromString(e,"text/xml")}catch(r){t=undefined}return(!t||t.getElementsByTagName("parsererror").length)&&x.error("Invalid XML: "+e),t},noop:function(){},globalEval:function(e){var t,n=eval;e=x.trim(e),e&&(1===e.indexOf("use strict")?(t=o.createElement("script"),t.text=e,o.head.appendChild(t).parentNode.removeChild(t)):n(e))},camelCase:function(e){return e.replace(k,"ms-").replace(N,E)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,s=j(e);if(n){if(s){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(s){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:function(e){return null==e?"":v.call(e)},makeArray:function(e,t){var n=t||[];return null!=e&&(j(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:g.call(t,e,n)},merge:function(e,t){var n=t.length,r=e.length,i=0;if("number"==typeof n)for(;n>i;i++)e[r++]=t[i];else while(t[i]!==undefined)e[r++]=t[i++];return e.length=r,e},grep:function(e,t,n){var r,i=[],o=0,s=e.length;for(n=!!n;s>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,s=j(e),a=[];if(s)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(a[a.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(a[a.length]=r);return p.apply([],a)},guid:1,proxy:function(e,t){var n,r,i;return"string"==typeof t&&(n=e[t],t=e,e=n),x.isFunction(e)?(r=d.call(arguments,2),i=function(){return e.apply(t||this,r.concat(d.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):undefined},access:function(e,t,n,r,i,o,s){var a=0,u=e.length,l=null==n;if("object"===x.type(n)){i=!0;for(a in n)x.access(e,t,a,n[a],!0,o,s)}else if(r!==undefined&&(i=!0,x.isFunction(r)||(s=!0),l&&(s?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(x(e),n)})),t))for(;u>a;a++)t(e[a],n,s?r:r.call(e[a],a,t(e[a],n)));return i?e:l?t.call(e):u?t(e[0],n):o},now:Date.now,swap:function(e,t,n,r){var i,o,s={};for(o in t)s[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=s[o];return i}}),x.ready.promise=function(t){return n||(n=x.Deferred(),"complete"===o.readyState?setTimeout(x.ready):(o.addEventListener("DOMContentLoaded",S,!1),e.addEventListener("load",S,!1))),n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function j(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}t=x(o),function(e,undefined){var t,n,r,i,o,s,a,u,l,c,f,p,h,d,g,m,y="sizzle"+-new Date,v=e.document,b={},w=0,T=0,C=ot(),k=ot(),N=ot(),E=!1,S=function(){return 0},j=typeof undefined,D=1<<31,A=[],L=A.pop,q=A.push,H=A.push,O=A.slice,F=A.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},P="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",R="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",W=M.replace("w","w#"),$="\\["+R+"*("+M+")"+R+"*(?:([*^$|!~]?=)"+R+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+W+")|)|)"+R+"*\\]",B=":("+M+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+$.replace(3,8)+")*)|.*)\\)|)",I=RegExp("^"+R+"+|((?:^|[^\\\\])(?:\\\\.)*)"+R+"+$","g"),z=RegExp("^"+R+"*,"+R+"*"),_=RegExp("^"+R+"*([>+~]|"+R+")"+R+"*"),X=RegExp(R+"*[+~]"),U=RegExp("="+R+"*([^\\]'\"]*)"+R+"*\\]","g"),Y=RegExp(B),V=RegExp("^"+W+"$"),G={ID:RegExp("^#("+M+")"),CLASS:RegExp("^\\.("+M+")"),TAG:RegExp("^("+M.replace("w","w*")+")"),ATTR:RegExp("^"+$),PSEUDO:RegExp("^"+B),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+R+"*(even|odd|(([+-]|)(\\d*)n|)"+R+"*(?:([+-]|)"+R+"*(\\d+)|))"+R+"*\\)|)","i"),"boolean":RegExp("^(?:"+P+")$","i"),needsContext:RegExp("^"+R+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+R+"*((?:-\\d)?\\d*)"+R+"*\\)|)(?=[^-]|$)","i")},J=/^[^{]+\{\s*\[native \w/,Q=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,K=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,et=/'|\\/g,tt=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,nt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{H.apply(A=O.call(v.childNodes),v.childNodes),A[v.childNodes.length].nodeType}catch(rt){H={apply:A.length?function(e,t){q.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function it(e){return J.test(e+"")}function ot(){var e,t=[];return e=function(n,i){return t.push(n+=" ")>r.cacheLength&&delete e[t.shift()],e[n]=i}}function st(e){return e[y]=!0,e}function at(e){var t=c.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ut(e,t,n,r){var i,o,s,a,u,f,d,g,x,w;if((t?t.ownerDocument||t:v)!==c&&l(t),t=t||c,n=n||[],!e||"string"!=typeof e)return n;if(1!==(a=t.nodeType)&&9!==a)return[];if(p&&!r){if(i=Q.exec(e))if(s=i[1]){if(9===a){if(o=t.getElementById(s),!o||!o.parentNode)return n;if(o.id===s)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(s))&&m(t,o)&&o.id===s)return n.push(o),n}else{if(i[2])return H.apply(n,t.getElementsByTagName(e)),n;if((s=i[3])&&b.getElementsByClassName&&t.getElementsByClassName)return H.apply(n,t.getElementsByClassName(s)),n}if(b.qsa&&(!h||!h.test(e))){if(g=d=y,x=t,w=9===a&&e,1===a&&"object"!==t.nodeName.toLowerCase()){f=gt(e),(d=t.getAttribute("id"))?g=d.replace(et,"\\$&"):t.setAttribute("id",g),g="[id='"+g+"'] ",u=f.length;while(u--)f[u]=g+mt(f[u]);x=X.test(e)&&t.parentNode||t,w=f.join(",")}if(w)try{return H.apply(n,x.querySelectorAll(w)),n}catch(T){}finally{d||t.removeAttribute("id")}}}return kt(e.replace(I,"$1"),t,n,r)}o=ut.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},l=ut.setDocument=function(e){var t=e?e.ownerDocument||e:v;return t!==c&&9===t.nodeType&&t.documentElement?(c=t,f=t.documentElement,p=!o(t),b.getElementsByTagName=at(function(e){return e.appendChild(t.createComment("")),!e.getElementsByTagName("*").length}),b.attributes=at(function(e){return e.className="i",!e.getAttribute("className")}),b.getElementsByClassName=at(function(e){return e.innerHTML="<div class='a'></div><div class='a i'></div>",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),b.sortDetached=at(function(e){return 1&e.compareDocumentPosition(c.createElement("div"))}),b.getById=at(function(e){return f.appendChild(e).id=y,!t.getElementsByName||!t.getElementsByName(y).length}),b.getById?(r.find.ID=function(e,t){if(typeof t.getElementById!==j&&p){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},r.filter.ID=function(e){var t=e.replace(tt,nt);return function(e){return e.getAttribute("id")===t}}):(r.find.ID=function(e,t){if(typeof t.getElementById!==j&&p){var n=t.getElementById(e);return n?n.id===e||typeof n.getAttributeNode!==j&&n.getAttributeNode("id").value===e?[n]:undefined:[]}},r.filter.ID=function(e){var t=e.replace(tt,nt);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),r.find.TAG=b.getElementsByTagName?function(e,t){return typeof t.getElementsByTagName!==j?t.getElementsByTagName(e):undefined}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=b.getElementsByClassName&&function(e,t){return typeof t.getElementsByClassName!==j&&p?t.getElementsByClassName(e):undefined},d=[],h=[],(b.qsa=it(t.querySelectorAll))&&(at(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||h.push("\\["+R+"*(?:value|"+P+")"),e.querySelectorAll(":checked").length||h.push(":checked")}),at(function(e){var t=c.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&h.push("[*^$]="+R+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||h.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),h.push(",.*:")})),(b.matchesSelector=it(g=f.webkitMatchesSelector||f.mozMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&at(function(e){b.disconnectedMatch=g.call(e,"div"),g.call(e,"[s!='']:x"),d.push("!=",B)}),h=h.length&&RegExp(h.join("|")),d=d.length&&RegExp(d.join("|")),m=it(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},S=f.compareDocumentPosition?function(e,n){if(e===n)return E=!0,0;var r=n.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(n);return r?1&r||!b.sortDetached&&n.compareDocumentPosition(e)===r?e===t||m(v,e)?-1:n===t||m(v,n)?1:u?F.call(u,e)-F.call(u,n):0:4&r?-1:1:e.compareDocumentPosition?-1:1}:function(e,n){var r,i=0,o=e.parentNode,s=n.parentNode,a=[e],l=[n];if(e===n)return E=!0,0;if(!o||!s)return e===t?-1:n===t?1:o?-1:s?1:u?F.call(u,e)-F.call(u,n):0;if(o===s)return lt(e,n);r=e;while(r=r.parentNode)a.unshift(r);r=n;while(r=r.parentNode)l.unshift(r);while(a[i]===l[i])i++;return i?lt(a[i],l[i]):a[i]===v?-1:l[i]===v?1:0},c):c},ut.matches=function(e,t){return ut(e,null,null,t)},ut.matchesSelector=function(e,t){if((e.ownerDocument||e)!==c&&l(e),t=t.replace(U,"='$1']"),!(!b.matchesSelector||!p||d&&d.test(t)||h&&h.test(t)))try{var n=g.call(e,t);if(n||b.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return ut(t,c,null,[e]).length>0},ut.contains=function(e,t){return(e.ownerDocument||e)!==c&&l(e),m(e,t)},ut.attr=function(e,t){(e.ownerDocument||e)!==c&&l(e);var n=r.attrHandle[t.toLowerCase()],i=n&&n(e,t,!p);return i===undefined?b.attributes||!p?e.getAttribute(t):(i=e.getAttributeNode(t))&&i.specified?i.value:null:i},ut.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},ut.uniqueSort=function(e){var t,n=[],r=0,i=0;if(E=!b.detectDuplicates,u=!b.sortStable&&e.slice(0),e.sort(S),E){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return e};function lt(e,t){var n=t&&e,r=n&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function ct(e,t,n){var r;return n?undefined:(r=e.getAttributeNode(t))&&r.specified?r.value:e[t]===!0?t.toLowerCase():null}function ft(e,t,n){var r;return n?undefined:r=e.getAttribute(t,"type"===t.toLowerCase()?1:2)}function pt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ht(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function dt(e){return st(function(t){return t=+t,st(function(n,r){var i,o=e([],n.length,t),s=o.length;while(s--)n[i=o[s]]&&(n[i]=!(r[i]=n[i]))})})}i=ut.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r];r++)n+=i(t);return n},r=ut.selectors={cacheLength:50,createPseudo:st,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(tt,nt),e[3]=(e[4]||e[5]||"").replace(tt,nt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||ut.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&ut.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return G.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&Y.test(n)&&(t=gt(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(tt,nt).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=C[e+" "];return t||(t=RegExp("(^|"+R+")"+e+"("+R+"|$)"))&&C(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=ut.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),s="last"!==e.slice(-4),a="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,h,d,g=o!==s?"nextSibling":"previousSibling",m=t.parentNode,v=a&&t.nodeName.toLowerCase(),x=!u&&!a;if(m){if(o){while(g){f=t;while(f=f[g])if(a?f.nodeName.toLowerCase()===v:1===f.nodeType)return!1;d=g="only"===e&&!d&&"nextSibling"}return!0}if(d=[s?m.firstChild:m.lastChild],s&&x){c=m[y]||(m[y]={}),l=c[e]||[],h=l[0]===w&&l[1],p=l[0]===w&&l[2],f=h&&m.childNodes[h];while(f=++h&&f&&f[g]||(p=h=0)||d.pop())if(1===f.nodeType&&++p&&f===t){c[e]=[w,h,p];break}}else if(x&&(l=(t[y]||(t[y]={}))[e])&&l[0]===w)p=l[1];else while(f=++h&&f&&f[g]||(p=h=0)||d.pop())if((a?f.nodeName.toLowerCase()===v:1===f.nodeType)&&++p&&(x&&((f[y]||(f[y]={}))[e]=[w,p]),f===t))break;return p-=i,p===r||0===p%r&&p/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||ut.error("unsupported pseudo: "+e);return i[y]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?st(function(e,n){var r,o=i(e,t),s=o.length;while(s--)r=F.call(e,o[s]),e[r]=!(n[r]=o[s])}):function(e){return i(e,0,n)}):i}},pseudos:{not:st(function(e){var t=[],n=[],r=s(e.replace(I,"$1"));return r[y]?st(function(e,t,n,i){var o,s=r(e,null,i,[]),a=e.length;while(a--)(o=s[a])&&(e[a]=!(t[a]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:st(function(e){return function(t){return ut(e,t).length>0}}),contains:st(function(e){return function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:st(function(e){return V.test(e||"")||ut.error("unsupported lang: "+e),e=e.replace(tt,nt).toLowerCase(),function(t){var n;do if(n=p?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===c.activeElement&&(!c.hasFocus||c.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Z.test(e.nodeName)},input:function(e){return K.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:dt(function(){return[0]}),last:dt(function(e,t){return[t-1]}),eq:dt(function(e,t,n){return[0>n?n+t:n]}),even:dt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:dt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:dt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:dt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(t in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})r.pseudos[t]=pt(t);for(t in{submit:!0,reset:!0})r.pseudos[t]=ht(t);function gt(e,t){var n,i,o,s,a,u,l,c=k[e+" "];if(c)return t?0:c.slice(0);a=e,u=[],l=r.preFilter;while(a){(!n||(i=z.exec(a)))&&(i&&(a=a.slice(i[0].length)||a),u.push(o=[])),n=!1,(i=_.exec(a))&&(n=i.shift(),o.push({value:n,type:i[0].replace(I," ")}),a=a.slice(n.length));for(s in r.filter)!(i=G[s].exec(a))||l[s]&&!(i=l[s](i))||(n=i.shift(),o.push({value:n,type:s,matches:i}),a=a.slice(n.length));if(!n)break}return t?a.length:a?ut.error(e):k(e,u).slice(0)}function mt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function yt(e,t,r){var i=t.dir,o=r&&"parentNode"===i,s=T++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,r,a){var u,l,c,f=w+" "+s;if(a){while(t=t[i])if((1===t.nodeType||o)&&e(t,r,a))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[y]||(t[y]={}),(l=c[i])&&l[0]===f){if((u=l[1])===!0||u===n)return u===!0}else if(l=c[i]=[f],l[1]=e(t,r,a)||n,l[1]===!0)return!0}}function vt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,s=[],a=0,u=e.length,l=null!=t;for(;u>a;a++)(o=e[a])&&(!n||n(o,r,i))&&(s.push(o),l&&t.push(a));return s}function bt(e,t,n,r,i,o){return r&&!r[y]&&(r=bt(r)),i&&!i[y]&&(i=bt(i,o)),st(function(o,s,a,u){var l,c,f,p=[],h=[],d=s.length,g=o||Ct(t||"*",a.nodeType?[a]:a,[]),m=!e||!o&&t?g:xt(g,p,e,a,u),y=n?i||(o?e:d||r)?[]:s:m;if(n&&n(m,y,a,u),r){l=xt(y,h),r(l,[],a,u),c=l.length;while(c--)(f=l[c])&&(y[h[c]]=!(m[h[c]]=f))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(f=y[c])&&l.push(m[c]=f);i(null,y=[],l,u)}c=y.length;while(c--)(f=y[c])&&(l=i?F.call(o,f):p[c])>-1&&(o[l]=!(s[l]=f))}}else y=xt(y===s?y.splice(d,y.length):y),i?i(null,s,y,u):H.apply(s,y)})}function wt(e){var t,n,i,o=e.length,s=r.relative[e[0].type],u=s||r.relative[" "],l=s?1:0,c=yt(function(e){return e===t},u,!0),f=yt(function(e){return F.call(t,e)>-1},u,!0),p=[function(e,n,r){return!s&&(r||n!==a)||((t=n).nodeType?c(e,n,r):f(e,n,r))}];for(;o>l;l++)if(n=r.relative[e[l].type])p=[yt(vt(p),n)];else{if(n=r.filter[e[l].type].apply(null,e[l].matches),n[y]){for(i=++l;o>i;i++)if(r.relative[e[i].type])break;return bt(l>1&&vt(p),l>1&&mt(e.slice(0,l-1)).replace(I,"$1"),n,i>l&&wt(e.slice(l,i)),o>i&&wt(e=e.slice(i)),o>i&&mt(e))}p.push(n)}return vt(p)}function Tt(e,t){var i=0,o=t.length>0,s=e.length>0,u=function(u,l,f,p,h){var d,g,m,y=[],v=0,x="0",b=u&&[],T=null!=h,C=a,k=u||s&&r.find.TAG("*",h&&l.parentNode||l),N=w+=null==C?1:Math.random()||.1;for(T&&(a=l!==c&&l,n=i);null!=(d=k[x]);x++){if(s&&d){g=0;while(m=e[g++])if(m(d,l,f)){p.push(d);break}T&&(w=N,n=++i)}o&&((d=!m&&d)&&v--,u&&b.push(d))}if(v+=x,o&&x!==v){g=0;while(m=t[g++])m(b,y,l,f);if(u){if(v>0)while(x--)b[x]||y[x]||(y[x]=L.call(p));y=xt(y)}H.apply(p,y),T&&!u&&y.length>0&&v+t.length>1&&ut.uniqueSort(p)}return T&&(w=N,a=C),b};return o?st(u):u}s=ut.compile=function(e,t){var n,r=[],i=[],o=N[e+" "];if(!o){t||(t=gt(e)),n=t.length;while(n--)o=wt(t[n]),o[y]?r.push(o):i.push(o);o=N(e,Tt(i,r))}return o};function Ct(e,t,n){var r=0,i=t.length;for(;i>r;r++)ut(e,t[r],n);return n}function kt(e,t,n,i){var o,a,u,l,c,f=gt(e);if(!i&&1===f.length){if(a=f[0]=f[0].slice(0),a.length>2&&"ID"===(u=a[0]).type&&9===t.nodeType&&p&&r.relative[a[1].type]){if(t=(r.find.ID(u.matches[0].replace(tt,nt),t)||[])[0],!t)return n;e=e.slice(a.shift().value.length)}o=G.needsContext.test(e)?0:a.length;while(o--){if(u=a[o],r.relative[l=u.type])break;if((c=r.find[l])&&(i=c(u.matches[0].replace(tt,nt),X.test(a[0].type)&&t.parentNode||t))){if(a.splice(o,1),e=i.length&&mt(a),!e)return H.apply(n,i),n;break}}}return s(e,f)(i,t,!p,n,X.test(e)),n}r.pseudos.nth=r.pseudos.eq;function Nt(){}Nt.prototype=r.filters=r.pseudos,r.setFilters=new Nt,b.sortStable=y.split("").sort(S).join("")===y,l(),[0,0].sort(S),b.detectDuplicates=E,at(function(e){if(e.innerHTML="<a href='#'></a>","#"!==e.firstChild.getAttribute("href")){var t="type|href|height|width".split("|"),n=t.length;while(n--)r.attrHandle[t[n]]=ft}}),at(function(e){if(null!=e.getAttribute("disabled")){var t=P.split("|"),n=t.length;while(n--)r.attrHandle[t[n]]=ct}}),x.find=ut,x.expr=ut.selectors,x.expr[":"]=x.expr.pseudos,x.unique=ut.uniqueSort,x.text=ut.getText,x.isXMLDoc=ut.isXML,x.contains=ut.contains}(e);var D={};function A(e){var t=D[e]={};return x.each(e.match(w)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?D[e]||A(e):x.extend({},e);var t,n,r,i,o,s,a=[],u=!e.once&&[],l=function(f){for(t=e.memory&&f,n=!0,s=i||0,i=0,o=a.length,r=!0;a&&o>s;s++)if(a[s].apply(f[0],f[1])===!1&&e.stopOnFalse){t=!1;break}r=!1,a&&(u?u.length&&l(u.shift()):t?a=[]:c.disable())},c={add:function(){if(a){var n=a.length;(function s(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&c.has(n)||a.push(n):n&&n.length&&"string"!==r&&s(n)})})(arguments),r?o=a.length:t&&(i=n,l(t))}return this},remove:function(){return a&&x.each(arguments,function(e,t){var n;while((n=x.inArray(t,a,n))>-1)a.splice(n,1),r&&(o>=n&&o--,s>=n&&s--)}),this},has:function(e){return e?x.inArray(e,a)>-1:!(!a||!a.length)},empty:function(){return a=[],o=0,this},disable:function(){return a=u=t=undefined,this},disabled:function(){return!a},lock:function(){return u=undefined,t||c.disable(),this},locked:function(){return!u},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!a||n&&!u||(r?u.push(t):l(t)),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!n}};return c},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var s=o[0],a=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=a&&a.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[s+"With"](this===r?n.promise():this,a?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var s=o[2],a=o[3];r[o[1]]=s.add,a&&s.add(function(){n=a},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=s.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=d.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),s=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?d.call(arguments):r,n===a?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},a,u,l;if(r>1)for(a=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(s(t,l,n)).fail(o.reject).progress(s(t,u,a)):--i;return i||o.resolveWith(l,n),o.promise()}}),x.support=function(t){var n=o.createElement("input"),r=o.createDocumentFragment(),i=o.createElement("div"),s=o.createElement("select"),a=s.appendChild(o.createElement("option"));return n.type?(n.type="checkbox",t.checkOn=""!==n.value,t.optSelected=a.selected,t.reliableMarginRight=!0,t.boxSizingReliable=!0,t.pixelPosition=!1,n.checked=!0,t.noCloneChecked=n.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!a.disabled,n=o.createElement("input"),n.value="t",n.type="radio",t.radioValue="t"===n.value,n.setAttribute("checked","t"),n.setAttribute("name","t"),r.appendChild(n),t.checkClone=r.cloneNode(!0).cloneNode(!0).lastChild.checked,t.focusinBubbles="onfocusin"in e,i.style.backgroundClip="content-box",i.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===i.style.backgroundClip,x(function(){var n,r,s="padding:0;margin:0;border:0;display:block;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box",a=o.getElementsByTagName("body")[0];a&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",a.appendChild(n).appendChild(i),i.innerHTML="",i.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%",x.swap(a,null!=a.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===i.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(i,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(i,null)||{width:"4px"}).width,r=i.appendChild(o.createElement("div")),r.style.cssText=i.style.cssText=s,r.style.marginRight=r.style.width="0",i.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),a.removeChild(n))}),t):t}({});var L,q,H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,O=/([A-Z])/g;function F(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=x.expando+Math.random()}F.uid=1,F.accepts=function(e){return e.nodeType?1===e.nodeType||9===e.nodeType:!0},F.prototype={key:function(e){if(!F.accepts(e))return 0;var t={},n=e[this.expando];if(!n){n=F.uid++;try{t[this.expando]={value:n},Object.defineProperties(e,t)}catch(r){t[this.expando]=n,x.extend(e,t)}}return this.cache[n]||(this.cache[n]={}),n},set:function(e,t,n){var r,i=this.key(e),o=this.cache[i];if("string"==typeof t)o[t]=n;else if(x.isEmptyObject(o))this.cache[i]=t;else for(r in t)o[r]=t[r]},get:function(e,t){var n=this.cache[this.key(e)];return t===undefined?n:n[t]},access:function(e,t,n){return t===undefined||t&&"string"==typeof t&&n===undefined?this.get(e,t):(this.set(e,t,n),n!==undefined?n:t)},remove:function(e,t){var n,r,i=this.key(e),o=this.cache[i];if(t===undefined)this.cache[i]={};else{x.isArray(t)?r=t.concat(t.map(x.camelCase)):t in o?r=[t]:(r=x.camelCase(t),r=r in o?[r]:r.match(w)||[]),n=r.length;while(n--)delete o[r[n]]}},hasData:function(e){return!x.isEmptyObject(this.cache[e[this.expando]]||{})},discard:function(e){delete this.cache[this.key(e)]}},L=new F,q=new F,x.extend({acceptData:F.accepts,hasData:function(e){return L.hasData(e)||q.hasData(e)},data:function(e,t,n){return L.access(e,t,n)},removeData:function(e,t){L.remove(e,t)},_data:function(e,t,n){return q.access(e,t,n)},_removeData:function(e,t){q.remove(e,t)}}),x.fn.extend({data:function(e,t){var n,r,i=this[0],o=0,s=null;if(e===undefined){if(this.length&&(s=L.get(i),1===i.nodeType&&!q.get(i,"hasDataAttrs"))){for(n=i.attributes;n.length>o;o++)r=n[o].name,0===r.indexOf("data-")&&(r=x.camelCase(r.substring(5)),P(i,r,s[r]));q.set(i,"hasDataAttrs",!0)}return s}return"object"==typeof e?this.each(function(){L.set(this,e)}):x.access(this,function(t){var n,r=x.camelCase(e);if(i&&t===undefined){if(n=L.get(i,e),n!==undefined)return n;if(n=L.get(i,r),n!==undefined)return n;if(n=P(i,r,undefined),n!==undefined)return n}else this.each(function(){var n=L.get(this,r);L.set(this,r,t),-1!==e.indexOf("-")&&n!==undefined&&L.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){L.remove(this,e)})}});function P(e,t,n){var r;if(n===undefined&&1===e.nodeType)if(r="data-"+t.replace(O,"-$1").toLowerCase(),n=e.getAttribute(r),"string"==typeof n){try{n="true"===n?!0:"false"===n?!1:"null"===n?null:+n+""===n?+n:H.test(n)?JSON.parse(n):n}catch(i){}L.set(e,t,n)}else n=undefined;return n}x.extend({queue:function(e,t,n){var r;return e?(t=(t||"fx")+"queue",r=q.get(e,t),n&&(!r||x.isArray(n)?r=q.access(e,t,x.makeArray(n)):r.push(n)),r||[]):undefined},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),s=function(){x.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,s,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return q.get(e,n)||q.access(e,n,{empty:x.Callbacks("once memory").add(function(){q.remove(e,[t+"queue",n])})})}}),x.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),n>arguments.length?x.queue(this[0],e):t===undefined?this:this.each(function(){var n=x.queue(this,e,t);
-x._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=x.Deferred(),o=this,s=this.length,a=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=undefined),e=e||"fx";while(s--)n=q.get(o[s],e+"queueHooks"),n&&n.empty&&(r++,n.empty.add(a));return a(),i.promise(t)}});var R,M,W=/[\t\r\n]/g,$=/\r/g,B=/^(?:input|select|textarea|button)$/i;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[x.propFix[e]||e]})},addClass:function(e){var t,n,r,i,o,s=0,a=this.length,u="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];a>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(W," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,s=0,a=this.length,u=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];a>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(W," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,i="boolean"==typeof t;return x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,s=0,a=x(this),u=t,l=e.match(w)||[];while(o=l[s++])u=i?u:!a.hasClass(o),a[u?"addClass":"removeClass"](o)}else(n===r||"boolean"===n)&&(this.className&&q.set(this,"__className__",this.className),this.className=this.className||e===!1?"":q.get(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(W," ").indexOf(t)>=0)return!0;return!1},val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=x.isFunction(e),this.each(function(n){var i,o=x(this);1===this.nodeType&&(i=r?e.call(this,n,o.val()):e,null==i?i="":"number"==typeof i?i+="":x.isArray(i)&&(i=x.map(i,function(e){return null==e?"":e+""})),t=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],t&&"set"in t&&t.set(this,i,"value")!==undefined||(this.value=i))});if(i)return t=x.valHooks[i.type]||x.valHooks[i.nodeName.toLowerCase()],t&&"get"in t&&(n=t.get(i,"value"))!==undefined?n:(n=i.value,"string"==typeof n?n.replace($,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,s=o?null:[],a=o?i+1:r.length,u=0>i?a:o?i:0;for(;a>u;u++)if(n=r[u],!(!n.selected&&u!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),s=i.length;while(s--)r=i[s],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,t,n){var i,o,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===r?x.prop(e,t,n):(1===s&&x.isXMLDoc(e)||(t=t.toLowerCase(),i=x.attrHooks[t]||(x.expr.match.boolean.test(t)?M:R)),n===undefined?i&&"get"in i&&null!==(o=i.get(e,t))?o:(o=x.find.attr(e,t),null==o?undefined:o):null!==n?i&&"set"in i&&(o=i.set(e,n,t))!==undefined?o:(e.setAttribute(t,n+""),n):(x.removeAttr(e,t),undefined))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.boolean.test(n)&&(e[r]=!1),e.removeAttribute(n)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,t,n){var r,i,o,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return o=1!==s||!x.isXMLDoc(e),o&&(t=x.propFix[t]||t,i=x.propHooks[t]),n!==undefined?i&&"set"in i&&(r=i.set(e,n,t))!==undefined?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){return e.hasAttribute("tabindex")||B.test(e.nodeName)||e.href?e.tabIndex:-1}}}}),M={set:function(e,t,n){return t===!1?x.removeAttr(e,n):e.setAttribute(n,n),n}},x.each(x.expr.match.boolean.source.match(/\w+/g),function(e,t){var n=x.expr.attrHandle[t]||x.find.attr;x.expr.attrHandle[t]=function(e,t,r){var i=x.expr.attrHandle[t],o=r?undefined:(x.expr.attrHandle[t]=undefined)!=n(e,t,r)?t.toLowerCase():null;return x.expr.attrHandle[t]=i,o}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,t){return x.isArray(t)?e.checked=x.inArray(x(e).val(),t)>=0:undefined}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var I=/^key/,z=/^(?:mouse|contextmenu)|click/,_=/^(?:focusinfocus|focusoutblur)$/,X=/^([^.]*)(?:\.(.+)|)$/;function U(){return!0}function Y(){return!1}function V(){try{return o.activeElement}catch(e){}}x.event={global:{},add:function(e,t,n,i,o){var s,a,u,l,c,f,p,h,d,g,m,y=q.get(e);if(y){n.handler&&(s=n,n=s.handler,o=s.selector),n.guid||(n.guid=x.guid++),(l=y.events)||(l=y.events={}),(a=y.handle)||(a=y.handle=function(e){return typeof x===r||e&&x.event.triggered===e.type?undefined:x.event.dispatch.apply(a.elem,arguments)},a.elem=e),t=(t||"").match(w)||[""],c=t.length;while(c--)u=X.exec(t[c])||[],d=m=u[1],g=(u[2]||"").split(".").sort(),d&&(p=x.event.special[d]||{},d=(o?p.delegateType:p.bindType)||d,p=x.event.special[d]||{},f=x.extend({type:d,origType:m,data:i,handler:n,guid:n.guid,selector:o,needsContext:o&&x.expr.match.needsContext.test(o),namespace:g.join(".")},s),(h=l[d])||(h=l[d]=[],h.delegateCount=0,p.setup&&p.setup.call(e,i,g,a)!==!1||e.addEventListener&&e.addEventListener(d,a,!1)),p.add&&(p.add.call(e,f),f.handler.guid||(f.handler.guid=n.guid)),o?h.splice(h.delegateCount++,0,f):h.push(f),x.event.global[d]=!0);e=null}},remove:function(e,t,n,r,i){var o,s,a,u,l,c,f,p,h,d,g,m=q.hasData(e)&&q.get(e);if(m&&(u=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(a=X.exec(t[l])||[],h=g=a[1],d=(a[2]||"").split(".").sort(),h){f=x.event.special[h]||{},h=(r?f.delegateType:f.bindType)||h,p=u[h]||[],a=a[2]&&RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||a&&!a.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));s&&!p.length&&(f.teardown&&f.teardown.call(e,d,m.handle)!==!1||x.removeEvent(e,h,m.handle),delete u[h])}else for(h in u)x.event.remove(e,h+t[l],n,r,!0);x.isEmptyObject(u)&&(delete m.handle,q.remove(e,"events"))}},trigger:function(t,n,r,i){var s,a,u,l,c,f,p,h=[r||o],d=y.call(t,"type")?t.type:t,g=y.call(t,"namespace")?t.namespace.split("."):[];if(a=u=r=r||o,3!==r.nodeType&&8!==r.nodeType&&!_.test(d+x.event.triggered)&&(d.indexOf(".")>=0&&(g=d.split("."),d=g.shift(),g.sort()),c=0>d.indexOf(":")&&"on"+d,t=t[x.expando]?t:new x.Event(d,"object"==typeof t&&t),t.isTrigger=i?2:3,t.namespace=g.join("."),t.namespace_re=t.namespace?RegExp("(^|\\.)"+g.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=undefined,t.target||(t.target=r),n=null==n?[t]:x.makeArray(n,[t]),p=x.event.special[d]||{},i||!p.trigger||p.trigger.apply(r,n)!==!1)){if(!i&&!p.noBubble&&!x.isWindow(r)){for(l=p.delegateType||d,_.test(l+d)||(a=a.parentNode);a;a=a.parentNode)h.push(a),u=a;u===(r.ownerDocument||o)&&h.push(u.defaultView||u.parentWindow||e)}s=0;while((a=h[s++])&&!t.isPropagationStopped())t.type=s>1?l:p.bindType||d,f=(q.get(a,"events")||{})[t.type]&&q.get(a,"handle"),f&&f.apply(a,n),f=c&&a[c],f&&x.acceptData(a)&&f.apply&&f.apply(a,n)===!1&&t.preventDefault();return t.type=d,i||t.isDefaultPrevented()||p._default&&p._default.apply(h.pop(),n)!==!1||!x.acceptData(r)||c&&x.isFunction(r[d])&&!x.isWindow(r)&&(u=r[c],u&&(r[c]=null),x.event.triggered=d,r[d](),x.event.triggered=undefined,u&&(r[c]=u)),t.result}},dispatch:function(e){e=x.event.fix(e);var t,n,r,i,o,s=[],a=d.call(arguments),u=(q.get(this,"events")||{})[e.type]||[],l=x.event.special[e.type]||{};if(a[0]=e,e.delegateTarget=this,!l.preDispatch||l.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),t=0;while((i=s[t++])&&!e.isPropagationStopped()){e.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(o.namespace))&&(e.handleObj=o,e.data=o.data,r=((x.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,a),r!==undefined&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return l.postDispatch&&l.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,s=[],a=t.delegateCount,u=e.target;if(a&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!==this;u=u.parentNode||this)if(u.disabled!==!0||"click"!==e.type){for(r=[],n=0;a>n;n++)o=t[n],i=o.selector+" ",r[i]===undefined&&(r[i]=o.needsContext?x(i,this).index(u)>=0:x.find(i,this,null,[u]).length),r[i]&&r.push(o);r.length&&s.push({elem:u,handlers:r})}return t.length>a&&s.push({elem:this,handlers:t.slice(a)}),s},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,t){var n,r,i,s=t.button;return null==e.pageX&&null!=t.clientX&&(n=e.target.ownerDocument||o,r=n.documentElement,i=n.body,e.pageX=t.clientX+(r&&r.scrollLeft||i&&i.scrollLeft||0)-(r&&r.clientLeft||i&&i.clientLeft||0),e.pageY=t.clientY+(r&&r.scrollTop||i&&i.scrollTop||0)-(r&&r.clientTop||i&&i.clientTop||0)),e.which||s===undefined||(e.which=1&s?1:2&s?3:4&s?2:0),e}},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=z.test(i)?this.mouseHooks:I.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new x.Event(o),t=r.length;while(t--)n=r[t],e[n]=o[n];return 3===e.target.nodeType&&(e.target=e.target.parentNode),s.filter?s.filter(e,o):e},special:{load:{noBubble:!0},focus:{trigger:function(){return this!==V()&&this.focus?(this.focus(),!1):undefined},delegateType:"focusin"},blur:{trigger:function(){return this===V()&&this.blur?(this.blur(),!1):undefined},delegateType:"focusout"},click:{trigger:function(){return"checkbox"===this.type&&this.click&&x.nodeName(this,"input")?(this.click(),!1):undefined},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==undefined&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)},x.Event=function(e,t){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.getPreventDefault&&e.getPreventDefault()?U:Y):this.type=e,t&&x.extend(this,t),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,undefined):new x.Event(e,t)},x.Event.prototype={isDefaultPrevented:Y,isPropagationStopped:Y,isImmediatePropagationStopped:Y,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=U,e&&e.preventDefault&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=U,e&&e.stopPropagation&&e.stopPropagation()},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=U,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,t,n,r,i){var o,s;if("object"==typeof e){"string"!=typeof t&&(n=n||t,t=undefined);for(s in e)this.on(s,t,n,e[s],i);return this}if(null==n&&null==r?(r=t,n=t=undefined):null==r&&("string"==typeof t?(r=n,n=undefined):(r=n,n=t,t=undefined)),r===!1)r=Y;else if(!r)return this;return 1===i&&(o=r,r=function(e){return x().off(e),o.apply(this,arguments)},r.guid=o.guid||(o.guid=x.guid++)),this.each(function(){x.event.add(this,e,r,n,t)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,x(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return(t===!1||"function"==typeof t)&&(n=t,t=undefined),n===!1&&(n=Y),this.each(function(){x.event.remove(this,e,n,t)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];return n?x.event.trigger(e,t,n,!0):undefined}});var G=/^.[^:#\[\.,]*$/,J=x.expr.match.needsContext,Q={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n,r,i=this.length;if("string"!=typeof e)return t=this,this.pushStack(x(e).filter(function(){for(r=0;i>r;r++)if(x.contains(t[r],this))return!0}));for(n=[],r=0;i>r;r++)x.find(e,this[r],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t=x(e,this),n=t.length;return this.filter(function(){var e=0;for(;n>e;e++)if(x.contains(this,t[e]))return!0})},not:function(e){return this.pushStack(Z(this,e||[],!0))},filter:function(e){return this.pushStack(Z(this,e||[],!1))},is:function(e){return!!e&&("string"==typeof e?J.test(e)?x(e,this.context).index(this[0])>=0:x.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,o=[],s=J.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(s?s.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?g.call(x(e),this[0]):g.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function K(e,t){while((e=e[t])&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return K(e,"nextSibling")},prev:function(e){return K(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return x.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(Q[e]||x.unique(i),"p"===e[0]&&i.reverse()),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,t,n){var r=[],i=n!==undefined;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&x(e).is(n))break;r.push(e)}return r},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function Z(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(G.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return g.call(t,e)>=0!==n})}var et=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,tt=/<([\w:]+)/,nt=/<|&#?\w+;/,rt=/<(?:script|style|link)/i,it=/^(?:checkbox|radio)$/i,ot=/checked\s*(?:[^=]|=\s*.checked.)/i,st=/^$|\/(?:java|ecma)script/i,at=/^true\/(.*)/,ut=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,lt={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};lt.optgroup=lt.option,lt.tbody=lt.tfoot=lt.colgroup=lt.caption=lt.col=lt.thead,lt.th=lt.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===undefined?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=ct(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=ct(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(gt(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&ht(gt(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++)1===e.nodeType&&(x.cleanData(gt(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var t=this[0]||{},n=0,r=this.length;if(e===undefined&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!rt.test(e)&&!lt[(tt.exec(e)||["",""])[1].toLowerCase()]){e=e.replace(et,"<$1></$2>");try{for(;r>n;n++)t=this[n]||{},1===t.nodeType&&(x.cleanData(gt(t,!1)),t.innerHTML=e);t=0}catch(i){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=p.apply([],e);var r,i,o,s,a,u,l=0,c=this.length,f=this,h=c-1,d=e[0],g=x.isFunction(d);if(g||!(1>=c||"string"!=typeof d||x.support.checkClone)&&ot.test(d))return this.each(function(r){var i=f.eq(r);g&&(e[0]=d.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(r=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),i=r.firstChild,1===r.childNodes.length&&(r=i),i)){for(o=x.map(gt(r,"script"),ft),s=o.length;c>l;l++)a=r,l!==h&&(a=x.clone(a,!0,!0),s&&x.merge(o,gt(a,"script"))),t.call(this[l],a,l);if(s)for(u=o[o.length-1].ownerDocument,x.map(o,pt),l=0;s>l;l++)a=o[l],st.test(a.type||"")&&!q.access(a,"globalEval")&&x.contains(u,a)&&(a.src?x._evalUrl(a.src):x.globalEval(a.textContent.replace(ut,"")))}return this}}),x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=[],i=x(e),o=i.length-1,s=0;for(;o>=s;s++)n=s===o?this:this.clone(!0),x(i[s])[t](n),h.apply(r,n.get());return this.pushStack(r)}}),x.extend({clone:function(e,t,n){var r,i,o,s,a=e.cloneNode(!0),u=x.contains(e.ownerDocument,e);if(!(x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(s=gt(a),o=gt(e),r=0,i=o.length;i>r;r++)mt(o[r],s[r]);if(t)if(n)for(o=o||gt(e),s=s||gt(a),r=0,i=o.length;i>r;r++)dt(o[r],s[r]);else dt(e,a);return s=gt(a,"script"),s.length>0&&ht(s,!u&&gt(e,"script")),a},buildFragment:function(e,t,n,r){var i,o,s,a,u,l,c=0,f=e.length,p=t.createDocumentFragment(),h=[];for(;f>c;c++)if(i=e[c],i||0===i)if("object"===x.type(i))x.merge(h,i.nodeType?[i]:i);else if(nt.test(i)){o=o||p.appendChild(t.createElement("div")),s=(tt.exec(i)||["",""])[1].toLowerCase(),a=lt[s]||lt._default,o.innerHTML=a[1]+i.replace(et,"<$1></$2>")+a[2],l=a[0];while(l--)o=o.firstChild;x.merge(h,o.childNodes),o=p.firstChild,o.textContent=""}else h.push(t.createTextNode(i));p.textContent="",c=0;while(i=h[c++])if((!r||-1===x.inArray(i,r))&&(u=x.contains(i.ownerDocument,i),o=gt(p.appendChild(i),"script"),u&&ht(o),n)){l=0;while(i=o[l++])st.test(i.type||"")&&n.push(i)}return p},cleanData:function(e){var t,n,r,i=e.length,o=0,s=x.event.special;for(;i>o;o++){if(n=e[o],x.acceptData(n)&&(t=q.access(n)))for(r in t.events)s[r]?x.event.remove(n,r):x.removeEvent(n,r,t.handle);L.discard(n),q.discard(n)}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"text",async:!1,global:!1,success:x.globalEval})}});function ct(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function ft(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function pt(e){var t=at.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function ht(e,t){var n=e.length,r=0;for(;n>r;r++)q.set(e[r],"globalEval",!t||q.get(t[r],"globalEval"))}function dt(e,t){var n,r,i,o,s,a,u,l;if(1===t.nodeType){if(q.hasData(e)&&(o=q.access(e),s=x.extend({},o),l=o.events,q.set(t,s),l)){delete s.handle,s.events={};for(i in l)for(n=0,r=l[i].length;r>n;n++)x.event.add(t,i,l[i][n])}L.hasData(e)&&(a=L.access(e),u=x.extend({},a),L.set(t,u))}}function gt(e,t){var n=e.getElementsByTagName?e.getElementsByTagName(t||"*"):e.querySelectorAll?e.querySelectorAll(t||"*"):[];return t===undefined||t&&x.nodeName(e,t)?x.merge([e],n):n}function mt(e,t){var n=t.nodeName.toLowerCase();"input"===n&&it.test(e.type)?t.checked=e.checked:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}x.fn.extend({wrapAll:function(e){var t;return x.isFunction(e)?this.each(function(t){x(this).wrapAll(e.call(this,t))}):(this[0]&&(t=x(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this)},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var yt,vt,xt=/^(none|table(?!-c[ea]).+)/,bt=/^margin/,wt=RegExp("^("+b+")(.*)$","i"),Tt=RegExp("^("+b+")(?!px)[a-z%]+$","i"),Ct=RegExp("^([+-])=("+b+")","i"),kt={BODY:"block"},Nt={position:"absolute",visibility:"hidden",display:"block"},Et={letterSpacing:0,fontWeight:400},St=["Top","Right","Bottom","Left"],jt=["Webkit","O","Moz","ms"];function Dt(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=jt.length;while(i--)if(t=jt[i]+n,t in e)return t;return r}function At(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function Lt(t){return e.getComputedStyle(t,null)}function qt(e,t){var n,r,i,o=[],s=0,a=e.length;for(;a>s;s++)r=e[s],r.style&&(o[s]=q.get(r,"olddisplay"),n=r.style.display,t?(o[s]||"none"!==n||(r.style.display=""),""===r.style.display&&At(r)&&(o[s]=q.access(r,"olddisplay",Pt(r.nodeName)))):o[s]||(i=At(r),(n&&"none"!==n||!i)&&q.set(r,"olddisplay",i?n:x.css(r,"display"))));for(s=0;a>s;s++)r=e[s],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[s]||"":"none"));return e}x.fn.extend({css:function(e,t){return x.access(this,function(e,t,n){var r,i,o={},s=0;if(x.isArray(t)){for(r=Lt(e),i=t.length;i>s;s++)o[t[s]]=x.css(e,t[s],!1,r);return o}return n!==undefined?x.style(e,t,n):x.css(e,t)},e,t,arguments.length>1)},show:function(){return qt(this,!0)},hide:function(){return qt(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:At(this))?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=yt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,s,a=x.camelCase(t),u=e.style;return t=x.cssProps[a]||(x.cssProps[a]=Dt(u,a)),s=x.cssHooks[t]||x.cssHooks[a],n===undefined?s&&"get"in s&&(i=s.get(e,!1,r))!==undefined?i:u[t]:(o=typeof n,"string"===o&&(i=Ct.exec(n))&&(n=(i[1]+1)*i[2]+parseFloat(x.css(e,t)),o="number"),null==n||"number"===o&&isNaN(n)||("number"!==o||x.cssNumber[a]||(n+="px"),x.support.clearCloneStyle||""!==n||0!==t.indexOf("background")||(u[t]="inherit"),s&&"set"in s&&(n=s.set(e,n,r))===undefined||(u[t]=n)),undefined)}},css:function(e,t,n,r){var i,o,s,a=x.camelCase(t);return t=x.cssProps[a]||(x.cssProps[a]=Dt(e.style,a)),s=x.cssHooks[t]||x.cssHooks[a],s&&"get"in s&&(i=s.get(e,!0,n)),i===undefined&&(i=yt(e,t,r)),"normal"===i&&t in Et&&(i=Et[t]),""===n||n?(o=parseFloat(i),n===!0||x.isNumeric(o)?o||0:i):i}}),yt=function(e,t,n){var r,i,o,s=n||Lt(e),a=s?s.getPropertyValue(t)||s[t]:undefined,u=e.style;return s&&(""!==a||x.contains(e.ownerDocument,e)||(a=x.style(e,t)),Tt.test(a)&&bt.test(t)&&(r=u.width,i=u.minWidth,o=u.maxWidth,u.minWidth=u.maxWidth=u.width=a,a=s.width,u.width=r,u.minWidth=i,u.maxWidth=o)),a};function Ht(e,t,n){var r=wt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function Ot(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,s=0;for(;4>o;o+=2)"margin"===n&&(s+=x.css(e,n+St[o],!0,i)),r?("content"===n&&(s-=x.css(e,"padding"+St[o],!0,i)),"margin"!==n&&(s-=x.css(e,"border"+St[o]+"Width",!0,i))):(s+=x.css(e,"padding"+St[o],!0,i),"padding"!==n&&(s+=x.css(e,"border"+St[o]+"Width",!0,i)));return s}function Ft(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Lt(e),s=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=yt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Tt.test(i))return i;r=s&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+Ot(e,t,n||(s?"border":"content"),r,o)+"px"}function Pt(e){var t=o,n=kt[e];return n||(n=Rt(e,t),"none"!==n&&n||(vt=(vt||x("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(vt[0].contentWindow||vt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=Rt(e,t),vt.detach()),kt[e]=n),n}function Rt(e,t){var n=x(t.createElement(e)).appendTo(t.body),r=x.css(n[0],"display");return n.remove(),r}x.each(["height","width"],function(e,t){x.cssHooks[t]={get:function(e,n,r){return n?0===e.offsetWidth&&xt.test(x.css(e,"display"))?x.swap(e,Nt,function(){return Ft(e,t,r)}):Ft(e,t,r):undefined},set:function(e,n,r){var i=r&&Lt(e);return Ht(e,n,r?Ot(e,t,r,x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,i),i):0)}}}),x(function(){x.support.reliableMarginRight||(x.cssHooks.marginRight={get:function(e,t){return t?x.swap(e,{display:"inline-block"},yt,[e,"marginRight"]):undefined}}),!x.support.pixelPosition&&x.fn.position&&x.each(["top","left"],function(e,t){x.cssHooks[t]={get:function(e,n){return n?(n=yt(e,t),Tt.test(n)?x(e).position()[t]+"px":n):undefined}}})}),x.expr&&x.expr.filters&&(x.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight},x.expr.filters.visible=function(e){return!x.expr.filters.hidden(e)}),x.each({margin:"",padding:"",border:"Width"},function(e,t){x.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+St[r]+t]=o[r]||o[r-2]||o[0];return i}},bt.test(e)||(x.cssHooks[e+t].set=Ht)});var Mt=/%20/g,Wt=/\[\]$/,$t=/\r?\n/g,Bt=/^(?:submit|button|image|reset|file)$/i,It=/^(?:input|select|textarea|keygen)/i;x.fn.extend({serialize:function(){return x.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=x.prop(this,"elements");return e?x.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!x(this).is(":disabled")&&It.test(this.nodeName)&&!Bt.test(e)&&(this.checked||!it.test(e))}).map(function(e,t){var n=x(this).val();return null==n?null:x.isArray(n)?x.map(n,function(e){return{name:t.name,value:e.replace($t,"\r\n")}}):{name:t.name,value:n.replace($t,"\r\n")}}).get()}}),x.param=function(e,t){var n,r=[],i=function(e,t){t=x.isFunction(t)?t():null==t?"":t,r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(t===undefined&&(t=x.ajaxSettings&&x.ajaxSettings.traditional),x.isArray(e)||e.jquery&&!x.isPlainObject(e))x.each(e,function(){i(this.name,this.value)});else for(n in e)zt(n,e[n],t,i);return r.join("&").replace(Mt,"+")};function zt(e,t,n,r){var i;if(x.isArray(t))x.each(t,function(t,i){n||Wt.test(e)?r(e,i):zt(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==x.type(t))r(e,t);else for(i in t)zt(e+"["+i+"]",t[i],n,r)}x.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){x.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),x.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var _t,Xt,Ut=x.now(),Yt=/\?/,Vt=/#.*$/,Gt=/([?&])_=[^&]*/,Jt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Qt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Kt=/^(?:GET|HEAD)$/,Zt=/^\/\//,en=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,tn=x.fn.load,nn={},rn={},on="*/".concat("*");try{Xt=i.href}catch(sn){Xt=o.createElement("a"),Xt.href="",Xt=Xt.href}_t=en.exec(Xt.toLowerCase())||[];function an(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(w)||[];
-if(x.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function un(e,t,n,r){var i={},o=e===rn;function s(a){var u;return i[a]=!0,x.each(e[a]||[],function(e,a){var l=a(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):undefined:(t.dataTypes.unshift(l),s(l),!1)}),u}return s(t.dataTypes[0])||!i["*"]&&s("*")}function ln(e,t){var n,r,i=x.ajaxSettings.flatOptions||{};for(n in t)t[n]!==undefined&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&x.extend(!0,e,r),e}x.fn.load=function(e,t,n){if("string"!=typeof e&&tn)return tn.apply(this,arguments);var r,i,o,s=this,a=e.indexOf(" ");return a>=0&&(r=e.slice(a),e=e.slice(0,a)),x.isFunction(t)?(n=t,t=undefined):t&&"object"==typeof t&&(i="POST"),s.length>0&&x.ajax({url:e,type:i,dataType:"html",data:t}).done(function(e){o=arguments,s.html(r?x("<div>").append(x.parseHTML(e)).find(r):e)}).complete(n&&function(e,t){s.each(n,o||[e.responseText,t,e])}),this},x.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){x.fn[t]=function(e){return this.on(t,e)}}),x.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Xt,type:"GET",isLocal:Qt.test(_t[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":on,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":x.parseJSON,"text xml":x.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?ln(ln(e,x.ajaxSettings),t):ln(x.ajaxSettings,e)},ajaxPrefilter:an(nn),ajaxTransport:an(rn),ajax:function(e,t){"object"==typeof e&&(t=e,e=undefined),t=t||{};var n,r,i,o,s,a,u,l,c=x.ajaxSetup({},t),f=c.context||c,p=c.context&&(f.nodeType||f.jquery)?x(f):x.event,h=x.Deferred(),d=x.Callbacks("once memory"),g=c.statusCode||{},m={},y={},v=0,b="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(2===v){if(!o){o={};while(t=Jt.exec(i))o[t[1].toLowerCase()]=t[2]}t=o[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===v?i:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return v||(e=y[n]=y[n]||e,m[e]=t),this},overrideMimeType:function(e){return v||(c.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>v)for(t in e)g[t]=[g[t],e[t]];else T.always(e[T.status]);return this},abort:function(e){var t=e||b;return n&&n.abort(t),k(0,t),this}};if(h.promise(T).complete=d.add,T.success=T.done,T.error=T.fail,c.url=((e||c.url||Xt)+"").replace(Vt,"").replace(Zt,_t[1]+"//"),c.type=t.method||t.type||c.method||c.type,c.dataTypes=x.trim(c.dataType||"*").toLowerCase().match(w)||[""],null==c.crossDomain&&(a=en.exec(c.url.toLowerCase()),c.crossDomain=!(!a||a[1]===_t[1]&&a[2]===_t[2]&&(a[3]||("http:"===a[1]?"80":"443"))===(_t[3]||("http:"===_t[1]?"80":"443")))),c.data&&c.processData&&"string"!=typeof c.data&&(c.data=x.param(c.data,c.traditional)),un(nn,c,t,T),2===v)return T;u=c.global,u&&0===x.active++&&x.event.trigger("ajaxStart"),c.type=c.type.toUpperCase(),c.hasContent=!Kt.test(c.type),r=c.url,c.hasContent||(c.data&&(r=c.url+=(Yt.test(r)?"&":"?")+c.data,delete c.data),c.cache===!1&&(c.url=Gt.test(r)?r.replace(Gt,"$1_="+Ut++):r+(Yt.test(r)?"&":"?")+"_="+Ut++)),c.ifModified&&(x.lastModified[r]&&T.setRequestHeader("If-Modified-Since",x.lastModified[r]),x.etag[r]&&T.setRequestHeader("If-None-Match",x.etag[r])),(c.data&&c.hasContent&&c.contentType!==!1||t.contentType)&&T.setRequestHeader("Content-Type",c.contentType),T.setRequestHeader("Accept",c.dataTypes[0]&&c.accepts[c.dataTypes[0]]?c.accepts[c.dataTypes[0]]+("*"!==c.dataTypes[0]?", "+on+"; q=0.01":""):c.accepts["*"]);for(l in c.headers)T.setRequestHeader(l,c.headers[l]);if(c.beforeSend&&(c.beforeSend.call(f,T,c)===!1||2===v))return T.abort();b="abort";for(l in{success:1,error:1,complete:1})T[l](c[l]);if(n=un(rn,c,t,T)){T.readyState=1,u&&p.trigger("ajaxSend",[T,c]),c.async&&c.timeout>0&&(s=setTimeout(function(){T.abort("timeout")},c.timeout));try{v=1,n.send(m,k)}catch(C){if(!(2>v))throw C;k(-1,C)}}else k(-1,"No Transport");function k(e,t,o,a){var l,m,y,b,w,C=t;2!==v&&(v=2,s&&clearTimeout(s),n=undefined,i=a||"",T.readyState=e>0?4:0,l=e>=200&&300>e||304===e,o&&(b=cn(c,T,o)),b=fn(c,b,T,l),l?(c.ifModified&&(w=T.getResponseHeader("Last-Modified"),w&&(x.lastModified[r]=w),w=T.getResponseHeader("etag"),w&&(x.etag[r]=w)),204===e?C="nocontent":304===e?C="notmodified":(C=b.state,m=b.data,y=b.error,l=!y)):(y=C,(e||!C)&&(C="error",0>e&&(e=0))),T.status=e,T.statusText=(t||C)+"",l?h.resolveWith(f,[m,C,T]):h.rejectWith(f,[T,C,y]),T.statusCode(g),g=undefined,u&&p.trigger(l?"ajaxSuccess":"ajaxError",[T,c,l?m:y]),d.fireWith(f,[T,C]),u&&(p.trigger("ajaxComplete",[T,c]),--x.active||x.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return x.get(e,t,n,"json")},getScript:function(e,t){return x.get(e,undefined,t,"script")}}),x.each(["get","post"],function(e,t){x[t]=function(e,n,r,i){return x.isFunction(n)&&(i=i||r,r=n,n=undefined),x.ajax({url:e,type:t,dataType:i,data:n,success:r})}});function cn(e,t,n){var r,i,o,s,a=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),r===undefined&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in a)if(a[i]&&a[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}s||(s=i)}o=o||s}return o?(o!==u[0]&&u.unshift(o),n[o]):undefined}function fn(e,t,n,r){var i,o,s,a,u,l={},c=e.dataTypes.slice();if(c[1])for(s in e.converters)l[s.toLowerCase()]=e.converters[s];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(s=l[u+" "+o]||l["* "+o],!s)for(i in l)if(a=i.split(" "),a[1]===o&&(s=l[u+" "+a[0]]||l["* "+a[0]])){s===!0?s=l[i]:l[i]!==!0&&(o=a[0],c.unshift(a[1]));break}if(s!==!0)if(s&&e["throws"])t=s(t);else try{t=s(t)}catch(f){return{state:"parsererror",error:s?f:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}x.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return x.globalEval(e),e}}}),x.ajaxPrefilter("script",function(e){e.cache===undefined&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),x.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(r,i){t=x("<script>").prop({async:!0,charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&i("error"===e.type?404:200,e.type)}),o.head.appendChild(t[0])},abort:function(){n&&n()}}}});var pn=[],hn=/(=)\?(?=&|$)|\?\?/;x.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=pn.pop()||x.expando+"_"+Ut++;return this[e]=!0,e}}),x.ajaxPrefilter("json jsonp",function(t,n,r){var i,o,s,a=t.jsonp!==!1&&(hn.test(t.url)?"url":"string"==typeof t.data&&!(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&hn.test(t.data)&&"data");return a||"jsonp"===t.dataTypes[0]?(i=t.jsonpCallback=x.isFunction(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,a?t[a]=t[a].replace(hn,"$1"+i):t.jsonp!==!1&&(t.url+=(Yt.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return s||x.error(i+" was not called"),s[0]},t.dataTypes[0]="json",o=e[i],e[i]=function(){s=arguments},r.always(function(){e[i]=o,t[i]&&(t.jsonpCallback=n.jsonpCallback,pn.push(i)),s&&x.isFunction(o)&&o(s[0]),s=o=undefined}),"script"):undefined}),x.ajaxSettings.xhr=function(){try{return new XMLHttpRequest}catch(e){}};var dn=x.ajaxSettings.xhr(),gn={0:200,1223:204},mn=0,yn={};e.ActiveXObject&&x(e).on("unload",function(){for(var e in yn)yn[e]();yn=undefined}),x.support.cors=!!dn&&"withCredentials"in dn,x.support.ajax=dn=!!dn,x.ajaxTransport(function(e){var t;return x.support.cors||dn&&!e.crossDomain?{send:function(n,r){var i,o,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(i in e.xhrFields)s[i]=e.xhrFields[i];e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||n["X-Requested-With"]||(n["X-Requested-With"]="XMLHttpRequest");for(i in n)s.setRequestHeader(i,n[i]);t=function(e){return function(){t&&(delete yn[o],t=s.onload=s.onerror=null,"abort"===e?s.abort():"error"===e?r(s.status||404,s.statusText):r(gn[s.status]||s.status,s.statusText,"string"==typeof s.responseText?{text:s.responseText}:undefined,s.getAllResponseHeaders()))}},s.onload=t(),s.onerror=t("error"),t=yn[o=mn++]=t("abort"),s.send(e.hasContent&&e.data||null)},abort:function(){t&&t()}}:undefined});var vn,xn,bn=/^(?:toggle|show|hide)$/,wn=RegExp("^(?:([+-])=|)("+b+")([a-z%]*)$","i"),Tn=/queueHooks$/,Cn=[Dn],kn={"*":[function(e,t){var n,r,i=this.createTween(e,t),o=wn.exec(t),s=i.cur(),a=+s||0,u=1,l=20;if(o){if(n=+o[2],r=o[3]||(x.cssNumber[e]?"":"px"),"px"!==r&&a){a=x.css(i.elem,e,!0)||n||1;do u=u||".5",a/=u,x.style(i.elem,e,a+r);while(u!==(u=i.cur()/s)&&1!==u&&--l)}i.unit=r,i.start=a,i.end=o[1]?a+(o[1]+1)*n:n}return i}]};function Nn(){return setTimeout(function(){vn=undefined}),vn=x.now()}function En(e,t){x.each(t,function(t,n){var r=(kn[t]||[]).concat(kn["*"]),i=0,o=r.length;for(;o>i;i++)if(r[i].call(e,t,n))return})}function Sn(e,t,n){var r,i,o=0,s=Cn.length,a=x.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;var t=vn||Nn(),n=Math.max(0,l.startTime+l.duration-t),r=n/l.duration||0,o=1-r,s=0,u=l.tweens.length;for(;u>s;s++)l.tweens[s].run(o);return a.notifyWith(e,[l,o,n]),1>o&&u?n:(a.resolveWith(e,[l]),!1)},l=a.promise({elem:e,props:x.extend({},t),opts:x.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:vn||Nn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=x.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)l.tweens[n].run(1);return t?a.resolveWith(e,[l,t]):a.rejectWith(e,[l,t]),this}}),c=l.props;for(jn(c,l.opts.specialEasing);s>o;o++)if(r=Cn[o].call(l,e,c,l.opts))return r;return En(l,c),x.isFunction(l.opts.start)&&l.opts.start.call(e,l),x.fx.timer(x.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always)}function jn(e,t){var n,r,i,o,s;for(n in e)if(r=x.camelCase(n),i=t[r],o=e[n],x.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),s=x.cssHooks[r],s&&"expand"in s){o=s.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}x.Animation=x.extend(Sn,{tweener:function(e,t){x.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],kn[n]=kn[n]||[],kn[n].unshift(t)},prefilter:function(e,t){t?Cn.unshift(e):Cn.push(e)}});function Dn(e,t,n){var r,i,o,s,a,u,l,c,f,p=this,h=e.style,d={},g=[],m=e.nodeType&&At(e);n.queue||(c=x._queueHooks(e,"fx"),null==c.unqueued&&(c.unqueued=0,f=c.empty.fire,c.empty.fire=function(){c.unqueued||f()}),c.unqueued++,p.always(function(){p.always(function(){c.unqueued--,x.queue(e,"fx").length||c.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],"inline"===x.css(e,"display")&&"none"===x.css(e,"float")&&(h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),a=q.get(e,"fxshow");for(r in t)if(o=t[r],bn.exec(o)){if(delete t[r],u=u||"toggle"===o,o===(m?"hide":"show")){if("show"!==o||a===undefined||a[r]===undefined)continue;m=!0}g.push(r)}if(s=g.length){a=q.get(e,"fxshow")||q.access(e,"fxshow",{}),"hidden"in a&&(m=a.hidden),u&&(a.hidden=!m),m?x(e).show():p.done(function(){x(e).hide()}),p.done(function(){var t;q.remove(e,"fxshow");for(t in d)x.style(e,t,d[t])});for(r=0;s>r;r++)i=g[r],l=p.createTween(i,m?a[i]:0),d[i]=a[i]||x.style(e,i),i in a||(a[i]=l.start,m&&(l.end=l.start,l.start="width"===i||"height"===i?1:0))}}function An(e,t,n,r,i){return new An.prototype.init(e,t,n,r,i)}x.Tween=An,An.prototype={constructor:An,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(x.cssNumber[n]?"":"px")},cur:function(){var e=An.propHooks[this.prop];return e&&e.get?e.get(this):An.propHooks._default.get(this)},run:function(e){var t,n=An.propHooks[this.prop];return this.pos=t=this.options.duration?x.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):An.propHooks._default.set(this),this}},An.prototype.init.prototype=An.prototype,An.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=x.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){x.fx.step[e.prop]?x.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[x.cssProps[e.prop]]||x.cssHooks[e.prop])?x.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},An.propHooks.scrollTop=An.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},x.each(["toggle","show","hide"],function(e,t){var n=x.fn[t];x.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(Ln(t,!0),e,r,i)}}),x.fn.extend({fadeTo:function(e,t,n,r){return this.filter(At).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=x.isEmptyObject(e),o=x.speed(t,n,r),s=function(){var t=Sn(this,x.extend({},e),o);s.finish=function(){t.stop(!0)},(i||q.get(this,"finish"))&&t.stop(!0)};return s.finish=s,i||o.queue===!1?this.each(s):this.queue(o.queue,s)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=undefined),t&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,i=null!=e&&e+"queueHooks",o=x.timers,s=q.get(this);if(i)s[i]&&s[i].stop&&r(s[i]);else for(i in s)s[i]&&s[i].stop&&Tn.test(i)&&r(s[i]);for(i=o.length;i--;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));(t||!n)&&x.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=q.get(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=x.timers,s=r?r.length:0;for(n.finish=!0,x.queue(this,e,[]),i&&i.cur&&i.cur.finish&&i.cur.finish.call(this),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;s>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function Ln(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=St[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}x.each({slideDown:Ln("show"),slideUp:Ln("hide"),slideToggle:Ln("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){x.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),x.speed=function(e,t,n){var r=e&&"object"==typeof e?x.extend({},e):{complete:n||!n&&t||x.isFunction(e)&&e,duration:e,easing:n&&t||t&&!x.isFunction(t)&&t};return r.duration=x.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in x.fx.speeds?x.fx.speeds[r.duration]:x.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){x.isFunction(r.old)&&r.old.call(this),r.queue&&x.dequeue(this,r.queue)},r},x.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},x.timers=[],x.fx=An.prototype.init,x.fx.tick=function(){var e,t=x.timers,n=0;for(vn=x.now();t.length>n;n++)e=t[n],e()||t[n]!==e||t.splice(n--,1);t.length||x.fx.stop(),vn=undefined},x.fx.timer=function(e){e()&&x.timers.push(e)&&x.fx.start()},x.fx.interval=13,x.fx.start=function(){xn||(xn=setInterval(x.fx.tick,x.fx.interval))},x.fx.stop=function(){clearInterval(xn),xn=null},x.fx.speeds={slow:600,fast:200,_default:400},x.fx.step={},x.expr&&x.expr.filters&&(x.expr.filters.animated=function(e){return x.grep(x.timers,function(t){return e===t.elem}).length}),x.fn.offset=function(e){if(arguments.length)return e===undefined?this:this.each(function(t){x.offset.setOffset(this,e,t)});var t,n,i=this[0],o={top:0,left:0},s=i&&i.ownerDocument;if(s)return t=s.documentElement,x.contains(t,i)?(typeof i.getBoundingClientRect!==r&&(o=i.getBoundingClientRect()),n=qn(s),{top:o.top+n.pageYOffset-t.clientTop,left:o.left+n.pageXOffset-t.clientLeft}):o},x.offset={setOffset:function(e,t,n){var r,i,o,s,a,u,l,c=x.css(e,"position"),f=x(e),p={};"static"===c&&(e.style.position="relative"),a=f.offset(),o=x.css(e,"top"),u=x.css(e,"left"),l=("absolute"===c||"fixed"===c)&&(o+u).indexOf("auto")>-1,l?(r=f.position(),s=r.top,i=r.left):(s=parseFloat(o)||0,i=parseFloat(u)||0),x.isFunction(t)&&(t=t.call(e,n,a)),null!=t.top&&(p.top=t.top-a.top+s),null!=t.left&&(p.left=t.left-a.left+i),"using"in t?t.using.call(e,p):f.css(p)}},x.fn.extend({position:function(){if(this[0]){var e,t,n=this[0],r={top:0,left:0};return"fixed"===x.css(n,"position")?t=n.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),x.nodeName(e[0],"html")||(r=e.offset()),r.top+=x.css(e[0],"borderTopWidth",!0),r.left+=x.css(e[0],"borderLeftWidth",!0)),{top:t.top-r.top-x.css(n,"marginTop",!0),left:t.left-r.left-x.css(n,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||s;while(e&&!x.nodeName(e,"html")&&"static"===x.css(e,"position"))e=e.offsetParent;return e||s})}}),x.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,n){var r="pageYOffset"===n;x.fn[t]=function(i){return x.access(this,function(t,i,o){var s=qn(t);return o===undefined?s?s[n]:t[i]:(s?s.scrollTo(r?e.pageXOffset:o,r?o:e.pageYOffset):t[i]=o,undefined)},t,i,arguments.length,null)}});function qn(e){return x.isWindow(e)?e:9===e.nodeType&&e.defaultView}x.each({Height:"height",Width:"width"},function(e,t){x.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,r){x.fn[r]=function(r,i){var o=arguments.length&&(n||"boolean"!=typeof r),s=n||(r===!0||i===!0?"margin":"border");return x.access(this,function(t,n,r){var i;return x.isWindow(t)?t.document.documentElement["client"+e]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+e],i["scroll"+e],t.body["offset"+e],i["offset"+e],i["client"+e])):r===undefined?x.css(t,n,s):x.style(t,n,r,s)},t,o?r:undefined,o,null)}})}),x.fn.size=function(){return this.length},x.fn.andSelf=x.fn.addBack,"object"==typeof module&&"object"==typeof module.exports?module.exports=x:"function"==typeof define&&define.amd&&define("jquery",[],function(){return x}),"object"==typeof e&&"object"==typeof e.document&&(e.jQuery=e.$=x)})(window);
\ No newline at end of file
diff --git a/eclipse.org-common/system/app.class.php b/eclipse.org-common/system/app.class.php
index ab6124b..35243b4 100644
--- a/eclipse.org-common/system/app.class.php
+++ b/eclipse.org-common/system/app.class.php
@@ -142,11 +142,9 @@
    * @var array
    */
   private $valid_themes = array(
-    "Nova",
-    "solstice",
     "polarsys",
     "locationtech",
-    "Nova"
+    "solstice"
   );
 
   /**
@@ -161,14 +159,14 @@
    *
    * @var string
    */
-  private $OGDescription = "Eclipse is probably best known as a Java IDE, but it is more: it is an IDE framework, a tools framework, an open source project, a community, an eco-system, and a foundation.";
+  private $OGDescription = "The Eclipse Foundation - home to a global community, the Eclipse IDE, Jakarta EE and over 350 open source projects, including runtimes, tools and frameworks.";
 
   /**
    * Open Graph Protocol image
    *
    * @var string
    */
-  private $OGImage = "https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-200x200.png";
+  private $OGImage = "https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-200x200.png";
 
   /**
    * Open Graph Protocol image width
@@ -191,26 +189,6 @@
    */
   private $doctype = '';
 
-  /**
-   * Google analytics id code
-   *
-   * @var string
-   */
-  private $projectGoogleAnalyticsCode = "";
-
-  /**
-   * Jquery Version
-   *
-   * @var string
-   */
-  private $jQueryVersion = FALSE;
-
-  /**
-   * Twitter script flag
-   *
-   * @var bool
-   */
-  private $twitterScriptInserted = FALSE;
 
   /**
    * Variables to customize solstice
@@ -283,7 +261,7 @@
   private $Messages = NULL;
 
   // Default constructor
-  function App() {
+  function __construct() {
 
     $this->databases = array();
 
@@ -584,12 +562,11 @@
         'www.eclipse.org',
         'eclipse.org',
         'staging.eclipse.org',
-        'eclipse.local',
-        'www.eclipse.local'
       );
+
       $http_protocol = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') ? 'https://' : 'http://';
       // Force http://www.eclipse.org if the serve_name is not whitelisted.
-      if (in_array($_SERVER['SERVER_NAME'], $valid_domains)) {
+      if (in_array($_SERVER['SERVER_NAME'], $valid_domains) || strpos($_SERVER['SERVER_NAME'], '.dev.docker')) {
         $this->WWW_PREFIX = $http_protocol;
         $this->WWW_PREFIX .= isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : getenv('HTTP_HOST');
       }
@@ -766,7 +743,6 @@
    * Sets the headers to prevent caching for the different browsers.
    */
   function preventCaching() {
-    session_start();
     header("Cache-Control: no-store, no-cache, private, must-revalidate, max-age=0, max-stale=0");
     header("Cache-Control: post-check=0, pre-check=0", FALSE);
     header("Pragma: no-cache");
@@ -975,9 +951,6 @@
    * @param unknown $Breadcrumb
    */
   function generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html, $Breadcrumb = NULL) {
-    if ($theme === "Nova") {
-      return $this->_generateNovaPage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html, $Breadcrumb = NULL);
-    }
     $Theme = $this->getThemeClass($theme);
     $Theme->setNav($Nav);
     $Theme->setMenu($Menu);
@@ -989,69 +962,6 @@
     $Theme->generatePage();
   }
 
-  private function _generateNovaPage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html, $Breadcrumb = NULL) {
-    // Strip html tags from the page title.
-    $pageTitle = strip_tags($pageTitle);
-
-    // Breadcrumbs for the new solstice theme.
-    if ($Breadcrumb == NULL || !is_object($Breadcrumb)) {
-      require_once ('breadcrumbs.class.php');
-      $Breadcrumb = new Breadcrumb();
-    }
-
-    if ($pageTitle == "") {
-      $pageTitle = "eclipse.org page";
-    }
-
-    // page-specific RSS feed
-    if ($this->PageRSS != "") {
-      if ($this->PageRSSTitle != "") {
-        $this->PageRSSTitle = "Eclipse RSS Feed";
-      }
-      $this->ExtraHtmlHeaders .= '<link rel="alternate" title="' . $this->PageRSSTitle . '" href="' . $this->PageRSS . '" type="application/rss+xml"/>';
-    }
-
-    $extraHtmlHeaders = $this->ExtraHtmlHeaders;
-
-    include ($this->getHeaderPath($theme));
-
-    if ($Menu != NULL)
-      include ($this->getMenuPath($theme));
-
-    if ($Nav != NULL)
-      include ($this->getNavPath($theme));
-
-    echo $html;
-
-    $gaCode = $this->getGoogleAnalyticsTrackingCode();
-    if (!is_null($gaCode)) {
-      $gaCode = ($gaCode == "") ? 'UA-910670-2' : $gaCode;
-      // first lets insert the sitewide Analytics
-      $googleJavaScript = <<<EOHTML
-      <script type="text/javascript">
-
-        var _gaq = _gaq || [];
-        _gaq.push(['_setAccount', '$gaCode']);
-        _gaq.push(['_trackPageview']);
-
-        (function() {
-          var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
-          ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
-          var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
-        })();
-
-      </script>
-EOHTML;
-
-    }
-
-    if ($theme === "Nova" && isset($googleJavaScript)) {
-      echo $googleJavaScript;
-    }
-
-    include ($this->getFooterPath($theme));
-  }
-
   /**
    * Add addionnal elements in <head>
    *
@@ -1077,6 +987,7 @@
    * @return string
    */
   function getThemeURL($_theme) {
+    $_theme = strtolower($_theme);
     if (!$this->isValidTheme($_theme)) {
       $_theme = "solstice";
     }
@@ -1090,15 +1001,24 @@
    *
    * @return BaseTheme
    */
-  function getThemeClass($_theme = "solstice") {
+  function getThemeClass($_theme = "quicksilver") {
     $themes = array(
       'locationtech',
-      'solstice',
-      'polarsys'
+      'eclipse_ide',
+      'polarsys',
+      'quicksilver',
+      'jakarta',
+      'nova'
     );
 
+    $_theme = strtolower($_theme);
+
+    if ($_theme === 'solstice' || $_theme === 'nova') {
+      $_theme = 'eclipse_ide';
+    }
+
     if (!in_array($_theme, $themes)) {
-      $_theme = "solstice";
+      $_theme = "quicksilver";
     }
 
     require_once (realpath(dirname(__FILE__) . '/../classes/themes/' . $_theme . '.class.php'));
@@ -1786,21 +1706,10 @@
    * @param string $version
    *
    * @return boolean
+   * @deprecated
    */
   function setjQueryVersion($version = FALSE) {
-    // Only set jQueryVersion if we have a copy on eclipse.org
-    $supported = array(
-      '1.4.4',
-      '1.5.1',
-      '1.5.2',
-      '1.7.2',
-      '1.9.1',
-      '2.0.0'
-    );
-    if (in_array($version, $supported)) {
-      $this->jQueryVersion = $version;
-      return TRUE;
-    }
+    trigger_error("Deprecated function called.", E_USER_NOTICE);
     return FALSE;
   }
 
@@ -1808,19 +1717,10 @@
    * Return markup needed to load jQuery
    *
    * @return string|boolean
+   * @deprecated
    */
   function getjQuery() {
-    if ($this->jQueryVersion) {
-      $strn = <<<EOHTML
-  <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/$this->jQueryVersion/jquery.min.js"></script>
-  <script type="text/javascript">
-  /* <![CDATA[ */
-  window.jQuery || document.write('<script src="/eclipse.org-common/lib/jquery/jquery-$this->jQueryVersion.min.js"><\/script>')
-  /* ]]> */
-  </script>
-EOHTML;
-      return $strn;
-    }
+    trigger_error("Deprecated function called.", E_USER_NOTICE);
     return FALSE;
   }
 
@@ -1828,17 +1728,12 @@
    * Return The Eclipse Foundation Twitter and Facebook badge
    *
    * @return string
+   *
+   * @deprecated
    */
   function getSocialBadge() {
-    $protocol = $this->getHTTPPrefix();
-    $strn = <<<EOHTML
-    <script type="text/javascript">
-    /* <![CDATA[ */
-    document.write('<div id=\"badge_facebook\"><iframe src=\"$protocol:\/\/www.facebook.com\/plugins\/like.php?href=http:\/\/www.facebook.com\/pages\/Eclipse\/259655700571&amp;layout=button_count&amp;show_faces=false&amp;width=90&amp;action=like\" frameborder=\"0\" scrolling=\"no\"><\/iframe><\/div><div id=\"badge_twitter\"><a href=\"https:\/\/twitter.com\/EclipseFdn\" class=\"twitter-follow-button\" data-show-count=\"false\">Follow @EclipseFdn<\/a><script type=\"text\/javascript\">!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=\"\/\/platform.twitter.com\/widgets.js\";fjs.parentNode.insertBefore(js,fjs);}}(document,\"script\",\"twitter-wjs\");<\/script><\/div>');
-    /* ]]> */
-    </script>
-EOHTML;
-    return $strn;
+    trigger_error("Deprecated function called.", E_USER_NOTICE);
+    return '';
   }
 
   /**
@@ -1847,13 +1742,7 @@
    * @param unknown $_twitterhandle
    */
   function getTwitterFollowWidget($_twitterhandle) {
-    $output = '';
-    $output = '<a href="https://twitter.com/' . $_twitterhandle . '" class="twitter-follow-button" data-show-count="false">Follow @' . $_twitterhandle . '</a>';
-    // Only include the script once per page
-    if ($this->twitterScriptInserted == FALSE) {
-      $this->twitterScriptInserted = TRUE;
-      $output .= "<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>";
-    }
+    $output = '<a href="https://twitter.com/' . $_twitterhandle . '" class="twitter-follow-button btn btn-info btn-sm"><i class="fa fa-twitter"></i> Follow @' . $_twitterhandle . '</a>';
     return $output;
 
   }
@@ -1876,23 +1765,22 @@
    * from the page.
    *
    * @param string/NULL $gaUniqueID
+   *
+   * @deprecated
    */
   function setGoogleAnalyticsTrackingCode($code = 'UA-910670-2') {
-    if (!is_null($this->projectGoogleAnalyticsCode)) {
-      $this->projectGoogleAnalyticsCode = $code;
-    }
+    trigger_error("Deprecated function called.", E_USER_NOTICE);
   }
 
   /**
    * Get Google Analytics Tracking code
    *
    * @param string/NULL $gaUniqueID
+   * @deprecated
    */
   function getGoogleAnalyticsTrackingCode() {
-    if (empty($this->projectGoogleAnalyticsCode) && !is_null($this->projectGoogleAnalyticsCode)) {
-      $this->setGoogleAnalyticsTrackingCode();
-    }
-    return $this->projectGoogleAnalyticsCode;
+    trigger_error("Deprecated function called.", E_USER_NOTICE);
+    return 'UA-910670-2';
   }
 
   /**
diff --git a/eclipse.org-common/system/breadcrumbs.class.php b/eclipse.org-common/system/breadcrumbs.class.php
index af2e835..a68098c 100644
--- a/eclipse.org-common/system/breadcrumbs.class.php
+++ b/eclipse.org-common/system/breadcrumbs.class.php
@@ -40,6 +40,7 @@
     "committers" => "Committers",
     "contribute" => "Contribute",
     "corporate_sponsors" => "Corporate Sponsors",
+    "documentation" => "Documentation",
     "donate" => "Donate",
     "downloads" => "Downloads",
     "eclipse4" => "Eclipse SDK 4.x",
@@ -49,6 +50,7 @@
     "galileo" => "Galileo",
     "ganymede" => "Ganymede",
     "go" => "Go",
+    "helios" => "Helios",
     "home" => "Home",
     "ide" => "IDE",
     "images" => "Images",
@@ -59,16 +61,22 @@
     "licenses" => "Licenses",
     "luna" => "Luna",
     "mail" => "Mailing Lists",
+    "mars" => "Mars",
     "membership" => "Members",
     "mobile" => "Mobile",
+    "neon" => "Neon",
     "newsgroups" => "Forums",
     "org" => "About Us",
+    "oxygen" => "Oxygen",
     "phoenix-test" => "Test",
+    "photon" => "Photon",
     "projects" => "Projects",
+    "proposals" => "Proposals",
     "resources" => "Resources",
+    "security" => "Security",
     "screenshots" => "Screenshots",
     "site_login" => "My Account",
-    "users" => "Getting started",
+    "getting_started" => "Getting started",
     'webmaster' => "Webmaster",
     "" => ""
   ) // Homepage
@@ -127,12 +135,12 @@
   }
 
   // Main constructor
-  function Breadcrumb($page_title = "") {
+  function __construct($page_title = "") {
 
     $this->getWWW_prefix();
 
     // Default: Home
-    $this->addCrumb("Home", $this->protocol . "www.eclipse.org/", "_self");
+    $this->addCrumb("Home", "/", "_self");
 
     if (isset($_SERVER['REQUEST_URI'])) {
       // http://www.eclipse.org/newsgroups/test.php
diff --git a/eclipse.org-common/system/eclipseenv.class.php b/eclipse.org-common/system/eclipseenv.class.php
index e73e392..a1fe924 100644
--- a/eclipse.org-common/system/eclipseenv.class.php
+++ b/eclipse.org-common/system/eclipseenv.class.php
@@ -62,7 +62,7 @@
   /**
    * Constructor
    */
-  public function EclipseEnv(App $App = NULL) {
+  public function __construct(App $App = NULL) {
     if (is_null($App)) {
       require_once("app.class.php");
       $App = new App();
@@ -80,14 +80,13 @@
    * @return array
    */
   public function getEclipseEnv(){
-    $local_docker_port = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') ? '43' : '80';
     // @todo: allowed_hosts is deprecated
     $server['dev'] = array(
       'shortname' => 'local',
       'cookie' => '.eclipse.local',
-      'domain' => 'www.eclipse.local:502' . $local_docker_port,
-      'dev_domain' => 'dev.eclipse.local:51143',
-      'accounts' => 'accounts.eclipse.local:51243',
+      'domain' => 'www.eclipse.php53.dev.docker',
+      'dev_domain' => 'dev_eclipse.php53.dev.docker',
+      'accounts' => 'accounts.php55.dev.docker',
       'allowed_hosts' => array(
         'eclipse.local',
         'www.eclipse.local',
@@ -119,7 +118,7 @@
       ),
     );
 
-    if (strpos($_SERVER['HTTP_HOST'], '.local') !== FALSE) {
+    if (strpos($_SERVER['HTTP_HOST'], '.docker') !== FALSE) {
       return $server['dev'];
     }
 
diff --git a/eclipse.org-common/system/evt_log.class.php b/eclipse.org-common/system/evt_log.class.php
index cffcd30..ed0871e 100644
--- a/eclipse.org-common/system/evt_log.class.php
+++ b/eclipse.org-common/system/evt_log.class.php
@@ -38,6 +38,40 @@
     var $uid = "";
     var $EvtDateTime = "";
 
+    /**
+     * Fetch Log Records
+     *
+     *  $fields = array('LogAction' => 'mail_invalid', 'uid' => 'mmisingname0mv');
+     *  print_r(EvtLog::fetchLogRecord($fields));
+     *
+     * @param array $fields
+     */
+    public static function fetchLogRecord($fields = array()) {
+      $App = new App();
+      $allowed_fields = array('LogID', 'LogTable', 'PK1', 'PK2', 'LogAction', 'uid', 'EvtDateTime');
+
+      $sql = "SELECT LogID, LogTable, PK1, PK2, LogAction, uid, EvtDateTime FROM SYS_EvtLog";
+      $conditions = array();
+      foreach ($allowed_fields as $field) {
+        if (isset($fields[$field]) && $fields[$field] != "") {
+          $conditions[] = $field . " = " . $App->returnQuotedString($App->sqlSanitize($fields[$field]));
+        }
+      }
+
+      if (!empty($conditions)) {
+        $sql .= ' WHERE ';
+        $sql .= implode(' and ', $conditions);
+      }
+
+      $sql .= " LIMIT 100";
+      $result = $App->eclipse_sql($sql);
+      $return = array();
+      while ($row = mysql_fetch_assoc($result)) {
+        $return[] = $row;
+      }
+      return $return;
+    }
+
     function getLogID() {
       return $this->LogID;
     }
diff --git a/eclipse.org-common/system/link.class.php b/eclipse.org-common/system/link.class.php
index b65cac4..8da3ff6 100644
--- a/eclipse.org-common/system/link.class.php
+++ b/eclipse.org-common/system/link.class.php
@@ -22,14 +22,14 @@
 	#
 	# HISTORY:
 	#
-	#*****************************************************************************	
-	
+	#*****************************************************************************
+
 	private $Text	= "";
 	private $URL	= "";
 	private $Target	= "";
 	private $Level = 0;
-	
-	
+
+
 	function getText() {
 		return $this->Text;
 	}
@@ -42,7 +42,7 @@
 	function getLevel() {
 		return $this->Level;
 	}
-	
+
 	function setText($_Text) {
 		$this->Text = $_Text;
 	}
@@ -58,7 +58,7 @@
 
 
 	# Main constructors
-	function Link($_Text, $_URL, $_Target, $_Level) {
+	function __construct($_Text, $_URL, $_Target, $_Level) {
 		$this->setText		($_Text);
 		$this->setURL		($_URL);
 		$this->setTarget	($_Target);
diff --git a/eclipse.org-common/system/menu.class.php b/eclipse.org-common/system/menu.class.php
index ea2ba8e..4555a3b 100644
--- a/eclipse.org-common/system/menu.class.php
+++ b/eclipse.org-common/system/menu.class.php
@@ -50,7 +50,7 @@
 	}
 
 	# Main constructor
-	function Menu() {
+	function __construct() {
 
 		$www_prefix = "";
 
diff --git a/eclipse.org-common/system/nav.class.php b/eclipse.org-common/system/nav.class.php
index bbff762..1b08933 100644
--- a/eclipse.org-common/system/nav.class.php
+++ b/eclipse.org-common/system/nav.class.php
@@ -51,7 +51,7 @@
 
 
 	# Main constructor
-	function Nav() {
+	function __construct() {
 
 		$www_prefix = "";
 
diff --git a/eclipse.org-common/system/session.class.php b/eclipse.org-common/system/session.class.php
index 7593c1d..f609d92 100644
--- a/eclipse.org-common/system/session.class.php
+++ b/eclipse.org-common/system/session.class.php
@@ -12,7 +12,6 @@
  *******************************************************************************/
 require_once(realpath(dirname(__FILE__) . "/../classes/friends/friend.class.php"));
 require_once("app.class.php");
-
 if (!class_exists("EvtLog")) {
   require_once("evt_log.class.php");
 }
diff --git a/eclipse.org-common/themes/Nova/css/footer.css b/eclipse.org-common/themes/Nova/css/footer.css
deleted file mode 100644
index 2a80deb..0000000
--- a/eclipse.org-common/themes/Nova/css/footer.css
+++ /dev/null
@@ -1,30 +0,0 @@
-#footer {
- 	background:transparent url('/eclipse.org-common/themes/Nova/images/footer.png') no-repeat;
- 	padding-top:15px;
-}
-
-#footer *{
-	color:#FFF;
-	text-decoration:none;
-}
-
-#footer ul {	
-	font-size:11px;
-	padding-left:20px;
-	float:left;	
-}
-
-#footer ul li {
-	display:inline;	
-	padding-right:15px;
-	
-}
-
-#copyright {
-	padding-right:20px;
-	clear:none;
-	float:right;
-	color:#222;
-	font-size:12px;
-	font-weight:bold;
-}
diff --git a/eclipse.org-common/themes/Nova/css/header.css b/eclipse.org-common/themes/Nova/css/header.css
deleted file mode 100644
index 1f13654..0000000
--- a/eclipse.org-common/themes/Nova/css/header.css
+++ /dev/null
@@ -1,149 +0,0 @@
-#header {
-	background:transparent url('/eclipse.org-common/themes/Nova/images/header.png') top left no-repeat;
-	height:47px;
-	width:100%;
-	margin:0px;
-	padding:0px;
-}
-
-#headerAlt {
-	background:transparent url('/eclipse.org-common/themes/Nova/images/headerAlt.png') top left no-repeat;
-	height:47px;
-	width:100%;
-	margin:0px;
-	padding:0px;
-}
-
-#logo {
-	float:left;
-	z-index:9999; /*Something Insanely High*/
-	overflow:hidden;
-	margin:0;
-	padding:0;
-	border:0;
-	line-height:0;
-	font-size:0;
-}
-
-#menu ul {
-	margin-left:20px;
-	margin-top:10px;
-	margin-bottom:-5px;
-	float:left;
-}
-
-#menu ul li {
-	font-size:13px;
-	display:block;
-	float:left;
-	cursor:pointer;
-	text-transform:capitalize;
-	color:#0D3656;
-	padding-top:10px;
-}
-
-#menu ul li a{
-	font-weight:400;
-	color:#0D3656;
-	text-align:center;
-	padding:0px 10px;
-}
-
-div#search {
-	float:right;
-	position:relative;
-	padding-top:12px;
-	padding-right:0px;
-	width:300px;
-}
-
-#searchBox {
-	width:220px;
-	font-size:12px;		
-	border:none !important;
-	position:relative;
-	right:7px;
-}
-
-#searchButton {
-	font-size:15px;
-	padding:2px;
-	margin-left:5px;
-	margin-top:1px;
-}
-
-#otherSites{
-	background:transparent url('/eclipse.org-common/themes/Nova/images/siteSelector.png') no-repeat;
-	display:block;
-	clear:none;
-	height:78px;
-	width:390px;
-	float:right;	
-	margin-top:10px;
-	margin-bottom:0px;
-	margin-right:4px;
-	text-align:right;
-}
-
-#otherSitesButton a {
-	color:#FFF;	
-}
-
-#sites {
-	text-align:center;
-}
-
-#sites ul {
-	padding-left:25px;
-	padding-top:5px;
-	margin:30px auto 0;
-}
-
-#sites ul li{
-	text-align:center;
-	width:52px;
-	float:left;
-	display:block;
-	margin:0;
-	padding:0;
-}
-
-#sites ul li a {
-	position:relative;
-	display:block;
-	width:32px;
-	height:32px;
-	font-size:12px;
-	text-decoration:none;
-	color:#FFF;
-}
-
-#promos {
-	text-align:center;
-	padding:20px;	
-}
-
-#promotion {
-	padding:11px 0 0 15px;
-	width:554px;
-	height:79px;
-}
-
-#sites ul li a span {
-	display:none;	
-	white-space: nowrap;
-}
-
-#sites ul li a:hover span {
-	display:block;
-	position:absolute;
-	z-index:10;
-	padding:5px;
-	top:40px;
-	right:0px;
- 	color:#EFEFEF;
- 	background:#333;
- 	border:1px solid #666;
- 	-moz-border-radius:5px;
- 	-webkit-border-radius:5px; 		
-}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/Nova/css/ie6_style.css b/eclipse.org-common/themes/Nova/css/ie6_style.css
deleted file mode 100644
index 71d56d6..0000000
--- a/eclipse.org-common/themes/Nova/css/ie6_style.css
+++ /dev/null
@@ -1,22 +0,0 @@
-img {
-	behavior: url('/eclipse.org-common/themes/Nova/iepngfix.htc');
-}
-
-#footer {
-}
-
-#clearFooter {
-	clear:both;
-	height:14px; /* provides space for the #footer */
-}
-#footer {
-	height: 47px;
-	margin: -20px auto; /* -2em sucks it back in & auto centers it */
-}
-
-#menu ul {
-	margin-left:10px;
-	height:24px;
-}
-
-
diff --git a/eclipse.org-common/themes/Nova/css/ie_style.css b/eclipse.org-common/themes/Nova/css/ie_style.css
deleted file mode 100644
index 13dc5da..0000000
--- a/eclipse.org-common/themes/Nova/css/ie_style.css
+++ /dev/null
@@ -1,57 +0,0 @@
-#novaWrapper, #footer {
-	width:980px;
-}
-
-#search {
-	padding-top:13px;
-	right:-1px;
-}
-
-#searchBox {
-	padding-top:0px;
-	top:0px;
-	right:7px;
-}
-
-#searchButton {
-	width:4em;
-}	
- 
-#sites ul {
-	padding-left:15px;
-}
-
-#leftnav li{
-	padding:5px 0;
-}
-
-#leftnav li a {
-	padding-left:5px;
-}
-
-.homeitem3col li, .homeitem li {
-	padding:0 10px 5px 5px;
-	margin-bottom:5px;
-	vertical-align:bottom;
-}
-
-.homeitem3col ul, .homeitem ul {
-	padding-bottom:5px;
-	margin-top:10px;
-}
-
-#buttonHolder {
-	margin-left:0 !important;	
-}
-
-.more {
-	clear:both;	
-	height:40px;
-}
-
-#fullcolumn
-{
-	float:left;
-	margin-left:20px;
-	width: 750px;
-}
diff --git a/eclipse.org-common/themes/Nova/css/layout.css b/eclipse.org-common/themes/Nova/css/layout.css
deleted file mode 100644
index 345b840..0000000
--- a/eclipse.org-common/themes/Nova/css/layout.css
+++ /dev/null
@@ -1,40 +0,0 @@
-* {
-	margin: 0; /* zero out margin */
-	padding: 0; /* zero out padding */
-}
-html {
-	height: 100%; /* gives layout 100% height */
-	overflow:inherit; /* triggers 100% height in Opera 9.5 */
-}
-body {
-	height: 100%; /* gives layout 100% height */
-	width:100%;
-}
-#novaWrapper {
-	min-height: 100%; /* gives layout 100% height */
-	width: 980px; /* centered div must be given a width */
-	margin: 0 auto; /* centers #wrapper */
-}
-* html #wrapper { 
-	height: 100%; /* IE6 treats height as min-height */
-}
-#clearHeader {
-	text-align:left;
-	height: 92px /* provides space for the #footer */
-}
-#clearFooter {
-	clear:both;
-	height: 34px; /* provides space for the #footer */
-}
-#footer {
-	height: 47px;
-	width: 980px; /* centered div must be given a width */
-	margin: -40px auto; /* -80px sucks it back in & auto centers it */
-}
-
-#novaContent {
-	min-height: 100%; /* gives layout 100% height */
-	border-right:1px solid #D9D9D9;
-	border-left:1px solid #D9D9D9;
-}
-
diff --git a/eclipse.org-common/themes/Nova/css/novaWide.css b/eclipse.org-common/themes/Nova/css/novaWide.css
deleted file mode 100644
index 4cb5f3a..0000000
--- a/eclipse.org-common/themes/Nova/css/novaWide.css
+++ /dev/null
@@ -1,54 +0,0 @@
-@CHARSET "UTF-8";
-
-#novaWrapper {
-	min-height: 100%; /* gives layout 100% height */
-	width: 98%; /* centered div must be given a width */
-	margin: 0 auto; /* centers #wrapper */
-}
-#footer {
-	height: 27px;
-	width: 100%; /* centered div must be given a width */
-	margin: 1px auto; /* -80px sucks it back in & auto centers it */
-}
-#novaContent {
-	min-height: 100%; /* gives layout 100% height */
-	border-right:1px solid #D9D9D9;
-	border-left:1px solid #D9D9D9;
-	padding:20px 10px;
-}
-#novaContent.faux
-{
-	background: none;
-	background-color: #FFF;
-	padding-bottom: 0px;
-	padding-top: 0px;
-}
-#header {
-	background:transparent url('/eclipse.org-common/themes/Nova/images/headerWide.png') top left repeat-x;
-	height:47px;
-	width:100%;
-	margin:0px;
-	padding:0px;
-	-moz-border-radius-bottomleft:0;
-	-moz-border-radius-bottomright:0;
-	-moz-border-radius-topleft:14px;
-	-moz-border-radius-topright:14px;	
-}
-#footer {
- 	background-color: #B5B5AC;
-	-moz-border-radius-bottomleft:14px;
-	-moz-border-radius-bottomright:14px;
-	-moz-border-radius-topleft:0;
-	-moz-border-radius-topright:0;
- 	padding-top:15px;
-}
-body {
-	text-align: left;
-}
-#clearFooter {
-	clear:both;
-	height:0;
-}
-div#search {
-	visibility: hidden;
-}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/Nova/css/print.css b/eclipse.org-common/themes/Nova/css/print.css
deleted file mode 100755
index 1e41d17..0000000
--- a/eclipse.org-common/themes/Nova/css/print.css
+++ /dev/null
@@ -1,3 +0,0 @@
-#header, #topnav, #topnavsep, #leftcol, #search, #clearheader, #otherSites, #footernav {
-        display: none;
-}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/Nova/css/reset.css b/eclipse.org-common/themes/Nova/css/reset.css
deleted file mode 100644
index 842e782..0000000
--- a/eclipse.org-common/themes/Nova/css/reset.css
+++ /dev/null
@@ -1,54 +0,0 @@
-@CHARSET "ISO-8859-1";
-/* v1.0 | 20080212 */
-
-html, body, div, span, applet, object, iframe,
-h1, h2, h3, h4, h5, h6, p, blockquote, pre,
-a, abbr, acronym, address, big, cite, code,
-del, dfn, em, font, img, ins, kbd, q, s, samp,
-small, strike, strong, sub, sup, tt, var,
-b, u, i, center,
-dl, dt, dd, ol, ul, li,
-fieldset, form, label, legend,
-table, caption, tbody, tfoot, thead, tr, th, td {
-	margin: 0;
-	padding: 0;
-	border: 0;
-	outline: 0;
-	font-size: 100%;
-	/*vertical-align: baseline;
-	background: transparent;*/
-	text-align:left;
-}
-body {
-	line-height: 1;
-}
-ol, ul {
-	list-style: none;
-}
-blockquote, q {
-	quotes: none;
-}
-blockquote:before, blockquote:after,
-q:before, q:after {
-	content: '';
-	content: none;
-}
-
-/* remember to define focus styles! */
-:focus {
-	outline: 0;
-}
-
-/* remember to highlight inserts somehow! */
-ins {
-	text-decoration: none;
-}
-del {
-	text-decoration: line-through;
-}
-
-/* tables still need 'cellspacing="0"' in the markup */
-table {
-	border-collapse: separate;
-	border-spacing: 0;
-}
diff --git a/eclipse.org-common/themes/Nova/css/visual.css b/eclipse.org-common/themes/Nova/css/visual.css
deleted file mode 100644
index 0fdc1d8..0000000
--- a/eclipse.org-common/themes/Nova/css/visual.css
+++ /dev/null
@@ -1,407 +0,0 @@
-a
-{
-	color: #7036be;
-	font-weight: bold;
-	text-decoration: none;
-	font-size:inherit;
-}
-a:hover
-{
-	text-decoration: underline;
-}
-body
-{
-	background: #EFEFEF url('/eclipse.org-common/themes/Nova/images/bg.png') repeat-x scroll;
-	font-family: Arial,sans-serif;
-	text-align: center;
-}
-div, span, p, blockquote, pre, code, em, sub, sup, dl, dt, dd, ol, ul, li, fieldset, form, legend, table, caption, tbody, tfoot, thead, tr, th, td
-{
-	font-size: 12px;
-	line-height: 16px;
-}
-em {
-	font-style:italic;	
-}
-h1
-{
-	font-size: 20px;
-	line-height:20px;
-	font-weight: bold;
-	padding-bottom: 10px;
-}
-h1 a, h2 a, h3 a
-{
-	font-weight: bold;
-}
-h2
-{
-	border-bottom: 1px solid #d4d4dd;
-	font-size: 18px;
-	line-height:18px;
-	font-weight: bold;
-	margin-bottom: 5px;
-	padding-top: 10px;
-}
-h3
-{
-	border-bottom: 1px dotted #d4d4dd;
-	color: #222;
-	font-size: 18px;
-	line-height:18px;
-	font-weight: bold;
-	margin-bottom: 5px;
-	padding-top: 10px;
-}
-
-h4 {
-	font-size:15px;
-	line-height:15px;
-	font-weight:bold;
-	margin-bottom: 5px;
-	padding-top: 5px;
-	color:#222;	
-}
-
-html {
-	background: transparent;
-}
-
-ol > li
-{
-	list-style-image: none !important;
-	list-style-type: decimal;
-}
-p, table
-{
-	margin-bottom: 20px;
-}
-strong
-{
-	font-weight: bold;
-}
-td
-{
-	padding: 3px;
-}
-
-sub {
-	vertical-align:sub;
-	font-size:80%;
-}
-
-sup {
-	vertical-align:super;
-	font-size:80%
-}
-
-#novaContent
-{
-	background: #FFF;
-}
-#novaContent li
-{
-	list-style-image: url('/eclipse.org-common/themes/Nova/images/bullet.gif');
-	list-style-position: outside;
-	margin-left: 10px;
-	padding: 5px 10px 5px 0;
-}
-#novaContent.faux
-{
-	background: #FFF url('/eclipse.org-common/themes/Nova/images/faux.jpg') repeat-y;
-	padding-bottom: 20px;
-	padding-top: 20px;
-}
-
-#clearFooter
-{
-	background: #E0E5E9;
-}
-#clearHeader
-{
-	background: transparent;
-	clear: both;
-}
-#content
-{
-	background: #E0E5E9;
-}
-#fullcolumn
-{
-	padding-top: 20px;
-	width: 978px;
-}
-#fullcolumn #midcolumn
-{
-	margin-left:20px;
-	width: 640px;
-}
-
-#fullcolumn #rightcolumn
-{
-	width: 280px;	
-}
-
-#leftcol
-{
-	background: transparent;
-	clear: both;
-	float: left;
-	margin-right: 20px;
-	width: 185px;
-}
-#leftnav
-{
-	margin-left: 10px;
-	margin-right: 20px;
-}
-#leftnav li
-{
-	list-style-image: url('/eclipse.org-common/themes/Nova/images/leftNav.gif');
-	margin-left: 30px;
-	padding: 0px;
-}
-#leftnav li a
-{
-	font-size: 12px;
-	line-height: 12px;
-}
-#leftnav li.about
-{
-	list-style-image: none;
-	margin-left: 0;
-	padding-bottom: 10px;
-}
-#leftnav li.about a
-{
-	color: #333333;
-	font-size: 12px;
-}
-#leftnav li.separator
-{
-	border-top: 1px dotted #d4d4dd;
-	list-style-image: none;
-	margin-left: 0;
-	margin-top: 5px;
-	padding: 5px 0;
-	padding-top: 5px;
-}
-#leftnav li.separator a
-{
-	color: #333333;
-	font-size: 12px;
-}
-#midcolumn
-{
-	background: transparent;
-	float: left;
-	margin-right: 20px;
-	width: 495px;
-}
-#midcolumn ul, #midcolumn ol
-{
-	margin-left: 20px;
-	padding-bottom: 10px;
-}
-
-.sideitem ul, .sideitem ol {
-	margin-left:10px;	
-}
-
-#rightcolumn
-{
-	background: transparent;
-	float: left;
-	padding-right: 15px;
-	width: 240px;
-}
-#widecontainer
-{
-	background: #FFF;
-}
-.clearer
-{
-	clear: both;
-	visibility: hidden;
-}
-.details
-{
-	line-height: 13px;
-	margin: 5px 0;
-}
-.details ul
-{
-	margin-left: 15px;
-}
-.details ul li
-{
-	font-size: 11px;
-}
-
-.homeitem3col, .homeitem
-{
-	font-size: 12px;
-	margin-bottom: 10px;
-}
-.noImage li {
-	list-style-image:none !important;	
-}
-.more
-{
-	height: 20px;
-	margin-top: 3px;
-	width: 100%;
-}
-.moreButton
-{
-	background: #FFF url('/eclipse.org-common/themes/Nova/images/moreButton.png') no-repeat;
-	float: right;
-	font-size: 10px;
-	padding-top: 7px;
-	text-align: right;
-}
-.moreButton a
-{
-	color: #595b54;
-	display: block;
-	font-size: 10px;
-	height: 26px;
-	pointer: cursor;
-	text-align: center;
-	width: 100px;
-	line-height:10px;
-}
-.newsPosts
-{
-	margin-top: 5px;
-}
-.newsPosts .date
-{
-	color: #666;
-	font-size: 11px;
-	padding-right: 20px;
-	vertical-align: top;
-}
-.newsPosts a.link
-{
-	color: #753cbc;
-	font-size: 14px;
-}
-.newsPosts div.details
-{
-	color: #515151;
-	font-size: 11px;
-}
-.newsPosts tr td
-{
-	border-bottom: 1px dotted #e9e9ee;
-	margin-bottom: 10px;
-	padding-top: 5px;
-}
-.noBG
-{
-	background: none !important;
-}
-.none
-{
-	background: transparent !important;
-	border: 0px !important;
-}
-.posted
-{
-	color: #888;
-	font-size: 8px;
-}
-.rss
-{
-	float: right;
-	width: 16px;
-}
-.sideitem
-{
-	border-bottom: 1px dotted #d4d4dd;
-	margin-bottom: 10px;
-	padding-bottom: 5px;
-	clear:both;
-}
-.sideitem .modal
-{
-	background: #FFF url('/eclipse.org-common/themes/Nova/images/thinModalBg.png') repeat-x;
-	padding: 5px;
-}
-.sideitem h6
-{
-	background-color: #e8e7dd;
-	border-bottom: 2px solid #FFF;
-	font-size: 14px;
-	font-weight: bold;
-	margin-bottom: 0px;
-	-moz-border-radius-topleft:3px;
-	-moz-border-radius-topright:3px;
-	padding: 8px 5px;
-}
-.sideitem li
-{
-	padding: 0 10px 5px 0;
-}
-.sideitem ul, .sideitem ol, .sideitem form, .sideitem p
-{
-	font-size: 12px;
-	padding: 5px;
-}
-small {
-	font-size:10px;
-}
-.message-box.error{
-    border: 1px solid #D8000C;
-    margin: 10px 0px;
-    padding:15px 10px 15px 50px;
-    background-repeat: no-repeat;
-    background-position: 10px center;
-    color: #333;
-    font-size:14px;
-    background-color: #FFBABA;
-    background-image: url('../images/message-24-error.png');  
-}
-
-/* DEPRECATED THEME */
-.deprecated .message-box-container{
-	background:#fff;
-	padding:10px 10px 15px 10px;
-}
-.deprecated #faux-br{
-	display: none;
-}
-.deprecated #novaContent{
-	padding-top:0;
-}
-.deprecated #maincontent,
-.deprecated #fullcolumn,
-.deprecated .leftContent {	
-	background: url("../images/bg-deprecated.gif") center  75px no-repeat;
-}
-.deprecated #maincontent:after,
-.deprecated #fullcolumn:after,
-.deprecated .leftContent:after {
-	content: ".";
-	display: block;
-	clear: both;
-	visibility: hidden;
-	line-height: 0;
-	height: 0;
-}
-.deprecated #maincontent,
-.deprecated #fullcolumn,
-.deprecated .leftContent {
-	display: inline-block;
-}
-html[xmlns] .deprecated #maincontent,
-html[xmlns] .deprecated #fullcolumn,
-html[xmlns] .deprecated .leftContent {
-	display: block;
-}
-* html .deprecated #maincontent,
-* html .deprecated #fullcolumn,
-* html .deprecated .leftContent {
-	height: 1%;
-}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/Nova/footer.php b/eclipse.org-common/themes/Nova/footer.php
deleted file mode 100644
index 457925c..0000000
--- a/eclipse.org-common/themes/Nova/footer.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright (c) 2008 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *    Nathan Gervais (Eclipse Foundation)- initial API and implementation
- *******************************************************************************/
-	
-?>
-		<br style="clear:both;height:1em;"/>&nbsp;
-		</div> <?php //This Div tag is used to close #novaContent?>
-		<div id="clearFooter"></div>
-		<div id="footer">
-			<ul id="footernav">
-<li><a href="<?= $App->getWWWPrefix() ?>/">Home</a></li>
-<li><a href="<?= $App->getWWWPrefix() ?>/legal/privacy.php">Privacy Policy</a></li>
-<li><a href="<?= $App->getWWWPrefix() ?>/legal/termsofuse.php">Terms of Use</a></li>
-<li><a href="<?= $App->getWWWPrefix() ?>/legal/copyright.php">Copyright Agent</a></li>
-<li><a href="<?= $App->getWWWPrefix() ?>/legal/">Legal</a></li>
-<li><a href="<?= $App->getWWWPrefix() ?>/org/foundation/contact.php">Contact Us</a></li></ul>
-			<span id="copyright">Copyright &copy; <?=date("Y", time());?> The Eclipse Foundation. All Rights Reserved.</span>
-		</div>
-	</div> <?php //This Div tag is used to close #novaWrapper?>
-</body></html>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/Nova/header.php b/eclipse.org-common/themes/Nova/header.php
deleted file mode 100644
index 4d6ab7c..0000000
--- a/eclipse.org-common/themes/Nova/header.php
+++ /dev/null
@@ -1,72 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright (c) 2008-2013 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *     Nathan Gervais (Eclipse Foundation)- initial API and implementation
- *******************************************************************************/
-
-$www_prefix = "";
-global $App;
-if(isset($App)) {
-	$www_prefix = $App->getWWWPrefix();
-}
-
-print $this->getDoctype();
-?>
-<head>
-	<title><?= $pageTitle ?></title>
-	<meta name="author" content="<?= $pageAuthor ?>" />
-	<?php if ($App->getOGTitle() != "") :?>
-		<meta property="og:title" content="<?php print $App->getOGTitle(); ?>" />
-	<?php else: ?>
-		<meta property="og:title" content="<?php print $pageTitle; ?>" />
-	<?php endif;?>
-	<meta property="og:description" content="<?php print $App->getOGDescription();?>"/>
-	<meta property="og:image" content="<?php print $App->getOGImage();?>"/>
-	<meta name="keywords" content="<?= $pageKeywords ?>" />
-	<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
-	<link rel="stylesheet" type="text/css" href="/eclipse.org-common/yui/2.6.0/build/reset-fonts-grids/reset-fonts-grids.css" media="screen" />
-	<link rel="stylesheet" type="text/css" href="/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menu.css" media="screen" />
-	<link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Nova/css/reset.css" media="screen"/>
-	<link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Nova/css/layout.css" media="screen" />
-	<link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Nova/css/header.css" media="screen" />
-	<link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Nova/css/footer.css" media="screen" />
-	<link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Nova/css/visual.css" media="screen" />
-	<link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Nova/css/print.css" media="print" />
-	<!--[if lte IE 7]> 	<link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Nova/css/ie_style.css" media="screen"/> <![endif]-->
-	<!--[if IE 6]> 	<link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Nova/css/ie6_style.css" media="screen"/> <![endif]-->
-	<!-- Dependencies -->
-	<!-- Source File -->
-<?php if($App->getjQuery()) echo $App->getjQuery(); ?>
-<?php if( isset($extraHtmlHeaders) ) echo $extraHtmlHeaders; ?>
-</head>
-<body>
-	<div id="novaWrapper"<?php if ($App->OutDated == TRUE) print ' class="deprecated"';?>><?//This Div is closed in footer.php?>
-		<div id="clearHeader">
-			<div id="logo">
-				<?php if ($App->Promotion == FALSE) { ?>
-					 <img src="/eclipse.org-common/themes/Nova/images/eclipse-800x426.png" alt="Eclipse.org" width="171" height="91"/>
-				<?php } else {
-						if ($App->CustomPromotionPath != "") {
-							include($App->CustomPromotionPath);
-						}
-						else {
-							include($App->getPromotionPath($theme));
-						}
-					}
-				?>
-			</div>
-<div id="otherSites"><div id="sites"><ul id="sitesUL">
-<li><a href='//marketplace.eclipse.org'><img alt="Eclipse Marketplace" src="//dev.eclipse.org/custom_icons/marketplace.png"/>&nbsp;<span>Eclipse Marketplace</span></a></li>
-<li><a href='//www.youtube.com/user/EclipseFdn' target="_blank"><img alt="Eclipse YouTube Channel" src="//dev.eclipse.org/custom_icons/audio-input-microphone-bw.png"/>&nbsp;<span>Eclipse YouTube Channel</span></a></li>
-<li><a href='https://bugs.eclipse.org/bugs/'><img alt="Bugzilla" src="//dev.eclipse.org/custom_icons/system-search-bw.png"/>&nbsp;<span>Bugzilla</span></a></li>
-<li><a href='//www.eclipse.org/forums/'><img alt="Forums" src="//dev.eclipse.org/large_icons/apps/internet-group-chat.png"/>&nbsp;<span>Eclipse Forums</span></a></li>
-<li><a href='//www.planeteclipse.org/'><img alt="Planet Eclipse" src="//dev.eclipse.org/large_icons/devices/audio-card.png"/>&nbsp;<span>Planet Eclipse</span></a></li>
-<li><a href='//wiki.eclipse.org/'><img alt="Eclipse Wiki" src="//dev.eclipse.org/custom_icons/accessories-text-editor-bw.png"/>&nbsp;<span>Eclipse Wiki</span></a></li>
-<li><a href='https://portal.eclipse.org'><img alt="MyFoundation Portal" src="//dev.eclipse.org/custom_icons/preferences-system-network-proxy-bw.png"/><span>My Foundation Portal</span></a></li>
-</ul></div></div></div>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/Nova/iepngfix.htc b/eclipse.org-common/themes/Nova/iepngfix.htc
deleted file mode 100644
index 572e43d..0000000
--- a/eclipse.org-common/themes/Nova/iepngfix.htc
+++ /dev/null
@@ -1,187 +0,0 @@
-<public:component>

-<script type="text/javascript">

-

-// IE5.5+ PNG Alpha Fix v2.0 Alpha

-// (c) 2004-2008 Angus Turnbull http://www.twinhelix.com

-

-// This is licensed under the GNU LGPL, version 2.1 or later.

-// For details, see: http://creativecommons.org/licenses/LGPL/2.1/

-

-var IEPNGFix = window.IEPNGFix || {};

-IEPNGFix.data = IEPNGFix.data || {};

-

-

-// This must be a path to a blank image, relative to the HTML document(s).

-// In production use I suggest '/images/blank.gif' or similar. That's all!

-IEPNGFix.blankImg = '/eclipse.org-common/themes/Nova/images/blank.gif';

-

-

-IEPNGFix.fix = function(elm, src, t) {

-	// Applies an image 'src' to an element 'elm' using the DirectX filter.

-	// If 'src' is null, filter is disabled.

-	// Disables the 'hook' to prevent infinite recursion on setting BG/src.

-	// 't' = type, where background tile = 0, background = 1, IMG SRC = 2.

-

-	var h = this.hook.enabled;

-	this.hook.enabled = 0;

-

-	var f = 'DXImageTransform.Microsoft.AlphaImageLoader';

-		src = (src || '').replace(/\(/g, '%28').replace(/\)/g, '%29');

-

-	if (

-		src && !(/IMG|INPUT/.test(elm.nodeName) && (t != 2)) &&

-		elm.currentStyle.width == 'auto' && elm.currentStyle.height == 'auto'

-	) {

-		elm.style.width = elm.offsetWidth + 'px';

-		elm.style.height = elm.clientHeight + 'px';

-		if (elm.currentStyle.display == 'inline') {

-			elm.style.display = 'inline-block';

-		}

-	}

-

-	if (t == 1) {

-		elm.style.backgroundImage = 'url("' + this.blankImg + '")';

-	}

-	if (t == 2) {

-		elm.src = this.blankImg;

-	}

-

-	if (elm.filters[f]) {

-		elm.filters[f].enabled = src ? true : false;

-		if (src) {

-			elm.filters[f].src = src;

-		}

-	} else if (src) {

-		elm.style.filter = 'progid:' + f + '(src="' + src +

-			'",sizingMethod="' + (t == 2 ? 'scale' : 'crop') + '")';

-	}

-

-	this.hook.enabled = h;

-};

-

-

-IEPNGFix.process = function(elm, init) {

-	// Checks the onpropertychange event (on first 'init' run, a fake event)

-	// and calls the filter-applying-functions.

-

-	if (

-		!/MSIE (5\.5|6)/.test(navigator.userAgent) ||

-		typeof elm.filters == 'unknown'

-	) {

-		return;

-	}

-	if (!this.data[elm.uniqueID]) {

-		this.data[elm.uniqueID] = {

-			className: ''

-		};

-	}

-	var data = this.data[elm.uniqueID],

-		evt = init ? { propertyName: 'src,backgroundImage' } : event,

-		isSrc = /src/.test(evt.propertyName),

-		isBg = /backgroundImage/.test(evt.propertyName),

-		isPos = /width|height|background(Pos|Rep)/.test(evt.propertyName),

-		isClass = !init && ((elm.className != data.className) &&

-			(elm.className || data.className));

-	if (!(isSrc || isBg || isPos || isClass)) {

-		return;

-	}

-	data.className = elm.className;

-	var blank = this.blankImg.match(/([^\/]+)$/)[1],

-		eS = elm.style,

-		eCS = elm.currentStyle;

-

-	// Required for Whatever:hover - erase set BG if className changes.

-	if (

-		isClass && (eS.backgroundImage.indexOf('url(') == -1 ||

-		eS.backgroundImage.indexOf(blank) > -1)

-	) {

-		return setTimeout(function() {

-			eS.backgroundImage = '';

-		}, 0);

-	}

-

-	// Foregrounds.

-	if (isSrc && elm.src &&  { IMG: 1, INPUT: 1 }[elm.nodeName]) {

-		if ((/\.png/i).test(elm.src)) {

-			this.fix(elm, elm.src, 2);

-		} else if (elm.src.indexOf(blank) == -1) {

-			this.fix(elm, '');

-		}

-	}

-

-	// Backgrounds.

-	var bgSrc = eCS.backgroundImage || eS.backgroundImage;

-	if ((bgSrc + elm.src).indexOf(blank) == -1) {

-		var bgPNG = bgSrc.match(/url[("']+(.*\.png[^\)"']*)[\)"']/i);

-		if (bgPNG) {

-			if (this.tileBG && !{ IMG: 1, INPUT: 1 }[elm.nodeName]) {

-				this.tileBG(elm, bgPNG[1]);

-				this.fix(elm, '', 1);

-			} else {

-				if (data.tiles && data.tiles.src) {

-					this.tileBG(elm, '');

-				}

-				this.fix(elm, bgPNG[1], 1);

-				this.childFix(elm);

-			}

-		} else {

-			if (data.tiles && data.tiles.src) {

-				this.tileBG(elm, '');

-			}

-			this.fix(elm, '');

-		}

-	} else if ((isPos || isClass) && data.tiles && data.tiles.src) {

-		this.tileBG(elm, data.tiles.src);

-	}

-

-	if (init) {

-		this.hook.enabled = 1;

-		elm.attachEvent('onpropertychange', this.hook);

-	}

-};

-

-

-IEPNGFix.childFix = function(elm) {

-	// "hasLayout" fix for unclickable children inside PNG backgrounds.

-	var tags = [

-			'a',

-			'input',

-			'select',

-			'textarea',

-			'button',

-			'iframe',

-			'object'

-		],

-		t = tags.length,

-		tFix = [];

-	while (t--) {

-		var pFix = elm.all.tags(tags[t]),

-			e = pFix.length;

-		while (e--) {

-			tFix.push(pFix[e]);

-		}

-	}

-	t = tFix.length;

-	if (t && (/relative|absolute/i).test(elm.currentStyle.position)) {

-		alert('IEPNGFix: Unclickable children of element:' +

-			'\n\n<' + elm.nodeName + (elm.id && ' id=' + elm.id) + '>');

-	}

-	while (t--) {

-		if (!(/relative|absolute/i).test(tFix[t].currentStyle.position)) {

-			tFix[t].style.position = 'relative';

-		}

-	}

-};

-

-

-IEPNGFix.hook = function() {

-	if (IEPNGFix.hook.enabled) {

-		IEPNGFix.process(element, 0);

-	}

-};

-

-

-IEPNGFix.process(element, 1);

-

-</script>

-</public:component>

diff --git a/eclipse.org-common/themes/Nova/images/bg-deprecated.gif b/eclipse.org-common/themes/Nova/images/bg-deprecated.gif
deleted file mode 100644
index 028fb2c..0000000
--- a/eclipse.org-common/themes/Nova/images/bg-deprecated.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/bg.png b/eclipse.org-common/themes/Nova/images/bg.png
deleted file mode 100644
index bd6cd5e..0000000
--- a/eclipse.org-common/themes/Nova/images/bg.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/blank.gif b/eclipse.org-common/themes/Nova/images/blank.gif
deleted file mode 100644
index 75b945d..0000000
--- a/eclipse.org-common/themes/Nova/images/blank.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/blockBuster.jpg b/eclipse.org-common/themes/Nova/images/blockBuster.jpg
deleted file mode 100644
index 9f9e3ae..0000000
--- a/eclipse.org-common/themes/Nova/images/blockBuster.jpg
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/bullet.gif b/eclipse.org-common/themes/Nova/images/bullet.gif
deleted file mode 100644
index 8df3af2..0000000
--- a/eclipse.org-common/themes/Nova/images/bullet.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/down.png b/eclipse.org-common/themes/Nova/images/down.png
deleted file mode 100644
index 3cd31a4..0000000
--- a/eclipse.org-common/themes/Nova/images/down.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/download.png b/eclipse.org-common/themes/Nova/images/download.png
deleted file mode 100644
index 03c8a4d..0000000
--- a/eclipse.org-common/themes/Nova/images/download.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/eclipse-800x188.png b/eclipse.org-common/themes/Nova/images/eclipse-800x188.png
deleted file mode 100644
index 0c46952..0000000
--- a/eclipse.org-common/themes/Nova/images/eclipse-800x188.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/eclipse-800x426.png b/eclipse.org-common/themes/Nova/images/eclipse-800x426.png
deleted file mode 100644
index 2c63efe..0000000
--- a/eclipse.org-common/themes/Nova/images/eclipse-800x426.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/eclipse.png b/eclipse.org-common/themes/Nova/images/eclipse.png
deleted file mode 100644
index f66f2b7..0000000
--- a/eclipse.org-common/themes/Nova/images/eclipse.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/faux.jpg b/eclipse.org-common/themes/Nova/images/faux.jpg
deleted file mode 100644
index 86a6559..0000000
--- a/eclipse.org-common/themes/Nova/images/faux.jpg
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/faux.png b/eclipse.org-common/themes/Nova/images/faux.png
deleted file mode 100644
index 1974612..0000000
--- a/eclipse.org-common/themes/Nova/images/faux.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/footer.png b/eclipse.org-common/themes/Nova/images/footer.png
deleted file mode 100644
index 03b8fa0..0000000
--- a/eclipse.org-common/themes/Nova/images/footer.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/header.png b/eclipse.org-common/themes/Nova/images/header.png
deleted file mode 100644
index 95f25c0..0000000
--- a/eclipse.org-common/themes/Nova/images/header.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/header2.png b/eclipse.org-common/themes/Nova/images/header2.png
deleted file mode 100644
index a6c1368..0000000
--- a/eclipse.org-common/themes/Nova/images/header2.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/headerAlt.png b/eclipse.org-common/themes/Nova/images/headerAlt.png
deleted file mode 100644
index d4f2fe8..0000000
--- a/eclipse.org-common/themes/Nova/images/headerAlt.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/headerWide.png b/eclipse.org-common/themes/Nova/images/headerWide.png
deleted file mode 100644
index 098c8f3..0000000
--- a/eclipse.org-common/themes/Nova/images/headerWide.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/homeitemBullet.png b/eclipse.org-common/themes/Nova/images/homeitemBullet.png
deleted file mode 100644
index c8c7b66..0000000
--- a/eclipse.org-common/themes/Nova/images/homeitemBullet.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/homeitemBulletIE.gif b/eclipse.org-common/themes/Nova/images/homeitemBulletIE.gif
deleted file mode 100644
index d2120eb..0000000
--- a/eclipse.org-common/themes/Nova/images/homeitemBulletIE.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/homeitemBulletIE.png b/eclipse.org-common/themes/Nova/images/homeitemBulletIE.png
deleted file mode 100644
index 7843f1a..0000000
--- a/eclipse.org-common/themes/Nova/images/homeitemBulletIE.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/leftNav.gif b/eclipse.org-common/themes/Nova/images/leftNav.gif
deleted file mode 100644
index 4e669b1..0000000
--- a/eclipse.org-common/themes/Nova/images/leftNav.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/leftNav.png b/eclipse.org-common/themes/Nova/images/leftNav.png
deleted file mode 100644
index d49f1b4..0000000
--- a/eclipse.org-common/themes/Nova/images/leftNav.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/leftNavSelected.png b/eclipse.org-common/themes/Nova/images/leftNavSelected.png
deleted file mode 100644
index 3d5a5fc..0000000
--- a/eclipse.org-common/themes/Nova/images/leftNavSelected.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/message-24-error.png b/eclipse.org-common/themes/Nova/images/message-24-error.png
deleted file mode 100644
index b094180..0000000
--- a/eclipse.org-common/themes/Nova/images/message-24-error.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/moreButton.png b/eclipse.org-common/themes/Nova/images/moreButton.png
deleted file mode 100644
index 0291fee..0000000
--- a/eclipse.org-common/themes/Nova/images/moreButton.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/searchButton.png b/eclipse.org-common/themes/Nova/images/searchButton.png
deleted file mode 100644
index 836c7d8..0000000
--- a/eclipse.org-common/themes/Nova/images/searchButton.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/separator.png b/eclipse.org-common/themes/Nova/images/separator.png
deleted file mode 100644
index 12f7e2a..0000000
--- a/eclipse.org-common/themes/Nova/images/separator.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/siteSelector.png b/eclipse.org-common/themes/Nova/images/siteSelector.png
deleted file mode 100644
index f2e6dea..0000000
--- a/eclipse.org-common/themes/Nova/images/siteSelector.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/sitesBG.png b/eclipse.org-common/themes/Nova/images/sitesBG.png
deleted file mode 100644
index 51c2461..0000000
--- a/eclipse.org-common/themes/Nova/images/sitesBG.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/thinModalBg.png b/eclipse.org-common/themes/Nova/images/thinModalBg.png
deleted file mode 100644
index dbc4363..0000000
--- a/eclipse.org-common/themes/Nova/images/thinModalBg.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/images/up.png b/eclipse.org-common/themes/Nova/images/up.png
deleted file mode 100644
index d6af6b4..0000000
--- a/eclipse.org-common/themes/Nova/images/up.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/themes/Nova/menu.php b/eclipse.org-common/themes/Nova/menu.php
deleted file mode 100644
index d3a96f3..0000000
--- a/eclipse.org-common/themes/Nova/menu.php
+++ /dev/null
@@ -1,56 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright (c) 2008-2012 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *    Nathan Gervais (Eclipse Foundation)- initial API and implementation
- *******************************************************************************/
-	global $App;
-	$www_prefix = "";
-	$pageRSS = "";
-
-	if(isset($App)) {
-		$www_prefix = $App->getWWWPrefix();
-
-		if(isset($App->PageRSS)) {
-			if($App->PageRSS != "") {
-				$pageRSS = $App->PageRSS;
-			}
-		}
-	}
-
-	ob_start();
-	for($i = 0; $i < $Menu->getMenuItemCount(); $i++) {
-		$MenuItem = $Menu->getMenuItemAt($i);
-
-		?>
-		<li><a href="<?= $MenuItem->getURL(); ?>" target="<?= $MenuItem->getTarget(); ?>"><?= $MenuItem->getText(); ?></a></li>
-	<?php }
-	$menuHTML = ob_get_clean();
-	?>
-<div id="header">
-	<div id="menu"><ul><?=$menuHTML;?></ul></div>
-	<div id="search">
-		<form action="//www.google.com/cse" id="searchbox_017941334893793413703:sqfrdtd112s">
-		<fieldset><input type="hidden" name="cx" value="017941334893793413703:sqfrdtd112s" />
-		<input id="searchBox" type="text" name="q" size="25" />
-		<input id="searchButton" type="submit" name="sa" value="Search" />
-		</fieldset></form>
-		<script type="text/javascript" src="//www.google.com/coop/cse/brand?form=searchbox_017941334893793413703%3Asqfrdtd112s&amp;lang=en"></script>
-	</div>
-</div>
-	<?php if ($Nav == NULL) { ?>
-	<div id="novaContent">
-	<?php }
-	else { ?>
-	<div id="novaContent" class="faux"><br id="faux-br" style="clear:both;height:1em;"/>
-	<?php } ?>
-	<?php if ($App->OutDated == TRUE) {?>
-		<div class="message-box-container">
-			<div class="message-box error"><?php print $this->getOutDatedMessage();?></div>
-		</div>
-	<?php } ?>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/Nova/nav.php b/eclipse.org-common/themes/Nova/nav.php
deleted file mode 100644
index 53f82e1..0000000
--- a/eclipse.org-common/themes/Nova/nav.php
+++ /dev/null
@@ -1,58 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright (c) 2006 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *    Denis Roy (Eclipse Foundation)- initial API and implementation
- *    gbarbier mia-software com - bug 284239
- *******************************************************************************/
-?>
-<div id="leftcol">
-<ul id="leftnav">
-<?php
-    $level = 0;
-	for($i = 0; $i < $Nav->getLinkCount(); $i++) {
-		$Link = $Nav->getLinkAt($i);
-		if( $Link->getURL() == "" ) {
-			if($Link->getTarget() == "__SEPARATOR") {
-			   echo '<li class="separator"><a class="separator">';
-			   echo $Link->getText() . '<img src="/eclipse.org-common/themes/Nova/images/separator.png" alt="navigation image"/></a></li>';
-			} else {
-				echo '<li><a class="nolink" href="#">' . $Link->getText() . '</a></li>';
-			}
-		} elseif (stripos($Link->getURL(), 'project_summary.php') !== FALSE) { 
-				echo '<li class="about"><a href="' . $Link->getURL() . '">' . $Link->getText() . '</a></li>';
-		} else {
-			if($Link->getTarget() == "__SEPARATOR") {
-				echo '<li class="separator"><a class="separator" href="' . $Link->getURL() . '">';
-				echo $Link->getText() . '<img src="/eclipse.org-common/themes/Nova/images/separator.png" alt="navigation image"/></a></li>';
-			} else {
-				echo '<li><a href="' . $Link->getURL() . '" target="' . ($Link->getTarget() == "_blank" ? "_blank" : "_self") . '">' . $Link->getText() . '</a></li>';
-			}
-		}		
-	}
-echo "</ul>";
-echo $Nav->getHTMLBlock();
-/*
-	
-	<br />
-	<div class="sideitem">
-		<h6>Did you know?</h6>
-		<p>We may be adding neat tips and tricks, and other stuff here.</p>
-		<ul>
-			<li>Who writes them?</li>
-			<li>Do we moderate them?</li>
-			<li>Should the style of this box be identical to the boxes on the right?</li>
-		</ul>
-		<p>
-			<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=117903">go comment on quips! &raquo;</a>
-		</p>
-		<br />
-	</div>
-*/
-?>
-</div>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/Nova/promotion.php b/eclipse.org-common/themes/Nova/promotion.php
deleted file mode 100644
index 15c5adc..0000000
--- a/eclipse.org-common/themes/Nova/promotion.php
+++ /dev/null
@@ -1,3 +0,0 @@
-<?php
-
-?>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/Nova/siteSelector.js b/eclipse.org-common/themes/Nova/siteSelector.js
deleted file mode 100644
index 40bf67d..0000000
--- a/eclipse.org-common/themes/Nova/siteSelector.js
+++ /dev/null
@@ -1,54 +0,0 @@
-YAHOO.namespace('nova.buttons');
-YAHOO.nova.buttons.initButtons = function () {
-	var osButton = new YAHOO.widget.Button("otherSitesButton" );
-
-	var showAccordion = new YAHOO.util.Anim('sitesHolder', { height: { from:0, to:10, unit: 'em'} }, 1, YAHOO.util.Easing.easeOutStrong);
-	var hideAccordion = new YAHOO.util.Anim('sitesHolder', { height: { from:10, to:0, unit: 'em'} }, 1, YAHOO.util.Easing.easeOutStrong);
-	var el = YAHOO.util.Dom.get("sitesHolder");
-	var arrow = YAHOO.util.Dom.get("arrow");
-	
-	var saStart = function (type, args) { 
-		el.className = "visible"; 
-		arrow.className = "visible";
-		  YAHOO.util.Cookie.set("siteShow", "visible", {
-		        path: "/"         //all pages
-		    });
-
-	}	
-	
-	var haEnd = function (type, args) {
-		el.className = "invisible";
-		  YAHOO.util.Cookie.set("siteShow", "invisible", {
-		        path: "/"          //all pages
-		    });		
-	}
-	
-	var haStart = function(type, args) {
-		arrow.className = "invisible";
-	}
-	
-	showAccordion.onStart.subscribe(saStart);
-	hideAccordion.onStart.subscribe(haStart);	
-	hideAccordion.onComplete.subscribe(haEnd);
-
-	
-	var fnToggleSites = function() {
-		
-		if (el.className  == "invisible")
-		{
-			showAccordion.animate();
-		}
-		else {
-			hideAccordion.animate();
-		}
-		
-	}
-	
-	osButton.addListener("click", fnToggleSites);
-	
-}
-YAHOO.util.Event.onContentReady("otherSitesButton", YAHOO.nova.buttons.initButtons);
-
-
-
-
diff --git a/eclipse.org-common/themes/solstice/.gitignore b/eclipse.org-common/themes/solstice/.gitignore
index de49caa..f7ff50b 100644
--- a/eclipse.org-common/themes/solstice/.gitignore
+++ b/eclipse.org-common/themes/solstice/.gitignore
@@ -3,3 +3,4 @@
 /node_modules
 /app/psd
 /false/
+/npm-debug.log
diff --git a/eclipse.org-common/themes/solstice/Gruntfile.js b/eclipse.org-common/themes/solstice/Gruntfile.js
deleted file mode 100644
index a08075d..0000000
--- a/eclipse.org-common/themes/solstice/Gruntfile.js
+++ /dev/null
@@ -1,112 +0,0 @@
-module.exports = function(grunt) {
-    // Initializing the configuration object
-    grunt.initConfig({
-        copy: {
-            main: {
-                files: [
-                // includes files within path
-                {
-                    expand: true,
-                    flatten: true,
-                    src: ['bower_components/bootstrap/fonts/*'],
-                    dest: 'public/fonts/',
-                    filter: 'isFile'
-                },
-                {
-                    expand: true,
-                    flatten: true,
-                    src: ['bower_components/fontawesome/fonts/*'],
-                    dest: 'public/fonts/',
-                    filter: 'isFile'
-                },
-                {
-                    expand: true,
-                    cwd: 'bower_components/solstice-assets/images/',
-                    src: ['**'],
-                    dest: 'public/images/',
-                    filter: 'isFile'
-                },
-                ]
-            }
-        },
-        // Task configuration
-        less: {
-            development: {
-                options: {
-                    compress: true,
-                    // minifying the result
-                },
-                files: {
-                    // compiling styles.less into styles.css
-                    './public/stylesheets/styles.min.css': './bower_components/solstice-assets/stylesheets/eclipse_org/styles.less',
-                    './public/stylesheets/barebone.min.css': './bower_components/solstice-assets/stylesheets/_core/barebone/styles.less',
-                    './public/stylesheets/barebone-footer.min.css': './bower_components/solstice-assets/stylesheets/_core/barebone/footer.less',
-                    './public/stylesheets/forums.min.css': './bower_components/solstice-assets/stylesheets/eclipse_org/forums.less',
-                    './public/stylesheets/table.min.css': './bower_components/solstice-assets/stylesheets/eclipse_org/table.less',
-                    './public/stylesheets/locationtech.min.css': './bower_components/solstice-assets/stylesheets/locationtech/styles.less',
-                    './public/stylesheets/locationtech-barebone.min.css': './bower_components/solstice-assets/stylesheets/locationtech/barebone.less',
-                    './public/stylesheets/polarsys.min.css': './bower_components/solstice-assets/stylesheets/polarsys/styles.less',
-                    './public/stylesheets/polarsys-barebone.min.css': './bower_components/solstice-assets/stylesheets/polarsys/barebone.less'
-                }
-            }
-        },
-        concat: {
-            options: {
-                separator: ';',
-            },
-            js_frontend: {
-                src: ['./bower_components/jquery/dist/jquery.js', './bower_components/bootstrap/dist/js/bootstrap.js', './bower_components/bootstrapvalidator/dist/js/bootstrapValidator.min.js', './src/javascript/lib/solstice-cookies.js', './src/javascript/main.js', './src/javascript/donate.js'],
-                dest: './public/javascript/main.min.js',
-            },
-            js_barebone: {
-                src: ['./bower_components/jquery/dist/jquery.js', './bower_components/bootstrap/dist/js/bootstrap.js', './bower_components/bootstrapvalidator/dist/js/bootstrapValidator.min.js', './src/javascript/main.js'],
-                dest: './public/javascript/barebone.min.js',
-            }
-        },
-        uglify: {
-            options: {
-                mangle: false
-                // Use if you want the names of your functions and variables
-                // unchanged.
-            },
-            frontend: {
-                files: {
-                    './public/javascript/main.min.js': './public/javascript/main.min.js',
-                }
-            },
-        },
-        watch: {
-            js_frontend: {
-                files: [
-                // watched files
-                './bower_components/jquery/jquery.js',
-                './bower_components/bootstrap/dist/js/bootstrap.js',
-                './bower_components/bootstrapvalidator/dist/js/bootstrapValidator.min.js',
-                './src/javascript/main.js',
-                './src/javascript/donate.js',
-                './src/javascript/lib/solstice-cookies.js'],
-                // tasks to run
-                tasks: ['concat:js_barebone', 'concat:js_frontend', 'uglify:frontend'],
-            },
-            less: {
-                files: ['./src/stylesheets/*.less',
-                        './src/stylesheets/**/*.less',
-                        './bower_components/solstice-assets/less/*.less',
-                        './bower_components/solstice-assets/**/*.less',
-                        './html_template/barebone/stylesheets/*.less'],
-                // watched files
-                tasks: ['less'],
-                // tasks to run
-            },
-        }
-    });
-    // Plugin loading
-    grunt.loadNpmTasks('grunt-contrib-concat');
-    grunt.loadNpmTasks('grunt-contrib-watch');
-    grunt.loadNpmTasks('grunt-contrib-less');
-    grunt.loadNpmTasks('grunt-contrib-uglify');
-    grunt.loadNpmTasks('grunt-contrib-copy');
-    // Task definition
-    grunt.registerTask('default', ['watch']);
-    grunt.registerTask('init', ['copy','watch']);
-};
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/NOTICE.md b/eclipse.org-common/themes/solstice/NOTICE.md
new file mode 100644
index 0000000..c74652f
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/NOTICE.md
@@ -0,0 +1,12 @@
+# Solstice Theme
+Copyright (c) 2017 Eclipse Foundation and others.
+
+This program and the accompanying materials are made available under the terms
+of the Eclipse Public License 2.0 which is available at
+http://www.eclipse.org/legal/epl-2.0.html.
+
+This product includes the following third party content which are subject to the MIT License:
+
+* Bootstrap - http://getbootstrap.com/
+* Yamm3 - https://github.com/chrisguindon/yamm3
+* Font Awesome - http://fontawesome.io/
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/body.php b/eclipse.org-common/themes/solstice/body.php
deleted file mode 100644
index 19f72dc..0000000
--- a/eclipse.org-common/themes/solstice/body.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright (c) 2016 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *    Christopher Guindon (Eclipse Foundation) - Initial implementation
- *******************************************************************************/
-?>
-<?php print $this->getBreadcrumbHtml();?>
-<?php print $this->getPromoHtml();?>
-<main<?php print $this->getAttributes('main');?>>
-  <div<?php print $this->getAttributes('main-container');?>>
-    <?php print $this->getDeprecatedMessage();?>
-    <?php print $this->getHeaderNav();?>
-    <?php print $this->getThemeFile('nav');?>
-    <?php print $this->getSystemMessages();?>
-    <?php print $this->getThemeVariables('main_container_html');?>
-    <?php print $this->getHtml();?>
-  </div>
-</main> <!-- /#main-content-container-row -->
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/bower.json b/eclipse.org-common/themes/solstice/bower.json
deleted file mode 100644
index a899064..0000000
--- a/eclipse.org-common/themes/solstice/bower.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
-  "name": "solstice",
-  "version": "0.0.1",
-  "authors": [
-    "Christopher Guindon <chris.guindon@eclipse.org>"
-  ],
-  "description": "Solstice is a responsive theme for eclipse.org.",
-  "license": "EPL",
-  "homepage": "http://www.chrisguindon.com",
-  "private": true,
-  "ignore": [
-    "**/.*",
-    "node_modules",
-    "bower_components",
-    "test",
-    "tests"
-  ],
-  "devDependencies": {
-    "bootstrap": "3.3.6",
-    "yamm3": "git://github.com/chrisguindon/yamm3#69ba4a32b3b7228421920d6300011745be374029",
-    "fontawesome": "4.7.0",
-    "solstice-assets": "git@github.com:EclipseFdn/solstice-assets.git",
-    "bootstrapValidator": "~0.5.3"
-  }
-}
diff --git a/eclipse.org-common/themes/solstice/docs/bootstrap/carousel.php b/eclipse.org-common/themes/solstice/docs/bootstrap/carousel.php
index a2149aa..b7d7356 100644
--- a/eclipse.org-common/themes/solstice/docs/bootstrap/carousel.php
+++ b/eclipse.org-common/themes/solstice/docs/bootstrap/carousel.php
@@ -36,4 +36,4 @@
 
 <h4>Code</h4>
 
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>
\ No newline at end of file
+<pre><?php print htmlentities($html); ?></pre>
\ No newline at end of file
diff --git a/eclipse.org-common/docs/index.php b/eclipse.org-common/themes/solstice/docs/classes.php
similarity index 100%
rename from eclipse.org-common/docs/index.php
rename to eclipse.org-common/themes/solstice/docs/classes.php
diff --git a/eclipse.org-common/docs/classes/captcha.php b/eclipse.org-common/themes/solstice/docs/classes/captcha.php
similarity index 100%
rename from eclipse.org-common/docs/classes/captcha.php
rename to eclipse.org-common/themes/solstice/docs/classes/captcha.php
diff --git a/eclipse.org-common/themes/solstice/docs/components/block-box.php b/eclipse.org-common/themes/solstice/docs/components/block-box.php
index 50449f9..5e27c91 100644
--- a/eclipse.org-common/themes/solstice/docs/components/block-box.php
+++ b/eclipse.org-common/themes/solstice/docs/components/block-box.php
@@ -1,6 +1,22 @@
+<?php
+/**
+ * Copyright (c) 2014, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+
 <?php ob_start(); ?>
-<div class="block-box block-box-classic">
-  <h3>Block Title</h3>
+<div class="sideitem">
+  <h6>Block Title</h6>
   <div class="content">
     <p>Content goes here...</p>
   </div>
@@ -12,4 +28,4 @@
 
 <h4>Code</h4>
 
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>
\ No newline at end of file
+<pre><?php print htmlentities($html); ?></pre>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/docs/components/breadcrumbs.php b/eclipse.org-common/themes/solstice/docs/components/breadcrumbs.php
index d586ca2..bc99685 100644
--- a/eclipse.org-common/themes/solstice/docs/components/breadcrumbs.php
+++ b/eclipse.org-common/themes/solstice/docs/components/breadcrumbs.php
@@ -1,12 +1,33 @@
+<?php
+/**
+ * Copyright (c) 2014, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+
 <?php ob_start(); ?>
-<section class="defaut-breadcrumbs hidden-print">
+<section class="default-breadcrumbs hidden-print breadcrumbs-default-margin" id="breadcrumb">
   <div class="container">
-    <ol class="breadcrumb">
-      <li><a href="https://www.eclipse.org/">Home</a></li>
-      <li><a href="https://www.eclipse.org/projects/">Projects</a></li>
-      <li><a href="https://www.eclipse.org/eclipse.org-common">eclipse.org-common</a></li>
-      <li class="active">Solstice documentation</li>
-    </ol>
+    <h3 class="sr-only">Breadcrumbs</h3>
+    <div class="row">
+      <div class="col-sm-24">
+        <ol class="breadcrumb">
+          <li><a href="https://www.eclipse.org/">Home</a></li>
+          <li><a href="https://www.eclipse.org/projects/">Projects</a></li>
+          <li><a href="https://www.eclipse.org/eclipse.org-common">eclipse.org-common</a></li>
+          <li class="active">Solstice documentation</li>
+        </ol>
+      </div>
+    </div>
   </div>
 </section><?php $html = ob_get_clean();?>
 
@@ -16,5 +37,5 @@
 <?php print $html;?>
 <div class="container">
 <h4>Code</h4>
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>
+<pre><?php print htmlentities($html); ?></pre>
 
diff --git a/eclipse.org-common/themes/solstice/docs/components/btn-cfa.php b/eclipse.org-common/themes/solstice/docs/components/btn-cfa.php
index ecaf0b6..1468677 100644
--- a/eclipse.org-common/themes/solstice/docs/components/btn-cfa.php
+++ b/eclipse.org-common/themes/solstice/docs/components/btn-cfa.php
@@ -1,13 +1,25 @@
-<?php ob_start(); ?>
-<?php print $Theme->getCfaButton();?>
-<?php $html = ob_end_flush();?>
+<?php
+/**
+ * Copyright (c) 2014, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
 
 <h3 id="section-btncfa">Call For Action Button link</h3>
 <p>Update or replace the CFA buttonin the header of solstice.</p>
-<?php print $html;?>
+<?php print $Theme->getCfaButton();;?>
 
 <h4>PHP Code</h4>
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true">
+<pre>
 &lt;?php
 
   $variables = array();
@@ -24,7 +36,7 @@
   // Set Solstice theme variables (Array)
   $App->setThemeVariables($variables);
 
-</div>
+</pre>
 <h4>HTML Output</h4>
 
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>
\ No newline at end of file
+<pre><?php print htmlentities($Theme->getCfaButton()); ?></pre>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/docs/components/discover-search.php b/eclipse.org-common/themes/solstice/docs/components/discover-search.php
deleted file mode 100644
index 5a40792..0000000
--- a/eclipse.org-common/themes/solstice/docs/components/discover-search.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php ob_start(); ?>
-<div class="discover-search">
-  <div class="container">
-    <div class="col-xs-24">
-      <div class="row">
-        <h2>Discover</h2>
-        <p class="orange"><strong>Find an Eclipse open source project.</strong></p>
-        <form action="https://projects.eclipse.org/projects/all" role="form" class="col-md-8 form-inline form-search-projects input-group custom-search-form" id="form-discover-search">
-          <input type="text" placeholder="Search" name="keys" size="25" class="form-control" id="discover-search-box">
-          <span class="input-group-btn">
-            <button type="submit" class="btn btn-default">
-              <i class="fa fa-search"></i>
-            </button>
-          </span>
-        </form>
-        <br>
-        <p><a href="//projects.eclipse.org/list-of-projects" class="btn btn-info uppercase fw-700">List of projects</a></p>
-      </div>
-    </div>
-  </div>
-</div><?php $html = ob_get_clean();?>
-
-<h3 id="section-discover-search">Discover Search</h3>
-<p>The discover search component is used on the <a href="https://eclipse.org/projects/"></a>Eclipse Projects landing page.</p>
-</div>
-<?php print $html; ?>
-<div class="container">
-<h4>Code</h4>
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/docs/components/dragdrop.php b/eclipse.org-common/themes/solstice/docs/components/dragdrop.php
index 19a5468..4ea6116 100644
--- a/eclipse.org-common/themes/solstice/docs/components/dragdrop.php
+++ b/eclipse.org-common/themes/solstice/docs/components/dragdrop.php
@@ -1,3 +1,19 @@
+<?php
+/**
+ * Copyright (c) 2014, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+
 <?php ob_start(); ?>
 <div class="drag_installbutton">
   <a href="http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=252" class="drag">
@@ -11,4 +27,4 @@
 <?php print $html; ?>
 
 <h4>Code</h4>
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>
\ No newline at end of file
+<pre><?php print htmlentities($html); ?></pre>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/docs/components/header-nav.php b/eclipse.org-common/themes/solstice/docs/components/header-nav.php
index 109c9b7..d93181f 100644
--- a/eclipse.org-common/themes/solstice/docs/components/header-nav.php
+++ b/eclipse.org-common/themes/solstice/docs/components/header-nav.php
@@ -1,4 +1,20 @@
 <?php
+/**
+ * Copyright (c) 2014, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+
+<?php
 
 // Initialize $variables.
 $variables = array();
@@ -47,17 +63,16 @@
 );
 ?>
 
-<?php ob_start(); ?>
-<?php $Theme->setThemeVariables(array('header_nav' => $variables));?>
-<?php print $Theme->getHeaderNav();?>
-<?php $html = ob_end_flush();?>
 
 <h3 id="section-headernav">Header Nav</h3>
 <p>Custom header navigation for project pages.</p><p><strong>For more information:</strong><br/> <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=436108">Bug 436108</a> - Update navigation buttons for Documentation, Download, Getting Involved and Support for project pages.</p>
-<?php print $html;?>
+<?php
+  $Theme->setThemeVariables(array('header_nav' => $variables));
+  print $Theme->getHeaderNav();
+?>
 
 <h4>PHP Code</h4>
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true">
+<pre>
 &lt;?php
   // Initialize $variables.
   $variables = array();
@@ -107,7 +122,7 @@
 
   // Set Solstice theme variables (Array)
   $App->setThemeVariables($variables);
-</div>
+</pre>
 <h4>HTML Output</h4>
 
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>
\ No newline at end of file
+<pre><?php print htmlentities($Theme->getHeaderNav()); ?></pre>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/docs/components/headerrow.php b/eclipse.org-common/themes/solstice/docs/components/headerrow.php
index 0290c0d..29a426c 100644
--- a/eclipse.org-common/themes/solstice/docs/components/headerrow.php
+++ b/eclipse.org-common/themes/solstice/docs/components/headerrow.php
@@ -1,3 +1,19 @@
+<?php
+/**
+ * Copyright (c) 2014, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+
 <?php ob_start(); ?>
 <div class="row header-row background-charcoal">
   <div class="col-md-16 header-row float-right right">
@@ -15,4 +31,4 @@
 <?php print $html; ?>
 
 <h4>Code</h4>
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>
\ No newline at end of file
+<pre><?php print htmlentities($html); ?></pre>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/docs/components/highlight.php b/eclipse.org-common/themes/solstice/docs/components/highlight.php
new file mode 100644
index 0000000..ca237a6
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/docs/components/highlight.php
@@ -0,0 +1,39 @@
+<?php
+/**
+ * Copyright (c) 2014, 2015, 2016, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+
+<?php ob_start(); ?>
+<div class="featured-footer featured-footer-newsletter background-secondary">
+  <div class="container">
+    <p><i data-feather="mail" stroke-width="1"></i></p>
+    <h2>Sign up to our Newsletter</h2>
+    <p>A fresh new issue delivered monthly</p>
+    <form action="https://www.eclipse.org/donate/process.php" method="post" target="_blank">
+      <div class="form-group">
+        <input type="hidden" name="type" value="newsletter">
+        <input type="email" value="" name="email" class="textfield-underline form-control" id="mce-EMAIL" placeholder="Email">
+      </div>
+      <input type="submit" value="Subscribe" name="subscribe" class="button btn btn-warning">
+    </form>
+  </div>
+</div>
+<?php $html = ob_get_clean();?>
+
+<h3 id="section-highlight">Highlight</h3>
+</div>
+<?php print $html; ?>
+<div class="container">
+<h4>Code</h4>
+<pre><?php print htmlentities($html); ?></pre>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/docs/components/hightlight.php b/eclipse.org-common/themes/solstice/docs/components/hightlight.php
deleted file mode 100644
index 13e7ea7..0000000
--- a/eclipse.org-common/themes/solstice/docs/components/hightlight.php
+++ /dev/null
@@ -1,59 +0,0 @@
-<?php ob_start(); ?>
-<section class="highlight background-grey">
-    <div class="container">
-      <div>
-        <div class="triangle triangle-black visible-lg"></div>
-
-        <div class="col-md-15 highlight-content">
-          <h1>Collaborative Working Groups</h1>
-            <p>Eclipse <a href="/org/workinggroups/">Working Groups</a> allow for organizations to collaborate in the development
-            of new innovations and solutions. The Eclipse Foundation is a great place to host new collaborations that follow best practices and are based on open source principles.</p>
-            <p>Check out how you can start your own <a href="/org/workinggroups/">working group</a>. </p>
-
-            <ul class="list-inline">
-
-              <li>
-                <a title="LocationTech will be the leading community for individuals and organizations to collaborate on commercially-friendly open source software that is location aware." href="//www.locationtech.org">
-                  <img height="79" alt="LocationTech will be the leading community for individuals and organizations to collaborate on commercially-friendly open source software that is location aware." src="/home/images/solstice/locationtech-169x125.jpg">
-               </a>
-             </li>
-
-            <li>
-              <a title="PolarSys - Open Source tools for the development of embedded systems." href="//polarsys.org/">
-                <img height="79" alt="PolarSys - Open Source tools for the development of embedded systems." src="/home/images/solstice/polarsys-172x125.jpg">
-              </a>
-            </li>
-
-           <li>
-             <a title="LTS - Enable organisations to collaborate when providing support and maintenance for Eclipse technologies." href="//lts.eclipse.org/">
-               <img height="79" alt="LTS - Enable organisations to collaborate when providing support and maintenance for Eclipse technologies." src="/home/images/solstice/lts-116x125.jpg">
-             </a>
-           </li>
-           <li>
-             <a title="iot.eclipse.org is where you can learn about the technologies developed at Eclipse to make Internet of Things (IoT) development simpler." href="http://iot.eclipse.org">
-               <img height="79" alt="iot.eclipse.org is where you can learn about the technologies developed at Eclipse to make Machine-to-Machine (M2M) development simpler." src="/home/images/solstice/ito-150x125.jpg">
-             </a>
-           </li>
-           <li>
-             <a title="Auto IWG - Open Source Initiative for Automotive Software Development Tools." href="//wiki.eclipse.org/Auto_IWG">
-               <img height="79" alt="Auto IWG - Open Source Initiative for Automotive Software Development Tools." src="/home/images/solstice/automotive-155x125.jpg">
-             </a>
-           </li>
-         </ul>
-       </div>
-       <div class="col-md-9 highlight-img hidden-xs hidden-sm">
-         <a href="/projects/">
-           <img alt="Eclipse Working groups" class="img-responsive" src="/home/images/solstice/badge-working-groups.jpg">
-         </a>
-       </div>
-     </div>
-  </div>
-</section>
-<?php $html = ob_get_clean();?>
-
-<h3 id="section-highlight">Highlight</h3>
-</div>
-<?php print $html; ?>
-<div class="container">
-<h4>Code</h4>
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/docs/components/landing-well.php b/eclipse.org-common/themes/solstice/docs/components/landing-well.php
index 064af38..00f1059 100644
--- a/eclipse.org-common/themes/solstice/docs/components/landing-well.php
+++ b/eclipse.org-common/themes/solstice/docs/components/landing-well.php
@@ -1,48 +1,30 @@
+<?php
+/**
+ * Copyright (c) 2014, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+
 <?php ob_start(); ?>
-<section class="landing-well">
+
+<div class="jumbotron featured-jumbotron padding-top-60">
   <div class="container">
     <div class="row">
-      <div class="col-lg-13 landing-well-content">
-        <h1><a href="/org/">Eclipse Is...</a></h1>
-        <p>An amazing open source community of <a href="/ide">Tools</a>, <a href="/projects">Projects</a> and <br><a href="/org/workinggroups">Collaborative Working Groups</a>. Discover what we have to offer and join us.</p>
-        <br>
-        <div class="btn-group">
-          <a class="btn btn-transparent" href="#sec_ide">
-            DISCOVER <span class="caret"></span>
-          </a>
-        </div>
-      </div>
-      <div class="col-lg-10 col-lg-offset-1 landing-well-action">
-        <ul class="list-inline list-glyphicon">
-          <li>
-            <a href="/ide/">
-              <div class="col-md-8 circle circle-dark">
-                <i class="fa fa-desktop"></i>
-                 <h3 style="margin:32px 0 0 5px;">IDE &amp; Tools</h3>
-              </div>
-            </a>
-          </li>
-          <li>
-            <a href="/projects/">
-              <div class="col-md-8 circle circle-dark">
-                <i class="fa fa-puzzle-piece" style="margin-left:10px;"></i>
-                <h3>Community of Projects</h3>
-              </div>
-            </a>
-          </li>
-          <li>
-            <a href="/org/workinggroups/">
-              <div class="col-md-8 circle circle-dark">
-                <i class="fa fa-users"></i>
-                <h3>Collaborative Working Groups</h3>
-              </div>
-            </a>
-          </li>
-        </ul>
+      <div class="col-md-20 col-md-offset-2 col-sm-18 col-sm-offset-3">
+        <h1>Page Title</h1>
       </div>
     </div>
   </div>
-</section>
+</div>
 <?php $html = ob_get_clean();?>
 
 <h3 id="section-landing-well">Landing-well</h3>
@@ -50,4 +32,12 @@
 <?php print $html; ?>
 <div class="container">
 <h4>Code</h4>
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>
\ No newline at end of file
+<pre>
+&lt;?php
+ob_start();
+?&rt;
+<?php print htmlentities($html); ?>
+&lt;?php
+$extra_header_html = ob_get_clean();
+$Theme->setExtraHeaderHtml($extra_header_html);
+</pre>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/docs/components/news-list.php b/eclipse.org-common/themes/solstice/docs/components/news-list.php
index f1fef31..d7ff1c5 100644
--- a/eclipse.org-common/themes/solstice/docs/components/news-list.php
+++ b/eclipse.org-common/themes/solstice/docs/components/news-list.php
@@ -1,19 +1,74 @@
+<?php
+/**
+ * Copyright (c) 2014, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ * Christopher Guindon (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+
 <?php ob_start(); ?>
-<div class="news-list">
-  <h2><a href="/community/news/eclipsenews.php">Announcements</a></h2>
-  <div class="news_item_header"><a title="Subscribe to our RSS-feed" class="link-rss-feed  orange" href="http://feeds.feedburner.com/eclipse/fnews"><i class="fa fa-rss"></i> <span>Subscribe to our RSS-feed</span></a></div>
-  <div class="news_item">
-    <div class="news_item_date">2014/07/08</div>
-    <div class="news_item_title">
-      <h3><a href="https://www.eclipsecon.org/europe2014/cfp">EclipseCon Europe - Call for Papers</a></h3>
+<div class="news-list news-list-match-height">
+  <div class="container">
+    <div class="row">
+      <div class="col-lg-10 col-lg-offset-2 col-md-12 news-list-col padding-bottom-50">
+        <div class="news-list-icon text-center">
+          <i data-feather="activity" stroke-width="1"></i>
+        </div>
+        <h2 class="text-center">Announcements</h2>
+        <ul class="news-list-media list-unstyled">
+          <li>
+            <a href="#" class="media media-link">
+            <p class="media-date">2018/04/17</p>
+            <h4 class="media-heading">Title</h4>
+            <p class="media-text">This is some text.</p></a>
+          </li>
+        </ul>
+        <ul class="list-inline news-list-links">
+          <li class="news-list-links-view-all"><a
+            href="/community/news/eclipsenews.php"
+          >View all</a></li>
+          <li class="news-list-links-rss"><a
+            href="http://feeds.feedburner.com/eclipse/fnews"
+            title="Subscribe to our RSS-feed"
+          >Subscribe to our RSS-feed <i class="fa fa-rss"></i></a></li>
+        </ul>
+      </div>
+      <div class="col-lg-10 col-md-12 news-list-col padding-bottom-50">
+        <div class="news-list-icon text-center">
+          <i data-feather="activity" stroke-width="1"></i>
+        </div>
+        <h2 class="text-center">Community News</h2>
+        <ul class="news-list-media list-unstyled">
+          <li>
+            <a href="#" class="media media-link">
+            <p class="media-date">2018/04/17</p>
+            <h4 class="media-heading">Title</h4>
+            <p class="media-text">This is some text.</p></a>
+          </li>
+        </ul>
+        <ul class="list-inline news-list-links">
+          <li class="news-list-links-view-all"><a
+            href="/community/news/eclipseinthenews.php"
+          >View all</a></li>
+          <li class="news-list-links-rss"><a
+            href="http://feeds.feedburner.com/eclipse/cnews"
+            title="Subscribe to our RSS-feed"
+          >Subscribe to our RSS-feed <i class="fa fa-rss"></i></a></li>
+        </ul>
+      </div>
     </div>
-    <div class="news_item_description">The early-bird submission deadline is on July 31. Don't wait, propose a talk now!</div>
   </div>
-  <div class="news_view_all">&gt; <a href="/community/news/eclipsenews.php">View all</a><a title="Subscribe to our RSS-feed" class="link-rss-feed  orange" href="http://feeds.feedburner.com/eclipse/fnews"><i class="fa fa-rss"></i> <span>Subscribe to our RSS-feed</span></a></div>
 </div>
 <?php $html = ob_get_clean();?>
-
 <h3 id="section-news-list">News list</h3>
 <?php print $html; ?>
 <h4>Code</h4>
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>
\ No newline at end of file
+<pre><?php print htmlentities($html); ?></pre>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/docs/components/step-by-step.php b/eclipse.org-common/themes/solstice/docs/components/step-by-step.php
index b4c3b74..9ac8dd1 100644
--- a/eclipse.org-common/themes/solstice/docs/components/step-by-step.php
+++ b/eclipse.org-common/themes/solstice/docs/components/step-by-step.php
@@ -1,30 +1,45 @@
+<?php
+/**
+ * Copyright (c) 2014, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+
 <?php ob_start(); ?>
 <div class="step-by-step">
   <div class="container">
     <div class="row intro">
       <div class="col-xs-24">
         <h2>Participate &amp; Contribute</h2>
-        <p>Get involved in Eclipse projects to help contribute to their success.<br>
-          We welcome users and adopters as part of the community.
-        </p>
+        <p>Get involved in Eclipse projects to help contribute to their success.<br/>
+        We welcome users and adopters as part of the community.</p>
       </div>
     </div>
     <div class="row step-by-step-timeline">
       <div class="col-sm-6 step">
-        <a href="/contribute"><img href="How to contribute" src="/projects/images/projects_contribute.jpg"></a>
-        <p><a class="btn btn-info uppercase fw-700" href="/contribute">How to contribute</a></p>
+        <a class="step-icon" href="/contribute"><i data-feather="help-circle" stroke-width="1"></i></a>
+        <p><a href="/contribute" class="btn btn-info">How to contribute</a></p>
       </div>
       <div class="col-sm-6 step">
-        <a href="//wiki.eclipse.org/Development_Resources/HOWTO/Starting_A_New_Project"><img href="Start a new project" src="/projects/images/projects_start.jpg"></a>
-        <p><a class="btn btn-info uppercase fw-700" href="//wiki.eclipse.org/Development_Resources/HOWTO/Starting_A_New_Project">Start a new project</a></p>
+        <a class="step-icon" href="/projects/handbook/#starting"><i data-feather="zap" stroke-width="1"></i></a>
+        <p><a href="/projects/handbook/#starting" class="btn btn-info">Start a new project</a></p>
       </div>
       <div class="col-sm-6 step">
-        <a href="//wiki.eclipse.org/Development_Resources/HOWTO/Starting_A_New_Project#After_Creation"><img href="Running a project" src="/projects/images/projects_running.jpg"></a>
-        <p><a class="btn btn-info uppercase fw-700" href="//wiki.eclipse.org/Development_Resources/HOWTO/Starting_A_New_Project#After_Creation">Running a project</a></p>
+        <a class="step-icon" href="/projects/handbook"><i data-feather="book-open" stroke-width="1"></i></a>
+        <p><a href="/projects/handbook" class="btn btn-info">Running a project</a></p>
       </div>
       <div class="col-sm-6 step">
-        <a href="/projects/project_activity.php"><img href="Project Activity" src="/projects/images/projects_news.jpg"></a>
-        <p><a class="btn btn-info uppercase fw-700" href="/projects/project_activity.php">Project Activity</a></p>
+        <a class="step-icon" href="/projects/project_activity.php"><i data-feather="activity" stroke-width="1"></i></a>
+        <p><a href="/projects/project_activity.php" class="btn btn-info">Project Activity</a></p>
       </div>
     </div>
   </div>
@@ -33,4 +48,4 @@
 <h3 id="section-stepbystep">Step by Step</h3>
 <?php print $html; ?>
 <h4>Code</h4>
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>
\ No newline at end of file
+<pre><?php print htmlentities($html); ?></pre>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/docs/components/timeline.php b/eclipse.org-common/themes/solstice/docs/components/timeline.php
index 6a64bde..934cc73 100644
--- a/eclipse.org-common/themes/solstice/docs/components/timeline.php
+++ b/eclipse.org-common/themes/solstice/docs/components/timeline.php
@@ -1,3 +1,19 @@
+<?php
+/**
+ * Copyright (c) 2014, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+
 <?php ob_start(); ?>
 <div class="timeline">
   <div class="row">
@@ -100,4 +116,4 @@
 <h3 id="section-timeline">Timeline</h3>
 <?php print $html; ?>
 <h4>Code</h4>
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>
\ No newline at end of file
+<pre><?php print htmlentities($html); ?></pre>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/docs/components/toolbar-menu.php b/eclipse.org-common/themes/solstice/docs/components/toolbar-menu.php
index de602ca..3be780e 100644
--- a/eclipse.org-common/themes/solstice/docs/components/toolbar-menu.php
+++ b/eclipse.org-common/themes/solstice/docs/components/toolbar-menu.php
@@ -1,3 +1,19 @@
+<?php
+/**
+ * Copyright (c) 2014, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+
 <?php ob_start(); ?>
 <div class="toolbar-menu">
   <div class="container">
@@ -17,4 +33,4 @@
 <?php print $html; ?>
 <div class="container">
 <h4>Code</h4>
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>
\ No newline at end of file
+<pre><?php print htmlentities($html); ?></pre>
\ No newline at end of file
diff --git a/eclipse.org-common/docs/content/en_index.php b/eclipse.org-common/themes/solstice/docs/content/en_classes.php
similarity index 100%
rename from eclipse.org-common/docs/content/en_index.php
rename to eclipse.org-common/themes/solstice/docs/content/en_classes.php
diff --git a/eclipse.org-common/themes/solstice/docs/content/en_index.php b/eclipse.org-common/themes/solstice/docs/content/en_index.php
index 0a6555b..e04aba8 100644
--- a/eclipse.org-common/themes/solstice/docs/content/en_index.php
+++ b/eclipse.org-common/themes/solstice/docs/content/en_index.php
@@ -1,3 +1,18 @@
+<?php
+/**
+ * Copyright (c) 2014, 2015, 2016, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
 
 <style>
 hr{
@@ -11,9 +26,9 @@
 <p>We support most UI components from <a href="https://wiki.eclipse.org/Nova">Nova</a>. We’re hoping that the transition won’t be too hard for most pages.</p>
 <h2>What's included with Solstice?</h2>
 <ul>
-  <li><a href="http://getbootstrap.com/">Bootstrap</a> v3.3.1</li>
-  <li><a href="http://bootstrapvalidator.com/">BootstrapValidator</a> v0.4.5</li>
-  <li><a href="http://fortawesome.github.io/Font-Awesome/">Font Awesome</a> v4.2.0 </li>
+  <li><a href="http://getbootstrap.com/">Bootstrap</a> v3.3.7</li>
+  <li><a href="http://fortawesome.github.io/Font-Awesome/">Font Awesome</a> v4.7.0 </li>
+  <li><a href="https://feathericons.com/">Feather</a> v4.7.0 </li>
   <li><a href="http://jquery.com/">jQuery</a> v2.1.1</li>
   <li><a href="https://github.com/chrisguindon/solstice-assets">Solstice Assets</a> (Less files &amp; images)</li>
   <li><a href="http://geedmo.github.io/yamm3/">Yamm3</a> (Yet another megamenu for Bootstrap 3)</li>
@@ -22,19 +37,83 @@
 <h2>Getting Started</h2>
 <ul>
   <li><a href="https://www.youtube.com/watch?v=AbSC3506sz0&feature=youtu.be">Committer and Contributor Hangout Series -- Eclipse Website Refresh</a></li>
-  <li>Read the documentation for <a href="http://getbootstrap.com/css/">Bootstrap</a>, <a href="http://bootstrapvalidator.com/">BootstrapValidator</a> &amp; <a href="http://jquery.com/">jQuery</a></li>
-  <li><a href="http://wiki.eclipse.org/Using_Phoenix">How to use Phonix</a></li>
+  <li>Read the documentation for <a href="http://getbootstrap.com/css/">Bootstrap</a> &amp; <a href="http://jquery.com/">jQuery</a></li>
+  <li><a href="http://wiki.eclipse.org/Using_Phoenix">How to use Phoenix</a></li>
 </ul>
 
+<h2>Initiate a theme</h2>
+<p>These are the possible parameter values you can pass into $App->getThemeClass():</p>
+<ul>
+  <li>NULL (default theme)</li>
+  <li>solstice</li>
+  <li>eclipse_ide</li>
+  <li>quicksilver</li>
+</ul>
+<p>Example:</p>
+<pre>
+&lt;?php
+
+$Theme = $App->getThemeClass("quicksilver");
+</pre>
+
 <h2>Using Solstice</h2>
 <p>On a page using the eclipse.org-common $Theme Class, use this to make sure your page is always using the default theme:</p>
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true">
+<pre>
 &lt;?php
-
 $Theme->generatePage();
+</pre>
+
+<div class="alert alert-warning">
+  <h2 id="gdpr">General Data Protection Regulation (GDPR)</h2>
+
+  <p>The General Data Protection Regulation (GDPR), a new regulation in EU law on data protection and privacy
+  for all individuals within the European Union becomes enforceable on 25 May 2018.</p>
+
+  <h3>Web Analytics Tools</h3>
+  <p>We will not allow committers or project leads to collect user data or track user activity on
+  Eclipse Foundation-owned domains, since that data may be shared with the third-party companies who employ them --
+  an action for which our users have not given explicit consent.</p>
+
+  <p>Using project-specific Web Analytics Tools will be prohibited as of May 24.
+  The Eclipse Foundation has its own Google Analytics code, which is included with the unmodified Quicksilver theme.</p>
+
+  <h3>Google Analytics</h3>
+  <p class="fw-700">Projects who are not using our unmodified Quicksilver theme can still include the Eclipse Foundation Google Analytics code
+  by inserting the following code snippet in the <head> of each page:</p>
+  <br/>
+  <pre>
+  <?php print htmlentities($Theme->getGoogleTagManager());?>
+  </pre>
+  <br/>
+  <p class="fw-700">Projects who are using our unmodified Quicksilver theme can use the following code:</p>
+  <br/>
+  <pre>
+  &lt;?php
+  $Theme->getGoogleTagManager();
+  </pre>
+
+  <h3>Cookie Consent Banner</h3>
+
+  <p class="fw-700">If you are not using the Eclipse Foundation look and feel, you can still load our
+  cookie consent banner, which include a link to the Eclipse Foundation Private Policy, by adding the following
+  code snippet in the &lt;head&gt; of each page:</p>
+  <br/>
+  <pre>
+  <?php print htmlentities('<link rel="stylesheet" type="text/css" href="//www.eclipse.org/eclipse.org-common/themes/solstice/public/stylesheets/vendor/cookieconsent/cookieconsent.min.css" />'). PHP_EOL; ?>
+  <?php print htmlentities('<script src="//www.eclipse.org/eclipse.org-common/themes/solstice/public/javascript/vendor/cookieconsent/default.min.js"></script>');?>
+  </pre>
+
+  <h3>Validating Consent</h3>
+  <p class="fw-700">If you include widgets from a 3rd party website, you might need to validate consent before you can include it:</p>
+    <br/>
+  <pre>
+  &lt;?php
+  if ($Theme->hasCookieConsent()) {
+    //Insert widgets from a 3rd party
+  }
+  </pre>
 
 </div>
-
 <h2 id="starterkit">Starterkit</h2>
 <p>The <a href="/eclipse.org-common/themes/solstice/docs/starterkit/">starterkit</a> includes all the files required to create a <strong>standard page</strong> and also a <strong>Press Release</strong> page with Solstice. The source code is available <a href="http://git.eclipse.org/c/www.eclipse.org/eclipse.org-common.git/tree/themes/solstice/docs/starterkit/">here</a>.</p>
 <p> <p><a href="/eclipse.org-common/themes/solstice/docs/starterkit/solstice-starterkit.zip" class="btn btn-warning">Download Starterkit</a></p></p>
@@ -42,7 +121,8 @@
 
 <h2>Theme variables</h2>
 <p>It's now possible to alter the Solstice theme using <code>$App->setThemeVariables($variables);</code>.</p>
-<div class="editor" data-editor-lang="html" data-editor-no-focus="true">
+
+<pre>
 &lt;?php
 
   // Initialize $variables.
@@ -69,11 +149,11 @@
 
   // Set Solstice theme variables (Array)
   $App->setThemeVariables($variables);
-</div>
+</pre>
 
 <h2>Templates</h2>
 <?php
-  $themes = array('solstice', 'polarsys', 'locationtech');
+  $themes = array('default','eclipse_ide', 'polarsys', 'locationtech');
 ?>
 <?php foreach ($themes as $t) :?>
     <h3><?php print ucfirst($t);?></h3>
@@ -84,6 +164,7 @@
         <li><a href="/eclipse.org-common/themes/solstice/html_template/index.php?theme=<?php print $t;?>&layout=default-header">Header</a></li>
         <li><a href="/eclipse.org-common/themes/solstice/html_template/index.php?theme=<?php print $t;?>&layout=default-footer">Footer</a></li>
         <li><a href="/eclipse.org-common/themes/solstice/html_template/index.php?theme=<?php print $t;?>&layout=default">Full page</a></li>
+        <li><a href="/eclipse.org-common/themes/solstice/html_template/index.php?theme=<?php print $t;?>&layout=default-fluid">Fluid (Full page)</a></li>
       </ul>
     </div>
     <div class="col-md-8">
@@ -102,6 +183,24 @@
   </div>
 <?php endforeach;?>
 <p>*A barebone HTML header &amp; footer to adapt the look to subsites, such as Bugzilla, Forums, Mailing lists &amp; events.eclipse.org.</p>
+<pre>
+  // List of available layout to chose from
+  $acceptable_layouts = array(
+    'default',
+    'default-header',
+    'default-footer',
+    'default-fluid',
+    'barebone',
+    'thin',
+    'thin-header',
+    'default-with-footer-min',
+    'thin-with-footer-min',
+  );
+  $Theme->setLayout($acceptable_layouts[0]);
+</pre>
+
+<h2>Eclipse.org-common Classes</h2>
+<p> Visit our <a href="classes.php">PHP classes</a> page for some documentation and example of how to use the API from eclipse.org-common.</p>
 
 <h2>CSS</h2>
 <p><a href="https://github.com/chrisguindon/solstice-assets/blob/master/stylesheets/classes.less">classes.less</a>
@@ -115,11 +214,10 @@
   <li><a href="#section-block-box">Block-box</a></li>
   <li><a href="#section-breadcrumbs">Breadcrumbs</a></li>
   <li><a href="#section-btncfa">Call For Action Button link</a></li>
-  <li><a href="#section-discover-search">Discover Search</a></li>
   <li><a href="#section-dragdrop">Marketplace Drag and Drop install</a></li>
   <li><a href="#section-headernav">Header Nav</a></li>
   <li><a href="#section-headerrow">Header Row</a></li>
-  <li><a href="#section-highlight">Highlight</a></li>
+  <li><a href="#section-highlight">Block Highlight</a></li>
   <li><a href="#section-landing-well">Landing well</a></li>
   <li><a href="#section-news-list">News list</a></li>
   <li><a href="#section-stepbystep">Step by Step</a></li>
@@ -130,11 +228,10 @@
 <?php include('components/block-box.php');?><hr/>
 <?php include('components/breadcrumbs.php');?><hr/>
 <?php include('components/btn-cfa.php');?><hr/>
-<?php include('components/discover-search.php');?><hr/>
 <?php include('components/dragdrop.php');?><hr/>
 <?php include('components/header-nav.php');?><hr/>
 <?php include('components/headerrow.php');?><hr/>
-<?php include('components/hightlight.php');?><hr/>
+<?php include('components/highlight.php');?><hr/>
 <?php include('components/landing-well.php');?><hr/>
 <?php include('components/news-list.php');?><hr/>
 <?php include('components/step-by-step.php');?><hr/>
diff --git a/eclipse.org-common/themes/solstice/docs/content/en_typo.php b/eclipse.org-common/themes/solstice/docs/content/en_typo.php
index cd9b1ca..9257f19 100644
--- a/eclipse.org-common/themes/solstice/docs/content/en_typo.php
+++ b/eclipse.org-common/themes/solstice/docs/content/en_typo.php
@@ -1,19 +1,19 @@
 <?php
-/*******************************************************************************
- * Copyright (c) 2014, 2015, 2016 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2014, 2015, 2016, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Christopher Guindon (Eclipse Foundation) - Initial implementation
- *******************************************************************************/
+ * Christopher Guindon (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 ?>
 
-<!-- Main content area -->
-<div id="midcolumn">
-
   <h1>Typography</h1>
 
   <!-- Headings -->
@@ -422,18 +422,3 @@
     <h4>Auto-truncating</h4>
     <p>Horizontal description lists will truncate terms that are too long to fit in the left column with <code>text-overflow</code>. In narrower viewports, they will change to the default stacked layout.</p>
   </div>
-
-
-</div>
-<!-- ./end  #midcolumn -->
-
-<!-- Start of the right column -->
-<div id="rightcolumn">
-  <div class="sideitem">
-    <h2>Related Links</h2>
-    <ul>
-      <li><a target="_self" href="/eclipse.org-common/themes/solstice/docs/">Documentation</a></li>
-    </ul>
-  </div>
-</div>
-<!-- ./end  #rightcolumn -->
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/docs/index.php b/eclipse.org-common/themes/solstice/docs/index.php
index d58582b..c462983 100644
--- a/eclipse.org-common/themes/solstice/docs/index.php
+++ b/eclipse.org-common/themes/solstice/docs/index.php
@@ -1,61 +1,77 @@
 <?php
-/*******************************************************************************
- * Copyright (c) 2014, 2015, 2016 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2014, 2015, 2016, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Christopher Guindon (Eclipse Foundation) - Initial implementation
- *******************************************************************************/
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 
-  require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
-  require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
-  require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
 
+$App = new App();
+$Nav = new Nav();
+$Menu = new Menu();
 
-  $App   = new App();
-  $Nav  = new Nav();
-  $Menu   = new Menu();
+// Begin: page-specific settings. Change these.
+$pageTitle = " How to use the Eclipse Solstice theme";
+$pageKeywords = "eclipse solstice";
+$pageAuthor = "Christopher Guindon";
 
-  # Begin: page-specific settings.  Change these.
-  $pageTitle     = " How to use the Eclipse Solstice theme";
-  $pageKeywords  = "eclipse solstice";
-  $pageAuthor    = "Christopher Guindon";
+$theme = NULL;
+$allowed_themes = array(
+  'polarsys',
+  'locationtech',
+  'solstice',
+  'eclipse_ide',
+  'quicksilver'
+);
+$_theme = $App->getHTTPParameter('theme');
+if (in_array($_theme, $allowed_themes)) {
+  $theme = $_theme;
+}
+$Theme = $App->getThemeClass($theme);
 
-  $theme = 'solstice';
-  $allowed_themes = array('polarsys', 'locationtech', 'solstice');
-  $_theme = $App->getHTTPParameter('theme');
-  if (in_array($_theme, $allowed_themes)) {
-    $theme = $_theme;
-  }
-  $Theme = $App->getThemeClass($theme);
+ob_start();
+?>
+<div class="jumbotron featured-jumbotron">
+  <div class="container">
+    <div class="row">
+      <div class="col-md-20 col-md-offset-2 col-sm-18 col-sm-offset-3">
+        <h1><?php print $pageTitle;?></h1>
+      </div>
+    </div>
+  </div>
+</div>
+<?php
+$extra_header_html = ob_get_clean();
+$Theme->setExtraHeaderHtml($extra_header_html);
 
-  // Place your html content in a file called content/en_pagename.php
-  ob_start();
-  include("content/en_" . $App->getScriptName());
-  $html = ob_get_clean();
+// Place your html content in a file called content/en_pagename.php
+ob_start();
+include ("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
 
-  $variables['btn_cfa'] = array(
-    'hide' => FALSE, // Optional - Hide the CFA button.
-    'html' => '', // Optional - Replace CFA html and insert custom HTML.
-    'class' => 'btn btn-huge btn-info', // Optional - Replace class on CFA link.
-    'href' => '/eclipse.org-common/themes/solstice/docs/starterkit/solstice-starterkit.zip', // Optional - Replace href on CFA link.
-    'text' => '<i class="fa fa-download"></i> Download StarterKit' // Optional - Replace text of CFA link.
-  );
+$variables['btn_cfa'] = array(
+  'hide' => FALSE, // Optional - Hide the CFA button.
+  'html' => '', // Optional - Replace CFA html and insert custom HTML.
+  'class' => 'btn btn-huge btn-info', // Optional - Replace class on CFA link.
+  'href' => '/eclipse.org-common/themes/solstice/docs/starterkit/solstice-starterkit.zip',
+  'text' => '<i class="fa fa-download"></i> Download StarterKit'
+);
 
-  // Set Solstice theme variables (Array)
-  $App->setThemeVariables($variables);
+// Set Solstice theme variables (Array)
+$App->setThemeVariables($variables);
 
-  $App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="//eclipse.org/orion/editor/releases/5.0/built-editor.css"/>');
-  $App->AddExtraHtmlHeader('<script src="//eclipse.org/orion/editor/releases/5.0/built-editor.min.js"></script>');
-  $App->AddExtraHtmlHeader('<script>
-  /*global require*/
-  require(["orion/editor/edit"], function(edit) {
-    edit({className: "editor"});
-  });
-</script>');
-
-  $App->generatePage($theme, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
-
+$Theme->setDisplayHeaderRight(FALSE);
+$Theme->setAttributes('header-wrapper', 'header-default-bg-img');
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/docs/starterkit/_projectCommon.php b/eclipse.org-common/themes/solstice/docs/starterkit/_projectCommon.php
index b8e6238..cc741dc 100644
--- a/eclipse.org-common/themes/solstice/docs/starterkit/_projectCommon.php
+++ b/eclipse.org-common/themes/solstice/docs/starterkit/_projectCommon.php
@@ -1,23 +1,31 @@
 <?php
-/*******************************************************************************
- * Copyright (c) 2014, 2015, 2016 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2014-2017, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Christopher Guindon (Eclipse Foundation) - Initial implementation
- *******************************************************************************/
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 
-  # Set the theme for your project's web pages.
-  # See the Committer Tools "Phoenix" secion in the How Do I? for list of themes
-  # https://dev.eclipse.org/committers/
-  $theme = "solstice";
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
 
-  # Define your project-wide Nav bars here.
-  # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank).
-  $Nav->addNavSeparator("Solstice",   "/eclipse.org-common/themes/solstice/docs/");
-  $Nav->addCustomNav("Documentation", "/eclipse.org-common/themes/solstice/docs/", "_self", NULL);
-  $Nav->addCustomNav("Source code", "http://git.eclipse.org/c/www.eclipse.org/eclipse.org-common.git/tree/themes/solstice/", "_self", NULL);
-  $Nav->addCustomNav("Using Phoenix", "http://wiki.eclipse.org/Using_Phoenix", "_self", NULL);
+$Nav  = new Nav();
+
+// Set the theme for your project's web pages.
+// See the Committer Tools "Phoenix" secion in the How Do I? for list of themes
+// https://dev.eclipse.org/committers/
+$theme = NULL;
+
+// Define your project-wide Nav bars here.
+// Format is Link text, link URL (can be http://www.someothersite.com/), target
+// (_self, _blank).
+$Nav->addNavSeparator("Solstice", "/eclipse.org-common/themes/solstice/docs/");
+$Nav->addCustomNav("Documentation", "/eclipse.org-common/themes/solstice/docs/", "_self", NULL);
+$Nav->addCustomNav("Source code", "http://git.eclipse.org/c/www.eclipse.org/eclipse.org-common.git/tree/themes/solstice/", "_self", NULL);
+$Nav->addCustomNav("Using Phoenix", "http://wiki.eclipse.org/Using_Phoenix", "_self", NULL);
diff --git a/eclipse.org-common/themes/solstice/docs/starterkit/content/en_index.php b/eclipse.org-common/themes/solstice/docs/starterkit/content/en_index.php
index 57c1f44..b757cd4 100644
--- a/eclipse.org-common/themes/solstice/docs/starterkit/content/en_index.php
+++ b/eclipse.org-common/themes/solstice/docs/starterkit/content/en_index.php
@@ -1,14 +1,17 @@
 <?php
-/*******************************************************************************
- * Copyright (c) 2014, 2015, 2016 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2014, 2015, 2016, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Christopher Guindon (Eclipse Foundation) - Initial implementation
- *******************************************************************************/
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 ?>
 
 <!-- Main content area -->
diff --git a/eclipse.org-common/themes/solstice/docs/starterkit/index.php b/eclipse.org-common/themes/solstice/docs/starterkit/index.php
index 1a53a19..242cf92 100644
--- a/eclipse.org-common/themes/solstice/docs/starterkit/index.php
+++ b/eclipse.org-common/themes/solstice/docs/starterkit/index.php
@@ -1,123 +1,114 @@
 <?php
-/*******************************************************************************
- * Copyright (c) 2014-2017 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2014-2017, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Christopher Guindon (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Christopher Guindon (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 
-  require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
-  require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
-  require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
 
-  $App   = new App();
-  $Nav  = new Nav();
-  $Menu   = new Menu();
-  $Theme = $App->getThemeClass();
-  # Shared variables/configs for all pages of your website.
-  require_once('_projectCommon.php');
+$App = new App();
 
-  # Begin: page-specific settings.  Change these.
-  $pageTitle = "Starterkit Template";
-  $Theme->setPageAuthor('Christopher Guindon');
-  $Theme->setPageKeywords('Add maximal 20 keywords and seperate them from each other by a comma en a space.');
-  $Theme->setPageTitle($pageTitle);
+// To change the theme change the following NULL value
+// To one of the following:
+// "solstice", "quicksilver", "eclipse_ide", "jakarta", "locationtech", "polarsys"
+$theme = NULL;
+$Theme = $App->getThemeClass($theme);
+
+// Shared variables/configs for all pages of your website.
+require_once ('_projectCommon.php');
+
+// Begin: page-specific settings. Change these.
+$pageTitle = "Starterkit Template";
+$Theme->setPageAuthor('Christopher Guindon');
+$Theme->setPageKeywords('Add maximal 20 keywords and seperate them from each other by a comma en a space.');
+$Theme->setPageTitle($pageTitle);
+
+if (isset($Nav)) {
   $Theme->setNav($Nav);
+}
 
-  # Initialize custom solstice $variables.
-  $variables = array();
+// Insert header navigation for project websites.
+// Bug 436108 - https://bugs.eclipse.org/bugs/show_bug.cgi?id=436108
+$links = array();
+$links[] = array(
+  'icon' => 'fa-download', // Required
+  'url' => '/downloads/', // Required
+  'title' => 'Download', // Required
+  // 'target' => '_blank', // Optional
+  'text' => 'Eclipse Distribution, Update Site, Dropins' // Optional
+);
 
-  # Add classes to <body>. (String)
-  $variables['body_classes'] = '';
+$links[] = array(
+  'icon' => 'fa-users', // Required
+  'url' => '/users/', // Required
+  'title' => 'Geting Involved', // Required
+  // 'target' => '_blank', // Optional
+  'text' => 'CVS, Workspace Setup, Wiki, Committers' // Optional
+);
 
-  # Insert custom HTML in the breadcrumb region. (String)
-  $variables['breadcrumbs_html'] = "";
+$links[] = array(
+  'icon' => 'fa-book', // Required
+  'url' => 'http://help.eclipse.org/luna/index.jsp', // Required
+  'title' => 'Documentation', // Required
+  // 'target' => '_blank', // Optional
+  'text' => 'Tutorials, Examples, Videos, Online Reference' // Optional
+);
 
-  # Hide the breadcrumbs. (Bool)
-  $variables['hide_breadcrumbs'] = FALSE;
+$links[] = array(
+  'icon' => 'fa-support', // Required
+  'url' => '/forums/', // Required
+  'title' => 'Support', // Required
+  // 'target' => '_blank', // Optional
+  'text' => 'Bug Tracker, Newsgroup Professional Support' // Optional
+);
 
-  # Insert HTML before the left nav. (String)
-  $variables['leftnav_html'] = '';
+// Initialize custom solstice $variables.
+$variables = array();
 
-  # Update the main container class (String)
-  $variables['main_container_classes'] = 'container';
+$variables['header_nav'] = array(
+  'links' => $links, // Required
+  'logo' => array( // Required
+    'src' => '/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x188.png', // Required
+    'alt' => 'The Eclipse Foundation', // Optional
+    'url' => 'http://www.eclipse.org' // Optional
+    // 'target' => '_blank' // Optional
+  )
+);
 
-  # Insert HTML after opening the main content container, before the left sidebar. (String)
-  $variables['main_container_html'] = '';
+// CFA Link - Big orange button in header
+$variables['btn_cfa'] = array(
+  'hide' => FALSE, // Optional - Hide the CFA button.
+  'html' => '', // Optional - Replace CFA html and insert custom HTML.
+  'class' => 'btn btn-huge btn-warning', // Optional - Replace class on CFA link.
+  'href' => '//www.eclipse.org/downloads/', // Optional - Replace href on CFA link.
+  'text' => '<i class="fa fa-download"></i> Download' // Optional - Replace text of CFA link.
+);
 
-  # Insert header navigation for project websites.
-  # Bug 436108 - https://bugs.eclipse.org/bugs/show_bug.cgi?id=436108
-  $links = array();
-  $links[] = array(
-    'icon' => 'fa-download', // Required
-    'url' => '/downloads/', // Required
-    'title' => 'Download', // Required
-    //'target' => '_blank', // Optional
-    'text' => 'Eclipse Distribution, Update Site, Dropins' // Optional
-  );
+// Set Solstice theme variables. (Array)
+$App->setThemeVariables($variables);
 
-  $links[] = array(
-    'icon' => 'fa-users', // Required
-    'url' => '/users/', // Required
-    'title' => 'Geting Involved', // Required
-    //'target' => '_blank', // Optional
-    'text' => 'CVS, Workspace Setup, Wiki, Committers' // Optional
-  );
+// Place your html content in a file called content/en_pagename.php
+ob_start();
+include ("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
+$Theme->setHtml($html);
 
-  $links[] = array(
-    'icon' => 'fa-book', // Required
-    'url' => 'http://help.eclipse.org/luna/index.jsp', // Required
-    'title' => 'Documentation', // Required
-    //'target' => '_blank', // Optional
-    'text' => 'Tutorials, Examples, Videos, Online Reference' // Optional
-  );
+// Insert extra html before closing </head> tag.
+// $App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css"
+// href="style.css" media="screen" />');
 
-  $links[] = array(
-    'icon' => 'fa-support', // Required
-    'url' => '/forums/', // Required
-    'title' => 'Support', // Required
-    //'target' => '_blank', // Optional
-    'text' => 'Bug Tracker, Newsgroup Professional Support' // Optional
-  );
+// Insert script/html before closing </body> tag.
+// $App->AddExtraJSFooter('<script type="text/javascript"
+// src="script.min.js"></script>');
 
-  $variables['header_nav'] = array(
-    'links' =>  $links, // Required
-    'logo' => array( // Required
-      'src' => '/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x188.png', // Required
-      'alt' => 'The Eclipse Foundation', // Optional
-      'url' => 'http://www.eclipse.org', // Optional
-      //'target' => '_blank' // Optional
-    ),
-  );
-
-  // CFA Link - Big orange button in header
-  $variables['btn_cfa'] = array(
-    'hide' => FALSE, // Optional - Hide the CFA button.
-    'html' => '', // Optional - Replace CFA html and insert custom HTML.
-    'class' => 'btn btn-huge btn-warning', // Optional - Replace class on CFA link.
-    'href' => '//www.eclipse.org/downloads/', // Optional - Replace href on CFA link.
-    'text' => '<i class="fa fa-download"></i> Download' // Optional - Replace text of CFA link.
-  );
-
-  # Set Solstice theme variables. (Array)
-  $App->setThemeVariables($variables);
-
-  # Place your html content in a file called content/en_pagename.php
-  ob_start();
-  include("content/en_" . $App->getScriptName());
-  $html = ob_get_clean();
-  $Theme->setHtml($html);
-
-  # Insert extra html before closing </head> tag.
-  //$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="style.css" media="screen" />');
-
-  # Insert script/html before closing </body> tag.
-  //$App->AddExtraJSFooter('<script type="text/javascript" src="script.min.js"></script>');
-
-  # Generate the web page
-  $Theme->generatePage();
+// Generate the web page
+$Theme->generatePage();
diff --git a/eclipse.org-common/themes/solstice/docs/starterkit/solstice-starterkit.zip b/eclipse.org-common/themes/solstice/docs/starterkit/solstice-starterkit.zip
index 9b704f1..ed25355 100644
--- a/eclipse.org-common/themes/solstice/docs/starterkit/solstice-starterkit.zip
+++ b/eclipse.org-common/themes/solstice/docs/starterkit/solstice-starterkit.zip
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/docs/typo.php b/eclipse.org-common/themes/solstice/docs/typo.php
index a5bf8ab..40915a4 100644
--- a/eclipse.org-common/themes/solstice/docs/typo.php
+++ b/eclipse.org-common/themes/solstice/docs/typo.php
@@ -1,43 +1,49 @@
 <?php
-/*******************************************************************************
- * Copyright (c) 2014, 2015, 2016 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2014, 2015, 2016, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Christopher Guindon (Eclipse Foundation) - Initial implementation
- *******************************************************************************/
+ * Christopher Guindon (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 
-	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
-	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
-	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
 
+$App = new App();
+$Theme = $App->getThemeClass();
 
-	$App 	= new App();
-	$Nav	= new Nav();
-	$Menu 	= new Menu();
+// Begin: page-specific settings. Change these.
+$pageTitle = "Solstice typography";
+$Theme->setPageAuthor('Christopher Guindon');
+$Theme->setPageKeywords('eclipse solstice');
+$Theme->setPageTitle($pageTitle);
 
-	# Begin: page-specific settings.  Change these.
-	$pageTitle 		= "Solstice typography";
-	$pageKeywords	= "eclipse solstice";
-	$pageAuthor		= "Christopher Guindon";
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
 
+$Nav = new Nav();
+$Nav->addNavSeparator("Related Links", "");
+$Nav->addCustomNav("Documentation", "/eclipse.org-common/themes/solstice/docs/", "_self", 1);
+$Theme->setNav($Nav);
 
-	// Place your html content in a file called content/en_pagename.php
-	ob_start();
-	include("content/en_" . $App->getScriptName());
-	$html = ob_get_clean();
+// Place your html content in a file called content/en_pagename.php
+ob_start();
+include ("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
 
-	$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="//eclipse.org/orion/editor/releases/5.0/built-editor.css"/>');
-	$App->AddExtraHtmlHeader('<script src="//eclipse.org/orion/editor/releases/5.0/built-editor.min.js"></script>');
-	$App->AddExtraHtmlHeader('<script>
+$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="//eclipse.org/orion/editor/releases/5.0/built-editor.css"/>');
+$App->AddExtraHtmlHeader('<script src="//eclipse.org/orion/editor/releases/5.0/built-editor.min.js"></script>');
+$App->AddExtraHtmlHeader('<script>
 	/*global require*/
 	require(["orion/editor/edit"], function(edit) {
 		edit({className: "editor"});
 	});
 </script>');
 
-	$App->generatePage('solstice', $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
-
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/footer-min.php b/eclipse.org-common/themes/solstice/footer-min.php
index 17481ef..cfb0849 100644
--- a/eclipse.org-common/themes/solstice/footer-min.php
+++ b/eclipse.org-common/themes/solstice/footer-min.php
@@ -8,10 +8,10 @@
   <a class="visible-xs" href="#top">Back to the top</a>
 </p>
 <footer role="contentinfo" id="solstice-footer-min" class="footer-min">
-  <div class="container"">
+  <div class="container">
     <div class="row">
      <div class="col-sm-13">
-       <p>Copyright &copy; <?php print date('Y');?> The Eclipse Foundation. All Rights Reserved.</p>
+       <p>Copyright &copy; Eclipse Foundation, Inc. All Rights Reserved.</p>
      </div>
      <div class="col-sm-11">
        <ul class="list-inline" id="footer-legal-links">
@@ -24,7 +24,7 @@
   </div>
 </footer>
 <!-- Placed at the end of the document so the pages load faster -->
-<script src="<?php print $this->getThemeUrl('solstice')?>public/javascript/main.min.js"></script>
+<script<?php print $this->getAttributes('script-theme-main-js');?>></script>
 <?php print $this->getExtraJsFooter();?>
 </body>
 </html>
diff --git a/eclipse.org-common/themes/solstice/footer.php b/eclipse.org-common/themes/solstice/footer.php
index 2eddb26..ae01319 100644
--- a/eclipse.org-common/themes/solstice/footer.php
+++ b/eclipse.org-common/themes/solstice/footer.php
@@ -13,8 +13,9 @@
 <p id="back-to-top">
   <a class="visible-xs" href="#top">Back to the top</a>
 </p>
-<footer role="contentinfo" id="solstice-footer">
-  <div class="container">
+<?php print $this->getFooterPrexfix();?>
+<footer<?php print $this->getAttributes('footer');?>>
+  <div<?php print $this->getAttributes('footer-container');?>>
     <div class="row">
       <section<?php print $this->getAttributes('footer1');?>>
         <?php print $this->getFooterRegion1();?>
@@ -34,7 +35,7 @@
   </div>
 </footer>
 <!-- Placed at the end of the document so the pages load faster -->
-<script src="<?php print $this->getThemeUrl('solstice')?>public/javascript/main.min.js"></script>
+<script<?php print $this->getAttributes('script-theme-main-js');?>></script>
 <?php print $this->getExtraJsFooter();?>
 </body>
 </html>
diff --git a/eclipse.org-common/themes/solstice/header.php b/eclipse.org-common/themes/solstice/header.php
index d4b096d..4a6d2f9 100644
--- a/eclipse.org-common/themes/solstice/header.php
+++ b/eclipse.org-common/themes/solstice/header.php
@@ -16,14 +16,15 @@
     <meta charset="utf-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge">
     <meta name="viewport" content="width=device-width, initial-scale=1">
+    <?php print $this->getGoogleTagManager();?>
     <meta name="author" content="<?php print $this->getPageAuthor(); ?>"/>
     <meta name="keywords" content="<?php print $this->getPageKeywords(); ?>"/>
-    <link href="//fonts.googleapis.com/css?family=Open+Sans:400,700,300,600,100" rel="stylesheet" type="text/css"/>
-    <link rel="shortcut icon" href="<?php print $this->getThemeUrl(); ?>public/images/favicon.ico"/>
-    <title><?php print $this->getPageTitle(); ?></title>
+    <link rel="shortcut icon" href="/eclipse.org-common/themes/solstice/public/images/favicon.ico"/>
+    <title><?php print $this->getTitle(); ?> | The Eclipse Foundation</title>
     <?php print $this->getExtraHeaders();?>
     <?php print $this->getScriptSettings(); ?>
   </head>
   <body<?php print $this->getAttributes('body');?>>
+    <?php //print $this->getGoogleTagManagerNoScript();?>
     <a class="sr-only" href="#content">Skip to main content</a>
     <?php print $this->getHeaderTop(); ?>
diff --git a/eclipse.org-common/themes/solstice/html_template/index.php b/eclipse.org-common/themes/solstice/html_template/index.php
index f7eb5c9..d147aac 100644
--- a/eclipse.org-common/themes/solstice/html_template/index.php
+++ b/eclipse.org-common/themes/solstice/html_template/index.php
@@ -1,23 +1,26 @@
 <?php
-/*******************************************************************************
- * Copyright (c) 2014, 2015, 2016 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2014, 2015, 2016, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Christopher Guindon (Eclipse Foundation) - Initial implementation
- *******************************************************************************/
+ *   Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 
-  require_once(realpath(dirname(__FILE__) . '/../../../system/app.class.php'));
-  $App = new App();
+require_once (realpath(dirname(__FILE__) . '/../../../system/app.class.php'));
+$App = new App();
 
-  $Theme = $App->getThemeClass($App->getHTTPParameter('theme'));
-  $Theme->setPageAuthor("Christopher Guindon");
-  $Theme->setPageKeywords("eclipse.org, Eclipse Foundation");
-  $Theme->setPageTitle('HTML Template');
-  $Theme->setHtml('<h1>HTML Template</h1>');
-  $Theme->setLayout($App->getHTTPParameter('layout'));
-  $Theme->generatePage();
+$Theme = $App->getThemeClass($App->getHTTPParameter('theme'));
+$Theme->setPageAuthor("Christopher Guindon");
+$Theme->setPageKeywords("eclipse.org, Eclipse Foundation");
+$Theme->setPageTitle('HTML Template');
+$Theme->setHtml('<h1>HTML Template</h1>');
+$Theme->setLayout($App->getHTTPParameter('layout'));
+$Theme->generatePage();
 
diff --git a/eclipse.org-common/themes/solstice/main_menu.php b/eclipse.org-common/themes/solstice/main_menu.php
index 41dcaa3..c15921a 100644
--- a/eclipse.org-common/themes/solstice/main_menu.php
+++ b/eclipse.org-common/themes/solstice/main_menu.php
@@ -12,14 +12,14 @@
 ?>
 <div<?php print $this->getAttributes('main-menu-wrapper');?>>
   <div<?php print $this->getAttributes('main-menu');?>>
-    <div id="navbar-collapse-1" class="navbar-collapse collapse">
+    <div<?php print $this->getAttributes('navbar-main-menu');?>>
       <ul<?php print $this->getAttributes('main-menu-ul-navbar');?>>
         <?php print $this->getMenu()?>
         <?php if ($this->getDisplayMore()) :?>
           <?php print $this->getMoreMenu('mobile')?>
           <!-- More -->
           <li class="dropdown eclipse-more hidden-xs">
-            <a data-toggle="dropdown" class="dropdown-toggle">More<b class="caret"></b></a>
+            <a data-toggle="dropdown" class="dropdown-toggle" role="button">More<b class="caret"></b></a>
             <ul class="dropdown-menu">
               <li>
                 <!-- Content container to add padding -->
@@ -32,10 +32,14 @@
             </ul>
           </li>
         <?php endif;?>
+        <?php if ($this->_getMenuSuffix()):?>
+          <?php print $this->_getMenuSuffix(); ?>
+        <?php endif; ?>
+
       </ul>
     </div>
     <div class="navbar-header">
-      <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-1">
+      <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-main-menu">
       <span class="sr-only">Toggle navigation</span>
       <span class="icon-bar"></span>
       <span class="icon-bar"></span>
diff --git a/eclipse.org-common/themes/solstice/menu.php b/eclipse.org-common/themes/solstice/menu.php
index ab70cc0..ad789d4 100644
--- a/eclipse.org-common/themes/solstice/menu.php
+++ b/eclipse.org-common/themes/solstice/menu.php
@@ -10,8 +10,8 @@
  *    Christopher Guindon (Eclipse Foundation) - Initial implementation
  *******************************************************************************/
 ?>
-<?php print $this->getToolbarHtml();?>
-<header role="banner"<?php print $this->getAttributes('header-wrapper');?>>
+<header<?php print $this->getAttributes('header-wrapper');?>>
+  <?php print $this->getToolbarHtml();?>
   <div<?php print $this->getAttributes('header-container');?>>
     <div<?php print $this->getAttributes('header-row');?>>
       <?php print $this->getHeaderLeft();?>
@@ -19,4 +19,5 @@
       <?php print $this->getThemeFile('main_menu');?>
     </div>
   </div>
+  <?php print $this->getExtraHeaderHtml(); ?>
 </header>
diff --git a/eclipse.org-common/themes/solstice/nav.php b/eclipse.org-common/themes/solstice/nav.php
index 9783df2..a865c58 100644
--- a/eclipse.org-common/themes/solstice/nav.php
+++ b/eclipse.org-common/themes/solstice/nav.php
@@ -15,7 +15,7 @@
 if (!empty($navigation['#items'])) :
 ?>
   <!-- nav -->
-  <aside id="leftcol" class="col-md-4">
+  <aside<?php print $this->getAttributes('main-sidebar');?>>
     <?php print $this->getThemeVariables('leftnav_html');?>
     <ul id="leftnav" class="ul-left-nav fa-ul hidden-print">
       <?php foreach ($navigation['#items'] as $link) :?>
@@ -29,7 +29,7 @@
             </li>
           <?php else: ?>
             <li>
-              <i class="fa fa-angle-double-right orange fa-fw"></i>
+              <i class="fa fa-caret-right fa-fw"></i>
               <a class="nolink" href="#"><?php print $link->getText() ?></a>
             </li>
           <?php endif; ?>
@@ -43,7 +43,7 @@
             </li>
           <?php else:?>
             <li>
-              <i class="fa fa-angle-double-right orange fa-fw"></i>
+              <i class="fa fa-caret-right fa-fw"></i>
               <a href="<?php print $link->getURL() ?>" target="<?php print ($link->getTarget() == "_blank") ? "_blank" : "_self" ?>">
                 <?php print $link->getText() ?>
               </a>
@@ -53,6 +53,10 @@
         <?php endif;?>
       <?php endforeach; ?>
     </ul>
-    <?php print $navigation['html_block']; ?>
+    <?php if (!empty( $navigation['html_block'])) :?>
+      <div<?php print $this->getAttributes('main-sidebar-html-block');?>>
+        <?php print $navigation['html_block']; ?>
+      </div>
+    <?php endif;?>
   </aside>
 <?php endif;?>
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/package-lock.json b/eclipse.org-common/themes/solstice/package-lock.json
new file mode 100644
index 0000000..fdb4478
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/package-lock.json
@@ -0,0 +1,13484 @@
+{
+  "name": "eclipsefdn-eclipse.org-common",
+  "version": "0.0.0",
+  "lockfileVersion": 1,
+  "requires": true,
+  "dependencies": {
+    "Yamm": {
+      "version": "github:geedmo/yamm3#d604f9ad80b46f361f38d06eb9157dbbbb91229a"
+    },
+    "abbrev": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
+      "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
+    },
+    "accepts": {
+      "version": "1.3.5",
+      "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz",
+      "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=",
+      "requires": {
+        "mime-types": "2.1.18",
+        "negotiator": "0.6.1"
+      }
+    },
+    "acorn": {
+      "version": "5.5.3",
+      "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.5.3.tgz",
+      "integrity": "sha512-jd5MkIUlbbmb07nXH0DT3y7rDVtkzDi4XZOUVWAer8ajmF/DTSSbl5oNFyDOl/OXA33Bl79+ypHhl2pN20VeOQ=="
+    },
+    "acorn-dynamic-import": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz",
+      "integrity": "sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ=",
+      "requires": {
+        "acorn": "4.0.13"
+      },
+      "dependencies": {
+        "acorn": {
+          "version": "4.0.13",
+          "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz",
+          "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c="
+        }
+      }
+    },
+    "adjust-sourcemap-loader": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-1.2.0.tgz",
+      "integrity": "sha512-958oaHHVEXMvsY7v7cC5gEkNIcoaAVIhZ4mBReYVZJOTP9IgKmzLjIOhTtzpLMu+qriXvLsVjJ155EeInp45IQ==",
+      "requires": {
+        "assert": "1.4.1",
+        "camelcase": "1.2.1",
+        "loader-utils": "1.1.0",
+        "lodash.assign": "4.2.0",
+        "lodash.defaults": "3.1.2",
+        "object-path": "0.9.2",
+        "regex-parser": "2.2.9"
+      },
+      "dependencies": {
+        "camelcase": {
+          "version": "1.2.1",
+          "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz",
+          "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk="
+        },
+        "lodash.defaults": {
+          "version": "3.1.2",
+          "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-3.1.2.tgz",
+          "integrity": "sha1-xzCLGNv4vJNy1wGnNJPGEZK9Liw=",
+          "requires": {
+            "lodash.assign": "3.2.0",
+            "lodash.restparam": "3.6.1"
+          },
+          "dependencies": {
+            "lodash.assign": {
+              "version": "3.2.0",
+              "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-3.2.0.tgz",
+              "integrity": "sha1-POnwI0tLIiPilrj6CsH+6OvKZPo=",
+              "requires": {
+                "lodash._baseassign": "3.2.0",
+                "lodash._createassigner": "3.1.1",
+                "lodash.keys": "3.1.2"
+              }
+            }
+          }
+        }
+      }
+    },
+    "ajv": {
+      "version": "5.5.2",
+      "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz",
+      "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=",
+      "requires": {
+        "co": "4.6.0",
+        "fast-deep-equal": "1.1.0",
+        "fast-json-stable-stringify": "2.0.0",
+        "json-schema-traverse": "0.3.1"
+      }
+    },
+    "ajv-keywords": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz",
+      "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo="
+    },
+    "align-text": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz",
+      "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
+      "requires": {
+        "kind-of": "3.2.2",
+        "longest": "1.0.1",
+        "repeat-string": "1.6.1"
+      },
+      "dependencies": {
+        "kind-of": {
+          "version": "3.2.2",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+          "requires": {
+            "is-buffer": "1.1.6"
+          }
+        }
+      }
+    },
+    "alphanum-sort": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz",
+      "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM="
+    },
+    "amdefine": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
+      "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU="
+    },
+    "ansi-gray": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz",
+      "integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=",
+      "requires": {
+        "ansi-wrap": "0.1.0"
+      }
+    },
+    "ansi-html": {
+      "version": "0.0.7",
+      "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz",
+      "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4="
+    },
+    "ansi-regex": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+      "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
+    },
+    "ansi-styles": {
+      "version": "3.2.1",
+      "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+      "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+      "requires": {
+        "color-convert": "1.9.1"
+      }
+    },
+    "ansi-wrap": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz",
+      "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768="
+    },
+    "anymatch": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
+      "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
+      "requires": {
+        "micromatch": "3.1.10",
+        "normalize-path": "2.1.1"
+      }
+    },
+    "aproba": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
+      "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw=="
+    },
+    "archive-type": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-3.2.0.tgz",
+      "integrity": "sha1-nNnABpV+vpX62tW9YJiUKoE3N/Y=",
+      "requires": {
+        "file-type": "3.9.0"
+      },
+      "dependencies": {
+        "file-type": {
+          "version": "3.9.0",
+          "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz",
+          "integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek="
+        }
+      }
+    },
+    "are-we-there-yet": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz",
+      "integrity": "sha1-u13KOCu5TwXhUZQ3PRb9O6HKEQ0=",
+      "requires": {
+        "delegates": "1.0.0",
+        "readable-stream": "2.3.6"
+      }
+    },
+    "argparse": {
+      "version": "1.0.10",
+      "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+      "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+      "requires": {
+        "sprintf-js": "1.0.3"
+      }
+    },
+    "arr-diff": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+      "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA="
+    },
+    "arr-flatten": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
+      "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
+    },
+    "arr-union": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+      "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ="
+    },
+    "array-differ": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
+      "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE="
+    },
+    "array-find-index": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
+      "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E="
+    },
+    "array-flatten": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.1.tgz",
+      "integrity": "sha1-Qmu52oQJDBg42BLIFQryCoMx4pY="
+    },
+    "array-includes": {
+      "version": "3.0.3",
+      "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz",
+      "integrity": "sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0=",
+      "requires": {
+        "define-properties": "1.1.2",
+        "es-abstract": "1.11.0"
+      }
+    },
+    "array-union": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
+      "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
+      "requires": {
+        "array-uniq": "1.0.3"
+      }
+    },
+    "array-uniq": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
+      "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY="
+    },
+    "array-unique": {
+      "version": "0.3.2",
+      "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
+      "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="
+    },
+    "asap": {
+      "version": "2.0.6",
+      "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
+      "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=",
+      "optional": true
+    },
+    "asn1": {
+      "version": "0.2.3",
+      "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz",
+      "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y="
+    },
+    "asn1.js": {
+      "version": "4.10.1",
+      "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz",
+      "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==",
+      "requires": {
+        "bn.js": "4.11.8",
+        "inherits": "2.0.3",
+        "minimalistic-assert": "1.0.1"
+      }
+    },
+    "assert": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz",
+      "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=",
+      "requires": {
+        "util": "0.10.3"
+      }
+    },
+    "assert-plus": {
+      "version": "0.2.0",
+      "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz",
+      "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ="
+    },
+    "assign-symbols": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
+      "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c="
+    },
+    "ast-types": {
+      "version": "0.9.6",
+      "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz",
+      "integrity": "sha1-ECyenpAF0+fjgpvwxPok7oYu6bk="
+    },
+    "async": {
+      "version": "2.6.0",
+      "resolved": "https://registry.npmjs.org/async/-/async-2.6.0.tgz",
+      "integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==",
+      "requires": {
+        "lodash": "4.17.10"
+      }
+    },
+    "async-each": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
+      "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0="
+    },
+    "async-each-series": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/async-each-series/-/async-each-series-1.1.0.tgz",
+      "integrity": "sha1-9C/YFV048hpbjqB8KOBj7RcAsTg="
+    },
+    "async-foreach": {
+      "version": "0.1.3",
+      "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz",
+      "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI="
+    },
+    "asynckit": {
+      "version": "0.4.0",
+      "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+      "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
+    },
+    "atob": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz",
+      "integrity": "sha1-ri1acpR38onWDdf5amMUoi3Wwio="
+    },
+    "autoprefixer": {
+      "version": "7.2.6",
+      "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-7.2.6.tgz",
+      "integrity": "sha512-Iq8TRIB+/9eQ8rbGhcP7ct5cYb/3qjNYAR2SnzLCEcwF6rvVOax8+9+fccgXk4bEhQGjOZd5TLhsksmAdsbGqQ==",
+      "requires": {
+        "browserslist": "2.11.3",
+        "caniuse-lite": "1.0.30000836",
+        "normalize-range": "0.1.2",
+        "num2fraction": "1.2.2",
+        "postcss": "6.0.22",
+        "postcss-value-parser": "3.3.0"
+      }
+    },
+    "aws-sign2": {
+      "version": "0.6.0",
+      "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz",
+      "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8="
+    },
+    "aws4": {
+      "version": "1.7.0",
+      "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.7.0.tgz",
+      "integrity": "sha512-32NDda82rhwD9/JBCCkB+MRYDp0oSvlo2IL6rQWA10PQi7tDUM3eqMSltXmY+Oyl/7N3P3qNtAlv7X0d9bI28w=="
+    },
+    "babel-code-frame": {
+      "version": "6.26.0",
+      "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
+      "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=",
+      "requires": {
+        "chalk": "1.1.3",
+        "esutils": "2.0.2",
+        "js-tokens": "3.0.2"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            }
+          }
+        },
+        "supports-color": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+          "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+        }
+      }
+    },
+    "babel-core": {
+      "version": "6.26.3",
+      "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz",
+      "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==",
+      "requires": {
+        "babel-code-frame": "6.26.0",
+        "babel-generator": "6.26.1",
+        "babel-helpers": "6.24.1",
+        "babel-messages": "6.23.0",
+        "babel-register": "6.26.0",
+        "babel-runtime": "6.26.0",
+        "babel-template": "6.26.0",
+        "babel-traverse": "6.26.0",
+        "babel-types": "6.26.0",
+        "babylon": "6.18.0",
+        "convert-source-map": "1.5.1",
+        "debug": "2.6.9",
+        "json5": "0.5.1",
+        "lodash": "4.17.10",
+        "minimatch": "3.0.4",
+        "path-is-absolute": "1.0.1",
+        "private": "0.1.8",
+        "slash": "1.0.0",
+        "source-map": "0.5.7"
+      },
+      "dependencies": {
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        }
+      }
+    },
+    "babel-generator": {
+      "version": "6.26.1",
+      "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz",
+      "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==",
+      "requires": {
+        "babel-messages": "6.23.0",
+        "babel-runtime": "6.26.0",
+        "babel-types": "6.26.0",
+        "detect-indent": "4.0.0",
+        "jsesc": "1.3.0",
+        "lodash": "4.17.10",
+        "source-map": "0.5.7",
+        "trim-right": "1.0.1"
+      },
+      "dependencies": {
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        }
+      }
+    },
+    "babel-helper-builder-binary-assignment-operator-visitor": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz",
+      "integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=",
+      "requires": {
+        "babel-helper-explode-assignable-expression": "6.24.1",
+        "babel-runtime": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-helper-call-delegate": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz",
+      "integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=",
+      "requires": {
+        "babel-helper-hoist-variables": "6.24.1",
+        "babel-runtime": "6.26.0",
+        "babel-traverse": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-helper-define-map": {
+      "version": "6.26.0",
+      "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz",
+      "integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=",
+      "requires": {
+        "babel-helper-function-name": "6.24.1",
+        "babel-runtime": "6.26.0",
+        "babel-types": "6.26.0",
+        "lodash": "4.17.10"
+      }
+    },
+    "babel-helper-explode-assignable-expression": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz",
+      "integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=",
+      "requires": {
+        "babel-runtime": "6.26.0",
+        "babel-traverse": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-helper-function-name": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz",
+      "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=",
+      "requires": {
+        "babel-helper-get-function-arity": "6.24.1",
+        "babel-runtime": "6.26.0",
+        "babel-template": "6.26.0",
+        "babel-traverse": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-helper-get-function-arity": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz",
+      "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=",
+      "requires": {
+        "babel-runtime": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-helper-hoist-variables": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz",
+      "integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=",
+      "requires": {
+        "babel-runtime": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-helper-optimise-call-expression": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz",
+      "integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=",
+      "requires": {
+        "babel-runtime": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-helper-regex": {
+      "version": "6.26.0",
+      "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz",
+      "integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=",
+      "requires": {
+        "babel-runtime": "6.26.0",
+        "babel-types": "6.26.0",
+        "lodash": "4.17.10"
+      }
+    },
+    "babel-helper-remap-async-to-generator": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz",
+      "integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=",
+      "requires": {
+        "babel-helper-function-name": "6.24.1",
+        "babel-runtime": "6.26.0",
+        "babel-template": "6.26.0",
+        "babel-traverse": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-helper-replace-supers": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz",
+      "integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=",
+      "requires": {
+        "babel-helper-optimise-call-expression": "6.24.1",
+        "babel-messages": "6.23.0",
+        "babel-runtime": "6.26.0",
+        "babel-template": "6.26.0",
+        "babel-traverse": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-helpers": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz",
+      "integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=",
+      "requires": {
+        "babel-runtime": "6.26.0",
+        "babel-template": "6.26.0"
+      }
+    },
+    "babel-loader": {
+      "version": "7.1.4",
+      "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.4.tgz",
+      "integrity": "sha512-/hbyEvPzBJuGpk9o80R0ZyTej6heEOr59GoEUtn8qFKbnx4cJm9FWES6J/iv644sYgrtVw9JJQkjaLW/bqb5gw==",
+      "requires": {
+        "find-cache-dir": "1.0.0",
+        "loader-utils": "1.1.0",
+        "mkdirp": "0.5.1"
+      }
+    },
+    "babel-messages": {
+      "version": "6.23.0",
+      "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
+      "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=",
+      "requires": {
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-check-es2015-constants": {
+      "version": "6.22.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz",
+      "integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=",
+      "requires": {
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-syntax-async-functions": {
+      "version": "6.13.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz",
+      "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU="
+    },
+    "babel-plugin-syntax-exponentiation-operator": {
+      "version": "6.13.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz",
+      "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4="
+    },
+    "babel-plugin-syntax-object-rest-spread": {
+      "version": "6.13.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz",
+      "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U="
+    },
+    "babel-plugin-syntax-trailing-function-commas": {
+      "version": "6.22.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz",
+      "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM="
+    },
+    "babel-plugin-transform-async-to-generator": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz",
+      "integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=",
+      "requires": {
+        "babel-helper-remap-async-to-generator": "6.24.1",
+        "babel-plugin-syntax-async-functions": "6.13.0",
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-arrow-functions": {
+      "version": "6.22.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz",
+      "integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=",
+      "requires": {
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-block-scoped-functions": {
+      "version": "6.22.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz",
+      "integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=",
+      "requires": {
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-block-scoping": {
+      "version": "6.26.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz",
+      "integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=",
+      "requires": {
+        "babel-runtime": "6.26.0",
+        "babel-template": "6.26.0",
+        "babel-traverse": "6.26.0",
+        "babel-types": "6.26.0",
+        "lodash": "4.17.10"
+      }
+    },
+    "babel-plugin-transform-es2015-classes": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz",
+      "integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=",
+      "requires": {
+        "babel-helper-define-map": "6.26.0",
+        "babel-helper-function-name": "6.24.1",
+        "babel-helper-optimise-call-expression": "6.24.1",
+        "babel-helper-replace-supers": "6.24.1",
+        "babel-messages": "6.23.0",
+        "babel-runtime": "6.26.0",
+        "babel-template": "6.26.0",
+        "babel-traverse": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-computed-properties": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz",
+      "integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=",
+      "requires": {
+        "babel-runtime": "6.26.0",
+        "babel-template": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-destructuring": {
+      "version": "6.23.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz",
+      "integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=",
+      "requires": {
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-duplicate-keys": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz",
+      "integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=",
+      "requires": {
+        "babel-runtime": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-for-of": {
+      "version": "6.23.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz",
+      "integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=",
+      "requires": {
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-function-name": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz",
+      "integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=",
+      "requires": {
+        "babel-helper-function-name": "6.24.1",
+        "babel-runtime": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-literals": {
+      "version": "6.22.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz",
+      "integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=",
+      "requires": {
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-modules-amd": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz",
+      "integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=",
+      "requires": {
+        "babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
+        "babel-runtime": "6.26.0",
+        "babel-template": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-modules-commonjs": {
+      "version": "6.26.2",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz",
+      "integrity": "sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==",
+      "requires": {
+        "babel-plugin-transform-strict-mode": "6.24.1",
+        "babel-runtime": "6.26.0",
+        "babel-template": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-modules-systemjs": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz",
+      "integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=",
+      "requires": {
+        "babel-helper-hoist-variables": "6.24.1",
+        "babel-runtime": "6.26.0",
+        "babel-template": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-modules-umd": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz",
+      "integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=",
+      "requires": {
+        "babel-plugin-transform-es2015-modules-amd": "6.24.1",
+        "babel-runtime": "6.26.0",
+        "babel-template": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-object-super": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz",
+      "integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=",
+      "requires": {
+        "babel-helper-replace-supers": "6.24.1",
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-parameters": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz",
+      "integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=",
+      "requires": {
+        "babel-helper-call-delegate": "6.24.1",
+        "babel-helper-get-function-arity": "6.24.1",
+        "babel-runtime": "6.26.0",
+        "babel-template": "6.26.0",
+        "babel-traverse": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-shorthand-properties": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz",
+      "integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=",
+      "requires": {
+        "babel-runtime": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-spread": {
+      "version": "6.22.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz",
+      "integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=",
+      "requires": {
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-sticky-regex": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz",
+      "integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=",
+      "requires": {
+        "babel-helper-regex": "6.26.0",
+        "babel-runtime": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-template-literals": {
+      "version": "6.22.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz",
+      "integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=",
+      "requires": {
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-typeof-symbol": {
+      "version": "6.23.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz",
+      "integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=",
+      "requires": {
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-es2015-unicode-regex": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz",
+      "integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=",
+      "requires": {
+        "babel-helper-regex": "6.26.0",
+        "babel-runtime": "6.26.0",
+        "regexpu-core": "2.0.0"
+      }
+    },
+    "babel-plugin-transform-exponentiation-operator": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz",
+      "integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=",
+      "requires": {
+        "babel-helper-builder-binary-assignment-operator-visitor": "6.24.1",
+        "babel-plugin-syntax-exponentiation-operator": "6.13.0",
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-object-rest-spread": {
+      "version": "6.26.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz",
+      "integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=",
+      "requires": {
+        "babel-plugin-syntax-object-rest-spread": "6.13.0",
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-regenerator": {
+      "version": "6.26.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz",
+      "integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=",
+      "requires": {
+        "regenerator-transform": "0.10.1"
+      }
+    },
+    "babel-plugin-transform-runtime": {
+      "version": "6.23.0",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz",
+      "integrity": "sha1-iEkNRGUC6puOfvsP4J7E2ZR5se4=",
+      "requires": {
+        "babel-runtime": "6.26.0"
+      }
+    },
+    "babel-plugin-transform-strict-mode": {
+      "version": "6.24.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz",
+      "integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=",
+      "requires": {
+        "babel-runtime": "6.26.0",
+        "babel-types": "6.26.0"
+      }
+    },
+    "babel-preset-env": {
+      "version": "1.6.1",
+      "resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.6.1.tgz",
+      "integrity": "sha512-W6VIyA6Ch9ePMI7VptNn2wBM6dbG0eSz25HEiL40nQXCsXGTGZSTZu1Iap+cj3Q0S5a7T9+529l/5Bkvd+afNA==",
+      "requires": {
+        "babel-plugin-check-es2015-constants": "6.22.0",
+        "babel-plugin-syntax-trailing-function-commas": "6.22.0",
+        "babel-plugin-transform-async-to-generator": "6.24.1",
+        "babel-plugin-transform-es2015-arrow-functions": "6.22.0",
+        "babel-plugin-transform-es2015-block-scoped-functions": "6.22.0",
+        "babel-plugin-transform-es2015-block-scoping": "6.26.0",
+        "babel-plugin-transform-es2015-classes": "6.24.1",
+        "babel-plugin-transform-es2015-computed-properties": "6.24.1",
+        "babel-plugin-transform-es2015-destructuring": "6.23.0",
+        "babel-plugin-transform-es2015-duplicate-keys": "6.24.1",
+        "babel-plugin-transform-es2015-for-of": "6.23.0",
+        "babel-plugin-transform-es2015-function-name": "6.24.1",
+        "babel-plugin-transform-es2015-literals": "6.22.0",
+        "babel-plugin-transform-es2015-modules-amd": "6.24.1",
+        "babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
+        "babel-plugin-transform-es2015-modules-systemjs": "6.24.1",
+        "babel-plugin-transform-es2015-modules-umd": "6.24.1",
+        "babel-plugin-transform-es2015-object-super": "6.24.1",
+        "babel-plugin-transform-es2015-parameters": "6.24.1",
+        "babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
+        "babel-plugin-transform-es2015-spread": "6.22.0",
+        "babel-plugin-transform-es2015-sticky-regex": "6.24.1",
+        "babel-plugin-transform-es2015-template-literals": "6.22.0",
+        "babel-plugin-transform-es2015-typeof-symbol": "6.23.0",
+        "babel-plugin-transform-es2015-unicode-regex": "6.24.1",
+        "babel-plugin-transform-exponentiation-operator": "6.24.1",
+        "babel-plugin-transform-regenerator": "6.26.0",
+        "browserslist": "2.11.3",
+        "invariant": "2.2.4",
+        "semver": "5.5.0"
+      }
+    },
+    "babel-register": {
+      "version": "6.26.0",
+      "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz",
+      "integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=",
+      "requires": {
+        "babel-core": "6.26.3",
+        "babel-runtime": "6.26.0",
+        "core-js": "2.5.6",
+        "home-or-tmp": "2.0.0",
+        "lodash": "4.17.10",
+        "mkdirp": "0.5.1",
+        "source-map-support": "0.4.18"
+      }
+    },
+    "babel-runtime": {
+      "version": "6.26.0",
+      "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
+      "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
+      "requires": {
+        "core-js": "2.5.6",
+        "regenerator-runtime": "0.11.1"
+      }
+    },
+    "babel-template": {
+      "version": "6.26.0",
+      "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz",
+      "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=",
+      "requires": {
+        "babel-runtime": "6.26.0",
+        "babel-traverse": "6.26.0",
+        "babel-types": "6.26.0",
+        "babylon": "6.18.0",
+        "lodash": "4.17.10"
+      }
+    },
+    "babel-traverse": {
+      "version": "6.26.0",
+      "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz",
+      "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=",
+      "requires": {
+        "babel-code-frame": "6.26.0",
+        "babel-messages": "6.23.0",
+        "babel-runtime": "6.26.0",
+        "babel-types": "6.26.0",
+        "babylon": "6.18.0",
+        "debug": "2.6.9",
+        "globals": "9.18.0",
+        "invariant": "2.2.4",
+        "lodash": "4.17.10"
+      }
+    },
+    "babel-types": {
+      "version": "6.26.0",
+      "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz",
+      "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
+      "requires": {
+        "babel-runtime": "6.26.0",
+        "esutils": "2.0.2",
+        "lodash": "4.17.10",
+        "to-fast-properties": "1.0.3"
+      }
+    },
+    "babylon": {
+      "version": "6.18.0",
+      "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
+      "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ=="
+    },
+    "balanced-match": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
+      "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
+    },
+    "base": {
+      "version": "0.11.2",
+      "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
+      "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
+      "requires": {
+        "cache-base": "1.0.1",
+        "class-utils": "0.3.6",
+        "component-emitter": "1.2.1",
+        "define-property": "1.0.0",
+        "isobject": "3.0.1",
+        "mixin-deep": "1.3.1",
+        "pascalcase": "0.1.1"
+      },
+      "dependencies": {
+        "define-property": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+          "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+          "requires": {
+            "is-descriptor": "1.0.2"
+          }
+        },
+        "is-accessor-descriptor": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+          "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+          "requires": {
+            "kind-of": "6.0.2"
+          }
+        },
+        "is-data-descriptor": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+          "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+          "requires": {
+            "kind-of": "6.0.2"
+          }
+        },
+        "is-descriptor": {
+          "version": "1.0.2",
+          "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+          "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+          "requires": {
+            "is-accessor-descriptor": "1.0.0",
+            "is-data-descriptor": "1.0.0",
+            "kind-of": "6.0.2"
+          }
+        }
+      }
+    },
+    "base64-js": {
+      "version": "0.0.8",
+      "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz",
+      "integrity": "sha1-EQHpVE9KdrG8OybUUsqW16NeeXg="
+    },
+    "batch": {
+      "version": "0.6.1",
+      "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz",
+      "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY="
+    },
+    "bcrypt-pbkdf": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz",
+      "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=",
+      "optional": true,
+      "requires": {
+        "tweetnacl": "0.14.5"
+      }
+    },
+    "beeper": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz",
+      "integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak="
+    },
+    "big.js": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz",
+      "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q=="
+    },
+    "bin-build": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-2.2.0.tgz",
+      "integrity": "sha1-EfjdYfcP/Por3KpbRvXo/t1CIcw=",
+      "requires": {
+        "archive-type": "3.2.0",
+        "decompress": "3.0.0",
+        "download": "4.4.3",
+        "exec-series": "1.0.3",
+        "rimraf": "2.6.2",
+        "tempfile": "1.1.1",
+        "url-regex": "3.2.0"
+      },
+      "dependencies": {
+        "tempfile": {
+          "version": "1.1.1",
+          "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-1.1.1.tgz",
+          "integrity": "sha1-W8xOrsxKsscH2LwR2ZzMmiyyh/I=",
+          "requires": {
+            "os-tmpdir": "1.0.2",
+            "uuid": "2.0.3"
+          }
+        },
+        "uuid": {
+          "version": "2.0.3",
+          "resolved": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz",
+          "integrity": "sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho="
+        }
+      }
+    },
+    "bin-check": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-2.0.0.tgz",
+      "integrity": "sha1-hvjm9CU4k99g3DFpV/WvAqywWTA=",
+      "requires": {
+        "executable": "1.1.0"
+      }
+    },
+    "bin-version": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-1.0.4.tgz",
+      "integrity": "sha1-nrSY7m/Xb3q5p8FgQ2+JV5Q1144=",
+      "requires": {
+        "find-versions": "1.2.1"
+      }
+    },
+    "bin-version-check": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-2.1.0.tgz",
+      "integrity": "sha1-5OXfKQuQaffRETJAMe/BP90RpbA=",
+      "requires": {
+        "bin-version": "1.0.4",
+        "minimist": "1.2.0",
+        "semver": "4.3.6",
+        "semver-truncate": "1.1.2"
+      },
+      "dependencies": {
+        "minimist": {
+          "version": "1.2.0",
+          "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
+          "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
+        },
+        "semver": {
+          "version": "4.3.6",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz",
+          "integrity": "sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto="
+        }
+      }
+    },
+    "bin-wrapper": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-3.0.2.tgz",
+      "integrity": "sha1-Z9MwYmLksaXy+I7iNGT2plVneus=",
+      "requires": {
+        "bin-check": "2.0.0",
+        "bin-version-check": "2.1.0",
+        "download": "4.4.3",
+        "each-async": "1.1.1",
+        "lazy-req": "1.1.0",
+        "os-filter-obj": "1.0.3"
+      }
+    },
+    "binary-extensions": {
+      "version": "1.11.0",
+      "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz",
+      "integrity": "sha1-RqoXUftqL5PuXmibsQh9SxTGwgU="
+    },
+    "bl": {
+      "version": "1.2.2",
+      "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz",
+      "integrity": "sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==",
+      "requires": {
+        "readable-stream": "2.3.6",
+        "safe-buffer": "5.1.2"
+      }
+    },
+    "block-stream": {
+      "version": "0.0.9",
+      "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz",
+      "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=",
+      "requires": {
+        "inherits": "2.0.3"
+      }
+    },
+    "bluebird": {
+      "version": "3.5.1",
+      "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz",
+      "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA=="
+    },
+    "bn.js": {
+      "version": "4.11.8",
+      "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
+      "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA=="
+    },
+    "body-parser": {
+      "version": "1.18.2",
+      "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz",
+      "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=",
+      "requires": {
+        "bytes": "3.0.0",
+        "content-type": "1.0.4",
+        "debug": "2.6.9",
+        "depd": "1.1.2",
+        "http-errors": "1.6.3",
+        "iconv-lite": "0.4.19",
+        "on-finished": "2.3.0",
+        "qs": "6.5.1",
+        "raw-body": "2.3.2",
+        "type-is": "1.6.16"
+      },
+      "dependencies": {
+        "qs": {
+          "version": "6.5.1",
+          "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz",
+          "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A=="
+        }
+      }
+    },
+    "bonjour": {
+      "version": "3.5.0",
+      "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz",
+      "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=",
+      "requires": {
+        "array-flatten": "2.1.1",
+        "deep-equal": "1.0.1",
+        "dns-equal": "1.0.0",
+        "dns-txt": "2.0.2",
+        "multicast-dns": "6.2.3",
+        "multicast-dns-service-types": "1.1.0"
+      }
+    },
+    "boolbase": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
+      "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24="
+    },
+    "boom": {
+      "version": "2.10.1",
+      "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz",
+      "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=",
+      "requires": {
+        "hoek": "2.16.3"
+      }
+    },
+    "bootstrap": {
+      "version": "3.3.7",
+      "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.3.7.tgz",
+      "integrity": "sha1-WjiTlFSfIzMIdaOxUGVldPip63E="
+    },
+    "brace-expansion": {
+      "version": "1.1.11",
+      "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+      "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+      "requires": {
+        "balanced-match": "1.0.0",
+        "concat-map": "0.0.1"
+      }
+    },
+    "braces": {
+      "version": "2.3.2",
+      "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+      "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+      "requires": {
+        "arr-flatten": "1.1.0",
+        "array-unique": "0.3.2",
+        "extend-shallow": "2.0.1",
+        "fill-range": "4.0.0",
+        "isobject": "3.0.1",
+        "repeat-element": "1.1.2",
+        "snapdragon": "0.8.2",
+        "snapdragon-node": "2.1.1",
+        "split-string": "3.1.0",
+        "to-regex": "3.0.2"
+      },
+      "dependencies": {
+        "extend-shallow": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+          "requires": {
+            "is-extendable": "0.1.1"
+          }
+        }
+      }
+    },
+    "brorand": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
+      "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8="
+    },
+    "browserify-aes": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
+      "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
+      "requires": {
+        "buffer-xor": "1.0.3",
+        "cipher-base": "1.0.4",
+        "create-hash": "1.2.0",
+        "evp_bytestokey": "1.0.3",
+        "inherits": "2.0.3",
+        "safe-buffer": "5.1.2"
+      }
+    },
+    "browserify-cipher": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
+      "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
+      "requires": {
+        "browserify-aes": "1.2.0",
+        "browserify-des": "1.0.1",
+        "evp_bytestokey": "1.0.3"
+      }
+    },
+    "browserify-des": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.1.tgz",
+      "integrity": "sha512-zy0Cobe3hhgpiOM32Tj7KQ3Vl91m0njwsjzZQK1L+JDf11dzP9qIvjreVinsvXrgfjhStXwUWAEpB9D7Gwmayw==",
+      "requires": {
+        "cipher-base": "1.0.4",
+        "des.js": "1.0.0",
+        "inherits": "2.0.3"
+      }
+    },
+    "browserify-rsa": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz",
+      "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=",
+      "requires": {
+        "bn.js": "4.11.8",
+        "randombytes": "2.0.6"
+      }
+    },
+    "browserify-sign": {
+      "version": "4.0.4",
+      "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz",
+      "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=",
+      "requires": {
+        "bn.js": "4.11.8",
+        "browserify-rsa": "4.0.1",
+        "create-hash": "1.2.0",
+        "create-hmac": "1.1.7",
+        "elliptic": "6.4.0",
+        "inherits": "2.0.3",
+        "parse-asn1": "5.1.1"
+      }
+    },
+    "browserify-zlib": {
+      "version": "0.2.0",
+      "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
+      "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
+      "requires": {
+        "pako": "1.0.6"
+      }
+    },
+    "browserslist": {
+      "version": "2.11.3",
+      "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.11.3.tgz",
+      "integrity": "sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA==",
+      "requires": {
+        "caniuse-lite": "1.0.30000836",
+        "electron-to-chromium": "1.3.45"
+      }
+    },
+    "buffer": {
+      "version": "3.6.0",
+      "resolved": "https://registry.npmjs.org/buffer/-/buffer-3.6.0.tgz",
+      "integrity": "sha1-pyyTb3e5a/UvX357RnGAYoVR3vs=",
+      "requires": {
+        "base64-js": "0.0.8",
+        "ieee754": "1.1.11",
+        "isarray": "1.0.0"
+      }
+    },
+    "buffer-alloc": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.1.0.tgz",
+      "integrity": "sha1-BVFNM78WVtNUDGhPZbEgLpDsowM=",
+      "requires": {
+        "buffer-alloc-unsafe": "0.1.1",
+        "buffer-fill": "0.1.1"
+      }
+    },
+    "buffer-alloc-unsafe": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-0.1.1.tgz",
+      "integrity": "sha1-/+H2dVHdBVc33iUzN7/oU9+rGmo="
+    },
+    "buffer-crc32": {
+      "version": "0.2.13",
+      "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
+      "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI="
+    },
+    "buffer-fill": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-0.1.1.tgz",
+      "integrity": "sha512-YgBMBzdRLEfgxJIGu2wrvI2E03tMCFU1p7d1KhB4BOoMN0VxmTFjSyN5JtKt9z8Z9JajMHruI6SE25W96wNv7Q=="
+    },
+    "buffer-from": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.0.0.tgz",
+      "integrity": "sha512-83apNb8KK0Se60UE1+4Ukbe3HbfELJ6UlI4ldtOGs7So4KD26orJM8hIY9lxdzP+UpItH1Yh/Y8GUvNFWFFRxA=="
+    },
+    "buffer-indexof": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz",
+      "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g=="
+    },
+    "buffer-to-vinyl": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/buffer-to-vinyl/-/buffer-to-vinyl-1.1.0.tgz",
+      "integrity": "sha1-APFfruOreh3aLN5tkSG//dB7ImI=",
+      "requires": {
+        "file-type": "3.9.0",
+        "readable-stream": "2.3.6",
+        "uuid": "2.0.3",
+        "vinyl": "1.2.0"
+      },
+      "dependencies": {
+        "file-type": {
+          "version": "3.9.0",
+          "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz",
+          "integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek="
+        },
+        "uuid": {
+          "version": "2.0.3",
+          "resolved": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz",
+          "integrity": "sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho="
+        }
+      }
+    },
+    "buffer-xor": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
+      "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk="
+    },
+    "builtin-modules": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz",
+      "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8="
+    },
+    "builtin-status-codes": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
+      "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug="
+    },
+    "bytes": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
+      "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg="
+    },
+    "cacache": {
+      "version": "10.0.4",
+      "resolved": "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz",
+      "integrity": "sha512-Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==",
+      "requires": {
+        "bluebird": "3.5.1",
+        "chownr": "1.0.1",
+        "glob": "7.1.2",
+        "graceful-fs": "4.1.11",
+        "lru-cache": "4.1.3",
+        "mississippi": "2.0.0",
+        "mkdirp": "0.5.1",
+        "move-concurrently": "1.0.1",
+        "promise-inflight": "1.0.1",
+        "rimraf": "2.6.2",
+        "ssri": "5.3.0",
+        "unique-filename": "1.1.0",
+        "y18n": "4.0.0"
+      },
+      "dependencies": {
+        "y18n": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
+          "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w=="
+        }
+      }
+    },
+    "cache-base": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
+      "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
+      "requires": {
+        "collection-visit": "1.0.0",
+        "component-emitter": "1.2.1",
+        "get-value": "2.0.6",
+        "has-value": "1.0.0",
+        "isobject": "3.0.1",
+        "set-value": "2.0.0",
+        "to-object-path": "0.3.0",
+        "union-value": "1.0.0",
+        "unset-value": "1.0.0"
+      }
+    },
+    "camel-case": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz",
+      "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=",
+      "requires": {
+        "no-case": "2.3.2",
+        "upper-case": "1.1.3"
+      }
+    },
+    "camelcase": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz",
+      "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8="
+    },
+    "camelcase-keys": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz",
+      "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=",
+      "requires": {
+        "camelcase": "2.1.1",
+        "map-obj": "1.0.1"
+      }
+    },
+    "caniuse-api": {
+      "version": "1.6.1",
+      "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz",
+      "integrity": "sha1-tTTnxzTE+B7F++isoq0kNUuWLGw=",
+      "requires": {
+        "browserslist": "1.7.7",
+        "caniuse-db": "1.0.30000836",
+        "lodash.memoize": "4.1.2",
+        "lodash.uniq": "4.5.0"
+      },
+      "dependencies": {
+        "browserslist": {
+          "version": "1.7.7",
+          "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz",
+          "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=",
+          "requires": {
+            "caniuse-db": "1.0.30000836",
+            "electron-to-chromium": "1.3.45"
+          }
+        }
+      }
+    },
+    "caniuse-db": {
+      "version": "1.0.30000836",
+      "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000836.tgz",
+      "integrity": "sha1-eItsj28CmRdDsYzbvVT5bQW0uVo="
+    },
+    "caniuse-lite": {
+      "version": "1.0.30000836",
+      "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000836.tgz",
+      "integrity": "sha512-DlVR8sVTKDgd7t95U0shX3g7MeJ/DOjKOhUcaiXqnVmnO5sG4Tn2rLVOkVfPUJgnQNxnGe8/4GK0dGSI+AagQw=="
+    },
+    "capture-stack-trace": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz",
+      "integrity": "sha1-Sm+gc5nCa7pH8LJJa00PtAjFVQ0="
+    },
+    "caseless": {
+      "version": "0.11.0",
+      "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz",
+      "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c="
+    },
+    "caw": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/caw/-/caw-1.2.0.tgz",
+      "integrity": "sha1-/7Im/n78VHKI3GLuPpcHPCEtEDQ=",
+      "requires": {
+        "get-proxy": "1.1.0",
+        "is-obj": "1.0.1",
+        "object-assign": "3.0.0",
+        "tunnel-agent": "0.4.3"
+      },
+      "dependencies": {
+        "object-assign": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz",
+          "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I="
+        }
+      }
+    },
+    "center-align": {
+      "version": "0.1.3",
+      "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz",
+      "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=",
+      "requires": {
+        "align-text": "0.1.4",
+        "lazy-cache": "1.0.4"
+      }
+    },
+    "chalk": {
+      "version": "2.4.1",
+      "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
+      "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+      "requires": {
+        "ansi-styles": "3.2.1",
+        "escape-string-regexp": "1.0.5",
+        "supports-color": "5.4.0"
+      }
+    },
+    "charenc": {
+      "version": "0.0.2",
+      "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz",
+      "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc="
+    },
+    "chokidar": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.3.tgz",
+      "integrity": "sha512-zW8iXYZtXMx4kux/nuZVXjkLP+CyIK5Al5FHnj1OgTKGZfp4Oy6/ymtMSKFv3GD8DviEmUPmJg9eFdJ/JzudMg==",
+      "requires": {
+        "anymatch": "2.0.0",
+        "async-each": "1.0.1",
+        "braces": "2.3.2",
+        "fsevents": "1.2.3",
+        "glob-parent": "3.1.0",
+        "inherits": "2.0.3",
+        "is-binary-path": "1.0.1",
+        "is-glob": "4.0.0",
+        "normalize-path": "2.1.1",
+        "path-is-absolute": "1.0.1",
+        "readdirp": "2.1.0",
+        "upath": "1.0.5"
+      }
+    },
+    "chownr": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz",
+      "integrity": "sha1-4qdQQqlVGQi+vSW4Uj1fl2nXkYE="
+    },
+    "cipher-base": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
+      "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
+      "requires": {
+        "inherits": "2.0.3",
+        "safe-buffer": "5.1.2"
+      }
+    },
+    "clap": {
+      "version": "1.2.3",
+      "resolved": "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz",
+      "integrity": "sha512-4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==",
+      "requires": {
+        "chalk": "1.1.3"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            }
+          }
+        },
+        "supports-color": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+          "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+        }
+      }
+    },
+    "class-utils": {
+      "version": "0.3.6",
+      "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
+      "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
+      "requires": {
+        "arr-union": "3.1.0",
+        "define-property": "0.2.5",
+        "isobject": "3.0.1",
+        "static-extend": "0.1.2"
+      },
+      "dependencies": {
+        "define-property": {
+          "version": "0.2.5",
+          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+          "requires": {
+            "is-descriptor": "0.1.6"
+          }
+        }
+      }
+    },
+    "classnames": {
+      "version": "2.2.5",
+      "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.5.tgz",
+      "integrity": "sha1-+zgB1FNGdknvNgPH1hoCvRKb3m0="
+    },
+    "clean-css": {
+      "version": "4.1.11",
+      "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.1.11.tgz",
+      "integrity": "sha1-Ls3xRaujj1R0DybO/Q/z4D4SXWo=",
+      "requires": {
+        "source-map": "0.5.7"
+      },
+      "dependencies": {
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        }
+      }
+    },
+    "cliui": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
+      "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=",
+      "requires": {
+        "string-width": "1.0.2",
+        "strip-ansi": "3.0.1",
+        "wrap-ansi": "2.1.0"
+      },
+      "dependencies": {
+        "is-fullwidth-code-point": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
+          "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
+          "requires": {
+            "number-is-nan": "1.0.1"
+          }
+        },
+        "string-width": {
+          "version": "1.0.2",
+          "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
+          "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
+          "requires": {
+            "code-point-at": "1.1.0",
+            "is-fullwidth-code-point": "1.0.0",
+            "strip-ansi": "3.0.1"
+          }
+        }
+      }
+    },
+    "clone": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
+      "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4="
+    },
+    "clone-deep": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-2.0.2.tgz",
+      "integrity": "sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ==",
+      "requires": {
+        "for-own": "1.0.0",
+        "is-plain-object": "2.0.4",
+        "kind-of": "6.0.2",
+        "shallow-clone": "1.0.0"
+      },
+      "dependencies": {
+        "for-own": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz",
+          "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=",
+          "requires": {
+            "for-in": "1.0.2"
+          }
+        }
+      }
+    },
+    "clone-stats": {
+      "version": "0.0.1",
+      "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz",
+      "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE="
+    },
+    "co": {
+      "version": "4.6.0",
+      "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
+      "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ="
+    },
+    "coa": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz",
+      "integrity": "sha1-qe8VNmDWqGqL3sAomlxoTSF0Mv0=",
+      "requires": {
+        "q": "1.5.1"
+      }
+    },
+    "code-point-at": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
+      "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c="
+    },
+    "collection-visit": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
+      "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
+      "requires": {
+        "map-visit": "1.0.0",
+        "object-visit": "1.0.1"
+      }
+    },
+    "color": {
+      "version": "0.11.4",
+      "resolved": "https://registry.npmjs.org/color/-/color-0.11.4.tgz",
+      "integrity": "sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=",
+      "requires": {
+        "clone": "1.0.4",
+        "color-convert": "1.9.1",
+        "color-string": "0.3.0"
+      }
+    },
+    "color-convert": {
+      "version": "1.9.1",
+      "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz",
+      "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==",
+      "requires": {
+        "color-name": "1.1.3"
+      }
+    },
+    "color-name": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+      "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
+    },
+    "color-string": {
+      "version": "0.3.0",
+      "resolved": "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz",
+      "integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=",
+      "requires": {
+        "color-name": "1.1.3"
+      }
+    },
+    "color-support": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
+      "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg=="
+    },
+    "colormin": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz",
+      "integrity": "sha1-6i90IKcrlogaOKrlnsEkpvcpgTM=",
+      "requires": {
+        "color": "0.11.4",
+        "css-color-names": "0.0.4",
+        "has": "1.0.1"
+      }
+    },
+    "colors": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz",
+      "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM="
+    },
+    "combined-stream": {
+      "version": "1.0.6",
+      "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz",
+      "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=",
+      "requires": {
+        "delayed-stream": "1.0.0"
+      }
+    },
+    "commander": {
+      "version": "2.15.1",
+      "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz",
+      "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag=="
+    },
+    "commondir": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
+      "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs="
+    },
+    "component-emitter": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
+      "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY="
+    },
+    "compressible": {
+      "version": "2.0.13",
+      "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.13.tgz",
+      "integrity": "sha1-DRAgq5JLL9tNYnmHXH1tq6a6p6k=",
+      "requires": {
+        "mime-db": "1.33.0"
+      }
+    },
+    "compression": {
+      "version": "1.7.2",
+      "resolved": "http://registry.npmjs.org/compression/-/compression-1.7.2.tgz",
+      "integrity": "sha1-qv+81qr4VLROuygDU9WtFlH1mmk=",
+      "requires": {
+        "accepts": "1.3.5",
+        "bytes": "3.0.0",
+        "compressible": "2.0.13",
+        "debug": "2.6.9",
+        "on-headers": "1.0.1",
+        "safe-buffer": "5.1.1",
+        "vary": "1.1.2"
+      },
+      "dependencies": {
+        "safe-buffer": {
+          "version": "5.1.1",
+          "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz",
+          "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg=="
+        }
+      }
+    },
+    "concat-map": {
+      "version": "0.0.1",
+      "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+      "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
+    },
+    "concat-stream": {
+      "version": "1.6.2",
+      "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
+      "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
+      "requires": {
+        "buffer-from": "1.0.0",
+        "inherits": "2.0.3",
+        "readable-stream": "2.3.6",
+        "typedarray": "0.0.6"
+      }
+    },
+    "concatenate": {
+      "version": "0.0.2",
+      "resolved": "https://registry.npmjs.org/concatenate/-/concatenate-0.0.2.tgz",
+      "integrity": "sha1-C0nW6MQQR9dyjNyNYqCGYjOXtJ8=",
+      "requires": {
+        "globs": "0.1.4"
+      }
+    },
+    "config-chain": {
+      "version": "1.1.11",
+      "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.11.tgz",
+      "integrity": "sha1-q6CXR9++TD5w52am5BWG4YWfxvI=",
+      "requires": {
+        "ini": "1.3.5",
+        "proto-list": "1.2.4"
+      }
+    },
+    "connect-history-api-fallback": {
+      "version": "1.5.0",
+      "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz",
+      "integrity": "sha1-sGhzk0vF40T+9hGhlqb6rgruAVo="
+    },
+    "console-browserify": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz",
+      "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=",
+      "requires": {
+        "date-now": "0.1.4"
+      }
+    },
+    "console-control-strings": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
+      "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4="
+    },
+    "console-stream": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/console-stream/-/console-stream-0.1.1.tgz",
+      "integrity": "sha1-oJX+B7IEZZVfL6/Si11yvM2UnUQ="
+    },
+    "consolidate": {
+      "version": "0.14.5",
+      "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.14.5.tgz",
+      "integrity": "sha1-WiUEe8dvcwcmZ8jLUsmJiI9JTGM=",
+      "requires": {
+        "bluebird": "3.5.1"
+      }
+    },
+    "constants-browserify": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
+      "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U="
+    },
+    "content-disposition": {
+      "version": "0.5.2",
+      "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz",
+      "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ="
+    },
+    "content-type": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
+      "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="
+    },
+    "convert-source-map": {
+      "version": "1.5.1",
+      "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz",
+      "integrity": "sha1-uCeAl7m8IpNl3lxiz1/K7YtVmeU="
+    },
+    "cookie": {
+      "version": "0.3.1",
+      "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz",
+      "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s="
+    },
+    "cookie-signature": {
+      "version": "1.0.6",
+      "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
+      "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw="
+    },
+    "cookieconsent": {
+      "version": "3.0.6",
+      "resolved": "https://registry.npmjs.org/cookieconsent/-/cookieconsent-3.0.6.tgz",
+      "integrity": "sha512-itjtWcF5LcVgyBWfHGcmU0n9LfNZ6BzlKwm02lOqMvjacim9+83gNzsuxJc61+8tjvBXM3hfMl4jnquhHJbpxg=="
+    },
+    "copy-concurrently": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz",
+      "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==",
+      "requires": {
+        "aproba": "1.2.0",
+        "fs-write-stream-atomic": "1.0.10",
+        "iferr": "0.1.5",
+        "mkdirp": "0.5.1",
+        "rimraf": "2.6.2",
+        "run-queue": "1.0.3"
+      }
+    },
+    "copy-descriptor": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
+      "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40="
+    },
+    "core-js": {
+      "version": "2.5.6",
+      "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.6.tgz",
+      "integrity": "sha512-lQUVfQi0aLix2xpyjrrJEvfuYCqPc/HwmTKsC/VNf8q0zsjX7SQZtp4+oRONN5Tsur9GDETPjj+Ub2iDiGZfSQ=="
+    },
+    "core-util-is": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
+      "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
+    },
+    "cosmiconfig": {
+      "version": "2.2.2",
+      "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-2.2.2.tgz",
+      "integrity": "sha512-GiNXLwAFPYHy25XmTPpafYvn3CLAkJ8FLsscq78MQd1Kh0OU6Yzhn4eV2MVF4G9WEQZoWEGltatdR+ntGPMl5A==",
+      "requires": {
+        "is-directory": "0.3.1",
+        "js-yaml": "3.7.0",
+        "minimist": "1.2.0",
+        "object-assign": "4.1.1",
+        "os-homedir": "1.0.2",
+        "parse-json": "2.2.0",
+        "require-from-string": "1.2.1"
+      },
+      "dependencies": {
+        "minimist": {
+          "version": "1.2.0",
+          "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
+          "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
+        }
+      }
+    },
+    "create-ecdh": {
+      "version": "4.0.3",
+      "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz",
+      "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==",
+      "requires": {
+        "bn.js": "4.11.8",
+        "elliptic": "6.4.0"
+      }
+    },
+    "create-error-class": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz",
+      "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=",
+      "requires": {
+        "capture-stack-trace": "1.0.0"
+      }
+    },
+    "create-hash": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
+      "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
+      "requires": {
+        "cipher-base": "1.0.4",
+        "inherits": "2.0.3",
+        "md5.js": "1.3.4",
+        "ripemd160": "2.0.2",
+        "sha.js": "2.4.11"
+      }
+    },
+    "create-hmac": {
+      "version": "1.1.7",
+      "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
+      "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
+      "requires": {
+        "cipher-base": "1.0.4",
+        "create-hash": "1.2.0",
+        "inherits": "2.0.3",
+        "ripemd160": "2.0.2",
+        "safe-buffer": "5.1.2",
+        "sha.js": "2.4.11"
+      }
+    },
+    "cross-spawn": {
+      "version": "5.1.0",
+      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
+      "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
+      "requires": {
+        "lru-cache": "4.1.3",
+        "shebang-command": "1.2.0",
+        "which": "1.3.0"
+      }
+    },
+    "crypt": {
+      "version": "0.0.2",
+      "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz",
+      "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs="
+    },
+    "cryptiles": {
+      "version": "2.0.5",
+      "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz",
+      "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=",
+      "requires": {
+        "boom": "2.10.1"
+      }
+    },
+    "crypto-browserify": {
+      "version": "3.12.0",
+      "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
+      "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
+      "requires": {
+        "browserify-cipher": "1.0.1",
+        "browserify-sign": "4.0.4",
+        "create-ecdh": "4.0.3",
+        "create-hash": "1.2.0",
+        "create-hmac": "1.1.7",
+        "diffie-hellman": "5.0.3",
+        "inherits": "2.0.3",
+        "pbkdf2": "3.0.16",
+        "public-encrypt": "4.0.2",
+        "randombytes": "2.0.6",
+        "randomfill": "1.0.4"
+      }
+    },
+    "css": {
+      "version": "2.2.3",
+      "resolved": "https://registry.npmjs.org/css/-/css-2.2.3.tgz",
+      "integrity": "sha512-0W171WccAjQGGTKLhw4m2nnl0zPHUlTO/I8td4XzJgIB8Hg3ZZx71qT4G4eX8OVsSiaAKiUMy73E3nsbPlg2DQ==",
+      "requires": {
+        "inherits": "2.0.3",
+        "source-map": "0.1.43",
+        "source-map-resolve": "0.5.1",
+        "urix": "0.1.0"
+      },
+      "dependencies": {
+        "source-map": {
+          "version": "0.1.43",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz",
+          "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=",
+          "requires": {
+            "amdefine": "1.0.1"
+          }
+        }
+      }
+    },
+    "css-color-names": {
+      "version": "0.0.4",
+      "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz",
+      "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA="
+    },
+    "css-loader": {
+      "version": "0.28.11",
+      "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-0.28.11.tgz",
+      "integrity": "sha512-wovHgjAx8ZIMGSL8pTys7edA1ClmzxHeY6n/d97gg5odgsxEgKjULPR0viqyC+FWMCL9sfqoC/QCUBo62tLvPg==",
+      "requires": {
+        "babel-code-frame": "6.26.0",
+        "css-selector-tokenizer": "0.7.0",
+        "cssnano": "3.10.0",
+        "icss-utils": "2.1.0",
+        "loader-utils": "1.1.0",
+        "lodash.camelcase": "4.3.0",
+        "object-assign": "4.1.1",
+        "postcss": "5.2.18",
+        "postcss-modules-extract-imports": "1.2.0",
+        "postcss-modules-local-by-default": "1.2.0",
+        "postcss-modules-scope": "1.1.0",
+        "postcss-modules-values": "1.3.0",
+        "postcss-value-parser": "3.3.0",
+        "source-list-map": "2.0.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "css-select": {
+      "version": "1.3.0-rc0",
+      "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.3.0-rc0.tgz",
+      "integrity": "sha1-b5MZaqrnN2ZuoQNqjLFKj8t6kjE=",
+      "requires": {
+        "boolbase": "1.0.0",
+        "css-what": "2.1.0",
+        "domutils": "1.5.1",
+        "nth-check": "1.0.1"
+      }
+    },
+    "css-select-base-adapter": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.0.tgz",
+      "integrity": "sha1-AQKz0UYw34bD65+p9UVicBBs+ZA="
+    },
+    "css-selector-tokenizer": {
+      "version": "0.7.0",
+      "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz",
+      "integrity": "sha1-5piEdK6MlTR3v15+/s/OzNnPTIY=",
+      "requires": {
+        "cssesc": "0.1.0",
+        "fastparse": "1.1.1",
+        "regexpu-core": "1.0.0"
+      },
+      "dependencies": {
+        "regexpu-core": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz",
+          "integrity": "sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs=",
+          "requires": {
+            "regenerate": "1.3.3",
+            "regjsgen": "0.2.0",
+            "regjsparser": "0.1.5"
+          }
+        }
+      }
+    },
+    "css-tree": {
+      "version": "1.0.0-alpha25",
+      "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha25.tgz",
+      "integrity": "sha512-XC6xLW/JqIGirnZuUWHXCHRaAjje2b3OIB0Vj5RIJo6mIi/AdJo30quQl5LxUl0gkXDIrTrFGbMlcZjyFplz1A==",
+      "requires": {
+        "mdn-data": "1.1.2",
+        "source-map": "0.5.7"
+      },
+      "dependencies": {
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        }
+      }
+    },
+    "css-url-regex": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/css-url-regex/-/css-url-regex-1.1.0.tgz",
+      "integrity": "sha1-g4NCMMyfdMRX3lnuvRVD/uuDt+w="
+    },
+    "css-what": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.0.tgz",
+      "integrity": "sha1-lGfQMsOM+u+58teVASUwYvh/ob0="
+    },
+    "cssesc": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz",
+      "integrity": "sha1-yBSQPkViM3GgR3tAEJqq++6t27Q="
+    },
+    "cssnano": {
+      "version": "3.10.0",
+      "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz",
+      "integrity": "sha1-Tzj2zqK5sX+gFJDyPx3GjqZcHDg=",
+      "requires": {
+        "autoprefixer": "6.7.7",
+        "decamelize": "1.2.0",
+        "defined": "1.0.0",
+        "has": "1.0.1",
+        "object-assign": "4.1.1",
+        "postcss": "5.2.18",
+        "postcss-calc": "5.3.1",
+        "postcss-colormin": "2.2.2",
+        "postcss-convert-values": "2.6.1",
+        "postcss-discard-comments": "2.0.4",
+        "postcss-discard-duplicates": "2.1.0",
+        "postcss-discard-empty": "2.1.0",
+        "postcss-discard-overridden": "0.1.1",
+        "postcss-discard-unused": "2.2.3",
+        "postcss-filter-plugins": "2.0.2",
+        "postcss-merge-idents": "2.1.7",
+        "postcss-merge-longhand": "2.0.2",
+        "postcss-merge-rules": "2.1.2",
+        "postcss-minify-font-values": "1.0.5",
+        "postcss-minify-gradients": "1.0.5",
+        "postcss-minify-params": "1.2.2",
+        "postcss-minify-selectors": "2.1.1",
+        "postcss-normalize-charset": "1.1.1",
+        "postcss-normalize-url": "3.0.8",
+        "postcss-ordered-values": "2.2.3",
+        "postcss-reduce-idents": "2.4.0",
+        "postcss-reduce-initial": "1.0.1",
+        "postcss-reduce-transforms": "1.0.4",
+        "postcss-svgo": "2.1.6",
+        "postcss-unique-selectors": "2.0.2",
+        "postcss-value-parser": "3.3.0",
+        "postcss-zindex": "2.2.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "autoprefixer": {
+          "version": "6.7.7",
+          "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz",
+          "integrity": "sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=",
+          "requires": {
+            "browserslist": "1.7.7",
+            "caniuse-db": "1.0.30000836",
+            "normalize-range": "0.1.2",
+            "num2fraction": "1.2.2",
+            "postcss": "5.2.18",
+            "postcss-value-parser": "3.3.0"
+          }
+        },
+        "browserslist": {
+          "version": "1.7.7",
+          "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz",
+          "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=",
+          "requires": {
+            "caniuse-db": "1.0.30000836",
+            "electron-to-chromium": "1.3.45"
+          }
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "csso": {
+      "version": "2.3.2",
+      "resolved": "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz",
+      "integrity": "sha1-3dUsWHAz9J6Utx/FVWnyUuj/X4U=",
+      "requires": {
+        "clap": "1.2.3",
+        "source-map": "0.5.7"
+      },
+      "dependencies": {
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        }
+      }
+    },
+    "currently-unhandled": {
+      "version": "0.4.1",
+      "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
+      "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=",
+      "requires": {
+        "array-find-index": "1.0.2"
+      }
+    },
+    "cyclist": {
+      "version": "0.2.2",
+      "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz",
+      "integrity": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA="
+    },
+    "d": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz",
+      "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=",
+      "requires": {
+        "es5-ext": "0.10.42"
+      }
+    },
+    "dashdash": {
+      "version": "1.14.1",
+      "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
+      "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
+      "requires": {
+        "assert-plus": "1.0.0"
+      },
+      "dependencies": {
+        "assert-plus": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+          "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
+        }
+      }
+    },
+    "date-now": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz",
+      "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs="
+    },
+    "dateformat": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz",
+      "integrity": "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI="
+    },
+    "de-indent": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz",
+      "integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0="
+    },
+    "debug": {
+      "version": "2.6.9",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+      "requires": {
+        "ms": "2.0.0"
+      }
+    },
+    "decamelize": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
+      "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
+    },
+    "decode-uri-component": {
+      "version": "0.2.0",
+      "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
+      "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU="
+    },
+    "decompress": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/decompress/-/decompress-3.0.0.tgz",
+      "integrity": "sha1-rx3VDQbjv8QyRh033hGzjA2ZG+0=",
+      "requires": {
+        "buffer-to-vinyl": "1.1.0",
+        "concat-stream": "1.6.2",
+        "decompress-tar": "3.1.0",
+        "decompress-tarbz2": "3.1.0",
+        "decompress-targz": "3.1.0",
+        "decompress-unzip": "3.4.0",
+        "stream-combiner2": "1.1.1",
+        "vinyl-assign": "1.2.1",
+        "vinyl-fs": "2.4.4"
+      }
+    },
+    "decompress-response": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
+      "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=",
+      "requires": {
+        "mimic-response": "1.0.0"
+      }
+    },
+    "decompress-tar": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-3.1.0.tgz",
+      "integrity": "sha1-IXx4n5uURQ76rcXF5TeXj8MzxGY=",
+      "requires": {
+        "is-tar": "1.0.0",
+        "object-assign": "2.1.1",
+        "strip-dirs": "1.1.1",
+        "tar-stream": "1.6.0",
+        "through2": "0.6.5",
+        "vinyl": "0.4.6"
+      },
+      "dependencies": {
+        "clone": {
+          "version": "0.2.0",
+          "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz",
+          "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8="
+        },
+        "object-assign": {
+          "version": "2.1.1",
+          "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz",
+          "integrity": "sha1-Q8NuXVaf+OSBbE76i+AtJpZ8GKo="
+        },
+        "vinyl": {
+          "version": "0.4.6",
+          "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz",
+          "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=",
+          "requires": {
+            "clone": "0.2.0",
+            "clone-stats": "0.0.1"
+          }
+        }
+      }
+    },
+    "decompress-tarbz2": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-3.1.0.tgz",
+      "integrity": "sha1-iyOTVoE1X58YnYclag+L3ZbZZm0=",
+      "requires": {
+        "is-bzip2": "1.0.0",
+        "object-assign": "2.1.1",
+        "seek-bzip": "1.0.5",
+        "strip-dirs": "1.1.1",
+        "tar-stream": "1.6.0",
+        "through2": "0.6.5",
+        "vinyl": "0.4.6"
+      },
+      "dependencies": {
+        "clone": {
+          "version": "0.2.0",
+          "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz",
+          "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8="
+        },
+        "object-assign": {
+          "version": "2.1.1",
+          "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz",
+          "integrity": "sha1-Q8NuXVaf+OSBbE76i+AtJpZ8GKo="
+        },
+        "vinyl": {
+          "version": "0.4.6",
+          "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz",
+          "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=",
+          "requires": {
+            "clone": "0.2.0",
+            "clone-stats": "0.0.1"
+          }
+        }
+      }
+    },
+    "decompress-targz": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-3.1.0.tgz",
+      "integrity": "sha1-ssE9+YFmJomRtxXWRH9kLpaW9aA=",
+      "requires": {
+        "is-gzip": "1.0.0",
+        "object-assign": "2.1.1",
+        "strip-dirs": "1.1.1",
+        "tar-stream": "1.6.0",
+        "through2": "0.6.5",
+        "vinyl": "0.4.6"
+      },
+      "dependencies": {
+        "clone": {
+          "version": "0.2.0",
+          "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz",
+          "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8="
+        },
+        "object-assign": {
+          "version": "2.1.1",
+          "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz",
+          "integrity": "sha1-Q8NuXVaf+OSBbE76i+AtJpZ8GKo="
+        },
+        "vinyl": {
+          "version": "0.4.6",
+          "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz",
+          "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=",
+          "requires": {
+            "clone": "0.2.0",
+            "clone-stats": "0.0.1"
+          }
+        }
+      }
+    },
+    "decompress-unzip": {
+      "version": "3.4.0",
+      "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-3.4.0.tgz",
+      "integrity": "sha1-YUdbQVIGa74/7hL51inRX+ZHjus=",
+      "requires": {
+        "is-zip": "1.0.0",
+        "read-all-stream": "3.1.0",
+        "stat-mode": "0.2.2",
+        "strip-dirs": "1.1.1",
+        "through2": "2.0.3",
+        "vinyl": "1.2.0",
+        "yauzl": "2.9.1"
+      },
+      "dependencies": {
+        "through2": {
+          "version": "2.0.3",
+          "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz",
+          "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=",
+          "requires": {
+            "readable-stream": "2.3.6",
+            "xtend": "4.0.1"
+          }
+        }
+      }
+    },
+    "deep-equal": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz",
+      "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU="
+    },
+    "deep-extend": {
+      "version": "0.5.1",
+      "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.5.1.tgz",
+      "integrity": "sha512-N8vBdOa+DF7zkRrDCsaOXoCs/E2fJfx9B9MrKnnSiHNh4ws7eSys6YQE4KvT1cecKmOASYQBhbKjeuDD9lT81w=="
+    },
+    "define-properties": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz",
+      "integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=",
+      "requires": {
+        "foreach": "2.0.5",
+        "object-keys": "1.0.11"
+      }
+    },
+    "define-property": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
+      "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
+      "requires": {
+        "is-descriptor": "1.0.2",
+        "isobject": "3.0.1"
+      },
+      "dependencies": {
+        "is-accessor-descriptor": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+          "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+          "requires": {
+            "kind-of": "6.0.2"
+          }
+        },
+        "is-data-descriptor": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+          "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+          "requires": {
+            "kind-of": "6.0.2"
+          }
+        },
+        "is-descriptor": {
+          "version": "1.0.2",
+          "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+          "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+          "requires": {
+            "is-accessor-descriptor": "1.0.0",
+            "is-data-descriptor": "1.0.0",
+            "kind-of": "6.0.2"
+          }
+        }
+      }
+    },
+    "defined": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz",
+      "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM="
+    },
+    "del": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/del/-/del-3.0.0.tgz",
+      "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=",
+      "requires": {
+        "globby": "6.1.0",
+        "is-path-cwd": "1.0.0",
+        "is-path-in-cwd": "1.0.1",
+        "p-map": "1.2.0",
+        "pify": "3.0.0",
+        "rimraf": "2.6.2"
+      }
+    },
+    "delayed-stream": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+      "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
+    },
+    "delegates": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
+      "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o="
+    },
+    "depd": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
+      "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak="
+    },
+    "des.js": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz",
+      "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=",
+      "requires": {
+        "inherits": "2.0.3",
+        "minimalistic-assert": "1.0.1"
+      }
+    },
+    "destroy": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
+      "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
+    },
+    "detect-indent": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz",
+      "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=",
+      "requires": {
+        "repeating": "2.0.1"
+      }
+    },
+    "detect-node": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.3.tgz",
+      "integrity": "sha1-ogM8CcyOFY03dI+951B4Mr1s4Sc="
+    },
+    "diffie-hellman": {
+      "version": "5.0.3",
+      "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
+      "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
+      "requires": {
+        "bn.js": "4.11.8",
+        "miller-rabin": "4.0.1",
+        "randombytes": "2.0.6"
+      }
+    },
+    "dns-equal": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz",
+      "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0="
+    },
+    "dns-packet": {
+      "version": "1.3.1",
+      "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz",
+      "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==",
+      "requires": {
+        "ip": "1.1.5",
+        "safe-buffer": "5.1.2"
+      }
+    },
+    "dns-txt": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz",
+      "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=",
+      "requires": {
+        "buffer-indexof": "1.1.1"
+      }
+    },
+    "dom-serializer": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz",
+      "integrity": "sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=",
+      "requires": {
+        "domelementtype": "1.1.3",
+        "entities": "1.1.1"
+      },
+      "dependencies": {
+        "domelementtype": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz",
+          "integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs="
+        }
+      }
+    },
+    "domain-browser": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
+      "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA=="
+    },
+    "domelementtype": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz",
+      "integrity": "sha1-sXrtguirWeUt2cGbF1bg/BhyBMI="
+    },
+    "domutils": {
+      "version": "1.5.1",
+      "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz",
+      "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=",
+      "requires": {
+        "dom-serializer": "0.1.0",
+        "domelementtype": "1.3.0"
+      }
+    },
+    "dotenv": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-4.0.0.tgz",
+      "integrity": "sha1-hk7xN5rO1Vzm+V3r7NzhefegzR0="
+    },
+    "dotenv-expand": {
+      "version": "4.2.0",
+      "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-4.2.0.tgz",
+      "integrity": "sha1-3vHxyl1gWdJKdm5YeULCEQbOEnU="
+    },
+    "download": {
+      "version": "4.4.3",
+      "resolved": "https://registry.npmjs.org/download/-/download-4.4.3.tgz",
+      "integrity": "sha1-qlX9rTktldS2jowr4D4MKqIbqaw=",
+      "requires": {
+        "caw": "1.2.0",
+        "concat-stream": "1.6.2",
+        "each-async": "1.1.1",
+        "filenamify": "1.2.1",
+        "got": "5.7.1",
+        "gulp-decompress": "1.2.0",
+        "gulp-rename": "1.2.2",
+        "is-url": "1.2.4",
+        "object-assign": "4.1.1",
+        "read-all-stream": "3.1.0",
+        "readable-stream": "2.3.6",
+        "stream-combiner2": "1.1.1",
+        "vinyl": "1.2.0",
+        "vinyl-fs": "2.4.4",
+        "ware": "1.3.0"
+      }
+    },
+    "duplexer2": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz",
+      "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=",
+      "requires": {
+        "readable-stream": "2.3.6"
+      }
+    },
+    "duplexer3": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
+      "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI="
+    },
+    "duplexify": {
+      "version": "3.6.0",
+      "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.6.0.tgz",
+      "integrity": "sha512-fO3Di4tBKJpYTFHAxTU00BcfWMY9w24r/x21a6rZRbsD/ToUgGxsMbiGRmB7uVAXeGKXD9MwiLZa5E97EVgIRQ==",
+      "requires": {
+        "end-of-stream": "1.4.1",
+        "inherits": "2.0.3",
+        "readable-stream": "2.3.6",
+        "stream-shift": "1.0.0"
+      }
+    },
+    "each-async": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/each-async/-/each-async-1.1.1.tgz",
+      "integrity": "sha1-3uUim98KtrogEqOV4bhpq/iBNHM=",
+      "requires": {
+        "onetime": "1.1.0",
+        "set-immediate-shim": "1.0.1"
+      }
+    },
+    "ecc-jsbn": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz",
+      "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=",
+      "optional": true,
+      "requires": {
+        "jsbn": "0.1.1"
+      }
+    },
+    "eclipsefdn-solstice-assets": {
+      "version": "0.0.23",
+      "resolved": "https://registry.npmjs.org/eclipsefdn-solstice-assets/-/eclipsefdn-solstice-assets-0.0.23.tgz",
+      "integrity": "sha512-XtknhLPu1mBWO4G3/rhnQ35Dvam48UXn1linzKZjDmnS9j9RAlpBEtTkPS3GNVODl9yoZe5tuglV9lJw7mF5Cg==",
+      "requires": {
+        "Yamm": "github:geedmo/yamm3#d604f9ad80b46f361f38d06eb9157dbbbb91229a",
+        "bootstrap": "3.3.7",
+        "cookieconsent": "3.0.6",
+        "feather-icons": "4.7.0",
+        "font-awesome": "4.7.0",
+        "jquery": "3.3.1",
+        "jquery-match-height": "0.7.2",
+        "laravel-mix": "2.1.11",
+        "less": "3.0.4",
+        "less-loader": "4.1.0",
+        "napa": "3.0.0"
+      }
+    },
+    "ee-first": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+      "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
+    },
+    "electron-to-chromium": {
+      "version": "1.3.45",
+      "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.45.tgz",
+      "integrity": "sha1-RYrBscXHYM6IEaFtK/vZfsMLr7g="
+    },
+    "elliptic": {
+      "version": "6.4.0",
+      "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz",
+      "integrity": "sha1-ysmvh2LIWDYYcAPI3+GT5eLq5d8=",
+      "requires": {
+        "bn.js": "4.11.8",
+        "brorand": "1.1.0",
+        "hash.js": "1.1.3",
+        "hmac-drbg": "1.0.1",
+        "inherits": "2.0.3",
+        "minimalistic-assert": "1.0.1",
+        "minimalistic-crypto-utils": "1.0.1"
+      }
+    },
+    "emojis-list": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz",
+      "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k="
+    },
+    "encodeurl": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+      "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k="
+    },
+    "end-of-stream": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz",
+      "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==",
+      "requires": {
+        "once": "1.4.0"
+      }
+    },
+    "enhanced-resolve": {
+      "version": "3.4.1",
+      "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz",
+      "integrity": "sha1-BCHjOf1xQZs9oT0Smzl5BAIwR24=",
+      "requires": {
+        "graceful-fs": "4.1.11",
+        "memory-fs": "0.4.1",
+        "object-assign": "4.1.1",
+        "tapable": "0.2.8"
+      }
+    },
+    "entities": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz",
+      "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA="
+    },
+    "errno": {
+      "version": "0.1.7",
+      "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz",
+      "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==",
+      "requires": {
+        "prr": "1.0.1"
+      }
+    },
+    "error-ex": {
+      "version": "1.3.1",
+      "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz",
+      "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=",
+      "requires": {
+        "is-arrayish": "0.2.1"
+      }
+    },
+    "error-stack-parser": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.1.tgz",
+      "integrity": "sha1-oyArj7AxFKqbQKDjZp5IsrZaAQo=",
+      "requires": {
+        "stackframe": "1.0.4"
+      }
+    },
+    "es-abstract": {
+      "version": "1.11.0",
+      "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.11.0.tgz",
+      "integrity": "sha512-ZnQrE/lXTTQ39ulXZ+J1DTFazV9qBy61x2bY071B+qGco8Z8q1QddsLdt/EF8Ai9hcWH72dWS0kFqXLxOxqslA==",
+      "requires": {
+        "es-to-primitive": "1.1.1",
+        "function-bind": "1.1.1",
+        "has": "1.0.1",
+        "is-callable": "1.1.3",
+        "is-regex": "1.0.4"
+      }
+    },
+    "es-to-primitive": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz",
+      "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=",
+      "requires": {
+        "is-callable": "1.1.3",
+        "is-date-object": "1.0.1",
+        "is-symbol": "1.0.1"
+      }
+    },
+    "es5-ext": {
+      "version": "0.10.42",
+      "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.42.tgz",
+      "integrity": "sha512-AJxO1rmPe1bDEfSR6TJ/FgMFYuTBhR5R57KW58iCkYACMyFbrkqVyzXSurYoScDGvgyMpk7uRF/lPUPPTmsRSA==",
+      "requires": {
+        "es6-iterator": "2.0.3",
+        "es6-symbol": "3.1.1",
+        "next-tick": "1.0.0"
+      }
+    },
+    "es6-iterator": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz",
+      "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=",
+      "requires": {
+        "d": "1.0.0",
+        "es5-ext": "0.10.42",
+        "es6-symbol": "3.1.1"
+      }
+    },
+    "es6-map": {
+      "version": "0.1.5",
+      "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz",
+      "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=",
+      "requires": {
+        "d": "1.0.0",
+        "es5-ext": "0.10.42",
+        "es6-iterator": "2.0.3",
+        "es6-set": "0.1.5",
+        "es6-symbol": "3.1.1",
+        "event-emitter": "0.3.5"
+      }
+    },
+    "es6-set": {
+      "version": "0.1.5",
+      "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz",
+      "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=",
+      "requires": {
+        "d": "1.0.0",
+        "es5-ext": "0.10.42",
+        "es6-iterator": "2.0.3",
+        "es6-symbol": "3.1.1",
+        "event-emitter": "0.3.5"
+      }
+    },
+    "es6-symbol": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz",
+      "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=",
+      "requires": {
+        "d": "1.0.0",
+        "es5-ext": "0.10.42"
+      }
+    },
+    "es6-templates": {
+      "version": "0.2.3",
+      "resolved": "https://registry.npmjs.org/es6-templates/-/es6-templates-0.2.3.tgz",
+      "integrity": "sha1-XLmsn7He1usSOTQrgdeSu7QHjuQ=",
+      "requires": {
+        "recast": "0.11.23",
+        "through": "2.3.8"
+      }
+    },
+    "es6-weak-map": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz",
+      "integrity": "sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8=",
+      "requires": {
+        "d": "1.0.0",
+        "es5-ext": "0.10.42",
+        "es6-iterator": "2.0.3",
+        "es6-symbol": "3.1.1"
+      }
+    },
+    "escape-html": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+      "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
+    },
+    "escape-string-regexp": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+      "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
+    },
+    "escope": {
+      "version": "3.6.0",
+      "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz",
+      "integrity": "sha1-4Bl16BJ4GhY6ba392AOY3GTIicM=",
+      "requires": {
+        "es6-map": "0.1.5",
+        "es6-weak-map": "2.0.2",
+        "esrecurse": "4.2.1",
+        "estraverse": "4.2.0"
+      }
+    },
+    "esprima": {
+      "version": "2.7.3",
+      "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz",
+      "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE="
+    },
+    "esrecurse": {
+      "version": "4.2.1",
+      "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz",
+      "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==",
+      "requires": {
+        "estraverse": "4.2.0"
+      }
+    },
+    "estraverse": {
+      "version": "4.2.0",
+      "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz",
+      "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM="
+    },
+    "esutils": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
+      "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs="
+    },
+    "etag": {
+      "version": "1.8.1",
+      "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+      "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
+    },
+    "event-emitter": {
+      "version": "0.3.5",
+      "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz",
+      "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=",
+      "requires": {
+        "d": "1.0.0",
+        "es5-ext": "0.10.42"
+      }
+    },
+    "eventemitter3": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.0.tgz",
+      "integrity": "sha512-ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA=="
+    },
+    "events": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz",
+      "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ="
+    },
+    "eventsource": {
+      "version": "0.1.6",
+      "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-0.1.6.tgz",
+      "integrity": "sha1-Cs7ehJ7X3RzMMsgRuxG5RNTykjI=",
+      "requires": {
+        "original": "1.0.0"
+      }
+    },
+    "evp_bytestokey": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
+      "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
+      "requires": {
+        "md5.js": "1.3.4",
+        "safe-buffer": "5.1.2"
+      }
+    },
+    "exec-buffer": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz",
+      "integrity": "sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==",
+      "requires": {
+        "execa": "0.7.0",
+        "p-finally": "1.0.0",
+        "pify": "3.0.0",
+        "rimraf": "2.6.2",
+        "tempfile": "2.0.0"
+      }
+    },
+    "exec-series": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/exec-series/-/exec-series-1.0.3.tgz",
+      "integrity": "sha1-bSV6m+rEgqhyx3g7yGFYOfx3FDo=",
+      "requires": {
+        "async-each-series": "1.1.0",
+        "object-assign": "4.1.1"
+      }
+    },
+    "execa": {
+      "version": "0.7.0",
+      "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
+      "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
+      "requires": {
+        "cross-spawn": "5.1.0",
+        "get-stream": "3.0.0",
+        "is-stream": "1.1.0",
+        "npm-run-path": "2.0.2",
+        "p-finally": "1.0.0",
+        "signal-exit": "3.0.2",
+        "strip-eof": "1.0.0"
+      }
+    },
+    "executable": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/executable/-/executable-1.1.0.tgz",
+      "integrity": "sha1-h3mA6REvM5EGbaNyZd562ENKtNk=",
+      "requires": {
+        "meow": "3.7.0"
+      }
+    },
+    "expand-brackets": {
+      "version": "2.1.4",
+      "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
+      "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
+      "requires": {
+        "debug": "2.6.9",
+        "define-property": "0.2.5",
+        "extend-shallow": "2.0.1",
+        "posix-character-classes": "0.1.1",
+        "regex-not": "1.0.2",
+        "snapdragon": "0.8.2",
+        "to-regex": "3.0.2"
+      },
+      "dependencies": {
+        "define-property": {
+          "version": "0.2.5",
+          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+          "requires": {
+            "is-descriptor": "0.1.6"
+          }
+        },
+        "extend-shallow": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+          "requires": {
+            "is-extendable": "0.1.1"
+          }
+        }
+      }
+    },
+    "expand-range": {
+      "version": "1.8.2",
+      "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz",
+      "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=",
+      "requires": {
+        "fill-range": "2.2.3"
+      },
+      "dependencies": {
+        "fill-range": {
+          "version": "2.2.3",
+          "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz",
+          "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=",
+          "requires": {
+            "is-number": "2.1.0",
+            "isobject": "2.1.0",
+            "randomatic": "1.1.7",
+            "repeat-element": "1.1.2",
+            "repeat-string": "1.6.1"
+          }
+        },
+        "is-number": {
+          "version": "2.1.0",
+          "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz",
+          "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=",
+          "requires": {
+            "kind-of": "3.2.2"
+          }
+        },
+        "isobject": {
+          "version": "2.1.0",
+          "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
+          "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
+          "requires": {
+            "isarray": "1.0.0"
+          }
+        },
+        "kind-of": {
+          "version": "3.2.2",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+          "requires": {
+            "is-buffer": "1.1.6"
+          }
+        }
+      }
+    },
+    "express": {
+      "version": "4.16.3",
+      "resolved": "https://registry.npmjs.org/express/-/express-4.16.3.tgz",
+      "integrity": "sha1-avilAjUNsyRuzEvs9rWjTSL37VM=",
+      "requires": {
+        "accepts": "1.3.5",
+        "array-flatten": "1.1.1",
+        "body-parser": "1.18.2",
+        "content-disposition": "0.5.2",
+        "content-type": "1.0.4",
+        "cookie": "0.3.1",
+        "cookie-signature": "1.0.6",
+        "debug": "2.6.9",
+        "depd": "1.1.2",
+        "encodeurl": "1.0.2",
+        "escape-html": "1.0.3",
+        "etag": "1.8.1",
+        "finalhandler": "1.1.1",
+        "fresh": "0.5.2",
+        "merge-descriptors": "1.0.1",
+        "methods": "1.1.2",
+        "on-finished": "2.3.0",
+        "parseurl": "1.3.2",
+        "path-to-regexp": "0.1.7",
+        "proxy-addr": "2.0.3",
+        "qs": "6.5.1",
+        "range-parser": "1.2.0",
+        "safe-buffer": "5.1.1",
+        "send": "0.16.2",
+        "serve-static": "1.13.2",
+        "setprototypeof": "1.1.0",
+        "statuses": "1.4.0",
+        "type-is": "1.6.16",
+        "utils-merge": "1.0.1",
+        "vary": "1.1.2"
+      },
+      "dependencies": {
+        "array-flatten": {
+          "version": "1.1.1",
+          "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+          "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI="
+        },
+        "qs": {
+          "version": "6.5.1",
+          "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz",
+          "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A=="
+        },
+        "safe-buffer": {
+          "version": "5.1.1",
+          "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz",
+          "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg=="
+        }
+      }
+    },
+    "ext-list": {
+      "version": "2.2.2",
+      "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz",
+      "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==",
+      "requires": {
+        "mime-db": "1.33.0"
+      }
+    },
+    "ext-name": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz",
+      "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==",
+      "requires": {
+        "ext-list": "2.2.2",
+        "sort-keys-length": "1.0.1"
+      }
+    },
+    "extend": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz",
+      "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ="
+    },
+    "extend-shallow": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+      "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+      "requires": {
+        "assign-symbols": "1.0.0",
+        "is-extendable": "1.0.1"
+      },
+      "dependencies": {
+        "is-extendable": {
+          "version": "1.0.1",
+          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
+          "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+          "requires": {
+            "is-plain-object": "2.0.4"
+          }
+        }
+      }
+    },
+    "extglob": {
+      "version": "2.0.4",
+      "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
+      "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
+      "requires": {
+        "array-unique": "0.3.2",
+        "define-property": "1.0.0",
+        "expand-brackets": "2.1.4",
+        "extend-shallow": "2.0.1",
+        "fragment-cache": "0.2.1",
+        "regex-not": "1.0.2",
+        "snapdragon": "0.8.2",
+        "to-regex": "3.0.2"
+      },
+      "dependencies": {
+        "define-property": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+          "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+          "requires": {
+            "is-descriptor": "1.0.2"
+          }
+        },
+        "extend-shallow": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+          "requires": {
+            "is-extendable": "0.1.1"
+          }
+        },
+        "is-accessor-descriptor": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+          "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+          "requires": {
+            "kind-of": "6.0.2"
+          }
+        },
+        "is-data-descriptor": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+          "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+          "requires": {
+            "kind-of": "6.0.2"
+          }
+        },
+        "is-descriptor": {
+          "version": "1.0.2",
+          "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+          "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+          "requires": {
+            "is-accessor-descriptor": "1.0.0",
+            "is-data-descriptor": "1.0.0",
+            "kind-of": "6.0.2"
+          }
+        }
+      }
+    },
+    "extract-text-webpack-plugin": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extract-text-webpack-plugin/-/extract-text-webpack-plugin-3.0.2.tgz",
+      "integrity": "sha512-bt/LZ4m5Rqt/Crl2HiKuAl/oqg0psx1tsTLkvWbJen1CtD+fftkZhMaQ9HOtY2gWsl2Wq+sABmMVi9z3DhKWQQ==",
+      "requires": {
+        "async": "2.6.0",
+        "loader-utils": "1.1.0",
+        "schema-utils": "0.3.0",
+        "webpack-sources": "1.1.0"
+      }
+    },
+    "extsprintf": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
+      "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU="
+    },
+    "fancy-log": {
+      "version": "1.3.2",
+      "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.2.tgz",
+      "integrity": "sha1-9BEl49hPLn2JpD0G2VjI94vha+E=",
+      "requires": {
+        "ansi-gray": "0.1.1",
+        "color-support": "1.1.3",
+        "time-stamp": "1.1.0"
+      }
+    },
+    "fast-deep-equal": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz",
+      "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ="
+    },
+    "fast-json-stable-stringify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
+      "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I="
+    },
+    "fastparse": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.1.tgz",
+      "integrity": "sha1-0eJkOzipTXWDtHkGDmxK/8lAcfg="
+    },
+    "faye-websocket": {
+      "version": "0.10.0",
+      "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz",
+      "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=",
+      "requires": {
+        "websocket-driver": "0.7.0"
+      }
+    },
+    "fd-slicer": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz",
+      "integrity": "sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU=",
+      "requires": {
+        "pend": "1.2.0"
+      }
+    },
+    "feather-icons": {
+      "version": "4.7.0",
+      "resolved": "https://registry.npmjs.org/feather-icons/-/feather-icons-4.7.0.tgz",
+      "integrity": "sha512-/dKhEelpOazdN0MtcBZTgqo1tZHn35y40V0sGPi6FzzwNbQ5H6vzTqYWWMeRtKw5JePmog7RthR/PYPA1lYNFA==",
+      "requires": {
+        "classnames": "2.2.5"
+      }
+    },
+    "figures": {
+      "version": "1.7.0",
+      "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz",
+      "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=",
+      "requires": {
+        "escape-string-regexp": "1.0.5",
+        "object-assign": "4.1.1"
+      }
+    },
+    "file-loader": {
+      "version": "0.11.2",
+      "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-0.11.2.tgz",
+      "integrity": "sha512-N+uhF3mswIFeziHQjGScJ/yHXYt3DiLBeC+9vWW+WjUBiClMSOlV1YrXQi+7KM2aA3Rn4Bybgv+uXFQbfkzpvg==",
+      "requires": {
+        "loader-utils": "1.1.0"
+      }
+    },
+    "file-type": {
+      "version": "4.4.0",
+      "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz",
+      "integrity": "sha1-G2AOX8ofvcboDApwxxyNul95BsU="
+    },
+    "filename-regex": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz",
+      "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY="
+    },
+    "filename-reserved-regex": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-1.0.0.tgz",
+      "integrity": "sha1-5hz4BfDeHJhFZ9A4bcXfUO5a9+Q="
+    },
+    "filenamify": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-1.2.1.tgz",
+      "integrity": "sha1-qfL/0RxQO+0wABUCknI3jx8TZaU=",
+      "requires": {
+        "filename-reserved-regex": "1.0.0",
+        "strip-outer": "1.0.1",
+        "trim-repeated": "1.0.0"
+      }
+    },
+    "fill-range": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+      "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+      "requires": {
+        "extend-shallow": "2.0.1",
+        "is-number": "3.0.0",
+        "repeat-string": "1.6.1",
+        "to-regex-range": "2.1.1"
+      },
+      "dependencies": {
+        "extend-shallow": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+          "requires": {
+            "is-extendable": "0.1.1"
+          }
+        }
+      }
+    },
+    "finalhandler": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz",
+      "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==",
+      "requires": {
+        "debug": "2.6.9",
+        "encodeurl": "1.0.2",
+        "escape-html": "1.0.3",
+        "on-finished": "2.3.0",
+        "parseurl": "1.3.2",
+        "statuses": "1.4.0",
+        "unpipe": "1.0.0"
+      }
+    },
+    "find-cache-dir": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz",
+      "integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=",
+      "requires": {
+        "commondir": "1.0.1",
+        "make-dir": "1.3.0",
+        "pkg-dir": "2.0.0"
+      }
+    },
+    "find-up": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+      "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
+      "requires": {
+        "locate-path": "2.0.0"
+      }
+    },
+    "find-versions": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-1.2.1.tgz",
+      "integrity": "sha1-y96fEuOFdaCvG+G5osXV/Y8Ya2I=",
+      "requires": {
+        "array-uniq": "1.0.3",
+        "get-stdin": "4.0.1",
+        "meow": "3.7.0",
+        "semver-regex": "1.0.0"
+      }
+    },
+    "first-chunk-stream": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz",
+      "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04="
+    },
+    "flatten": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz",
+      "integrity": "sha1-2uRqnXj74lKSJYzB54CkHZXAN4I="
+    },
+    "flush-write-stream": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz",
+      "integrity": "sha512-calZMC10u0FMUqoiunI2AiGIIUtUIvifNwkHhNupZH4cbNnW1Itkoh/Nf5HFYmDrwWPjrUxpkZT0KhuCq0jmGw==",
+      "requires": {
+        "inherits": "2.0.3",
+        "readable-stream": "2.3.6"
+      }
+    },
+    "follow-redirects": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.4.1.tgz",
+      "integrity": "sha512-uxYePVPogtya1ktGnAAXOacnbIuRMB4dkvqeNz2qTtTQsuzSfbDolV+wMMKxAmCx0bLgAKLbBOkjItMbbkR1vg==",
+      "requires": {
+        "debug": "3.1.0"
+      },
+      "dependencies": {
+        "debug": {
+          "version": "3.1.0",
+          "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+          "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+          "requires": {
+            "ms": "2.0.0"
+          }
+        }
+      }
+    },
+    "font-awesome": {
+      "version": "4.7.0",
+      "resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz",
+      "integrity": "sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM="
+    },
+    "for-in": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
+      "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA="
+    },
+    "for-own": {
+      "version": "0.1.5",
+      "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz",
+      "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=",
+      "requires": {
+        "for-in": "1.0.2"
+      }
+    },
+    "foreach": {
+      "version": "2.0.5",
+      "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz",
+      "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k="
+    },
+    "forever-agent": {
+      "version": "0.6.1",
+      "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
+      "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE="
+    },
+    "form-data": {
+      "version": "2.1.4",
+      "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz",
+      "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=",
+      "requires": {
+        "asynckit": "0.4.0",
+        "combined-stream": "1.0.6",
+        "mime-types": "2.1.18"
+      }
+    },
+    "forwarded": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz",
+      "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ="
+    },
+    "fragment-cache": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
+      "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
+      "requires": {
+        "map-cache": "0.2.2"
+      }
+    },
+    "fresh": {
+      "version": "0.5.2",
+      "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+      "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac="
+    },
+    "friendly-errors-webpack-plugin": {
+      "version": "1.7.0",
+      "resolved": "https://registry.npmjs.org/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.7.0.tgz",
+      "integrity": "sha512-K27M3VK30wVoOarP651zDmb93R9zF28usW4ocaK3mfQeIEI5BPht/EzZs5E8QLLwbLRJQMwscAjDxYPb1FuNiw==",
+      "requires": {
+        "chalk": "1.1.3",
+        "error-stack-parser": "2.0.1",
+        "string-width": "2.1.1"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            }
+          }
+        },
+        "supports-color": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+          "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+        }
+      }
+    },
+    "from2": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
+      "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=",
+      "requires": {
+        "inherits": "2.0.3",
+        "readable-stream": "2.3.6"
+      }
+    },
+    "fs-constants": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
+      "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="
+    },
+    "fs-extra": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz",
+      "integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=",
+      "requires": {
+        "graceful-fs": "4.1.11",
+        "jsonfile": "3.0.1",
+        "universalify": "0.1.1"
+      }
+    },
+    "fs-write-stream-atomic": {
+      "version": "1.0.10",
+      "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz",
+      "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=",
+      "requires": {
+        "graceful-fs": "4.1.11",
+        "iferr": "0.1.5",
+        "imurmurhash": "0.1.4",
+        "readable-stream": "2.3.6"
+      }
+    },
+    "fs.realpath": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+      "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
+    },
+    "fsevents": {
+      "version": "1.2.3",
+      "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.3.tgz",
+      "integrity": "sha512-X+57O5YkDTiEQGiw8i7wYc2nQgweIekqkepI8Q3y4wVlurgBt2SuwxTeYUYMZIGpLZH3r/TsMjczCMXE5ZOt7Q==",
+      "optional": true,
+      "requires": {
+        "nan": "2.10.0",
+        "node-pre-gyp": "0.9.1"
+      },
+      "dependencies": {
+        "abbrev": {
+          "version": "1.1.1",
+          "bundled": true,
+          "optional": true
+        },
+        "ansi-regex": {
+          "version": "2.1.1",
+          "bundled": true
+        },
+        "aproba": {
+          "version": "1.2.0",
+          "bundled": true,
+          "optional": true
+        },
+        "are-we-there-yet": {
+          "version": "1.1.4",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "delegates": "1.0.0",
+            "readable-stream": "2.3.6"
+          }
+        },
+        "balanced-match": {
+          "version": "1.0.0",
+          "bundled": true
+        },
+        "brace-expansion": {
+          "version": "1.1.11",
+          "bundled": true,
+          "requires": {
+            "balanced-match": "1.0.0",
+            "concat-map": "0.0.1"
+          }
+        },
+        "chownr": {
+          "version": "1.0.1",
+          "bundled": true,
+          "optional": true
+        },
+        "code-point-at": {
+          "version": "1.1.0",
+          "bundled": true
+        },
+        "concat-map": {
+          "version": "0.0.1",
+          "bundled": true
+        },
+        "console-control-strings": {
+          "version": "1.1.0",
+          "bundled": true
+        },
+        "core-util-is": {
+          "version": "1.0.2",
+          "bundled": true,
+          "optional": true
+        },
+        "debug": {
+          "version": "2.6.9",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "ms": "2.0.0"
+          }
+        },
+        "deep-extend": {
+          "version": "0.4.2",
+          "bundled": true,
+          "optional": true
+        },
+        "delegates": {
+          "version": "1.0.0",
+          "bundled": true,
+          "optional": true
+        },
+        "detect-libc": {
+          "version": "1.0.3",
+          "bundled": true,
+          "optional": true
+        },
+        "fs-minipass": {
+          "version": "1.2.5",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "minipass": "2.2.4"
+          }
+        },
+        "fs.realpath": {
+          "version": "1.0.0",
+          "bundled": true,
+          "optional": true
+        },
+        "gauge": {
+          "version": "2.7.4",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "aproba": "1.2.0",
+            "console-control-strings": "1.1.0",
+            "has-unicode": "2.0.1",
+            "object-assign": "4.1.1",
+            "signal-exit": "3.0.2",
+            "string-width": "1.0.2",
+            "strip-ansi": "3.0.1",
+            "wide-align": "1.1.2"
+          }
+        },
+        "glob": {
+          "version": "7.1.2",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "fs.realpath": "1.0.0",
+            "inflight": "1.0.6",
+            "inherits": "2.0.3",
+            "minimatch": "3.0.4",
+            "once": "1.4.0",
+            "path-is-absolute": "1.0.1"
+          }
+        },
+        "has-unicode": {
+          "version": "2.0.1",
+          "bundled": true,
+          "optional": true
+        },
+        "iconv-lite": {
+          "version": "0.4.21",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "safer-buffer": "2.1.2"
+          }
+        },
+        "ignore-walk": {
+          "version": "3.0.1",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "minimatch": "3.0.4"
+          }
+        },
+        "inflight": {
+          "version": "1.0.6",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "once": "1.4.0",
+            "wrappy": "1.0.2"
+          }
+        },
+        "inherits": {
+          "version": "2.0.3",
+          "bundled": true
+        },
+        "ini": {
+          "version": "1.3.5",
+          "bundled": true,
+          "optional": true
+        },
+        "is-fullwidth-code-point": {
+          "version": "1.0.0",
+          "bundled": true,
+          "requires": {
+            "number-is-nan": "1.0.1"
+          }
+        },
+        "isarray": {
+          "version": "1.0.0",
+          "bundled": true,
+          "optional": true
+        },
+        "minimatch": {
+          "version": "3.0.4",
+          "bundled": true,
+          "requires": {
+            "brace-expansion": "1.1.11"
+          }
+        },
+        "minimist": {
+          "version": "0.0.8",
+          "bundled": true
+        },
+        "minipass": {
+          "version": "2.2.4",
+          "bundled": true,
+          "requires": {
+            "safe-buffer": "5.1.1",
+            "yallist": "3.0.2"
+          }
+        },
+        "minizlib": {
+          "version": "1.1.0",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "minipass": "2.2.4"
+          }
+        },
+        "mkdirp": {
+          "version": "0.5.1",
+          "bundled": true,
+          "requires": {
+            "minimist": "0.0.8"
+          }
+        },
+        "ms": {
+          "version": "2.0.0",
+          "bundled": true,
+          "optional": true
+        },
+        "needle": {
+          "version": "2.2.0",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "debug": "2.6.9",
+            "iconv-lite": "0.4.21",
+            "sax": "1.2.4"
+          }
+        },
+        "node-pre-gyp": {
+          "version": "0.9.1",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "detect-libc": "1.0.3",
+            "mkdirp": "0.5.1",
+            "needle": "2.2.0",
+            "nopt": "4.0.1",
+            "npm-packlist": "1.1.10",
+            "npmlog": "4.1.2",
+            "rc": "1.2.6",
+            "rimraf": "2.6.2",
+            "semver": "5.5.0",
+            "tar": "4.4.1"
+          }
+        },
+        "nopt": {
+          "version": "4.0.1",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "abbrev": "1.1.1",
+            "osenv": "0.1.5"
+          }
+        },
+        "npm-bundled": {
+          "version": "1.0.3",
+          "bundled": true,
+          "optional": true
+        },
+        "npm-packlist": {
+          "version": "1.1.10",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "ignore-walk": "3.0.1",
+            "npm-bundled": "1.0.3"
+          }
+        },
+        "npmlog": {
+          "version": "4.1.2",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "are-we-there-yet": "1.1.4",
+            "console-control-strings": "1.1.0",
+            "gauge": "2.7.4",
+            "set-blocking": "2.0.0"
+          }
+        },
+        "number-is-nan": {
+          "version": "1.0.1",
+          "bundled": true
+        },
+        "object-assign": {
+          "version": "4.1.1",
+          "bundled": true,
+          "optional": true
+        },
+        "once": {
+          "version": "1.4.0",
+          "bundled": true,
+          "requires": {
+            "wrappy": "1.0.2"
+          }
+        },
+        "os-homedir": {
+          "version": "1.0.2",
+          "bundled": true,
+          "optional": true
+        },
+        "os-tmpdir": {
+          "version": "1.0.2",
+          "bundled": true,
+          "optional": true
+        },
+        "osenv": {
+          "version": "0.1.5",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "os-homedir": "1.0.2",
+            "os-tmpdir": "1.0.2"
+          }
+        },
+        "path-is-absolute": {
+          "version": "1.0.1",
+          "bundled": true,
+          "optional": true
+        },
+        "process-nextick-args": {
+          "version": "2.0.0",
+          "bundled": true,
+          "optional": true
+        },
+        "rc": {
+          "version": "1.2.6",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "deep-extend": "0.4.2",
+            "ini": "1.3.5",
+            "minimist": "1.2.0",
+            "strip-json-comments": "2.0.1"
+          },
+          "dependencies": {
+            "minimist": {
+              "version": "1.2.0",
+              "bundled": true,
+              "optional": true
+            }
+          }
+        },
+        "readable-stream": {
+          "version": "2.3.6",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "core-util-is": "1.0.2",
+            "inherits": "2.0.3",
+            "isarray": "1.0.0",
+            "process-nextick-args": "2.0.0",
+            "safe-buffer": "5.1.1",
+            "string_decoder": "1.1.1",
+            "util-deprecate": "1.0.2"
+          }
+        },
+        "rimraf": {
+          "version": "2.6.2",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "glob": "7.1.2"
+          }
+        },
+        "safe-buffer": {
+          "version": "5.1.1",
+          "bundled": true
+        },
+        "safer-buffer": {
+          "version": "2.1.2",
+          "bundled": true,
+          "optional": true
+        },
+        "sax": {
+          "version": "1.2.4",
+          "bundled": true,
+          "optional": true
+        },
+        "semver": {
+          "version": "5.5.0",
+          "bundled": true,
+          "optional": true
+        },
+        "set-blocking": {
+          "version": "2.0.0",
+          "bundled": true,
+          "optional": true
+        },
+        "signal-exit": {
+          "version": "3.0.2",
+          "bundled": true,
+          "optional": true
+        },
+        "string-width": {
+          "version": "1.0.2",
+          "bundled": true,
+          "requires": {
+            "code-point-at": "1.1.0",
+            "is-fullwidth-code-point": "1.0.0",
+            "strip-ansi": "3.0.1"
+          }
+        },
+        "string_decoder": {
+          "version": "1.1.1",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "safe-buffer": "5.1.1"
+          }
+        },
+        "strip-ansi": {
+          "version": "3.0.1",
+          "bundled": true,
+          "requires": {
+            "ansi-regex": "2.1.1"
+          }
+        },
+        "strip-json-comments": {
+          "version": "2.0.1",
+          "bundled": true,
+          "optional": true
+        },
+        "tar": {
+          "version": "4.4.1",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "chownr": "1.0.1",
+            "fs-minipass": "1.2.5",
+            "minipass": "2.2.4",
+            "minizlib": "1.1.0",
+            "mkdirp": "0.5.1",
+            "safe-buffer": "5.1.1",
+            "yallist": "3.0.2"
+          }
+        },
+        "util-deprecate": {
+          "version": "1.0.2",
+          "bundled": true,
+          "optional": true
+        },
+        "wide-align": {
+          "version": "1.1.2",
+          "bundled": true,
+          "optional": true,
+          "requires": {
+            "string-width": "1.0.2"
+          }
+        },
+        "wrappy": {
+          "version": "1.0.2",
+          "bundled": true
+        },
+        "yallist": {
+          "version": "3.0.2",
+          "bundled": true
+        }
+      }
+    },
+    "fstream": {
+      "version": "1.0.11",
+      "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz",
+      "integrity": "sha1-XB+x8RdHcRTwYyoOtLcbPLD9MXE=",
+      "requires": {
+        "graceful-fs": "4.1.11",
+        "inherits": "2.0.3",
+        "mkdirp": "0.5.1",
+        "rimraf": "2.6.2"
+      }
+    },
+    "fstream-ignore": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.5.tgz",
+      "integrity": "sha1-nDHa40dnAY/h0kmyTa2mfQktoQU=",
+      "requires": {
+        "fstream": "1.0.11",
+        "inherits": "2.0.3",
+        "minimatch": "3.0.4"
+      }
+    },
+    "function-bind": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+      "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
+    },
+    "gauge": {
+      "version": "2.7.4",
+      "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz",
+      "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=",
+      "requires": {
+        "aproba": "1.2.0",
+        "console-control-strings": "1.1.0",
+        "has-unicode": "2.0.1",
+        "object-assign": "4.1.1",
+        "signal-exit": "3.0.2",
+        "string-width": "1.0.2",
+        "strip-ansi": "3.0.1",
+        "wide-align": "1.1.2"
+      },
+      "dependencies": {
+        "is-fullwidth-code-point": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
+          "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
+          "requires": {
+            "number-is-nan": "1.0.1"
+          }
+        },
+        "string-width": {
+          "version": "1.0.2",
+          "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
+          "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
+          "requires": {
+            "code-point-at": "1.1.0",
+            "is-fullwidth-code-point": "1.0.0",
+            "strip-ansi": "3.0.1"
+          }
+        }
+      }
+    },
+    "gaze": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.2.tgz",
+      "integrity": "sha1-hHIkZ3rbiHDWeSV+0ziP22HkAQU=",
+      "requires": {
+        "globule": "1.2.0"
+      }
+    },
+    "generate-function": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz",
+      "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ="
+    },
+    "generate-object-property": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz",
+      "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=",
+      "requires": {
+        "is-property": "1.0.2"
+      }
+    },
+    "get-caller-file": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz",
+      "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U="
+    },
+    "get-proxy": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-1.1.0.tgz",
+      "integrity": "sha1-iUhUSRvFkbDxR9euVw9cZ4tyVus=",
+      "requires": {
+        "rc": "1.2.7"
+      }
+    },
+    "get-stdin": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz",
+      "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4="
+    },
+    "get-stream": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+      "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ="
+    },
+    "get-value": {
+      "version": "2.0.6",
+      "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
+      "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg="
+    },
+    "getpass": {
+      "version": "0.1.7",
+      "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
+      "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
+      "requires": {
+        "assert-plus": "1.0.0"
+      },
+      "dependencies": {
+        "assert-plus": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+          "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
+        }
+      }
+    },
+    "gifsicle": {
+      "version": "3.0.4",
+      "resolved": "https://registry.npmjs.org/gifsicle/-/gifsicle-3.0.4.tgz",
+      "integrity": "sha1-9Fy17RAWW2ZdySng6TKLbIId+js=",
+      "requires": {
+        "bin-build": "2.2.0",
+        "bin-wrapper": "3.0.2",
+        "logalot": "2.1.0"
+      }
+    },
+    "glob": {
+      "version": "7.1.2",
+      "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
+      "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==",
+      "requires": {
+        "fs.realpath": "1.0.0",
+        "inflight": "1.0.6",
+        "inherits": "2.0.3",
+        "minimatch": "3.0.4",
+        "once": "1.4.0",
+        "path-is-absolute": "1.0.1"
+      }
+    },
+    "glob-base": {
+      "version": "0.3.0",
+      "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz",
+      "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=",
+      "requires": {
+        "glob-parent": "2.0.0",
+        "is-glob": "2.0.1"
+      },
+      "dependencies": {
+        "glob-parent": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz",
+          "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=",
+          "requires": {
+            "is-glob": "2.0.1"
+          }
+        },
+        "is-extglob": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz",
+          "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA="
+        },
+        "is-glob": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz",
+          "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=",
+          "requires": {
+            "is-extglob": "1.0.0"
+          }
+        }
+      }
+    },
+    "glob-parent": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
+      "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
+      "requires": {
+        "is-glob": "3.1.0",
+        "path-dirname": "1.0.2"
+      },
+      "dependencies": {
+        "is-glob": {
+          "version": "3.1.0",
+          "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
+          "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
+          "requires": {
+            "is-extglob": "2.1.1"
+          }
+        }
+      }
+    },
+    "glob-stream": {
+      "version": "5.3.5",
+      "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-5.3.5.tgz",
+      "integrity": "sha1-pVZlqajM3EGRWofHAeMtTgFvrSI=",
+      "requires": {
+        "extend": "3.0.1",
+        "glob": "5.0.15",
+        "glob-parent": "3.1.0",
+        "micromatch": "2.3.11",
+        "ordered-read-streams": "0.3.0",
+        "through2": "0.6.5",
+        "to-absolute-glob": "0.1.1",
+        "unique-stream": "2.2.1"
+      },
+      "dependencies": {
+        "arr-diff": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz",
+          "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=",
+          "requires": {
+            "arr-flatten": "1.1.0"
+          }
+        },
+        "array-unique": {
+          "version": "0.2.1",
+          "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
+          "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM="
+        },
+        "braces": {
+          "version": "1.8.5",
+          "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz",
+          "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=",
+          "requires": {
+            "expand-range": "1.8.2",
+            "preserve": "0.2.0",
+            "repeat-element": "1.1.2"
+          }
+        },
+        "expand-brackets": {
+          "version": "0.1.5",
+          "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz",
+          "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=",
+          "requires": {
+            "is-posix-bracket": "0.1.1"
+          }
+        },
+        "extglob": {
+          "version": "0.3.2",
+          "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz",
+          "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=",
+          "requires": {
+            "is-extglob": "1.0.0"
+          }
+        },
+        "glob": {
+          "version": "5.0.15",
+          "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz",
+          "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=",
+          "requires": {
+            "inflight": "1.0.6",
+            "inherits": "2.0.3",
+            "minimatch": "3.0.4",
+            "once": "1.4.0",
+            "path-is-absolute": "1.0.1"
+          }
+        },
+        "is-extglob": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz",
+          "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA="
+        },
+        "is-glob": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz",
+          "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=",
+          "requires": {
+            "is-extglob": "1.0.0"
+          }
+        },
+        "kind-of": {
+          "version": "3.2.2",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+          "requires": {
+            "is-buffer": "1.1.6"
+          }
+        },
+        "micromatch": {
+          "version": "2.3.11",
+          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz",
+          "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=",
+          "requires": {
+            "arr-diff": "2.0.0",
+            "array-unique": "0.2.1",
+            "braces": "1.8.5",
+            "expand-brackets": "0.1.5",
+            "extglob": "0.3.2",
+            "filename-regex": "2.0.1",
+            "is-extglob": "1.0.0",
+            "is-glob": "2.0.1",
+            "kind-of": "3.2.2",
+            "normalize-path": "2.1.1",
+            "object.omit": "2.0.1",
+            "parse-glob": "3.0.4",
+            "regex-cache": "0.4.4"
+          }
+        }
+      }
+    },
+    "globals": {
+      "version": "9.18.0",
+      "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
+      "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ=="
+    },
+    "globby": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz",
+      "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=",
+      "requires": {
+        "array-union": "1.0.2",
+        "glob": "7.1.2",
+        "object-assign": "4.1.1",
+        "pify": "2.3.0",
+        "pinkie-promise": "2.0.1"
+      },
+      "dependencies": {
+        "pify": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+          "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw="
+        }
+      }
+    },
+    "globs": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/globs/-/globs-0.1.4.tgz",
+      "integrity": "sha512-D23dWbOq48vlOraoSigbcQV4tWrnhwk+E/Um2cMuDS3/5dwGmdFeA7L/vAvDhLFlQOTDqHcXh35m/71g2A2WzQ==",
+      "requires": {
+        "glob": "7.1.2"
+      }
+    },
+    "globule": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.0.tgz",
+      "integrity": "sha1-HcScaCLdnoovoAuiopUAboZkvQk=",
+      "requires": {
+        "glob": "7.1.2",
+        "lodash": "4.17.10",
+        "minimatch": "3.0.4"
+      }
+    },
+    "glogg": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.1.tgz",
+      "integrity": "sha512-ynYqXLoluBKf9XGR1gA59yEJisIL7YHEH4xr3ZziHB5/yl4qWfaK8Js9jGe6gBGCSCKVqiyO30WnRZADvemUNw==",
+      "requires": {
+        "sparkles": "1.0.0"
+      }
+    },
+    "got": {
+      "version": "5.7.1",
+      "resolved": "https://registry.npmjs.org/got/-/got-5.7.1.tgz",
+      "integrity": "sha1-X4FjWmHkplifGAVp6k44FoClHzU=",
+      "requires": {
+        "create-error-class": "3.0.2",
+        "duplexer2": "0.1.4",
+        "is-redirect": "1.0.0",
+        "is-retry-allowed": "1.1.0",
+        "is-stream": "1.1.0",
+        "lowercase-keys": "1.0.1",
+        "node-status-codes": "1.0.0",
+        "object-assign": "4.1.1",
+        "parse-json": "2.2.0",
+        "pinkie-promise": "2.0.1",
+        "read-all-stream": "3.1.0",
+        "readable-stream": "2.3.6",
+        "timed-out": "3.1.3",
+        "unzip-response": "1.0.2",
+        "url-parse-lax": "1.0.0"
+      }
+    },
+    "graceful-fs": {
+      "version": "4.1.11",
+      "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz",
+      "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg="
+    },
+    "graceful-readlink": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
+      "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU="
+    },
+    "growly": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz",
+      "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE="
+    },
+    "gulp-decompress": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/gulp-decompress/-/gulp-decompress-1.2.0.tgz",
+      "integrity": "sha1-jutlpeAV+O2FMsr+KEVJYGJvDcc=",
+      "requires": {
+        "archive-type": "3.2.0",
+        "decompress": "3.0.0",
+        "gulp-util": "3.0.8",
+        "readable-stream": "2.3.6"
+      }
+    },
+    "gulp-rename": {
+      "version": "1.2.2",
+      "resolved": "https://registry.npmjs.org/gulp-rename/-/gulp-rename-1.2.2.tgz",
+      "integrity": "sha1-OtRCh2PwXidk3sHGfYaNsnVoeBc="
+    },
+    "gulp-sourcemaps": {
+      "version": "1.6.0",
+      "resolved": "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz",
+      "integrity": "sha1-uG/zSdgBzrVuHZ59x7vLS33uYAw=",
+      "requires": {
+        "convert-source-map": "1.5.1",
+        "graceful-fs": "4.1.11",
+        "strip-bom": "2.0.0",
+        "through2": "2.0.3",
+        "vinyl": "1.2.0"
+      },
+      "dependencies": {
+        "through2": {
+          "version": "2.0.3",
+          "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz",
+          "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=",
+          "requires": {
+            "readable-stream": "2.3.6",
+            "xtend": "4.0.1"
+          }
+        }
+      }
+    },
+    "gulp-util": {
+      "version": "3.0.8",
+      "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz",
+      "integrity": "sha1-AFTh50RQLifATBh8PsxQXdVLu08=",
+      "requires": {
+        "array-differ": "1.0.0",
+        "array-uniq": "1.0.3",
+        "beeper": "1.1.1",
+        "chalk": "1.1.3",
+        "dateformat": "2.2.0",
+        "fancy-log": "1.3.2",
+        "gulplog": "1.0.0",
+        "has-gulplog": "0.1.0",
+        "lodash._reescape": "3.0.0",
+        "lodash._reevaluate": "3.0.0",
+        "lodash._reinterpolate": "3.0.0",
+        "lodash.template": "3.6.2",
+        "minimist": "1.2.0",
+        "multipipe": "0.1.2",
+        "object-assign": "3.0.0",
+        "replace-ext": "0.0.1",
+        "through2": "2.0.3",
+        "vinyl": "0.5.3"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            }
+          }
+        },
+        "minimist": {
+          "version": "1.2.0",
+          "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
+          "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
+        },
+        "object-assign": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz",
+          "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I="
+        },
+        "replace-ext": {
+          "version": "0.0.1",
+          "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz",
+          "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ="
+        },
+        "supports-color": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+          "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+        },
+        "through2": {
+          "version": "2.0.3",
+          "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz",
+          "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=",
+          "requires": {
+            "readable-stream": "2.3.6",
+            "xtend": "4.0.1"
+          }
+        },
+        "vinyl": {
+          "version": "0.5.3",
+          "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz",
+          "integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=",
+          "requires": {
+            "clone": "1.0.4",
+            "clone-stats": "0.0.1",
+            "replace-ext": "0.0.1"
+          }
+        }
+      }
+    },
+    "gulplog": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz",
+      "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=",
+      "requires": {
+        "glogg": "1.0.1"
+      }
+    },
+    "handle-thing": {
+      "version": "1.2.5",
+      "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-1.2.5.tgz",
+      "integrity": "sha1-/Xqtcmvxpf0W38KbL3pmAdJxOcQ="
+    },
+    "har-schema": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
+      "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=",
+      "optional": true
+    },
+    "har-validator": {
+      "version": "2.0.6",
+      "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz",
+      "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=",
+      "requires": {
+        "chalk": "1.1.3",
+        "commander": "2.15.1",
+        "is-my-json-valid": "2.17.2",
+        "pinkie-promise": "2.0.1"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          }
+        },
+        "supports-color": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+          "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+        }
+      }
+    },
+    "has": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz",
+      "integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=",
+      "requires": {
+        "function-bind": "1.1.1"
+      }
+    },
+    "has-ansi": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
+      "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
+      "requires": {
+        "ansi-regex": "2.1.1"
+      }
+    },
+    "has-flag": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+      "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
+    },
+    "has-gulplog": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz",
+      "integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=",
+      "requires": {
+        "sparkles": "1.0.0"
+      }
+    },
+    "has-symbol-support-x": {
+      "version": "1.4.2",
+      "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz",
+      "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw=="
+    },
+    "has-to-string-tag-x": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz",
+      "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==",
+      "requires": {
+        "has-symbol-support-x": "1.4.2"
+      }
+    },
+    "has-unicode": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
+      "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk="
+    },
+    "has-value": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
+      "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=",
+      "requires": {
+        "get-value": "2.0.6",
+        "has-values": "1.0.0",
+        "isobject": "3.0.1"
+      }
+    },
+    "has-values": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz",
+      "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=",
+      "requires": {
+        "is-number": "3.0.0",
+        "kind-of": "4.0.0"
+      },
+      "dependencies": {
+        "kind-of": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
+          "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
+          "requires": {
+            "is-buffer": "1.1.6"
+          }
+        }
+      }
+    },
+    "hash-base": {
+      "version": "3.0.4",
+      "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz",
+      "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=",
+      "requires": {
+        "inherits": "2.0.3",
+        "safe-buffer": "5.1.2"
+      }
+    },
+    "hash-sum": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz",
+      "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ="
+    },
+    "hash.js": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.3.tgz",
+      "integrity": "sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==",
+      "requires": {
+        "inherits": "2.0.3",
+        "minimalistic-assert": "1.0.1"
+      }
+    },
+    "hawk": {
+      "version": "3.1.3",
+      "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz",
+      "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=",
+      "requires": {
+        "boom": "2.10.1",
+        "cryptiles": "2.0.5",
+        "hoek": "2.16.3",
+        "sntp": "1.0.9"
+      }
+    },
+    "he": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz",
+      "integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0="
+    },
+    "hmac-drbg": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
+      "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=",
+      "requires": {
+        "hash.js": "1.1.3",
+        "minimalistic-assert": "1.0.1",
+        "minimalistic-crypto-utils": "1.0.1"
+      }
+    },
+    "hoek": {
+      "version": "2.16.3",
+      "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz",
+      "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0="
+    },
+    "home-or-tmp": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz",
+      "integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=",
+      "requires": {
+        "os-homedir": "1.0.2",
+        "os-tmpdir": "1.0.2"
+      }
+    },
+    "hosted-git-info": {
+      "version": "2.6.0",
+      "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.6.0.tgz",
+      "integrity": "sha512-lIbgIIQA3lz5XaB6vxakj6sDHADJiZadYEJB+FgA+C4nubM1NwcuvUr9EJPmnH1skZqpqUzWborWo8EIUi0Sdw=="
+    },
+    "hpack.js": {
+      "version": "2.1.6",
+      "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz",
+      "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=",
+      "requires": {
+        "inherits": "2.0.3",
+        "obuf": "1.1.2",
+        "readable-stream": "2.3.6",
+        "wbuf": "1.7.3"
+      }
+    },
+    "html-comment-regex": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.1.tgz",
+      "integrity": "sha1-ZouTd26q5V696POtRkswekljYl4="
+    },
+    "html-entities": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz",
+      "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8="
+    },
+    "html-loader": {
+      "version": "0.4.5",
+      "resolved": "https://registry.npmjs.org/html-loader/-/html-loader-0.4.5.tgz",
+      "integrity": "sha1-X7zYfNY6XEmn/OL+VvQl4Fcpxow=",
+      "requires": {
+        "es6-templates": "0.2.3",
+        "fastparse": "1.1.1",
+        "html-minifier": "3.5.15",
+        "loader-utils": "1.1.0",
+        "object-assign": "4.1.1"
+      }
+    },
+    "html-minifier": {
+      "version": "3.5.15",
+      "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.15.tgz",
+      "integrity": "sha512-OZa4rfb6tZOZ3Z8Xf0jKxXkiDcFWldQePGYFDcgKqES2sXeWaEv9y6QQvWUtX3ySI3feApQi5uCsHLINQ6NoAw==",
+      "requires": {
+        "camel-case": "3.0.0",
+        "clean-css": "4.1.11",
+        "commander": "2.15.1",
+        "he": "1.1.1",
+        "param-case": "2.1.1",
+        "relateurl": "0.2.7",
+        "uglify-js": "3.3.24"
+      },
+      "dependencies": {
+        "uglify-js": {
+          "version": "3.3.24",
+          "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.24.tgz",
+          "integrity": "sha512-hS7+TDiqIqvWScCcKRybCQzmMnEzJ4ryl9ErRmW4GFyG48p0/dKZiy/5mVLbsFzU8CCnCgQdxMiJzZythvLzCg==",
+          "requires": {
+            "commander": "2.15.1",
+            "source-map": "0.6.1"
+          }
+        }
+      }
+    },
+    "http-deceiver": {
+      "version": "1.2.7",
+      "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz",
+      "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc="
+    },
+    "http-errors": {
+      "version": "1.6.3",
+      "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz",
+      "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=",
+      "requires": {
+        "depd": "1.1.2",
+        "inherits": "2.0.3",
+        "setprototypeof": "1.1.0",
+        "statuses": "1.4.0"
+      }
+    },
+    "http-parser-js": {
+      "version": "0.4.12",
+      "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.12.tgz",
+      "integrity": "sha1-uc+/Sizybw/DSxDKFImid3HjR08="
+    },
+    "http-proxy": {
+      "version": "1.17.0",
+      "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz",
+      "integrity": "sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==",
+      "requires": {
+        "eventemitter3": "3.1.0",
+        "follow-redirects": "1.4.1",
+        "requires-port": "1.0.0"
+      }
+    },
+    "http-proxy-middleware": {
+      "version": "0.17.4",
+      "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz",
+      "integrity": "sha1-ZC6ISIUdZvCdTxJJEoRtuutBuDM=",
+      "requires": {
+        "http-proxy": "1.17.0",
+        "is-glob": "3.1.0",
+        "lodash": "4.17.10",
+        "micromatch": "2.3.11"
+      },
+      "dependencies": {
+        "arr-diff": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz",
+          "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=",
+          "requires": {
+            "arr-flatten": "1.1.0"
+          }
+        },
+        "array-unique": {
+          "version": "0.2.1",
+          "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
+          "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM="
+        },
+        "braces": {
+          "version": "1.8.5",
+          "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz",
+          "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=",
+          "requires": {
+            "expand-range": "1.8.2",
+            "preserve": "0.2.0",
+            "repeat-element": "1.1.2"
+          }
+        },
+        "expand-brackets": {
+          "version": "0.1.5",
+          "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz",
+          "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=",
+          "requires": {
+            "is-posix-bracket": "0.1.1"
+          }
+        },
+        "extglob": {
+          "version": "0.3.2",
+          "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz",
+          "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=",
+          "requires": {
+            "is-extglob": "1.0.0"
+          },
+          "dependencies": {
+            "is-extglob": {
+              "version": "1.0.0",
+              "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz",
+              "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA="
+            }
+          }
+        },
+        "is-glob": {
+          "version": "3.1.0",
+          "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
+          "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
+          "requires": {
+            "is-extglob": "2.1.1"
+          }
+        },
+        "kind-of": {
+          "version": "3.2.2",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+          "requires": {
+            "is-buffer": "1.1.6"
+          }
+        },
+        "micromatch": {
+          "version": "2.3.11",
+          "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz",
+          "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=",
+          "requires": {
+            "arr-diff": "2.0.0",
+            "array-unique": "0.2.1",
+            "braces": "1.8.5",
+            "expand-brackets": "0.1.5",
+            "extglob": "0.3.2",
+            "filename-regex": "2.0.1",
+            "is-extglob": "1.0.0",
+            "is-glob": "2.0.1",
+            "kind-of": "3.2.2",
+            "normalize-path": "2.1.1",
+            "object.omit": "2.0.1",
+            "parse-glob": "3.0.4",
+            "regex-cache": "0.4.4"
+          },
+          "dependencies": {
+            "is-extglob": {
+              "version": "1.0.0",
+              "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz",
+              "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA="
+            },
+            "is-glob": {
+              "version": "2.0.1",
+              "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz",
+              "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=",
+              "requires": {
+                "is-extglob": "1.0.0"
+              }
+            }
+          }
+        }
+      }
+    },
+    "http-signature": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz",
+      "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=",
+      "requires": {
+        "assert-plus": "0.2.0",
+        "jsprim": "1.4.1",
+        "sshpk": "1.14.1"
+      }
+    },
+    "https-browserify": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz",
+      "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM="
+    },
+    "iconv-lite": {
+      "version": "0.4.19",
+      "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz",
+      "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ=="
+    },
+    "icss-replace-symbols": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz",
+      "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0="
+    },
+    "icss-utils": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz",
+      "integrity": "sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI=",
+      "requires": {
+        "postcss": "6.0.22"
+      }
+    },
+    "ieee754": {
+      "version": "1.1.11",
+      "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.11.tgz",
+      "integrity": "sha512-VhDzCKN7K8ufStx/CLj5/PDTMgph+qwN5Pkd5i0sGnVwk56zJ0lkT8Qzi1xqWLS0Wp29DgDtNeS7v8/wMoZeHg=="
+    },
+    "iferr": {
+      "version": "0.1.5",
+      "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz",
+      "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE="
+    },
+    "image-size": {
+      "version": "0.5.5",
+      "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz",
+      "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=",
+      "optional": true
+    },
+    "imagemin": {
+      "version": "5.3.1",
+      "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-5.3.1.tgz",
+      "integrity": "sha1-8Zwu7h5xumxlWMUV+fyWaAGJptQ=",
+      "requires": {
+        "file-type": "4.4.0",
+        "globby": "6.1.0",
+        "make-dir": "1.3.0",
+        "p-pipe": "1.2.0",
+        "pify": "2.3.0",
+        "replace-ext": "1.0.0"
+      },
+      "dependencies": {
+        "pify": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+          "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw="
+        }
+      }
+    },
+    "imagemin-gifsicle": {
+      "version": "5.2.0",
+      "resolved": "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-5.2.0.tgz",
+      "integrity": "sha512-K01m5QuPK+0en8oVhiOOAicF7KjrHlCZxS++mfLI2mV/Ksfq/Y9nCXCWDz6jRv13wwlqe5T7hXT+ji2DnLc2yQ==",
+      "requires": {
+        "exec-buffer": "3.2.0",
+        "gifsicle": "3.0.4",
+        "is-gif": "1.0.0"
+      }
+    },
+    "imagemin-mozjpeg": {
+      "version": "7.0.0",
+      "resolved": "https://registry.npmjs.org/imagemin-mozjpeg/-/imagemin-mozjpeg-7.0.0.tgz",
+      "integrity": "sha1-2SZHf8bvXzp2ikIi97LYCNPrpWg=",
+      "requires": {
+        "execa": "0.8.0",
+        "is-jpg": "1.0.1",
+        "mozjpeg": "5.0.0"
+      },
+      "dependencies": {
+        "execa": {
+          "version": "0.8.0",
+          "resolved": "https://registry.npmjs.org/execa/-/execa-0.8.0.tgz",
+          "integrity": "sha1-2NdrvBtVIX7RkP1t1J08d07PyNo=",
+          "requires": {
+            "cross-spawn": "5.1.0",
+            "get-stream": "3.0.0",
+            "is-stream": "1.1.0",
+            "npm-run-path": "2.0.2",
+            "p-finally": "1.0.0",
+            "signal-exit": "3.0.2",
+            "strip-eof": "1.0.0"
+          }
+        }
+      }
+    },
+    "imagemin-optipng": {
+      "version": "5.2.1",
+      "resolved": "https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-5.2.1.tgz",
+      "integrity": "sha1-0i2kEsCfX/AKQzmWC5ioix2+hpU=",
+      "requires": {
+        "exec-buffer": "3.2.0",
+        "is-png": "1.1.0",
+        "optipng-bin": "3.1.4"
+      }
+    },
+    "imagemin-pngquant": {
+      "version": "5.1.0",
+      "resolved": "https://registry.npmjs.org/imagemin-pngquant/-/imagemin-pngquant-5.1.0.tgz",
+      "integrity": "sha512-RtIUPbp8/HYX5EKY6p/L1NLKnkxNj37I92IFNsrptzBVql8FqBgPra9DO/eUgE4EWx+zq6ih4a/Y9YhF3pNM5A==",
+      "requires": {
+        "execa": "0.10.0",
+        "is-png": "1.1.0",
+        "is-stream": "1.1.0",
+        "pngquant-bin": "4.0.0"
+      },
+      "dependencies": {
+        "cross-spawn": {
+          "version": "6.0.5",
+          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+          "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+          "requires": {
+            "nice-try": "1.0.4",
+            "path-key": "2.0.1",
+            "semver": "5.5.0",
+            "shebang-command": "1.2.0",
+            "which": "1.3.0"
+          }
+        },
+        "execa": {
+          "version": "0.10.0",
+          "resolved": "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz",
+          "integrity": "sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==",
+          "requires": {
+            "cross-spawn": "6.0.5",
+            "get-stream": "3.0.0",
+            "is-stream": "1.1.0",
+            "npm-run-path": "2.0.2",
+            "p-finally": "1.0.0",
+            "signal-exit": "3.0.2",
+            "strip-eof": "1.0.0"
+          }
+        }
+      }
+    },
+    "imagemin-svgo": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-6.0.0.tgz",
+      "integrity": "sha512-xwjBZQKpbkklHtJYnCOwRJjTRJA/nR0hQzKMh+CUZRvm/L0QwKKPJQ9tkPWQHrg+cydPu2i1vLgHuy2E0hKEkg==",
+      "requires": {
+        "buffer-from": "0.1.2",
+        "is-svg": "2.1.0",
+        "svgo": "1.0.5"
+      },
+      "dependencies": {
+        "buffer-from": {
+          "version": "0.1.2",
+          "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-0.1.2.tgz",
+          "integrity": "sha512-RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg=="
+        },
+        "coa": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.1.tgz",
+          "integrity": "sha512-5wfTTO8E2/ja4jFSxePXlG5nRu5bBtL/r1HCIpJW/lzT6yDtKl0u0Z4o/Vpz32IpKmBn7HerheEZQgA9N2DarQ==",
+          "requires": {
+            "q": "1.5.1"
+          }
+        },
+        "csso": {
+          "version": "3.5.0",
+          "resolved": "https://registry.npmjs.org/csso/-/csso-3.5.0.tgz",
+          "integrity": "sha512-WtJjFP3ZsSdWhiZr4/k1B9uHPgYjFYnDxfbaJxk1hz5PDLIJ5BCRWkJqaztZ0DbP8d2ZIVwUPIJb2YmCwkPaMw==",
+          "requires": {
+            "css-tree": "1.0.0-alpha.27"
+          },
+          "dependencies": {
+            "css-tree": {
+              "version": "1.0.0-alpha.27",
+              "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.27.tgz",
+              "integrity": "sha512-BAYp9FyN4jLXjfvRpTDchBllDptqlK9I7OsagXCG9Am5C+5jc8eRZHgqb9x500W2OKS14MMlpQc/nmh/aA7TEQ==",
+              "requires": {
+                "mdn-data": "1.1.2",
+                "source-map": "0.5.7"
+              }
+            }
+          }
+        },
+        "esprima": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz",
+          "integrity": "sha512-oftTcaMu/EGrEIu904mWteKIv8vMuOgGYo7EhVJJN00R/EED9DCua/xxHRdYnKtcECzVg7xOWhflvJMnqcFZjw=="
+        },
+        "js-yaml": {
+          "version": "3.10.0",
+          "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz",
+          "integrity": "sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==",
+          "requires": {
+            "argparse": "1.0.10",
+            "esprima": "4.0.0"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "svgo": {
+          "version": "1.0.5",
+          "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.0.5.tgz",
+          "integrity": "sha512-nYrifviB77aNKDNKKyuay3M9aYiK6Hv5gJVDdjj2ZXTQmI8WZc8+UPLR5IpVlktJfSu3co/4XcWgrgI6seGBPg==",
+          "requires": {
+            "coa": "2.0.1",
+            "colors": "1.1.2",
+            "css-select": "1.3.0-rc0",
+            "css-select-base-adapter": "0.1.0",
+            "css-tree": "1.0.0-alpha25",
+            "css-url-regex": "1.1.0",
+            "csso": "3.5.0",
+            "js-yaml": "3.10.0",
+            "mkdirp": "0.5.1",
+            "object.values": "1.0.4",
+            "sax": "1.2.4",
+            "stable": "0.1.8",
+            "unquote": "1.1.1",
+            "util.promisify": "1.0.0"
+          }
+        }
+      }
+    },
+    "img-loader": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/img-loader/-/img-loader-2.0.1.tgz",
+      "integrity": "sha512-cD5D+zzIDvVPyX9nmz6+GL20BfpRUKUEXFur9IPeUC8/LRJT/PQ3YJVyKelIum8R5rCVZXgSFB0ccpsnS4IyAQ==",
+      "requires": {
+        "imagemin": "5.3.1",
+        "imagemin-gifsicle": "5.2.0",
+        "imagemin-mozjpeg": "7.0.0",
+        "imagemin-optipng": "5.2.1",
+        "imagemin-pngquant": "5.1.0",
+        "imagemin-svgo": "6.0.0",
+        "loader-utils": "1.1.0"
+      }
+    },
+    "import-local": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/import-local/-/import-local-1.0.0.tgz",
+      "integrity": "sha512-vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ==",
+      "requires": {
+        "pkg-dir": "2.0.0",
+        "resolve-cwd": "2.0.0"
+      }
+    },
+    "imurmurhash": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+      "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o="
+    },
+    "in-publish": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz",
+      "integrity": "sha1-4g/146KvwmkDILbcVSaCqcf631E="
+    },
+    "indent-string": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz",
+      "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=",
+      "requires": {
+        "repeating": "2.0.1"
+      }
+    },
+    "indexes-of": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz",
+      "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc="
+    },
+    "indexof": {
+      "version": "0.0.1",
+      "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz",
+      "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10="
+    },
+    "inflight": {
+      "version": "1.0.6",
+      "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+      "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
+      "requires": {
+        "once": "1.4.0",
+        "wrappy": "1.0.2"
+      }
+    },
+    "inherits": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+      "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
+    },
+    "ini": {
+      "version": "1.3.5",
+      "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
+      "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw=="
+    },
+    "internal-ip": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-1.2.0.tgz",
+      "integrity": "sha1-rp+/k7mEh4eF1QqN4bNWlWBYz1w=",
+      "requires": {
+        "meow": "3.7.0"
+      }
+    },
+    "interpret": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz",
+      "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ="
+    },
+    "invariant": {
+      "version": "2.2.4",
+      "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
+      "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
+      "requires": {
+        "loose-envify": "1.3.1"
+      }
+    },
+    "invert-kv": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz",
+      "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY="
+    },
+    "ip": {
+      "version": "1.1.5",
+      "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz",
+      "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo="
+    },
+    "ip-regex": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-1.0.3.tgz",
+      "integrity": "sha1-3FiQdvZZ9BnCIgOaMzFvHHOH7/0="
+    },
+    "ipaddr.js": {
+      "version": "1.6.0",
+      "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.6.0.tgz",
+      "integrity": "sha1-4/o1e3c9phnybpXwSdBVxyeW+Gs="
+    },
+    "is-absolute": {
+      "version": "0.1.7",
+      "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-0.1.7.tgz",
+      "integrity": "sha1-hHSREZ/MtftDYhfMc39/qtUPYD8=",
+      "requires": {
+        "is-relative": "0.1.3"
+      }
+    },
+    "is-absolute-url": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz",
+      "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY="
+    },
+    "is-accessor-descriptor": {
+      "version": "0.1.6",
+      "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
+      "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
+      "requires": {
+        "kind-of": "3.2.2"
+      },
+      "dependencies": {
+        "kind-of": {
+          "version": "3.2.2",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+          "requires": {
+            "is-buffer": "1.1.6"
+          }
+        }
+      }
+    },
+    "is-arrayish": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+      "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0="
+    },
+    "is-binary-path": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
+      "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
+      "requires": {
+        "binary-extensions": "1.11.0"
+      }
+    },
+    "is-buffer": {
+      "version": "1.1.6",
+      "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+      "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
+    },
+    "is-builtin-module": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz",
+      "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=",
+      "requires": {
+        "builtin-modules": "1.1.1"
+      }
+    },
+    "is-bzip2": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-bzip2/-/is-bzip2-1.0.0.tgz",
+      "integrity": "sha1-XuWOqlounIDiFAe+3yOuWsCRs/w="
+    },
+    "is-callable": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz",
+      "integrity": "sha1-hut1OSgF3cM69xySoO7fdO52BLI="
+    },
+    "is-data-descriptor": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
+      "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
+      "requires": {
+        "kind-of": "3.2.2"
+      },
+      "dependencies": {
+        "kind-of": {
+          "version": "3.2.2",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+          "requires": {
+            "is-buffer": "1.1.6"
+          }
+        }
+      }
+    },
+    "is-date-object": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz",
+      "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY="
+    },
+    "is-descriptor": {
+      "version": "0.1.6",
+      "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
+      "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+      "requires": {
+        "is-accessor-descriptor": "0.1.6",
+        "is-data-descriptor": "0.1.4",
+        "kind-of": "5.1.0"
+      },
+      "dependencies": {
+        "kind-of": {
+          "version": "5.1.0",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+          "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
+        }
+      }
+    },
+    "is-directory": {
+      "version": "0.3.1",
+      "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz",
+      "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE="
+    },
+    "is-dotfile": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz",
+      "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE="
+    },
+    "is-equal-shallow": {
+      "version": "0.1.3",
+      "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz",
+      "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=",
+      "requires": {
+        "is-primitive": "2.0.0"
+      }
+    },
+    "is-extendable": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+      "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik="
+    },
+    "is-extglob": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+      "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
+    },
+    "is-finite": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz",
+      "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=",
+      "requires": {
+        "number-is-nan": "1.0.1"
+      }
+    },
+    "is-fullwidth-code-point": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+      "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8="
+    },
+    "is-gif": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-gif/-/is-gif-1.0.0.tgz",
+      "integrity": "sha1-ptKumIkwB7/6l6HYwB1jIFgyCX4="
+    },
+    "is-glob": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz",
+      "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=",
+      "requires": {
+        "is-extglob": "2.1.1"
+      }
+    },
+    "is-gzip": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz",
+      "integrity": "sha1-bKiwe5nHeZgCWQDlVc7Y7YCHmoM="
+    },
+    "is-jpg": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/is-jpg/-/is-jpg-1.0.1.tgz",
+      "integrity": "sha1-KW1X/dmc4BBDSnKD40armhA16XU="
+    },
+    "is-my-ip-valid": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz",
+      "integrity": "sha512-gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ=="
+    },
+    "is-my-json-valid": {
+      "version": "2.17.2",
+      "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.2.tgz",
+      "integrity": "sha512-IBhBslgngMQN8DDSppmgDv7RNrlFotuuDsKcrCP3+HbFaVivIBU7u9oiiErw8sH4ynx3+gOGQ3q2otkgiSi6kg==",
+      "requires": {
+        "generate-function": "2.0.0",
+        "generate-object-property": "1.2.0",
+        "is-my-ip-valid": "1.0.0",
+        "jsonpointer": "4.0.1",
+        "xtend": "4.0.1"
+      }
+    },
+    "is-natural-number": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-2.1.1.tgz",
+      "integrity": "sha1-fUxXKDd+84bD4ZSpkRv1fG3DNec="
+    },
+    "is-number": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+      "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+      "requires": {
+        "kind-of": "3.2.2"
+      },
+      "dependencies": {
+        "kind-of": {
+          "version": "3.2.2",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+          "requires": {
+            "is-buffer": "1.1.6"
+          }
+        }
+      }
+    },
+    "is-obj": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
+      "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8="
+    },
+    "is-object": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz",
+      "integrity": "sha1-iVJojF7C/9awPsyF52ngKQMINHA="
+    },
+    "is-odd": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/is-odd/-/is-odd-2.0.0.tgz",
+      "integrity": "sha512-OTiixgpZAT1M4NHgS5IguFp/Vz2VI3U7Goh4/HA1adtwyLtSBrxYlcSYkhpAE07s4fKEcjrFxyvtQBND4vFQyQ==",
+      "requires": {
+        "is-number": "4.0.0"
+      },
+      "dependencies": {
+        "is-number": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz",
+          "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ=="
+        }
+      }
+    },
+    "is-path-cwd": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz",
+      "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0="
+    },
+    "is-path-in-cwd": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz",
+      "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==",
+      "requires": {
+        "is-path-inside": "1.0.1"
+      }
+    },
+    "is-path-inside": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz",
+      "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=",
+      "requires": {
+        "path-is-inside": "1.0.2"
+      }
+    },
+    "is-plain-obj": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
+      "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4="
+    },
+    "is-plain-object": {
+      "version": "2.0.4",
+      "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
+      "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
+      "requires": {
+        "isobject": "3.0.1"
+      }
+    },
+    "is-png": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/is-png/-/is-png-1.1.0.tgz",
+      "integrity": "sha1-1XSxK/J1wDUEVVcLDltXqwYgd84="
+    },
+    "is-posix-bracket": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz",
+      "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q="
+    },
+    "is-primitive": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz",
+      "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU="
+    },
+    "is-property": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz",
+      "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ="
+    },
+    "is-redirect": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz",
+      "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ="
+    },
+    "is-regex": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz",
+      "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=",
+      "requires": {
+        "has": "1.0.1"
+      }
+    },
+    "is-relative": {
+      "version": "0.1.3",
+      "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-0.1.3.tgz",
+      "integrity": "sha1-kF/uiuhvRbPsYUvDwVyGnfCHboI="
+    },
+    "is-retry-allowed": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz",
+      "integrity": "sha1-EaBgVotnM5REAz0BJaYaINVk+zQ="
+    },
+    "is-stream": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
+      "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
+    },
+    "is-svg": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz",
+      "integrity": "sha1-z2EJDaDZ77yrhyLeum8DIgjbsOk=",
+      "requires": {
+        "html-comment-regex": "1.1.1"
+      }
+    },
+    "is-symbol": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz",
+      "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI="
+    },
+    "is-tar": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-tar/-/is-tar-1.0.0.tgz",
+      "integrity": "sha1-L2suF5LB9bs2UZrKqdZcDSb+hT0="
+    },
+    "is-typedarray": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
+      "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
+    },
+    "is-url": {
+      "version": "1.2.4",
+      "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz",
+      "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww=="
+    },
+    "is-utf8": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz",
+      "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI="
+    },
+    "is-valid-glob": {
+      "version": "0.3.0",
+      "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-0.3.0.tgz",
+      "integrity": "sha1-1LVcafUYhvm2XHDWwmItN+KfSP4="
+    },
+    "is-windows": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
+      "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="
+    },
+    "is-wsl": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz",
+      "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0="
+    },
+    "is-zip": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-zip/-/is-zip-1.0.0.tgz",
+      "integrity": "sha1-R7Co/004p2QxzP2ZqOFaTIa6IyU="
+    },
+    "isarray": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+      "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
+    },
+    "isexe": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+      "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA="
+    },
+    "isobject": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
+      "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
+    },
+    "isstream": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
+      "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
+    },
+    "isurl": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz",
+      "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==",
+      "requires": {
+        "has-to-string-tag-x": "1.4.1",
+        "is-object": "1.0.1"
+      }
+    },
+    "jquery": {
+      "version": "3.3.1",
+      "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.3.1.tgz",
+      "integrity": "sha512-Ubldcmxp5np52/ENotGxlLe6aGMvmF4R8S6tZjsP6Knsaxd/xp3Zrh50cG93lR6nPXyUFwzN3ZSOQI0wRJNdGg=="
+    },
+    "jquery-match-height": {
+      "version": "0.7.2",
+      "resolved": "https://registry.npmjs.org/jquery-match-height/-/jquery-match-height-0.7.2.tgz",
+      "integrity": "sha1-+NnzulMU2qsQnPB0CGdL4gS+Xw4="
+    },
+    "js-base64": {
+      "version": "2.4.3",
+      "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.3.tgz",
+      "integrity": "sha512-H7ErYLM34CvDMto3GbD6xD0JLUGYXR3QTcH6B/tr4Hi/QpSThnCsIp+Sy5FRTw3B0d6py4HcNkW7nO/wdtGWEw=="
+    },
+    "js-tokens": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz",
+      "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls="
+    },
+    "js-yaml": {
+      "version": "3.7.0",
+      "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz",
+      "integrity": "sha1-XJZ93YN6m/3KXy3oQlOr6KHAO4A=",
+      "requires": {
+        "argparse": "1.0.10",
+        "esprima": "2.7.3"
+      }
+    },
+    "jsbn": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
+      "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
+      "optional": true
+    },
+    "jsesc": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz",
+      "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s="
+    },
+    "json-loader": {
+      "version": "0.5.7",
+      "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz",
+      "integrity": "sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w=="
+    },
+    "json-schema": {
+      "version": "0.2.3",
+      "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
+      "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM="
+    },
+    "json-schema-traverse": {
+      "version": "0.3.1",
+      "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz",
+      "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A="
+    },
+    "json-stable-stringify": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz",
+      "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=",
+      "requires": {
+        "jsonify": "0.0.0"
+      }
+    },
+    "json-stringify-safe": {
+      "version": "5.0.1",
+      "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
+      "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
+    },
+    "json3": {
+      "version": "3.3.2",
+      "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz",
+      "integrity": "sha1-PAQ0dD35Pi9cQq7nsZvLSDV19OE="
+    },
+    "json5": {
+      "version": "0.5.1",
+      "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
+      "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE="
+    },
+    "jsonfile": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz",
+      "integrity": "sha1-pezG9l9T9mLEQVx2daAzHQmS7GY=",
+      "requires": {
+        "graceful-fs": "4.1.11"
+      }
+    },
+    "jsonify": {
+      "version": "0.0.0",
+      "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz",
+      "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM="
+    },
+    "jsonpointer": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz",
+      "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk="
+    },
+    "jsprim": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
+      "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
+      "requires": {
+        "assert-plus": "1.0.0",
+        "extsprintf": "1.3.0",
+        "json-schema": "0.2.3",
+        "verror": "1.10.0"
+      },
+      "dependencies": {
+        "assert-plus": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+          "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
+        }
+      }
+    },
+    "killable": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.0.tgz",
+      "integrity": "sha1-2ouEvUfeU5WHj5XWTQLyRJ/gXms="
+    },
+    "kind-of": {
+      "version": "6.0.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
+      "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
+    },
+    "laravel-mix": {
+      "version": "2.1.11",
+      "resolved": "https://registry.npmjs.org/laravel-mix/-/laravel-mix-2.1.11.tgz",
+      "integrity": "sha512-+iDqVPOuHSq6Ng/WX0w8V2O7R8847u1N1jybB/AAuRca3nRw4iI9BNNJ307ViiXb1GulxKixLe67shPFatJjvQ==",
+      "requires": {
+        "autoprefixer": "7.2.6",
+        "babel-core": "6.26.3",
+        "babel-loader": "7.1.4",
+        "babel-plugin-transform-object-rest-spread": "6.26.0",
+        "babel-plugin-transform-runtime": "6.23.0",
+        "babel-preset-env": "1.6.1",
+        "chokidar": "2.0.3",
+        "clean-css": "4.1.11",
+        "concatenate": "0.0.2",
+        "css-loader": "0.28.11",
+        "dotenv": "4.0.0",
+        "dotenv-expand": "4.2.0",
+        "extract-text-webpack-plugin": "3.0.2",
+        "file-loader": "0.11.2",
+        "friendly-errors-webpack-plugin": "1.7.0",
+        "fs-extra": "3.0.1",
+        "glob": "7.1.2",
+        "html-loader": "0.4.5",
+        "img-loader": "2.0.1",
+        "lodash": "4.17.10",
+        "md5": "2.2.1",
+        "node-sass": "4.9.0",
+        "postcss-loader": "2.1.5",
+        "resolve-url-loader": "2.3.0",
+        "sass-loader": "6.0.7",
+        "style-loader": "0.18.2",
+        "uglify-js": "2.8.29",
+        "uglifyjs-webpack-plugin": "1.2.5",
+        "vue-loader": "13.7.1",
+        "vue-template-compiler": "2.5.16",
+        "webpack": "3.11.0",
+        "webpack-chunk-hash": "0.4.0",
+        "webpack-dev-server": "2.11.2",
+        "webpack-merge": "4.1.2",
+        "webpack-notifier": "1.6.0",
+        "yargs": "8.0.2"
+      }
+    },
+    "lazy-cache": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz",
+      "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4="
+    },
+    "lazy-req": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/lazy-req/-/lazy-req-1.1.0.tgz",
+      "integrity": "sha1-va6+rTD42CQDnODOFJ1Nqge6H6w="
+    },
+    "lazystream": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz",
+      "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=",
+      "requires": {
+        "readable-stream": "2.3.6"
+      }
+    },
+    "lcid": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz",
+      "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=",
+      "requires": {
+        "invert-kv": "1.0.0"
+      }
+    },
+    "less": {
+      "version": "3.0.4",
+      "resolved": "https://registry.npmjs.org/less/-/less-3.0.4.tgz",
+      "integrity": "sha512-q3SyEnPKbk9zh4l36PGeW2fgynKu+FpbhiUNx/yaiBUQ3V0CbACCgb9FzYWcRgI2DJlP6eI4jc8XPrCTi55YcQ==",
+      "requires": {
+        "errno": "0.1.7",
+        "graceful-fs": "4.1.11",
+        "image-size": "0.5.5",
+        "mime": "1.4.1",
+        "mkdirp": "0.5.1",
+        "promise": "7.3.1",
+        "request": "2.85.0",
+        "source-map": "0.6.1"
+      },
+      "dependencies": {
+        "assert-plus": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+          "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
+          "optional": true
+        },
+        "aws-sign2": {
+          "version": "0.7.0",
+          "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
+          "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
+          "optional": true
+        },
+        "boom": {
+          "version": "4.3.1",
+          "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz",
+          "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=",
+          "optional": true,
+          "requires": {
+            "hoek": "4.2.1"
+          }
+        },
+        "caseless": {
+          "version": "0.12.0",
+          "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
+          "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
+          "optional": true
+        },
+        "cryptiles": {
+          "version": "3.1.2",
+          "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz",
+          "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=",
+          "optional": true,
+          "requires": {
+            "boom": "5.2.0"
+          },
+          "dependencies": {
+            "boom": {
+              "version": "5.2.0",
+              "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz",
+              "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==",
+              "optional": true,
+              "requires": {
+                "hoek": "4.2.1"
+              }
+            }
+          }
+        },
+        "form-data": {
+          "version": "2.3.2",
+          "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz",
+          "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=",
+          "optional": true,
+          "requires": {
+            "asynckit": "0.4.0",
+            "combined-stream": "1.0.6",
+            "mime-types": "2.1.18"
+          }
+        },
+        "har-validator": {
+          "version": "5.0.3",
+          "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz",
+          "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=",
+          "optional": true,
+          "requires": {
+            "ajv": "5.5.2",
+            "har-schema": "2.0.0"
+          }
+        },
+        "hawk": {
+          "version": "6.0.2",
+          "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz",
+          "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==",
+          "optional": true,
+          "requires": {
+            "boom": "4.3.1",
+            "cryptiles": "3.1.2",
+            "hoek": "4.2.1",
+            "sntp": "2.1.0"
+          }
+        },
+        "hoek": {
+          "version": "4.2.1",
+          "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz",
+          "integrity": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA=="
+        },
+        "http-signature": {
+          "version": "1.2.0",
+          "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
+          "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
+          "optional": true,
+          "requires": {
+            "assert-plus": "1.0.0",
+            "jsprim": "1.4.1",
+            "sshpk": "1.14.1"
+          }
+        },
+        "qs": {
+          "version": "6.5.2",
+          "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
+          "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==",
+          "optional": true
+        },
+        "request": {
+          "version": "2.85.0",
+          "resolved": "https://registry.npmjs.org/request/-/request-2.85.0.tgz",
+          "integrity": "sha512-8H7Ehijd4js+s6wuVPLjwORxD4zeuyjYugprdOXlPSqaApmL/QOy+EB/beICHVCHkGMKNh5rvihb5ov+IDw4mg==",
+          "optional": true,
+          "requires": {
+            "aws-sign2": "0.7.0",
+            "aws4": "1.7.0",
+            "caseless": "0.12.0",
+            "combined-stream": "1.0.6",
+            "extend": "3.0.1",
+            "forever-agent": "0.6.1",
+            "form-data": "2.3.2",
+            "har-validator": "5.0.3",
+            "hawk": "6.0.2",
+            "http-signature": "1.2.0",
+            "is-typedarray": "1.0.0",
+            "isstream": "0.1.2",
+            "json-stringify-safe": "5.0.1",
+            "mime-types": "2.1.18",
+            "oauth-sign": "0.8.2",
+            "performance-now": "2.1.0",
+            "qs": "6.5.2",
+            "safe-buffer": "5.1.2",
+            "stringstream": "0.0.5",
+            "tough-cookie": "2.3.4",
+            "tunnel-agent": "0.6.0",
+            "uuid": "3.2.1"
+          }
+        },
+        "sntp": {
+          "version": "2.1.0",
+          "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz",
+          "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==",
+          "optional": true,
+          "requires": {
+            "hoek": "4.2.1"
+          }
+        },
+        "tunnel-agent": {
+          "version": "0.6.0",
+          "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
+          "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
+          "optional": true,
+          "requires": {
+            "safe-buffer": "5.1.2"
+          }
+        }
+      }
+    },
+    "less-loader": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-4.1.0.tgz",
+      "integrity": "sha512-KNTsgCE9tMOM70+ddxp9yyt9iHqgmSs0yTZc5XH5Wo+g80RWRIYNqE58QJKm/yMud5wZEvz50ugRDuzVIkyahg==",
+      "requires": {
+        "clone": "2.1.1",
+        "loader-utils": "1.1.0",
+        "pify": "3.0.0"
+      },
+      "dependencies": {
+        "clone": {
+          "version": "2.1.1",
+          "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz",
+          "integrity": "sha1-0hfR6WERjjrJpLi7oyhVU79kfNs="
+        }
+      }
+    },
+    "load-json-file": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz",
+      "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=",
+      "requires": {
+        "graceful-fs": "4.1.11",
+        "parse-json": "2.2.0",
+        "pify": "2.3.0",
+        "pinkie-promise": "2.0.1",
+        "strip-bom": "2.0.0"
+      },
+      "dependencies": {
+        "pify": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+          "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw="
+        }
+      }
+    },
+    "loader-runner": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.0.tgz",
+      "integrity": "sha1-9IKuqC1UPgeSFwDVpG7yb9rGuKI="
+    },
+    "loader-utils": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz",
+      "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=",
+      "requires": {
+        "big.js": "3.2.0",
+        "emojis-list": "2.1.0",
+        "json5": "0.5.1"
+      }
+    },
+    "locate-path": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+      "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
+      "requires": {
+        "p-locate": "2.0.0",
+        "path-exists": "3.0.0"
+      }
+    },
+    "lodash": {
+      "version": "4.17.10",
+      "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz",
+      "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
+    },
+    "lodash._baseassign": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz",
+      "integrity": "sha1-jDigmVAPIVrQnlnxci/QxSv+Ck4=",
+      "requires": {
+        "lodash._basecopy": "3.0.1",
+        "lodash.keys": "3.1.2"
+      }
+    },
+    "lodash._basecopy": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz",
+      "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY="
+    },
+    "lodash._basetostring": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz",
+      "integrity": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U="
+    },
+    "lodash._basevalues": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz",
+      "integrity": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc="
+    },
+    "lodash._bindcallback": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz",
+      "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4="
+    },
+    "lodash._createassigner": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz",
+      "integrity": "sha1-g4pbri/aymOsIt7o4Z+k5taXCxE=",
+      "requires": {
+        "lodash._bindcallback": "3.0.1",
+        "lodash._isiterateecall": "3.0.9",
+        "lodash.restparam": "3.6.1"
+      }
+    },
+    "lodash._getnative": {
+      "version": "3.9.1",
+      "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz",
+      "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U="
+    },
+    "lodash._isiterateecall": {
+      "version": "3.0.9",
+      "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz",
+      "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw="
+    },
+    "lodash._reescape": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz",
+      "integrity": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo="
+    },
+    "lodash._reevaluate": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz",
+      "integrity": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0="
+    },
+    "lodash._reinterpolate": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
+      "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0="
+    },
+    "lodash._root": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz",
+      "integrity": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI="
+    },
+    "lodash.assign": {
+      "version": "4.2.0",
+      "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz",
+      "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc="
+    },
+    "lodash.camelcase": {
+      "version": "4.3.0",
+      "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
+      "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY="
+    },
+    "lodash.clonedeep": {
+      "version": "4.5.0",
+      "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
+      "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8="
+    },
+    "lodash.defaults": {
+      "version": "4.2.0",
+      "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz",
+      "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw="
+    },
+    "lodash.escape": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz",
+      "integrity": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=",
+      "requires": {
+        "lodash._root": "3.0.1"
+      }
+    },
+    "lodash.isarguments": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz",
+      "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo="
+    },
+    "lodash.isarray": {
+      "version": "3.0.4",
+      "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz",
+      "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U="
+    },
+    "lodash.isequal": {
+      "version": "4.5.0",
+      "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
+      "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA="
+    },
+    "lodash.keys": {
+      "version": "3.1.2",
+      "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz",
+      "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=",
+      "requires": {
+        "lodash._getnative": "3.9.1",
+        "lodash.isarguments": "3.1.0",
+        "lodash.isarray": "3.0.4"
+      }
+    },
+    "lodash.memoize": {
+      "version": "4.1.2",
+      "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
+      "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4="
+    },
+    "lodash.mergewith": {
+      "version": "4.6.1",
+      "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz",
+      "integrity": "sha512-eWw5r+PYICtEBgrBE5hhlT6aAa75f411bgDz/ZL2KZqYV03USvucsxcHUIlGTDTECs1eunpI7HOV7U+WLDvNdQ=="
+    },
+    "lodash.restparam": {
+      "version": "3.6.1",
+      "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz",
+      "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU="
+    },
+    "lodash.tail": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/lodash.tail/-/lodash.tail-4.1.1.tgz",
+      "integrity": "sha1-0jM6NtnncXyK0vfKyv7HwytERmQ="
+    },
+    "lodash.template": {
+      "version": "3.6.2",
+      "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz",
+      "integrity": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=",
+      "requires": {
+        "lodash._basecopy": "3.0.1",
+        "lodash._basetostring": "3.0.1",
+        "lodash._basevalues": "3.0.0",
+        "lodash._isiterateecall": "3.0.9",
+        "lodash._reinterpolate": "3.0.0",
+        "lodash.escape": "3.2.0",
+        "lodash.keys": "3.1.2",
+        "lodash.restparam": "3.6.1",
+        "lodash.templatesettings": "3.1.1"
+      }
+    },
+    "lodash.templatesettings": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz",
+      "integrity": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=",
+      "requires": {
+        "lodash._reinterpolate": "3.0.0",
+        "lodash.escape": "3.2.0"
+      }
+    },
+    "lodash.uniq": {
+      "version": "4.5.0",
+      "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
+      "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M="
+    },
+    "logalot": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/logalot/-/logalot-2.1.0.tgz",
+      "integrity": "sha1-X46MkNME7fElMJUaVVSruMXj9VI=",
+      "requires": {
+        "figures": "1.7.0",
+        "squeak": "1.3.0"
+      }
+    },
+    "loglevel": {
+      "version": "1.6.1",
+      "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.1.tgz",
+      "integrity": "sha1-4PyVEztu8nbNyIh82vJKpvFW+Po="
+    },
+    "longest": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz",
+      "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc="
+    },
+    "loose-envify": {
+      "version": "1.3.1",
+      "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz",
+      "integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=",
+      "requires": {
+        "js-tokens": "3.0.2"
+      }
+    },
+    "loud-rejection": {
+      "version": "1.6.0",
+      "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz",
+      "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=",
+      "requires": {
+        "currently-unhandled": "0.4.1",
+        "signal-exit": "3.0.2"
+      }
+    },
+    "lower-case": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz",
+      "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw="
+    },
+    "lowercase-keys": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
+      "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA=="
+    },
+    "lpad-align": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/lpad-align/-/lpad-align-1.1.2.tgz",
+      "integrity": "sha1-IfYArBwwlcPG5JfuZyce4ISB/p4=",
+      "requires": {
+        "get-stdin": "4.0.1",
+        "indent-string": "2.1.0",
+        "longest": "1.0.1",
+        "meow": "3.7.0"
+      }
+    },
+    "lru-cache": {
+      "version": "4.1.3",
+      "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz",
+      "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==",
+      "requires": {
+        "pseudomap": "1.0.2",
+        "yallist": "2.1.2"
+      }
+    },
+    "macaddress": {
+      "version": "0.2.8",
+      "resolved": "https://registry.npmjs.org/macaddress/-/macaddress-0.2.8.tgz",
+      "integrity": "sha1-WQTcU3w57G2+/q6QIycTX6hRHxI="
+    },
+    "make-dir": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz",
+      "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==",
+      "requires": {
+        "pify": "3.0.0"
+      }
+    },
+    "map-cache": {
+      "version": "0.2.2",
+      "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
+      "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8="
+    },
+    "map-obj": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz",
+      "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0="
+    },
+    "map-visit": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
+      "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
+      "requires": {
+        "object-visit": "1.0.1"
+      }
+    },
+    "math-expression-evaluator": {
+      "version": "1.2.17",
+      "resolved": "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz",
+      "integrity": "sha1-3oGf282E3M2PrlnGrreWFbnSZqw="
+    },
+    "md5": {
+      "version": "2.2.1",
+      "resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz",
+      "integrity": "sha1-U6s41f48iJG6RlMp6iP6wFQBJvk=",
+      "requires": {
+        "charenc": "0.0.2",
+        "crypt": "0.0.2",
+        "is-buffer": "1.1.6"
+      }
+    },
+    "md5.js": {
+      "version": "1.3.4",
+      "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.4.tgz",
+      "integrity": "sha1-6b296UogpawYsENA/Fdk1bCdkB0=",
+      "requires": {
+        "hash-base": "3.0.4",
+        "inherits": "2.0.3"
+      }
+    },
+    "mdn-data": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.2.tgz",
+      "integrity": "sha512-HUqqf4U+XdKomJXe2Chw+b1zPXFRUZ3bfUbrGLQ2TGwMOBRULuTHI9geusGqRL4WzsusnLLxYAxV4f/F/8wV+g=="
+    },
+    "media-typer": {
+      "version": "0.3.0",
+      "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
+      "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g="
+    },
+    "mem": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz",
+      "integrity": "sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=",
+      "requires": {
+        "mimic-fn": "1.2.0"
+      }
+    },
+    "memory-fs": {
+      "version": "0.4.1",
+      "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz",
+      "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=",
+      "requires": {
+        "errno": "0.1.7",
+        "readable-stream": "2.3.6"
+      }
+    },
+    "meow": {
+      "version": "3.7.0",
+      "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz",
+      "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=",
+      "requires": {
+        "camelcase-keys": "2.1.0",
+        "decamelize": "1.2.0",
+        "loud-rejection": "1.6.0",
+        "map-obj": "1.0.1",
+        "minimist": "1.2.0",
+        "normalize-package-data": "2.4.0",
+        "object-assign": "4.1.1",
+        "read-pkg-up": "1.0.1",
+        "redent": "1.0.0",
+        "trim-newlines": "1.0.0"
+      },
+      "dependencies": {
+        "minimist": {
+          "version": "1.2.0",
+          "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
+          "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
+        }
+      }
+    },
+    "merge-descriptors": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
+      "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E="
+    },
+    "merge-stream": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz",
+      "integrity": "sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=",
+      "requires": {
+        "readable-stream": "2.3.6"
+      }
+    },
+    "methods": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
+      "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4="
+    },
+    "micromatch": {
+      "version": "3.1.10",
+      "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+      "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+      "requires": {
+        "arr-diff": "4.0.0",
+        "array-unique": "0.3.2",
+        "braces": "2.3.2",
+        "define-property": "2.0.2",
+        "extend-shallow": "3.0.2",
+        "extglob": "2.0.4",
+        "fragment-cache": "0.2.1",
+        "kind-of": "6.0.2",
+        "nanomatch": "1.2.9",
+        "object.pick": "1.3.0",
+        "regex-not": "1.0.2",
+        "snapdragon": "0.8.2",
+        "to-regex": "3.0.2"
+      }
+    },
+    "miller-rabin": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
+      "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
+      "requires": {
+        "bn.js": "4.11.8",
+        "brorand": "1.1.0"
+      }
+    },
+    "mime": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz",
+      "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ=="
+    },
+    "mime-db": {
+      "version": "1.33.0",
+      "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz",
+      "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="
+    },
+    "mime-types": {
+      "version": "2.1.18",
+      "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz",
+      "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==",
+      "requires": {
+        "mime-db": "1.33.0"
+      }
+    },
+    "mimic-fn": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz",
+      "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ=="
+    },
+    "mimic-response": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.0.tgz",
+      "integrity": "sha1-3z02Uqc/3ta5sLJBRub9BSNTRY4="
+    },
+    "minimalistic-assert": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
+      "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="
+    },
+    "minimalistic-crypto-utils": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
+      "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo="
+    },
+    "minimatch": {
+      "version": "3.0.4",
+      "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+      "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+      "requires": {
+        "brace-expansion": "1.1.11"
+      }
+    },
+    "minimist": {
+      "version": "0.0.8",
+      "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
+      "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
+    },
+    "mississippi": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz",
+      "integrity": "sha512-zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==",
+      "requires": {
+        "concat-stream": "1.6.2",
+        "duplexify": "3.6.0",
+        "end-of-stream": "1.4.1",
+        "flush-write-stream": "1.0.3",
+        "from2": "2.3.0",
+        "parallel-transform": "1.1.0",
+        "pump": "2.0.1",
+        "pumpify": "1.5.0",
+        "stream-each": "1.2.2",
+        "through2": "2.0.3"
+      },
+      "dependencies": {
+        "through2": {
+          "version": "2.0.3",
+          "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz",
+          "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=",
+          "requires": {
+            "readable-stream": "2.3.6",
+            "xtend": "4.0.1"
+          }
+        }
+      }
+    },
+    "mixin-deep": {
+      "version": "1.3.1",
+      "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz",
+      "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==",
+      "requires": {
+        "for-in": "1.0.2",
+        "is-extendable": "1.0.1"
+      },
+      "dependencies": {
+        "is-extendable": {
+          "version": "1.0.1",
+          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
+          "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+          "requires": {
+            "is-plain-object": "2.0.4"
+          }
+        }
+      }
+    },
+    "mixin-object": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz",
+      "integrity": "sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=",
+      "requires": {
+        "for-in": "0.1.8",
+        "is-extendable": "0.1.1"
+      },
+      "dependencies": {
+        "for-in": {
+          "version": "0.1.8",
+          "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz",
+          "integrity": "sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE="
+        }
+      }
+    },
+    "mkdirp": {
+      "version": "0.5.1",
+      "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
+      "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
+      "requires": {
+        "minimist": "0.0.8"
+      }
+    },
+    "move-concurrently": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz",
+      "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=",
+      "requires": {
+        "aproba": "1.2.0",
+        "copy-concurrently": "1.0.5",
+        "fs-write-stream-atomic": "1.0.10",
+        "mkdirp": "0.5.1",
+        "rimraf": "2.6.2",
+        "run-queue": "1.0.3"
+      }
+    },
+    "mozjpeg": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/mozjpeg/-/mozjpeg-5.0.0.tgz",
+      "integrity": "sha1-uGccSSRWijY94AP/L9OXq4P3UsU=",
+      "requires": {
+        "bin-build": "2.2.0",
+        "bin-wrapper": "3.0.2",
+        "logalot": "2.1.0"
+      }
+    },
+    "ms": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+      "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+    },
+    "multicast-dns": {
+      "version": "6.2.3",
+      "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz",
+      "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==",
+      "requires": {
+        "dns-packet": "1.3.1",
+        "thunky": "1.0.2"
+      }
+    },
+    "multicast-dns-service-types": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz",
+      "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE="
+    },
+    "multipipe": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz",
+      "integrity": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=",
+      "requires": {
+        "duplexer2": "0.0.2"
+      },
+      "dependencies": {
+        "duplexer2": {
+          "version": "0.0.2",
+          "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz",
+          "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=",
+          "requires": {
+            "readable-stream": "1.1.14"
+          }
+        },
+        "isarray": {
+          "version": "0.0.1",
+          "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
+          "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8="
+        },
+        "readable-stream": {
+          "version": "1.1.14",
+          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
+          "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
+          "requires": {
+            "core-util-is": "1.0.2",
+            "inherits": "2.0.3",
+            "isarray": "0.0.1",
+            "string_decoder": "0.10.31"
+          }
+        },
+        "string_decoder": {
+          "version": "0.10.31",
+          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
+          "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ="
+        }
+      }
+    },
+    "nan": {
+      "version": "2.10.0",
+      "resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz",
+      "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA=="
+    },
+    "nanomatch": {
+      "version": "1.2.9",
+      "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz",
+      "integrity": "sha512-n8R9bS8yQ6eSXaV6jHUpKzD8gLsin02w1HSFiegwrs9E098Ylhw5jdyKPaYqvHknHaSCKTPp7C8dGCQ0q9koXA==",
+      "requires": {
+        "arr-diff": "4.0.0",
+        "array-unique": "0.3.2",
+        "define-property": "2.0.2",
+        "extend-shallow": "3.0.2",
+        "fragment-cache": "0.2.1",
+        "is-odd": "2.0.0",
+        "is-windows": "1.0.2",
+        "kind-of": "6.0.2",
+        "object.pick": "1.3.0",
+        "regex-not": "1.0.2",
+        "snapdragon": "0.8.2",
+        "to-regex": "3.0.2"
+      }
+    },
+    "napa": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/napa/-/napa-3.0.0.tgz",
+      "integrity": "sha1-7DqP3gcZC2ny/kNMOVo+aUaEG1Y=",
+      "requires": {
+        "download": "6.2.5",
+        "extend": "3.0.1",
+        "load-json-file": "2.0.0",
+        "minimist": "1.2.0",
+        "mkdirp": "0.5.1",
+        "npm-cache-filename": "1.0.2",
+        "npmlog": "4.1.2",
+        "rimraf": "2.6.2",
+        "tar-pack": "3.4.1",
+        "write-json-file": "2.3.0"
+      },
+      "dependencies": {
+        "caw": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz",
+          "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==",
+          "requires": {
+            "get-proxy": "2.1.0",
+            "isurl": "1.0.0",
+            "tunnel-agent": "0.6.0",
+            "url-to-options": "1.0.1"
+          }
+        },
+        "decompress": {
+          "version": "4.2.0",
+          "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.0.tgz",
+          "integrity": "sha1-eu3YVCflqS2s/lVnSnxQXpbQH50=",
+          "requires": {
+            "decompress-tar": "4.1.1",
+            "decompress-tarbz2": "4.1.1",
+            "decompress-targz": "4.1.1",
+            "decompress-unzip": "4.0.1",
+            "graceful-fs": "4.1.11",
+            "make-dir": "1.3.0",
+            "pify": "2.3.0",
+            "strip-dirs": "2.1.0"
+          },
+          "dependencies": {
+            "pify": {
+              "version": "2.3.0",
+              "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+              "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw="
+            }
+          }
+        },
+        "decompress-tar": {
+          "version": "4.1.1",
+          "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz",
+          "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==",
+          "requires": {
+            "file-type": "5.2.0",
+            "is-stream": "1.1.0",
+            "tar-stream": "1.6.0"
+          }
+        },
+        "decompress-tarbz2": {
+          "version": "4.1.1",
+          "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz",
+          "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==",
+          "requires": {
+            "decompress-tar": "4.1.1",
+            "file-type": "6.2.0",
+            "is-stream": "1.1.0",
+            "seek-bzip": "1.0.5",
+            "unbzip2-stream": "1.2.5"
+          },
+          "dependencies": {
+            "file-type": {
+              "version": "6.2.0",
+              "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz",
+              "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg=="
+            }
+          }
+        },
+        "decompress-targz": {
+          "version": "4.1.1",
+          "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz",
+          "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==",
+          "requires": {
+            "decompress-tar": "4.1.1",
+            "file-type": "5.2.0",
+            "is-stream": "1.1.0"
+          }
+        },
+        "decompress-unzip": {
+          "version": "4.0.1",
+          "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz",
+          "integrity": "sha1-3qrM39FK6vhVePczroIQ+bSEj2k=",
+          "requires": {
+            "file-type": "3.9.0",
+            "get-stream": "2.3.1",
+            "pify": "2.3.0",
+            "yauzl": "2.9.1"
+          },
+          "dependencies": {
+            "file-type": {
+              "version": "3.9.0",
+              "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz",
+              "integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek="
+            },
+            "get-stream": {
+              "version": "2.3.1",
+              "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz",
+              "integrity": "sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=",
+              "requires": {
+                "object-assign": "4.1.1",
+                "pinkie-promise": "2.0.1"
+              }
+            },
+            "pify": {
+              "version": "2.3.0",
+              "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+              "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw="
+            }
+          }
+        },
+        "download": {
+          "version": "6.2.5",
+          "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz",
+          "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==",
+          "requires": {
+            "caw": "2.0.1",
+            "content-disposition": "0.5.2",
+            "decompress": "4.2.0",
+            "ext-name": "5.0.0",
+            "file-type": "5.2.0",
+            "filenamify": "2.0.0",
+            "get-stream": "3.0.0",
+            "got": "7.1.0",
+            "make-dir": "1.3.0",
+            "p-event": "1.3.0",
+            "pify": "3.0.0"
+          }
+        },
+        "file-type": {
+          "version": "5.2.0",
+          "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
+          "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY="
+        },
+        "filename-reserved-regex": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz",
+          "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik="
+        },
+        "filenamify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.0.0.tgz",
+          "integrity": "sha1-vRYiYsC26Uv7zc8Zo7uzdk94VpU=",
+          "requires": {
+            "filename-reserved-regex": "2.0.0",
+            "strip-outer": "1.0.1",
+            "trim-repeated": "1.0.0"
+          }
+        },
+        "get-proxy": {
+          "version": "2.1.0",
+          "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz",
+          "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==",
+          "requires": {
+            "npm-conf": "1.1.3"
+          }
+        },
+        "got": {
+          "version": "7.1.0",
+          "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz",
+          "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==",
+          "requires": {
+            "decompress-response": "3.3.0",
+            "duplexer3": "0.1.4",
+            "get-stream": "3.0.0",
+            "is-plain-obj": "1.1.0",
+            "is-retry-allowed": "1.1.0",
+            "is-stream": "1.1.0",
+            "isurl": "1.0.0",
+            "lowercase-keys": "1.0.1",
+            "p-cancelable": "0.3.0",
+            "p-timeout": "1.2.1",
+            "safe-buffer": "5.1.2",
+            "timed-out": "4.0.1",
+            "url-parse-lax": "1.0.0",
+            "url-to-options": "1.0.1"
+          }
+        },
+        "is-natural-number": {
+          "version": "4.0.1",
+          "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz",
+          "integrity": "sha1-q5124dtM7VHjXeDHLr7PCfc0zeg="
+        },
+        "load-json-file": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz",
+          "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=",
+          "requires": {
+            "graceful-fs": "4.1.11",
+            "parse-json": "2.2.0",
+            "pify": "2.3.0",
+            "strip-bom": "3.0.0"
+          },
+          "dependencies": {
+            "pify": {
+              "version": "2.3.0",
+              "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+              "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw="
+            }
+          }
+        },
+        "minimist": {
+          "version": "1.2.0",
+          "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
+          "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
+        },
+        "strip-bom": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+          "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM="
+        },
+        "strip-dirs": {
+          "version": "2.1.0",
+          "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz",
+          "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==",
+          "requires": {
+            "is-natural-number": "4.0.1"
+          }
+        },
+        "timed-out": {
+          "version": "4.0.1",
+          "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz",
+          "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8="
+        },
+        "tunnel-agent": {
+          "version": "0.6.0",
+          "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
+          "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
+          "requires": {
+            "safe-buffer": "5.1.2"
+          }
+        }
+      }
+    },
+    "negotiator": {
+      "version": "0.6.1",
+      "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz",
+      "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk="
+    },
+    "neo-async": {
+      "version": "2.5.1",
+      "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.5.1.tgz",
+      "integrity": "sha512-3KL3fvuRkZ7s4IFOMfztb7zJp3QaVWnBeGoJlgB38XnCRPj/0tLzzLG5IB8NYOHbJ8g8UGrgZv44GLDk6CxTxA=="
+    },
+    "next-tick": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz",
+      "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw="
+    },
+    "nice-try": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.4.tgz",
+      "integrity": "sha512-2NpiFHqC87y/zFke0fC0spBXL3bBsoh/p5H1EFhshxjCR5+0g2d6BiXbUFz9v1sAcxsk2htp2eQnNIci2dIYcA=="
+    },
+    "no-case": {
+      "version": "2.3.2",
+      "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz",
+      "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==",
+      "requires": {
+        "lower-case": "1.1.4"
+      }
+    },
+    "node-forge": {
+      "version": "0.7.5",
+      "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz",
+      "integrity": "sha512-MmbQJ2MTESTjt3Gi/3yG1wGpIMhUfcIypUCGtTizFR9IiccFwxSpfp0vtIZlkFclEqERemxfnSdZEMR9VqqEFQ=="
+    },
+    "node-gyp": {
+      "version": "3.6.2",
+      "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.2.tgz",
+      "integrity": "sha1-m/vlRWIoYoSDjnUOrAUpWFP6HGA=",
+      "requires": {
+        "fstream": "1.0.11",
+        "glob": "7.1.2",
+        "graceful-fs": "4.1.11",
+        "minimatch": "3.0.4",
+        "mkdirp": "0.5.1",
+        "nopt": "3.0.6",
+        "npmlog": "4.1.2",
+        "osenv": "0.1.5",
+        "request": "2.79.0",
+        "rimraf": "2.6.2",
+        "semver": "5.3.0",
+        "tar": "2.2.1",
+        "which": "1.3.0"
+      },
+      "dependencies": {
+        "semver": {
+          "version": "5.3.0",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz",
+          "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8="
+        }
+      }
+    },
+    "node-libs-browser": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz",
+      "integrity": "sha512-5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg==",
+      "requires": {
+        "assert": "1.4.1",
+        "browserify-zlib": "0.2.0",
+        "buffer": "4.9.1",
+        "console-browserify": "1.1.0",
+        "constants-browserify": "1.0.0",
+        "crypto-browserify": "3.12.0",
+        "domain-browser": "1.2.0",
+        "events": "1.1.1",
+        "https-browserify": "1.0.0",
+        "os-browserify": "0.3.0",
+        "path-browserify": "0.0.0",
+        "process": "0.11.10",
+        "punycode": "1.4.1",
+        "querystring-es3": "0.2.1",
+        "readable-stream": "2.3.6",
+        "stream-browserify": "2.0.1",
+        "stream-http": "2.8.1",
+        "string_decoder": "1.1.1",
+        "timers-browserify": "2.0.10",
+        "tty-browserify": "0.0.0",
+        "url": "0.11.0",
+        "util": "0.10.3",
+        "vm-browserify": "0.0.4"
+      },
+      "dependencies": {
+        "base64-js": {
+          "version": "1.3.0",
+          "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz",
+          "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw=="
+        },
+        "buffer": {
+          "version": "4.9.1",
+          "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz",
+          "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=",
+          "requires": {
+            "base64-js": "1.3.0",
+            "ieee754": "1.1.11",
+            "isarray": "1.0.0"
+          },
+          "dependencies": {
+            "ieee754": {
+              "version": "1.1.11",
+              "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.11.tgz",
+              "integrity": "sha512-VhDzCKN7K8ufStx/CLj5/PDTMgph+qwN5Pkd5i0sGnVwk56zJ0lkT8Qzi1xqWLS0Wp29DgDtNeS7v8/wMoZeHg=="
+            }
+          }
+        }
+      }
+    },
+    "node-notifier": {
+      "version": "5.2.1",
+      "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.2.1.tgz",
+      "integrity": "sha512-MIBs+AAd6dJ2SklbbE8RUDRlIVhU8MaNLh1A9SUZDUHPiZkWLFde6UNwG41yQHZEToHgJMXqyVZ9UcS/ReOVTg==",
+      "requires": {
+        "growly": "1.3.0",
+        "semver": "5.5.0",
+        "shellwords": "0.1.1",
+        "which": "1.3.0"
+      }
+    },
+    "node-sass": {
+      "version": "4.9.0",
+      "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.9.0.tgz",
+      "integrity": "sha512-QFHfrZl6lqRU3csypwviz2XLgGNOoWQbo2GOvtsfQqOfL4cy1BtWnhx/XUeAO9LT3ahBzSRXcEO6DdvAH9DzSg==",
+      "requires": {
+        "async-foreach": "0.1.3",
+        "chalk": "1.1.3",
+        "cross-spawn": "3.0.1",
+        "gaze": "1.1.2",
+        "get-stdin": "4.0.1",
+        "glob": "7.1.2",
+        "in-publish": "2.0.0",
+        "lodash.assign": "4.2.0",
+        "lodash.clonedeep": "4.5.0",
+        "lodash.mergewith": "4.6.1",
+        "meow": "3.7.0",
+        "mkdirp": "0.5.1",
+        "nan": "2.10.0",
+        "node-gyp": "3.6.2",
+        "npmlog": "4.1.2",
+        "request": "2.79.0",
+        "sass-graph": "2.2.4",
+        "stdout-stream": "1.4.0",
+        "true-case-path": "1.0.2"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            }
+          }
+        },
+        "cross-spawn": {
+          "version": "3.0.1",
+          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz",
+          "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=",
+          "requires": {
+            "lru-cache": "4.1.3",
+            "which": "1.3.0"
+          }
+        },
+        "supports-color": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+          "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+        }
+      }
+    },
+    "node-status-codes": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/node-status-codes/-/node-status-codes-1.0.0.tgz",
+      "integrity": "sha1-WuVUHQJGRdMqWPzdyc7s6nrjrC8="
+    },
+    "nopt": {
+      "version": "3.0.6",
+      "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz",
+      "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=",
+      "requires": {
+        "abbrev": "1.1.1"
+      }
+    },
+    "normalize-package-data": {
+      "version": "2.4.0",
+      "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz",
+      "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==",
+      "requires": {
+        "hosted-git-info": "2.6.0",
+        "is-builtin-module": "1.0.0",
+        "semver": "5.5.0",
+        "validate-npm-package-license": "3.0.3"
+      }
+    },
+    "normalize-path": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
+      "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
+      "requires": {
+        "remove-trailing-separator": "1.1.0"
+      }
+    },
+    "normalize-range": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
+      "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI="
+    },
+    "normalize-url": {
+      "version": "1.9.1",
+      "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz",
+      "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=",
+      "requires": {
+        "object-assign": "4.1.1",
+        "prepend-http": "1.0.4",
+        "query-string": "4.3.4",
+        "sort-keys": "1.1.2"
+      }
+    },
+    "npm-cache-filename": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/npm-cache-filename/-/npm-cache-filename-1.0.2.tgz",
+      "integrity": "sha1-3tMGxbC/yHCp6fr4I7xfKD4FrhE="
+    },
+    "npm-conf": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz",
+      "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==",
+      "requires": {
+        "config-chain": "1.1.11",
+        "pify": "3.0.0"
+      }
+    },
+    "npm-run-path": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
+      "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
+      "requires": {
+        "path-key": "2.0.1"
+      }
+    },
+    "npmlog": {
+      "version": "4.1.2",
+      "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz",
+      "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==",
+      "requires": {
+        "are-we-there-yet": "1.1.4",
+        "console-control-strings": "1.1.0",
+        "gauge": "2.7.4",
+        "set-blocking": "2.0.0"
+      }
+    },
+    "nth-check": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz",
+      "integrity": "sha1-mSms32KPwsQQmN6rgqxYDPFJquQ=",
+      "requires": {
+        "boolbase": "1.0.0"
+      }
+    },
+    "num2fraction": {
+      "version": "1.2.2",
+      "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz",
+      "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4="
+    },
+    "number-is-nan": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
+      "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0="
+    },
+    "oauth-sign": {
+      "version": "0.8.2",
+      "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz",
+      "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM="
+    },
+    "object-assign": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+      "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
+    },
+    "object-copy": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
+      "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
+      "requires": {
+        "copy-descriptor": "0.1.1",
+        "define-property": "0.2.5",
+        "kind-of": "3.2.2"
+      },
+      "dependencies": {
+        "define-property": {
+          "version": "0.2.5",
+          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+          "requires": {
+            "is-descriptor": "0.1.6"
+          }
+        },
+        "kind-of": {
+          "version": "3.2.2",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+          "requires": {
+            "is-buffer": "1.1.6"
+          }
+        }
+      }
+    },
+    "object-keys": {
+      "version": "1.0.11",
+      "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz",
+      "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0="
+    },
+    "object-path": {
+      "version": "0.9.2",
+      "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.9.2.tgz",
+      "integrity": "sha1-D9mnT8X60a45aLWGvaXGMr1sBaU="
+    },
+    "object-visit": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz",
+      "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=",
+      "requires": {
+        "isobject": "3.0.1"
+      }
+    },
+    "object.getownpropertydescriptors": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz",
+      "integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=",
+      "requires": {
+        "define-properties": "1.1.2",
+        "es-abstract": "1.11.0"
+      }
+    },
+    "object.omit": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz",
+      "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=",
+      "requires": {
+        "for-own": "0.1.5",
+        "is-extendable": "0.1.1"
+      }
+    },
+    "object.pick": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz",
+      "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=",
+      "requires": {
+        "isobject": "3.0.1"
+      }
+    },
+    "object.values": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.0.4.tgz",
+      "integrity": "sha1-5STaCbT2b/Bd9FdUbscqyZ8TBpo=",
+      "requires": {
+        "define-properties": "1.1.2",
+        "es-abstract": "1.11.0",
+        "function-bind": "1.1.1",
+        "has": "1.0.1"
+      }
+    },
+    "obuf": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz",
+      "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg=="
+    },
+    "on-finished": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
+      "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
+      "requires": {
+        "ee-first": "1.1.1"
+      }
+    },
+    "on-headers": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.1.tgz",
+      "integrity": "sha1-ko9dD0cNSTQmUepnlLCFfBAGk/c="
+    },
+    "once": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+      "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
+      "requires": {
+        "wrappy": "1.0.2"
+      }
+    },
+    "onetime": {
+      "version": "1.1.0",
+      "resolved": "http://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz",
+      "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k="
+    },
+    "opn": {
+      "version": "5.3.0",
+      "resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz",
+      "integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==",
+      "requires": {
+        "is-wsl": "1.1.0"
+      }
+    },
+    "optipng-bin": {
+      "version": "3.1.4",
+      "resolved": "https://registry.npmjs.org/optipng-bin/-/optipng-bin-3.1.4.tgz",
+      "integrity": "sha1-ldNPLEiHBPb9cGBr/qDGWfHZXYQ=",
+      "requires": {
+        "bin-build": "2.2.0",
+        "bin-wrapper": "3.0.2",
+        "logalot": "2.1.0"
+      }
+    },
+    "ordered-read-streams": {
+      "version": "0.3.0",
+      "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz",
+      "integrity": "sha1-cTfmmzKYuzQiR6G77jiByA4v14s=",
+      "requires": {
+        "is-stream": "1.1.0",
+        "readable-stream": "2.3.6"
+      }
+    },
+    "original": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/original/-/original-1.0.0.tgz",
+      "integrity": "sha1-kUf5P6FpbQS+YeAb1QuurKZWvTs=",
+      "requires": {
+        "url-parse": "1.0.5"
+      },
+      "dependencies": {
+        "url-parse": {
+          "version": "1.0.5",
+          "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.0.5.tgz",
+          "integrity": "sha1-CFSGBCKv3P7+tsllxmLUgAFpkns=",
+          "requires": {
+            "querystringify": "0.0.4",
+            "requires-port": "1.0.0"
+          }
+        }
+      }
+    },
+    "os-browserify": {
+      "version": "0.3.0",
+      "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz",
+      "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc="
+    },
+    "os-filter-obj": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-1.0.3.tgz",
+      "integrity": "sha1-WRUzDZDs7VV9LZOKMcbdIU2cY60="
+    },
+    "os-homedir": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
+      "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M="
+    },
+    "os-locale": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz",
+      "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=",
+      "requires": {
+        "lcid": "1.0.0"
+      }
+    },
+    "os-tmpdir": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
+      "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ="
+    },
+    "osenv": {
+      "version": "0.1.5",
+      "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz",
+      "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==",
+      "requires": {
+        "os-homedir": "1.0.2",
+        "os-tmpdir": "1.0.2"
+      }
+    },
+    "p-cancelable": {
+      "version": "0.3.0",
+      "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz",
+      "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw=="
+    },
+    "p-event": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz",
+      "integrity": "sha1-jmtPT2XHK8W2/ii3XtqHT5akoIU=",
+      "requires": {
+        "p-timeout": "1.2.1"
+      }
+    },
+    "p-finally": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
+      "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4="
+    },
+    "p-limit": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.2.0.tgz",
+      "integrity": "sha512-Y/OtIaXtUPr4/YpMv1pCL5L5ed0rumAaAeBSj12F+bSlMdys7i8oQF/GUJmfpTS/QoaRrS/k6pma29haJpsMng==",
+      "requires": {
+        "p-try": "1.0.0"
+      }
+    },
+    "p-locate": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+      "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
+      "requires": {
+        "p-limit": "1.2.0"
+      }
+    },
+    "p-map": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz",
+      "integrity": "sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA=="
+    },
+    "p-map-series": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz",
+      "integrity": "sha1-v5j+V1cFZYqeE1G++4WuTB8Hvco=",
+      "requires": {
+        "p-reduce": "1.0.0"
+      }
+    },
+    "p-pipe": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-1.2.0.tgz",
+      "integrity": "sha1-SxoROZoRUgpneQ7loMHViB1r7+k="
+    },
+    "p-reduce": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz",
+      "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo="
+    },
+    "p-timeout": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz",
+      "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=",
+      "requires": {
+        "p-finally": "1.0.0"
+      }
+    },
+    "p-try": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+      "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M="
+    },
+    "pako": {
+      "version": "1.0.6",
+      "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz",
+      "integrity": "sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg=="
+    },
+    "parallel-transform": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz",
+      "integrity": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=",
+      "requires": {
+        "cyclist": "0.2.2",
+        "inherits": "2.0.3",
+        "readable-stream": "2.3.6"
+      }
+    },
+    "param-case": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz",
+      "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=",
+      "requires": {
+        "no-case": "2.3.2"
+      }
+    },
+    "parse-asn1": {
+      "version": "5.1.1",
+      "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz",
+      "integrity": "sha512-KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==",
+      "requires": {
+        "asn1.js": "4.10.1",
+        "browserify-aes": "1.2.0",
+        "create-hash": "1.2.0",
+        "evp_bytestokey": "1.0.3",
+        "pbkdf2": "3.0.16"
+      }
+    },
+    "parse-glob": {
+      "version": "3.0.4",
+      "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz",
+      "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=",
+      "requires": {
+        "glob-base": "0.3.0",
+        "is-dotfile": "1.0.3",
+        "is-extglob": "1.0.0",
+        "is-glob": "2.0.1"
+      },
+      "dependencies": {
+        "is-extglob": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz",
+          "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA="
+        },
+        "is-glob": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz",
+          "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=",
+          "requires": {
+            "is-extglob": "1.0.0"
+          }
+        }
+      }
+    },
+    "parse-json": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
+      "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
+      "requires": {
+        "error-ex": "1.3.1"
+      }
+    },
+    "parseurl": {
+      "version": "1.3.2",
+      "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz",
+      "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M="
+    },
+    "pascalcase": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
+      "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ="
+    },
+    "path-browserify": {
+      "version": "0.0.0",
+      "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz",
+      "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo="
+    },
+    "path-dirname": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
+      "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA="
+    },
+    "path-exists": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+      "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU="
+    },
+    "path-is-absolute": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+      "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
+    },
+    "path-is-inside": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
+      "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM="
+    },
+    "path-key": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+      "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A="
+    },
+    "path-parse": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz",
+      "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME="
+    },
+    "path-to-regexp": {
+      "version": "0.1.7",
+      "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
+      "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w="
+    },
+    "path-type": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz",
+      "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=",
+      "requires": {
+        "graceful-fs": "4.1.11",
+        "pify": "2.3.0",
+        "pinkie-promise": "2.0.1"
+      },
+      "dependencies": {
+        "pify": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+          "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw="
+        }
+      }
+    },
+    "pbkdf2": {
+      "version": "3.0.16",
+      "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.16.tgz",
+      "integrity": "sha512-y4CXP3thSxqf7c0qmOF+9UeOTrifiVTIM+u7NWlq+PRsHbr7r7dpCmvzrZxa96JJUNi0Y5w9VqG5ZNeCVMoDcA==",
+      "requires": {
+        "create-hash": "1.2.0",
+        "create-hmac": "1.1.7",
+        "ripemd160": "2.0.2",
+        "safe-buffer": "5.1.2",
+        "sha.js": "2.4.11"
+      }
+    },
+    "pend": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
+      "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA="
+    },
+    "performance-now": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
+      "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=",
+      "optional": true
+    },
+    "pify": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+      "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY="
+    },
+    "pinkie": {
+      "version": "2.0.4",
+      "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
+      "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA="
+    },
+    "pinkie-promise": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
+      "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=",
+      "requires": {
+        "pinkie": "2.0.4"
+      }
+    },
+    "pkg-dir": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz",
+      "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=",
+      "requires": {
+        "find-up": "2.1.0"
+      }
+    },
+    "pngquant-bin": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/pngquant-bin/-/pngquant-bin-4.0.0.tgz",
+      "integrity": "sha512-jhjMp87bvaUeQOfNaPhSKx3tLCEwRaAycgDpIhMflgFr2+vYhw4ZrcK06eQeYg4OprXPanFljXLl5VuuAP2IHw==",
+      "requires": {
+        "bin-build": "3.0.0",
+        "bin-wrapper": "3.0.2",
+        "execa": "0.10.0",
+        "logalot": "2.1.0"
+      },
+      "dependencies": {
+        "bin-build": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz",
+          "integrity": "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==",
+          "requires": {
+            "decompress": "4.2.0",
+            "download": "6.2.5",
+            "execa": "0.7.0",
+            "p-map-series": "1.0.0",
+            "tempfile": "2.0.0"
+          },
+          "dependencies": {
+            "execa": {
+              "version": "0.7.0",
+              "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
+              "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
+              "requires": {
+                "cross-spawn": "5.1.0",
+                "get-stream": "3.0.0",
+                "is-stream": "1.1.0",
+                "npm-run-path": "2.0.2",
+                "p-finally": "1.0.0",
+                "signal-exit": "3.0.2",
+                "strip-eof": "1.0.0"
+              }
+            },
+            "get-stream": {
+              "version": "3.0.0",
+              "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+              "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ="
+            }
+          }
+        },
+        "caw": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz",
+          "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==",
+          "requires": {
+            "get-proxy": "2.1.0",
+            "isurl": "1.0.0",
+            "tunnel-agent": "0.6.0",
+            "url-to-options": "1.0.1"
+          },
+          "dependencies": {
+            "isurl": {
+              "version": "1.0.0",
+              "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz",
+              "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==",
+              "requires": {
+                "has-to-string-tag-x": "1.4.1",
+                "is-object": "1.0.1"
+              },
+              "dependencies": {
+                "has-to-string-tag-x": {
+                  "version": "1.4.1",
+                  "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz",
+                  "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==",
+                  "requires": {
+                    "has-symbol-support-x": "1.4.2"
+                  },
+                  "dependencies": {
+                    "has-symbol-support-x": {
+                      "version": "1.4.2",
+                      "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz",
+                      "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw=="
+                    }
+                  }
+                },
+                "is-object": {
+                  "version": "1.0.1",
+                  "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz",
+                  "integrity": "sha1-iVJojF7C/9awPsyF52ngKQMINHA="
+                }
+              }
+            },
+            "url-to-options": {
+              "version": "1.0.1",
+              "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz",
+              "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k="
+            }
+          }
+        },
+        "decompress": {
+          "version": "4.2.0",
+          "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.0.tgz",
+          "integrity": "sha1-eu3YVCflqS2s/lVnSnxQXpbQH50=",
+          "requires": {
+            "decompress-tar": "4.1.1",
+            "decompress-tarbz2": "4.1.1",
+            "decompress-targz": "4.1.1",
+            "decompress-unzip": "4.0.1",
+            "graceful-fs": "4.1.11",
+            "make-dir": "1.3.0",
+            "pify": "2.3.0",
+            "strip-dirs": "2.1.0"
+          }
+        },
+        "decompress-tar": {
+          "version": "4.1.1",
+          "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz",
+          "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==",
+          "requires": {
+            "file-type": "5.2.0",
+            "is-stream": "1.1.0",
+            "tar-stream": "1.6.0"
+          }
+        },
+        "decompress-tarbz2": {
+          "version": "4.1.1",
+          "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz",
+          "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==",
+          "requires": {
+            "decompress-tar": "4.1.1",
+            "file-type": "6.2.0",
+            "is-stream": "1.1.0",
+            "seek-bzip": "1.0.5",
+            "unbzip2-stream": "1.2.5"
+          },
+          "dependencies": {
+            "file-type": {
+              "version": "6.2.0",
+              "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz",
+              "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg=="
+            },
+            "unbzip2-stream": {
+              "version": "1.2.5",
+              "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.2.5.tgz",
+              "integrity": "sha512-izD3jxT8xkzwtXRUZjtmRwKnZoeECrfZ8ra/ketwOcusbZEp4mjULMnJOCfTDZBgGQAAY1AJ/IgxcwkavcX9Og==",
+              "requires": {
+                "buffer": "3.6.0",
+                "through": "2.3.8"
+              },
+              "dependencies": {
+                "buffer": {
+                  "version": "3.6.0",
+                  "resolved": "https://registry.npmjs.org/buffer/-/buffer-3.6.0.tgz",
+                  "integrity": "sha1-pyyTb3e5a/UvX357RnGAYoVR3vs=",
+                  "requires": {
+                    "base64-js": "0.0.8",
+                    "ieee754": "1.1.11",
+                    "isarray": "1.0.0"
+                  },
+                  "dependencies": {
+                    "base64-js": {
+                      "version": "0.0.8",
+                      "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz",
+                      "integrity": "sha1-EQHpVE9KdrG8OybUUsqW16NeeXg="
+                    },
+                    "ieee754": {
+                      "version": "1.1.11",
+                      "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.11.tgz",
+                      "integrity": "sha512-VhDzCKN7K8ufStx/CLj5/PDTMgph+qwN5Pkd5i0sGnVwk56zJ0lkT8Qzi1xqWLS0Wp29DgDtNeS7v8/wMoZeHg=="
+                    }
+                  }
+                }
+              }
+            }
+          }
+        },
+        "decompress-targz": {
+          "version": "4.1.1",
+          "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz",
+          "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==",
+          "requires": {
+            "decompress-tar": "4.1.1",
+            "file-type": "5.2.0",
+            "is-stream": "1.1.0"
+          }
+        },
+        "decompress-unzip": {
+          "version": "4.0.1",
+          "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz",
+          "integrity": "sha1-3qrM39FK6vhVePczroIQ+bSEj2k=",
+          "requires": {
+            "file-type": "3.9.0",
+            "get-stream": "2.3.1",
+            "pify": "2.3.0",
+            "yauzl": "2.9.1"
+          },
+          "dependencies": {
+            "file-type": {
+              "version": "3.9.0",
+              "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz",
+              "integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek="
+            }
+          }
+        },
+        "download": {
+          "version": "6.2.5",
+          "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz",
+          "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==",
+          "requires": {
+            "caw": "2.0.1",
+            "content-disposition": "0.5.2",
+            "decompress": "4.2.0",
+            "ext-name": "5.0.0",
+            "file-type": "5.2.0",
+            "filenamify": "2.0.0",
+            "get-stream": "3.0.0",
+            "got": "7.1.0",
+            "make-dir": "1.3.0",
+            "p-event": "1.3.0",
+            "pify": "3.0.0"
+          },
+          "dependencies": {
+            "content-disposition": {
+              "version": "0.5.2",
+              "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz",
+              "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ="
+            },
+            "ext-name": {
+              "version": "5.0.0",
+              "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz",
+              "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==",
+              "requires": {
+                "ext-list": "2.2.2",
+                "sort-keys-length": "1.0.1"
+              },
+              "dependencies": {
+                "ext-list": {
+                  "version": "2.2.2",
+                  "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz",
+                  "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==",
+                  "requires": {
+                    "mime-db": "1.33.0"
+                  },
+                  "dependencies": {
+                    "mime-db": {
+                      "version": "1.33.0",
+                      "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz",
+                      "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="
+                    }
+                  }
+                },
+                "sort-keys-length": {
+                  "version": "1.0.1",
+                  "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz",
+                  "integrity": "sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=",
+                  "requires": {
+                    "sort-keys": "1.1.2"
+                  }
+                }
+              }
+            },
+            "get-stream": {
+              "version": "3.0.0",
+              "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+              "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ="
+            },
+            "p-event": {
+              "version": "1.3.0",
+              "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz",
+              "integrity": "sha1-jmtPT2XHK8W2/ii3XtqHT5akoIU=",
+              "requires": {
+                "p-timeout": "1.2.1"
+              }
+            },
+            "p-timeout": {
+              "version": "1.2.1",
+              "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz",
+              "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=",
+              "requires": {
+                "p-finally": "1.0.0"
+              }
+            },
+            "pify": {
+              "version": "3.0.0",
+              "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+              "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY="
+            }
+          }
+        },
+        "execa": {
+          "version": "0.10.0",
+          "resolved": "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz",
+          "integrity": "sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==",
+          "requires": {
+            "cross-spawn": "6.0.5",
+            "get-stream": "3.0.0",
+            "is-stream": "1.1.0",
+            "npm-run-path": "2.0.2",
+            "p-finally": "1.0.0",
+            "signal-exit": "3.0.2",
+            "strip-eof": "1.0.0"
+          },
+          "dependencies": {
+            "cross-spawn": {
+              "version": "6.0.5",
+              "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+              "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+              "requires": {
+                "nice-try": "1.0.4",
+                "path-key": "2.0.1",
+                "semver": "5.5.0",
+                "shebang-command": "1.2.0",
+                "which": "1.3.0"
+              }
+            },
+            "get-stream": {
+              "version": "3.0.0",
+              "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+              "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ="
+            }
+          }
+        },
+        "file-type": {
+          "version": "5.2.0",
+          "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
+          "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY="
+        },
+        "filename-reserved-regex": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz",
+          "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik="
+        },
+        "filenamify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.0.0.tgz",
+          "integrity": "sha1-vRYiYsC26Uv7zc8Zo7uzdk94VpU=",
+          "requires": {
+            "filename-reserved-regex": "2.0.0",
+            "strip-outer": "1.0.1",
+            "trim-repeated": "1.0.0"
+          }
+        },
+        "get-proxy": {
+          "version": "2.1.0",
+          "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz",
+          "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==",
+          "requires": {
+            "npm-conf": "1.1.3"
+          },
+          "dependencies": {
+            "npm-conf": {
+              "version": "1.1.3",
+              "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz",
+              "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==",
+              "requires": {
+                "config-chain": "1.1.11",
+                "pify": "3.0.0"
+              },
+              "dependencies": {
+                "config-chain": {
+                  "version": "1.1.11",
+                  "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.11.tgz",
+                  "integrity": "sha1-q6CXR9++TD5w52am5BWG4YWfxvI=",
+                  "requires": {
+                    "ini": "1.3.5",
+                    "proto-list": "1.2.4"
+                  },
+                  "dependencies": {
+                    "proto-list": {
+                      "version": "1.2.4",
+                      "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz",
+                      "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk="
+                    }
+                  }
+                }
+              }
+            },
+            "pify": {
+              "version": "3.0.0",
+              "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+              "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY="
+            }
+          }
+        },
+        "get-stream": {
+          "version": "2.3.1",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz",
+          "integrity": "sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=",
+          "requires": {
+            "object-assign": "4.1.1",
+            "pinkie-promise": "2.0.1"
+          }
+        },
+        "got": {
+          "version": "7.1.0",
+          "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz",
+          "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==",
+          "requires": {
+            "decompress-response": "3.3.0",
+            "duplexer3": "0.1.4",
+            "get-stream": "3.0.0",
+            "is-plain-obj": "1.1.0",
+            "is-retry-allowed": "1.1.0",
+            "is-stream": "1.1.0",
+            "isurl": "1.0.0",
+            "lowercase-keys": "1.0.1",
+            "p-cancelable": "0.3.0",
+            "p-timeout": "1.2.1",
+            "safe-buffer": "5.1.2",
+            "timed-out": "4.0.1",
+            "url-parse-lax": "1.0.0",
+            "url-to-options": "1.0.1"
+          },
+          "dependencies": {
+            "decompress-response": {
+              "version": "3.3.0",
+              "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
+              "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=",
+              "requires": {
+                "mimic-response": "1.0.0"
+              },
+              "dependencies": {
+                "mimic-response": {
+                  "version": "1.0.0",
+                  "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.0.tgz",
+                  "integrity": "sha1-3z02Uqc/3ta5sLJBRub9BSNTRY4="
+                }
+              }
+            },
+            "duplexer3": {
+              "version": "0.1.4",
+              "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
+              "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI="
+            },
+            "get-stream": {
+              "version": "3.0.0",
+              "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+              "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ="
+            },
+            "isurl": {
+              "version": "1.0.0",
+              "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz",
+              "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==",
+              "requires": {
+                "has-to-string-tag-x": "1.4.1",
+                "is-object": "1.0.1"
+              },
+              "dependencies": {
+                "has-to-string-tag-x": {
+                  "version": "1.4.1",
+                  "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz",
+                  "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==",
+                  "requires": {
+                    "has-symbol-support-x": "1.4.2"
+                  },
+                  "dependencies": {
+                    "has-symbol-support-x": {
+                      "version": "1.4.2",
+                      "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz",
+                      "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw=="
+                    }
+                  }
+                },
+                "is-object": {
+                  "version": "1.0.1",
+                  "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz",
+                  "integrity": "sha1-iVJojF7C/9awPsyF52ngKQMINHA="
+                }
+              }
+            },
+            "p-cancelable": {
+              "version": "0.3.0",
+              "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz",
+              "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw=="
+            },
+            "p-timeout": {
+              "version": "1.2.1",
+              "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz",
+              "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=",
+              "requires": {
+                "p-finally": "1.0.0"
+              }
+            },
+            "url-to-options": {
+              "version": "1.0.1",
+              "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz",
+              "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k="
+            }
+          }
+        },
+        "is-natural-number": {
+          "version": "4.0.1",
+          "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz",
+          "integrity": "sha1-q5124dtM7VHjXeDHLr7PCfc0zeg="
+        },
+        "pify": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+          "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw="
+        },
+        "strip-dirs": {
+          "version": "2.1.0",
+          "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz",
+          "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==",
+          "requires": {
+            "is-natural-number": "4.0.1"
+          }
+        },
+        "timed-out": {
+          "version": "4.0.1",
+          "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz",
+          "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8="
+        },
+        "tunnel-agent": {
+          "version": "0.6.0",
+          "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
+          "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
+          "requires": {
+            "safe-buffer": "5.1.2"
+          }
+        }
+      }
+    },
+    "portfinder": {
+      "version": "1.0.13",
+      "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.13.tgz",
+      "integrity": "sha1-uzLs2HwnEErm7kS1o8y/Drsa7ek=",
+      "requires": {
+        "async": "1.5.2",
+        "debug": "2.6.9",
+        "mkdirp": "0.5.1"
+      },
+      "dependencies": {
+        "async": {
+          "version": "1.5.2",
+          "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
+          "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo="
+        }
+      }
+    },
+    "posix-character-classes": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
+      "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs="
+    },
+    "postcss": {
+      "version": "6.0.22",
+      "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.22.tgz",
+      "integrity": "sha512-Toc9lLoUASwGqxBSJGTVcOQiDqjK+Z2XlWBg+IgYwQMY9vA2f7iMpXVc1GpPcfTSyM5lkxNo0oDwDRO+wm7XHA==",
+      "requires": {
+        "chalk": "2.4.1",
+        "source-map": "0.6.1",
+        "supports-color": "5.4.0"
+      }
+    },
+    "postcss-calc": {
+      "version": "5.3.1",
+      "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz",
+      "integrity": "sha1-d7rnypKK2FcW4v2kLyYb98HWW14=",
+      "requires": {
+        "postcss": "5.2.18",
+        "postcss-message-helpers": "2.0.0",
+        "reduce-css-calc": "1.3.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-colormin": {
+      "version": "2.2.2",
+      "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz",
+      "integrity": "sha1-ZjFBfV8OkJo9fsJrJMio0eT5bks=",
+      "requires": {
+        "colormin": "1.1.2",
+        "postcss": "5.2.18",
+        "postcss-value-parser": "3.3.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-convert-values": {
+      "version": "2.6.1",
+      "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz",
+      "integrity": "sha1-u9hZPFwf0uPRwyK7kl3K6Nrk1i0=",
+      "requires": {
+        "postcss": "5.2.18",
+        "postcss-value-parser": "3.3.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-discard-comments": {
+      "version": "2.0.4",
+      "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz",
+      "integrity": "sha1-vv6J+v1bPazlzM5Rt2uBUUvgDj0=",
+      "requires": {
+        "postcss": "5.2.18"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-discard-duplicates": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz",
+      "integrity": "sha1-uavye4isGIFYpesSq8riAmO5GTI=",
+      "requires": {
+        "postcss": "5.2.18"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-discard-empty": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz",
+      "integrity": "sha1-0rS9nVztXr2Nyt52QMfXzX9PkrU=",
+      "requires": {
+        "postcss": "5.2.18"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-discard-overridden": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz",
+      "integrity": "sha1-ix6vVU9ob7KIzYdMVWZ7CqNmjVg=",
+      "requires": {
+        "postcss": "5.2.18"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-discard-unused": {
+      "version": "2.2.3",
+      "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz",
+      "integrity": "sha1-vOMLLMWR/8Y0Mitfs0ZLbZNPRDM=",
+      "requires": {
+        "postcss": "5.2.18",
+        "uniqs": "2.0.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-filter-plugins": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz",
+      "integrity": "sha1-bYWGJTTXNaxCDkqFgG4fXUKG2Ew=",
+      "requires": {
+        "postcss": "5.2.18",
+        "uniqid": "4.1.1"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-load-config": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.2.0.tgz",
+      "integrity": "sha1-U56a/J3chiASHr+djDZz4M5Q0oo=",
+      "requires": {
+        "cosmiconfig": "2.2.2",
+        "object-assign": "4.1.1",
+        "postcss-load-options": "1.2.0",
+        "postcss-load-plugins": "2.3.0"
+      }
+    },
+    "postcss-load-options": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/postcss-load-options/-/postcss-load-options-1.2.0.tgz",
+      "integrity": "sha1-sJixVZ3awt8EvAuzdfmaXP4rbYw=",
+      "requires": {
+        "cosmiconfig": "2.2.2",
+        "object-assign": "4.1.1"
+      }
+    },
+    "postcss-load-plugins": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz",
+      "integrity": "sha1-dFdoEWWZrKLwCfrUJrABdQSdjZI=",
+      "requires": {
+        "cosmiconfig": "2.2.2",
+        "object-assign": "4.1.1"
+      }
+    },
+    "postcss-loader": {
+      "version": "2.1.5",
+      "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-2.1.5.tgz",
+      "integrity": "sha512-pV7kB5neJ0/1tZ8L1uGOBNTVBCSCXQoIsZMsrwvO8V2rKGa2tBl/f80GGVxow2jJnRJ2w1ocx693EKhZAb9Isg==",
+      "requires": {
+        "loader-utils": "1.1.0",
+        "postcss": "6.0.22",
+        "postcss-load-config": "1.2.0",
+        "schema-utils": "0.4.5"
+      },
+      "dependencies": {
+        "ajv": {
+          "version": "6.4.0",
+          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.4.0.tgz",
+          "integrity": "sha1-06/3jpJ3VJdx2vAWTP9ISCt1T8Y=",
+          "requires": {
+            "fast-deep-equal": "1.1.0",
+            "fast-json-stable-stringify": "2.0.0",
+            "json-schema-traverse": "0.3.1",
+            "uri-js": "3.0.2"
+          }
+        },
+        "schema-utils": {
+          "version": "0.4.5",
+          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.5.tgz",
+          "integrity": "sha512-yYrjb9TX2k/J1Y5UNy3KYdZq10xhYcF8nMpAW6o3hy6Q8WSIEf9lJHG/ePnOBfziPM3fvQwfOwa13U/Fh8qTfA==",
+          "requires": {
+            "ajv": "6.4.0",
+            "ajv-keywords": "3.2.0"
+          }
+        }
+      }
+    },
+    "postcss-merge-idents": {
+      "version": "2.1.7",
+      "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz",
+      "integrity": "sha1-TFUwMTwI4dWzu/PSu8dH4njuonA=",
+      "requires": {
+        "has": "1.0.1",
+        "postcss": "5.2.18",
+        "postcss-value-parser": "3.3.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-merge-longhand": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz",
+      "integrity": "sha1-I9kM0Sewp3mUkVMyc5A0oaTz1lg=",
+      "requires": {
+        "postcss": "5.2.18"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-merge-rules": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz",
+      "integrity": "sha1-0d9d+qexrMO+VT8OnhDofGG19yE=",
+      "requires": {
+        "browserslist": "1.7.7",
+        "caniuse-api": "1.6.1",
+        "postcss": "5.2.18",
+        "postcss-selector-parser": "2.2.3",
+        "vendors": "1.0.2"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "browserslist": {
+          "version": "1.7.7",
+          "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz",
+          "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=",
+          "requires": {
+            "caniuse-db": "1.0.30000836",
+            "electron-to-chromium": "1.3.45"
+          }
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-message-helpers": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz",
+      "integrity": "sha1-pPL0+rbk/gAvCu0ABHjN9S+bpg4="
+    },
+    "postcss-minify-font-values": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz",
+      "integrity": "sha1-S1jttWZB66fIR0qzUmyv17vey2k=",
+      "requires": {
+        "object-assign": "4.1.1",
+        "postcss": "5.2.18",
+        "postcss-value-parser": "3.3.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-minify-gradients": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz",
+      "integrity": "sha1-Xb2hE3NwP4PPtKPqOIHY11/15uE=",
+      "requires": {
+        "postcss": "5.2.18",
+        "postcss-value-parser": "3.3.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-minify-params": {
+      "version": "1.2.2",
+      "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz",
+      "integrity": "sha1-rSzgcTc7lDs9kwo/pZo1jCjW8fM=",
+      "requires": {
+        "alphanum-sort": "1.0.2",
+        "postcss": "5.2.18",
+        "postcss-value-parser": "3.3.0",
+        "uniqs": "2.0.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-minify-selectors": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz",
+      "integrity": "sha1-ssapjAByz5G5MtGkllCBFDEXNb8=",
+      "requires": {
+        "alphanum-sort": "1.0.2",
+        "has": "1.0.1",
+        "postcss": "5.2.18",
+        "postcss-selector-parser": "2.2.3"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-modules-extract-imports": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz",
+      "integrity": "sha1-ZhQOzs447wa/DT41XWm/WdFB6oU=",
+      "requires": {
+        "postcss": "6.0.22"
+      }
+    },
+    "postcss-modules-local-by-default": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz",
+      "integrity": "sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=",
+      "requires": {
+        "css-selector-tokenizer": "0.7.0",
+        "postcss": "6.0.22"
+      }
+    },
+    "postcss-modules-scope": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz",
+      "integrity": "sha1-1upkmUx5+XtipytCb75gVqGUu5A=",
+      "requires": {
+        "css-selector-tokenizer": "0.7.0",
+        "postcss": "6.0.22"
+      }
+    },
+    "postcss-modules-values": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz",
+      "integrity": "sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=",
+      "requires": {
+        "icss-replace-symbols": "1.1.0",
+        "postcss": "6.0.22"
+      }
+    },
+    "postcss-normalize-charset": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz",
+      "integrity": "sha1-757nEhLX/nWceO0WL2HtYrXLk/E=",
+      "requires": {
+        "postcss": "5.2.18"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-normalize-url": {
+      "version": "3.0.8",
+      "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz",
+      "integrity": "sha1-EI90s/L82viRov+j6kWSJ5/HgiI=",
+      "requires": {
+        "is-absolute-url": "2.1.0",
+        "normalize-url": "1.9.1",
+        "postcss": "5.2.18",
+        "postcss-value-parser": "3.3.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-ordered-values": {
+      "version": "2.2.3",
+      "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz",
+      "integrity": "sha1-7sbCpntsQSqNsgQud/6NpD+VwR0=",
+      "requires": {
+        "postcss": "5.2.18",
+        "postcss-value-parser": "3.3.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-reduce-idents": {
+      "version": "2.4.0",
+      "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz",
+      "integrity": "sha1-wsbSDMlYKE9qv75j92Cb9AkFmtM=",
+      "requires": {
+        "postcss": "5.2.18",
+        "postcss-value-parser": "3.3.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-reduce-initial": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz",
+      "integrity": "sha1-aPgGlfBF0IJjqHmtJA343WT2ROo=",
+      "requires": {
+        "postcss": "5.2.18"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-reduce-transforms": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz",
+      "integrity": "sha1-/3b02CEkN7McKYpC0uFEQCV3GuE=",
+      "requires": {
+        "has": "1.0.1",
+        "postcss": "5.2.18",
+        "postcss-value-parser": "3.3.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-selector-parser": {
+      "version": "2.2.3",
+      "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz",
+      "integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=",
+      "requires": {
+        "flatten": "1.0.2",
+        "indexes-of": "1.0.1",
+        "uniq": "1.0.1"
+      }
+    },
+    "postcss-svgo": {
+      "version": "2.1.6",
+      "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz",
+      "integrity": "sha1-tt8YqmE7Zm4TPwittSGcJoSsEI0=",
+      "requires": {
+        "is-svg": "2.1.0",
+        "postcss": "5.2.18",
+        "postcss-value-parser": "3.3.0",
+        "svgo": "0.7.2"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-unique-selectors": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz",
+      "integrity": "sha1-mB1X0p3csz57Hf4f1DuGSfkzyh0=",
+      "requires": {
+        "alphanum-sort": "1.0.2",
+        "postcss": "5.2.18",
+        "uniqs": "2.0.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "postcss-value-parser": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz",
+      "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU="
+    },
+    "postcss-zindex": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz",
+      "integrity": "sha1-0hCd3AVbka9n/EyzsCWUZjnSryI=",
+      "requires": {
+        "has": "1.0.1",
+        "postcss": "5.2.18",
+        "uniqs": "2.0.0"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            },
+            "supports-color": {
+              "version": "2.0.0",
+              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+              "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+            }
+          }
+        },
+        "has-flag": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+          "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo="
+        },
+        "postcss": {
+          "version": "5.2.18",
+          "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
+          "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
+          "requires": {
+            "chalk": "1.1.3",
+            "js-base64": "2.4.3",
+            "source-map": "0.5.7",
+            "supports-color": "3.2.3"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "3.2.3",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+          "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+          "requires": {
+            "has-flag": "1.0.0"
+          }
+        }
+      }
+    },
+    "prepend-http": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz",
+      "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw="
+    },
+    "preserve": {
+      "version": "0.2.0",
+      "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz",
+      "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks="
+    },
+    "prettier": {
+      "version": "1.12.1",
+      "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.12.1.tgz",
+      "integrity": "sha1-wa0g6APndJ+vkFpAnSNn4Gu+cyU="
+    },
+    "private": {
+      "version": "0.1.8",
+      "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
+      "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg=="
+    },
+    "process": {
+      "version": "0.11.10",
+      "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
+      "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI="
+    },
+    "process-nextick-args": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
+      "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw=="
+    },
+    "promise": {
+      "version": "7.3.1",
+      "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
+      "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
+      "optional": true,
+      "requires": {
+        "asap": "2.0.6"
+      }
+    },
+    "promise-inflight": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
+      "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM="
+    },
+    "proto-list": {
+      "version": "1.2.4",
+      "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz",
+      "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk="
+    },
+    "proxy-addr": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.3.tgz",
+      "integrity": "sha512-jQTChiCJteusULxjBp8+jftSQE5Obdl3k4cnmLA6WXtK6XFuWRnvVL7aCiBqaLPM8c4ph0S4tKna8XvmIwEnXQ==",
+      "requires": {
+        "forwarded": "0.1.2",
+        "ipaddr.js": "1.6.0"
+      }
+    },
+    "prr": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
+      "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY="
+    },
+    "pseudomap": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
+      "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM="
+    },
+    "public-encrypt": {
+      "version": "4.0.2",
+      "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.2.tgz",
+      "integrity": "sha512-4kJ5Esocg8X3h8YgJsKAuoesBgB7mqH3eowiDzMUPKiRDDE7E/BqqZD1hnTByIaAFiwAw246YEltSq7tdrOH0Q==",
+      "requires": {
+        "bn.js": "4.11.8",
+        "browserify-rsa": "4.0.1",
+        "create-hash": "1.2.0",
+        "parse-asn1": "5.1.1",
+        "randombytes": "2.0.6"
+      }
+    },
+    "pump": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
+      "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
+      "requires": {
+        "end-of-stream": "1.4.1",
+        "once": "1.4.0"
+      }
+    },
+    "pumpify": {
+      "version": "1.5.0",
+      "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.0.tgz",
+      "integrity": "sha512-UWi0klDoq8xtVzlMRgENV9F7iCTZExaJQSQL187UXsxpk9NnrKGqTqqUNYAKGOzucSOxs2+jUnRNI+rLviPhJg==",
+      "requires": {
+        "duplexify": "3.6.0",
+        "inherits": "2.0.3",
+        "pump": "2.0.1"
+      }
+    },
+    "punycode": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
+      "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4="
+    },
+    "q": {
+      "version": "1.5.1",
+      "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz",
+      "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc="
+    },
+    "qs": {
+      "version": "6.3.2",
+      "resolved": "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz",
+      "integrity": "sha1-51vV9uJoEioqDgvaYwslUMFmUCw="
+    },
+    "query-string": {
+      "version": "4.3.4",
+      "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz",
+      "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=",
+      "requires": {
+        "object-assign": "4.1.1",
+        "strict-uri-encode": "1.1.0"
+      }
+    },
+    "querystring": {
+      "version": "0.2.0",
+      "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
+      "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA="
+    },
+    "querystring-es3": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz",
+      "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM="
+    },
+    "querystringify": {
+      "version": "0.0.4",
+      "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-0.0.4.tgz",
+      "integrity": "sha1-DPf4T5Rj/wrlHExLFC2VvjdyTZw="
+    },
+    "randomatic": {
+      "version": "1.1.7",
+      "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz",
+      "integrity": "sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how==",
+      "requires": {
+        "is-number": "3.0.0",
+        "kind-of": "4.0.0"
+      },
+      "dependencies": {
+        "kind-of": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
+          "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
+          "requires": {
+            "is-buffer": "1.1.6"
+          }
+        }
+      }
+    },
+    "randombytes": {
+      "version": "2.0.6",
+      "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz",
+      "integrity": "sha512-CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==",
+      "requires": {
+        "safe-buffer": "5.1.2"
+      }
+    },
+    "randomfill": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
+      "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
+      "requires": {
+        "randombytes": "2.0.6",
+        "safe-buffer": "5.1.2"
+      }
+    },
+    "range-parser": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz",
+      "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4="
+    },
+    "raw-body": {
+      "version": "2.3.2",
+      "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz",
+      "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=",
+      "requires": {
+        "bytes": "3.0.0",
+        "http-errors": "1.6.2",
+        "iconv-lite": "0.4.19",
+        "unpipe": "1.0.0"
+      },
+      "dependencies": {
+        "depd": {
+          "version": "1.1.1",
+          "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz",
+          "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k="
+        },
+        "http-errors": {
+          "version": "1.6.2",
+          "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz",
+          "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=",
+          "requires": {
+            "depd": "1.1.1",
+            "inherits": "2.0.3",
+            "setprototypeof": "1.0.3",
+            "statuses": "1.4.0"
+          }
+        },
+        "setprototypeof": {
+          "version": "1.0.3",
+          "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz",
+          "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ="
+        }
+      }
+    },
+    "rc": {
+      "version": "1.2.7",
+      "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.7.tgz",
+      "integrity": "sha512-LdLD8xD4zzLsAT5xyushXDNscEjB7+2ulnl8+r1pnESlYtlJtVSoCMBGr30eDRJ3+2Gq89jK9P9e4tCEH1+ywA==",
+      "requires": {
+        "deep-extend": "0.5.1",
+        "ini": "1.3.5",
+        "minimist": "1.2.0",
+        "strip-json-comments": "2.0.1"
+      },
+      "dependencies": {
+        "minimist": {
+          "version": "1.2.0",
+          "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
+          "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
+        }
+      }
+    },
+    "read-all-stream": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/read-all-stream/-/read-all-stream-3.1.0.tgz",
+      "integrity": "sha1-NcPhd/IHjveJ7kv6+kNzB06u9Po=",
+      "requires": {
+        "pinkie-promise": "2.0.1",
+        "readable-stream": "2.3.6"
+      }
+    },
+    "read-pkg": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz",
+      "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=",
+      "requires": {
+        "load-json-file": "1.1.0",
+        "normalize-package-data": "2.4.0",
+        "path-type": "1.1.0"
+      }
+    },
+    "read-pkg-up": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz",
+      "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=",
+      "requires": {
+        "find-up": "1.1.2",
+        "read-pkg": "1.1.0"
+      },
+      "dependencies": {
+        "find-up": {
+          "version": "1.1.2",
+          "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz",
+          "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=",
+          "requires": {
+            "path-exists": "2.1.0",
+            "pinkie-promise": "2.0.1"
+          }
+        },
+        "path-exists": {
+          "version": "2.1.0",
+          "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz",
+          "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=",
+          "requires": {
+            "pinkie-promise": "2.0.1"
+          }
+        }
+      }
+    },
+    "readable-stream": {
+      "version": "2.3.6",
+      "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
+      "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
+      "requires": {
+        "core-util-is": "1.0.2",
+        "inherits": "2.0.3",
+        "isarray": "1.0.0",
+        "process-nextick-args": "2.0.0",
+        "safe-buffer": "5.1.2",
+        "string_decoder": "1.1.1",
+        "util-deprecate": "1.0.2"
+      }
+    },
+    "readdirp": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz",
+      "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=",
+      "requires": {
+        "graceful-fs": "4.1.11",
+        "minimatch": "3.0.4",
+        "readable-stream": "2.3.6",
+        "set-immediate-shim": "1.0.1"
+      }
+    },
+    "recast": {
+      "version": "0.11.23",
+      "resolved": "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz",
+      "integrity": "sha1-RR/TAEqx5N+bTktmN2sqIZEkYtM=",
+      "requires": {
+        "ast-types": "0.9.6",
+        "esprima": "3.1.3",
+        "private": "0.1.8",
+        "source-map": "0.5.7"
+      },
+      "dependencies": {
+        "esprima": {
+          "version": "3.1.3",
+          "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz",
+          "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM="
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        }
+      }
+    },
+    "redent": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz",
+      "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=",
+      "requires": {
+        "indent-string": "2.1.0",
+        "strip-indent": "1.0.1"
+      }
+    },
+    "reduce-css-calc": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz",
+      "integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=",
+      "requires": {
+        "balanced-match": "0.4.2",
+        "math-expression-evaluator": "1.2.17",
+        "reduce-function-call": "1.0.2"
+      },
+      "dependencies": {
+        "balanced-match": {
+          "version": "0.4.2",
+          "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
+          "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg="
+        }
+      }
+    },
+    "reduce-function-call": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.2.tgz",
+      "integrity": "sha1-WiAL+S4ON3UXUv5FsKszD9S2vpk=",
+      "requires": {
+        "balanced-match": "0.4.2"
+      },
+      "dependencies": {
+        "balanced-match": {
+          "version": "0.4.2",
+          "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
+          "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg="
+        }
+      }
+    },
+    "regenerate": {
+      "version": "1.3.3",
+      "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz",
+      "integrity": "sha512-jVpo1GadrDAK59t/0jRx5VxYWQEDkkEKi6+HjE3joFVLfDOh9Xrdh0dF1eSq+BI/SwvTQ44gSscJ8N5zYL61sg=="
+    },
+    "regenerator-runtime": {
+      "version": "0.11.1",
+      "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
+      "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="
+    },
+    "regenerator-transform": {
+      "version": "0.10.1",
+      "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz",
+      "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==",
+      "requires": {
+        "babel-runtime": "6.26.0",
+        "babel-types": "6.26.0",
+        "private": "0.1.8"
+      }
+    },
+    "regex-cache": {
+      "version": "0.4.4",
+      "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz",
+      "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==",
+      "requires": {
+        "is-equal-shallow": "0.1.3"
+      }
+    },
+    "regex-not": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
+      "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
+      "requires": {
+        "extend-shallow": "3.0.2",
+        "safe-regex": "1.1.0"
+      }
+    },
+    "regex-parser": {
+      "version": "2.2.9",
+      "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.9.tgz",
+      "integrity": "sha512-VncXxOF6uFlYog5prG2j+e2UGJeam5MfNiJnB/qEgo4KTnMm2XrELCg4rNZ6IlaEUZnGlb8aB6lXowCRQtTkkA=="
+    },
+    "regexpu-core": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz",
+      "integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=",
+      "requires": {
+        "regenerate": "1.3.3",
+        "regjsgen": "0.2.0",
+        "regjsparser": "0.1.5"
+      }
+    },
+    "regjsgen": {
+      "version": "0.2.0",
+      "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz",
+      "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc="
+    },
+    "regjsparser": {
+      "version": "0.1.5",
+      "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz",
+      "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=",
+      "requires": {
+        "jsesc": "0.5.0"
+      },
+      "dependencies": {
+        "jsesc": {
+          "version": "0.5.0",
+          "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
+          "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0="
+        }
+      }
+    },
+    "relateurl": {
+      "version": "0.2.7",
+      "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz",
+      "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk="
+    },
+    "remove-trailing-separator": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
+      "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8="
+    },
+    "repeat-element": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz",
+      "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo="
+    },
+    "repeat-string": {
+      "version": "1.6.1",
+      "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
+      "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc="
+    },
+    "repeating": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz",
+      "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=",
+      "requires": {
+        "is-finite": "1.0.2"
+      }
+    },
+    "replace-ext": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz",
+      "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs="
+    },
+    "request": {
+      "version": "2.79.0",
+      "resolved": "https://registry.npmjs.org/request/-/request-2.79.0.tgz",
+      "integrity": "sha1-Tf5b9r6LjNw3/Pk+BLZVd3InEN4=",
+      "requires": {
+        "aws-sign2": "0.6.0",
+        "aws4": "1.7.0",
+        "caseless": "0.11.0",
+        "combined-stream": "1.0.6",
+        "extend": "3.0.1",
+        "forever-agent": "0.6.1",
+        "form-data": "2.1.4",
+        "har-validator": "2.0.6",
+        "hawk": "3.1.3",
+        "http-signature": "1.1.1",
+        "is-typedarray": "1.0.0",
+        "isstream": "0.1.2",
+        "json-stringify-safe": "5.0.1",
+        "mime-types": "2.1.18",
+        "oauth-sign": "0.8.2",
+        "qs": "6.3.2",
+        "stringstream": "0.0.5",
+        "tough-cookie": "2.3.4",
+        "tunnel-agent": "0.4.3",
+        "uuid": "3.2.1"
+      }
+    },
+    "require-directory": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+      "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I="
+    },
+    "require-from-string": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz",
+      "integrity": "sha1-UpyczvJzgK3+yaL5ZbZJu+5jZBg="
+    },
+    "require-main-filename": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz",
+      "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE="
+    },
+    "requires-port": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
+      "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8="
+    },
+    "resolve": {
+      "version": "1.7.1",
+      "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz",
+      "integrity": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==",
+      "requires": {
+        "path-parse": "1.0.5"
+      }
+    },
+    "resolve-cwd": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz",
+      "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=",
+      "requires": {
+        "resolve-from": "3.0.0"
+      }
+    },
+    "resolve-from": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz",
+      "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g="
+    },
+    "resolve-url": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
+      "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo="
+    },
+    "resolve-url-loader": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-2.3.0.tgz",
+      "integrity": "sha512-RaEUWgF/B6aTg9VKaOv2o6dfm5f75/lGh8S+SQwoMcBm48WkA2nhLR+V7KEawkxXjU4lLB16IVeHCe7F69nyVw==",
+      "requires": {
+        "adjust-sourcemap-loader": "1.2.0",
+        "camelcase": "4.1.0",
+        "convert-source-map": "1.5.1",
+        "loader-utils": "1.1.0",
+        "lodash.defaults": "4.2.0",
+        "rework": "1.0.1",
+        "rework-visit": "1.0.0",
+        "source-map": "0.5.7",
+        "urix": "0.1.0"
+      },
+      "dependencies": {
+        "camelcase": {
+          "version": "4.1.0",
+          "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz",
+          "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0="
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        }
+      }
+    },
+    "ret": {
+      "version": "0.1.15",
+      "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
+      "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="
+    },
+    "rework": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz",
+      "integrity": "sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=",
+      "requires": {
+        "convert-source-map": "0.3.5",
+        "css": "2.2.3"
+      },
+      "dependencies": {
+        "convert-source-map": {
+          "version": "0.3.5",
+          "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz",
+          "integrity": "sha1-8dgClQr33SYxof6+BZZVDIarMZA="
+        }
+      }
+    },
+    "rework-visit": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz",
+      "integrity": "sha1-mUWygD8hni96ygCtuLyfZA+ELJo="
+    },
+    "right-align": {
+      "version": "0.1.3",
+      "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz",
+      "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=",
+      "requires": {
+        "align-text": "0.1.4"
+      }
+    },
+    "rimraf": {
+      "version": "2.6.2",
+      "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz",
+      "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==",
+      "requires": {
+        "glob": "7.1.2"
+      }
+    },
+    "ripemd160": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
+      "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
+      "requires": {
+        "hash-base": "3.0.4",
+        "inherits": "2.0.3"
+      }
+    },
+    "run-queue": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz",
+      "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=",
+      "requires": {
+        "aproba": "1.2.0"
+      }
+    },
+    "safe-buffer": {
+      "version": "5.1.2",
+      "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+      "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+    },
+    "safe-regex": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
+      "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
+      "requires": {
+        "ret": "0.1.15"
+      }
+    },
+    "sass-graph": {
+      "version": "2.2.4",
+      "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz",
+      "integrity": "sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k=",
+      "requires": {
+        "glob": "7.1.2",
+        "lodash": "4.17.10",
+        "scss-tokenizer": "0.2.3",
+        "yargs": "7.1.0"
+      },
+      "dependencies": {
+        "camelcase": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
+          "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo="
+        },
+        "is-fullwidth-code-point": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
+          "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
+          "requires": {
+            "number-is-nan": "1.0.1"
+          }
+        },
+        "string-width": {
+          "version": "1.0.2",
+          "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
+          "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
+          "requires": {
+            "code-point-at": "1.1.0",
+            "is-fullwidth-code-point": "1.0.0",
+            "strip-ansi": "3.0.1"
+          }
+        },
+        "yargs": {
+          "version": "7.1.0",
+          "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz",
+          "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=",
+          "requires": {
+            "camelcase": "3.0.0",
+            "cliui": "3.2.0",
+            "decamelize": "1.2.0",
+            "get-caller-file": "1.0.2",
+            "os-locale": "1.4.0",
+            "read-pkg-up": "1.0.1",
+            "require-directory": "2.1.1",
+            "require-main-filename": "1.0.1",
+            "set-blocking": "2.0.0",
+            "string-width": "1.0.2",
+            "which-module": "1.0.0",
+            "y18n": "3.2.1",
+            "yargs-parser": "5.0.0"
+          }
+        }
+      }
+    },
+    "sass-loader": {
+      "version": "6.0.7",
+      "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-6.0.7.tgz",
+      "integrity": "sha512-JoiyD00Yo1o61OJsoP2s2kb19L1/Y2p3QFcCdWdF6oomBGKVYuZyqHWemRBfQ2uGYsk+CH3eCguXNfpjzlcpaA==",
+      "requires": {
+        "clone-deep": "2.0.2",
+        "loader-utils": "1.1.0",
+        "lodash.tail": "4.1.1",
+        "neo-async": "2.5.1",
+        "pify": "3.0.0"
+      }
+    },
+    "sax": {
+      "version": "1.2.4",
+      "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
+      "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
+    },
+    "schema-utils": {
+      "version": "0.3.0",
+      "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.3.0.tgz",
+      "integrity": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=",
+      "requires": {
+        "ajv": "5.5.2"
+      }
+    },
+    "scss-tokenizer": {
+      "version": "0.2.3",
+      "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz",
+      "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=",
+      "requires": {
+        "js-base64": "2.4.3",
+        "source-map": "0.4.4"
+      },
+      "dependencies": {
+        "source-map": {
+          "version": "0.4.4",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz",
+          "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=",
+          "requires": {
+            "amdefine": "1.0.1"
+          }
+        }
+      }
+    },
+    "seek-bzip": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.5.tgz",
+      "integrity": "sha1-z+kXyz0nS8/6x5J1ivUxc+sfq9w=",
+      "requires": {
+        "commander": "2.8.1"
+      },
+      "dependencies": {
+        "commander": {
+          "version": "2.8.1",
+          "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz",
+          "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=",
+          "requires": {
+            "graceful-readlink": "1.0.1"
+          }
+        }
+      }
+    },
+    "select-hose": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz",
+      "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo="
+    },
+    "selfsigned": {
+      "version": "1.10.3",
+      "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.3.tgz",
+      "integrity": "sha512-vmZenZ+8Al3NLHkWnhBQ0x6BkML1eCP2xEi3JE+f3D9wW9fipD9NNJHYtE9XJM4TsPaHGZJIamrSI6MTg1dU2Q==",
+      "requires": {
+        "node-forge": "0.7.5"
+      }
+    },
+    "semver": {
+      "version": "5.5.0",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz",
+      "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA=="
+    },
+    "semver-regex": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-1.0.0.tgz",
+      "integrity": "sha1-kqSWkGX5xwxpR1PVUkj8aPj2Usk="
+    },
+    "semver-truncate": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz",
+      "integrity": "sha1-V/Qd5pcHpicJp+AQS6IRcQnqR+g=",
+      "requires": {
+        "semver": "5.5.0"
+      }
+    },
+    "send": {
+      "version": "0.16.2",
+      "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz",
+      "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==",
+      "requires": {
+        "debug": "2.6.9",
+        "depd": "1.1.2",
+        "destroy": "1.0.4",
+        "encodeurl": "1.0.2",
+        "escape-html": "1.0.3",
+        "etag": "1.8.1",
+        "fresh": "0.5.2",
+        "http-errors": "1.6.3",
+        "mime": "1.4.1",
+        "ms": "2.0.0",
+        "on-finished": "2.3.0",
+        "range-parser": "1.2.0",
+        "statuses": "1.4.0"
+      }
+    },
+    "serialize-javascript": {
+      "version": "1.5.0",
+      "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz",
+      "integrity": "sha512-Ga8c8NjAAp46Br4+0oZ2WxJCwIzwP60Gq1YPgU+39PiTVxyed/iKE/zyZI6+UlVYH5Q4PaQdHhcegIFPZTUfoQ=="
+    },
+    "serve-index": {
+      "version": "1.9.1",
+      "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz",
+      "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=",
+      "requires": {
+        "accepts": "1.3.5",
+        "batch": "0.6.1",
+        "debug": "2.6.9",
+        "escape-html": "1.0.3",
+        "http-errors": "1.6.3",
+        "mime-types": "2.1.18",
+        "parseurl": "1.3.2"
+      }
+    },
+    "serve-static": {
+      "version": "1.13.2",
+      "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz",
+      "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==",
+      "requires": {
+        "encodeurl": "1.0.2",
+        "escape-html": "1.0.3",
+        "parseurl": "1.3.2",
+        "send": "0.16.2"
+      }
+    },
+    "set-blocking": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+      "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc="
+    },
+    "set-immediate-shim": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz",
+      "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E="
+    },
+    "set-value": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz",
+      "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==",
+      "requires": {
+        "extend-shallow": "2.0.1",
+        "is-extendable": "0.1.1",
+        "is-plain-object": "2.0.4",
+        "split-string": "3.1.0"
+      },
+      "dependencies": {
+        "extend-shallow": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+          "requires": {
+            "is-extendable": "0.1.1"
+          }
+        }
+      }
+    },
+    "setimmediate": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
+      "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU="
+    },
+    "setprototypeof": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
+      "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="
+    },
+    "sha.js": {
+      "version": "2.4.11",
+      "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
+      "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
+      "requires": {
+        "inherits": "2.0.3",
+        "safe-buffer": "5.1.2"
+      }
+    },
+    "shallow-clone": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-1.0.0.tgz",
+      "integrity": "sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA==",
+      "requires": {
+        "is-extendable": "0.1.1",
+        "kind-of": "5.1.0",
+        "mixin-object": "2.0.1"
+      },
+      "dependencies": {
+        "kind-of": {
+          "version": "5.1.0",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+          "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
+        }
+      }
+    },
+    "shebang-command": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+      "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
+      "requires": {
+        "shebang-regex": "1.0.0"
+      }
+    },
+    "shebang-regex": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+      "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM="
+    },
+    "shellwords": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz",
+      "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww=="
+    },
+    "signal-exit": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz",
+      "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0="
+    },
+    "slash": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
+      "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU="
+    },
+    "snapdragon": {
+      "version": "0.8.2",
+      "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
+      "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
+      "requires": {
+        "base": "0.11.2",
+        "debug": "2.6.9",
+        "define-property": "0.2.5",
+        "extend-shallow": "2.0.1",
+        "map-cache": "0.2.2",
+        "source-map": "0.5.7",
+        "source-map-resolve": "0.5.1",
+        "use": "3.1.0"
+      },
+      "dependencies": {
+        "define-property": {
+          "version": "0.2.5",
+          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+          "requires": {
+            "is-descriptor": "0.1.6"
+          }
+        },
+        "extend-shallow": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+          "requires": {
+            "is-extendable": "0.1.1"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        }
+      }
+    },
+    "snapdragon-node": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
+      "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
+      "requires": {
+        "define-property": "1.0.0",
+        "isobject": "3.0.1",
+        "snapdragon-util": "3.0.1"
+      },
+      "dependencies": {
+        "define-property": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+          "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+          "requires": {
+            "is-descriptor": "1.0.2"
+          }
+        },
+        "is-accessor-descriptor": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+          "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+          "requires": {
+            "kind-of": "6.0.2"
+          }
+        },
+        "is-data-descriptor": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+          "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+          "requires": {
+            "kind-of": "6.0.2"
+          }
+        },
+        "is-descriptor": {
+          "version": "1.0.2",
+          "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+          "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+          "requires": {
+            "is-accessor-descriptor": "1.0.0",
+            "is-data-descriptor": "1.0.0",
+            "kind-of": "6.0.2"
+          }
+        }
+      }
+    },
+    "snapdragon-util": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
+      "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
+      "requires": {
+        "kind-of": "3.2.2"
+      },
+      "dependencies": {
+        "kind-of": {
+          "version": "3.2.2",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+          "requires": {
+            "is-buffer": "1.1.6"
+          }
+        }
+      }
+    },
+    "sntp": {
+      "version": "1.0.9",
+      "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz",
+      "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=",
+      "requires": {
+        "hoek": "2.16.3"
+      }
+    },
+    "sockjs": {
+      "version": "0.3.19",
+      "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.19.tgz",
+      "integrity": "sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw==",
+      "requires": {
+        "faye-websocket": "0.10.0",
+        "uuid": "3.2.1"
+      }
+    },
+    "sockjs-client": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.1.4.tgz",
+      "integrity": "sha1-W6vjhrd15M8U51IJEUUmVAFsixI=",
+      "requires": {
+        "debug": "2.6.9",
+        "eventsource": "0.1.6",
+        "faye-websocket": "0.11.1",
+        "inherits": "2.0.3",
+        "json3": "3.3.2",
+        "url-parse": "1.4.0"
+      },
+      "dependencies": {
+        "faye-websocket": {
+          "version": "0.11.1",
+          "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.1.tgz",
+          "integrity": "sha1-8O/hjE9W5PQK/H4Gxxn9XuYYjzg=",
+          "requires": {
+            "websocket-driver": "0.7.0"
+          }
+        }
+      }
+    },
+    "sort-keys": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz",
+      "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=",
+      "requires": {
+        "is-plain-obj": "1.1.0"
+      }
+    },
+    "sort-keys-length": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz",
+      "integrity": "sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=",
+      "requires": {
+        "sort-keys": "1.1.2"
+      }
+    },
+    "source-list-map": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.0.tgz",
+      "integrity": "sha512-I2UmuJSRr/T8jisiROLU3A3ltr+swpniSmNPI4Ml3ZCX6tVnDsuZzK7F2hl5jTqbZBWCEKlj5HRQiPExXLgE8A=="
+    },
+    "source-map": {
+      "version": "0.6.1",
+      "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+      "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+    },
+    "source-map-resolve": {
+      "version": "0.5.1",
+      "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.1.tgz",
+      "integrity": "sha512-0KW2wvzfxm8NCTb30z0LMNyPqWCdDGE2viwzUaucqJdkTRXtZiSY3I+2A6nVAjmdOy0I4gU8DwnVVGsk9jvP2A==",
+      "requires": {
+        "atob": "2.1.1",
+        "decode-uri-component": "0.2.0",
+        "resolve-url": "0.2.1",
+        "source-map-url": "0.4.0",
+        "urix": "0.1.0"
+      }
+    },
+    "source-map-support": {
+      "version": "0.4.18",
+      "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz",
+      "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==",
+      "requires": {
+        "source-map": "0.5.7"
+      },
+      "dependencies": {
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        }
+      }
+    },
+    "source-map-url": {
+      "version": "0.4.0",
+      "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz",
+      "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM="
+    },
+    "sparkles": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz",
+      "integrity": "sha1-Gsu/tZJDbRC76PeFt8xvgoFQEsM="
+    },
+    "spdx-correct": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.0.tgz",
+      "integrity": "sha512-N19o9z5cEyc8yQQPukRCZ9EUmb4HUpnrmaL/fxS2pBo2jbfcFRVuFZ/oFC+vZz0MNNk0h80iMn5/S6qGZOL5+g==",
+      "requires": {
+        "spdx-expression-parse": "3.0.0",
+        "spdx-license-ids": "3.0.0"
+      }
+    },
+    "spdx-exceptions": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz",
+      "integrity": "sha512-4K1NsmrlCU1JJgUrtgEeTVyfx8VaYea9J9LvARxhbHtVtohPs/gFGG5yy49beySjlIMhhXZ4QqujIZEfS4l6Cg=="
+    },
+    "spdx-expression-parse": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz",
+      "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==",
+      "requires": {
+        "spdx-exceptions": "2.1.0",
+        "spdx-license-ids": "3.0.0"
+      }
+    },
+    "spdx-license-ids": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz",
+      "integrity": "sha512-2+EPwgbnmOIl8HjGBXXMd9NAu02vLjOO1nWw4kmeRDFyHn+M/ETfHxQUK0oXg8ctgVnl9t3rosNVsZ1jG61nDA=="
+    },
+    "spdy": {
+      "version": "3.4.7",
+      "resolved": "https://registry.npmjs.org/spdy/-/spdy-3.4.7.tgz",
+      "integrity": "sha1-Qv9B7OXMD5mjpsKKq7c/XDsDrLw=",
+      "requires": {
+        "debug": "2.6.9",
+        "handle-thing": "1.2.5",
+        "http-deceiver": "1.2.7",
+        "safe-buffer": "5.1.2",
+        "select-hose": "2.0.0",
+        "spdy-transport": "2.1.0"
+      }
+    },
+    "spdy-transport": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-2.1.0.tgz",
+      "integrity": "sha512-bpUeGpZcmZ692rrTiqf9/2EUakI6/kXX1Rpe0ib/DyOzbiexVfXkw6GnvI9hVGvIwVaUhkaBojjCZwLNRGQg1g==",
+      "requires": {
+        "debug": "2.6.9",
+        "detect-node": "2.0.3",
+        "hpack.js": "2.1.6",
+        "obuf": "1.1.2",
+        "readable-stream": "2.3.6",
+        "safe-buffer": "5.1.2",
+        "wbuf": "1.7.3"
+      }
+    },
+    "split-string": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
+      "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
+      "requires": {
+        "extend-shallow": "3.0.2"
+      }
+    },
+    "sprintf-js": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
+      "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
+    },
+    "squeak": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/squeak/-/squeak-1.3.0.tgz",
+      "integrity": "sha1-MwRQN7ZDiLVnZ0uEMiplIQc5FsM=",
+      "requires": {
+        "chalk": "1.1.3",
+        "console-stream": "0.1.1",
+        "lpad-align": "1.1.2"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            }
+          }
+        },
+        "supports-color": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+          "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+        }
+      }
+    },
+    "sshpk": {
+      "version": "1.14.1",
+      "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.14.1.tgz",
+      "integrity": "sha1-Ew9Zde3a2WPx1W+SuaxsUfqfg+s=",
+      "requires": {
+        "asn1": "0.2.3",
+        "assert-plus": "1.0.0",
+        "bcrypt-pbkdf": "1.0.1",
+        "dashdash": "1.14.1",
+        "ecc-jsbn": "0.1.1",
+        "getpass": "0.1.7",
+        "jsbn": "0.1.1",
+        "tweetnacl": "0.14.5"
+      },
+      "dependencies": {
+        "assert-plus": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+          "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
+        }
+      }
+    },
+    "ssri": {
+      "version": "5.3.0",
+      "resolved": "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz",
+      "integrity": "sha512-XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==",
+      "requires": {
+        "safe-buffer": "5.1.2"
+      }
+    },
+    "stable": {
+      "version": "0.1.8",
+      "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
+      "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w=="
+    },
+    "stackframe": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.0.4.tgz",
+      "integrity": "sha512-to7oADIniaYwS3MhtCa/sQhrxidCCQiF/qp4/m5iN3ipf0Y7Xlri0f6eG29r08aL7JYl8n32AF3Q5GYBZ7K8vw=="
+    },
+    "stat-mode": {
+      "version": "0.2.2",
+      "resolved": "https://registry.npmjs.org/stat-mode/-/stat-mode-0.2.2.tgz",
+      "integrity": "sha1-5sgLYjEj19gM8TLOU480YokHJQI="
+    },
+    "static-extend": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz",
+      "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=",
+      "requires": {
+        "define-property": "0.2.5",
+        "object-copy": "0.1.0"
+      },
+      "dependencies": {
+        "define-property": {
+          "version": "0.2.5",
+          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+          "requires": {
+            "is-descriptor": "0.1.6"
+          }
+        }
+      }
+    },
+    "statuses": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz",
+      "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew=="
+    },
+    "stdout-stream": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.0.tgz",
+      "integrity": "sha1-osfIWH5U2UJ+qe2zrD8s1SLfN4s=",
+      "requires": {
+        "readable-stream": "2.3.6"
+      }
+    },
+    "stream-browserify": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz",
+      "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=",
+      "requires": {
+        "inherits": "2.0.3",
+        "readable-stream": "2.3.6"
+      }
+    },
+    "stream-combiner2": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz",
+      "integrity": "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=",
+      "requires": {
+        "duplexer2": "0.1.4",
+        "readable-stream": "2.3.6"
+      }
+    },
+    "stream-each": {
+      "version": "1.2.2",
+      "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.2.tgz",
+      "integrity": "sha512-mc1dbFhGBxvTM3bIWmAAINbqiuAk9TATcfIQC8P+/+HJefgaiTlMn2dHvkX8qlI12KeYKSQ1Ua9RrIqrn1VPoA==",
+      "requires": {
+        "end-of-stream": "1.4.1",
+        "stream-shift": "1.0.0"
+      }
+    },
+    "stream-http": {
+      "version": "2.8.1",
+      "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.1.tgz",
+      "integrity": "sha512-cQ0jo17BLca2r0GfRdZKYAGLU6JRoIWxqSOakUMuKOT6MOK7AAlE856L33QuDmAy/eeOrhLee3dZKX0Uadu93A==",
+      "requires": {
+        "builtin-status-codes": "3.0.0",
+        "inherits": "2.0.3",
+        "readable-stream": "2.3.6",
+        "to-arraybuffer": "1.0.1",
+        "xtend": "4.0.1"
+      }
+    },
+    "stream-shift": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz",
+      "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI="
+    },
+    "strict-uri-encode": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
+      "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM="
+    },
+    "string-width": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
+      "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
+      "requires": {
+        "is-fullwidth-code-point": "2.0.0",
+        "strip-ansi": "4.0.0"
+      },
+      "dependencies": {
+        "ansi-regex": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
+          "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg="
+        },
+        "strip-ansi": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
+          "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
+          "requires": {
+            "ansi-regex": "3.0.0"
+          }
+        }
+      }
+    },
+    "string_decoder": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+      "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+      "requires": {
+        "safe-buffer": "5.1.2"
+      }
+    },
+    "stringstream": {
+      "version": "0.0.5",
+      "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz",
+      "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg="
+    },
+    "strip-ansi": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+      "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+      "requires": {
+        "ansi-regex": "2.1.1"
+      }
+    },
+    "strip-bom": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz",
+      "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=",
+      "requires": {
+        "is-utf8": "0.2.1"
+      }
+    },
+    "strip-bom-stream": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz",
+      "integrity": "sha1-5xRDmFd9Uaa+0PoZlPoF9D/ZiO4=",
+      "requires": {
+        "first-chunk-stream": "1.0.0",
+        "strip-bom": "2.0.0"
+      }
+    },
+    "strip-dirs": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-1.1.1.tgz",
+      "integrity": "sha1-lgu9EoeETzl1pFWKoQOoJV4kVqA=",
+      "requires": {
+        "chalk": "1.1.3",
+        "get-stdin": "4.0.1",
+        "is-absolute": "0.1.7",
+        "is-natural-number": "2.1.1",
+        "minimist": "1.2.0",
+        "sum-up": "1.0.3"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            }
+          }
+        },
+        "minimist": {
+          "version": "1.2.0",
+          "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
+          "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
+        },
+        "supports-color": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+          "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+        }
+      }
+    },
+    "strip-eof": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
+      "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8="
+    },
+    "strip-indent": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz",
+      "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=",
+      "requires": {
+        "get-stdin": "4.0.1"
+      }
+    },
+    "strip-json-comments": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
+      "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo="
+    },
+    "strip-outer": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz",
+      "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==",
+      "requires": {
+        "escape-string-regexp": "1.0.5"
+      }
+    },
+    "style-loader": {
+      "version": "0.18.2",
+      "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.18.2.tgz",
+      "integrity": "sha512-WPpJPZGUxWYHWIUMNNOYqql7zh85zGmr84FdTVWq52WTIkqlW9xSxD3QYWi/T31cqn9UNSsietVEgGn2aaSCzw==",
+      "requires": {
+        "loader-utils": "1.1.0",
+        "schema-utils": "0.3.0"
+      }
+    },
+    "sum-up": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/sum-up/-/sum-up-1.0.3.tgz",
+      "integrity": "sha1-HGYfZnBX9jvLeHWqFDi8FiUlFW4=",
+      "requires": {
+        "chalk": "1.1.3"
+      },
+      "dependencies": {
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "requires": {
+            "ansi-styles": "2.2.1",
+            "escape-string-regexp": "1.0.5",
+            "has-ansi": "2.0.0",
+            "strip-ansi": "3.0.1",
+            "supports-color": "2.0.0"
+          },
+          "dependencies": {
+            "strip-ansi": {
+              "version": "3.0.1",
+              "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+              "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+              "requires": {
+                "ansi-regex": "2.1.1"
+              }
+            }
+          }
+        },
+        "supports-color": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+          "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+        }
+      }
+    },
+    "supports-color": {
+      "version": "5.4.0",
+      "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
+      "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+      "requires": {
+        "has-flag": "3.0.0"
+      }
+    },
+    "svgo": {
+      "version": "0.7.2",
+      "resolved": "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz",
+      "integrity": "sha1-n1dyQTlSE1xv779Ar+ak+qiLS7U=",
+      "requires": {
+        "coa": "1.0.4",
+        "colors": "1.1.2",
+        "csso": "2.3.2",
+        "js-yaml": "3.7.0",
+        "mkdirp": "0.5.1",
+        "sax": "1.2.4",
+        "whet.extend": "0.9.9"
+      }
+    },
+    "tapable": {
+      "version": "0.2.8",
+      "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.2.8.tgz",
+      "integrity": "sha1-mTcqXJmb8t8WCvwNdL7U9HlIzSI="
+    },
+    "tar": {
+      "version": "2.2.1",
+      "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz",
+      "integrity": "sha1-jk0qJWwOIYXGsYrWlK7JaLg8sdE=",
+      "requires": {
+        "block-stream": "0.0.9",
+        "fstream": "1.0.11",
+        "inherits": "2.0.3"
+      }
+    },
+    "tar-pack": {
+      "version": "3.4.1",
+      "resolved": "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.1.tgz",
+      "integrity": "sha512-PPRybI9+jM5tjtCbN2cxmmRU7YmqT3Zv/UDy48tAh2XRkLa9bAORtSWLkVc13+GJF+cdTh1yEnHEk3cpTaL5Kg==",
+      "requires": {
+        "debug": "2.6.9",
+        "fstream": "1.0.11",
+        "fstream-ignore": "1.0.5",
+        "once": "1.4.0",
+        "readable-stream": "2.3.6",
+        "rimraf": "2.6.2",
+        "tar": "2.2.1",
+        "uid-number": "0.0.6"
+      }
+    },
+    "tar-stream": {
+      "version": "1.6.0",
+      "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.0.tgz",
+      "integrity": "sha512-lh2iAPG/BHNmN6WB9Ybdynk9rEJ5GD/dy4zscHmVlwa1dq2tpE+BH78i5vjYwYVWEaOXGBjzxr89aVACF17Cpw==",
+      "requires": {
+        "bl": "1.2.2",
+        "buffer-alloc": "1.1.0",
+        "end-of-stream": "1.4.1",
+        "fs-constants": "1.0.0",
+        "readable-stream": "2.3.6",
+        "to-buffer": "1.1.1",
+        "xtend": "4.0.1"
+      }
+    },
+    "temp-dir": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz",
+      "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0="
+    },
+    "tempfile": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz",
+      "integrity": "sha1-awRGhWqbERTRhW/8vlCczLCXcmU=",
+      "requires": {
+        "temp-dir": "1.0.0",
+        "uuid": "3.2.1"
+      }
+    },
+    "through": {
+      "version": "2.3.8",
+      "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
+      "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU="
+    },
+    "through2": {
+      "version": "0.6.5",
+      "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz",
+      "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=",
+      "requires": {
+        "readable-stream": "1.0.34",
+        "xtend": "4.0.1"
+      },
+      "dependencies": {
+        "isarray": {
+          "version": "0.0.1",
+          "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
+          "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8="
+        },
+        "readable-stream": {
+          "version": "1.0.34",
+          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
+          "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=",
+          "requires": {
+            "core-util-is": "1.0.2",
+            "inherits": "2.0.3",
+            "isarray": "0.0.1",
+            "string_decoder": "0.10.31"
+          }
+        },
+        "string_decoder": {
+          "version": "0.10.31",
+          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
+          "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ="
+        }
+      }
+    },
+    "through2-filter": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-2.0.0.tgz",
+      "integrity": "sha1-YLxVoNrLdghdsfna6Zq0P4PWIuw=",
+      "requires": {
+        "through2": "2.0.3",
+        "xtend": "4.0.1"
+      },
+      "dependencies": {
+        "through2": {
+          "version": "2.0.3",
+          "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz",
+          "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=",
+          "requires": {
+            "readable-stream": "2.3.6",
+            "xtend": "4.0.1"
+          }
+        }
+      }
+    },
+    "thunky": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.0.2.tgz",
+      "integrity": "sha1-qGLgGOP7HqLsP85dVWBc9X8kc3E="
+    },
+    "time-stamp": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz",
+      "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM="
+    },
+    "timed-out": {
+      "version": "3.1.3",
+      "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-3.1.3.tgz",
+      "integrity": "sha1-lYYL/MXHbCd/j4Mm/Q9bLiDrohc="
+    },
+    "timers-browserify": {
+      "version": "2.0.10",
+      "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz",
+      "integrity": "sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==",
+      "requires": {
+        "setimmediate": "1.0.5"
+      }
+    },
+    "to-absolute-glob": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz",
+      "integrity": "sha1-HN+kcqnvUMI57maZm2YsoOs5k38=",
+      "requires": {
+        "extend-shallow": "2.0.1"
+      },
+      "dependencies": {
+        "extend-shallow": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+          "requires": {
+            "is-extendable": "0.1.1"
+          }
+        }
+      }
+    },
+    "to-arraybuffer": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz",
+      "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M="
+    },
+    "to-buffer": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz",
+      "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg=="
+    },
+    "to-fast-properties": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz",
+      "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc="
+    },
+    "to-object-path": {
+      "version": "0.3.0",
+      "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz",
+      "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=",
+      "requires": {
+        "kind-of": "3.2.2"
+      },
+      "dependencies": {
+        "kind-of": {
+          "version": "3.2.2",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+          "requires": {
+            "is-buffer": "1.1.6"
+          }
+        }
+      }
+    },
+    "to-regex": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
+      "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
+      "requires": {
+        "define-property": "2.0.2",
+        "extend-shallow": "3.0.2",
+        "regex-not": "1.0.2",
+        "safe-regex": "1.1.0"
+      }
+    },
+    "to-regex-range": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+      "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+      "requires": {
+        "is-number": "3.0.0",
+        "repeat-string": "1.6.1"
+      }
+    },
+    "tough-cookie": {
+      "version": "2.3.4",
+      "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz",
+      "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==",
+      "requires": {
+        "punycode": "1.4.1"
+      }
+    },
+    "trim-newlines": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz",
+      "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM="
+    },
+    "trim-repeated": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz",
+      "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=",
+      "requires": {
+        "escape-string-regexp": "1.0.5"
+      }
+    },
+    "trim-right": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz",
+      "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM="
+    },
+    "true-case-path": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.2.tgz",
+      "integrity": "sha1-fskRMJJHZsf1c74wIMNPj9/QDWI=",
+      "requires": {
+        "glob": "6.0.4"
+      },
+      "dependencies": {
+        "glob": {
+          "version": "6.0.4",
+          "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz",
+          "integrity": "sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI=",
+          "requires": {
+            "inflight": "1.0.6",
+            "inherits": "2.0.3",
+            "minimatch": "3.0.4",
+            "once": "1.4.0",
+            "path-is-absolute": "1.0.1"
+          }
+        }
+      }
+    },
+    "tty-browserify": {
+      "version": "0.0.0",
+      "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz",
+      "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY="
+    },
+    "tunnel-agent": {
+      "version": "0.4.3",
+      "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz",
+      "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us="
+    },
+    "tweetnacl": {
+      "version": "0.14.5",
+      "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
+      "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
+      "optional": true
+    },
+    "type-is": {
+      "version": "1.6.16",
+      "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz",
+      "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==",
+      "requires": {
+        "media-typer": "0.3.0",
+        "mime-types": "2.1.18"
+      }
+    },
+    "typedarray": {
+      "version": "0.0.6",
+      "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
+      "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c="
+    },
+    "uglify-js": {
+      "version": "2.8.29",
+      "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz",
+      "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=",
+      "requires": {
+        "source-map": "0.5.7",
+        "uglify-to-browserify": "1.0.2",
+        "yargs": "3.10.0"
+      },
+      "dependencies": {
+        "camelcase": {
+          "version": "1.2.1",
+          "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz",
+          "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk="
+        },
+        "cliui": {
+          "version": "2.1.0",
+          "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz",
+          "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=",
+          "requires": {
+            "center-align": "0.1.3",
+            "right-align": "0.1.3",
+            "wordwrap": "0.0.2"
+          }
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "yargs": {
+          "version": "3.10.0",
+          "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz",
+          "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=",
+          "requires": {
+            "camelcase": "1.2.1",
+            "cliui": "2.1.0",
+            "decamelize": "1.2.0",
+            "window-size": "0.1.0"
+          }
+        }
+      }
+    },
+    "uglify-to-browserify": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz",
+      "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=",
+      "optional": true
+    },
+    "uglifyjs-webpack-plugin": {
+      "version": "1.2.5",
+      "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.5.tgz",
+      "integrity": "sha512-hIQJ1yxAPhEA2yW/i7Fr+SXZVMp+VEI3d42RTHBgQd2yhp/1UdBcR3QEWPV5ahBxlqQDMEMTuTEvDHSFINfwSw==",
+      "requires": {
+        "cacache": "10.0.4",
+        "find-cache-dir": "1.0.0",
+        "schema-utils": "0.4.5",
+        "serialize-javascript": "1.5.0",
+        "source-map": "0.6.1",
+        "uglify-es": "3.3.9",
+        "webpack-sources": "1.1.0",
+        "worker-farm": "1.6.0"
+      },
+      "dependencies": {
+        "ajv": {
+          "version": "6.4.0",
+          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.4.0.tgz",
+          "integrity": "sha1-06/3jpJ3VJdx2vAWTP9ISCt1T8Y=",
+          "requires": {
+            "fast-deep-equal": "1.1.0",
+            "fast-json-stable-stringify": "2.0.0",
+            "json-schema-traverse": "0.3.1",
+            "uri-js": "3.0.2"
+          }
+        },
+        "commander": {
+          "version": "2.13.0",
+          "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz",
+          "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA=="
+        },
+        "schema-utils": {
+          "version": "0.4.5",
+          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.5.tgz",
+          "integrity": "sha512-yYrjb9TX2k/J1Y5UNy3KYdZq10xhYcF8nMpAW6o3hy6Q8WSIEf9lJHG/ePnOBfziPM3fvQwfOwa13U/Fh8qTfA==",
+          "requires": {
+            "ajv": "6.4.0",
+            "ajv-keywords": "3.2.0"
+          }
+        },
+        "uglify-es": {
+          "version": "3.3.9",
+          "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz",
+          "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==",
+          "requires": {
+            "commander": "2.13.0",
+            "source-map": "0.6.1"
+          }
+        }
+      }
+    },
+    "uid-number": {
+      "version": "0.0.6",
+      "resolved": "https://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz",
+      "integrity": "sha1-DqEOgDXo61uOREnwbaHHMGY7qoE="
+    },
+    "unbzip2-stream": {
+      "version": "1.2.5",
+      "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.2.5.tgz",
+      "integrity": "sha512-izD3jxT8xkzwtXRUZjtmRwKnZoeECrfZ8ra/ketwOcusbZEp4mjULMnJOCfTDZBgGQAAY1AJ/IgxcwkavcX9Og==",
+      "requires": {
+        "buffer": "3.6.0",
+        "through": "2.3.8"
+      }
+    },
+    "union-value": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz",
+      "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=",
+      "requires": {
+        "arr-union": "3.1.0",
+        "get-value": "2.0.6",
+        "is-extendable": "0.1.1",
+        "set-value": "0.4.3"
+      },
+      "dependencies": {
+        "extend-shallow": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+          "requires": {
+            "is-extendable": "0.1.1"
+          }
+        },
+        "set-value": {
+          "version": "0.4.3",
+          "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz",
+          "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=",
+          "requires": {
+            "extend-shallow": "2.0.1",
+            "is-extendable": "0.1.1",
+            "is-plain-object": "2.0.4",
+            "to-object-path": "0.3.0"
+          }
+        }
+      }
+    },
+    "uniq": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz",
+      "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8="
+    },
+    "uniqid": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/uniqid/-/uniqid-4.1.1.tgz",
+      "integrity": "sha1-iSIN32t1GuUrX3JISGNShZa7hME=",
+      "requires": {
+        "macaddress": "0.2.8"
+      }
+    },
+    "uniqs": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz",
+      "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI="
+    },
+    "unique-filename": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.0.tgz",
+      "integrity": "sha1-0F8v5AMlYIcfMOk8vnNe6iAVFPM=",
+      "requires": {
+        "unique-slug": "2.0.0"
+      }
+    },
+    "unique-slug": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.0.tgz",
+      "integrity": "sha1-22Z258fMBimHj/GWCXx4hVrp9Ks=",
+      "requires": {
+        "imurmurhash": "0.1.4"
+      }
+    },
+    "unique-stream": {
+      "version": "2.2.1",
+      "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.2.1.tgz",
+      "integrity": "sha1-WqADz76Uxf+GbE59ZouxxNuts2k=",
+      "requires": {
+        "json-stable-stringify": "1.0.1",
+        "through2-filter": "2.0.0"
+      }
+    },
+    "universalify": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.1.tgz",
+      "integrity": "sha1-+nG63UQ3r0wUiEHjs7Fl+enlkLc="
+    },
+    "unpipe": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+      "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw="
+    },
+    "unquote": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz",
+      "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ="
+    },
+    "unset-value": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz",
+      "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=",
+      "requires": {
+        "has-value": "0.3.1",
+        "isobject": "3.0.1"
+      },
+      "dependencies": {
+        "has-value": {
+          "version": "0.3.1",
+          "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz",
+          "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=",
+          "requires": {
+            "get-value": "2.0.6",
+            "has-values": "0.1.4",
+            "isobject": "2.1.0"
+          },
+          "dependencies": {
+            "isobject": {
+              "version": "2.1.0",
+              "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
+              "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
+              "requires": {
+                "isarray": "1.0.0"
+              },
+              "dependencies": {
+                "isarray": {
+                  "version": "1.0.0",
+                  "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+                  "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
+                }
+              }
+            }
+          }
+        },
+        "has-values": {
+          "version": "0.1.4",
+          "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
+          "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E="
+        }
+      }
+    },
+    "unzip-response": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-1.0.2.tgz",
+      "integrity": "sha1-uYTwh3/AqJwsdzzB73tbIytbBv4="
+    },
+    "upath": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/upath/-/upath-1.0.5.tgz",
+      "integrity": "sha512-qbKn90aDQ0YEwvXoLqj0oiuUYroLX2lVHZ+b+xwjozFasAOC4GneDq5+OaIG5Zj+jFmbz/uO+f7a9qxjktJQww=="
+    },
+    "upper-case": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz",
+      "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg="
+    },
+    "uri-js": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-3.0.2.tgz",
+      "integrity": "sha1-+QuFhQf4HepNz7s8TD2/orVX+qo=",
+      "requires": {
+        "punycode": "2.1.0"
+      },
+      "dependencies": {
+        "punycode": {
+          "version": "2.1.0",
+          "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz",
+          "integrity": "sha1-X4Y+3Im5bbCQdLrXlHvwkFbKTn0="
+        }
+      }
+    },
+    "urix": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
+      "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI="
+    },
+    "url": {
+      "version": "0.11.0",
+      "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
+      "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
+      "requires": {
+        "punycode": "1.3.2",
+        "querystring": "0.2.0"
+      },
+      "dependencies": {
+        "punycode": {
+          "version": "1.3.2",
+          "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
+          "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0="
+        }
+      }
+    },
+    "url-parse": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.0.tgz",
+      "integrity": "sha512-ERuGxDiQ6Xw/agN4tuoCRbmwRuZP0cJ1lJxJubXr5Q/5cDa78+Dc4wfvtxzhzhkm5VvmW6Mf8EVj9SPGN4l8Lg==",
+      "requires": {
+        "querystringify": "2.0.0",
+        "requires-port": "1.0.0"
+      },
+      "dependencies": {
+        "querystringify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.0.0.tgz",
+          "integrity": "sha512-eTPo5t/4bgaMNZxyjWx6N2a6AuE0mq51KWvpc7nU/MAqixcI6v6KrGUKES0HaomdnolQBBXU/++X6/QQ9KL4tw=="
+        }
+      }
+    },
+    "url-parse-lax": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz",
+      "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=",
+      "requires": {
+        "prepend-http": "1.0.4"
+      }
+    },
+    "url-regex": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/url-regex/-/url-regex-3.2.0.tgz",
+      "integrity": "sha1-260eDJ4p4QXdCx8J9oYvf9tIJyQ=",
+      "requires": {
+        "ip-regex": "1.0.3"
+      }
+    },
+    "url-to-options": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz",
+      "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k="
+    },
+    "use": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/use/-/use-3.1.0.tgz",
+      "integrity": "sha512-6UJEQM/L+mzC3ZJNM56Q4DFGLX/evKGRg15UJHGB9X5j5Z3AFbgZvjUh2yq/UJUY4U5dh7Fal++XbNg1uzpRAw==",
+      "requires": {
+        "kind-of": "6.0.2"
+      }
+    },
+    "util": {
+      "version": "0.10.3",
+      "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
+      "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=",
+      "requires": {
+        "inherits": "2.0.1"
+      },
+      "dependencies": {
+        "inherits": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
+          "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE="
+        }
+      }
+    },
+    "util-deprecate": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+      "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
+    },
+    "util.promisify": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz",
+      "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==",
+      "requires": {
+        "define-properties": "1.1.2",
+        "object.getownpropertydescriptors": "2.0.3"
+      }
+    },
+    "utils-merge": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+      "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="
+    },
+    "uuid": {
+      "version": "3.2.1",
+      "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz",
+      "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA=="
+    },
+    "vali-date": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/vali-date/-/vali-date-1.0.0.tgz",
+      "integrity": "sha1-G5BKWWCfsyjvB4E4Qgk09rhnCaY="
+    },
+    "validate-npm-package-license": {
+      "version": "3.0.3",
+      "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz",
+      "integrity": "sha512-63ZOUnL4SIXj4L0NixR3L1lcjO38crAbgrTpl28t8jjrfuiOBL5Iygm+60qPs/KsZGzPNg6Smnc/oY16QTjF0g==",
+      "requires": {
+        "spdx-correct": "3.0.0",
+        "spdx-expression-parse": "3.0.0"
+      }
+    },
+    "vary": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
+      "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw="
+    },
+    "vendors": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.2.tgz",
+      "integrity": "sha512-w/hry/368nO21AN9QljsaIhb9ZiZtZARoVH5f3CsFbawdLdayCgKRPup7CggujvySMxx0I91NOyxdVENohprLQ=="
+    },
+    "verror": {
+      "version": "1.10.0",
+      "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
+      "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
+      "requires": {
+        "assert-plus": "1.0.0",
+        "core-util-is": "1.0.2",
+        "extsprintf": "1.3.0"
+      },
+      "dependencies": {
+        "assert-plus": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+          "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
+        }
+      }
+    },
+    "vinyl": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz",
+      "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=",
+      "requires": {
+        "clone": "1.0.4",
+        "clone-stats": "0.0.1",
+        "replace-ext": "0.0.1"
+      },
+      "dependencies": {
+        "replace-ext": {
+          "version": "0.0.1",
+          "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz",
+          "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ="
+        }
+      }
+    },
+    "vinyl-assign": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/vinyl-assign/-/vinyl-assign-1.2.1.tgz",
+      "integrity": "sha1-TRmIkbVRWRHXcajNnFSApGoHSkU=",
+      "requires": {
+        "object-assign": "4.1.1",
+        "readable-stream": "2.3.6"
+      }
+    },
+    "vinyl-fs": {
+      "version": "2.4.4",
+      "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-2.4.4.tgz",
+      "integrity": "sha1-vm/zJwy1Xf19MGNkDegfJddTIjk=",
+      "requires": {
+        "duplexify": "3.6.0",
+        "glob-stream": "5.3.5",
+        "graceful-fs": "4.1.11",
+        "gulp-sourcemaps": "1.6.0",
+        "is-valid-glob": "0.3.0",
+        "lazystream": "1.0.0",
+        "lodash.isequal": "4.5.0",
+        "merge-stream": "1.0.1",
+        "mkdirp": "0.5.1",
+        "object-assign": "4.1.1",
+        "readable-stream": "2.3.6",
+        "strip-bom": "2.0.0",
+        "strip-bom-stream": "1.0.0",
+        "through2": "2.0.3",
+        "through2-filter": "2.0.0",
+        "vali-date": "1.0.0",
+        "vinyl": "1.2.0"
+      },
+      "dependencies": {
+        "through2": {
+          "version": "2.0.3",
+          "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz",
+          "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=",
+          "requires": {
+            "readable-stream": "2.3.6",
+            "xtend": "4.0.1"
+          }
+        }
+      }
+    },
+    "vm-browserify": {
+      "version": "0.0.4",
+      "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz",
+      "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=",
+      "requires": {
+        "indexof": "0.0.1"
+      }
+    },
+    "vue-hot-reload-api": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.0.tgz",
+      "integrity": "sha512-2j/t+wIbyVMP5NvctQoSUvLkYKoWAAk2QlQiilrM2a6/ulzFgdcLUJfTvs4XQ/3eZhHiBmmEojbjmM4AzZj8JA=="
+    },
+    "vue-loader": {
+      "version": "13.7.1",
+      "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-13.7.1.tgz",
+      "integrity": "sha512-v6PbKMGl/hWHGPxB2uGHsA66vusrXF66J/h1QiFXtU6z5zVSK8jq5xl95M1p3QNXmuEJKNP3nxoXfbgQNs7hJg==",
+      "requires": {
+        "consolidate": "0.14.5",
+        "hash-sum": "1.0.2",
+        "loader-utils": "1.1.0",
+        "lru-cache": "4.1.3",
+        "postcss": "6.0.22",
+        "postcss-load-config": "1.2.0",
+        "postcss-selector-parser": "2.2.3",
+        "prettier": "1.12.1",
+        "resolve": "1.7.1",
+        "source-map": "0.6.1",
+        "vue-hot-reload-api": "2.3.0",
+        "vue-style-loader": "3.1.2",
+        "vue-template-es2015-compiler": "1.6.0"
+      }
+    },
+    "vue-style-loader": {
+      "version": "3.1.2",
+      "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-3.1.2.tgz",
+      "integrity": "sha512-ICtVdK/p+qXWpdSs2alWtsXt9YnDoYjQe0w5616j9+/EhjoxZkbun34uWgsMFnC1MhrMMwaWiImz3K2jK1Yp2Q==",
+      "requires": {
+        "hash-sum": "1.0.2",
+        "loader-utils": "1.1.0"
+      }
+    },
+    "vue-template-compiler": {
+      "version": "2.5.16",
+      "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.5.16.tgz",
+      "integrity": "sha512-ZbuhCcF/hTYmldoUOVcu2fcbeSAZnfzwDskGduOrnjBiIWHgELAd+R8nAtX80aZkceWDKGQ6N9/0/EUpt+l22A==",
+      "requires": {
+        "de-indent": "1.0.2",
+        "he": "1.1.1"
+      }
+    },
+    "vue-template-es2015-compiler": {
+      "version": "1.6.0",
+      "resolved": "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.6.0.tgz",
+      "integrity": "sha512-x3LV3wdmmERhVCYy3quqA57NJW7F3i6faas++pJQWtknWT+n7k30F4TVdHvCLn48peTJFRvCpxs3UuFPqgeELg=="
+    },
+    "ware": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/ware/-/ware-1.3.0.tgz",
+      "integrity": "sha1-0bFPOdLiy0q4xAmPdW/ksWTkc9Q=",
+      "requires": {
+        "wrap-fn": "0.1.5"
+      }
+    },
+    "watchpack": {
+      "version": "1.6.0",
+      "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz",
+      "integrity": "sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==",
+      "requires": {
+        "chokidar": "2.0.3",
+        "graceful-fs": "4.1.11",
+        "neo-async": "2.5.1"
+      }
+    },
+    "wbuf": {
+      "version": "1.7.3",
+      "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz",
+      "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==",
+      "requires": {
+        "minimalistic-assert": "1.0.1"
+      }
+    },
+    "webpack": {
+      "version": "3.11.0",
+      "resolved": "https://registry.npmjs.org/webpack/-/webpack-3.11.0.tgz",
+      "integrity": "sha512-3kOFejWqj5ISpJk4Qj/V7w98h9Vl52wak3CLiw/cDOfbVTq7FeoZ0SdoHHY9PYlHr50ZS42OfvzE2vB4nncKQg==",
+      "requires": {
+        "acorn": "5.5.3",
+        "acorn-dynamic-import": "2.0.2",
+        "ajv": "6.4.0",
+        "ajv-keywords": "3.2.0",
+        "async": "2.6.0",
+        "enhanced-resolve": "3.4.1",
+        "escope": "3.6.0",
+        "interpret": "1.1.0",
+        "json-loader": "0.5.7",
+        "json5": "0.5.1",
+        "loader-runner": "2.3.0",
+        "loader-utils": "1.1.0",
+        "memory-fs": "0.4.1",
+        "mkdirp": "0.5.1",
+        "node-libs-browser": "2.1.0",
+        "source-map": "0.5.7",
+        "supports-color": "4.5.0",
+        "tapable": "0.2.8",
+        "uglifyjs-webpack-plugin": "0.4.6",
+        "watchpack": "1.6.0",
+        "webpack-sources": "1.1.0",
+        "yargs": "8.0.2"
+      },
+      "dependencies": {
+        "ajv": {
+          "version": "6.4.0",
+          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.4.0.tgz",
+          "integrity": "sha1-06/3jpJ3VJdx2vAWTP9ISCt1T8Y=",
+          "requires": {
+            "fast-deep-equal": "1.1.0",
+            "fast-json-stable-stringify": "2.0.0",
+            "json-schema-traverse": "0.3.1",
+            "uri-js": "3.0.2"
+          }
+        },
+        "has-flag": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz",
+          "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE="
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+        },
+        "supports-color": {
+          "version": "4.5.0",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
+          "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
+          "requires": {
+            "has-flag": "2.0.0"
+          }
+        },
+        "uglifyjs-webpack-plugin": {
+          "version": "0.4.6",
+          "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz",
+          "integrity": "sha1-uVH0q7a9YX5m9j64kUmOORdj4wk=",
+          "requires": {
+            "source-map": "0.5.7",
+            "uglify-js": "2.8.29",
+            "webpack-sources": "1.1.0"
+          }
+        }
+      }
+    },
+    "webpack-chunk-hash": {
+      "version": "0.4.0",
+      "resolved": "https://registry.npmjs.org/webpack-chunk-hash/-/webpack-chunk-hash-0.4.0.tgz",
+      "integrity": "sha1-a0DDBw+8n/DP4P54HHF0r2x8FqQ="
+    },
+    "webpack-dev-middleware": {
+      "version": "1.12.2",
+      "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-1.12.2.tgz",
+      "integrity": "sha512-FCrqPy1yy/sN6U/SaEZcHKRXGlqU0DUaEBL45jkUYoB8foVb6wCnbIJ1HKIx+qUFTW+3JpVcCJCxZ8VATL4e+A==",
+      "requires": {
+        "memory-fs": "0.4.1",
+        "mime": "1.6.0",
+        "path-is-absolute": "1.0.1",
+        "range-parser": "1.2.0",
+        "time-stamp": "2.0.0"
+      },
+      "dependencies": {
+        "mime": {
+          "version": "1.6.0",
+          "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+          "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
+        },
+        "time-stamp": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-2.0.0.tgz",
+          "integrity": "sha1-lcakRTDhW6jW9KPsuMOj+sRto1c="
+        }
+      }
+    },
+    "webpack-dev-server": {
+      "version": "2.11.2",
+      "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-2.11.2.tgz",
+      "integrity": "sha512-zrPoX97bx47vZiAXfDrkw8pe9QjJ+lunQl3dypojyWwWr1M5I2h0VSrMPfTjopHQPRNn+NqfjcMmhoLcUJe2gA==",
+      "requires": {
+        "ansi-html": "0.0.7",
+        "array-includes": "3.0.3",
+        "bonjour": "3.5.0",
+        "chokidar": "2.0.3",
+        "compression": "1.7.2",
+        "connect-history-api-fallback": "1.5.0",
+        "debug": "3.1.0",
+        "del": "3.0.0",
+        "express": "4.16.3",
+        "html-entities": "1.2.1",
+        "http-proxy-middleware": "0.17.4",
+        "import-local": "1.0.0",
+        "internal-ip": "1.2.0",
+        "ip": "1.1.5",
+        "killable": "1.0.0",
+        "loglevel": "1.6.1",
+        "opn": "5.3.0",
+        "portfinder": "1.0.13",
+        "selfsigned": "1.10.3",
+        "serve-index": "1.9.1",
+        "sockjs": "0.3.19",
+        "sockjs-client": "1.1.4",
+        "spdy": "3.4.7",
+        "strip-ansi": "3.0.1",
+        "supports-color": "5.4.0",
+        "webpack-dev-middleware": "1.12.2",
+        "yargs": "6.6.0"
+      },
+      "dependencies": {
+        "camelcase": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
+          "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo="
+        },
+        "debug": {
+          "version": "3.1.0",
+          "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+          "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+          "requires": {
+            "ms": "2.0.0"
+          }
+        },
+        "is-fullwidth-code-point": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
+          "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
+          "requires": {
+            "number-is-nan": "1.0.1"
+          }
+        },
+        "string-width": {
+          "version": "1.0.2",
+          "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
+          "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
+          "requires": {
+            "code-point-at": "1.1.0",
+            "is-fullwidth-code-point": "1.0.0",
+            "strip-ansi": "3.0.1"
+          }
+        },
+        "yargs": {
+          "version": "6.6.0",
+          "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz",
+          "integrity": "sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg=",
+          "requires": {
+            "camelcase": "3.0.0",
+            "cliui": "3.2.0",
+            "decamelize": "1.2.0",
+            "get-caller-file": "1.0.2",
+            "os-locale": "1.4.0",
+            "read-pkg-up": "1.0.1",
+            "require-directory": "2.1.1",
+            "require-main-filename": "1.0.1",
+            "set-blocking": "2.0.0",
+            "string-width": "1.0.2",
+            "which-module": "1.0.0",
+            "y18n": "3.2.1",
+            "yargs-parser": "4.2.1"
+          }
+        },
+        "yargs-parser": {
+          "version": "4.2.1",
+          "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz",
+          "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=",
+          "requires": {
+            "camelcase": "3.0.0"
+          }
+        }
+      }
+    },
+    "webpack-merge": {
+      "version": "4.1.2",
+      "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.1.2.tgz",
+      "integrity": "sha512-/0QYwW/H1N/CdXYA2PNPVbsxO3u2Fpz34vs72xm03SRfg6bMNGfMJIQEpQjKRvkG2JvT6oRJFpDtSrwbX8Jzvw==",
+      "requires": {
+        "lodash": "4.17.10"
+      }
+    },
+    "webpack-notifier": {
+      "version": "1.6.0",
+      "resolved": "https://registry.npmjs.org/webpack-notifier/-/webpack-notifier-1.6.0.tgz",
+      "integrity": "sha1-/6yOVf+MRpdSuMG7sBGhbxCYbgI=",
+      "requires": {
+        "node-notifier": "5.2.1",
+        "object-assign": "4.1.1",
+        "strip-ansi": "3.0.1"
+      }
+    },
+    "webpack-sources": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.1.0.tgz",
+      "integrity": "sha512-aqYp18kPphgoO5c/+NaUvEeACtZjMESmDChuD3NBciVpah3XpMEU9VAAtIaB1BsfJWWTSdv8Vv1m3T0aRk2dUw==",
+      "requires": {
+        "source-list-map": "2.0.0",
+        "source-map": "0.6.1"
+      }
+    },
+    "websocket-driver": {
+      "version": "0.7.0",
+      "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.0.tgz",
+      "integrity": "sha1-DK+dLXVdk67gSdS90NP+LMoqJOs=",
+      "requires": {
+        "http-parser-js": "0.4.12",
+        "websocket-extensions": "0.1.3"
+      }
+    },
+    "websocket-extensions": {
+      "version": "0.1.3",
+      "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.3.tgz",
+      "integrity": "sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg=="
+    },
+    "whet.extend": {
+      "version": "0.9.9",
+      "resolved": "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz",
+      "integrity": "sha1-+HfVv2SMl+WqVC+twW1qJZucEaE="
+    },
+    "which": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz",
+      "integrity": "sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg==",
+      "requires": {
+        "isexe": "2.0.0"
+      }
+    },
+    "which-module": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz",
+      "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8="
+    },
+    "wide-align": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz",
+      "integrity": "sha512-ijDLlyQ7s6x1JgCLur53osjm/UXUYD9+0PbYKrBsYisYXzCxN+HC3mYDNy/dWdmf3AwqwU3CXwDCvsNgGK1S0w==",
+      "requires": {
+        "string-width": "1.0.2"
+      },
+      "dependencies": {
+        "is-fullwidth-code-point": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
+          "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
+          "requires": {
+            "number-is-nan": "1.0.1"
+          }
+        },
+        "string-width": {
+          "version": "1.0.2",
+          "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
+          "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
+          "requires": {
+            "code-point-at": "1.1.0",
+            "is-fullwidth-code-point": "1.0.0",
+            "strip-ansi": "3.0.1"
+          }
+        }
+      }
+    },
+    "window-size": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz",
+      "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0="
+    },
+    "wordwrap": {
+      "version": "0.0.2",
+      "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz",
+      "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8="
+    },
+    "worker-farm": {
+      "version": "1.6.0",
+      "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.6.0.tgz",
+      "integrity": "sha512-6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ==",
+      "requires": {
+        "errno": "0.1.7"
+      }
+    },
+    "wrap-ansi": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz",
+      "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=",
+      "requires": {
+        "string-width": "1.0.2",
+        "strip-ansi": "3.0.1"
+      },
+      "dependencies": {
+        "is-fullwidth-code-point": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
+          "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
+          "requires": {
+            "number-is-nan": "1.0.1"
+          }
+        },
+        "string-width": {
+          "version": "1.0.2",
+          "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
+          "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
+          "requires": {
+            "code-point-at": "1.1.0",
+            "is-fullwidth-code-point": "1.0.0",
+            "strip-ansi": "3.0.1"
+          }
+        }
+      }
+    },
+    "wrap-fn": {
+      "version": "0.1.5",
+      "resolved": "https://registry.npmjs.org/wrap-fn/-/wrap-fn-0.1.5.tgz",
+      "integrity": "sha1-8htuQQFv9KfjFyDbxjoJAWvfmEU=",
+      "requires": {
+        "co": "3.1.0"
+      },
+      "dependencies": {
+        "co": {
+          "version": "3.1.0",
+          "resolved": "https://registry.npmjs.org/co/-/co-3.1.0.tgz",
+          "integrity": "sha1-TqVOpaCJOBUxheFSEMaNkJK8G3g="
+        }
+      }
+    },
+    "wrappy": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+      "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
+    },
+    "write-file-atomic": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz",
+      "integrity": "sha512-xuPeK4OdjWqtfi59ylvVL0Yn35SF3zgcAcv7rBPFHVaEapaDr4GdGgm3j7ckTwH9wHL7fGmgfAnb0+THrHb8tA==",
+      "requires": {
+        "graceful-fs": "4.1.11",
+        "imurmurhash": "0.1.4",
+        "signal-exit": "3.0.2"
+      }
+    },
+    "write-json-file": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/write-json-file/-/write-json-file-2.3.0.tgz",
+      "integrity": "sha1-K2TIozAE1UuGmMdtWFp3zrYdoy8=",
+      "requires": {
+        "detect-indent": "5.0.0",
+        "graceful-fs": "4.1.11",
+        "make-dir": "1.3.0",
+        "pify": "3.0.0",
+        "sort-keys": "2.0.0",
+        "write-file-atomic": "2.3.0"
+      },
+      "dependencies": {
+        "detect-indent": {
+          "version": "5.0.0",
+          "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz",
+          "integrity": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50="
+        },
+        "sort-keys": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz",
+          "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=",
+          "requires": {
+            "is-plain-obj": "1.1.0"
+          }
+        }
+      }
+    },
+    "xtend": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz",
+      "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68="
+    },
+    "y18n": {
+      "version": "3.2.1",
+      "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz",
+      "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE="
+    },
+    "yallist": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
+      "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI="
+    },
+    "yargs": {
+      "version": "8.0.2",
+      "resolved": "https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz",
+      "integrity": "sha1-YpmpBVsc78lp/355wdkY3Osiw2A=",
+      "requires": {
+        "camelcase": "4.1.0",
+        "cliui": "3.2.0",
+        "decamelize": "1.2.0",
+        "get-caller-file": "1.0.2",
+        "os-locale": "2.1.0",
+        "read-pkg-up": "2.0.0",
+        "require-directory": "2.1.1",
+        "require-main-filename": "1.0.1",
+        "set-blocking": "2.0.0",
+        "string-width": "2.1.1",
+        "which-module": "2.0.0",
+        "y18n": "3.2.1",
+        "yargs-parser": "7.0.0"
+      },
+      "dependencies": {
+        "camelcase": {
+          "version": "4.1.0",
+          "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz",
+          "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0="
+        },
+        "load-json-file": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz",
+          "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=",
+          "requires": {
+            "graceful-fs": "4.1.11",
+            "parse-json": "2.2.0",
+            "pify": "2.3.0",
+            "strip-bom": "3.0.0"
+          }
+        },
+        "os-locale": {
+          "version": "2.1.0",
+          "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz",
+          "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==",
+          "requires": {
+            "execa": "0.7.0",
+            "lcid": "1.0.0",
+            "mem": "1.1.0"
+          }
+        },
+        "path-type": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz",
+          "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=",
+          "requires": {
+            "pify": "2.3.0"
+          }
+        },
+        "pify": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+          "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw="
+        },
+        "read-pkg": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz",
+          "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=",
+          "requires": {
+            "load-json-file": "2.0.0",
+            "normalize-package-data": "2.4.0",
+            "path-type": "2.0.0"
+          }
+        },
+        "read-pkg-up": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz",
+          "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=",
+          "requires": {
+            "find-up": "2.1.0",
+            "read-pkg": "2.0.0"
+          }
+        },
+        "strip-bom": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+          "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM="
+        },
+        "which-module": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
+          "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho="
+        },
+        "yargs-parser": {
+          "version": "7.0.0",
+          "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz",
+          "integrity": "sha1-jQrELxbqVd69MyyvTEA4s+P139k=",
+          "requires": {
+            "camelcase": "4.1.0"
+          }
+        }
+      }
+    },
+    "yargs-parser": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz",
+      "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=",
+      "requires": {
+        "camelcase": "3.0.0"
+      },
+      "dependencies": {
+        "camelcase": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
+          "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo="
+        }
+      }
+    },
+    "yauzl": {
+      "version": "2.9.1",
+      "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.9.1.tgz",
+      "integrity": "sha1-qBmB6nCleUYTOIPwKcWCGok1mn8=",
+      "requires": {
+        "buffer-crc32": "0.2.13",
+        "fd-slicer": "1.0.1"
+      }
+    }
+  }
+}
diff --git a/eclipse.org-common/themes/solstice/package.json b/eclipse.org-common/themes/solstice/package.json
index 54f299c..c29bce4 100644
--- a/eclipse.org-common/themes/solstice/package.json
+++ b/eclipse.org-common/themes/solstice/package.json
@@ -1,28 +1,26 @@
 {
-  "name": "solstice",
-  "version": "0.0.1",
-  "description": "Solstice is a responsive theme for eclipse.org.",
-  "main": "Gruntfile.js",
+  "name": "eclipsefdn-eclipse.org-common",
+  "description": "Eclipse Foundation: eclipse.org-common.git",
+  "main": "webpack.min.js",
+  "private": true,
   "author": "Christopher Guindon",
-  "license": "EPL",
+  "license": "EPL-2.0",
+  "version": "0.0.0",
   "bugs": {
     "url": "https://bugs.eclipse.org/bugs/buglist.cgi?component=Website&list_id=8318814&product=Community&resolution=---"
   },
+  "repository": {
+    "type": "git",
+    "url": "git://git.eclipse.org/gitroot/www.eclipse.org/eclipse.org-common.git"
+  },
   "scripts": {
-    "grunt": "node_modules/.bin/grunt",
-    "bower": "node_modules/.bin/bower",
-    "postinstall": "find node_modules/ -name '*.info' -type f -delete"
+    "dev": "NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
+    "watch": "NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
+    "hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
+    "production": "NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
   },
   "readmeFilename": "README.md",
-  "devDependencies": {
-    "bower": "^1.4.1",
-    "grunt": "^0.4.5",
-    "grunt-cli": "^0.1.13",
-    "grunt-contrib-concat": "~0.4.0",
-    "grunt-contrib-copy": "^0.5.0",
-    "grunt-contrib-less": "^1.0.1",
-    "grunt-contrib-uglify": "^0.9.1",
-    "grunt-contrib-watch": "^0.6.1"
+  "dependencies": {
+    "eclipsefdn-solstice-assets": "0.0.23"
   }
 }
-
diff --git a/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.eot b/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.eot
new file mode 100644
index 0000000..b93a495
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.eot
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.svg b/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.svg
new file mode 100644
index 0000000..94fb549
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.svg
@@ -0,0 +1,288 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="glyphicons_halflingsregular" horiz-adv-x="1200" >
+<font-face units-per-em="1200" ascent="960" descent="-240" />
+<missing-glyph horiz-adv-x="500" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="400" />
+<glyph unicode=" " />
+<glyph unicode="*" d="M600 1100q15 0 34 -1.5t30 -3.5l11 -1q10 -2 17.5 -10.5t7.5 -18.5v-224l158 158q7 7 18 8t19 -6l106 -106q7 -8 6 -19t-8 -18l-158 -158h224q10 0 18.5 -7.5t10.5 -17.5q6 -41 6 -75q0 -15 -1.5 -34t-3.5 -30l-1 -11q-2 -10 -10.5 -17.5t-18.5 -7.5h-224l158 -158 q7 -7 8 -18t-6 -19l-106 -106q-8 -7 -19 -6t-18 8l-158 158v-224q0 -10 -7.5 -18.5t-17.5 -10.5q-41 -6 -75 -6q-15 0 -34 1.5t-30 3.5l-11 1q-10 2 -17.5 10.5t-7.5 18.5v224l-158 -158q-7 -7 -18 -8t-19 6l-106 106q-7 8 -6 19t8 18l158 158h-224q-10 0 -18.5 7.5 t-10.5 17.5q-6 41 -6 75q0 15 1.5 34t3.5 30l1 11q2 10 10.5 17.5t18.5 7.5h224l-158 158q-7 7 -8 18t6 19l106 106q8 7 19 6t18 -8l158 -158v224q0 10 7.5 18.5t17.5 10.5q41 6 75 6z" />
+<glyph unicode="+" d="M450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-350h350q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-350v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v350h-350q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5 h350v350q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xa0;" />
+<glyph unicode="&#xa5;" d="M825 1100h250q10 0 12.5 -5t-5.5 -13l-364 -364q-6 -6 -11 -18h268q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-100h275q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-174q0 -11 -7.5 -18.5t-18.5 -7.5h-148q-11 0 -18.5 7.5t-7.5 18.5v174 h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h125v100h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h118q-5 12 -11 18l-364 364q-8 8 -5.5 13t12.5 5h250q25 0 43 -18l164 -164q8 -8 18 -8t18 8l164 164q18 18 43 18z" />
+<glyph unicode="&#x2000;" horiz-adv-x="650" />
+<glyph unicode="&#x2001;" horiz-adv-x="1300" />
+<glyph unicode="&#x2002;" horiz-adv-x="650" />
+<glyph unicode="&#x2003;" horiz-adv-x="1300" />
+<glyph unicode="&#x2004;" horiz-adv-x="433" />
+<glyph unicode="&#x2005;" horiz-adv-x="325" />
+<glyph unicode="&#x2006;" horiz-adv-x="216" />
+<glyph unicode="&#x2007;" horiz-adv-x="216" />
+<glyph unicode="&#x2008;" horiz-adv-x="162" />
+<glyph unicode="&#x2009;" horiz-adv-x="260" />
+<glyph unicode="&#x200a;" horiz-adv-x="72" />
+<glyph unicode="&#x202f;" horiz-adv-x="260" />
+<glyph unicode="&#x205f;" horiz-adv-x="325" />
+<glyph unicode="&#x20ac;" d="M744 1198q242 0 354 -189q60 -104 66 -209h-181q0 45 -17.5 82.5t-43.5 61.5t-58 40.5t-60.5 24t-51.5 7.5q-19 0 -40.5 -5.5t-49.5 -20.5t-53 -38t-49 -62.5t-39 -89.5h379l-100 -100h-300q-6 -50 -6 -100h406l-100 -100h-300q9 -74 33 -132t52.5 -91t61.5 -54.5t59 -29 t47 -7.5q22 0 50.5 7.5t60.5 24.5t58 41t43.5 61t17.5 80h174q-30 -171 -128 -278q-107 -117 -274 -117q-206 0 -324 158q-36 48 -69 133t-45 204h-217l100 100h112q1 47 6 100h-218l100 100h134q20 87 51 153.5t62 103.5q117 141 297 141z" />
+<glyph unicode="&#x20bd;" d="M428 1200h350q67 0 120 -13t86 -31t57 -49.5t35 -56.5t17 -64.5t6.5 -60.5t0.5 -57v-16.5v-16.5q0 -36 -0.5 -57t-6.5 -61t-17 -65t-35 -57t-57 -50.5t-86 -31.5t-120 -13h-178l-2 -100h288q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-138v-175q0 -11 -5.5 -18 t-15.5 -7h-149q-10 0 -17.5 7.5t-7.5 17.5v175h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v100h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v475q0 10 7.5 17.5t17.5 7.5zM600 1000v-300h203q64 0 86.5 33t22.5 119q0 84 -22.5 116t-86.5 32h-203z" />
+<glyph unicode="&#x2212;" d="M250 700h800q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#x231b;" d="M1000 1200v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-50v-100q0 -91 -49.5 -165.5t-130.5 -109.5q81 -35 130.5 -109.5t49.5 -165.5v-150h50q21 0 35.5 -14.5t14.5 -35.5v-150h-800v150q0 21 14.5 35.5t35.5 14.5h50v150q0 91 49.5 165.5t130.5 109.5q-81 35 -130.5 109.5 t-49.5 165.5v100h-50q-21 0 -35.5 14.5t-14.5 35.5v150h800zM400 1000v-100q0 -60 32.5 -109.5t87.5 -73.5q28 -12 44 -37t16 -55t-16 -55t-44 -37q-55 -24 -87.5 -73.5t-32.5 -109.5v-150h400v150q0 60 -32.5 109.5t-87.5 73.5q-28 12 -44 37t-16 55t16 55t44 37 q55 24 87.5 73.5t32.5 109.5v100h-400z" />
+<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
+<glyph unicode="&#x2601;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -206.5q0 -121 -85 -207.5t-205 -86.5h-750q-79 0 -135.5 57t-56.5 137q0 69 42.5 122.5t108.5 67.5q-2 12 -2 37q0 153 108 260.5t260 107.5z" />
+<glyph unicode="&#x26fa;" d="M774 1193.5q16 -9.5 20.5 -27t-5.5 -33.5l-136 -187l467 -746h30q20 0 35 -18.5t15 -39.5v-42h-1200v42q0 21 15 39.5t35 18.5h30l468 746l-135 183q-10 16 -5.5 34t20.5 28t34 5.5t28 -20.5l111 -148l112 150q9 16 27 20.5t34 -5zM600 200h377l-182 112l-195 534v-646z " />
+<glyph unicode="&#x2709;" d="M25 1100h1150q10 0 12.5 -5t-5.5 -13l-564 -567q-8 -8 -18 -8t-18 8l-564 567q-8 8 -5.5 13t12.5 5zM18 882l264 -264q8 -8 8 -18t-8 -18l-264 -264q-8 -8 -13 -5.5t-5 12.5v550q0 10 5 12.5t13 -5.5zM918 618l264 264q8 8 13 5.5t5 -12.5v-550q0 -10 -5 -12.5t-13 5.5 l-264 264q-8 8 -8 18t8 18zM818 482l364 -364q8 -8 5.5 -13t-12.5 -5h-1150q-10 0 -12.5 5t5.5 13l364 364q8 8 18 8t18 -8l164 -164q8 -8 18 -8t18 8l164 164q8 8 18 8t18 -8z" />
+<glyph unicode="&#x270f;" d="M1011 1210q19 0 33 -13l153 -153q13 -14 13 -33t-13 -33l-99 -92l-214 214l95 96q13 14 32 14zM1013 800l-615 -614l-214 214l614 614zM317 96l-333 -112l110 335z" />
+<glyph unicode="&#xe001;" d="M700 650v-550h250q21 0 35.5 -14.5t14.5 -35.5v-50h-800v50q0 21 14.5 35.5t35.5 14.5h250v550l-500 550h1200z" />
+<glyph unicode="&#xe002;" d="M368 1017l645 163q39 15 63 0t24 -49v-831q0 -55 -41.5 -95.5t-111.5 -63.5q-79 -25 -147 -4.5t-86 75t25.5 111.5t122.5 82q72 24 138 8v521l-600 -155v-606q0 -42 -44 -90t-109 -69q-79 -26 -147 -5.5t-86 75.5t25.5 111.5t122.5 82.5q72 24 138 7v639q0 38 14.5 59 t53.5 34z" />
+<glyph unicode="&#xe003;" d="M500 1191q100 0 191 -39t156.5 -104.5t104.5 -156.5t39 -191l-1 -2l1 -5q0 -141 -78 -262l275 -274q23 -26 22.5 -44.5t-22.5 -42.5l-59 -58q-26 -20 -46.5 -20t-39.5 20l-275 274q-119 -77 -261 -77l-5 1l-2 -1q-100 0 -191 39t-156.5 104.5t-104.5 156.5t-39 191 t39 191t104.5 156.5t156.5 104.5t191 39zM500 1022q-88 0 -162 -43t-117 -117t-43 -162t43 -162t117 -117t162 -43t162 43t117 117t43 162t-43 162t-117 117t-162 43z" />
+<glyph unicode="&#xe005;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104z" />
+<glyph unicode="&#xe006;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429z" />
+<glyph unicode="&#xe007;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429zM477 700h-240l197 -142l-74 -226 l193 139l195 -140l-74 229l192 140h-234l-78 211z" />
+<glyph unicode="&#xe008;" d="M600 1200q124 0 212 -88t88 -212v-250q0 -46 -31 -98t-69 -52v-75q0 -10 6 -21.5t15 -17.5l358 -230q9 -5 15 -16.5t6 -21.5v-93q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v93q0 10 6 21.5t15 16.5l358 230q9 6 15 17.5t6 21.5v75q-38 0 -69 52 t-31 98v250q0 124 88 212t212 88z" />
+<glyph unicode="&#xe009;" d="M25 1100h1150q10 0 17.5 -7.5t7.5 -17.5v-1050q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v1050q0 10 7.5 17.5t17.5 7.5zM100 1000v-100h100v100h-100zM875 1000h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5t17.5 -7.5h550 q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM1000 1000v-100h100v100h-100zM100 800v-100h100v100h-100zM1000 800v-100h100v100h-100zM100 600v-100h100v100h-100zM1000 600v-100h100v100h-100zM875 500h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5 t17.5 -7.5h550q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM100 400v-100h100v100h-100zM1000 400v-100h100v100h-100zM100 200v-100h100v100h-100zM1000 200v-100h100v100h-100z" />
+<glyph unicode="&#xe010;" d="M50 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM50 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe011;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM850 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 700h200q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5 t35.5 14.5z" />
+<glyph unicode="&#xe012;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h700q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe013;" d="M465 477l571 571q8 8 18 8t17 -8l177 -177q8 -7 8 -17t-8 -18l-783 -784q-7 -8 -17.5 -8t-17.5 8l-384 384q-8 8 -8 18t8 17l177 177q7 8 17 8t18 -8l171 -171q7 -7 18 -7t18 7z" />
+<glyph unicode="&#xe014;" d="M904 1083l178 -179q8 -8 8 -18.5t-8 -17.5l-267 -268l267 -268q8 -7 8 -17.5t-8 -18.5l-178 -178q-8 -8 -18.5 -8t-17.5 8l-268 267l-268 -267q-7 -8 -17.5 -8t-18.5 8l-178 178q-8 8 -8 18.5t8 17.5l267 268l-267 268q-8 7 -8 17.5t8 18.5l178 178q8 8 18.5 8t17.5 -8 l268 -267l268 268q7 7 17.5 7t18.5 -7z" />
+<glyph unicode="&#xe015;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM425 900h150q10 0 17.5 -7.5t7.5 -17.5v-75h75q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5 t-17.5 -7.5h-75v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-75q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v75q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe016;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM325 800h350q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-350q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe017;" d="M550 1200h100q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM800 975v166q167 -62 272 -209.5t105 -331.5q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5 t-184.5 123t-123 184.5t-45.5 224q0 184 105 331.5t272 209.5v-166q-103 -55 -165 -155t-62 -220q0 -116 57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5q0 120 -62 220t-165 155z" />
+<glyph unicode="&#xe018;" d="M1025 1200h150q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM725 800h150q10 0 17.5 -7.5t7.5 -17.5v-750q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v750 q0 10 7.5 17.5t17.5 7.5zM425 500h150q10 0 17.5 -7.5t7.5 -17.5v-450q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v450q0 10 7.5 17.5t17.5 7.5zM125 300h150q10 0 17.5 -7.5t7.5 -17.5v-250q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5 v250q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe019;" d="M600 1174q33 0 74 -5l38 -152l5 -1q49 -14 94 -39l5 -2l134 80q61 -48 104 -105l-80 -134l3 -5q25 -44 39 -93l1 -6l152 -38q5 -43 5 -73q0 -34 -5 -74l-152 -38l-1 -6q-15 -49 -39 -93l-3 -5l80 -134q-48 -61 -104 -105l-134 81l-5 -3q-44 -25 -94 -39l-5 -2l-38 -151 q-43 -5 -74 -5q-33 0 -74 5l-38 151l-5 2q-49 14 -94 39l-5 3l-134 -81q-60 48 -104 105l80 134l-3 5q-25 45 -38 93l-2 6l-151 38q-6 42 -6 74q0 33 6 73l151 38l2 6q13 48 38 93l3 5l-80 134q47 61 105 105l133 -80l5 2q45 25 94 39l5 1l38 152q43 5 74 5zM600 815 q-89 0 -152 -63t-63 -151.5t63 -151.5t152 -63t152 63t63 151.5t-63 151.5t-152 63z" />
+<glyph unicode="&#xe020;" d="M500 1300h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-75h-1100v75q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5zM500 1200v-100h300v100h-300zM1100 900v-800q0 -41 -29.5 -70.5t-70.5 -29.5h-700q-41 0 -70.5 29.5t-29.5 70.5 v800h900zM300 800v-700h100v700h-100zM500 800v-700h100v700h-100zM700 800v-700h100v700h-100zM900 800v-700h100v700h-100z" />
+<glyph unicode="&#xe021;" d="M18 618l620 608q8 7 18.5 7t17.5 -7l608 -608q8 -8 5.5 -13t-12.5 -5h-175v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v375h-300v-375q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v575h-175q-10 0 -12.5 5t5.5 13z" />
+<glyph unicode="&#xe022;" d="M600 1200v-400q0 -41 29.5 -70.5t70.5 -29.5h300v-650q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5h450zM1000 800h-250q-21 0 -35.5 14.5t-14.5 35.5v250z" />
+<glyph unicode="&#xe023;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h50q10 0 17.5 -7.5t7.5 -17.5v-275h175q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe024;" d="M1300 0h-538l-41 400h-242l-41 -400h-538l431 1200h209l-21 -300h162l-20 300h208zM515 800l-27 -300h224l-27 300h-170z" />
+<glyph unicode="&#xe025;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-450h191q20 0 25.5 -11.5t-7.5 -27.5l-327 -400q-13 -16 -32 -16t-32 16l-327 400q-13 16 -7.5 27.5t25.5 11.5h191v450q0 21 14.5 35.5t35.5 14.5zM1125 400h50q10 0 17.5 -7.5t7.5 -17.5v-350q0 -10 -7.5 -17.5t-17.5 -7.5 h-1050q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h50q10 0 17.5 -7.5t7.5 -17.5v-175h900v175q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe026;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -275q-13 -16 -32 -16t-32 16l-223 275q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z " />
+<glyph unicode="&#xe027;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM632 914l223 -275q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5l223 275q13 16 32 16 t32 -16z" />
+<glyph unicode="&#xe028;" d="M225 1200h750q10 0 19.5 -7t12.5 -17l186 -652q7 -24 7 -49v-425q0 -12 -4 -27t-9 -17q-12 -6 -37 -6h-1100q-12 0 -27 4t-17 8q-6 13 -6 38l1 425q0 25 7 49l185 652q3 10 12.5 17t19.5 7zM878 1000h-556q-10 0 -19 -7t-11 -18l-87 -450q-2 -11 4 -18t16 -7h150 q10 0 19.5 -7t11.5 -17l38 -152q2 -10 11.5 -17t19.5 -7h250q10 0 19.5 7t11.5 17l38 152q2 10 11.5 17t19.5 7h150q10 0 16 7t4 18l-87 450q-2 11 -11 18t-19 7z" />
+<glyph unicode="&#xe029;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM540 820l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
+<glyph unicode="&#xe030;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-362q0 -10 -7.5 -17.5t-17.5 -7.5h-362q-11 0 -13 5.5t5 12.5l133 133q-109 76 -238 76q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5h150q0 -117 -45.5 -224 t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117z" />
+<glyph unicode="&#xe031;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-361q0 -11 -7.5 -18.5t-18.5 -7.5h-361q-11 0 -13 5.5t5 12.5l134 134q-110 75 -239 75q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5h-150q0 117 45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117zM1027 600h150 q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5q-192 0 -348 118l-134 -134q-7 -8 -12.5 -5.5t-5.5 12.5v360q0 11 7.5 18.5t18.5 7.5h360q10 0 12.5 -5.5t-5.5 -12.5l-133 -133q110 -76 240 -76q116 0 214.5 57t155.5 155.5t57 214.5z" />
+<glyph unicode="&#xe032;" d="M125 1200h1050q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-1050q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM1075 1000h-850q-10 0 -17.5 -7.5t-7.5 -17.5v-850q0 -10 7.5 -17.5t17.5 -7.5h850q10 0 17.5 7.5t7.5 17.5v850 q0 10 -7.5 17.5t-17.5 7.5zM325 900h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 900h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 700h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 700h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 500h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 500h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 300h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 300h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe033;" d="M900 800v200q0 83 -58.5 141.5t-141.5 58.5h-300q-82 0 -141 -59t-59 -141v-200h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h900q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-100zM400 800v150q0 21 15 35.5t35 14.5h200 q20 0 35 -14.5t15 -35.5v-150h-300z" />
+<glyph unicode="&#xe034;" d="M125 1100h50q10 0 17.5 -7.5t7.5 -17.5v-1075h-100v1075q0 10 7.5 17.5t17.5 7.5zM1075 1052q4 0 9 -2q16 -6 16 -23v-421q0 -6 -3 -12q-33 -59 -66.5 -99t-65.5 -58t-56.5 -24.5t-52.5 -6.5q-26 0 -57.5 6.5t-52.5 13.5t-60 21q-41 15 -63 22.5t-57.5 15t-65.5 7.5 q-85 0 -160 -57q-7 -5 -15 -5q-6 0 -11 3q-14 7 -14 22v438q22 55 82 98.5t119 46.5q23 2 43 0.5t43 -7t32.5 -8.5t38 -13t32.5 -11q41 -14 63.5 -21t57 -14t63.5 -7q103 0 183 87q7 8 18 8z" />
+<glyph unicode="&#xe035;" d="M600 1175q116 0 227 -49.5t192.5 -131t131 -192.5t49.5 -227v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v300q0 127 -70.5 231.5t-184.5 161.5t-245 57t-245 -57t-184.5 -161.5t-70.5 -231.5v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50 q-10 0 -17.5 7.5t-7.5 17.5v300q0 116 49.5 227t131 192.5t192.5 131t227 49.5zM220 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460q0 8 6 14t14 6zM820 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460 q0 8 6 14t14 6z" />
+<glyph unicode="&#xe036;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM900 668l120 120q7 7 17 7t17 -7l34 -34q7 -7 7 -17t-7 -17l-120 -120l120 -120q7 -7 7 -17 t-7 -17l-34 -34q-7 -7 -17 -7t-17 7l-120 119l-120 -119q-7 -7 -17 -7t-17 7l-34 34q-7 7 -7 17t7 17l119 120l-119 120q-7 7 -7 17t7 17l34 34q7 8 17 8t17 -8z" />
+<glyph unicode="&#xe037;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6 l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238q-6 8 -4.5 18t9.5 17l29 22q7 5 15 5z" />
+<glyph unicode="&#xe038;" d="M967 1004h3q11 -1 17 -10q135 -179 135 -396q0 -105 -34 -206.5t-98 -185.5q-7 -9 -17 -10h-3q-9 0 -16 6l-42 34q-8 6 -9 16t5 18q111 150 111 328q0 90 -29.5 176t-84.5 157q-6 9 -5 19t10 16l42 33q7 5 15 5zM321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5 t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238 q-6 8 -4.5 18.5t9.5 16.5l29 22q7 5 15 5z" />
+<glyph unicode="&#xe039;" d="M500 900h100v-100h-100v-100h-400v-100h-100v600h500v-300zM1200 700h-200v-100h200v-200h-300v300h-200v300h-100v200h600v-500zM100 1100v-300h300v300h-300zM800 1100v-300h300v300h-300zM300 900h-100v100h100v-100zM1000 900h-100v100h100v-100zM300 500h200v-500 h-500v500h200v100h100v-100zM800 300h200v-100h-100v-100h-200v100h-100v100h100v200h-200v100h300v-300zM100 400v-300h300v300h-300zM300 200h-100v100h100v-100zM1200 200h-100v100h100v-100zM700 0h-100v100h100v-100zM1200 0h-300v100h300v-100z" />
+<glyph unicode="&#xe040;" d="M100 200h-100v1000h100v-1000zM300 200h-100v1000h100v-1000zM700 200h-200v1000h200v-1000zM900 200h-100v1000h100v-1000zM1200 200h-200v1000h200v-1000zM400 0h-300v100h300v-100zM600 0h-100v91h100v-91zM800 0h-100v91h100v-91zM1100 0h-200v91h200v-91z" />
+<glyph unicode="&#xe041;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
+<glyph unicode="&#xe042;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM800 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-56 56l424 426l-700 700h150zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5 t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
+<glyph unicode="&#xe043;" d="M300 1200h825q75 0 75 -75v-900q0 -25 -18 -43l-64 -64q-8 -8 -13 -5.5t-5 12.5v950q0 10 -7.5 17.5t-17.5 7.5h-700q-25 0 -43 -18l-64 -64q-8 -8 -5.5 -13t12.5 -5h700q10 0 17.5 -7.5t7.5 -17.5v-950q0 -10 -7.5 -17.5t-17.5 -7.5h-850q-10 0 -17.5 7.5t-7.5 17.5v975 q0 25 18 43l139 139q18 18 43 18z" />
+<glyph unicode="&#xe044;" d="M250 1200h800q21 0 35.5 -14.5t14.5 -35.5v-1150l-450 444l-450 -445v1151q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe045;" d="M822 1200h-444q-11 0 -19 -7.5t-9 -17.5l-78 -301q-7 -24 7 -45l57 -108q6 -9 17.5 -15t21.5 -6h450q10 0 21.5 6t17.5 15l62 108q14 21 7 45l-83 301q-1 10 -9 17.5t-19 7.5zM1175 800h-150q-10 0 -21 -6.5t-15 -15.5l-78 -156q-4 -9 -15 -15.5t-21 -6.5h-550 q-10 0 -21 6.5t-15 15.5l-78 156q-4 9 -15 15.5t-21 6.5h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-650q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h750q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5 t7.5 17.5v650q0 10 -7.5 17.5t-17.5 7.5zM850 200h-500q-10 0 -19.5 -7t-11.5 -17l-38 -152q-2 -10 3.5 -17t15.5 -7h600q10 0 15.5 7t3.5 17l-38 152q-2 10 -11.5 17t-19.5 7z" />
+<glyph unicode="&#xe046;" d="M500 1100h200q56 0 102.5 -20.5t72.5 -50t44 -59t25 -50.5l6 -20h150q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5h150q2 8 6.5 21.5t24 48t45 61t72 48t102.5 21.5zM900 800v-100 h100v100h-100zM600 730q-95 0 -162.5 -67.5t-67.5 -162.5t67.5 -162.5t162.5 -67.5t162.5 67.5t67.5 162.5t-67.5 162.5t-162.5 67.5zM600 603q43 0 73 -30t30 -73t-30 -73t-73 -30t-73 30t-30 73t30 73t73 30z" />
+<glyph unicode="&#xe047;" d="M681 1199l385 -998q20 -50 60 -92q18 -19 36.5 -29.5t27.5 -11.5l10 -2v-66h-417v66q53 0 75 43.5t5 88.5l-82 222h-391q-58 -145 -92 -234q-11 -34 -6.5 -57t25.5 -37t46 -20t55 -6v-66h-365v66q56 24 84 52q12 12 25 30.5t20 31.5l7 13l399 1006h93zM416 521h340 l-162 457z" />
+<glyph unicode="&#xe048;" d="M753 641q5 -1 14.5 -4.5t36 -15.5t50.5 -26.5t53.5 -40t50.5 -54.5t35.5 -70t14.5 -87q0 -67 -27.5 -125.5t-71.5 -97.5t-98.5 -66.5t-108.5 -40.5t-102 -13h-500v89q41 7 70.5 32.5t29.5 65.5v827q0 24 -0.5 34t-3.5 24t-8.5 19.5t-17 13.5t-28 12.5t-42.5 11.5v71 l471 -1q57 0 115.5 -20.5t108 -57t80.5 -94t31 -124.5q0 -51 -15.5 -96.5t-38 -74.5t-45 -50.5t-38.5 -30.5zM400 700h139q78 0 130.5 48.5t52.5 122.5q0 41 -8.5 70.5t-29.5 55.5t-62.5 39.5t-103.5 13.5h-118v-350zM400 200h216q80 0 121 50.5t41 130.5q0 90 -62.5 154.5 t-156.5 64.5h-159v-400z" />
+<glyph unicode="&#xe049;" d="M877 1200l2 -57q-83 -19 -116 -45.5t-40 -66.5l-132 -839q-9 -49 13 -69t96 -26v-97h-500v97q186 16 200 98l173 832q3 17 3 30t-1.5 22.5t-9 17.5t-13.5 12.5t-21.5 10t-26 8.5t-33.5 10q-13 3 -19 5v57h425z" />
+<glyph unicode="&#xe050;" d="M1300 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM175 1000h-75v-800h75l-125 -167l-125 167h75v800h-75l125 167z" />
+<glyph unicode="&#xe051;" d="M1100 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-650q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v650h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM1167 50l-167 -125v75h-800v-75l-167 125l167 125v-75h800v75z" />
+<glyph unicode="&#xe052;" d="M50 1100h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe053;" d="M250 1100h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM250 500h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe054;" d="M500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000 q-21 0 -35.5 14.5t-14.5 35.5zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5zM0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5z" />
+<glyph unicode="&#xe055;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe056;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 1100h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 800h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 500h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 500h800q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 200h800 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe057;" d="M400 0h-100v1100h100v-1100zM550 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM267 550l-167 -125v75h-200v100h200v75zM550 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe058;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM900 0h-100v1100h100v-1100zM50 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM1100 600h200v-100h-200v-75l-167 125l167 125v-75zM50 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe059;" d="M75 1000h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53v650q0 31 22 53t53 22zM1200 300l-300 300l300 300v-600z" />
+<glyph unicode="&#xe060;" d="M44 1100h1112q18 0 31 -13t13 -31v-1012q0 -18 -13 -31t-31 -13h-1112q-18 0 -31 13t-13 31v1012q0 18 13 31t31 13zM100 1000v-737l247 182l298 -131l-74 156l293 318l236 -288v500h-1000zM342 884q56 0 95 -39t39 -94.5t-39 -95t-95 -39.5t-95 39.5t-39 95t39 94.5 t95 39z" />
+<glyph unicode="&#xe062;" d="M648 1169q117 0 216 -60t156.5 -161t57.5 -218q0 -115 -70 -258q-69 -109 -158 -225.5t-143 -179.5l-54 -62q-9 8 -25.5 24.5t-63.5 67.5t-91 103t-98.5 128t-95.5 148q-60 132 -60 249q0 88 34 169.5t91.5 142t137 96.5t166.5 36zM652.5 974q-91.5 0 -156.5 -65 t-65 -157t65 -156.5t156.5 -64.5t156.5 64.5t65 156.5t-65 157t-156.5 65z" />
+<glyph unicode="&#xe063;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 173v854q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57z" />
+<glyph unicode="&#xe064;" d="M554 1295q21 -72 57.5 -143.5t76 -130t83 -118t82.5 -117t70 -116t49.5 -126t18.5 -136.5q0 -71 -25.5 -135t-68.5 -111t-99 -82t-118.5 -54t-125.5 -23q-84 5 -161.5 34t-139.5 78.5t-99 125t-37 164.5q0 69 18 136.5t49.5 126.5t69.5 116.5t81.5 117.5t83.5 119 t76.5 131t58.5 143zM344 710q-23 -33 -43.5 -70.5t-40.5 -102.5t-17 -123q1 -37 14.5 -69.5t30 -52t41 -37t38.5 -24.5t33 -15q21 -7 32 -1t13 22l6 34q2 10 -2.5 22t-13.5 19q-5 4 -14 12t-29.5 40.5t-32.5 73.5q-26 89 6 271q2 11 -6 11q-8 1 -15 -10z" />
+<glyph unicode="&#xe065;" d="M1000 1013l108 115q2 1 5 2t13 2t20.5 -1t25 -9.5t28.5 -21.5q22 -22 27 -43t0 -32l-6 -10l-108 -115zM350 1100h400q50 0 105 -13l-187 -187h-368q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v182l200 200v-332 q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM1009 803l-362 -362l-161 -50l55 170l355 355z" />
+<glyph unicode="&#xe066;" d="M350 1100h361q-164 -146 -216 -200h-195q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-103q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M824 1073l339 -301q8 -7 8 -17.5t-8 -17.5l-340 -306q-7 -6 -12.5 -4t-6.5 11v203q-26 1 -54.5 0t-78.5 -7.5t-92 -17.5t-86 -35t-70 -57q10 59 33 108t51.5 81.5t65 58.5t68.5 40.5t67 24.5t56 13.5t40 4.5v210q1 10 6.5 12.5t13.5 -4.5z" />
+<glyph unicode="&#xe067;" d="M350 1100h350q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-219q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M643 639l395 395q7 7 17.5 7t17.5 -7l101 -101q7 -7 7 -17.5t-7 -17.5l-531 -532q-7 -7 -17.5 -7t-17.5 7l-248 248q-7 7 -7 17.5t7 17.5l101 101q7 7 17.5 7t17.5 -7l111 -111q8 -7 18 -7t18 7z" />
+<glyph unicode="&#xe068;" d="M318 918l264 264q8 8 18 8t18 -8l260 -264q7 -8 4.5 -13t-12.5 -5h-170v-200h200v173q0 10 5 12t13 -5l264 -260q8 -7 8 -17.5t-8 -17.5l-264 -265q-8 -7 -13 -5t-5 12v173h-200v-200h170q10 0 12.5 -5t-4.5 -13l-260 -264q-8 -8 -18 -8t-18 8l-264 264q-8 8 -5.5 13 t12.5 5h175v200h-200v-173q0 -10 -5 -12t-13 5l-264 265q-8 7 -8 17.5t8 17.5l264 260q8 7 13 5t5 -12v-173h200v200h-175q-10 0 -12.5 5t5.5 13z" />
+<glyph unicode="&#xe069;" d="M250 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe070;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5 t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe071;" d="M1200 1050v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-492 480q-15 14 -15 35t15 35l492 480q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25z" />
+<glyph unicode="&#xe072;" d="M243 1074l814 -498q18 -11 18 -26t-18 -26l-814 -498q-18 -11 -30.5 -4t-12.5 28v1000q0 21 12.5 28t30.5 -4z" />
+<glyph unicode="&#xe073;" d="M250 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM650 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800 q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe074;" d="M1100 950v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5z" />
+<glyph unicode="&#xe075;" d="M500 612v438q0 21 10.5 25t25.5 -10l492 -480q15 -14 15 -35t-15 -35l-492 -480q-15 -14 -25.5 -10t-10.5 25v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10z" />
+<glyph unicode="&#xe076;" d="M1048 1102l100 1q20 0 35 -14.5t15 -35.5l5 -1000q0 -21 -14.5 -35.5t-35.5 -14.5l-100 -1q-21 0 -35.5 14.5t-14.5 35.5l-2 437l-463 -454q-14 -15 -24.5 -10.5t-10.5 25.5l-2 437l-462 -455q-15 -14 -25.5 -9.5t-10.5 24.5l-5 1000q0 21 10.5 25.5t25.5 -10.5l466 -450 l-2 438q0 20 10.5 24.5t25.5 -9.5l466 -451l-2 438q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe077;" d="M850 1100h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10l464 -453v438q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe078;" d="M686 1081l501 -540q15 -15 10.5 -26t-26.5 -11h-1042q-22 0 -26.5 11t10.5 26l501 540q15 15 36 15t36 -15zM150 400h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe079;" d="M885 900l-352 -353l352 -353l-197 -198l-552 552l552 550z" />
+<glyph unicode="&#xe080;" d="M1064 547l-551 -551l-198 198l353 353l-353 353l198 198z" />
+<glyph unicode="&#xe081;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM650 900h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-150 q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5h150v-150q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v150h150q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-150v150q0 21 -14.5 35.5t-35.5 14.5z" />
+<glyph unicode="&#xe082;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM850 700h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5 t35.5 -14.5h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5z" />
+<glyph unicode="&#xe083;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM741.5 913q-12.5 0 -21.5 -9l-120 -120l-120 120q-9 9 -21.5 9 t-21.5 -9l-141 -141q-9 -9 -9 -21.5t9 -21.5l120 -120l-120 -120q-9 -9 -9 -21.5t9 -21.5l141 -141q9 -9 21.5 -9t21.5 9l120 120l120 -120q9 -9 21.5 -9t21.5 9l141 141q9 9 9 21.5t-9 21.5l-120 120l120 120q9 9 9 21.5t-9 21.5l-141 141q-9 9 -21.5 9z" />
+<glyph unicode="&#xe084;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM546 623l-84 85q-7 7 -17.5 7t-18.5 -7l-139 -139q-7 -8 -7 -18t7 -18 l242 -241q7 -8 17.5 -8t17.5 8l375 375q7 7 7 17.5t-7 18.5l-139 139q-7 7 -17.5 7t-17.5 -7z" />
+<glyph unicode="&#xe085;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM588 941q-29 0 -59 -5.5t-63 -20.5t-58 -38.5t-41.5 -63t-16.5 -89.5 q0 -25 20 -25h131q30 -5 35 11q6 20 20.5 28t45.5 8q20 0 31.5 -10.5t11.5 -28.5q0 -23 -7 -34t-26 -18q-1 0 -13.5 -4t-19.5 -7.5t-20 -10.5t-22 -17t-18.5 -24t-15.5 -35t-8 -46q-1 -8 5.5 -16.5t20.5 -8.5h173q7 0 22 8t35 28t37.5 48t29.5 74t12 100q0 47 -17 83 t-42.5 57t-59.5 34.5t-64 18t-59 4.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe086;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM675 1000h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5 t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5zM675 700h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h75v-200h-75q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h350q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5 t-17.5 7.5h-75v275q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe087;" d="M525 1200h150q10 0 17.5 -7.5t7.5 -17.5v-194q103 -27 178.5 -102.5t102.5 -178.5h194q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-194q-27 -103 -102.5 -178.5t-178.5 -102.5v-194q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v194 q-103 27 -178.5 102.5t-102.5 178.5h-194q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h194q27 103 102.5 178.5t178.5 102.5v194q0 10 7.5 17.5t17.5 7.5zM700 893v-168q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v168q-68 -23 -119 -74 t-74 -119h168q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-168q23 -68 74 -119t119 -74v168q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-168q68 23 119 74t74 119h-168q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h168 q-23 68 -74 119t-119 74z" />
+<glyph unicode="&#xe088;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM759 823l64 -64q7 -7 7 -17.5t-7 -17.5l-124 -124l124 -124q7 -7 7 -17.5t-7 -17.5l-64 -64q-7 -7 -17.5 -7t-17.5 7l-124 124l-124 -124q-7 -7 -17.5 -7t-17.5 7l-64 64 q-7 7 -7 17.5t7 17.5l124 124l-124 124q-7 7 -7 17.5t7 17.5l64 64q7 7 17.5 7t17.5 -7l124 -124l124 124q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe089;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM782 788l106 -106q7 -7 7 -17.5t-7 -17.5l-320 -321q-8 -7 -18 -7t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l197 197q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe090;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5q0 -120 65 -225 l587 587q-105 65 -225 65zM965 819l-584 -584q104 -62 219 -62q116 0 214.5 57t155.5 155.5t57 214.5q0 115 -62 219z" />
+<glyph unicode="&#xe091;" d="M39 582l522 427q16 13 27.5 8t11.5 -26v-291h550q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-550v-291q0 -21 -11.5 -26t-27.5 8l-522 427q-16 13 -16 32t16 32z" />
+<glyph unicode="&#xe092;" d="M639 1009l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291h-550q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h550v291q0 21 11.5 26t27.5 -8z" />
+<glyph unicode="&#xe093;" d="M682 1161l427 -522q13 -16 8 -27.5t-26 -11.5h-291v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v550h-291q-21 0 -26 11.5t8 27.5l427 522q13 16 32 16t32 -16z" />
+<glyph unicode="&#xe094;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-550h291q21 0 26 -11.5t-8 -27.5l-427 -522q-13 -16 -32 -16t-32 16l-427 522q-13 16 -8 27.5t26 11.5h291v550q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe095;" d="M639 1109l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291q-94 -2 -182 -20t-170.5 -52t-147 -92.5t-100.5 -135.5q5 105 27 193.5t67.5 167t113 135t167 91.5t225.5 42v262q0 21 11.5 26t27.5 -8z" />
+<glyph unicode="&#xe096;" d="M850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5zM350 0h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249 q8 7 18 7t18 -7l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5z" />
+<glyph unicode="&#xe097;" d="M1014 1120l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249q8 7 18 7t18 -7zM250 600h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5z" />
+<glyph unicode="&#xe101;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM704 900h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5 t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe102;" d="M260 1200q9 0 19 -2t15 -4l5 -2q22 -10 44 -23l196 -118q21 -13 36 -24q29 -21 37 -12q11 13 49 35l196 118q22 13 45 23q17 7 38 7q23 0 47 -16.5t37 -33.5l13 -16q14 -21 18 -45l25 -123l8 -44q1 -9 8.5 -14.5t17.5 -5.5h61q10 0 17.5 -7.5t7.5 -17.5v-50 q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 -7.5t-7.5 -17.5v-175h-400v300h-200v-300h-400v175q0 10 -7.5 17.5t-17.5 7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5h61q11 0 18 3t7 8q0 4 9 52l25 128q5 25 19 45q2 3 5 7t13.5 15t21.5 19.5t26.5 15.5 t29.5 7zM915 1079l-166 -162q-7 -7 -5 -12t12 -5h219q10 0 15 7t2 17l-51 149q-3 10 -11 12t-15 -6zM463 917l-177 157q-8 7 -16 5t-11 -12l-51 -143q-3 -10 2 -17t15 -7h231q11 0 12.5 5t-5.5 12zM500 0h-375q-10 0 -17.5 7.5t-7.5 17.5v375h400v-400zM1100 400v-375 q0 -10 -7.5 -17.5t-17.5 -7.5h-375v400h400z" />
+<glyph unicode="&#xe103;" d="M1165 1190q8 3 21 -6.5t13 -17.5q-2 -178 -24.5 -323.5t-55.5 -245.5t-87 -174.5t-102.5 -118.5t-118 -68.5t-118.5 -33t-120 -4.5t-105 9.5t-90 16.5q-61 12 -78 11q-4 1 -12.5 0t-34 -14.5t-52.5 -40.5l-153 -153q-26 -24 -37 -14.5t-11 43.5q0 64 42 102q8 8 50.5 45 t66.5 58q19 17 35 47t13 61q-9 55 -10 102.5t7 111t37 130t78 129.5q39 51 80 88t89.5 63.5t94.5 45t113.5 36t129 31t157.5 37t182 47.5zM1116 1098q-8 9 -22.5 -3t-45.5 -50q-38 -47 -119 -103.5t-142 -89.5l-62 -33q-56 -30 -102 -57t-104 -68t-102.5 -80.5t-85.5 -91 t-64 -104.5q-24 -56 -31 -86t2 -32t31.5 17.5t55.5 59.5q25 30 94 75.5t125.5 77.5t147.5 81q70 37 118.5 69t102 79.5t99 111t86.5 148.5q22 50 24 60t-6 19z" />
+<glyph unicode="&#xe104;" d="M653 1231q-39 -67 -54.5 -131t-10.5 -114.5t24.5 -96.5t47.5 -80t63.5 -62.5t68.5 -46.5t65 -30q-4 7 -17.5 35t-18.5 39.5t-17 39.5t-17 43t-13 42t-9.5 44.5t-2 42t4 43t13.5 39t23 38.5q96 -42 165 -107.5t105 -138t52 -156t13 -159t-19 -149.5q-13 -55 -44 -106.5 t-68 -87t-78.5 -64.5t-72.5 -45t-53 -22q-72 -22 -127 -11q-31 6 -13 19q6 3 17 7q13 5 32.5 21t41 44t38.5 63.5t21.5 81.5t-6.5 94.5t-50 107t-104 115.5q10 -104 -0.5 -189t-37 -140.5t-65 -93t-84 -52t-93.5 -11t-95 24.5q-80 36 -131.5 114t-53.5 171q-2 23 0 49.5 t4.5 52.5t13.5 56t27.5 60t46 64.5t69.5 68.5q-8 -53 -5 -102.5t17.5 -90t34 -68.5t44.5 -39t49 -2q31 13 38.5 36t-4.5 55t-29 64.5t-36 75t-26 75.5q-15 85 2 161.5t53.5 128.5t85.5 92.5t93.5 61t81.5 25.5z" />
+<glyph unicode="&#xe105;" d="M600 1094q82 0 160.5 -22.5t140 -59t116.5 -82.5t94.5 -95t68 -95t42.5 -82.5t14 -57.5t-14 -57.5t-43 -82.5t-68.5 -95t-94.5 -95t-116.5 -82.5t-140 -59t-159.5 -22.5t-159.5 22.5t-140 59t-116.5 82.5t-94.5 95t-68.5 95t-43 82.5t-14 57.5t14 57.5t42.5 82.5t68 95 t94.5 95t116.5 82.5t140 59t160.5 22.5zM888 829q-15 15 -18 12t5 -22q25 -57 25 -119q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 59 23 114q8 19 4.5 22t-17.5 -12q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q22 -36 47 -71t70 -82t92.5 -81t113 -58.5t133.5 -24.5 t133.5 24t113 58.5t92.5 81.5t70 81.5t47 70.5q11 18 9 42.5t-14 41.5q-90 117 -163 189zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l35 34q14 15 12.5 33.5t-16.5 33.5q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
+<glyph unicode="&#xe106;" d="M592 0h-148l31 120q-91 20 -175.5 68.5t-143.5 106.5t-103.5 119t-66.5 110t-22 76q0 21 14 57.5t42.5 82.5t68 95t94.5 95t116.5 82.5t140 59t160.5 22.5q61 0 126 -15l32 121h148zM944 770l47 181q108 -85 176.5 -192t68.5 -159q0 -26 -19.5 -71t-59.5 -102t-93 -112 t-129 -104.5t-158 -75.5l46 173q77 49 136 117t97 131q11 18 9 42.5t-14 41.5q-54 70 -107 130zM310 824q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q18 -30 39 -60t57 -70.5t74 -73t90 -61t105 -41.5l41 154q-107 18 -178.5 101.5t-71.5 193.5q0 59 23 114q8 19 4.5 22 t-17.5 -12zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l12 11l22 86l-3 4q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
+<glyph unicode="&#xe107;" d="M-90 100l642 1066q20 31 48 28.5t48 -35.5l642 -1056q21 -32 7.5 -67.5t-50.5 -35.5h-1294q-37 0 -50.5 34t7.5 66zM155 200h345v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h345l-445 723zM496 700h208q20 0 32 -14.5t8 -34.5l-58 -252 q-4 -20 -21.5 -34.5t-37.5 -14.5h-54q-20 0 -37.5 14.5t-21.5 34.5l-58 252q-4 20 8 34.5t32 14.5z" />
+<glyph unicode="&#xe108;" d="M650 1200q62 0 106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -93 100 -113v-64q0 -21 -13 -29t-32 1l-205 128l-205 -128q-19 -9 -32 -1t-13 29v64q0 20 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5v41 q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44z" />
+<glyph unicode="&#xe109;" d="M850 1200h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-150h-1100v150q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-50h500v50q0 21 14.5 35.5t35.5 14.5zM1100 800v-750q0 -21 -14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v750h1100zM100 600v-100h100v100h-100zM300 600v-100h100v100h-100zM500 600v-100h100v100h-100zM700 600v-100h100v100h-100zM900 600v-100h100v100h-100zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400 v-100h100v100h-100zM700 400v-100h100v100h-100zM900 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100zM500 200v-100h100v100h-100zM700 200v-100h100v100h-100zM900 200v-100h100v100h-100z" />
+<glyph unicode="&#xe110;" d="M1135 1165l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-159l-600 -600h-291q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h209l600 600h241v150q0 21 10.5 25t24.5 -10zM522 819l-141 -141l-122 122h-209q-21 0 -35.5 14.5 t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h291zM1135 565l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-241l-181 181l141 141l122 -122h159v150q0 21 10.5 25t24.5 -10z" />
+<glyph unicode="&#xe111;" d="M100 1100h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5z" />
+<glyph unicode="&#xe112;" d="M150 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM850 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM1100 800v-300q0 -41 -3 -77.5t-15 -89.5t-32 -96t-58 -89t-89 -77t-129 -51t-174 -20t-174 20 t-129 51t-89 77t-58 89t-32 96t-15 89.5t-3 77.5v300h300v-250v-27v-42.5t1.5 -41t5 -38t10 -35t16.5 -30t25.5 -24.5t35 -19t46.5 -12t60 -4t60 4.5t46.5 12.5t35 19.5t25 25.5t17 30.5t10 35t5 38t2 40.5t-0.5 42v25v250h300z" />
+<glyph unicode="&#xe113;" d="M1100 411l-198 -199l-353 353l-353 -353l-197 199l551 551z" />
+<glyph unicode="&#xe114;" d="M1101 789l-550 -551l-551 551l198 199l353 -353l353 353z" />
+<glyph unicode="&#xe115;" d="M404 1000h746q21 0 35.5 -14.5t14.5 -35.5v-551h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v401h-381zM135 984l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-400h385l215 -200h-750q-21 0 -35.5 14.5 t-14.5 35.5v550h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe116;" d="M56 1200h94q17 0 31 -11t18 -27l38 -162h896q24 0 39 -18.5t10 -42.5l-100 -475q-5 -21 -27 -42.5t-55 -21.5h-633l48 -200h535q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-50q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-300v-50 q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-31q-18 0 -32.5 10t-20.5 19l-5 10l-201 961h-54q-20 0 -35 14.5t-15 35.5t15 35.5t35 14.5z" />
+<glyph unicode="&#xe117;" d="M1200 1000v-100h-1200v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500zM0 800h1200v-800h-1200v800z" />
+<glyph unicode="&#xe118;" d="M200 800l-200 -400v600h200q0 41 29.5 70.5t70.5 29.5h300q42 0 71 -29.5t29 -70.5h500v-200h-1000zM1500 700l-300 -700h-1200l300 700h1200z" />
+<glyph unicode="&#xe119;" d="M635 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-601h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v601h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe120;" d="M936 864l249 -229q14 -15 14 -35.5t-14 -35.5l-249 -229q-15 -15 -25.5 -10.5t-10.5 24.5v151h-600v-151q0 -20 -10.5 -24.5t-25.5 10.5l-249 229q-14 15 -14 35.5t14 35.5l249 229q15 15 25.5 10.5t10.5 -25.5v-149h600v149q0 21 10.5 25.5t25.5 -10.5z" />
+<glyph unicode="&#xe121;" d="M1169 400l-172 732q-5 23 -23 45.5t-38 22.5h-672q-20 0 -38 -20t-23 -41l-172 -739h1138zM1100 300h-1000q-41 0 -70.5 -29.5t-29.5 -70.5v-100q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v100q0 41 -29.5 70.5t-70.5 29.5zM800 100v100h100v-100h-100 zM1000 100v100h100v-100h-100z" />
+<glyph unicode="&#xe122;" d="M1150 1100q21 0 35.5 -14.5t14.5 -35.5v-850q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v850q0 21 14.5 35.5t35.5 14.5zM1000 200l-675 200h-38l47 -276q3 -16 -5.5 -20t-29.5 -4h-7h-84q-20 0 -34.5 14t-18.5 35q-55 337 -55 351v250v6q0 16 1 23.5t6.5 14 t17.5 6.5h200l675 250v-850zM0 750v-250q-4 0 -11 0.5t-24 6t-30 15t-24 30t-11 48.5v50q0 26 10.5 46t25 30t29 16t25.5 7z" />
+<glyph unicode="&#xe123;" d="M553 1200h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q19 0 33 -14.5t14 -35t-13 -40.5t-31 -27q-8 -4 -23 -9.5t-65 -19.5t-103 -25t-132.5 -20t-158.5 -9q-57 0 -115 5t-104 12t-88.5 15.5t-73.5 17.5t-54.5 16t-35.5 12l-11 4 q-18 8 -31 28t-13 40.5t14 35t33 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3.5 32t28.5 13zM498 110q50 -6 102 -6q53 0 102 6q-12 -49 -39.5 -79.5t-62.5 -30.5t-63 30.5t-39 79.5z" />
+<glyph unicode="&#xe124;" d="M800 946l224 78l-78 -224l234 -45l-180 -155l180 -155l-234 -45l78 -224l-224 78l-45 -234l-155 180l-155 -180l-45 234l-224 -78l78 224l-234 45l180 155l-180 155l234 45l-78 224l224 -78l45 234l155 -180l155 180z" />
+<glyph unicode="&#xe125;" d="M650 1200h50q40 0 70 -40.5t30 -84.5v-150l-28 -125h328q40 0 70 -40.5t30 -84.5v-100q0 -45 -29 -74l-238 -344q-16 -24 -38 -40.5t-45 -16.5h-250q-7 0 -42 25t-66 50l-31 25h-61q-45 0 -72.5 18t-27.5 57v400q0 36 20 63l145 196l96 198q13 28 37.5 48t51.5 20z M650 1100l-100 -212l-150 -213v-375h100l136 -100h214l250 375v125h-450l50 225v175h-50zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe126;" d="M600 1100h250q23 0 45 -16.5t38 -40.5l238 -344q29 -29 29 -74v-100q0 -44 -30 -84.5t-70 -40.5h-328q28 -118 28 -125v-150q0 -44 -30 -84.5t-70 -40.5h-50q-27 0 -51.5 20t-37.5 48l-96 198l-145 196q-20 27 -20 63v400q0 39 27.5 57t72.5 18h61q124 100 139 100z M50 1000h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM636 1000l-136 -100h-100v-375l150 -213l100 -212h50v175l-50 225h450v125l-250 375h-214z" />
+<glyph unicode="&#xe127;" d="M356 873l363 230q31 16 53 -6l110 -112q13 -13 13.5 -32t-11.5 -34l-84 -121h302q84 0 138 -38t54 -110t-55 -111t-139 -39h-106l-131 -339q-6 -21 -19.5 -41t-28.5 -20h-342q-7 0 -90 81t-83 94v525q0 17 14 35.5t28 28.5zM400 792v-503l100 -89h293l131 339 q6 21 19.5 41t28.5 20h203q21 0 30.5 25t0.5 50t-31 25h-456h-7h-6h-5.5t-6 0.5t-5 1.5t-5 2t-4 2.5t-4 4t-2.5 4.5q-12 25 5 47l146 183l-86 83zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500 q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe128;" d="M475 1103l366 -230q2 -1 6 -3.5t14 -10.5t18 -16.5t14.5 -20t6.5 -22.5v-525q0 -13 -86 -94t-93 -81h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-85 0 -139.5 39t-54.5 111t54 110t138 38h302l-85 121q-11 15 -10.5 34t13.5 32l110 112q22 22 53 6zM370 945l146 -183 q17 -22 5 -47q-2 -2 -3.5 -4.5t-4 -4t-4 -2.5t-5 -2t-5 -1.5t-6 -0.5h-6h-6.5h-6h-475v-100h221q15 0 29 -20t20 -41l130 -339h294l106 89v503l-342 236zM1050 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5 v500q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe129;" d="M550 1294q72 0 111 -55t39 -139v-106l339 -131q21 -6 41 -19.5t20 -28.5v-342q0 -7 -81 -90t-94 -83h-525q-17 0 -35.5 14t-28.5 28l-9 14l-230 363q-16 31 6 53l112 110q13 13 32 13.5t34 -11.5l121 -84v302q0 84 38 138t110 54zM600 972v203q0 21 -25 30.5t-50 0.5 t-25 -31v-456v-7v-6v-5.5t-0.5 -6t-1.5 -5t-2 -5t-2.5 -4t-4 -4t-4.5 -2.5q-25 -12 -47 5l-183 146l-83 -86l236 -339h503l89 100v293l-339 131q-21 6 -41 19.5t-20 28.5zM450 200h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe130;" d="M350 1100h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5zM600 306v-106q0 -84 -39 -139t-111 -55t-110 54t-38 138v302l-121 -84q-15 -12 -34 -11.5t-32 13.5l-112 110 q-22 22 -6 53l230 363q1 2 3.5 6t10.5 13.5t16.5 17t20 13.5t22.5 6h525q13 0 94 -83t81 -90v-342q0 -15 -20 -28.5t-41 -19.5zM308 900l-236 -339l83 -86l183 146q22 17 47 5q2 -1 4.5 -2.5t4 -4t2.5 -4t2 -5t1.5 -5t0.5 -6v-5.5v-6v-7v-456q0 -22 25 -31t50 0.5t25 30.5 v203q0 15 20 28.5t41 19.5l339 131v293l-89 100h-503z" />
+<glyph unicode="&#xe131;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM914 632l-275 223q-16 13 -27.5 8t-11.5 -26v-137h-275 q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h275v-137q0 -21 11.5 -26t27.5 8l275 223q16 13 16 32t-16 32z" />
+<glyph unicode="&#xe132;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM561 855l-275 -223q-16 -13 -16 -32t16 -32l275 -223q16 -13 27.5 -8 t11.5 26v137h275q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5h-275v137q0 21 -11.5 26t-27.5 -8z" />
+<glyph unicode="&#xe133;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM855 639l-223 275q-13 16 -32 16t-32 -16l-223 -275q-13 -16 -8 -27.5 t26 -11.5h137v-275q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v275h137q21 0 26 11.5t-8 27.5z" />
+<glyph unicode="&#xe134;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM675 900h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-275h-137q-21 0 -26 -11.5 t8 -27.5l223 -275q13 -16 32 -16t32 16l223 275q13 16 8 27.5t-26 11.5h-137v275q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe135;" d="M600 1176q116 0 222.5 -46t184 -123.5t123.5 -184t46 -222.5t-46 -222.5t-123.5 -184t-184 -123.5t-222.5 -46t-222.5 46t-184 123.5t-123.5 184t-46 222.5t46 222.5t123.5 184t184 123.5t222.5 46zM627 1101q-15 -12 -36.5 -20.5t-35.5 -12t-43 -8t-39 -6.5 q-15 -3 -45.5 0t-45.5 -2q-20 -7 -51.5 -26.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79q-9 -34 5 -93t8 -87q0 -9 17 -44.5t16 -59.5q12 0 23 -5t23.5 -15t19.5 -14q16 -8 33 -15t40.5 -15t34.5 -12q21 -9 52.5 -32t60 -38t57.5 -11 q7 -15 -3 -34t-22.5 -40t-9.5 -38q13 -21 23 -34.5t27.5 -27.5t36.5 -18q0 -7 -3.5 -16t-3.5 -14t5 -17q104 -2 221 112q30 29 46.5 47t34.5 49t21 63q-13 8 -37 8.5t-36 7.5q-15 7 -49.5 15t-51.5 19q-18 0 -41 -0.5t-43 -1.5t-42 -6.5t-38 -16.5q-51 -35 -66 -12 q-4 1 -3.5 25.5t0.5 25.5q-6 13 -26.5 17.5t-24.5 6.5q1 15 -0.5 30.5t-7 28t-18.5 11.5t-31 -21q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q7 -12 18 -24t21.5 -20.5t20 -15t15.5 -10.5l5 -3q2 12 7.5 30.5t8 34.5t-0.5 32q-3 18 3.5 29 t18 22.5t15.5 24.5q6 14 10.5 35t8 31t15.5 22.5t34 22.5q-6 18 10 36q8 0 24 -1.5t24.5 -1.5t20 4.5t20.5 15.5q-10 23 -31 42.5t-37.5 29.5t-49 27t-43.5 23q0 1 2 8t3 11.5t1.5 10.5t-1 9.5t-4.5 4.5q31 -13 58.5 -14.5t38.5 2.5l12 5q5 28 -9.5 46t-36.5 24t-50 15 t-41 20q-18 -4 -37 0zM613 994q0 -17 8 -42t17 -45t9 -23q-8 1 -39.5 5.5t-52.5 10t-37 16.5q3 11 16 29.5t16 25.5q10 -10 19 -10t14 6t13.5 14.5t16.5 12.5z" />
+<glyph unicode="&#xe136;" d="M756 1157q164 92 306 -9l-259 -138l145 -232l251 126q6 -89 -34 -156.5t-117 -110.5q-60 -34 -127 -39.5t-126 16.5l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5t15 37.5l600 599q-34 101 5.5 201.5t135.5 154.5z" />
+<glyph unicode="&#xe137;" horiz-adv-x="1220" d="M100 1196h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 1096h-200v-100h200v100zM100 796h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 696h-500v-100h500v100zM100 396h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 296h-300v-100h300v100z " />
+<glyph unicode="&#xe138;" d="M150 1200h900q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM700 500v-300l-200 -200v500l-350 500h900z" />
+<glyph unicode="&#xe139;" d="M500 1200h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5zM500 1100v-100h200v100h-200zM1200 400v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v200h1200z" />
+<glyph unicode="&#xe140;" d="M50 1200h300q21 0 25 -10.5t-10 -24.5l-94 -94l199 -199q7 -8 7 -18t-7 -18l-106 -106q-8 -7 -18 -7t-18 7l-199 199l-94 -94q-14 -14 -24.5 -10t-10.5 25v300q0 21 14.5 35.5t35.5 14.5zM850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-199 -199q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l199 199l-94 94q-14 14 -10 24.5t25 10.5zM364 470l106 -106q7 -8 7 -18t-7 -18l-199 -199l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l199 199 q8 7 18 7t18 -7zM1071 271l94 94q14 14 24.5 10t10.5 -25v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -25 10.5t10 24.5l94 94l-199 199q-7 8 -7 18t7 18l106 106q8 7 18 7t18 -7z" />
+<glyph unicode="&#xe141;" d="M596 1192q121 0 231.5 -47.5t190 -127t127 -190t47.5 -231.5t-47.5 -231.5t-127 -190.5t-190 -127t-231.5 -47t-231.5 47t-190.5 127t-127 190.5t-47 231.5t47 231.5t127 190t190.5 127t231.5 47.5zM596 1010q-112 0 -207.5 -55.5t-151 -151t-55.5 -207.5t55.5 -207.5 t151 -151t207.5 -55.5t207.5 55.5t151 151t55.5 207.5t-55.5 207.5t-151 151t-207.5 55.5zM454.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38.5 -16.5t-38.5 16.5t-16 39t16 38.5t38.5 16zM754.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38 -16.5q-14 0 -29 10l-55 -145 q17 -23 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 23 16 39t38.5 16zM345.5 709q22.5 0 38.5 -16t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16zM854.5 709q22.5 0 38.5 -16 t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16z" />
+<glyph unicode="&#xe142;" d="M546 173l469 470q91 91 99 192q7 98 -52 175.5t-154 94.5q-22 4 -47 4q-34 0 -66.5 -10t-56.5 -23t-55.5 -38t-48 -41.5t-48.5 -47.5q-376 -375 -391 -390q-30 -27 -45 -41.5t-37.5 -41t-32 -46.5t-16 -47.5t-1.5 -56.5q9 -62 53.5 -95t99.5 -33q74 0 125 51l548 548 q36 36 20 75q-7 16 -21.5 26t-32.5 10q-26 0 -50 -23q-13 -12 -39 -38l-341 -338q-15 -15 -35.5 -15.5t-34.5 13.5t-14 34.5t14 34.5q327 333 361 367q35 35 67.5 51.5t78.5 16.5q14 0 29 -1q44 -8 74.5 -35.5t43.5 -68.5q14 -47 2 -96.5t-47 -84.5q-12 -11 -32 -32 t-79.5 -81t-114.5 -115t-124.5 -123.5t-123 -119.5t-96.5 -89t-57 -45q-56 -27 -120 -27q-70 0 -129 32t-93 89q-48 78 -35 173t81 163l511 511q71 72 111 96q91 55 198 55q80 0 152 -33q78 -36 129.5 -103t66.5 -154q17 -93 -11 -183.5t-94 -156.5l-482 -476 q-15 -15 -36 -16t-37 14t-17.5 34t14.5 35z" />
+<glyph unicode="&#xe143;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104zM896 972q-33 0 -64.5 -19t-56.5 -46t-47.5 -53.5t-43.5 -45.5t-37.5 -19t-36 19t-40 45.5t-43 53.5t-54 46t-65.5 19q-67 0 -122.5 -55.5t-55.5 -132.5q0 -23 13.5 -51t46 -65t57.5 -63t76 -75l22 -22q15 -14 44 -44t50.5 -51t46 -44t41 -35t23 -12 t23.5 12t42.5 36t46 44t52.5 52t44 43q4 4 12 13q43 41 63.5 62t52 55t46 55t26 46t11.5 44q0 79 -53 133.5t-120 54.5z" />
+<glyph unicode="&#xe144;" d="M776.5 1214q93.5 0 159.5 -66l141 -141q66 -66 66 -160q0 -42 -28 -95.5t-62 -87.5l-29 -29q-31 53 -77 99l-18 18l95 95l-247 248l-389 -389l212 -212l-105 -106l-19 18l-141 141q-66 66 -66 159t66 159l283 283q65 66 158.5 66zM600 706l105 105q10 -8 19 -17l141 -141 q66 -66 66 -159t-66 -159l-283 -283q-66 -66 -159 -66t-159 66l-141 141q-66 66 -66 159.5t66 159.5l55 55q29 -55 75 -102l18 -17l-95 -95l247 -248l389 389z" />
+<glyph unicode="&#xe145;" d="M603 1200q85 0 162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5v953q0 21 30 46.5t81 48t129 37.5t163 15zM300 1000v-700h600v700h-600zM600 254q-43 0 -73.5 -30.5t-30.5 -73.5t30.5 -73.5t73.5 -30.5t73.5 30.5 t30.5 73.5t-30.5 73.5t-73.5 30.5z" />
+<glyph unicode="&#xe146;" d="M902 1185l283 -282q15 -15 15 -36t-14.5 -35.5t-35.5 -14.5t-35 15l-36 35l-279 -267v-300l-212 210l-308 -307l-280 -203l203 280l307 308l-210 212h300l267 279l-35 36q-15 14 -15 35t14.5 35.5t35.5 14.5t35 -15z" />
+<glyph unicode="&#xe148;" d="M700 1248v-78q38 -5 72.5 -14.5t75.5 -31.5t71 -53.5t52 -84t24 -118.5h-159q-4 36 -10.5 59t-21 45t-40 35.5t-64.5 20.5v-307l64 -13q34 -7 64 -16.5t70 -32t67.5 -52.5t47.5 -80t20 -112q0 -139 -89 -224t-244 -97v-77h-100v79q-150 16 -237 103q-40 40 -52.5 93.5 t-15.5 139.5h139q5 -77 48.5 -126t117.5 -65v335l-27 8q-46 14 -79 26.5t-72 36t-63 52t-40 72.5t-16 98q0 70 25 126t67.5 92t94.5 57t110 27v77h100zM600 754v274q-29 -4 -50 -11t-42 -21.5t-31.5 -41.5t-10.5 -65q0 -29 7 -50.5t16.5 -34t28.5 -22.5t31.5 -14t37.5 -10 q9 -3 13 -4zM700 547v-310q22 2 42.5 6.5t45 15.5t41.5 27t29 42t12 59.5t-12.5 59.5t-38 44.5t-53 31t-66.5 24.5z" />
+<glyph unicode="&#xe149;" d="M561 1197q84 0 160.5 -40t123.5 -109.5t47 -147.5h-153q0 40 -19.5 71.5t-49.5 48.5t-59.5 26t-55.5 9q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -26 13.5 -63t26.5 -61t37 -66q6 -9 9 -14h241v-100h-197q8 -50 -2.5 -115t-31.5 -95q-45 -62 -99 -112 q34 10 83 17.5t71 7.5q32 1 102 -16t104 -17q83 0 136 30l50 -147q-31 -19 -58 -30.5t-55 -15.5t-42 -4.5t-46 -0.5q-23 0 -76 17t-111 32.5t-96 11.5q-39 -3 -82 -16t-67 -25l-23 -11l-55 145q4 3 16 11t15.5 10.5t13 9t15.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221v100h166q-23 47 -44 104q-7 20 -12 41.5t-6 55.5t6 66.5t29.5 70.5t58.5 71q97 88 263 88z" />
+<glyph unicode="&#xe150;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM935 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-900h-200v900h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe151;" d="M1000 700h-100v100h-100v-100h-100v500h300v-500zM400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM801 1100v-200h100v200h-100zM1000 350l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150z " />
+<glyph unicode="&#xe152;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 1050l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150zM1000 0h-100v100h-100v-100h-100v500h300v-500zM801 400v-200h100v200h-100z " />
+<glyph unicode="&#xe153;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 700h-100v400h-100v100h200v-500zM1100 0h-100v100h-200v400h300v-500zM901 400v-200h100v200h-100z" />
+<glyph unicode="&#xe154;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1100 700h-100v100h-200v400h300v-500zM901 1100v-200h100v200h-100zM1000 0h-100v400h-100v100h200v-500z" />
+<glyph unicode="&#xe155;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM900 1000h-200v200h200v-200zM1000 700h-300v200h300v-200zM1100 400h-400v200h400v-200zM1200 100h-500v200h500v-200z" />
+<glyph unicode="&#xe156;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1200 1000h-500v200h500v-200zM1100 700h-400v200h400v-200zM1000 400h-300v200h300v-200zM900 100h-200v200h200v-200z" />
+<glyph unicode="&#xe157;" d="M350 1100h400q162 0 256 -93.5t94 -256.5v-400q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5z" />
+<glyph unicode="&#xe158;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-163 0 -256.5 92.5t-93.5 257.5v400q0 163 94 256.5t256 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM440 770l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
+<glyph unicode="&#xe159;" d="M350 1100h400q163 0 256.5 -94t93.5 -256v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 163 92.5 256.5t257.5 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM350 700h400q21 0 26.5 -12t-6.5 -28l-190 -253q-12 -17 -30 -17t-30 17l-190 253q-12 16 -6.5 28t26.5 12z" />
+<glyph unicode="&#xe160;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -163 -92.5 -256.5t-257.5 -93.5h-400q-163 0 -256.5 94t-93.5 256v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM580 693l190 -253q12 -16 6.5 -28t-26.5 -12h-400q-21 0 -26.5 12t6.5 28l190 253q12 17 30 17t30 -17z" />
+<glyph unicode="&#xe161;" d="M550 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h450q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-450q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM338 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
+<glyph unicode="&#xe162;" d="M793 1182l9 -9q8 -10 5 -27q-3 -11 -79 -225.5t-78 -221.5l300 1q24 0 32.5 -17.5t-5.5 -35.5q-1 0 -133.5 -155t-267 -312.5t-138.5 -162.5q-12 -15 -26 -15h-9l-9 8q-9 11 -4 32q2 9 42 123.5t79 224.5l39 110h-302q-23 0 -31 19q-10 21 6 41q75 86 209.5 237.5 t228 257t98.5 111.5q9 16 25 16h9z" />
+<glyph unicode="&#xe163;" d="M350 1100h400q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-450q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h450q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400 q0 165 92.5 257.5t257.5 92.5zM938 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
+<glyph unicode="&#xe164;" d="M750 1200h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -10.5 -25t-24.5 10l-109 109l-312 -312q-15 -15 -35.5 -15t-35.5 15l-141 141q-15 15 -15 35.5t15 35.5l312 312l-109 109q-14 14 -10 24.5t25 10.5zM456 900h-156q-41 0 -70.5 -29.5t-29.5 -70.5v-500 q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v148l200 200v-298q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5h300z" />
+<glyph unicode="&#xe165;" d="M600 1186q119 0 227.5 -46.5t187 -125t125 -187t46.5 -227.5t-46.5 -227.5t-125 -187t-187 -125t-227.5 -46.5t-227.5 46.5t-187 125t-125 187t-46.5 227.5t46.5 227.5t125 187t187 125t227.5 46.5zM600 1022q-115 0 -212 -56.5t-153.5 -153.5t-56.5 -212t56.5 -212 t153.5 -153.5t212 -56.5t212 56.5t153.5 153.5t56.5 212t-56.5 212t-153.5 153.5t-212 56.5zM600 794q80 0 137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137t57 137t137 57z" />
+<glyph unicode="&#xe166;" d="M450 1200h200q21 0 35.5 -14.5t14.5 -35.5v-350h245q20 0 25 -11t-9 -26l-383 -426q-14 -15 -33.5 -15t-32.5 15l-379 426q-13 15 -8.5 26t25.5 11h250v350q0 21 14.5 35.5t35.5 14.5zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe167;" d="M583 1182l378 -435q14 -15 9 -31t-26 -16h-244v-250q0 -20 -17 -35t-39 -15h-200q-20 0 -32 14.5t-12 35.5v250h-250q-20 0 -25.5 16.5t8.5 31.5l383 431q14 16 33.5 17t33.5 -14zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe168;" d="M396 723l369 369q7 7 17.5 7t17.5 -7l139 -139q7 -8 7 -18.5t-7 -17.5l-525 -525q-7 -8 -17.5 -8t-17.5 8l-292 291q-7 8 -7 18t7 18l139 139q8 7 18.5 7t17.5 -7zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50 h-100z" />
+<glyph unicode="&#xe169;" d="M135 1023l142 142q14 14 35 14t35 -14l77 -77l-212 -212l-77 76q-14 15 -14 36t14 35zM655 855l210 210q14 14 24.5 10t10.5 -25l-2 -599q-1 -20 -15.5 -35t-35.5 -15l-597 -1q-21 0 -25 10.5t10 24.5l208 208l-154 155l212 212zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5 v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe170;" d="M350 1200l599 -2q20 -1 35 -15.5t15 -35.5l1 -597q0 -21 -10.5 -25t-24.5 10l-208 208l-155 -154l-212 212l155 154l-210 210q-14 14 -10 24.5t25 10.5zM524 512l-76 -77q-15 -14 -36 -14t-35 14l-142 142q-14 14 -14 35t14 35l77 77zM50 300h1000q21 0 35.5 -14.5 t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe171;" d="M1200 103l-483 276l-314 -399v423h-399l1196 796v-1096zM483 424v-230l683 953z" />
+<glyph unicode="&#xe172;" d="M1100 1000v-850q0 -21 -14.5 -35.5t-35.5 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200z" />
+<glyph unicode="&#xe173;" d="M1100 1000l-2 -149l-299 -299l-95 95q-9 9 -21.5 9t-21.5 -9l-149 -147h-312v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1132 638l106 -106q7 -7 7 -17.5t-7 -17.5l-420 -421q-8 -7 -18 -7 t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l297 297q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe174;" d="M1100 1000v-269l-103 -103l-134 134q-15 15 -33.5 16.5t-34.5 -12.5l-266 -266h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1202 572l70 -70q15 -15 15 -35.5t-15 -35.5l-131 -131 l131 -131q15 -15 15 -35.5t-15 -35.5l-70 -70q-15 -15 -35.5 -15t-35.5 15l-131 131l-131 -131q-15 -15 -35.5 -15t-35.5 15l-70 70q-15 15 -15 35.5t15 35.5l131 131l-131 131q-15 15 -15 35.5t15 35.5l70 70q15 15 35.5 15t35.5 -15l131 -131l131 131q15 15 35.5 15 t35.5 -15z" />
+<glyph unicode="&#xe175;" d="M1100 1000v-300h-350q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM850 600h100q21 0 35.5 -14.5t14.5 -35.5v-250h150q21 0 25 -10.5t-10 -24.5 l-230 -230q-14 -14 -35 -14t-35 14l-230 230q-14 14 -10 24.5t25 10.5h150v250q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe176;" d="M1100 1000v-400l-165 165q-14 15 -35 15t-35 -15l-263 -265h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM935 565l230 -229q14 -15 10 -25.5t-25 -10.5h-150v-250q0 -20 -14.5 -35 t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35v250h-150q-21 0 -25 10.5t10 25.5l230 229q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe177;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-150h-1200v150q0 21 14.5 35.5t35.5 14.5zM1200 800v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v550h1200zM100 500v-200h400v200h-400z" />
+<glyph unicode="&#xe178;" d="M935 1165l248 -230q14 -14 14 -35t-14 -35l-248 -230q-14 -14 -24.5 -10t-10.5 25v150h-400v200h400v150q0 21 10.5 25t24.5 -10zM200 800h-50q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v-200zM400 800h-100v200h100v-200zM18 435l247 230 q14 14 24.5 10t10.5 -25v-150h400v-200h-400v-150q0 -21 -10.5 -25t-24.5 10l-247 230q-15 14 -15 35t15 35zM900 300h-100v200h100v-200zM1000 500h51q20 0 34.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-34.5 -14.5h-51v200z" />
+<glyph unicode="&#xe179;" d="M862 1073l276 116q25 18 43.5 8t18.5 -41v-1106q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v397q-4 1 -11 5t-24 17.5t-30 29t-24 42t-11 56.5v359q0 31 18.5 65t43.5 52zM550 1200q22 0 34.5 -12.5t14.5 -24.5l1 -13v-450q0 -28 -10.5 -59.5 t-25 -56t-29 -45t-25.5 -31.5l-10 -11v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447q-4 4 -11 11.5t-24 30.5t-30 46t-24 55t-11 60v450q0 2 0.5 5.5t4 12t8.5 15t14.5 12t22.5 5.5q20 0 32.5 -12.5t14.5 -24.5l3 -13v-350h100v350v5.5t2.5 12 t7 15t15 12t25.5 5.5q23 0 35.5 -12.5t13.5 -24.5l1 -13v-350h100v350q0 2 0.5 5.5t3 12t7 15t15 12t24.5 5.5z" />
+<glyph unicode="&#xe180;" d="M1200 1100v-56q-4 0 -11 -0.5t-24 -3t-30 -7.5t-24 -15t-11 -24v-888q0 -22 25 -34.5t50 -13.5l25 -2v-56h-400v56q75 0 87.5 6.5t12.5 43.5v394h-500v-394q0 -37 12.5 -43.5t87.5 -6.5v-56h-400v56q4 0 11 0.5t24 3t30 7.5t24 15t11 24v888q0 22 -25 34.5t-50 13.5 l-25 2v56h400v-56q-75 0 -87.5 -6.5t-12.5 -43.5v-394h500v394q0 37 -12.5 43.5t-87.5 6.5v56h400z" />
+<glyph unicode="&#xe181;" d="M675 1000h375q21 0 35.5 -14.5t14.5 -35.5v-150h-105l-295 -98v98l-200 200h-400l100 100h375zM100 900h300q41 0 70.5 -29.5t29.5 -70.5v-500q0 -41 -29.5 -70.5t-70.5 -29.5h-300q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5zM100 800v-200h300v200 h-300zM1100 535l-400 -133v163l400 133v-163zM100 500v-200h300v200h-300zM1100 398v-248q0 -21 -14.5 -35.5t-35.5 -14.5h-375l-100 -100h-375l-100 100h400l200 200h105z" />
+<glyph unicode="&#xe182;" d="M17 1007l162 162q17 17 40 14t37 -22l139 -194q14 -20 11 -44.5t-20 -41.5l-119 -118q102 -142 228 -268t267 -227l119 118q17 17 42.5 19t44.5 -12l192 -136q19 -14 22.5 -37.5t-13.5 -40.5l-163 -162q-3 -1 -9.5 -1t-29.5 2t-47.5 6t-62.5 14.5t-77.5 26.5t-90 42.5 t-101.5 60t-111 83t-119 108.5q-74 74 -133.5 150.5t-94.5 138.5t-60 119.5t-34.5 100t-15 74.5t-4.5 48z" />
+<glyph unicode="&#xe183;" d="M600 1100q92 0 175 -10.5t141.5 -27t108.5 -36.5t81.5 -40t53.5 -37t31 -27l9 -10v-200q0 -21 -14.5 -33t-34.5 -9l-202 34q-20 3 -34.5 20t-14.5 38v146q-141 24 -300 24t-300 -24v-146q0 -21 -14.5 -38t-34.5 -20l-202 -34q-20 -3 -34.5 9t-14.5 33v200q3 4 9.5 10.5 t31 26t54 37.5t80.5 39.5t109 37.5t141 26.5t175 10.5zM600 795q56 0 97 -9.5t60 -23.5t30 -28t12 -24l1 -10v-50l365 -303q14 -15 24.5 -40t10.5 -45v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v212q0 20 10.5 45t24.5 40l365 303v50 q0 4 1 10.5t12 23t30 29t60 22.5t97 10z" />
+<glyph unicode="&#xe184;" d="M1100 700l-200 -200h-600l-200 200v500h200v-200h200v200h200v-200h200v200h200v-500zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5 t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe185;" d="M700 1100h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-1000h300v1000q0 41 -29.5 70.5t-70.5 29.5zM1100 800h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-700h300v700q0 41 -29.5 70.5t-70.5 29.5zM400 0h-300v400q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-400z " />
+<glyph unicode="&#xe186;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
+<glyph unicode="&#xe187;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 300h-100v200h-100v-200h-100v500h100v-200h100v200h100v-500zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
+<glyph unicode="&#xe188;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-300h200v-100h-300v500h300v-100zM900 700h-200v-300h200v-100h-300v500h300v-100z" />
+<glyph unicode="&#xe189;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 400l-300 150l300 150v-300zM900 550l-300 -150v300z" />
+<glyph unicode="&#xe190;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM900 300h-700v500h700v-500zM800 700h-130q-38 0 -66.5 -43t-28.5 -108t27 -107t68 -42h130v300zM300 700v-300 h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130z" />
+<glyph unicode="&#xe191;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 300h-100v400h-100v100h200v-500z M700 300h-100v100h100v-100z" />
+<glyph unicode="&#xe192;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM300 700h200v-400h-300v500h100v-100zM900 300h-100v400h-100v100h200v-500zM300 600v-200h100v200h-100z M700 300h-100v100h100v-100z" />
+<glyph unicode="&#xe193;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 500l-199 -200h-100v50l199 200v150h-200v100h300v-300zM900 300h-100v400h-100v100h200v-500zM701 300h-100 v100h100v-100z" />
+<glyph unicode="&#xe194;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700h-300v-200h300v-100h-300l-100 100v200l100 100h300v-100z" />
+<glyph unicode="&#xe195;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700v-100l-50 -50l100 -100v-50h-100l-100 100h-150v-100h-100v400h300zM500 700v-100h200v100h-200z" />
+<glyph unicode="&#xe197;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -207t-85 -207t-205 -86.5h-128v250q0 21 -14.5 35.5t-35.5 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-250h-222q-80 0 -136 57.5t-56 136.5q0 69 43 122.5t108 67.5q-2 19 -2 37q0 100 49 185 t134 134t185 49zM525 500h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -244q-13 -16 -32 -16t-32 16l-223 244q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe198;" d="M502 1089q110 0 201 -59.5t135 -156.5q43 15 89 15q121 0 206 -86.5t86 -206.5q0 -99 -60 -181t-150 -110l-378 360q-13 16 -31.5 16t-31.5 -16l-381 -365h-9q-79 0 -135.5 57.5t-56.5 136.5q0 69 43 122.5t108 67.5q-2 19 -2 38q0 100 49 184.5t133.5 134t184.5 49.5z M632 467l223 -228q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5q199 204 223 228q19 19 31.5 19t32.5 -19z" />
+<glyph unicode="&#xe199;" d="M700 100v100h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170l-270 -300h400v-100h-50q-21 0 -35.5 -14.5t-14.5 -35.5v-50h400v50q0 21 -14.5 35.5t-35.5 14.5h-50z" />
+<glyph unicode="&#xe200;" d="M600 1179q94 0 167.5 -56.5t99.5 -145.5q89 -6 150.5 -71.5t61.5 -155.5q0 -61 -29.5 -112.5t-79.5 -82.5q9 -29 9 -55q0 -74 -52.5 -126.5t-126.5 -52.5q-55 0 -100 30v-251q21 0 35.5 -14.5t14.5 -35.5v-50h-300v50q0 21 14.5 35.5t35.5 14.5v251q-45 -30 -100 -30 q-74 0 -126.5 52.5t-52.5 126.5q0 18 4 38q-47 21 -75.5 65t-28.5 97q0 74 52.5 126.5t126.5 52.5q5 0 23 -2q0 2 -1 10t-1 13q0 116 81.5 197.5t197.5 81.5z" />
+<glyph unicode="&#xe201;" d="M1010 1010q111 -111 150.5 -260.5t0 -299t-150.5 -260.5q-83 -83 -191.5 -126.5t-218.5 -43.5t-218.5 43.5t-191.5 126.5q-111 111 -150.5 260.5t0 299t150.5 260.5q83 83 191.5 126.5t218.5 43.5t218.5 -43.5t191.5 -126.5zM476 1065q-4 0 -8 -1q-121 -34 -209.5 -122.5 t-122.5 -209.5q-4 -12 2.5 -23t18.5 -14l36 -9q3 -1 7 -1q23 0 29 22q27 96 98 166q70 71 166 98q11 3 17.5 13.5t3.5 22.5l-9 35q-3 13 -14 19q-7 4 -15 4zM512 920q-4 0 -9 -2q-80 -24 -138.5 -82.5t-82.5 -138.5q-4 -13 2 -24t19 -14l34 -9q4 -1 8 -1q22 0 28 21 q18 58 58.5 98.5t97.5 58.5q12 3 18 13.5t3 21.5l-9 35q-3 12 -14 19q-7 4 -15 4zM719.5 719.5q-49.5 49.5 -119.5 49.5t-119.5 -49.5t-49.5 -119.5t49.5 -119.5t119.5 -49.5t119.5 49.5t49.5 119.5t-49.5 119.5zM855 551q-22 0 -28 -21q-18 -58 -58.5 -98.5t-98.5 -57.5 q-11 -4 -17 -14.5t-3 -21.5l9 -35q3 -12 14 -19q7 -4 15 -4q4 0 9 2q80 24 138.5 82.5t82.5 138.5q4 13 -2.5 24t-18.5 14l-34 9q-4 1 -8 1zM1000 515q-23 0 -29 -22q-27 -96 -98 -166q-70 -71 -166 -98q-11 -3 -17.5 -13.5t-3.5 -22.5l9 -35q3 -13 14 -19q7 -4 15 -4 q4 0 8 1q121 34 209.5 122.5t122.5 209.5q4 12 -2.5 23t-18.5 14l-36 9q-3 1 -7 1z" />
+<glyph unicode="&#xe202;" d="M700 800h300v-380h-180v200h-340v-200h-380v755q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM700 300h162l-212 -212l-212 212h162v200h100v-200zM520 0h-395q-10 0 -17.5 7.5t-7.5 17.5v395zM1000 220v-195q0 -10 -7.5 -17.5t-17.5 -7.5h-195z" />
+<glyph unicode="&#xe203;" d="M700 800h300v-520l-350 350l-550 -550v1095q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM862 200h-162v-200h-100v200h-162l212 212zM480 0h-355q-10 0 -17.5 7.5t-7.5 17.5v55h380v-80zM1000 80v-55q0 -10 -7.5 -17.5t-17.5 -7.5h-155v80h180z" />
+<glyph unicode="&#xe204;" d="M1162 800h-162v-200h100l100 -100h-300v300h-162l212 212zM200 800h200q27 0 40 -2t29.5 -10.5t23.5 -30t7 -57.5h300v-100h-600l-200 -350v450h100q0 36 7 57.5t23.5 30t29.5 10.5t40 2zM800 400h240l-240 -400h-800l300 500h500v-100z" />
+<glyph unicode="&#xe205;" d="M650 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM1000 850v150q41 0 70.5 -29.5t29.5 -70.5v-800 q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-1 0 -20 4l246 246l-326 326v324q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM412 250l-212 -212v162h-200v100h200v162z" />
+<glyph unicode="&#xe206;" d="M450 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM800 850v150q41 0 70.5 -29.5t29.5 -70.5v-500 h-200v-300h200q0 -36 -7 -57.5t-23.5 -30t-29.5 -10.5t-40 -2h-600q-41 0 -70.5 29.5t-29.5 70.5v800q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM1212 250l-212 -212v162h-200v100h200v162z" />
+<glyph unicode="&#xe209;" d="M658 1197l637 -1104q23 -38 7 -65.5t-60 -27.5h-1276q-44 0 -60 27.5t7 65.5l637 1104q22 39 54 39t54 -39zM704 800h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM500 300v-100h200 v100h-200z" />
+<glyph unicode="&#xe210;" d="M425 1100h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM825 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM25 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5zM425 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5 v150q0 10 7.5 17.5t17.5 7.5zM25 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe211;" d="M700 1200h100v-200h-100v-100h350q62 0 86.5 -39.5t-3.5 -94.5l-66 -132q-41 -83 -81 -134h-772q-40 51 -81 134l-66 132q-28 55 -3.5 94.5t86.5 39.5h350v100h-100v200h100v100h200v-100zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100 h-950l138 100h-13q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe212;" d="M600 1300q40 0 68.5 -29.5t28.5 -70.5h-194q0 41 28.5 70.5t68.5 29.5zM443 1100h314q18 -37 18 -75q0 -8 -3 -25h328q41 0 44.5 -16.5t-30.5 -38.5l-175 -145h-678l-178 145q-34 22 -29 38.5t46 16.5h328q-3 17 -3 25q0 38 18 75zM250 700h700q21 0 35.5 -14.5 t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-150v-200l275 -200h-950l275 200v200h-150q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe213;" d="M600 1181q75 0 128 -53t53 -128t-53 -128t-128 -53t-128 53t-53 128t53 128t128 53zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13 l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe214;" d="M600 1300q47 0 92.5 -53.5t71 -123t25.5 -123.5q0 -78 -55.5 -133.5t-133.5 -55.5t-133.5 55.5t-55.5 133.5q0 62 34 143l144 -143l111 111l-163 163q34 26 63 26zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45 zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe215;" d="M600 1200l300 -161v-139h-300q0 -57 18.5 -108t50 -91.5t63 -72t70 -67.5t57.5 -61h-530q-60 83 -90.5 177.5t-30.5 178.5t33 164.5t87.5 139.5t126 96.5t145.5 41.5v-98zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100 h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe216;" d="M600 1300q41 0 70.5 -29.5t29.5 -70.5v-78q46 -26 73 -72t27 -100v-50h-400v50q0 54 27 100t73 72v78q0 41 29.5 70.5t70.5 29.5zM400 800h400q54 0 100 -27t72 -73h-172v-100h200v-100h-200v-100h200v-100h-200v-100h200q0 -83 -58.5 -141.5t-141.5 -58.5h-400 q-83 0 -141.5 58.5t-58.5 141.5v400q0 83 58.5 141.5t141.5 58.5z" />
+<glyph unicode="&#xe218;" d="M150 1100h900q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM125 400h950q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-283l224 -224q13 -13 13 -31.5t-13 -32 t-31.5 -13.5t-31.5 13l-88 88h-524l-87 -88q-13 -13 -32 -13t-32 13.5t-13 32t13 31.5l224 224h-289q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM541 300l-100 -100h324l-100 100h-124z" />
+<glyph unicode="&#xe219;" d="M200 1100h800q83 0 141.5 -58.5t58.5 -141.5v-200h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100v200q0 83 58.5 141.5t141.5 58.5zM100 600h1000q41 0 70.5 -29.5 t29.5 -70.5v-300h-1200v300q0 41 29.5 70.5t70.5 29.5zM300 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200zM1100 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200z" />
+<glyph unicode="&#xe221;" d="M480 1165l682 -683q31 -31 31 -75.5t-31 -75.5l-131 -131h-481l-517 518q-32 31 -32 75.5t32 75.5l295 296q31 31 75.5 31t76.5 -31zM108 794l342 -342l303 304l-341 341zM250 100h800q21 0 35.5 -14.5t14.5 -35.5v-50h-900v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe223;" d="M1057 647l-189 506q-8 19 -27.5 33t-40.5 14h-400q-21 0 -40.5 -14t-27.5 -33l-189 -506q-8 -19 1.5 -33t30.5 -14h625v-150q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v150h125q21 0 30.5 14t1.5 33zM897 0h-595v50q0 21 14.5 35.5t35.5 14.5h50v50 q0 21 14.5 35.5t35.5 14.5h48v300h200v-300h47q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-50z" />
+<glyph unicode="&#xe224;" d="M900 800h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-375v591l-300 300v84q0 10 7.5 17.5t17.5 7.5h375v-400zM1200 900h-200v200zM400 600h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-650q-10 0 -17.5 7.5t-7.5 17.5v950q0 10 7.5 17.5t17.5 7.5h375v-400zM700 700h-200v200z " />
+<glyph unicode="&#xe225;" d="M484 1095h195q75 0 146 -32.5t124 -86t89.5 -122.5t48.5 -142q18 -14 35 -20q31 -10 64.5 6.5t43.5 48.5q10 34 -15 71q-19 27 -9 43q5 8 12.5 11t19 -1t23.5 -16q41 -44 39 -105q-3 -63 -46 -106.5t-104 -43.5h-62q-7 -55 -35 -117t-56 -100l-39 -234q-3 -20 -20 -34.5 t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l12 70q-49 -14 -91 -14h-195q-24 0 -65 8l-11 -64q-3 -20 -20 -34.5t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l26 157q-84 74 -128 175l-159 53q-19 7 -33 26t-14 40v50q0 21 14.5 35.5t35.5 14.5h124q11 87 56 166l-111 95 q-16 14 -12.5 23.5t24.5 9.5h203q116 101 250 101zM675 1000h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h250q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe226;" d="M641 900l423 247q19 8 42 2.5t37 -21.5l32 -38q14 -15 12.5 -36t-17.5 -34l-139 -120h-390zM50 1100h106q67 0 103 -17t66 -71l102 -212h823q21 0 35.5 -14.5t14.5 -35.5v-50q0 -21 -14 -40t-33 -26l-737 -132q-23 -4 -40 6t-26 25q-42 67 -100 67h-300q-62 0 -106 44 t-44 106v200q0 62 44 106t106 44zM173 928h-80q-19 0 -28 -14t-9 -35v-56q0 -51 42 -51h134q16 0 21.5 8t5.5 24q0 11 -16 45t-27 51q-18 28 -43 28zM550 727q-32 0 -54.5 -22.5t-22.5 -54.5t22.5 -54.5t54.5 -22.5t54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5zM130 389 l152 130q18 19 34 24t31 -3.5t24.5 -17.5t25.5 -28q28 -35 50.5 -51t48.5 -13l63 5l48 -179q13 -61 -3.5 -97.5t-67.5 -79.5l-80 -69q-47 -40 -109 -35.5t-103 51.5l-130 151q-40 47 -35.5 109.5t51.5 102.5zM380 377l-102 -88q-31 -27 2 -65l37 -43q13 -15 27.5 -19.5 t31.5 6.5l61 53q19 16 14 49q-2 20 -12 56t-17 45q-11 12 -19 14t-23 -8z" />
+<glyph unicode="&#xe227;" d="M625 1200h150q10 0 17.5 -7.5t7.5 -17.5v-109q79 -33 131 -87.5t53 -128.5q1 -46 -15 -84.5t-39 -61t-46 -38t-39 -21.5l-17 -6q6 0 15 -1.5t35 -9t50 -17.5t53 -30t50 -45t35.5 -64t14.5 -84q0 -59 -11.5 -105.5t-28.5 -76.5t-44 -51t-49.5 -31.5t-54.5 -16t-49.5 -6.5 t-43.5 -1v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-100v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-175q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v600h-75q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5h175v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h100v75q0 10 7.5 17.5t17.5 7.5zM400 900v-200h263q28 0 48.5 10.5t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-263zM400 500v-200h363q28 0 48.5 10.5 t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-363z" />
+<glyph unicode="&#xe230;" d="M212 1198h780q86 0 147 -61t61 -147v-416q0 -51 -18 -142.5t-36 -157.5l-18 -66q-29 -87 -93.5 -146.5t-146.5 -59.5h-572q-82 0 -147 59t-93 147q-8 28 -20 73t-32 143.5t-20 149.5v416q0 86 61 147t147 61zM600 1045q-70 0 -132.5 -11.5t-105.5 -30.5t-78.5 -41.5 t-57 -45t-36 -41t-20.5 -30.5l-6 -12l156 -243h560l156 243q-2 5 -6 12.5t-20 29.5t-36.5 42t-57 44.5t-79 42t-105 29.5t-132.5 12zM762 703h-157l195 261z" />
+<glyph unicode="&#xe231;" d="M475 1300h150q103 0 189 -86t86 -189v-500q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
+<glyph unicode="&#xe232;" d="M475 1300h96q0 -150 89.5 -239.5t239.5 -89.5v-446q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
+<glyph unicode="&#xe233;" d="M1294 767l-638 -283l-378 170l-78 -60v-224l100 -150v-199l-150 148l-150 -149v200l100 150v250q0 4 -0.5 10.5t0 9.5t1 8t3 8t6.5 6l47 40l-147 65l642 283zM1000 380l-350 -166l-350 166v147l350 -165l350 165v-147z" />
+<glyph unicode="&#xe234;" d="M250 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM650 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1050 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
+<glyph unicode="&#xe235;" d="M550 1100q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 700q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 300q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
+<glyph unicode="&#xe236;" d="M125 1100h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM125 700h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM125 300h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe237;" d="M350 1200h500q162 0 256 -93.5t94 -256.5v-500q0 -165 -93.5 -257.5t-256.5 -92.5h-500q-165 0 -257.5 92.5t-92.5 257.5v500q0 165 92.5 257.5t257.5 92.5zM900 1000h-600q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h600q41 0 70.5 29.5 t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5zM350 900h500q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-500q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 14.5 35.5t35.5 14.5zM400 800v-200h400v200h-400z" />
+<glyph unicode="&#xe238;" d="M150 1100h1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe239;" d="M650 1187q87 -67 118.5 -156t0 -178t-118.5 -155q-87 66 -118.5 155t0 178t118.5 156zM300 800q124 0 212 -88t88 -212q-124 0 -212 88t-88 212zM1000 800q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM300 500q124 0 212 -88t88 -212q-124 0 -212 88t-88 212z M1000 500q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM700 199v-144q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v142q40 -4 43 -4q17 0 57 6z" />
+<glyph unicode="&#xe240;" d="M745 878l69 19q25 6 45 -12l298 -295q11 -11 15 -26.5t-2 -30.5q-5 -14 -18 -23.5t-28 -9.5h-8q1 0 1 -13q0 -29 -2 -56t-8.5 -62t-20 -63t-33 -53t-51 -39t-72.5 -14h-146q-184 0 -184 288q0 24 10 47q-20 4 -62 4t-63 -4q11 -24 11 -47q0 -288 -184 -288h-142 q-48 0 -84.5 21t-56 51t-32 71.5t-16 75t-3.5 68.5q0 13 2 13h-7q-15 0 -27.5 9.5t-18.5 23.5q-6 15 -2 30.5t15 25.5l298 296q20 18 46 11l76 -19q20 -5 30.5 -22.5t5.5 -37.5t-22.5 -31t-37.5 -5l-51 12l-182 -193h891l-182 193l-44 -12q-20 -5 -37.5 6t-22.5 31t6 37.5 t31 22.5z" />
+<glyph unicode="&#xe241;" d="M1200 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM500 450h-25q0 15 -4 24.5t-9 14.5t-17 7.5t-20 3t-25 0.5h-100v-425q0 -11 12.5 -17.5t25.5 -7.5h12v-50h-200v50q50 0 50 25v425h-100q-17 0 -25 -0.5t-20 -3t-17 -7.5t-9 -14.5t-4 -24.5h-25v150h500v-150z" />
+<glyph unicode="&#xe242;" d="M1000 300v50q-25 0 -55 32q-14 14 -25 31t-16 27l-4 11l-289 747h-69l-300 -754q-18 -35 -39 -56q-9 -9 -24.5 -18.5t-26.5 -14.5l-11 -5v-50h273v50q-49 0 -78.5 21.5t-11.5 67.5l69 176h293l61 -166q13 -34 -3.5 -66.5t-55.5 -32.5v-50h312zM412 691l134 342l121 -342 h-255zM1100 150v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5z" />
+<glyph unicode="&#xe243;" d="M50 1200h1100q21 0 35.5 -14.5t14.5 -35.5v-1100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5zM611 1118h-70q-13 0 -18 -12l-299 -753q-17 -32 -35 -51q-18 -18 -56 -34q-12 -5 -12 -18v-50q0 -8 5.5 -14t14.5 -6 h273q8 0 14 6t6 14v50q0 8 -6 14t-14 6q-55 0 -71 23q-10 14 0 39l63 163h266l57 -153q11 -31 -6 -55q-12 -17 -36 -17q-8 0 -14 -6t-6 -14v-50q0 -8 6 -14t14 -6h313q8 0 14 6t6 14v50q0 7 -5.5 13t-13.5 7q-17 0 -42 25q-25 27 -40 63h-1l-288 748q-5 12 -19 12zM639 611 h-197l103 264z" />
+<glyph unicode="&#xe244;" d="M1200 1100h-1200v100h1200v-100zM50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 1000h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM700 900v-300h300v300h-300z" />
+<glyph unicode="&#xe245;" d="M50 1200h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 700h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM700 600v-300h300v300h-300zM1200 0h-1200v100h1200v-100z" />
+<glyph unicode="&#xe246;" d="M50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-350h100v150q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-150h100v-100h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v150h-100v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM700 700v-300h300v300h-300z" />
+<glyph unicode="&#xe247;" d="M100 0h-100v1200h100v-1200zM250 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM300 1000v-300h300v300h-300zM250 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe248;" d="M600 1100h150q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-100h450q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h350v100h-150q-21 0 -35.5 14.5 t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h150v100h100v-100zM400 1000v-300h300v300h-300z" />
+<glyph unicode="&#xe249;" d="M1200 0h-100v1200h100v-1200zM550 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM600 1000v-300h300v300h-300zM50 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe250;" d="M865 565l-494 -494q-23 -23 -41 -23q-14 0 -22 13.5t-8 38.5v1000q0 25 8 38.5t22 13.5q18 0 41 -23l494 -494q14 -14 14 -35t-14 -35z" />
+<glyph unicode="&#xe251;" d="M335 635l494 494q29 29 50 20.5t21 -49.5v-1000q0 -41 -21 -49.5t-50 20.5l-494 494q-14 14 -14 35t14 35z" />
+<glyph unicode="&#xe252;" d="M100 900h1000q41 0 49.5 -21t-20.5 -50l-494 -494q-14 -14 -35 -14t-35 14l-494 494q-29 29 -20.5 50t49.5 21z" />
+<glyph unicode="&#xe253;" d="M635 865l494 -494q29 -29 20.5 -50t-49.5 -21h-1000q-41 0 -49.5 21t20.5 50l494 494q14 14 35 14t35 -14z" />
+<glyph unicode="&#xe254;" d="M700 741v-182l-692 -323v221l413 193l-413 193v221zM1200 0h-800v200h800v-200z" />
+<glyph unicode="&#xe255;" d="M1200 900h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300zM0 700h50q0 21 4 37t9.5 26.5t18 17.5t22 11t28.5 5.5t31 2t37 0.5h100v-550q0 -22 -25 -34.5t-50 -13.5l-25 -2v-100h400v100q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v550h100q25 0 37 -0.5t31 -2 t28.5 -5.5t22 -11t18 -17.5t9.5 -26.5t4 -37h50v300h-800v-300z" />
+<glyph unicode="&#xe256;" d="M800 700h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-100v-550q0 -22 25 -34.5t50 -14.5l25 -1v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v550h-100q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h800v-300zM1100 200h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300z" />
+<glyph unicode="&#xe257;" d="M701 1098h160q16 0 21 -11t-7 -23l-464 -464l464 -464q12 -12 7 -23t-21 -11h-160q-13 0 -23 9l-471 471q-7 8 -7 18t7 18l471 471q10 9 23 9z" />
+<glyph unicode="&#xe258;" d="M339 1098h160q13 0 23 -9l471 -471q7 -8 7 -18t-7 -18l-471 -471q-10 -9 -23 -9h-160q-16 0 -21 11t7 23l464 464l-464 464q-12 12 -7 23t21 11z" />
+<glyph unicode="&#xe259;" d="M1087 882q11 -5 11 -21v-160q0 -13 -9 -23l-471 -471q-8 -7 -18 -7t-18 7l-471 471q-9 10 -9 23v160q0 16 11 21t23 -7l464 -464l464 464q12 12 23 7z" />
+<glyph unicode="&#xe260;" d="M618 993l471 -471q9 -10 9 -23v-160q0 -16 -11 -21t-23 7l-464 464l-464 -464q-12 -12 -23 -7t-11 21v160q0 13 9 23l471 471q8 7 18 7t18 -7z" />
+<glyph unicode="&#xf8ff;" d="M1000 1200q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM450 1000h100q21 0 40 -14t26 -33l79 -194q5 1 16 3q34 6 54 9.5t60 7t65.5 1t61 -10t56.5 -23t42.5 -42t29 -64t5 -92t-19.5 -121.5q-1 -7 -3 -19.5t-11 -50t-20.5 -73t-32.5 -81.5t-46.5 -83t-64 -70 t-82.5 -50q-13 -5 -42 -5t-65.5 2.5t-47.5 2.5q-14 0 -49.5 -3.5t-63 -3.5t-43.5 7q-57 25 -104.5 78.5t-75 111.5t-46.5 112t-26 90l-7 35q-15 63 -18 115t4.5 88.5t26 64t39.5 43.5t52 25.5t58.5 13t62.5 2t59.5 -4.5t55.5 -8l-147 192q-12 18 -5.5 30t27.5 12z" />
+<glyph unicode="&#x1f511;" d="M250 1200h600q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-500l-255 -178q-19 -9 -32 -1t-13 29v650h-150q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM400 1100v-100h300v100h-300z" />
+<glyph unicode="&#x1f6aa;" d="M250 1200h750q39 0 69.5 -40.5t30.5 -84.5v-933l-700 -117v950l600 125h-700v-1000h-100v1025q0 23 15.5 49t34.5 26zM500 525v-100l100 20v100z" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.ttf b/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.ttf
new file mode 100644
index 0000000..1413fc6
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.ttf
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff b/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff
new file mode 100644
index 0000000..9e61285
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff2 b/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff2
new file mode 100644
index 0000000..64539b5
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff2
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.eot b/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.eot
new file mode 100644
index 0000000..e9f60ca
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.eot
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.svg b/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.svg
new file mode 100644
index 0000000..855c845
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.svg
@@ -0,0 +1,2671 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg>
+<metadata>
+Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016
+ By ,,,
+Copyright Dave Gandy 2016. All rights reserved.
+</metadata>
+<defs>
+<font id="FontAwesome" horiz-adv-x="1536" >
+  <font-face 
+    font-family="FontAwesome"
+    font-weight="400"
+    font-stretch="normal"
+    units-per-em="1792"
+    panose-1="0 0 0 0 0 0 0 0 0 0"
+    ascent="1536"
+    descent="-256"
+    bbox="-1.02083 -256.962 2304.6 1537.02"
+    underline-thickness="0"
+    underline-position="0"
+    unicode-range="U+0020-F500"
+  />
+<missing-glyph horiz-adv-x="896" 
+d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
+    <glyph glyph-name=".notdef" horiz-adv-x="896" 
+d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
+    <glyph glyph-name=".null" horiz-adv-x="0" 
+ />
+    <glyph glyph-name="nonmarkingreturn" horiz-adv-x="597" 
+ />
+    <glyph glyph-name="space" unicode=" " horiz-adv-x="448" 
+ />
+    <glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="infinity" unicode="&#x221e;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="notequal" unicode="&#x2260;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="glass" unicode="&#xf000;" horiz-adv-x="1792" 
+d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
+    <glyph glyph-name="music" unicode="&#xf001;" 
+d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89
+t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="search" unicode="&#xf002;" horiz-adv-x="1664" 
+d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5
+t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
+    <glyph glyph-name="envelope" unicode="&#xf003;" horiz-adv-x="1792" 
+d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13
+t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z
+M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="heart" unicode="&#xf004;" horiz-adv-x="1792" 
+d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600
+q-18 -18 -44 -18z" />
+    <glyph glyph-name="star" unicode="&#xf005;" horiz-adv-x="1664" 
+d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455
+l502 -73q56 -9 56 -46z" />
+    <glyph glyph-name="star_empty" unicode="&#xf006;" horiz-adv-x="1664" 
+d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500
+l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
+    <glyph glyph-name="user" unicode="&#xf007;" horiz-adv-x="1280" 
+d="M1280 137q0 -109 -62.5 -187t-150.5 -78h-854q-88 0 -150.5 78t-62.5 187q0 85 8.5 160.5t31.5 152t58.5 131t94 89t134.5 34.5q131 -128 313 -128t313 128q76 0 134.5 -34.5t94 -89t58.5 -131t31.5 -152t8.5 -160.5zM1024 1024q0 -159 -112.5 -271.5t-271.5 -112.5
+t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="film" unicode="&#xf008;" horiz-adv-x="1920" 
+d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128
+q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45
+t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128
+q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19
+t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="th_large" unicode="&#xf009;" horiz-adv-x="1664" 
+d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38
+h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="th" unicode="&#xf00a;" horiz-adv-x="1792" 
+d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
+h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192
+q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="th_list" unicode="&#xf00b;" horiz-adv-x="1792" 
+d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
+h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="ok" unicode="&#xf00c;" horiz-adv-x="1792" 
+d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
+    <glyph glyph-name="remove" unicode="&#xf00d;" horiz-adv-x="1408" 
+d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68
+t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
+    <glyph glyph-name="zoom_in" unicode="&#xf00e;" horiz-adv-x="1664" 
+d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224
+q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5
+t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
+    <glyph glyph-name="zoom_out" unicode="&#xf010;" horiz-adv-x="1664" 
+d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z
+M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z
+" />
+    <glyph glyph-name="off" unicode="&#xf011;" 
+d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5
+t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
+    <glyph glyph-name="signal" unicode="&#xf012;" horiz-adv-x="1792" 
+d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
+v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="cog" unicode="&#xf013;" 
+d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38
+q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13
+l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22
+q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
+    <glyph glyph-name="trash" unicode="&#xf014;" horiz-adv-x="1408" 
+d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576
+q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832
+q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="home" unicode="&#xf015;" horiz-adv-x="1664" 
+d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5
+l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
+    <glyph glyph-name="file_alt" unicode="&#xf016;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+" />
+    <glyph glyph-name="time" unicode="&#xf017;" 
+d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="road" unicode="&#xf018;" horiz-adv-x="1920" 
+d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256
+q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
+    <glyph glyph-name="download_alt" unicode="&#xf019;" horiz-adv-x="1664" 
+d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136
+q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
+    <glyph glyph-name="download" unicode="&#xf01a;" 
+d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273
+t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="upload" unicode="&#xf01b;" 
+d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198
+t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="inbox" unicode="&#xf01c;" 
+d="M1023 576h316q-1 3 -2.5 8.5t-2.5 7.5l-212 496h-708l-212 -496q-1 -3 -2.5 -8.5t-2.5 -7.5h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552
+q25 -61 25 -123z" />
+    <glyph glyph-name="play_circle" unicode="&#xf01d;" 
+d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="repeat" unicode="&#xf01e;" 
+d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q15 0 25 -9
+l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
+    <glyph glyph-name="refresh" unicode="&#xf021;" 
+d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117
+q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5
+q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
+    <glyph glyph-name="list_alt" unicode="&#xf022;" horiz-adv-x="1792" 
+d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z
+M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5
+t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47
+t47 -113z" />
+    <glyph glyph-name="lock" unicode="&#xf023;" horiz-adv-x="1152" 
+d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="flag" unicode="&#xf024;" horiz-adv-x="1792" 
+d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48
+t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="headphones" unicode="&#xf025;" horiz-adv-x="1664" 
+d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78
+t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5
+t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
+    <glyph glyph-name="volume_off" unicode="&#xf026;" horiz-adv-x="768" 
+d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
+    <glyph glyph-name="volume_down" unicode="&#xf027;" horiz-adv-x="1152" 
+d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
+t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
+    <glyph glyph-name="volume_up" unicode="&#xf028;" horiz-adv-x="1664" 
+d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
+t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5
+t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289
+t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
+    <glyph glyph-name="qrcode" unicode="&#xf029;" horiz-adv-x="1408" 
+d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z
+M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
+    <glyph glyph-name="barcode" unicode="&#xf02a;" horiz-adv-x="1792" 
+d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z
+M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
+    <glyph glyph-name="tag" unicode="&#xf02b;" 
+d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
+l715 -714q37 -39 37 -91z" />
+    <glyph glyph-name="tags" unicode="&#xf02c;" horiz-adv-x="1920" 
+d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
+l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
+    <glyph glyph-name="book" unicode="&#xf02d;" horiz-adv-x="1664" 
+d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23
+q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906
+q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5
+t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
+    <glyph glyph-name="bookmark" unicode="&#xf02e;" horiz-adv-x="1280" 
+d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
+    <glyph glyph-name="print" unicode="&#xf02f;" horiz-adv-x="1664" 
+d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68
+v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
+    <glyph glyph-name="camera" unicode="&#xf030;" horiz-adv-x="1920" 
+d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136
+q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="font" unicode="&#xf031;" horiz-adv-x="1664" 
+d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57
+q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -5 -0.5 -13.5t-0.5 -12.5q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5
+q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
+    <glyph glyph-name="bold" unicode="&#xf032;" horiz-adv-x="1408" 
+d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142
+q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5
+t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68 -0.5t68 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5
+t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
+    <glyph glyph-name="italic" unicode="&#xf033;" horiz-adv-x="1024" 
+d="M0 -126l17 85q22 7 61.5 16.5t72 19t59.5 23.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5
+q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
+    <glyph glyph-name="text_height" unicode="&#xf034;" horiz-adv-x="1792" 
+d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2
+t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5
+q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
+q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
+    <glyph glyph-name="text_width" unicode="&#xf035;" 
+d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1
+t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
+q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5
+t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49
+t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
+    <glyph glyph-name="align_left" unicode="&#xf036;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45
+t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="align_center" unicode="&#xf037;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19
+h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="align_right" unicode="&#xf038;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
+t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="align_justify" unicode="&#xf039;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
+t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="list" unicode="&#xf03a;" horiz-adv-x="1792" 
+d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5
+t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344
+q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
+t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192
+q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="indent_left" unicode="&#xf03b;" horiz-adv-x="1792" 
+d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
+t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
+q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="indent_right" unicode="&#xf03c;" horiz-adv-x="1792" 
+d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
+t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
+q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="facetime_video" unicode="&#xf03d;" horiz-adv-x="1792" 
+d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5
+q39 -17 39 -59z" />
+    <glyph glyph-name="picture" unicode="&#xf03e;" horiz-adv-x="1920" 
+d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216
+q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="pencil" unicode="&#xf040;" 
+d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38
+q53 0 91 -38l235 -234q37 -39 37 -91z" />
+    <glyph glyph-name="map_marker" unicode="&#xf041;" horiz-adv-x="1024" 
+d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
+    <glyph glyph-name="adjust" unicode="&#xf042;" 
+d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="tint" unicode="&#xf043;" horiz-adv-x="1024" 
+d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362
+q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
+    <glyph glyph-name="edit" unicode="&#xf044;" horiz-adv-x="1792" 
+d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
+q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92
+l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
+    <glyph glyph-name="share" unicode="&#xf045;" horiz-adv-x="1664" 
+d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832
+q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5
+t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
+    <glyph glyph-name="check" unicode="&#xf046;" horiz-adv-x="1664" 
+d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832
+q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110
+q24 -24 24 -57t-24 -57z" />
+    <glyph glyph-name="move" unicode="&#xf047;" horiz-adv-x="1792" 
+d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45
+t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
+    <glyph glyph-name="step_backward" unicode="&#xf048;" horiz-adv-x="1024" 
+d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19z" />
+    <glyph glyph-name="fast_backward" unicode="&#xf049;" horiz-adv-x="1792" 
+d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19l710 710
+q19 19 32 13t13 -32v-710q4 10 13 19z" />
+    <glyph glyph-name="backward" unicode="&#xf04a;" horiz-adv-x="1664" 
+d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q4 10 13 19z" />
+    <glyph glyph-name="play" unicode="&#xf04b;" horiz-adv-x="1408" 
+d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
+    <glyph glyph-name="pause" unicode="&#xf04c;" 
+d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="stop" unicode="&#xf04d;" 
+d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="forward" unicode="&#xf04e;" horiz-adv-x="1664" 
+d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
+    <glyph glyph-name="fast_forward" unicode="&#xf050;" horiz-adv-x="1792" 
+d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19l-710 -710
+q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
+    <glyph glyph-name="step_forward" unicode="&#xf051;" horiz-adv-x="1024" 
+d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19z" />
+    <glyph glyph-name="eject" unicode="&#xf052;" horiz-adv-x="1538" 
+d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
+    <glyph glyph-name="chevron_left" unicode="&#xf053;" horiz-adv-x="1280" 
+d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
+    <glyph glyph-name="chevron_right" unicode="&#xf054;" horiz-adv-x="1280" 
+d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
+    <glyph glyph-name="plus_sign" unicode="&#xf055;" 
+d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5
+t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="minus_sign" unicode="&#xf056;" 
+d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
+t103 -385.5z" />
+    <glyph glyph-name="remove_sign" unicode="&#xf057;" 
+d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19
+q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ok_sign" unicode="&#xf058;" 
+d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="question_sign" unicode="&#xf059;" 
+d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59
+q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="info_sign" unicode="&#xf05a;" 
+d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23
+t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="screenshot" unicode="&#xf05b;" 
+d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109
+q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143
+q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="remove_circle" unicode="&#xf05c;" 
+d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23
+l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5
+t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ok_circle" unicode="&#xf05d;" 
+d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198
+t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ban_circle" unicode="&#xf05e;" 
+d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61
+t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
+    <glyph glyph-name="arrow_left" unicode="&#xf060;" 
+d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5
+t32.5 -90.5z" />
+    <glyph glyph-name="arrow_right" unicode="&#xf061;" 
+d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
+    <glyph glyph-name="arrow_up" unicode="&#xf062;" horiz-adv-x="1664" 
+d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651
+q37 -39 37 -91z" />
+    <glyph glyph-name="arrow_down" unicode="&#xf063;" horiz-adv-x="1664" 
+d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
+    <glyph glyph-name="share_alt" unicode="&#xf064;" horiz-adv-x="1792" 
+d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22
+t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
+    <glyph glyph-name="resize_full" unicode="&#xf065;" 
+d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332
+q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="resize_small" unicode="&#xf066;" 
+d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45
+t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
+    <glyph glyph-name="plus" unicode="&#xf067;" horiz-adv-x="1408" 
+d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="minus" unicode="&#xf068;" horiz-adv-x="1408" 
+d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="asterisk" unicode="&#xf069;" horiz-adv-x="1664" 
+d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154
+q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
+    <glyph glyph-name="exclamation_sign" unicode="&#xf06a;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192
+q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
+    <glyph glyph-name="gift" unicode="&#xf06b;" 
+d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320
+q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5
+t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="leaf" unicode="&#xf06c;" horiz-adv-x="1792" 
+d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268
+q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-43 0 -63.5 17.5t-45.5 59.5q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5
+t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
+    <glyph glyph-name="fire" unicode="&#xf06d;" horiz-adv-x="1408" 
+d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1
+q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
+    <glyph glyph-name="eye_open" unicode="&#xf06e;" horiz-adv-x="1792" 
+d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5
+t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
+    <glyph glyph-name="eye_close" unicode="&#xf070;" horiz-adv-x="1792" 
+d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9
+q-106 -189 -316 -567t-315 -566l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5
+q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z
+" />
+    <glyph glyph-name="warning_sign" unicode="&#xf071;" horiz-adv-x="1792" 
+d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185
+q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
+    <glyph glyph-name="plane" unicode="&#xf072;" horiz-adv-x="1408" 
+d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9
+q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
+    <glyph glyph-name="calendar" unicode="&#xf073;" horiz-adv-x="1664" 
+d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z
+M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64
+q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47
+h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="random" unicode="&#xf074;" horiz-adv-x="1792" 
+d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1
+t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5
+v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111
+t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
+    <glyph glyph-name="comment" unicode="&#xf075;" horiz-adv-x="1792" 
+d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281
+q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
+    <glyph glyph-name="magnet" unicode="&#xf076;" 
+d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384
+q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="chevron_up" unicode="&#xf077;" horiz-adv-x="1792" 
+d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
+    <glyph glyph-name="chevron_down" unicode="&#xf078;" horiz-adv-x="1792" 
+d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
+    <glyph glyph-name="retweet" unicode="&#xf079;" horiz-adv-x="1920" 
+d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -10 7 -21
+zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z
+" />
+    <glyph glyph-name="shopping_cart" unicode="&#xf07a;" horiz-adv-x="1664" 
+d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45
+t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="folder_close" unicode="&#xf07b;" horiz-adv-x="1664" 
+d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="folder_open" unicode="&#xf07c;" horiz-adv-x="1920" 
+d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5
+t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="resize_vertical" unicode="&#xf07d;" horiz-adv-x="768" 
+d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
+    <glyph glyph-name="resize_horizontal" unicode="&#xf07e;" horiz-adv-x="1792" 
+d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
+    <glyph glyph-name="bar_chart" unicode="&#xf080;" horiz-adv-x="2048" 
+d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
+    <glyph glyph-name="twitter_sign" unicode="&#xf081;" 
+d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4
+q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5
+t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="facebook_sign" unicode="&#xf082;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960
+q0 119 84.5 203.5t203.5 84.5h960z" />
+    <glyph glyph-name="camera_retro" unicode="&#xf083;" horiz-adv-x="1792" 
+d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5
+t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280
+q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="key" unicode="&#xf084;" horiz-adv-x="1792" 
+d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26
+l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5
+t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
+    <glyph glyph-name="cogs" unicode="&#xf085;" horiz-adv-x="1920" 
+d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5
+t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -11 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5
+l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7
+l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -8 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31
+q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20
+t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68
+q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70
+q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
+    <glyph glyph-name="comments" unicode="&#xf086;" horiz-adv-x="1792" 
+d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224
+q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7
+q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
+    <glyph glyph-name="thumbs_up_alt" unicode="&#xf087;" 
+d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5
+t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769
+q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128
+q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
+    <glyph glyph-name="thumbs_down_alt" unicode="&#xf088;" 
+d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 31 18 69q0 37 -17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5
+t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z
+M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5
+h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -73 49 -163z" />
+    <glyph glyph-name="star_half" unicode="&#xf089;" horiz-adv-x="896" 
+d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
+    <glyph glyph-name="heart_empty" unicode="&#xf08a;" horiz-adv-x="1792" 
+d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559
+q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5
+q224 0 351 -124t127 -344z" />
+    <glyph glyph-name="signout" unicode="&#xf08b;" horiz-adv-x="1664" 
+d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704
+q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
+    <glyph glyph-name="linkedin_sign" unicode="&#xf08c;" 
+d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5
+q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="pushpin" unicode="&#xf08d;" horiz-adv-x="1152" 
+d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38
+t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
+    <glyph glyph-name="external_link" unicode="&#xf08e;" horiz-adv-x="1792" 
+d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320
+q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="signin" unicode="&#xf090;" 
+d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5
+q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="trophy" unicode="&#xf091;" horiz-adv-x="1664" 
+d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91
+t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96
+q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="github_sign" unicode="&#xf092;" 
+d="M519 336q4 6 -3 13q-9 7 -14 2q-4 -6 3 -13q9 -7 14 -2zM491 377q-5 7 -12 4q-6 -4 0 -12q7 -8 12 -5q6 4 0 13zM450 417q2 4 -5 8q-7 2 -8 -2q-3 -5 4 -8q8 -2 9 2zM471 394q2 1 1.5 4.5t-3.5 5.5q-6 7 -10 3t1 -11q6 -6 11 -2zM557 319q2 7 -9 11q-9 3 -13 -4
+q-2 -7 9 -11q9 -3 13 4zM599 316q0 8 -12 8q-10 0 -10 -8t11 -8t11 8zM638 323q-2 7 -13 5t-9 -9q2 -8 12 -6t10 10zM1280 640q0 212 -150 362t-362 150t-362 -150t-150 -362q0 -167 98 -300.5t252 -185.5q18 -3 26.5 5t8.5 20q0 52 -1 95q-6 -1 -15.5 -2.5t-35.5 -2t-48 4
+t-43.5 20t-29.5 41.5q-23 59 -57 74q-2 1 -4.5 3.5l-8 8t-7 9.5t4 7.5t19.5 3.5q6 0 15 -2t30 -15.5t33 -35.5q16 -28 37.5 -42t43.5 -14t38 3.5t30 9.5q7 47 33 69q-49 6 -86 18.5t-73 39t-55.5 76t-19.5 119.5q0 79 53 137q-24 62 5 136q19 6 54.5 -7.5t60.5 -29.5l26 -16
+q58 17 128 17t128 -17q11 7 28.5 18t55.5 26t57 9q29 -74 5 -136q53 -58 53 -137q0 -57 -14 -100.5t-35.5 -70t-53.5 -44.5t-62.5 -26t-68.5 -12q35 -31 35 -95q0 -40 -0.5 -89t-0.5 -51q0 -12 8.5 -20t26.5 -5q154 52 252 185.5t98 300.5zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="upload_alt" unicode="&#xf093;" horiz-adv-x="1664" 
+d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92
+t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
+    <glyph glyph-name="lemon" unicode="&#xf094;" 
+d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5
+q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44
+q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5
+q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -13 2 -25t3.5 -16.5t7.5 -20.5t8 -20q16 -40 25 -118.5t9 -136.5z" />
+    <glyph glyph-name="phone" unicode="&#xf095;" horiz-adv-x="1408" 
+d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -53 3.5t-57.5 12.5t-47 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-127 79 -264 216t-216 264q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47t-12.5 57.5t-3.5 53q0 92 51 186
+q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174q2 -1 19 -11.5t24 -14
+t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
+    <glyph glyph-name="check_empty" unicode="&#xf096;" horiz-adv-x="1408" 
+d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
+q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="bookmark_empty" unicode="&#xf097;" horiz-adv-x="1280" 
+d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289
+q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
+    <glyph glyph-name="phone_sign" unicode="&#xf098;" 
+d="M1280 343q0 11 -2 16t-18 16.5t-40.5 25t-47.5 26.5t-45.5 25t-28.5 15q-5 3 -19 13t-25 15t-21 5q-15 0 -36.5 -20.5t-39.5 -45t-38.5 -45t-33.5 -20.5q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170 126.5t-127 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5
+t-3.5 16.5q0 13 20.5 33.5t45 38.5t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5
+t320.5 -216.5q6 -2 30 -11t33 -12.5t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z
+" />
+    <glyph glyph-name="twitter" unicode="&#xf099;" horiz-adv-x="1664" 
+d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41
+q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
+    <glyph glyph-name="facebook" unicode="&#xf09a;" horiz-adv-x="1024" 
+d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
+    <glyph glyph-name="github" unicode="&#xf09b;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -40 7t-13 30q0 3 0.5 76.5t0.5 134.5q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 119 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24
+q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-85 13.5q-45 -113 -8 -204q-79 -87 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-39 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5
+t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -88.5t0.5 -54.5q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103zM291 305q3 7 -7 12
+q-10 3 -13 -2q-3 -7 7 -12q9 -6 13 2zM322 271q7 5 -2 16q-10 9 -16 3q-7 -5 2 -16q10 -10 16 -3zM352 226q9 7 0 19q-8 13 -17 6q-9 -5 0 -18t17 -7zM394 184q8 8 -4 19q-12 12 -20 3q-9 -8 4 -19q12 -12 20 -3zM451 159q3 11 -13 16q-15 4 -19 -7t13 -15q15 -6 19 6z
+M514 154q0 13 -17 11q-16 0 -16 -11q0 -13 17 -11q16 0 16 11zM572 164q-2 11 -18 9q-16 -3 -14 -15t18 -8t14 14z" />
+    <glyph glyph-name="unlock" unicode="&#xf09c;" horiz-adv-x="1664" 
+d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5
+t316.5 -131.5t131.5 -316.5z" />
+    <glyph glyph-name="credit_card" unicode="&#xf09d;" horiz-adv-x="1920" 
+d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608
+q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
+    <glyph glyph-name="rss" unicode="&#xf09e;" horiz-adv-x="1408" 
+d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5
+t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294
+q187 -186 294 -425.5t120 -501.5z" />
+    <glyph glyph-name="hdd" unicode="&#xf0a0;" 
+d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5
+h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75
+l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
+    <glyph glyph-name="bullhorn" unicode="&#xf0a1;" horiz-adv-x="1792" 
+d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5
+t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
+    <glyph glyph-name="bell" unicode="&#xf0a2;" horiz-adv-x="1792" 
+d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z
+M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5
+t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
+    <glyph glyph-name="certificate" unicode="&#xf0a3;" 
+d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70
+l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70
+l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
+    <glyph glyph-name="hand_right" unicode="&#xf0a4;" horiz-adv-x="1792" 
+d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106
+q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43
+q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5
+t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
+    <glyph glyph-name="hand_left" unicode="&#xf0a5;" horiz-adv-x="1792" 
+d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-8 9 -12 14q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576q-50 0 -89 -38.5
+t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45z
+M1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128q0 122 81.5 189t206.5 67
+q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="hand_up" unicode="&#xf0a6;" 
+d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576
+q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5
+t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76
+q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
+    <glyph glyph-name="hand_down" unicode="&#xf0a7;" 
+d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33
+t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580
+q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100
+q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
+    <glyph glyph-name="circle_arrow_left" unicode="&#xf0a8;" 
+d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="circle_arrow_right" unicode="&#xf0a9;" 
+d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="circle_arrow_up" unicode="&#xf0aa;" 
+d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="circle_arrow_down" unicode="&#xf0ab;" 
+d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="globe" unicode="&#xf0ac;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11
+q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 11t-9.5 10q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5
+q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5
+q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5
+t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-4 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3
+q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25
+q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5
+t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5
+t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10.5t17 -19.5q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21
+q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5
+q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3
+q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5
+t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q8 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5
+q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7
+q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
+    <glyph glyph-name="wrench" unicode="&#xf0ad;" horiz-adv-x="1664" 
+d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5
+t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
+    <glyph glyph-name="tasks" unicode="&#xf0ae;" horiz-adv-x="1792" 
+d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19
+t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="filter" unicode="&#xf0b0;" horiz-adv-x="1408" 
+d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
+    <glyph glyph-name="briefcase" unicode="&#xf0b1;" horiz-adv-x="1792" 
+d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68
+t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="fullscreen" unicode="&#xf0b2;" 
+d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144
+l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z
+" />
+    <glyph glyph-name="group" unicode="&#xf0c0;" horiz-adv-x="1920" 
+d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5
+t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75
+t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5
+t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
+    <glyph glyph-name="link" unicode="&#xf0c1;" horiz-adv-x="1664" 
+d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26
+l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15
+t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207
+q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
+    <glyph glyph-name="cloud" unicode="&#xf0c2;" horiz-adv-x="1920" 
+d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z
+" />
+    <glyph glyph-name="beaker" unicode="&#xf0c3;" horiz-adv-x="1664" 
+d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
+    <glyph glyph-name="cut" unicode="&#xf0c4;" horiz-adv-x="1792" 
+d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84
+q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148
+q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108
+q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6
+q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
+    <glyph glyph-name="copy" unicode="&#xf0c5;" horiz-adv-x="1792" 
+d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299
+h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
+    <glyph glyph-name="paper_clip" unicode="&#xf0c6;" horiz-adv-x="1408" 
+d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181
+l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235
+z" />
+    <glyph glyph-name="save" unicode="&#xf0c7;" 
+d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5
+h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
+    <glyph glyph-name="sign_blank" unicode="&#xf0c8;" 
+d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="reorder" unicode="&#xf0c9;" 
+d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45
+t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="ul" unicode="&#xf0ca;" horiz-adv-x="1792" 
+d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
+t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z
+M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="ol" unicode="&#xf0cb;" horiz-adv-x="1792" 
+d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362
+q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5
+t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 121.5t0.5 121.5v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216
+q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="strikethrough" unicode="&#xf0cc;" horiz-adv-x="1792" 
+d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 98 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6
+l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -56 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23
+l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
+    <glyph glyph-name="underline" unicode="&#xf0cd;" 
+d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47
+q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41
+q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472
+q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
+    <glyph glyph-name="table" unicode="&#xf0ce;" horiz-adv-x="1664" 
+d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23
+v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192
+q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192
+q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113
+z" />
+    <glyph glyph-name="magic" unicode="&#xf0d0;" horiz-adv-x="1664" 
+d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276
+l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
+    <glyph glyph-name="truck" unicode="&#xf0d1;" horiz-adv-x="1792" 
+d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5
+t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38
+t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="pinterest" unicode="&#xf0d2;" 
+d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134
+q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33
+q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="pinterest_sign" unicode="&#xf0d3;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5
+t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5
+t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
+    <glyph glyph-name="google_plus_sign" unicode="&#xf0d4;" 
+d="M917 631q0 26 -6 64h-362v-132h217q-3 -24 -16.5 -50t-37.5 -53t-66.5 -44.5t-96.5 -17.5q-99 0 -169 71t-70 171t70 171t169 71q92 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585
+h109v110h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="google_plus" unicode="&#xf0d5;" horiz-adv-x="2304" 
+d="M1437 623q0 -208 -87 -370.5t-248 -254t-369 -91.5q-149 0 -285 58t-234 156t-156 234t-58 285t58 285t156 234t234 156t285 58q286 0 491 -192l-199 -191q-117 113 -292 113q-123 0 -227.5 -62t-165.5 -168.5t-61 -232.5t61 -232.5t165.5 -168.5t227.5 -62
+q83 0 152.5 23t114.5 57.5t78.5 78.5t49 83t21.5 74h-416v252h692q12 -63 12 -122zM2304 745v-210h-209v-209h-210v209h-209v210h209v209h210v-209h209z" />
+    <glyph glyph-name="money" unicode="&#xf0d6;" horiz-adv-x="1920" 
+d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384
+v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="caret_down" unicode="&#xf0d7;" horiz-adv-x="1024" 
+d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="caret_up" unicode="&#xf0d8;" horiz-adv-x="1024" 
+d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="caret_left" unicode="&#xf0d9;" horiz-adv-x="640" 
+d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
+    <glyph glyph-name="caret_right" unicode="&#xf0da;" horiz-adv-x="640" 
+d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="columns" unicode="&#xf0db;" horiz-adv-x="1664" 
+d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="sort" unicode="&#xf0dc;" horiz-adv-x="1024" 
+d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="sort_down" unicode="&#xf0dd;" horiz-adv-x="1024" 
+d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="sort_up" unicode="&#xf0de;" horiz-adv-x="1024" 
+d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="envelope_alt" unicode="&#xf0e0;" horiz-adv-x="1792" 
+d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123
+q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
+    <glyph glyph-name="linkedin" unicode="&#xf0e1;" 
+d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329
+q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
+    <glyph glyph-name="undo" unicode="&#xf0e2;" 
+d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
+t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
+    <glyph glyph-name="legal" unicode="&#xf0e3;" horiz-adv-x="1792" 
+d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5
+t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14
+q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28
+q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
+    <glyph glyph-name="dashboard" unicode="&#xf0e4;" horiz-adv-x="1792" 
+d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5
+t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5
+t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29
+q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="comment_alt" unicode="&#xf0e5;" horiz-adv-x="1792" 
+d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640
+q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5
+t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
+    <glyph glyph-name="comments_alt" unicode="&#xf0e6;" horiz-adv-x="1792" 
+d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257
+t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5
+t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129
+q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
+    <glyph glyph-name="bolt" unicode="&#xf0e7;" horiz-adv-x="896" 
+d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
+    <glyph glyph-name="sitemap" unicode="&#xf0e8;" horiz-adv-x="1792" 
+d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320
+q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68
+z" />
+    <glyph glyph-name="umbrella" unicode="&#xf0e9;" horiz-adv-x="1664" 
+d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97
+q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69
+q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
+    <glyph glyph-name="paste" unicode="&#xf0ea;" horiz-adv-x="1792" 
+d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28
+h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
+    <glyph glyph-name="light_bulb" unicode="&#xf0eb;" horiz-adv-x="1024" 
+d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134
+q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47
+q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5
+t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
+    <glyph glyph-name="exchange" unicode="&#xf0ec;" horiz-adv-x="1792" 
+d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9
+q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
+    <glyph glyph-name="cloud_download" unicode="&#xf0ed;" horiz-adv-x="1920" 
+d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
+q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
+    <glyph glyph-name="cloud_upload" unicode="&#xf0ee;" horiz-adv-x="1920" 
+d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
+q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
+    <glyph glyph-name="user_md" unicode="&#xf0f0;" horiz-adv-x="1408" 
+d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56
+t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68
+t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5
+t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="stethoscope" unicode="&#xf0f1;" horiz-adv-x="1408" 
+d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48
+t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252
+t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
+    <glyph glyph-name="suitcase" unicode="&#xf0f2;" horiz-adv-x="1792" 
+d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66
+t66 -158z" />
+    <glyph glyph-name="bell_alt" unicode="&#xf0f3;" horiz-adv-x="1792" 
+d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5
+t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
+    <glyph glyph-name="coffee" unicode="&#xf0f4;" horiz-adv-x="1920" 
+d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45
+t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="food" unicode="&#xf0f5;" horiz-adv-x="1408" 
+d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45
+t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="file_text_alt" unicode="&#xf0f6;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704
+q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
+    <glyph glyph-name="building" unicode="&#xf0f7;" horiz-adv-x="1408" 
+d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="hospital" unicode="&#xf0f8;" horiz-adv-x="1408" 
+d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5
+t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320
+v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="ambulance" unicode="&#xf0f9;" horiz-adv-x="1920" 
+d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5
+t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152
+q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="medkit" unicode="&#xf0fa;" horiz-adv-x="1792" 
+d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32
+q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="fighter_jet" unicode="&#xf0fb;" horiz-adv-x="1920" 
+d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96
+q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q128 -28 200 -52t80 -34z" />
+    <glyph glyph-name="beer" unicode="&#xf0fc;" horiz-adv-x="1664" 
+d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
+    <glyph glyph-name="h_sign" unicode="&#xf0fd;" 
+d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="f0fe" unicode="&#xf0fe;" 
+d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="double_angle_left" unicode="&#xf100;" horiz-adv-x="1024" 
+d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
+t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
+    <glyph glyph-name="double_angle_right" unicode="&#xf101;" horiz-adv-x="1024" 
+d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23
+l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="double_angle_up" unicode="&#xf102;" horiz-adv-x="1152" 
+d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393
+q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="double_angle_down" unicode="&#xf103;" horiz-adv-x="1152" 
+d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
+t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+    <glyph glyph-name="angle_left" unicode="&#xf104;" horiz-adv-x="640" 
+d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+    <glyph glyph-name="angle_right" unicode="&#xf105;" horiz-adv-x="640" 
+d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="angle_up" unicode="&#xf106;" horiz-adv-x="1152" 
+d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="angle_down" unicode="&#xf107;" horiz-adv-x="1152" 
+d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+    <glyph glyph-name="desktop" unicode="&#xf108;" horiz-adv-x="1920" 
+d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19
+t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="laptop" unicode="&#xf109;" horiz-adv-x="1920" 
+d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z
+M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
+    <glyph glyph-name="tablet" unicode="&#xf10a;" horiz-adv-x="1152" 
+d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832
+q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="mobile_phone" unicode="&#xf10b;" horiz-adv-x="768" 
+d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136
+q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="circle_blank" unicode="&#xf10c;" 
+d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103
+t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="quote_left" unicode="&#xf10d;" horiz-adv-x="1664" 
+d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z
+M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
+    <glyph glyph-name="quote_right" unicode="&#xf10e;" horiz-adv-x="1664" 
+d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216
+v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
+    <glyph glyph-name="spinner" unicode="&#xf110;" horiz-adv-x="1792" 
+d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5
+t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z
+M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5
+q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="circle" unicode="&#xf111;" 
+d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="reply" unicode="&#xf112;" horiz-adv-x="1792" 
+d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19
+l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
+    <glyph glyph-name="github_alt" unicode="&#xf113;" horiz-adv-x="1664" 
+d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320
+q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86
+t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218
+q0 -87 -27 -168q136 -160 136 -398z" />
+    <glyph glyph-name="folder_close_alt" unicode="&#xf114;" horiz-adv-x="1664" 
+d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320
+q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="folder_open_alt" unicode="&#xf115;" horiz-adv-x="1920" 
+d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68
+v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z
+" />
+    <glyph glyph-name="expand_alt" unicode="&#xf116;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="collapse_alt" unicode="&#xf117;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="smile" unicode="&#xf118;" 
+d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
+t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5
+t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="frown" unicode="&#xf119;" 
+d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
+t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204
+t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="meh" unicode="&#xf11a;" 
+d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
+t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="gamepad" unicode="&#xf11b;" horiz-adv-x="1920" 
+d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
+t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150
+t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
+    <glyph glyph-name="keyboard" unicode="&#xf11c;" horiz-adv-x="1920" 
+d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16
+h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16
+h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96
+q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896
+h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="flag_alt" unicode="&#xf11d;" horiz-adv-x="1792" 
+d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9
+h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102
+q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
+    <glyph glyph-name="flag_checkered" unicode="&#xf11e;" horiz-adv-x="1792" 
+d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2
+q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266
+q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8
+q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
+    <glyph glyph-name="terminal" unicode="&#xf120;" horiz-adv-x="1664" 
+d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9
+t9 -23z" />
+    <glyph glyph-name="code" unicode="&#xf121;" horiz-adv-x="1920" 
+d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5
+l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
+    <glyph glyph-name="reply_all" unicode="&#xf122;" horiz-adv-x="1792" 
+d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1
+q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
+    <glyph glyph-name="star_half_empty" unicode="&#xf123;" horiz-adv-x="1664" 
+d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5
+l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
+    <glyph glyph-name="location_arrow" unicode="&#xf124;" horiz-adv-x="1408" 
+d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
+    <glyph glyph-name="crop" unicode="&#xf125;" horiz-adv-x="1664" 
+d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23
+v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="code_fork" unicode="&#xf126;" horiz-adv-x="1024" 
+d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5
+q-2 -287 -226 -414q-67 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497
+q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
+    <glyph glyph-name="unlink" unicode="&#xf127;" horiz-adv-x="1664" 
+d="M439 265l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320
+q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18
+l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9
+t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
+    <glyph glyph-name="question" unicode="&#xf128;" horiz-adv-x="1024" 
+d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5
+t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
+    <glyph glyph-name="_279" unicode="&#xf129;" horiz-adv-x="640" 
+d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192
+q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="exclamation" unicode="&#xf12a;" horiz-adv-x="640" 
+d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
+    <glyph glyph-name="superscript" unicode="&#xf12b;" 
+d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
+M1534 846v-206h-514l-3 27q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5
+t-65.5 -51.5t-30.5 -63h232v80h126z" />
+    <glyph glyph-name="subscript" unicode="&#xf12c;" 
+d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
+M1536 -50v-206h-514l-4 27q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73
+h232v80h126z" />
+    <glyph glyph-name="_283" unicode="&#xf12d;" horiz-adv-x="1920" 
+d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
+    <glyph glyph-name="puzzle_piece" unicode="&#xf12e;" horiz-adv-x="1664" 
+d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5
+t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89
+q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117
+q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
+    <glyph glyph-name="microphone" unicode="&#xf130;" horiz-adv-x="1152" 
+d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5
+t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
+    <glyph glyph-name="microphone_off" unicode="&#xf131;" horiz-adv-x="1408" 
+d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128
+q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23
+t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
+    <glyph glyph-name="shield" unicode="&#xf132;" horiz-adv-x="1280" 
+d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150
+t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="calendar_empty" unicode="&#xf133;" horiz-adv-x="1664" 
+d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280
+q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="fire_extinguisher" unicode="&#xf134;" horiz-adv-x="1408" 
+d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800
+q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113
+q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
+    <glyph glyph-name="rocket" unicode="&#xf135;" horiz-adv-x="1664" 
+d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1
+q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
+    <glyph glyph-name="maxcdn" unicode="&#xf136;" horiz-adv-x="1792" 
+d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
+    <glyph glyph-name="chevron_sign_left" unicode="&#xf137;" 
+d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="chevron_sign_right" unicode="&#xf138;" 
+d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="chevron_sign_up" unicode="&#xf139;" 
+d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="chevron_sign_down" unicode="&#xf13a;" 
+d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="html5" unicode="&#xf13b;" horiz-adv-x="1408" 
+d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
+    <glyph glyph-name="css3" unicode="&#xf13c;" horiz-adv-x="1792" 
+d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
+    <glyph glyph-name="anchor" unicode="&#xf13d;" horiz-adv-x="1792" 
+d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352
+q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19
+t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="unlock_alt" unicode="&#xf13e;" horiz-adv-x="1152" 
+d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181
+v-320h736z" />
+    <glyph glyph-name="bullseye" unicode="&#xf140;" 
+d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150
+t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ellipsis_horizontal" unicode="&#xf141;" horiz-adv-x="1408" 
+d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="ellipsis_vertical" unicode="&#xf142;" horiz-adv-x="384" 
+d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="_303" unicode="&#xf143;" 
+d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 233 -176.5 396.5t-396.5 176.5q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128
+q13 0 23 10t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="play_sign" unicode="&#xf144;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56
+q16 -8 32 -8q17 0 32 9z" />
+    <glyph glyph-name="ticket" unicode="&#xf145;" horiz-adv-x="1792" 
+d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136
+t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
+    <glyph glyph-name="minus_sign_alt" unicode="&#xf146;" 
+d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
+t84.5 -203.5z" />
+    <glyph glyph-name="check_minus" unicode="&#xf147;" horiz-adv-x="1408" 
+d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5
+t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="level_up" unicode="&#xf148;" horiz-adv-x="1024" 
+d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
+    <glyph glyph-name="level_down" unicode="&#xf149;" horiz-adv-x="1024" 
+d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
+    <glyph glyph-name="check_sign" unicode="&#xf14a;" 
+d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5
+t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="edit_sign" unicode="&#xf14b;" 
+d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120
+v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_312" unicode="&#xf14c;" 
+d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960
+q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="share_sign" unicode="&#xf14d;" 
+d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q11 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5
+t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="compass" unicode="&#xf14e;" 
+d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="collapse" unicode="&#xf150;" 
+d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120
+v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="collapse_top" unicode="&#xf151;" 
+d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_317" unicode="&#xf152;" 
+d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5
+t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="eur" unicode="&#xf153;" horiz-adv-x="1024" 
+d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9
+t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26
+l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
+    <glyph glyph-name="gbp" unicode="&#xf154;" horiz-adv-x="1024" 
+d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7
+q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
+    <glyph glyph-name="usd" unicode="&#xf155;" horiz-adv-x="1024" 
+d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43
+t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5
+t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50
+t53 -63.5t31.5 -76.5t13 -94z" />
+    <glyph glyph-name="inr" unicode="&#xf156;" horiz-adv-x="898" 
+d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102
+q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="jpy" unicode="&#xf157;" horiz-adv-x="1027" 
+d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61
+l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
+    <glyph glyph-name="rub" unicode="&#xf158;" horiz-adv-x="1280" 
+d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128
+q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
+    <glyph glyph-name="krw" unicode="&#xf159;" horiz-adv-x="1792" 
+d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23
+t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28
+q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="btc" unicode="&#xf15a;" horiz-adv-x="1280" 
+d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164
+l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30
+t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
+    <glyph glyph-name="file" unicode="&#xf15b;" 
+d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
+    <glyph glyph-name="file_text" unicode="&#xf15c;" 
+d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704
+q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
+    <glyph glyph-name="sort_by_alphabet" unicode="&#xf15d;" horiz-adv-x="1664" 
+d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23
+v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162
+l230 -662h70z" />
+    <glyph glyph-name="_329" unicode="&#xf15e;" horiz-adv-x="1664" 
+d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150
+v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248
+v119h121z" />
+    <glyph glyph-name="sort_by_attributes" unicode="&#xf160;" horiz-adv-x="1792" 
+d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832
+q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256
+q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="sort_by_attributes_alt" unicode="&#xf161;" horiz-adv-x="1792" 
+d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192
+q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832
+q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="sort_by_order" unicode="&#xf162;" 
+d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23
+zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5
+t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
+    <glyph glyph-name="sort_by_order_alt" unicode="&#xf163;" 
+d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9
+t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13
+q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
+    <glyph glyph-name="_334" unicode="&#xf164;" horiz-adv-x="1664" 
+d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76
+q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5
+t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
+    <glyph glyph-name="_335" unicode="&#xf165;" horiz-adv-x="1664" 
+d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135
+t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121
+t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
+    <glyph glyph-name="youtube_sign" unicode="&#xf166;" 
+d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 17 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15
+q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38
+q21 -29 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5
+q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78q7 -23 23 -69l24 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38
+q-51 0 -78 -38q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5
+h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="youtube" unicode="&#xf167;" 
+d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73
+q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51
+q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99
+q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-38 -51 -106 -51q-67 0 -105 51
+q-28 38 -28 118v175q0 80 28 117q38 51 105 51q68 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
+    <glyph glyph-name="xing" unicode="&#xf168;" horiz-adv-x="1408" 
+d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942
+q25 45 64 45h241q22 0 31 -15z" />
+    <glyph glyph-name="xing_sign" unicode="&#xf169;" 
+d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1
+l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="youtube_play" unicode="&#xf16a;" horiz-adv-x="1792" 
+d="M711 408l484 250l-484 253v-503zM896 1270q168 0 324.5 -4.5t229.5 -9.5l73 -4q1 0 17 -1.5t23 -3t23.5 -4.5t28.5 -8t28 -13t31 -19.5t29 -26.5q6 -6 15.5 -18.5t29 -58.5t26.5 -101q8 -64 12.5 -136.5t5.5 -113.5v-40v-136q1 -145 -18 -290q-7 -55 -25 -99.5t-32 -61.5
+l-14 -17q-14 -15 -29 -26.5t-31 -19t-28 -12.5t-28.5 -8t-24 -4.5t-23 -3t-16.5 -1.5q-251 -19 -627 -19q-207 2 -359.5 6.5t-200.5 7.5l-49 4l-36 4q-36 5 -54.5 10t-51 21t-56.5 41q-6 6 -15.5 18.5t-29 58.5t-26.5 101q-8 64 -12.5 136.5t-5.5 113.5v40v136
+q-1 145 18 290q7 55 25 99.5t32 61.5l14 17q14 15 29 26.5t31 19.5t28 13t28.5 8t23.5 4.5t23 3t17 1.5q251 18 627 18z" />
+    <glyph glyph-name="dropbox" unicode="&#xf16b;" horiz-adv-x="1792" 
+d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
+    <glyph glyph-name="stackexchange" unicode="&#xf16c;" 
+d="M1289 -96h-1118v480h-160v-640h1438v640h-160v-480zM347 428l33 157l783 -165l-33 -156zM450 802l67 146l725 -339l-67 -145zM651 1158l102 123l614 -513l-102 -123zM1048 1536l477 -641l-128 -96l-477 641zM330 65v159h800v-159h-800z" />
+    <glyph glyph-name="instagram" unicode="&#xf16d;" 
+d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1162 640q0 -164 -115 -279t-279 -115t-279 115t-115 279t115 279t279 115t279 -115t115 -279zM1270 1050q0 -38 -27 -65t-65 -27t-65 27t-27 65t27 65t65 27t65 -27t27 -65zM768 1270
+q-7 0 -76.5 0.5t-105.5 0t-96.5 -3t-103 -10t-71.5 -18.5q-50 -20 -88 -58t-58 -88q-11 -29 -18.5 -71.5t-10 -103t-3 -96.5t0 -105.5t0.5 -76.5t-0.5 -76.5t0 -105.5t3 -96.5t10 -103t18.5 -71.5q20 -50 58 -88t88 -58q29 -11 71.5 -18.5t103 -10t96.5 -3t105.5 0t76.5 0.5
+t76.5 -0.5t105.5 0t96.5 3t103 10t71.5 18.5q50 20 88 58t58 88q11 29 18.5 71.5t10 103t3 96.5t0 105.5t-0.5 76.5t0.5 76.5t0 105.5t-3 96.5t-10 103t-18.5 71.5q-20 50 -58 88t-88 58q-29 11 -71.5 18.5t-103 10t-96.5 3t-105.5 0t-76.5 -0.5zM1536 640q0 -229 -5 -317
+q-10 -208 -124 -322t-322 -124q-88 -5 -317 -5t-317 5q-208 10 -322 124t-124 322q-5 88 -5 317t5 317q10 208 124 322t322 124q88 5 317 5t317 -5q208 -10 322 -124t124 -322q5 -88 5 -317z" />
+    <glyph glyph-name="flickr" unicode="&#xf16e;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150
+t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
+    <glyph glyph-name="adn" unicode="&#xf170;" 
+d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="f171" unicode="&#xf171;" horiz-adv-x="1408" 
+d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22
+t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18
+t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5
+t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
+    <glyph glyph-name="bitbucket_sign" unicode="&#xf172;" 
+d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5
+t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z
+M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120
+v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="tumblr" unicode="&#xf173;" horiz-adv-x="1024" 
+d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14
+q78 2 134 29z" />
+    <glyph glyph-name="tumblr_sign" unicode="&#xf174;" 
+d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z
+M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="long_arrow_down" unicode="&#xf175;" horiz-adv-x="768" 
+d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
+    <glyph glyph-name="long_arrow_up" unicode="&#xf176;" horiz-adv-x="768" 
+d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
+    <glyph glyph-name="long_arrow_left" unicode="&#xf177;" horiz-adv-x="1792" 
+d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="long_arrow_right" unicode="&#xf178;" horiz-adv-x="1792" 
+d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
+    <glyph glyph-name="apple" unicode="&#xf179;" horiz-adv-x="1408" 
+d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q113 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65
+q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
+    <glyph glyph-name="windows" unicode="&#xf17a;" horiz-adv-x="1664" 
+d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
+    <glyph glyph-name="android" unicode="&#xf17b;" horiz-adv-x="1408" 
+d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30
+t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5
+h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
+    <glyph glyph-name="linux" unicode="&#xf17c;" 
+d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-10 -11 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z
+M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7
+q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15
+q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5
+t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19
+q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63
+q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18q-2 -1 -4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92
+q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152
+q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-6 0 -8 -2t0 -4
+t5 -3q14 -4 18 -31q0 -3 8 2q2 2 2 3zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5
+t-30 -18.5t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43
+q-19 4 -51 9.5t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49
+t-14 -48q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54
+q110 143 124 195q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5
+t-40.5 -33.5t-61 -14q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5
+t15.5 47.5q1 -31 8 -56.5t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
+    <glyph glyph-name="dribble" unicode="&#xf17d;" 
+d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81
+t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19
+q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -5 6.5 -17t7.5 -17q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6
+t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="skype" unicode="&#xf17e;" 
+d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5
+t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5
+q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80
+q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
+    <glyph glyph-name="foursquare" unicode="&#xf180;" horiz-adv-x="1280" 
+d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z
+M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324
+l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
+    <glyph glyph-name="trello" unicode="&#xf181;" 
+d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408
+q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="female" unicode="&#xf182;" horiz-adv-x="1280" 
+d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43
+q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="male" unicode="&#xf183;" horiz-adv-x="1024" 
+d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z
+M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="gittip" unicode="&#xf184;" 
+d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="sun" unicode="&#xf185;" horiz-adv-x="1792" 
+d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4
+l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94
+q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
+    <glyph glyph-name="_366" unicode="&#xf186;" 
+d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61
+t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
+    <glyph glyph-name="archive" unicode="&#xf187;" horiz-adv-x="1792" 
+d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536
+q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="bug" unicode="&#xf188;" horiz-adv-x="1664" 
+d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207
+q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19
+t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
+    <glyph glyph-name="vk" unicode="&#xf189;" horiz-adv-x="1920" 
+d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-40 -51 -55 -72t-30.5 -49.5t-12 -42t13 -34.5t32.5 -43t57 -53q4 -2 5 -4q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58
+t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6
+q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q16 19 38 30q53 26 239 24
+q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2
+q39 5 64 -2.5t31 -16.5z" />
+    <glyph glyph-name="weibo" unicode="&#xf18a;" horiz-adv-x="1792" 
+d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12
+q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422
+q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178
+q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z
+M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
+    <glyph glyph-name="renren" unicode="&#xf18b;" 
+d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495
+q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
+    <glyph glyph-name="_372" unicode="&#xf18c;" horiz-adv-x="1408" 
+d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5
+t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56
+t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -4 1 -50t-1 -72q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5
+t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
+    <glyph glyph-name="stack_exchange" unicode="&#xf18d;" horiz-adv-x="1280" 
+d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z
+" />
+    <glyph glyph-name="_374" unicode="&#xf18e;" 
+d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
+t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="arrow_circle_alt_left" unicode="&#xf190;" 
+d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
+t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_376" unicode="&#xf191;" 
+d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z
+M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="dot_circle_alt" unicode="&#xf192;" 
+d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5
+t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_378" unicode="&#xf193;" horiz-adv-x="1664" 
+d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128
+q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 17 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
+    <glyph glyph-name="vimeo_square" unicode="&#xf194;" 
+d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179
+q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_380" unicode="&#xf195;" horiz-adv-x="1152" 
+d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160
+q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="plus_square_o" unicode="&#xf196;" horiz-adv-x="1408" 
+d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832
+q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_382" unicode="&#xf197;" horiz-adv-x="2176" 
+d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40
+t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29
+q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
+    <glyph glyph-name="_383" unicode="&#xf198;" horiz-adv-x="1664" 
+d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9
+q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102
+t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
+    <glyph glyph-name="_384" unicode="&#xf199;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69
+q-47 32 -142 92.5t-142 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13
+t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
+    <glyph glyph-name="_385" unicode="&#xf19a;" horiz-adv-x="1792" 
+d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5
+t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21
+t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286
+t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273
+t273 -182.5t331.5 -68z" />
+    <glyph glyph-name="_386" unicode="&#xf19b;" horiz-adv-x="1792" 
+d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
+    <glyph glyph-name="_387" unicode="&#xf19c;" horiz-adv-x="2048" 
+d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64
+q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
+    <glyph glyph-name="_388" unicode="&#xf19d;" horiz-adv-x="2304" 
+d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433
+q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
+    <glyph glyph-name="_389" unicode="&#xf19e;" 
+d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q44 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0
+q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
+    <glyph glyph-name="uniF1A0" unicode="&#xf1a0;" 
+d="M768 750h725q12 -67 12 -128q0 -217 -91 -387.5t-259.5 -266.5t-386.5 -96q-157 0 -299 60.5t-245 163.5t-163.5 245t-60.5 299t60.5 299t163.5 245t245 163.5t299 60.5q300 0 515 -201l-209 -201q-123 119 -306 119q-129 0 -238.5 -65t-173.5 -176.5t-64 -243.5
+t64 -243.5t173.5 -176.5t238.5 -65q87 0 160 24t120 60t82 82t51.5 87t22.5 78h-436v264z" />
+    <glyph glyph-name="f1a1" unicode="&#xf1a1;" horiz-adv-x="1792" 
+d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26
+t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37
+q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191
+t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_392" unicode="&#xf1a2;" 
+d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54
+q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83
+q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
+q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_393" unicode="&#xf1a3;" 
+d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150
+v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103
+t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="f1a4" unicode="&#xf1a4;" horiz-adv-x="1920" 
+d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328
+v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
+    <glyph glyph-name="_395" unicode="&#xf1a5;" 
+d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
+t84.5 -203.5z" />
+    <glyph glyph-name="_396" unicode="&#xf1a6;" horiz-adv-x="2048" 
+d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123
+v-369h123z" />
+    <glyph glyph-name="_397" unicode="&#xf1a7;" 
+d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101
+v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
+q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_398" unicode="&#xf1a8;" horiz-adv-x="2038" 
+d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14
+q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24
+q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33
+q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5
+t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43
+q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5
+t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13
+t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
+    <glyph glyph-name="_399" unicode="&#xf1a9;" 
+d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10
+q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14
+q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14
+t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44
+q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
+    <glyph glyph-name="_400" unicode="&#xf1aa;" 
+d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z
+M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5
+t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5
+q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126
+t135.5 51q85 0 145 -60.5t60 -145.5z" />
+    <glyph glyph-name="f1ab" unicode="&#xf1ab;" 
+d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5
+q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28
+q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z
+M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11
+q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q107 36 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5
+q20 0 20 -21v-418z" />
+    <glyph glyph-name="_402" unicode="&#xf1ac;" horiz-adv-x="1792" 
+d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48
+l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23
+t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128
+q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128
+q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
+    <glyph glyph-name="_403" unicode="&#xf1ad;" 
+d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9
+t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64
+q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64
+q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9
+t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64
+q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64
+q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9
+t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
+    <glyph glyph-name="_404" unicode="&#xf1ae;" horiz-adv-x="1280" 
+d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68q29 28 68.5 28t67.5 -28l228 -228h368l228 228q28 28 68 28t68 -28q28 -29 28 -68.5t-28 -67.5zM864 1152
+q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="uniF1B1" unicode="&#xf1b0;" horiz-adv-x="1664" 
+d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5
+q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819
+q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5
+t100.5 134t141.5 55.5z" />
+    <glyph glyph-name="_406" unicode="&#xf1b1;" horiz-adv-x="768" 
+d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
+    <glyph glyph-name="_407" unicode="&#xf1b2;" horiz-adv-x="1792" 
+d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z
+" />
+    <glyph glyph-name="_408" unicode="&#xf1b3;" horiz-adv-x="2304" 
+d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67
+t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-4 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70
+v-400l434 -186q36 -16 57 -48t21 -70z" />
+    <glyph glyph-name="_409" unicode="&#xf1b4;" horiz-adv-x="2048" 
+d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658
+q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204
+q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
+    <glyph glyph-name="_410" unicode="&#xf1b5;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5
+t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217
+t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
+    <glyph glyph-name="_411" unicode="&#xf1b6;" horiz-adv-x="1792" 
+d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5
+q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89
+q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
+    <glyph glyph-name="_412" unicode="&#xf1b7;" 
+d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5
+q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5
+q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z
+" />
+    <glyph glyph-name="_413" unicode="&#xf1b8;" horiz-adv-x="1792" 
+d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188
+l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5
+t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1
+q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
+    <glyph glyph-name="_414" unicode="&#xf1b9;" horiz-adv-x="2048" 
+d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384
+q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5
+l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="_415" unicode="&#xf1ba;" horiz-adv-x="2048" 
+d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5
+t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z
+M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
+    <glyph glyph-name="_416" unicode="&#xf1bb;" 
+d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384
+q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
+    <glyph glyph-name="_417" unicode="&#xf1bc;" 
+d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64
+q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37
+q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_418" unicode="&#xf1bd;" horiz-adv-x="1024" 
+d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" />
+    <glyph glyph-name="_419" unicode="&#xf1be;" horiz-adv-x="2304" 
+d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11
+q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245
+q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785
+l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242
+q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236
+q0 -11 -8 -19t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786
+q-13 2 -22 11t-9 22v899q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
+    <glyph glyph-name="uniF1C0" unicode="&#xf1c0;" 
+d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127
+t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5
+t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
+    <glyph glyph-name="uniF1C1" unicode="&#xf1c1;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197
+q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8
+q-1 1 -1 2q-1 2 -1 3q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
+    <glyph glyph-name="_422" unicode="&#xf1c2;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4q0 3 -0.5 6.5t-1.5 8t-1 6.5q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5
+t-3.5 -21.5l-4 -21h-4l-2 21q-2 26 -7 46l-99 438h90v107h-300z" />
+    <glyph glyph-name="_423" unicode="&#xf1c3;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107
+h-290v-107h68l189 -272l-194 -283h-68z" />
+    <glyph glyph-name="_424" unicode="&#xf1c4;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
+    <glyph glyph-name="_425" unicode="&#xf1c5;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
+    <glyph glyph-name="_426" unicode="&#xf1c6;" 
+d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400
+v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79
+q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
+    <glyph glyph-name="_427" unicode="&#xf1c7;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5
+q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
+    <glyph glyph-name="_428" unicode="&#xf1c8;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
+    <glyph glyph-name="_429" unicode="&#xf1c9;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243
+l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
+    <glyph glyph-name="_430" unicode="&#xf1ca;" 
+d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406
+q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
+    <glyph glyph-name="_431" unicode="&#xf1cb;" horiz-adv-x="1792" 
+d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546
+q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
+    <glyph glyph-name="_432" unicode="&#xf1cc;" horiz-adv-x="2048" 
+d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94
+q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55
+t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97l93 -108q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5t-85 -189.5z" />
+    <glyph glyph-name="_433" unicode="&#xf1cd;" horiz-adv-x="1792" 
+d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194
+q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5
+t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
+    <glyph glyph-name="_434" unicode="&#xf1ce;" horiz-adv-x="1792" 
+d="M1760 640q0 -176 -68.5 -336t-184 -275.5t-275.5 -184t-336 -68.5t-336 68.5t-275.5 184t-184 275.5t-68.5 336q0 213 97 398.5t265 305.5t374 151v-228q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5
+t136.5 204t51 248.5q0 230 -145.5 406t-366.5 221v228q206 -31 374 -151t265 -305.5t97 -398.5z" />
+    <glyph glyph-name="uniF1D0" unicode="&#xf1d0;" horiz-adv-x="1792" 
+d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41
+t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170
+t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136
+q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
+    <glyph glyph-name="uniF1D1" unicode="&#xf1d1;" horiz-adv-x="1792" 
+d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251
+l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162
+q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33
+q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5
+t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71
+t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF1D2" unicode="&#xf1d2;" 
+d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85
+q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392
+q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072
+q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_438" unicode="&#xf1d3;" horiz-adv-x="1792" 
+d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58
+q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47
+q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171
+v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
+    <glyph glyph-name="_439" unicode="&#xf1d4;" 
+d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="uniF1D5" unicode="&#xf1d5;" horiz-adv-x="1280" 
+d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5
+t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153
+t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
+    <glyph glyph-name="uniF1D6" unicode="&#xf1d6;" horiz-adv-x="1792" 
+d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5
+q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20
+t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5
+t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
+    <glyph glyph-name="uniF1D7" unicode="&#xf1d7;" horiz-adv-x="2048" 
+d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25
+q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5
+q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109
+q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
+    <glyph glyph-name="_443" unicode="&#xf1d8;" horiz-adv-x="1792" 
+d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
+    <glyph glyph-name="_444" unicode="&#xf1d9;" horiz-adv-x="1792" 
+d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137
+l863 639l-478 -797z" />
+    <glyph glyph-name="_445" unicode="&#xf1da;" 
+d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
+t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23
+t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_446" unicode="&#xf1db;" 
+d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_447" unicode="&#xf1dc;" horiz-adv-x="1792" 
+d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15
+t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2
+t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160
+q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5
+q0 -26 -12 -48t-36 -22z" />
+    <glyph glyph-name="_448" unicode="&#xf1dd;" horiz-adv-x="1280" 
+d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179
+q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
+    <glyph glyph-name="_449" unicode="&#xf1de;" 
+d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256
+q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
+    <glyph glyph-name="uniF1E0" unicode="&#xf1e0;" 
+d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5
+t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
+    <glyph glyph-name="_451" unicode="&#xf1e1;" 
+d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5
+t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_452" unicode="&#xf1e2;" horiz-adv-x="1792" 
+d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5
+t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91
+q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9
+t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
+    <glyph glyph-name="_453" unicode="&#xf1e3;" horiz-adv-x="1792" 
+d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323
+l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
+    <glyph glyph-name="_454" unicode="&#xf1e4;" horiz-adv-x="1792" 
+d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
+v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192
+q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23
+zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5
+t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
+    <glyph glyph-name="_455" unicode="&#xf1e5;" horiz-adv-x="1792" 
+d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z
+M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_456" unicode="&#xf1e6;" horiz-adv-x="1792" 
+d="M1755 1083q37 -38 37 -90.5t-37 -90.5l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234
+l401 400q38 37 91 37t90 -37z" />
+    <glyph glyph-name="_457" unicode="&#xf1e7;" horiz-adv-x="1792" 
+d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5
+t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z
+M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q4 -2 11.5 -7
+t10.5 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
+    <glyph glyph-name="_458" unicode="&#xf1e8;" horiz-adv-x="1792" 
+d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
+    <glyph glyph-name="_459" unicode="&#xf1e9;" 
+d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36
+q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q71 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5
+t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87
+q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
+    <glyph glyph-name="_460" unicode="&#xf1ea;" horiz-adv-x="2048" 
+d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19
+t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
+    <glyph glyph-name="_461" unicode="&#xf1eb;" horiz-adv-x="2048" 
+d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121
+q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z
+M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
+    <glyph glyph-name="_462" unicode="&#xf1ec;" horiz-adv-x="1792" 
+d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
+t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5
+t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5
+t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z
+M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38
+h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_463" unicode="&#xf1ed;" 
+d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246
+q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598
+q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" />
+    <glyph glyph-name="_464" unicode="&#xf1ee;" horiz-adv-x="1792" 
+d="M441 864q33 0 52 -26q266 -364 362 -774h-446q-127 441 -367 749q-12 16 -3 33.5t29 17.5h373zM1000 507q-49 -199 -125 -393q-79 310 -256 594q40 221 44 449q211 -340 337 -650zM1099 1216q235 -324 384.5 -698.5t184.5 -773.5h-451q-41 665 -553 1472h435zM1792 640
+q0 -424 -101 -812q-67 560 -359 1083q-25 301 -106 584q-4 16 5.5 28.5t25.5 12.5h359q21 0 38.5 -13t22.5 -33q115 -409 115 -850z" />
+    <glyph glyph-name="uniF1F0" unicode="&#xf1f0;" horiz-adv-x="2304" 
+d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27
+q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128
+q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_466" unicode="&#xf1f1;" horiz-adv-x="2304" 
+d="M1119 1195q-128 85 -281 85q-103 0 -197.5 -40.5t-162.5 -108.5t-108.5 -162t-40.5 -197q0 -104 40.5 -198t108.5 -162t162 -108.5t198 -40.5q153 0 281 85q-131 107 -178 265.5t0.5 316.5t177.5 265zM1152 1171q-126 -99 -172 -249.5t-0.5 -300.5t172.5 -249
+q127 99 172.5 249t-0.5 300.5t-172 249.5zM1185 1195q130 -107 177.5 -265.5t0.5 -317t-178 -264.5q128 -85 281 -85q104 0 198 40.5t162 108.5t108.5 162t40.5 198q0 103 -40.5 197t-108.5 162t-162.5 108.5t-197.5 40.5q-153 0 -281 -85zM1926 473h7v3h-17v-3h7v-17h3v17z
+M1955 456h4v20h-5l-6 -13l-6 13h-5v-20h3v15l6 -13h4l5 13v-15zM1947 16v-2h-2h-3v3h3h2v-1zM1947 7h3l-4 5h2l1 1q1 1 1 3t-1 3l-1 1h-3h-6v-13h3v5h1zM685 75q0 19 11 31t30 12q18 0 29 -12.5t11 -30.5q0 -19 -11 -31t-29 -12q-19 0 -30 12t-11 31zM1158 119q30 0 35 -32
+h-70q5 32 35 32zM1514 75q0 19 11 31t29 12t29.5 -12.5t11.5 -30.5q0 -19 -11 -31t-30 -12q-18 0 -29 12t-11 31zM1786 75q0 18 11.5 30.5t29.5 12.5t29.5 -12.5t11.5 -30.5q0 -19 -11.5 -31t-29.5 -12t-29.5 12.5t-11.5 30.5zM1944 3q-2 0 -4 1q-1 0 -3 2t-2 3q-1 2 -1 4
+q0 3 1 4q0 2 2 4l1 1q2 0 2 1q2 1 4 1q3 0 4 -1l4 -2l2 -4v-1q1 -2 1 -3l-1 -1v-3t-1 -1l-1 -2q-2 -2 -4 -2q-1 -1 -4 -1zM599 7h30v85q0 24 -14.5 38.5t-39.5 15.5q-32 0 -47 -24q-14 24 -45 24q-24 0 -39 -20v16h-30v-135h30v75q0 36 33 36q30 0 30 -36v-75h29v75
+q0 36 33 36q30 0 30 -36v-75zM765 7h29v68v67h-29v-16q-17 20 -43 20q-29 0 -48 -20t-19 -51t19 -51t48 -20q28 0 43 20v-17zM943 48q0 34 -47 40l-14 2q-23 4 -23 14q0 15 25 15q23 0 43 -11l12 24q-22 14 -55 14q-26 0 -41 -12t-15 -32q0 -33 47 -39l13 -2q24 -4 24 -14
+q0 -17 -31 -17q-25 0 -45 14l-13 -23q25 -17 58 -17q29 0 45.5 12t16.5 32zM1073 14l-8 25q-13 -7 -26 -7q-19 0 -19 22v61h48v27h-48v41h-30v-41h-28v-27h28v-61q0 -50 47 -50q21 0 36 10zM1159 146q-29 0 -48 -20t-19 -51q0 -32 19.5 -51.5t49.5 -19.5q33 0 55 19l-14 22
+q-18 -15 -39 -15q-34 0 -41 33h101v12q0 32 -18 51.5t-46 19.5zM1318 146q-23 0 -35 -20v16h-30v-135h30v76q0 35 29 35q10 0 18 -4l9 28q-9 4 -21 4zM1348 75q0 -31 19.5 -51t52.5 -20q29 0 48 16l-14 24q-18 -13 -35 -12q-18 0 -29.5 12t-11.5 31t11.5 31t29.5 12
+q19 0 35 -12l14 24q-20 16 -48 16q-33 0 -52.5 -20t-19.5 -51zM1593 7h30v68v67h-30v-16q-15 20 -42 20q-29 0 -48.5 -20t-19.5 -51t19.5 -51t48.5 -20q28 0 42 20v-17zM1726 146q-23 0 -35 -20v16h-29v-135h29v76q0 35 29 35q10 0 18 -4l9 28q-8 4 -21 4zM1866 7h29v68v122
+h-29v-71q-15 20 -43 20t-47.5 -20.5t-19.5 -50.5t19.5 -50.5t47.5 -20.5q29 0 43 20v-17zM1944 27l-2 -1h-3q-2 -1 -4 -3q-3 -1 -3 -4q-1 -2 -1 -6q0 -3 1 -5q0 -2 3 -4q2 -2 4 -3t5 -1q4 0 6 1q0 1 2 2l2 1q1 1 3 4q1 2 1 5q0 4 -1 6q-1 1 -3 4q0 1 -2 2l-2 1q-1 0 -3 0.5
+t-3 0.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_467" unicode="&#xf1f2;" horiz-adv-x="2304" 
+d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42
+q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604
+v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569
+q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73
+t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
+    <glyph glyph-name="f1f3" unicode="&#xf1f3;" horiz-adv-x="2304" 
+d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z
+M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260
+l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279
+v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040
+q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168
+q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5
+t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21
+h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5
+t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
+    <glyph glyph-name="_469" unicode="&#xf1f4;" horiz-adv-x="2304" 
+d="M745 630q0 -37 -25.5 -61.5t-62.5 -24.5q-29 0 -46.5 16t-17.5 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM1530 779q0 -42 -22 -57t-66 -15l-32 -1l17 107q2 11 13 11h18q22 0 35 -2t25 -12.5t12 -30.5zM1881 630q0 -36 -25.5 -61t-61.5 -25q-29 0 -47 16
+t-18 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM513 801q0 59 -38.5 85.5t-100.5 26.5h-160q-19 0 -21 -19l-65 -408q-1 -6 3 -11t10 -5h76q20 0 22 19l18 110q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM822 489l41 261q1 6 -3 11t-10 5h-76
+q-14 0 -17 -33q-27 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q28 0 58 12t48 32q-4 -12 -4 -21q0 -16 13 -16h69q19 0 22 19zM1269 752q0 5 -4 9.5t-9 4.5h-77q-11 0 -18 -10l-106 -156l-44 150q-5 16 -22 16h-75q-5 0 -9 -4.5t-4 -9.5q0 -2 19.5 -59
+t42 -123t23.5 -70q-82 -112 -82 -120q0 -13 13 -13h77q11 0 18 10l255 368q2 2 2 7zM1649 801q0 59 -38.5 85.5t-100.5 26.5h-159q-20 0 -22 -19l-65 -408q-1 -6 3 -11t10 -5h82q12 0 16 13l18 116q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM1958 489
+l41 261q1 6 -3 11t-10 5h-76q-14 0 -17 -33q-26 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q29 0 59 12t47 32q0 -1 -2 -9t-2 -12q0 -16 13 -16h69q19 0 22 19zM2176 898v1q0 14 -13 14h-74q-11 0 -13 -11l-65 -416l-1 -2q0 -5 4 -9.5t10 -4.5h66
+q19 0 21 19zM392 764q-5 -35 -26 -46t-60 -11l-33 -1l17 107q2 11 13 11h19q40 0 58 -11.5t12 -48.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_470" unicode="&#xf1f5;" horiz-adv-x="2304" 
+d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109
+q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118
+q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151
+q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31
+q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_471" unicode="&#xf1f6;" horiz-adv-x="2048" 
+d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5
+l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5
+l418 363q10 8 23.5 7t21.5 -11z" />
+    <glyph glyph-name="_472" unicode="&#xf1f7;" horiz-adv-x="2048" 
+d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128
+q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161
+q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
+    <glyph glyph-name="_473" unicode="&#xf1f8;" horiz-adv-x="1408" 
+d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704
+q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167
+q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_474" unicode="&#xf1f9;" 
+d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5
+t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5
+t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_475" unicode="&#xf1fa;" 
+d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53
+q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24
+t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61
+t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
+    <glyph glyph-name="_476" unicode="&#xf1fb;" horiz-adv-x="1792" 
+d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10
+t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
+    <glyph glyph-name="f1fc" unicode="&#xf1fc;" horiz-adv-x="1792" 
+d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5
+t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
+    <glyph glyph-name="_478" unicode="&#xf1fd;" horiz-adv-x="1792" 
+d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11q24 0 44 -7t31 -15t33 -27q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5
+t47 37.5q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-24 0 -44 7t-31 15t-33 27q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38
+t-58 27t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448
+h256v448h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5
+q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
+    <glyph glyph-name="_479" unicode="&#xf1fe;" horiz-adv-x="2048" 
+d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
+    <glyph glyph-name="_480" unicode="&#xf200;" horiz-adv-x="1792" 
+d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_481" unicode="&#xf201;" horiz-adv-x="2048" 
+d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9
+t9 -23z" />
+    <glyph glyph-name="_482" unicode="&#xf202;" horiz-adv-x="1792" 
+d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20
+q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50
+t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1
+q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
+    <glyph glyph-name="_483" unicode="&#xf203;" 
+d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73
+q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110
+q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_484" unicode="&#xf204;" horiz-adv-x="2048" 
+d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5
+t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5
+t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
+    <glyph glyph-name="_485" unicode="&#xf205;" horiz-adv-x="2048" 
+d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5
+t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
+    <glyph glyph-name="_486" unicode="&#xf206;" horiz-adv-x="2304" 
+d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94
+q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469
+q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400
+q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
+    <glyph glyph-name="_487" unicode="&#xf207;" 
+d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5
+h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
+t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
+    <glyph glyph-name="_488" unicode="&#xf208;" horiz-adv-x="2048" 
+d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327
+q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5
+q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
+    <glyph glyph-name="_489" unicode="&#xf209;" horiz-adv-x="1280" 
+d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q17 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119
+t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5
+t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14
+q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88
+q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5
+t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
+    <glyph glyph-name="_490" unicode="&#xf20a;" horiz-adv-x="2048" 
+d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206
+q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307
+t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14
+t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
+    <glyph glyph-name="_491" unicode="&#xf20b;" 
+d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5
+t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_492" unicode="&#xf20c;" 
+d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55
+q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410
+q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
+    <glyph glyph-name="_493" unicode="&#xf20d;" 
+d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" />
+    <glyph glyph-name="_494" unicode="&#xf20e;" horiz-adv-x="2048" 
+d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335
+q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5
+q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360l15 -6l188 199v347l-187 194q-13 -8 -29 -10zM986 1438
+h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13zM552 226h402l64 66
+l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224l213 -225zM1023 946
+l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196l-48 -227l130 227h-82
+zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" />
+    <glyph glyph-name="f210" unicode="&#xf210;" 
+d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" />
+    <glyph glyph-name="_496" unicode="&#xf211;" 
+d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384
+q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" />
+    <glyph glyph-name="f212" unicode="&#xf212;" horiz-adv-x="2048" 
+d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021
+q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25
+q209 0 374 -102q172 107 374 102z" />
+    <glyph glyph-name="_498" unicode="&#xf213;" horiz-adv-x="2048" 
+d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101
+q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284
+q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" />
+    <glyph glyph-name="_499" unicode="&#xf214;" 
+d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34
+l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114
+v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z
+M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378
+v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51
+h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5
+t-43 -34t-16.5 -53.5z" />
+    <glyph glyph-name="_500" unicode="&#xf215;" horiz-adv-x="2048" 
+d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832
+q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" />
+    <glyph glyph-name="_501" unicode="&#xf216;" horiz-adv-x="2048" 
+d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126t-103.5 132.5t-108.5 126.5t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5
+t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113
+t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5
+q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" />
+    <glyph glyph-name="_502" unicode="&#xf217;" horiz-adv-x="1664" 
+d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
+t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920
+q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="_503" unicode="&#xf218;" horiz-adv-x="1664" 
+d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
+t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920
+q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="_504" unicode="&#xf219;" horiz-adv-x="2048" 
+d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20
+l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" />
+    <glyph glyph-name="_505" unicode="&#xf21a;" horiz-adv-x="2048" 
+d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83
+q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83
+q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314
+v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83
+q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" />
+    <glyph glyph-name="_506" unicode="&#xf21b;" 
+d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14
+t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5
+q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31
+t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" />
+    <glyph glyph-name="_507" unicode="&#xf21c;" horiz-adv-x="2304" 
+d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5
+t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105
+l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226
+t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" />
+    <glyph glyph-name="_508" unicode="&#xf21d;" 
+d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12
+q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384
+q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5
+t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="_509" unicode="&#xf21e;" horiz-adv-x="1792" 
+d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221
+q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124
+t127 -344z" />
+    <glyph glyph-name="venus" unicode="&#xf221;" horiz-adv-x="1280" 
+d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292
+q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" />
+    <glyph glyph-name="_511" unicode="&#xf222;" 
+d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-382 -383q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5
+q203 0 359 -126l382 382h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_512" unicode="&#xf223;" horiz-adv-x="1280" 
+d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5
+t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
+t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_513" unicode="&#xf224;" 
+d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64
+q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
+t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_514" unicode="&#xf225;" horiz-adv-x="1792" 
+d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64
+q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9
+t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5
+t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_515" unicode="&#xf226;" horiz-adv-x="1792" 
+d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23
+t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391
+q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391
+q0 -226 -154 -391q103 -57 218 -57z" />
+    <glyph glyph-name="_516" unicode="&#xf227;" horiz-adv-x="1920" 
+d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230
+q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9
+t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128
+q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -28 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" />
+    <glyph glyph-name="_517" unicode="&#xf228;" horiz-adv-x="2048" 
+d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23
+t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9
+t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5
+t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" />
+    <glyph glyph-name="_518" unicode="&#xf229;" 
+d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-213 -214l140 -140q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-140 141l-78 -79q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5
+t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5q203 0 359 -126l78 78l-172 172q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l172 -172l213 213h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
+t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_519" unicode="&#xf22a;" horiz-adv-x="1280" 
+d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22
+t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5
+t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_520" unicode="&#xf22b;" horiz-adv-x="2048" 
+d="M1901 621q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-132q-24 -217 -187.5 -364.5t-384.5 -147.5q-167 0 -306 87t-212 236t-54 319q15 133 88 245.5
+t188 182t249 80.5q155 12 292 -52.5t224 -186t103 -271.5h132v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM576 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5
+t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_521" unicode="&#xf22c;" horiz-adv-x="1280" 
+d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5
+t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_522" unicode="&#xf22d;" horiz-adv-x="1280" 
+d="M1024 576q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1152 576q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123
+t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5z" />
+    <glyph glyph-name="_523" unicode="&#xf22e;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="_524" unicode="&#xf22f;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="_525" unicode="&#xf230;" 
+d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" />
+    <glyph glyph-name="_526" unicode="&#xf231;" horiz-adv-x="1280" 
+d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5
+l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5
+q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" />
+    <glyph glyph-name="_527" unicode="&#xf232;" 
+d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5
+t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233
+l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" />
+    <glyph glyph-name="_528" unicode="&#xf233;" horiz-adv-x="1792" 
+d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216
+q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" />
+    <glyph glyph-name="_529" unicode="&#xf234;" horiz-adv-x="2048" 
+d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5
+t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5
+t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" />
+    <glyph glyph-name="_530" unicode="&#xf235;" horiz-adv-x="2048" 
+d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136
+q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69
+t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" />
+    <glyph glyph-name="_531" unicode="&#xf236;" horiz-adv-x="2048" 
+d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704
+q-26 0 -45 -19t-19 -45v-384h1152z" />
+    <glyph glyph-name="_532" unicode="&#xf237;" 
+d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
+    <glyph glyph-name="_533" unicode="&#xf238;" 
+d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56
+t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
+    <glyph glyph-name="_534" unicode="&#xf239;" 
+d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47
+t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
+    <glyph glyph-name="_535" unicode="&#xf23a;" horiz-adv-x="1792" 
+d="M597 1115v-1173q0 -25 -12.5 -42.5t-36.5 -17.5q-17 0 -33 8l-465 233q-21 10 -35.5 33.5t-14.5 46.5v1140q0 20 10 34t29 14q14 0 44 -15l511 -256q3 -3 3 -5zM661 1014l534 -866l-534 266v600zM1792 996v-1054q0 -25 -14 -40.5t-38 -15.5t-47 13l-441 220zM1789 1116
+q0 -3 -256.5 -419.5t-300.5 -487.5l-390 634l324 527q17 28 52 28q14 0 26 -6l541 -270q4 -2 4 -6z" />
+    <glyph glyph-name="_536" unicode="&#xf23b;" 
+d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" />
+    <glyph glyph-name="_537" unicode="&#xf23c;" horiz-adv-x="2296" 
+d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5
+q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5
+q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42
+q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37
+q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5
+q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139
+q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 5 5 8q16 18 60 23h13q5 18 19 30t33 8
+t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132
+q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132
+q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z
+M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-105 2 -211 0v1q-1 -27 2.5 -86
+t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103
+q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34q0 2 0.5 3.5t1.5 3t1 2.5v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4
+l-10 -2.5t-12 -2l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-6 -1 -9 -1q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130
+t-73 70q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -1 -1 -4t-1 -5q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150
+q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12
+q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" />
+    <glyph glyph-name="_538" unicode="&#xf23d;" horiz-adv-x="2304" 
+d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5
+t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5
+t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" />
+    <glyph glyph-name="_539" unicode="&#xf23e;" horiz-adv-x="1792" 
+d="M896 1472q-169 0 -323 -66t-265.5 -177.5t-177.5 -265.5t-66 -323t66 -323t177.5 -265.5t265.5 -177.5t323 -66t323 66t265.5 177.5t177.5 265.5t66 323t-66 323t-177.5 265.5t-265.5 177.5t-323 66zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348
+t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM496 704q16 0 16 -16v-480q0 -16 -16 -16h-32q-16 0 -16 16v480q0 16 16 16h32zM896 640q53 0 90.5 -37.5t37.5 -90.5q0 -35 -17.5 -64t-46.5 -46v-114q0 -14 -9 -23
+t-23 -9h-64q-14 0 -23 9t-9 23v114q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5zM896 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM544 928v-96
+q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 93 65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5v-96q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 146 -103 249t-249 103t-249 -103t-103 -249zM1408 192v512q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-512
+q0 -26 19 -45t45 -19h896q26 0 45 19t19 45z" />
+    <glyph glyph-name="_540" unicode="&#xf240;" horiz-adv-x="2304" 
+d="M1920 1024v-768h-1664v768h1664zM2048 448h128v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288zM2304 832v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113
+v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="_541" unicode="&#xf241;" horiz-adv-x="2304" 
+d="M256 256v768h1280v-768h-1280zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
+h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_542" unicode="&#xf242;" horiz-adv-x="2304" 
+d="M256 256v768h896v-768h-896zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
+h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_543" unicode="&#xf243;" horiz-adv-x="2304" 
+d="M256 256v768h512v-768h-512zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
+h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_544" unicode="&#xf244;" horiz-adv-x="2304" 
+d="M2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23
+v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_545" unicode="&#xf245;" horiz-adv-x="1280" 
+d="M1133 493q31 -30 14 -69q-17 -40 -59 -40h-382l201 -476q10 -25 0 -49t-34 -35l-177 -75q-25 -10 -49 0t-35 34l-191 452l-312 -312q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v1504q0 42 40 59q12 5 24 5q27 0 45 -19z" />
+    <glyph glyph-name="_546" unicode="&#xf246;" horiz-adv-x="1024" 
+d="M832 1408q-320 0 -320 -224v-416h128v-128h-128v-544q0 -224 320 -224h64v-128h-64q-272 0 -384 146q-112 -146 -384 -146h-64v128h64q320 0 320 224v544h-128v128h128v416q0 224 -320 224h-64v128h64q272 0 384 -146q112 146 384 146h64v-128h-64z" />
+    <glyph glyph-name="_547" unicode="&#xf247;" horiz-adv-x="2048" 
+d="M2048 1152h-128v-1024h128v-384h-384v128h-1280v-128h-384v384h128v1024h-128v384h384v-128h1280v128h384v-384zM1792 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 -128v128h-128v-128h128zM1664 0v128h128v1024h-128v128h-1280v-128h-128v-1024h128v-128
+h1280zM1920 -128v128h-128v-128h128zM1280 896h384v-768h-896v256h-384v768h896v-256zM512 512h640v512h-640v-512zM1536 256v512h-256v-384h-384v-128h640z" />
+    <glyph glyph-name="_548" unicode="&#xf248;" horiz-adv-x="2304" 
+d="M2304 768h-128v-640h128v-384h-384v128h-896v-128h-384v384h128v128h-384v-128h-384v384h128v640h-128v384h384v-128h896v128h384v-384h-128v-128h384v128h384v-384zM2048 1024v-128h128v128h-128zM1408 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 256
+v128h-128v-128h128zM1536 384h-128v-128h128v128zM384 384h896v128h128v640h-128v128h-896v-128h-128v-640h128v-128zM896 -128v128h-128v-128h128zM2176 -128v128h-128v-128h128zM2048 128v640h-128v128h-384v-384h128v-384h-384v128h-384v-128h128v-128h896v128h128z" />
+    <glyph glyph-name="_549" unicode="&#xf249;" 
+d="M1024 288v-416h-928q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68v-928h-416q-40 0 -68 -28t-28 -68zM1152 256h381q-15 -82 -65 -132l-184 -184q-50 -50 -132 -65v381z" />
+    <glyph glyph-name="_550" unicode="&#xf24a;" 
+d="M1400 256h-248v-248q29 10 41 22l185 185q12 12 22 41zM1120 384h288v896h-1280v-1280h896v288q0 40 28 68t68 28zM1536 1312v-1024q0 -40 -20 -88t-48 -76l-184 -184q-28 -28 -76 -48t-88 -20h-1024q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68
+z" />
+    <glyph glyph-name="_551" unicode="&#xf24b;" horiz-adv-x="2304" 
+d="M1951 538q0 -26 -15.5 -44.5t-38.5 -23.5q-8 -2 -18 -2h-153v140h153q10 0 18 -2q23 -5 38.5 -23.5t15.5 -44.5zM1933 751q0 -25 -15 -42t-38 -21q-3 -1 -15 -1h-139v129h139q3 0 8.5 -0.5t6.5 -0.5q23 -4 38 -21.5t15 -42.5zM728 587v308h-228v-308q0 -58 -38 -94.5
+t-105 -36.5q-108 0 -229 59v-112q53 -15 121 -23t109 -9l42 -1q328 0 328 217zM1442 403v113q-99 -52 -200 -59q-108 -8 -169 41t-61 142t61 142t169 41q101 -7 200 -58v112q-48 12 -100 19.5t-80 9.5l-28 2q-127 6 -218.5 -14t-140.5 -60t-71 -88t-22 -106t22 -106t71 -88
+t140.5 -60t218.5 -14q101 4 208 31zM2176 518q0 54 -43 88.5t-109 39.5v3q57 8 89 41.5t32 79.5q0 55 -41 88t-107 36q-3 0 -12 0.5t-14 0.5h-455v-510h491q74 0 121.5 36.5t47.5 96.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90
+t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_552" unicode="&#xf24c;" horiz-adv-x="2304" 
+d="M858 295v693q-106 -41 -172 -135.5t-66 -211.5t66 -211.5t172 -134.5zM1362 641q0 117 -66 211.5t-172 135.5v-694q106 41 172 135.5t66 211.5zM1577 641q0 -159 -78.5 -294t-213.5 -213.5t-294 -78.5q-119 0 -227.5 46.5t-187 125t-125 187t-46.5 227.5q0 159 78.5 294
+t213.5 213.5t294 78.5t294 -78.5t213.5 -213.5t78.5 -294zM1960 634q0 139 -55.5 261.5t-147.5 205.5t-213.5 131t-252.5 48h-301q-176 0 -323.5 -81t-235 -230t-87.5 -335q0 -171 87 -317.5t236 -231.5t323 -85h301q129 0 251.5 50.5t214.5 135t147.5 202.5t55.5 246z
+M2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_553" unicode="&#xf24d;" horiz-adv-x="1792" 
+d="M1664 -96v1088q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 992v-1088q0 -66 -47 -113t-113 -47h-1088q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113
+zM1408 1376v-160h-128v160q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h160v-128h-160q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="_554" unicode="&#xf24e;" horiz-adv-x="2304" 
+d="M1728 1088l-384 -704h768zM448 1088l-384 -704h768zM1269 1280q-14 -40 -45.5 -71.5t-71.5 -45.5v-1291h608q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1344q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h608v1291q-40 14 -71.5 45.5t-45.5 71.5h-491q-14 0 -23 9t-9 23v64
+q0 14 9 23t23 9h491q21 57 70 92.5t111 35.5t111 -35.5t70 -92.5h491q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-491zM1088 1264q33 0 56.5 23.5t23.5 56.5t-23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5zM2176 384q0 -73 -46.5 -131t-117.5 -91
+t-144.5 -49.5t-139.5 -16.5t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81zM896 384q0 -73 -46.5 -131t-117.5 -91t-144.5 -49.5t-139.5 -16.5
+t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81z" />
+    <glyph glyph-name="_555" unicode="&#xf250;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-77 -29 -149 -92.5
+t-129.5 -152.5t-92.5 -210t-35 -253h1024q0 132 -35 253t-92.5 210t-129.5 152.5t-149 92.5q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
+    <glyph glyph-name="_556" unicode="&#xf251;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -66 9 -128h1006q9 61 9 128zM1280 -128q0 130 -34 249.5t-90.5 208t-126.5 152t-146 94.5h-230q-76 -31 -146 -94.5t-126.5 -152t-90.5 -208t-34 -249.5h1024z" />
+    <glyph glyph-name="_557" unicode="&#xf252;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -206 85 -384h854q85 178 85 384zM1223 192q-54 141 -145.5 241.5t-194.5 142.5h-230q-103 -42 -194.5 -142.5t-145.5 -241.5h910z" />
+    <glyph glyph-name="_558" unicode="&#xf253;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-137 -51 -244 -196
+h700q-107 145 -244 196q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
+    <glyph glyph-name="_559" unicode="&#xf254;" 
+d="M1504 -64q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472zM130 0q3 55 16 107t30 95t46 87t53.5 76t64.5 69.5t66 60t70.5 55t66.5 47.5t65 43q-43 28 -65 43t-66.5 47.5t-70.5 55t-66 60t-64.5 69.5t-53.5 76t-46 87
+t-30 95t-16 107h1276q-3 -55 -16 -107t-30 -95t-46 -87t-53.5 -76t-64.5 -69.5t-66 -60t-70.5 -55t-66.5 -47.5t-65 -43q43 -28 65 -43t66.5 -47.5t70.5 -55t66 -60t64.5 -69.5t53.5 -76t46 -87t30 -95t16 -107h-1276zM1504 1536q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9
+h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472z" />
+    <glyph glyph-name="_560" unicode="&#xf255;" 
+d="M768 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-128h-32v93q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-429l-32 30v172q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-224q0 -47 35 -82l310 -296q39 -39 39 -102q0 -26 19 -45t45 -19h640q26 0 45 19t19 45v25
+q0 41 10 77l108 436q10 36 10 77v246q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-32h-32v125q0 40 -25 72.5t-64 40.5q-14 2 -23 2q-46 0 -79 -33t-33 -79v-128h-32v122q0 51 -32.5 89.5t-82.5 43.5q-5 1 -13 1zM768 1280q84 0 149 -50q57 34 123 34q59 0 111 -27
+t86 -76q27 7 59 7q100 0 170 -71.5t70 -171.5v-246q0 -51 -13 -108l-109 -436q-6 -24 -6 -71q0 -80 -56 -136t-136 -56h-640q-84 0 -138 58.5t-54 142.5l-308 296q-76 73 -76 175v224q0 99 70.5 169.5t169.5 70.5q11 0 16 -1q6 95 75.5 160t164.5 65q52 0 98 -21
+q72 69 174 69z" />
+    <glyph glyph-name="_561" unicode="&#xf256;" horiz-adv-x="1792" 
+d="M880 1408q-46 0 -79 -33t-33 -79v-656h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528v-256l-154 205q-38 51 -102 51q-53 0 -90.5 -37.5t-37.5 -90.5q0 -43 26 -77l384 -512q38 -51 102 -51h688q34 0 61 22t34 56l76 405q5 32 5 59v498q0 46 -33 79t-79 33t-79 -33
+t-33 -79v-272h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528h-32v656q0 46 -33 79t-79 33zM880 1536q68 0 125.5 -35.5t88.5 -96.5q19 4 42 4q99 0 169.5 -70.5t70.5 -169.5v-17q105 6 180.5 -64t75.5 -175v-498q0 -40 -8 -83l-76 -404q-14 -79 -76.5 -131t-143.5 -52
+h-688q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 106 75 181t181 75q78 0 128 -34v434q0 99 70.5 169.5t169.5 70.5q23 0 42 -4q31 61 88.5 96.5t125.5 35.5z" />
+    <glyph glyph-name="_562" unicode="&#xf257;" horiz-adv-x="1792" 
+d="M1073 -128h-177q-163 0 -226 141q-23 49 -23 102v5q-62 30 -98.5 88.5t-36.5 127.5q0 38 5 48h-261q-106 0 -181 75t-75 181t75 181t181 75h113l-44 17q-74 28 -119.5 93.5t-45.5 145.5q0 106 75 181t181 75q46 0 91 -17l628 -239h401q106 0 181 -75t75 -181v-668
+q0 -88 -54 -157.5t-140 -90.5l-339 -85q-92 -23 -186 -23zM1024 583l-155 -71l-163 -74q-30 -14 -48 -41.5t-18 -60.5q0 -46 33 -79t79 -33q26 0 46 10l338 154q-49 10 -80.5 50t-31.5 90v55zM1344 272q0 46 -33 79t-79 33q-26 0 -46 -10l-290 -132q-28 -13 -37 -17
+t-30.5 -17t-29.5 -23.5t-16 -29t-8 -40.5q0 -50 31.5 -82t81.5 -32q20 0 38 9l352 160q30 14 48 41.5t18 60.5zM1112 1024l-650 248q-24 8 -46 8q-53 0 -90.5 -37.5t-37.5 -90.5q0 -40 22.5 -73t59.5 -47l526 -200v-64h-640q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5
+t90.5 -37.5h535l233 106v198q0 63 46 106l111 102h-69zM1073 0q82 0 155 19l339 85q43 11 70 45.5t27 78.5v668q0 53 -37.5 90.5t-90.5 37.5h-308l-136 -126q-36 -33 -36 -82v-296q0 -46 33 -77t79 -31t79 35t33 81v208h32v-208q0 -70 -57 -114q52 -8 86.5 -48.5t34.5 -93.5
+q0 -42 -23 -78t-61 -53l-310 -141h91z" />
+    <glyph glyph-name="_563" unicode="&#xf258;" horiz-adv-x="2048" 
+d="M1151 1536q61 0 116 -28t91 -77l572 -781q118 -159 118 -359v-355q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v177l-286 143h-546q-80 0 -136 56t-56 136v32q0 119 84.5 203.5t203.5 84.5h420l42 128h-686q-100 0 -173.5 67.5t-81.5 166.5q-65 79 -65 182v32
+q0 80 56 136t136 56h959zM1920 -64v355q0 157 -93 284l-573 781q-39 52 -103 52h-959q-26 0 -45 -19t-19 -45q0 -32 1.5 -49.5t9.5 -40.5t25 -43q10 31 35.5 50t56.5 19h832v-32h-832q-26 0 -45 -19t-19 -45q0 -44 3 -58q8 -44 44 -73t81 -29h640h91q40 0 68 -28t28 -68
+q0 -15 -5 -30l-64 -192q-10 -29 -35 -47.5t-56 -18.5h-443q-66 0 -113 -47t-47 -113v-32q0 -26 19 -45t45 -19h561q16 0 29 -7l317 -158q24 -13 38.5 -36t14.5 -50v-197q0 -26 19 -45t45 -19h384q26 0 45 19t19 45z" />
+    <glyph glyph-name="_564" unicode="&#xf259;" horiz-adv-x="2048" 
+d="M459 -256q-77 0 -137.5 47.5t-79.5 122.5l-101 401q-13 57 -13 108q0 45 -5 67l-116 477q-7 27 -7 57q0 93 62 161t155 78q17 85 82.5 139t152.5 54q83 0 148 -51.5t85 -132.5l83 -348l103 428q20 81 85 132.5t148 51.5q89 0 155.5 -57.5t80.5 -144.5q92 -10 152 -79
+t60 -162q0 -24 -7 -59l-123 -512q10 7 37.5 28.5t38.5 29.5t35 23t41 20.5t41.5 11t49.5 5.5q105 0 180 -74t75 -179q0 -62 -28.5 -118t-78.5 -94l-507 -380q-68 -51 -153 -51h-694zM1104 1408q-38 0 -68.5 -24t-39.5 -62l-164 -682h-127l-145 602q-9 38 -39.5 62t-68.5 24
+q-48 0 -80 -33t-32 -80q0 -15 3 -28l132 -547h-26l-99 408q-9 37 -40 62.5t-69 25.5q-47 0 -80 -33t-33 -79q0 -14 3 -26l116 -478q7 -28 9 -86t10 -88l100 -401q8 -32 34 -52.5t59 -20.5h694q42 0 76 26l507 379q56 43 56 110q0 52 -37.5 88.5t-89.5 36.5q-43 0 -77 -26
+l-307 -230v227q0 4 32 138t68 282t39 161q4 18 4 29q0 47 -32 81t-79 34q-39 0 -69.5 -24t-39.5 -62l-116 -482h-26l150 624q3 14 3 28q0 48 -31.5 82t-79.5 34z" />
+    <glyph glyph-name="_565" unicode="&#xf25a;" horiz-adv-x="1792" 
+d="M640 1408q-53 0 -90.5 -37.5t-37.5 -90.5v-512v-384l-151 202q-41 54 -107 54q-52 0 -89 -38t-37 -90q0 -43 26 -77l384 -512q38 -51 102 -51h718q22 0 39.5 13.5t22.5 34.5l92 368q24 96 24 194v217q0 41 -28 71t-68 30t-68 -28t-28 -68h-32v61q0 48 -32 81.5t-80 33.5
+q-46 0 -79 -33t-33 -79v-64h-32v90q0 55 -37 94.5t-91 39.5q-53 0 -90.5 -37.5t-37.5 -90.5v-96h-32v570q0 55 -37 94.5t-91 39.5zM640 1536q107 0 181.5 -77.5t74.5 -184.5v-220q22 2 32 2q99 0 173 -69q47 21 99 21q113 0 184 -87q27 7 56 7q94 0 159 -67.5t65 -161.5
+v-217q0 -116 -28 -225l-92 -368q-16 -64 -68 -104.5t-118 -40.5h-718q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 105 74.5 180.5t179.5 75.5q71 0 130 -35v547q0 106 75 181t181 75zM768 128v384h-32v-384h32zM1024 128v384h-32v-384h32zM1280 128v384h-32
+v-384h32z" />
+    <glyph glyph-name="_566" unicode="&#xf25b;" 
+d="M1288 889q60 0 107 -23q141 -63 141 -226v-177q0 -94 -23 -186l-85 -339q-21 -86 -90.5 -140t-157.5 -54h-668q-106 0 -181 75t-75 181v401l-239 628q-17 45 -17 91q0 106 75 181t181 75q80 0 145.5 -45.5t93.5 -119.5l17 -44v113q0 106 75 181t181 75t181 -75t75 -181
+v-261q27 5 48 5q69 0 127.5 -36.5t88.5 -98.5zM1072 896q-33 0 -60.5 -18t-41.5 -48l-74 -163l-71 -155h55q50 0 90 -31.5t50 -80.5l154 338q10 20 10 46q0 46 -33 79t-79 33zM1293 761q-22 0 -40.5 -8t-29 -16t-23.5 -29.5t-17 -30.5t-17 -37l-132 -290q-10 -20 -10 -46
+q0 -46 33 -79t79 -33q33 0 60.5 18t41.5 48l160 352q9 18 9 38q0 50 -32 81.5t-82 31.5zM128 1120q0 -22 8 -46l248 -650v-69l102 111q43 46 106 46h198l106 233v535q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5v-640h-64l-200 526q-14 37 -47 59.5t-73 22.5
+q-53 0 -90.5 -37.5t-37.5 -90.5zM1180 -128q44 0 78.5 27t45.5 70l85 339q19 73 19 155v91l-141 -310q-17 -38 -53 -61t-78 -23q-53 0 -93.5 34.5t-48.5 86.5q-44 -57 -114 -57h-208v32h208q46 0 81 33t35 79t-31 79t-77 33h-296q-49 0 -82 -36l-126 -136v-308
+q0 -53 37.5 -90.5t90.5 -37.5h668z" />
+    <glyph glyph-name="_567" unicode="&#xf25c;" horiz-adv-x="1973" 
+d="M857 992v-117q0 -13 -9.5 -22t-22.5 -9h-298v-812q0 -13 -9 -22.5t-22 -9.5h-135q-13 0 -22.5 9t-9.5 23v812h-297q-13 0 -22.5 9t-9.5 22v117q0 14 9 23t23 9h793q13 0 22.5 -9.5t9.5 -22.5zM1895 995l77 -961q1 -13 -8 -24q-10 -10 -23 -10h-134q-12 0 -21 8.5
+t-10 20.5l-46 588l-189 -425q-8 -19 -29 -19h-120q-20 0 -29 19l-188 427l-45 -590q-1 -12 -10 -20.5t-21 -8.5h-135q-13 0 -23 10q-9 10 -9 24l78 961q1 12 10 20.5t21 8.5h142q20 0 29 -19l220 -520q10 -24 20 -51q3 7 9.5 24.5t10.5 26.5l221 520q9 19 29 19h141
+q13 0 22 -8.5t10 -20.5z" />
+    <glyph glyph-name="_568" unicode="&#xf25d;" horiz-adv-x="1792" 
+d="M1042 833q0 88 -60 121q-33 18 -117 18h-123v-281h162q66 0 102 37t36 105zM1094 548l205 -373q8 -17 -1 -31q-8 -16 -27 -16h-152q-20 0 -28 17l-194 365h-155v-350q0 -14 -9 -23t-23 -9h-134q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h294q128 0 190 -24q85 -31 134 -109
+t49 -180q0 -92 -42.5 -165.5t-115.5 -109.5q6 -10 9 -16zM896 1376q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM1792 640
+q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_569" unicode="&#xf25e;" horiz-adv-x="1792" 
+d="M605 303q153 0 257 104q14 18 3 36l-45 82q-6 13 -24 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78
+q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-148 0 -246 -96.5t-98 -240.5q0 -146 97 -241.5t247 -95.5zM1235 303q153 0 257 104q14 18 4 36l-45 82q-8 14 -25 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5
+t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-147 0 -245.5 -96.5t-98.5 -240.5q0 -146 97 -241.5t247 -95.5zM896 1376
+q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191
+t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71z" />
+    <glyph glyph-name="f260" unicode="&#xf260;" horiz-adv-x="2048" 
+d="M736 736l384 -384l-384 -384l-672 672l672 672l168 -168l-96 -96l-72 72l-480 -480l480 -480l193 193l-289 287zM1312 1312l672 -672l-672 -672l-168 168l96 96l72 -72l480 480l-480 480l-193 -193l289 -287l-96 -96l-384 384z" />
+    <glyph glyph-name="f261" unicode="&#xf261;" horiz-adv-x="1792" 
+d="M717 182l271 271l-279 279l-88 -88l192 -191l-96 -96l-279 279l279 279l40 -40l87 87l-127 128l-454 -454zM1075 190l454 454l-454 454l-271 -271l279 -279l88 88l-192 191l96 96l279 -279l-279 -279l-40 40l-87 -88zM1792 640q0 -182 -71 -348t-191 -286t-286 -191
+t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_572" unicode="&#xf262;" horiz-adv-x="2304" 
+d="M651 539q0 -39 -27.5 -66.5t-65.5 -27.5q-39 0 -66.5 27.5t-27.5 66.5q0 38 27.5 65.5t66.5 27.5q38 0 65.5 -27.5t27.5 -65.5zM1805 540q0 -39 -27.5 -66.5t-66.5 -27.5t-66.5 27.5t-27.5 66.5t27.5 66t66.5 27t66.5 -27t27.5 -66zM765 539q0 79 -56.5 136t-136.5 57
+t-136.5 -56.5t-56.5 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM1918 540q0 80 -56.5 136.5t-136.5 56.5q-79 0 -136 -56.5t-57 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM850 539q0 -116 -81.5 -197.5t-196.5 -81.5q-116 0 -197.5 82t-81.5 197
+t82 196.5t197 81.5t196.5 -81.5t81.5 -196.5zM2004 540q0 -115 -81.5 -196.5t-197.5 -81.5q-115 0 -196.5 81.5t-81.5 196.5t81.5 196.5t196.5 81.5q116 0 197.5 -81.5t81.5 -196.5zM1040 537q0 191 -135.5 326.5t-326.5 135.5q-125 0 -231 -62t-168 -168.5t-62 -231.5
+t62 -231.5t168 -168.5t231 -62q191 0 326.5 135.5t135.5 326.5zM1708 1110q-254 111 -556 111q-319 0 -573 -110q117 0 223 -45.5t182.5 -122.5t122 -183t45.5 -223q0 115 43.5 219.5t118 180.5t177.5 123t217 50zM2187 537q0 191 -135 326.5t-326 135.5t-326.5 -135.5
+t-135.5 -326.5t135.5 -326.5t326.5 -135.5t326 135.5t135 326.5zM1921 1103h383q-44 -51 -75 -114.5t-40 -114.5q110 -151 110 -337q0 -156 -77 -288t-209 -208.5t-287 -76.5q-133 0 -249 56t-196 155q-47 -56 -129 -179q-11 22 -53.5 82.5t-74.5 97.5
+q-80 -99 -196.5 -155.5t-249.5 -56.5q-155 0 -287 76.5t-209 208.5t-77 288q0 186 110 337q-9 51 -40 114.5t-75 114.5h365q149 100 355 156.5t432 56.5q224 0 421 -56t348 -157z" />
+    <glyph glyph-name="f263" unicode="&#xf263;" horiz-adv-x="1280" 
+d="M640 629q-188 0 -321 133t-133 320q0 188 133 321t321 133t321 -133t133 -321q0 -187 -133 -320t-321 -133zM640 1306q-92 0 -157.5 -65.5t-65.5 -158.5q0 -92 65.5 -157.5t157.5 -65.5t157.5 65.5t65.5 157.5q0 93 -65.5 158.5t-157.5 65.5zM1163 574q13 -27 15 -49.5
+t-4.5 -40.5t-26.5 -38.5t-42.5 -37t-61.5 -41.5q-115 -73 -315 -94l73 -72l267 -267q30 -31 30 -74t-30 -73l-12 -13q-31 -30 -74 -30t-74 30q-67 68 -267 268l-267 -268q-31 -30 -74 -30t-73 30l-12 13q-31 30 -31 73t31 74l267 267l72 72q-203 21 -317 94
+q-39 25 -61.5 41.5t-42.5 37t-26.5 38.5t-4.5 40.5t15 49.5q10 20 28 35t42 22t56 -2t65 -35q5 -4 15 -11t43 -24.5t69 -30.5t92 -24t113 -11q91 0 174 25.5t120 50.5l38 25q33 26 65 35t56 2t42 -22t28 -35z" />
+    <glyph glyph-name="_574" unicode="&#xf264;" 
+d="M927 956q0 -66 -46.5 -112.5t-112.5 -46.5t-112.5 46.5t-46.5 112.5t46.5 112.5t112.5 46.5t112.5 -46.5t46.5 -112.5zM1141 593q-10 20 -28 32t-47.5 9.5t-60.5 -27.5q-10 -8 -29 -20t-81 -32t-127 -20t-124 18t-86 36l-27 18q-31 25 -60.5 27.5t-47.5 -9.5t-28 -32
+q-22 -45 -2 -74.5t87 -73.5q83 -53 226 -67l-51 -52q-142 -142 -191 -190q-22 -22 -22 -52.5t22 -52.5l9 -9q22 -22 52.5 -22t52.5 22l191 191q114 -115 191 -191q22 -22 52.5 -22t52.5 22l9 9q22 22 22 52.5t-22 52.5l-191 190l-52 52q141 14 225 67q67 44 87 73.5t-2 74.5
+zM1092 956q0 134 -95 229t-229 95t-229 -95t-95 -229t95 -229t229 -95t229 95t95 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_575" unicode="&#xf265;" horiz-adv-x="1720" 
+d="M1565 1408q65 0 110 -45.5t45 -110.5v-519q0 -176 -68 -336t-182.5 -275t-274 -182.5t-334.5 -67.5q-176 0 -335.5 67.5t-274.5 182.5t-183 275t-68 336v519q0 64 46 110t110 46h1409zM861 344q47 0 82 33l404 388q37 35 37 85q0 49 -34.5 83.5t-83.5 34.5q-47 0 -82 -33
+l-323 -310l-323 310q-35 33 -81 33q-49 0 -83.5 -34.5t-34.5 -83.5q0 -51 36 -85l405 -388q33 -33 81 -33z" />
+    <glyph glyph-name="_576" unicode="&#xf266;" horiz-adv-x="2304" 
+d="M1494 -103l-295 695q-25 -49 -158.5 -305.5t-198.5 -389.5q-1 -1 -27.5 -0.5t-26.5 1.5q-82 193 -255.5 587t-259.5 596q-21 50 -66.5 107.5t-103.5 100.5t-102 43q0 5 -0.5 24t-0.5 27h583v-50q-39 -2 -79.5 -16t-66.5 -43t-10 -64q26 -59 216.5 -499t235.5 -540
+q31 61 140 266.5t131 247.5q-19 39 -126 281t-136 295q-38 69 -201 71v50l513 -1v-47q-60 -2 -93.5 -25t-12.5 -69q33 -70 87 -189.5t86 -187.5q110 214 173 363q24 55 -10 79.5t-129 26.5q1 7 1 25v24q64 0 170.5 0.5t180 1t92.5 0.5v-49q-62 -2 -119 -33t-90 -81
+l-213 -442q13 -33 127.5 -290t121.5 -274l441 1017q-14 38 -49.5 62.5t-65 31.5t-55.5 8v50l460 -4l1 -2l-1 -44q-139 -4 -201 -145q-526 -1216 -559 -1291h-49z" />
+    <glyph glyph-name="_577" unicode="&#xf267;" horiz-adv-x="1792" 
+d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640
+q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5
+t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5
+t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5
+t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191
+t191 -286t71 -348z" />
+    <glyph glyph-name="_578" unicode="&#xf268;" horiz-adv-x="1792" 
+d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962
+q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" />
+    <glyph glyph-name="_579" unicode="&#xf269;" horiz-adv-x="1792" 
+d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5
+q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5
+q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" />
+    <glyph glyph-name="_580" unicode="&#xf26a;" horiz-adv-x="1792" 
+d="M1493 1308q-165 110 -359 110q-155 0 -293 -73t-240 -200q-75 -93 -119.5 -218t-48.5 -266v-42q4 -141 48.5 -266t119.5 -218q102 -127 240 -200t293 -73q194 0 359 110q-121 -108 -274.5 -168t-322.5 -60q-29 0 -43 1q-175 8 -333 82t-272 193t-181 281t-67 339
+q0 182 71 348t191 286t286 191t348 71h3q168 -1 320.5 -60.5t273.5 -167.5zM1792 640q0 -192 -77 -362.5t-213 -296.5q-104 -63 -222 -63q-137 0 -255 84q154 56 253.5 233t99.5 405q0 227 -99 404t-253 234q119 83 254 83q119 0 226 -65q135 -125 210.5 -295t75.5 -361z
+" />
+    <glyph glyph-name="_581" unicode="&#xf26b;" horiz-adv-x="1792" 
+d="M1792 599q0 -56 -7 -104h-1151q0 -146 109.5 -244.5t257.5 -98.5q99 0 185.5 46.5t136.5 130.5h423q-56 -159 -170.5 -281t-267.5 -188.5t-321 -66.5q-187 0 -356 83q-228 -116 -394 -116q-237 0 -237 263q0 115 45 275q17 60 109 229q199 360 475 606
+q-184 -79 -427 -354q63 274 283.5 449.5t501.5 175.5q30 0 45 -1q255 117 433 117q64 0 116 -13t94.5 -40.5t66.5 -76.5t24 -115q0 -116 -75 -286q101 -182 101 -390zM1722 1239q0 83 -53 132t-137 49q-108 0 -254 -70q121 -47 222.5 -131.5t170.5 -195.5q51 135 51 216z
+M128 2q0 -86 48.5 -132.5t134.5 -46.5q115 0 266 83q-122 72 -213.5 183t-137.5 245q-98 -205 -98 -332zM632 715h728q-5 142 -113 237t-251 95q-144 0 -251.5 -95t-112.5 -237z" />
+    <glyph glyph-name="_582" unicode="&#xf26c;" horiz-adv-x="2048" 
+d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23
+v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="_583" unicode="&#xf26d;" horiz-adv-x="1792" 
+d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34
+h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100
+q-68 175 -180 287z" />
+    <glyph glyph-name="_584" unicode="&#xf26e;" 
+d="M1401 -11l-6 -6q-113 -113 -259 -175q-154 -64 -317 -64q-165 0 -317 64q-148 63 -259 175q-113 112 -175 258q-42 103 -54 189q-4 28 48 36q51 8 56 -20q1 -1 1 -4q18 -90 46 -159q50 -124 152 -226q98 -98 226 -152q132 -56 276 -56q143 0 276 56q128 55 225 152l6 6
+q10 10 25 6q12 -3 33 -22q36 -37 17 -58zM929 604l-66 -66l63 -63q21 -21 -7 -49q-17 -17 -32 -17q-10 0 -19 10l-62 61l-66 -66q-5 -5 -15 -5q-15 0 -31 16l-2 2q-18 15 -18 29q0 7 8 17l66 65l-66 66q-16 16 14 45q18 18 31 18q6 0 13 -5l65 -66l65 65q18 17 48 -13
+q27 -27 11 -44zM1400 547q0 -118 -46 -228q-45 -105 -126 -186q-80 -80 -187 -126t-228 -46t-228 46t-187 126q-82 82 -125 186q-15 33 -15 40h-1q-9 27 43 44q50 16 60 -12q37 -99 97 -167h1v339v2q3 136 102 232q105 103 253 103q147 0 251 -103t104 -249
+q0 -147 -104.5 -251t-250.5 -104q-58 0 -112 16q-28 11 -13 61q16 51 44 43l14 -3q14 -3 33 -6t30 -3q104 0 176 71.5t72 174.5q0 101 -72 171q-71 71 -175 71q-107 0 -178 -80q-64 -72 -64 -160v-413q110 -67 242 -67q96 0 185 36.5t156 103.5t103.5 155t36.5 183
+q0 198 -141 339q-140 140 -339 140q-200 0 -340 -140q-53 -53 -77 -87l-2 -2q-8 -11 -13 -15.5t-21.5 -9.5t-38.5 3q-21 5 -36.5 16.5t-15.5 26.5v680q0 15 10.5 26.5t27.5 11.5h877q30 0 30 -55t-30 -55h-811v-483h1q40 42 102 84t108 61q109 46 231 46q121 0 228 -46
+t187 -126q81 -81 126 -186q46 -112 46 -229zM1369 1128q9 -8 9 -18t-5.5 -18t-16.5 -21q-26 -26 -39 -26q-9 0 -16 7q-106 91 -207 133q-128 56 -276 56q-133 0 -262 -49q-27 -10 -45 37q-9 25 -8 38q3 16 16 20q130 57 299 57q164 0 316 -64q137 -58 235 -152z" />
+    <glyph glyph-name="_585" unicode="&#xf270;" horiz-adv-x="1792" 
+d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z
+M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30
+q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57
+t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133
+q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" />
+    <glyph glyph-name="_586" unicode="&#xf271;" horiz-adv-x="1792" 
+d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9
+h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224
+v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" />
+    <glyph glyph-name="_587" unicode="&#xf272;" horiz-adv-x="1792" 
+d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23
+t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47
+t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_588" unicode="&#xf273;" horiz-adv-x="1792" 
+d="M1111 151l-46 -46q-9 -9 -22 -9t-23 9l-188 189l-188 -189q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22t9 23l189 188l-189 188q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l188 -188l188 188q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23l-188 -188l188 -188q9 -10 9 -23t-9 -22z
+M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280
+q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_589" unicode="&#xf274;" horiz-adv-x="1792" 
+d="M1303 572l-512 -512q-10 -9 -23 -9t-23 9l-288 288q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l220 -220l444 444q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23
+t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47
+t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_590" unicode="&#xf275;" horiz-adv-x="1792" 
+d="M448 1536q26 0 45 -19t19 -45v-891l536 429q17 14 40 14q26 0 45 -19t19 -45v-379l536 429q17 14 40 14q26 0 45 -19t19 -45v-1152q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h384z" />
+    <glyph glyph-name="_591" unicode="&#xf276;" horiz-adv-x="1024" 
+d="M512 448q66 0 128 15v-655q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v655q62 -15 128 -15zM512 1536q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150zM512 1312q14 0 23 9t9 23t-9 23t-23 9q-146 0 -249 -103t-103 -249
+q0 -14 9 -23t23 -9t23 9t9 23q0 119 84.5 203.5t203.5 84.5z" />
+    <glyph glyph-name="_592" unicode="&#xf277;" horiz-adv-x="1792" 
+d="M1745 1239q10 -10 10 -23t-10 -23l-141 -141q-28 -28 -68 -28h-1344q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h576v64q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-64h512q40 0 68 -28zM768 320h256v-512q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v512zM1600 768
+q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-1344q-40 0 -68 28l-141 141q-10 10 -10 23t10 23l141 141q28 28 68 28h512v192h256v-192h576z" />
+    <glyph glyph-name="_593" unicode="&#xf278;" horiz-adv-x="2048" 
+d="M2020 1525q28 -20 28 -53v-1408q0 -20 -11 -36t-29 -23l-640 -256q-24 -11 -48 0l-616 246l-616 -246q-10 -5 -24 -5q-19 0 -36 11q-28 20 -28 53v1408q0 20 11 36t29 23l640 256q24 11 48 0l616 -246l616 246q32 13 60 -6zM736 1390v-1270l576 -230v1270zM128 1173
+v-1270l544 217v1270zM1920 107v1270l-544 -217v-1270z" />
+    <glyph glyph-name="_594" unicode="&#xf279;" horiz-adv-x="1792" 
+d="M512 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472q0 20 17 28l480 256q7 4 15 4zM1760 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472
+q0 20 17 28l480 256q7 4 15 4zM640 1536q8 0 14 -3l512 -256q18 -10 18 -29v-1472q0 -13 -9.5 -22.5t-22.5 -9.5q-8 0 -14 3l-512 256q-18 10 -18 29v1472q0 13 9.5 22.5t22.5 9.5z" />
+    <glyph glyph-name="_595" unicode="&#xf27a;" horiz-adv-x="1792" 
+d="M640 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 640q0 53 -37.5 90.5t-90.5 37.5
+t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-110 0 -211 18q-173 -173 -435 -229q-52 -10 -86 -13q-12 -1 -22 6t-13 18q-4 15 20 37q5 5 23.5 21.5t25.5 23.5t23.5 25.5t24 31.5t20.5 37
+t20 48t14.5 57.5t12.5 72.5q-146 90 -229.5 216.5t-83.5 269.5q0 174 120 321.5t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
+    <glyph glyph-name="_596" unicode="&#xf27b;" horiz-adv-x="1792" 
+d="M640 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 -53 -37.5 -90.5t-90.5 -37.5
+t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5
+t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51
+t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 130 71 248.5t191 204.5t286 136.5t348 50.5t348 -50.5t286 -136.5t191 -204.5t71 -248.5z" />
+    <glyph glyph-name="_597" unicode="&#xf27c;" horiz-adv-x="1024" 
+d="M512 345l512 295v-591l-512 -296v592zM0 640v-591l512 296zM512 1527v-591l-512 -296v591zM512 936l512 295v-591z" />
+    <glyph glyph-name="_598" unicode="&#xf27d;" horiz-adv-x="1792" 
+d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246
+q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" />
+    <glyph glyph-name="f27e" unicode="&#xf27e;" 
+d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" />
+    <glyph glyph-name="uniF280" unicode="&#xf280;" 
+d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72
+h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275
+l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" />
+    <glyph glyph-name="uniF281" unicode="&#xf281;" horiz-adv-x="1792" 
+d="M1792 690q0 -58 -29.5 -105.5t-79.5 -72.5q12 -46 12 -96q0 -155 -106.5 -287t-290.5 -208.5t-400 -76.5t-399.5 76.5t-290 208.5t-106.5 287q0 47 11 94q-51 25 -82 73.5t-31 106.5q0 82 58 140.5t141 58.5q85 0 145 -63q218 152 515 162l116 521q3 13 15 21t26 5
+l369 -81q18 37 54 59.5t79 22.5q62 0 106 -43.5t44 -105.5t-44 -106t-106 -44t-105.5 43.5t-43.5 105.5l-334 74l-104 -472q300 -9 519 -160q58 61 143 61q83 0 141 -58.5t58 -140.5zM418 491q0 -62 43.5 -106t105.5 -44t106 44t44 106t-44 105.5t-106 43.5q-61 0 -105 -44
+t-44 -105zM1228 136q11 11 11 26t-11 26q-10 10 -25 10t-26 -10q-41 -42 -121 -62t-160 -20t-160 20t-121 62q-11 10 -26 10t-25 -10q-11 -10 -11 -25.5t11 -26.5q43 -43 118.5 -68t122.5 -29.5t91 -4.5t91 4.5t122.5 29.5t118.5 68zM1225 341q62 0 105.5 44t43.5 106
+q0 61 -44 105t-105 44q-62 0 -106 -43.5t-44 -105.5t44 -106t106 -44z" />
+    <glyph glyph-name="_602" unicode="&#xf282;" horiz-adv-x="1792" 
+d="M69 741h1q16 126 58.5 241.5t115 217t167.5 176t223.5 117.5t276.5 43q231 0 414 -105.5t294 -303.5q104 -187 104 -442v-188h-1125q1 -111 53.5 -192.5t136.5 -122.5t189.5 -57t213 -3t208 46.5t173.5 84.5v-377q-92 -55 -229.5 -92t-312.5 -38t-316 53
+q-189 73 -311.5 249t-124.5 372q-3 242 111 412t325 268q-48 -60 -78 -125.5t-46 -159.5h635q8 77 -8 140t-47 101.5t-70.5 66.5t-80.5 41t-75 20.5t-56 8.5l-22 1q-135 -5 -259.5 -44.5t-223.5 -104.5t-176 -140.5t-138 -163.5z" />
+    <glyph glyph-name="_603" unicode="&#xf283;" horiz-adv-x="2304" 
+d="M0 32v608h2304v-608q0 -66 -47 -113t-113 -47h-1984q-66 0 -113 47t-47 113zM640 256v-128h384v128h-384zM256 256v-128h256v128h-256zM2144 1408q66 0 113 -47t47 -113v-224h-2304v224q0 66 47 113t113 47h1984z" />
+    <glyph glyph-name="_604" unicode="&#xf284;" horiz-adv-x="1792" 
+d="M1584 246l-218 111q-74 -120 -196.5 -189t-263.5 -69q-147 0 -271 72t-196 196t-72 270q0 110 42.5 209.5t115 172t172 115t209.5 42.5q131 0 247.5 -60.5t192.5 -168.5l215 125q-110 169 -286.5 265t-378.5 96q-161 0 -308 -63t-253 -169t-169 -253t-63 -308t63 -308
+t169 -253t253 -169t308 -63q213 0 397.5 107t290.5 292zM1030 643l693 -352q-116 -253 -334.5 -400t-492.5 -147q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71q260 0 470.5 -133.5t335.5 -366.5zM1543 640h-39v-160h-96v352h136q32 0 54.5 -20
+t28.5 -48t1 -56t-27.5 -48t-57.5 -20z" />
+    <glyph glyph-name="uniF285" unicode="&#xf285;" horiz-adv-x="1792" 
+d="M1427 827l-614 386l92 151h855zM405 562l-184 116v858l1183 -743zM1424 697l147 -95v-858l-532 335zM1387 718l-500 -802h-855l356 571z" />
+    <glyph glyph-name="uniF286" unicode="&#xf286;" horiz-adv-x="1792" 
+d="M640 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1152 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1664 496v-752h-640v320q0 80 -56 136t-136 56t-136 -56t-56 -136v-320h-640v752q0 16 16 16h96
+q16 0 16 -16v-112h128v624q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 6 2.5 9.5t8.5 5t9.5 2t11.5 0t9 -0.5v391q-32 15 -32 50q0 23 16.5 39t38.5 16t38.5 -16t16.5 -39q0 -35 -32 -50v-17q45 10 83 10q21 0 59.5 -7.5t54.5 -7.5
+q17 0 47 7.5t37 7.5q16 0 16 -16v-210q0 -15 -35 -21.5t-62 -6.5q-18 0 -54.5 7.5t-55.5 7.5q-40 0 -90 -12v-133q1 0 9 0.5t11.5 0t9.5 -2t8.5 -5t2.5 -9.5v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-624h128v112q0 16 16 16h96
+q16 0 16 -16z" />
+    <glyph glyph-name="_607" unicode="&#xf287;" horiz-adv-x="2304" 
+d="M2288 731q16 -8 16 -27t-16 -27l-320 -192q-8 -5 -16 -5q-9 0 -16 4q-16 10 -16 28v128h-858q37 -58 83 -165q16 -37 24.5 -55t24 -49t27 -47t27 -34t31.5 -26t33 -8h96v96q0 14 9 23t23 9h320q14 0 23 -9t9 -23v-320q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v96h-96
+q-32 0 -61 10t-51 23.5t-45 40.5t-37 46t-33.5 57t-28.5 57.5t-28 60.5q-23 53 -37 81.5t-36 65t-44.5 53.5t-46.5 17h-360q-22 -84 -91 -138t-157 -54q-106 0 -181 75t-75 181t75 181t181 75q88 0 157 -54t91 -138h104q24 0 46.5 17t44.5 53.5t36 65t37 81.5q19 41 28 60.5
+t28.5 57.5t33.5 57t37 46t45 40.5t51 23.5t61 10h107q21 57 70 92.5t111 35.5q80 0 136 -56t56 -136t-56 -136t-136 -56q-62 0 -111 35.5t-70 92.5h-107q-17 0 -33 -8t-31.5 -26t-27 -34t-27 -47t-24 -49t-24.5 -55q-46 -107 -83 -165h1114v128q0 18 16 28t32 -1z" />
+    <glyph glyph-name="_608" unicode="&#xf288;" horiz-adv-x="1792" 
+d="M1150 774q0 -56 -39.5 -95t-95.5 -39h-253v269h253q56 0 95.5 -39.5t39.5 -95.5zM1329 774q0 130 -91.5 222t-222.5 92h-433v-896h180v269h253q130 0 222 91.5t92 221.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348
+t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_609" unicode="&#xf289;" horiz-adv-x="2304" 
+d="M1645 438q0 59 -34 106.5t-87 68.5q-7 -45 -23 -92q-7 -24 -27.5 -38t-44.5 -14q-12 0 -24 3q-31 10 -45 38.5t-4 58.5q23 71 23 143q0 123 -61 227.5t-166 165.5t-228 61q-134 0 -247 -73t-167 -194q108 -28 188 -106q22 -23 22 -55t-22 -54t-54 -22t-55 22
+q-75 75 -180 75q-106 0 -181 -74.5t-75 -180.5t75 -180.5t181 -74.5h1046q79 0 134.5 55.5t55.5 133.5zM1798 438q0 -142 -100.5 -242t-242.5 -100h-1046q-169 0 -289 119.5t-120 288.5q0 153 100 267t249 136q62 184 221 298t354 114q235 0 408.5 -158.5t196.5 -389.5
+q116 -25 192.5 -118.5t76.5 -214.5zM2048 438q0 -175 -97 -319q-23 -33 -64 -33q-24 0 -43 13q-26 17 -32 48.5t12 57.5q71 104 71 233t-71 233q-18 26 -12 57t32 49t57.5 11.5t49.5 -32.5q97 -142 97 -318zM2304 438q0 -244 -134 -443q-23 -34 -64 -34q-23 0 -42 13
+q-26 18 -32.5 49t11.5 57q108 164 108 358q0 195 -108 357q-18 26 -11.5 57.5t32.5 48.5q26 18 57 12t49 -33q134 -198 134 -442z" />
+    <glyph glyph-name="_610" unicode="&#xf28a;" 
+d="M1500 -13q0 -89 -63 -152.5t-153 -63.5t-153.5 63.5t-63.5 152.5q0 90 63.5 153.5t153.5 63.5t153 -63.5t63 -153.5zM1267 268q-115 -15 -192.5 -102.5t-77.5 -205.5q0 -74 33 -138q-146 -78 -379 -78q-109 0 -201 21t-153.5 54.5t-110.5 76.5t-76 85t-44.5 83
+t-23.5 66.5t-6 39.5q0 19 4.5 42.5t18.5 56t36.5 58t64 43.5t94.5 18t94 -17.5t63 -41t35.5 -53t17.5 -49t4 -33.5q0 -34 -23 -81q28 -27 82 -42t93 -17l40 -1q115 0 190 51t75 133q0 26 -9 48.5t-31.5 44.5t-49.5 41t-74 44t-93.5 47.5t-119.5 56.5q-28 13 -43 20
+q-116 55 -187 100t-122.5 102t-72 125.5t-20.5 162.5q0 78 20.5 150t66 137.5t112.5 114t166.5 77t221.5 28.5q120 0 220 -26t164.5 -67t109.5 -94t64 -105.5t19 -103.5q0 -46 -15 -82.5t-36.5 -58t-48.5 -36t-49 -19.5t-39 -5h-8h-32t-39 5t-44 14t-41 28t-37 46t-24 70.5
+t-10 97.5q-15 16 -59 25.5t-81 10.5l-37 1q-68 0 -117.5 -31t-70.5 -70t-21 -76q0 -24 5 -43t24 -46t53 -51t97 -53.5t150 -58.5q76 -25 138.5 -53.5t109 -55.5t83 -59t60.5 -59.5t41 -62.5t26.5 -62t14.5 -63.5t6 -62t1 -62.5z" />
+    <glyph glyph-name="_611" unicode="&#xf28b;" 
+d="M704 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1152 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103
+t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_612" unicode="&#xf28c;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273
+t73 -273t198 -198t273 -73zM864 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192z" />
+    <glyph glyph-name="_613" unicode="&#xf28d;" 
+d="M1088 352v576q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
+t103 -385.5z" />
+    <glyph glyph-name="_614" unicode="&#xf28e;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273
+t73 -273t198 -198t273 -73zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-576z" />
+    <glyph glyph-name="_615" unicode="&#xf290;" horiz-adv-x="1792" 
+d="M1757 128l35 -313q3 -28 -16 -50q-19 -21 -48 -21h-1664q-29 0 -48 21q-19 22 -16 50l35 313h1722zM1664 967l86 -775h-1708l86 775q3 24 21 40.5t43 16.5h256v-128q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v128h384v-128q0 -53 37.5 -90.5t90.5 -37.5
+t90.5 37.5t37.5 90.5v128h256q25 0 43 -16.5t21 -40.5zM1280 1152v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 159 112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="_616" unicode="&#xf291;" horiz-adv-x="2048" 
+d="M1920 768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-15l-115 -662q-8 -46 -44 -76t-82 -30h-1280q-46 0 -82 30t-44 76l-115 662h-15q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h1792zM485 -32q26 2 43.5 22.5t15.5 46.5l-32 416q-2 26 -22.5 43.5
+t-46.5 15.5t-43.5 -22.5t-15.5 -46.5l32 -416q2 -25 20.5 -42t43.5 -17h5zM896 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1280 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1632 27l32 416
+q2 26 -15.5 46.5t-43.5 22.5t-46.5 -15.5t-22.5 -43.5l-32 -416q-2 -26 15.5 -46.5t43.5 -22.5h5q25 0 43.5 17t20.5 42zM476 1244l-93 -412h-132l101 441q19 88 89 143.5t160 55.5h167q0 26 19 45t45 19h384q26 0 45 -19t19 -45h167q90 0 160 -55.5t89 -143.5l101 -441
+h-132l-93 412q-11 44 -45.5 72t-79.5 28h-167q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45h-167q-45 0 -79.5 -28t-45.5 -72z" />
+    <glyph glyph-name="_617" unicode="&#xf292;" horiz-adv-x="1792" 
+d="M991 512l64 256h-254l-64 -256h254zM1759 1016l-56 -224q-7 -24 -31 -24h-327l-64 -256h311q15 0 25 -12q10 -14 6 -28l-56 -224q-5 -24 -31 -24h-327l-81 -328q-7 -24 -31 -24h-224q-16 0 -26 12q-9 12 -6 28l78 312h-254l-81 -328q-7 -24 -31 -24h-225q-15 0 -25 12
+q-9 12 -6 28l78 312h-311q-15 0 -25 12q-9 12 -6 28l56 224q7 24 31 24h327l64 256h-311q-15 0 -25 12q-10 14 -6 28l56 224q5 24 31 24h327l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h254l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h311
+q15 0 25 -12q9 -12 6 -28z" />
+    <glyph glyph-name="_618" unicode="&#xf293;" 
+d="M841 483l148 -148l-149 -149zM840 1094l149 -149l-148 -148zM710 -130l464 464l-306 306l306 306l-464 464v-611l-255 255l-93 -93l320 -321l-320 -321l93 -93l255 255v-611zM1429 640q0 -209 -32 -365.5t-87.5 -257t-140.5 -162.5t-181.5 -86.5t-219.5 -24.5
+t-219.5 24.5t-181.5 86.5t-140.5 162.5t-87.5 257t-32 365.5t32 365.5t87.5 257t140.5 162.5t181.5 86.5t219.5 24.5t219.5 -24.5t181.5 -86.5t140.5 -162.5t87.5 -257t32 -365.5z" />
+    <glyph glyph-name="_619" unicode="&#xf294;" horiz-adv-x="1024" 
+d="M596 113l173 172l-173 172v-344zM596 823l173 172l-173 172v-344zM628 640l356 -356l-539 -540v711l-297 -296l-108 108l372 373l-372 373l108 108l297 -296v711l539 -540z" />
+    <glyph glyph-name="_620" unicode="&#xf295;" 
+d="M1280 256q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM512 1024q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5
+t112.5 -271.5zM1440 1344q0 -20 -13 -38l-1056 -1408q-19 -26 -51 -26h-160q-26 0 -45 19t-19 45q0 20 13 38l1056 1408q19 26 51 26h160q26 0 45 -19t19 -45zM768 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5
+t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="_621" unicode="&#xf296;" horiz-adv-x="1792" 
+d="M104 830l792 -1015l-868 630q-18 13 -25 34.5t0 42.5l101 308v0zM566 830h660l-330 -1015v0zM368 1442l198 -612h-462l198 612q8 23 33 23t33 -23zM1688 830l101 -308q7 -21 0 -42.5t-25 -34.5l-868 -630l792 1015v0zM1688 830h-462l198 612q8 23 33 23t33 -23z" />
+    <glyph glyph-name="_622" unicode="&#xf297;" horiz-adv-x="1792" 
+d="M384 704h160v224h-160v-224zM1221 372v92q-104 -36 -243 -38q-135 -1 -259.5 46.5t-220.5 122.5l1 -96q88 -80 212 -128.5t272 -47.5q129 0 238 49zM640 704h640v224h-640v-224zM1792 736q0 -187 -99 -352q89 -102 89 -229q0 -157 -129.5 -268t-313.5 -111
+q-122 0 -225 52.5t-161 140.5q-19 -1 -57 -1t-57 1q-58 -88 -161 -140.5t-225 -52.5q-184 0 -313.5 111t-129.5 268q0 127 89 229q-99 165 -99 352q0 209 120 385.5t326.5 279.5t449.5 103t449.5 -103t326.5 -279.5t120 -385.5z" />
+    <glyph glyph-name="_623" unicode="&#xf298;" 
+d="M515 625v-128h-252v128h252zM515 880v-127h-252v127h252zM1273 369v-128h-341v128h341zM1273 625v-128h-672v128h672zM1273 880v-127h-672v127h672zM1408 20v1240q0 8 -6 14t-14 6h-32l-378 -256l-210 171l-210 -171l-378 256h-32q-8 0 -14 -6t-6 -14v-1240q0 -8 6 -14
+t14 -6h1240q8 0 14 6t6 14zM553 1130l185 150h-406zM983 1130l221 150h-406zM1536 1260v-1240q0 -62 -43 -105t-105 -43h-1240q-62 0 -105 43t-43 105v1240q0 62 43 105t105 43h1240q62 0 105 -43t43 -105z" />
+    <glyph glyph-name="_624" unicode="&#xf299;" horiz-adv-x="1792" 
+d="M896 720q-104 196 -160 278q-139 202 -347 318q-34 19 -70 36q-89 40 -94 32t34 -38l39 -31q62 -43 112.5 -93.5t94.5 -116.5t70.5 -113t70.5 -131q9 -17 13 -25q44 -84 84 -153t98 -154t115.5 -150t131 -123.5t148.5 -90.5q153 -66 154 -60q1 3 -49 37q-53 36 -81 57
+q-77 58 -179 211t-185 310zM549 177q-76 60 -132.5 125t-98 143.5t-71 154.5t-58.5 186t-52 209t-60.5 252t-76.5 289q273 0 497.5 -36t379 -92t271 -144.5t185.5 -172.5t110 -198.5t56 -199.5t12.5 -198.5t-9.5 -173t-20 -143.5t-13 -107l323 -327h-104l-281 285
+q-22 -2 -91.5 -14t-121.5 -19t-138 -6t-160.5 17t-167.5 59t-179 111z" />
+    <glyph glyph-name="_625" unicode="&#xf29a;" horiz-adv-x="1792" 
+d="M1374 879q-6 26 -28.5 39.5t-48.5 7.5q-261 -62 -401 -62t-401 62q-26 6 -48.5 -7.5t-28.5 -39.5t7.5 -48.5t39.5 -28.5q194 -46 303 -58q-2 -158 -15.5 -269t-26.5 -155.5t-41 -115.5l-9 -21q-10 -25 1 -49t36 -34q9 -4 23 -4q44 0 60 41l8 20q54 139 71 259h42
+q17 -120 71 -259l8 -20q16 -41 60 -41q14 0 23 4q25 10 36 34t1 49l-9 21q-28 71 -41 115.5t-26.5 155.5t-15.5 269q109 12 303 58q26 6 39.5 28.5t7.5 48.5zM1024 1024q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z
+M1600 640q0 -143 -55.5 -273.5t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5zM896 1408q-156 0 -298 -61t-245 -164t-164 -245t-61 -298t61 -298
+t164 -245t245 -164t298 -61t298 61t245 164t164 245t61 298t-61 298t-164 245t-245 164t-298 61zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_626" unicode="&#xf29b;" 
+d="M1438 723q34 -35 29 -82l-44 -551q-4 -42 -34.5 -70t-71.5 -28q-6 0 -9 1q-44 3 -72.5 36.5t-25.5 77.5l35 429l-143 -8q55 -113 55 -240q0 -216 -148 -372l-137 137q91 101 91 235q0 145 -102.5 248t-247.5 103q-134 0 -236 -92l-137 138q120 114 284 141l264 300
+l-149 87l-181 -161q-33 -30 -77 -27.5t-73 35.5t-26.5 77t34.5 73l239 213q26 23 60 26.5t64 -14.5l488 -283q36 -21 48 -68q17 -67 -26 -117l-205 -232l371 20q49 3 83 -32zM1240 1180q-74 0 -126 52t-52 126t52 126t126 52t126.5 -52t52.5 -126t-52.5 -126t-126.5 -52z
+M613 -62q106 0 196 61l139 -139q-146 -116 -335 -116q-148 0 -273.5 73t-198.5 198t-73 273q0 188 116 336l139 -139q-60 -88 -60 -197q0 -145 102.5 -247.5t247.5 -102.5z" />
+    <glyph glyph-name="_627" unicode="&#xf29c;" 
+d="M880 336v-160q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h160q14 0 23 -9t9 -23zM1136 832q0 -50 -15 -90t-45.5 -69t-52 -44t-59.5 -36q-32 -18 -46.5 -28t-26 -24t-11.5 -29v-32q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v68q0 35 10.5 64.5
+t24 47.5t39 35.5t41 25.5t44.5 21q53 25 75 43t22 49q0 42 -43.5 71.5t-95.5 29.5q-56 0 -95 -27q-29 -20 -80 -83q-9 -12 -25 -12q-11 0 -19 6l-108 82q-10 7 -12 20t5 23q122 192 349 192q129 0 238.5 -89.5t109.5 -214.5zM768 1280q-130 0 -248.5 -51t-204 -136.5
+t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5
+t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_628" unicode="&#xf29d;" horiz-adv-x="1408" 
+d="M366 1225q-64 0 -110 45.5t-46 110.5q0 64 46 109.5t110 45.5t109.5 -45.5t45.5 -109.5q0 -65 -45.5 -110.5t-109.5 -45.5zM917 583q0 -50 -30 -67.5t-63.5 -6.5t-47.5 34l-367 438q-7 12 -14 15.5t-11 1.5l-3 -3q-7 -8 4 -21l122 -139l1 -354l-161 -457
+q-67 -192 -92 -234q-15 -26 -28 -32q-50 -26 -103 -1q-29 13 -41.5 43t-9.5 57q2 17 197 618l5 416l-85 -164l35 -222q4 -24 -1 -42t-14 -27.5t-19 -16t-17 -7.5l-7 -2q-19 -3 -34.5 3t-24 16t-14 22t-7.5 19.5t-2 9.5l-46 299l211 381q23 34 113 34q75 0 107 -40l424 -521
+q7 -5 14 -17l3 -3l-1 -1q7 -13 7 -29zM514 433q43 -113 88.5 -225t69.5 -168l24 -55q36 -93 42 -125q11 -70 -36 -97q-35 -22 -66 -16t-51 22t-29 35h-1q-6 16 -8 25l-124 351zM1338 -159q31 -49 31 -57q0 -5 -3 -7q-9 -5 -14.5 0.5t-15.5 26t-16 30.5q-114 172 -423 661
+q3 -1 7 1t7 4l3 2q11 9 11 17z" />
+    <glyph glyph-name="_629" unicode="&#xf29e;" horiz-adv-x="2304" 
+d="M504 542h171l-1 265zM1530 641q0 87 -50.5 140t-146.5 53h-54v-388h52q91 0 145 57t54 138zM956 1018l1 -756q0 -14 -9.5 -24t-23.5 -10h-216q-14 0 -23.5 10t-9.5 24v62h-291l-55 -81q-10 -15 -28 -15h-267q-21 0 -30.5 18t3.5 35l556 757q9 14 27 14h332q14 0 24 -10
+t10 -24zM1783 641q0 -193 -125.5 -303t-324.5 -110h-270q-14 0 -24 10t-10 24v756q0 14 10 24t24 10h268q200 0 326 -109t126 -302zM1939 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5
+t-7.5 60t-20 91.5t-41 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2123 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-45 -108t-74 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5
+h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2304 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66 104.5t41 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96
+t9.5 -70.5z" />
+    <glyph glyph-name="uniF2A0" unicode="&#xf2a0;" horiz-adv-x="1408" 
+d="M617 -153q0 11 -13 58t-31 107t-20 69q-1 4 -5 26.5t-8.5 36t-13.5 21.5q-15 14 -51 14q-23 0 -70 -5.5t-71 -5.5q-34 0 -47 11q-6 5 -11 15.5t-7.5 20t-6.5 24t-5 18.5q-37 128 -37 255t37 255q1 4 5 18.5t6.5 24t7.5 20t11 15.5q13 11 47 11q24 0 71 -5.5t70 -5.5
+q36 0 51 14q9 8 13.5 21.5t8.5 36t5 26.5q2 9 20 69t31 107t13 58q0 22 -43.5 52.5t-75.5 42.5q-20 8 -45 8q-34 0 -98 -18q-57 -17 -96.5 -40.5t-71 -66t-46 -70t-45.5 -94.5q-6 -12 -9 -19q-49 -107 -68 -216t-19 -244t19 -244t68 -216q56 -122 83 -161q63 -91 179 -127
+l6 -2q64 -18 98 -18q25 0 45 8q32 12 75.5 42.5t43.5 52.5zM776 760q-26 0 -45 19t-19 45.5t19 45.5q37 37 37 90q0 52 -37 91q-19 19 -19 45t19 45t45 19t45 -19q75 -75 75 -181t-75 -181q-21 -19 -45 -19zM957 579q-27 0 -45 19q-19 19 -19 45t19 45q112 114 112 272
+t-112 272q-19 19 -19 45t19 45t45 19t45 -19q150 -150 150 -362t-150 -362q-18 -19 -45 -19zM1138 398q-27 0 -45 19q-19 19 -19 45t19 45q90 91 138.5 208t48.5 245t-48.5 245t-138.5 208q-19 19 -19 45t19 45t45 19t45 -19q109 -109 167 -249t58 -294t-58 -294t-167 -249
+q-18 -19 -45 -19z" />
+    <glyph glyph-name="uniF2A1" unicode="&#xf2a1;" horiz-adv-x="2176" 
+d="M192 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 352
+q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 864
+q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 1376q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 192q0 -80 -56 -136
+t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 1216q0 -80 -56 -136t-136 -56
+t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 192q0 -80 -56 -136t-136 -56t-136 56
+t-56 136t56 136t136 56t136 -56t56 -136zM1664 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136
+t56 136t136 56t136 -56t56 -136zM2176 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z" />
+    <glyph glyph-name="uniF2A2" unicode="&#xf2a2;" horiz-adv-x="1792" 
+d="M128 -192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM320 0q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM365 365l256 -256l-90 -90l-256 256zM704 384q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45z
+M1411 704q0 -59 -11.5 -108.5t-37.5 -93.5t-44 -67.5t-53 -64.5q-31 -35 -45.5 -54t-33.5 -50t-26.5 -64t-7.5 -74q0 -159 -112.5 -271.5t-271.5 -112.5q-26 0 -45 19t-19 45t19 45t45 19q106 0 181 75t75 181q0 57 11.5 105.5t37 91t43.5 66.5t52 63q40 46 59.5 72
+t37.5 74.5t18 103.5q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM896 576q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45
+t45 19t45 -19t19 -45zM1184 704q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 93 -65.5 158.5t-158.5 65.5q-92 0 -158 -65.5t-66 -158.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 146 103 249t249 103t249 -103t103 -249zM1578 993q10 -25 -1 -49t-36 -34q-9 -4 -23 -4
+q-19 0 -35.5 11t-23.5 30q-68 178 -224 295q-21 16 -25 42t12 47q17 21 43 25t47 -12q183 -137 266 -351zM1788 1074q9 -25 -1.5 -49t-35.5 -34q-11 -4 -23 -4q-44 0 -60 41q-92 238 -297 393q-22 16 -25.5 42t12.5 47q16 22 42 25.5t47 -12.5q235 -175 341 -449z" />
+    <glyph glyph-name="uniF2A3" unicode="&#xf2a3;" horiz-adv-x="2304" 
+d="M1032 576q-59 2 -84 55q-17 34 -48 53.5t-68 19.5q-53 0 -90.5 -37.5t-37.5 -90.5q0 -56 36 -89l10 -8q34 -31 82 -31q37 0 68 19.5t48 53.5q25 53 84 55zM1600 704q0 56 -36 89l-10 8q-34 31 -82 31q-37 0 -68 -19.5t-48 -53.5q-25 -53 -84 -55q59 -2 84 -55
+q17 -34 48 -53.5t68 -19.5q53 0 90.5 37.5t37.5 90.5zM1174 925q-17 -35 -55 -48t-73 4q-62 31 -134 31q-51 0 -99 -17q3 0 9.5 0.5t9.5 0.5q92 0 170.5 -50t118.5 -133q17 -36 3.5 -73.5t-49.5 -54.5q-18 -9 -39 -9q21 0 39 -9q36 -17 49.5 -54.5t-3.5 -73.5
+q-40 -83 -118.5 -133t-170.5 -50h-6q-16 2 -44 4l-290 27l-239 -120q-14 -7 -29 -7q-40 0 -57 35l-160 320q-11 23 -4 47.5t29 37.5l209 119l148 267q17 155 91.5 291.5t195.5 236.5q31 25 70.5 21.5t64.5 -34.5t21.5 -70t-34.5 -65q-70 -59 -117 -128q123 84 267 101
+q40 5 71.5 -19t35.5 -64q5 -40 -19 -71.5t-64 -35.5q-84 -10 -159 -55q46 10 99 10q115 0 218 -50q36 -18 49 -55.5t-5 -73.5zM2137 1085l160 -320q11 -23 4 -47.5t-29 -37.5l-209 -119l-148 -267q-17 -155 -91.5 -291.5t-195.5 -236.5q-26 -22 -61 -22q-45 0 -74 35
+q-25 31 -21.5 70t34.5 65q70 59 117 128q-123 -84 -267 -101q-4 -1 -12 -1q-36 0 -63.5 24t-31.5 60q-5 40 19 71.5t64 35.5q84 10 159 55q-46 -10 -99 -10q-115 0 -218 50q-36 18 -49 55.5t5 73.5q17 35 55 48t73 -4q62 -31 134 -31q51 0 99 17q-3 0 -9.5 -0.5t-9.5 -0.5
+q-92 0 -170.5 50t-118.5 133q-17 36 -3.5 73.5t49.5 54.5q18 9 39 9q-21 0 -39 9q-36 17 -49.5 54.5t3.5 73.5q40 83 118.5 133t170.5 50h6h1q14 -2 42 -4l291 -27l239 120q14 7 29 7q40 0 57 -35z" />
+    <glyph glyph-name="uniF2A4" unicode="&#xf2a4;" horiz-adv-x="1792" 
+d="M1056 704q0 -26 19 -45t45 -19t45 19t19 45q0 146 -103 249t-249 103t-249 -103t-103 -249q0 -26 19 -45t45 -19t45 19t19 45q0 93 66 158.5t158 65.5t158 -65.5t66 -158.5zM835 1280q-117 0 -223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5q0 -26 19 -45t45 -19t45 19
+t19 45q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -55 -18 -103.5t-37.5 -74.5t-59.5 -72q-34 -39 -52 -63t-43.5 -66.5t-37 -91t-11.5 -105.5q0 -106 -75 -181t-181 -75q-26 0 -45 -19t-19 -45t19 -45t45 -19q159 0 271.5 112.5t112.5 271.5q0 41 7.5 74
+t26.5 64t33.5 50t45.5 54q35 41 53 64.5t44 67.5t37.5 93.5t11.5 108.5q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5zM591 561l226 -226l-579 -579q-12 -12 -29 -12t-29 12l-168 168q-12 12 -12 29t12 29zM1612 1524l168 -168q12 -12 12 -29t-12 -30l-233 -233
+l-26 -25l-71 -71q-66 153 -195 258l91 91l207 207q13 12 30 12t29 -12z" />
+    <glyph glyph-name="uniF2A5" unicode="&#xf2a5;" 
+d="M866 1021q0 -27 -13 -94q-11 -50 -31.5 -150t-30.5 -150q-2 -11 -4.5 -12.5t-13.5 -2.5q-20 -2 -31 -2q-58 0 -84 49.5t-26 113.5q0 88 35 174t103 124q28 14 51 14q28 0 36.5 -16.5t8.5 -47.5zM1352 597q0 14 -39 75.5t-52 66.5q-21 8 -34 8q-91 0 -226 -77l-2 2
+q3 22 27.5 135t24.5 178q0 233 -242 233q-24 0 -68 -6q-94 -17 -168.5 -89.5t-111.5 -166.5t-37 -189q0 -146 80.5 -225t227.5 -79q25 0 25 -3t-1 -5q-4 -34 -26 -117q-14 -52 -51.5 -101t-82.5 -49q-42 0 -42 47q0 24 10.5 47.5t25 39.5t29.5 28.5t26 20t11 8.5q0 3 -7 10
+q-24 22 -58.5 36.5t-65.5 14.5q-35 0 -63.5 -34t-41 -75t-12.5 -75q0 -88 51.5 -142t138.5 -54q82 0 155 53t117.5 126t65.5 153q6 22 15.5 66.5t14.5 66.5q3 12 14 18q118 60 227 60q48 0 127 -18q1 -1 4 -1q5 0 9.5 4.5t4.5 8.5zM1536 1120v-960q0 -119 -84.5 -203.5
+t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="uniF2A6" unicode="&#xf2a6;" horiz-adv-x="1535" 
+d="M744 1231q0 24 -2 38.5t-8.5 30t-21 23t-37.5 7.5q-39 0 -78 -23q-105 -58 -159 -190.5t-54 -269.5q0 -44 8.5 -85.5t26.5 -80.5t52.5 -62.5t81.5 -23.5q4 0 18 -0.5t20 0t16 3t15 8.5t7 16q16 77 48 231.5t48 231.5q19 91 19 146zM1498 575q0 -7 -7.5 -13.5t-15.5 -6.5
+l-6 1q-22 3 -62 11t-72 12.5t-63 4.5q-167 0 -351 -93q-15 -8 -21 -27q-10 -36 -24.5 -105.5t-22.5 -100.5q-23 -91 -70 -179.5t-112.5 -164.5t-154.5 -123t-185 -47q-135 0 -214.5 83.5t-79.5 219.5q0 53 19.5 117t63 116.5t97.5 52.5q38 0 120 -33.5t83 -61.5
+q0 -1 -16.5 -12.5t-39.5 -31t-46 -44.5t-39 -61t-16 -74q0 -33 16.5 -53t48.5 -20q45 0 85 31.5t66.5 78t48 105.5t32.5 107t16 90v9q0 2 -3.5 3.5t-8.5 1.5h-10t-10 -0.5t-6 -0.5q-227 0 -352 122.5t-125 348.5q0 108 34.5 221t96 210t156 167.5t204.5 89.5q52 9 106 9
+q374 0 374 -360q0 -98 -38 -273t-43 -211l3 -3q101 57 182.5 88t167.5 31q22 0 53 -13q19 -7 80 -102.5t61 -116.5z" />
+    <glyph glyph-name="uniF2A7" unicode="&#xf2a7;" horiz-adv-x="1664" 
+d="M831 863q32 0 59 -18l222 -148q61 -40 110 -97l146 -170q40 -46 29 -106l-72 -413q-6 -32 -29.5 -53.5t-55.5 -25.5l-527 -56l-352 -32h-9q-39 0 -67.5 28t-28.5 68q0 37 27 64t65 32l260 32h-448q-41 0 -69.5 30t-26.5 71q2 39 32 65t69 26l442 1l-521 64q-41 5 -66 37
+t-19 73q6 35 34.5 57.5t65.5 22.5h10l481 -60l-351 94q-38 10 -62 41.5t-18 68.5q6 36 33 58.5t62 22.5q6 0 20 -2l448 -96l217 -37q1 0 3 -0.5t3 -0.5q23 0 30.5 23t-12.5 36l-186 125q-35 23 -42 63.5t18 73.5q27 38 76 38zM761 661l186 -125l-218 37l-5 2l-36 38
+l-238 262q-1 1 -2.5 3.5t-2.5 3.5q-24 31 -18.5 70t37.5 64q31 23 68 17.5t64 -33.5l142 -147q-2 -1 -5 -3.5t-4 -4.5q-32 -45 -23 -99t55 -85zM1648 1115l15 -266q4 -73 -11 -147l-48 -219q-12 -59 -67 -87l-106 -54q2 62 -39 109l-146 170q-53 61 -117 103l-222 148
+q-34 23 -76 23q-51 0 -88 -37l-235 312q-25 33 -18 73.5t41 63.5q33 22 71.5 14t62.5 -40l266 -352l-262 455q-21 35 -10.5 75t47.5 59q35 18 72.5 6t57.5 -46l241 -420l-136 337q-15 35 -4.5 74t44.5 56q37 19 76 6t56 -51l193 -415l101 -196q8 -15 23 -17.5t27 7.5t11 26
+l-12 224q-2 41 26 71t69 31q39 0 67 -28.5t30 -67.5z" />
+    <glyph glyph-name="uniF2A8" unicode="&#xf2a8;" horiz-adv-x="1792" 
+d="M335 180q-2 0 -6 2q-86 57 -168.5 145t-139.5 180q-21 30 -21 69q0 9 2 19t4 18t7 18t8.5 16t10.5 17t10 15t12 15.5t11 14.5q184 251 452 365q-110 198 -110 211q0 19 17 29q116 64 128 64q18 0 28 -16l124 -229q92 19 192 19q266 0 497.5 -137.5t378.5 -369.5
+q20 -31 20 -69t-20 -69q-91 -142 -218.5 -253.5t-278.5 -175.5q110 -198 110 -211q0 -20 -17 -29q-116 -64 -127 -64q-19 0 -29 16l-124 229l-64 119l-444 820l7 7q-58 -24 -99 -47q3 -5 127 -234t243 -449t119 -223q0 -7 -9 -9q-13 -3 -72 -3q-57 0 -60 7l-456 841
+q-39 -28 -82 -68q24 -43 214 -393.5t190 -354.5q0 -10 -11 -10q-14 0 -82.5 22t-72.5 28l-106 197l-224 413q-44 -53 -78 -106q2 -3 18 -25t23 -34l176 -327q0 -10 -10 -10zM1165 282l49 -91q273 111 450 385q-180 277 -459 389q67 -64 103 -148.5t36 -176.5
+q0 -106 -47 -200.5t-132 -157.5zM848 896q0 -20 14 -34t34 -14q86 0 147 -61t61 -147q0 -20 14 -34t34 -14t34 14t14 34q0 126 -89 215t-215 89q-20 0 -34 -14t-14 -34zM1214 961l-9 4l7 -7z" />
+    <glyph glyph-name="uniF2A9" unicode="&#xf2a9;" horiz-adv-x="1280" 
+d="M1050 430q0 -215 -147 -374q-148 -161 -378 -161q-232 0 -378 161q-147 159 -147 374q0 147 68 270.5t189 196.5t268 73q96 0 182 -31q-32 -62 -39 -126q-66 28 -143 28q-167 0 -280.5 -123t-113.5 -291q0 -170 112.5 -288.5t281.5 -118.5t281 118.5t112 288.5
+q0 89 -32 166q66 13 123 49q41 -98 41 -212zM846 619q0 -192 -79.5 -345t-238.5 -253l-14 -1q-29 0 -62 5q83 32 146.5 102.5t99.5 154.5t58.5 189t30 192.5t7.5 178.5q0 69 -3 103q55 -160 55 -326zM791 947v-2q-73 214 -206 440q88 -59 142.5 -186.5t63.5 -251.5z
+M1035 744q-83 0 -160 75q218 120 290 247q19 37 21 56q-42 -94 -139.5 -166.5t-204.5 -97.5q-35 54 -35 113q0 37 17 79t43 68q46 44 157 74q59 16 106 58.5t74 100.5q74 -105 74 -253q0 -109 -24 -170q-32 -77 -88.5 -130.5t-130.5 -53.5z" />
+    <glyph glyph-name="uniF2AA" unicode="&#xf2aa;" 
+d="M1050 495q0 78 -28 147q-41 -25 -85 -34q22 -50 22 -114q0 -117 -77 -198.5t-193 -81.5t-193.5 81.5t-77.5 198.5q0 115 78 199.5t193 84.5q53 0 98 -19q4 43 27 87q-60 21 -125 21q-154 0 -257.5 -108.5t-103.5 -263.5t103.5 -261t257.5 -106t257.5 106.5t103.5 260.5z
+M872 850q2 -24 2 -71q0 -63 -5 -123t-20.5 -132.5t-40.5 -130t-68.5 -106t-100.5 -70.5q21 -3 42 -3h10q219 139 219 411q0 116 -38 225zM872 850q-4 80 -44 171.5t-98 130.5q92 -156 142 -302zM1207 955q0 102 -51 174q-41 -86 -124 -109q-69 -19 -109 -53.5t-40 -99.5
+q0 -40 24 -77q74 17 140.5 67t95.5 115q-4 -52 -74.5 -111.5t-138.5 -97.5q52 -52 110 -52q51 0 90 37t60 90q17 42 17 117zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
+t84.5 -203.5z" />
+    <glyph glyph-name="uniF2AB" unicode="&#xf2ab;" 
+d="M1279 388q0 22 -22 27q-67 15 -118 59t-80 108q-7 19 -7 25q0 15 19.5 26t43 17t43 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-12 0 -32 -8t-31 -8q-4 0 -12 2q5 95 5 114q0 79 -17 114q-36 78 -103 121.5t-152 43.5q-199 0 -275 -165q-17 -35 -17 -114q0 -19 5 -114
+q-4 -2 -14 -2q-12 0 -32 7.5t-30 7.5q-21 0 -38.5 -12t-17.5 -32q0 -21 19.5 -35.5t43 -20.5t43 -17t19.5 -26q0 -6 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -46 137 -68q2 -5 6 -26t11.5 -30.5t23.5 -9.5q12 0 37.5 4.5t39.5 4.5q35 0 67 -15t54 -32.5t57.5 -32.5
+t76.5 -15q43 0 79 15t57.5 32.5t53.5 32.5t67 15q14 0 39.5 -4t38.5 -4q16 0 23 10t11 30t6 25q137 22 137 68zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
+t103 -385.5z" />
+    <glyph glyph-name="uniF2AC" unicode="&#xf2ac;" horiz-adv-x="1664" 
+d="M848 1408q134 1 240.5 -68.5t163.5 -192.5q27 -58 27 -179q0 -47 -9 -191q14 -7 28 -7q18 0 51 13.5t51 13.5q29 0 56 -18t27 -46q0 -32 -31.5 -54t-69 -31.5t-69 -29t-31.5 -47.5q0 -15 12 -43q37 -82 102.5 -150t144.5 -101q28 -12 80 -23q28 -6 28 -35
+q0 -70 -219 -103q-7 -11 -11 -39t-14 -46.5t-33 -18.5q-20 0 -62 6.5t-64 6.5q-37 0 -62 -5q-32 -5 -63 -22.5t-58 -38t-58 -40.5t-76 -33.5t-99 -13.5q-52 0 -96.5 13.5t-75 33.5t-57.5 40.5t-58 38t-62 22.5q-26 5 -63 5q-24 0 -65.5 -7.5t-58.5 -7.5q-25 0 -35 18.5
+t-14 47.5t-11 40q-219 33 -219 103q0 29 28 35q52 11 80 23q78 32 144.5 101t102.5 150q12 28 12 43q0 28 -31.5 47.5t-69.5 29.5t-69.5 31.5t-31.5 52.5q0 27 26 45.5t55 18.5q15 0 48 -13t53 -13q18 0 32 7q-9 142 -9 190q0 122 27 180q64 137 172 198t264 63z" />
+    <glyph glyph-name="uniF2AD" unicode="&#xf2ad;" 
+d="M1280 388q0 22 -22 27q-67 14 -118 58t-80 109q-7 14 -7 25q0 15 19.5 26t42.5 17t42.5 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-11 0 -31 -8t-32 -8q-4 0 -12 2q5 63 5 115q0 78 -17 114q-36 78 -102.5 121.5t-152.5 43.5q-198 0 -275 -165q-18 -38 -18 -115
+q0 -38 6 -114q-10 -2 -15 -2q-11 0 -31.5 8t-30.5 8q-20 0 -37.5 -12.5t-17.5 -32.5q0 -21 19.5 -35.5t42.5 -20.5t42.5 -17t19.5 -26q0 -11 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -47 138 -69q2 -5 6 -26t11 -30.5t23 -9.5q13 0 38.5 5t38.5 5q35 0 67.5 -15
+t54.5 -32.5t57.5 -32.5t76.5 -15q43 0 79 15t57.5 32.5t54 32.5t67.5 15q13 0 39 -4.5t39 -4.5q15 0 22.5 9.5t11.5 31t5 24.5q138 22 138 69zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960
+q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="uniF2AE" unicode="&#xf2ae;" horiz-adv-x="2304" 
+d="M2304 1536q-69 -46 -125 -92t-89 -81t-59.5 -71.5t-37.5 -57.5t-22 -44.5t-14 -29.5q-10 -18 -35.5 -136.5t-48.5 -164.5q-15 -29 -50 -60.5t-67.5 -50.5t-72.5 -41t-48 -28q-47 -31 -151 -231q-341 14 -630 -158q-92 -53 -303 -179q47 16 86 31t55 22l15 7
+q71 27 163 64.5t133.5 53.5t108 34.5t142.5 31.5q186 31 465 -7q1 0 10 -3q11 -6 14 -17t-3 -22l-194 -345q-15 -29 -47 -22q-128 24 -354 24q-146 0 -402 -44.5t-392 -46.5q-82 -1 -149 13t-107 37t-61 40t-33 34l-1 1v2q0 6 6 6q138 0 371 55q192 366 374.5 524t383.5 158
+q5 0 14.5 -0.5t38 -5t55 -12t61.5 -24.5t63 -39.5t54 -59t40 -82.5l102 177q2 4 21 42.5t44.5 86.5t61 109.5t84 133.5t100.5 137q66 82 128 141.5t121.5 96.5t92.5 53.5t88 39.5z" />
+    <glyph glyph-name="uniF2B0" unicode="&#xf2b0;" 
+d="M1322 640q0 -45 -5 -76l-236 14l224 -78q-19 -73 -58 -141l-214 103l177 -158q-44 -61 -107 -108l-157 178l103 -215q-61 -37 -140 -59l-79 228l14 -240q-38 -6 -76 -6t-76 6l14 238l-78 -226q-74 19 -140 59l103 215l-157 -178q-59 43 -108 108l178 158l-214 -104
+q-39 69 -58 141l224 79l-237 -14q-5 42 -5 76q0 35 5 77l238 -14l-225 79q19 73 58 140l214 -104l-177 159q46 61 107 108l158 -178l-103 215q67 39 140 58l77 -224l-13 236q36 6 75 6q38 0 76 -6l-14 -237l78 225q74 -19 140 -59l-103 -214l158 178q61 -47 107 -108
+l-177 -159l213 104q37 -62 58 -141l-224 -78l237 14q5 -31 5 -77zM1352 640q0 160 -78.5 295.5t-213 214t-292.5 78.5q-119 0 -227 -46.5t-186.5 -125t-124.5 -187.5t-46 -229q0 -119 46 -228t124.5 -187.5t186.5 -125t227 -46.5q158 0 292.5 78.5t213 214t78.5 294.5z
+M1425 1023v-766l-657 -383l-657 383v766l657 383zM768 -183l708 412v823l-708 411l-708 -411v-823zM1536 1088v-896l-768 -448l-768 448v896l768 448z" />
+    <glyph glyph-name="uniF2B1" unicode="&#xf2b1;" horiz-adv-x="1664" 
+d="M339 1318h691l-26 -72h-665q-110 0 -188.5 -79t-78.5 -189v-771q0 -95 60.5 -169.5t153.5 -93.5q23 -5 98 -5v-72h-45q-140 0 -239.5 100t-99.5 240v771q0 140 99.5 240t239.5 100zM1190 1536h247l-482 -1294q-23 -61 -40.5 -103.5t-45 -98t-54 -93.5t-64.5 -78.5
+t-79.5 -65t-95.5 -41t-116 -18.5v195q163 26 220 182q20 52 20 105q0 54 -20 106l-285 733h228l187 -585zM1664 978v-1111h-795q37 55 45 73h678v1038q0 85 -49.5 155t-129.5 99l25 67q101 -34 163.5 -123.5t62.5 -197.5z" />
+    <glyph glyph-name="uniF2B2" unicode="&#xf2b2;" horiz-adv-x="1792" 
+d="M852 1227q0 -29 -17 -52.5t-45 -23.5t-45 23.5t-17 52.5t17 52.5t45 23.5t45 -23.5t17 -52.5zM688 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50 -21.5t-20 -51.5v-114q0 -30 20.5 -52t49.5 -22q30 0 50.5 22t20.5 52zM860 -149v114q0 30 -20 51.5t-50 21.5t-50.5 -21.5
+t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22q29 0 49.5 22t20.5 52zM1034 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1208 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114
+q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1476 535q-84 -160 -232 -259.5t-323 -99.5q-123 0 -229.5 51.5t-178.5 137t-113 197.5t-41 232q0 88 21 174q-104 -175 -104 -390q0 -162 65 -312t185 -251q30 57 91 57q56 0 86 -50q32 50 87 50q56 0 86 -50q32 50 87 50t87 -50
+q30 50 86 50q28 0 52.5 -15.5t37.5 -40.5q112 94 177 231.5t73 287.5zM1326 564q0 75 -72 75q-17 0 -47 -6q-95 -19 -149 -19q-226 0 -226 243q0 86 30 204q-83 -127 -83 -275q0 -150 89 -260.5t235 -110.5q111 0 210 70q13 48 13 79zM884 1223q0 50 -32 89.5t-81 39.5
+t-81 -39.5t-32 -89.5q0 -51 31.5 -90.5t81.5 -39.5t81.5 39.5t31.5 90.5zM1513 884q0 96 -37.5 179t-113 137t-173.5 54q-77 0 -149 -35t-127 -94q-48 -159 -48 -268q0 -104 45.5 -157t147.5 -53q53 0 142 19q36 6 53 6q51 0 77.5 -28t26.5 -80q0 -26 -4 -46
+q75 68 117.5 165.5t42.5 200.5zM1792 667q0 -111 -33.5 -249.5t-93.5 -204.5q-58 -64 -195 -142.5t-228 -104.5l-4 -1v-114q0 -43 -29.5 -75t-72.5 -32q-56 0 -86 50q-32 -50 -87 -50t-87 50q-30 -50 -86 -50q-55 0 -87 50q-30 -50 -86 -50q-47 0 -75 33.5t-28 81.5
+q-90 -68 -198 -68q-118 0 -211 80q54 1 106 20q-113 31 -182 127q32 -7 71 -7q89 0 164 46q-192 192 -240 306q-24 56 -24 160q0 57 9 125.5t31.5 146.5t55 141t86.5 105t120 42q59 0 81 -52q19 29 42 54q2 3 12 13t13 16q10 15 23 38t25 42t28 39q87 111 211.5 177
+t260.5 66q35 0 62 -4q59 64 146 64q83 0 140 -57q5 -5 5 -12q0 -5 -6 -13.5t-12.5 -16t-16 -17l-10.5 -10.5q17 -6 36 -18t19 -24q0 -6 -16 -25q157 -138 197 -378q25 30 60 30q45 0 100 -49q90 -80 90 -279z" />
+    <glyph glyph-name="uniF2B3" unicode="&#xf2b3;" 
+d="M917 631q0 33 -6 64h-362v-132h217q-12 -76 -74.5 -120.5t-142.5 -44.5q-99 0 -169 71.5t-70 170.5t70 170.5t169 71.5q93 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585h109v110
+h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="uniF2B4" unicode="&#xf2b4;" 
+d="M1536 1024v-839q0 -48 -49 -62q-174 -52 -338 -52q-73 0 -215.5 29.5t-227.5 29.5q-164 0 -370 -48v-338h-160v1368q-63 25 -101 81t-38 124q0 91 64 155t155 64t155 -64t64 -155q0 -68 -38 -124t-101 -81v-68q190 44 343 44q99 0 198 -15q14 -2 111.5 -22.5t149.5 -20.5
+q77 0 165 18q11 2 80 21t89 19q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="uniF2B5" unicode="&#xf2b5;" horiz-adv-x="2304" 
+d="M192 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32zM1665 442q-10 13 -38.5 50t-41.5 54t-38 49t-42.5 53t-40.5 47t-45 49l-125 -140q-83 -94 -208.5 -92t-205.5 98q-57 69 -56.5 158t58.5 157l177 206q-22 11 -51 16.5t-47.5 6t-56.5 -0.5t-49 -1q-92 0 -158 -66
+l-158 -158h-155v-544q5 0 21 0.5t22 0t19.5 -2t20.5 -4.5t17.5 -8.5t18.5 -13.5l297 -292q115 -111 227 -111q78 0 125 47q57 -20 112.5 8t72.5 85q74 -6 127 44q20 18 36 45.5t14 50.5q10 -10 43 -10q43 0 77 21t49.5 53t12 71.5t-30.5 73.5zM1824 384h96v512h-93l-157 180
+q-66 76 -169 76h-167q-89 0 -146 -67l-209 -243q-28 -33 -28 -75t27 -75q43 -51 110 -52t111 49l193 218q25 23 53.5 21.5t47 -27t8.5 -56.5q16 -19 56 -63t60 -68q29 -36 82.5 -105.5t64.5 -84.5q52 -66 60 -140zM2112 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32z
+M2304 960v-640q0 -26 -19 -45t-45 -19h-434q-27 -65 -82 -106.5t-125 -51.5q-33 -48 -80.5 -81.5t-102.5 -45.5q-42 -53 -104.5 -81.5t-128.5 -24.5q-60 -34 -126 -39.5t-127.5 14t-117 53.5t-103.5 81l-287 282h-358q-26 0 -45 19t-19 45v672q0 26 19 45t45 19h421
+q14 14 47 48t47.5 48t44 40t50.5 37.5t51 25.5t62 19.5t68 5.5h117q99 0 181 -56q82 56 181 56h167q35 0 67 -6t56.5 -14.5t51.5 -26.5t44.5 -31t43 -39.5t39 -42t41 -48t41.5 -48.5h355q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="uniF2B6" unicode="&#xf2b6;" horiz-adv-x="1792" 
+d="M1792 882v-978q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v978q0 15 11 24q8 7 39 34.5t41.5 36t45.5 37.5t70 55.5t96 73t143.5 107t192.5 140.5q5 4 52.5 40t71.5 52.5t64 35t69 18.5t69 -18.5t65 -35.5t71 -52t52 -40q110 -80 192.5 -140.5t143.5 -107
+t96 -73t70 -55.5t45.5 -37.5t41.5 -36t39 -34.5q11 -9 11 -24zM1228 297q263 191 345 252q11 8 12.5 20.5t-6.5 23.5l-38 52q-8 11 -21 12.5t-24 -6.5q-231 -169 -343 -250q-5 -3 -52 -39t-71.5 -52.5t-64.5 -35t-69 -18.5t-69 18.5t-64.5 35t-71.5 52.5t-52 39
+q-186 134 -343 250q-11 8 -24 6.5t-21 -12.5l-38 -52q-8 -11 -6.5 -23.5t12.5 -20.5q82 -61 345 -252q10 -8 50 -38t65 -47t64 -39.5t77.5 -33.5t75.5 -11t75.5 11t79 34.5t64.5 39.5t65 47.5t48 36.5z" />
+    <glyph glyph-name="uniF2B7" unicode="&#xf2b7;" horiz-adv-x="1792" 
+d="M1474 623l39 -51q8 -11 6.5 -23.5t-11.5 -20.5q-43 -34 -126.5 -98.5t-146.5 -113t-67 -51.5q-39 -32 -60 -48t-60.5 -41t-76.5 -36.5t-74 -11.5h-1h-1q-37 0 -74 11.5t-76 36.5t-61 41.5t-60 47.5q-5 4 -65 50.5t-143.5 111t-122.5 94.5q-11 8 -12.5 20.5t6.5 23.5
+l37 52q8 11 21.5 13t24.5 -7q94 -73 306 -236q5 -4 43.5 -35t60.5 -46.5t56.5 -32.5t58.5 -17h1h1q24 0 58.5 17t56.5 32.5t60.5 46.5t43.5 35q258 198 313 242q11 8 24 6.5t21 -12.5zM1664 -96v928q-90 83 -159 139q-91 74 -389 304q-3 2 -43 35t-61 48t-56 32.5t-59 17.5
+h-1h-1q-24 0 -59 -17.5t-56 -32.5t-61 -48t-43 -35q-215 -166 -315.5 -245.5t-129.5 -104t-82 -74.5q-14 -12 -21 -19v-928q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 832v-928q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v928q0 56 41 94
+q123 114 350 290.5t233 181.5q36 30 59 47.5t61.5 42t76 36.5t74.5 12h1h1q37 0 74.5 -12t76 -36.5t61.5 -42t59 -47.5q43 -36 156 -122t226 -177t201 -173q41 -38 41 -94z" />
+    <glyph glyph-name="uniF2B8" unicode="&#xf2b8;" 
+d="M330 1l202 -214l-34 236l-216 213zM556 -225l274 218l-11 245l-300 -215zM245 413l227 -213l-48 327l-245 204zM495 189l317 214l-14 324l-352 -200zM843 178l95 -80l-2 239l-103 79q0 -1 1 -8.5t0 -12t-5 -7.5l-78 -52l85 -70q7 -6 7 -88zM138 930l256 -200l-68 465
+l-279 173zM1173 267l15 234l-230 -164l2 -240zM417 722l373 194l-19 441l-423 -163zM1270 357l20 233l-226 142l-2 -105l144 -95q6 -4 4 -9l-7 -119zM1461 496l30 222l-179 -128l-20 -228zM1273 329l-71 49l-8 -117q0 -5 -4 -8l-234 -187q-7 -5 -14 0l-98 83l7 -161
+q0 -5 -4 -8l-293 -234q-4 -2 -6 -2q-8 2 -8 3l-228 242q-4 4 -59 277q-2 7 5 11l61 37q-94 86 -95 92l-72 351q-2 7 6 12l94 45q-133 100 -135 108l-96 466q-2 10 7 13l433 135q5 0 8 -1l317 -153q6 -4 6 -9l20 -463q0 -7 -6 -10l-118 -61l126 -85q5 -2 5 -8l5 -123l121 74
+q5 4 11 0l84 -56l3 110q0 6 5 9l206 126q6 3 11 0l245 -135q4 -4 5 -7t-6.5 -60t-17.5 -124.5t-10 -70.5q0 -5 -4 -7l-191 -153q-6 -5 -13 0z" />
+    <glyph glyph-name="uniF2B9" unicode="&#xf2b9;" horiz-adv-x="1664" 
+d="M1201 298q0 57 -5.5 107t-21 100.5t-39.5 86t-64 58t-91 22.5q-6 -4 -33.5 -20.5t-42.5 -24.5t-40.5 -20t-49 -17t-46.5 -5t-46.5 5t-49 17t-40.5 20t-42.5 24.5t-33.5 20.5q-51 0 -91 -22.5t-64 -58t-39.5 -86t-21 -100.5t-5.5 -107q0 -73 42 -121.5t103 -48.5h576
+q61 0 103 48.5t42 121.5zM1028 892q0 108 -76.5 184t-183.5 76t-183.5 -76t-76.5 -184q0 -107 76.5 -183t183.5 -76t183.5 76t76.5 183zM1664 352v-192q0 -14 -9 -23t-23 -9h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216
+q66 0 113 -47t47 -113v-224h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="uniF2BA" unicode="&#xf2ba;" horiz-adv-x="1664" 
+d="M1028 892q0 -107 -76.5 -183t-183.5 -76t-183.5 76t-76.5 183q0 108 76.5 184t183.5 76t183.5 -76t76.5 -184zM980 672q46 0 82.5 -17t60 -47.5t39.5 -67t24 -81t11.5 -82.5t3.5 -79q0 -67 -39.5 -118.5t-105.5 -51.5h-576q-66 0 -105.5 51.5t-39.5 118.5q0 48 4.5 93.5
+t18.5 98.5t36.5 91.5t63 64.5t93.5 26h5q7 -4 32 -19.5t35.5 -21t33 -17t37 -16t35 -9t39.5 -4.5t39.5 4.5t35 9t37 16t33 17t35.5 21t32 19.5zM1664 928q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96
+q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216q66 0 113 -47t47 -113v-224h96q13 0 22.5 -9.5t9.5 -22.5v-192zM1408 -96v1472q0 13 -9.5 22.5t-22.5 9.5h-1216
+q-13 0 -22.5 -9.5t-9.5 -22.5v-1472q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5z" />
+    <glyph glyph-name="uniF2BB" unicode="&#xf2bb;" horiz-adv-x="2048" 
+d="M1024 405q0 64 -9 117.5t-29.5 103t-60.5 78t-97 28.5q-6 -4 -30 -18t-37.5 -21.5t-35.5 -17.5t-43 -14.5t-42 -4.5t-42 4.5t-43 14.5t-35.5 17.5t-37.5 21.5t-30 18q-57 0 -97 -28.5t-60.5 -78t-29.5 -103t-9 -117.5t37 -106.5t91 -42.5h512q54 0 91 42.5t37 106.5z
+M867 925q0 94 -66.5 160.5t-160.5 66.5t-160.5 -66.5t-66.5 -160.5t66.5 -160.5t160.5 -66.5t160.5 66.5t66.5 160.5zM1792 416v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1792 676v56q0 15 -10.5 25.5t-25.5 10.5h-568
+q-15 0 -25.5 -10.5t-10.5 -25.5v-56q0 -15 10.5 -25.5t25.5 -10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 928v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-352v96q0 14 -9 23t-23 9
+h-64q-14 0 -23 -9t-9 -23v-96h-768v96q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-96h-352q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2BC" unicode="&#xf2bc;" horiz-adv-x="2048" 
+d="M1024 405q0 -64 -37 -106.5t-91 -42.5h-512q-54 0 -91 42.5t-37 106.5t9 117.5t29.5 103t60.5 78t97 28.5q6 -4 30 -18t37.5 -21.5t35.5 -17.5t43 -14.5t42 -4.5t42 4.5t43 14.5t35.5 17.5t37.5 21.5t30 18q57 0 97 -28.5t60.5 -78t29.5 -103t9 -117.5zM867 925
+q0 -94 -66.5 -160.5t-160.5 -66.5t-160.5 66.5t-66.5 160.5t66.5 160.5t160.5 66.5t160.5 -66.5t66.5 -160.5zM1792 480v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1792 732v-56q0 -15 -10.5 -25.5t-25.5 -10.5h-568
+q-15 0 -25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5 -10.5t10.5 -25.5zM1792 992v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1920 32v1216q0 13 -9.5 22.5t-22.5 9.5h-1728q-13 0 -22.5 -9.5
+t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h352v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h768v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h352q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113
+t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2BD" unicode="&#xf2bd;" horiz-adv-x="1792" 
+d="M1523 197q-22 155 -87.5 257.5t-184.5 118.5q-67 -74 -159.5 -115.5t-195.5 -41.5t-195.5 41.5t-159.5 115.5q-119 -16 -184.5 -118.5t-87.5 -257.5q106 -150 271 -237.5t356 -87.5t356 87.5t271 237.5zM1280 896q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5
+t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1792 640q0 -182 -71 -347.5t-190.5 -286t-285.5 -191.5t-349 -71q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2BE" unicode="&#xf2be;" horiz-adv-x="1792" 
+d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348q0 -181 -70.5 -347t-190.5 -286t-286 -191.5t-349 -71.5t-349 71t-285.5 191.5t-190.5 286t-71 347.5t71 348t191 286t286 191t348 71zM1515 185q149 205 149 455q0 156 -61 298t-164 245t-245 164t-298 61t-298 -61
+t-245 -164t-164 -245t-61 -298q0 -250 149 -455q66 327 306 327q131 -128 313 -128t313 128q240 0 306 -327zM1280 832q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5z" />
+    <glyph glyph-name="uniF2C0" unicode="&#xf2c0;" 
+d="M1201 752q47 -14 89.5 -38t89 -73t79.5 -115.5t55 -172t22 -236.5q0 -154 -100 -263.5t-241 -109.5h-854q-141 0 -241 109.5t-100 263.5q0 131 22 236.5t55 172t79.5 115.5t89 73t89.5 38q-79 125 -79 272q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5
+t198.5 -40.5t163.5 -109.5t109.5 -163.5t40.5 -198.5q0 -147 -79 -272zM768 1408q-159 0 -271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5zM1195 -128q88 0 150.5 71.5t62.5 173.5q0 239 -78.5 377t-225.5 145
+q-145 -127 -336 -127t-336 127q-147 -7 -225.5 -145t-78.5 -377q0 -102 62.5 -173.5t150.5 -71.5h854z" />
+    <glyph glyph-name="uniF2C1" unicode="&#xf2c1;" horiz-adv-x="1280" 
+d="M1024 278q0 -64 -37 -107t-91 -43h-512q-54 0 -91 43t-37 107t9 118t29.5 104t61 78.5t96.5 28.5q80 -75 188 -75t188 75q56 0 96.5 -28.5t61 -78.5t29.5 -104t9 -118zM870 797q0 -94 -67.5 -160.5t-162.5 -66.5t-162.5 66.5t-67.5 160.5t67.5 160.5t162.5 66.5
+t162.5 -66.5t67.5 -160.5zM1152 -96v1376h-1024v-1376q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1280 1376v-1472q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h352v-96q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v96h352
+q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2C2" unicode="&#xf2c2;" horiz-adv-x="2048" 
+d="M896 324q0 54 -7.5 100.5t-24.5 90t-51 68.5t-81 25q-64 -64 -156 -64t-156 64q-47 0 -81 -25t-51 -68.5t-24.5 -90t-7.5 -100.5q0 -55 31.5 -93.5t75.5 -38.5h426q44 0 75.5 38.5t31.5 93.5zM768 768q0 80 -56 136t-136 56t-136 -56t-56 -136t56 -136t136 -56t136 56
+t56 136zM1792 288v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1408 544v64q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1792 544v64q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23
+v-64q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1792 800v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM128 1152h1792v96q0 14 -9 23t-23 9h-1728q-14 0 -23 -9t-9 -23v-96zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728
+q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2C3" unicode="&#xf2c3;" horiz-adv-x="2048" 
+d="M896 324q0 -55 -31.5 -93.5t-75.5 -38.5h-426q-44 0 -75.5 38.5t-31.5 93.5q0 54 7.5 100.5t24.5 90t51 68.5t81 25q64 -64 156 -64t156 64q47 0 81 -25t51 -68.5t24.5 -90t7.5 -100.5zM768 768q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z
+M1792 352v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1408 608v-64q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v64
+q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 864v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1920 32v1120h-1792v-1120q0 -13 9.5 -22.5t22.5 -9.5h1728q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47
+h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2C4" unicode="&#xf2c4;" horiz-adv-x="1792" 
+d="M1255 749q0 318 -105 474.5t-330 156.5q-222 0 -326 -157t-104 -474q0 -316 104 -471.5t326 -155.5q74 0 131 17q-22 43 -39 73t-44 65t-53.5 56.5t-63 36t-77.5 14.5q-46 0 -79 -16l-49 97q105 91 276 91q132 0 215.5 -54t150.5 -155q67 149 67 402zM1645 117h117
+q3 -27 -2 -67t-26.5 -95t-58 -100.5t-107 -78t-162.5 -32.5q-71 0 -130.5 19t-105.5 56t-79 78t-66 96q-97 -27 -205 -27q-150 0 -292.5 58t-253 158.5t-178 249t-67.5 317.5q0 170 67.5 319.5t178.5 250.5t253.5 159t291.5 58q121 0 238.5 -36t217 -106t176 -164.5
+t119.5 -219t43 -261.5q0 -190 -80.5 -347.5t-218.5 -264.5q47 -70 93.5 -106.5t104.5 -36.5q61 0 94 37.5t38 85.5z" />
+    <glyph glyph-name="uniF2C5" unicode="&#xf2c5;" horiz-adv-x="2304" 
+d="M453 -101q0 -21 -16 -37.5t-37 -16.5q-1 0 -13 3q-63 15 -162 140q-225 284 -225 676q0 341 213 614q39 51 95 103.5t94 52.5q19 0 35 -13.5t16 -32.5q0 -27 -63 -90q-98 -102 -147 -184q-119 -199 -119 -449q0 -281 123 -491q50 -85 136 -173q2 -3 14.5 -16t19.5 -21
+t17 -20.5t14.5 -23.5t4.5 -21zM1796 33q0 -29 -17.5 -48.5t-46.5 -19.5h-1081q-26 0 -45 19t-19 45q0 29 17.5 48.5t46.5 19.5h1081q26 0 45 -19t19 -45zM1581 644q0 -134 -67 -233q-25 -38 -69.5 -78.5t-83.5 -60.5q-16 -10 -27 -10q-7 0 -15 6t-8 12q0 9 19 30t42 46
+t42 67.5t19 88.5q0 76 -35 130q-29 42 -46 42q-3 0 -3 -5q0 -12 7.5 -35.5t7.5 -36.5q0 -22 -21.5 -35t-44.5 -13q-66 0 -66 76q0 15 1.5 44t1.5 44q0 25 -10 46q-13 25 -42 53.5t-51 28.5q-5 0 -7 -0.5t-3.5 -2.5t-1.5 -6q0 -2 16 -26t16 -54q0 -37 -19 -68t-46 -54
+t-53.5 -46t-45.5 -54t-19 -68q0 -98 42 -160q29 -43 79 -63q16 -5 17 -10q1 -2 1 -5q0 -16 -18 -16q-6 0 -33 11q-119 43 -195 139.5t-76 218.5q0 55 24.5 115.5t60 115t70.5 108.5t59.5 113.5t24.5 111.5q0 53 -25 94q-29 48 -56 64q-19 9 -19 21q0 20 41 20q50 0 110 -29
+q41 -19 71 -44.5t49.5 -51t33.5 -62.5t22 -69t16 -80q0 -1 3 -17.5t4.5 -25t5.5 -25t9 -27t11 -21.5t14.5 -16.5t18.5 -5.5q23 0 37 14t14 37q0 25 -20 67t-20 52t10 10q27 0 93 -70q72 -76 102.5 -156t30.5 -186zM2304 615q0 -274 -138 -503q-19 -32 -48 -72t-68 -86.5
+t-81 -77t-74 -30.5q-16 0 -31 15.5t-15 31.5q0 15 29 50.5t68.5 77t48.5 52.5q183 230 183 531q0 131 -20.5 235t-72.5 211q-58 119 -163 228q-2 3 -13 13.5t-16.5 16.5t-15 17.5t-15 20t-9.5 18.5t-4 19q0 19 16 35.5t35 16.5q70 0 196 -169q98 -131 146 -273t60 -314
+q2 -42 2 -64z" />
+    <glyph glyph-name="uniF2C6" unicode="&#xf2c6;" horiz-adv-x="1792" 
+d="M1189 229l147 693q9 44 -10.5 63t-51.5 7l-864 -333q-29 -11 -39.5 -25t-2.5 -26.5t32 -19.5l221 -69l513 323q21 14 32 6q7 -5 -4 -15l-415 -375v0v0l-16 -228q23 0 45 22l108 104l224 -165q64 -36 81 38zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71
+t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2C7" unicode="&#xf2c7;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v907h128v-907q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2C8" unicode="&#xf2c8;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v651h128v-651q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2C9" unicode="&#xf2c9;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v395h128v-395q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2CA" unicode="&#xf2ca;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v139h128v-139q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2CB" unicode="&#xf2cb;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 79 56 135.5t136 56.5t136 -56.5t56 -135.5zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5t93.5 226.5z
+M896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192v128h192z" />
+    <glyph glyph-name="uniF2CC" unicode="&#xf2cc;" horiz-adv-x="1920" 
+d="M1433 1287q10 -10 10 -23t-10 -23l-626 -626q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l44 44q-72 91 -81.5 207t46.5 215q-74 71 -176 71q-106 0 -181 -75t-75 -181v-1280h-256v1280q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5q106 0 201 -41
+t166 -115q94 39 197 24.5t185 -79.5l44 44q10 10 23 10t23 -10zM1344 1024q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1600 896q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1856 1024q26 0 45 -19t19 -45t-19 -45t-45 -19
+t-45 19t-19 45t19 45t45 19zM1216 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1408 832q0 26 19 45t45 19t45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45zM1728 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 768
+q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 640q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1600 768q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 512q-26 0 -45 19t-19 45t19 45t45 19t45 -19
+t19 -45t-19 -45t-45 -19zM1472 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 384
+q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 256q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19z" />
+    <glyph glyph-name="uniF2CD" unicode="&#xf2cd;" horiz-adv-x="1792" 
+d="M1664 448v-192q0 -169 -128 -286v-194q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v118q-63 -22 -128 -22h-768q-65 0 -128 22v-110q0 -17 -9.5 -28.5t-22.5 -11.5h-64q-13 0 -22.5 11.5t-9.5 28.5v186q-128 117 -128 286v192h1536zM704 864q0 -14 -9 -23t-23 -9t-23 9
+t-9 23t9 23t23 9t23 -9t9 -23zM768 928q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM704 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1056q0 -14 -9 -23t-23 -9t-23 9
+t-9 23t9 23t23 9t23 -9t9 -23zM704 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v640q0 106 75 181t181 75q108 0 184 -78q46 19 98 12t93 -39l22 22q11 11 22 0l42 -42
+q11 -11 0 -22l-314 -314q-11 -11 -22 0l-42 42q-11 11 0 22l22 22q-36 46 -40.5 104t23.5 108q-37 35 -88 35q-53 0 -90.5 -37.5t-37.5 -90.5v-640h1504q14 0 23 -9t9 -23zM896 1056q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1120q0 -14 -9 -23t-23 -9
+t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM896 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1248q0 -14 -9 -23
+t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1024 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1088 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23z" />
+    <glyph glyph-name="uniF2CE" unicode="&#xf2ce;" 
+d="M994 344q0 -86 -17 -197q-31 -215 -55 -313q-22 -90 -152 -90t-152 90q-24 98 -55 313q-17 110 -17 197q0 168 224 168t224 -168zM1536 768q0 -240 -134 -434t-350 -280q-8 -3 -15 3t-6 15q7 48 10 66q4 32 6 47q1 9 9 12q159 81 255.5 234t96.5 337q0 180 -91 330.5
+t-247 234.5t-337 74q-124 -7 -237 -61t-193.5 -140.5t-128 -202t-46.5 -240.5q1 -184 99 -336.5t257 -231.5q7 -3 9 -12q3 -21 6 -45q1 -9 5 -32.5t6 -35.5q1 -9 -6.5 -15t-15.5 -2q-148 58 -261 169.5t-173.5 264t-52.5 319.5q7 143 66 273.5t154.5 227t225 157.5t272.5 70
+q164 10 315.5 -46.5t261 -160.5t175 -250.5t65.5 -308.5zM994 800q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5zM1282 768q0 -122 -53.5 -228.5t-146.5 -177.5q-8 -6 -16 -2t-10 14q-6 52 -29 92q-7 10 3 20
+q58 54 91 127t33 155q0 111 -58.5 204t-157.5 141.5t-212 36.5q-133 -15 -229 -113t-109 -231q-10 -92 23.5 -176t98.5 -144q10 -10 3 -20q-24 -41 -29 -93q-2 -9 -10 -13t-16 2q-95 74 -148.5 183t-51.5 234q3 131 69 244t177 181.5t241 74.5q144 7 268 -60t196.5 -187.5
+t72.5 -263.5z" />
+    <glyph glyph-name="uniF2D0" unicode="&#xf2d0;" horiz-adv-x="1792" 
+d="M256 128h1280v768h-1280v-768zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D1" unicode="&#xf2d1;" horiz-adv-x="1792" 
+d="M1792 224v-192q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D2" unicode="&#xf2d2;" horiz-adv-x="2048" 
+d="M256 0h768v512h-768v-512zM1280 512h512v768h-768v-256h96q66 0 113 -47t47 -113v-352zM2048 1376v-960q0 -66 -47 -113t-113 -47h-608v-352q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h608v352q0 66 47 113t113 47h960q66 0 113 -47
+t47 -113z" />
+    <glyph glyph-name="uniF2D3" unicode="&#xf2d3;" horiz-adv-x="1792" 
+d="M1175 215l146 146q10 10 10 23t-10 23l-233 233l233 233q10 10 10 23t-10 23l-146 146q-10 10 -23 10t-23 -10l-233 -233l-233 233q-10 10 -23 10t-23 -10l-146 -146q-10 -10 -10 -23t10 -23l233 -233l-233 -233q-10 -10 -10 -23t10 -23l146 -146q10 -10 23 -10t23 10
+l233 233l233 -233q10 -10 23 -10t23 10zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D4" unicode="&#xf2d4;" horiz-adv-x="1792" 
+d="M1257 425l-146 -146q-10 -10 -23 -10t-23 10l-169 169l-169 -169q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l169 169l-169 169q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l169 -169l169 169q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23
+l-169 -169l169 -169q10 -10 10 -23t-10 -23zM256 128h1280v1024h-1280v-1024zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D5" unicode="&#xf2d5;" horiz-adv-x="1792" 
+d="M1070 358l306 564h-654l-306 -564h654zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2D6" unicode="&#xf2d6;" horiz-adv-x="1794" 
+d="M1291 1060q-15 17 -35 8.5t-26 -28.5t5 -38q14 -17 40 -14.5t34 20.5t-18 52zM895 814q-8 -8 -19.5 -8t-18.5 8q-8 8 -8 19t8 18q7 8 18.5 8t19.5 -8q7 -7 7 -18t-7 -19zM1060 740l-35 -35q-12 -13 -29.5 -13t-30.5 13l-38 38q-12 13 -12 30t12 30l35 35q12 12 29.5 12
+t30.5 -12l38 -39q12 -12 12 -29.5t-12 -29.5zM951 870q-7 -8 -18.5 -8t-19.5 8q-7 8 -7 19t7 19q8 8 19 8t19 -8t8 -19t-8 -19zM1354 968q-34 -64 -107.5 -85.5t-127.5 16.5q-38 28 -61 66.5t-21 87.5t39 92t75.5 53t70.5 -5t70 -51q2 -2 13 -12.5t14.5 -13.5t13 -13.5
+t12.5 -15.5t10 -15.5t8.5 -18t4 -18.5t1 -21t-5 -22t-9.5 -24zM1555 486q3 20 -8.5 34.5t-27.5 21.5t-33 17t-23 20q-40 71 -84 98.5t-113 11.5q19 13 40 18.5t33 4.5l12 -1q2 45 -34 90q6 20 6.5 40.5t-2.5 30.5l-3 10q43 24 71 65t34 91q10 84 -43 150.5t-137 76.5
+q-60 7 -114 -18.5t-82 -74.5q-30 -51 -33.5 -101t14.5 -87t43.5 -64t56.5 -42q-45 4 -88 36t-57 88q-28 108 32 222q-16 21 -29 32q-50 0 -89 -19q19 24 42 37t36 14l13 1q0 50 -13 78q-10 21 -32.5 28.5t-47 -3.5t-37.5 -40q2 4 4 7q-7 -28 -6.5 -75.5t19 -117t48.5 -122.5
+q-25 -14 -47 -36q-35 -16 -85.5 -70.5t-84.5 -101.5l-33 -46q-90 -34 -181 -125.5t-75 -162.5q1 -16 11 -27q-15 -12 -30 -30q-21 -25 -21 -54t21.5 -40t63.5 6q41 19 77 49.5t55 60.5q-2 2 -6.5 5t-20.5 7.5t-33 3.5q23 5 51 12.5t40 10t27.5 6t26 4t23.5 0.5q14 -7 22 34
+q7 37 7 90q0 102 -40 150q106 -103 101 -219q-1 -29 -15 -50t-27 -27l-13 -6q-4 -7 -19 -32t-26 -45.5t-26.5 -52t-25 -61t-17 -63t-6.5 -66.5t10 -63q-35 54 -37 80q-22 -24 -34.5 -39t-33.5 -42t-30.5 -46t-16.5 -41t-0.5 -38t25.5 -27q45 -25 144 64t190.5 221.5
+t122.5 228.5q86 52 145 115.5t86 119.5q47 -93 154 -178q104 -83 167 -80q39 2 46 43zM1794 640q0 -182 -71 -348t-191 -286t-286.5 -191t-348.5 -71t-348.5 71t-286.5 191t-191 286t-71 348t71 348t191 286t286.5 191t348.5 71t348.5 -71t286.5 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2D7" unicode="&#xf2d7;" 
+d="M518 1353v-655q103 -1 191.5 1.5t125.5 5.5l37 3q68 2 90.5 24.5t39.5 94.5l33 142h103l-14 -322l7 -319h-103l-29 127q-15 68 -45 93t-84 26q-87 8 -352 8v-556q0 -78 43.5 -115.5t133.5 -37.5h357q35 0 59.5 2t55 7.5t54 18t48.5 32t46 50.5t39 73l93 216h89
+q-6 -37 -31.5 -252t-30.5 -276q-146 5 -263.5 8t-162.5 4h-44h-628l-376 -12v102l127 25q67 13 91.5 37t25.5 79l8 643q3 402 -8 645q-2 61 -25.5 84t-91.5 36l-127 24v102l376 -12h702q139 0 374 27q-6 -68 -14 -194.5t-12 -219.5l-5 -92h-93l-32 124q-31 121 -74 179.5
+t-113 58.5h-548q-28 0 -35.5 -8.5t-7.5 -30.5z" />
+    <glyph glyph-name="uniF2D8" unicode="&#xf2d8;" 
+d="M922 739v-182q0 -4 0.5 -15t0 -15l-1.5 -12t-3.5 -11.5t-6.5 -7.5t-11 -5.5t-16 -1.5v309q9 0 16 -1t11 -5t6.5 -5.5t3.5 -9.5t1 -10.5v-13.5v-14zM1238 643v-121q0 -1 0.5 -12.5t0 -15.5t-2.5 -11.5t-7.5 -10.5t-13.5 -3q-9 0 -14 9q-4 10 -4 165v7v8.5v9t1.5 8.5l3.5 7
+t5 5.5t8 1.5q6 0 10 -1.5t6.5 -4.5t4 -6t2 -8.5t0.5 -8v-9.5v-9zM180 407h122v472h-122v-472zM614 407h106v472h-159l-28 -221q-20 148 -32 221h-158v-472h107v312l45 -312h76l43 319v-319zM1039 712q0 67 -5 90q-3 16 -11 28.5t-17 20.5t-25 14t-26.5 8.5t-31 4t-29 1.5
+h-29.5h-12h-91v-472h56q169 -1 197 24.5t25 180.5q-1 62 -1 100zM1356 515v133q0 29 -2 45t-9.5 33.5t-24.5 25t-46 7.5q-46 0 -77 -34v154h-117v-472h110l7 30q30 -36 77 -36q50 0 66 30.5t16 83.5zM1536 1248v-1216q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113
+v1216q0 66 47 113t113 47h1216q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D9" unicode="&#xf2d9;" horiz-adv-x="2176" 
+d="M1143 -197q-6 1 -11 4q-13 8 -36 23t-86 65t-116.5 104.5t-112 140t-89.5 172.5q-17 3 -175 37q66 -213 235 -362t391 -184zM502 409l168 -28q-25 76 -41 167.5t-19 145.5l-4 53q-84 -82 -121 -224q5 -65 17 -114zM612 1018q-43 -64 -77 -148q44 46 74 68zM2049 584
+q0 161 -62 307t-167.5 252t-250.5 168.5t-304 62.5q-147 0 -281 -52.5t-240 -148.5q-30 -58 -45 -160q60 51 143 83.5t158.5 43t143 13.5t108.5 -1l40 -3q33 -1 53 -15.5t24.5 -33t6.5 -37t-1 -28.5q-126 11 -227.5 0.5t-183 -43.5t-142.5 -71.5t-131 -98.5
+q4 -36 11.5 -92.5t35.5 -178t62 -179.5q123 -6 247.5 14.5t214.5 53.5t162.5 67t109.5 59l37 24q22 16 39.5 20.5t30.5 -5t17 -34.5q14 -97 -39 -121q-208 -97 -467 -134q-135 -20 -317 -16q41 -96 110 -176.5t137 -127t130.5 -79t101.5 -43.5l39 -12q143 -23 263 15
+q195 99 314 289t119 418zM2123 621q-14 -135 -40 -212q-70 -208 -181.5 -346.5t-318.5 -253.5q-48 -33 -82 -44q-72 -26 -163 -16q-36 -3 -73 -3q-283 0 -504.5 173t-295.5 442q-1 0 -4 0.5t-5 0.5q-6 -50 2.5 -112.5t26 -115t36 -98t31.5 -71.5l14 -26q8 -12 54 -82
+q-71 38 -124.5 106.5t-78.5 140t-39.5 137t-17.5 107.5l-2 42q-5 2 -33.5 12.5t-48.5 18t-53 20.5t-57.5 25t-50 25.5t-42.5 27t-25 25.5q19 -10 50.5 -25.5t113 -45.5t145.5 -38l2 32q11 149 94 290q41 202 176 365q28 115 81 214q15 28 32 45t49 32q158 74 303.5 104
+t302 11t306.5 -97q220 -115 333 -336t87 -474z" />
+    <glyph glyph-name="uniF2DA" unicode="&#xf2da;" horiz-adv-x="1792" 
+d="M1341 752q29 44 -6.5 129.5t-121.5 142.5q-58 39 -125.5 53.5t-118 4.5t-68.5 -37q-12 -23 -4.5 -28t42.5 -10q23 -3 38.5 -5t44.5 -9.5t56 -17.5q36 -13 67.5 -31.5t53 -37t40 -38.5t30.5 -38t22 -34.5t16.5 -28.5t12 -18.5t10.5 -6t11 9.5zM1704 178
+q-52 -127 -148.5 -220t-214.5 -141.5t-253 -60.5t-266 13.5t-251 91t-210 161.5t-141.5 235.5t-46.5 303.5q1 41 8.5 84.5t12.5 64t24 80.5t23 73q-51 -208 1 -397t173 -318t291 -206t346 -83t349 74.5t289 244.5q20 27 18 14q0 -4 -4 -14zM1465 627q0 -104 -40.5 -199
+t-108.5 -164t-162 -109.5t-198 -40.5t-198 40.5t-162 109.5t-108.5 164t-40.5 199t40.5 199t108.5 164t162 109.5t198 40.5t198 -40.5t162 -109.5t108.5 -164t40.5 -199zM1752 915q-65 147 -180.5 251t-253 153.5t-292 53.5t-301 -36.5t-275.5 -129t-220 -211.5t-131 -297
+t-10 -373q-49 161 -51.5 311.5t35.5 272.5t109 227t165.5 180.5t207 126t232 71t242.5 9t236 -54t216 -124.5t178 -197q33 -50 62 -121t31 -112zM1690 573q12 244 -136.5 416t-396.5 240q-8 0 -10 5t24 8q125 -4 230 -50t173 -120t116 -168.5t58.5 -199t-1 -208
+t-61.5 -197.5t-122.5 -167t-185 -117.5t-248.5 -46.5q108 30 201.5 80t174 123t129.5 176.5t55 225.5z" />
+    <glyph glyph-name="uniF2DB" unicode="&#xf2db;" 
+d="M192 256v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 512v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 768v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16
+q0 16 16 16h112zM192 1024v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 1280v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM1280 1440v-1472q0 -40 -28 -68t-68 -28h-832q-40 0 -68 28
+t-28 68v1472q0 40 28 68t68 28h832q40 0 68 -28t28 -68zM1536 208v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 464v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 720v-32
+q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 976v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 1232v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16
+h48q16 0 16 -16z" />
+    <glyph glyph-name="uniF2DC" unicode="&#xf2dc;" horiz-adv-x="1664" 
+d="M1566 419l-167 -33l186 -107q23 -13 29.5 -38.5t-6.5 -48.5q-14 -23 -39 -29.5t-48 6.5l-186 106l55 -160q13 -38 -12 -63.5t-60.5 -20.5t-48.5 42l-102 300l-271 156v-313l208 -238q16 -18 17 -39t-11 -36.5t-28.5 -25t-37 -5.5t-36.5 22l-112 128v-214q0 -26 -19 -45
+t-45 -19t-45 19t-19 45v214l-112 -128q-16 -18 -36.5 -22t-37 5.5t-28.5 25t-11 36.5t17 39l208 238v313l-271 -156l-102 -300q-13 -37 -48.5 -42t-60.5 20.5t-12 63.5l55 160l-186 -106q-23 -13 -48 -6.5t-39 29.5q-13 23 -6.5 48.5t29.5 38.5l186 107l-167 33
+q-29 6 -42 29t-8.5 46.5t25.5 40t50 10.5l310 -62l271 157l-271 157l-310 -62q-4 -1 -13 -1q-27 0 -44 18t-19 40t11 43t40 26l167 33l-186 107q-23 13 -29.5 38.5t6.5 48.5t39 30t48 -7l186 -106l-55 160q-13 38 12 63.5t60.5 20.5t48.5 -42l102 -300l271 -156v313
+l-208 238q-16 18 -17 39t11 36.5t28.5 25t37 5.5t36.5 -22l112 -128v214q0 26 19 45t45 19t45 -19t19 -45v-214l112 128q16 18 36.5 22t37 -5.5t28.5 -25t11 -36.5t-17 -39l-208 -238v-313l271 156l102 300q13 37 48.5 42t60.5 -20.5t12 -63.5l-55 -160l186 106
+q23 13 48 6.5t39 -29.5q13 -23 6.5 -48.5t-29.5 -38.5l-186 -107l167 -33q27 -5 40 -26t11 -43t-19 -40t-44 -18q-9 0 -13 1l-310 62l-271 -157l271 -157l310 62q29 6 50 -10.5t25.5 -40t-8.5 -46.5t-42 -29z" />
+    <glyph glyph-name="uniF2DD" unicode="&#xf2dd;" horiz-adv-x="1792" 
+d="M1473 607q7 118 -33 226.5t-113 189t-177 131t-221 57.5q-116 7 -225.5 -32t-192 -110.5t-135 -175t-59.5 -220.5q-7 -118 33 -226.5t113 -189t177.5 -131t221.5 -57.5q155 -9 293 59t224 195.5t94 283.5zM1792 1536l-349 -348q120 -117 180.5 -272t50.5 -321
+q-11 -183 -102 -339t-241 -255.5t-332 -124.5l-999 -132l347 347q-120 116 -180.5 271.5t-50.5 321.5q11 184 102 340t241.5 255.5t332.5 124.5q167 22 500 66t500 66z" />
+    <glyph glyph-name="uniF2DE" unicode="&#xf2de;" horiz-adv-x="1792" 
+d="M948 508l163 -329h-51l-175 350l-171 -350h-49l179 374l-78 33l21 49l240 -102l-21 -50zM563 1100l304 -130l-130 -304l-304 130zM907 915l240 -103l-103 -239l-239 102zM1188 765l191 -81l-82 -190l-190 81zM1680 640q0 159 -62 304t-167.5 250.5t-250.5 167.5t-304 62
+t-304 -62t-250.5 -167.5t-167.5 -250.5t-62 -304t62 -304t167.5 -250.5t250.5 -167.5t304 -62t304 62t250.5 167.5t167.5 250.5t62 304zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71
+t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2E0" unicode="&#xf2e0;" horiz-adv-x="1920" 
+d="M1334 302q-4 24 -27.5 34t-49.5 10.5t-48.5 12.5t-25.5 38q-5 47 33 139.5t75 181t32 127.5q-14 101 -117 103q-45 1 -75 -16l-3 -2l-5 -2.5t-4.5 -2t-5 -2t-5 -0.5t-6 1.5t-6 3.5t-6.5 5q-3 2 -9 8.5t-9 9t-8.5 7.5t-9.5 7.5t-9.5 5.5t-11 4.5t-11.5 2.5q-30 5 -48 -3
+t-45 -31q-1 -1 -9 -8.5t-12.5 -11t-15 -10t-16.5 -5.5t-17 3q-54 27 -84 40q-41 18 -94 -5t-76 -65q-16 -28 -41 -98.5t-43.5 -132.5t-40 -134t-21.5 -73q-22 -69 18.5 -119t110.5 -46q30 2 50.5 15t38.5 46q7 13 79 199.5t77 194.5q6 11 21.5 18t29.5 0q27 -15 21 -53
+q-2 -18 -51 -139.5t-50 -132.5q-6 -38 19.5 -56.5t60.5 -7t55 49.5q4 8 45.5 92t81.5 163.5t46 88.5q20 29 41 28q29 0 25 -38q-2 -16 -65.5 -147.5t-70.5 -159.5q-12 -53 13 -103t74 -74q17 -9 51 -15.5t71.5 -8t62.5 14t20 48.5zM383 86q3 -15 -5 -27.5t-23 -15.5
+q-14 -3 -26.5 5t-15.5 23q-3 14 5 27t22 16t27 -5t16 -23zM953 -177q12 -17 8.5 -37.5t-20.5 -32.5t-37.5 -8t-32.5 21q-11 17 -7.5 37.5t20.5 32.5t37.5 8t31.5 -21zM177 635q-18 -27 -49.5 -33t-57.5 13q-26 18 -32 50t12 58q18 27 49.5 33t57.5 -12q26 -19 32 -50.5
+t-12 -58.5zM1467 -42q19 -28 13 -61.5t-34 -52.5t-60.5 -13t-51.5 34t-13 61t33 53q28 19 60.5 13t52.5 -34zM1579 562q69 -113 42.5 -244.5t-134.5 -207.5q-90 -63 -199 -60q-20 -80 -84.5 -127t-143.5 -44.5t-140 57.5q-12 -9 -13 -10q-103 -71 -225 -48.5t-193 126.5
+q-50 73 -53 164q-83 14 -142.5 70.5t-80.5 128t-2 152t81 138.5q-36 60 -38 128t24.5 125t79.5 98.5t121 50.5q32 85 99 148t146.5 91.5t168 17t159.5 -66.5q72 21 140 17.5t128.5 -36t104.5 -80t67.5 -115t17.5 -140.5q52 -16 87 -57t45.5 -89t-5.5 -99.5t-58 -87.5z
+M455 1222q14 -20 9.5 -44.5t-24.5 -38.5q-19 -14 -43.5 -9.5t-37.5 24.5q-14 20 -9.5 44.5t24.5 38.5q19 14 43.5 9.5t37.5 -24.5zM614 1503q4 -16 -5 -30.5t-26 -18.5t-31 5.5t-18 26.5q-3 17 6.5 31t25.5 18q17 4 31 -5.5t17 -26.5zM1800 555q4 -20 -6.5 -37t-30.5 -21
+q-19 -4 -36 6.5t-21 30.5t6.5 37t30.5 22q20 4 36.5 -7.5t20.5 -30.5zM1136 1448q16 -27 8.5 -58.5t-35.5 -47.5q-27 -16 -57.5 -8.5t-46.5 34.5q-16 28 -8.5 59t34.5 48t58 9t47 -36zM1882 792q4 -15 -4 -27.5t-23 -16.5q-15 -3 -27.5 5.5t-15.5 22.5q-3 15 5 28t23 16
+q14 3 26.5 -5t15.5 -23zM1691 1033q15 -22 10.5 -49t-26.5 -43q-22 -15 -49 -10t-42 27t-10 49t27 43t48.5 11t41.5 -28z" />
+    <glyph glyph-name="uniF2E1" unicode="&#xf2e1;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E2" unicode="&#xf2e2;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E3" unicode="&#xf2e3;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E4" unicode="&#xf2e4;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E5" unicode="&#xf2e5;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E6" unicode="&#xf2e6;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E7" unicode="&#xf2e7;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="_698" unicode="&#xf2e8;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E9" unicode="&#xf2e9;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EA" unicode="&#xf2ea;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EB" unicode="&#xf2eb;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EC" unicode="&#xf2ec;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2ED" unicode="&#xf2ed;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EE" unicode="&#xf2ee;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="lessequal" unicode="&#xf500;" horiz-adv-x="1792" 
+ />
+  </font>
+</defs></svg>
diff --git a/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.ttf b/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.ttf
new file mode 100644
index 0000000..35acda2
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.ttf
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.woff b/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.woff
new file mode 100644
index 0000000..400014a
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.woff
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.woff2 b/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.woff2
new file mode 100644
index 0000000..4d13fc6
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/fonts/vendor/font-awesome/fontawesome-webfont.woff2
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/components/back-to-top/back-to-top.png b/eclipse.org-common/themes/solstice/public/images/components/back-to-top/back-to-top.png
index 8ec2d6b..39add37 100644
--- a/eclipse.org-common/themes/solstice/public/images/components/back-to-top/back-to-top.png
+++ b/eclipse.org-common/themes/solstice/public/images/components/back-to-top/back-to-top.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/components/discover-search/discover-search-bg.jpg b/eclipse.org-common/themes/solstice/public/images/components/discover-search/discover-search-bg.jpg
index e755dba..81c1d97 100644
--- a/eclipse.org-common/themes/solstice/public/images/components/discover-search/discover-search-bg.jpg
+++ b/eclipse.org-common/themes/solstice/public/images/components/discover-search/discover-search-bg.jpg
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/components/drag-drop/installbutton.png b/eclipse.org-common/themes/solstice/public/images/components/drag-drop/installbutton.png
index af29980..685b003 100644
--- a/eclipse.org-common/themes/solstice/public/images/components/drag-drop/installbutton.png
+++ b/eclipse.org-common/themes/solstice/public/images/components/drag-drop/installbutton.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/components/drag-drop/mpcdrag.png b/eclipse.org-common/themes/solstice/public/images/components/drag-drop/mpcdrag.png
index 0a97b3a..2dda987 100644
--- a/eclipse.org-common/themes/solstice/public/images/components/drag-drop/mpcdrag.png
+++ b/eclipse.org-common/themes/solstice/public/images/components/drag-drop/mpcdrag.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/components/feedback/btn-feedback.png b/eclipse.org-common/themes/solstice/public/images/components/feedback/btn-feedback.png
index 00804e4..d48446d 100644
--- a/eclipse.org-common/themes/solstice/public/images/components/feedback/btn-feedback.png
+++ b/eclipse.org-common/themes/solstice/public/images/components/feedback/btn-feedback.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/components/getting-started/getting-started-current.png b/eclipse.org-common/themes/solstice/public/images/components/getting-started/getting-started-current.png
index b3dc6c2..11e914b 100644
--- a/eclipse.org-common/themes/solstice/public/images/components/getting-started/getting-started-current.png
+++ b/eclipse.org-common/themes/solstice/public/images/components/getting-started/getting-started-current.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/components/getting-started/getting-started-default.png b/eclipse.org-common/themes/solstice/public/images/components/getting-started/getting-started-default.png
index 1e20ffa..62a6a3c 100644
--- a/eclipse.org-common/themes/solstice/public/images/components/getting-started/getting-started-default.png
+++ b/eclipse.org-common/themes/solstice/public/images/components/getting-started/getting-started-default.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/components/landing-well/background.jpg b/eclipse.org-common/themes/solstice/public/images/components/landing-well/background.jpg
index 4b0d1e1..d5ffb31 100644
--- a/eclipse.org-common/themes/solstice/public/images/components/landing-well/background.jpg
+++ b/eclipse.org-common/themes/solstice/public/images/components/landing-well/background.jpg
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/components/landing-well/eclipse_alternate_bg-1.jpg b/eclipse.org-common/themes/solstice/public/images/components/landing-well/eclipse_alternate_bg-1.jpg
new file mode 100644
index 0000000..b10efb7
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/components/landing-well/eclipse_alternate_bg-1.jpg
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/components/landing-well/eclipse_home_bg.jpg b/eclipse.org-common/themes/solstice/public/images/components/landing-well/eclipse_home_bg.jpg
new file mode 100644
index 0000000..2826ddb
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/components/landing-well/eclipse_home_bg.jpg
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/components/landing-well/jakarta_home_bg.jpg b/eclipse.org-common/themes/solstice/public/images/components/landing-well/jakarta_home_bg.jpg
new file mode 100644
index 0000000..9c578d7
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/components/landing-well/jakarta_home_bg.jpg
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/components/step-by-step/next-arrow.jpg b/eclipse.org-common/themes/solstice/public/images/components/step-by-step/next-arrow.jpg
index 61ad9ad..93f46e6 100644
--- a/eclipse.org-common/themes/solstice/public/images/components/step-by-step/next-arrow.jpg
+++ b/eclipse.org-common/themes/solstice/public/images/components/step-by-step/next-arrow.jpg
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/components/tabs-menu/chevron.png b/eclipse.org-common/themes/solstice/public/images/components/tabs-menu/chevron.png
index 81a4d04..c9dda60 100644
--- a/eclipse.org-common/themes/solstice/public/images/components/tabs-menu/chevron.png
+++ b/eclipse.org-common/themes/solstice/public/images/components/tabs-menu/chevron.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/components/tabs-sidebar/tabs-sidebar-active.png b/eclipse.org-common/themes/solstice/public/images/components/tabs-sidebar/tabs-sidebar-active.png
index 0058838..5e803be 100644
--- a/eclipse.org-common/themes/solstice/public/images/components/tabs-sidebar/tabs-sidebar-active.png
+++ b/eclipse.org-common/themes/solstice/public/images/components/tabs-sidebar/tabs-sidebar-active.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/4stars.gif b/eclipse.org-common/themes/solstice/public/images/forums/4stars.gif
index 334c78e..0e44a13 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/4stars.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/4stars.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/affero_noreg.gif b/eclipse.org-common/themes/solstice/public/images/forums/affero_noreg.gif
index e70cebb..17ab443 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/affero_noreg.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/affero_noreg.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/affero_reg.gif b/eclipse.org-common/themes/solstice/public/images/forums/affero_reg.gif
index a6de25e..83fa059 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/affero_reg.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/affero_reg.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/aim.gif b/eclipse.org-common/themes/solstice/public/images/forums/aim.gif
index 6b34e00..2771345 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/aim.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/aim.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/aim.png b/eclipse.org-common/themes/solstice/public/images/forums/aim.png
index e6e53d9..7f975fc 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/aim.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/aim.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/attachment.gif b/eclipse.org-common/themes/solstice/public/images/forums/attachment.gif
index 4e91297..3079148 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/attachment.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/attachment.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/b_quote.gif b/eclipse.org-common/themes/solstice/public/images/forums/b_quote.gif
index af683fb..9e16530 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/b_quote.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/b_quote.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/b_url.gif b/eclipse.org-common/themes/solstice/public/images/forums/b_url.gif
index 746f412..f88d24a 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/b_url.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/b_url.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/button.png b/eclipse.org-common/themes/solstice/public/images/forums/button.png
index 5932790..baf22a5 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/button.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/button.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/calendar.gif b/eclipse.org-common/themes/solstice/public/images/forums/calendar.gif
index 0cbdf00..5638e53 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/calendar.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/calendar.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/calendar.png b/eclipse.org-common/themes/solstice/public/images/forums/calendar.png
index 68d2547..e453a0c 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/calendar.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/calendar.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/down.gif b/eclipse.org-common/themes/solstice/public/images/forums/down.gif
index e352ef5..5981bc6 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/down.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/down.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/down.png b/eclipse.org-common/themes/solstice/public/images/forums/down.png
index 216db20..37b61c7 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/down.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/down.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/email.png b/eclipse.org-common/themes/solstice/public/images/forums/email.png
index 7a3bc27..2f6628f 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/email.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/email.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/existing_content.png b/eclipse.org-common/themes/solstice/public/images/forums/existing_content.png
index a46cc3d..dab9178 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/existing_content.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/existing_content.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/goback.gif b/eclipse.org-common/themes/solstice/public/images/forums/goback.gif
index df492e5..fbb26b2 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/goback.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/goback.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/google.png b/eclipse.org-common/themes/solstice/public/images/forums/google.png
index 9fe3bea..8d5ecfc 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/google.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/google.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/goto.gif b/eclipse.org-common/themes/solstice/public/images/forums/goto.gif
index 819aa75..f4c7334 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/goto.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/goto.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/grippie.gif b/eclipse.org-common/themes/solstice/public/images/forums/grippie.gif
index 24c8a52..ac8a843 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/grippie.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/grippie.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/icq.png b/eclipse.org-common/themes/solstice/public/images/forums/icq.png
index 45b2a9c..96b4d2b 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/icq.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/icq.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/jabber.png b/eclipse.org-common/themes/solstice/public/images/forums/jabber.png
index 6423e92..38d8d3b 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/jabber.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/jabber.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/max.gif b/eclipse.org-common/themes/solstice/public/images/forums/max.gif
index a779f43..aadd0ba 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/max.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/max.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/max.png b/eclipse.org-common/themes/solstice/public/images/forums/max.png
index e2d37f1..23375e6 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/max.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/max.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/min.png b/eclipse.org-common/themes/solstice/public/images/forums/min.png
index 0dbb71e..4f46323 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/min.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/min.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/moved.png b/eclipse.org-common/themes/solstice/public/images/forums/moved.png
index 00baf40..2f42457 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/moved.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/moved.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/msnm.png b/eclipse.org-common/themes/solstice/public/images/forums/msnm.png
index 5b6779f..3d91a04 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/msnm.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/msnm.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/new_content.gif b/eclipse.org-common/themes/solstice/public/images/forums/new_content.gif
index 8e9e2b9..fc5ae2f 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/new_content.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/new_content.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/new_content.png b/eclipse.org-common/themes/solstice/public/images/forums/new_content.png
index 5ac328b..cb0ddd1 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/new_content.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/new_content.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/newposts.gif b/eclipse.org-common/themes/solstice/public/images/forums/newposts.gif
index b7ff7f7..2743f27 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/newposts.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/newposts.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/offline.gif b/eclipse.org-common/themes/solstice/public/images/forums/offline.gif
index e3aba6d..b893e81 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/offline.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/offline.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/offline.png b/eclipse.org-common/themes/solstice/public/images/forums/offline.png
index 2b206f2..86e6478 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/offline.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/offline.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/online.png b/eclipse.org-common/themes/solstice/public/images/forums/online.png
index 8d72794..a321453 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/online.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/online.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/pdf.gif b/eclipse.org-common/themes/solstice/public/images/forums/pdf.gif
index 21dcf9c..2a67b94 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/pdf.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/pdf.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/pmsg_read.png b/eclipse.org-common/themes/solstice/public/images/forums/pmsg_read.png
index fce6fde..c66ba26 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/pmsg_read.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/pmsg_read.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/pmsg_unread.png b/eclipse.org-common/themes/solstice/public/images/forums/pmsg_unread.png
index a5909e4..437bea0 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/pmsg_unread.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/pmsg_unread.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/read.gif b/eclipse.org-common/themes/solstice/public/images/forums/read.gif
index 70f5447..71c7127 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/read.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/read.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/read.png b/eclipse.org-common/themes/solstice/public/images/forums/read.png
index b348fba..f52379a 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/read.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/read.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/readlocked.png b/eclipse.org-common/themes/solstice/public/images/forums/readlocked.png
index 9f83cb3..bcd356e 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/readlocked.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/readlocked.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/rss.gif b/eclipse.org-common/themes/solstice/public/images/forums/rss.gif
index b0e4adf..339603f 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/rss.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/rss.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/skype.png b/eclipse.org-common/themes/solstice/public/images/forums/skype.png
index 86b16d4..efd8a5c 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/skype.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/skype.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/tableHeaderbg.png b/eclipse.org-common/themes/solstice/public/images/forums/tableHeaderbg.png
index 5976538..cac1a16 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/tableHeaderbg.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/tableHeaderbg.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/tableHeaderbg2.png b/eclipse.org-common/themes/solstice/public/images/forums/tableHeaderbg2.png
index 863fd22..5f2c2a5 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/tableHeaderbg2.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/tableHeaderbg2.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/top_admin.gif b/eclipse.org-common/themes/solstice/public/images/forums/top_admin.gif
index f87004e..a631ce1 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/top_admin.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/top_admin.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/top_help.gif b/eclipse.org-common/themes/solstice/public/images/forums/top_help.gif
index 9c321a8..60acfea 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/top_help.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/top_help.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/top_help.png b/eclipse.org-common/themes/solstice/public/images/forums/top_help.png
index 1cb2343..720725e 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/top_help.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/top_help.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/top_home.gif b/eclipse.org-common/themes/solstice/public/images/forums/top_home.gif
index 8c14f12..9d54e62 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/top_home.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/top_home.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/top_home.png b/eclipse.org-common/themes/solstice/public/images/forums/top_home.png
index af211a5..6c97f7b 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/top_home.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/top_home.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/top_login.png b/eclipse.org-common/themes/solstice/public/images/forums/top_login.png
index 55ec697..6de330f 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/top_login.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/top_login.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/top_logout.png b/eclipse.org-common/themes/solstice/public/images/forums/top_logout.png
index 55ec697..6de330f 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/top_logout.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/top_logout.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/top_members.png b/eclipse.org-common/themes/solstice/public/images/forums/top_members.png
index 76b58e1..89dfff3 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/top_members.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/top_members.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/top_pm.png b/eclipse.org-common/themes/solstice/public/images/forums/top_pm.png
index d97b6ca..069cfbe 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/top_pm.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/top_pm.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/top_profile.png b/eclipse.org-common/themes/solstice/public/images/forums/top_profile.png
index 9988998..5e2689b 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/top_profile.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/top_profile.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/top_register.png b/eclipse.org-common/themes/solstice/public/images/forums/top_register.png
index 120f2ff..294f01a 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/top_register.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/top_register.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/top_search.png b/eclipse.org-common/themes/solstice/public/images/forums/top_search.png
index 92ae8f3..204ce16 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/top_search.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/top_search.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/twitter.gif b/eclipse.org-common/themes/solstice/public/images/forums/twitter.gif
index 966933f..cbf4b10 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/twitter.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/twitter.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/twitter.png b/eclipse.org-common/themes/solstice/public/images/forums/twitter.png
index 2a06ecc..1147783 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/twitter.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/twitter.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/unread.gif b/eclipse.org-common/themes/solstice/public/images/forums/unread.gif
index 4ec6391..924e2bc 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/unread.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/unread.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/unread.png b/eclipse.org-common/themes/solstice/public/images/forums/unread.png
index 2232a59..1c37255 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/unread.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/unread.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/unreadlocked.gif b/eclipse.org-common/themes/solstice/public/images/forums/unreadlocked.gif
index 3bf5f57..cc89a94 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/unreadlocked.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/unreadlocked.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/unreadlocked.png b/eclipse.org-common/themes/solstice/public/images/forums/unreadlocked.png
index c565d98..b3426a7 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/unreadlocked.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/unreadlocked.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/up.gif b/eclipse.org-common/themes/solstice/public/images/forums/up.gif
index 50d4c59..01d6b3f 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/up.gif
+++ b/eclipse.org-common/themes/solstice/public/images/forums/up.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/up.png b/eclipse.org-common/themes/solstice/public/images/forums/up.png
index c32f9f5..2f8c467 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/up.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/up.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/forums/yahoo.png b/eclipse.org-common/themes/solstice/public/images/forums/yahoo.png
index 51fa168..556d05e 100644
--- a/eclipse.org-common/themes/solstice/public/images/forums/yahoo.png
+++ b/eclipse.org-common/themes/solstice/public/images/forums/yahoo.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/hudson/icon_hudson.png b/eclipse.org-common/themes/solstice/public/images/hudson/icon_hudson.png
new file mode 100644
index 0000000..3a34c5c
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/hudson/icon_hudson.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/lists/bullet-content-list.png b/eclipse.org-common/themes/solstice/public/images/lists/bullet-content-list.png
index f0c4b6b..37946f3 100644
--- a/eclipse.org-common/themes/solstice/public/images/lists/bullet-content-list.png
+++ b/eclipse.org-common/themes/solstice/public/images/lists/bullet-content-list.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/lists/bullet-sideitem.gif b/eclipse.org-common/themes/solstice/public/images/lists/bullet-sideitem.gif
index 9532d98..5157b19 100644
--- a/eclipse.org-common/themes/solstice/public/images/lists/bullet-sideitem.gif
+++ b/eclipse.org-common/themes/solstice/public/images/lists/bullet-sideitem.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/lists/bullet-ul-left-nav.png b/eclipse.org-common/themes/solstice/public/images/lists/bullet-ul-left-nav.png
index 3bb076c..8395fa5 100644
--- a/eclipse.org-common/themes/solstice/public/images/lists/bullet-ul-left-nav.png
+++ b/eclipse.org-common/themes/solstice/public/images/lists/bullet-ul-left-nav.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-400x400.png b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-400x400.png
index 6530222..1179f80 100644
--- a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-400x400.png
+++ b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-400x400.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x188.png b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x188.png
index 0c46952..20c4f5b 100644
--- a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x188.png
+++ b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x188.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x426.png b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x426.png
index 2c63efe..f32e560 100644
--- a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x426.png
+++ b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x426.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-beta.png b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-beta.png
index c000294..0c7a320 100644
--- a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-beta.png
+++ b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-beta.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-200x200.png b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-200x200.png
new file mode 100644
index 0000000..2a7ff70
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-200x200.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-400x400.png b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-400x400.png
new file mode 100644
index 0000000..1cd01c4
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-400x400.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-grey-orange.svg b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-grey-orange.svg
new file mode 100644
index 0000000..720eb8d
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-grey-orange.svg
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>

+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->

+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">

+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"

+	 width="300px" height="100px" viewBox="0 0 300 100" enable-background="new 0 0 300 100" xml:space="preserve">

+<title>EF_WHT_OR_svg</title>

+<g>

+	<path fill="#F69221" d="M291.395,92.09l-9.5-12.039h-2.965v19.415h3.656v-13.09l10.193,13.09h2.271V80.051h-3.656V92.09z

+		 M255.896,83.016c4.568,0,6.396,3.653,6.342,6.924c-0.055,3.184-1.773,6.619-6.342,6.619c-4.572,0-6.287-3.408-6.371-6.593

+		C249.439,86.699,251.324,83.016,255.896,83.016 M255.896,79.688c-6.705,0-9.971,5.126-9.971,10.222

+		c0,5.098,3.154,9.998,9.971,9.998c6.812,0,9.887-5.012,9.941-10.026C265.895,84.814,262.57,79.688,255.896,79.688 M232.639,80.051

+		h-3.631v19.415h3.631V80.051z M206.834,99.466h3.656V83.375h6.148v-3.324h-15.955v3.324h6.15V99.466z M186.125,92.404h-7.201

+		l3.602-8.274L186.125,92.404z M189.227,99.466h3.99l-8.697-19.415h-3.988l-8.701,19.415h3.963l1.662-3.656h10.137L189.227,99.466z

+		 M147.605,83.514h3.988c4.211,0,5.982,3.022,6.066,6.05c0.084,3.168-1.662,6.385-6.066,6.385h-3.988V83.514z M151.594,80.051

+		h-7.618v19.415h7.618c6.787,0,9.779-4.957,9.695-9.875C161.207,84.786,158.242,80.051,151.594,80.051 M127.09,92.09l-9.5-12.039

+		h-2.963v19.415h3.656v-13.09l10.192,13.09h2.271V80.051h-3.656V92.09z M97.021,80.104v11.109c0,3.324-1.718,5.346-4.736,5.346

+		c-3.021,0-5.014-1.857-5.014-5.346V80.104h-3.628v11.109c0,5.844,3.96,8.67,8.614,8.67c4.874,0,8.392-2.936,8.392-8.67V80.104

+		H97.021z M60.883,83.016c4.572,0,6.399,3.653,6.344,6.924c-0.056,3.184-1.772,6.619-6.344,6.619c-4.569,0-6.287-3.408-6.37-6.593

+		C54.43,86.699,56.313,83.016,60.883,83.016 M60.883,79.688c-6.703,0-9.971,5.126-9.971,10.222c0,5.098,3.158,9.998,9.971,9.998

+		s9.889-5.012,9.943-10.026C70.882,84.814,67.558,79.688,60.883,79.688 M28.264,99.466v-7.173h9.722v-3.38h-9.722v-5.29h10.276

+		v-3.52H24.608v19.362H28.264z"/>

+	<path fill="#3D3C3B" d="M295.404,59.727h-24.277v-9.761h23.412v-7.6h-23.412V32.359h24.277V24.45h-32.371v43.307h32.371V59.727z

+		 M251.621,31.616c-3.275-6.67-10.254-8.585-16.988-8.585c-7.969,0.062-16.742,3.706-16.742,12.602c0,9.7,8.154,12.047,16.99,13.097

+		c5.744,0.617,10.006,2.286,10.006,6.363c0,4.695-4.818,6.486-9.945,6.486c-5.252,0-10.256-2.101-12.17-6.856l-6.795,3.521

+		c3.211,7.906,10.008,10.625,18.842,10.625c9.637,0,18.162-4.14,18.162-13.776c0-10.316-8.4-12.664-17.422-13.777

+		c-5.189-0.617-9.637-1.668-9.637-5.436c0-3.213,2.902-5.746,8.959-5.746c4.693,0,8.77,2.348,10.254,4.818L251.621,31.616z

+		 M193.195,24.45c-6.797-0.062-13.59,0-20.385,0v43.307h8.152V55.03h12.232C214.385,55.03,214.322,24.45,193.195,24.45

+		 M180.963,32.235h12.232c10.379,0,10.441,15.32,0,15.32h-12.232V32.235z M161.273,24.45h-8.094v43.307h8.094V24.45z M113.103,24.45

+		v43.307h30.395v-7.536h-22.241V24.45H113.103z M99.713,56.699c-2.842,2.841-7.105,4.386-10.874,4.386

+		c-10.687,0-14.827-7.475-14.888-14.641C73.89,39.216,78.4,31.433,88.84,31.433c3.769,0,7.599,1.297,10.441,4.076l5.436-5.25

+		c-4.447-4.387-10.007-6.611-15.876-6.611c-15.629,0-22.98,11.491-22.918,22.797c0.06,11.243,6.857,22.301,22.918,22.301

+		c6.24,0,11.985-2.039,16.433-6.426L99.713,56.699z M56.98,59.727H32.702v-9.761h23.413v-7.6H32.702V32.359H56.98V24.45H24.608

+		v43.307H56.98V59.727z"/>

+	<path fill="#F69221" d="M11.114,20.05C21.021,4.603,40.853-0.793,57.395,6.63c-0.366-0.254-0.732-0.51-1.11-0.754

+		C39.347-4.985,16.839-0.104,6.011,16.777C-4.815,33.661,0.137,56.151,17.075,67.015c0.379,0.243,0.765,0.471,1.149,0.697

+		C4.577,55.775,1.208,35.497,11.114,20.05"/>

+</g>

+</svg>

diff --git a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-white-orange.svg b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-white-orange.svg
new file mode 100644
index 0000000..5c9e8f8
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-white-orange.svg
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>

+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->

+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">

+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"

+	 width="300px" height="100px" viewBox="0 0 300 100" enable-background="new 0 0 300 100" xml:space="preserve">

+<title>EF_WHT_OR_svg</title>

+<g>

+	<path fill="#F69221" d="M290.711,92.03l-9.489-12.023h-2.961v19.389h3.651V86.323l10.182,13.072h2.268V80.007h-3.65V92.03z

+		 M255.259,82.968c4.565,0,6.392,3.65,6.336,6.914c-0.058,3.182-1.771,6.613-6.336,6.613c-4.564,0-6.278-3.404-6.36-6.586

+		C248.814,86.646,250.694,82.968,255.259,82.968 M255.259,79.647c-6.692,0-9.956,5.117-9.956,10.207s3.152,9.984,9.956,9.984

+		c6.806,0,9.873-5.006,9.929-10.012C265.246,84.765,261.926,79.647,255.259,79.647 M232.034,80.007h-3.623v19.389h3.623V80.007z

+		 M206.267,99.396h3.652V83.327h6.14v-3.32h-15.932v3.32h6.14V99.396z M185.589,92.347h-7.193l3.596-8.264L185.589,92.347z

+		 M188.686,99.396h3.984l-8.687-19.389h-3.982l-8.687,19.389h3.956l1.66-3.648h10.123L188.686,99.396z M147.123,83.466h3.981

+		c4.206,0,5.975,3.02,6.059,6.043c0.083,3.164-1.659,6.375-6.059,6.375h-3.981V83.466z M151.104,80.007h-7.606v19.389h7.606

+		c6.779,0,9.765-4.947,9.683-9.859C160.704,84.739,157.744,80.007,151.104,80.007 M126.636,92.03l-9.487-12.023h-2.959v19.389h3.65

+		V86.323l10.179,13.072h2.268V80.007h-3.651V92.03z M96.608,80.063v11.092c0,3.32-1.716,5.34-4.729,5.34

+		c-3.017,0-5.007-1.855-5.007-5.34V80.063h-3.623v11.092c0,5.836,3.955,8.658,8.602,8.658c4.867,0,8.38-2.934,8.38-8.658V80.063

+		H96.608z M60.521,82.968c4.565,0,6.39,3.65,6.335,6.914c-0.056,3.182-1.77,6.613-6.335,6.613c-4.563,0-6.278-3.404-6.361-6.586

+		C54.078,86.646,55.958,82.968,60.521,82.968 M60.521,79.647c-6.693,0-9.957,5.117-9.957,10.207s3.153,9.984,9.957,9.984

+		s9.875-5.006,9.93-10.012C70.507,84.765,67.188,79.647,60.521,79.647 M27.948,99.396v-7.164h9.709v-3.375h-9.709v-5.283H38.21

+		v-3.51H24.298v19.332H27.948z"/>

+	<path fill="#FFFFFF" d="M294.714,59.712h-24.245v-9.746h23.383v-7.589h-23.383v-9.993h24.245v-7.897H262.39v43.243h32.324V59.712z

+		 M250.991,31.642c-3.269-6.661-10.241-8.573-16.966-8.573c-7.956,0.062-16.718,3.701-16.718,12.585

+		c0,9.686,8.144,12.029,16.966,13.078c5.737,0.615,9.992,2.283,9.992,6.354c0,4.689-4.812,6.479-9.93,6.479

+		c-5.244,0-10.241-2.098-12.155-6.848l-6.784,3.516c3.208,7.895,9.994,10.611,18.814,10.611c9.624,0,18.139-4.135,18.139-13.758

+		c0-10.302-8.391-12.646-17.397-13.758c-5.182-0.616-9.625-1.664-9.625-5.427c0-3.21,2.901-5.739,8.946-5.739

+		c4.689,0,8.76,2.345,10.241,4.812L250.991,31.642z M192.648,24.486c-6.787-0.062-13.573,0-20.358,0v43.243h8.144V55.024h12.215

+		C213.81,55.024,213.745,24.486,192.648,24.486 M180.434,32.26h12.215c10.365,0,10.424,15.3,0,15.3h-12.215V32.26z M160.771,24.486

+		h-8.082v43.243h8.082V24.486z M112.668,24.486v43.243h30.352v-7.525h-22.209V24.486H112.668z M99.297,56.688

+		c-2.838,2.84-7.095,4.379-10.858,4.379c-10.671,0-14.805-7.461-14.867-14.619c-0.062-7.218,4.442-14.99,14.867-14.99

+		c3.764,0,7.588,1.296,10.427,4.071l5.428-5.243c-4.441-4.381-9.994-6.602-15.855-6.602c-15.607,0-22.948,11.475-22.886,22.764

+		c0.06,11.227,6.848,22.27,22.886,22.27c6.231,0,11.968-2.037,16.41-6.414L99.297,56.688z M56.625,59.712H32.38v-9.746h23.38v-7.589

+		H32.38v-9.993h24.245v-7.897H24.297v43.243h32.327V59.712z"/>

+	<path fill="#F69221" d="M10.822,20.091C20.715,4.665,40.52-0.722,57.038,6.69c-0.365-0.254-0.732-0.51-1.109-0.752

+		C39.016-4.909,16.539-0.035,5.727,16.823c-10.811,16.859-5.865,39.32,11.049,50.168c0.378,0.244,0.764,0.469,1.147,0.695

+		C4.294,55.767,0.93,35.517,10.822,20.091"/>

+</g>

+</svg>

diff --git a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-white.svg b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-white.svg
new file mode 100644
index 0000000..568c11d
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-white.svg
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>

+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->

+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">

+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"

+	 width="300px" height="100px" viewBox="0 0 300 100" enable-background="new 0 0 300 100" xml:space="preserve">

+<title>EF_WHT_OR_svg</title>

+<g>

+	<path fill="#FFFFFF" d="M291.055,91.684L281.6,79.702h-2.95v19.32h3.639V85.996l10.144,13.026h2.261v-19.32h-3.638V91.684z

+		 M255.729,82.653c4.549,0,6.367,3.636,6.312,6.89c-0.055,3.17-1.763,6.586-6.312,6.586s-6.256-3.389-6.338-6.56

+		C249.306,86.318,251.18,82.653,255.729,82.653 M255.729,79.344c-6.671,0-9.921,5.099-9.921,10.17c0,5.073,3.14,9.95,9.921,9.95

+		s9.839-4.989,9.894-9.978C265.68,84.442,262.371,79.344,255.729,79.344 M232.585,79.702h-3.611v19.32h3.611V79.702z

+		 M206.907,99.022h3.64V83.01h6.117v-3.308h-15.876v3.308h6.119V99.022z M186.302,91.997h-7.167l3.582-8.234L186.302,91.997z

+		 M189.388,99.022h3.97l-8.653-19.32h-3.97l-8.656,19.32h3.941l1.653-3.637h10.088L189.388,99.022z M147.971,83.148h3.968

+		c4.19,0,5.954,3.01,6.037,6.021c0.083,3.152-1.654,6.354-6.037,6.354h-3.968V83.148z M151.938,79.702h-7.58v19.32h7.58

+		c6.755,0,9.729-4.932,9.649-9.825C161.505,84.415,158.555,79.702,151.938,79.702 M127.556,91.684l-9.454-11.981h-2.949v19.32h3.638

+		V85.996l10.143,13.026h2.26v-19.32h-3.638V91.684z M97.633,79.758v11.053c0,3.31-1.71,5.318-4.712,5.318

+		c-3.006,0-4.99-1.846-4.99-5.318V79.758h-3.61v11.053c0,5.815,3.941,8.628,8.572,8.628c4.85,0,8.35-2.922,8.35-8.628V79.758H97.633

+		z M61.673,82.653c4.549,0,6.368,3.636,6.312,6.89c-0.056,3.17-1.764,6.586-6.312,6.586c-4.547,0-6.256-3.389-6.339-6.56

+		C55.251,86.318,57.126,82.653,61.673,82.653 M61.673,79.344c-6.67,0-9.922,5.099-9.922,10.17c0,5.073,3.141,9.95,9.922,9.95

+		c6.78,0,9.84-4.989,9.895-9.978C71.624,84.442,68.316,79.344,61.673,79.344 M29.214,99.022v-7.139h9.674v-3.362h-9.674v-5.265

+		h10.227v-3.499H25.576v19.265H29.214z"/>

+	<path fill="#FFFFFF" d="M295.044,59.479h-24.159v-9.713h23.299v-7.562h-23.299v-9.957h24.159v-7.871h-32.212v43.094h32.212V59.479z

+		 M251.476,31.506c-3.259-6.638-10.205-8.543-16.907-8.543c-7.929,0.06-16.658,3.687-16.658,12.541

+		c0,9.651,8.114,11.986,16.906,13.032c5.716,0.614,9.958,2.276,9.958,6.333c0,4.671-4.796,6.453-9.896,6.453

+		c-5.227,0-10.205-2.089-12.111-6.822l-6.761,3.504c3.196,7.867,9.958,10.573,18.748,10.573c9.591,0,18.074-4.119,18.074-13.708

+		c0-10.267-8.36-12.602-17.336-13.709c-5.165-0.614-9.591-1.66-9.591-5.409c0-3.198,2.89-5.718,8.915-5.718

+		c4.672,0,8.729,2.337,10.204,4.796L251.476,31.506z M193.336,24.375c-6.762-0.061-13.524,0-20.284,0v43.094h8.112V54.807h12.172

+		C214.422,54.807,214.359,24.375,193.336,24.375 M181.164,32.122h12.172c10.329,0,10.389,15.246,0,15.246h-12.172V32.122z

+		 M161.57,24.375h-8.054v43.094h8.054V24.375z M113.637,24.375v43.094h30.244V59.97h-22.13V24.375H113.637z M100.313,56.466

+		c-2.828,2.828-7.07,4.363-10.82,4.363c-10.634,0-14.754-7.437-14.814-14.567c-0.062-7.194,4.426-14.939,14.814-14.939

+		c3.75,0,7.562,1.291,10.39,4.057l5.409-5.226c-4.425-4.363-9.958-6.577-15.799-6.577c-15.553,0-22.868,11.435-22.806,22.685

+		c0.06,11.188,6.824,22.19,22.806,22.19c6.209,0,11.927-2.029,16.353-6.394L100.313,56.466z M57.79,59.479h-24.16v-9.713h23.299

+		v-7.562H33.629v-9.957h24.16v-7.871H25.576v43.094H57.79V59.479z"/>

+	<path fill="#FFFFFF" d="M12.148,19.997C22.006,4.625,41.742-0.743,58.202,6.643c-0.364-0.252-0.729-0.508-1.105-0.75

+		C40.243-4.915,17.845-0.06,7.071,16.74C-3.703,33.541,1.226,55.923,18.08,66.732c0.377,0.241,0.761,0.466,1.144,0.691

+		C5.643,55.546,2.291,35.367,12.148,19.997"/>

+</g>

+</svg>

diff --git a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-ide/eclipse_logo.svg b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-ide/eclipse_logo.svg
new file mode 100644
index 0000000..ac7e53f
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-ide/eclipse_logo.svg
@@ -0,0 +1,93 @@
+<?xml version="1.0" encoding="utf-8"?>

+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->

+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">

+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"

+	 width="469.86px" height="110.329px" viewBox="71.07 323.663 469.86 110.329"

+	 enable-background="new 71.07 323.663 469.86 110.329" xml:space="preserve">

+<path fill="#2C2255" d="M101.124,392.936H84.38c2.217,7.605,6.331,14.421,12.354,20.445c9.602,9.604,21.148,14.398,34.65,14.398

+	c2.699,0,5.314-0.201,7.854-0.584c10.17-1.535,19.074-6.133,26.703-13.814c6.062-6.021,10.205-12.84,12.439-20.445h-6.795h-9.936

+	H101.124z"/>

+<g>

+	<path fill="#2C2255" d="M91.891,370.194h-8.747c-0.32,1.922-0.538,3.884-0.637,5.896h10.396h5.215h75.275h6.871

+		c-0.1-2.012-0.318-3.974-0.641-5.896"/>

+	<path fill="#2C2255" d="M82.507,381.565c0.099,2.013,0.316,3.975,0.637,5.896h9.094h6.893h73.648h6.846

+		c0.322-1.921,0.542-3.883,0.642-5.896"/>

+</g>

+<path fill="#2C2255" d="M178.382,364.718c-2.232-7.626-6.376-14.474-12.441-20.54c-7.609-7.609-16.488-12.174-26.625-13.71

+	c-2.564-0.389-5.205-0.593-7.932-0.593c-13.502,0-25.049,4.769-34.65,14.303c-6.025,6.066-10.141,12.914-12.357,20.54"/>

+<g>

+	<path fill="#F7941E" d="M79.6,378.829c0-25.824,19.395-47.281,44.626-51.055c-0.626-0.023-1.255-0.048-1.887-0.048

+		c-28.314,0-51.269,22.88-51.269,51.103c0,28.224,22.954,51.103,51.269,51.103c0.634,0,1.263-0.023,1.891-0.047

+		C98.995,426.111,79.6,404.654,79.6,378.829z"/>

+</g>

+<rect x="350.664" y="323.663" fill="#F7941E" width="10.197" height="12.912"/>

+<path fill="#2C2255" d="M265.529,376.799v4.986h-46.885c0.442,7.023,2.558,12.369,6.345,16.044

+	c3.788,3.678,9.062,5.514,15.822,5.514c3.916,0,7.712-0.479,11.39-1.438c3.676-0.959,7.322-2.402,10.945-4.324v9.645

+	c-3.658,1.553-7.408,2.734-11.251,3.549c-3.843,0.812-7.74,1.219-11.693,1.219c-9.901,0-17.743-2.881-23.525-8.646

+	c-5.782-5.764-8.673-13.556-8.673-23.384c0-10.16,2.743-18.225,8.229-24.191s12.886-8.951,22.195-8.951

+	c8.351,0,14.954,2.688,19.812,8.064C263.1,360.256,265.529,367.563,265.529,376.799 M255.332,373.807

+	c-0.075-5.578-1.636-10.031-4.683-13.355c-3.049-3.326-7.085-4.988-12.109-4.988c-5.69,0-10.244,1.607-13.661,4.822

+	c-3.418,3.213-5.385,7.74-5.902,13.576L255.332,373.807z"/>

+<path fill="#2C2255" d="M318.422,350.698v9.531c-2.883-1.588-5.772-2.779-8.673-3.574c-2.902-0.795-5.829-1.191-8.785-1.191

+	c-6.614,0-11.749,2.096-15.405,6.289c-3.658,4.193-5.487,10.078-5.487,17.65c0,7.574,1.829,13.459,5.487,17.652

+	c3.656,4.195,8.791,6.289,15.405,6.289c2.956,0,5.883-0.396,8.785-1.188c2.898-0.795,5.79-1.986,8.673-3.576V408

+	c-2.846,1.33-5.793,2.328-8.84,2.992c-3.05,0.666-6.289,0.998-9.727,0.998c-9.348,0-16.773-2.938-22.277-8.812

+	c-5.506-5.873-8.258-13.798-8.258-23.775c0-10.121,2.779-18.084,8.34-23.885c5.56-5.799,13.182-8.701,22.859-8.701

+	c3.142,0,6.208,0.326,9.201,0.971C312.713,348.434,315.613,349.405,318.422,350.698"/>

+<rect x="327.643" y="324.151" fill="#2C2255" width="10.199" height="86.232"/>

+<path fill="#2C2255" d="M350.664,348.313h10.197v62.07h-10.197V348.313z"/>

+<path fill="#2C2255" d="M383.549,401.072v32.92h-10.252v-85.679h10.252v9.422c2.145-3.693,4.853-6.438,8.12-8.23

+	c3.271-1.789,7.177-2.688,11.721-2.688c7.538,0,13.662,2.992,18.371,8.979c4.711,5.986,7.065,13.855,7.065,23.607

+	c0,9.756-2.354,17.625-7.065,23.609c-4.709,5.984-10.833,8.979-18.371,8.979c-4.544,0-8.45-0.896-11.721-2.689

+	C388.399,407.512,385.691,404.768,383.549,401.072 M418.242,379.403c0-7.5-1.543-13.383-4.628-17.65s-7.324-6.4-12.721-6.4

+	c-5.395,0-9.635,2.133-12.718,6.4c-3.085,4.268-4.629,10.15-4.629,17.65c0,7.502,1.544,13.387,4.629,17.652

+	c3.083,4.27,7.323,6.4,12.718,6.4c5.396,0,9.636-2.133,12.721-6.4C416.699,392.79,418.242,386.905,418.242,379.403"/>

+<path fill="#2C2255" d="M476.788,350.143v9.643c-2.884-1.477-5.875-2.586-8.979-3.326c-3.104-0.738-6.317-1.107-9.643-1.107

+	c-5.062,0-8.857,0.775-11.39,2.328c-2.531,1.551-3.794,3.879-3.794,6.982c0,2.363,0.901,4.221,2.714,5.57

+	c1.81,1.348,5.447,2.631,10.918,3.852l3.489,0.775c7.241,1.553,12.388,3.74,15.436,6.568c3.049,2.826,4.573,6.77,4.573,11.83

+	c0,5.765-2.282,10.326-6.848,13.689c-4.562,3.359-10.833,5.043-18.812,5.043c-3.324,0-6.789-0.324-10.394-0.969

+	c-3.603-0.646-7.396-1.617-11.389-2.91V397.58c3.771,1.961,7.482,3.428,11.14,4.408c3.658,0.979,7.278,1.467,10.862,1.467

+	c4.804,0,8.496-0.82,11.084-2.465c2.587-1.646,3.878-3.963,3.878-6.955c0-2.771-0.932-4.895-2.796-6.375

+	c-1.867-1.477-5.959-2.9-12.278-4.268l-3.545-0.83c-6.316-1.33-10.881-3.371-13.688-6.123c-2.809-2.752-4.212-6.529-4.212-11.334

+	c0-5.838,2.068-10.344,6.207-13.521c4.138-3.178,10.013-4.768,17.623-4.768c3.769,0,7.314,0.277,10.641,0.83

+	C470.913,348.204,473.979,349.034,476.788,350.143"/>

+<path fill="#2C2255" d="M540.93,376.799v4.986h-46.885c0.443,7.023,2.558,12.369,6.347,16.044c3.785,3.678,9.062,5.514,15.82,5.514

+	c3.918,0,7.713-0.479,11.39-1.438c3.678-0.959,7.323-2.402,10.946-4.324v9.645c-3.659,1.553-7.409,2.734-11.252,3.549

+	c-3.841,0.812-7.739,1.219-11.69,1.219c-9.903,0-17.744-2.881-23.524-8.646c-5.784-5.764-8.675-13.556-8.675-23.384

+	c0-10.16,2.744-18.225,8.229-24.191c5.486-5.967,12.889-8.951,22.196-8.951c8.349,0,14.954,2.688,19.812,8.064

+	C538.5,360.256,540.93,367.563,540.93,376.799 M530.733,373.807c-0.076-5.578-1.636-10.031-4.686-13.355

+	c-3.049-3.326-7.086-4.988-12.106-4.988c-5.689,0-10.244,1.607-13.66,4.822c-3.418,3.213-5.389,7.74-5.903,13.576L530.733,373.807z"

+	/>

+<g>

+	

+		<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="387.3848" y1="229.9238" x2="387.3848" y2="156.2889" gradientTransform="matrix(1 0 0 1 -256 204.5)">

+		<stop  offset="0.3033" style="stop-color:#473788"/>

+		<stop  offset="0.872" style="stop-color:#2C2255"/>

+	</linearGradient>

+	<path fill="url(#SVGID_1_)" d="M164.653,376.089c-0.164-2.021-0.504-3.992-1.012-5.896h-64.51

+		c-0.508,1.903-0.849,3.874-1.013,5.896H164.653z"/>

+	

+		<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="387.3857" y1="229.9248" x2="387.3857" y2="156.2899" gradientTransform="matrix(1 0 0 1 -256 204.5)">

+		<stop  offset="0.3033" style="stop-color:#473788"/>

+		<stop  offset="0.872" style="stop-color:#2C2255"/>

+	</linearGradient>

+	<path fill="url(#SVGID_2_)" d="M164.653,381.565H98.119c0.164,2.021,0.503,3.992,1.012,5.896h64.511

+		C164.15,385.557,164.489,383.586,164.653,381.565z"/>

+	

+		<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="387.3857" y1="229.9229" x2="387.3857" y2="156.2915" gradientTransform="matrix(1 0 0 1 -256 204.5)">

+		<stop  offset="0.3033" style="stop-color:#473788"/>

+		<stop  offset="0.8631" style="stop-color:#2C2255"/>

+	</linearGradient>

+	<path fill="url(#SVGID_3_)" d="M131.386,412.217c13.397,0,24.945-7.893,30.263-19.281h-60.526

+		C106.441,404.324,117.989,412.217,131.386,412.217z"/>

+</g>

+<g>

+	<path fill="#FFFFFF" d="M93.188,381.565h4.884h66.706h8.763h6.657c0.046-0.871,0.072-1.748,0.072-2.631

+		c0-0.955-0.035-1.902-0.089-2.845h-6.641h-8.763H98.071h-5.229H82.507c-0.054,0.942-0.089,1.89-0.089,2.845

+		c0,0.883,0.026,1.76,0.072,2.631H93.188z"/>

+	<path fill="#FFFFFF" d="M100.928,364.718H84.376c-0.544,1.783-0.895,3.612-1.232,5.476h8.525h7.259h64.679h9.16h6.547

+		c-0.338-1.863-0.773-3.692-1.316-5.476"/>

+	<path fill="#FFFFFF" d="M173.026,387.46h-9.16H99.188h-6.912h-9.133c0.328,1.863,0.701,3.691,1.236,5.476h16.807h60.682h9.962

+		h6.488c0.534-1.784,0.965-3.612,1.294-5.476H173.026z"/>

+</g>

+</svg>

diff --git a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-ide/eclipse_logo_white.svg b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-ide/eclipse_logo_white.svg
new file mode 100644
index 0000000..d0802e1
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-ide/eclipse_logo_white.svg
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="utf-8"?>

+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->

+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">

+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"

+	 width="469.86px" height="110.329px" viewBox="71.07 323.663 469.86 110.329"

+	 enable-background="new 71.07 323.663 469.86 110.329" xml:space="preserve">

+<path fill="#FFFFFF" d="M101.124,392.936H84.38c2.217,7.605,6.331,14.422,12.354,20.445c9.602,9.602,21.148,14.397,34.65,14.397

+	c2.699,0,5.314-0.201,7.854-0.584c10.17-1.535,19.074-6.133,26.703-13.813c6.062-6.023,10.205-12.84,12.439-20.445h-6.795h-9.936

+	H101.124z"/>

+<g>

+	<path fill="#FFFFFF" d="M179.624,370.193c0.322,1.922,0.541,3.884,0.641,5.896h-6.871H98.118h-5.215H82.507

+		c0.099-2.012,0.316-3.974,0.637-5.896h8.747H179.624z"/>

+	<path fill="#FFFFFF" d="M180.266,381.564c-0.1,2.013-0.319,3.975-0.642,5.896h-6.846H99.13h-6.893h-9.094

+		c-0.32-1.922-0.538-3.884-0.637-5.896H180.266z"/>

+</g>

+<path fill="#FFFFFF" d="M178.382,364.718c-2.232-7.626-6.376-14.474-12.441-20.54c-7.609-7.609-16.488-12.174-26.625-13.71

+	c-2.564-0.389-5.205-0.593-7.932-0.593c-13.502,0-25.049,4.769-34.65,14.303c-6.025,6.066-10.141,12.914-12.357,20.54H178.382

+	L178.382,364.718z"/>

+<g>

+	<path fill="#FFFFFF" d="M79.6,378.829c0-25.824,19.395-47.281,44.626-51.055c-0.626-0.023-1.255-0.048-1.887-0.048

+		c-28.314,0-51.269,22.88-51.269,51.103c0,28.224,22.954,51.104,51.269,51.104c0.634,0,1.263-0.025,1.891-0.048

+		C98.995,426.111,79.6,404.653,79.6,378.829z"/>

+</g>

+<rect x="350.665" y="323.663" fill="#FFFFFF" width="10.197" height="12.912"/>

+<path fill="#FFFFFF" d="M265.529,376.798v4.986h-46.885c0.442,7.023,2.558,12.369,6.345,16.045

+	c3.788,3.679,9.062,5.515,15.822,5.515c3.916,0,7.712-0.479,11.39-1.439c3.676-0.959,7.322-2.401,10.945-4.324v9.646

+	c-3.658,1.551-7.408,2.734-11.251,3.547c-3.843,0.813-7.74,1.219-11.693,1.219c-9.901,0-17.743-2.881-23.525-8.646

+	c-5.782-5.765-8.673-13.558-8.673-23.385c0-10.161,2.743-18.226,8.229-24.191s12.886-8.951,22.195-8.951

+	c8.351,0,14.954,2.688,19.812,8.064C263.1,360.255,265.529,367.562,265.529,376.798 M255.332,373.807

+	c-0.075-5.578-1.636-10.031-4.683-13.355c-3.049-3.326-7.085-4.988-12.109-4.988c-5.69,0-10.244,1.607-13.661,4.822

+	c-3.418,3.213-5.385,7.74-5.902,13.576L255.332,373.807z"/>

+<path fill="#FFFFFF" d="M318.422,350.697v9.531c-2.883-1.588-5.775-2.779-8.674-3.574c-2.902-0.795-5.829-1.191-8.785-1.191

+	c-6.614,0-11.749,2.096-15.405,6.289c-3.658,4.193-5.487,10.078-5.487,17.65c0,7.574,1.829,13.459,5.487,17.652

+	c3.656,4.195,8.791,6.289,15.405,6.289c2.956,0,5.883-0.396,8.785-1.189c2.898-0.795,5.791-1.985,8.674-3.576v9.423

+	c-2.846,1.329-5.793,2.327-8.84,2.991c-3.051,0.666-6.29,0.998-9.727,0.998c-9.348,0-16.773-2.938-22.277-8.812

+	c-5.506-5.873-8.258-13.799-8.258-23.775c0-10.121,2.779-18.084,8.34-23.885c5.56-5.799,13.182-8.701,22.859-8.701

+	c3.142,0,6.208,0.326,9.202,0.971C312.713,348.434,315.613,349.404,318.422,350.697"/>

+<rect x="327.644" y="324.15" fill="#FFFFFF" width="10.199" height="86.232"/>

+<path fill="#FFFFFF" d="M350.665,348.312h10.197v62.07h-10.197V348.312z"/>

+<path fill="#FFFFFF" d="M383.55,401.072v32.92h-10.252v-85.68h10.252v9.422c2.143-3.693,4.85-6.438,8.119-8.23

+	c3.27-1.789,7.178-2.688,11.721-2.688c7.539,0,13.662,2.992,18.371,8.979c4.711,5.986,7.064,13.855,7.064,23.607

+	c0,9.756-2.354,17.625-7.064,23.609c-4.709,5.983-10.832,8.979-18.371,8.979c-4.543,0-8.451-0.896-11.721-2.688

+	C388.399,407.512,385.692,404.768,383.55,401.072 M418.243,379.402c0-7.5-1.543-13.383-4.629-17.65

+	c-3.084-4.268-7.324-6.4-12.719-6.4s-9.635,2.133-12.717,6.4c-3.086,4.268-4.629,10.15-4.629,17.65

+	c0,7.502,1.543,13.387,4.629,17.652c3.082,4.268,7.32,6.399,12.717,6.399c5.395,0,9.635-2.133,12.719-6.399

+	C416.7,392.789,418.243,386.904,418.243,379.402"/>

+<path fill="#FFFFFF" d="M476.788,350.143v9.643c-2.883-1.477-5.875-2.586-8.979-3.326c-3.105-0.738-6.318-1.107-9.645-1.107

+	c-5.061,0-8.855,0.775-11.389,2.328c-2.531,1.551-3.795,3.879-3.795,6.982c0,2.363,0.904,4.221,2.715,5.57

+	c1.811,1.348,5.449,2.631,10.918,3.852l3.49,0.775c7.242,1.553,12.387,3.74,15.434,6.568c3.051,2.826,4.574,6.77,4.574,11.83

+	c0,5.764-2.283,10.326-6.846,13.688c-4.562,3.361-10.834,5.043-18.814,5.043c-3.322,0-6.789-0.324-10.393-0.969

+	c-3.602-0.646-7.396-1.617-11.389-2.91v-10.531c3.77,1.961,7.482,3.429,11.141,4.408s7.277,1.467,10.861,1.467

+	c4.805,0,8.496-0.819,11.084-2.465s3.879-3.963,3.879-6.955c0-2.771-0.932-4.895-2.797-6.375c-1.867-1.477-5.959-2.899-12.277-4.268

+	l-3.545-0.83c-6.318-1.33-10.881-3.371-13.689-6.123c-2.807-2.752-4.211-6.529-4.211-11.334c0-5.838,2.07-10.344,6.207-13.521

+	c4.137-3.177,10.012-4.768,17.623-4.768c3.77,0,7.316,0.277,10.641,0.83C470.913,348.204,473.979,349.034,476.788,350.143"/>

+<path fill="#FFFFFF" d="M540.931,376.798v4.986h-46.885c0.441,7.023,2.557,12.369,6.346,16.045c3.785,3.679,9.061,5.515,15.82,5.515

+	c3.918,0,7.713-0.479,11.391-1.439c3.676-0.959,7.322-2.401,10.945-4.324v9.646c-3.658,1.551-7.408,2.734-11.252,3.547

+	c-3.842,0.812-7.738,1.219-11.691,1.219c-9.904,0-17.744-2.881-23.525-8.646c-5.783-5.765-8.674-13.558-8.674-23.385

+	c0-10.161,2.744-18.226,8.229-24.191c5.486-5.967,12.887-8.951,22.197-8.951c8.348,0,14.953,2.688,19.812,8.064

+	C538.501,360.255,540.931,367.562,540.931,376.798 M530.733,373.807c-0.076-5.578-1.633-10.031-4.684-13.355

+	c-3.051-3.326-7.086-4.988-12.107-4.988c-5.689,0-10.244,1.607-13.66,4.822c-3.418,3.213-5.387,7.74-5.904,13.576L530.733,373.807z"

+	/>

+</svg>

diff --git a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-logo-bw-800x188.png b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-logo-bw-800x188.png
index 4df9e07..5f5e459 100644
--- a/eclipse.org-common/themes/solstice/public/images/logo/eclipse-logo-bw-800x188.png
+++ b/eclipse.org-common/themes/solstice/public/images/logo/eclipse-logo-bw-800x188.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/logo/eclipse.png b/eclipse.org-common/themes/solstice/public/images/logo/eclipse.png
index f66f2b7..70c450b 100644
--- a/eclipse.org-common/themes/solstice/public/images/logo/eclipse.png
+++ b/eclipse.org-common/themes/solstice/public/images/logo/eclipse.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/logo/jakarta-ee-white.svg b/eclipse.org-common/themes/solstice/public/images/logo/jakarta-ee-white.svg
new file mode 100644
index 0000000..55ce0f9
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/logo/jakarta-ee-white.svg
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="utf-8"?>

+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->

+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">

+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"

+	 width="319.14px" height="125.061px" viewBox="81.422 32.317 319.14 125.061"

+	 enable-background="new 81.422 32.317 319.14 125.061" xml:space="preserve">

+<polygon fill="#FFFFFF" points="148.605,111.638 111.69,111.638 111.69,54.634 147.799,54.634 147.799,64.732 122.41,64.732 

+	122.41,76.866 142.077,76.866 142.077,86.963 122.41,86.963 122.41,101.54 148.605,101.54 "/>

+<g>

+	<path fill="#FFFFFF" d="M181.168,112.776c-8.168,0-14.844-2.735-20.029-8.209c-5.186-5.476-7.778-12.619-7.778-21.433

+		c0-8.812,2.592-15.956,7.778-21.429c5.185-5.474,11.861-8.212,20.029-8.212c6.179,0,11.526,1.122,16.04,3.365l-1.128,9.976

+		c-5.429-2.162-10.398-3.244-14.912-3.244c-5.319,0-9.404,1.786-12.251,5.353c-2.849,3.568-4.272,8.299-4.272,14.191

+		c0,5.894,1.423,10.625,4.272,14.193c2.847,3.568,6.932,5.351,12.251,5.351c4.514,0,9.483-1.08,14.912-3.243l1.128,9.976

+		C192.694,111.655,187.347,112.776,181.168,112.776"/>

+	<polygon fill="#FFFFFF" points="239.362,111.638 205.833,111.638 205.833,54.634 216.149,54.634 216.149,101.54 239.362,101.54 	

+		"/>

+	<rect x="246.132" y="54.634" fill="#FFFFFF" width="10.318" height="57.004"/>

+	<path fill="#FFFFFF" d="M289.201,92.909H279.18v18.729h-10.317V54.634h15.896c4.228,0,7.693,0.218,10.396,0.651

+		c2.703,0.436,5.164,1.277,7.386,2.525c2.223,1.25,3.828,3.082,4.816,5.497c0.99,2.416,1.484,5.552,1.484,9.405

+		c0,3.856-0.627,7.181-1.885,9.977c-1.256,2.796-2.927,4.899-5.011,6.31c-2.084,1.412-4.169,2.416-6.253,3.013

+		C293.608,92.611,291.444,92.909,289.201,92.909 M287.643,63.348h-8.463v19.788h8.704c3.814,0,6.541-0.773,8.182-2.32

+		c1.639-1.548,2.458-4.221,2.458-8.022c0-3.365-0.765-5.782-2.297-7.248C294.695,64.08,291.833,63.348,287.643,63.348"/>

+	<path fill="#FFFFFF" d="M333.138,112.776c-4.006,0-7.666-0.409-10.977-1.229c-3.312-0.821-5.85-1.807-7.611-2.956l1.191-11.9

+		c1.709,1.674,4.102,3.09,7.176,4.25s6.562,1.74,10.465,1.74c6.744,0,10.117-2.056,10.117-6.172c0-1.137-0.266-2.166-0.797-3.085

+		c-0.531-0.92-1.102-1.678-1.711-2.274c-0.611-0.596-1.633-1.231-3.066-1.908c-1.432-0.678-2.553-1.165-3.357-1.462

+		c-0.809-0.298-2.17-0.8-4.084-1.507c-1.639-0.558-2.771-0.977-3.404-1.257l-3.326-1.228c-1.506-0.592-2.605-1.115-3.305-1.573

+		s-1.561-1.103-2.58-1.938c-1.021-0.833-1.773-1.681-2.256-2.542c-0.484-0.86-0.914-1.895-1.291-3.107

+		c-0.375-1.21-0.564-2.514-0.564-3.913c0-4.482,1.656-8.472,4.967-11.971c3.312-3.5,8.414-5.249,15.309-5.249

+		c3.619,0,7.115,0.47,10.494,1.407c3.377,0.939,5.9,1.959,7.576,3.063l-1.055,10.726c-6.213-3.398-11.752-5.099-16.613-5.099

+		c-2.754,0-5.168,0.454-7.242,1.357c-2.078,0.903-3.117,2.419-3.117,4.546c0,2.02,0.957,3.577,2.873,4.666

+		c1.916,1.091,4.814,2.221,8.703,3.389c1.969,0.742,3.471,1.306,4.508,1.696c1.035,0.388,2.473,0.931,4.316,1.623

+		c1.844,0.693,3.271,1.462,4.289,2.307c1.018,0.845,2.072,1.879,3.17,3.105c1.1,1.225,1.9,2.668,2.408,4.33

+		c0.51,1.661,0.766,3.499,0.766,5.515c0,1.523-0.139,2.951-0.406,4.285c-0.271,1.333-0.879,2.79-1.824,4.367

+		c-0.945,1.578-2.188,2.926-3.729,4.041c-1.541,1.117-3.678,2.056-6.404,2.815C340.015,112.396,336.814,112.776,333.138,112.776"/>

+	<polygon fill="#FFFFFF" points="400.562,111.638 363.648,111.638 363.648,54.634 399.757,54.634 399.757,64.732 374.369,64.732 

+		374.369,76.866 394.035,76.866 394.035,86.963 374.369,86.963 374.369,101.54 400.562,101.54 	"/>

+	<polygon fill="#FFFFFF" points="130.097,131.601 116.858,131.601 116.858,138.108 127.082,138.108 127.082,143.526 

+		116.858,143.526 116.858,156.767 111.266,156.767 111.266,126.183 130.097,126.183 	"/>

+	<path fill="#FFFFFF" d="M160.266,152.972c-2.811,2.938-6.43,4.406-10.857,4.406c-4.428,0-8.047-1.469-10.857-4.406

+		c-2.812-2.937-4.216-6.77-4.216-11.498c0-4.728,1.404-8.561,4.216-11.498c2.81-2.937,6.429-4.404,10.857-4.404

+		c4.427,0,8.046,1.469,10.857,4.404c2.811,2.938,4.217,6.771,4.217,11.498C164.483,146.202,163.077,150.035,160.266,152.972

+		 M156.05,133.858c-1.544-1.914-3.757-2.871-6.641-2.871c-2.883,0-5.097,0.957-6.641,2.871s-2.316,4.453-2.316,7.615

+		c0,3.161,0.772,5.699,2.316,7.614s3.758,2.872,6.641,2.872c2.884,0,5.097-0.957,6.641-2.872c1.544-1.915,2.316-4.453,2.316-7.614

+		C158.366,138.312,157.594,135.772,156.05,133.858"/>

+	<path fill="#FFFFFF" d="M193.363,153.729c-2.127,2.433-5.287,3.646-9.481,3.646c-4.195,0-7.355-1.215-9.481-3.646

+		c-2.127-2.434-3.19-5.789-3.19-10.071v-17.478h5.593v15.571c0,3.228,0.502,5.735,1.507,7.524s2.862,2.683,5.571,2.683

+		s4.565-0.894,5.57-2.683c1.005-1.789,1.508-4.297,1.508-7.524v-15.571h5.592v17.478

+		C196.552,147.94,195.488,151.297,193.363,153.729"/>

+	<polygon fill="#FFFFFF" points="229.277,156.767 224.689,156.767 210.708,135.794 210.708,156.767 205.115,156.767 

+		205.115,126.183 210.707,126.183 223.684,145.806 223.684,126.183 229.277,126.183 	"/>

+	<path fill="#FFFFFF" d="M249.636,156.767H238.19v-30.584h11.446c4.457,0,8.082,1.373,10.88,4.123

+		c2.796,2.748,4.192,6.471,4.192,11.168c0,4.698-1.396,8.422-4.192,11.17C257.718,155.392,254.093,156.767,249.636,156.767

+		 M249.636,131.601h-5.854v19.748h5.854c2.912,0,5.135-0.869,6.662-2.609c1.529-1.74,2.295-4.16,2.295-7.266

+		c0-3.103-0.766-5.522-2.295-7.265C254.771,132.47,252.548,131.601,249.636,131.601"/>

+	<path fill="#FFFFFF" d="M295.058,156.767h-5.751l-2.604-7.385h-10.248l-2.629,7.385h-5.752l10.891-30.584h5.275L295.058,156.767z

+		 M284.789,143.964l-3.188-9.033l-3.219,9.033H284.789z"/>

+	<polygon fill="#FFFFFF" points="318.667,131.601 310.017,131.601 310.017,156.767 304.423,156.767 304.423,131.601 

+		295.772,131.601 295.772,126.183 318.667,126.183 	"/>

+	<rect x="324.873" y="126.183" fill="#FFFFFF" width="5.592" height="30.584"/>

+	<path fill="#FFFFFF" d="M363.472,152.972c-2.811,2.938-6.43,4.406-10.855,4.406c-4.43,0-8.047-1.469-10.857-4.406

+		c-2.812-2.937-4.217-6.77-4.217-11.498c0-4.728,1.404-8.561,4.217-11.498c2.811-2.937,6.43-4.404,10.857-4.404

+		c4.426,0,8.045,1.469,10.855,4.404c2.812,2.938,4.219,6.771,4.219,11.498C367.691,146.202,366.283,150.035,363.472,152.972

+		 M359.255,133.858c-1.543-1.914-3.756-2.871-6.641-2.871c-2.883,0-5.098,0.957-6.641,2.871c-1.545,1.914-2.316,4.453-2.316,7.615

+		c0,3.161,0.771,5.699,2.316,7.614c1.543,1.915,3.758,2.872,6.641,2.872c2.885,0,5.098-0.957,6.641-2.872

+		c1.545-1.915,2.316-4.453,2.316-7.614C361.572,138.312,360.8,135.772,359.255,133.858"/>

+	<polygon fill="#FFFFFF" points="398.927,156.767 394.339,156.767 380.359,135.794 380.359,156.767 374.767,156.767 

+		374.767,126.183 380.359,126.183 393.335,145.806 393.335,126.183 398.927,126.183 	"/>

+	<path fill="#FFFFFF" d="M97.91,47.091c14.11-13.069,35.65-13.331,50.48-1.454c-0.304-0.355-0.608-0.71-0.928-1.056

+		c-14.329-15.47-38.448-16.434-53.869-2.151c-15.421,14.283-16.307,38.404-1.977,53.876c0.321,0.347,0.653,0.678,0.983,1.009

+		C81.89,81.616,83.8,60.16,97.91,47.091"/>

+</g>

+</svg>

diff --git a/eclipse.org-common/themes/solstice/public/images/template/bg-deprecated.gif b/eclipse.org-common/themes/solstice/public/images/template/bg-deprecated.gif
index 028fb2c..8e86c4e 100644
--- a/eclipse.org-common/themes/solstice/public/images/template/bg-deprecated.gif
+++ b/eclipse.org-common/themes/solstice/public/images/template/bg-deprecated.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/template/breadcrumbs-bg.jpg b/eclipse.org-common/themes/solstice/public/images/template/breadcrumbs-bg.jpg
index 22bba44..0cc9a1c 100644
--- a/eclipse.org-common/themes/solstice/public/images/template/breadcrumbs-bg.jpg
+++ b/eclipse.org-common/themes/solstice/public/images/template/breadcrumbs-bg.jpg
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/template/breadcrumbs-large-bg.jpg b/eclipse.org-common/themes/solstice/public/images/template/breadcrumbs-large-bg.jpg
index afce4dd..b8d4ad3 100644
--- a/eclipse.org-common/themes/solstice/public/images/template/breadcrumbs-large-bg.jpg
+++ b/eclipse.org-common/themes/solstice/public/images/template/breadcrumbs-large-bg.jpg
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/template/footer-working-group-separator.png b/eclipse.org-common/themes/solstice/public/images/template/footer-working-group-separator.png
index a138828..d8f191b 100644
--- a/eclipse.org-common/themes/solstice/public/images/template/footer-working-group-separator.png
+++ b/eclipse.org-common/themes/solstice/public/images/template/footer-working-group-separator.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/template/separator.png b/eclipse.org-common/themes/solstice/public/images/template/separator.png
index 12f7e2a..089d02d 100644
--- a/eclipse.org-common/themes/solstice/public/images/template/separator.png
+++ b/eclipse.org-common/themes/solstice/public/images/template/separator.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/back-to-top/back-to-top.png b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/back-to-top/back-to-top.png
new file mode 100644
index 0000000..39add37
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/back-to-top/back-to-top.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/discover-search/discover-search-bg.jpg b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/discover-search/discover-search-bg.jpg
new file mode 100644
index 0000000..9fc755a
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/discover-search/discover-search-bg.jpg
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/drag-drop/mpcdrag.png b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/drag-drop/mpcdrag.png
new file mode 100644
index 0000000..2dda987
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/drag-drop/mpcdrag.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/landing-well/eclipse_alternate_bg-1.jpg b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/landing-well/eclipse_alternate_bg-1.jpg
new file mode 100644
index 0000000..90e4f3a
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/landing-well/eclipse_alternate_bg-1.jpg
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/landing-well/eclipse_home_bg.jpg b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/landing-well/eclipse_home_bg.jpg
new file mode 100644
index 0000000..4c0de02
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/landing-well/eclipse_home_bg.jpg
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/landing-well/jakarta_home_bg.jpg b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/landing-well/jakarta_home_bg.jpg
new file mode 100644
index 0000000..9726efd
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/landing-well/jakarta_home_bg.jpg
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/tabs-sidebar/tabs-sidebar-active.png b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/tabs-sidebar/tabs-sidebar-active.png
new file mode 100644
index 0000000..5e803be
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-components/tabs-sidebar/tabs-sidebar-active.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-template/bg-deprecated.gif b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-template/bg-deprecated.gif
new file mode 100644
index 0000000..fa0fef1
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-template/bg-deprecated.gif
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-template/breadcrumbs-large-bg.jpg b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-template/breadcrumbs-large-bg.jpg
new file mode 100644
index 0000000..d6ea96a
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-template/breadcrumbs-large-bg.jpg
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-template/footer-working-group-separator.png b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-template/footer-working-group-separator.png
new file mode 100644
index 0000000..d8f191b
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/images/vendor/eclipsefdn-solstice-template/footer-working-group-separator.png
Binary files differ
diff --git a/eclipse.org-common/themes/solstice/public/javascript/barebone.min.js b/eclipse.org-common/themes/solstice/public/javascript/barebone.min.js
index dd0cd05..36dad8b 100644
--- a/eclipse.org-common/themes/solstice/public/javascript/barebone.min.js
+++ b/eclipse.org-common/themes/solstice/public/javascript/barebone.min.js
@@ -1,12272 +1,4 @@
-/*!
- * jQuery JavaScript Library v2.2.4
- * http://jquery.com/
- *
- * Includes Sizzle.js
- * http://sizzlejs.com/
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license
- * http://jquery.org/license
- *
- * Date: 2016-05-20T17:23Z
- */
-
-(function( global, factory ) {
-
-	if ( typeof module === "object" && typeof module.exports === "object" ) {
-		// For CommonJS and CommonJS-like environments where a proper `window`
-		// is present, execute the factory and get jQuery.
-		// For environments that do not have a `window` with a `document`
-		// (such as Node.js), expose a factory as module.exports.
-		// This accentuates the need for the creation of a real `window`.
-		// e.g. var jQuery = require("jquery")(window);
-		// See ticket #14549 for more info.
-		module.exports = global.document ?
-			factory( global, true ) :
-			function( w ) {
-				if ( !w.document ) {
-					throw new Error( "jQuery requires a window with a document" );
-				}
-				return factory( w );
-			};
-	} else {
-		factory( global );
-	}
-
-// Pass this if window is not defined yet
-}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
-
-// Support: Firefox 18+
-// Can't be in strict mode, several libs including ASP.NET trace
-// the stack via arguments.caller.callee and Firefox dies if
-// you try to trace through "use strict" call chains. (#13335)
-//"use strict";
-var arr = [];
-
-var document = window.document;
-
-var slice = arr.slice;
-
-var concat = arr.concat;
-
-var push = arr.push;
-
-var indexOf = arr.indexOf;
-
-var class2type = {};
-
-var toString = class2type.toString;
-
-var hasOwn = class2type.hasOwnProperty;
-
-var support = {};
-
-
-
-var
-	version = "2.2.4",
-
-	// Define a local copy of jQuery
-	jQuery = function( selector, context ) {
-
-		// The jQuery object is actually just the init constructor 'enhanced'
-		// Need init if jQuery is called (just allow error to be thrown if not included)
-		return new jQuery.fn.init( selector, context );
-	},
-
-	// Support: Android<4.1
-	// Make sure we trim BOM and NBSP
-	rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
-
-	// Matches dashed string for camelizing
-	rmsPrefix = /^-ms-/,
-	rdashAlpha = /-([\da-z])/gi,
-
-	// Used by jQuery.camelCase as callback to replace()
-	fcamelCase = function( all, letter ) {
-		return letter.toUpperCase();
-	};
-
-jQuery.fn = jQuery.prototype = {
-
-	// The current version of jQuery being used
-	jquery: version,
-
-	constructor: jQuery,
-
-	// Start with an empty selector
-	selector: "",
-
-	// The default length of a jQuery object is 0
-	length: 0,
-
-	toArray: function() {
-		return slice.call( this );
-	},
-
-	// Get the Nth element in the matched element set OR
-	// Get the whole matched element set as a clean array
-	get: function( num ) {
-		return num != null ?
-
-			// Return just the one element from the set
-			( num < 0 ? this[ num + this.length ] : this[ num ] ) :
-
-			// Return all the elements in a clean array
-			slice.call( this );
-	},
-
-	// Take an array of elements and push it onto the stack
-	// (returning the new matched element set)
-	pushStack: function( elems ) {
-
-		// Build a new jQuery matched element set
-		var ret = jQuery.merge( this.constructor(), elems );
-
-		// Add the old object onto the stack (as a reference)
-		ret.prevObject = this;
-		ret.context = this.context;
-
-		// Return the newly-formed element set
-		return ret;
-	},
-
-	// Execute a callback for every element in the matched set.
-	each: function( callback ) {
-		return jQuery.each( this, callback );
-	},
-
-	map: function( callback ) {
-		return this.pushStack( jQuery.map( this, function( elem, i ) {
-			return callback.call( elem, i, elem );
-		} ) );
-	},
-
-	slice: function() {
-		return this.pushStack( slice.apply( this, arguments ) );
-	},
-
-	first: function() {
-		return this.eq( 0 );
-	},
-
-	last: function() {
-		return this.eq( -1 );
-	},
-
-	eq: function( i ) {
-		var len = this.length,
-			j = +i + ( i < 0 ? len : 0 );
-		return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );
-	},
-
-	end: function() {
-		return this.prevObject || this.constructor();
-	},
-
-	// For internal use only.
-	// Behaves like an Array's method, not like a jQuery method.
-	push: push,
-	sort: arr.sort,
-	splice: arr.splice
-};
-
-jQuery.extend = jQuery.fn.extend = function() {
-	var options, name, src, copy, copyIsArray, clone,
-		target = arguments[ 0 ] || {},
-		i = 1,
-		length = arguments.length,
-		deep = false;
-
-	// Handle a deep copy situation
-	if ( typeof target === "boolean" ) {
-		deep = target;
-
-		// Skip the boolean and the target
-		target = arguments[ i ] || {};
-		i++;
-	}
-
-	// Handle case when target is a string or something (possible in deep copy)
-	if ( typeof target !== "object" && !jQuery.isFunction( target ) ) {
-		target = {};
-	}
-
-	// Extend jQuery itself if only one argument is passed
-	if ( i === length ) {
-		target = this;
-		i--;
-	}
-
-	for ( ; i < length; i++ ) {
-
-		// Only deal with non-null/undefined values
-		if ( ( options = arguments[ i ] ) != null ) {
-
-			// Extend the base object
-			for ( name in options ) {
-				src = target[ name ];
-				copy = options[ name ];
-
-				// Prevent never-ending loop
-				if ( target === copy ) {
-					continue;
-				}
-
-				// Recurse if we're merging plain objects or arrays
-				if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
-					( copyIsArray = jQuery.isArray( copy ) ) ) ) {
-
-					if ( copyIsArray ) {
-						copyIsArray = false;
-						clone = src && jQuery.isArray( src ) ? src : [];
-
-					} else {
-						clone = src && jQuery.isPlainObject( src ) ? src : {};
-					}
-
-					// Never move original objects, clone them
-					target[ name ] = jQuery.extend( deep, clone, copy );
-
-				// Don't bring in undefined values
-				} else if ( copy !== undefined ) {
-					target[ name ] = copy;
-				}
-			}
-		}
-	}
-
-	// Return the modified object
-	return target;
-};
-
-jQuery.extend( {
-
-	// Unique for each copy of jQuery on the page
-	expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
-
-	// Assume jQuery is ready without the ready module
-	isReady: true,
-
-	error: function( msg ) {
-		throw new Error( msg );
-	},
-
-	noop: function() {},
-
-	isFunction: function( obj ) {
-		return jQuery.type( obj ) === "function";
-	},
-
-	isArray: Array.isArray,
-
-	isWindow: function( obj ) {
-		return obj != null && obj === obj.window;
-	},
-
-	isNumeric: function( obj ) {
-
-		// parseFloat NaNs numeric-cast false positives (null|true|false|"")
-		// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
-		// subtraction forces infinities to NaN
-		// adding 1 corrects loss of precision from parseFloat (#15100)
-		var realStringObj = obj && obj.toString();
-		return !jQuery.isArray( obj ) && ( realStringObj - parseFloat( realStringObj ) + 1 ) >= 0;
-	},
-
-	isPlainObject: function( obj ) {
-		var key;
-
-		// Not plain objects:
-		// - Any object or value whose internal [[Class]] property is not "[object Object]"
-		// - DOM nodes
-		// - window
-		if ( jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
-			return false;
-		}
-
-		// Not own constructor property must be Object
-		if ( obj.constructor &&
-				!hasOwn.call( obj, "constructor" ) &&
-				!hasOwn.call( obj.constructor.prototype || {}, "isPrototypeOf" ) ) {
-			return false;
-		}
-
-		// Own properties are enumerated firstly, so to speed up,
-		// if last one is own, then all properties are own
-		for ( key in obj ) {}
-
-		return key === undefined || hasOwn.call( obj, key );
-	},
-
-	isEmptyObject: function( obj ) {
-		var name;
-		for ( name in obj ) {
-			return false;
-		}
-		return true;
-	},
-
-	type: function( obj ) {
-		if ( obj == null ) {
-			return obj + "";
-		}
-
-		// Support: Android<4.0, iOS<6 (functionish RegExp)
-		return typeof obj === "object" || typeof obj === "function" ?
-			class2type[ toString.call( obj ) ] || "object" :
-			typeof obj;
-	},
-
-	// Evaluates a script in a global context
-	globalEval: function( code ) {
-		var script,
-			indirect = eval;
-
-		code = jQuery.trim( code );
-
-		if ( code ) {
-
-			// If the code includes a valid, prologue position
-			// strict mode pragma, execute code by injecting a
-			// script tag into the document.
-			if ( code.indexOf( "use strict" ) === 1 ) {
-				script = document.createElement( "script" );
-				script.text = code;
-				document.head.appendChild( script ).parentNode.removeChild( script );
-			} else {
-
-				// Otherwise, avoid the DOM node creation, insertion
-				// and removal by using an indirect global eval
-
-				indirect( code );
-			}
-		}
-	},
-
-	// Convert dashed to camelCase; used by the css and data modules
-	// Support: IE9-11+
-	// Microsoft forgot to hump their vendor prefix (#9572)
-	camelCase: function( string ) {
-		return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
-	},
-
-	nodeName: function( elem, name ) {
-		return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
-	},
-
-	each: function( obj, callback ) {
-		var length, i = 0;
-
-		if ( isArrayLike( obj ) ) {
-			length = obj.length;
-			for ( ; i < length; i++ ) {
-				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
-					break;
-				}
-			}
-		} else {
-			for ( i in obj ) {
-				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
-					break;
-				}
-			}
-		}
-
-		return obj;
-	},
-
-	// Support: Android<4.1
-	trim: function( text ) {
-		return text == null ?
-			"" :
-			( text + "" ).replace( rtrim, "" );
-	},
-
-	// results is for internal usage only
-	makeArray: function( arr, results ) {
-		var ret = results || [];
-
-		if ( arr != null ) {
-			if ( isArrayLike( Object( arr ) ) ) {
-				jQuery.merge( ret,
-					typeof arr === "string" ?
-					[ arr ] : arr
-				);
-			} else {
-				push.call( ret, arr );
-			}
-		}
-
-		return ret;
-	},
-
-	inArray: function( elem, arr, i ) {
-		return arr == null ? -1 : indexOf.call( arr, elem, i );
-	},
-
-	merge: function( first, second ) {
-		var len = +second.length,
-			j = 0,
-			i = first.length;
-
-		for ( ; j < len; j++ ) {
-			first[ i++ ] = second[ j ];
-		}
-
-		first.length = i;
-
-		return first;
-	},
-
-	grep: function( elems, callback, invert ) {
-		var callbackInverse,
-			matches = [],
-			i = 0,
-			length = elems.length,
-			callbackExpect = !invert;
-
-		// Go through the array, only saving the items
-		// that pass the validator function
-		for ( ; i < length; i++ ) {
-			callbackInverse = !callback( elems[ i ], i );
-			if ( callbackInverse !== callbackExpect ) {
-				matches.push( elems[ i ] );
-			}
-		}
-
-		return matches;
-	},
-
-	// arg is for internal usage only
-	map: function( elems, callback, arg ) {
-		var length, value,
-			i = 0,
-			ret = [];
-
-		// Go through the array, translating each of the items to their new values
-		if ( isArrayLike( elems ) ) {
-			length = elems.length;
-			for ( ; i < length; i++ ) {
-				value = callback( elems[ i ], i, arg );
-
-				if ( value != null ) {
-					ret.push( value );
-				}
-			}
-
-		// Go through every key on the object,
-		} else {
-			for ( i in elems ) {
-				value = callback( elems[ i ], i, arg );
-
-				if ( value != null ) {
-					ret.push( value );
-				}
-			}
-		}
-
-		// Flatten any nested arrays
-		return concat.apply( [], ret );
-	},
-
-	// A global GUID counter for objects
-	guid: 1,
-
-	// Bind a function to a context, optionally partially applying any
-	// arguments.
-	proxy: function( fn, context ) {
-		var tmp, args, proxy;
-
-		if ( typeof context === "string" ) {
-			tmp = fn[ context ];
-			context = fn;
-			fn = tmp;
-		}
-
-		// Quick check to determine if target is callable, in the spec
-		// this throws a TypeError, but we will just return undefined.
-		if ( !jQuery.isFunction( fn ) ) {
-			return undefined;
-		}
-
-		// Simulated bind
-		args = slice.call( arguments, 2 );
-		proxy = function() {
-			return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
-		};
-
-		// Set the guid of unique handler to the same of original handler, so it can be removed
-		proxy.guid = fn.guid = fn.guid || jQuery.guid++;
-
-		return proxy;
-	},
-
-	now: Date.now,
-
-	// jQuery.support is not used in Core but other projects attach their
-	// properties to it so it needs to exist.
-	support: support
-} );
-
-// JSHint would error on this code due to the Symbol not being defined in ES5.
-// Defining this global in .jshintrc would create a danger of using the global
-// unguarded in another place, it seems safer to just disable JSHint for these
-// three lines.
-/* jshint ignore: start */
-if ( typeof Symbol === "function" ) {
-	jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];
-}
-/* jshint ignore: end */
-
-// Populate the class2type map
-jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ),
-function( i, name ) {
-	class2type[ "[object " + name + "]" ] = name.toLowerCase();
-} );
-
-function isArrayLike( obj ) {
-
-	// Support: iOS 8.2 (not reproducible in simulator)
-	// `in` check used to prevent JIT error (gh-2145)
-	// hasOwn isn't used here due to false negatives
-	// regarding Nodelist length in IE
-	var length = !!obj && "length" in obj && obj.length,
-		type = jQuery.type( obj );
-
-	if ( type === "function" || jQuery.isWindow( obj ) ) {
-		return false;
-	}
-
-	return type === "array" || length === 0 ||
-		typeof length === "number" && length > 0 && ( length - 1 ) in obj;
-}
-var Sizzle =
-/*!
- * Sizzle CSS Selector Engine v2.2.1
- * http://sizzlejs.com/
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license
- * http://jquery.org/license
- *
- * Date: 2015-10-17
- */
-(function( window ) {
-
-var i,
-	support,
-	Expr,
-	getText,
-	isXML,
-	tokenize,
-	compile,
-	select,
-	outermostContext,
-	sortInput,
-	hasDuplicate,
-
-	// Local document vars
-	setDocument,
-	document,
-	docElem,
-	documentIsHTML,
-	rbuggyQSA,
-	rbuggyMatches,
-	matches,
-	contains,
-
-	// Instance-specific data
-	expando = "sizzle" + 1 * new Date(),
-	preferredDoc = window.document,
-	dirruns = 0,
-	done = 0,
-	classCache = createCache(),
-	tokenCache = createCache(),
-	compilerCache = createCache(),
-	sortOrder = function( a, b ) {
-		if ( a === b ) {
-			hasDuplicate = true;
-		}
-		return 0;
-	},
-
-	// General-purpose constants
-	MAX_NEGATIVE = 1 << 31,
-
-	// Instance methods
-	hasOwn = ({}).hasOwnProperty,
-	arr = [],
-	pop = arr.pop,
-	push_native = arr.push,
-	push = arr.push,
-	slice = arr.slice,
-	// Use a stripped-down indexOf as it's faster than native
-	// http://jsperf.com/thor-indexof-vs-for/5
-	indexOf = function( list, elem ) {
-		var i = 0,
-			len = list.length;
-		for ( ; i < len; i++ ) {
-			if ( list[i] === elem ) {
-				return i;
-			}
-		}
-		return -1;
-	},
-
-	booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
-
-	// Regular expressions
-
-	// http://www.w3.org/TR/css3-selectors/#whitespace
-	whitespace = "[\\x20\\t\\r\\n\\f]",
-
-	// http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
-	identifier = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
-
-	// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
-	attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace +
-		// Operator (capture 2)
-		"*([*^$|!~]?=)" + whitespace +
-		// "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
-		"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace +
-		"*\\]",
-
-	pseudos = ":(" + identifier + ")(?:\\((" +
-		// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
-		// 1. quoted (capture 3; capture 4 or capture 5)
-		"('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
-		// 2. simple (capture 6)
-		"((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
-		// 3. anything else (capture 2)
-		".*" +
-		")\\)|)",
-
-	// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
-	rwhitespace = new RegExp( whitespace + "+", "g" ),
-	rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
-
-	rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
-	rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
-
-	rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ),
-
-	rpseudo = new RegExp( pseudos ),
-	ridentifier = new RegExp( "^" + identifier + "$" ),
-
-	matchExpr = {
-		"ID": new RegExp( "^#(" + identifier + ")" ),
-		"CLASS": new RegExp( "^\\.(" + identifier + ")" ),
-		"TAG": new RegExp( "^(" + identifier + "|[*])" ),
-		"ATTR": new RegExp( "^" + attributes ),
-		"PSEUDO": new RegExp( "^" + pseudos ),
-		"CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
-			"*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
-			"*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
-		"bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
-		// For use in libraries implementing .is()
-		// We use this for POS matching in `select`
-		"needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
-			whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
-	},
-
-	rinputs = /^(?:input|select|textarea|button)$/i,
-	rheader = /^h\d$/i,
-
-	rnative = /^[^{]+\{\s*\[native \w/,
-
-	// Easily-parseable/retrievable ID or TAG or CLASS selectors
-	rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
-
-	rsibling = /[+~]/,
-	rescape = /'|\\/g,
-
-	// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
-	runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
-	funescape = function( _, escaped, escapedWhitespace ) {
-		var high = "0x" + escaped - 0x10000;
-		// NaN means non-codepoint
-		// Support: Firefox<24
-		// Workaround erroneous numeric interpretation of +"0x"
-		return high !== high || escapedWhitespace ?
-			escaped :
-			high < 0 ?
-				// BMP codepoint
-				String.fromCharCode( high + 0x10000 ) :
-				// Supplemental Plane codepoint (surrogate pair)
-				String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
-	},
-
-	// Used for iframes
-	// See setDocument()
-	// Removing the function wrapper causes a "Permission Denied"
-	// error in IE
-	unloadHandler = function() {
-		setDocument();
-	};
-
-// Optimize for push.apply( _, NodeList )
-try {
-	push.apply(
-		(arr = slice.call( preferredDoc.childNodes )),
-		preferredDoc.childNodes
-	);
-	// Support: Android<4.0
-	// Detect silently failing push.apply
-	arr[ preferredDoc.childNodes.length ].nodeType;
-} catch ( e ) {
-	push = { apply: arr.length ?
-
-		// Leverage slice if possible
-		function( target, els ) {
-			push_native.apply( target, slice.call(els) );
-		} :
-
-		// Support: IE<9
-		// Otherwise append directly
-		function( target, els ) {
-			var j = target.length,
-				i = 0;
-			// Can't trust NodeList.length
-			while ( (target[j++] = els[i++]) ) {}
-			target.length = j - 1;
-		}
-	};
-}
-
-function Sizzle( selector, context, results, seed ) {
-	var m, i, elem, nid, nidselect, match, groups, newSelector,
-		newContext = context && context.ownerDocument,
-
-		// nodeType defaults to 9, since context defaults to document
-		nodeType = context ? context.nodeType : 9;
-
-	results = results || [];
-
-	// Return early from calls with invalid selector or context
-	if ( typeof selector !== "string" || !selector ||
-		nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {
-
-		return results;
-	}
-
-	// Try to shortcut find operations (as opposed to filters) in HTML documents
-	if ( !seed ) {
-
-		if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
-			setDocument( context );
-		}
-		context = context || document;
-
-		if ( documentIsHTML ) {
-
-			// If the selector is sufficiently simple, try using a "get*By*" DOM method
-			// (excepting DocumentFragment context, where the methods don't exist)
-			if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {
-
-				// ID selector
-				if ( (m = match[1]) ) {
-
-					// Document context
-					if ( nodeType === 9 ) {
-						if ( (elem = context.getElementById( m )) ) {
-
-							// Support: IE, Opera, Webkit
-							// TODO: identify versions
-							// getElementById can match elements by name instead of ID
-							if ( elem.id === m ) {
-								results.push( elem );
-								return results;
-							}
-						} else {
-							return results;
-						}
-
-					// Element context
-					} else {
-
-						// Support: IE, Opera, Webkit
-						// TODO: identify versions
-						// getElementById can match elements by name instead of ID
-						if ( newContext && (elem = newContext.getElementById( m )) &&
-							contains( context, elem ) &&
-							elem.id === m ) {
-
-							results.push( elem );
-							return results;
-						}
-					}
-
-				// Type selector
-				} else if ( match[2] ) {
-					push.apply( results, context.getElementsByTagName( selector ) );
-					return results;
-
-				// Class selector
-				} else if ( (m = match[3]) && support.getElementsByClassName &&
-					context.getElementsByClassName ) {
-
-					push.apply( results, context.getElementsByClassName( m ) );
-					return results;
-				}
-			}
-
-			// Take advantage of querySelectorAll
-			if ( support.qsa &&
-				!compilerCache[ selector + " " ] &&
-				(!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
-
-				if ( nodeType !== 1 ) {
-					newContext = context;
-					newSelector = selector;
-
-				// qSA looks outside Element context, which is not what we want
-				// Thanks to Andrew Dupont for this workaround technique
-				// Support: IE <=8
-				// Exclude object elements
-				} else if ( context.nodeName.toLowerCase() !== "object" ) {
-
-					// Capture the context ID, setting it first if necessary
-					if ( (nid = context.getAttribute( "id" )) ) {
-						nid = nid.replace( rescape, "\\$&" );
-					} else {
-						context.setAttribute( "id", (nid = expando) );
-					}
-
-					// Prefix every selector in the list
-					groups = tokenize( selector );
-					i = groups.length;
-					nidselect = ridentifier.test( nid ) ? "#" + nid : "[id='" + nid + "']";
-					while ( i-- ) {
-						groups[i] = nidselect + " " + toSelector( groups[i] );
-					}
-					newSelector = groups.join( "," );
-
-					// Expand context for sibling selectors
-					newContext = rsibling.test( selector ) && testContext( context.parentNode ) ||
-						context;
-				}
-
-				if ( newSelector ) {
-					try {
-						push.apply( results,
-							newContext.querySelectorAll( newSelector )
-						);
-						return results;
-					} catch ( qsaError ) {
-					} finally {
-						if ( nid === expando ) {
-							context.removeAttribute( "id" );
-						}
-					}
-				}
-			}
-		}
-	}
-
-	// All others
-	return select( selector.replace( rtrim, "$1" ), context, results, seed );
-}
-
-/**
- * Create key-value caches of limited size
- * @returns {function(string, object)} Returns the Object data after storing it on itself with
- *	property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
- *	deleting the oldest entry
- */
-function createCache() {
-	var keys = [];
-
-	function cache( key, value ) {
-		// Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
-		if ( keys.push( key + " " ) > Expr.cacheLength ) {
-			// Only keep the most recent entries
-			delete cache[ keys.shift() ];
-		}
-		return (cache[ key + " " ] = value);
-	}
-	return cache;
-}
-
-/**
- * Mark a function for special use by Sizzle
- * @param {Function} fn The function to mark
- */
-function markFunction( fn ) {
-	fn[ expando ] = true;
-	return fn;
-}
-
-/**
- * Support testing using an element
- * @param {Function} fn Passed the created div and expects a boolean result
- */
-function assert( fn ) {
-	var div = document.createElement("div");
-
-	try {
-		return !!fn( div );
-	} catch (e) {
-		return false;
-	} finally {
-		// Remove from its parent by default
-		if ( div.parentNode ) {
-			div.parentNode.removeChild( div );
-		}
-		// release memory in IE
-		div = null;
-	}
-}
-
-/**
- * Adds the same handler for all of the specified attrs
- * @param {String} attrs Pipe-separated list of attributes
- * @param {Function} handler The method that will be applied
- */
-function addHandle( attrs, handler ) {
-	var arr = attrs.split("|"),
-		i = arr.length;
-
-	while ( i-- ) {
-		Expr.attrHandle[ arr[i] ] = handler;
-	}
-}
-
-/**
- * Checks document order of two siblings
- * @param {Element} a
- * @param {Element} b
- * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
- */
-function siblingCheck( a, b ) {
-	var cur = b && a,
-		diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
-			( ~b.sourceIndex || MAX_NEGATIVE ) -
-			( ~a.sourceIndex || MAX_NEGATIVE );
-
-	// Use IE sourceIndex if available on both nodes
-	if ( diff ) {
-		return diff;
-	}
-
-	// Check if b follows a
-	if ( cur ) {
-		while ( (cur = cur.nextSibling) ) {
-			if ( cur === b ) {
-				return -1;
-			}
-		}
-	}
-
-	return a ? 1 : -1;
-}
-
-/**
- * Returns a function to use in pseudos for input types
- * @param {String} type
- */
-function createInputPseudo( type ) {
-	return function( elem ) {
-		var name = elem.nodeName.toLowerCase();
-		return name === "input" && elem.type === type;
-	};
-}
-
-/**
- * Returns a function to use in pseudos for buttons
- * @param {String} type
- */
-function createButtonPseudo( type ) {
-	return function( elem ) {
-		var name = elem.nodeName.toLowerCase();
-		return (name === "input" || name === "button") && elem.type === type;
-	};
-}
-
-/**
- * Returns a function to use in pseudos for positionals
- * @param {Function} fn
- */
-function createPositionalPseudo( fn ) {
-	return markFunction(function( argument ) {
-		argument = +argument;
-		return markFunction(function( seed, matches ) {
-			var j,
-				matchIndexes = fn( [], seed.length, argument ),
-				i = matchIndexes.length;
-
-			// Match elements found at the specified indexes
-			while ( i-- ) {
-				if ( seed[ (j = matchIndexes[i]) ] ) {
-					seed[j] = !(matches[j] = seed[j]);
-				}
-			}
-		});
-	});
-}
-
-/**
- * Checks a node for validity as a Sizzle context
- * @param {Element|Object=} context
- * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
- */
-function testContext( context ) {
-	return context && typeof context.getElementsByTagName !== "undefined" && context;
-}
-
-// Expose support vars for convenience
-support = Sizzle.support = {};
-
-/**
- * Detects XML nodes
- * @param {Element|Object} elem An element or a document
- * @returns {Boolean} True iff elem is a non-HTML XML node
- */
-isXML = Sizzle.isXML = function( elem ) {
-	// documentElement is verified for cases where it doesn't yet exist
-	// (such as loading iframes in IE - #4833)
-	var documentElement = elem && (elem.ownerDocument || elem).documentElement;
-	return documentElement ? documentElement.nodeName !== "HTML" : false;
-};
-
-/**
- * Sets document-related variables once based on the current document
- * @param {Element|Object} [doc] An element or document object to use to set the document
- * @returns {Object} Returns the current document
- */
-setDocument = Sizzle.setDocument = function( node ) {
-	var hasCompare, parent,
-		doc = node ? node.ownerDocument || node : preferredDoc;
-
-	// Return early if doc is invalid or already selected
-	if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
-		return document;
-	}
-
-	// Update global variables
-	document = doc;
-	docElem = document.documentElement;
-	documentIsHTML = !isXML( document );
-
-	// Support: IE 9-11, Edge
-	// Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936)
-	if ( (parent = document.defaultView) && parent.top !== parent ) {
-		// Support: IE 11
-		if ( parent.addEventListener ) {
-			parent.addEventListener( "unload", unloadHandler, false );
-
-		// Support: IE 9 - 10 only
-		} else if ( parent.attachEvent ) {
-			parent.attachEvent( "onunload", unloadHandler );
-		}
-	}
-
-	/* Attributes
-	---------------------------------------------------------------------- */
-
-	// Support: IE<8
-	// Verify that getAttribute really returns attributes and not properties
-	// (excepting IE8 booleans)
-	support.attributes = assert(function( div ) {
-		div.className = "i";
-		return !div.getAttribute("className");
-	});
-
-	/* getElement(s)By*
-	---------------------------------------------------------------------- */
-
-	// Check if getElementsByTagName("*") returns only elements
-	support.getElementsByTagName = assert(function( div ) {
-		div.appendChild( document.createComment("") );
-		return !div.getElementsByTagName("*").length;
-	});
-
-	// Support: IE<9
-	support.getElementsByClassName = rnative.test( document.getElementsByClassName );
-
-	// Support: IE<10
-	// Check if getElementById returns elements by name
-	// The broken getElementById methods don't pick up programatically-set names,
-	// so use a roundabout getElementsByName test
-	support.getById = assert(function( div ) {
-		docElem.appendChild( div ).id = expando;
-		return !document.getElementsByName || !document.getElementsByName( expando ).length;
-	});
-
-	// ID find and filter
-	if ( support.getById ) {
-		Expr.find["ID"] = function( id, context ) {
-			if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
-				var m = context.getElementById( id );
-				return m ? [ m ] : [];
-			}
-		};
-		Expr.filter["ID"] = function( id ) {
-			var attrId = id.replace( runescape, funescape );
-			return function( elem ) {
-				return elem.getAttribute("id") === attrId;
-			};
-		};
-	} else {
-		// Support: IE6/7
-		// getElementById is not reliable as a find shortcut
-		delete Expr.find["ID"];
-
-		Expr.filter["ID"] =  function( id ) {
-			var attrId = id.replace( runescape, funescape );
-			return function( elem ) {
-				var node = typeof elem.getAttributeNode !== "undefined" &&
-					elem.getAttributeNode("id");
-				return node && node.value === attrId;
-			};
-		};
-	}
-
-	// Tag
-	Expr.find["TAG"] = support.getElementsByTagName ?
-		function( tag, context ) {
-			if ( typeof context.getElementsByTagName !== "undefined" ) {
-				return context.getElementsByTagName( tag );
-
-			// DocumentFragment nodes don't have gEBTN
-			} else if ( support.qsa ) {
-				return context.querySelectorAll( tag );
-			}
-		} :
-
-		function( tag, context ) {
-			var elem,
-				tmp = [],
-				i = 0,
-				// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too
-				results = context.getElementsByTagName( tag );
-
-			// Filter out possible comments
-			if ( tag === "*" ) {
-				while ( (elem = results[i++]) ) {
-					if ( elem.nodeType === 1 ) {
-						tmp.push( elem );
-					}
-				}
-
-				return tmp;
-			}
-			return results;
-		};
-
-	// Class
-	Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
-		if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) {
-			return context.getElementsByClassName( className );
-		}
-	};
-
-	/* QSA/matchesSelector
-	---------------------------------------------------------------------- */
-
-	// QSA and matchesSelector support
-
-	// matchesSelector(:active) reports false when true (IE9/Opera 11.5)
-	rbuggyMatches = [];
-
-	// qSa(:focus) reports false when true (Chrome 21)
-	// We allow this because of a bug in IE8/9 that throws an error
-	// whenever `document.activeElement` is accessed on an iframe
-	// So, we allow :focus to pass through QSA all the time to avoid the IE error
-	// See http://bugs.jquery.com/ticket/13378
-	rbuggyQSA = [];
-
-	if ( (support.qsa = rnative.test( document.querySelectorAll )) ) {
-		// Build QSA regex
-		// Regex strategy adopted from Diego Perini
-		assert(function( div ) {
-			// Select is set to empty string on purpose
-			// This is to test IE's treatment of not explicitly
-			// setting a boolean content attribute,
-			// since its presence should be enough
-			// http://bugs.jquery.com/ticket/12359
-			docElem.appendChild( div ).innerHTML = "<a id='" + expando + "'></a>" +
-				"<select id='" + expando + "-\r\\' msallowcapture=''>" +
-				"<option selected=''></option></select>";
-
-			// Support: IE8, Opera 11-12.16
-			// Nothing should be selected when empty strings follow ^= or $= or *=
-			// The test attribute must be unknown in Opera but "safe" for WinRT
-			// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
-			if ( div.querySelectorAll("[msallowcapture^='']").length ) {
-				rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
-			}
-
-			// Support: IE8
-			// Boolean attributes and "value" are not treated correctly
-			if ( !div.querySelectorAll("[selected]").length ) {
-				rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
-			}
-
-			// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+
-			if ( !div.querySelectorAll( "[id~=" + expando + "-]" ).length ) {
-				rbuggyQSA.push("~=");
-			}
-
-			// Webkit/Opera - :checked should return selected option elements
-			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
-			// IE8 throws error here and will not see later tests
-			if ( !div.querySelectorAll(":checked").length ) {
-				rbuggyQSA.push(":checked");
-			}
-
-			// Support: Safari 8+, iOS 8+
-			// https://bugs.webkit.org/show_bug.cgi?id=136851
-			// In-page `selector#id sibing-combinator selector` fails
-			if ( !div.querySelectorAll( "a#" + expando + "+*" ).length ) {
-				rbuggyQSA.push(".#.+[+~]");
-			}
-		});
-
-		assert(function( div ) {
-			// Support: Windows 8 Native Apps
-			// The type and name attributes are restricted during .innerHTML assignment
-			var input = document.createElement("input");
-			input.setAttribute( "type", "hidden" );
-			div.appendChild( input ).setAttribute( "name", "D" );
-
-			// Support: IE8
-			// Enforce case-sensitivity of name attribute
-			if ( div.querySelectorAll("[name=d]").length ) {
-				rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
-			}
-
-			// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
-			// IE8 throws error here and will not see later tests
-			if ( !div.querySelectorAll(":enabled").length ) {
-				rbuggyQSA.push( ":enabled", ":disabled" );
-			}
-
-			// Opera 10-11 does not throw on post-comma invalid pseudos
-			div.querySelectorAll("*,:x");
-			rbuggyQSA.push(",.*:");
-		});
-	}
-
-	if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
-		docElem.webkitMatchesSelector ||
-		docElem.mozMatchesSelector ||
-		docElem.oMatchesSelector ||
-		docElem.msMatchesSelector) )) ) {
-
-		assert(function( div ) {
-			// Check to see if it's possible to do matchesSelector
-			// on a disconnected node (IE 9)
-			support.disconnectedMatch = matches.call( div, "div" );
-
-			// This should fail with an exception
-			// Gecko does not error, returns false instead
-			matches.call( div, "[s!='']:x" );
-			rbuggyMatches.push( "!=", pseudos );
-		});
-	}
-
-	rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
-	rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
-
-	/* Contains
-	---------------------------------------------------------------------- */
-	hasCompare = rnative.test( docElem.compareDocumentPosition );
-
-	// Element contains another
-	// Purposefully self-exclusive
-	// As in, an element does not contain itself
-	contains = hasCompare || rnative.test( docElem.contains ) ?
-		function( a, b ) {
-			var adown = a.nodeType === 9 ? a.documentElement : a,
-				bup = b && b.parentNode;
-			return a === bup || !!( bup && bup.nodeType === 1 && (
-				adown.contains ?
-					adown.contains( bup ) :
-					a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
-			));
-		} :
-		function( a, b ) {
-			if ( b ) {
-				while ( (b = b.parentNode) ) {
-					if ( b === a ) {
-						return true;
-					}
-				}
-			}
-			return false;
-		};
-
-	/* Sorting
-	---------------------------------------------------------------------- */
-
-	// Document order sorting
-	sortOrder = hasCompare ?
-	function( a, b ) {
-
-		// Flag for duplicate removal
-		if ( a === b ) {
-			hasDuplicate = true;
-			return 0;
-		}
-
-		// Sort on method existence if only one input has compareDocumentPosition
-		var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
-		if ( compare ) {
-			return compare;
-		}
-
-		// Calculate position if both inputs belong to the same document
-		compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
-			a.compareDocumentPosition( b ) :
-
-			// Otherwise we know they are disconnected
-			1;
-
-		// Disconnected nodes
-		if ( compare & 1 ||
-			(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
-
-			// Choose the first element that is related to our preferred document
-			if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
-				return -1;
-			}
-			if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
-				return 1;
-			}
-
-			// Maintain original order
-			return sortInput ?
-				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
-				0;
-		}
-
-		return compare & 4 ? -1 : 1;
-	} :
-	function( a, b ) {
-		// Exit early if the nodes are identical
-		if ( a === b ) {
-			hasDuplicate = true;
-			return 0;
-		}
-
-		var cur,
-			i = 0,
-			aup = a.parentNode,
-			bup = b.parentNode,
-			ap = [ a ],
-			bp = [ b ];
-
-		// Parentless nodes are either documents or disconnected
-		if ( !aup || !bup ) {
-			return a === document ? -1 :
-				b === document ? 1 :
-				aup ? -1 :
-				bup ? 1 :
-				sortInput ?
-				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
-				0;
-
-		// If the nodes are siblings, we can do a quick check
-		} else if ( aup === bup ) {
-			return siblingCheck( a, b );
-		}
-
-		// Otherwise we need full lists of their ancestors for comparison
-		cur = a;
-		while ( (cur = cur.parentNode) ) {
-			ap.unshift( cur );
-		}
-		cur = b;
-		while ( (cur = cur.parentNode) ) {
-			bp.unshift( cur );
-		}
-
-		// Walk down the tree looking for a discrepancy
-		while ( ap[i] === bp[i] ) {
-			i++;
-		}
-
-		return i ?
-			// Do a sibling check if the nodes have a common ancestor
-			siblingCheck( ap[i], bp[i] ) :
-
-			// Otherwise nodes in our document sort first
-			ap[i] === preferredDoc ? -1 :
-			bp[i] === preferredDoc ? 1 :
-			0;
-	};
-
-	return document;
-};
-
-Sizzle.matches = function( expr, elements ) {
-	return Sizzle( expr, null, null, elements );
-};
-
-Sizzle.matchesSelector = function( elem, expr ) {
-	// Set document vars if needed
-	if ( ( elem.ownerDocument || elem ) !== document ) {
-		setDocument( elem );
-	}
-
-	// Make sure that attribute selectors are quoted
-	expr = expr.replace( rattributeQuotes, "='$1']" );
-
-	if ( support.matchesSelector && documentIsHTML &&
-		!compilerCache[ expr + " " ] &&
-		( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
-		( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {
-
-		try {
-			var ret = matches.call( elem, expr );
-
-			// IE 9's matchesSelector returns false on disconnected nodes
-			if ( ret || support.disconnectedMatch ||
-					// As well, disconnected nodes are said to be in a document
-					// fragment in IE 9
-					elem.document && elem.document.nodeType !== 11 ) {
-				return ret;
-			}
-		} catch (e) {}
-	}
-
-	return Sizzle( expr, document, null, [ elem ] ).length > 0;
-};
-
-Sizzle.contains = function( context, elem ) {
-	// Set document vars if needed
-	if ( ( context.ownerDocument || context ) !== document ) {
-		setDocument( context );
-	}
-	return contains( context, elem );
-};
-
-Sizzle.attr = function( elem, name ) {
-	// Set document vars if needed
-	if ( ( elem.ownerDocument || elem ) !== document ) {
-		setDocument( elem );
-	}
-
-	var fn = Expr.attrHandle[ name.toLowerCase() ],
-		// Don't get fooled by Object.prototype properties (jQuery #13807)
-		val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
-			fn( elem, name, !documentIsHTML ) :
-			undefined;
-
-	return val !== undefined ?
-		val :
-		support.attributes || !documentIsHTML ?
-			elem.getAttribute( name ) :
-			(val = elem.getAttributeNode(name)) && val.specified ?
-				val.value :
-				null;
-};
-
-Sizzle.error = function( msg ) {
-	throw new Error( "Syntax error, unrecognized expression: " + msg );
-};
-
-/**
- * Document sorting and removing duplicates
- * @param {ArrayLike} results
- */
-Sizzle.uniqueSort = function( results ) {
-	var elem,
-		duplicates = [],
-		j = 0,
-		i = 0;
-
-	// Unless we *know* we can detect duplicates, assume their presence
-	hasDuplicate = !support.detectDuplicates;
-	sortInput = !support.sortStable && results.slice( 0 );
-	results.sort( sortOrder );
-
-	if ( hasDuplicate ) {
-		while ( (elem = results[i++]) ) {
-			if ( elem === results[ i ] ) {
-				j = duplicates.push( i );
-			}
-		}
-		while ( j-- ) {
-			results.splice( duplicates[ j ], 1 );
-		}
-	}
-
-	// Clear input after sorting to release objects
-	// See https://github.com/jquery/sizzle/pull/225
-	sortInput = null;
-
-	return results;
-};
-
-/**
- * Utility function for retrieving the text value of an array of DOM nodes
- * @param {Array|Element} elem
- */
-getText = Sizzle.getText = function( elem ) {
-	var node,
-		ret = "",
-		i = 0,
-		nodeType = elem.nodeType;
-
-	if ( !nodeType ) {
-		// If no nodeType, this is expected to be an array
-		while ( (node = elem[i++]) ) {
-			// Do not traverse comment nodes
-			ret += getText( node );
-		}
-	} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
-		// Use textContent for elements
-		// innerText usage removed for consistency of new lines (jQuery #11153)
-		if ( typeof elem.textContent === "string" ) {
-			return elem.textContent;
-		} else {
-			// Traverse its children
-			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
-				ret += getText( elem );
-			}
-		}
-	} else if ( nodeType === 3 || nodeType === 4 ) {
-		return elem.nodeValue;
-	}
-	// Do not include comment or processing instruction nodes
-
-	return ret;
-};
-
-Expr = Sizzle.selectors = {
-
-	// Can be adjusted by the user
-	cacheLength: 50,
-
-	createPseudo: markFunction,
-
-	match: matchExpr,
-
-	attrHandle: {},
-
-	find: {},
-
-	relative: {
-		">": { dir: "parentNode", first: true },
-		" ": { dir: "parentNode" },
-		"+": { dir: "previousSibling", first: true },
-		"~": { dir: "previousSibling" }
-	},
-
-	preFilter: {
-		"ATTR": function( match ) {
-			match[1] = match[1].replace( runescape, funescape );
-
-			// Move the given value to match[3] whether quoted or unquoted
-			match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape );
-
-			if ( match[2] === "~=" ) {
-				match[3] = " " + match[3] + " ";
-			}
-
-			return match.slice( 0, 4 );
-		},
-
-		"CHILD": function( match ) {
-			/* matches from matchExpr["CHILD"]
-				1 type (only|nth|...)
-				2 what (child|of-type)
-				3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
-				4 xn-component of xn+y argument ([+-]?\d*n|)
-				5 sign of xn-component
-				6 x of xn-component
-				7 sign of y-component
-				8 y of y-component
-			*/
-			match[1] = match[1].toLowerCase();
-
-			if ( match[1].slice( 0, 3 ) === "nth" ) {
-				// nth-* requires argument
-				if ( !match[3] ) {
-					Sizzle.error( match[0] );
-				}
-
-				// numeric x and y parameters for Expr.filter.CHILD
-				// remember that false/true cast respectively to 0/1
-				match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
-				match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
-
-			// other types prohibit arguments
-			} else if ( match[3] ) {
-				Sizzle.error( match[0] );
-			}
-
-			return match;
-		},
-
-		"PSEUDO": function( match ) {
-			var excess,
-				unquoted = !match[6] && match[2];
-
-			if ( matchExpr["CHILD"].test( match[0] ) ) {
-				return null;
-			}
-
-			// Accept quoted arguments as-is
-			if ( match[3] ) {
-				match[2] = match[4] || match[5] || "";
-
-			// Strip excess characters from unquoted arguments
-			} else if ( unquoted && rpseudo.test( unquoted ) &&
-				// Get excess from tokenize (recursively)
-				(excess = tokenize( unquoted, true )) &&
-				// advance to the next closing parenthesis
-				(excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
-
-				// excess is a negative index
-				match[0] = match[0].slice( 0, excess );
-				match[2] = unquoted.slice( 0, excess );
-			}
-
-			// Return only captures needed by the pseudo filter method (type and argument)
-			return match.slice( 0, 3 );
-		}
-	},
-
-	filter: {
-
-		"TAG": function( nodeNameSelector ) {
-			var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
-			return nodeNameSelector === "*" ?
-				function() { return true; } :
-				function( elem ) {
-					return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
-				};
-		},
-
-		"CLASS": function( className ) {
-			var pattern = classCache[ className + " " ];
-
-			return pattern ||
-				(pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
-				classCache( className, function( elem ) {
-					return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" );
-				});
-		},
-
-		"ATTR": function( name, operator, check ) {
-			return function( elem ) {
-				var result = Sizzle.attr( elem, name );
-
-				if ( result == null ) {
-					return operator === "!=";
-				}
-				if ( !operator ) {
-					return true;
-				}
-
-				result += "";
-
-				return operator === "=" ? result === check :
-					operator === "!=" ? result !== check :
-					operator === "^=" ? check && result.indexOf( check ) === 0 :
-					operator === "*=" ? check && result.indexOf( check ) > -1 :
-					operator === "$=" ? check && result.slice( -check.length ) === check :
-					operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 :
-					operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
-					false;
-			};
-		},
-
-		"CHILD": function( type, what, argument, first, last ) {
-			var simple = type.slice( 0, 3 ) !== "nth",
-				forward = type.slice( -4 ) !== "last",
-				ofType = what === "of-type";
-
-			return first === 1 && last === 0 ?
-
-				// Shortcut for :nth-*(n)
-				function( elem ) {
-					return !!elem.parentNode;
-				} :
-
-				function( elem, context, xml ) {
-					var cache, uniqueCache, outerCache, node, nodeIndex, start,
-						dir = simple !== forward ? "nextSibling" : "previousSibling",
-						parent = elem.parentNode,
-						name = ofType && elem.nodeName.toLowerCase(),
-						useCache = !xml && !ofType,
-						diff = false;
-
-					if ( parent ) {
-
-						// :(first|last|only)-(child|of-type)
-						if ( simple ) {
-							while ( dir ) {
-								node = elem;
-								while ( (node = node[ dir ]) ) {
-									if ( ofType ?
-										node.nodeName.toLowerCase() === name :
-										node.nodeType === 1 ) {
-
-										return false;
-									}
-								}
-								// Reverse direction for :only-* (if we haven't yet done so)
-								start = dir = type === "only" && !start && "nextSibling";
-							}
-							return true;
-						}
-
-						start = [ forward ? parent.firstChild : parent.lastChild ];
-
-						// non-xml :nth-child(...) stores cache data on `parent`
-						if ( forward && useCache ) {
-
-							// Seek `elem` from a previously-cached index
-
-							// ...in a gzip-friendly way
-							node = parent;
-							outerCache = node[ expando ] || (node[ expando ] = {});
-
-							// Support: IE <9 only
-							// Defend against cloned attroperties (jQuery gh-1709)
-							uniqueCache = outerCache[ node.uniqueID ] ||
-								(outerCache[ node.uniqueID ] = {});
-
-							cache = uniqueCache[ type ] || [];
-							nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
-							diff = nodeIndex && cache[ 2 ];
-							node = nodeIndex && parent.childNodes[ nodeIndex ];
-
-							while ( (node = ++nodeIndex && node && node[ dir ] ||
-
-								// Fallback to seeking `elem` from the start
-								(diff = nodeIndex = 0) || start.pop()) ) {
-
-								// When found, cache indexes on `parent` and break
-								if ( node.nodeType === 1 && ++diff && node === elem ) {
-									uniqueCache[ type ] = [ dirruns, nodeIndex, diff ];
-									break;
-								}
-							}
-
-						} else {
-							// Use previously-cached element index if available
-							if ( useCache ) {
-								// ...in a gzip-friendly way
-								node = elem;
-								outerCache = node[ expando ] || (node[ expando ] = {});
-
-								// Support: IE <9 only
-								// Defend against cloned attroperties (jQuery gh-1709)
-								uniqueCache = outerCache[ node.uniqueID ] ||
-									(outerCache[ node.uniqueID ] = {});
-
-								cache = uniqueCache[ type ] || [];
-								nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
-								diff = nodeIndex;
-							}
-
-							// xml :nth-child(...)
-							// or :nth-last-child(...) or :nth(-last)?-of-type(...)
-							if ( diff === false ) {
-								// Use the same loop as above to seek `elem` from the start
-								while ( (node = ++nodeIndex && node && node[ dir ] ||
-									(diff = nodeIndex = 0) || start.pop()) ) {
-
-									if ( ( ofType ?
-										node.nodeName.toLowerCase() === name :
-										node.nodeType === 1 ) &&
-										++diff ) {
-
-										// Cache the index of each encountered element
-										if ( useCache ) {
-											outerCache = node[ expando ] || (node[ expando ] = {});
-
-											// Support: IE <9 only
-											// Defend against cloned attroperties (jQuery gh-1709)
-											uniqueCache = outerCache[ node.uniqueID ] ||
-												(outerCache[ node.uniqueID ] = {});
-
-											uniqueCache[ type ] = [ dirruns, diff ];
-										}
-
-										if ( node === elem ) {
-											break;
-										}
-									}
-								}
-							}
-						}
-
-						// Incorporate the offset, then check against cycle size
-						diff -= last;
-						return diff === first || ( diff % first === 0 && diff / first >= 0 );
-					}
-				};
-		},
-
-		"PSEUDO": function( pseudo, argument ) {
-			// pseudo-class names are case-insensitive
-			// http://www.w3.org/TR/selectors/#pseudo-classes
-			// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
-			// Remember that setFilters inherits from pseudos
-			var args,
-				fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
-					Sizzle.error( "unsupported pseudo: " + pseudo );
-
-			// The user may use createPseudo to indicate that
-			// arguments are needed to create the filter function
-			// just as Sizzle does
-			if ( fn[ expando ] ) {
-				return fn( argument );
-			}
-
-			// But maintain support for old signatures
-			if ( fn.length > 1 ) {
-				args = [ pseudo, pseudo, "", argument ];
-				return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
-					markFunction(function( seed, matches ) {
-						var idx,
-							matched = fn( seed, argument ),
-							i = matched.length;
-						while ( i-- ) {
-							idx = indexOf( seed, matched[i] );
-							seed[ idx ] = !( matches[ idx ] = matched[i] );
-						}
-					}) :
-					function( elem ) {
-						return fn( elem, 0, args );
-					};
-			}
-
-			return fn;
-		}
-	},
-
-	pseudos: {
-		// Potentially complex pseudos
-		"not": markFunction(function( selector ) {
-			// Trim the selector passed to compile
-			// to avoid treating leading and trailing
-			// spaces as combinators
-			var input = [],
-				results = [],
-				matcher = compile( selector.replace( rtrim, "$1" ) );
-
-			return matcher[ expando ] ?
-				markFunction(function( seed, matches, context, xml ) {
-					var elem,
-						unmatched = matcher( seed, null, xml, [] ),
-						i = seed.length;
-
-					// Match elements unmatched by `matcher`
-					while ( i-- ) {
-						if ( (elem = unmatched[i]) ) {
-							seed[i] = !(matches[i] = elem);
-						}
-					}
-				}) :
-				function( elem, context, xml ) {
-					input[0] = elem;
-					matcher( input, null, xml, results );
-					// Don't keep the element (issue #299)
-					input[0] = null;
-					return !results.pop();
-				};
-		}),
-
-		"has": markFunction(function( selector ) {
-			return function( elem ) {
-				return Sizzle( selector, elem ).length > 0;
-			};
-		}),
-
-		"contains": markFunction(function( text ) {
-			text = text.replace( runescape, funescape );
-			return function( elem ) {
-				return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
-			};
-		}),
-
-		// "Whether an element is represented by a :lang() selector
-		// is based solely on the element's language value
-		// being equal to the identifier C,
-		// or beginning with the identifier C immediately followed by "-".
-		// The matching of C against the element's language value is performed case-insensitively.
-		// The identifier C does not have to be a valid language name."
-		// http://www.w3.org/TR/selectors/#lang-pseudo
-		"lang": markFunction( function( lang ) {
-			// lang value must be a valid identifier
-			if ( !ridentifier.test(lang || "") ) {
-				Sizzle.error( "unsupported lang: " + lang );
-			}
-			lang = lang.replace( runescape, funescape ).toLowerCase();
-			return function( elem ) {
-				var elemLang;
-				do {
-					if ( (elemLang = documentIsHTML ?
-						elem.lang :
-						elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
-
-						elemLang = elemLang.toLowerCase();
-						return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
-					}
-				} while ( (elem = elem.parentNode) && elem.nodeType === 1 );
-				return false;
-			};
-		}),
-
-		// Miscellaneous
-		"target": function( elem ) {
-			var hash = window.location && window.location.hash;
-			return hash && hash.slice( 1 ) === elem.id;
-		},
-
-		"root": function( elem ) {
-			return elem === docElem;
-		},
-
-		"focus": function( elem ) {
-			return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
-		},
-
-		// Boolean properties
-		"enabled": function( elem ) {
-			return elem.disabled === false;
-		},
-
-		"disabled": function( elem ) {
-			return elem.disabled === true;
-		},
-
-		"checked": function( elem ) {
-			// In CSS3, :checked should return both checked and selected elements
-			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
-			var nodeName = elem.nodeName.toLowerCase();
-			return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
-		},
-
-		"selected": function( elem ) {
-			// Accessing this property makes selected-by-default
-			// options in Safari work properly
-			if ( elem.parentNode ) {
-				elem.parentNode.selectedIndex;
-			}
-
-			return elem.selected === true;
-		},
-
-		// Contents
-		"empty": function( elem ) {
-			// http://www.w3.org/TR/selectors/#empty-pseudo
-			// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
-			//   but not by others (comment: 8; processing instruction: 7; etc.)
-			// nodeType < 6 works because attributes (2) do not appear as children
-			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
-				if ( elem.nodeType < 6 ) {
-					return false;
-				}
-			}
-			return true;
-		},
-
-		"parent": function( elem ) {
-			return !Expr.pseudos["empty"]( elem );
-		},
-
-		// Element/input types
-		"header": function( elem ) {
-			return rheader.test( elem.nodeName );
-		},
-
-		"input": function( elem ) {
-			return rinputs.test( elem.nodeName );
-		},
-
-		"button": function( elem ) {
-			var name = elem.nodeName.toLowerCase();
-			return name === "input" && elem.type === "button" || name === "button";
-		},
-
-		"text": function( elem ) {
-			var attr;
-			return elem.nodeName.toLowerCase() === "input" &&
-				elem.type === "text" &&
-
-				// Support: IE<8
-				// New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
-				( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
-		},
-
-		// Position-in-collection
-		"first": createPositionalPseudo(function() {
-			return [ 0 ];
-		}),
-
-		"last": createPositionalPseudo(function( matchIndexes, length ) {
-			return [ length - 1 ];
-		}),
-
-		"eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
-			return [ argument < 0 ? argument + length : argument ];
-		}),
-
-		"even": createPositionalPseudo(function( matchIndexes, length ) {
-			var i = 0;
-			for ( ; i < length; i += 2 ) {
-				matchIndexes.push( i );
-			}
-			return matchIndexes;
-		}),
-
-		"odd": createPositionalPseudo(function( matchIndexes, length ) {
-			var i = 1;
-			for ( ; i < length; i += 2 ) {
-				matchIndexes.push( i );
-			}
-			return matchIndexes;
-		}),
-
-		"lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
-			var i = argument < 0 ? argument + length : argument;
-			for ( ; --i >= 0; ) {
-				matchIndexes.push( i );
-			}
-			return matchIndexes;
-		}),
-
-		"gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
-			var i = argument < 0 ? argument + length : argument;
-			for ( ; ++i < length; ) {
-				matchIndexes.push( i );
-			}
-			return matchIndexes;
-		})
-	}
-};
-
-Expr.pseudos["nth"] = Expr.pseudos["eq"];
-
-// Add button/input type pseudos
-for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
-	Expr.pseudos[ i ] = createInputPseudo( i );
-}
-for ( i in { submit: true, reset: true } ) {
-	Expr.pseudos[ i ] = createButtonPseudo( i );
-}
-
-// Easy API for creating new setFilters
-function setFilters() {}
-setFilters.prototype = Expr.filters = Expr.pseudos;
-Expr.setFilters = new setFilters();
-
-tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
-	var matched, match, tokens, type,
-		soFar, groups, preFilters,
-		cached = tokenCache[ selector + " " ];
-
-	if ( cached ) {
-		return parseOnly ? 0 : cached.slice( 0 );
-	}
-
-	soFar = selector;
-	groups = [];
-	preFilters = Expr.preFilter;
-
-	while ( soFar ) {
-
-		// Comma and first run
-		if ( !matched || (match = rcomma.exec( soFar )) ) {
-			if ( match ) {
-				// Don't consume trailing commas as valid
-				soFar = soFar.slice( match[0].length ) || soFar;
-			}
-			groups.push( (tokens = []) );
-		}
-
-		matched = false;
-
-		// Combinators
-		if ( (match = rcombinators.exec( soFar )) ) {
-			matched = match.shift();
-			tokens.push({
-				value: matched,
-				// Cast descendant combinators to space
-				type: match[0].replace( rtrim, " " )
-			});
-			soFar = soFar.slice( matched.length );
-		}
-
-		// Filters
-		for ( type in Expr.filter ) {
-			if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
-				(match = preFilters[ type ]( match ))) ) {
-				matched = match.shift();
-				tokens.push({
-					value: matched,
-					type: type,
-					matches: match
-				});
-				soFar = soFar.slice( matched.length );
-			}
-		}
-
-		if ( !matched ) {
-			break;
-		}
-	}
-
-	// Return the length of the invalid excess
-	// if we're just parsing
-	// Otherwise, throw an error or return tokens
-	return parseOnly ?
-		soFar.length :
-		soFar ?
-			Sizzle.error( selector ) :
-			// Cache the tokens
-			tokenCache( selector, groups ).slice( 0 );
-};
-
-function toSelector( tokens ) {
-	var i = 0,
-		len = tokens.length,
-		selector = "";
-	for ( ; i < len; i++ ) {
-		selector += tokens[i].value;
-	}
-	return selector;
-}
-
-function addCombinator( matcher, combinator, base ) {
-	var dir = combinator.dir,
-		checkNonElements = base && dir === "parentNode",
-		doneName = done++;
-
-	return combinator.first ?
-		// Check against closest ancestor/preceding element
-		function( elem, context, xml ) {
-			while ( (elem = elem[ dir ]) ) {
-				if ( elem.nodeType === 1 || checkNonElements ) {
-					return matcher( elem, context, xml );
-				}
-			}
-		} :
-
-		// Check against all ancestor/preceding elements
-		function( elem, context, xml ) {
-			var oldCache, uniqueCache, outerCache,
-				newCache = [ dirruns, doneName ];
-
-			// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching
-			if ( xml ) {
-				while ( (elem = elem[ dir ]) ) {
-					if ( elem.nodeType === 1 || checkNonElements ) {
-						if ( matcher( elem, context, xml ) ) {
-							return true;
-						}
-					}
-				}
-			} else {
-				while ( (elem = elem[ dir ]) ) {
-					if ( elem.nodeType === 1 || checkNonElements ) {
-						outerCache = elem[ expando ] || (elem[ expando ] = {});
-
-						// Support: IE <9 only
-						// Defend against cloned attroperties (jQuery gh-1709)
-						uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {});
-
-						if ( (oldCache = uniqueCache[ dir ]) &&
-							oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
-
-							// Assign to newCache so results back-propagate to previous elements
-							return (newCache[ 2 ] = oldCache[ 2 ]);
-						} else {
-							// Reuse newcache so results back-propagate to previous elements
-							uniqueCache[ dir ] = newCache;
-
-							// A match means we're done; a fail means we have to keep checking
-							if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
-								return true;
-							}
-						}
-					}
-				}
-			}
-		};
-}
-
-function elementMatcher( matchers ) {
-	return matchers.length > 1 ?
-		function( elem, context, xml ) {
-			var i = matchers.length;
-			while ( i-- ) {
-				if ( !matchers[i]( elem, context, xml ) ) {
-					return false;
-				}
-			}
-			return true;
-		} :
-		matchers[0];
-}
-
-function multipleContexts( selector, contexts, results ) {
-	var i = 0,
-		len = contexts.length;
-	for ( ; i < len; i++ ) {
-		Sizzle( selector, contexts[i], results );
-	}
-	return results;
-}
-
-function condense( unmatched, map, filter, context, xml ) {
-	var elem,
-		newUnmatched = [],
-		i = 0,
-		len = unmatched.length,
-		mapped = map != null;
-
-	for ( ; i < len; i++ ) {
-		if ( (elem = unmatched[i]) ) {
-			if ( !filter || filter( elem, context, xml ) ) {
-				newUnmatched.push( elem );
-				if ( mapped ) {
-					map.push( i );
-				}
-			}
-		}
-	}
-
-	return newUnmatched;
-}
-
-function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
-	if ( postFilter && !postFilter[ expando ] ) {
-		postFilter = setMatcher( postFilter );
-	}
-	if ( postFinder && !postFinder[ expando ] ) {
-		postFinder = setMatcher( postFinder, postSelector );
-	}
-	return markFunction(function( seed, results, context, xml ) {
-		var temp, i, elem,
-			preMap = [],
-			postMap = [],
-			preexisting = results.length,
-
-			// Get initial elements from seed or context
-			elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
-
-			// Prefilter to get matcher input, preserving a map for seed-results synchronization
-			matcherIn = preFilter && ( seed || !selector ) ?
-				condense( elems, preMap, preFilter, context, xml ) :
-				elems,
-
-			matcherOut = matcher ?
-				// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
-				postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
-
-					// ...intermediate processing is necessary
-					[] :
-
-					// ...otherwise use results directly
-					results :
-				matcherIn;
-
-		// Find primary matches
-		if ( matcher ) {
-			matcher( matcherIn, matcherOut, context, xml );
-		}
-
-		// Apply postFilter
-		if ( postFilter ) {
-			temp = condense( matcherOut, postMap );
-			postFilter( temp, [], context, xml );
-
-			// Un-match failing elements by moving them back to matcherIn
-			i = temp.length;
-			while ( i-- ) {
-				if ( (elem = temp[i]) ) {
-					matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
-				}
-			}
-		}
-
-		if ( seed ) {
-			if ( postFinder || preFilter ) {
-				if ( postFinder ) {
-					// Get the final matcherOut by condensing this intermediate into postFinder contexts
-					temp = [];
-					i = matcherOut.length;
-					while ( i-- ) {
-						if ( (elem = matcherOut[i]) ) {
-							// Restore matcherIn since elem is not yet a final match
-							temp.push( (matcherIn[i] = elem) );
-						}
-					}
-					postFinder( null, (matcherOut = []), temp, xml );
-				}
-
-				// Move matched elements from seed to results to keep them synchronized
-				i = matcherOut.length;
-				while ( i-- ) {
-					if ( (elem = matcherOut[i]) &&
-						(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {
-
-						seed[temp] = !(results[temp] = elem);
-					}
-				}
-			}
-
-		// Add elements to results, through postFinder if defined
-		} else {
-			matcherOut = condense(
-				matcherOut === results ?
-					matcherOut.splice( preexisting, matcherOut.length ) :
-					matcherOut
-			);
-			if ( postFinder ) {
-				postFinder( null, results, matcherOut, xml );
-			} else {
-				push.apply( results, matcherOut );
-			}
-		}
-	});
-}
-
-function matcherFromTokens( tokens ) {
-	var checkContext, matcher, j,
-		len = tokens.length,
-		leadingRelative = Expr.relative[ tokens[0].type ],
-		implicitRelative = leadingRelative || Expr.relative[" "],
-		i = leadingRelative ? 1 : 0,
-
-		// The foundational matcher ensures that elements are reachable from top-level context(s)
-		matchContext = addCombinator( function( elem ) {
-			return elem === checkContext;
-		}, implicitRelative, true ),
-		matchAnyContext = addCombinator( function( elem ) {
-			return indexOf( checkContext, elem ) > -1;
-		}, implicitRelative, true ),
-		matchers = [ function( elem, context, xml ) {
-			var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
-				(checkContext = context).nodeType ?
-					matchContext( elem, context, xml ) :
-					matchAnyContext( elem, context, xml ) );
-			// Avoid hanging onto element (issue #299)
-			checkContext = null;
-			return ret;
-		} ];
-
-	for ( ; i < len; i++ ) {
-		if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
-			matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
-		} else {
-			matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
-
-			// Return special upon seeing a positional matcher
-			if ( matcher[ expando ] ) {
-				// Find the next relative operator (if any) for proper handling
-				j = ++i;
-				for ( ; j < len; j++ ) {
-					if ( Expr.relative[ tokens[j].type ] ) {
-						break;
-					}
-				}
-				return setMatcher(
-					i > 1 && elementMatcher( matchers ),
-					i > 1 && toSelector(
-						// If the preceding token was a descendant combinator, insert an implicit any-element `*`
-						tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
-					).replace( rtrim, "$1" ),
-					matcher,
-					i < j && matcherFromTokens( tokens.slice( i, j ) ),
-					j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
-					j < len && toSelector( tokens )
-				);
-			}
-			matchers.push( matcher );
-		}
-	}
-
-	return elementMatcher( matchers );
-}
-
-function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
-	var bySet = setMatchers.length > 0,
-		byElement = elementMatchers.length > 0,
-		superMatcher = function( seed, context, xml, results, outermost ) {
-			var elem, j, matcher,
-				matchedCount = 0,
-				i = "0",
-				unmatched = seed && [],
-				setMatched = [],
-				contextBackup = outermostContext,
-				// We must always have either seed elements or outermost context
-				elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
-				// Use integer dirruns iff this is the outermost matcher
-				dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
-				len = elems.length;
-
-			if ( outermost ) {
-				outermostContext = context === document || context || outermost;
-			}
-
-			// Add elements passing elementMatchers directly to results
-			// Support: IE<9, Safari
-			// Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
-			for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
-				if ( byElement && elem ) {
-					j = 0;
-					if ( !context && elem.ownerDocument !== document ) {
-						setDocument( elem );
-						xml = !documentIsHTML;
-					}
-					while ( (matcher = elementMatchers[j++]) ) {
-						if ( matcher( elem, context || document, xml) ) {
-							results.push( elem );
-							break;
-						}
-					}
-					if ( outermost ) {
-						dirruns = dirrunsUnique;
-					}
-				}
-
-				// Track unmatched elements for set filters
-				if ( bySet ) {
-					// They will have gone through all possible matchers
-					if ( (elem = !matcher && elem) ) {
-						matchedCount--;
-					}
-
-					// Lengthen the array for every element, matched or not
-					if ( seed ) {
-						unmatched.push( elem );
-					}
-				}
-			}
-
-			// `i` is now the count of elements visited above, and adding it to `matchedCount`
-			// makes the latter nonnegative.
-			matchedCount += i;
-
-			// Apply set filters to unmatched elements
-			// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`
-			// equals `i`), unless we didn't visit _any_ elements in the above loop because we have
-			// no element matchers and no seed.
-			// Incrementing an initially-string "0" `i` allows `i` to remain a string only in that
-			// case, which will result in a "00" `matchedCount` that differs from `i` but is also
-			// numerically zero.
-			if ( bySet && i !== matchedCount ) {
-				j = 0;
-				while ( (matcher = setMatchers[j++]) ) {
-					matcher( unmatched, setMatched, context, xml );
-				}
-
-				if ( seed ) {
-					// Reintegrate element matches to eliminate the need for sorting
-					if ( matchedCount > 0 ) {
-						while ( i-- ) {
-							if ( !(unmatched[i] || setMatched[i]) ) {
-								setMatched[i] = pop.call( results );
-							}
-						}
-					}
-
-					// Discard index placeholder values to get only actual matches
-					setMatched = condense( setMatched );
-				}
-
-				// Add matches to results
-				push.apply( results, setMatched );
-
-				// Seedless set matches succeeding multiple successful matchers stipulate sorting
-				if ( outermost && !seed && setMatched.length > 0 &&
-					( matchedCount + setMatchers.length ) > 1 ) {
-
-					Sizzle.uniqueSort( results );
-				}
-			}
-
-			// Override manipulation of globals by nested matchers
-			if ( outermost ) {
-				dirruns = dirrunsUnique;
-				outermostContext = contextBackup;
-			}
-
-			return unmatched;
-		};
-
-	return bySet ?
-		markFunction( superMatcher ) :
-		superMatcher;
-}
-
-compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
-	var i,
-		setMatchers = [],
-		elementMatchers = [],
-		cached = compilerCache[ selector + " " ];
-
-	if ( !cached ) {
-		// Generate a function of recursive functions that can be used to check each element
-		if ( !match ) {
-			match = tokenize( selector );
-		}
-		i = match.length;
-		while ( i-- ) {
-			cached = matcherFromTokens( match[i] );
-			if ( cached[ expando ] ) {
-				setMatchers.push( cached );
-			} else {
-				elementMatchers.push( cached );
-			}
-		}
-
-		// Cache the compiled function
-		cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
-
-		// Save selector and tokenization
-		cached.selector = selector;
-	}
-	return cached;
-};
-
-/**
- * A low-level selection function that works with Sizzle's compiled
- *  selector functions
- * @param {String|Function} selector A selector or a pre-compiled
- *  selector function built with Sizzle.compile
- * @param {Element} context
- * @param {Array} [results]
- * @param {Array} [seed] A set of elements to match against
- */
-select = Sizzle.select = function( selector, context, results, seed ) {
-	var i, tokens, token, type, find,
-		compiled = typeof selector === "function" && selector,
-		match = !seed && tokenize( (selector = compiled.selector || selector) );
-
-	results = results || [];
-
-	// Try to minimize operations if there is only one selector in the list and no seed
-	// (the latter of which guarantees us context)
-	if ( match.length === 1 ) {
-
-		// Reduce context if the leading compound selector is an ID
-		tokens = match[0] = match[0].slice( 0 );
-		if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
-				support.getById && context.nodeType === 9 && documentIsHTML &&
-				Expr.relative[ tokens[1].type ] ) {
-
-			context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
-			if ( !context ) {
-				return results;
-
-			// Precompiled matchers will still verify ancestry, so step up a level
-			} else if ( compiled ) {
-				context = context.parentNode;
-			}
-
-			selector = selector.slice( tokens.shift().value.length );
-		}
-
-		// Fetch a seed set for right-to-left matching
-		i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
-		while ( i-- ) {
-			token = tokens[i];
-
-			// Abort if we hit a combinator
-			if ( Expr.relative[ (type = token.type) ] ) {
-				break;
-			}
-			if ( (find = Expr.find[ type ]) ) {
-				// Search, expanding context for leading sibling combinators
-				if ( (seed = find(
-					token.matches[0].replace( runescape, funescape ),
-					rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
-				)) ) {
-
-					// If seed is empty or no tokens remain, we can return early
-					tokens.splice( i, 1 );
-					selector = seed.length && toSelector( tokens );
-					if ( !selector ) {
-						push.apply( results, seed );
-						return results;
-					}
-
-					break;
-				}
-			}
-		}
-	}
-
-	// Compile and execute a filtering function if one is not provided
-	// Provide `match` to avoid retokenization if we modified the selector above
-	( compiled || compile( selector, match ) )(
-		seed,
-		context,
-		!documentIsHTML,
-		results,
-		!context || rsibling.test( selector ) && testContext( context.parentNode ) || context
-	);
-	return results;
-};
-
-// One-time assignments
-
-// Sort stability
-support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
-
-// Support: Chrome 14-35+
-// Always assume duplicates if they aren't passed to the comparison function
-support.detectDuplicates = !!hasDuplicate;
-
-// Initialize against the default document
-setDocument();
-
-// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
-// Detached nodes confoundingly follow *each other*
-support.sortDetached = assert(function( div1 ) {
-	// Should return 1, but returns 4 (following)
-	return div1.compareDocumentPosition( document.createElement("div") ) & 1;
-});
-
-// Support: IE<8
-// Prevent attribute/property "interpolation"
-// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
-if ( !assert(function( div ) {
-	div.innerHTML = "<a href='#'></a>";
-	return div.firstChild.getAttribute("href") === "#" ;
-}) ) {
-	addHandle( "type|href|height|width", function( elem, name, isXML ) {
-		if ( !isXML ) {
-			return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
-		}
-	});
-}
-
-// Support: IE<9
-// Use defaultValue in place of getAttribute("value")
-if ( !support.attributes || !assert(function( div ) {
-	div.innerHTML = "<input/>";
-	div.firstChild.setAttribute( "value", "" );
-	return div.firstChild.getAttribute( "value" ) === "";
-}) ) {
-	addHandle( "value", function( elem, name, isXML ) {
-		if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
-			return elem.defaultValue;
-		}
-	});
-}
-
-// Support: IE<9
-// Use getAttributeNode to fetch booleans when getAttribute lies
-if ( !assert(function( div ) {
-	return div.getAttribute("disabled") == null;
-}) ) {
-	addHandle( booleans, function( elem, name, isXML ) {
-		var val;
-		if ( !isXML ) {
-			return elem[ name ] === true ? name.toLowerCase() :
-					(val = elem.getAttributeNode( name )) && val.specified ?
-					val.value :
-				null;
-		}
-	});
-}
-
-return Sizzle;
-
-})( window );
-
-
-
-jQuery.find = Sizzle;
-jQuery.expr = Sizzle.selectors;
-jQuery.expr[ ":" ] = jQuery.expr.pseudos;
-jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;
-jQuery.text = Sizzle.getText;
-jQuery.isXMLDoc = Sizzle.isXML;
-jQuery.contains = Sizzle.contains;
-
-
-
-var dir = function( elem, dir, until ) {
-	var matched = [],
-		truncate = until !== undefined;
-
-	while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {
-		if ( elem.nodeType === 1 ) {
-			if ( truncate && jQuery( elem ).is( until ) ) {
-				break;
-			}
-			matched.push( elem );
-		}
-	}
-	return matched;
-};
-
-
-var siblings = function( n, elem ) {
-	var matched = [];
-
-	for ( ; n; n = n.nextSibling ) {
-		if ( n.nodeType === 1 && n !== elem ) {
-			matched.push( n );
-		}
-	}
-
-	return matched;
-};
-
-
-var rneedsContext = jQuery.expr.match.needsContext;
-
-var rsingleTag = ( /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/ );
-
-
-
-var risSimple = /^.[^:#\[\.,]*$/;
-
-// Implement the identical functionality for filter and not
-function winnow( elements, qualifier, not ) {
-	if ( jQuery.isFunction( qualifier ) ) {
-		return jQuery.grep( elements, function( elem, i ) {
-			/* jshint -W018 */
-			return !!qualifier.call( elem, i, elem ) !== not;
-		} );
-
-	}
-
-	if ( qualifier.nodeType ) {
-		return jQuery.grep( elements, function( elem ) {
-			return ( elem === qualifier ) !== not;
-		} );
-
-	}
-
-	if ( typeof qualifier === "string" ) {
-		if ( risSimple.test( qualifier ) ) {
-			return jQuery.filter( qualifier, elements, not );
-		}
-
-		qualifier = jQuery.filter( qualifier, elements );
-	}
-
-	return jQuery.grep( elements, function( elem ) {
-		return ( indexOf.call( qualifier, elem ) > -1 ) !== not;
-	} );
-}
-
-jQuery.filter = function( expr, elems, not ) {
-	var elem = elems[ 0 ];
-
-	if ( not ) {
-		expr = ":not(" + expr + ")";
-	}
-
-	return elems.length === 1 && elem.nodeType === 1 ?
-		jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :
-		jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
-			return elem.nodeType === 1;
-		} ) );
-};
-
-jQuery.fn.extend( {
-	find: function( selector ) {
-		var i,
-			len = this.length,
-			ret = [],
-			self = this;
-
-		if ( typeof selector !== "string" ) {
-			return this.pushStack( jQuery( selector ).filter( function() {
-				for ( i = 0; i < len; i++ ) {
-					if ( jQuery.contains( self[ i ], this ) ) {
-						return true;
-					}
-				}
-			} ) );
-		}
-
-		for ( i = 0; i < len; i++ ) {
-			jQuery.find( selector, self[ i ], ret );
-		}
-
-		// Needed because $( selector, context ) becomes $( context ).find( selector )
-		ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );
-		ret.selector = this.selector ? this.selector + " " + selector : selector;
-		return ret;
-	},
-	filter: function( selector ) {
-		return this.pushStack( winnow( this, selector || [], false ) );
-	},
-	not: function( selector ) {
-		return this.pushStack( winnow( this, selector || [], true ) );
-	},
-	is: function( selector ) {
-		return !!winnow(
-			this,
-
-			// If this is a positional/relative selector, check membership in the returned set
-			// so $("p:first").is("p:last") won't return true for a doc with two "p".
-			typeof selector === "string" && rneedsContext.test( selector ) ?
-				jQuery( selector ) :
-				selector || [],
-			false
-		).length;
-	}
-} );
-
-
-// Initialize a jQuery object
-
-
-// A central reference to the root jQuery(document)
-var rootjQuery,
-
-	// A simple way to check for HTML strings
-	// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
-	// Strict HTML recognition (#11290: must start with <)
-	rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
-
-	init = jQuery.fn.init = function( selector, context, root ) {
-		var match, elem;
-
-		// HANDLE: $(""), $(null), $(undefined), $(false)
-		if ( !selector ) {
-			return this;
-		}
-
-		// Method init() accepts an alternate rootjQuery
-		// so migrate can support jQuery.sub (gh-2101)
-		root = root || rootjQuery;
-
-		// Handle HTML strings
-		if ( typeof selector === "string" ) {
-			if ( selector[ 0 ] === "<" &&
-				selector[ selector.length - 1 ] === ">" &&
-				selector.length >= 3 ) {
-
-				// Assume that strings that start and end with <> are HTML and skip the regex check
-				match = [ null, selector, null ];
-
-			} else {
-				match = rquickExpr.exec( selector );
-			}
-
-			// Match html or make sure no context is specified for #id
-			if ( match && ( match[ 1 ] || !context ) ) {
-
-				// HANDLE: $(html) -> $(array)
-				if ( match[ 1 ] ) {
-					context = context instanceof jQuery ? context[ 0 ] : context;
-
-					// Option to run scripts is true for back-compat
-					// Intentionally let the error be thrown if parseHTML is not present
-					jQuery.merge( this, jQuery.parseHTML(
-						match[ 1 ],
-						context && context.nodeType ? context.ownerDocument || context : document,
-						true
-					) );
-
-					// HANDLE: $(html, props)
-					if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {
-						for ( match in context ) {
-
-							// Properties of context are called as methods if possible
-							if ( jQuery.isFunction( this[ match ] ) ) {
-								this[ match ]( context[ match ] );
-
-							// ...and otherwise set as attributes
-							} else {
-								this.attr( match, context[ match ] );
-							}
-						}
-					}
-
-					return this;
-
-				// HANDLE: $(#id)
-				} else {
-					elem = document.getElementById( match[ 2 ] );
-
-					// Support: Blackberry 4.6
-					// gEBID returns nodes no longer in the document (#6963)
-					if ( elem && elem.parentNode ) {
-
-						// Inject the element directly into the jQuery object
-						this.length = 1;
-						this[ 0 ] = elem;
-					}
-
-					this.context = document;
-					this.selector = selector;
-					return this;
-				}
-
-			// HANDLE: $(expr, $(...))
-			} else if ( !context || context.jquery ) {
-				return ( context || root ).find( selector );
-
-			// HANDLE: $(expr, context)
-			// (which is just equivalent to: $(context).find(expr)
-			} else {
-				return this.constructor( context ).find( selector );
-			}
-
-		// HANDLE: $(DOMElement)
-		} else if ( selector.nodeType ) {
-			this.context = this[ 0 ] = selector;
-			this.length = 1;
-			return this;
-
-		// HANDLE: $(function)
-		// Shortcut for document ready
-		} else if ( jQuery.isFunction( selector ) ) {
-			return root.ready !== undefined ?
-				root.ready( selector ) :
-
-				// Execute immediately if ready is not present
-				selector( jQuery );
-		}
-
-		if ( selector.selector !== undefined ) {
-			this.selector = selector.selector;
-			this.context = selector.context;
-		}
-
-		return jQuery.makeArray( selector, this );
-	};
-
-// Give the init function the jQuery prototype for later instantiation
-init.prototype = jQuery.fn;
-
-// Initialize central reference
-rootjQuery = jQuery( document );
-
-
-var rparentsprev = /^(?:parents|prev(?:Until|All))/,
-
-	// Methods guaranteed to produce a unique set when starting from a unique set
-	guaranteedUnique = {
-		children: true,
-		contents: true,
-		next: true,
-		prev: true
-	};
-
-jQuery.fn.extend( {
-	has: function( target ) {
-		var targets = jQuery( target, this ),
-			l = targets.length;
-
-		return this.filter( function() {
-			var i = 0;
-			for ( ; i < l; i++ ) {
-				if ( jQuery.contains( this, targets[ i ] ) ) {
-					return true;
-				}
-			}
-		} );
-	},
-
-	closest: function( selectors, context ) {
-		var cur,
-			i = 0,
-			l = this.length,
-			matched = [],
-			pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ?
-				jQuery( selectors, context || this.context ) :
-				0;
-
-		for ( ; i < l; i++ ) {
-			for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {
-
-				// Always skip document fragments
-				if ( cur.nodeType < 11 && ( pos ?
-					pos.index( cur ) > -1 :
-
-					// Don't pass non-elements to Sizzle
-					cur.nodeType === 1 &&
-						jQuery.find.matchesSelector( cur, selectors ) ) ) {
-
-					matched.push( cur );
-					break;
-				}
-			}
-		}
-
-		return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );
-	},
-
-	// Determine the position of an element within the set
-	index: function( elem ) {
-
-		// No argument, return index in parent
-		if ( !elem ) {
-			return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
-		}
-
-		// Index in selector
-		if ( typeof elem === "string" ) {
-			return indexOf.call( jQuery( elem ), this[ 0 ] );
-		}
-
-		// Locate the position of the desired element
-		return indexOf.call( this,
-
-			// If it receives a jQuery object, the first element is used
-			elem.jquery ? elem[ 0 ] : elem
-		);
-	},
-
-	add: function( selector, context ) {
-		return this.pushStack(
-			jQuery.uniqueSort(
-				jQuery.merge( this.get(), jQuery( selector, context ) )
-			)
-		);
-	},
-
-	addBack: function( selector ) {
-		return this.add( selector == null ?
-			this.prevObject : this.prevObject.filter( selector )
-		);
-	}
-} );
-
-function sibling( cur, dir ) {
-	while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}
-	return cur;
-}
-
-jQuery.each( {
-	parent: function( elem ) {
-		var parent = elem.parentNode;
-		return parent && parent.nodeType !== 11 ? parent : null;
-	},
-	parents: function( elem ) {
-		return dir( elem, "parentNode" );
-	},
-	parentsUntil: function( elem, i, until ) {
-		return dir( elem, "parentNode", until );
-	},
-	next: function( elem ) {
-		return sibling( elem, "nextSibling" );
-	},
-	prev: function( elem ) {
-		return sibling( elem, "previousSibling" );
-	},
-	nextAll: function( elem ) {
-		return dir( elem, "nextSibling" );
-	},
-	prevAll: function( elem ) {
-		return dir( elem, "previousSibling" );
-	},
-	nextUntil: function( elem, i, until ) {
-		return dir( elem, "nextSibling", until );
-	},
-	prevUntil: function( elem, i, until ) {
-		return dir( elem, "previousSibling", until );
-	},
-	siblings: function( elem ) {
-		return siblings( ( elem.parentNode || {} ).firstChild, elem );
-	},
-	children: function( elem ) {
-		return siblings( elem.firstChild );
-	},
-	contents: function( elem ) {
-		return elem.contentDocument || jQuery.merge( [], elem.childNodes );
-	}
-}, function( name, fn ) {
-	jQuery.fn[ name ] = function( until, selector ) {
-		var matched = jQuery.map( this, fn, until );
-
-		if ( name.slice( -5 ) !== "Until" ) {
-			selector = until;
-		}
-
-		if ( selector && typeof selector === "string" ) {
-			matched = jQuery.filter( selector, matched );
-		}
-
-		if ( this.length > 1 ) {
-
-			// Remove duplicates
-			if ( !guaranteedUnique[ name ] ) {
-				jQuery.uniqueSort( matched );
-			}
-
-			// Reverse order for parents* and prev-derivatives
-			if ( rparentsprev.test( name ) ) {
-				matched.reverse();
-			}
-		}
-
-		return this.pushStack( matched );
-	};
-} );
-var rnotwhite = ( /\S+/g );
-
-
-
-// Convert String-formatted options into Object-formatted ones
-function createOptions( options ) {
-	var object = {};
-	jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {
-		object[ flag ] = true;
-	} );
-	return object;
-}
-
-/*
- * Create a callback list using the following parameters:
- *
- *	options: an optional list of space-separated options that will change how
- *			the callback list behaves or a more traditional option object
- *
- * By default a callback list will act like an event callback list and can be
- * "fired" multiple times.
- *
- * Possible options:
- *
- *	once:			will ensure the callback list can only be fired once (like a Deferred)
- *
- *	memory:			will keep track of previous values and will call any callback added
- *					after the list has been fired right away with the latest "memorized"
- *					values (like a Deferred)
- *
- *	unique:			will ensure a callback can only be added once (no duplicate in the list)
- *
- *	stopOnFalse:	interrupt callings when a callback returns false
- *
- */
-jQuery.Callbacks = function( options ) {
-
-	// Convert options from String-formatted to Object-formatted if needed
-	// (we check in cache first)
-	options = typeof options === "string" ?
-		createOptions( options ) :
-		jQuery.extend( {}, options );
-
-	var // Flag to know if list is currently firing
-		firing,
-
-		// Last fire value for non-forgettable lists
-		memory,
-
-		// Flag to know if list was already fired
-		fired,
-
-		// Flag to prevent firing
-		locked,
-
-		// Actual callback list
-		list = [],
-
-		// Queue of execution data for repeatable lists
-		queue = [],
-
-		// Index of currently firing callback (modified by add/remove as needed)
-		firingIndex = -1,
-
-		// Fire callbacks
-		fire = function() {
-
-			// Enforce single-firing
-			locked = options.once;
-
-			// Execute callbacks for all pending executions,
-			// respecting firingIndex overrides and runtime changes
-			fired = firing = true;
-			for ( ; queue.length; firingIndex = -1 ) {
-				memory = queue.shift();
-				while ( ++firingIndex < list.length ) {
-
-					// Run callback and check for early termination
-					if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&
-						options.stopOnFalse ) {
-
-						// Jump to end and forget the data so .add doesn't re-fire
-						firingIndex = list.length;
-						memory = false;
-					}
-				}
-			}
-
-			// Forget the data if we're done with it
-			if ( !options.memory ) {
-				memory = false;
-			}
-
-			firing = false;
-
-			// Clean up if we're done firing for good
-			if ( locked ) {
-
-				// Keep an empty list if we have data for future add calls
-				if ( memory ) {
-					list = [];
-
-				// Otherwise, this object is spent
-				} else {
-					list = "";
-				}
-			}
-		},
-
-		// Actual Callbacks object
-		self = {
-
-			// Add a callback or a collection of callbacks to the list
-			add: function() {
-				if ( list ) {
-
-					// If we have memory from a past run, we should fire after adding
-					if ( memory && !firing ) {
-						firingIndex = list.length - 1;
-						queue.push( memory );
-					}
-
-					( function add( args ) {
-						jQuery.each( args, function( _, arg ) {
-							if ( jQuery.isFunction( arg ) ) {
-								if ( !options.unique || !self.has( arg ) ) {
-									list.push( arg );
-								}
-							} else if ( arg && arg.length && jQuery.type( arg ) !== "string" ) {
-
-								// Inspect recursively
-								add( arg );
-							}
-						} );
-					} )( arguments );
-
-					if ( memory && !firing ) {
-						fire();
-					}
-				}
-				return this;
-			},
-
-			// Remove a callback from the list
-			remove: function() {
-				jQuery.each( arguments, function( _, arg ) {
-					var index;
-					while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
-						list.splice( index, 1 );
-
-						// Handle firing indexes
-						if ( index <= firingIndex ) {
-							firingIndex--;
-						}
-					}
-				} );
-				return this;
-			},
-
-			// Check if a given callback is in the list.
-			// If no argument is given, return whether or not list has callbacks attached.
-			has: function( fn ) {
-				return fn ?
-					jQuery.inArray( fn, list ) > -1 :
-					list.length > 0;
-			},
-
-			// Remove all callbacks from the list
-			empty: function() {
-				if ( list ) {
-					list = [];
-				}
-				return this;
-			},
-
-			// Disable .fire and .add
-			// Abort any current/pending executions
-			// Clear all callbacks and values
-			disable: function() {
-				locked = queue = [];
-				list = memory = "";
-				return this;
-			},
-			disabled: function() {
-				return !list;
-			},
-
-			// Disable .fire
-			// Also disable .add unless we have memory (since it would have no effect)
-			// Abort any pending executions
-			lock: function() {
-				locked = queue = [];
-				if ( !memory ) {
-					list = memory = "";
-				}
-				return this;
-			},
-			locked: function() {
-				return !!locked;
-			},
-
-			// Call all callbacks with the given context and arguments
-			fireWith: function( context, args ) {
-				if ( !locked ) {
-					args = args || [];
-					args = [ context, args.slice ? args.slice() : args ];
-					queue.push( args );
-					if ( !firing ) {
-						fire();
-					}
-				}
-				return this;
-			},
-
-			// Call all the callbacks with the given arguments
-			fire: function() {
-				self.fireWith( this, arguments );
-				return this;
-			},
-
-			// To know if the callbacks have already been called at least once
-			fired: function() {
-				return !!fired;
-			}
-		};
-
-	return self;
-};
-
-
-jQuery.extend( {
-
-	Deferred: function( func ) {
-		var tuples = [
-
-				// action, add listener, listener list, final state
-				[ "resolve", "done", jQuery.Callbacks( "once memory" ), "resolved" ],
-				[ "reject", "fail", jQuery.Callbacks( "once memory" ), "rejected" ],
-				[ "notify", "progress", jQuery.Callbacks( "memory" ) ]
-			],
-			state = "pending",
-			promise = {
-				state: function() {
-					return state;
-				},
-				always: function() {
-					deferred.done( arguments ).fail( arguments );
-					return this;
-				},
-				then: function( /* fnDone, fnFail, fnProgress */ ) {
-					var fns = arguments;
-					return jQuery.Deferred( function( newDefer ) {
-						jQuery.each( tuples, function( i, tuple ) {
-							var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
-
-							// deferred[ done | fail | progress ] for forwarding actions to newDefer
-							deferred[ tuple[ 1 ] ]( function() {
-								var returned = fn && fn.apply( this, arguments );
-								if ( returned && jQuery.isFunction( returned.promise ) ) {
-									returned.promise()
-										.progress( newDefer.notify )
-										.done( newDefer.resolve )
-										.fail( newDefer.reject );
-								} else {
-									newDefer[ tuple[ 0 ] + "With" ](
-										this === promise ? newDefer.promise() : this,
-										fn ? [ returned ] : arguments
-									);
-								}
-							} );
-						} );
-						fns = null;
-					} ).promise();
-				},
-
-				// Get a promise for this deferred
-				// If obj is provided, the promise aspect is added to the object
-				promise: function( obj ) {
-					return obj != null ? jQuery.extend( obj, promise ) : promise;
-				}
-			},
-			deferred = {};
-
-		// Keep pipe for back-compat
-		promise.pipe = promise.then;
-
-		// Add list-specific methods
-		jQuery.each( tuples, function( i, tuple ) {
-			var list = tuple[ 2 ],
-				stateString = tuple[ 3 ];
-
-			// promise[ done | fail | progress ] = list.add
-			promise[ tuple[ 1 ] ] = list.add;
-
-			// Handle state
-			if ( stateString ) {
-				list.add( function() {
-
-					// state = [ resolved | rejected ]
-					state = stateString;
-
-				// [ reject_list | resolve_list ].disable; progress_list.lock
-				}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
-			}
-
-			// deferred[ resolve | reject | notify ]
-			deferred[ tuple[ 0 ] ] = function() {
-				deferred[ tuple[ 0 ] + "With" ]( this === deferred ? promise : this, arguments );
-				return this;
-			};
-			deferred[ tuple[ 0 ] + "With" ] = list.fireWith;
-		} );
-
-		// Make the deferred a promise
-		promise.promise( deferred );
-
-		// Call given func if any
-		if ( func ) {
-			func.call( deferred, deferred );
-		}
-
-		// All done!
-		return deferred;
-	},
-
-	// Deferred helper
-	when: function( subordinate /* , ..., subordinateN */ ) {
-		var i = 0,
-			resolveValues = slice.call( arguments ),
-			length = resolveValues.length,
-
-			// the count of uncompleted subordinates
-			remaining = length !== 1 ||
-				( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
-
-			// the master Deferred.
-			// If resolveValues consist of only a single Deferred, just use that.
-			deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
-
-			// Update function for both resolve and progress values
-			updateFunc = function( i, contexts, values ) {
-				return function( value ) {
-					contexts[ i ] = this;
-					values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
-					if ( values === progressValues ) {
-						deferred.notifyWith( contexts, values );
-					} else if ( !( --remaining ) ) {
-						deferred.resolveWith( contexts, values );
-					}
-				};
-			},
-
-			progressValues, progressContexts, resolveContexts;
-
-		// Add listeners to Deferred subordinates; treat others as resolved
-		if ( length > 1 ) {
-			progressValues = new Array( length );
-			progressContexts = new Array( length );
-			resolveContexts = new Array( length );
-			for ( ; i < length; i++ ) {
-				if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
-					resolveValues[ i ].promise()
-						.progress( updateFunc( i, progressContexts, progressValues ) )
-						.done( updateFunc( i, resolveContexts, resolveValues ) )
-						.fail( deferred.reject );
-				} else {
-					--remaining;
-				}
-			}
-		}
-
-		// If we're not waiting on anything, resolve the master
-		if ( !remaining ) {
-			deferred.resolveWith( resolveContexts, resolveValues );
-		}
-
-		return deferred.promise();
-	}
-} );
-
-
-// The deferred used on DOM ready
-var readyList;
-
-jQuery.fn.ready = function( fn ) {
-
-	// Add the callback
-	jQuery.ready.promise().done( fn );
-
-	return this;
-};
-
-jQuery.extend( {
-
-	// Is the DOM ready to be used? Set to true once it occurs.
-	isReady: false,
-
-	// A counter to track how many items to wait for before
-	// the ready event fires. See #6781
-	readyWait: 1,
-
-	// Hold (or release) the ready event
-	holdReady: function( hold ) {
-		if ( hold ) {
-			jQuery.readyWait++;
-		} else {
-			jQuery.ready( true );
-		}
-	},
-
-	// Handle when the DOM is ready
-	ready: function( wait ) {
-
-		// Abort if there are pending holds or we're already ready
-		if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
-			return;
-		}
-
-		// Remember that the DOM is ready
-		jQuery.isReady = true;
-
-		// If a normal DOM Ready event fired, decrement, and wait if need be
-		if ( wait !== true && --jQuery.readyWait > 0 ) {
-			return;
-		}
-
-		// If there are functions bound, to execute
-		readyList.resolveWith( document, [ jQuery ] );
-
-		// Trigger any bound ready events
-		if ( jQuery.fn.triggerHandler ) {
-			jQuery( document ).triggerHandler( "ready" );
-			jQuery( document ).off( "ready" );
-		}
-	}
-} );
-
-/**
- * The ready event handler and self cleanup method
- */
-function completed() {
-	document.removeEventListener( "DOMContentLoaded", completed );
-	window.removeEventListener( "load", completed );
-	jQuery.ready();
-}
-
-jQuery.ready.promise = function( obj ) {
-	if ( !readyList ) {
-
-		readyList = jQuery.Deferred();
-
-		// Catch cases where $(document).ready() is called
-		// after the browser event has already occurred.
-		// Support: IE9-10 only
-		// Older IE sometimes signals "interactive" too soon
-		if ( document.readyState === "complete" ||
-			( document.readyState !== "loading" && !document.documentElement.doScroll ) ) {
-
-			// Handle it asynchronously to allow scripts the opportunity to delay ready
-			window.setTimeout( jQuery.ready );
-
-		} else {
-
-			// Use the handy event callback
-			document.addEventListener( "DOMContentLoaded", completed );
-
-			// A fallback to window.onload, that will always work
-			window.addEventListener( "load", completed );
-		}
-	}
-	return readyList.promise( obj );
-};
-
-// Kick off the DOM ready check even if the user does not
-jQuery.ready.promise();
-
-
-
-
-// Multifunctional method to get and set values of a collection
-// The value/s can optionally be executed if it's a function
-var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
-	var i = 0,
-		len = elems.length,
-		bulk = key == null;
-
-	// Sets many values
-	if ( jQuery.type( key ) === "object" ) {
-		chainable = true;
-		for ( i in key ) {
-			access( elems, fn, i, key[ i ], true, emptyGet, raw );
-		}
-
-	// Sets one value
-	} else if ( value !== undefined ) {
-		chainable = true;
-
-		if ( !jQuery.isFunction( value ) ) {
-			raw = true;
-		}
-
-		if ( bulk ) {
-
-			// Bulk operations run against the entire set
-			if ( raw ) {
-				fn.call( elems, value );
-				fn = null;
-
-			// ...except when executing function values
-			} else {
-				bulk = fn;
-				fn = function( elem, key, value ) {
-					return bulk.call( jQuery( elem ), value );
-				};
-			}
-		}
-
-		if ( fn ) {
-			for ( ; i < len; i++ ) {
-				fn(
-					elems[ i ], key, raw ?
-					value :
-					value.call( elems[ i ], i, fn( elems[ i ], key ) )
-				);
-			}
-		}
-	}
-
-	return chainable ?
-		elems :
-
-		// Gets
-		bulk ?
-			fn.call( elems ) :
-			len ? fn( elems[ 0 ], key ) : emptyGet;
-};
-var acceptData = function( owner ) {
-
-	// Accepts only:
-	//  - Node
-	//    - Node.ELEMENT_NODE
-	//    - Node.DOCUMENT_NODE
-	//  - Object
-	//    - Any
-	/* jshint -W018 */
-	return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
-};
-
-
-
-
-function Data() {
-	this.expando = jQuery.expando + Data.uid++;
-}
-
-Data.uid = 1;
-
-Data.prototype = {
-
-	register: function( owner, initial ) {
-		var value = initial || {};
-
-		// If it is a node unlikely to be stringify-ed or looped over
-		// use plain assignment
-		if ( owner.nodeType ) {
-			owner[ this.expando ] = value;
-
-		// Otherwise secure it in a non-enumerable, non-writable property
-		// configurability must be true to allow the property to be
-		// deleted with the delete operator
-		} else {
-			Object.defineProperty( owner, this.expando, {
-				value: value,
-				writable: true,
-				configurable: true
-			} );
-		}
-		return owner[ this.expando ];
-	},
-	cache: function( owner ) {
-
-		// We can accept data for non-element nodes in modern browsers,
-		// but we should not, see #8335.
-		// Always return an empty object.
-		if ( !acceptData( owner ) ) {
-			return {};
-		}
-
-		// Check if the owner object already has a cache
-		var value = owner[ this.expando ];
-
-		// If not, create one
-		if ( !value ) {
-			value = {};
-
-			// We can accept data for non-element nodes in modern browsers,
-			// but we should not, see #8335.
-			// Always return an empty object.
-			if ( acceptData( owner ) ) {
-
-				// If it is a node unlikely to be stringify-ed or looped over
-				// use plain assignment
-				if ( owner.nodeType ) {
-					owner[ this.expando ] = value;
-
-				// Otherwise secure it in a non-enumerable property
-				// configurable must be true to allow the property to be
-				// deleted when data is removed
-				} else {
-					Object.defineProperty( owner, this.expando, {
-						value: value,
-						configurable: true
-					} );
-				}
-			}
-		}
-
-		return value;
-	},
-	set: function( owner, data, value ) {
-		var prop,
-			cache = this.cache( owner );
-
-		// Handle: [ owner, key, value ] args
-		if ( typeof data === "string" ) {
-			cache[ data ] = value;
-
-		// Handle: [ owner, { properties } ] args
-		} else {
-
-			// Copy the properties one-by-one to the cache object
-			for ( prop in data ) {
-				cache[ prop ] = data[ prop ];
-			}
-		}
-		return cache;
-	},
-	get: function( owner, key ) {
-		return key === undefined ?
-			this.cache( owner ) :
-			owner[ this.expando ] && owner[ this.expando ][ key ];
-	},
-	access: function( owner, key, value ) {
-		var stored;
-
-		// In cases where either:
-		//
-		//   1. No key was specified
-		//   2. A string key was specified, but no value provided
-		//
-		// Take the "read" path and allow the get method to determine
-		// which value to return, respectively either:
-		//
-		//   1. The entire cache object
-		//   2. The data stored at the key
-		//
-		if ( key === undefined ||
-				( ( key && typeof key === "string" ) && value === undefined ) ) {
-
-			stored = this.get( owner, key );
-
-			return stored !== undefined ?
-				stored : this.get( owner, jQuery.camelCase( key ) );
-		}
-
-		// When the key is not a string, or both a key and value
-		// are specified, set or extend (existing objects) with either:
-		//
-		//   1. An object of properties
-		//   2. A key and value
-		//
-		this.set( owner, key, value );
-
-		// Since the "set" path can have two possible entry points
-		// return the expected data based on which path was taken[*]
-		return value !== undefined ? value : key;
-	},
-	remove: function( owner, key ) {
-		var i, name, camel,
-			cache = owner[ this.expando ];
-
-		if ( cache === undefined ) {
-			return;
-		}
-
-		if ( key === undefined ) {
-			this.register( owner );
-
-		} else {
-
-			// Support array or space separated string of keys
-			if ( jQuery.isArray( key ) ) {
-
-				// If "name" is an array of keys...
-				// When data is initially created, via ("key", "val") signature,
-				// keys will be converted to camelCase.
-				// Since there is no way to tell _how_ a key was added, remove
-				// both plain key and camelCase key. #12786
-				// This will only penalize the array argument path.
-				name = key.concat( key.map( jQuery.camelCase ) );
-			} else {
-				camel = jQuery.camelCase( key );
-
-				// Try the string as a key before any manipulation
-				if ( key in cache ) {
-					name = [ key, camel ];
-				} else {
-
-					// If a key with the spaces exists, use it.
-					// Otherwise, create an array by matching non-whitespace
-					name = camel;
-					name = name in cache ?
-						[ name ] : ( name.match( rnotwhite ) || [] );
-				}
-			}
-
-			i = name.length;
-
-			while ( i-- ) {
-				delete cache[ name[ i ] ];
-			}
-		}
-
-		// Remove the expando if there's no more data
-		if ( key === undefined || jQuery.isEmptyObject( cache ) ) {
-
-			// Support: Chrome <= 35-45+
-			// Webkit & Blink performance suffers when deleting properties
-			// from DOM nodes, so set to undefined instead
-			// https://code.google.com/p/chromium/issues/detail?id=378607
-			if ( owner.nodeType ) {
-				owner[ this.expando ] = undefined;
-			} else {
-				delete owner[ this.expando ];
-			}
-		}
-	},
-	hasData: function( owner ) {
-		var cache = owner[ this.expando ];
-		return cache !== undefined && !jQuery.isEmptyObject( cache );
-	}
-};
-var dataPriv = new Data();
-
-var dataUser = new Data();
-
-
-
-//	Implementation Summary
-//
-//	1. Enforce API surface and semantic compatibility with 1.9.x branch
-//	2. Improve the module's maintainability by reducing the storage
-//		paths to a single mechanism.
-//	3. Use the same single mechanism to support "private" and "user" data.
-//	4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
-//	5. Avoid exposing implementation details on user objects (eg. expando properties)
-//	6. Provide a clear path for implementation upgrade to WeakMap in 2014
-
-var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
-	rmultiDash = /[A-Z]/g;
-
-function dataAttr( elem, key, data ) {
-	var name;
-
-	// If nothing was found internally, try to fetch any
-	// data from the HTML5 data-* attribute
-	if ( data === undefined && elem.nodeType === 1 ) {
-		name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase();
-		data = elem.getAttribute( name );
-
-		if ( typeof data === "string" ) {
-			try {
-				data = data === "true" ? true :
-					data === "false" ? false :
-					data === "null" ? null :
-
-					// Only convert to a number if it doesn't change the string
-					+data + "" === data ? +data :
-					rbrace.test( data ) ? jQuery.parseJSON( data ) :
-					data;
-			} catch ( e ) {}
-
-			// Make sure we set the data so it isn't changed later
-			dataUser.set( elem, key, data );
-		} else {
-			data = undefined;
-		}
-	}
-	return data;
-}
-
-jQuery.extend( {
-	hasData: function( elem ) {
-		return dataUser.hasData( elem ) || dataPriv.hasData( elem );
-	},
-
-	data: function( elem, name, data ) {
-		return dataUser.access( elem, name, data );
-	},
-
-	removeData: function( elem, name ) {
-		dataUser.remove( elem, name );
-	},
-
-	// TODO: Now that all calls to _data and _removeData have been replaced
-	// with direct calls to dataPriv methods, these can be deprecated.
-	_data: function( elem, name, data ) {
-		return dataPriv.access( elem, name, data );
-	},
-
-	_removeData: function( elem, name ) {
-		dataPriv.remove( elem, name );
-	}
-} );
-
-jQuery.fn.extend( {
-	data: function( key, value ) {
-		var i, name, data,
-			elem = this[ 0 ],
-			attrs = elem && elem.attributes;
-
-		// Gets all values
-		if ( key === undefined ) {
-			if ( this.length ) {
-				data = dataUser.get( elem );
-
-				if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) {
-					i = attrs.length;
-					while ( i-- ) {
-
-						// Support: IE11+
-						// The attrs elements can be null (#14894)
-						if ( attrs[ i ] ) {
-							name = attrs[ i ].name;
-							if ( name.indexOf( "data-" ) === 0 ) {
-								name = jQuery.camelCase( name.slice( 5 ) );
-								dataAttr( elem, name, data[ name ] );
-							}
-						}
-					}
-					dataPriv.set( elem, "hasDataAttrs", true );
-				}
-			}
-
-			return data;
-		}
-
-		// Sets multiple values
-		if ( typeof key === "object" ) {
-			return this.each( function() {
-				dataUser.set( this, key );
-			} );
-		}
-
-		return access( this, function( value ) {
-			var data, camelKey;
-
-			// The calling jQuery object (element matches) is not empty
-			// (and therefore has an element appears at this[ 0 ]) and the
-			// `value` parameter was not undefined. An empty jQuery object
-			// will result in `undefined` for elem = this[ 0 ] which will
-			// throw an exception if an attempt to read a data cache is made.
-			if ( elem && value === undefined ) {
-
-				// Attempt to get data from the cache
-				// with the key as-is
-				data = dataUser.get( elem, key ) ||
-
-					// Try to find dashed key if it exists (gh-2779)
-					// This is for 2.2.x only
-					dataUser.get( elem, key.replace( rmultiDash, "-$&" ).toLowerCase() );
-
-				if ( data !== undefined ) {
-					return data;
-				}
-
-				camelKey = jQuery.camelCase( key );
-
-				// Attempt to get data from the cache
-				// with the key camelized
-				data = dataUser.get( elem, camelKey );
-				if ( data !== undefined ) {
-					return data;
-				}
-
-				// Attempt to "discover" the data in
-				// HTML5 custom data-* attrs
-				data = dataAttr( elem, camelKey, undefined );
-				if ( data !== undefined ) {
-					return data;
-				}
-
-				// We tried really hard, but the data doesn't exist.
-				return;
-			}
-
-			// Set the data...
-			camelKey = jQuery.camelCase( key );
-			this.each( function() {
-
-				// First, attempt to store a copy or reference of any
-				// data that might've been store with a camelCased key.
-				var data = dataUser.get( this, camelKey );
-
-				// For HTML5 data-* attribute interop, we have to
-				// store property names with dashes in a camelCase form.
-				// This might not apply to all properties...*
-				dataUser.set( this, camelKey, value );
-
-				// *... In the case of properties that might _actually_
-				// have dashes, we need to also store a copy of that
-				// unchanged property.
-				if ( key.indexOf( "-" ) > -1 && data !== undefined ) {
-					dataUser.set( this, key, value );
-				}
-			} );
-		}, null, value, arguments.length > 1, null, true );
-	},
-
-	removeData: function( key ) {
-		return this.each( function() {
-			dataUser.remove( this, key );
-		} );
-	}
-} );
-
-
-jQuery.extend( {
-	queue: function( elem, type, data ) {
-		var queue;
-
-		if ( elem ) {
-			type = ( type || "fx" ) + "queue";
-			queue = dataPriv.get( elem, type );
-
-			// Speed up dequeue by getting out quickly if this is just a lookup
-			if ( data ) {
-				if ( !queue || jQuery.isArray( data ) ) {
-					queue = dataPriv.access( elem, type, jQuery.makeArray( data ) );
-				} else {
-					queue.push( data );
-				}
-			}
-			return queue || [];
-		}
-	},
-
-	dequeue: function( elem, type ) {
-		type = type || "fx";
-
-		var queue = jQuery.queue( elem, type ),
-			startLength = queue.length,
-			fn = queue.shift(),
-			hooks = jQuery._queueHooks( elem, type ),
-			next = function() {
-				jQuery.dequeue( elem, type );
-			};
-
-		// If the fx queue is dequeued, always remove the progress sentinel
-		if ( fn === "inprogress" ) {
-			fn = queue.shift();
-			startLength--;
-		}
-
-		if ( fn ) {
-
-			// Add a progress sentinel to prevent the fx queue from being
-			// automatically dequeued
-			if ( type === "fx" ) {
-				queue.unshift( "inprogress" );
-			}
-
-			// Clear up the last queue stop function
-			delete hooks.stop;
-			fn.call( elem, next, hooks );
-		}
-
-		if ( !startLength && hooks ) {
-			hooks.empty.fire();
-		}
-	},
-
-	// Not public - generate a queueHooks object, or return the current one
-	_queueHooks: function( elem, type ) {
-		var key = type + "queueHooks";
-		return dataPriv.get( elem, key ) || dataPriv.access( elem, key, {
-			empty: jQuery.Callbacks( "once memory" ).add( function() {
-				dataPriv.remove( elem, [ type + "queue", key ] );
-			} )
-		} );
-	}
-} );
-
-jQuery.fn.extend( {
-	queue: function( type, data ) {
-		var setter = 2;
-
-		if ( typeof type !== "string" ) {
-			data = type;
-			type = "fx";
-			setter--;
-		}
-
-		if ( arguments.length < setter ) {
-			return jQuery.queue( this[ 0 ], type );
-		}
-
-		return data === undefined ?
-			this :
-			this.each( function() {
-				var queue = jQuery.queue( this, type, data );
-
-				// Ensure a hooks for this queue
-				jQuery._queueHooks( this, type );
-
-				if ( type === "fx" && queue[ 0 ] !== "inprogress" ) {
-					jQuery.dequeue( this, type );
-				}
-			} );
-	},
-	dequeue: function( type ) {
-		return this.each( function() {
-			jQuery.dequeue( this, type );
-		} );
-	},
-	clearQueue: function( type ) {
-		return this.queue( type || "fx", [] );
-	},
-
-	// Get a promise resolved when queues of a certain type
-	// are emptied (fx is the type by default)
-	promise: function( type, obj ) {
-		var tmp,
-			count = 1,
-			defer = jQuery.Deferred(),
-			elements = this,
-			i = this.length,
-			resolve = function() {
-				if ( !( --count ) ) {
-					defer.resolveWith( elements, [ elements ] );
-				}
-			};
-
-		if ( typeof type !== "string" ) {
-			obj = type;
-			type = undefined;
-		}
-		type = type || "fx";
-
-		while ( i-- ) {
-			tmp = dataPriv.get( elements[ i ], type + "queueHooks" );
-			if ( tmp && tmp.empty ) {
-				count++;
-				tmp.empty.add( resolve );
-			}
-		}
-		resolve();
-		return defer.promise( obj );
-	}
-} );
-var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
-
-var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
-
-
-var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
-
-var isHidden = function( elem, el ) {
-
-		// isHidden might be called from jQuery#filter function;
-		// in that case, element will be second argument
-		elem = el || elem;
-		return jQuery.css( elem, "display" ) === "none" ||
-			!jQuery.contains( elem.ownerDocument, elem );
-	};
-
-
-
-function adjustCSS( elem, prop, valueParts, tween ) {
-	var adjusted,
-		scale = 1,
-		maxIterations = 20,
-		currentValue = tween ?
-			function() { return tween.cur(); } :
-			function() { return jQuery.css( elem, prop, "" ); },
-		initial = currentValue(),
-		unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
-
-		// Starting value computation is required for potential unit mismatches
-		initialInUnit = ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) &&
-			rcssNum.exec( jQuery.css( elem, prop ) );
-
-	if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {
-
-		// Trust units reported by jQuery.css
-		unit = unit || initialInUnit[ 3 ];
-
-		// Make sure we update the tween properties later on
-		valueParts = valueParts || [];
-
-		// Iteratively approximate from a nonzero starting point
-		initialInUnit = +initial || 1;
-
-		do {
-
-			// If previous iteration zeroed out, double until we get *something*.
-			// Use string for doubling so we don't accidentally see scale as unchanged below
-			scale = scale || ".5";
-
-			// Adjust and apply
-			initialInUnit = initialInUnit / scale;
-			jQuery.style( elem, prop, initialInUnit + unit );
-
-		// Update scale, tolerating zero or NaN from tween.cur()
-		// Break the loop if scale is unchanged or perfect, or if we've just had enough.
-		} while (
-			scale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations
-		);
-	}
-
-	if ( valueParts ) {
-		initialInUnit = +initialInUnit || +initial || 0;
-
-		// Apply relative offset (+=/-=) if specified
-		adjusted = valueParts[ 1 ] ?
-			initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :
-			+valueParts[ 2 ];
-		if ( tween ) {
-			tween.unit = unit;
-			tween.start = initialInUnit;
-			tween.end = adjusted;
-		}
-	}
-	return adjusted;
-}
-var rcheckableType = ( /^(?:checkbox|radio)$/i );
-
-var rtagName = ( /<([\w:-]+)/ );
-
-var rscriptType = ( /^$|\/(?:java|ecma)script/i );
-
-
-
-// We have to close these tags to support XHTML (#13200)
-var wrapMap = {
-
-	// Support: IE9
-	option: [ 1, "<select multiple='multiple'>", "</select>" ],
-
-	// XHTML parsers do not magically insert elements in the
-	// same way that tag soup parsers do. So we cannot shorten
-	// this by omitting <tbody> or other required elements.
-	thead: [ 1, "<table>", "</table>" ],
-	col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
-	tr: [ 2, "<table><tbody>", "</tbody></table>" ],
-	td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
-
-	_default: [ 0, "", "" ]
-};
-
-// Support: IE9
-wrapMap.optgroup = wrapMap.option;
-
-wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
-wrapMap.th = wrapMap.td;
-
-
-function getAll( context, tag ) {
-
-	// Support: IE9-11+
-	// Use typeof to avoid zero-argument method invocation on host objects (#15151)
-	var ret = typeof context.getElementsByTagName !== "undefined" ?
-			context.getElementsByTagName( tag || "*" ) :
-			typeof context.querySelectorAll !== "undefined" ?
-				context.querySelectorAll( tag || "*" ) :
-			[];
-
-	return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
-		jQuery.merge( [ context ], ret ) :
-		ret;
-}
-
-
-// Mark scripts as having already been evaluated
-function setGlobalEval( elems, refElements ) {
-	var i = 0,
-		l = elems.length;
-
-	for ( ; i < l; i++ ) {
-		dataPriv.set(
-			elems[ i ],
-			"globalEval",
-			!refElements || dataPriv.get( refElements[ i ], "globalEval" )
-		);
-	}
-}
-
-
-var rhtml = /<|&#?\w+;/;
-
-function buildFragment( elems, context, scripts, selection, ignored ) {
-	var elem, tmp, tag, wrap, contains, j,
-		fragment = context.createDocumentFragment(),
-		nodes = [],
-		i = 0,
-		l = elems.length;
-
-	for ( ; i < l; i++ ) {
-		elem = elems[ i ];
-
-		if ( elem || elem === 0 ) {
-
-			// Add nodes directly
-			if ( jQuery.type( elem ) === "object" ) {
-
-				// Support: Android<4.1, PhantomJS<2
-				// push.apply(_, arraylike) throws on ancient WebKit
-				jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
-
-			// Convert non-html into a text node
-			} else if ( !rhtml.test( elem ) ) {
-				nodes.push( context.createTextNode( elem ) );
-
-			// Convert html into DOM nodes
-			} else {
-				tmp = tmp || fragment.appendChild( context.createElement( "div" ) );
-
-				// Deserialize a standard representation
-				tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
-				wrap = wrapMap[ tag ] || wrapMap._default;
-				tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];
-
-				// Descend through wrappers to the right content
-				j = wrap[ 0 ];
-				while ( j-- ) {
-					tmp = tmp.lastChild;
-				}
-
-				// Support: Android<4.1, PhantomJS<2
-				// push.apply(_, arraylike) throws on ancient WebKit
-				jQuery.merge( nodes, tmp.childNodes );
-
-				// Remember the top-level container
-				tmp = fragment.firstChild;
-
-				// Ensure the created nodes are orphaned (#12392)
-				tmp.textContent = "";
-			}
-		}
-	}
-
-	// Remove wrapper from fragment
-	fragment.textContent = "";
-
-	i = 0;
-	while ( ( elem = nodes[ i++ ] ) ) {
-
-		// Skip elements already in the context collection (trac-4087)
-		if ( selection && jQuery.inArray( elem, selection ) > -1 ) {
-			if ( ignored ) {
-				ignored.push( elem );
-			}
-			continue;
-		}
-
-		contains = jQuery.contains( elem.ownerDocument, elem );
-
-		// Append to fragment
-		tmp = getAll( fragment.appendChild( elem ), "script" );
-
-		// Preserve script evaluation history
-		if ( contains ) {
-			setGlobalEval( tmp );
-		}
-
-		// Capture executables
-		if ( scripts ) {
-			j = 0;
-			while ( ( elem = tmp[ j++ ] ) ) {
-				if ( rscriptType.test( elem.type || "" ) ) {
-					scripts.push( elem );
-				}
-			}
-		}
-	}
-
-	return fragment;
-}
-
-
-( function() {
-	var fragment = document.createDocumentFragment(),
-		div = fragment.appendChild( document.createElement( "div" ) ),
-		input = document.createElement( "input" );
-
-	// Support: Android 4.0-4.3, Safari<=5.1
-	// Check state lost if the name is set (#11217)
-	// Support: Windows Web Apps (WWA)
-	// `name` and `type` must use .setAttribute for WWA (#14901)
-	input.setAttribute( "type", "radio" );
-	input.setAttribute( "checked", "checked" );
-	input.setAttribute( "name", "t" );
-
-	div.appendChild( input );
-
-	// Support: Safari<=5.1, Android<4.2
-	// Older WebKit doesn't clone checked state correctly in fragments
-	support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
-
-	// Support: IE<=11+
-	// Make sure textarea (and checkbox) defaultValue is properly cloned
-	div.innerHTML = "<textarea>x</textarea>";
-	support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
-} )();
-
-
-var
-	rkeyEvent = /^key/,
-	rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,
-	rtypenamespace = /^([^.]*)(?:\.(.+)|)/;
-
-function returnTrue() {
-	return true;
-}
-
-function returnFalse() {
-	return false;
-}
-
-// Support: IE9
-// See #13393 for more info
-function safeActiveElement() {
-	try {
-		return document.activeElement;
-	} catch ( err ) { }
-}
-
-function on( elem, types, selector, data, fn, one ) {
-	var origFn, type;
-
-	// Types can be a map of types/handlers
-	if ( typeof types === "object" ) {
-
-		// ( types-Object, selector, data )
-		if ( typeof selector !== "string" ) {
-
-			// ( types-Object, data )
-			data = data || selector;
-			selector = undefined;
-		}
-		for ( type in types ) {
-			on( elem, type, selector, data, types[ type ], one );
-		}
-		return elem;
-	}
-
-	if ( data == null && fn == null ) {
-
-		// ( types, fn )
-		fn = selector;
-		data = selector = undefined;
-	} else if ( fn == null ) {
-		if ( typeof selector === "string" ) {
-
-			// ( types, selector, fn )
-			fn = data;
-			data = undefined;
-		} else {
-
-			// ( types, data, fn )
-			fn = data;
-			data = selector;
-			selector = undefined;
-		}
-	}
-	if ( fn === false ) {
-		fn = returnFalse;
-	} else if ( !fn ) {
-		return elem;
-	}
-
-	if ( one === 1 ) {
-		origFn = fn;
-		fn = function( event ) {
-
-			// Can use an empty set, since event contains the info
-			jQuery().off( event );
-			return origFn.apply( this, arguments );
-		};
-
-		// Use same guid so caller can remove using origFn
-		fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
-	}
-	return elem.each( function() {
-		jQuery.event.add( this, types, fn, data, selector );
-	} );
-}
-
-/*
- * Helper functions for managing events -- not part of the public interface.
- * Props to Dean Edwards' addEvent library for many of the ideas.
- */
-jQuery.event = {
-
-	global: {},
-
-	add: function( elem, types, handler, data, selector ) {
-
-		var handleObjIn, eventHandle, tmp,
-			events, t, handleObj,
-			special, handlers, type, namespaces, origType,
-			elemData = dataPriv.get( elem );
-
-		// Don't attach events to noData or text/comment nodes (but allow plain objects)
-		if ( !elemData ) {
-			return;
-		}
-
-		// Caller can pass in an object of custom data in lieu of the handler
-		if ( handler.handler ) {
-			handleObjIn = handler;
-			handler = handleObjIn.handler;
-			selector = handleObjIn.selector;
-		}
-
-		// Make sure that the handler has a unique ID, used to find/remove it later
-		if ( !handler.guid ) {
-			handler.guid = jQuery.guid++;
-		}
-
-		// Init the element's event structure and main handler, if this is the first
-		if ( !( events = elemData.events ) ) {
-			events = elemData.events = {};
-		}
-		if ( !( eventHandle = elemData.handle ) ) {
-			eventHandle = elemData.handle = function( e ) {
-
-				// Discard the second event of a jQuery.event.trigger() and
-				// when an event is called after a page has unloaded
-				return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ?
-					jQuery.event.dispatch.apply( elem, arguments ) : undefined;
-			};
-		}
-
-		// Handle multiple events separated by a space
-		types = ( types || "" ).match( rnotwhite ) || [ "" ];
-		t = types.length;
-		while ( t-- ) {
-			tmp = rtypenamespace.exec( types[ t ] ) || [];
-			type = origType = tmp[ 1 ];
-			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
-
-			// There *must* be a type, no attaching namespace-only handlers
-			if ( !type ) {
-				continue;
-			}
-
-			// If event changes its type, use the special event handlers for the changed type
-			special = jQuery.event.special[ type ] || {};
-
-			// If selector defined, determine special event api type, otherwise given type
-			type = ( selector ? special.delegateType : special.bindType ) || type;
-
-			// Update special based on newly reset type
-			special = jQuery.event.special[ type ] || {};
-
-			// handleObj is passed to all event handlers
-			handleObj = jQuery.extend( {
-				type: type,
-				origType: origType,
-				data: data,
-				handler: handler,
-				guid: handler.guid,
-				selector: selector,
-				needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
-				namespace: namespaces.join( "." )
-			}, handleObjIn );
-
-			// Init the event handler queue if we're the first
-			if ( !( handlers = events[ type ] ) ) {
-				handlers = events[ type ] = [];
-				handlers.delegateCount = 0;
-
-				// Only use addEventListener if the special events handler returns false
-				if ( !special.setup ||
-					special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
-
-					if ( elem.addEventListener ) {
-						elem.addEventListener( type, eventHandle );
-					}
-				}
-			}
-
-			if ( special.add ) {
-				special.add.call( elem, handleObj );
-
-				if ( !handleObj.handler.guid ) {
-					handleObj.handler.guid = handler.guid;
-				}
-			}
-
-			// Add to the element's handler list, delegates in front
-			if ( selector ) {
-				handlers.splice( handlers.delegateCount++, 0, handleObj );
-			} else {
-				handlers.push( handleObj );
-			}
-
-			// Keep track of which events have ever been used, for event optimization
-			jQuery.event.global[ type ] = true;
-		}
-
-	},
-
-	// Detach an event or set of events from an element
-	remove: function( elem, types, handler, selector, mappedTypes ) {
-
-		var j, origCount, tmp,
-			events, t, handleObj,
-			special, handlers, type, namespaces, origType,
-			elemData = dataPriv.hasData( elem ) && dataPriv.get( elem );
-
-		if ( !elemData || !( events = elemData.events ) ) {
-			return;
-		}
-
-		// Once for each type.namespace in types; type may be omitted
-		types = ( types || "" ).match( rnotwhite ) || [ "" ];
-		t = types.length;
-		while ( t-- ) {
-			tmp = rtypenamespace.exec( types[ t ] ) || [];
-			type = origType = tmp[ 1 ];
-			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
-
-			// Unbind all events (on this namespace, if provided) for the element
-			if ( !type ) {
-				for ( type in events ) {
-					jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
-				}
-				continue;
-			}
-
-			special = jQuery.event.special[ type ] || {};
-			type = ( selector ? special.delegateType : special.bindType ) || type;
-			handlers = events[ type ] || [];
-			tmp = tmp[ 2 ] &&
-				new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" );
-
-			// Remove matching events
-			origCount = j = handlers.length;
-			while ( j-- ) {
-				handleObj = handlers[ j ];
-
-				if ( ( mappedTypes || origType === handleObj.origType ) &&
-					( !handler || handler.guid === handleObj.guid ) &&
-					( !tmp || tmp.test( handleObj.namespace ) ) &&
-					( !selector || selector === handleObj.selector ||
-						selector === "**" && handleObj.selector ) ) {
-					handlers.splice( j, 1 );
-
-					if ( handleObj.selector ) {
-						handlers.delegateCount--;
-					}
-					if ( special.remove ) {
-						special.remove.call( elem, handleObj );
-					}
-				}
-			}
-
-			// Remove generic event handler if we removed something and no more handlers exist
-			// (avoids potential for endless recursion during removal of special event handlers)
-			if ( origCount && !handlers.length ) {
-				if ( !special.teardown ||
-					special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
-
-					jQuery.removeEvent( elem, type, elemData.handle );
-				}
-
-				delete events[ type ];
-			}
-		}
-
-		// Remove data and the expando if it's no longer used
-		if ( jQuery.isEmptyObject( events ) ) {
-			dataPriv.remove( elem, "handle events" );
-		}
-	},
-
-	dispatch: function( event ) {
-
-		// Make a writable jQuery.Event from the native event object
-		event = jQuery.event.fix( event );
-
-		var i, j, ret, matched, handleObj,
-			handlerQueue = [],
-			args = slice.call( arguments ),
-			handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [],
-			special = jQuery.event.special[ event.type ] || {};
-
-		// Use the fix-ed jQuery.Event rather than the (read-only) native event
-		args[ 0 ] = event;
-		event.delegateTarget = this;
-
-		// Call the preDispatch hook for the mapped type, and let it bail if desired
-		if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
-			return;
-		}
-
-		// Determine handlers
-		handlerQueue = jQuery.event.handlers.call( this, event, handlers );
-
-		// Run delegates first; they may want to stop propagation beneath us
-		i = 0;
-		while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {
-			event.currentTarget = matched.elem;
-
-			j = 0;
-			while ( ( handleObj = matched.handlers[ j++ ] ) &&
-				!event.isImmediatePropagationStopped() ) {
-
-				// Triggered event must either 1) have no namespace, or 2) have namespace(s)
-				// a subset or equal to those in the bound event (both can have no namespace).
-				if ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) {
-
-					event.handleObj = handleObj;
-					event.data = handleObj.data;
-
-					ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||
-						handleObj.handler ).apply( matched.elem, args );
-
-					if ( ret !== undefined ) {
-						if ( ( event.result = ret ) === false ) {
-							event.preventDefault();
-							event.stopPropagation();
-						}
-					}
-				}
-			}
-		}
-
-		// Call the postDispatch hook for the mapped type
-		if ( special.postDispatch ) {
-			special.postDispatch.call( this, event );
-		}
-
-		return event.result;
-	},
-
-	handlers: function( event, handlers ) {
-		var i, matches, sel, handleObj,
-			handlerQueue = [],
-			delegateCount = handlers.delegateCount,
-			cur = event.target;
-
-		// Support (at least): Chrome, IE9
-		// Find delegate handlers
-		// Black-hole SVG <use> instance trees (#13180)
-		//
-		// Support: Firefox<=42+
-		// Avoid non-left-click in FF but don't block IE radio events (#3861, gh-2343)
-		if ( delegateCount && cur.nodeType &&
-			( event.type !== "click" || isNaN( event.button ) || event.button < 1 ) ) {
-
-			for ( ; cur !== this; cur = cur.parentNode || this ) {
-
-				// Don't check non-elements (#13208)
-				// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
-				if ( cur.nodeType === 1 && ( cur.disabled !== true || event.type !== "click" ) ) {
-					matches = [];
-					for ( i = 0; i < delegateCount; i++ ) {
-						handleObj = handlers[ i ];
-
-						// Don't conflict with Object.prototype properties (#13203)
-						sel = handleObj.selector + " ";
-
-						if ( matches[ sel ] === undefined ) {
-							matches[ sel ] = handleObj.needsContext ?
-								jQuery( sel, this ).index( cur ) > -1 :
-								jQuery.find( sel, this, null, [ cur ] ).length;
-						}
-						if ( matches[ sel ] ) {
-							matches.push( handleObj );
-						}
-					}
-					if ( matches.length ) {
-						handlerQueue.push( { elem: cur, handlers: matches } );
-					}
-				}
-			}
-		}
-
-		// Add the remaining (directly-bound) handlers
-		if ( delegateCount < handlers.length ) {
-			handlerQueue.push( { elem: this, handlers: handlers.slice( delegateCount ) } );
-		}
-
-		return handlerQueue;
-	},
-
-	// Includes some event props shared by KeyEvent and MouseEvent
-	props: ( "altKey bubbles cancelable ctrlKey currentTarget detail eventPhase " +
-		"metaKey relatedTarget shiftKey target timeStamp view which" ).split( " " ),
-
-	fixHooks: {},
-
-	keyHooks: {
-		props: "char charCode key keyCode".split( " " ),
-		filter: function( event, original ) {
-
-			// Add which for key events
-			if ( event.which == null ) {
-				event.which = original.charCode != null ? original.charCode : original.keyCode;
-			}
-
-			return event;
-		}
-	},
-
-	mouseHooks: {
-		props: ( "button buttons clientX clientY offsetX offsetY pageX pageY " +
-			"screenX screenY toElement" ).split( " " ),
-		filter: function( event, original ) {
-			var eventDoc, doc, body,
-				button = original.button;
-
-			// Calculate pageX/Y if missing and clientX/Y available
-			if ( event.pageX == null && original.clientX != null ) {
-				eventDoc = event.target.ownerDocument || document;
-				doc = eventDoc.documentElement;
-				body = eventDoc.body;
-
-				event.pageX = original.clientX +
-					( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) -
-					( doc && doc.clientLeft || body && body.clientLeft || 0 );
-				event.pageY = original.clientY +
-					( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) -
-					( doc && doc.clientTop  || body && body.clientTop  || 0 );
-			}
-
-			// Add which for click: 1 === left; 2 === middle; 3 === right
-			// Note: button is not normalized, so don't use it
-			if ( !event.which && button !== undefined ) {
-				event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
-			}
-
-			return event;
-		}
-	},
-
-	fix: function( event ) {
-		if ( event[ jQuery.expando ] ) {
-			return event;
-		}
-
-		// Create a writable copy of the event object and normalize some properties
-		var i, prop, copy,
-			type = event.type,
-			originalEvent = event,
-			fixHook = this.fixHooks[ type ];
-
-		if ( !fixHook ) {
-			this.fixHooks[ type ] = fixHook =
-				rmouseEvent.test( type ) ? this.mouseHooks :
-				rkeyEvent.test( type ) ? this.keyHooks :
-				{};
-		}
-		copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;
-
-		event = new jQuery.Event( originalEvent );
-
-		i = copy.length;
-		while ( i-- ) {
-			prop = copy[ i ];
-			event[ prop ] = originalEvent[ prop ];
-		}
-
-		// Support: Cordova 2.5 (WebKit) (#13255)
-		// All events should have a target; Cordova deviceready doesn't
-		if ( !event.target ) {
-			event.target = document;
-		}
-
-		// Support: Safari 6.0+, Chrome<28
-		// Target should not be a text node (#504, #13143)
-		if ( event.target.nodeType === 3 ) {
-			event.target = event.target.parentNode;
-		}
-
-		return fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
-	},
-
-	special: {
-		load: {
-
-			// Prevent triggered image.load events from bubbling to window.load
-			noBubble: true
-		},
-		focus: {
-
-			// Fire native event if possible so blur/focus sequence is correct
-			trigger: function() {
-				if ( this !== safeActiveElement() && this.focus ) {
-					this.focus();
-					return false;
-				}
-			},
-			delegateType: "focusin"
-		},
-		blur: {
-			trigger: function() {
-				if ( this === safeActiveElement() && this.blur ) {
-					this.blur();
-					return false;
-				}
-			},
-			delegateType: "focusout"
-		},
-		click: {
-
-			// For checkbox, fire native event so checked state will be right
-			trigger: function() {
-				if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) {
-					this.click();
-					return false;
-				}
-			},
-
-			// For cross-browser consistency, don't fire native .click() on links
-			_default: function( event ) {
-				return jQuery.nodeName( event.target, "a" );
-			}
-		},
-
-		beforeunload: {
-			postDispatch: function( event ) {
-
-				// Support: Firefox 20+
-				// Firefox doesn't alert if the returnValue field is not set.
-				if ( event.result !== undefined && event.originalEvent ) {
-					event.originalEvent.returnValue = event.result;
-				}
-			}
-		}
-	}
-};
-
-jQuery.removeEvent = function( elem, type, handle ) {
-
-	// This "if" is needed for plain objects
-	if ( elem.removeEventListener ) {
-		elem.removeEventListener( type, handle );
-	}
-};
-
-jQuery.Event = function( src, props ) {
-
-	// Allow instantiation without the 'new' keyword
-	if ( !( this instanceof jQuery.Event ) ) {
-		return new jQuery.Event( src, props );
-	}
-
-	// Event object
-	if ( src && src.type ) {
-		this.originalEvent = src;
-		this.type = src.type;
-
-		// Events bubbling up the document may have been marked as prevented
-		// by a handler lower down the tree; reflect the correct value.
-		this.isDefaultPrevented = src.defaultPrevented ||
-				src.defaultPrevented === undefined &&
-
-				// Support: Android<4.0
-				src.returnValue === false ?
-			returnTrue :
-			returnFalse;
-
-	// Event type
-	} else {
-		this.type = src;
-	}
-
-	// Put explicitly provided properties onto the event object
-	if ( props ) {
-		jQuery.extend( this, props );
-	}
-
-	// Create a timestamp if incoming event doesn't have one
-	this.timeStamp = src && src.timeStamp || jQuery.now();
-
-	// Mark it as fixed
-	this[ jQuery.expando ] = true;
-};
-
-// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
-// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
-jQuery.Event.prototype = {
-	constructor: jQuery.Event,
-	isDefaultPrevented: returnFalse,
-	isPropagationStopped: returnFalse,
-	isImmediatePropagationStopped: returnFalse,
-	isSimulated: false,
-
-	preventDefault: function() {
-		var e = this.originalEvent;
-
-		this.isDefaultPrevented = returnTrue;
-
-		if ( e && !this.isSimulated ) {
-			e.preventDefault();
-		}
-	},
-	stopPropagation: function() {
-		var e = this.originalEvent;
-
-		this.isPropagationStopped = returnTrue;
-
-		if ( e && !this.isSimulated ) {
-			e.stopPropagation();
-		}
-	},
-	stopImmediatePropagation: function() {
-		var e = this.originalEvent;
-
-		this.isImmediatePropagationStopped = returnTrue;
-
-		if ( e && !this.isSimulated ) {
-			e.stopImmediatePropagation();
-		}
-
-		this.stopPropagation();
-	}
-};
-
-// Create mouseenter/leave events using mouseover/out and event-time checks
-// so that event delegation works in jQuery.
-// Do the same for pointerenter/pointerleave and pointerover/pointerout
-//
-// Support: Safari 7 only
-// Safari sends mouseenter too often; see:
-// https://code.google.com/p/chromium/issues/detail?id=470258
-// for the description of the bug (it existed in older Chrome versions as well).
-jQuery.each( {
-	mouseenter: "mouseover",
-	mouseleave: "mouseout",
-	pointerenter: "pointerover",
-	pointerleave: "pointerout"
-}, function( orig, fix ) {
-	jQuery.event.special[ orig ] = {
-		delegateType: fix,
-		bindType: fix,
-
-		handle: function( event ) {
-			var ret,
-				target = this,
-				related = event.relatedTarget,
-				handleObj = event.handleObj;
-
-			// For mouseenter/leave call the handler if related is outside the target.
-			// NB: No relatedTarget if the mouse left/entered the browser window
-			if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
-				event.type = handleObj.origType;
-				ret = handleObj.handler.apply( this, arguments );
-				event.type = fix;
-			}
-			return ret;
-		}
-	};
-} );
-
-jQuery.fn.extend( {
-	on: function( types, selector, data, fn ) {
-		return on( this, types, selector, data, fn );
-	},
-	one: function( types, selector, data, fn ) {
-		return on( this, types, selector, data, fn, 1 );
-	},
-	off: function( types, selector, fn ) {
-		var handleObj, type;
-		if ( types && types.preventDefault && types.handleObj ) {
-
-			// ( event )  dispatched jQuery.Event
-			handleObj = types.handleObj;
-			jQuery( types.delegateTarget ).off(
-				handleObj.namespace ?
-					handleObj.origType + "." + handleObj.namespace :
-					handleObj.origType,
-				handleObj.selector,
-				handleObj.handler
-			);
-			return this;
-		}
-		if ( typeof types === "object" ) {
-
-			// ( types-object [, selector] )
-			for ( type in types ) {
-				this.off( type, selector, types[ type ] );
-			}
-			return this;
-		}
-		if ( selector === false || typeof selector === "function" ) {
-
-			// ( types [, fn] )
-			fn = selector;
-			selector = undefined;
-		}
-		if ( fn === false ) {
-			fn = returnFalse;
-		}
-		return this.each( function() {
-			jQuery.event.remove( this, types, fn, selector );
-		} );
-	}
-} );
-
-
-var
-	rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,
-
-	// Support: IE 10-11, Edge 10240+
-	// In IE/Edge using regex groups here causes severe slowdowns.
-	// See https://connect.microsoft.com/IE/feedback/details/1736512/
-	rnoInnerhtml = /<script|<style|<link/i,
-
-	// checked="checked" or checked
-	rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
-	rscriptTypeMasked = /^true\/(.*)/,
-	rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;
-
-// Manipulating tables requires a tbody
-function manipulationTarget( elem, content ) {
-	return jQuery.nodeName( elem, "table" ) &&
-		jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ?
-
-		elem.getElementsByTagName( "tbody" )[ 0 ] ||
-			elem.appendChild( elem.ownerDocument.createElement( "tbody" ) ) :
-		elem;
-}
-
-// Replace/restore the type attribute of script elements for safe DOM manipulation
-function disableScript( elem ) {
-	elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type;
-	return elem;
-}
-function restoreScript( elem ) {
-	var match = rscriptTypeMasked.exec( elem.type );
-
-	if ( match ) {
-		elem.type = match[ 1 ];
-	} else {
-		elem.removeAttribute( "type" );
-	}
-
-	return elem;
-}
-
-function cloneCopyEvent( src, dest ) {
-	var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
-
-	if ( dest.nodeType !== 1 ) {
-		return;
-	}
-
-	// 1. Copy private data: events, handlers, etc.
-	if ( dataPriv.hasData( src ) ) {
-		pdataOld = dataPriv.access( src );
-		pdataCur = dataPriv.set( dest, pdataOld );
-		events = pdataOld.events;
-
-		if ( events ) {
-			delete pdataCur.handle;
-			pdataCur.events = {};
-
-			for ( type in events ) {
-				for ( i = 0, l = events[ type ].length; i < l; i++ ) {
-					jQuery.event.add( dest, type, events[ type ][ i ] );
-				}
-			}
-		}
-	}
-
-	// 2. Copy user data
-	if ( dataUser.hasData( src ) ) {
-		udataOld = dataUser.access( src );
-		udataCur = jQuery.extend( {}, udataOld );
-
-		dataUser.set( dest, udataCur );
-	}
-}
-
-// Fix IE bugs, see support tests
-function fixInput( src, dest ) {
-	var nodeName = dest.nodeName.toLowerCase();
-
-	// Fails to persist the checked state of a cloned checkbox or radio button.
-	if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
-		dest.checked = src.checked;
-
-	// Fails to return the selected option to the default selected state when cloning options
-	} else if ( nodeName === "input" || nodeName === "textarea" ) {
-		dest.defaultValue = src.defaultValue;
-	}
-}
-
-function domManip( collection, args, callback, ignored ) {
-
-	// Flatten any nested arrays
-	args = concat.apply( [], args );
-
-	var fragment, first, scripts, hasScripts, node, doc,
-		i = 0,
-		l = collection.length,
-		iNoClone = l - 1,
-		value = args[ 0 ],
-		isFunction = jQuery.isFunction( value );
-
-	// We can't cloneNode fragments that contain checked, in WebKit
-	if ( isFunction ||
-			( l > 1 && typeof value === "string" &&
-				!support.checkClone && rchecked.test( value ) ) ) {
-		return collection.each( function( index ) {
-			var self = collection.eq( index );
-			if ( isFunction ) {
-				args[ 0 ] = value.call( this, index, self.html() );
-			}
-			domManip( self, args, callback, ignored );
-		} );
-	}
-
-	if ( l ) {
-		fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );
-		first = fragment.firstChild;
-
-		if ( fragment.childNodes.length === 1 ) {
-			fragment = first;
-		}
-
-		// Require either new content or an interest in ignored elements to invoke the callback
-		if ( first || ignored ) {
-			scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
-			hasScripts = scripts.length;
-
-			// Use the original fragment for the last item
-			// instead of the first because it can end up
-			// being emptied incorrectly in certain situations (#8070).
-			for ( ; i < l; i++ ) {
-				node = fragment;
-
-				if ( i !== iNoClone ) {
-					node = jQuery.clone( node, true, true );
-
-					// Keep references to cloned scripts for later restoration
-					if ( hasScripts ) {
-
-						// Support: Android<4.1, PhantomJS<2
-						// push.apply(_, arraylike) throws on ancient WebKit
-						jQuery.merge( scripts, getAll( node, "script" ) );
-					}
-				}
-
-				callback.call( collection[ i ], node, i );
-			}
-
-			if ( hasScripts ) {
-				doc = scripts[ scripts.length - 1 ].ownerDocument;
-
-				// Reenable scripts
-				jQuery.map( scripts, restoreScript );
-
-				// Evaluate executable scripts on first document insertion
-				for ( i = 0; i < hasScripts; i++ ) {
-					node = scripts[ i ];
-					if ( rscriptType.test( node.type || "" ) &&
-						!dataPriv.access( node, "globalEval" ) &&
-						jQuery.contains( doc, node ) ) {
-
-						if ( node.src ) {
-
-							// Optional AJAX dependency, but won't run scripts if not present
-							if ( jQuery._evalUrl ) {
-								jQuery._evalUrl( node.src );
-							}
-						} else {
-							jQuery.globalEval( node.textContent.replace( rcleanScript, "" ) );
-						}
-					}
-				}
-			}
-		}
-	}
-
-	return collection;
-}
-
-function remove( elem, selector, keepData ) {
-	var node,
-		nodes = selector ? jQuery.filter( selector, elem ) : elem,
-		i = 0;
-
-	for ( ; ( node = nodes[ i ] ) != null; i++ ) {
-		if ( !keepData && node.nodeType === 1 ) {
-			jQuery.cleanData( getAll( node ) );
-		}
-
-		if ( node.parentNode ) {
-			if ( keepData && jQuery.contains( node.ownerDocument, node ) ) {
-				setGlobalEval( getAll( node, "script" ) );
-			}
-			node.parentNode.removeChild( node );
-		}
-	}
-
-	return elem;
-}
-
-jQuery.extend( {
-	htmlPrefilter: function( html ) {
-		return html.replace( rxhtmlTag, "<$1></$2>" );
-	},
-
-	clone: function( elem, dataAndEvents, deepDataAndEvents ) {
-		var i, l, srcElements, destElements,
-			clone = elem.cloneNode( true ),
-			inPage = jQuery.contains( elem.ownerDocument, elem );
-
-		// Fix IE cloning issues
-		if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
-				!jQuery.isXMLDoc( elem ) ) {
-
-			// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2
-			destElements = getAll( clone );
-			srcElements = getAll( elem );
-
-			for ( i = 0, l = srcElements.length; i < l; i++ ) {
-				fixInput( srcElements[ i ], destElements[ i ] );
-			}
-		}
-
-		// Copy the events from the original to the clone
-		if ( dataAndEvents ) {
-			if ( deepDataAndEvents ) {
-				srcElements = srcElements || getAll( elem );
-				destElements = destElements || getAll( clone );
-
-				for ( i = 0, l = srcElements.length; i < l; i++ ) {
-					cloneCopyEvent( srcElements[ i ], destElements[ i ] );
-				}
-			} else {
-				cloneCopyEvent( elem, clone );
-			}
-		}
-
-		// Preserve script evaluation history
-		destElements = getAll( clone, "script" );
-		if ( destElements.length > 0 ) {
-			setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
-		}
-
-		// Return the cloned set
-		return clone;
-	},
-
-	cleanData: function( elems ) {
-		var data, elem, type,
-			special = jQuery.event.special,
-			i = 0;
-
-		for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {
-			if ( acceptData( elem ) ) {
-				if ( ( data = elem[ dataPriv.expando ] ) ) {
-					if ( data.events ) {
-						for ( type in data.events ) {
-							if ( special[ type ] ) {
-								jQuery.event.remove( elem, type );
-
-							// This is a shortcut to avoid jQuery.event.remove's overhead
-							} else {
-								jQuery.removeEvent( elem, type, data.handle );
-							}
-						}
-					}
-
-					// Support: Chrome <= 35-45+
-					// Assign undefined instead of using delete, see Data#remove
-					elem[ dataPriv.expando ] = undefined;
-				}
-				if ( elem[ dataUser.expando ] ) {
-
-					// Support: Chrome <= 35-45+
-					// Assign undefined instead of using delete, see Data#remove
-					elem[ dataUser.expando ] = undefined;
-				}
-			}
-		}
-	}
-} );
-
-jQuery.fn.extend( {
-
-	// Keep domManip exposed until 3.0 (gh-2225)
-	domManip: domManip,
-
-	detach: function( selector ) {
-		return remove( this, selector, true );
-	},
-
-	remove: function( selector ) {
-		return remove( this, selector );
-	},
-
-	text: function( value ) {
-		return access( this, function( value ) {
-			return value === undefined ?
-				jQuery.text( this ) :
-				this.empty().each( function() {
-					if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
-						this.textContent = value;
-					}
-				} );
-		}, null, value, arguments.length );
-	},
-
-	append: function() {
-		return domManip( this, arguments, function( elem ) {
-			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
-				var target = manipulationTarget( this, elem );
-				target.appendChild( elem );
-			}
-		} );
-	},
-
-	prepend: function() {
-		return domManip( this, arguments, function( elem ) {
-			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
-				var target = manipulationTarget( this, elem );
-				target.insertBefore( elem, target.firstChild );
-			}
-		} );
-	},
-
-	before: function() {
-		return domManip( this, arguments, function( elem ) {
-			if ( this.parentNode ) {
-				this.parentNode.insertBefore( elem, this );
-			}
-		} );
-	},
-
-	after: function() {
-		return domManip( this, arguments, function( elem ) {
-			if ( this.parentNode ) {
-				this.parentNode.insertBefore( elem, this.nextSibling );
-			}
-		} );
-	},
-
-	empty: function() {
-		var elem,
-			i = 0;
-
-		for ( ; ( elem = this[ i ] ) != null; i++ ) {
-			if ( elem.nodeType === 1 ) {
-
-				// Prevent memory leaks
-				jQuery.cleanData( getAll( elem, false ) );
-
-				// Remove any remaining nodes
-				elem.textContent = "";
-			}
-		}
-
-		return this;
-	},
-
-	clone: function( dataAndEvents, deepDataAndEvents ) {
-		dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
-		deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
-
-		return this.map( function() {
-			return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
-		} );
-	},
-
-	html: function( value ) {
-		return access( this, function( value ) {
-			var elem = this[ 0 ] || {},
-				i = 0,
-				l = this.length;
-
-			if ( value === undefined && elem.nodeType === 1 ) {
-				return elem.innerHTML;
-			}
-
-			// See if we can take a shortcut and just use innerHTML
-			if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
-				!wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
-
-				value = jQuery.htmlPrefilter( value );
-
-				try {
-					for ( ; i < l; i++ ) {
-						elem = this[ i ] || {};
-
-						// Remove element nodes and prevent memory leaks
-						if ( elem.nodeType === 1 ) {
-							jQuery.cleanData( getAll( elem, false ) );
-							elem.innerHTML = value;
-						}
-					}
-
-					elem = 0;
-
-				// If using innerHTML throws an exception, use the fallback method
-				} catch ( e ) {}
-			}
-
-			if ( elem ) {
-				this.empty().append( value );
-			}
-		}, null, value, arguments.length );
-	},
-
-	replaceWith: function() {
-		var ignored = [];
-
-		// Make the changes, replacing each non-ignored context element with the new content
-		return domManip( this, arguments, function( elem ) {
-			var parent = this.parentNode;
-
-			if ( jQuery.inArray( this, ignored ) < 0 ) {
-				jQuery.cleanData( getAll( this ) );
-				if ( parent ) {
-					parent.replaceChild( elem, this );
-				}
-			}
-
-		// Force callback invocation
-		}, ignored );
-	}
-} );
-
-jQuery.each( {
-	appendTo: "append",
-	prependTo: "prepend",
-	insertBefore: "before",
-	insertAfter: "after",
-	replaceAll: "replaceWith"
-}, function( name, original ) {
-	jQuery.fn[ name ] = function( selector ) {
-		var elems,
-			ret = [],
-			insert = jQuery( selector ),
-			last = insert.length - 1,
-			i = 0;
-
-		for ( ; i <= last; i++ ) {
-			elems = i === last ? this : this.clone( true );
-			jQuery( insert[ i ] )[ original ]( elems );
-
-			// Support: QtWebKit
-			// .get() because push.apply(_, arraylike) throws
-			push.apply( ret, elems.get() );
-		}
-
-		return this.pushStack( ret );
-	};
-} );
-
-
-var iframe,
-	elemdisplay = {
-
-		// Support: Firefox
-		// We have to pre-define these values for FF (#10227)
-		HTML: "block",
-		BODY: "block"
-	};
-
-/**
- * Retrieve the actual display of a element
- * @param {String} name nodeName of the element
- * @param {Object} doc Document object
- */
-
-// Called only from within defaultDisplay
-function actualDisplay( name, doc ) {
-	var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
-
-		display = jQuery.css( elem[ 0 ], "display" );
-
-	// We don't have any data stored on the element,
-	// so use "detach" method as fast way to get rid of the element
-	elem.detach();
-
-	return display;
-}
-
-/**
- * Try to determine the default display value of an element
- * @param {String} nodeName
- */
-function defaultDisplay( nodeName ) {
-	var doc = document,
-		display = elemdisplay[ nodeName ];
-
-	if ( !display ) {
-		display = actualDisplay( nodeName, doc );
-
-		// If the simple way fails, read from inside an iframe
-		if ( display === "none" || !display ) {
-
-			// Use the already-created iframe if possible
-			iframe = ( iframe || jQuery( "<iframe frameborder='0' width='0' height='0'/>" ) )
-				.appendTo( doc.documentElement );
-
-			// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse
-			doc = iframe[ 0 ].contentDocument;
-
-			// Support: IE
-			doc.write();
-			doc.close();
-
-			display = actualDisplay( nodeName, doc );
-			iframe.detach();
-		}
-
-		// Store the correct default display
-		elemdisplay[ nodeName ] = display;
-	}
-
-	return display;
-}
-var rmargin = ( /^margin/ );
-
-var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
-
-var getStyles = function( elem ) {
-
-		// Support: IE<=11+, Firefox<=30+ (#15098, #14150)
-		// IE throws on elements created in popups
-		// FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
-		var view = elem.ownerDocument.defaultView;
-
-		if ( !view || !view.opener ) {
-			view = window;
-		}
-
-		return view.getComputedStyle( elem );
-	};
-
-var swap = function( elem, options, callback, args ) {
-	var ret, name,
-		old = {};
-
-	// Remember the old values, and insert the new ones
-	for ( name in options ) {
-		old[ name ] = elem.style[ name ];
-		elem.style[ name ] = options[ name ];
-	}
-
-	ret = callback.apply( elem, args || [] );
-
-	// Revert the old values
-	for ( name in options ) {
-		elem.style[ name ] = old[ name ];
-	}
-
-	return ret;
-};
-
-
-var documentElement = document.documentElement;
-
-
-
-( function() {
-	var pixelPositionVal, boxSizingReliableVal, pixelMarginRightVal, reliableMarginLeftVal,
-		container = document.createElement( "div" ),
-		div = document.createElement( "div" );
-
-	// Finish early in limited (non-browser) environments
-	if ( !div.style ) {
-		return;
-	}
-
-	// Support: IE9-11+
-	// Style of cloned element affects source element cloned (#8908)
-	div.style.backgroundClip = "content-box";
-	div.cloneNode( true ).style.backgroundClip = "";
-	support.clearCloneStyle = div.style.backgroundClip === "content-box";
-
-	container.style.cssText = "border:0;width:8px;height:0;top:0;left:-9999px;" +
-		"padding:0;margin-top:1px;position:absolute";
-	container.appendChild( div );
-
-	// Executing both pixelPosition & boxSizingReliable tests require only one layout
-	// so they're executed at the same time to save the second computation.
-	function computeStyleTests() {
-		div.style.cssText =
-
-			// Support: Firefox<29, Android 2.3
-			// Vendor-prefix box-sizing
-			"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;" +
-			"position:relative;display:block;" +
-			"margin:auto;border:1px;padding:1px;" +
-			"top:1%;width:50%";
-		div.innerHTML = "";
-		documentElement.appendChild( container );
-
-		var divStyle = window.getComputedStyle( div );
-		pixelPositionVal = divStyle.top !== "1%";
-		reliableMarginLeftVal = divStyle.marginLeft === "2px";
-		boxSizingReliableVal = divStyle.width === "4px";
-
-		// Support: Android 4.0 - 4.3 only
-		// Some styles come back with percentage values, even though they shouldn't
-		div.style.marginRight = "50%";
-		pixelMarginRightVal = divStyle.marginRight === "4px";
-
-		documentElement.removeChild( container );
-	}
-
-	jQuery.extend( support, {
-		pixelPosition: function() {
-
-			// This test is executed only once but we still do memoizing
-			// since we can use the boxSizingReliable pre-computing.
-			// No need to check if the test was already performed, though.
-			computeStyleTests();
-			return pixelPositionVal;
-		},
-		boxSizingReliable: function() {
-			if ( boxSizingReliableVal == null ) {
-				computeStyleTests();
-			}
-			return boxSizingReliableVal;
-		},
-		pixelMarginRight: function() {
-
-			// Support: Android 4.0-4.3
-			// We're checking for boxSizingReliableVal here instead of pixelMarginRightVal
-			// since that compresses better and they're computed together anyway.
-			if ( boxSizingReliableVal == null ) {
-				computeStyleTests();
-			}
-			return pixelMarginRightVal;
-		},
-		reliableMarginLeft: function() {
-
-			// Support: IE <=8 only, Android 4.0 - 4.3 only, Firefox <=3 - 37
-			if ( boxSizingReliableVal == null ) {
-				computeStyleTests();
-			}
-			return reliableMarginLeftVal;
-		},
-		reliableMarginRight: function() {
-
-			// Support: Android 2.3
-			// Check if div with explicit width and no margin-right incorrectly
-			// gets computed margin-right based on width of container. (#3333)
-			// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
-			// This support function is only executed once so no memoizing is needed.
-			var ret,
-				marginDiv = div.appendChild( document.createElement( "div" ) );
-
-			// Reset CSS: box-sizing; display; margin; border; padding
-			marginDiv.style.cssText = div.style.cssText =
-
-				// Support: Android 2.3
-				// Vendor-prefix box-sizing
-				"-webkit-box-sizing:content-box;box-sizing:content-box;" +
-				"display:block;margin:0;border:0;padding:0";
-			marginDiv.style.marginRight = marginDiv.style.width = "0";
-			div.style.width = "1px";
-			documentElement.appendChild( container );
-
-			ret = !parseFloat( window.getComputedStyle( marginDiv ).marginRight );
-
-			documentElement.removeChild( container );
-			div.removeChild( marginDiv );
-
-			return ret;
-		}
-	} );
-} )();
-
-
-function curCSS( elem, name, computed ) {
-	var width, minWidth, maxWidth, ret,
-		style = elem.style;
-
-	computed = computed || getStyles( elem );
-	ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;
-
-	// Support: Opera 12.1x only
-	// Fall back to style even without computed
-	// computed is undefined for elems on document fragments
-	if ( ( ret === "" || ret === undefined ) && !jQuery.contains( elem.ownerDocument, elem ) ) {
-		ret = jQuery.style( elem, name );
-	}
-
-	// Support: IE9
-	// getPropertyValue is only needed for .css('filter') (#12537)
-	if ( computed ) {
-
-		// A tribute to the "awesome hack by Dean Edwards"
-		// Android Browser returns percentage for some values,
-		// but width seems to be reliably pixels.
-		// This is against the CSSOM draft spec:
-		// http://dev.w3.org/csswg/cssom/#resolved-values
-		if ( !support.pixelMarginRight() && rnumnonpx.test( ret ) && rmargin.test( name ) ) {
-
-			// Remember the original values
-			width = style.width;
-			minWidth = style.minWidth;
-			maxWidth = style.maxWidth;
-
-			// Put in the new values to get a computed value out
-			style.minWidth = style.maxWidth = style.width = ret;
-			ret = computed.width;
-
-			// Revert the changed values
-			style.width = width;
-			style.minWidth = minWidth;
-			style.maxWidth = maxWidth;
-		}
-	}
-
-	return ret !== undefined ?
-
-		// Support: IE9-11+
-		// IE returns zIndex value as an integer.
-		ret + "" :
-		ret;
-}
-
-
-function addGetHookIf( conditionFn, hookFn ) {
-
-	// Define the hook, we'll check on the first run if it's really needed.
-	return {
-		get: function() {
-			if ( conditionFn() ) {
-
-				// Hook not needed (or it's not possible to use it due
-				// to missing dependency), remove it.
-				delete this.get;
-				return;
-			}
-
-			// Hook needed; redefine it so that the support test is not executed again.
-			return ( this.get = hookFn ).apply( this, arguments );
-		}
-	};
-}
-
-
-var
-
-	// Swappable if display is none or starts with table
-	// except "table", "table-cell", or "table-caption"
-	// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
-	rdisplayswap = /^(none|table(?!-c[ea]).+)/,
-
-	cssShow = { position: "absolute", visibility: "hidden", display: "block" },
-	cssNormalTransform = {
-		letterSpacing: "0",
-		fontWeight: "400"
-	},
-
-	cssPrefixes = [ "Webkit", "O", "Moz", "ms" ],
-	emptyStyle = document.createElement( "div" ).style;
-
-// Return a css property mapped to a potentially vendor prefixed property
-function vendorPropName( name ) {
-
-	// Shortcut for names that are not vendor prefixed
-	if ( name in emptyStyle ) {
-		return name;
-	}
-
-	// Check for vendor prefixed names
-	var capName = name[ 0 ].toUpperCase() + name.slice( 1 ),
-		i = cssPrefixes.length;
-
-	while ( i-- ) {
-		name = cssPrefixes[ i ] + capName;
-		if ( name in emptyStyle ) {
-			return name;
-		}
-	}
-}
-
-function setPositiveNumber( elem, value, subtract ) {
-
-	// Any relative (+/-) values have already been
-	// normalized at this point
-	var matches = rcssNum.exec( value );
-	return matches ?
-
-		// Guard against undefined "subtract", e.g., when used as in cssHooks
-		Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) :
-		value;
-}
-
-function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {
-	var i = extra === ( isBorderBox ? "border" : "content" ) ?
-
-		// If we already have the right measurement, avoid augmentation
-		4 :
-
-		// Otherwise initialize for horizontal or vertical properties
-		name === "width" ? 1 : 0,
-
-		val = 0;
-
-	for ( ; i < 4; i += 2 ) {
-
-		// Both box models exclude margin, so add it if we want it
-		if ( extra === "margin" ) {
-			val += jQuery.css( elem, extra + cssExpand[ i ], true, styles );
-		}
-
-		if ( isBorderBox ) {
-
-			// border-box includes padding, so remove it if we want content
-			if ( extra === "content" ) {
-				val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
-			}
-
-			// At this point, extra isn't border nor margin, so remove border
-			if ( extra !== "margin" ) {
-				val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
-			}
-		} else {
-
-			// At this point, extra isn't content, so add padding
-			val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
-
-			// At this point, extra isn't content nor padding, so add border
-			if ( extra !== "padding" ) {
-				val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
-			}
-		}
-	}
-
-	return val;
-}
-
-function getWidthOrHeight( elem, name, extra ) {
-
-	// Start with offset property, which is equivalent to the border-box value
-	var valueIsBorderBox = true,
-		val = name === "width" ? elem.offsetWidth : elem.offsetHeight,
-		styles = getStyles( elem ),
-		isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
-
-	// Some non-html elements return undefined for offsetWidth, so check for null/undefined
-	// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285
-	// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668
-	if ( val <= 0 || val == null ) {
-
-		// Fall back to computed then uncomputed css if necessary
-		val = curCSS( elem, name, styles );
-		if ( val < 0 || val == null ) {
-			val = elem.style[ name ];
-		}
-
-		// Computed unit is not pixels. Stop here and return.
-		if ( rnumnonpx.test( val ) ) {
-			return val;
-		}
-
-		// Check for style in case a browser which returns unreliable values
-		// for getComputedStyle silently falls back to the reliable elem.style
-		valueIsBorderBox = isBorderBox &&
-			( support.boxSizingReliable() || val === elem.style[ name ] );
-
-		// Normalize "", auto, and prepare for extra
-		val = parseFloat( val ) || 0;
-	}
-
-	// Use the active box-sizing model to add/subtract irrelevant styles
-	return ( val +
-		augmentWidthOrHeight(
-			elem,
-			name,
-			extra || ( isBorderBox ? "border" : "content" ),
-			valueIsBorderBox,
-			styles
-		)
-	) + "px";
-}
-
-function showHide( elements, show ) {
-	var display, elem, hidden,
-		values = [],
-		index = 0,
-		length = elements.length;
-
-	for ( ; index < length; index++ ) {
-		elem = elements[ index ];
-		if ( !elem.style ) {
-			continue;
-		}
-
-		values[ index ] = dataPriv.get( elem, "olddisplay" );
-		display = elem.style.display;
-		if ( show ) {
-
-			// Reset the inline display of this element to learn if it is
-			// being hidden by cascaded rules or not
-			if ( !values[ index ] && display === "none" ) {
-				elem.style.display = "";
-			}
-
-			// Set elements which have been overridden with display: none
-			// in a stylesheet to whatever the default browser style is
-			// for such an element
-			if ( elem.style.display === "" && isHidden( elem ) ) {
-				values[ index ] = dataPriv.access(
-					elem,
-					"olddisplay",
-					defaultDisplay( elem.nodeName )
-				);
-			}
-		} else {
-			hidden = isHidden( elem );
-
-			if ( display !== "none" || !hidden ) {
-				dataPriv.set(
-					elem,
-					"olddisplay",
-					hidden ? display : jQuery.css( elem, "display" )
-				);
-			}
-		}
-	}
-
-	// Set the display of most of the elements in a second loop
-	// to avoid the constant reflow
-	for ( index = 0; index < length; index++ ) {
-		elem = elements[ index ];
-		if ( !elem.style ) {
-			continue;
-		}
-		if ( !show || elem.style.display === "none" || elem.style.display === "" ) {
-			elem.style.display = show ? values[ index ] || "" : "none";
-		}
-	}
-
-	return elements;
-}
-
-jQuery.extend( {
-
-	// Add in style property hooks for overriding the default
-	// behavior of getting and setting a style property
-	cssHooks: {
-		opacity: {
-			get: function( elem, computed ) {
-				if ( computed ) {
-
-					// We should always get a number back from opacity
-					var ret = curCSS( elem, "opacity" );
-					return ret === "" ? "1" : ret;
-				}
-			}
-		}
-	},
-
-	// Don't automatically add "px" to these possibly-unitless properties
-	cssNumber: {
-		"animationIterationCount": true,
-		"columnCount": true,
-		"fillOpacity": true,
-		"flexGrow": true,
-		"flexShrink": true,
-		"fontWeight": true,
-		"lineHeight": true,
-		"opacity": true,
-		"order": true,
-		"orphans": true,
-		"widows": true,
-		"zIndex": true,
-		"zoom": true
-	},
-
-	// Add in properties whose names you wish to fix before
-	// setting or getting the value
-	cssProps: {
-		"float": "cssFloat"
-	},
-
-	// Get and set the style property on a DOM Node
-	style: function( elem, name, value, extra ) {
-
-		// Don't set styles on text and comment nodes
-		if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
-			return;
-		}
-
-		// Make sure that we're working with the right name
-		var ret, type, hooks,
-			origName = jQuery.camelCase( name ),
-			style = elem.style;
-
-		name = jQuery.cssProps[ origName ] ||
-			( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );
-
-		// Gets hook for the prefixed version, then unprefixed version
-		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
-
-		// Check if we're setting a value
-		if ( value !== undefined ) {
-			type = typeof value;
-
-			// Convert "+=" or "-=" to relative numbers (#7345)
-			if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {
-				value = adjustCSS( elem, name, ret );
-
-				// Fixes bug #9237
-				type = "number";
-			}
-
-			// Make sure that null and NaN values aren't set (#7116)
-			if ( value == null || value !== value ) {
-				return;
-			}
-
-			// If a number was passed in, add the unit (except for certain CSS properties)
-			if ( type === "number" ) {
-				value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" );
-			}
-
-			// Support: IE9-11+
-			// background-* props affect original clone's values
-			if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
-				style[ name ] = "inherit";
-			}
-
-			// If a hook was provided, use that value, otherwise just set the specified value
-			if ( !hooks || !( "set" in hooks ) ||
-				( value = hooks.set( elem, value, extra ) ) !== undefined ) {
-
-				style[ name ] = value;
-			}
-
-		} else {
-
-			// If a hook was provided get the non-computed value from there
-			if ( hooks && "get" in hooks &&
-				( ret = hooks.get( elem, false, extra ) ) !== undefined ) {
-
-				return ret;
-			}
-
-			// Otherwise just get the value from the style object
-			return style[ name ];
-		}
-	},
-
-	css: function( elem, name, extra, styles ) {
-		var val, num, hooks,
-			origName = jQuery.camelCase( name );
-
-		// Make sure that we're working with the right name
-		name = jQuery.cssProps[ origName ] ||
-			( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );
-
-		// Try prefixed name followed by the unprefixed name
-		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
-
-		// If a hook was provided get the computed value from there
-		if ( hooks && "get" in hooks ) {
-			val = hooks.get( elem, true, extra );
-		}
-
-		// Otherwise, if a way to get the computed value exists, use that
-		if ( val === undefined ) {
-			val = curCSS( elem, name, styles );
-		}
-
-		// Convert "normal" to computed value
-		if ( val === "normal" && name in cssNormalTransform ) {
-			val = cssNormalTransform[ name ];
-		}
-
-		// Make numeric if forced or a qualifier was provided and val looks numeric
-		if ( extra === "" || extra ) {
-			num = parseFloat( val );
-			return extra === true || isFinite( num ) ? num || 0 : val;
-		}
-		return val;
-	}
-} );
-
-jQuery.each( [ "height", "width" ], function( i, name ) {
-	jQuery.cssHooks[ name ] = {
-		get: function( elem, computed, extra ) {
-			if ( computed ) {
-
-				// Certain elements can have dimension info if we invisibly show them
-				// but it must have a current display style that would benefit
-				return rdisplayswap.test( jQuery.css( elem, "display" ) ) &&
-					elem.offsetWidth === 0 ?
-						swap( elem, cssShow, function() {
-							return getWidthOrHeight( elem, name, extra );
-						} ) :
-						getWidthOrHeight( elem, name, extra );
-			}
-		},
-
-		set: function( elem, value, extra ) {
-			var matches,
-				styles = extra && getStyles( elem ),
-				subtract = extra && augmentWidthOrHeight(
-					elem,
-					name,
-					extra,
-					jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
-					styles
-				);
-
-			// Convert to pixels if value adjustment is needed
-			if ( subtract && ( matches = rcssNum.exec( value ) ) &&
-				( matches[ 3 ] || "px" ) !== "px" ) {
-
-				elem.style[ name ] = value;
-				value = jQuery.css( elem, name );
-			}
-
-			return setPositiveNumber( elem, value, subtract );
-		}
-	};
-} );
-
-jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,
-	function( elem, computed ) {
-		if ( computed ) {
-			return ( parseFloat( curCSS( elem, "marginLeft" ) ) ||
-				elem.getBoundingClientRect().left -
-					swap( elem, { marginLeft: 0 }, function() {
-						return elem.getBoundingClientRect().left;
-					} )
-				) + "px";
-		}
-	}
-);
-
-// Support: Android 2.3
-jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,
-	function( elem, computed ) {
-		if ( computed ) {
-			return swap( elem, { "display": "inline-block" },
-				curCSS, [ elem, "marginRight" ] );
-		}
-	}
-);
-
-// These hooks are used by animate to expand properties
-jQuery.each( {
-	margin: "",
-	padding: "",
-	border: "Width"
-}, function( prefix, suffix ) {
-	jQuery.cssHooks[ prefix + suffix ] = {
-		expand: function( value ) {
-			var i = 0,
-				expanded = {},
-
-				// Assumes a single number if not a string
-				parts = typeof value === "string" ? value.split( " " ) : [ value ];
-
-			for ( ; i < 4; i++ ) {
-				expanded[ prefix + cssExpand[ i ] + suffix ] =
-					parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
-			}
-
-			return expanded;
-		}
-	};
-
-	if ( !rmargin.test( prefix ) ) {
-		jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
-	}
-} );
-
-jQuery.fn.extend( {
-	css: function( name, value ) {
-		return access( this, function( elem, name, value ) {
-			var styles, len,
-				map = {},
-				i = 0;
-
-			if ( jQuery.isArray( name ) ) {
-				styles = getStyles( elem );
-				len = name.length;
-
-				for ( ; i < len; i++ ) {
-					map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
-				}
-
-				return map;
-			}
-
-			return value !== undefined ?
-				jQuery.style( elem, name, value ) :
-				jQuery.css( elem, name );
-		}, name, value, arguments.length > 1 );
-	},
-	show: function() {
-		return showHide( this, true );
-	},
-	hide: function() {
-		return showHide( this );
-	},
-	toggle: function( state ) {
-		if ( typeof state === "boolean" ) {
-			return state ? this.show() : this.hide();
-		}
-
-		return this.each( function() {
-			if ( isHidden( this ) ) {
-				jQuery( this ).show();
-			} else {
-				jQuery( this ).hide();
-			}
-		} );
-	}
-} );
-
-
-function Tween( elem, options, prop, end, easing ) {
-	return new Tween.prototype.init( elem, options, prop, end, easing );
-}
-jQuery.Tween = Tween;
-
-Tween.prototype = {
-	constructor: Tween,
-	init: function( elem, options, prop, end, easing, unit ) {
-		this.elem = elem;
-		this.prop = prop;
-		this.easing = easing || jQuery.easing._default;
-		this.options = options;
-		this.start = this.now = this.cur();
-		this.end = end;
-		this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
-	},
-	cur: function() {
-		var hooks = Tween.propHooks[ this.prop ];
-
-		return hooks && hooks.get ?
-			hooks.get( this ) :
-			Tween.propHooks._default.get( this );
-	},
-	run: function( percent ) {
-		var eased,
-			hooks = Tween.propHooks[ this.prop ];
-
-		if ( this.options.duration ) {
-			this.pos = eased = jQuery.easing[ this.easing ](
-				percent, this.options.duration * percent, 0, 1, this.options.duration
-			);
-		} else {
-			this.pos = eased = percent;
-		}
-		this.now = ( this.end - this.start ) * eased + this.start;
-
-		if ( this.options.step ) {
-			this.options.step.call( this.elem, this.now, this );
-		}
-
-		if ( hooks && hooks.set ) {
-			hooks.set( this );
-		} else {
-			Tween.propHooks._default.set( this );
-		}
-		return this;
-	}
-};
-
-Tween.prototype.init.prototype = Tween.prototype;
-
-Tween.propHooks = {
-	_default: {
-		get: function( tween ) {
-			var result;
-
-			// Use a property on the element directly when it is not a DOM element,
-			// or when there is no matching style property that exists.
-			if ( tween.elem.nodeType !== 1 ||
-				tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {
-				return tween.elem[ tween.prop ];
-			}
-
-			// Passing an empty string as a 3rd parameter to .css will automatically
-			// attempt a parseFloat and fallback to a string if the parse fails.
-			// Simple values such as "10px" are parsed to Float;
-			// complex values such as "rotate(1rad)" are returned as-is.
-			result = jQuery.css( tween.elem, tween.prop, "" );
-
-			// Empty strings, null, undefined and "auto" are converted to 0.
-			return !result || result === "auto" ? 0 : result;
-		},
-		set: function( tween ) {
-
-			// Use step hook for back compat.
-			// Use cssHook if its there.
-			// Use .style if available and use plain properties where available.
-			if ( jQuery.fx.step[ tween.prop ] ) {
-				jQuery.fx.step[ tween.prop ]( tween );
-			} else if ( tween.elem.nodeType === 1 &&
-				( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null ||
-					jQuery.cssHooks[ tween.prop ] ) ) {
-				jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
-			} else {
-				tween.elem[ tween.prop ] = tween.now;
-			}
-		}
-	}
-};
-
-// Support: IE9
-// Panic based approach to setting things on disconnected nodes
-Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
-	set: function( tween ) {
-		if ( tween.elem.nodeType && tween.elem.parentNode ) {
-			tween.elem[ tween.prop ] = tween.now;
-		}
-	}
-};
-
-jQuery.easing = {
-	linear: function( p ) {
-		return p;
-	},
-	swing: function( p ) {
-		return 0.5 - Math.cos( p * Math.PI ) / 2;
-	},
-	_default: "swing"
-};
-
-jQuery.fx = Tween.prototype.init;
-
-// Back Compat <1.8 extension point
-jQuery.fx.step = {};
-
-
-
-
-var
-	fxNow, timerId,
-	rfxtypes = /^(?:toggle|show|hide)$/,
-	rrun = /queueHooks$/;
-
-// Animations created synchronously will run synchronously
-function createFxNow() {
-	window.setTimeout( function() {
-		fxNow = undefined;
-	} );
-	return ( fxNow = jQuery.now() );
-}
-
-// Generate parameters to create a standard animation
-function genFx( type, includeWidth ) {
-	var which,
-		i = 0,
-		attrs = { height: type };
-
-	// If we include width, step value is 1 to do all cssExpand values,
-	// otherwise step value is 2 to skip over Left and Right
-	includeWidth = includeWidth ? 1 : 0;
-	for ( ; i < 4 ; i += 2 - includeWidth ) {
-		which = cssExpand[ i ];
-		attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
-	}
-
-	if ( includeWidth ) {
-		attrs.opacity = attrs.width = type;
-	}
-
-	return attrs;
-}
-
-function createTween( value, prop, animation ) {
-	var tween,
-		collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ),
-		index = 0,
-		length = collection.length;
-	for ( ; index < length; index++ ) {
-		if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {
-
-			// We're done with this property
-			return tween;
-		}
-	}
-}
-
-function defaultPrefilter( elem, props, opts ) {
-	/* jshint validthis: true */
-	var prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,
-		anim = this,
-		orig = {},
-		style = elem.style,
-		hidden = elem.nodeType && isHidden( elem ),
-		dataShow = dataPriv.get( elem, "fxshow" );
-
-	// Handle queue: false promises
-	if ( !opts.queue ) {
-		hooks = jQuery._queueHooks( elem, "fx" );
-		if ( hooks.unqueued == null ) {
-			hooks.unqueued = 0;
-			oldfire = hooks.empty.fire;
-			hooks.empty.fire = function() {
-				if ( !hooks.unqueued ) {
-					oldfire();
-				}
-			};
-		}
-		hooks.unqueued++;
-
-		anim.always( function() {
-
-			// Ensure the complete handler is called before this completes
-			anim.always( function() {
-				hooks.unqueued--;
-				if ( !jQuery.queue( elem, "fx" ).length ) {
-					hooks.empty.fire();
-				}
-			} );
-		} );
-	}
-
-	// Height/width overflow pass
-	if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
-
-		// Make sure that nothing sneaks out
-		// Record all 3 overflow attributes because IE9-10 do not
-		// change the overflow attribute when overflowX and
-		// overflowY are set to the same value
-		opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
-
-		// Set display property to inline-block for height/width
-		// animations on inline elements that are having width/height animated
-		display = jQuery.css( elem, "display" );
-
-		// Test default display if display is currently "none"
-		checkDisplay = display === "none" ?
-			dataPriv.get( elem, "olddisplay" ) || defaultDisplay( elem.nodeName ) : display;
-
-		if ( checkDisplay === "inline" && jQuery.css( elem, "float" ) === "none" ) {
-			style.display = "inline-block";
-		}
-	}
-
-	if ( opts.overflow ) {
-		style.overflow = "hidden";
-		anim.always( function() {
-			style.overflow = opts.overflow[ 0 ];
-			style.overflowX = opts.overflow[ 1 ];
-			style.overflowY = opts.overflow[ 2 ];
-		} );
-	}
-
-	// show/hide pass
-	for ( prop in props ) {
-		value = props[ prop ];
-		if ( rfxtypes.exec( value ) ) {
-			delete props[ prop ];
-			toggle = toggle || value === "toggle";
-			if ( value === ( hidden ? "hide" : "show" ) ) {
-
-				// If there is dataShow left over from a stopped hide or show
-				// and we are going to proceed with show, we should pretend to be hidden
-				if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
-					hidden = true;
-				} else {
-					continue;
-				}
-			}
-			orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
-
-		// Any non-fx value stops us from restoring the original display value
-		} else {
-			display = undefined;
-		}
-	}
-
-	if ( !jQuery.isEmptyObject( orig ) ) {
-		if ( dataShow ) {
-			if ( "hidden" in dataShow ) {
-				hidden = dataShow.hidden;
-			}
-		} else {
-			dataShow = dataPriv.access( elem, "fxshow", {} );
-		}
-
-		// Store state if its toggle - enables .stop().toggle() to "reverse"
-		if ( toggle ) {
-			dataShow.hidden = !hidden;
-		}
-		if ( hidden ) {
-			jQuery( elem ).show();
-		} else {
-			anim.done( function() {
-				jQuery( elem ).hide();
-			} );
-		}
-		anim.done( function() {
-			var prop;
-
-			dataPriv.remove( elem, "fxshow" );
-			for ( prop in orig ) {
-				jQuery.style( elem, prop, orig[ prop ] );
-			}
-		} );
-		for ( prop in orig ) {
-			tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
-
-			if ( !( prop in dataShow ) ) {
-				dataShow[ prop ] = tween.start;
-				if ( hidden ) {
-					tween.end = tween.start;
-					tween.start = prop === "width" || prop === "height" ? 1 : 0;
-				}
-			}
-		}
-
-	// If this is a noop like .hide().hide(), restore an overwritten display value
-	} else if ( ( display === "none" ? defaultDisplay( elem.nodeName ) : display ) === "inline" ) {
-		style.display = display;
-	}
-}
-
-function propFilter( props, specialEasing ) {
-	var index, name, easing, value, hooks;
-
-	// camelCase, specialEasing and expand cssHook pass
-	for ( index in props ) {
-		name = jQuery.camelCase( index );
-		easing = specialEasing[ name ];
-		value = props[ index ];
-		if ( jQuery.isArray( value ) ) {
-			easing = value[ 1 ];
-			value = props[ index ] = value[ 0 ];
-		}
-
-		if ( index !== name ) {
-			props[ name ] = value;
-			delete props[ index ];
-		}
-
-		hooks = jQuery.cssHooks[ name ];
-		if ( hooks && "expand" in hooks ) {
-			value = hooks.expand( value );
-			delete props[ name ];
-
-			// Not quite $.extend, this won't overwrite existing keys.
-			// Reusing 'index' because we have the correct "name"
-			for ( index in value ) {
-				if ( !( index in props ) ) {
-					props[ index ] = value[ index ];
-					specialEasing[ index ] = easing;
-				}
-			}
-		} else {
-			specialEasing[ name ] = easing;
-		}
-	}
-}
-
-function Animation( elem, properties, options ) {
-	var result,
-		stopped,
-		index = 0,
-		length = Animation.prefilters.length,
-		deferred = jQuery.Deferred().always( function() {
-
-			// Don't match elem in the :animated selector
-			delete tick.elem;
-		} ),
-		tick = function() {
-			if ( stopped ) {
-				return false;
-			}
-			var currentTime = fxNow || createFxNow(),
-				remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
-
-				// Support: Android 2.3
-				// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)
-				temp = remaining / animation.duration || 0,
-				percent = 1 - temp,
-				index = 0,
-				length = animation.tweens.length;
-
-			for ( ; index < length ; index++ ) {
-				animation.tweens[ index ].run( percent );
-			}
-
-			deferred.notifyWith( elem, [ animation, percent, remaining ] );
-
-			if ( percent < 1 && length ) {
-				return remaining;
-			} else {
-				deferred.resolveWith( elem, [ animation ] );
-				return false;
-			}
-		},
-		animation = deferred.promise( {
-			elem: elem,
-			props: jQuery.extend( {}, properties ),
-			opts: jQuery.extend( true, {
-				specialEasing: {},
-				easing: jQuery.easing._default
-			}, options ),
-			originalProperties: properties,
-			originalOptions: options,
-			startTime: fxNow || createFxNow(),
-			duration: options.duration,
-			tweens: [],
-			createTween: function( prop, end ) {
-				var tween = jQuery.Tween( elem, animation.opts, prop, end,
-						animation.opts.specialEasing[ prop ] || animation.opts.easing );
-				animation.tweens.push( tween );
-				return tween;
-			},
-			stop: function( gotoEnd ) {
-				var index = 0,
-
-					// If we are going to the end, we want to run all the tweens
-					// otherwise we skip this part
-					length = gotoEnd ? animation.tweens.length : 0;
-				if ( stopped ) {
-					return this;
-				}
-				stopped = true;
-				for ( ; index < length ; index++ ) {
-					animation.tweens[ index ].run( 1 );
-				}
-
-				// Resolve when we played the last frame; otherwise, reject
-				if ( gotoEnd ) {
-					deferred.notifyWith( elem, [ animation, 1, 0 ] );
-					deferred.resolveWith( elem, [ animation, gotoEnd ] );
-				} else {
-					deferred.rejectWith( elem, [ animation, gotoEnd ] );
-				}
-				return this;
-			}
-		} ),
-		props = animation.props;
-
-	propFilter( props, animation.opts.specialEasing );
-
-	for ( ; index < length ; index++ ) {
-		result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );
-		if ( result ) {
-			if ( jQuery.isFunction( result.stop ) ) {
-				jQuery._queueHooks( animation.elem, animation.opts.queue ).stop =
-					jQuery.proxy( result.stop, result );
-			}
-			return result;
-		}
-	}
-
-	jQuery.map( props, createTween, animation );
-
-	if ( jQuery.isFunction( animation.opts.start ) ) {
-		animation.opts.start.call( elem, animation );
-	}
-
-	jQuery.fx.timer(
-		jQuery.extend( tick, {
-			elem: elem,
-			anim: animation,
-			queue: animation.opts.queue
-		} )
-	);
-
-	// attach callbacks from options
-	return animation.progress( animation.opts.progress )
-		.done( animation.opts.done, animation.opts.complete )
-		.fail( animation.opts.fail )
-		.always( animation.opts.always );
-}
-
-jQuery.Animation = jQuery.extend( Animation, {
-	tweeners: {
-		"*": [ function( prop, value ) {
-			var tween = this.createTween( prop, value );
-			adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );
-			return tween;
-		} ]
-	},
-
-	tweener: function( props, callback ) {
-		if ( jQuery.isFunction( props ) ) {
-			callback = props;
-			props = [ "*" ];
-		} else {
-			props = props.match( rnotwhite );
-		}
-
-		var prop,
-			index = 0,
-			length = props.length;
-
-		for ( ; index < length ; index++ ) {
-			prop = props[ index ];
-			Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];
-			Animation.tweeners[ prop ].unshift( callback );
-		}
-	},
-
-	prefilters: [ defaultPrefilter ],
-
-	prefilter: function( callback, prepend ) {
-		if ( prepend ) {
-			Animation.prefilters.unshift( callback );
-		} else {
-			Animation.prefilters.push( callback );
-		}
-	}
-} );
-
-jQuery.speed = function( speed, easing, fn ) {
-	var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
-		complete: fn || !fn && easing ||
-			jQuery.isFunction( speed ) && speed,
-		duration: speed,
-		easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
-	};
-
-	opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ?
-		opt.duration : opt.duration in jQuery.fx.speeds ?
-			jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
-
-	// Normalize opt.queue - true/undefined/null -> "fx"
-	if ( opt.queue == null || opt.queue === true ) {
-		opt.queue = "fx";
-	}
-
-	// Queueing
-	opt.old = opt.complete;
-
-	opt.complete = function() {
-		if ( jQuery.isFunction( opt.old ) ) {
-			opt.old.call( this );
-		}
-
-		if ( opt.queue ) {
-			jQuery.dequeue( this, opt.queue );
-		}
-	};
-
-	return opt;
-};
-
-jQuery.fn.extend( {
-	fadeTo: function( speed, to, easing, callback ) {
-
-		// Show any hidden elements after setting opacity to 0
-		return this.filter( isHidden ).css( "opacity", 0 ).show()
-
-			// Animate to the value specified
-			.end().animate( { opacity: to }, speed, easing, callback );
-	},
-	animate: function( prop, speed, easing, callback ) {
-		var empty = jQuery.isEmptyObject( prop ),
-			optall = jQuery.speed( speed, easing, callback ),
-			doAnimation = function() {
-
-				// Operate on a copy of prop so per-property easing won't be lost
-				var anim = Animation( this, jQuery.extend( {}, prop ), optall );
-
-				// Empty animations, or finishing resolves immediately
-				if ( empty || dataPriv.get( this, "finish" ) ) {
-					anim.stop( true );
-				}
-			};
-			doAnimation.finish = doAnimation;
-
-		return empty || optall.queue === false ?
-			this.each( doAnimation ) :
-			this.queue( optall.queue, doAnimation );
-	},
-	stop: function( type, clearQueue, gotoEnd ) {
-		var stopQueue = function( hooks ) {
-			var stop = hooks.stop;
-			delete hooks.stop;
-			stop( gotoEnd );
-		};
-
-		if ( typeof type !== "string" ) {
-			gotoEnd = clearQueue;
-			clearQueue = type;
-			type = undefined;
-		}
-		if ( clearQueue && type !== false ) {
-			this.queue( type || "fx", [] );
-		}
-
-		return this.each( function() {
-			var dequeue = true,
-				index = type != null && type + "queueHooks",
-				timers = jQuery.timers,
-				data = dataPriv.get( this );
-
-			if ( index ) {
-				if ( data[ index ] && data[ index ].stop ) {
-					stopQueue( data[ index ] );
-				}
-			} else {
-				for ( index in data ) {
-					if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
-						stopQueue( data[ index ] );
-					}
-				}
-			}
-
-			for ( index = timers.length; index--; ) {
-				if ( timers[ index ].elem === this &&
-					( type == null || timers[ index ].queue === type ) ) {
-
-					timers[ index ].anim.stop( gotoEnd );
-					dequeue = false;
-					timers.splice( index, 1 );
-				}
-			}
-
-			// Start the next in the queue if the last step wasn't forced.
-			// Timers currently will call their complete callbacks, which
-			// will dequeue but only if they were gotoEnd.
-			if ( dequeue || !gotoEnd ) {
-				jQuery.dequeue( this, type );
-			}
-		} );
-	},
-	finish: function( type ) {
-		if ( type !== false ) {
-			type = type || "fx";
-		}
-		return this.each( function() {
-			var index,
-				data = dataPriv.get( this ),
-				queue = data[ type + "queue" ],
-				hooks = data[ type + "queueHooks" ],
-				timers = jQuery.timers,
-				length = queue ? queue.length : 0;
-
-			// Enable finishing flag on private data
-			data.finish = true;
-
-			// Empty the queue first
-			jQuery.queue( this, type, [] );
-
-			if ( hooks && hooks.stop ) {
-				hooks.stop.call( this, true );
-			}
-
-			// Look for any active animations, and finish them
-			for ( index = timers.length; index--; ) {
-				if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
-					timers[ index ].anim.stop( true );
-					timers.splice( index, 1 );
-				}
-			}
-
-			// Look for any animations in the old queue and finish them
-			for ( index = 0; index < length; index++ ) {
-				if ( queue[ index ] && queue[ index ].finish ) {
-					queue[ index ].finish.call( this );
-				}
-			}
-
-			// Turn off finishing flag
-			delete data.finish;
-		} );
-	}
-} );
-
-jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) {
-	var cssFn = jQuery.fn[ name ];
-	jQuery.fn[ name ] = function( speed, easing, callback ) {
-		return speed == null || typeof speed === "boolean" ?
-			cssFn.apply( this, arguments ) :
-			this.animate( genFx( name, true ), speed, easing, callback );
-	};
-} );
-
-// Generate shortcuts for custom animations
-jQuery.each( {
-	slideDown: genFx( "show" ),
-	slideUp: genFx( "hide" ),
-	slideToggle: genFx( "toggle" ),
-	fadeIn: { opacity: "show" },
-	fadeOut: { opacity: "hide" },
-	fadeToggle: { opacity: "toggle" }
-}, function( name, props ) {
-	jQuery.fn[ name ] = function( speed, easing, callback ) {
-		return this.animate( props, speed, easing, callback );
-	};
-} );
-
-jQuery.timers = [];
-jQuery.fx.tick = function() {
-	var timer,
-		i = 0,
-		timers = jQuery.timers;
-
-	fxNow = jQuery.now();
-
-	for ( ; i < timers.length; i++ ) {
-		timer = timers[ i ];
-
-		// Checks the timer has not already been removed
-		if ( !timer() && timers[ i ] === timer ) {
-			timers.splice( i--, 1 );
-		}
-	}
-
-	if ( !timers.length ) {
-		jQuery.fx.stop();
-	}
-	fxNow = undefined;
-};
-
-jQuery.fx.timer = function( timer ) {
-	jQuery.timers.push( timer );
-	if ( timer() ) {
-		jQuery.fx.start();
-	} else {
-		jQuery.timers.pop();
-	}
-};
-
-jQuery.fx.interval = 13;
-jQuery.fx.start = function() {
-	if ( !timerId ) {
-		timerId = window.setInterval( jQuery.fx.tick, jQuery.fx.interval );
-	}
-};
-
-jQuery.fx.stop = function() {
-	window.clearInterval( timerId );
-
-	timerId = null;
-};
-
-jQuery.fx.speeds = {
-	slow: 600,
-	fast: 200,
-
-	// Default speed
-	_default: 400
-};
-
-
-// Based off of the plugin by Clint Helfers, with permission.
-// http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/
-jQuery.fn.delay = function( time, type ) {
-	time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
-	type = type || "fx";
-
-	return this.queue( type, function( next, hooks ) {
-		var timeout = window.setTimeout( next, time );
-		hooks.stop = function() {
-			window.clearTimeout( timeout );
-		};
-	} );
-};
-
-
-( function() {
-	var input = document.createElement( "input" ),
-		select = document.createElement( "select" ),
-		opt = select.appendChild( document.createElement( "option" ) );
-
-	input.type = "checkbox";
-
-	// Support: iOS<=5.1, Android<=4.2+
-	// Default value for a checkbox should be "on"
-	support.checkOn = input.value !== "";
-
-	// Support: IE<=11+
-	// Must access selectedIndex to make default options select
-	support.optSelected = opt.selected;
-
-	// Support: Android<=2.3
-	// Options inside disabled selects are incorrectly marked as disabled
-	select.disabled = true;
-	support.optDisabled = !opt.disabled;
-
-	// Support: IE<=11+
-	// An input loses its value after becoming a radio
-	input = document.createElement( "input" );
-	input.value = "t";
-	input.type = "radio";
-	support.radioValue = input.value === "t";
-} )();
-
-
-var boolHook,
-	attrHandle = jQuery.expr.attrHandle;
-
-jQuery.fn.extend( {
-	attr: function( name, value ) {
-		return access( this, jQuery.attr, name, value, arguments.length > 1 );
-	},
-
-	removeAttr: function( name ) {
-		return this.each( function() {
-			jQuery.removeAttr( this, name );
-		} );
-	}
-} );
-
-jQuery.extend( {
-	attr: function( elem, name, value ) {
-		var ret, hooks,
-			nType = elem.nodeType;
-
-		// Don't get/set attributes on text, comment and attribute nodes
-		if ( nType === 3 || nType === 8 || nType === 2 ) {
-			return;
-		}
-
-		// Fallback to prop when attributes are not supported
-		if ( typeof elem.getAttribute === "undefined" ) {
-			return jQuery.prop( elem, name, value );
-		}
-
-		// All attributes are lowercase
-		// Grab necessary hook if one is defined
-		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
-			name = name.toLowerCase();
-			hooks = jQuery.attrHooks[ name ] ||
-				( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );
-		}
-
-		if ( value !== undefined ) {
-			if ( value === null ) {
-				jQuery.removeAttr( elem, name );
-				return;
-			}
-
-			if ( hooks && "set" in hooks &&
-				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
-				return ret;
-			}
-
-			elem.setAttribute( name, value + "" );
-			return value;
-		}
-
-		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
-			return ret;
-		}
-
-		ret = jQuery.find.attr( elem, name );
-
-		// Non-existent attributes return null, we normalize to undefined
-		return ret == null ? undefined : ret;
-	},
-
-	attrHooks: {
-		type: {
-			set: function( elem, value ) {
-				if ( !support.radioValue && value === "radio" &&
-					jQuery.nodeName( elem, "input" ) ) {
-					var val = elem.value;
-					elem.setAttribute( "type", value );
-					if ( val ) {
-						elem.value = val;
-					}
-					return value;
-				}
-			}
-		}
-	},
-
-	removeAttr: function( elem, value ) {
-		var name, propName,
-			i = 0,
-			attrNames = value && value.match( rnotwhite );
-
-		if ( attrNames && elem.nodeType === 1 ) {
-			while ( ( name = attrNames[ i++ ] ) ) {
-				propName = jQuery.propFix[ name ] || name;
-
-				// Boolean attributes get special treatment (#10870)
-				if ( jQuery.expr.match.bool.test( name ) ) {
-
-					// Set corresponding property to false
-					elem[ propName ] = false;
-				}
-
-				elem.removeAttribute( name );
-			}
-		}
-	}
-} );
-
-// Hooks for boolean attributes
-boolHook = {
-	set: function( elem, value, name ) {
-		if ( value === false ) {
-
-			// Remove boolean attributes when set to false
-			jQuery.removeAttr( elem, name );
-		} else {
-			elem.setAttribute( name, name );
-		}
-		return name;
-	}
-};
-jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
-	var getter = attrHandle[ name ] || jQuery.find.attr;
-
-	attrHandle[ name ] = function( elem, name, isXML ) {
-		var ret, handle;
-		if ( !isXML ) {
-
-			// Avoid an infinite loop by temporarily removing this function from the getter
-			handle = attrHandle[ name ];
-			attrHandle[ name ] = ret;
-			ret = getter( elem, name, isXML ) != null ?
-				name.toLowerCase() :
-				null;
-			attrHandle[ name ] = handle;
-		}
-		return ret;
-	};
-} );
-
-
-
-
-var rfocusable = /^(?:input|select|textarea|button)$/i,
-	rclickable = /^(?:a|area)$/i;
-
-jQuery.fn.extend( {
-	prop: function( name, value ) {
-		return access( this, jQuery.prop, name, value, arguments.length > 1 );
-	},
-
-	removeProp: function( name ) {
-		return this.each( function() {
-			delete this[ jQuery.propFix[ name ] || name ];
-		} );
-	}
-} );
-
-jQuery.extend( {
-	prop: function( elem, name, value ) {
-		var ret, hooks,
-			nType = elem.nodeType;
-
-		// Don't get/set properties on text, comment and attribute nodes
-		if ( nType === 3 || nType === 8 || nType === 2 ) {
-			return;
-		}
-
-		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
-
-			// Fix name and attach hooks
-			name = jQuery.propFix[ name ] || name;
-			hooks = jQuery.propHooks[ name ];
-		}
-
-		if ( value !== undefined ) {
-			if ( hooks && "set" in hooks &&
-				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
-				return ret;
-			}
-
-			return ( elem[ name ] = value );
-		}
-
-		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
-			return ret;
-		}
-
-		return elem[ name ];
-	},
-
-	propHooks: {
-		tabIndex: {
-			get: function( elem ) {
-
-				// elem.tabIndex doesn't always return the
-				// correct value when it hasn't been explicitly set
-				// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
-				// Use proper attribute retrieval(#12072)
-				var tabindex = jQuery.find.attr( elem, "tabindex" );
-
-				return tabindex ?
-					parseInt( tabindex, 10 ) :
-					rfocusable.test( elem.nodeName ) ||
-						rclickable.test( elem.nodeName ) && elem.href ?
-							0 :
-							-1;
-			}
-		}
-	},
-
-	propFix: {
-		"for": "htmlFor",
-		"class": "className"
-	}
-} );
-
-// Support: IE <=11 only
-// Accessing the selectedIndex property
-// forces the browser to respect setting selected
-// on the option
-// The getter ensures a default option is selected
-// when in an optgroup
-if ( !support.optSelected ) {
-	jQuery.propHooks.selected = {
-		get: function( elem ) {
-			var parent = elem.parentNode;
-			if ( parent && parent.parentNode ) {
-				parent.parentNode.selectedIndex;
-			}
-			return null;
-		},
-		set: function( elem ) {
-			var parent = elem.parentNode;
-			if ( parent ) {
-				parent.selectedIndex;
-
-				if ( parent.parentNode ) {
-					parent.parentNode.selectedIndex;
-				}
-			}
-		}
-	};
-}
-
-jQuery.each( [
-	"tabIndex",
-	"readOnly",
-	"maxLength",
-	"cellSpacing",
-	"cellPadding",
-	"rowSpan",
-	"colSpan",
-	"useMap",
-	"frameBorder",
-	"contentEditable"
-], function() {
-	jQuery.propFix[ this.toLowerCase() ] = this;
-} );
-
-
-
-
-var rclass = /[\t\r\n\f]/g;
-
-function getClass( elem ) {
-	return elem.getAttribute && elem.getAttribute( "class" ) || "";
-}
-
-jQuery.fn.extend( {
-	addClass: function( value ) {
-		var classes, elem, cur, curValue, clazz, j, finalValue,
-			i = 0;
-
-		if ( jQuery.isFunction( value ) ) {
-			return this.each( function( j ) {
-				jQuery( this ).addClass( value.call( this, j, getClass( this ) ) );
-			} );
-		}
-
-		if ( typeof value === "string" && value ) {
-			classes = value.match( rnotwhite ) || [];
-
-			while ( ( elem = this[ i++ ] ) ) {
-				curValue = getClass( elem );
-				cur = elem.nodeType === 1 &&
-					( " " + curValue + " " ).replace( rclass, " " );
-
-				if ( cur ) {
-					j = 0;
-					while ( ( clazz = classes[ j++ ] ) ) {
-						if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
-							cur += clazz + " ";
-						}
-					}
-
-					// Only assign if different to avoid unneeded rendering.
-					finalValue = jQuery.trim( cur );
-					if ( curValue !== finalValue ) {
-						elem.setAttribute( "class", finalValue );
-					}
-				}
-			}
-		}
-
-		return this;
-	},
-
-	removeClass: function( value ) {
-		var classes, elem, cur, curValue, clazz, j, finalValue,
-			i = 0;
-
-		if ( jQuery.isFunction( value ) ) {
-			return this.each( function( j ) {
-				jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );
-			} );
-		}
-
-		if ( !arguments.length ) {
-			return this.attr( "class", "" );
-		}
-
-		if ( typeof value === "string" && value ) {
-			classes = value.match( rnotwhite ) || [];
-
-			while ( ( elem = this[ i++ ] ) ) {
-				curValue = getClass( elem );
-
-				// This expression is here for better compressibility (see addClass)
-				cur = elem.nodeType === 1 &&
-					( " " + curValue + " " ).replace( rclass, " " );
-
-				if ( cur ) {
-					j = 0;
-					while ( ( clazz = classes[ j++ ] ) ) {
-
-						// Remove *all* instances
-						while ( cur.indexOf( " " + clazz + " " ) > -1 ) {
-							cur = cur.replace( " " + clazz + " ", " " );
-						}
-					}
-
-					// Only assign if different to avoid unneeded rendering.
-					finalValue = jQuery.trim( cur );
-					if ( curValue !== finalValue ) {
-						elem.setAttribute( "class", finalValue );
-					}
-				}
-			}
-		}
-
-		return this;
-	},
-
-	toggleClass: function( value, stateVal ) {
-		var type = typeof value;
-
-		if ( typeof stateVal === "boolean" && type === "string" ) {
-			return stateVal ? this.addClass( value ) : this.removeClass( value );
-		}
-
-		if ( jQuery.isFunction( value ) ) {
-			return this.each( function( i ) {
-				jQuery( this ).toggleClass(
-					value.call( this, i, getClass( this ), stateVal ),
-					stateVal
-				);
-			} );
-		}
-
-		return this.each( function() {
-			var className, i, self, classNames;
-
-			if ( type === "string" ) {
-
-				// Toggle individual class names
-				i = 0;
-				self = jQuery( this );
-				classNames = value.match( rnotwhite ) || [];
-
-				while ( ( className = classNames[ i++ ] ) ) {
-
-					// Check each className given, space separated list
-					if ( self.hasClass( className ) ) {
-						self.removeClass( className );
-					} else {
-						self.addClass( className );
-					}
-				}
-
-			// Toggle whole class name
-			} else if ( value === undefined || type === "boolean" ) {
-				className = getClass( this );
-				if ( className ) {
-
-					// Store className if set
-					dataPriv.set( this, "__className__", className );
-				}
-
-				// If the element has a class name or if we're passed `false`,
-				// then remove the whole classname (if there was one, the above saved it).
-				// Otherwise bring back whatever was previously saved (if anything),
-				// falling back to the empty string if nothing was stored.
-				if ( this.setAttribute ) {
-					this.setAttribute( "class",
-						className || value === false ?
-						"" :
-						dataPriv.get( this, "__className__" ) || ""
-					);
-				}
-			}
-		} );
-	},
-
-	hasClass: function( selector ) {
-		var className, elem,
-			i = 0;
-
-		className = " " + selector + " ";
-		while ( ( elem = this[ i++ ] ) ) {
-			if ( elem.nodeType === 1 &&
-				( " " + getClass( elem ) + " " ).replace( rclass, " " )
-					.indexOf( className ) > -1
-			) {
-				return true;
-			}
-		}
-
-		return false;
-	}
-} );
-
-
-
-
-var rreturn = /\r/g,
-	rspaces = /[\x20\t\r\n\f]+/g;
-
-jQuery.fn.extend( {
-	val: function( value ) {
-		var hooks, ret, isFunction,
-			elem = this[ 0 ];
-
-		if ( !arguments.length ) {
-			if ( elem ) {
-				hooks = jQuery.valHooks[ elem.type ] ||
-					jQuery.valHooks[ elem.nodeName.toLowerCase() ];
-
-				if ( hooks &&
-					"get" in hooks &&
-					( ret = hooks.get( elem, "value" ) ) !== undefined
-				) {
-					return ret;
-				}
-
-				ret = elem.value;
-
-				return typeof ret === "string" ?
-
-					// Handle most common string cases
-					ret.replace( rreturn, "" ) :
-
-					// Handle cases where value is null/undef or number
-					ret == null ? "" : ret;
-			}
-
-			return;
-		}
-
-		isFunction = jQuery.isFunction( value );
-
-		return this.each( function( i ) {
-			var val;
-
-			if ( this.nodeType !== 1 ) {
-				return;
-			}
-
-			if ( isFunction ) {
-				val = value.call( this, i, jQuery( this ).val() );
-			} else {
-				val = value;
-			}
-
-			// Treat null/undefined as ""; convert numbers to string
-			if ( val == null ) {
-				val = "";
-
-			} else if ( typeof val === "number" ) {
-				val += "";
-
-			} else if ( jQuery.isArray( val ) ) {
-				val = jQuery.map( val, function( value ) {
-					return value == null ? "" : value + "";
-				} );
-			}
-
-			hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
-
-			// If set returns undefined, fall back to normal setting
-			if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) {
-				this.value = val;
-			}
-		} );
-	}
-} );
-
-jQuery.extend( {
-	valHooks: {
-		option: {
-			get: function( elem ) {
-
-				var val = jQuery.find.attr( elem, "value" );
-				return val != null ?
-					val :
-
-					// Support: IE10-11+
-					// option.text throws exceptions (#14686, #14858)
-					// Strip and collapse whitespace
-					// https://html.spec.whatwg.org/#strip-and-collapse-whitespace
-					jQuery.trim( jQuery.text( elem ) ).replace( rspaces, " " );
-			}
-		},
-		select: {
-			get: function( elem ) {
-				var value, option,
-					options = elem.options,
-					index = elem.selectedIndex,
-					one = elem.type === "select-one" || index < 0,
-					values = one ? null : [],
-					max = one ? index + 1 : options.length,
-					i = index < 0 ?
-						max :
-						one ? index : 0;
-
-				// Loop through all the selected options
-				for ( ; i < max; i++ ) {
-					option = options[ i ];
-
-					// IE8-9 doesn't update selected after form reset (#2551)
-					if ( ( option.selected || i === index ) &&
-
-							// Don't return options that are disabled or in a disabled optgroup
-							( support.optDisabled ?
-								!option.disabled : option.getAttribute( "disabled" ) === null ) &&
-							( !option.parentNode.disabled ||
-								!jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
-
-						// Get the specific value for the option
-						value = jQuery( option ).val();
-
-						// We don't need an array for one selects
-						if ( one ) {
-							return value;
-						}
-
-						// Multi-Selects return an array
-						values.push( value );
-					}
-				}
-
-				return values;
-			},
-
-			set: function( elem, value ) {
-				var optionSet, option,
-					options = elem.options,
-					values = jQuery.makeArray( value ),
-					i = options.length;
-
-				while ( i-- ) {
-					option = options[ i ];
-					if ( option.selected =
-						jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
-					) {
-						optionSet = true;
-					}
-				}
-
-				// Force browsers to behave consistently when non-matching value is set
-				if ( !optionSet ) {
-					elem.selectedIndex = -1;
-				}
-				return values;
-			}
-		}
-	}
-} );
-
-// Radios and checkboxes getter/setter
-jQuery.each( [ "radio", "checkbox" ], function() {
-	jQuery.valHooks[ this ] = {
-		set: function( elem, value ) {
-			if ( jQuery.isArray( value ) ) {
-				return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );
-			}
-		}
-	};
-	if ( !support.checkOn ) {
-		jQuery.valHooks[ this ].get = function( elem ) {
-			return elem.getAttribute( "value" ) === null ? "on" : elem.value;
-		};
-	}
-} );
-
-
-
-
-// Return jQuery for attributes-only inclusion
-
-
-var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/;
-
-jQuery.extend( jQuery.event, {
-
-	trigger: function( event, data, elem, onlyHandlers ) {
-
-		var i, cur, tmp, bubbleType, ontype, handle, special,
-			eventPath = [ elem || document ],
-			type = hasOwn.call( event, "type" ) ? event.type : event,
-			namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : [];
-
-		cur = tmp = elem = elem || document;
-
-		// Don't do events on text and comment nodes
-		if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
-			return;
-		}
-
-		// focus/blur morphs to focusin/out; ensure we're not firing them right now
-		if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
-			return;
-		}
-
-		if ( type.indexOf( "." ) > -1 ) {
-
-			// Namespaced trigger; create a regexp to match event type in handle()
-			namespaces = type.split( "." );
-			type = namespaces.shift();
-			namespaces.sort();
-		}
-		ontype = type.indexOf( ":" ) < 0 && "on" + type;
-
-		// Caller can pass in a jQuery.Event object, Object, or just an event type string
-		event = event[ jQuery.expando ] ?
-			event :
-			new jQuery.Event( type, typeof event === "object" && event );
-
-		// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
-		event.isTrigger = onlyHandlers ? 2 : 3;
-		event.namespace = namespaces.join( "." );
-		event.rnamespace = event.namespace ?
-			new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) :
-			null;
-
-		// Clean up the event in case it is being reused
-		event.result = undefined;
-		if ( !event.target ) {
-			event.target = elem;
-		}
-
-		// Clone any incoming data and prepend the event, creating the handler arg list
-		data = data == null ?
-			[ event ] :
-			jQuery.makeArray( data, [ event ] );
-
-		// Allow special events to draw outside the lines
-		special = jQuery.event.special[ type ] || {};
-		if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
-			return;
-		}
-
-		// Determine event propagation path in advance, per W3C events spec (#9951)
-		// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
-		if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
-
-			bubbleType = special.delegateType || type;
-			if ( !rfocusMorph.test( bubbleType + type ) ) {
-				cur = cur.parentNode;
-			}
-			for ( ; cur; cur = cur.parentNode ) {
-				eventPath.push( cur );
-				tmp = cur;
-			}
-
-			// Only add window if we got to document (e.g., not plain obj or detached DOM)
-			if ( tmp === ( elem.ownerDocument || document ) ) {
-				eventPath.push( tmp.defaultView || tmp.parentWindow || window );
-			}
-		}
-
-		// Fire handlers on the event path
-		i = 0;
-		while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {
-
-			event.type = i > 1 ?
-				bubbleType :
-				special.bindType || type;
-
-			// jQuery handler
-			handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] &&
-				dataPriv.get( cur, "handle" );
-			if ( handle ) {
-				handle.apply( cur, data );
-			}
-
-			// Native handler
-			handle = ontype && cur[ ontype ];
-			if ( handle && handle.apply && acceptData( cur ) ) {
-				event.result = handle.apply( cur, data );
-				if ( event.result === false ) {
-					event.preventDefault();
-				}
-			}
-		}
-		event.type = type;
-
-		// If nobody prevented the default action, do it now
-		if ( !onlyHandlers && !event.isDefaultPrevented() ) {
-
-			if ( ( !special._default ||
-				special._default.apply( eventPath.pop(), data ) === false ) &&
-				acceptData( elem ) ) {
-
-				// Call a native DOM method on the target with the same name name as the event.
-				// Don't do default actions on window, that's where global variables be (#6170)
-				if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) {
-
-					// Don't re-trigger an onFOO event when we call its FOO() method
-					tmp = elem[ ontype ];
-
-					if ( tmp ) {
-						elem[ ontype ] = null;
-					}
-
-					// Prevent re-triggering of the same event, since we already bubbled it above
-					jQuery.event.triggered = type;
-					elem[ type ]();
-					jQuery.event.triggered = undefined;
-
-					if ( tmp ) {
-						elem[ ontype ] = tmp;
-					}
-				}
-			}
-		}
-
-		return event.result;
-	},
-
-	// Piggyback on a donor event to simulate a different one
-	// Used only for `focus(in | out)` events
-	simulate: function( type, elem, event ) {
-		var e = jQuery.extend(
-			new jQuery.Event(),
-			event,
-			{
-				type: type,
-				isSimulated: true
-			}
-		);
-
-		jQuery.event.trigger( e, null, elem );
-	}
-
-} );
-
-jQuery.fn.extend( {
-
-	trigger: function( type, data ) {
-		return this.each( function() {
-			jQuery.event.trigger( type, data, this );
-		} );
-	},
-	triggerHandler: function( type, data ) {
-		var elem = this[ 0 ];
-		if ( elem ) {
-			return jQuery.event.trigger( type, data, elem, true );
-		}
-	}
-} );
-
-
-jQuery.each( ( "blur focus focusin focusout load resize scroll unload click dblclick " +
-	"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
-	"change select submit keydown keypress keyup error contextmenu" ).split( " " ),
-	function( i, name ) {
-
-	// Handle event binding
-	jQuery.fn[ name ] = function( data, fn ) {
-		return arguments.length > 0 ?
-			this.on( name, null, data, fn ) :
-			this.trigger( name );
-	};
-} );
-
-jQuery.fn.extend( {
-	hover: function( fnOver, fnOut ) {
-		return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
-	}
-} );
-
-
-
-
-support.focusin = "onfocusin" in window;
-
-
-// Support: Firefox
-// Firefox doesn't have focus(in | out) events
-// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787
-//
-// Support: Chrome, Safari
-// focus(in | out) events fire after focus & blur events,
-// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order
-// Related ticket - https://code.google.com/p/chromium/issues/detail?id=449857
-if ( !support.focusin ) {
-	jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) {
-
-		// Attach a single capturing handler on the document while someone wants focusin/focusout
-		var handler = function( event ) {
-			jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );
-		};
-
-		jQuery.event.special[ fix ] = {
-			setup: function() {
-				var doc = this.ownerDocument || this,
-					attaches = dataPriv.access( doc, fix );
-
-				if ( !attaches ) {
-					doc.addEventListener( orig, handler, true );
-				}
-				dataPriv.access( doc, fix, ( attaches || 0 ) + 1 );
-			},
-			teardown: function() {
-				var doc = this.ownerDocument || this,
-					attaches = dataPriv.access( doc, fix ) - 1;
-
-				if ( !attaches ) {
-					doc.removeEventListener( orig, handler, true );
-					dataPriv.remove( doc, fix );
-
-				} else {
-					dataPriv.access( doc, fix, attaches );
-				}
-			}
-		};
-	} );
-}
-var location = window.location;
-
-var nonce = jQuery.now();
-
-var rquery = ( /\?/ );
-
-
-
-// Support: Android 2.3
-// Workaround failure to string-cast null input
-jQuery.parseJSON = function( data ) {
-	return JSON.parse( data + "" );
-};
-
-
-// Cross-browser xml parsing
-jQuery.parseXML = function( data ) {
-	var xml;
-	if ( !data || typeof data !== "string" ) {
-		return null;
-	}
-
-	// Support: IE9
-	try {
-		xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" );
-	} catch ( e ) {
-		xml = undefined;
-	}
-
-	if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
-		jQuery.error( "Invalid XML: " + data );
-	}
-	return xml;
-};
-
-
-var
-	rhash = /#.*$/,
-	rts = /([?&])_=[^&]*/,
-	rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
-
-	// #7653, #8125, #8152: local protocol detection
-	rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
-	rnoContent = /^(?:GET|HEAD)$/,
-	rprotocol = /^\/\//,
-
-	/* Prefilters
-	 * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
-	 * 2) These are called:
-	 *    - BEFORE asking for a transport
-	 *    - AFTER param serialization (s.data is a string if s.processData is true)
-	 * 3) key is the dataType
-	 * 4) the catchall symbol "*" can be used
-	 * 5) execution will start with transport dataType and THEN continue down to "*" if needed
-	 */
-	prefilters = {},
-
-	/* Transports bindings
-	 * 1) key is the dataType
-	 * 2) the catchall symbol "*" can be used
-	 * 3) selection will start with transport dataType and THEN go to "*" if needed
-	 */
-	transports = {},
-
-	// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
-	allTypes = "*/".concat( "*" ),
-
-	// Anchor tag for parsing the document origin
-	originAnchor = document.createElement( "a" );
-	originAnchor.href = location.href;
-
-// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
-function addToPrefiltersOrTransports( structure ) {
-
-	// dataTypeExpression is optional and defaults to "*"
-	return function( dataTypeExpression, func ) {
-
-		if ( typeof dataTypeExpression !== "string" ) {
-			func = dataTypeExpression;
-			dataTypeExpression = "*";
-		}
-
-		var dataType,
-			i = 0,
-			dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];
-
-		if ( jQuery.isFunction( func ) ) {
-
-			// For each dataType in the dataTypeExpression
-			while ( ( dataType = dataTypes[ i++ ] ) ) {
-
-				// Prepend if requested
-				if ( dataType[ 0 ] === "+" ) {
-					dataType = dataType.slice( 1 ) || "*";
-					( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );
-
-				// Otherwise append
-				} else {
-					( structure[ dataType ] = structure[ dataType ] || [] ).push( func );
-				}
-			}
-		}
-	};
-}
-
-// Base inspection function for prefilters and transports
-function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
-
-	var inspected = {},
-		seekingTransport = ( structure === transports );
-
-	function inspect( dataType ) {
-		var selected;
-		inspected[ dataType ] = true;
-		jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
-			var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
-			if ( typeof dataTypeOrTransport === "string" &&
-				!seekingTransport && !inspected[ dataTypeOrTransport ] ) {
-
-				options.dataTypes.unshift( dataTypeOrTransport );
-				inspect( dataTypeOrTransport );
-				return false;
-			} else if ( seekingTransport ) {
-				return !( selected = dataTypeOrTransport );
-			}
-		} );
-		return selected;
-	}
-
-	return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
-}
-
-// A special extend for ajax options
-// that takes "flat" options (not to be deep extended)
-// Fixes #9887
-function ajaxExtend( target, src ) {
-	var key, deep,
-		flatOptions = jQuery.ajaxSettings.flatOptions || {};
-
-	for ( key in src ) {
-		if ( src[ key ] !== undefined ) {
-			( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
-		}
-	}
-	if ( deep ) {
-		jQuery.extend( true, target, deep );
-	}
-
-	return target;
-}
-
-/* Handles responses to an ajax request:
- * - finds the right dataType (mediates between content-type and expected dataType)
- * - returns the corresponding response
- */
-function ajaxHandleResponses( s, jqXHR, responses ) {
-
-	var ct, type, finalDataType, firstDataType,
-		contents = s.contents,
-		dataTypes = s.dataTypes;
-
-	// Remove auto dataType and get content-type in the process
-	while ( dataTypes[ 0 ] === "*" ) {
-		dataTypes.shift();
-		if ( ct === undefined ) {
-			ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" );
-		}
-	}
-
-	// Check if we're dealing with a known content-type
-	if ( ct ) {
-		for ( type in contents ) {
-			if ( contents[ type ] && contents[ type ].test( ct ) ) {
-				dataTypes.unshift( type );
-				break;
-			}
-		}
-	}
-
-	// Check to see if we have a response for the expected dataType
-	if ( dataTypes[ 0 ] in responses ) {
-		finalDataType = dataTypes[ 0 ];
-	} else {
-
-		// Try convertible dataTypes
-		for ( type in responses ) {
-			if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) {
-				finalDataType = type;
-				break;
-			}
-			if ( !firstDataType ) {
-				firstDataType = type;
-			}
-		}
-
-		// Or just use first one
-		finalDataType = finalDataType || firstDataType;
-	}
-
-	// If we found a dataType
-	// We add the dataType to the list if needed
-	// and return the corresponding response
-	if ( finalDataType ) {
-		if ( finalDataType !== dataTypes[ 0 ] ) {
-			dataTypes.unshift( finalDataType );
-		}
-		return responses[ finalDataType ];
-	}
-}
-
-/* Chain conversions given the request and the original response
- * Also sets the responseXXX fields on the jqXHR instance
- */
-function ajaxConvert( s, response, jqXHR, isSuccess ) {
-	var conv2, current, conv, tmp, prev,
-		converters = {},
-
-		// Work with a copy of dataTypes in case we need to modify it for conversion
-		dataTypes = s.dataTypes.slice();
-
-	// Create converters map with lowercased keys
-	if ( dataTypes[ 1 ] ) {
-		for ( conv in s.converters ) {
-			converters[ conv.toLowerCase() ] = s.converters[ conv ];
-		}
-	}
-
-	current = dataTypes.shift();
-
-	// Convert to each sequential dataType
-	while ( current ) {
-
-		if ( s.responseFields[ current ] ) {
-			jqXHR[ s.responseFields[ current ] ] = response;
-		}
-
-		// Apply the dataFilter if provided
-		if ( !prev && isSuccess && s.dataFilter ) {
-			response = s.dataFilter( response, s.dataType );
-		}
-
-		prev = current;
-		current = dataTypes.shift();
-
-		if ( current ) {
-
-		// There's only work to do if current dataType is non-auto
-			if ( current === "*" ) {
-
-				current = prev;
-
-			// Convert response if prev dataType is non-auto and differs from current
-			} else if ( prev !== "*" && prev !== current ) {
-
-				// Seek a direct converter
-				conv = converters[ prev + " " + current ] || converters[ "* " + current ];
-
-				// If none found, seek a pair
-				if ( !conv ) {
-					for ( conv2 in converters ) {
-
-						// If conv2 outputs current
-						tmp = conv2.split( " " );
-						if ( tmp[ 1 ] === current ) {
-
-							// If prev can be converted to accepted input
-							conv = converters[ prev + " " + tmp[ 0 ] ] ||
-								converters[ "* " + tmp[ 0 ] ];
-							if ( conv ) {
-
-								// Condense equivalence converters
-								if ( conv === true ) {
-									conv = converters[ conv2 ];
-
-								// Otherwise, insert the intermediate dataType
-								} else if ( converters[ conv2 ] !== true ) {
-									current = tmp[ 0 ];
-									dataTypes.unshift( tmp[ 1 ] );
-								}
-								break;
-							}
-						}
-					}
-				}
-
-				// Apply converter (if not an equivalence)
-				if ( conv !== true ) {
-
-					// Unless errors are allowed to bubble, catch and return them
-					if ( conv && s.throws ) {
-						response = conv( response );
-					} else {
-						try {
-							response = conv( response );
-						} catch ( e ) {
-							return {
-								state: "parsererror",
-								error: conv ? e : "No conversion from " + prev + " to " + current
-							};
-						}
-					}
-				}
-			}
-		}
-	}
-
-	return { state: "success", data: response };
-}
-
-jQuery.extend( {
-
-	// Counter for holding the number of active queries
-	active: 0,
-
-	// Last-Modified header cache for next request
-	lastModified: {},
-	etag: {},
-
-	ajaxSettings: {
-		url: location.href,
-		type: "GET",
-		isLocal: rlocalProtocol.test( location.protocol ),
-		global: true,
-		processData: true,
-		async: true,
-		contentType: "application/x-www-form-urlencoded; charset=UTF-8",
-		/*
-		timeout: 0,
-		data: null,
-		dataType: null,
-		username: null,
-		password: null,
-		cache: null,
-		throws: false,
-		traditional: false,
-		headers: {},
-		*/
-
-		accepts: {
-			"*": allTypes,
-			text: "text/plain",
-			html: "text/html",
-			xml: "application/xml, text/xml",
-			json: "application/json, text/javascript"
-		},
-
-		contents: {
-			xml: /\bxml\b/,
-			html: /\bhtml/,
-			json: /\bjson\b/
-		},
-
-		responseFields: {
-			xml: "responseXML",
-			text: "responseText",
-			json: "responseJSON"
-		},
-
-		// Data converters
-		// Keys separate source (or catchall "*") and destination types with a single space
-		converters: {
-
-			// Convert anything to text
-			"* text": String,
-
-			// Text to html (true = no transformation)
-			"text html": true,
-
-			// Evaluate text as a json expression
-			"text json": jQuery.parseJSON,
-
-			// Parse text as xml
-			"text xml": jQuery.parseXML
-		},
-
-		// For options that shouldn't be deep extended:
-		// you can add your own custom options here if
-		// and when you create one that shouldn't be
-		// deep extended (see ajaxExtend)
-		flatOptions: {
-			url: true,
-			context: true
-		}
-	},
-
-	// Creates a full fledged settings object into target
-	// with both ajaxSettings and settings fields.
-	// If target is omitted, writes into ajaxSettings.
-	ajaxSetup: function( target, settings ) {
-		return settings ?
-
-			// Building a settings object
-			ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
-
-			// Extending ajaxSettings
-			ajaxExtend( jQuery.ajaxSettings, target );
-	},
-
-	ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
-	ajaxTransport: addToPrefiltersOrTransports( transports ),
-
-	// Main method
-	ajax: function( url, options ) {
-
-		// If url is an object, simulate pre-1.5 signature
-		if ( typeof url === "object" ) {
-			options = url;
-			url = undefined;
-		}
-
-		// Force options to be an object
-		options = options || {};
-
-		var transport,
-
-			// URL without anti-cache param
-			cacheURL,
-
-			// Response headers
-			responseHeadersString,
-			responseHeaders,
-
-			// timeout handle
-			timeoutTimer,
-
-			// Url cleanup var
-			urlAnchor,
-
-			// To know if global events are to be dispatched
-			fireGlobals,
-
-			// Loop variable
-			i,
-
-			// Create the final options object
-			s = jQuery.ajaxSetup( {}, options ),
-
-			// Callbacks context
-			callbackContext = s.context || s,
-
-			// Context for global events is callbackContext if it is a DOM node or jQuery collection
-			globalEventContext = s.context &&
-				( callbackContext.nodeType || callbackContext.jquery ) ?
-					jQuery( callbackContext ) :
-					jQuery.event,
-
-			// Deferreds
-			deferred = jQuery.Deferred(),
-			completeDeferred = jQuery.Callbacks( "once memory" ),
-
-			// Status-dependent callbacks
-			statusCode = s.statusCode || {},
-
-			// Headers (they are sent all at once)
-			requestHeaders = {},
-			requestHeadersNames = {},
-
-			// The jqXHR state
-			state = 0,
-
-			// Default abort message
-			strAbort = "canceled",
-
-			// Fake xhr
-			jqXHR = {
-				readyState: 0,
-
-				// Builds headers hashtable if needed
-				getResponseHeader: function( key ) {
-					var match;
-					if ( state === 2 ) {
-						if ( !responseHeaders ) {
-							responseHeaders = {};
-							while ( ( match = rheaders.exec( responseHeadersString ) ) ) {
-								responseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ];
-							}
-						}
-						match = responseHeaders[ key.toLowerCase() ];
-					}
-					return match == null ? null : match;
-				},
-
-				// Raw string
-				getAllResponseHeaders: function() {
-					return state === 2 ? responseHeadersString : null;
-				},
-
-				// Caches the header
-				setRequestHeader: function( name, value ) {
-					var lname = name.toLowerCase();
-					if ( !state ) {
-						name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
-						requestHeaders[ name ] = value;
-					}
-					return this;
-				},
-
-				// Overrides response content-type header
-				overrideMimeType: function( type ) {
-					if ( !state ) {
-						s.mimeType = type;
-					}
-					return this;
-				},
-
-				// Status-dependent callbacks
-				statusCode: function( map ) {
-					var code;
-					if ( map ) {
-						if ( state < 2 ) {
-							for ( code in map ) {
-
-								// Lazy-add the new callback in a way that preserves old ones
-								statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
-							}
-						} else {
-
-							// Execute the appropriate callbacks
-							jqXHR.always( map[ jqXHR.status ] );
-						}
-					}
-					return this;
-				},
-
-				// Cancel the request
-				abort: function( statusText ) {
-					var finalText = statusText || strAbort;
-					if ( transport ) {
-						transport.abort( finalText );
-					}
-					done( 0, finalText );
-					return this;
-				}
-			};
-
-		// Attach deferreds
-		deferred.promise( jqXHR ).complete = completeDeferred.add;
-		jqXHR.success = jqXHR.done;
-		jqXHR.error = jqXHR.fail;
-
-		// Remove hash character (#7531: and string promotion)
-		// Add protocol if not provided (prefilters might expect it)
-		// Handle falsy url in the settings object (#10093: consistency with old signature)
-		// We also use the url parameter if available
-		s.url = ( ( url || s.url || location.href ) + "" ).replace( rhash, "" )
-			.replace( rprotocol, location.protocol + "//" );
-
-		// Alias method option to type as per ticket #12004
-		s.type = options.method || options.type || s.method || s.type;
-
-		// Extract dataTypes list
-		s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ];
-
-		// A cross-domain request is in order when the origin doesn't match the current origin.
-		if ( s.crossDomain == null ) {
-			urlAnchor = document.createElement( "a" );
-
-			// Support: IE8-11+
-			// IE throws exception if url is malformed, e.g. http://example.com:80x/
-			try {
-				urlAnchor.href = s.url;
-
-				// Support: IE8-11+
-				// Anchor's host property isn't correctly set when s.url is relative
-				urlAnchor.href = urlAnchor.href;
-				s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !==
-					urlAnchor.protocol + "//" + urlAnchor.host;
-			} catch ( e ) {
-
-				// If there is an error parsing the URL, assume it is crossDomain,
-				// it can be rejected by the transport if it is invalid
-				s.crossDomain = true;
-			}
-		}
-
-		// Convert data if not already a string
-		if ( s.data && s.processData && typeof s.data !== "string" ) {
-			s.data = jQuery.param( s.data, s.traditional );
-		}
-
-		// Apply prefilters
-		inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
-
-		// If request was aborted inside a prefilter, stop there
-		if ( state === 2 ) {
-			return jqXHR;
-		}
-
-		// We can fire global events as of now if asked to
-		// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)
-		fireGlobals = jQuery.event && s.global;
-
-		// Watch for a new set of requests
-		if ( fireGlobals && jQuery.active++ === 0 ) {
-			jQuery.event.trigger( "ajaxStart" );
-		}
-
-		// Uppercase the type
-		s.type = s.type.toUpperCase();
-
-		// Determine if request has content
-		s.hasContent = !rnoContent.test( s.type );
-
-		// Save the URL in case we're toying with the If-Modified-Since
-		// and/or If-None-Match header later on
-		cacheURL = s.url;
-
-		// More options handling for requests with no content
-		if ( !s.hasContent ) {
-
-			// If data is available, append data to url
-			if ( s.data ) {
-				cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data );
-
-				// #9682: remove data so that it's not used in an eventual retry
-				delete s.data;
-			}
-
-			// Add anti-cache in url if needed
-			if ( s.cache === false ) {
-				s.url = rts.test( cacheURL ) ?
-
-					// If there is already a '_' parameter, set its value
-					cacheURL.replace( rts, "$1_=" + nonce++ ) :
-
-					// Otherwise add one to the end
-					cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++;
-			}
-		}
-
-		// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
-		if ( s.ifModified ) {
-			if ( jQuery.lastModified[ cacheURL ] ) {
-				jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
-			}
-			if ( jQuery.etag[ cacheURL ] ) {
-				jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
-			}
-		}
-
-		// Set the correct header, if data is being sent
-		if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
-			jqXHR.setRequestHeader( "Content-Type", s.contentType );
-		}
-
-		// Set the Accepts header for the server, depending on the dataType
-		jqXHR.setRequestHeader(
-			"Accept",
-			s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?
-				s.accepts[ s.dataTypes[ 0 ] ] +
-					( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
-				s.accepts[ "*" ]
-		);
-
-		// Check for headers option
-		for ( i in s.headers ) {
-			jqXHR.setRequestHeader( i, s.headers[ i ] );
-		}
-
-		// Allow custom headers/mimetypes and early abort
-		if ( s.beforeSend &&
-			( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
-
-			// Abort if not done already and return
-			return jqXHR.abort();
-		}
-
-		// Aborting is no longer a cancellation
-		strAbort = "abort";
-
-		// Install callbacks on deferreds
-		for ( i in { success: 1, error: 1, complete: 1 } ) {
-			jqXHR[ i ]( s[ i ] );
-		}
-
-		// Get transport
-		transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
-
-		// If no transport, we auto-abort
-		if ( !transport ) {
-			done( -1, "No Transport" );
-		} else {
-			jqXHR.readyState = 1;
-
-			// Send global event
-			if ( fireGlobals ) {
-				globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
-			}
-
-			// If request was aborted inside ajaxSend, stop there
-			if ( state === 2 ) {
-				return jqXHR;
-			}
-
-			// Timeout
-			if ( s.async && s.timeout > 0 ) {
-				timeoutTimer = window.setTimeout( function() {
-					jqXHR.abort( "timeout" );
-				}, s.timeout );
-			}
-
-			try {
-				state = 1;
-				transport.send( requestHeaders, done );
-			} catch ( e ) {
-
-				// Propagate exception as error if not done
-				if ( state < 2 ) {
-					done( -1, e );
-
-				// Simply rethrow otherwise
-				} else {
-					throw e;
-				}
-			}
-		}
-
-		// Callback for when everything is done
-		function done( status, nativeStatusText, responses, headers ) {
-			var isSuccess, success, error, response, modified,
-				statusText = nativeStatusText;
-
-			// Called once
-			if ( state === 2 ) {
-				return;
-			}
-
-			// State is "done" now
-			state = 2;
-
-			// Clear timeout if it exists
-			if ( timeoutTimer ) {
-				window.clearTimeout( timeoutTimer );
-			}
-
-			// Dereference transport for early garbage collection
-			// (no matter how long the jqXHR object will be used)
-			transport = undefined;
-
-			// Cache response headers
-			responseHeadersString = headers || "";
-
-			// Set readyState
-			jqXHR.readyState = status > 0 ? 4 : 0;
-
-			// Determine if successful
-			isSuccess = status >= 200 && status < 300 || status === 304;
-
-			// Get response data
-			if ( responses ) {
-				response = ajaxHandleResponses( s, jqXHR, responses );
-			}
-
-			// Convert no matter what (that way responseXXX fields are always set)
-			response = ajaxConvert( s, response, jqXHR, isSuccess );
-
-			// If successful, handle type chaining
-			if ( isSuccess ) {
-
-				// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
-				if ( s.ifModified ) {
-					modified = jqXHR.getResponseHeader( "Last-Modified" );
-					if ( modified ) {
-						jQuery.lastModified[ cacheURL ] = modified;
-					}
-					modified = jqXHR.getResponseHeader( "etag" );
-					if ( modified ) {
-						jQuery.etag[ cacheURL ] = modified;
-					}
-				}
-
-				// if no content
-				if ( status === 204 || s.type === "HEAD" ) {
-					statusText = "nocontent";
-
-				// if not modified
-				} else if ( status === 304 ) {
-					statusText = "notmodified";
-
-				// If we have data, let's convert it
-				} else {
-					statusText = response.state;
-					success = response.data;
-					error = response.error;
-					isSuccess = !error;
-				}
-			} else {
-
-				// Extract error from statusText and normalize for non-aborts
-				error = statusText;
-				if ( status || !statusText ) {
-					statusText = "error";
-					if ( status < 0 ) {
-						status = 0;
-					}
-				}
-			}
-
-			// Set data for the fake xhr object
-			jqXHR.status = status;
-			jqXHR.statusText = ( nativeStatusText || statusText ) + "";
-
-			// Success/Error
-			if ( isSuccess ) {
-				deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
-			} else {
-				deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
-			}
-
-			// Status-dependent callbacks
-			jqXHR.statusCode( statusCode );
-			statusCode = undefined;
-
-			if ( fireGlobals ) {
-				globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
-					[ jqXHR, s, isSuccess ? success : error ] );
-			}
-
-			// Complete
-			completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
-
-			if ( fireGlobals ) {
-				globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
-
-				// Handle the global AJAX counter
-				if ( !( --jQuery.active ) ) {
-					jQuery.event.trigger( "ajaxStop" );
-				}
-			}
-		}
-
-		return jqXHR;
-	},
-
-	getJSON: function( url, data, callback ) {
-		return jQuery.get( url, data, callback, "json" );
-	},
-
-	getScript: function( url, callback ) {
-		return jQuery.get( url, undefined, callback, "script" );
-	}
-} );
-
-jQuery.each( [ "get", "post" ], function( i, method ) {
-	jQuery[ method ] = function( url, data, callback, type ) {
-
-		// Shift arguments if data argument was omitted
-		if ( jQuery.isFunction( data ) ) {
-			type = type || callback;
-			callback = data;
-			data = undefined;
-		}
-
-		// The url can be an options object (which then must have .url)
-		return jQuery.ajax( jQuery.extend( {
-			url: url,
-			type: method,
-			dataType: type,
-			data: data,
-			success: callback
-		}, jQuery.isPlainObject( url ) && url ) );
-	};
-} );
-
-
-jQuery._evalUrl = function( url ) {
-	return jQuery.ajax( {
-		url: url,
-
-		// Make this explicit, since user can override this through ajaxSetup (#11264)
-		type: "GET",
-		dataType: "script",
-		async: false,
-		global: false,
-		"throws": true
-	} );
-};
-
-
-jQuery.fn.extend( {
-	wrapAll: function( html ) {
-		var wrap;
-
-		if ( jQuery.isFunction( html ) ) {
-			return this.each( function( i ) {
-				jQuery( this ).wrapAll( html.call( this, i ) );
-			} );
-		}
-
-		if ( this[ 0 ] ) {
-
-			// The elements to wrap the target around
-			wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
-
-			if ( this[ 0 ].parentNode ) {
-				wrap.insertBefore( this[ 0 ] );
-			}
-
-			wrap.map( function() {
-				var elem = this;
-
-				while ( elem.firstElementChild ) {
-					elem = elem.firstElementChild;
-				}
-
-				return elem;
-			} ).append( this );
-		}
-
-		return this;
-	},
-
-	wrapInner: function( html ) {
-		if ( jQuery.isFunction( html ) ) {
-			return this.each( function( i ) {
-				jQuery( this ).wrapInner( html.call( this, i ) );
-			} );
-		}
-
-		return this.each( function() {
-			var self = jQuery( this ),
-				contents = self.contents();
-
-			if ( contents.length ) {
-				contents.wrapAll( html );
-
-			} else {
-				self.append( html );
-			}
-		} );
-	},
-
-	wrap: function( html ) {
-		var isFunction = jQuery.isFunction( html );
-
-		return this.each( function( i ) {
-			jQuery( this ).wrapAll( isFunction ? html.call( this, i ) : html );
-		} );
-	},
-
-	unwrap: function() {
-		return this.parent().each( function() {
-			if ( !jQuery.nodeName( this, "body" ) ) {
-				jQuery( this ).replaceWith( this.childNodes );
-			}
-		} ).end();
-	}
-} );
-
-
-jQuery.expr.filters.hidden = function( elem ) {
-	return !jQuery.expr.filters.visible( elem );
-};
-jQuery.expr.filters.visible = function( elem ) {
-
-	// Support: Opera <= 12.12
-	// Opera reports offsetWidths and offsetHeights less than zero on some elements
-	// Use OR instead of AND as the element is not visible if either is true
-	// See tickets #10406 and #13132
-	return elem.offsetWidth > 0 || elem.offsetHeight > 0 || elem.getClientRects().length > 0;
-};
-
-
-
-
-var r20 = /%20/g,
-	rbracket = /\[\]$/,
-	rCRLF = /\r?\n/g,
-	rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
-	rsubmittable = /^(?:input|select|textarea|keygen)/i;
-
-function buildParams( prefix, obj, traditional, add ) {
-	var name;
-
-	if ( jQuery.isArray( obj ) ) {
-
-		// Serialize array item.
-		jQuery.each( obj, function( i, v ) {
-			if ( traditional || rbracket.test( prefix ) ) {
-
-				// Treat each array item as a scalar.
-				add( prefix, v );
-
-			} else {
-
-				// Item is non-scalar (array or object), encode its numeric index.
-				buildParams(
-					prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]",
-					v,
-					traditional,
-					add
-				);
-			}
-		} );
-
-	} else if ( !traditional && jQuery.type( obj ) === "object" ) {
-
-		// Serialize object item.
-		for ( name in obj ) {
-			buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
-		}
-
-	} else {
-
-		// Serialize scalar item.
-		add( prefix, obj );
-	}
-}
-
-// Serialize an array of form elements or a set of
-// key/values into a query string
-jQuery.param = function( a, traditional ) {
-	var prefix,
-		s = [],
-		add = function( key, value ) {
-
-			// If value is a function, invoke it and return its value
-			value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value );
-			s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
-		};
-
-	// Set traditional to true for jQuery <= 1.3.2 behavior.
-	if ( traditional === undefined ) {
-		traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
-	}
-
-	// If an array was passed in, assume that it is an array of form elements.
-	if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
-
-		// Serialize the form elements
-		jQuery.each( a, function() {
-			add( this.name, this.value );
-		} );
-
-	} else {
-
-		// If traditional, encode the "old" way (the way 1.3.2 or older
-		// did it), otherwise encode params recursively.
-		for ( prefix in a ) {
-			buildParams( prefix, a[ prefix ], traditional, add );
-		}
-	}
-
-	// Return the resulting serialization
-	return s.join( "&" ).replace( r20, "+" );
-};
-
-jQuery.fn.extend( {
-	serialize: function() {
-		return jQuery.param( this.serializeArray() );
-	},
-	serializeArray: function() {
-		return this.map( function() {
-
-			// Can add propHook for "elements" to filter or add form elements
-			var elements = jQuery.prop( this, "elements" );
-			return elements ? jQuery.makeArray( elements ) : this;
-		} )
-		.filter( function() {
-			var type = this.type;
-
-			// Use .is( ":disabled" ) so that fieldset[disabled] works
-			return this.name && !jQuery( this ).is( ":disabled" ) &&
-				rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
-				( this.checked || !rcheckableType.test( type ) );
-		} )
-		.map( function( i, elem ) {
-			var val = jQuery( this ).val();
-
-			return val == null ?
-				null :
-				jQuery.isArray( val ) ?
-					jQuery.map( val, function( val ) {
-						return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
-					} ) :
-					{ name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
-		} ).get();
-	}
-} );
-
-
-jQuery.ajaxSettings.xhr = function() {
-	try {
-		return new window.XMLHttpRequest();
-	} catch ( e ) {}
-};
-
-var xhrSuccessStatus = {
-
-		// File protocol always yields status code 0, assume 200
-		0: 200,
-
-		// Support: IE9
-		// #1450: sometimes IE returns 1223 when it should be 204
-		1223: 204
-	},
-	xhrSupported = jQuery.ajaxSettings.xhr();
-
-support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
-support.ajax = xhrSupported = !!xhrSupported;
-
-jQuery.ajaxTransport( function( options ) {
-	var callback, errorCallback;
-
-	// Cross domain only allowed if supported through XMLHttpRequest
-	if ( support.cors || xhrSupported && !options.crossDomain ) {
-		return {
-			send: function( headers, complete ) {
-				var i,
-					xhr = options.xhr();
-
-				xhr.open(
-					options.type,
-					options.url,
-					options.async,
-					options.username,
-					options.password
-				);
-
-				// Apply custom fields if provided
-				if ( options.xhrFields ) {
-					for ( i in options.xhrFields ) {
-						xhr[ i ] = options.xhrFields[ i ];
-					}
-				}
-
-				// Override mime type if needed
-				if ( options.mimeType && xhr.overrideMimeType ) {
-					xhr.overrideMimeType( options.mimeType );
-				}
-
-				// X-Requested-With header
-				// For cross-domain requests, seeing as conditions for a preflight are
-				// akin to a jigsaw puzzle, we simply never set it to be sure.
-				// (it can always be set on a per-request basis or even using ajaxSetup)
-				// For same-domain requests, won't change header if already provided.
-				if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) {
-					headers[ "X-Requested-With" ] = "XMLHttpRequest";
-				}
-
-				// Set headers
-				for ( i in headers ) {
-					xhr.setRequestHeader( i, headers[ i ] );
-				}
-
-				// Callback
-				callback = function( type ) {
-					return function() {
-						if ( callback ) {
-							callback = errorCallback = xhr.onload =
-								xhr.onerror = xhr.onabort = xhr.onreadystatechange = null;
-
-							if ( type === "abort" ) {
-								xhr.abort();
-							} else if ( type === "error" ) {
-
-								// Support: IE9
-								// On a manual native abort, IE9 throws
-								// errors on any property access that is not readyState
-								if ( typeof xhr.status !== "number" ) {
-									complete( 0, "error" );
-								} else {
-									complete(
-
-										// File: protocol always yields status 0; see #8605, #14207
-										xhr.status,
-										xhr.statusText
-									);
-								}
-							} else {
-								complete(
-									xhrSuccessStatus[ xhr.status ] || xhr.status,
-									xhr.statusText,
-
-									// Support: IE9 only
-									// IE9 has no XHR2 but throws on binary (trac-11426)
-									// For XHR2 non-text, let the caller handle it (gh-2498)
-									( xhr.responseType || "text" ) !== "text"  ||
-									typeof xhr.responseText !== "string" ?
-										{ binary: xhr.response } :
-										{ text: xhr.responseText },
-									xhr.getAllResponseHeaders()
-								);
-							}
-						}
-					};
-				};
-
-				// Listen to events
-				xhr.onload = callback();
-				errorCallback = xhr.onerror = callback( "error" );
-
-				// Support: IE9
-				// Use onreadystatechange to replace onabort
-				// to handle uncaught aborts
-				if ( xhr.onabort !== undefined ) {
-					xhr.onabort = errorCallback;
-				} else {
-					xhr.onreadystatechange = function() {
-
-						// Check readyState before timeout as it changes
-						if ( xhr.readyState === 4 ) {
-
-							// Allow onerror to be called first,
-							// but that will not handle a native abort
-							// Also, save errorCallback to a variable
-							// as xhr.onerror cannot be accessed
-							window.setTimeout( function() {
-								if ( callback ) {
-									errorCallback();
-								}
-							} );
-						}
-					};
-				}
-
-				// Create the abort callback
-				callback = callback( "abort" );
-
-				try {
-
-					// Do send the request (this may raise an exception)
-					xhr.send( options.hasContent && options.data || null );
-				} catch ( e ) {
-
-					// #14683: Only rethrow if this hasn't been notified as an error yet
-					if ( callback ) {
-						throw e;
-					}
-				}
-			},
-
-			abort: function() {
-				if ( callback ) {
-					callback();
-				}
-			}
-		};
-	}
-} );
-
-
-
-
-// Install script dataType
-jQuery.ajaxSetup( {
-	accepts: {
-		script: "text/javascript, application/javascript, " +
-			"application/ecmascript, application/x-ecmascript"
-	},
-	contents: {
-		script: /\b(?:java|ecma)script\b/
-	},
-	converters: {
-		"text script": function( text ) {
-			jQuery.globalEval( text );
-			return text;
-		}
-	}
-} );
-
-// Handle cache's special case and crossDomain
-jQuery.ajaxPrefilter( "script", function( s ) {
-	if ( s.cache === undefined ) {
-		s.cache = false;
-	}
-	if ( s.crossDomain ) {
-		s.type = "GET";
-	}
-} );
-
-// Bind script tag hack transport
-jQuery.ajaxTransport( "script", function( s ) {
-
-	// This transport only deals with cross domain requests
-	if ( s.crossDomain ) {
-		var script, callback;
-		return {
-			send: function( _, complete ) {
-				script = jQuery( "<script>" ).prop( {
-					charset: s.scriptCharset,
-					src: s.url
-				} ).on(
-					"load error",
-					callback = function( evt ) {
-						script.remove();
-						callback = null;
-						if ( evt ) {
-							complete( evt.type === "error" ? 404 : 200, evt.type );
-						}
-					}
-				);
-
-				// Use native DOM manipulation to avoid our domManip AJAX trickery
-				document.head.appendChild( script[ 0 ] );
-			},
-			abort: function() {
-				if ( callback ) {
-					callback();
-				}
-			}
-		};
-	}
-} );
-
-
-
-
-var oldCallbacks = [],
-	rjsonp = /(=)\?(?=&|$)|\?\?/;
-
-// Default jsonp settings
-jQuery.ajaxSetup( {
-	jsonp: "callback",
-	jsonpCallback: function() {
-		var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
-		this[ callback ] = true;
-		return callback;
-	}
-} );
-
-// Detect, normalize options and install callbacks for jsonp requests
-jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
-
-	var callbackName, overwritten, responseContainer,
-		jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
-			"url" :
-			typeof s.data === "string" &&
-				( s.contentType || "" )
-					.indexOf( "application/x-www-form-urlencoded" ) === 0 &&
-				rjsonp.test( s.data ) && "data"
-		);
-
-	// Handle iff the expected data type is "jsonp" or we have a parameter to set
-	if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
-
-		// Get callback name, remembering preexisting value associated with it
-		callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?
-			s.jsonpCallback() :
-			s.jsonpCallback;
-
-		// Insert callback into url or form data
-		if ( jsonProp ) {
-			s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
-		} else if ( s.jsonp !== false ) {
-			s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
-		}
-
-		// Use data converter to retrieve json after script execution
-		s.converters[ "script json" ] = function() {
-			if ( !responseContainer ) {
-				jQuery.error( callbackName + " was not called" );
-			}
-			return responseContainer[ 0 ];
-		};
-
-		// Force json dataType
-		s.dataTypes[ 0 ] = "json";
-
-		// Install callback
-		overwritten = window[ callbackName ];
-		window[ callbackName ] = function() {
-			responseContainer = arguments;
-		};
-
-		// Clean-up function (fires after converters)
-		jqXHR.always( function() {
-
-			// If previous value didn't exist - remove it
-			if ( overwritten === undefined ) {
-				jQuery( window ).removeProp( callbackName );
-
-			// Otherwise restore preexisting value
-			} else {
-				window[ callbackName ] = overwritten;
-			}
-
-			// Save back as free
-			if ( s[ callbackName ] ) {
-
-				// Make sure that re-using the options doesn't screw things around
-				s.jsonpCallback = originalSettings.jsonpCallback;
-
-				// Save the callback name for future use
-				oldCallbacks.push( callbackName );
-			}
-
-			// Call if it was a function and we have a response
-			if ( responseContainer && jQuery.isFunction( overwritten ) ) {
-				overwritten( responseContainer[ 0 ] );
-			}
-
-			responseContainer = overwritten = undefined;
-		} );
-
-		// Delegate to script
-		return "script";
-	}
-} );
-
-
-
-
-// Argument "data" should be string of html
-// context (optional): If specified, the fragment will be created in this context,
-// defaults to document
-// keepScripts (optional): If true, will include scripts passed in the html string
-jQuery.parseHTML = function( data, context, keepScripts ) {
-	if ( !data || typeof data !== "string" ) {
-		return null;
-	}
-	if ( typeof context === "boolean" ) {
-		keepScripts = context;
-		context = false;
-	}
-	context = context || document;
-
-	var parsed = rsingleTag.exec( data ),
-		scripts = !keepScripts && [];
-
-	// Single tag
-	if ( parsed ) {
-		return [ context.createElement( parsed[ 1 ] ) ];
-	}
-
-	parsed = buildFragment( [ data ], context, scripts );
-
-	if ( scripts && scripts.length ) {
-		jQuery( scripts ).remove();
-	}
-
-	return jQuery.merge( [], parsed.childNodes );
-};
-
-
-// Keep a copy of the old load method
-var _load = jQuery.fn.load;
-
-/**
- * Load a url into a page
- */
-jQuery.fn.load = function( url, params, callback ) {
-	if ( typeof url !== "string" && _load ) {
-		return _load.apply( this, arguments );
-	}
-
-	var selector, type, response,
-		self = this,
-		off = url.indexOf( " " );
-
-	if ( off > -1 ) {
-		selector = jQuery.trim( url.slice( off ) );
-		url = url.slice( 0, off );
-	}
-
-	// If it's a function
-	if ( jQuery.isFunction( params ) ) {
-
-		// We assume that it's the callback
-		callback = params;
-		params = undefined;
-
-	// Otherwise, build a param string
-	} else if ( params && typeof params === "object" ) {
-		type = "POST";
-	}
-
-	// If we have elements to modify, make the request
-	if ( self.length > 0 ) {
-		jQuery.ajax( {
-			url: url,
-
-			// If "type" variable is undefined, then "GET" method will be used.
-			// Make value of this field explicit since
-			// user can override it through ajaxSetup method
-			type: type || "GET",
-			dataType: "html",
-			data: params
-		} ).done( function( responseText ) {
-
-			// Save response for use in complete callback
-			response = arguments;
-
-			self.html( selector ?
-
-				// If a selector was specified, locate the right elements in a dummy div
-				// Exclude scripts to avoid IE 'Permission Denied' errors
-				jQuery( "<div>" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :
-
-				// Otherwise use the full result
-				responseText );
-
-		// If the request succeeds, this function gets "data", "status", "jqXHR"
-		// but they are ignored because response was set above.
-		// If it fails, this function gets "jqXHR", "status", "error"
-		} ).always( callback && function( jqXHR, status ) {
-			self.each( function() {
-				callback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );
-			} );
-		} );
-	}
-
-	return this;
-};
-
-
-
-
-// Attach a bunch of functions for handling common AJAX events
-jQuery.each( [
-	"ajaxStart",
-	"ajaxStop",
-	"ajaxComplete",
-	"ajaxError",
-	"ajaxSuccess",
-	"ajaxSend"
-], function( i, type ) {
-	jQuery.fn[ type ] = function( fn ) {
-		return this.on( type, fn );
-	};
-} );
-
-
-
-
-jQuery.expr.filters.animated = function( elem ) {
-	return jQuery.grep( jQuery.timers, function( fn ) {
-		return elem === fn.elem;
-	} ).length;
-};
-
-
-
-
-/**
- * Gets a window from an element
- */
-function getWindow( elem ) {
-	return jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 && elem.defaultView;
-}
-
-jQuery.offset = {
-	setOffset: function( elem, options, i ) {
-		var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
-			position = jQuery.css( elem, "position" ),
-			curElem = jQuery( elem ),
-			props = {};
-
-		// Set position first, in-case top/left are set even on static elem
-		if ( position === "static" ) {
-			elem.style.position = "relative";
-		}
-
-		curOffset = curElem.offset();
-		curCSSTop = jQuery.css( elem, "top" );
-		curCSSLeft = jQuery.css( elem, "left" );
-		calculatePosition = ( position === "absolute" || position === "fixed" ) &&
-			( curCSSTop + curCSSLeft ).indexOf( "auto" ) > -1;
-
-		// Need to be able to calculate position if either
-		// top or left is auto and position is either absolute or fixed
-		if ( calculatePosition ) {
-			curPosition = curElem.position();
-			curTop = curPosition.top;
-			curLeft = curPosition.left;
-
-		} else {
-			curTop = parseFloat( curCSSTop ) || 0;
-			curLeft = parseFloat( curCSSLeft ) || 0;
-		}
-
-		if ( jQuery.isFunction( options ) ) {
-
-			// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)
-			options = options.call( elem, i, jQuery.extend( {}, curOffset ) );
-		}
-
-		if ( options.top != null ) {
-			props.top = ( options.top - curOffset.top ) + curTop;
-		}
-		if ( options.left != null ) {
-			props.left = ( options.left - curOffset.left ) + curLeft;
-		}
-
-		if ( "using" in options ) {
-			options.using.call( elem, props );
-
-		} else {
-			curElem.css( props );
-		}
-	}
-};
-
-jQuery.fn.extend( {
-	offset: function( options ) {
-		if ( arguments.length ) {
-			return options === undefined ?
-				this :
-				this.each( function( i ) {
-					jQuery.offset.setOffset( this, options, i );
-				} );
-		}
-
-		var docElem, win,
-			elem = this[ 0 ],
-			box = { top: 0, left: 0 },
-			doc = elem && elem.ownerDocument;
-
-		if ( !doc ) {
-			return;
-		}
-
-		docElem = doc.documentElement;
-
-		// Make sure it's not a disconnected DOM node
-		if ( !jQuery.contains( docElem, elem ) ) {
-			return box;
-		}
-
-		box = elem.getBoundingClientRect();
-		win = getWindow( doc );
-		return {
-			top: box.top + win.pageYOffset - docElem.clientTop,
-			left: box.left + win.pageXOffset - docElem.clientLeft
-		};
-	},
-
-	position: function() {
-		if ( !this[ 0 ] ) {
-			return;
-		}
-
-		var offsetParent, offset,
-			elem = this[ 0 ],
-			parentOffset = { top: 0, left: 0 };
-
-		// Fixed elements are offset from window (parentOffset = {top:0, left: 0},
-		// because it is its only offset parent
-		if ( jQuery.css( elem, "position" ) === "fixed" ) {
-
-			// Assume getBoundingClientRect is there when computed position is fixed
-			offset = elem.getBoundingClientRect();
-
-		} else {
-
-			// Get *real* offsetParent
-			offsetParent = this.offsetParent();
-
-			// Get correct offsets
-			offset = this.offset();
-			if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) {
-				parentOffset = offsetParent.offset();
-			}
-
-			// Add offsetParent borders
-			parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true );
-			parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true );
-		}
-
-		// Subtract parent offsets and element margins
-		return {
-			top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
-			left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
-		};
-	},
-
-	// This method will return documentElement in the following cases:
-	// 1) For the element inside the iframe without offsetParent, this method will return
-	//    documentElement of the parent window
-	// 2) For the hidden or detached element
-	// 3) For body or html element, i.e. in case of the html node - it will return itself
-	//
-	// but those exceptions were never presented as a real life use-cases
-	// and might be considered as more preferable results.
-	//
-	// This logic, however, is not guaranteed and can change at any point in the future
-	offsetParent: function() {
-		return this.map( function() {
-			var offsetParent = this.offsetParent;
-
-			while ( offsetParent && jQuery.css( offsetParent, "position" ) === "static" ) {
-				offsetParent = offsetParent.offsetParent;
-			}
-
-			return offsetParent || documentElement;
-		} );
-	}
-} );
-
-// Create scrollLeft and scrollTop methods
-jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
-	var top = "pageYOffset" === prop;
-
-	jQuery.fn[ method ] = function( val ) {
-		return access( this, function( elem, method, val ) {
-			var win = getWindow( elem );
-
-			if ( val === undefined ) {
-				return win ? win[ prop ] : elem[ method ];
-			}
-
-			if ( win ) {
-				win.scrollTo(
-					!top ? val : win.pageXOffset,
-					top ? val : win.pageYOffset
-				);
-
-			} else {
-				elem[ method ] = val;
-			}
-		}, method, val, arguments.length );
-	};
-} );
-
-// Support: Safari<7-8+, Chrome<37-44+
-// Add the top/left cssHooks using jQuery.fn.position
-// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
-// Blink bug: https://code.google.com/p/chromium/issues/detail?id=229280
-// getComputedStyle returns percent when specified for top/left/bottom/right;
-// rather than make the css module depend on the offset module, just check for it here
-jQuery.each( [ "top", "left" ], function( i, prop ) {
-	jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
-		function( elem, computed ) {
-			if ( computed ) {
-				computed = curCSS( elem, prop );
-
-				// If curCSS returns percentage, fallback to offset
-				return rnumnonpx.test( computed ) ?
-					jQuery( elem ).position()[ prop ] + "px" :
-					computed;
-			}
-		}
-	);
-} );
-
-
-// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
-jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
-	jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name },
-		function( defaultExtra, funcName ) {
-
-		// Margin is only for outerHeight, outerWidth
-		jQuery.fn[ funcName ] = function( margin, value ) {
-			var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
-				extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
-
-			return access( this, function( elem, type, value ) {
-				var doc;
-
-				if ( jQuery.isWindow( elem ) ) {
-
-					// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
-					// isn't a whole lot we can do. See pull request at this URL for discussion:
-					// https://github.com/jquery/jquery/pull/764
-					return elem.document.documentElement[ "client" + name ];
-				}
-
-				// Get document width or height
-				if ( elem.nodeType === 9 ) {
-					doc = elem.documentElement;
-
-					// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
-					// whichever is greatest
-					return Math.max(
-						elem.body[ "scroll" + name ], doc[ "scroll" + name ],
-						elem.body[ "offset" + name ], doc[ "offset" + name ],
-						doc[ "client" + name ]
-					);
-				}
-
-				return value === undefined ?
-
-					// Get width or height on the element, requesting but not forcing parseFloat
-					jQuery.css( elem, type, extra ) :
-
-					// Set width or height on the element
-					jQuery.style( elem, type, value, extra );
-			}, type, chainable ? margin : undefined, chainable, null );
-		};
-	} );
-} );
-
-
-jQuery.fn.extend( {
-
-	bind: function( types, data, fn ) {
-		return this.on( types, null, data, fn );
-	},
-	unbind: function( types, fn ) {
-		return this.off( types, null, fn );
-	},
-
-	delegate: function( selector, types, data, fn ) {
-		return this.on( types, selector, data, fn );
-	},
-	undelegate: function( selector, types, fn ) {
-
-		// ( namespace ) or ( selector, types [, fn] )
-		return arguments.length === 1 ?
-			this.off( selector, "**" ) :
-			this.off( types, selector || "**", fn );
-	},
-	size: function() {
-		return this.length;
-	}
-} );
-
-jQuery.fn.andSelf = jQuery.fn.addBack;
-
-
-
-
-// Register as a named AMD module, since jQuery can be concatenated with other
-// files that may use define, but not via a proper concatenation script that
-// understands anonymous AMD modules. A named AMD is safest and most robust
-// way to register. Lowercase jquery is used because AMD module names are
-// derived from file names, and jQuery is normally delivered in a lowercase
-// file name. Do this after creating the global so that if an AMD module wants
-// to call noConflict to hide this version of jQuery, it will work.
-
-// Note that for maximum portability, libraries that are not jQuery should
-// declare themselves as anonymous modules, and avoid setting a global if an
-// AMD loader is present. jQuery is a special case. For more information, see
-// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
-
-if ( typeof define === "function" && define.amd ) {
-	define( "jquery", [], function() {
-		return jQuery;
-	} );
-}
-
-
-
-var
-
-	// Map over jQuery in case of overwrite
-	_jQuery = window.jQuery,
-
-	// Map over the $ in case of overwrite
-	_$ = window.$;
-
-jQuery.noConflict = function( deep ) {
-	if ( window.$ === jQuery ) {
-		window.$ = _$;
-	}
-
-	if ( deep && window.jQuery === jQuery ) {
-		window.jQuery = _jQuery;
-	}
-
-	return jQuery;
-};
-
-// Expose jQuery and $ identifiers, even in AMD
-// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
-// and CommonJS for browser emulators (#13566)
-if ( !noGlobal ) {
-	window.jQuery = window.$ = jQuery;
-}
-
-return jQuery;
-}));
-;/*!
- * Bootstrap v3.3.6 (http://getbootstrap.com)
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under the MIT license
- */
-
-if (typeof jQuery === 'undefined') {
-  throw new Error('Bootstrap\'s JavaScript requires jQuery')
-}
-
-+function ($) {
-  'use strict';
-  var version = $.fn.jquery.split(' ')[0].split('.')
-  if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] > 2)) {
-    throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3')
-  }
-}(jQuery);
-
-/* ========================================================================
- * Bootstrap: transition.js v3.3.6
- * http://getbootstrap.com/javascript/#transitions
- * ========================================================================
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * ======================================================================== */
-
-
-+function ($) {
-  'use strict';
-
-  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
-  // ============================================================
-
-  function transitionEnd() {
-    var el = document.createElement('bootstrap')
-
-    var transEndEventNames = {
-      WebkitTransition : 'webkitTransitionEnd',
-      MozTransition    : 'transitionend',
-      OTransition      : 'oTransitionEnd otransitionend',
-      transition       : 'transitionend'
-    }
-
-    for (var name in transEndEventNames) {
-      if (el.style[name] !== undefined) {
-        return { end: transEndEventNames[name] }
-      }
-    }
-
-    return false // explicit for ie8 (  ._.)
-  }
-
-  // http://blog.alexmaccaw.com/css-transitions
-  $.fn.emulateTransitionEnd = function (duration) {
-    var called = false
-    var $el = this
-    $(this).one('bsTransitionEnd', function () { called = true })
-    var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
-    setTimeout(callback, duration)
-    return this
-  }
-
-  $(function () {
-    $.support.transition = transitionEnd()
-
-    if (!$.support.transition) return
-
-    $.event.special.bsTransitionEnd = {
-      bindType: $.support.transition.end,
-      delegateType: $.support.transition.end,
-      handle: function (e) {
-        if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
-      }
-    }
-  })
-
-}(jQuery);
-
-/* ========================================================================
- * Bootstrap: alert.js v3.3.6
- * http://getbootstrap.com/javascript/#alerts
- * ========================================================================
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * ======================================================================== */
-
-
-+function ($) {
-  'use strict';
-
-  // ALERT CLASS DEFINITION
-  // ======================
-
-  var dismiss = '[data-dismiss="alert"]'
-  var Alert   = function (el) {
-    $(el).on('click', dismiss, this.close)
-  }
-
-  Alert.VERSION = '3.3.6'
-
-  Alert.TRANSITION_DURATION = 150
-
-  Alert.prototype.close = function (e) {
-    var $this    = $(this)
-    var selector = $this.attr('data-target')
-
-    if (!selector) {
-      selector = $this.attr('href')
-      selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
-    }
-
-    var $parent = $(selector)
-
-    if (e) e.preventDefault()
-
-    if (!$parent.length) {
-      $parent = $this.closest('.alert')
-    }
-
-    $parent.trigger(e = $.Event('close.bs.alert'))
-
-    if (e.isDefaultPrevented()) return
-
-    $parent.removeClass('in')
-
-    function removeElement() {
-      // detach from parent, fire event then clean up data
-      $parent.detach().trigger('closed.bs.alert').remove()
-    }
-
-    $.support.transition && $parent.hasClass('fade') ?
-      $parent
-        .one('bsTransitionEnd', removeElement)
-        .emulateTransitionEnd(Alert.TRANSITION_DURATION) :
-      removeElement()
-  }
-
-
-  // ALERT PLUGIN DEFINITION
-  // =======================
-
-  function Plugin(option) {
-    return this.each(function () {
-      var $this = $(this)
-      var data  = $this.data('bs.alert')
-
-      if (!data) $this.data('bs.alert', (data = new Alert(this)))
-      if (typeof option == 'string') data[option].call($this)
-    })
-  }
-
-  var old = $.fn.alert
-
-  $.fn.alert             = Plugin
-  $.fn.alert.Constructor = Alert
-
-
-  // ALERT NO CONFLICT
-  // =================
-
-  $.fn.alert.noConflict = function () {
-    $.fn.alert = old
-    return this
-  }
-
-
-  // ALERT DATA-API
-  // ==============
-
-  $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
-
-}(jQuery);
-
-/* ========================================================================
- * Bootstrap: button.js v3.3.6
- * http://getbootstrap.com/javascript/#buttons
- * ========================================================================
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * ======================================================================== */
-
-
-+function ($) {
-  'use strict';
-
-  // BUTTON PUBLIC CLASS DEFINITION
-  // ==============================
-
-  var Button = function (element, options) {
-    this.$element  = $(element)
-    this.options   = $.extend({}, Button.DEFAULTS, options)
-    this.isLoading = false
-  }
-
-  Button.VERSION  = '3.3.6'
-
-  Button.DEFAULTS = {
-    loadingText: 'loading...'
-  }
-
-  Button.prototype.setState = function (state) {
-    var d    = 'disabled'
-    var $el  = this.$element
-    var val  = $el.is('input') ? 'val' : 'html'
-    var data = $el.data()
-
-    state += 'Text'
-
-    if (data.resetText == null) $el.data('resetText', $el[val]())
-
-    // push to event loop to allow forms to submit
-    setTimeout($.proxy(function () {
-      $el[val](data[state] == null ? this.options[state] : data[state])
-
-      if (state == 'loadingText') {
-        this.isLoading = true
-        $el.addClass(d).attr(d, d)
-      } else if (this.isLoading) {
-        this.isLoading = false
-        $el.removeClass(d).removeAttr(d)
-      }
-    }, this), 0)
-  }
-
-  Button.prototype.toggle = function () {
-    var changed = true
-    var $parent = this.$element.closest('[data-toggle="buttons"]')
-
-    if ($parent.length) {
-      var $input = this.$element.find('input')
-      if ($input.prop('type') == 'radio') {
-        if ($input.prop('checked')) changed = false
-        $parent.find('.active').removeClass('active')
-        this.$element.addClass('active')
-      } else if ($input.prop('type') == 'checkbox') {
-        if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false
-        this.$element.toggleClass('active')
-      }
-      $input.prop('checked', this.$element.hasClass('active'))
-      if (changed) $input.trigger('change')
-    } else {
-      this.$element.attr('aria-pressed', !this.$element.hasClass('active'))
-      this.$element.toggleClass('active')
-    }
-  }
-
-
-  // BUTTON PLUGIN DEFINITION
-  // ========================
-
-  function Plugin(option) {
-    return this.each(function () {
-      var $this   = $(this)
-      var data    = $this.data('bs.button')
-      var options = typeof option == 'object' && option
-
-      if (!data) $this.data('bs.button', (data = new Button(this, options)))
-
-      if (option == 'toggle') data.toggle()
-      else if (option) data.setState(option)
-    })
-  }
-
-  var old = $.fn.button
-
-  $.fn.button             = Plugin
-  $.fn.button.Constructor = Button
-
-
-  // BUTTON NO CONFLICT
-  // ==================
-
-  $.fn.button.noConflict = function () {
-    $.fn.button = old
-    return this
-  }
-
-
-  // BUTTON DATA-API
-  // ===============
-
-  $(document)
-    .on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) {
-      var $btn = $(e.target)
-      if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
-      Plugin.call($btn, 'toggle')
-      if (!($(e.target).is('input[type="radio"]') || $(e.target).is('input[type="checkbox"]'))) e.preventDefault()
-    })
-    .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) {
-      $(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type))
-    })
-
-}(jQuery);
-
-/* ========================================================================
- * Bootstrap: carousel.js v3.3.6
- * http://getbootstrap.com/javascript/#carousel
- * ========================================================================
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * ======================================================================== */
-
-
-+function ($) {
-  'use strict';
-
-  // CAROUSEL CLASS DEFINITION
-  // =========================
-
-  var Carousel = function (element, options) {
-    this.$element    = $(element)
-    this.$indicators = this.$element.find('.carousel-indicators')
-    this.options     = options
-    this.paused      = null
-    this.sliding     = null
-    this.interval    = null
-    this.$active     = null
-    this.$items      = null
-
-    this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this))
-
-    this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element
-      .on('mouseenter.bs.carousel', $.proxy(this.pause, this))
-      .on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
-  }
-
-  Carousel.VERSION  = '3.3.6'
-
-  Carousel.TRANSITION_DURATION = 600
-
-  Carousel.DEFAULTS = {
-    interval: 5000,
-    pause: 'hover',
-    wrap: true,
-    keyboard: true
-  }
-
-  Carousel.prototype.keydown = function (e) {
-    if (/input|textarea/i.test(e.target.tagName)) return
-    switch (e.which) {
-      case 37: this.prev(); break
-      case 39: this.next(); break
-      default: return
-    }
-
-    e.preventDefault()
-  }
-
-  Carousel.prototype.cycle = function (e) {
-    e || (this.paused = false)
-
-    this.interval && clearInterval(this.interval)
-
-    this.options.interval
-      && !this.paused
-      && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
-
-    return this
-  }
-
-  Carousel.prototype.getItemIndex = function (item) {
-    this.$items = item.parent().children('.item')
-    return this.$items.index(item || this.$active)
-  }
-
-  Carousel.prototype.getItemForDirection = function (direction, active) {
-    var activeIndex = this.getItemIndex(active)
-    var willWrap = (direction == 'prev' && activeIndex === 0)
-                || (direction == 'next' && activeIndex == (this.$items.length - 1))
-    if (willWrap && !this.options.wrap) return active
-    var delta = direction == 'prev' ? -1 : 1
-    var itemIndex = (activeIndex + delta) % this.$items.length
-    return this.$items.eq(itemIndex)
-  }
-
-  Carousel.prototype.to = function (pos) {
-    var that        = this
-    var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))
-
-    if (pos > (this.$items.length - 1) || pos < 0) return
-
-    if (this.sliding)       return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid"
-    if (activeIndex == pos) return this.pause().cycle()
-
-    return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos))
-  }
-
-  Carousel.prototype.pause = function (e) {
-    e || (this.paused = true)
-
-    if (this.$element.find('.next, .prev').length && $.support.transition) {
-      this.$element.trigger($.support.transition.end)
-      this.cycle(true)
-    }
-
-    this.interval = clearInterval(this.interval)
-
-    return this
-  }
-
-  Carousel.prototype.next = function () {
-    if (this.sliding) return
-    return this.slide('next')
-  }
-
-  Carousel.prototype.prev = function () {
-    if (this.sliding) return
-    return this.slide('prev')
-  }
-
-  Carousel.prototype.slide = function (type, next) {
-    var $active   = this.$element.find('.item.active')
-    var $next     = next || this.getItemForDirection(type, $active)
-    var isCycling = this.interval
-    var direction = type == 'next' ? 'left' : 'right'
-    var that      = this
-
-    if ($next.hasClass('active')) return (this.sliding = false)
-
-    var relatedTarget = $next[0]
-    var slideEvent = $.Event('slide.bs.carousel', {
-      relatedTarget: relatedTarget,
-      direction: direction
-    })
-    this.$element.trigger(slideEvent)
-    if (slideEvent.isDefaultPrevented()) return
-
-    this.sliding = true
-
-    isCycling && this.pause()
-
-    if (this.$indicators.length) {
-      this.$indicators.find('.active').removeClass('active')
-      var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])
-      $nextIndicator && $nextIndicator.addClass('active')
-    }
-
-    var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid"
-    if ($.support.transition && this.$element.hasClass('slide')) {
-      $next.addClass(type)
-      $next[0].offsetWidth // force reflow
-      $active.addClass(direction)
-      $next.addClass(direction)
-      $active
-        .one('bsTransitionEnd', function () {
-          $next.removeClass([type, direction].join(' ')).addClass('active')
-          $active.removeClass(['active', direction].join(' '))
-          that.sliding = false
-          setTimeout(function () {
-            that.$element.trigger(slidEvent)
-          }, 0)
-        })
-        .emulateTransitionEnd(Carousel.TRANSITION_DURATION)
-    } else {
-      $active.removeClass('active')
-      $next.addClass('active')
-      this.sliding = false
-      this.$element.trigger(slidEvent)
-    }
-
-    isCycling && this.cycle()
-
-    return this
-  }
-
-
-  // CAROUSEL PLUGIN DEFINITION
-  // ==========================
-
-  function Plugin(option) {
-    return this.each(function () {
-      var $this   = $(this)
-      var data    = $this.data('bs.carousel')
-      var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
-      var action  = typeof option == 'string' ? option : options.slide
-
-      if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
-      if (typeof option == 'number') data.to(option)
-      else if (action) data[action]()
-      else if (options.interval) data.pause().cycle()
-    })
-  }
-
-  var old = $.fn.carousel
-
-  $.fn.carousel             = Plugin
-  $.fn.carousel.Constructor = Carousel
-
-
-  // CAROUSEL NO CONFLICT
-  // ====================
-
-  $.fn.carousel.noConflict = function () {
-    $.fn.carousel = old
-    return this
-  }
-
-
-  // CAROUSEL DATA-API
-  // =================
-
-  var clickHandler = function (e) {
-    var href
-    var $this   = $(this)
-    var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
-    if (!$target.hasClass('carousel')) return
-    var options = $.extend({}, $target.data(), $this.data())
-    var slideIndex = $this.attr('data-slide-to')
-    if (slideIndex) options.interval = false
-
-    Plugin.call($target, options)
-
-    if (slideIndex) {
-      $target.data('bs.carousel').to(slideIndex)
-    }
-
-    e.preventDefault()
-  }
-
-  $(document)
-    .on('click.bs.carousel.data-api', '[data-slide]', clickHandler)
-    .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)
-
-  $(window).on('load', function () {
-    $('[data-ride="carousel"]').each(function () {
-      var $carousel = $(this)
-      Plugin.call($carousel, $carousel.data())
-    })
-  })
-
-}(jQuery);
-
-/* ========================================================================
- * Bootstrap: collapse.js v3.3.6
- * http://getbootstrap.com/javascript/#collapse
- * ========================================================================
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * ======================================================================== */
-
-
-+function ($) {
-  'use strict';
-
-  // COLLAPSE PUBLIC CLASS DEFINITION
-  // ================================
-
-  var Collapse = function (element, options) {
-    this.$element      = $(element)
-    this.options       = $.extend({}, Collapse.DEFAULTS, options)
-    this.$trigger      = $('[data-toggle="collapse"][href="#' + element.id + '"],' +
-                           '[data-toggle="collapse"][data-target="#' + element.id + '"]')
-    this.transitioning = null
-
-    if (this.options.parent) {
-      this.$parent = this.getParent()
-    } else {
-      this.addAriaAndCollapsedClass(this.$element, this.$trigger)
-    }
-
-    if (this.options.toggle) this.toggle()
-  }
-
-  Collapse.VERSION  = '3.3.6'
-
-  Collapse.TRANSITION_DURATION = 350
-
-  Collapse.DEFAULTS = {
-    toggle: true
-  }
-
-  Collapse.prototype.dimension = function () {
-    var hasWidth = this.$element.hasClass('width')
-    return hasWidth ? 'width' : 'height'
-  }
-
-  Collapse.prototype.show = function () {
-    if (this.transitioning || this.$element.hasClass('in')) return
-
-    var activesData
-    var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing')
-
-    if (actives && actives.length) {
-      activesData = actives.data('bs.collapse')
-      if (activesData && activesData.transitioning) return
-    }
-
-    var startEvent = $.Event('show.bs.collapse')
-    this.$element.trigger(startEvent)
-    if (startEvent.isDefaultPrevented()) return
-
-    if (actives && actives.length) {
-      Plugin.call(actives, 'hide')
-      activesData || actives.data('bs.collapse', null)
-    }
-
-    var dimension = this.dimension()
-
-    this.$element
-      .removeClass('collapse')
-      .addClass('collapsing')[dimension](0)
-      .attr('aria-expanded', true)
-
-    this.$trigger
-      .removeClass('collapsed')
-      .attr('aria-expanded', true)
-
-    this.transitioning = 1
-
-    var complete = function () {
-      this.$element
-        .removeClass('collapsing')
-        .addClass('collapse in')[dimension]('')
-      this.transitioning = 0
-      this.$element
-        .trigger('shown.bs.collapse')
-    }
-
-    if (!$.support.transition) return complete.call(this)
-
-    var scrollSize = $.camelCase(['scroll', dimension].join('-'))
-
-    this.$element
-      .one('bsTransitionEnd', $.proxy(complete, this))
-      .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize])
-  }
-
-  Collapse.prototype.hide = function () {
-    if (this.transitioning || !this.$element.hasClass('in')) return
-
-    var startEvent = $.Event('hide.bs.collapse')
-    this.$element.trigger(startEvent)
-    if (startEvent.isDefaultPrevented()) return
-
-    var dimension = this.dimension()
-
-    this.$element[dimension](this.$element[dimension]())[0].offsetHeight
-
-    this.$element
-      .addClass('collapsing')
-      .removeClass('collapse in')
-      .attr('aria-expanded', false)
-
-    this.$trigger
-      .addClass('collapsed')
-      .attr('aria-expanded', false)
-
-    this.transitioning = 1
-
-    var complete = function () {
-      this.transitioning = 0
-      this.$element
-        .removeClass('collapsing')
-        .addClass('collapse')
-        .trigger('hidden.bs.collapse')
-    }
-
-    if (!$.support.transition) return complete.call(this)
-
-    this.$element
-      [dimension](0)
-      .one('bsTransitionEnd', $.proxy(complete, this))
-      .emulateTransitionEnd(Collapse.TRANSITION_DURATION)
-  }
-
-  Collapse.prototype.toggle = function () {
-    this[this.$element.hasClass('in') ? 'hide' : 'show']()
-  }
-
-  Collapse.prototype.getParent = function () {
-    return $(this.options.parent)
-      .find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]')
-      .each($.proxy(function (i, element) {
-        var $element = $(element)
-        this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element)
-      }, this))
-      .end()
-  }
-
-  Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) {
-    var isOpen = $element.hasClass('in')
-
-    $element.attr('aria-expanded', isOpen)
-    $trigger
-      .toggleClass('collapsed', !isOpen)
-      .attr('aria-expanded', isOpen)
-  }
-
-  function getTargetFromTrigger($trigger) {
-    var href
-    var target = $trigger.attr('data-target')
-      || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7
-
-    return $(target)
-  }
-
-
-  // COLLAPSE PLUGIN DEFINITION
-  // ==========================
-
-  function Plugin(option) {
-    return this.each(function () {
-      var $this   = $(this)
-      var data    = $this.data('bs.collapse')
-      var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
-
-      if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false
-      if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
-      if (typeof option == 'string') data[option]()
-    })
-  }
-
-  var old = $.fn.collapse
-
-  $.fn.collapse             = Plugin
-  $.fn.collapse.Constructor = Collapse
-
-
-  // COLLAPSE NO CONFLICT
-  // ====================
-
-  $.fn.collapse.noConflict = function () {
-    $.fn.collapse = old
-    return this
-  }
-
-
-  // COLLAPSE DATA-API
-  // =================
-
-  $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) {
-    var $this   = $(this)
-
-    if (!$this.attr('data-target')) e.preventDefault()
-
-    var $target = getTargetFromTrigger($this)
-    var data    = $target.data('bs.collapse')
-    var option  = data ? 'toggle' : $this.data()
-
-    Plugin.call($target, option)
-  })
-
-}(jQuery);
-
-/* ========================================================================
- * Bootstrap: dropdown.js v3.3.6
- * http://getbootstrap.com/javascript/#dropdowns
- * ========================================================================
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * ======================================================================== */
-
-
-+function ($) {
-  'use strict';
-
-  // DROPDOWN CLASS DEFINITION
-  // =========================
-
-  var backdrop = '.dropdown-backdrop'
-  var toggle   = '[data-toggle="dropdown"]'
-  var Dropdown = function (element) {
-    $(element).on('click.bs.dropdown', this.toggle)
-  }
-
-  Dropdown.VERSION = '3.3.6'
-
-  function getParent($this) {
-    var selector = $this.attr('data-target')
-
-    if (!selector) {
-      selector = $this.attr('href')
-      selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
-    }
-
-    var $parent = selector && $(selector)
-
-    return $parent && $parent.length ? $parent : $this.parent()
-  }
-
-  function clearMenus(e) {
-    if (e && e.which === 3) return
-    $(backdrop).remove()
-    $(toggle).each(function () {
-      var $this         = $(this)
-      var $parent       = getParent($this)
-      var relatedTarget = { relatedTarget: this }
-
-      if (!$parent.hasClass('open')) return
-
-      if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return
-
-      $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
-
-      if (e.isDefaultPrevented()) return
-
-      $this.attr('aria-expanded', 'false')
-      $parent.removeClass('open').trigger($.Event('hidden.bs.dropdown', relatedTarget))
-    })
-  }
-
-  Dropdown.prototype.toggle = function (e) {
-    var $this = $(this)
-
-    if ($this.is('.disabled, :disabled')) return
-
-    var $parent  = getParent($this)
-    var isActive = $parent.hasClass('open')
-
-    clearMenus()
-
-    if (!isActive) {
-      if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
-        // if mobile we use a backdrop because click events don't delegate
-        $(document.createElement('div'))
-          .addClass('dropdown-backdrop')
-          .insertAfter($(this))
-          .on('click', clearMenus)
-      }
-
-      var relatedTarget = { relatedTarget: this }
-      $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
-
-      if (e.isDefaultPrevented()) return
-
-      $this
-        .trigger('focus')
-        .attr('aria-expanded', 'true')
-
-      $parent
-        .toggleClass('open')
-        .trigger($.Event('shown.bs.dropdown', relatedTarget))
-    }
-
-    return false
-  }
-
-  Dropdown.prototype.keydown = function (e) {
-    if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return
-
-    var $this = $(this)
-
-    e.preventDefault()
-    e.stopPropagation()
-
-    if ($this.is('.disabled, :disabled')) return
-
-    var $parent  = getParent($this)
-    var isActive = $parent.hasClass('open')
-
-    if (!isActive && e.which != 27 || isActive && e.which == 27) {
-      if (e.which == 27) $parent.find(toggle).trigger('focus')
-      return $this.trigger('click')
-    }
-
-    var desc = ' li:not(.disabled):visible a'
-    var $items = $parent.find('.dropdown-menu' + desc)
-
-    if (!$items.length) return
-
-    var index = $items.index(e.target)
-
-    if (e.which == 38 && index > 0)                 index--         // up
-    if (e.which == 40 && index < $items.length - 1) index++         // down
-    if (!~index)                                    index = 0
-
-    $items.eq(index).trigger('focus')
-  }
-
-
-  // DROPDOWN PLUGIN DEFINITION
-  // ==========================
-
-  function Plugin(option) {
-    return this.each(function () {
-      var $this = $(this)
-      var data  = $this.data('bs.dropdown')
-
-      if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
-      if (typeof option == 'string') data[option].call($this)
-    })
-  }
-
-  var old = $.fn.dropdown
-
-  $.fn.dropdown             = Plugin
-  $.fn.dropdown.Constructor = Dropdown
-
-
-  // DROPDOWN NO CONFLICT
-  // ====================
-
-  $.fn.dropdown.noConflict = function () {
-    $.fn.dropdown = old
-    return this
-  }
-
-
-  // APPLY TO STANDARD DROPDOWN ELEMENTS
-  // ===================================
-
-  $(document)
-    .on('click.bs.dropdown.data-api', clearMenus)
-    .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
-    .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
-    .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)
-    .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown)
-
-}(jQuery);
-
-/* ========================================================================
- * Bootstrap: modal.js v3.3.6
- * http://getbootstrap.com/javascript/#modals
- * ========================================================================
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * ======================================================================== */
-
-
-+function ($) {
-  'use strict';
-
-  // MODAL CLASS DEFINITION
-  // ======================
-
-  var Modal = function (element, options) {
-    this.options             = options
-    this.$body               = $(document.body)
-    this.$element            = $(element)
-    this.$dialog             = this.$element.find('.modal-dialog')
-    this.$backdrop           = null
-    this.isShown             = null
-    this.originalBodyPad     = null
-    this.scrollbarWidth      = 0
-    this.ignoreBackdropClick = false
-
-    if (this.options.remote) {
-      this.$element
-        .find('.modal-content')
-        .load(this.options.remote, $.proxy(function () {
-          this.$element.trigger('loaded.bs.modal')
-        }, this))
-    }
-  }
-
-  Modal.VERSION  = '3.3.6'
-
-  Modal.TRANSITION_DURATION = 300
-  Modal.BACKDROP_TRANSITION_DURATION = 150
-
-  Modal.DEFAULTS = {
-    backdrop: true,
-    keyboard: true,
-    show: true
-  }
-
-  Modal.prototype.toggle = function (_relatedTarget) {
-    return this.isShown ? this.hide() : this.show(_relatedTarget)
-  }
-
-  Modal.prototype.show = function (_relatedTarget) {
-    var that = this
-    var e    = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
-
-    this.$element.trigger(e)
-
-    if (this.isShown || e.isDefaultPrevented()) return
-
-    this.isShown = true
-
-    this.checkScrollbar()
-    this.setScrollbar()
-    this.$body.addClass('modal-open')
-
-    this.escape()
-    this.resize()
-
-    this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
-
-    this.$dialog.on('mousedown.dismiss.bs.modal', function () {
-      that.$element.one('mouseup.dismiss.bs.modal', function (e) {
-        if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true
-      })
-    })
-
-    this.backdrop(function () {
-      var transition = $.support.transition && that.$element.hasClass('fade')
-
-      if (!that.$element.parent().length) {
-        that.$element.appendTo(that.$body) // don't move modals dom position
-      }
-
-      that.$element
-        .show()
-        .scrollTop(0)
-
-      that.adjustDialog()
-
-      if (transition) {
-        that.$element[0].offsetWidth // force reflow
-      }
-
-      that.$element.addClass('in')
-
-      that.enforceFocus()
-
-      var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
-
-      transition ?
-        that.$dialog // wait for modal to slide in
-          .one('bsTransitionEnd', function () {
-            that.$element.trigger('focus').trigger(e)
-          })
-          .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
-        that.$element.trigger('focus').trigger(e)
-    })
-  }
-
-  Modal.prototype.hide = function (e) {
-    if (e) e.preventDefault()
-
-    e = $.Event('hide.bs.modal')
-
-    this.$element.trigger(e)
-
-    if (!this.isShown || e.isDefaultPrevented()) return
-
-    this.isShown = false
-
-    this.escape()
-    this.resize()
-
-    $(document).off('focusin.bs.modal')
-
-    this.$element
-      .removeClass('in')
-      .off('click.dismiss.bs.modal')
-      .off('mouseup.dismiss.bs.modal')
-
-    this.$dialog.off('mousedown.dismiss.bs.modal')
-
-    $.support.transition && this.$element.hasClass('fade') ?
-      this.$element
-        .one('bsTransitionEnd', $.proxy(this.hideModal, this))
-        .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
-      this.hideModal()
-  }
-
-  Modal.prototype.enforceFocus = function () {
-    $(document)
-      .off('focusin.bs.modal') // guard against infinite focus loop
-      .on('focusin.bs.modal', $.proxy(function (e) {
-        if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
-          this.$element.trigger('focus')
-        }
-      }, this))
-  }
-
-  Modal.prototype.escape = function () {
-    if (this.isShown && this.options.keyboard) {
-      this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) {
-        e.which == 27 && this.hide()
-      }, this))
-    } else if (!this.isShown) {
-      this.$element.off('keydown.dismiss.bs.modal')
-    }
-  }
-
-  Modal.prototype.resize = function () {
-    if (this.isShown) {
-      $(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this))
-    } else {
-      $(window).off('resize.bs.modal')
-    }
-  }
-
-  Modal.prototype.hideModal = function () {
-    var that = this
-    this.$element.hide()
-    this.backdrop(function () {
-      that.$body.removeClass('modal-open')
-      that.resetAdjustments()
-      that.resetScrollbar()
-      that.$element.trigger('hidden.bs.modal')
-    })
-  }
-
-  Modal.prototype.removeBackdrop = function () {
-    this.$backdrop && this.$backdrop.remove()
-    this.$backdrop = null
-  }
-
-  Modal.prototype.backdrop = function (callback) {
-    var that = this
-    var animate = this.$element.hasClass('fade') ? 'fade' : ''
-
-    if (this.isShown && this.options.backdrop) {
-      var doAnimate = $.support.transition && animate
-
-      this.$backdrop = $(document.createElement('div'))
-        .addClass('modal-backdrop ' + animate)
-        .appendTo(this.$body)
-
-      this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
-        if (this.ignoreBackdropClick) {
-          this.ignoreBackdropClick = false
-          return
-        }
-        if (e.target !== e.currentTarget) return
-        this.options.backdrop == 'static'
-          ? this.$element[0].focus()
-          : this.hide()
-      }, this))
-
-      if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
-
-      this.$backdrop.addClass('in')
-
-      if (!callback) return
-
-      doAnimate ?
-        this.$backdrop
-          .one('bsTransitionEnd', callback)
-          .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
-        callback()
-
-    } else if (!this.isShown && this.$backdrop) {
-      this.$backdrop.removeClass('in')
-
-      var callbackRemove = function () {
-        that.removeBackdrop()
-        callback && callback()
-      }
-      $.support.transition && this.$element.hasClass('fade') ?
-        this.$backdrop
-          .one('bsTransitionEnd', callbackRemove)
-          .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
-        callbackRemove()
-
-    } else if (callback) {
-      callback()
-    }
-  }
-
-  // these following methods are used to handle overflowing modals
-
-  Modal.prototype.handleUpdate = function () {
-    this.adjustDialog()
-  }
-
-  Modal.prototype.adjustDialog = function () {
-    var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight
-
-    this.$element.css({
-      paddingLeft:  !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',
-      paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''
-    })
-  }
-
-  Modal.prototype.resetAdjustments = function () {
-    this.$element.css({
-      paddingLeft: '',
-      paddingRight: ''
-    })
-  }
-
-  Modal.prototype.checkScrollbar = function () {
-    var fullWindowWidth = window.innerWidth
-    if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8
-      var documentElementRect = document.documentElement.getBoundingClientRect()
-      fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left)
-    }
-    this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth
-    this.scrollbarWidth = this.measureScrollbar()
-  }
-
-  Modal.prototype.setScrollbar = function () {
-    var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
-    this.originalBodyPad = document.body.style.paddingRight || ''
-    if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
-  }
-
-  Modal.prototype.resetScrollbar = function () {
-    this.$body.css('padding-right', this.originalBodyPad)
-  }
-
-  Modal.prototype.measureScrollbar = function () { // thx walsh
-    var scrollDiv = document.createElement('div')
-    scrollDiv.className = 'modal-scrollbar-measure'
-    this.$body.append(scrollDiv)
-    var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth
-    this.$body[0].removeChild(scrollDiv)
-    return scrollbarWidth
-  }
-
-
-  // MODAL PLUGIN DEFINITION
-  // =======================
-
-  function Plugin(option, _relatedTarget) {
-    return this.each(function () {
-      var $this   = $(this)
-      var data    = $this.data('bs.modal')
-      var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
-
-      if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
-      if (typeof option == 'string') data[option](_relatedTarget)
-      else if (options.show) data.show(_relatedTarget)
-    })
-  }
-
-  var old = $.fn.modal
-
-  $.fn.modal             = Plugin
-  $.fn.modal.Constructor = Modal
-
-
-  // MODAL NO CONFLICT
-  // =================
-
-  $.fn.modal.noConflict = function () {
-    $.fn.modal = old
-    return this
-  }
-
-
-  // MODAL DATA-API
-  // ==============
-
-  $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
-    var $this   = $(this)
-    var href    = $this.attr('href')
-    var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7
-    var option  = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
-
-    if ($this.is('a')) e.preventDefault()
-
-    $target.one('show.bs.modal', function (showEvent) {
-      if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown
-      $target.one('hidden.bs.modal', function () {
-        $this.is(':visible') && $this.trigger('focus')
-      })
-    })
-    Plugin.call($target, option, this)
-  })
-
-}(jQuery);
-
-/* ========================================================================
- * Bootstrap: tooltip.js v3.3.6
- * http://getbootstrap.com/javascript/#tooltip
- * Inspired by the original jQuery.tipsy by Jason Frame
- * ========================================================================
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * ======================================================================== */
-
-
-+function ($) {
-  'use strict';
-
-  // TOOLTIP PUBLIC CLASS DEFINITION
-  // ===============================
-
-  var Tooltip = function (element, options) {
-    this.type       = null
-    this.options    = null
-    this.enabled    = null
-    this.timeout    = null
-    this.hoverState = null
-    this.$element   = null
-    this.inState    = null
-
-    this.init('tooltip', element, options)
-  }
-
-  Tooltip.VERSION  = '3.3.6'
-
-  Tooltip.TRANSITION_DURATION = 150
-
-  Tooltip.DEFAULTS = {
-    animation: true,
-    placement: 'top',
-    selector: false,
-    template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
-    trigger: 'hover focus',
-    title: '',
-    delay: 0,
-    html: false,
-    container: false,
-    viewport: {
-      selector: 'body',
-      padding: 0
-    }
-  }
-
-  Tooltip.prototype.init = function (type, element, options) {
-    this.enabled   = true
-    this.type      = type
-    this.$element  = $(element)
-    this.options   = this.getOptions(options)
-    this.$viewport = this.options.viewport && $($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport))
-    this.inState   = { click: false, hover: false, focus: false }
-
-    if (this.$element[0] instanceof document.constructor && !this.options.selector) {
-      throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!')
-    }
-
-    var triggers = this.options.trigger.split(' ')
-
-    for (var i = triggers.length; i--;) {
-      var trigger = triggers[i]
-
-      if (trigger == 'click') {
-        this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
-      } else if (trigger != 'manual') {
-        var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin'
-        var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'
-
-        this.$element.on(eventIn  + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
-        this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
-      }
-    }
-
-    this.options.selector ?
-      (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
-      this.fixTitle()
-  }
-
-  Tooltip.prototype.getDefaults = function () {
-    return Tooltip.DEFAULTS
-  }
-
-  Tooltip.prototype.getOptions = function (options) {
-    options = $.extend({}, this.getDefaults(), this.$element.data(), options)
-
-    if (options.delay && typeof options.delay == 'number') {
-      options.delay = {
-        show: options.delay,
-        hide: options.delay
-      }
-    }
-
-    return options
-  }
-
-  Tooltip.prototype.getDelegateOptions = function () {
-    var options  = {}
-    var defaults = this.getDefaults()
-
-    this._options && $.each(this._options, function (key, value) {
-      if (defaults[key] != value) options[key] = value
-    })
-
-    return options
-  }
-
-  Tooltip.prototype.enter = function (obj) {
-    var self = obj instanceof this.constructor ?
-      obj : $(obj.currentTarget).data('bs.' + this.type)
-
-    if (!self) {
-      self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
-      $(obj.currentTarget).data('bs.' + this.type, self)
-    }
-
-    if (obj instanceof $.Event) {
-      self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true
-    }
-
-    if (self.tip().hasClass('in') || self.hoverState == 'in') {
-      self.hoverState = 'in'
-      return
-    }
-
-    clearTimeout(self.timeout)
-
-    self.hoverState = 'in'
-
-    if (!self.options.delay || !self.options.delay.show) return self.show()
-
-    self.timeout = setTimeout(function () {
-      if (self.hoverState == 'in') self.show()
-    }, self.options.delay.show)
-  }
-
-  Tooltip.prototype.isInStateTrue = function () {
-    for (var key in this.inState) {
-      if (this.inState[key]) return true
-    }
-
-    return false
-  }
-
-  Tooltip.prototype.leave = function (obj) {
-    var self = obj instanceof this.constructor ?
-      obj : $(obj.currentTarget).data('bs.' + this.type)
-
-    if (!self) {
-      self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
-      $(obj.currentTarget).data('bs.' + this.type, self)
-    }
-
-    if (obj instanceof $.Event) {
-      self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false
-    }
-
-    if (self.isInStateTrue()) return
-
-    clearTimeout(self.timeout)
-
-    self.hoverState = 'out'
-
-    if (!self.options.delay || !self.options.delay.hide) return self.hide()
-
-    self.timeout = setTimeout(function () {
-      if (self.hoverState == 'out') self.hide()
-    }, self.options.delay.hide)
-  }
-
-  Tooltip.prototype.show = function () {
-    var e = $.Event('show.bs.' + this.type)
-
-    if (this.hasContent() && this.enabled) {
-      this.$element.trigger(e)
-
-      var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0])
-      if (e.isDefaultPrevented() || !inDom) return
-      var that = this
-
-      var $tip = this.tip()
-
-      var tipId = this.getUID(this.type)
-
-      this.setContent()
-      $tip.attr('id', tipId)
-      this.$element.attr('aria-describedby', tipId)
-
-      if (this.options.animation) $tip.addClass('fade')
-
-      var placement = typeof this.options.placement == 'function' ?
-        this.options.placement.call(this, $tip[0], this.$element[0]) :
-        this.options.placement
-
-      var autoToken = /\s?auto?\s?/i
-      var autoPlace = autoToken.test(placement)
-      if (autoPlace) placement = placement.replace(autoToken, '') || 'top'
-
-      $tip
-        .detach()
-        .css({ top: 0, left: 0, display: 'block' })
-        .addClass(placement)
-        .data('bs.' + this.type, this)
-
-      this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
-      this.$element.trigger('inserted.bs.' + this.type)
-
-      var pos          = this.getPosition()
-      var actualWidth  = $tip[0].offsetWidth
-      var actualHeight = $tip[0].offsetHeight
-
-      if (autoPlace) {
-        var orgPlacement = placement
-        var viewportDim = this.getPosition(this.$viewport)
-
-        placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top'    :
-                    placement == 'top'    && pos.top    - actualHeight < viewportDim.top    ? 'bottom' :
-                    placement == 'right'  && pos.right  + actualWidth  > viewportDim.width  ? 'left'   :
-                    placement == 'left'   && pos.left   - actualWidth  < viewportDim.left   ? 'right'  :
-                    placement
-
-        $tip
-          .removeClass(orgPlacement)
-          .addClass(placement)
-      }
-
-      var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
-
-      this.applyPlacement(calculatedOffset, placement)
-
-      var complete = function () {
-        var prevHoverState = that.hoverState
-        that.$element.trigger('shown.bs.' + that.type)
-        that.hoverState = null
-
-        if (prevHoverState == 'out') that.leave(that)
-      }
-
-      $.support.transition && this.$tip.hasClass('fade') ?
-        $tip
-          .one('bsTransitionEnd', complete)
-          .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :
-        complete()
-    }
-  }
-
-  Tooltip.prototype.applyPlacement = function (offset, placement) {
-    var $tip   = this.tip()
-    var width  = $tip[0].offsetWidth
-    var height = $tip[0].offsetHeight
-
-    // manually read margins because getBoundingClientRect includes difference
-    var marginTop = parseInt($tip.css('margin-top'), 10)
-    var marginLeft = parseInt($tip.css('margin-left'), 10)
-
-    // we must check for NaN for ie 8/9
-    if (isNaN(marginTop))  marginTop  = 0
-    if (isNaN(marginLeft)) marginLeft = 0
-
-    offset.top  += marginTop
-    offset.left += marginLeft
-
-    // $.fn.offset doesn't round pixel values
-    // so we use setOffset directly with our own function B-0
-    $.offset.setOffset($tip[0], $.extend({
-      using: function (props) {
-        $tip.css({
-          top: Math.round(props.top),
-          left: Math.round(props.left)
-        })
-      }
-    }, offset), 0)
-
-    $tip.addClass('in')
-
-    // check to see if placing tip in new offset caused the tip to resize itself
-    var actualWidth  = $tip[0].offsetWidth
-    var actualHeight = $tip[0].offsetHeight
-
-    if (placement == 'top' && actualHeight != height) {
-      offset.top = offset.top + height - actualHeight
-    }
-
-    var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight)
-
-    if (delta.left) offset.left += delta.left
-    else offset.top += delta.top
-
-    var isVertical          = /top|bottom/.test(placement)
-    var arrowDelta          = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight
-    var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight'
-
-    $tip.offset(offset)
-    this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical)
-  }
-
-  Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) {
-    this.arrow()
-      .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%')
-      .css(isVertical ? 'top' : 'left', '')
-  }
-
-  Tooltip.prototype.setContent = function () {
-    var $tip  = this.tip()
-    var title = this.getTitle()
-
-    $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
-    $tip.removeClass('fade in top bottom left right')
-  }
-
-  Tooltip.prototype.hide = function (callback) {
-    var that = this
-    var $tip = $(this.$tip)
-    var e    = $.Event('hide.bs.' + this.type)
-
-    function complete() {
-      if (that.hoverState != 'in') $tip.detach()
-      that.$element
-        .removeAttr('aria-describedby')
-        .trigger('hidden.bs.' + that.type)
-      callback && callback()
-    }
-
-    this.$element.trigger(e)
-
-    if (e.isDefaultPrevented()) return
-
-    $tip.removeClass('in')
-
-    $.support.transition && $tip.hasClass('fade') ?
-      $tip
-        .one('bsTransitionEnd', complete)
-        .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :
-      complete()
-
-    this.hoverState = null
-
-    return this
-  }
-
-  Tooltip.prototype.fixTitle = function () {
-    var $e = this.$element
-    if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') {
-      $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
-    }
-  }
-
-  Tooltip.prototype.hasContent = function () {
-    return this.getTitle()
-  }
-
-  Tooltip.prototype.getPosition = function ($element) {
-    $element   = $element || this.$element
-
-    var el     = $element[0]
-    var isBody = el.tagName == 'BODY'
-
-    var elRect    = el.getBoundingClientRect()
-    if (elRect.width == null) {
-      // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093
-      elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top })
-    }
-    var elOffset  = isBody ? { top: 0, left: 0 } : $element.offset()
-    var scroll    = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() }
-    var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null
-
-    return $.extend({}, elRect, scroll, outerDims, elOffset)
-  }
-
-  Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
-    return placement == 'bottom' ? { top: pos.top + pos.height,   left: pos.left + pos.width / 2 - actualWidth / 2 } :
-           placement == 'top'    ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
-           placement == 'left'   ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
-        /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }
-
-  }
-
-  Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) {
-    var delta = { top: 0, left: 0 }
-    if (!this.$viewport) return delta
-
-    var viewportPadding = this.options.viewport && this.options.viewport.padding || 0
-    var viewportDimensions = this.getPosition(this.$viewport)
-
-    if (/right|left/.test(placement)) {
-      var topEdgeOffset    = pos.top - viewportPadding - viewportDimensions.scroll
-      var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight
-      if (topEdgeOffset < viewportDimensions.top) { // top overflow
-        delta.top = viewportDimensions.top - topEdgeOffset
-      } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow
-        delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset
-      }
-    } else {
-      var leftEdgeOffset  = pos.left - viewportPadding
-      var rightEdgeOffset = pos.left + viewportPadding + actualWidth
-      if (leftEdgeOffset < viewportDimensions.left) { // left overflow
-        delta.left = viewportDimensions.left - leftEdgeOffset
-      } else if (rightEdgeOffset > viewportDimensions.right) { // right overflow
-        delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset
-      }
-    }
-
-    return delta
-  }
-
-  Tooltip.prototype.getTitle = function () {
-    var title
-    var $e = this.$element
-    var o  = this.options
-
-    title = $e.attr('data-original-title')
-      || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title)
-
-    return title
-  }
-
-  Tooltip.prototype.getUID = function (prefix) {
-    do prefix += ~~(Math.random() * 1000000)
-    while (document.getElementById(prefix))
-    return prefix
-  }
-
-  Tooltip.prototype.tip = function () {
-    if (!this.$tip) {
-      this.$tip = $(this.options.template)
-      if (this.$tip.length != 1) {
-        throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!')
-      }
-    }
-    return this.$tip
-  }
-
-  Tooltip.prototype.arrow = function () {
-    return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow'))
-  }
-
-  Tooltip.prototype.enable = function () {
-    this.enabled = true
-  }
-
-  Tooltip.prototype.disable = function () {
-    this.enabled = false
-  }
-
-  Tooltip.prototype.toggleEnabled = function () {
-    this.enabled = !this.enabled
-  }
-
-  Tooltip.prototype.toggle = function (e) {
-    var self = this
-    if (e) {
-      self = $(e.currentTarget).data('bs.' + this.type)
-      if (!self) {
-        self = new this.constructor(e.currentTarget, this.getDelegateOptions())
-        $(e.currentTarget).data('bs.' + this.type, self)
-      }
-    }
-
-    if (e) {
-      self.inState.click = !self.inState.click
-      if (self.isInStateTrue()) self.enter(self)
-      else self.leave(self)
-    } else {
-      self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
-    }
-  }
-
-  Tooltip.prototype.destroy = function () {
-    var that = this
-    clearTimeout(this.timeout)
-    this.hide(function () {
-      that.$element.off('.' + that.type).removeData('bs.' + that.type)
-      if (that.$tip) {
-        that.$tip.detach()
-      }
-      that.$tip = null
-      that.$arrow = null
-      that.$viewport = null
-    })
-  }
-
-
-  // TOOLTIP PLUGIN DEFINITION
-  // =========================
-
-  function Plugin(option) {
-    return this.each(function () {
-      var $this   = $(this)
-      var data    = $this.data('bs.tooltip')
-      var options = typeof option == 'object' && option
-
-      if (!data && /destroy|hide/.test(option)) return
-      if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
-      if (typeof option == 'string') data[option]()
-    })
-  }
-
-  var old = $.fn.tooltip
-
-  $.fn.tooltip             = Plugin
-  $.fn.tooltip.Constructor = Tooltip
-
-
-  // TOOLTIP NO CONFLICT
-  // ===================
-
-  $.fn.tooltip.noConflict = function () {
-    $.fn.tooltip = old
-    return this
-  }
-
-}(jQuery);
-
-/* ========================================================================
- * Bootstrap: popover.js v3.3.6
- * http://getbootstrap.com/javascript/#popovers
- * ========================================================================
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * ======================================================================== */
-
-
-+function ($) {
-  'use strict';
-
-  // POPOVER PUBLIC CLASS DEFINITION
-  // ===============================
-
-  var Popover = function (element, options) {
-    this.init('popover', element, options)
-  }
-
-  if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
-
-  Popover.VERSION  = '3.3.6'
-
-  Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
-    placement: 'right',
-    trigger: 'click',
-    content: '',
-    template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
-  })
-
-
-  // NOTE: POPOVER EXTENDS tooltip.js
-  // ================================
-
-  Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
-
-  Popover.prototype.constructor = Popover
-
-  Popover.prototype.getDefaults = function () {
-    return Popover.DEFAULTS
-  }
-
-  Popover.prototype.setContent = function () {
-    var $tip    = this.tip()
-    var title   = this.getTitle()
-    var content = this.getContent()
-
-    $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
-    $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events
-      this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
-    ](content)
-
-    $tip.removeClass('fade top bottom left right in')
-
-    // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
-    // this manually by checking the contents.
-    if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
-  }
-
-  Popover.prototype.hasContent = function () {
-    return this.getTitle() || this.getContent()
-  }
-
-  Popover.prototype.getContent = function () {
-    var $e = this.$element
-    var o  = this.options
-
-    return $e.attr('data-content')
-      || (typeof o.content == 'function' ?
-            o.content.call($e[0]) :
-            o.content)
-  }
-
-  Popover.prototype.arrow = function () {
-    return (this.$arrow = this.$arrow || this.tip().find('.arrow'))
-  }
-
-
-  // POPOVER PLUGIN DEFINITION
-  // =========================
-
-  function Plugin(option) {
-    return this.each(function () {
-      var $this   = $(this)
-      var data    = $this.data('bs.popover')
-      var options = typeof option == 'object' && option
-
-      if (!data && /destroy|hide/.test(option)) return
-      if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
-      if (typeof option == 'string') data[option]()
-    })
-  }
-
-  var old = $.fn.popover
-
-  $.fn.popover             = Plugin
-  $.fn.popover.Constructor = Popover
-
-
-  // POPOVER NO CONFLICT
-  // ===================
-
-  $.fn.popover.noConflict = function () {
-    $.fn.popover = old
-    return this
-  }
-
-}(jQuery);
-
-/* ========================================================================
- * Bootstrap: scrollspy.js v3.3.6
- * http://getbootstrap.com/javascript/#scrollspy
- * ========================================================================
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * ======================================================================== */
-
-
-+function ($) {
-  'use strict';
-
-  // SCROLLSPY CLASS DEFINITION
-  // ==========================
-
-  function ScrollSpy(element, options) {
-    this.$body          = $(document.body)
-    this.$scrollElement = $(element).is(document.body) ? $(window) : $(element)
-    this.options        = $.extend({}, ScrollSpy.DEFAULTS, options)
-    this.selector       = (this.options.target || '') + ' .nav li > a'
-    this.offsets        = []
-    this.targets        = []
-    this.activeTarget   = null
-    this.scrollHeight   = 0
-
-    this.$scrollElement.on('scroll.bs.scrollspy', $.proxy(this.process, this))
-    this.refresh()
-    this.process()
-  }
-
-  ScrollSpy.VERSION  = '3.3.6'
-
-  ScrollSpy.DEFAULTS = {
-    offset: 10
-  }
-
-  ScrollSpy.prototype.getScrollHeight = function () {
-    return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight)
-  }
-
-  ScrollSpy.prototype.refresh = function () {
-    var that          = this
-    var offsetMethod  = 'offset'
-    var offsetBase    = 0
-
-    this.offsets      = []
-    this.targets      = []
-    this.scrollHeight = this.getScrollHeight()
-
-    if (!$.isWindow(this.$scrollElement[0])) {
-      offsetMethod = 'position'
-      offsetBase   = this.$scrollElement.scrollTop()
-    }
-
-    this.$body
-      .find(this.selector)
-      .map(function () {
-        var $el   = $(this)
-        var href  = $el.data('target') || $el.attr('href')
-        var $href = /^#./.test(href) && $(href)
-
-        return ($href
-          && $href.length
-          && $href.is(':visible')
-          && [[$href[offsetMethod]().top + offsetBase, href]]) || null
-      })
-      .sort(function (a, b) { return a[0] - b[0] })
-      .each(function () {
-        that.offsets.push(this[0])
-        that.targets.push(this[1])
-      })
-  }
-
-  ScrollSpy.prototype.process = function () {
-    var scrollTop    = this.$scrollElement.scrollTop() + this.options.offset
-    var scrollHeight = this.getScrollHeight()
-    var maxScroll    = this.options.offset + scrollHeight - this.$scrollElement.height()
-    var offsets      = this.offsets
-    var targets      = this.targets
-    var activeTarget = this.activeTarget
-    var i
-
-    if (this.scrollHeight != scrollHeight) {
-      this.refresh()
-    }
-
-    if (scrollTop >= maxScroll) {
-      return activeTarget != (i = targets[targets.length - 1]) && this.activate(i)
-    }
-
-    if (activeTarget && scrollTop < offsets[0]) {
-      this.activeTarget = null
-      return this.clear()
-    }
-
-    for (i = offsets.length; i--;) {
-      activeTarget != targets[i]
-        && scrollTop >= offsets[i]
-        && (offsets[i + 1] === undefined || scrollTop < offsets[i + 1])
-        && this.activate(targets[i])
-    }
-  }
-
-  ScrollSpy.prototype.activate = function (target) {
-    this.activeTarget = target
-
-    this.clear()
-
-    var selector = this.selector +
-      '[data-target="' + target + '"],' +
-      this.selector + '[href="' + target + '"]'
-
-    var active = $(selector)
-      .parents('li')
-      .addClass('active')
-
-    if (active.parent('.dropdown-menu').length) {
-      active = active
-        .closest('li.dropdown')
-        .addClass('active')
-    }
-
-    active.trigger('activate.bs.scrollspy')
-  }
-
-  ScrollSpy.prototype.clear = function () {
-    $(this.selector)
-      .parentsUntil(this.options.target, '.active')
-      .removeClass('active')
-  }
-
-
-  // SCROLLSPY PLUGIN DEFINITION
-  // ===========================
-
-  function Plugin(option) {
-    return this.each(function () {
-      var $this   = $(this)
-      var data    = $this.data('bs.scrollspy')
-      var options = typeof option == 'object' && option
-
-      if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
-      if (typeof option == 'string') data[option]()
-    })
-  }
-
-  var old = $.fn.scrollspy
-
-  $.fn.scrollspy             = Plugin
-  $.fn.scrollspy.Constructor = ScrollSpy
-
-
-  // SCROLLSPY NO CONFLICT
-  // =====================
-
-  $.fn.scrollspy.noConflict = function () {
-    $.fn.scrollspy = old
-    return this
-  }
-
-
-  // SCROLLSPY DATA-API
-  // ==================
-
-  $(window).on('load.bs.scrollspy.data-api', function () {
-    $('[data-spy="scroll"]').each(function () {
-      var $spy = $(this)
-      Plugin.call($spy, $spy.data())
-    })
-  })
-
-}(jQuery);
-
-/* ========================================================================
- * Bootstrap: tab.js v3.3.6
- * http://getbootstrap.com/javascript/#tabs
- * ========================================================================
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * ======================================================================== */
-
-
-+function ($) {
-  'use strict';
-
-  // TAB CLASS DEFINITION
-  // ====================
-
-  var Tab = function (element) {
-    // jscs:disable requireDollarBeforejQueryAssignment
-    this.element = $(element)
-    // jscs:enable requireDollarBeforejQueryAssignment
-  }
-
-  Tab.VERSION = '3.3.6'
-
-  Tab.TRANSITION_DURATION = 150
-
-  Tab.prototype.show = function () {
-    var $this    = this.element
-    var $ul      = $this.closest('ul:not(.dropdown-menu)')
-    var selector = $this.data('target')
-
-    if (!selector) {
-      selector = $this.attr('href')
-      selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
-    }
-
-    if ($this.parent('li').hasClass('active')) return
-
-    var $previous = $ul.find('.active:last a')
-    var hideEvent = $.Event('hide.bs.tab', {
-      relatedTarget: $this[0]
-    })
-    var showEvent = $.Event('show.bs.tab', {
-      relatedTarget: $previous[0]
-    })
-
-    $previous.trigger(hideEvent)
-    $this.trigger(showEvent)
-
-    if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return
-
-    var $target = $(selector)
-
-    this.activate($this.closest('li'), $ul)
-    this.activate($target, $target.parent(), function () {
-      $previous.trigger({
-        type: 'hidden.bs.tab',
-        relatedTarget: $this[0]
-      })
-      $this.trigger({
-        type: 'shown.bs.tab',
-        relatedTarget: $previous[0]
-      })
-    })
-  }
-
-  Tab.prototype.activate = function (element, container, callback) {
-    var $active    = container.find('> .active')
-    var transition = callback
-      && $.support.transition
-      && ($active.length && $active.hasClass('fade') || !!container.find('> .fade').length)
-
-    function next() {
-      $active
-        .removeClass('active')
-        .find('> .dropdown-menu > .active')
-          .removeClass('active')
-        .end()
-        .find('[data-toggle="tab"]')
-          .attr('aria-expanded', false)
-
-      element
-        .addClass('active')
-        .find('[data-toggle="tab"]')
-          .attr('aria-expanded', true)
-
-      if (transition) {
-        element[0].offsetWidth // reflow for transition
-        element.addClass('in')
-      } else {
-        element.removeClass('fade')
-      }
-
-      if (element.parent('.dropdown-menu').length) {
-        element
-          .closest('li.dropdown')
-            .addClass('active')
-          .end()
-          .find('[data-toggle="tab"]')
-            .attr('aria-expanded', true)
-      }
-
-      callback && callback()
-    }
-
-    $active.length && transition ?
-      $active
-        .one('bsTransitionEnd', next)
-        .emulateTransitionEnd(Tab.TRANSITION_DURATION) :
-      next()
-
-    $active.removeClass('in')
-  }
-
-
-  // TAB PLUGIN DEFINITION
-  // =====================
-
-  function Plugin(option) {
-    return this.each(function () {
-      var $this = $(this)
-      var data  = $this.data('bs.tab')
-
-      if (!data) $this.data('bs.tab', (data = new Tab(this)))
-      if (typeof option == 'string') data[option]()
-    })
-  }
-
-  var old = $.fn.tab
-
-  $.fn.tab             = Plugin
-  $.fn.tab.Constructor = Tab
-
-
-  // TAB NO CONFLICT
-  // ===============
-
-  $.fn.tab.noConflict = function () {
-    $.fn.tab = old
-    return this
-  }
-
-
-  // TAB DATA-API
-  // ============
-
-  var clickHandler = function (e) {
-    e.preventDefault()
-    Plugin.call($(this), 'show')
-  }
-
-  $(document)
-    .on('click.bs.tab.data-api', '[data-toggle="tab"]', clickHandler)
-    .on('click.bs.tab.data-api', '[data-toggle="pill"]', clickHandler)
-
-}(jQuery);
-
-/* ========================================================================
- * Bootstrap: affix.js v3.3.6
- * http://getbootstrap.com/javascript/#affix
- * ========================================================================
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * ======================================================================== */
-
-
-+function ($) {
-  'use strict';
-
-  // AFFIX CLASS DEFINITION
-  // ======================
-
-  var Affix = function (element, options) {
-    this.options = $.extend({}, Affix.DEFAULTS, options)
-
-    this.$target = $(this.options.target)
-      .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
-      .on('click.bs.affix.data-api',  $.proxy(this.checkPositionWithEventLoop, this))
-
-    this.$element     = $(element)
-    this.affixed      = null
-    this.unpin        = null
-    this.pinnedOffset = null
-
-    this.checkPosition()
-  }
-
-  Affix.VERSION  = '3.3.6'
-
-  Affix.RESET    = 'affix affix-top affix-bottom'
-
-  Affix.DEFAULTS = {
-    offset: 0,
-    target: window
-  }
-
-  Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) {
-    var scrollTop    = this.$target.scrollTop()
-    var position     = this.$element.offset()
-    var targetHeight = this.$target.height()
-
-    if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false
-
-    if (this.affixed == 'bottom') {
-      if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom'
-      return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom'
-    }
-
-    var initializing   = this.affixed == null
-    var colliderTop    = initializing ? scrollTop : position.top
-    var colliderHeight = initializing ? targetHeight : height
-
-    if (offsetTop != null && scrollTop <= offsetTop) return 'top'
-    if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom'
-
-    return false
-  }
-
-  Affix.prototype.getPinnedOffset = function () {
-    if (this.pinnedOffset) return this.pinnedOffset
-    this.$element.removeClass(Affix.RESET).addClass('affix')
-    var scrollTop = this.$target.scrollTop()
-    var position  = this.$element.offset()
-    return (this.pinnedOffset = position.top - scrollTop)
-  }
-
-  Affix.prototype.checkPositionWithEventLoop = function () {
-    setTimeout($.proxy(this.checkPosition, this), 1)
-  }
-
-  Affix.prototype.checkPosition = function () {
-    if (!this.$element.is(':visible')) return
-
-    var height       = this.$element.height()
-    var offset       = this.options.offset
-    var offsetTop    = offset.top
-    var offsetBottom = offset.bottom
-    var scrollHeight = Math.max($(document).height(), $(document.body).height())
-
-    if (typeof offset != 'object')         offsetBottom = offsetTop = offset
-    if (typeof offsetTop == 'function')    offsetTop    = offset.top(this.$element)
-    if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)
-
-    var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom)
-
-    if (this.affixed != affix) {
-      if (this.unpin != null) this.$element.css('top', '')
-
-      var affixType = 'affix' + (affix ? '-' + affix : '')
-      var e         = $.Event(affixType + '.bs.affix')
-
-      this.$element.trigger(e)
-
-      if (e.isDefaultPrevented()) return
-
-      this.affixed = affix
-      this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null
-
-      this.$element
-        .removeClass(Affix.RESET)
-        .addClass(affixType)
-        .trigger(affixType.replace('affix', 'affixed') + '.bs.affix')
-    }
-
-    if (affix == 'bottom') {
-      this.$element.offset({
-        top: scrollHeight - height - offsetBottom
-      })
-    }
-  }
-
-
-  // AFFIX PLUGIN DEFINITION
-  // =======================
-
-  function Plugin(option) {
-    return this.each(function () {
-      var $this   = $(this)
-      var data    = $this.data('bs.affix')
-      var options = typeof option == 'object' && option
-
-      if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
-      if (typeof option == 'string') data[option]()
-    })
-  }
-
-  var old = $.fn.affix
-
-  $.fn.affix             = Plugin
-  $.fn.affix.Constructor = Affix
-
-
-  // AFFIX NO CONFLICT
-  // =================
-
-  $.fn.affix.noConflict = function () {
-    $.fn.affix = old
-    return this
-  }
-
-
-  // AFFIX DATA-API
-  // ==============
-
-  $(window).on('load', function () {
-    $('[data-spy="affix"]').each(function () {
-      var $spy = $(this)
-      var data = $spy.data()
-
-      data.offset = data.offset || {}
-
-      if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom
-      if (data.offsetTop    != null) data.offset.top    = data.offsetTop
-
-      Plugin.call($spy, data)
-    })
-  })
-
-}(jQuery);
-;/*!
- * BootstrapValidator (http://bootstrapvalidator.com)
- * The best jQuery plugin to validate form fields. Designed to use with Bootstrap 3
- *
- * @version     v0.5.3, built on 2014-11-05 9:14:18 PM
- * @author      https://twitter.com/nghuuphuoc
- * @copyright   (c) 2013 - 2014 Nguyen Huu Phuoc
- * @license     Commercial: http://bootstrapvalidator.com/license/
- *              Non-commercial: http://creativecommons.org/licenses/by-nc-nd/3.0/
- */
-if("undefined"==typeof jQuery)throw new Error("BootstrapValidator requires jQuery");!function(a){var b=a.fn.jquery.split(" ")[0].split(".");if(+b[0]<2&&+b[1]<9||1===+b[0]&&9===+b[1]&&+b[2]<1)throw new Error("BootstrapValidator requires jQuery version 1.9.1 or higher")}(window.jQuery),function(a){var b=function(b,c){this.$form=a(b),this.options=a.extend({},a.fn.bootstrapValidator.DEFAULT_OPTIONS,c),this.$invalidFields=a([]),this.$submitButton=null,this.$hiddenButton=null,this.STATUS_NOT_VALIDATED="NOT_VALIDATED",this.STATUS_VALIDATING="VALIDATING",this.STATUS_INVALID="INVALID",this.STATUS_VALID="VALID";var d=function(){for(var a=3,b=document.createElement("div"),c=b.all||[];b.innerHTML="<!--[if gt IE "+ ++a+"]><br><![endif]-->",c[0];);return a>4?a:!a}(),e=document.createElement("div");this._changeEvent=9!==d&&"oninput"in e?"input":"keyup",this._submitIfValid=null,this._cacheFields={},this._init()};b.prototype={constructor:b,_init:function(){var b=this,c={autoFocus:this.$form.attr("data-bv-autofocus"),container:this.$form.attr("data-bv-container"),events:{formInit:this.$form.attr("data-bv-events-form-init"),formError:this.$form.attr("data-bv-events-form-error"),formSuccess:this.$form.attr("data-bv-events-form-success"),fieldAdded:this.$form.attr("data-bv-events-field-added"),fieldRemoved:this.$form.attr("data-bv-events-field-removed"),fieldInit:this.$form.attr("data-bv-events-field-init"),fieldError:this.$form.attr("data-bv-events-field-error"),fieldSuccess:this.$form.attr("data-bv-events-field-success"),fieldStatus:this.$form.attr("data-bv-events-field-status"),validatorError:this.$form.attr("data-bv-events-validator-error"),validatorSuccess:this.$form.attr("data-bv-events-validator-success")},excluded:this.$form.attr("data-bv-excluded"),feedbackIcons:{valid:this.$form.attr("data-bv-feedbackicons-valid"),invalid:this.$form.attr("data-bv-feedbackicons-invalid"),validating:this.$form.attr("data-bv-feedbackicons-validating")},group:this.$form.attr("data-bv-group"),live:this.$form.attr("data-bv-live"),message:this.$form.attr("data-bv-message"),onError:this.$form.attr("data-bv-onerror"),onSuccess:this.$form.attr("data-bv-onsuccess"),submitButtons:this.$form.attr("data-bv-submitbuttons"),threshold:this.$form.attr("data-bv-threshold"),trigger:this.$form.attr("data-bv-trigger"),verbose:this.$form.attr("data-bv-verbose"),fields:{}};this.$form.attr("novalidate","novalidate").addClass(this.options.elementClass).on("submit.bv",function(a){a.preventDefault(),b.validate()}).on("click.bv",this.options.submitButtons,function(){b.$submitButton=a(this),b._submitIfValid=!0}).find("[name], [data-bv-field]").each(function(){var d=a(this),e=d.attr("name")||d.attr("data-bv-field"),f=b._parseOptions(d);f&&(d.attr("data-bv-field",e),c.fields[e]=a.extend({},f,c.fields[e]))}),this.options=a.extend(!0,this.options,c),this.$hiddenButton=a("<button/>").attr("type","submit").prependTo(this.$form).addClass("bv-hidden-submit").css({display:"none",width:0,height:0}),this.$form.on("click.bv",'[type="submit"]',function(c){if(!c.isDefaultPrevented()){var d=a(c.target),e=d.is('[type="submit"]')?d.eq(0):d.parent('[type="submit"]').eq(0);!b.options.submitButtons||e.is(b.options.submitButtons)||e.is(b.$hiddenButton)||b.$form.off("submit.bv").submit()}});for(var d in this.options.fields)this._initField(d);this.$form.trigger(a.Event(this.options.events.formInit),{bv:this,options:this.options}),this.options.onSuccess&&this.$form.on(this.options.events.formSuccess,function(c){a.fn.bootstrapValidator.helpers.call(b.options.onSuccess,[c])}),this.options.onError&&this.$form.on(this.options.events.formError,function(c){a.fn.bootstrapValidator.helpers.call(b.options.onError,[c])})},_parseOptions:function(b){var c,d,e,f,g,h,i,j,k,l=b.attr("name")||b.attr("data-bv-field"),m={};for(d in a.fn.bootstrapValidator.validators)if(c=a.fn.bootstrapValidator.validators[d],e="data-bv-"+d.toLowerCase(),f=b.attr(e)+"",k="function"==typeof c.enableByHtml5?c.enableByHtml5(b):null,k&&"false"!==f||k!==!0&&(""===f||"true"===f||e===f.toLowerCase())){c.html5Attributes=a.extend({},{message:"message",onerror:"onError",onsuccess:"onSuccess"},c.html5Attributes),m[d]=a.extend({},k===!0?{}:k,m[d]);for(j in c.html5Attributes)g=c.html5Attributes[j],h="data-bv-"+d.toLowerCase()+"-"+j,i=b.attr(h),i&&("true"===i||h===i.toLowerCase()?i=!0:"false"===i&&(i=!1),m[d][g]=i)}var n={autoFocus:b.attr("data-bv-autofocus"),container:b.attr("data-bv-container"),excluded:b.attr("data-bv-excluded"),feedbackIcons:b.attr("data-bv-feedbackicons"),group:b.attr("data-bv-group"),message:b.attr("data-bv-message"),onError:b.attr("data-bv-onerror"),onStatus:b.attr("data-bv-onstatus"),onSuccess:b.attr("data-bv-onsuccess"),selector:b.attr("data-bv-selector"),threshold:b.attr("data-bv-threshold"),trigger:b.attr("data-bv-trigger"),verbose:b.attr("data-bv-verbose"),validators:m},o=a.isEmptyObject(n),p=a.isEmptyObject(m);return!p||!o&&this.options.fields&&this.options.fields[l]?(n.validators=m,n):null},_initField:function(b){var c=a([]);switch(typeof b){case"object":c=b,b=b.attr("data-bv-field");break;case"string":c=this.getFieldElements(b),c.attr("data-bv-field",b)}if(0!==c.length&&null!==this.options.fields[b]&&null!==this.options.fields[b].validators){var d;for(d in this.options.fields[b].validators)a.fn.bootstrapValidator.validators[d]||delete this.options.fields[b].validators[d];null===this.options.fields[b].enabled&&(this.options.fields[b].enabled=!0);for(var e=this,f=c.length,g=c.attr("type"),h=1===f||"radio"===g||"checkbox"===g,i="radio"===g||"checkbox"===g||"file"===g||"SELECT"===c.eq(0).get(0).tagName?"change":this._changeEvent,j=(this.options.fields[b].trigger||this.options.trigger||i).split(" "),k=a.map(j,function(a){return a+".update.bv"}).join(" "),l=0;f>l;l++){var m=c.eq(l),n=this.options.fields[b].group||this.options.group,o=m.parents(n),p="function"==typeof(this.options.fields[b].container||this.options.container)?(this.options.fields[b].container||this.options.container).call(this,m,this):this.options.fields[b].container||this.options.container,q=p&&"tooltip"!==p&&"popover"!==p?a(p):this._getMessageContainer(m,n);p&&"tooltip"!==p&&"popover"!==p&&q.addClass("has-error"),q.find('.help-block[data-bv-validator][data-bv-for="'+b+'"]').remove(),o.find('i[data-bv-icon-for="'+b+'"]').remove(),m.off(k).on(k,function(){e.updateStatus(a(this),e.STATUS_NOT_VALIDATED)}),m.data("bv.messages",q);for(d in this.options.fields[b].validators)m.data("bv.result."+d,this.STATUS_NOT_VALIDATED),h&&l!==f-1||a("<small/>").css("display","none").addClass("help-block").attr("data-bv-validator",d).attr("data-bv-for",b).attr("data-bv-result",this.STATUS_NOT_VALIDATED).html(this._getMessage(b,d)).appendTo(q),"function"==typeof a.fn.bootstrapValidator.validators[d].init&&a.fn.bootstrapValidator.validators[d].init(this,m,this.options.fields[b].validators[d]);if(this.options.fields[b].feedbackIcons!==!1&&"false"!==this.options.fields[b].feedbackIcons&&this.options.feedbackIcons&&this.options.feedbackIcons.validating&&this.options.feedbackIcons.invalid&&this.options.feedbackIcons.valid&&(!h||l===f-1)){o.addClass("has-feedback");var r=a("<i/>").css("display","none").addClass("form-control-feedback").attr("data-bv-icon-for",b).insertAfter(m);if("checkbox"===g||"radio"===g){var s=m.parent();s.hasClass(g)?r.insertAfter(s):s.parent().hasClass(g)&&r.insertAfter(s.parent())}0===o.find("label").length&&r.addClass("bv-no-label"),0!==o.find(".input-group").length&&r.addClass("bv-icon-input-group").insertAfter(o.find(".input-group").eq(0)),h?l===f-1&&c.data("bv.icon",r):m.data("bv.icon",r),p&&m.off("focus.container.bv").on("focus.container.bv",function(){switch(p){case"tooltip":a(this).data("bv.icon").tooltip("show");break;case"popover":a(this).data("bv.icon").popover("show")}}).off("blur.container.bv").on("blur.container.bv",function(){switch(p){case"tooltip":a(this).data("bv.icon").tooltip("hide");break;case"popover":a(this).data("bv.icon").popover("hide")}})}}switch(c.on(this.options.events.fieldSuccess,function(b,c){var d=e.getOptions(c.field,null,"onSuccess");d&&a.fn.bootstrapValidator.helpers.call(d,[b,c])}).on(this.options.events.fieldError,function(b,c){var d=e.getOptions(c.field,null,"onError");d&&a.fn.bootstrapValidator.helpers.call(d,[b,c])}).on(this.options.events.fieldStatus,function(b,c){var d=e.getOptions(c.field,null,"onStatus");d&&a.fn.bootstrapValidator.helpers.call(d,[b,c])}).on(this.options.events.validatorError,function(b,c){var d=e.getOptions(c.field,c.validator,"onError");d&&a.fn.bootstrapValidator.helpers.call(d,[b,c])}).on(this.options.events.validatorSuccess,function(b,c){var d=e.getOptions(c.field,c.validator,"onSuccess");d&&a.fn.bootstrapValidator.helpers.call(d,[b,c])}),k=a.map(j,function(a){return a+".live.bv"}).join(" "),this.options.live){case"submitted":break;case"disabled":c.off(k);break;case"enabled":default:c.off(k).on(k,function(){e._exceedThreshold(a(this))&&e.validateField(a(this))})}c.trigger(a.Event(this.options.events.fieldInit),{bv:this,field:b,element:c})}},_getMessage:function(b,c){if(!(this.options.fields[b]&&a.fn.bootstrapValidator.validators[c]&&this.options.fields[b].validators&&this.options.fields[b].validators[c]))return"";var d=this.options.fields[b].validators[c];switch(!0){case!!d.message:return d.message;case!!this.options.fields[b].message:return this.options.fields[b].message;case!!a.fn.bootstrapValidator.i18n[c]:return a.fn.bootstrapValidator.i18n[c]["default"];default:return this.options.message}},_getMessageContainer:function(a,b){var c=a.parent();if(c.is(b))return c;var d=c.attr("class");if(!d)return this._getMessageContainer(c,b);d=d.split(" ");for(var e=d.length,f=0;e>f;f++)if(/^col-(xs|sm|md|lg)-\d+$/.test(d[f])||/^col-(xs|sm|md|lg)-offset-\d+$/.test(d[f]))return c;return this._getMessageContainer(c,b)},_submit:function(){var b=this.isValid(),c=b?this.options.events.formSuccess:this.options.events.formError,d=a.Event(c);this.$form.trigger(d),this.$submitButton&&(b?this._onSuccess(d):this._onError(d))},_isExcluded:function(b){var c=b.attr("data-bv-excluded"),d=b.attr("data-bv-field")||b.attr("name");switch(!0){case!!d&&this.options.fields&&this.options.fields[d]&&("true"===this.options.fields[d].excluded||this.options.fields[d].excluded===!0):case"true"===c:case""===c:return!0;case!!d&&this.options.fields&&this.options.fields[d]&&("false"===this.options.fields[d].excluded||this.options.fields[d].excluded===!1):case"false"===c:return!1;default:if(this.options.excluded){"string"==typeof this.options.excluded&&(this.options.excluded=a.map(this.options.excluded.split(","),function(b){return a.trim(b)}));for(var e=this.options.excluded.length,f=0;e>f;f++)if("string"==typeof this.options.excluded[f]&&b.is(this.options.excluded[f])||"function"==typeof this.options.excluded[f]&&this.options.excluded[f].call(this,b,this)===!0)return!0}return!1}},_exceedThreshold:function(b){var c=b.attr("data-bv-field"),d=this.options.fields[c].threshold||this.options.threshold;if(!d)return!0;var e=-1!==a.inArray(b.attr("type"),["button","checkbox","file","hidden","image","radio","reset","submit"]);return e||b.val().length>=d},_onError:function(b){if(!b.isDefaultPrevented()){if("submitted"===this.options.live){this.options.live="enabled";var c=this;for(var d in this.options.fields)!function(b){var e=c.getFieldElements(b);if(e.length){var f=a(e[0]).attr("type"),g="radio"===f||"checkbox"===f||"file"===f||"SELECT"===a(e[0]).get(0).tagName?"change":c._changeEvent,h=c.options.fields[d].trigger||c.options.trigger||g,i=a.map(h.split(" "),function(a){return a+".live.bv"}).join(" ");e.off(i).on(i,function(){c._exceedThreshold(a(this))&&c.validateField(a(this))})}}(d)}for(var e=0;e<this.$invalidFields.length;e++){var f=this.$invalidFields.eq(e),g=this._isOptionEnabled(f.attr("data-bv-field"),"autoFocus");if(g){var h,i=f.parents(".tab-pane");i&&(h=i.attr("id"))&&a('a[href="#'+h+'"][data-toggle="tab"]').tab("show"),f.focus();break}}}},_onSuccess:function(a){a.isDefaultPrevented()||this.disableSubmitButtons(!0).defaultSubmit()},_onFieldValidated:function(b,c){var d=b.attr("data-bv-field"),e=this.options.fields[d].validators,f={},g=0,h={bv:this,field:d,element:b,validator:c,result:b.data("bv.response."+c)};if(c)switch(b.data("bv.result."+c)){case this.STATUS_INVALID:b.trigger(a.Event(this.options.events.validatorError),h);break;case this.STATUS_VALID:b.trigger(a.Event(this.options.events.validatorSuccess),h)}f[this.STATUS_NOT_VALIDATED]=0,f[this.STATUS_VALIDATING]=0,f[this.STATUS_INVALID]=0,f[this.STATUS_VALID]=0;for(var i in e)if(e[i].enabled!==!1){g++;var j=b.data("bv.result."+i);j&&f[j]++}f[this.STATUS_VALID]===g?(this.$invalidFields=this.$invalidFields.not(b),b.trigger(a.Event(this.options.events.fieldSuccess),h)):(0===f[this.STATUS_NOT_VALIDATED]||!this._isOptionEnabled(d,"verbose"))&&0===f[this.STATUS_VALIDATING]&&f[this.STATUS_INVALID]>0&&(this.$invalidFields=this.$invalidFields.add(b),b.trigger(a.Event(this.options.events.fieldError),h))},_isOptionEnabled:function(a,b){return!this.options.fields[a]||"true"!==this.options.fields[a][b]&&this.options.fields[a][b]!==!0?!this.options.fields[a]||"false"!==this.options.fields[a][b]&&this.options.fields[a][b]!==!1?"true"===this.options[b]||this.options[b]===!0:!1:!0},getFieldElements:function(b){return this._cacheFields[b]||(this._cacheFields[b]=this.options.fields[b]&&this.options.fields[b].selector?a(this.options.fields[b].selector):this.$form.find('[name="'+b+'"]')),this._cacheFields[b]},getOptions:function(a,b,c){if(!a)return c?this.options[c]:this.options;if("object"==typeof a&&(a=a.attr("data-bv-field")),!this.options.fields[a])return null;var d=this.options.fields[a];return b?d.validators&&d.validators[b]?c?d.validators[b][c]:d.validators[b]:null:c?d[c]:d},disableSubmitButtons:function(a){return a?"disabled"!==this.options.live&&this.$form.find(this.options.submitButtons).attr("disabled","disabled"):this.$form.find(this.options.submitButtons).removeAttr("disabled"),this},validate:function(){if(!this.options.fields)return this;this.disableSubmitButtons(!0),this._submitIfValid=!1;for(var a in this.options.fields)this.validateField(a);return this._submit(),this._submitIfValid=!0,this},validateField:function(b){var c=a([]);switch(typeof b){case"object":c=b,b=b.attr("data-bv-field");break;case"string":c=this.getFieldElements(b)}if(0===c.length||!this.options.fields[b]||this.options.fields[b].enabled===!1)return this;for(var d,e,f=this,g=c.attr("type"),h="radio"===g||"checkbox"===g?1:c.length,i="radio"===g||"checkbox"===g,j=this.options.fields[b].validators,k=this._isOptionEnabled(b,"verbose"),l=0;h>l;l++){var m=c.eq(l);if(!this._isExcluded(m)){var n=!1;for(d in j){if(m.data("bv.dfs."+d)&&m.data("bv.dfs."+d).reject(),n)break;var o=m.data("bv.result."+d);if(o!==this.STATUS_VALID&&o!==this.STATUS_INVALID)if(j[d].enabled!==!1){if(m.data("bv.result."+d,this.STATUS_VALIDATING),e=a.fn.bootstrapValidator.validators[d].validate(this,m,j[d]),"object"==typeof e&&e.resolve)this.updateStatus(i?b:m,this.STATUS_VALIDATING,d),m.data("bv.dfs."+d,e),e.done(function(a,b,c){a.removeData("bv.dfs."+b).data("bv.response."+b,c),c.message&&f.updateMessage(a,b,c.message),f.updateStatus(i?a.attr("data-bv-field"):a,c.valid?f.STATUS_VALID:f.STATUS_INVALID,b),c.valid&&f._submitIfValid===!0?f._submit():c.valid||k||(n=!0)});else if("object"==typeof e&&void 0!==e.valid&&void 0!==e.message){if(m.data("bv.response."+d,e),this.updateMessage(i?b:m,d,e.message),this.updateStatus(i?b:m,e.valid?this.STATUS_VALID:this.STATUS_INVALID,d),!e.valid&&!k)break}else if("boolean"==typeof e&&(m.data("bv.response."+d,e),this.updateStatus(i?b:m,e?this.STATUS_VALID:this.STATUS_INVALID,d),!e&&!k))break}else this.updateStatus(i?b:m,this.STATUS_VALID,d);else this._onFieldValidated(m,d)}}}return this},updateMessage:function(b,c,d){var e=a([]);switch(typeof b){case"object":e=b,b=b.attr("data-bv-field");break;case"string":e=this.getFieldElements(b)}e.each(function(){a(this).data("bv.messages").find('.help-block[data-bv-validator="'+c+'"][data-bv-for="'+b+'"]').html(d)})},updateStatus:function(b,c,d){var e=a([]);switch(typeof b){case"object":e=b,b=b.attr("data-bv-field");break;case"string":e=this.getFieldElements(b)}c===this.STATUS_NOT_VALIDATED&&(this._submitIfValid=!1);for(var f=this,g=e.attr("type"),h=this.options.fields[b].group||this.options.group,i="radio"===g||"checkbox"===g?1:e.length,j=0;i>j;j++){var k=e.eq(j);if(!this._isExcluded(k)){var l=k.parents(h),m=k.data("bv.messages"),n=m.find('.help-block[data-bv-validator][data-bv-for="'+b+'"]'),o=d?n.filter('[data-bv-validator="'+d+'"]'):n,p=k.data("bv.icon"),q="function"==typeof(this.options.fields[b].container||this.options.container)?(this.options.fields[b].container||this.options.container).call(this,k,this):this.options.fields[b].container||this.options.container,r=null;if(d)k.data("bv.result."+d,c);else for(var s in this.options.fields[b].validators)k.data("bv.result."+s,c);o.attr("data-bv-result",c);var t,u,v=k.parents(".tab-pane");switch(v&&(t=v.attr("id"))&&(u=a('a[href="#'+t+'"][data-toggle="tab"]').parent()),c){case this.STATUS_VALIDATING:r=null,this.disableSubmitButtons(!0),l.removeClass("has-success").removeClass("has-error"),p&&p.removeClass(this.options.feedbackIcons.valid).removeClass(this.options.feedbackIcons.invalid).addClass(this.options.feedbackIcons.validating).show(),u&&u.removeClass("bv-tab-success").removeClass("bv-tab-error");break;case this.STATUS_INVALID:r=!1,this.disableSubmitButtons(!0),l.removeClass("has-success").addClass("has-error"),p&&p.removeClass(this.options.feedbackIcons.valid).removeClass(this.options.feedbackIcons.validating).addClass(this.options.feedbackIcons.invalid).show(),u&&u.removeClass("bv-tab-success").addClass("bv-tab-error");break;case this.STATUS_VALID:r=0===n.filter('[data-bv-result="'+this.STATUS_NOT_VALIDATED+'"]').length?n.filter('[data-bv-result="'+this.STATUS_VALID+'"]').length===n.length:null,null!==r&&(this.disableSubmitButtons(this.$submitButton?!this.isValid():!r),p&&p.removeClass(this.options.feedbackIcons.invalid).removeClass(this.options.feedbackIcons.validating).removeClass(this.options.feedbackIcons.valid).addClass(r?this.options.feedbackIcons.valid:this.options.feedbackIcons.invalid).show()),l.removeClass("has-error has-success").addClass(this.isValidContainer(l)?"has-success":"has-error"),u&&u.removeClass("bv-tab-success").removeClass("bv-tab-error").addClass(this.isValidContainer(v)?"bv-tab-success":"bv-tab-error");break;case this.STATUS_NOT_VALIDATED:default:r=null,this.disableSubmitButtons(!1),l.removeClass("has-success").removeClass("has-error"),p&&p.removeClass(this.options.feedbackIcons.valid).removeClass(this.options.feedbackIcons.invalid).removeClass(this.options.feedbackIcons.validating).hide(),u&&u.removeClass("bv-tab-success").removeClass("bv-tab-error")}switch(!0){case p&&"tooltip"===q:r===!1?p.css("cursor","pointer").tooltip("destroy").tooltip({container:"body",html:!0,placement:"auto top",title:n.filter('[data-bv-result="'+f.STATUS_INVALID+'"]').eq(0).html()}):p.css("cursor","").tooltip("destroy");break;case p&&"popover"===q:r===!1?p.css("cursor","pointer").popover("destroy").popover({container:"body",content:n.filter('[data-bv-result="'+f.STATUS_INVALID+'"]').eq(0).html(),html:!0,placement:"auto top",trigger:"hover click"}):p.css("cursor","").popover("destroy");break;default:c===this.STATUS_INVALID?o.show():o.hide()}k.trigger(a.Event(this.options.events.fieldStatus),{bv:this,field:b,element:k,status:c}),this._onFieldValidated(k,d)}}return this},isValid:function(){for(var a in this.options.fields)if(!this.isValidField(a))return!1;return!0},isValidField:function(b){var c=a([]);switch(typeof b){case"object":c=b,b=b.attr("data-bv-field");break;case"string":c=this.getFieldElements(b)}if(0===c.length||!this.options.fields[b]||this.options.fields[b].enabled===!1)return!0;for(var d,e,f,g=c.attr("type"),h="radio"===g||"checkbox"===g?1:c.length,i=0;h>i;i++)if(d=c.eq(i),!this._isExcluded(d))for(e in this.options.fields[b].validators)if(this.options.fields[b].validators[e].enabled!==!1&&(f=d.data("bv.result."+e),f!==this.STATUS_VALID))return!1;return!0},isValidContainer:function(b){var c=this,d={},e="string"==typeof b?a(b):b;if(0===e.length)return!0;e.find("[data-bv-field]").each(function(){var b=a(this),e=b.attr("data-bv-field");c._isExcluded(b)||d[e]||(d[e]=b)});for(var f in d){var g=d[f];if(g.data("bv.messages").find('.help-block[data-bv-validator][data-bv-for="'+f+'"]').filter('[data-bv-result="'+this.STATUS_INVALID+'"]').length>0)return!1}return!0},defaultSubmit:function(){this.$submitButton&&a("<input/>").attr("type","hidden").attr("data-bv-submit-hidden","").attr("name",this.$submitButton.attr("name")).val(this.$submitButton.val()).appendTo(this.$form),this.$form.off("submit.bv").submit()},getInvalidFields:function(){return this.$invalidFields},getSubmitButton:function(){return this.$submitButton},getMessages:function(b,c){var d=this,e=[],f=a([]);switch(!0){case b&&"object"==typeof b:f=b;break;case b&&"string"==typeof b:var g=this.getFieldElements(b);if(g.length>0){var h=g.attr("type");f="radio"===h||"checkbox"===h?g.eq(0):g}break;default:f=this.$invalidFields}var i=c?'[data-bv-validator="'+c+'"]':"";return f.each(function(){e=e.concat(a(this).data("bv.messages").find('.help-block[data-bv-for="'+a(this).attr("data-bv-field")+'"][data-bv-result="'+d.STATUS_INVALID+'"]'+i).map(function(){var b=a(this).attr("data-bv-validator"),c=a(this).attr("data-bv-for");return d.options.fields[c].validators[b].enabled===!1?"":a(this).html()}).get())}),e},updateOption:function(a,b,c,d){return"object"==typeof a&&(a=a.attr("data-bv-field")),this.options.fields[a]&&this.options.fields[a].validators[b]&&(this.options.fields[a].validators[b][c]=d,this.updateStatus(a,this.STATUS_NOT_VALIDATED,b)),this},addField:function(b,c){var d=a([]);switch(typeof b){case"object":d=b,b=b.attr("data-bv-field")||b.attr("name");break;case"string":delete this._cacheFields[b],d=this.getFieldElements(b)}d.attr("data-bv-field",b);for(var e=d.attr("type"),f="radio"===e||"checkbox"===e?1:d.length,g=0;f>g;g++){var h=d.eq(g),i=this._parseOptions(h);i=null===i?c:a.extend(!0,c,i),this.options.fields[b]=a.extend(!0,this.options.fields[b],i),this._cacheFields[b]=this._cacheFields[b]?this._cacheFields[b].add(h):h,this._initField("checkbox"===e||"radio"===e?b:h)}return this.disableSubmitButtons(!1),this.$form.trigger(a.Event(this.options.events.fieldAdded),{field:b,element:d,options:this.options.fields[b]}),this},removeField:function(b){var c=a([]);switch(typeof b){case"object":c=b,b=b.attr("data-bv-field")||b.attr("name"),c.attr("data-bv-field",b);break;case"string":c=this.getFieldElements(b)}if(0===c.length)return this;for(var d=c.attr("type"),e="radio"===d||"checkbox"===d?1:c.length,f=0;e>f;f++){var g=c.eq(f);this.$invalidFields=this.$invalidFields.not(g),this._cacheFields[b]=this._cacheFields[b].not(g)}return this._cacheFields[b]&&0!==this._cacheFields[b].length||delete this.options.fields[b],("checkbox"===d||"radio"===d)&&this._initField(b),this.disableSubmitButtons(!1),this.$form.trigger(a.Event(this.options.events.fieldRemoved),{field:b,element:c}),this},resetField:function(b,c){var d=a([]);switch(typeof b){case"object":d=b,b=b.attr("data-bv-field");break;case"string":d=this.getFieldElements(b)}var e=d.length;if(this.options.fields[b])for(var f=0;e>f;f++)for(var g in this.options.fields[b].validators)d.eq(f).removeData("bv.dfs."+g);if(this.updateStatus(b,this.STATUS_NOT_VALIDATED),c){var h=d.attr("type");"radio"===h||"checkbox"===h?d.removeAttr("checked").removeAttr("selected"):d.val("")}return this},resetForm:function(b){for(var c in this.options.fields)this.resetField(c,b);return this.$invalidFields=a([]),this.$submitButton=null,this.disableSubmitButtons(!1),this},revalidateField:function(a){return this.updateStatus(a,this.STATUS_NOT_VALIDATED).validateField(a),this},enableFieldValidators:function(a,b,c){var d=this.options.fields[a].validators;if(c&&d&&d[c]&&d[c].enabled!==b)this.options.fields[a].validators[c].enabled=b,this.updateStatus(a,this.STATUS_NOT_VALIDATED,c);else if(!c&&this.options.fields[a].enabled!==b){this.options.fields[a].enabled=b;for(var e in d)this.enableFieldValidators(a,b,e)}return this},getDynamicOption:function(b,c){var d="string"==typeof b?this.getFieldElements(b):b,e=d.val();if("function"==typeof c)return a.fn.bootstrapValidator.helpers.call(c,[e,this,d]);if("string"==typeof c){var f=this.getFieldElements(c);return f.length?f.val():a.fn.bootstrapValidator.helpers.call(c,[e,this,d])||c}return null},destroy:function(){var b,c,d,e,f,g;for(b in this.options.fields){c=this.getFieldElements(b),g=this.options.fields[b].group||this.options.group;for(var h=0;h<c.length;h++){if(d=c.eq(h),d.data("bv.messages").find('.help-block[data-bv-validator][data-bv-for="'+b+'"]').remove().end().end().removeData("bv.messages").parents(g).removeClass("has-feedback has-error has-success").end().off(".bv").removeAttr("data-bv-field"),f=d.data("bv.icon")){var i="function"==typeof(this.options.fields[b].container||this.options.container)?(this.options.fields[b].container||this.options.container).call(this,d,this):this.options.fields[b].container||this.options.container;switch(i){case"tooltip":f.tooltip("destroy").remove();break;case"popover":f.popover("destroy").remove();break;default:f.remove()}}d.removeData("bv.icon");for(e in this.options.fields[b].validators)d.data("bv.dfs."+e)&&d.data("bv.dfs."+e).reject(),d.removeData("bv.result."+e).removeData("bv.response."+e).removeData("bv.dfs."+e),"function"==typeof a.fn.bootstrapValidator.validators[e].destroy&&a.fn.bootstrapValidator.validators[e].destroy(this,d,this.options.fields[b].validators[e])}}this.disableSubmitButtons(!1),this.$hiddenButton.remove(),this.$form.removeClass(this.options.elementClass).off(".bv").removeData("bootstrapValidator").find("[data-bv-submit-hidden]").remove().end().find('[type="submit"]').off("click.bv")}},a.fn.bootstrapValidator=function(c){var d=arguments;return this.each(function(){var e=a(this),f=e.data("bootstrapValidator"),g="object"==typeof c&&c;f||(f=new b(this,g),e.data("bootstrapValidator",f)),"string"==typeof c&&f[c].apply(f,Array.prototype.slice.call(d,1))})},a.fn.bootstrapValidator.DEFAULT_OPTIONS={autoFocus:!0,container:null,elementClass:"bv-form",events:{formInit:"init.form.bv",formError:"error.form.bv",formSuccess:"success.form.bv",fieldAdded:"added.field.bv",fieldRemoved:"removed.field.bv",fieldInit:"init.field.bv",fieldError:"error.field.bv",fieldSuccess:"success.field.bv",fieldStatus:"status.field.bv",validatorError:"error.validator.bv",validatorSuccess:"success.validator.bv"},excluded:[":disabled",":hidden",":not(:visible)"],feedbackIcons:{valid:null,invalid:null,validating:null},fields:null,group:".form-group",live:"enabled",message:"This value is not valid",submitButtons:'[type="submit"]',threshold:null,verbose:!0},a.fn.bootstrapValidator.validators={},a.fn.bootstrapValidator.i18n={},a.fn.bootstrapValidator.Constructor=b,a.fn.bootstrapValidator.helpers={call:function(a,b){if("function"==typeof a)return a.apply(this,b);if("string"==typeof a){"()"===a.substring(a.length-2)&&(a=a.substring(0,a.length-2));for(var c=a.split("."),d=c.pop(),e=window,f=0;f<c.length;f++)e=e[c[f]];return"undefined"==typeof e[d]?null:e[d].apply(this,b)}},format:function(b,c){a.isArray(c)||(c=[c]);for(var d in c)b=b.replace("%s",c[d]);return b},date:function(a,b,c,d){if(isNaN(a)||isNaN(b)||isNaN(c))return!1;if(c.length>2||b.length>2||a.length>4)return!1;if(c=parseInt(c,10),b=parseInt(b,10),a=parseInt(a,10),1e3>a||a>9999||0>=b||b>12)return!1;var e=[31,28,31,30,31,30,31,31,30,31,30,31];if((a%400===0||a%100!==0&&a%4===0)&&(e[1]=29),0>=c||c>e[b-1])return!1;if(d===!0){var f=new Date,g=f.getFullYear(),h=f.getMonth(),i=f.getDate();return g>a||a===g&&h>b-1||a===g&&b-1===h&&i>c}return!0},luhn:function(a){for(var b=a.length,c=0,d=[[0,1,2,3,4,5,6,7,8,9],[0,2,4,6,8,1,3,5,7,9]],e=0;b--;)e+=d[c][parseInt(a.charAt(b),10)],c^=1;return e%10===0&&e>0},mod11And10:function(a){for(var b=5,c=a.length,d=0;c>d;d++)b=(2*(b||10)%11+parseInt(a.charAt(d),10))%10;return 1===b},mod37And36:function(a,b){b=b||"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";for(var c=b.length,d=a.length,e=Math.floor(c/2),f=0;d>f;f++)e=(2*(e||c)%(c+1)+b.indexOf(a.charAt(f)))%c;return 1===e}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.base64=a.extend(a.fn.bootstrapValidator.i18n.base64||{},{"default":"Please enter a valid base 64 encoded"}),a.fn.bootstrapValidator.validators.base64={validate:function(a,b){var c=b.val();return""===c?!0:/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$/.test(c)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.between=a.extend(a.fn.bootstrapValidator.i18n.between||{},{"default":"Please enter a value between %s and %s",notInclusive:"Please enter a value between %s and %s strictly"}),a.fn.bootstrapValidator.validators.between={html5Attributes:{message:"message",min:"min",max:"max",inclusive:"inclusive"},enableByHtml5:function(a){return"range"===a.attr("type")?{min:a.attr("min"),max:a.attr("max")}:!1},validate:function(b,c,d){var e=c.val();if(""===e)return!0;if(e=this._format(e),!a.isNumeric(e))return!1;var f=a.isNumeric(d.min)?d.min:b.getDynamicOption(c,d.min),g=a.isNumeric(d.max)?d.max:b.getDynamicOption(c,d.max),h=this._format(f),i=this._format(g);return e=parseFloat(e),d.inclusive===!0||void 0===d.inclusive?{valid:e>=h&&i>=e,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.between["default"],[f,g])}:{valid:e>h&&i>e,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.between.notInclusive,[f,g])}},_format:function(a){return(a+"").replace(",",".")}}}(window.jQuery),function(a){a.fn.bootstrapValidator.validators.blank={validate:function(){return!0}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.callback=a.extend(a.fn.bootstrapValidator.i18n.callback||{},{"default":"Please enter a valid value"}),a.fn.bootstrapValidator.validators.callback={html5Attributes:{message:"message",callback:"callback"},validate:function(b,c,d){var e=c.val(),f=new a.Deferred,g={valid:!0};if(d.callback){var h=a.fn.bootstrapValidator.helpers.call(d.callback,[e,b,c]);g="boolean"==typeof h?{valid:h}:h}return f.resolve(c,"callback",g),f}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.choice=a.extend(a.fn.bootstrapValidator.i18n.choice||{},{"default":"Please enter a valid value",less:"Please choose %s options at minimum",more:"Please choose %s options at maximum",between:"Please choose %s - %s options"}),a.fn.bootstrapValidator.validators.choice={html5Attributes:{message:"message",min:"min",max:"max"},validate:function(b,c,d){var e=c.is("select")?b.getFieldElements(c.attr("data-bv-field")).find("option").filter(":selected").length:b.getFieldElements(c.attr("data-bv-field")).filter(":checked").length,f=d.min?a.isNumeric(d.min)?d.min:b.getDynamicOption(c,d.min):null,g=d.max?a.isNumeric(d.max)?d.max:b.getDynamicOption(c,d.max):null,h=!0,i=d.message||a.fn.bootstrapValidator.i18n.choice["default"];switch((f&&e<parseInt(f,10)||g&&e>parseInt(g,10))&&(h=!1),!0){case!!f&&!!g:i=a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.choice.between,[parseInt(f,10),parseInt(g,10)]);break;case!!f:i=a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.choice.less,parseInt(f,10));break;case!!g:i=a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.choice.more,parseInt(g,10))}return{valid:h,message:i}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.color=a.extend(a.fn.bootstrapValidator.i18n.color||{},{"default":"Please enter a valid color"}),a.fn.bootstrapValidator.validators.color={SUPPORTED_TYPES:["hex","rgb","rgba","hsl","hsla","keyword"],KEYWORD_COLORS:["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","green","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","transparent","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"],validate:function(b,c,d){var e=c.val();
-if(""===e)return!0;var f=d.type||this.SUPPORTED_TYPES;a.isArray(f)||(f=f.replace(/s/g,"").split(","));for(var g,h,i=!1,j=0;j<f.length;j++)if(h=f[j],g="_"+h.toLowerCase(),i=i||this[g](e))return!0;return!1},_hex:function(a){return/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(a)},_hsl:function(a){return/^hsl\((\s*(-?\d+)\s*,)(\s*(\b(0?\d{1,2}|100)\b%)\s*,)(\s*(\b(0?\d{1,2}|100)\b%)\s*)\)$/.test(a)},_hsla:function(a){return/^hsla\((\s*(-?\d+)\s*,)(\s*(\b(0?\d{1,2}|100)\b%)\s*,){2}(\s*(0?(\.\d+)?|1(\.0+)?)\s*)\)$/.test(a)},_keyword:function(b){return a.inArray(b,this.KEYWORD_COLORS)>=0},_rgb:function(a){var b=/^rgb\((\s*(\b([01]?\d{1,2}|2[0-4]\d|25[0-5])\b)\s*,){2}(\s*(\b([01]?\d{1,2}|2[0-4]\d|25[0-5])\b)\s*)\)$/,c=/^rgb\((\s*(\b(0?\d{1,2}|100)\b%)\s*,){2}(\s*(\b(0?\d{1,2}|100)\b%)\s*)\)$/;return b.test(a)||c.test(a)},_rgba:function(a){var b=/^rgba\((\s*(\b([01]?\d{1,2}|2[0-4]\d|25[0-5])\b)\s*,){3}(\s*(0?(\.\d+)?|1(\.0+)?)\s*)\)$/,c=/^rgba\((\s*(\b(0?\d{1,2}|100)\b%)\s*,){3}(\s*(0?(\.\d+)?|1(\.0+)?)\s*)\)$/;return b.test(a)||c.test(a)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.creditCard=a.extend(a.fn.bootstrapValidator.i18n.creditCard||{},{"default":"Please enter a valid credit card number"}),a.fn.bootstrapValidator.validators.creditCard={validate:function(b,c){var d=c.val();if(""===d)return!0;if(/[^0-9-\s]+/.test(d))return!1;if(d=d.replace(/\D/g,""),!a.fn.bootstrapValidator.helpers.luhn(d))return!1;var e,f,g={AMERICAN_EXPRESS:{length:[15],prefix:["34","37"]},DINERS_CLUB:{length:[14],prefix:["300","301","302","303","304","305","36"]},DINERS_CLUB_US:{length:[16],prefix:["54","55"]},DISCOVER:{length:[16],prefix:["6011","622126","622127","622128","622129","62213","62214","62215","62216","62217","62218","62219","6222","6223","6224","6225","6226","6227","6228","62290","62291","622920","622921","622922","622923","622924","622925","644","645","646","647","648","649","65"]},JCB:{length:[16],prefix:["3528","3529","353","354","355","356","357","358"]},LASER:{length:[16,17,18,19],prefix:["6304","6706","6771","6709"]},MAESTRO:{length:[12,13,14,15,16,17,18,19],prefix:["5018","5020","5038","6304","6759","6761","6762","6763","6764","6765","6766"]},MASTERCARD:{length:[16],prefix:["51","52","53","54","55"]},SOLO:{length:[16,18,19],prefix:["6334","6767"]},UNIONPAY:{length:[16,17,18,19],prefix:["622126","622127","622128","622129","62213","62214","62215","62216","62217","62218","62219","6222","6223","6224","6225","6226","6227","6228","62290","62291","622920","622921","622922","622923","622924","622925"]},VISA:{length:[16],prefix:["4"]}};for(e in g)for(f in g[e].prefix)if(d.substr(0,g[e].prefix[f].length)===g[e].prefix[f]&&-1!==a.inArray(d.length,g[e].length))return!0;return!1}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.cusip=a.extend(a.fn.bootstrapValidator.i18n.cusip||{},{"default":"Please enter a valid CUSIP number"}),a.fn.bootstrapValidator.validators.cusip={validate:function(b,c){var d=c.val();if(""===d)return!0;if(d=d.toUpperCase(),!/^[0-9A-Z]{9}$/.test(d))return!1;for(var e=a.map(d.split(""),function(a){var b=a.charCodeAt(0);return b>="A".charCodeAt(0)&&b<="Z".charCodeAt(0)?b-"A".charCodeAt(0)+10:a}),f=e.length,g=0,h=0;f-1>h;h++){var i=parseInt(e[h],10);h%2!==0&&(i*=2),i>9&&(i-=9),g+=i}return g=(10-g%10)%10,g===e[f-1]}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.cvv=a.extend(a.fn.bootstrapValidator.i18n.cvv||{},{"default":"Please enter a valid CVV number"}),a.fn.bootstrapValidator.validators.cvv={html5Attributes:{message:"message",ccfield:"creditCardField"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;if(!/^[0-9]{3,4}$/.test(e))return!1;if(!d.creditCardField)return!0;var f=b.getFieldElements(d.creditCardField).val();if(""===f)return!0;f=f.replace(/\D/g,"");var g,h,i={AMERICAN_EXPRESS:{length:[15],prefix:["34","37"]},DINERS_CLUB:{length:[14],prefix:["300","301","302","303","304","305","36"]},DINERS_CLUB_US:{length:[16],prefix:["54","55"]},DISCOVER:{length:[16],prefix:["6011","622126","622127","622128","622129","62213","62214","62215","62216","62217","62218","62219","6222","6223","6224","6225","6226","6227","6228","62290","62291","622920","622921","622922","622923","622924","622925","644","645","646","647","648","649","65"]},JCB:{length:[16],prefix:["3528","3529","353","354","355","356","357","358"]},LASER:{length:[16,17,18,19],prefix:["6304","6706","6771","6709"]},MAESTRO:{length:[12,13,14,15,16,17,18,19],prefix:["5018","5020","5038","6304","6759","6761","6762","6763","6764","6765","6766"]},MASTERCARD:{length:[16],prefix:["51","52","53","54","55"]},SOLO:{length:[16,18,19],prefix:["6334","6767"]},UNIONPAY:{length:[16,17,18,19],prefix:["622126","622127","622128","622129","62213","62214","62215","62216","62217","62218","62219","6222","6223","6224","6225","6226","6227","6228","62290","62291","622920","622921","622922","622923","622924","622925"]},VISA:{length:[16],prefix:["4"]}},j=null;for(g in i)for(h in i[g].prefix)if(f.substr(0,i[g].prefix[h].length)===i[g].prefix[h]&&-1!==a.inArray(f.length,i[g].length)){j=g;break}return null===j?!1:"AMERICAN_EXPRESS"===j?4===e.length:3===e.length}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.date=a.extend(a.fn.bootstrapValidator.i18n.date||{},{"default":"Please enter a valid date",min:"Please enter a date after %s",max:"Please enter a date before %s",range:"Please enter a date in the range %s - %s"}),a.fn.bootstrapValidator.validators.date={html5Attributes:{message:"message",format:"format",min:"min",max:"max",separator:"separator"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;d.format=d.format||"MM/DD/YYYY","date"===c.attr("type")&&(d.format="YYYY-MM-DD");var f=d.format.split(" "),g=f[0],h=f.length>1?f[1]:null,i=f.length>2?f[2]:null,j=e.split(" "),k=j[0],l=j.length>1?j[1]:null;if(f.length!==j.length)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};var m=d.separator;if(m||(m=-1!==k.indexOf("/")?"/":-1!==k.indexOf("-")?"-":null),null===m||-1===k.indexOf(m))return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};if(k=k.split(m),g=g.split(m),k.length!==g.length)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};var n=k[a.inArray("YYYY",g)],o=k[a.inArray("MM",g)],p=k[a.inArray("DD",g)];if(!n||!o||!p||4!==n.length)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};var q=null,r=null,s=null;if(h){if(h=h.split(":"),l=l.split(":"),h.length!==l.length)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};if(r=l.length>0?l[0]:null,q=l.length>1?l[1]:null,s=l.length>2?l[2]:null){if(isNaN(s)||s.length>2)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};if(s=parseInt(s,10),0>s||s>60)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]}}if(r){if(isNaN(r)||r.length>2)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};if(r=parseInt(r,10),0>r||r>=24||i&&r>12)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]}}if(q){if(isNaN(q)||q.length>2)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};if(q=parseInt(q,10),0>q||q>59)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]}}}var t=a.fn.bootstrapValidator.helpers.date(n,o,p),u=d.message||a.fn.bootstrapValidator.i18n.date["default"],v=null,w=null,x=d.min,y=d.max;switch(x&&(isNaN(Date.parse(x))&&(x=b.getDynamicOption(c,x)),v=this._parseDate(x,g,m)),y&&(isNaN(Date.parse(y))&&(y=b.getDynamicOption(c,y)),w=this._parseDate(y,g,m)),k=new Date(n,o,p,r,q,s),!0){case x&&!y&&t:t=k.getTime()>=v.getTime(),u=d.message||a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.date.min,x);break;case y&&!x&&t:t=k.getTime()<=w.getTime(),u=d.message||a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.date.max,y);break;case y&&x&&t:t=k.getTime()<=w.getTime()&&k.getTime()>=v.getTime(),u=d.message||a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.date.range,[x,y])}return{valid:t,message:u}},_parseDate:function(b,c,d){var e=0,f=0,g=0,h=b.split(" "),i=h[0],j=h.length>1?h[1]:null;i=i.split(d);var k=i[a.inArray("YYYY",c)],l=i[a.inArray("MM",c)],m=i[a.inArray("DD",c)];return j&&(j=j.split(":"),f=j.length>0?j[0]:null,e=j.length>1?j[1]:null,g=j.length>2?j[2]:null),new Date(k,l,m,f,e,g)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.different=a.extend(a.fn.bootstrapValidator.i18n.different||{},{"default":"Please enter a different value"}),a.fn.bootstrapValidator.validators.different={html5Attributes:{message:"message",field:"field"},validate:function(a,b,c){var d=b.val();if(""===d)return!0;for(var e=c.field.split(","),f=!0,g=0;g<e.length;g++){var h=a.getFieldElements(e[g]);if(null!=h&&0!==h.length){var i=h.val();d===i?f=!1:""!==i&&a.updateStatus(h,a.STATUS_VALID,"different")}}return f}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.digits=a.extend(a.fn.bootstrapValidator.i18n.digits||{},{"default":"Please enter only digits"}),a.fn.bootstrapValidator.validators.digits={validate:function(a,b){var c=b.val();return""===c?!0:/^\d+$/.test(c)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.ean=a.extend(a.fn.bootstrapValidator.i18n.ean||{},{"default":"Please enter a valid EAN number"}),a.fn.bootstrapValidator.validators.ean={validate:function(a,b){var c=b.val();if(""===c)return!0;if(!/^(\d{8}|\d{12}|\d{13})$/.test(c))return!1;for(var d=c.length,e=0,f=8===d?[3,1]:[1,3],g=0;d-1>g;g++)e+=parseInt(c.charAt(g),10)*f[g%2];return e=(10-e%10)%10,e+""===c.charAt(d-1)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.emailAddress=a.extend(a.fn.bootstrapValidator.i18n.emailAddress||{},{"default":"Please enter a valid email address"}),a.fn.bootstrapValidator.validators.emailAddress={html5Attributes:{message:"message",multiple:"multiple",separator:"separator"},enableByHtml5:function(a){return"email"===a.attr("type")},validate:function(a,b,c){var d=b.val();if(""===d)return!0;var e=/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/,f=c.multiple===!0||"true"===c.multiple;if(f){for(var g=c.separator||/[,;]/,h=this._splitEmailAddresses(d,g),i=0;i<h.length;i++)if(!e.test(h[i]))return!1;return!0}return e.test(d)},_splitEmailAddresses:function(a,b){for(var c=a.split(/"/),d=c.length,e=[],f="",g=0;d>g;g++)if(g%2===0){var h=c[g].split(b),i=h.length;if(1===i)f+=h[0];else{e.push(f+h[0]);for(var j=1;i-1>j;j++)e.push(h[j]);f=h[i-1]}}else f+='"'+c[g],d-1>g&&(f+='"');return e.push(f),e}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.file=a.extend(a.fn.bootstrapValidator.i18n.file||{},{"default":"Please choose a valid file"}),a.fn.bootstrapValidator.validators.file={html5Attributes:{extension:"extension",maxfiles:"maxFiles",minfiles:"minFiles",maxsize:"maxSize",minsize:"minSize",maxtotalsize:"maxTotalSize",mintotalsize:"minTotalSize",message:"message",type:"type"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;var f,g=d.extension?d.extension.toLowerCase().split(","):null,h=d.type?d.type.toLowerCase().split(","):null,i=window.File&&window.FileList&&window.FileReader;if(i){var j=c.get(0).files,k=j.length,l=0;if(d.maxFiles&&k>parseInt(d.maxFiles,10)||d.minFiles&&k<parseInt(d.minFiles,10))return!1;for(var m=0;k>m;m++)if(l+=j[m].size,f=j[m].name.substr(j[m].name.lastIndexOf(".")+1),d.minSize&&j[m].size<parseInt(d.minSize,10)||d.maxSize&&j[m].size>parseInt(d.maxSize,10)||g&&-1===a.inArray(f.toLowerCase(),g)||j[m].type&&h&&-1===a.inArray(j[m].type.toLowerCase(),h))return!1;if(d.maxTotalSize&&l>parseInt(d.maxTotalSize,10)||d.minTotalSize&&l<parseInt(d.minTotalSize,10))return!1}else if(f=e.substr(e.lastIndexOf(".")+1),g&&-1===a.inArray(f.toLowerCase(),g))return!1;return!0}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.greaterThan=a.extend(a.fn.bootstrapValidator.i18n.greaterThan||{},{"default":"Please enter a value greater than or equal to %s",notInclusive:"Please enter a value greater than %s"}),a.fn.bootstrapValidator.validators.greaterThan={html5Attributes:{message:"message",value:"value",inclusive:"inclusive"},enableByHtml5:function(a){var b=a.attr("type"),c=a.attr("min");return c&&"date"!==b?{value:c}:!1},validate:function(b,c,d){var e=c.val();if(""===e)return!0;if(e=this._format(e),!a.isNumeric(e))return!1;var f=a.isNumeric(d.value)?d.value:b.getDynamicOption(c,d.value),g=this._format(f);return e=parseFloat(e),d.inclusive===!0||void 0===d.inclusive?{valid:e>=g,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.greaterThan["default"],f)}:{valid:e>g,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.greaterThan.notInclusive,f)}},_format:function(a){return(a+"").replace(",",".")}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.grid=a.extend(a.fn.bootstrapValidator.i18n.grid||{},{"default":"Please enter a valid GRId number"}),a.fn.bootstrapValidator.validators.grid={validate:function(b,c){var d=c.val();return""===d?!0:(d=d.toUpperCase(),/^[GRID:]*([0-9A-Z]{2})[-\s]*([0-9A-Z]{5})[-\s]*([0-9A-Z]{10})[-\s]*([0-9A-Z]{1})$/g.test(d)?(d=d.replace(/\s/g,"").replace(/-/g,""),"GRID:"===d.substr(0,5)&&(d=d.substr(5)),a.fn.bootstrapValidator.helpers.mod37And36(d)):!1)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.hex=a.extend(a.fn.bootstrapValidator.i18n.hex||{},{"default":"Please enter a valid hexadecimal number"}),a.fn.bootstrapValidator.validators.hex={validate:function(a,b){var c=b.val();return""===c?!0:/^[0-9a-fA-F]+$/.test(c)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.hexColor=a.extend(a.fn.bootstrapValidator.i18n.hexColor||{},{"default":"Please enter a valid hex color"}),a.fn.bootstrapValidator.validators.hexColor={enableByHtml5:function(a){return"color"===a.attr("type")},validate:function(a,b){var c=b.val();return""===c?!0:"color"===b.attr("type")?/^#[0-9A-F]{6}$/i.test(c):/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(c)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.iban=a.extend(a.fn.bootstrapValidator.i18n.iban||{},{"default":"Please enter a valid IBAN number",countryNotSupported:"The country code %s is not supported",country:"Please enter a valid IBAN number in %s",countries:{AD:"Andorra",AE:"United Arab Emirates",AL:"Albania",AO:"Angola",AT:"Austria",AZ:"Azerbaijan",BA:"Bosnia and Herzegovina",BE:"Belgium",BF:"Burkina Faso",BG:"Bulgaria",BH:"Bahrain",BI:"Burundi",BJ:"Benin",BR:"Brazil",CH:"Switzerland",CI:"Ivory Coast",CM:"Cameroon",CR:"Costa Rica",CV:"Cape Verde",CY:"Cyprus",CZ:"Czech Republic",DE:"Germany",DK:"Denmark",DO:"Dominican Republic",DZ:"Algeria",EE:"Estonia",ES:"Spain",FI:"Finland",FO:"Faroe Islands",FR:"France",GB:"United Kingdom",GE:"Georgia",GI:"Gibraltar",GL:"Greenland",GR:"Greece",GT:"Guatemala",HR:"Croatia",HU:"Hungary",IE:"Ireland",IL:"Israel",IR:"Iran",IS:"Iceland",IT:"Italy",JO:"Jordan",KW:"Kuwait",KZ:"Kazakhstan",LB:"Lebanon",LI:"Liechtenstein",LT:"Lithuania",LU:"Luxembourg",LV:"Latvia",MC:"Monaco",MD:"Moldova",ME:"Montenegro",MG:"Madagascar",MK:"Macedonia",ML:"Mali",MR:"Mauritania",MT:"Malta",MU:"Mauritius",MZ:"Mozambique",NL:"Netherlands",NO:"Norway",PK:"Pakistan",PL:"Poland",PS:"Palestine",PT:"Portugal",QA:"Qatar",RO:"Romania",RS:"Serbia",SA:"Saudi Arabia",SE:"Sweden",SI:"Slovenia",SK:"Slovakia",SM:"San Marino",SN:"Senegal",TN:"Tunisia",TR:"Turkey",VG:"Virgin Islands, British"}}),a.fn.bootstrapValidator.validators.iban={html5Attributes:{message:"message",country:"country"},REGEX:{AD:"AD[0-9]{2}[0-9]{4}[0-9]{4}[A-Z0-9]{12}",AE:"AE[0-9]{2}[0-9]{3}[0-9]{16}",AL:"AL[0-9]{2}[0-9]{8}[A-Z0-9]{16}",AO:"AO[0-9]{2}[0-9]{21}",AT:"AT[0-9]{2}[0-9]{5}[0-9]{11}",AZ:"AZ[0-9]{2}[A-Z]{4}[A-Z0-9]{20}",BA:"BA[0-9]{2}[0-9]{3}[0-9]{3}[0-9]{8}[0-9]{2}",BE:"BE[0-9]{2}[0-9]{3}[0-9]{7}[0-9]{2}",BF:"BF[0-9]{2}[0-9]{23}",BG:"BG[0-9]{2}[A-Z]{4}[0-9]{4}[0-9]{2}[A-Z0-9]{8}",BH:"BH[0-9]{2}[A-Z]{4}[A-Z0-9]{14}",BI:"BI[0-9]{2}[0-9]{12}",BJ:"BJ[0-9]{2}[A-Z]{1}[0-9]{23}",BR:"BR[0-9]{2}[0-9]{8}[0-9]{5}[0-9]{10}[A-Z][A-Z0-9]",CH:"CH[0-9]{2}[0-9]{5}[A-Z0-9]{12}",CI:"CI[0-9]{2}[A-Z]{1}[0-9]{23}",CM:"CM[0-9]{2}[0-9]{23}",CR:"CR[0-9]{2}[0-9]{3}[0-9]{14}",CV:"CV[0-9]{2}[0-9]{21}",CY:"CY[0-9]{2}[0-9]{3}[0-9]{5}[A-Z0-9]{16}",CZ:"CZ[0-9]{2}[0-9]{20}",DE:"DE[0-9]{2}[0-9]{8}[0-9]{10}",DK:"DK[0-9]{2}[0-9]{14}",DO:"DO[0-9]{2}[A-Z0-9]{4}[0-9]{20}",DZ:"DZ[0-9]{2}[0-9]{20}",EE:"EE[0-9]{2}[0-9]{2}[0-9]{2}[0-9]{11}[0-9]{1}",ES:"ES[0-9]{2}[0-9]{4}[0-9]{4}[0-9]{1}[0-9]{1}[0-9]{10}",FI:"FI[0-9]{2}[0-9]{6}[0-9]{7}[0-9]{1}",FO:"FO[0-9]{2}[0-9]{4}[0-9]{9}[0-9]{1}",FR:"FR[0-9]{2}[0-9]{5}[0-9]{5}[A-Z0-9]{11}[0-9]{2}",GB:"GB[0-9]{2}[A-Z]{4}[0-9]{6}[0-9]{8}",GE:"GE[0-9]{2}[A-Z]{2}[0-9]{16}",GI:"GI[0-9]{2}[A-Z]{4}[A-Z0-9]{15}",GL:"GL[0-9]{2}[0-9]{4}[0-9]{9}[0-9]{1}",GR:"GR[0-9]{2}[0-9]{3}[0-9]{4}[A-Z0-9]{16}",GT:"GT[0-9]{2}[A-Z0-9]{4}[A-Z0-9]{20}",HR:"HR[0-9]{2}[0-9]{7}[0-9]{10}",HU:"HU[0-9]{2}[0-9]{3}[0-9]{4}[0-9]{1}[0-9]{15}[0-9]{1}",IE:"IE[0-9]{2}[A-Z]{4}[0-9]{6}[0-9]{8}",IL:"IL[0-9]{2}[0-9]{3}[0-9]{3}[0-9]{13}",IR:"IR[0-9]{2}[0-9]{22}",IS:"IS[0-9]{2}[0-9]{4}[0-9]{2}[0-9]{6}[0-9]{10}",IT:"IT[0-9]{2}[A-Z]{1}[0-9]{5}[0-9]{5}[A-Z0-9]{12}",JO:"JO[0-9]{2}[A-Z]{4}[0-9]{4}[0]{8}[A-Z0-9]{10}",KW:"KW[0-9]{2}[A-Z]{4}[0-9]{22}",KZ:"KZ[0-9]{2}[0-9]{3}[A-Z0-9]{13}",LB:"LB[0-9]{2}[0-9]{4}[A-Z0-9]{20}",LI:"LI[0-9]{2}[0-9]{5}[A-Z0-9]{12}",LT:"LT[0-9]{2}[0-9]{5}[0-9]{11}",LU:"LU[0-9]{2}[0-9]{3}[A-Z0-9]{13}",LV:"LV[0-9]{2}[A-Z]{4}[A-Z0-9]{13}",MC:"MC[0-9]{2}[0-9]{5}[0-9]{5}[A-Z0-9]{11}[0-9]{2}",MD:"MD[0-9]{2}[A-Z0-9]{20}",ME:"ME[0-9]{2}[0-9]{3}[0-9]{13}[0-9]{2}",MG:"MG[0-9]{2}[0-9]{23}",MK:"MK[0-9]{2}[0-9]{3}[A-Z0-9]{10}[0-9]{2}",ML:"ML[0-9]{2}[A-Z]{1}[0-9]{23}",MR:"MR13[0-9]{5}[0-9]{5}[0-9]{11}[0-9]{2}",MT:"MT[0-9]{2}[A-Z]{4}[0-9]{5}[A-Z0-9]{18}",MU:"MU[0-9]{2}[A-Z]{4}[0-9]{2}[0-9]{2}[0-9]{12}[0-9]{3}[A-Z]{3}",MZ:"MZ[0-9]{2}[0-9]{21}",NL:"NL[0-9]{2}[A-Z]{4}[0-9]{10}",NO:"NO[0-9]{2}[0-9]{4}[0-9]{6}[0-9]{1}",PK:"PK[0-9]{2}[A-Z]{4}[A-Z0-9]{16}",PL:"PL[0-9]{2}[0-9]{8}[0-9]{16}",PS:"PS[0-9]{2}[A-Z]{4}[A-Z0-9]{21}",PT:"PT[0-9]{2}[0-9]{4}[0-9]{4}[0-9]{11}[0-9]{2}",QA:"QA[0-9]{2}[A-Z]{4}[A-Z0-9]{21}",RO:"RO[0-9]{2}[A-Z]{4}[A-Z0-9]{16}",RS:"RS[0-9]{2}[0-9]{3}[0-9]{13}[0-9]{2}",SA:"SA[0-9]{2}[0-9]{2}[A-Z0-9]{18}",SE:"SE[0-9]{2}[0-9]{3}[0-9]{16}[0-9]{1}",SI:"SI[0-9]{2}[0-9]{5}[0-9]{8}[0-9]{2}",SK:"SK[0-9]{2}[0-9]{4}[0-9]{6}[0-9]{10}",SM:"SM[0-9]{2}[A-Z]{1}[0-9]{5}[0-9]{5}[A-Z0-9]{12}",SN:"SN[0-9]{2}[A-Z]{1}[0-9]{23}",TN:"TN59[0-9]{2}[0-9]{3}[0-9]{13}[0-9]{2}",TR:"TR[0-9]{2}[0-9]{5}[A-Z0-9]{1}[A-Z0-9]{16}",VG:"VG[0-9]{2}[A-Z]{4}[0-9]{16}"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;e=e.replace(/[^a-zA-Z0-9]/g,"").toUpperCase();var f=d.country;if(f?"string"==typeof f&&this.REGEX[f]||(f=b.getDynamicOption(c,f)):f=e.substr(0,2),!this.REGEX[f])return{valid:!1,message:a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.iban.countryNotSupported,f)};if(!new RegExp("^"+this.REGEX[f]+"$").test(e))return{valid:!1,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.iban.country,a.fn.bootstrapValidator.i18n.iban.countries[f])};e=e.substr(4)+e.substr(0,4),e=a.map(e.split(""),function(a){var b=a.charCodeAt(0);return b>="A".charCodeAt(0)&&b<="Z".charCodeAt(0)?b-"A".charCodeAt(0)+10:a}),e=e.join("");for(var g=parseInt(e.substr(0,1),10),h=e.length,i=1;h>i;++i)g=(10*g+parseInt(e.substr(i,1),10))%97;return{valid:1===g,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.iban.country,a.fn.bootstrapValidator.i18n.iban.countries[f])}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.id=a.extend(a.fn.bootstrapValidator.i18n.id||{},{"default":"Please enter a valid identification number",countryNotSupported:"The country code %s is not supported",country:"Please enter a valid identification number in %s",countries:{BA:"Bosnia and Herzegovina",BG:"Bulgaria",BR:"Brazil",CH:"Switzerland",CL:"Chile",CN:"China",CZ:"Czech Republic",DK:"Denmark",EE:"Estonia",ES:"Spain",FI:"Finland",HR:"Croatia",IE:"Ireland",IS:"Iceland",LT:"Lithuania",LV:"Latvia",ME:"Montenegro",MK:"Macedonia",NL:"Netherlands",RO:"Romania",RS:"Serbia",SE:"Sweden",SI:"Slovenia",SK:"Slovakia",SM:"San Marino",TH:"Thailand",ZA:"South Africa"}}),a.fn.bootstrapValidator.validators.id={html5Attributes:{message:"message",country:"country"},COUNTRY_CODES:["BA","BG","BR","CH","CL","CN","CZ","DK","EE","ES","FI","HR","IE","IS","LT","LV","ME","MK","NL","RO","RS","SE","SI","SK","SM","TH","ZA"],validate:function(b,c,d){var e=c.val();if(""===e)return!0;var f=d.country;if(f?("string"!=typeof f||-1===a.inArray(f.toUpperCase(),this.COUNTRY_CODES))&&(f=b.getDynamicOption(c,f)):f=e.substr(0,2),-1===a.inArray(f,this.COUNTRY_CODES))return{valid:!1,message:a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.id.countryNotSupported,f)};var g=["_",f.toLowerCase()].join("");return this[g](e)?!0:{valid:!1,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.id.country,a.fn.bootstrapValidator.i18n.id.countries[f.toUpperCase()])}},_validateJMBG:function(a,b){if(!/^\d{13}$/.test(a))return!1;var c=parseInt(a.substr(0,2),10),d=parseInt(a.substr(2,2),10),e=(parseInt(a.substr(4,3),10),parseInt(a.substr(7,2),10)),f=parseInt(a.substr(12,1),10);if(c>31||d>12)return!1;for(var g=0,h=0;6>h;h++)g+=(7-h)*(parseInt(a.charAt(h),10)+parseInt(a.charAt(h+6),10));if(g=11-g%11,(10===g||11===g)&&(g=0),g!==f)return!1;switch(b.toUpperCase()){case"BA":return e>=10&&19>=e;case"MK":return e>=41&&49>=e;case"ME":return e>=20&&29>=e;case"RS":return e>=70&&99>=e;case"SI":return e>=50&&59>=e;default:return!0}},_ba:function(a){return this._validateJMBG(a,"BA")},_mk:function(a){return this._validateJMBG(a,"MK")},_me:function(a){return this._validateJMBG(a,"ME")},_rs:function(a){return this._validateJMBG(a,"RS")},_si:function(a){return this._validateJMBG(a,"SI")},_bg:function(b){if(!/^\d{10}$/.test(b)&&!/^\d{6}\s\d{3}\s\d{1}$/.test(b))return!1;b=b.replace(/\s/g,"");var c=parseInt(b.substr(0,2),10)+1900,d=parseInt(b.substr(2,2),10),e=parseInt(b.substr(4,2),10);if(d>40?(c+=100,d-=40):d>20&&(c-=100,d-=20),!a.fn.bootstrapValidator.helpers.date(c,d,e))return!1;for(var f=0,g=[2,4,8,5,10,9,7,3,6],h=0;9>h;h++)f+=parseInt(b.charAt(h),10)*g[h];return f=f%11%10,f+""===b.substr(9,1)},_br:function(a){if(/^1{11}|2{11}|3{11}|4{11}|5{11}|6{11}|7{11}|8{11}|9{11}|0{11}$/.test(a))return!1;if(!/^\d{11}$/.test(a)&&!/^\d{3}\.\d{3}\.\d{3}-\d{2}$/.test(a))return!1;a=a.replace(/\./g,"").replace(/-/g,"");for(var b=0,c=0;9>c;c++)b+=(10-c)*parseInt(a.charAt(c),10);if(b=11-b%11,(10===b||11===b)&&(b=0),b+""!==a.charAt(9))return!1;var d=0;for(c=0;10>c;c++)d+=(11-c)*parseInt(a.charAt(c),10);return d=11-d%11,(10===d||11===d)&&(d=0),d+""===a.charAt(10)},_ch:function(a){if(!/^756[\.]{0,1}[0-9]{4}[\.]{0,1}[0-9]{4}[\.]{0,1}[0-9]{2}$/.test(a))return!1;a=a.replace(/\D/g,"").substr(3);for(var b=a.length,c=0,d=8===b?[3,1]:[1,3],e=0;b-1>e;e++)c+=parseInt(a.charAt(e),10)*d[e%2];return c=10-c%10,c+""===a.charAt(b-1)},_cl:function(a){if(!/^\d{7,8}[-]{0,1}[0-9K]$/i.test(a))return!1;for(a=a.replace(/\-/g,"");a.length<9;)a="0"+a;for(var b=0,c=[3,2,7,6,5,4,3,2],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b=11-b%11,11===b?b=0:10===b&&(b="K"),b+""===a.charAt(8).toUpperCase()},_cn:function(b){if(b=b.trim(),!/^\d{15}$/.test(b)&&!/^\d{17}[\dXx]{1}$/.test(b))return!1;var c={11:{0:[0],1:[[0,9],[11,17]],2:[0,28,29]},12:{0:[0],1:[[0,16]],2:[0,21,23,25]},13:{0:[0],1:[[0,5],7,8,21,[23,33],[81,85]],2:[[0,5],[7,9],[23,25],27,29,30,81,83],3:[[0,4],[21,24]],4:[[0,4],6,21,[23,35],81],5:[[0,3],[21,35],81,82],6:[[0,4],[21,38],[81,84]],7:[[0,3],5,6,[21,33]],8:[[0,4],[21,28]],9:[[0,3],[21,30],[81,84]],10:[[0,3],[22,26],28,81,82],11:[[0,2],[21,28],81,82]},14:{0:[0],1:[0,1,[5,10],[21,23],81],2:[[0,3],11,12,[21,27]],3:[[0,3],11,21,22],4:[[0,2],11,21,[23,31],81],5:[[0,2],21,22,24,25,81],6:[[0,3],[21,24]],7:[[0,2],[21,29],81],8:[[0,2],[21,30],81,82],9:[[0,2],[21,32],81],10:[[0,2],[21,34],81,82],11:[[0,2],[21,30],81,82],23:[[0,3],22,23,[25,30],32,33]},15:{0:[0],1:[[0,5],[21,25]],2:[[0,7],[21,23]],3:[[0,4]],4:[[0,4],[21,26],[28,30]],5:[[0,2],[21,26],81],6:[[0,2],[21,27]],7:[[0,3],[21,27],[81,85]],8:[[0,2],[21,26]],9:[[0,2],[21,29],81],22:[[0,2],[21,24]],25:[[0,2],[22,31]],26:[[0,2],[24,27],[29,32],34],28:[0,1,[22,27]],29:[0,[21,23]]},21:{0:[0],1:[[0,6],[11,14],[22,24],81],2:[[0,4],[11,13],24,[81,83]],3:[[0,4],11,21,23,81],4:[[0,4],11,[21,23]],5:[[0,5],21,22],6:[[0,4],24,81,82],7:[[0,3],11,26,27,81,82],8:[[0,4],11,81,82],9:[[0,5],11,21,22],10:[[0,5],11,21,81],11:[[0,3],21,22],12:[[0,2],4,21,23,24,81,82],13:[[0,3],21,22,24,81,82],14:[[0,4],21,22,81]},22:{0:[0],1:[[0,6],12,22,[81,83]],2:[[0,4],11,21,[81,84]],3:[[0,3],22,23,81,82],4:[[0,3],21,22],5:[[0,3],21,23,24,81,82],6:[[0,2],4,5,[21,23],25,81],7:[[0,2],[21,24],81],8:[[0,2],21,22,81,82],24:[[0,6],24,26]},23:{0:[0],1:[[0,12],21,[23,29],[81,84]],2:[[0,8],21,[23,25],27,[29,31],81],3:[[0,7],21,81,82],4:[[0,7],21,22],5:[[0,3],5,6,[21,24]],6:[[0,6],[21,24]],7:[[0,16],22,81],8:[[0,5],11,22,26,28,33,81,82],9:[[0,4],21],10:[[0,5],24,25,81,[83,85]],11:[[0,2],21,23,24,81,82],12:[[0,2],[21,26],[81,83]],27:[[0,4],[21,23]]},31:{0:[0],1:[0,1,[3,10],[12,20]],2:[0,30]},32:{0:[0],1:[[0,7],11,[13,18],24,25],2:[[0,6],11,81,82],3:[[0,5],11,12,[21,24],81,82],4:[[0,2],4,5,11,12,81,82],5:[[0,9],[81,85]],6:[[0,2],11,12,21,23,[81,84]],7:[0,1,3,5,6,[21,24]],8:[[0,4],11,26,[29,31]],9:[[0,3],[21,25],28,81,82],10:[[0,3],11,12,23,81,84,88],11:[[0,2],11,12,[81,83]],12:[[0,4],[81,84]],13:[[0,2],11,[21,24]]},33:{0:[0],1:[[0,6],[8,10],22,27,82,83,85],2:[0,1,[3,6],11,12,25,26,[81,83]],3:[[0,4],22,24,[26,29],81,82],4:[[0,2],11,21,24,[81,83]],5:[[0,3],[21,23]],6:[[0,2],21,24,[81,83]],7:[[0,3],23,26,27,[81,84]],8:[[0,3],22,24,25,81],9:[[0,3],21,22],10:[[0,4],[21,24],81,82],11:[[0,2],[21,27],81]},34:{0:[0],1:[[0,4],11,[21,24],81],2:[[0,4],7,8,[21,23],25],3:[[0,4],11,[21,23]],4:[[0,6],21],5:[[0,4],6,[21,23]],6:[[0,4],21],7:[[0,3],11,21],8:[[0,3],11,[22,28],81],10:[[0,4],[21,24]],11:[[0,3],22,[24,26],81,82],12:[[0,4],21,22,25,26,82],13:[[0,2],[21,24]],14:[[0,2],[21,24]],15:[[0,3],[21,25]],16:[[0,2],[21,23]],17:[[0,2],[21,23]],18:[[0,2],[21,25],81]},35:{0:[0],1:[[0,5],11,[21,25],28,81,82],2:[[0,6],[11,13]],3:[[0,5],22],4:[[0,3],21,[23,30],81],5:[[0,5],21,[24,27],[81,83]],6:[[0,3],[22,29],81],7:[[0,2],[21,25],[81,84]],8:[[0,2],[21,25],81],9:[[0,2],[21,26],81,82]},36:{0:[0],1:[[0,5],11,[21,24]],2:[[0,3],22,81],3:[[0,2],13,[21,23]],4:[[0,3],21,[23,30],81,82],5:[[0,2],21],6:[[0,2],22,81],7:[[0,2],[21,35],81,82],8:[[0,3],[21,30],81],9:[[0,2],[21,26],[81,83]],10:[[0,2],[21,30]],11:[[0,2],[21,30],81]},37:{0:[0],1:[[0,5],12,13,[24,26],81],2:[[0,3],5,[11,14],[81,85]],3:[[0,6],[21,23]],4:[[0,6],81],5:[[0,3],[21,23]],6:[[0,2],[11,13],34,[81,87]],7:[[0,5],24,25,[81,86]],8:[[0,2],11,[26,32],[81,83]],9:[[0,3],11,21,23,82,83],10:[[0,2],[81,83]],11:[[0,3],21,22],12:[[0,3]],13:[[0,2],11,12,[21,29]],14:[[0,2],[21,28],81,82],15:[[0,2],[21,26],81],16:[[0,2],[21,26]],17:[[0,2],[21,28]]},41:{0:[0],1:[[0,6],8,22,[81,85]],2:[[0,5],11,[21,25]],3:[[0,7],11,[22,29],81],4:[[0,4],11,[21,23],25,81,82],5:[[0,3],5,6,22,23,26,27,81],6:[[0,3],11,21,22],7:[[0,4],11,21,[24,28],81,82],8:[[0,4],11,[21,23],25,[81,83]],9:[[0,2],22,23,[26,28]],10:[[0,2],[23,25],81,82],11:[[0,4],[21,23]],12:[[0,2],21,22,24,81,82],13:[[0,3],[21,30],81],14:[[0,3],[21,26],81],15:[[0,3],[21,28]],16:[[0,2],[21,28],81],17:[[0,2],[21,29]],90:[0,1]},42:{0:[0],1:[[0,7],[11,17]],2:[[0,5],22,81],3:[[0,3],[21,25],81],5:[[0,6],[25,29],[81,83]],6:[[0,2],6,7,[24,26],[82,84]],7:[[0,4]],8:[[0,2],4,21,22,81],9:[[0,2],[21,23],81,82,84],10:[[0,3],[22,24],81,83,87],11:[[0,2],[21,27],81,82],12:[[0,2],[21,24],81],13:[[0,3],21,81],28:[[0,2],22,23,[25,28]],90:[0,[4,6],21]},43:{0:[0],1:[[0,5],11,12,21,22,24,81],2:[[0,4],11,21,[23,25],81],3:[[0,2],4,21,81,82],4:[0,1,[5,8],12,[21,24],26,81,82],5:[[0,3],11,[21,25],[27,29],81],6:[[0,3],11,21,23,24,26,81,82],7:[[0,3],[21,26],81],8:[[0,2],11,21,22],9:[[0,3],[21,23],81],10:[[0,3],[21,28],81],11:[[0,3],[21,29]],12:[[0,2],[21,30],81],13:[[0,2],21,22,81,82],31:[0,1,[22,27],30]},44:{0:[0],1:[[0,7],[11,16],83,84],2:[[0,5],21,22,24,29,32,33,81,82],3:[0,1,[3,8]],4:[[0,4]],5:[0,1,[6,15],23,82,83],6:[0,1,[4,8]],7:[0,1,[3,5],81,[83,85]],8:[[0,4],11,23,25,[81,83]],9:[[0,3],23,[81,83]],12:[[0,3],[23,26],83,84],13:[[0,3],[22,24],81],14:[[0,2],[21,24],26,27,81],15:[[0,2],21,23,81],16:[[0,2],[21,25]],17:[[0,2],21,23,81],18:[[0,3],21,23,[25,27],81,82],19:[0],20:[0],51:[[0,3],21,22],52:[[0,3],21,22,24,81],53:[[0,2],[21,23],81]},45:{0:[0],1:[[0,9],[21,27]],2:[[0,5],[21,26]],3:[[0,5],11,12,[21,32]],4:[0,1,[3,6],11,[21,23],81],5:[[0,3],12,21],6:[[0,3],21,81],7:[[0,3],21,22],8:[[0,4],21,81],9:[[0,3],[21,24],81],10:[[0,2],[21,31]],11:[[0,2],[21,23]],12:[[0,2],[21,29],81],13:[[0,2],[21,24],81],14:[[0,2],[21,25],81]},46:{0:[0],1:[0,1,[5,8]],2:[0,1],3:[0,[21,23]],90:[[0,3],[5,7],[21,39]]},50:{0:[0],1:[[0,19]],2:[0,[22,38],[40,43]],3:[0,[81,84]]},51:{0:[0],1:[0,1,[4,8],[12,15],[21,24],29,31,32,[81,84]],3:[[0,4],11,21,22],4:[[0,3],11,21,22],5:[[0,4],21,22,24,25],6:[0,1,3,23,26,[81,83]],7:[0,1,3,4,[22,27],81],8:[[0,2],11,12,[21,24]],9:[[0,4],[21,23]],10:[[0,2],11,24,25,28],11:[[0,2],[11,13],23,24,26,29,32,33,81],13:[[0,4],[21,25],81],14:[[0,2],[21,25]],15:[[0,3],[21,29]],16:[[0,3],[21,23],81],17:[[0,3],[21,25],81],18:[[0,3],[21,27]],19:[[0,3],[21,23]],20:[[0,2],21,22,81],32:[0,[21,33]],33:[0,[21,38]],34:[0,1,[22,37]]},52:{0:[0],1:[[0,3],[11,15],[21,23],81],2:[0,1,3,21,22],3:[[0,3],[21,30],81,82],4:[[0,2],[21,25]],5:[[0,2],[21,27]],6:[[0,3],[21,28]],22:[0,1,[22,30]],23:[0,1,[22,28]],24:[0,1,[22,28]],26:[0,1,[22,36]],27:[[0,2],22,23,[25,32]]},53:{0:[0],1:[[0,3],[11,14],21,22,[24,29],81],3:[[0,2],[21,26],28,81],4:[[0,2],[21,28]],5:[[0,2],[21,24]],6:[[0,2],[21,30]],7:[[0,2],[21,24]],8:[[0,2],[21,29]],9:[[0,2],[21,27]],23:[0,1,[22,29],31],25:[[0,4],[22,32]],26:[0,1,[21,28]],27:[0,1,[22,30]],28:[0,1,22,23],29:[0,1,[22,32]],31:[0,2,3,[22,24]],34:[0,[21,23]],33:[0,21,[23,25]],35:[0,[21,28]]},54:{0:[0],1:[[0,2],[21,27]],21:[0,[21,29],32,33],22:[0,[21,29],[31,33]],23:[0,1,[22,38]],24:[0,[21,31]],25:[0,[21,27]],26:[0,[21,27]]},61:{0:[0],1:[[0,4],[11,16],22,[24,26]],2:[[0,4],22],3:[[0,4],[21,24],[26,31]],4:[[0,4],[22,31],81],5:[[0,2],[21,28],81,82],6:[[0,2],[21,32]],7:[[0,2],[21,30]],8:[[0,2],[21,31]],9:[[0,2],[21,29]],10:[[0,2],[21,26]]},62:{0:[0],1:[[0,5],11,[21,23]],2:[0,1],3:[[0,2],21],4:[[0,3],[21,23]],5:[[0,3],[21,25]],6:[[0,2],[21,23]],7:[[0,2],[21,25]],8:[[0,2],[21,26]],9:[[0,2],[21,24],81,82],10:[[0,2],[21,27]],11:[[0,2],[21,26]],12:[[0,2],[21,28]],24:[0,21,[24,29]],26:[0,21,[23,30]],29:[0,1,[21,27]],30:[0,1,[21,27]]},63:{0:[0],1:[[0,5],[21,23]],2:[0,2,[21,25]],21:[0,[21,23],[26,28]],22:[0,[21,24]],23:[0,[21,24]],25:[0,[21,25]],26:[0,[21,26]],27:[0,1,[21,26]],28:[[0,2],[21,23]]},64:{0:[0],1:[0,1,[4,6],21,22,81],2:[[0,3],5,[21,23]],3:[[0,3],[21,24],81],4:[[0,2],[21,25]],5:[[0,2],21,22]},65:{0:[0],1:[[0,9],21],2:[[0,5]],21:[0,1,22,23],22:[0,1,22,23],23:[[0,3],[23,25],27,28],28:[0,1,[22,29]],29:[0,1,[22,29]],30:[0,1,[22,24]],31:[0,1,[21,31]],32:[0,1,[21,27]],40:[0,2,3,[21,28]],42:[[0,2],21,[23,26]],43:[0,1,[21,26]],90:[[0,4]],27:[[0,2],22,23]},71:{0:[0]},81:{0:[0]},82:{0:[0]}},d=parseInt(b.substr(0,2),10),e=parseInt(b.substr(2,2),10),f=parseInt(b.substr(4,2),10);if(!c[d]||!c[d][e])return!1;for(var g=!1,h=c[d][e],i=0;i<h.length;i++)if(a.isArray(h[i])&&h[i][0]<=f&&f<=h[i][1]||!a.isArray(h[i])&&f===h[i]){g=!0;break}if(!g)return!1;var j;j=18===b.length?b.substr(6,8):"19"+b.substr(6,6);var k=parseInt(j.substr(0,4),10),l=parseInt(j.substr(4,2),10),m=parseInt(j.substr(6,2),10);if(!a.fn.bootstrapValidator.helpers.date(k,l,m))return!1;if(18===b.length){var n=0,o=[7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2];for(i=0;17>i;i++)n+=parseInt(b.charAt(i),10)*o[i];n=(12-n%11)%11;var p="X"!==b.charAt(17).toUpperCase()?parseInt(b.charAt(17),10):10;return p===n}return!0
-},_cz:function(b){if(!/^\d{9,10}$/.test(b))return!1;var c=1900+parseInt(b.substr(0,2),10),d=parseInt(b.substr(2,2),10)%50%20,e=parseInt(b.substr(4,2),10);if(9===b.length){if(c>=1980&&(c-=100),c>1953)return!1}else 1954>c&&(c+=100);if(!a.fn.bootstrapValidator.helpers.date(c,d,e))return!1;if(10===b.length){var f=parseInt(b.substr(0,9),10)%11;return 1985>c&&(f%=10),f+""===b.substr(9,1)}return!0},_dk:function(b){if(!/^[0-9]{6}[-]{0,1}[0-9]{4}$/.test(b))return!1;b=b.replace(/-/g,"");var c=parseInt(b.substr(0,2),10),d=parseInt(b.substr(2,2),10),e=parseInt(b.substr(4,2),10);switch(!0){case-1!=="5678".indexOf(b.charAt(6))&&e>=58:e+=1800;break;case-1!=="0123".indexOf(b.charAt(6)):case-1!=="49".indexOf(b.charAt(6))&&e>=37:e+=1900;break;default:e+=2e3}return a.fn.bootstrapValidator.helpers.date(e,d,c)},_ee:function(a){return this._lt(a)},_es:function(a){if(!/^[0-9A-Z]{8}[-]{0,1}[0-9A-Z]$/.test(a)&&!/^[XYZ][-]{0,1}[0-9]{7}[-]{0,1}[0-9A-Z]$/.test(a))return!1;a=a.replace(/-/g,"");var b="XYZ".indexOf(a.charAt(0));-1!==b&&(a=b+a.substr(1)+"");var c=parseInt(a.substr(0,8),10);return c="TRWAGMYFPDXBNJZSQVHLCKE"[c%23],c===a.substr(8,1)},_fi:function(b){if(!/^[0-9]{6}[-+A][0-9]{3}[0-9ABCDEFHJKLMNPRSTUVWXY]$/.test(b))return!1;var c=parseInt(b.substr(0,2),10),d=parseInt(b.substr(2,2),10),e=parseInt(b.substr(4,2),10),f={"+":1800,"-":1900,A:2e3};if(e=f[b.charAt(6)]+e,!a.fn.bootstrapValidator.helpers.date(e,d,c))return!1;var g=parseInt(b.substr(7,3),10);if(2>g)return!1;var h=b.substr(0,6)+b.substr(7,3)+"";return h=parseInt(h,10),"0123456789ABCDEFHJKLMNPRSTUVWXY".charAt(h%31)===b.charAt(10)},_hr:function(b){return/^[0-9]{11}$/.test(b)?a.fn.bootstrapValidator.helpers.mod11And10(b):!1},_ie:function(a){if(!/^\d{7}[A-W][AHWTX]?$/.test(a))return!1;var b=function(a){for(;a.length<7;)a="0"+a;for(var b="WABCDEFGHIJKLMNOPQRSTUV",c=0,d=0;7>d;d++)c+=parseInt(a.charAt(d),10)*(8-d);return c+=9*b.indexOf(a.substr(7)),b[c%23]};return 9!==a.length||"A"!==a.charAt(8)&&"H"!==a.charAt(8)?a.charAt(7)===b(a.substr(0,7)):a.charAt(7)===b(a.substr(0,7)+a.substr(8)+"")},_is:function(b){if(!/^[0-9]{6}[-]{0,1}[0-9]{4}$/.test(b))return!1;b=b.replace(/-/g,"");var c=parseInt(b.substr(0,2),10),d=parseInt(b.substr(2,2),10),e=parseInt(b.substr(4,2),10),f=parseInt(b.charAt(9),10);if(e=9===f?1900+e:100*(20+f)+e,!a.fn.bootstrapValidator.helpers.date(e,d,c,!0))return!1;for(var g=0,h=[3,2,7,6,5,4,3,2],i=0;8>i;i++)g+=parseInt(b.charAt(i),10)*h[i];return g=11-g%11,g+""===b.charAt(8)},_lt:function(b){if(!/^[0-9]{11}$/.test(b))return!1;var c=parseInt(b.charAt(0),10),d=parseInt(b.substr(1,2),10),e=parseInt(b.substr(3,2),10),f=parseInt(b.substr(5,2),10),g=c%2===0?17+c/2:17+(c+1)/2;if(d=100*g+d,!a.fn.bootstrapValidator.helpers.date(d,e,f,!0))return!1;for(var h=0,i=[1,2,3,4,5,6,7,8,9,1],j=0;10>j;j++)h+=parseInt(b.charAt(j),10)*i[j];if(h%=11,10!==h)return h+""===b.charAt(10);for(h=0,i=[3,4,5,6,7,8,9,1,2,3],j=0;10>j;j++)h+=parseInt(b.charAt(j),10)*i[j];return h%=11,10===h&&(h=0),h+""===b.charAt(10)},_lv:function(b){if(!/^[0-9]{6}[-]{0,1}[0-9]{5}$/.test(b))return!1;b=b.replace(/\D/g,"");var c=parseInt(b.substr(0,2),10),d=parseInt(b.substr(2,2),10),e=parseInt(b.substr(4,2),10);if(e=e+1800+100*parseInt(b.charAt(6),10),!a.fn.bootstrapValidator.helpers.date(e,d,c,!0))return!1;for(var f=0,g=[10,5,8,4,2,1,6,3,7,9],h=0;10>h;h++)f+=parseInt(b.charAt(h),10)*g[h];return f=(f+1)%11%10,f+""===b.charAt(10)},_nl:function(a){for(;a.length<9;)a="0"+a;if(!/^[0-9]{4}[.]{0,1}[0-9]{2}[.]{0,1}[0-9]{3}$/.test(a))return!1;if(a=a.replace(/\./g,""),0===parseInt(a,10))return!1;for(var b=0,c=a.length,d=0;c-1>d;d++)b+=(9-d)*parseInt(a.charAt(d),10);return b%=11,10===b&&(b=0),b+""===a.charAt(c-1)},_ro:function(b){if(!/^[0-9]{13}$/.test(b))return!1;var c=parseInt(b.charAt(0),10);if(0===c||7===c||8===c)return!1;var d=parseInt(b.substr(1,2),10),e=parseInt(b.substr(3,2),10),f=parseInt(b.substr(5,2),10),g={1:1900,2:1900,3:1800,4:1800,5:2e3,6:2e3};if(f>31&&e>12)return!1;if(9!==c&&(d=g[c+""]+d,!a.fn.bootstrapValidator.helpers.date(d,e,f)))return!1;for(var h=0,i=[2,7,9,1,4,6,3,5,8,2,7,9],j=b.length,k=0;j-1>k;k++)h+=parseInt(b.charAt(k),10)*i[k];return h%=11,10===h&&(h=1),h+""===b.charAt(j-1)},_se:function(b){if(!/^[0-9]{10}$/.test(b)&&!/^[0-9]{6}[-|+][0-9]{4}$/.test(b))return!1;b=b.replace(/[^0-9]/g,"");var c=parseInt(b.substr(0,2),10)+1900,d=parseInt(b.substr(2,2),10),e=parseInt(b.substr(4,2),10);return a.fn.bootstrapValidator.helpers.date(c,d,e)?a.fn.bootstrapValidator.helpers.luhn(b):!1},_sk:function(a){return this._cz(a)},_sm:function(a){return/^\d{5}$/.test(a)},_th:function(a){if(13!==a.length)return!1;for(var b=0,c=0;12>c;c++)b+=parseInt(a.charAt(c),10)*(13-c);return(11-b%11)%10===parseInt(a.charAt(12),10)},_za:function(b){if(!/^[0-9]{10}[0|1][8|9][0-9]$/.test(b))return!1;var c=parseInt(b.substr(0,2),10),d=(new Date).getFullYear()%100,e=parseInt(b.substr(2,2),10),f=parseInt(b.substr(4,2),10);return c=c>=d?c+1900:c+2e3,a.fn.bootstrapValidator.helpers.date(c,e,f)?a.fn.bootstrapValidator.helpers.luhn(b):!1}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.identical=a.extend(a.fn.bootstrapValidator.i18n.identical||{},{"default":"Please enter the same value"}),a.fn.bootstrapValidator.validators.identical={html5Attributes:{message:"message",field:"field"},validate:function(a,b,c){var d=b.val();if(""===d)return!0;var e=a.getFieldElements(c.field);return null===e||0===e.length?!0:d===e.val()?(a.updateStatus(c.field,a.STATUS_VALID,"identical"),!0):!1}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.imei=a.extend(a.fn.bootstrapValidator.i18n.imei||{},{"default":"Please enter a valid IMEI number"}),a.fn.bootstrapValidator.validators.imei={validate:function(b,c){var d=c.val();if(""===d)return!0;switch(!0){case/^\d{15}$/.test(d):case/^\d{2}-\d{6}-\d{6}-\d{1}$/.test(d):case/^\d{2}\s\d{6}\s\d{6}\s\d{1}$/.test(d):return d=d.replace(/[^0-9]/g,""),a.fn.bootstrapValidator.helpers.luhn(d);case/^\d{14}$/.test(d):case/^\d{16}$/.test(d):case/^\d{2}-\d{6}-\d{6}(|-\d{2})$/.test(d):case/^\d{2}\s\d{6}\s\d{6}(|\s\d{2})$/.test(d):return!0;default:return!1}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.imo=a.extend(a.fn.bootstrapValidator.i18n.imo||{},{"default":"Please enter a valid IMO number"}),a.fn.bootstrapValidator.validators.imo={validate:function(a,b){var c=b.val();if(""===c)return!0;if(!/^IMO \d{7}$/i.test(c))return!1;for(var d=0,e=c.replace(/^.*(\d{7})$/,"$1"),f=6;f>=1;f--)d+=e.slice(6-f,-f)*(f+1);return d%10===parseInt(e.charAt(6),10)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.integer=a.extend(a.fn.bootstrapValidator.i18n.integer||{},{"default":"Please enter a valid number"}),a.fn.bootstrapValidator.validators.integer={enableByHtml5:function(a){return"number"===a.attr("type")&&(void 0===a.attr("step")||a.attr("step")%1===0)},validate:function(a,b){if(this.enableByHtml5(b)&&b.get(0).validity&&b.get(0).validity.badInput===!0)return!1;var c=b.val();return""===c?!0:/^(?:-?(?:0|[1-9][0-9]*))$/.test(c)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.ip=a.extend(a.fn.bootstrapValidator.i18n.ip||{},{"default":"Please enter a valid IP address",ipv4:"Please enter a valid IPv4 address",ipv6:"Please enter a valid IPv6 address"}),a.fn.bootstrapValidator.validators.ip={html5Attributes:{message:"message",ipv4:"ipv4",ipv6:"ipv6"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;d=a.extend({},{ipv4:!0,ipv6:!0},d);var f,g=/^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,h=/^\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(%.+)?\s*$/,i=!1;switch(!0){case d.ipv4&&!d.ipv6:i=g.test(e),f=d.message||a.fn.bootstrapValidator.i18n.ip.ipv4;break;case!d.ipv4&&d.ipv6:i=h.test(e),f=d.message||a.fn.bootstrapValidator.i18n.ip.ipv6;break;case d.ipv4&&d.ipv6:default:i=g.test(e)||h.test(e),f=d.message||a.fn.bootstrapValidator.i18n.ip["default"]}return{valid:i,message:f}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.isbn=a.extend(a.fn.bootstrapValidator.i18n.isbn||{},{"default":"Please enter a valid ISBN number"}),a.fn.bootstrapValidator.validators.isbn={validate:function(a,b){var c=b.val();if(""===c)return!0;var d;switch(!0){case/^\d{9}[\dX]$/.test(c):case 13===c.length&&/^(\d+)-(\d+)-(\d+)-([\dX])$/.test(c):case 13===c.length&&/^(\d+)\s(\d+)\s(\d+)\s([\dX])$/.test(c):d="ISBN10";break;case/^(978|979)\d{9}[\dX]$/.test(c):case 17===c.length&&/^(978|979)-(\d+)-(\d+)-(\d+)-([\dX])$/.test(c):case 17===c.length&&/^(978|979)\s(\d+)\s(\d+)\s(\d+)\s([\dX])$/.test(c):d="ISBN13";break;default:return!1}c=c.replace(/[^0-9X]/gi,"");var e,f,g=c.split(""),h=g.length,i=0;switch(d){case"ISBN10":for(i=0,e=0;h-1>e;e++)i+=parseInt(g[e],10)*(10-e);return f=11-i%11,11===f?f=0:10===f&&(f="X"),f+""===g[h-1];case"ISBN13":for(i=0,e=0;h-1>e;e++)i+=e%2===0?parseInt(g[e],10):3*parseInt(g[e],10);return f=10-i%10,10===f&&(f="0"),f+""===g[h-1];default:return!1}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.isin=a.extend(a.fn.bootstrapValidator.i18n.isin||{},{"default":"Please enter a valid ISIN number"}),a.fn.bootstrapValidator.validators.isin={COUNTRY_CODES:"AF|AX|AL|DZ|AS|AD|AO|AI|AQ|AG|AR|AM|AW|AU|AT|AZ|BS|BH|BD|BB|BY|BE|BZ|BJ|BM|BT|BO|BQ|BA|BW|BV|BR|IO|BN|BG|BF|BI|KH|CM|CA|CV|KY|CF|TD|CL|CN|CX|CC|CO|KM|CG|CD|CK|CR|CI|HR|CU|CW|CY|CZ|DK|DJ|DM|DO|EC|EG|SV|GQ|ER|EE|ET|FK|FO|FJ|FI|FR|GF|PF|TF|GA|GM|GE|DE|GH|GI|GR|GL|GD|GP|GU|GT|GG|GN|GW|GY|HT|HM|VA|HN|HK|HU|IS|IN|ID|IR|IQ|IE|IM|IL|IT|JM|JP|JE|JO|KZ|KE|KI|KP|KR|KW|KG|LA|LV|LB|LS|LR|LY|LI|LT|LU|MO|MK|MG|MW|MY|MV|ML|MT|MH|MQ|MR|MU|YT|MX|FM|MD|MC|MN|ME|MS|MA|MZ|MM|NA|NR|NP|NL|NC|NZ|NI|NE|NG|NU|NF|MP|NO|OM|PK|PW|PS|PA|PG|PY|PE|PH|PN|PL|PT|PR|QA|RE|RO|RU|RW|BL|SH|KN|LC|MF|PM|VC|WS|SM|ST|SA|SN|RS|SC|SL|SG|SX|SK|SI|SB|SO|ZA|GS|SS|ES|LK|SD|SR|SJ|SZ|SE|CH|SY|TW|TJ|TZ|TH|TL|TG|TK|TO|TT|TN|TR|TM|TC|TV|UG|UA|AE|GB|US|UM|UY|UZ|VU|VE|VN|VG|VI|WF|EH|YE|ZM|ZW",validate:function(a,b){var c=b.val();if(""===c)return!0;c=c.toUpperCase();var d=new RegExp("^("+this.COUNTRY_CODES+")[0-9A-Z]{10}$");if(!d.test(c))return!1;for(var e="",f=c.length,g=0;f-1>g;g++){var h=c.charCodeAt(g);e+=h>57?(h-55).toString():c.charAt(g)}var i="",j=e.length,k=j%2!==0?0:1;for(g=0;j>g;g++)i+=parseInt(e[g],10)*(g%2===k?2:1)+"";var l=0;for(g=0;g<i.length;g++)l+=parseInt(i.charAt(g),10);return l=(10-l%10)%10,l+""===c.charAt(f-1)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.ismn=a.extend(a.fn.bootstrapValidator.i18n.ismn||{},{"default":"Please enter a valid ISMN number"}),a.fn.bootstrapValidator.validators.ismn={validate:function(a,b){var c=b.val();if(""===c)return!0;var d;switch(!0){case/^M\d{9}$/.test(c):case/^M-\d{4}-\d{4}-\d{1}$/.test(c):case/^M\s\d{4}\s\d{4}\s\d{1}$/.test(c):d="ISMN10";break;case/^9790\d{9}$/.test(c):case/^979-0-\d{4}-\d{4}-\d{1}$/.test(c):case/^979\s0\s\d{4}\s\d{4}\s\d{1}$/.test(c):d="ISMN13";break;default:return!1}"ISMN10"===d&&(c="9790"+c.substr(1)),c=c.replace(/[^0-9]/gi,"");for(var e=c.length,f=0,g=[1,3],h=0;e-1>h;h++)f+=parseInt(c.charAt(h),10)*g[h%2];return f=10-f%10,f+""===c.charAt(e-1)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.issn=a.extend(a.fn.bootstrapValidator.i18n.issn||{},{"default":"Please enter a valid ISSN number"}),a.fn.bootstrapValidator.validators.issn={validate:function(a,b){var c=b.val();if(""===c)return!0;if(!/^\d{4}\-\d{3}[\dX]$/.test(c))return!1;c=c.replace(/[^0-9X]/gi,"");var d=c.split(""),e=d.length,f=0;"X"===d[7]&&(d[7]=10);for(var g=0;e>g;g++)f+=parseInt(d[g],10)*(8-g);return f%11===0}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.lessThan=a.extend(a.fn.bootstrapValidator.i18n.lessThan||{},{"default":"Please enter a value less than or equal to %s",notInclusive:"Please enter a value less than %s"}),a.fn.bootstrapValidator.validators.lessThan={html5Attributes:{message:"message",value:"value",inclusive:"inclusive"},enableByHtml5:function(a){var b=a.attr("type"),c=a.attr("max");return c&&"date"!==b?{value:c}:!1},validate:function(b,c,d){var e=c.val();if(""===e)return!0;if(e=this._format(e),!a.isNumeric(e))return!1;var f=a.isNumeric(d.value)?d.value:b.getDynamicOption(c,d.value),g=this._format(f);return e=parseFloat(e),d.inclusive===!0||void 0===d.inclusive?{valid:g>=e,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.lessThan["default"],f)}:{valid:g>e,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.lessThan.notInclusive,f)}},_format:function(a){return(a+"").replace(",",".")}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.mac=a.extend(a.fn.bootstrapValidator.i18n.mac||{},{"default":"Please enter a valid MAC address"}),a.fn.bootstrapValidator.validators.mac={validate:function(a,b){var c=b.val();return""===c?!0:/^([0-9A-F]{2}[:-]){5}([0-9A-F]{2})$/.test(c)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.meid=a.extend(a.fn.bootstrapValidator.i18n.meid||{},{"default":"Please enter a valid MEID number"}),a.fn.bootstrapValidator.validators.meid={validate:function(b,c){var d=c.val();if(""===d)return!0;switch(!0){case/^[0-9A-F]{15}$/i.test(d):case/^[0-9A-F]{2}[- ][0-9A-F]{6}[- ][0-9A-F]{6}[- ][0-9A-F]$/i.test(d):case/^\d{19}$/.test(d):case/^\d{5}[- ]\d{5}[- ]\d{4}[- ]\d{4}[- ]\d$/.test(d):var e=d.charAt(d.length-1);if(d=d.replace(/[- ]/g,""),d.match(/^\d*$/i))return a.fn.bootstrapValidator.helpers.luhn(d);d=d.slice(0,-1);for(var f="",g=1;13>=g;g+=2)f+=(2*parseInt(d.charAt(g),16)).toString(16);var h=0;for(g=0;g<f.length;g++)h+=parseInt(f.charAt(g),16);return h%10===0?"0"===e:e===(2*(10*Math.floor((h+10)/10)-h)).toString(16);case/^[0-9A-F]{14}$/i.test(d):case/^[0-9A-F]{2}[- ][0-9A-F]{6}[- ][0-9A-F]{6}$/i.test(d):case/^\d{18}$/.test(d):case/^\d{5}[- ]\d{5}[- ]\d{4}[- ]\d{4}$/.test(d):return!0;default:return!1}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.notEmpty=a.extend(a.fn.bootstrapValidator.i18n.notEmpty||{},{"default":"Please enter a value"}),a.fn.bootstrapValidator.validators.notEmpty={enableByHtml5:function(a){var b=a.attr("required")+"";return"required"===b||"true"===b},validate:function(b,c){var d=c.attr("type");return"radio"===d||"checkbox"===d?b.getFieldElements(c.attr("data-bv-field")).filter(":checked").length>0:"number"===d&&c.get(0).validity&&c.get(0).validity.badInput===!0?!0:""!==a.trim(c.val())}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.numeric=a.extend(a.fn.bootstrapValidator.i18n.numeric||{},{"default":"Please enter a valid float number"}),a.fn.bootstrapValidator.validators.numeric={html5Attributes:{message:"message",separator:"separator"},enableByHtml5:function(a){return"number"===a.attr("type")&&void 0!==a.attr("step")&&a.attr("step")%1!==0},validate:function(a,b,c){if(this.enableByHtml5(b)&&b.get(0).validity&&b.get(0).validity.badInput===!0)return!1;var d=b.val();if(""===d)return!0;var e=c.separator||".";return"."!==e&&(d=d.replace(e,".")),!isNaN(parseFloat(d))&&isFinite(d)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.phone=a.extend(a.fn.bootstrapValidator.i18n.phone||{},{"default":"Please enter a valid phone number",countryNotSupported:"The country code %s is not supported",country:"Please enter a valid phone number in %s",countries:{BR:"Brazil",CN:"China",CZ:"Czech Republic",DE:"Germany",DK:"Denmark",ES:"Spain",FR:"France",GB:"United Kingdom",MA:"Morocco",PK:"Pakistan",RO:"Romania",RU:"Russia",SK:"Slovakia",TH:"Thailand",US:"USA",VE:"Venezuela"}}),a.fn.bootstrapValidator.validators.phone={html5Attributes:{message:"message",country:"country"},COUNTRY_CODES:["BR","CN","CZ","DE","DK","ES","FR","GB","MA","PK","RO","RU","SK","TH","US","VE"],validate:function(b,c,d){var e=c.val();if(""===e)return!0;var f=d.country;if(("string"!=typeof f||-1===a.inArray(f,this.COUNTRY_CODES))&&(f=b.getDynamicOption(c,f)),!f||-1===a.inArray(f.toUpperCase(),this.COUNTRY_CODES))return{valid:!1,message:a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.phone.countryNotSupported,f)};var g=!0;switch(f.toUpperCase()){case"BR":e=a.trim(e),g=/^(([\d]{4}[-.\s]{1}[\d]{2,3}[-.\s]{1}[\d]{2}[-.\s]{1}[\d]{2})|([\d]{4}[-.\s]{1}[\d]{3}[-.\s]{1}[\d]{4})|((\(?\+?[0-9]{2}\)?\s?)?(\(?\d{2}\)?\s?)?\d{4,5}[-.\s]?\d{4}))$/.test(e);break;case"CN":e=a.trim(e),g=/^((00|\+)?(86(?:-| )))?((\d{11})|(\d{3}[- ]{1}\d{4}[- ]{1}\d{4})|((\d{2,4}[- ]){1}(\d{7,8}|(\d{3,4}[- ]{1}\d{4}))([- ]{1}\d{1,4})?))$/.test(e);break;case"CZ":g=/^(((00)([- ]?)|\+)(420)([- ]?))?((\d{3})([- ]?)){2}(\d{3})$/.test(e);break;case"DE":e=a.trim(e),g=/^(((((((00|\+)49[ \-/]?)|0)[1-9][0-9]{1,4})[ \-/]?)|((((00|\+)49\()|\(0)[1-9][0-9]{1,4}\)[ \-/]?))[0-9]{1,7}([ \-/]?[0-9]{1,5})?)$/.test(e);break;case"DK":e=a.trim(e),g=/^(\+45|0045|\(45\))?\s?[2-9](\s?\d){7}$/.test(e);break;case"ES":e=a.trim(e),g=/^(?:(?:(?:\+|00)34\D?))?(?:9|6)(?:\d\D?){8}$/.test(e);break;case"FR":e=a.trim(e),g=/^(?:(?:(?:\+|00)33[ ]?(?:\(0\)[ ]?)?)|0){1}[1-9]{1}([ .-]?)(?:\d{2}\1?){3}\d{2}$/.test(e);break;case"GB":e=a.trim(e),g=/^\(?(?:(?:0(?:0|11)\)?[\s-]?\(?|\+)44\)?[\s-]?\(?(?:0\)?[\s-]?\(?)?|0)(?:\d{2}\)?[\s-]?\d{4}[\s-]?\d{4}|\d{3}\)?[\s-]?\d{3}[\s-]?\d{3,4}|\d{4}\)?[\s-]?(?:\d{5}|\d{3}[\s-]?\d{3})|\d{5}\)?[\s-]?\d{4,5}|8(?:00[\s-]?11[\s-]?11|45[\s-]?46[\s-]?4\d))(?:(?:[\s-]?(?:x|ext\.?\s?|\#)\d+)?)$/.test(e);break;case"MA":e=a.trim(e),g=/^(?:(?:(?:\+|00)212[\s]?(?:[\s]?\(0\)[\s]?)?)|0){1}(?:5[\s.-]?[2-3]|6[\s.-]?[13-9]){1}[0-9]{1}(?:[\s.-]?\d{2}){3}$/.test(e);break;case"PK":e=a.trim(e),g=/^0?3[0-9]{2}[0-9]{7}$/.test(e);break;case"RO":g=/^(\+4|)?(07[0-8]{1}[0-9]{1}|02[0-9]{2}|03[0-9]{2}){1}?(\s|\.|\-)?([0-9]{3}(\s|\.|\-|)){2}$/g.test(e);break;case"RU":g=/^((8|\+7|007)[\-\.\/ ]?)?([\(\/\.]?\d{3}[\)\/\.]?[\-\.\/ ]?)?[\d\-\.\/ ]{7,10}$/g.test(e);break;case"SK":g=/^(((00)([- ]?)|\+)(420)([- ]?))?((\d{3})([- ]?)){2}(\d{3})$/.test(e);break;case"TH":g=/^0\(?([6|8-9]{2})*-([0-9]{3})*-([0-9]{4})$/.test(e);break;case"VE":e=a.trim(e),g=/^0(?:2(?:12|4[0-9]|5[1-9]|6[0-9]|7[0-8]|8[1-35-8]|9[1-5]|3[45789])|4(?:1[246]|2[46]))\d{7}$/.test(e);break;case"US":default:e=e.replace(/\D/g,""),g=/^(?:(1\-?)|(\+1 ?))?\(?(\d{3})[\)\-\.]?(\d{3})[\-\.]?(\d{4})$/.test(e)&&10===e.length}return{valid:g,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.phone.country,a.fn.bootstrapValidator.i18n.phone.countries[f])}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.regexp=a.extend(a.fn.bootstrapValidator.i18n.regexp||{},{"default":"Please enter a value matching the pattern"}),a.fn.bootstrapValidator.validators.regexp={html5Attributes:{message:"message",regexp:"regexp"},enableByHtml5:function(a){var b=a.attr("pattern");return b?{regexp:b}:!1},validate:function(a,b,c){var d=b.val();if(""===d)return!0;var e="string"==typeof c.regexp?new RegExp(c.regexp):c.regexp;return e.test(d)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.remote=a.extend(a.fn.bootstrapValidator.i18n.remote||{},{"default":"Please enter a valid value"}),a.fn.bootstrapValidator.validators.remote={html5Attributes:{message:"message",name:"name",type:"type",url:"url",data:"data",delay:"delay"},destroy:function(a,b){b.data("bv.remote.timer")&&(clearTimeout(b.data("bv.remote.timer")),b.removeData("bv.remote.timer"))},validate:function(b,c,d){function e(){var b=a.ajax({type:k,headers:l,url:j,dataType:"json",data:i});return b.then(function(a){a.valid=a.valid===!0||"true"===a.valid,g.resolve(c,"remote",a)}),g.fail(function(){b.abort()}),g}var f=c.val(),g=new a.Deferred;if(""===f)return g.resolve(c,"remote",{valid:!0}),g;var h=c.attr("data-bv-field"),i=d.data||{},j=d.url,k=d.type||"GET",l=d.headers||{};return"function"==typeof i&&(i=i.call(this,b)),"string"==typeof i&&(i=JSON.parse(i)),"function"==typeof j&&(j=j.call(this,b)),i[d.name||h]=f,d.delay?(c.data("bv.remote.timer")&&clearTimeout(c.data("bv.remote.timer")),c.data("bv.remote.timer",setTimeout(e,d.delay)),g):e()}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.rtn=a.extend(a.fn.bootstrapValidator.i18n.rtn||{},{"default":"Please enter a valid RTN number"}),a.fn.bootstrapValidator.validators.rtn={validate:function(a,b){var c=b.val();if(""===c)return!0;if(!/^\d{9}$/.test(c))return!1;for(var d=0,e=0;e<c.length;e+=3)d+=3*parseInt(c.charAt(e),10)+7*parseInt(c.charAt(e+1),10)+parseInt(c.charAt(e+2),10);return 0!==d&&d%10===0}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.sedol=a.extend(a.fn.bootstrapValidator.i18n.sedol||{},{"default":"Please enter a valid SEDOL number"}),a.fn.bootstrapValidator.validators.sedol={validate:function(a,b){var c=b.val();if(""===c)return!0;if(c=c.toUpperCase(),!/^[0-9A-Z]{7}$/.test(c))return!1;for(var d=0,e=[1,3,1,7,3,9,1],f=c.length,g=0;f-1>g;g++)d+=e[g]*parseInt(c.charAt(g),36);return d=(10-d%10)%10,d+""===c.charAt(f-1)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.siren=a.extend(a.fn.bootstrapValidator.i18n.siren||{},{"default":"Please enter a valid SIREN number"}),a.fn.bootstrapValidator.validators.siren={validate:function(b,c){var d=c.val();return""===d?!0:/^\d{9}$/.test(d)?a.fn.bootstrapValidator.helpers.luhn(d):!1}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.siret=a.extend(a.fn.bootstrapValidator.i18n.siret||{},{"default":"Please enter a valid SIRET number"}),a.fn.bootstrapValidator.validators.siret={validate:function(a,b){var c=b.val();if(""===c)return!0;for(var d,e=0,f=c.length,g=0;f>g;g++)d=parseInt(c.charAt(g),10),g%2===0&&(d=2*d,d>9&&(d-=9)),e+=d;return e%10===0}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.step=a.extend(a.fn.bootstrapValidator.i18n.step||{},{"default":"Please enter a valid step of %s"}),a.fn.bootstrapValidator.validators.step={html5Attributes:{message:"message",base:"baseValue",step:"step"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;if(d=a.extend({},{baseValue:0,step:1},d),e=parseFloat(e),!a.isNumeric(e))return!1;var f=function(a,b){var c=Math.pow(10,b);a*=c;var d=a>0|-(0>a),e=a%1===.5*d;return e?(Math.floor(a)+(d>0))/c:Math.round(a)/c},g=function(a,b){if(0===b)return 1;var c=(a+"").split("."),d=(b+"").split("."),e=(1===c.length?0:c[1].length)+(1===d.length?0:d[1].length);return f(a-b*Math.floor(a/b),e)},h=g(e-d.baseValue,d.step);return{valid:0===h||h===d.step,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.step["default"],[d.step])}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.stringCase=a.extend(a.fn.bootstrapValidator.i18n.stringCase||{},{"default":"Please enter only lowercase characters",upper:"Please enter only uppercase characters"}),a.fn.bootstrapValidator.validators.stringCase={html5Attributes:{message:"message","case":"case"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;var f=(d["case"]||"lower").toLowerCase();return{valid:"upper"===f?e===e.toUpperCase():e===e.toLowerCase(),message:d.message||("upper"===f?a.fn.bootstrapValidator.i18n.stringCase.upper:a.fn.bootstrapValidator.i18n.stringCase["default"])}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.stringLength=a.extend(a.fn.bootstrapValidator.i18n.stringLength||{},{"default":"Please enter a value with valid length",less:"Please enter less than %s characters",more:"Please enter more than %s characters",between:"Please enter value between %s and %s characters long"}),a.fn.bootstrapValidator.validators.stringLength={html5Attributes:{message:"message",min:"min",max:"max",trim:"trim",utf8bytes:"utf8Bytes"},enableByHtml5:function(b){var c={},d=b.attr("maxlength"),e=b.attr("minlength");return d&&(c.max=parseInt(d,10)),e&&(c.min=parseInt(e,10)),a.isEmptyObject(c)?!1:c},validate:function(b,c,d){var e=c.val();if((d.trim===!0||"true"===d.trim)&&(e=a.trim(e)),""===e)return!0;var f=a.isNumeric(d.min)?d.min:b.getDynamicOption(c,d.min),g=a.isNumeric(d.max)?d.max:b.getDynamicOption(c,d.max),h=function(a){for(var b=a.length,c=a.length-1;c>=0;c--){var d=a.charCodeAt(c);d>127&&2047>=d?b++:d>2047&&65535>=d&&(b+=2),d>=56320&&57343>=d&&c--}return b},i=d.utf8Bytes?h(e):e.length,j=!0,k=d.message||a.fn.bootstrapValidator.i18n.stringLength["default"];switch((f&&i<parseInt(f,10)||g&&i>parseInt(g,10))&&(j=!1),!0){case!!f&&!!g:k=a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.stringLength.between,[parseInt(f,10),parseInt(g,10)]);break;case!!f:k=a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.stringLength.more,parseInt(f,10));break;case!!g:k=a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.stringLength.less,parseInt(g,10))}return{valid:j,message:k}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.uri=a.extend(a.fn.bootstrapValidator.i18n.uri||{},{"default":"Please enter a valid URI"}),a.fn.bootstrapValidator.validators.uri={html5Attributes:{message:"message",allowlocal:"allowLocal",protocol:"protocol"},enableByHtml5:function(a){return"url"===a.attr("type")},validate:function(a,b,c){var d=b.val();if(""===d)return!0;var e=c.allowLocal===!0||"true"===c.allowLocal,f=(c.protocol||"http, https, ftp").split(",").join("|").replace(/\s/g,""),g=new RegExp("^(?:(?:"+f+")://)(?:\\S+(?::\\S*)?@)?(?:"+(e?"":"(?!(?:10|127)(?:\\.\\d{1,3}){3})(?!(?:169\\.254|192\\.168)(?:\\.\\d{1,3}){2})(?!172\\.(?:1[6-9]|2\\d|3[0-1])(?:\\.\\d{1,3}){2})")+"(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[1-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,}))"+(e?"?":"")+")(?::\\d{2,5})?(?:/[^\\s]*)?$","i");return g.test(d)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.uuid=a.extend(a.fn.bootstrapValidator.i18n.uuid||{},{"default":"Please enter a valid UUID number",version:"Please enter a valid UUID version %s number"}),a.fn.bootstrapValidator.validators.uuid={html5Attributes:{message:"message",version:"version"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;var f={3:/^[0-9A-F]{8}-[0-9A-F]{4}-3[0-9A-F]{3}-[0-9A-F]{4}-[0-9A-F]{12}$/i,4:/^[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i,5:/^[0-9A-F]{8}-[0-9A-F]{4}-5[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i,all:/^[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$/i},g=d.version?d.version+"":"all";return{valid:null===f[g]?!0:f[g].test(e),message:d.version?a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.uuid.version,d.version):d.message||a.fn.bootstrapValidator.i18n.uuid["default"]}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.vat=a.extend(a.fn.bootstrapValidator.i18n.vat||{},{"default":"Please enter a valid VAT number",countryNotSupported:"The country code %s is not supported",country:"Please enter a valid VAT number in %s",countries:{AT:"Austria",BE:"Belgium",BG:"Bulgaria",BR:"Brazil",CH:"Switzerland",CY:"Cyprus",CZ:"Czech Republic",DE:"Germany",DK:"Denmark",EE:"Estonia",ES:"Spain",FI:"Finland",FR:"France",GB:"United Kingdom",GR:"Greek",EL:"Greek",HU:"Hungary",HR:"Croatia",IE:"Ireland",IS:"Iceland",IT:"Italy",LT:"Lithuania",LU:"Luxembourg",LV:"Latvia",MT:"Malta",NL:"Netherlands",NO:"Norway",PL:"Poland",PT:"Portugal",RO:"Romania",RU:"Russia",RS:"Serbia",SE:"Sweden",SI:"Slovenia",SK:"Slovakia",VE:"Venezuela",ZA:"South Africa"}}),a.fn.bootstrapValidator.validators.vat={html5Attributes:{message:"message",country:"country"},COUNTRY_CODES:["AT","BE","BG","BR","CH","CY","CZ","DE","DK","EE","EL","ES","FI","FR","GB","GR","HR","HU","IE","IS","IT","LT","LU","LV","MT","NL","NO","PL","PT","RO","RU","RS","SE","SK","SI","VE","ZA"],validate:function(b,c,d){var e=c.val();if(""===e)return!0;var f=d.country;if(f?("string"!=typeof f||-1===a.inArray(f.toUpperCase(),this.COUNTRY_CODES))&&(f=b.getDynamicOption(c,f)):f=e.substr(0,2),-1===a.inArray(f,this.COUNTRY_CODES))return{valid:!1,message:a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.vat.countryNotSupported,f)};var g=["_",f.toLowerCase()].join("");return this[g](e)?!0:{valid:!1,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.vat.country,a.fn.bootstrapValidator.i18n.vat.countries[f.toUpperCase()])}},_at:function(a){if(/^ATU[0-9]{8}$/.test(a)&&(a=a.substr(2)),!/^U[0-9]{8}$/.test(a))return!1;a=a.substr(1);for(var b=0,c=[1,2,1,2,1,2,1],d=0,e=0;7>e;e++)d=parseInt(a.charAt(e),10)*c[e],d>9&&(d=Math.floor(d/10)+d%10),b+=d;return b=10-(b+4)%10,10===b&&(b=0),b+""===a.substr(7,1)},_be:function(a){if(/^BE[0]{0,1}[0-9]{9}$/.test(a)&&(a=a.substr(2)),!/^[0]{0,1}[0-9]{9}$/.test(a))return!1;if(9===a.length&&(a="0"+a),"0"===a.substr(1,1))return!1;var b=parseInt(a.substr(0,8),10)+parseInt(a.substr(8,2),10);return b%97===0},_bg:function(b){if(/^BG[0-9]{9,10}$/.test(b)&&(b=b.substr(2)),!/^[0-9]{9,10}$/.test(b))return!1;var c=0,d=0;if(9===b.length){for(d=0;8>d;d++)c+=parseInt(b.charAt(d),10)*(d+1);if(c%=11,10===c)for(c=0,d=0;8>d;d++)c+=parseInt(b.charAt(d),10)*(d+3);return c%=10,c+""===b.substr(8)}if(10===b.length){var e=function(b){var c=parseInt(b.substr(0,2),10)+1900,d=parseInt(b.substr(2,2),10),e=parseInt(b.substr(4,2),10);if(d>40?(c+=100,d-=40):d>20&&(c-=100,d-=20),!a.fn.bootstrapValidator.helpers.date(c,d,e))return!1;for(var f=0,g=[2,4,8,5,10,9,7,3,6],h=0;9>h;h++)f+=parseInt(b.charAt(h),10)*g[h];return f=f%11%10,f+""===b.substr(9,1)},f=function(a){for(var b=0,c=[21,19,17,13,11,9,7,3,1],d=0;9>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%=10,b+""===a.substr(9,1)},g=function(a){for(var b=0,c=[4,3,2,7,6,5,4,3,2],d=0;9>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b=11-b%11,10===b?!1:(11===b&&(b=0),b+""===a.substr(9,1))};return e(b)||f(b)||g(b)}return!1},_br:function(a){if(""===a)return!0;var b=a.replace(/[^\d]+/g,"");if(""===b||14!==b.length)return!1;if("00000000000000"===b||"11111111111111"===b||"22222222222222"===b||"33333333333333"===b||"44444444444444"===b||"55555555555555"===b||"66666666666666"===b||"77777777777777"===b||"88888888888888"===b||"99999999999999"===b)return!1;for(var c=b.length-2,d=b.substring(0,c),e=b.substring(c),f=0,g=c-7,h=c;h>=1;h--)f+=parseInt(d.charAt(c-h),10)*g--,2>g&&(g=9);var i=2>f%11?0:11-f%11;if(i!==parseInt(e.charAt(0),10))return!1;for(c+=1,d=b.substring(0,c),f=0,g=c-7,h=c;h>=1;h--)f+=parseInt(d.charAt(c-h),10)*g--,2>g&&(g=9);return i=2>f%11?0:11-f%11,i===parseInt(e.charAt(1),10)},_ch:function(a){if(/^CHE[0-9]{9}(MWST)?$/.test(a)&&(a=a.substr(2)),!/^E[0-9]{9}(MWST)?$/.test(a))return!1;a=a.substr(1);for(var b=0,c=[5,4,3,2,7,6,5,4],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b=11-b%11,10===b?!1:(11===b&&(b=0),b+""===a.substr(8,1))},_cy:function(a){if(/^CY[0-5|9]{1}[0-9]{7}[A-Z]{1}$/.test(a)&&(a=a.substr(2)),!/^[0-5|9]{1}[0-9]{7}[A-Z]{1}$/.test(a))return!1;if("12"===a.substr(0,2))return!1;for(var b=0,c={0:1,1:0,2:5,3:7,4:9,5:13,6:15,7:17,8:19,9:21},d=0;8>d;d++){var e=parseInt(a.charAt(d),10);d%2===0&&(e=c[e+""]),b+=e}return b="ABCDEFGHIJKLMNOPQRSTUVWXYZ"[b%26],b+""===a.substr(8,1)},_cz:function(b){if(/^CZ[0-9]{8,10}$/.test(b)&&(b=b.substr(2)),!/^[0-9]{8,10}$/.test(b))return!1;var c=0,d=0;if(8===b.length){if(b.charAt(0)+""=="9")return!1;for(c=0,d=0;7>d;d++)c+=parseInt(b.charAt(d),10)*(8-d);return c=11-c%11,10===c&&(c=0),11===c&&(c=1),c+""===b.substr(7,1)
-}if(9===b.length&&b.charAt(0)+""=="6"){for(c=0,d=0;7>d;d++)c+=parseInt(b.charAt(d+1),10)*(8-d);return c=11-c%11,10===c&&(c=0),11===c&&(c=1),c=[8,7,6,5,4,3,2,1,0,9,10][c-1],c+""===b.substr(8,1)}if(9===b.length||10===b.length){var e=1900+parseInt(b.substr(0,2),10),f=parseInt(b.substr(2,2),10)%50%20,g=parseInt(b.substr(4,2),10);if(9===b.length){if(e>=1980&&(e-=100),e>1953)return!1}else 1954>e&&(e+=100);if(!a.fn.bootstrapValidator.helpers.date(e,f,g))return!1;if(10===b.length){var h=parseInt(b.substr(0,9),10)%11;return 1985>e&&(h%=10),h+""===b.substr(9,1)}return!0}return!1},_de:function(b){return/^DE[0-9]{9}$/.test(b)&&(b=b.substr(2)),/^[0-9]{9}$/.test(b)?a.fn.bootstrapValidator.helpers.mod11And10(b):!1},_dk:function(a){if(/^DK[0-9]{8}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{8}$/.test(a))return!1;for(var b=0,c=[2,7,6,5,4,3,2,1],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%11===0},_ee:function(a){if(/^EE[0-9]{9}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{9}$/.test(a))return!1;for(var b=0,c=[3,7,1,3,7,1,3,7,1],d=0;9>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%10===0},_es:function(a){if(/^ES[0-9A-Z][0-9]{7}[0-9A-Z]$/.test(a)&&(a=a.substr(2)),!/^[0-9A-Z][0-9]{7}[0-9A-Z]$/.test(a))return!1;var b=function(a){var b=parseInt(a.substr(0,8),10);return b="TRWAGMYFPDXBNJZSQVHLCKE"[b%23],b+""===a.substr(8,1)},c=function(a){var b=["XYZ".indexOf(a.charAt(0)),a.substr(1)].join("");return b=parseInt(b,10),b="TRWAGMYFPDXBNJZSQVHLCKE"[b%23],b+""===a.substr(8,1)},d=function(a){var b,c=a.charAt(0);if(-1!=="KLM".indexOf(c))return b=parseInt(a.substr(1,8),10),b="TRWAGMYFPDXBNJZSQVHLCKE"[b%23],b+""===a.substr(8,1);if(-1!=="ABCDEFGHJNPQRSUVW".indexOf(c)){for(var d=0,e=[2,1,2,1,2,1,2],f=0,g=0;7>g;g++)f=parseInt(a.charAt(g+1),10)*e[g],f>9&&(f=Math.floor(f/10)+f%10),d+=f;return d=10-d%10,d+""===a.substr(8,1)||"JABCDEFGHI"[d]===a.substr(8,1)}return!1},e=a.charAt(0);return/^[0-9]$/.test(e)?b(a):/^[XYZ]$/.test(e)?c(a):d(a)},_fi:function(a){if(/^FI[0-9]{8}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{8}$/.test(a))return!1;for(var b=0,c=[7,9,10,5,8,4,2,1],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%11===0},_fr:function(b){if(/^FR[0-9A-Z]{2}[0-9]{9}$/.test(b)&&(b=b.substr(2)),!/^[0-9A-Z]{2}[0-9]{9}$/.test(b))return!1;if(!a.fn.bootstrapValidator.helpers.luhn(b.substr(2)))return!1;if(/^[0-9]{2}$/.test(b.substr(0,2)))return b.substr(0,2)===parseInt(b.substr(2)+"12",10)%97+"";var c,d="0123456789ABCDEFGHJKLMNPQRSTUVWXYZ";return c=/^[0-9]{1}$/.test(b.charAt(0))?24*d.indexOf(b.charAt(0))+d.indexOf(b.charAt(1))-10:34*d.indexOf(b.charAt(0))+d.indexOf(b.charAt(1))-100,(parseInt(b.substr(2),10)+1+Math.floor(c/11))%11===c%11},_gb:function(a){if((/^GB[0-9]{9}$/.test(a)||/^GB[0-9]{12}$/.test(a)||/^GBGD[0-9]{3}$/.test(a)||/^GBHA[0-9]{3}$/.test(a)||/^GB(GD|HA)8888[0-9]{5}$/.test(a))&&(a=a.substr(2)),!(/^[0-9]{9}$/.test(a)||/^[0-9]{12}$/.test(a)||/^GD[0-9]{3}$/.test(a)||/^HA[0-9]{3}$/.test(a)||/^(GD|HA)8888[0-9]{5}$/.test(a)))return!1;var b=a.length;if(5===b){var c=a.substr(0,2),d=parseInt(a.substr(2),10);return"GD"===c&&500>d||"HA"===c&&d>=500}if(11===b&&("GD8888"===a.substr(0,6)||"HA8888"===a.substr(0,6)))return"GD"===a.substr(0,2)&&parseInt(a.substr(6,3),10)>=500||"HA"===a.substr(0,2)&&parseInt(a.substr(6,3),10)<500?!1:parseInt(a.substr(6,3),10)%97===parseInt(a.substr(9,2),10);if(9===b||12===b){for(var e=0,f=[8,7,6,5,4,3,2,10,1],g=0;9>g;g++)e+=parseInt(a.charAt(g),10)*f[g];return e%=97,parseInt(a.substr(0,3),10)>=100?0===e||42===e||55===e:0===e}return!0},_gr:function(a){if(/^(GR|EL)[0-9]{9}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{9}$/.test(a))return!1;8===a.length&&(a="0"+a);for(var b=0,c=[256,128,64,32,16,8,4,2],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b=b%11%10,b+""===a.substr(8,1)},_el:function(a){return this._gr(a)},_hu:function(a){if(/^HU[0-9]{8}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{8}$/.test(a))return!1;for(var b=0,c=[9,7,3,1,9,7,3,1],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%10===0},_hr:function(b){return/^HR[0-9]{11}$/.test(b)&&(b=b.substr(2)),/^[0-9]{11}$/.test(b)?a.fn.bootstrapValidator.helpers.mod11And10(b):!1},_ie:function(a){if(/^IE[0-9]{1}[0-9A-Z\*\+]{1}[0-9]{5}[A-Z]{1,2}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{1}[0-9A-Z\*\+]{1}[0-9]{5}[A-Z]{1,2}$/.test(a))return!1;var b=function(a){for(;a.length<7;)a="0"+a;for(var b="WABCDEFGHIJKLMNOPQRSTUV",c=0,d=0;7>d;d++)c+=parseInt(a.charAt(d),10)*(8-d);return c+=9*b.indexOf(a.substr(7)),b[c%23]};return/^[0-9]+$/.test(a.substr(0,7))?a.charAt(7)===b(a.substr(0,7)+a.substr(8)+""):-1!=="ABCDEFGHIJKLMNOPQRSTUVWXYZ+*".indexOf(a.charAt(1))?a.charAt(7)===b(a.substr(2,5)+a.substr(0,1)+""):!0},_is:function(a){return/^IS[0-9]{5,6}$/.test(a)&&(a=a.substr(2)),/^[0-9]{5,6}$/.test(a)},_it:function(b){if(/^IT[0-9]{11}$/.test(b)&&(b=b.substr(2)),!/^[0-9]{11}$/.test(b))return!1;if(0===parseInt(b.substr(0,7),10))return!1;var c=parseInt(b.substr(7,3),10);return 1>c||c>201&&999!==c&&888!==c?!1:a.fn.bootstrapValidator.helpers.luhn(b)},_lt:function(a){if(/^LT([0-9]{7}1[0-9]{1}|[0-9]{10}1[0-9]{1})$/.test(a)&&(a=a.substr(2)),!/^([0-9]{7}1[0-9]{1}|[0-9]{10}1[0-9]{1})$/.test(a))return!1;var b,c=a.length,d=0;for(b=0;c-1>b;b++)d+=parseInt(a.charAt(b),10)*(1+b%9);var e=d%11;if(10===e)for(d=0,b=0;c-1>b;b++)d+=parseInt(a.charAt(b),10)*(1+(b+2)%9);return e=e%11%10,e+""===a.charAt(c-1)},_lu:function(a){return/^LU[0-9]{8}$/.test(a)&&(a=a.substr(2)),/^[0-9]{8}$/.test(a)?parseInt(a.substr(0,6),10)%89+""===a.substr(6,2):!1},_lv:function(b){if(/^LV[0-9]{11}$/.test(b)&&(b=b.substr(2)),!/^[0-9]{11}$/.test(b))return!1;var c,d=parseInt(b.charAt(0),10),e=0,f=[],g=b.length;if(d>3){for(e=0,f=[9,1,4,8,3,10,2,5,7,6,1],c=0;g>c;c++)e+=parseInt(b.charAt(c),10)*f[c];return e%=11,3===e}var h=parseInt(b.substr(0,2),10),i=parseInt(b.substr(2,2),10),j=parseInt(b.substr(4,2),10);if(j=j+1800+100*parseInt(b.charAt(6),10),!a.fn.bootstrapValidator.helpers.date(j,i,h))return!1;for(e=0,f=[10,5,8,4,2,1,6,3,7,9],c=0;g-1>c;c++)e+=parseInt(b.charAt(c),10)*f[c];return e=(e+1)%11%10,e+""===b.charAt(g-1)},_mt:function(a){if(/^MT[0-9]{8}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{8}$/.test(a))return!1;for(var b=0,c=[3,4,6,7,8,9,10,1],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%37===0},_nl:function(a){if(/^NL[0-9]{9}B[0-9]{2}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{9}B[0-9]{2}$/.test(a))return!1;for(var b=0,c=[9,8,7,6,5,4,3,2],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%=11,b>9&&(b=0),b+""===a.substr(8,1)},_no:function(a){if(/^NO[0-9]{9}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{9}$/.test(a))return!1;for(var b=0,c=[3,2,7,6,5,4,3,2],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b=11-b%11,11===b&&(b=0),b+""===a.substr(8,1)},_pl:function(a){if(/^PL[0-9]{10}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{10}$/.test(a))return!1;for(var b=0,c=[6,5,7,2,3,4,5,6,7,-1],d=0;10>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%11===0},_pt:function(a){if(/^PT[0-9]{9}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{9}$/.test(a))return!1;for(var b=0,c=[9,8,7,6,5,4,3,2],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b=11-b%11,b>9&&(b=0),b+""===a.substr(8,1)},_ro:function(a){if(/^RO[1-9][0-9]{1,9}$/.test(a)&&(a=a.substr(2)),!/^[1-9][0-9]{1,9}$/.test(a))return!1;for(var b=a.length,c=[7,5,3,2,1,7,5,3,2].slice(10-b),d=0,e=0;b-1>e;e++)d+=parseInt(a.charAt(e),10)*c[e];return d=10*d%11%10,d+""===a.substr(b-1,1)},_ru:function(a){if(/^RU([0-9]{10}|[0-9]{12})$/.test(a)&&(a=a.substr(2)),!/^([0-9]{10}|[0-9]{12})$/.test(a))return!1;var b=0;if(10===a.length){var c=0,d=[2,4,10,3,5,9,4,6,8,0];for(b=0;10>b;b++)c+=parseInt(a.charAt(b),10)*d[b];return c%=11,c>9&&(c%=10),c+""===a.substr(9,1)}if(12===a.length){var e=0,f=[7,2,4,10,3,5,9,4,6,8,0],g=0,h=[3,7,2,4,10,3,5,9,4,6,8,0];for(b=0;11>b;b++)e+=parseInt(a.charAt(b),10)*f[b],g+=parseInt(a.charAt(b),10)*h[b];return e%=11,e>9&&(e%=10),g%=11,g>9&&(g%=10),e+""===a.substr(10,1)&&g+""===a.substr(11,1)}return!1},_rs:function(a){if(/^RS[0-9]{9}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{9}$/.test(a))return!1;for(var b=10,c=0,d=0;8>d;d++)c=(parseInt(a.charAt(d),10)+b)%10,0===c&&(c=10),b=2*c%11;return(b+parseInt(a.substr(8,1),10))%10===1},_se:function(b){return/^SE[0-9]{10}01$/.test(b)&&(b=b.substr(2)),/^[0-9]{10}01$/.test(b)?(b=b.substr(0,10),a.fn.bootstrapValidator.helpers.luhn(b)):!1},_si:function(a){if(/^SI[0-9]{8}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{8}$/.test(a))return!1;for(var b=0,c=[8,7,6,5,4,3,2],d=0;7>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b=11-b%11,10===b&&(b=0),b+""===a.substr(7,1)},_sk:function(a){return/^SK[1-9][0-9][(2-4)|(6-9)][0-9]{7}$/.test(a)&&(a=a.substr(2)),/^[1-9][0-9][(2-4)|(6-9)][0-9]{7}$/.test(a)?parseInt(a,10)%11===0:!1},_ve:function(a){if(/^VE[VEJPG][0-9]{9}$/.test(a)&&(a=a.substr(2)),!/^[VEJPG][0-9]{9}$/.test(a))return!1;for(var b={V:4,E:8,J:12,P:16,G:20},c=b[a.charAt(0)],d=[3,2,7,6,5,4,3,2],e=0;8>e;e++)c+=parseInt(a.charAt(e+1),10)*d[e];return c=11-c%11,(11===c||10===c)&&(c=0),c+""===a.substr(9,1)},_za:function(a){return/^ZA4[0-9]{9}$/.test(a)&&(a=a.substr(2)),/^4[0-9]{9}$/.test(a)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.vin=a.extend(a.fn.bootstrapValidator.i18n.vin||{},{"default":"Please enter a valid VIN number"}),a.fn.bootstrapValidator.validators.vin={validate:function(a,b){var c=b.val();if(""===c)return!0;if(!/^[a-hj-npr-z0-9]{8}[0-9xX][a-hj-npr-z0-9]{8}$/i.test(c))return!1;c=c.toUpperCase();for(var d={A:1,B:2,C:3,D:4,E:5,F:6,G:7,H:8,J:1,K:2,L:3,M:4,N:5,P:7,R:9,S:2,T:3,U:4,V:5,W:6,X:7,Y:8,Z:9,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,0:0},e=[8,7,6,5,4,3,2,10,0,9,8,7,6,5,4,3,2],f=0,g=c.length,h=0;g>h;h++)f+=d[c.charAt(h)+""]*e[h];var i=f%11;return 10===i&&(i="X"),i+""===c.charAt(8)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.zipCode=a.extend(a.fn.bootstrapValidator.i18n.zipCode||{},{"default":"Please enter a valid postal code",countryNotSupported:"The country code %s is not supported",country:"Please enter a valid postal code in %s",countries:{AT:"Austria",BR:"Brazil",CA:"Canada",CH:"Switzerland",CZ:"Czech Republic",DE:"Germany",DK:"Denmark",FR:"France",GB:"United Kingdom",IE:"Ireland",IT:"Italy",MA:"Morocco",NL:"Netherlands",PT:"Portugal",RO:"Romania",RU:"Russia",SE:"Sweden",SG:"Singapore",SK:"Slovakia",US:"USA"}}),a.fn.bootstrapValidator.validators.zipCode={html5Attributes:{message:"message",country:"country"},COUNTRY_CODES:["AT","BR","CA","CH","CZ","DE","DK","FR","GB","IE","IT","MA","NL","PT","RO","RU","SE","SG","SK","US"],validate:function(b,c,d){var e=c.val();if(""===e||!d.country)return!0;var f=d.country;if(("string"!=typeof f||-1===a.inArray(f,this.COUNTRY_CODES))&&(f=b.getDynamicOption(c,f)),!f||-1===a.inArray(f.toUpperCase(),this.COUNTRY_CODES))return{valid:!1,message:a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.zipCode.countryNotSupported,f)};var g=!1;switch(f=f.toUpperCase()){case"AT":g=/^([1-9]{1})(\d{3})$/.test(e);break;case"BR":g=/^(\d{2})([\.]?)(\d{3})([\-]?)(\d{3})$/.test(e);break;case"CA":g=/^(?:A|B|C|E|G|H|J|K|L|M|N|P|R|S|T|V|X|Y){1}[0-9]{1}(?:A|B|C|E|G|H|J|K|L|M|N|P|R|S|T|V|W|X|Y|Z){1}\s?[0-9]{1}(?:A|B|C|E|G|H|J|K|L|M|N|P|R|S|T|V|W|X|Y|Z){1}[0-9]{1}$/i.test(e);break;case"CH":g=/^([1-9]{1})(\d{3})$/.test(e);break;case"CZ":g=/^(\d{3})([ ]?)(\d{2})$/.test(e);break;case"DE":g=/^(?!01000|99999)(0[1-9]\d{3}|[1-9]\d{4})$/.test(e);break;case"DK":g=/^(DK(-|\s)?)?\d{4}$/i.test(e);break;case"FR":g=/^[0-9]{5}$/i.test(e);break;case"GB":g=this._gb(e);break;case"IE":g=/^(D6W|[ACDEFHKNPRTVWXY]\d{2})\s[0-9ACDEFHKNPRTVWXY]{4}$/.test(e);break;case"IT":g=/^(I-|IT-)?\d{5}$/i.test(e);break;case"MA":g=/^[1-9][0-9]{4}$/i.test(e);break;case"NL":g=/^[1-9][0-9]{3} ?(?!sa|sd|ss)[a-z]{2}$/i.test(e);break;case"PT":g=/^[1-9]\d{3}-\d{3}$/.test(e);break;case"RO":g=/^(0[1-8]{1}|[1-9]{1}[0-5]{1})?[0-9]{4}$/i.test(e);break;case"RU":g=/^[0-9]{6}$/i.test(e);break;case"SE":g=/^(S-)?\d{3}\s?\d{2}$/i.test(e);break;case"SG":g=/^([0][1-9]|[1-6][0-9]|[7]([0-3]|[5-9])|[8][0-2])(\d{4})$/i.test(e);break;case"SK":g=/^(\d{3})([ ]?)(\d{2})$/.test(e);break;case"US":default:g=/^\d{4,5}([\-]?\d{4})?$/.test(e)}return{valid:g,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.zipCode.country,a.fn.bootstrapValidator.i18n.zipCode.countries[f])}},_gb:function(a){for(var b="[ABCDEFGHIJKLMNOPRSTUWYZ]",c="[ABCDEFGHKLMNOPQRSTUVWXY]",d="[ABCDEFGHJKPMNRSTUVWXY]",e="[ABEHMNPRVWXY]",f="[ABDEFGHJLNPQRSTUWXYZ]",g=[new RegExp("^("+b+"{1}"+c+"?[0-9]{1,2})(\\s*)([0-9]{1}"+f+"{2})$","i"),new RegExp("^("+b+"{1}[0-9]{1}"+d+"{1})(\\s*)([0-9]{1}"+f+"{2})$","i"),new RegExp("^("+b+"{1}"+c+"{1}?[0-9]{1}"+e+"{1})(\\s*)([0-9]{1}"+f+"{2})$","i"),new RegExp("^(BF1)(\\s*)([0-6]{1}[ABDEFGHJLNPQRST]{1}[ABDEFGHJLNPQRSTUWZYZ]{1})$","i"),/^(GIR)(\s*)(0AA)$/i,/^(BFPO)(\s*)([0-9]{1,4})$/i,/^(BFPO)(\s*)(c\/o\s*[0-9]{1,3})$/i,/^([A-Z]{4})(\s*)(1ZZ)$/i,/^(AI-2640)$/i],h=0;h<g.length;h++)if(g[h].test(a))return!0;return!1}}}(window.jQuery);;// main.js
-(function($, document) {
-  
-  $(window).on("load", function() {
-    if (window.location.hash && $(window.location.hash).hasClass("tab-pane")) {
-      window.scrollTo(0, 0);
-      setTimeout(function() {
-        window.scrollTo(0, 0);
-      }, 1);
-    }
-  });
-  
-  $(document).ready(function() {
-
-    var href_hash = window.location.hash;
-    // Add a class if right column is non-existant.
-    if ($("#rightcolumn").length == 0) {
-      $("#midcolumn").attr("class", "no-right-sidebar");
-      if (href_hash) {
-        window.location.hash = href_hash;
-      }
-    }
-    // add a class if left column is non-existant.
-    if ($("#leftcol").length == 0) {
-      $("#midcolumn").attr("class", "no-left-nav");
-      if (href_hash) {
-        window.location.hash = href_hash;
-      }
-    }
-
-    $('#showalltabs').click(function(){
-      $('.tabs li').each(function(i,t){
-        $(this).removeClass('active');
-      });
-      $('.tab-pane').each(function(i,t){
-        $(this).addClass('active');
-      });
-    });
-    
-    href_hash && $('ul.nav a[href="' + href_hash + '"]').tab('show');
-  });
-  
-  // This code will prevent unexpected menu close when
-  // using some components (like accordion, forms, etc).
-  $(document).on("click", ".yamm .dropdown-menu", function(e) {
-    e.stopPropagation()
-  });
-
-  // scroll button.
-  $(window).on("load resize scroll", function(){
-    if ($(window).width() < 1270){
-      $('.scrollup').hide();
-      return false;
-    }
-    if ($(this).scrollTop() > 100) {
-      $('.scrollup').fadeIn();
-    } else {
-      $('.scrollup').fadeOut();
-    }
-  });
-
-  // scroll back to the top of the page.
-  $('.scrollup').click(function(){
-    $("html, body").animate({ scrollTop: 0 }, 600);
-    return false;
-  });
-  
-  $('.nav-tabs a').click(function (e) {
-    $(this).tab('show');
-    history.pushState({}, "", this.href);
-    $('.alert:not(.stay-visible)').remove();
-  });
-  
-  $("a[data-tab-destination]").on('click', function() {
-    var tab = $(this).attr('data-tab-destination');
-    $("#"+tab).click();
-  });
-  
-  $('.solstice-collapse').click(function(){
-    $(this).find('i').toggleClass('fa-chevron-down fa-chevron-up');
-  });
-})(jQuery, document);
\ No newline at end of file
+if(function(t,e){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=t.document?e(t,!0):function(t){if(!t.document)throw new Error("jQuery requires a window with a document");return e(t)}:e(t)}("undefined"!=typeof window?window:this,function(t,e){"use strict";function n(t,e,n){e=e||st;var i,o=e.createElement("script");if(o.text=t,n)for(i in xt)n[i]&&(o[i]=n[i]);e.head.appendChild(o).parentNode.removeChild(o)}function i(t){return null==t?t+"":"object"==typeof t||"function"==typeof t?pt[dt.call(t)]||"object":typeof t}function o(t){var e=!!t&&"length"in t&&t.length,n=i(t);return!yt(t)&&!bt(t)&&("array"===n||0===e||"number"==typeof e&&e>0&&e-1 in t)}function r(t,e){return t.nodeName&&t.nodeName.toLowerCase()===e.toLowerCase()}function s(t,e,n){return yt(e)?wt.grep(t,function(t,i){return!!e.call(t,i,t)!==n}):e.nodeType?wt.grep(t,function(t){return t===e!==n}):"string"!=typeof e?wt.grep(t,function(t){return ft.call(e,t)>-1!==n}):wt.filter(e,t,n)}function a(t,e){for(;(t=t[e])&&1!==t.nodeType;);return t}function l(t){var e={};return wt.each(t.match(Ot)||[],function(t,n){e[n]=!0}),e}function u(t){return t}function c(t){throw t}function f(t,e,n,i){var o;try{t&&yt(o=t.promise)?o.call(t).done(e).fail(n):t&&yt(o=t.then)?o.call(t,e,n):e.apply(void 0,[t].slice(i))}catch(t){n.apply(void 0,[t])}}function p(){st.removeEventListener("DOMContentLoaded",p),t.removeEventListener("load",p),wt.ready()}function d(t,e){return e.toUpperCase()}function h(t){return t.replace(qt,"ms-").replace(Pt,d)}function g(){this.expando=wt.expando+g.uid++}function m(t){return"true"===t||"false"!==t&&("null"===t?null:t===+t+""?+t:Ft.test(t)?JSON.parse(t):t)}function v(t,e,n){var i;if(void 0===n&&1===t.nodeType)if(i="data-"+e.replace(Bt,"-$&").toLowerCase(),"string"==typeof(n=t.getAttribute(i))){try{n=m(n)}catch(t){}Wt.set(t,e,n)}else n=void 0;return n}function y(t,e,n,i){var o,r,s=20,a=i?function(){return i.cur()}:function(){return wt.css(t,e,"")},l=a(),u=n&&n[3]||(wt.cssNumber[e]?"":"px"),c=(wt.cssNumber[e]||"px"!==u&&+l)&&_t.exec(wt.css(t,e));if(c&&c[3]!==u){for(l/=2,u=u||c[3],c=+l||1;s--;)wt.style(t,e,c+u),(1-r)*(1-(r=a()/l||.5))<=0&&(s=0),c/=r;c*=2,wt.style(t,e,c+u),n=n||[]}return n&&(c=+c||+l||0,o=n[1]?c+(n[1]+1)*n[2]:+n[2],i&&(i.unit=u,i.start=c,i.end=o)),o}function b(t){var e,n=t.ownerDocument,i=t.nodeName,o=Xt[i];return o||(e=n.body.appendChild(n.createElement(i)),o=wt.css(e,"display"),e.parentNode.removeChild(e),"none"===o&&(o="block"),Xt[i]=o,o)}function x(t,e){for(var n,i,o=[],r=0,s=t.length;r<s;r++)i=t[r],i.style&&(n=i.style.display,e?("none"===n&&(o[r]=Mt.get(i,"display")||null,o[r]||(i.style.display="")),""===i.style.display&&Vt(i)&&(o[r]=b(i))):"none"!==n&&(o[r]="none",Mt.set(i,"display",n)));for(r=0;r<s;r++)null!=o[r]&&(t[r].style.display=o[r]);return t}function w(t,e){var n;return n=void 0!==t.getElementsByTagName?t.getElementsByTagName(e||"*"):void 0!==t.querySelectorAll?t.querySelectorAll(e||"*"):[],void 0===e||e&&r(t,e)?wt.merge([t],n):n}function T(t,e){for(var n=0,i=t.length;n<i;n++)Mt.set(t[n],"globalEval",!e||Mt.get(e[n],"globalEval"))}function C(t,e,n,o,r){for(var s,a,l,u,c,f,p=e.createDocumentFragment(),d=[],h=0,g=t.length;h<g;h++)if((s=t[h])||0===s)if("object"===i(s))wt.merge(d,s.nodeType?[s]:s);else if(Zt.test(s)){for(a=a||p.appendChild(e.createElement("div")),l=(Yt.exec(s)||["",""])[1].toLowerCase(),u=Kt[l]||Kt._default,a.innerHTML=u[1]+wt.htmlPrefilter(s)+u[2],f=u[0];f--;)a=a.lastChild;wt.merge(d,a.childNodes),a=p.firstChild,a.textContent=""}else d.push(e.createTextNode(s));for(p.textContent="",h=0;s=d[h++];)if(o&&wt.inArray(s,o)>-1)r&&r.push(s);else if(c=wt.contains(s.ownerDocument,s),a=w(p.appendChild(s),"script"),c&&T(a),n)for(f=0;s=a[f++];)Jt.test(s.type||"")&&n.push(s);return p}function E(){return!0}function S(){return!1}function k(){try{return st.activeElement}catch(t){}}function $(t,e,n,i,o,r){var s,a;if("object"==typeof e){"string"!=typeof n&&(i=i||n,n=void 0);for(a in e)$(t,a,n,i,e[a],r);return t}if(null==i&&null==o?(o=n,i=n=void 0):null==o&&("string"==typeof n?(o=i,i=void 0):(o=i,i=n,n=void 0)),!1===o)o=S;else if(!o)return t;return 1===r&&(s=o,o=function(t){return wt().off(t),s.apply(this,arguments)},o.guid=s.guid||(s.guid=wt.guid++)),t.each(function(){wt.event.add(this,e,o,i,n)})}function D(t,e){return r(t,"table")&&r(11!==e.nodeType?e:e.firstChild,"tr")?wt(t).children("tbody")[0]||t:t}function N(t){return t.type=(null!==t.getAttribute("type"))+"/"+t.type,t}function A(t){return"true/"===(t.type||"").slice(0,5)?t.type=t.type.slice(5):t.removeAttribute("type"),t}function j(t,e){var n,i,o,r,s,a,l,u;if(1===e.nodeType){if(Mt.hasData(t)&&(r=Mt.access(t),s=Mt.set(e,r),u=r.events)){delete s.handle,s.events={};for(o in u)for(n=0,i=u[o].length;n<i;n++)wt.event.add(e,o,u[o][n])}Wt.hasData(t)&&(a=Wt.access(t),l=wt.extend({},a),Wt.set(e,l))}}function O(t,e){var n=e.nodeName.toLowerCase();"input"===n&&Gt.test(t.type)?e.checked=t.checked:"input"!==n&&"textarea"!==n||(e.defaultValue=t.defaultValue)}function I(t,e,i,o){e=ut.apply([],e);var r,s,a,l,u,c,f=0,p=t.length,d=p-1,h=e[0],g=yt(h);if(g||p>1&&"string"==typeof h&&!vt.checkClone&&se.test(h))return t.each(function(n){var r=t.eq(n);g&&(e[0]=h.call(this,n,r.html())),I(r,e,i,o)});if(p&&(r=C(e,t[0].ownerDocument,!1,t,o),s=r.firstChild,1===r.childNodes.length&&(r=s),s||o)){for(a=wt.map(w(r,"script"),N),l=a.length;f<p;f++)u=r,f!==d&&(u=wt.clone(u,!0,!0),l&&wt.merge(a,w(u,"script"))),i.call(t[f],u,f);if(l)for(c=a[a.length-1].ownerDocument,wt.map(a,A),f=0;f<l;f++)u=a[f],Jt.test(u.type||"")&&!Mt.access(u,"globalEval")&&wt.contains(c,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?wt._evalUrl&&wt._evalUrl(u.src):n(u.textContent.replace(ae,""),c,u))}return t}function L(t,e,n){for(var i,o=e?wt.filter(e,t):t,r=0;null!=(i=o[r]);r++)n||1!==i.nodeType||wt.cleanData(w(i)),i.parentNode&&(n&&wt.contains(i.ownerDocument,i)&&T(w(i,"script")),i.parentNode.removeChild(i));return t}function R(t,e,n){var i,o,r,s,a=t.style;return n=n||ue(t),n&&(s=n.getPropertyValue(e)||n[e],""!==s||wt.contains(t.ownerDocument,t)||(s=wt.style(t,e)),!vt.pixelBoxStyles()&&le.test(s)&&ce.test(e)&&(i=a.width,o=a.minWidth,r=a.maxWidth,a.minWidth=a.maxWidth=a.width=s,s=n.width,a.width=i,a.minWidth=o,a.maxWidth=r)),void 0!==s?s+"":s}function q(t,e){return{get:function(){return t()?void delete this.get:(this.get=e).apply(this,arguments)}}}function P(t){if(t in me)return t;for(var e=t[0].toUpperCase()+t.slice(1),n=ge.length;n--;)if((t=ge[n]+e)in me)return t}function H(t){var e=wt.cssProps[t];return e||(e=wt.cssProps[t]=P(t)||t),e}function M(t,e,n){var i=_t.exec(e);return i?Math.max(0,i[2]-(n||0))+(i[3]||"px"):e}function W(t,e,n,i,o,r){var s="width"===e?1:0,a=0,l=0;if(n===(i?"border":"content"))return 0;for(;s<4;s+=2)"margin"===n&&(l+=wt.css(t,n+zt[s],!0,o)),i?("content"===n&&(l-=wt.css(t,"padding"+zt[s],!0,o)),"margin"!==n&&(l-=wt.css(t,"border"+zt[s]+"Width",!0,o))):(l+=wt.css(t,"padding"+zt[s],!0,o),"padding"!==n?l+=wt.css(t,"border"+zt[s]+"Width",!0,o):a+=wt.css(t,"border"+zt[s]+"Width",!0,o));return!i&&r>=0&&(l+=Math.max(0,Math.ceil(t["offset"+e[0].toUpperCase()+e.slice(1)]-r-l-a-.5))),l}function F(t,e,n){var i=ue(t),o=R(t,e,i),r="border-box"===wt.css(t,"boxSizing",!1,i),s=r;if(le.test(o)){if(!n)return o;o="auto"}return s=s&&(vt.boxSizingReliable()||o===t.style[e]),("auto"===o||!parseFloat(o)&&"inline"===wt.css(t,"display",!1,i))&&(o=t["offset"+e[0].toUpperCase()+e.slice(1)],s=!0),(o=parseFloat(o)||0)+W(t,e,n||(r?"border":"content"),s,i,o)+"px"}function B(t,e,n,i,o){return new B.prototype.init(t,e,n,i,o)}function U(){ye&&(!1===st.hidden&&t.requestAnimationFrame?t.requestAnimationFrame(U):t.setTimeout(U,wt.fx.interval),wt.fx.tick())}function _(){return t.setTimeout(function(){ve=void 0}),ve=Date.now()}function z(t,e){var n,i=0,o={height:t};for(e=e?1:0;i<4;i+=2-e)n=zt[i],o["margin"+n]=o["padding"+n]=t;return e&&(o.opacity=o.width=t),o}function V(t,e,n){for(var i,o=(G.tweeners[e]||[]).concat(G.tweeners["*"]),r=0,s=o.length;r<s;r++)if(i=o[r].call(n,e,t))return i}function Q(t,e,n){var i,o,r,s,a,l,u,c,f="width"in e||"height"in e,p=this,d={},h=t.style,g=t.nodeType&&Vt(t),m=Mt.get(t,"fxshow");n.queue||(s=wt._queueHooks(t,"fx"),null==s.unqueued&&(s.unqueued=0,a=s.empty.fire,s.empty.fire=function(){s.unqueued||a()}),s.unqueued++,p.always(function(){p.always(function(){s.unqueued--,wt.queue(t,"fx").length||s.empty.fire()})}));for(i in e)if(o=e[i],be.test(o)){if(delete e[i],r=r||"toggle"===o,o===(g?"hide":"show")){if("show"!==o||!m||void 0===m[i])continue;g=!0}d[i]=m&&m[i]||wt.style(t,i)}if((l=!wt.isEmptyObject(e))||!wt.isEmptyObject(d)){f&&1===t.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],u=m&&m.display,null==u&&(u=Mt.get(t,"display")),c=wt.css(t,"display"),"none"===c&&(u?c=u:(x([t],!0),u=t.style.display||u,c=wt.css(t,"display"),x([t]))),("inline"===c||"inline-block"===c&&null!=u)&&"none"===wt.css(t,"float")&&(l||(p.done(function(){h.display=u}),null==u&&(c=h.display,u="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),l=!1;for(i in d)l||(m?"hidden"in m&&(g=m.hidden):m=Mt.access(t,"fxshow",{display:u}),r&&(m.hidden=!g),g&&x([t],!0),p.done(function(){g||x([t]),Mt.remove(t,"fxshow");for(i in d)wt.style(t,i,d[i])})),l=V(g?m[i]:0,i,p),i in m||(m[i]=l.start,g&&(l.end=l.start,l.start=0))}}function X(t,e){var n,i,o,r,s;for(n in t)if(i=h(n),o=e[i],r=t[n],Array.isArray(r)&&(o=r[1],r=t[n]=r[0]),n!==i&&(t[i]=r,delete t[n]),(s=wt.cssHooks[i])&&"expand"in s){r=s.expand(r),delete t[i];for(n in r)n in t||(t[n]=r[n],e[n]=o)}else e[i]=o}function G(t,e,n){var i,o,r=0,s=G.prefilters.length,a=wt.Deferred().always(function(){delete l.elem}),l=function(){if(o)return!1;for(var e=ve||_(),n=Math.max(0,u.startTime+u.duration-e),i=n/u.duration||0,r=1-i,s=0,l=u.tweens.length;s<l;s++)u.tweens[s].run(r);return a.notifyWith(t,[u,r,n]),r<1&&l?n:(l||a.notifyWith(t,[u,1,0]),a.resolveWith(t,[u]),!1)},u=a.promise({elem:t,props:wt.extend({},e),opts:wt.extend(!0,{specialEasing:{},easing:wt.easing._default},n),originalProperties:e,originalOptions:n,startTime:ve||_(),duration:n.duration,tweens:[],createTween:function(e,n){var i=wt.Tween(t,u.opts,e,n,u.opts.specialEasing[e]||u.opts.easing);return u.tweens.push(i),i},stop:function(e){var n=0,i=e?u.tweens.length:0;if(o)return this;for(o=!0;n<i;n++)u.tweens[n].run(1);return e?(a.notifyWith(t,[u,1,0]),a.resolveWith(t,[u,e])):a.rejectWith(t,[u,e]),this}}),c=u.props;for(X(c,u.opts.specialEasing);r<s;r++)if(i=G.prefilters[r].call(u,t,c,u.opts))return yt(i.stop)&&(wt._queueHooks(u.elem,u.opts.queue).stop=i.stop.bind(i)),i;return wt.map(c,V,u),yt(u.opts.start)&&u.opts.start.call(t,u),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always),wt.fx.timer(wt.extend(l,{elem:t,anim:u,queue:u.opts.queue})),u}function Y(t){return(t.match(Ot)||[]).join(" ")}function J(t){return t.getAttribute&&t.getAttribute("class")||""}function K(t){return Array.isArray(t)?t:"string"==typeof t?t.match(Ot)||[]:[]}function Z(t,e,n,o){var r;if(Array.isArray(e))wt.each(e,function(e,i){n||je.test(t)?o(t,i):Z(t+"["+("object"==typeof i&&null!=i?e:"")+"]",i,n,o)});else if(n||"object"!==i(e))o(t,e);else for(r in e)Z(t+"["+r+"]",e[r],n,o)}function tt(t){return function(e,n){"string"!=typeof e&&(n=e,e="*");var i,o=0,r=e.toLowerCase().match(Ot)||[];if(yt(n))for(;i=r[o++];)"+"===i[0]?(i=i.slice(1)||"*",(t[i]=t[i]||[]).unshift(n)):(t[i]=t[i]||[]).push(n)}}function et(t,e,n,i){function o(a){var l;return r[a]=!0,wt.each(t[a]||[],function(t,a){var u=a(e,n,i);return"string"!=typeof u||s||r[u]?s?!(l=u):void 0:(e.dataTypes.unshift(u),o(u),!1)}),l}var r={},s=t===Ue;return o(e.dataTypes[0])||!r["*"]&&o("*")}function nt(t,e){var n,i,o=wt.ajaxSettings.flatOptions||{};for(n in e)void 0!==e[n]&&((o[n]?t:i||(i={}))[n]=e[n]);return i&&wt.extend(!0,t,i),t}function it(t,e,n){for(var i,o,r,s,a=t.contents,l=t.dataTypes;"*"===l[0];)l.shift(),void 0===i&&(i=t.mimeType||e.getResponseHeader("Content-Type"));if(i)for(o in a)if(a[o]&&a[o].test(i)){l.unshift(o);break}if(l[0]in n)r=l[0];else{for(o in n){if(!l[0]||t.converters[o+" "+l[0]]){r=o;break}s||(s=o)}r=r||s}if(r)return r!==l[0]&&l.unshift(r),n[r]}function ot(t,e,n,i){var o,r,s,a,l,u={},c=t.dataTypes.slice();if(c[1])for(s in t.converters)u[s.toLowerCase()]=t.converters[s];for(r=c.shift();r;)if(t.responseFields[r]&&(n[t.responseFields[r]]=e),!l&&i&&t.dataFilter&&(e=t.dataFilter(e,t.dataType)),l=r,r=c.shift())if("*"===r)r=l;else if("*"!==l&&l!==r){if(!(s=u[l+" "+r]||u["* "+r]))for(o in u)if(a=o.split(" "),a[1]===r&&(s=u[l+" "+a[0]]||u["* "+a[0]])){!0===s?s=u[o]:!0!==u[o]&&(r=a[0],c.unshift(a[1]));break}if(!0!==s)if(s&&t.throws)e=s(e);else try{e=s(e)}catch(t){return{state:"parsererror",error:s?t:"No conversion from "+l+" to "+r}}}return{state:"success",data:e}}var rt=[],st=t.document,at=Object.getPrototypeOf,lt=rt.slice,ut=rt.concat,ct=rt.push,ft=rt.indexOf,pt={},dt=pt.toString,ht=pt.hasOwnProperty,gt=ht.toString,mt=gt.call(Object),vt={},yt=function(t){return"function"==typeof t&&"number"!=typeof t.nodeType},bt=function(t){return null!=t&&t===t.window},xt={type:!0,src:!0,noModule:!0},wt=function(t,e){return new wt.fn.init(t,e)},Tt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;wt.fn=wt.prototype={jquery:"3.3.1",constructor:wt,length:0,toArray:function(){return lt.call(this)},get:function(t){return null==t?lt.call(this):t<0?this[t+this.length]:this[t]},pushStack:function(t){var e=wt.merge(this.constructor(),t);return e.prevObject=this,e},each:function(t){return wt.each(this,t)},map:function(t){return this.pushStack(wt.map(this,function(e,n){return t.call(e,n,e)}))},slice:function(){return this.pushStack(lt.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(t){var e=this.length,n=+t+(t<0?e:0);return this.pushStack(n>=0&&n<e?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:ct,sort:rt.sort,splice:rt.splice},wt.extend=wt.fn.extend=function(){var t,e,n,i,o,r,s=arguments[0]||{},a=1,l=arguments.length,u=!1;for("boolean"==typeof s&&(u=s,s=arguments[a]||{},a++),"object"==typeof s||yt(s)||(s={}),a===l&&(s=this,a--);a<l;a++)if(null!=(t=arguments[a]))for(e in t)n=s[e],i=t[e],s!==i&&(u&&i&&(wt.isPlainObject(i)||(o=Array.isArray(i)))?(o?(o=!1,r=n&&Array.isArray(n)?n:[]):r=n&&wt.isPlainObject(n)?n:{},s[e]=wt.extend(u,r,i)):void 0!==i&&(s[e]=i));return s},wt.extend({expando:"jQuery"+("3.3.1"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(t){throw new Error(t)},noop:function(){},isPlainObject:function(t){var e,n;return!(!t||"[object Object]"!==dt.call(t))&&(!(e=at(t))||"function"==typeof(n=ht.call(e,"constructor")&&e.constructor)&&gt.call(n)===mt)},isEmptyObject:function(t){var e;for(e in t)return!1;return!0},globalEval:function(t){n(t)},each:function(t,e){var n,i=0;if(o(t))for(n=t.length;i<n&&!1!==e.call(t[i],i,t[i]);i++);else for(i in t)if(!1===e.call(t[i],i,t[i]))break;return t},trim:function(t){return null==t?"":(t+"").replace(Tt,"")},makeArray:function(t,e){var n=e||[];return null!=t&&(o(Object(t))?wt.merge(n,"string"==typeof t?[t]:t):ct.call(n,t)),n},inArray:function(t,e,n){return null==e?-1:ft.call(e,t,n)},merge:function(t,e){for(var n=+e.length,i=0,o=t.length;i<n;i++)t[o++]=e[i];return t.length=o,t},grep:function(t,e,n){for(var i=[],o=0,r=t.length,s=!n;o<r;o++)!e(t[o],o)!==s&&i.push(t[o]);return i},map:function(t,e,n){var i,r,s=0,a=[];if(o(t))for(i=t.length;s<i;s++)null!=(r=e(t[s],s,n))&&a.push(r);else for(s in t)null!=(r=e(t[s],s,n))&&a.push(r);return ut.apply([],a)},guid:1,support:vt}),"function"==typeof Symbol&&(wt.fn[Symbol.iterator]=rt[Symbol.iterator]),wt.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(t,e){pt["[object "+e+"]"]=e.toLowerCase()});var Ct=function(t){function e(t,e,n,i){var o,r,s,a,l,c,p,d=e&&e.ownerDocument,h=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==h&&9!==h&&11!==h)return n;if(!i&&((e?e.ownerDocument||e:M)!==j&&A(e),e=e||j,I)){if(11!==h&&(l=gt.exec(t)))if(o=l[1]){if(9===h){if(!(s=e.getElementById(o)))return n;if(s.id===o)return n.push(s),n}else if(d&&(s=d.getElementById(o))&&P(e,s)&&s.id===o)return n.push(s),n}else{if(l[2])return Y.apply(n,e.getElementsByTagName(t)),n;if((o=l[3])&&x.getElementsByClassName&&e.getElementsByClassName)return Y.apply(n,e.getElementsByClassName(o)),n}if(x.qsa&&!_[t+" "]&&(!L||!L.test(t))){if(1!==h)d=e,p=t;else if("object"!==e.nodeName.toLowerCase()){for((a=e.getAttribute("id"))?a=a.replace(bt,xt):e.setAttribute("id",a=H),c=E(t),r=c.length;r--;)c[r]="#"+a+" "+f(c[r]);p=c.join(","),d=mt.test(t)&&u(e.parentNode)||e}if(p)try{return Y.apply(n,d.querySelectorAll(p)),n}catch(t){}finally{a===H&&e.removeAttribute("id")}}}return k(t.replace(rt,"$1"),e,n,i)}function n(){function t(n,i){return e.push(n+" ")>w.cacheLength&&delete t[e.shift()],t[n+" "]=i}var e=[];return t}function i(t){return t[H]=!0,t}function o(t){var e=j.createElement("fieldset");try{return!!t(e)}catch(t){return!1}finally{e.parentNode&&e.parentNode.removeChild(e),e=null}}function r(t,e){for(var n=t.split("|"),i=n.length;i--;)w.attrHandle[n[i]]=e}function s(t,e){var n=e&&t,i=n&&1===t.nodeType&&1===e.nodeType&&t.sourceIndex-e.sourceIndex;if(i)return i;if(n)for(;n=n.nextSibling;)if(n===e)return-1;return t?1:-1}function a(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&Tt(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function l(t){return i(function(e){return e=+e,i(function(n,i){for(var o,r=t([],n.length,e),s=r.length;s--;)n[o=r[s]]&&(n[o]=!(i[o]=n[o]))})})}function u(t){return t&&void 0!==t.getElementsByTagName&&t}function c(){}function f(t){for(var e=0,n=t.length,i="";e<n;e++)i+=t[e].value;return i}function p(t,e,n){var i=e.dir,o=e.next,r=o||i,s=n&&"parentNode"===r,a=F++;return e.first?function(e,n,o){for(;e=e[i];)if(1===e.nodeType||s)return t(e,n,o);return!1}:function(e,n,l){var u,c,f,p=[W,a];if(l){for(;e=e[i];)if((1===e.nodeType||s)&&t(e,n,l))return!0}else for(;e=e[i];)if(1===e.nodeType||s)if(f=e[H]||(e[H]={}),c=f[e.uniqueID]||(f[e.uniqueID]={}),o&&o===e.nodeName.toLowerCase())e=e[i]||e;else{if((u=c[r])&&u[0]===W&&u[1]===a)return p[2]=u[2];if(c[r]=p,p[2]=t(e,n,l))return!0}return!1}}function d(t){return t.length>1?function(e,n,i){for(var o=t.length;o--;)if(!t[o](e,n,i))return!1;return!0}:t[0]}function h(t,n,i){for(var o=0,r=n.length;o<r;o++)e(t,n[o],i);return i}function g(t,e,n,i,o){for(var r,s=[],a=0,l=t.length,u=null!=e;a<l;a++)(r=t[a])&&(n&&!n(r,i,o)||(s.push(r),u&&e.push(a)));return s}function m(t,e,n,o,r,s){return o&&!o[H]&&(o=m(o)),r&&!r[H]&&(r=m(r,s)),i(function(i,s,a,l){var u,c,f,p=[],d=[],m=s.length,v=i||h(e||"*",a.nodeType?[a]:a,[]),y=!t||!i&&e?v:g(v,p,t,a,l),b=n?r||(i?t:m||o)?[]:s:y;if(n&&n(y,b,a,l),o)for(u=g(b,d),o(u,[],a,l),c=u.length;c--;)(f=u[c])&&(b[d[c]]=!(y[d[c]]=f));if(i){if(r||t){if(r){for(u=[],c=b.length;c--;)(f=b[c])&&u.push(y[c]=f);r(null,b=[],u,l)}for(c=b.length;c--;)(f=b[c])&&(u=r?K(i,f):p[c])>-1&&(i[u]=!(s[u]=f))}}else b=g(b===s?b.splice(m,b.length):b),r?r(null,s,b,l):Y.apply(s,b)})}function v(t){for(var e,n,i,o=t.length,r=w.relative[t[0].type],s=r||w.relative[" "],a=r?1:0,l=p(function(t){return t===e},s,!0),u=p(function(t){return K(e,t)>-1},s,!0),c=[function(t,n,i){var o=!r&&(i||n!==$)||((e=n).nodeType?l(t,n,i):u(t,n,i));return e=null,o}];a<o;a++)if(n=w.relative[t[a].type])c=[p(d(c),n)];else{if(n=w.filter[t[a].type].apply(null,t[a].matches),n[H]){for(i=++a;i<o&&!w.relative[t[i].type];i++);return m(a>1&&d(c),a>1&&f(t.slice(0,a-1).concat({value:" "===t[a-2].type?"*":""})).replace(rt,"$1"),n,a<i&&v(t.slice(a,i)),i<o&&v(t=t.slice(i)),i<o&&f(t))}c.push(n)}return d(c)}function y(t,n){var o=n.length>0,r=t.length>0,s=function(i,s,a,l,u){var c,f,p,d=0,h="0",m=i&&[],v=[],y=$,b=i||r&&w.find.TAG("*",u),x=W+=null==y?1:Math.random()||.1,T=b.length;for(u&&($=s===j||s||u);h!==T&&null!=(c=b[h]);h++){if(r&&c){for(f=0,s||c.ownerDocument===j||(A(c),a=!I);p=t[f++];)if(p(c,s||j,a)){l.push(c);break}u&&(W=x)}o&&((c=!p&&c)&&d--,i&&m.push(c))}if(d+=h,o&&h!==d){for(f=0;p=n[f++];)p(m,v,s,a);if(i){if(d>0)for(;h--;)m[h]||v[h]||(v[h]=X.call(l));v=g(v)}Y.apply(l,v),u&&!i&&v.length>0&&d+n.length>1&&e.uniqueSort(l)}return u&&(W=x,$=y),m};return o?i(s):s}var b,x,w,T,C,E,S,k,$,D,N,A,j,O,I,L,R,q,P,H="sizzle"+1*new Date,M=t.document,W=0,F=0,B=n(),U=n(),_=n(),z=function(t,e){return t===e&&(N=!0),0},V={}.hasOwnProperty,Q=[],X=Q.pop,G=Q.push,Y=Q.push,J=Q.slice,K=function(t,e){for(var n=0,i=t.length;n<i;n++)if(t[n]===e)return n;return-1},Z="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",tt="[\\x20\\t\\r\\n\\f]",et="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",nt="\\["+tt+"*("+et+")(?:"+tt+"*([*^$|!~]?=)"+tt+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+et+"))|)"+tt+"*\\]",it=":("+et+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+nt+")*)|.*)\\)|)",ot=new RegExp(tt+"+","g"),rt=new RegExp("^"+tt+"+|((?:^|[^\\\\])(?:\\\\.)*)"+tt+"+$","g"),st=new RegExp("^"+tt+"*,"+tt+"*"),at=new RegExp("^"+tt+"*([>+~]|"+tt+")"+tt+"*"),lt=new RegExp("="+tt+"*([^\\]'\"]*?)"+tt+"*\\]","g"),ut=new RegExp(it),ct=new RegExp("^"+et+"$"),ft={ID:new RegExp("^#("+et+")"),CLASS:new RegExp("^\\.("+et+")"),TAG:new RegExp("^("+et+"|[*])"),ATTR:new RegExp("^"+nt),PSEUDO:new RegExp("^"+it),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+tt+"*(even|odd|(([+-]|)(\\d*)n|)"+tt+"*(?:([+-]|)"+tt+"*(\\d+)|))"+tt+"*\\)|)","i"),bool:new RegExp("^(?:"+Z+")$","i"),needsContext:new RegExp("^"+tt+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+tt+"*((?:-\\d)?\\d*)"+tt+"*\\)|)(?=[^-]|$)","i")},pt=/^(?:input|select|textarea|button)$/i,dt=/^h\d$/i,ht=/^[^{]+\{\s*\[native \w/,gt=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,mt=/[+~]/,vt=new RegExp("\\\\([\\da-f]{1,6}"+tt+"?|("+tt+")|.)","ig"),yt=function(t,e,n){var i="0x"+e-65536;return i!==i||n?e:i<0?String.fromCharCode(i+65536):String.fromCharCode(i>>10|55296,1023&i|56320)},bt=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,xt=function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t},wt=function(){A()},Tt=p(function(t){return!0===t.disabled&&("form"in t||"label"in t)},{dir:"parentNode",next:"legend"});try{Y.apply(Q=J.call(M.childNodes),M.childNodes),Q[M.childNodes.length].nodeType}catch(t){Y={apply:Q.length?function(t,e){G.apply(t,J.call(e))}:function(t,e){for(var n=t.length,i=0;t[n++]=e[i++];);t.length=n-1}}}x=e.support={},C=e.isXML=function(t){var e=t&&(t.ownerDocument||t).documentElement;return!!e&&"HTML"!==e.nodeName},A=e.setDocument=function(t){var e,n,i=t?t.ownerDocument||t:M;return i!==j&&9===i.nodeType&&i.documentElement?(j=i,O=j.documentElement,I=!C(j),M!==j&&(n=j.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",wt,!1):n.attachEvent&&n.attachEvent("onunload",wt)),x.attributes=o(function(t){return t.className="i",!t.getAttribute("className")}),x.getElementsByTagName=o(function(t){return t.appendChild(j.createComment("")),!t.getElementsByTagName("*").length}),x.getElementsByClassName=ht.test(j.getElementsByClassName),x.getById=o(function(t){return O.appendChild(t).id=H,!j.getElementsByName||!j.getElementsByName(H).length}),x.getById?(w.filter.ID=function(t){var e=t.replace(vt,yt);return function(t){return t.getAttribute("id")===e}},w.find.ID=function(t,e){if(void 0!==e.getElementById&&I){var n=e.getElementById(t);return n?[n]:[]}}):(w.filter.ID=function(t){var e=t.replace(vt,yt);return function(t){var n=void 0!==t.getAttributeNode&&t.getAttributeNode("id");return n&&n.value===e}},w.find.ID=function(t,e){if(void 0!==e.getElementById&&I){var n,i,o,r=e.getElementById(t);if(r){if((n=r.getAttributeNode("id"))&&n.value===t)return[r];for(o=e.getElementsByName(t),i=0;r=o[i++];)if((n=r.getAttributeNode("id"))&&n.value===t)return[r]}return[]}}),w.find.TAG=x.getElementsByTagName?function(t,e){return void 0!==e.getElementsByTagName?e.getElementsByTagName(t):x.qsa?e.querySelectorAll(t):void 0}:function(t,e){var n,i=[],o=0,r=e.getElementsByTagName(t);if("*"===t){for(;n=r[o++];)1===n.nodeType&&i.push(n);return i}return r},w.find.CLASS=x.getElementsByClassName&&function(t,e){if(void 0!==e.getElementsByClassName&&I)return e.getElementsByClassName(t)},R=[],L=[],(x.qsa=ht.test(j.querySelectorAll))&&(o(function(t){O.appendChild(t).innerHTML="<a id='"+H+"'></a><select id='"+H+"-\r\\' msallowcapture=''><option selected=''></option></select>",t.querySelectorAll("[msallowcapture^='']").length&&L.push("[*^$]="+tt+"*(?:''|\"\")"),t.querySelectorAll("[selected]").length||L.push("\\["+tt+"*(?:value|"+Z+")"),t.querySelectorAll("[id~="+H+"-]").length||L.push("~="),t.querySelectorAll(":checked").length||L.push(":checked"),t.querySelectorAll("a#"+H+"+*").length||L.push(".#.+[+~]")}),o(function(t){t.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var e=j.createElement("input");e.setAttribute("type","hidden"),t.appendChild(e).setAttribute("name","D"),t.querySelectorAll("[name=d]").length&&L.push("name"+tt+"*[*^$|!~]?="),2!==t.querySelectorAll(":enabled").length&&L.push(":enabled",":disabled"),O.appendChild(t).disabled=!0,2!==t.querySelectorAll(":disabled").length&&L.push(":enabled",":disabled"),t.querySelectorAll("*,:x"),L.push(",.*:")})),(x.matchesSelector=ht.test(q=O.matches||O.webkitMatchesSelector||O.mozMatchesSelector||O.oMatchesSelector||O.msMatchesSelector))&&o(function(t){x.disconnectedMatch=q.call(t,"*"),q.call(t,"[s!='']:x"),R.push("!=",it)}),L=L.length&&new RegExp(L.join("|")),R=R.length&&new RegExp(R.join("|")),e=ht.test(O.compareDocumentPosition),P=e||ht.test(O.contains)?function(t,e){var n=9===t.nodeType?t.documentElement:t,i=e&&e.parentNode;return t===i||!(!i||1!==i.nodeType||!(n.contains?n.contains(i):t.compareDocumentPosition&&16&t.compareDocumentPosition(i)))}:function(t,e){if(e)for(;e=e.parentNode;)if(e===t)return!0;return!1},z=e?function(t,e){if(t===e)return N=!0,0;var n=!t.compareDocumentPosition-!e.compareDocumentPosition;return n||(n=(t.ownerDocument||t)===(e.ownerDocument||e)?t.compareDocumentPosition(e):1,1&n||!x.sortDetached&&e.compareDocumentPosition(t)===n?t===j||t.ownerDocument===M&&P(M,t)?-1:e===j||e.ownerDocument===M&&P(M,e)?1:D?K(D,t)-K(D,e):0:4&n?-1:1)}:function(t,e){if(t===e)return N=!0,0;var n,i=0,o=t.parentNode,r=e.parentNode,a=[t],l=[e];if(!o||!r)return t===j?-1:e===j?1:o?-1:r?1:D?K(D,t)-K(D,e):0;if(o===r)return s(t,e);for(n=t;n=n.parentNode;)a.unshift(n);for(n=e;n=n.parentNode;)l.unshift(n);for(;a[i]===l[i];)i++;return i?s(a[i],l[i]):a[i]===M?-1:l[i]===M?1:0},j):j},e.matches=function(t,n){return e(t,null,null,n)},e.matchesSelector=function(t,n){if((t.ownerDocument||t)!==j&&A(t),n=n.replace(lt,"='$1']"),x.matchesSelector&&I&&!_[n+" "]&&(!R||!R.test(n))&&(!L||!L.test(n)))try{var i=q.call(t,n);if(i||x.disconnectedMatch||t.document&&11!==t.document.nodeType)return i}catch(t){}return e(n,j,null,[t]).length>0},e.contains=function(t,e){return(t.ownerDocument||t)!==j&&A(t),P(t,e)},e.attr=function(t,e){(t.ownerDocument||t)!==j&&A(t);var n=w.attrHandle[e.toLowerCase()],i=n&&V.call(w.attrHandle,e.toLowerCase())?n(t,e,!I):void 0;return void 0!==i?i:x.attributes||!I?t.getAttribute(e):(i=t.getAttributeNode(e))&&i.specified?i.value:null},e.escape=function(t){return(t+"").replace(bt,xt)},e.error=function(t){throw new Error("Syntax error, unrecognized expression: "+t)},e.uniqueSort=function(t){var e,n=[],i=0,o=0;if(N=!x.detectDuplicates,D=!x.sortStable&&t.slice(0),t.sort(z),N){for(;e=t[o++];)e===t[o]&&(i=n.push(o));for(;i--;)t.splice(n[i],1)}return D=null,t},T=e.getText=function(t){var e,n="",i=0,o=t.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof t.textContent)return t.textContent;for(t=t.firstChild;t;t=t.nextSibling)n+=T(t)}else if(3===o||4===o)return t.nodeValue}else for(;e=t[i++];)n+=T(e);return n},w=e.selectors={cacheLength:50,createPseudo:i,match:ft,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(t){return t[1]=t[1].replace(vt,yt),t[3]=(t[3]||t[4]||t[5]||"").replace(vt,yt),"~="===t[2]&&(t[3]=" "+t[3]+" "),t.slice(0,4)},CHILD:function(t){return t[1]=t[1].toLowerCase(),"nth"===t[1].slice(0,3)?(t[3]||e.error(t[0]),t[4]=+(t[4]?t[5]+(t[6]||1):2*("even"===t[3]||"odd"===t[3])),t[5]=+(t[7]+t[8]||"odd"===t[3])):t[3]&&e.error(t[0]),t},PSEUDO:function(t){var e,n=!t[6]&&t[2];return ft.CHILD.test(t[0])?null:(t[3]?t[2]=t[4]||t[5]||"":n&&ut.test(n)&&(e=E(n,!0))&&(e=n.indexOf(")",n.length-e)-n.length)&&(t[0]=t[0].slice(0,e),t[2]=n.slice(0,e)),t.slice(0,3))}},filter:{TAG:function(t){var e=t.replace(vt,yt).toLowerCase();return"*"===t?function(){return!0}:function(t){return t.nodeName&&t.nodeName.toLowerCase()===e}},CLASS:function(t){var e=B[t+" "];return e||(e=new RegExp("(^|"+tt+")"+t+"("+tt+"|$)"))&&B(t,function(t){return e.test("string"==typeof t.className&&t.className||void 0!==t.getAttribute&&t.getAttribute("class")||"")})},ATTR:function(t,n,i){return function(o){var r=e.attr(o,t);return null==r?"!="===n:!n||(r+="","="===n?r===i:"!="===n?r!==i:"^="===n?i&&0===r.indexOf(i):"*="===n?i&&r.indexOf(i)>-1:"$="===n?i&&r.slice(-i.length)===i:"~="===n?(" "+r.replace(ot," ")+" ").indexOf(i)>-1:"|="===n&&(r===i||r.slice(0,i.length+1)===i+"-"))}},CHILD:function(t,e,n,i,o){var r="nth"!==t.slice(0,3),s="last"!==t.slice(-4),a="of-type"===e;return 1===i&&0===o?function(t){return!!t.parentNode}:function(e,n,l){var u,c,f,p,d,h,g=r!==s?"nextSibling":"previousSibling",m=e.parentNode,v=a&&e.nodeName.toLowerCase(),y=!l&&!a,b=!1;if(m){if(r){for(;g;){for(p=e;p=p[g];)if(a?p.nodeName.toLowerCase()===v:1===p.nodeType)return!1;h=g="only"===t&&!h&&"nextSibling"}return!0}if(h=[s?m.firstChild:m.lastChild],s&&y){for(p=m,f=p[H]||(p[H]={}),c=f[p.uniqueID]||(f[p.uniqueID]={}),u=c[t]||[],d=u[0]===W&&u[1],b=d&&u[2],p=d&&m.childNodes[d];p=++d&&p&&p[g]||(b=d=0)||h.pop();)if(1===p.nodeType&&++b&&p===e){c[t]=[W,d,b];break}}else if(y&&(p=e,f=p[H]||(p[H]={}),c=f[p.uniqueID]||(f[p.uniqueID]={}),u=c[t]||[],d=u[0]===W&&u[1],b=d),!1===b)for(;(p=++d&&p&&p[g]||(b=d=0)||h.pop())&&((a?p.nodeName.toLowerCase()!==v:1!==p.nodeType)||!++b||(y&&(f=p[H]||(p[H]={}),c=f[p.uniqueID]||(f[p.uniqueID]={}),c[t]=[W,b]),p!==e)););return(b-=o)===i||b%i==0&&b/i>=0}}},PSEUDO:function(t,n){var o,r=w.pseudos[t]||w.setFilters[t.toLowerCase()]||e.error("unsupported pseudo: "+t);return r[H]?r(n):r.length>1?(o=[t,t,"",n],w.setFilters.hasOwnProperty(t.toLowerCase())?i(function(t,e){for(var i,o=r(t,n),s=o.length;s--;)i=K(t,o[s]),t[i]=!(e[i]=o[s])}):function(t){return r(t,0,o)}):r}},pseudos:{not:i(function(t){var e=[],n=[],o=S(t.replace(rt,"$1"));return o[H]?i(function(t,e,n,i){for(var r,s=o(t,null,i,[]),a=t.length;a--;)(r=s[a])&&(t[a]=!(e[a]=r))}):function(t,i,r){return e[0]=t,o(e,null,r,n),e[0]=null,!n.pop()}}),has:i(function(t){return function(n){return e(t,n).length>0}}),contains:i(function(t){return t=t.replace(vt,yt),function(e){return(e.textContent||e.innerText||T(e)).indexOf(t)>-1}}),lang:i(function(t){return ct.test(t||"")||e.error("unsupported lang: "+t),t=t.replace(vt,yt).toLowerCase(),function(e){var n;do{if(n=I?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(n=n.toLowerCase())===t||0===n.indexOf(t+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var n=t.location&&t.location.hash;return n&&n.slice(1)===e.id},root:function(t){return t===O},focus:function(t){return t===j.activeElement&&(!j.hasFocus||j.hasFocus())&&!!(t.type||t.href||~t.tabIndex)},enabled:a(!1),disabled:a(!0),checked:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&!!t.checked||"option"===e&&!!t.selected},selected:function(t){return t.parentNode&&t.parentNode.selectedIndex,!0===t.selected},
+empty:function(t){for(t=t.firstChild;t;t=t.nextSibling)if(t.nodeType<6)return!1;return!0},parent:function(t){return!w.pseudos.empty(t)},header:function(t){return dt.test(t.nodeName)},input:function(t){return pt.test(t.nodeName)},button:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&"button"===t.type||"button"===e},text:function(t){var e;return"input"===t.nodeName.toLowerCase()&&"text"===t.type&&(null==(e=t.getAttribute("type"))||"text"===e.toLowerCase())},first:l(function(){return[0]}),last:l(function(t,e){return[e-1]}),eq:l(function(t,e,n){return[n<0?n+e:n]}),even:l(function(t,e){for(var n=0;n<e;n+=2)t.push(n);return t}),odd:l(function(t,e){for(var n=1;n<e;n+=2)t.push(n);return t}),lt:l(function(t,e,n){for(var i=n<0?n+e:n;--i>=0;)t.push(i);return t}),gt:l(function(t,e,n){for(var i=n<0?n+e:n;++i<e;)t.push(i);return t})}},w.pseudos.nth=w.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})w.pseudos[b]=function(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}(b);for(b in{submit:!0,reset:!0})w.pseudos[b]=function(t){return function(e){var n=e.nodeName.toLowerCase();return("input"===n||"button"===n)&&e.type===t}}(b);return c.prototype=w.filters=w.pseudos,w.setFilters=new c,E=e.tokenize=function(t,n){var i,o,r,s,a,l,u,c=U[t+" "];if(c)return n?0:c.slice(0);for(a=t,l=[],u=w.preFilter;a;){i&&!(o=st.exec(a))||(o&&(a=a.slice(o[0].length)||a),l.push(r=[])),i=!1,(o=at.exec(a))&&(i=o.shift(),r.push({value:i,type:o[0].replace(rt," ")}),a=a.slice(i.length));for(s in w.filter)!(o=ft[s].exec(a))||u[s]&&!(o=u[s](o))||(i=o.shift(),r.push({value:i,type:s,matches:o}),a=a.slice(i.length));if(!i)break}return n?a.length:a?e.error(t):U(t,l).slice(0)},S=e.compile=function(t,e){var n,i=[],o=[],r=_[t+" "];if(!r){for(e||(e=E(t)),n=e.length;n--;)r=v(e[n]),r[H]?i.push(r):o.push(r);r=_(t,y(o,i)),r.selector=t}return r},k=e.select=function(t,e,n,i){var o,r,s,a,l,c="function"==typeof t&&t,p=!i&&E(t=c.selector||t);if(n=n||[],1===p.length){if(r=p[0]=p[0].slice(0),r.length>2&&"ID"===(s=r[0]).type&&9===e.nodeType&&I&&w.relative[r[1].type]){if(!(e=(w.find.ID(s.matches[0].replace(vt,yt),e)||[])[0]))return n;c&&(e=e.parentNode),t=t.slice(r.shift().value.length)}for(o=ft.needsContext.test(t)?0:r.length;o--&&(s=r[o],!w.relative[a=s.type]);)if((l=w.find[a])&&(i=l(s.matches[0].replace(vt,yt),mt.test(r[0].type)&&u(e.parentNode)||e))){if(r.splice(o,1),!(t=i.length&&f(r)))return Y.apply(n,i),n;break}}return(c||S(t,p))(i,e,!I,n,!e||mt.test(t)&&u(e.parentNode)||e),n},x.sortStable=H.split("").sort(z).join("")===H,x.detectDuplicates=!!N,A(),x.sortDetached=o(function(t){return 1&t.compareDocumentPosition(j.createElement("fieldset"))}),o(function(t){return t.innerHTML="<a href='#'></a>","#"===t.firstChild.getAttribute("href")})||r("type|href|height|width",function(t,e,n){if(!n)return t.getAttribute(e,"type"===e.toLowerCase()?1:2)}),x.attributes&&o(function(t){return t.innerHTML="<input/>",t.firstChild.setAttribute("value",""),""===t.firstChild.getAttribute("value")})||r("value",function(t,e,n){if(!n&&"input"===t.nodeName.toLowerCase())return t.defaultValue}),o(function(t){return null==t.getAttribute("disabled")})||r(Z,function(t,e,n){var i;if(!n)return!0===t[e]?e.toLowerCase():(i=t.getAttributeNode(e))&&i.specified?i.value:null}),e}(t);wt.find=Ct,wt.expr=Ct.selectors,wt.expr[":"]=wt.expr.pseudos,wt.uniqueSort=wt.unique=Ct.uniqueSort,wt.text=Ct.getText,wt.isXMLDoc=Ct.isXML,wt.contains=Ct.contains,wt.escapeSelector=Ct.escape;var Et=function(t,e,n){for(var i=[],o=void 0!==n;(t=t[e])&&9!==t.nodeType;)if(1===t.nodeType){if(o&&wt(t).is(n))break;i.push(t)}return i},St=function(t,e){for(var n=[];t;t=t.nextSibling)1===t.nodeType&&t!==e&&n.push(t);return n},kt=wt.expr.match.needsContext,$t=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;wt.filter=function(t,e,n){var i=e[0];return n&&(t=":not("+t+")"),1===e.length&&1===i.nodeType?wt.find.matchesSelector(i,t)?[i]:[]:wt.find.matches(t,wt.grep(e,function(t){return 1===t.nodeType}))},wt.fn.extend({find:function(t){var e,n,i=this.length,o=this;if("string"!=typeof t)return this.pushStack(wt(t).filter(function(){for(e=0;e<i;e++)if(wt.contains(o[e],this))return!0}));for(n=this.pushStack([]),e=0;e<i;e++)wt.find(t,o[e],n);return i>1?wt.uniqueSort(n):n},filter:function(t){return this.pushStack(s(this,t||[],!1))},not:function(t){return this.pushStack(s(this,t||[],!0))},is:function(t){return!!s(this,"string"==typeof t&&kt.test(t)?wt(t):t||[],!1).length}});var Dt,Nt=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(wt.fn.init=function(t,e,n){var i,o;if(!t)return this;if(n=n||Dt,"string"==typeof t){if(!(i="<"===t[0]&&">"===t[t.length-1]&&t.length>=3?[null,t,null]:Nt.exec(t))||!i[1]&&e)return!e||e.jquery?(e||n).find(t):this.constructor(e).find(t);if(i[1]){if(e=e instanceof wt?e[0]:e,wt.merge(this,wt.parseHTML(i[1],e&&e.nodeType?e.ownerDocument||e:st,!0)),$t.test(i[1])&&wt.isPlainObject(e))for(i in e)yt(this[i])?this[i](e[i]):this.attr(i,e[i]);return this}return o=st.getElementById(i[2]),o&&(this[0]=o,this.length=1),this}return t.nodeType?(this[0]=t,this.length=1,this):yt(t)?void 0!==n.ready?n.ready(t):t(wt):wt.makeArray(t,this)}).prototype=wt.fn,Dt=wt(st);var At=/^(?:parents|prev(?:Until|All))/,jt={children:!0,contents:!0,next:!0,prev:!0};wt.fn.extend({has:function(t){var e=wt(t,this),n=e.length;return this.filter(function(){for(var t=0;t<n;t++)if(wt.contains(this,e[t]))return!0})},closest:function(t,e){var n,i=0,o=this.length,r=[],s="string"!=typeof t&&wt(t);if(!kt.test(t))for(;i<o;i++)for(n=this[i];n&&n!==e;n=n.parentNode)if(n.nodeType<11&&(s?s.index(n)>-1:1===n.nodeType&&wt.find.matchesSelector(n,t))){r.push(n);break}return this.pushStack(r.length>1?wt.uniqueSort(r):r)},index:function(t){return t?"string"==typeof t?ft.call(wt(t),this[0]):ft.call(this,t.jquery?t[0]:t):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(t,e){return this.pushStack(wt.uniqueSort(wt.merge(this.get(),wt(t,e))))},addBack:function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}}),wt.each({parent:function(t){var e=t.parentNode;return e&&11!==e.nodeType?e:null},parents:function(t){return Et(t,"parentNode")},parentsUntil:function(t,e,n){return Et(t,"parentNode",n)},next:function(t){return a(t,"nextSibling")},prev:function(t){return a(t,"previousSibling")},nextAll:function(t){return Et(t,"nextSibling")},prevAll:function(t){return Et(t,"previousSibling")},nextUntil:function(t,e,n){return Et(t,"nextSibling",n)},prevUntil:function(t,e,n){return Et(t,"previousSibling",n)},siblings:function(t){return St((t.parentNode||{}).firstChild,t)},children:function(t){return St(t.firstChild)},contents:function(t){return r(t,"iframe")?t.contentDocument:(r(t,"template")&&(t=t.content||t),wt.merge([],t.childNodes))}},function(t,e){wt.fn[t]=function(n,i){var o=wt.map(this,e,n);return"Until"!==t.slice(-5)&&(i=n),i&&"string"==typeof i&&(o=wt.filter(i,o)),this.length>1&&(jt[t]||wt.uniqueSort(o),At.test(t)&&o.reverse()),this.pushStack(o)}});var Ot=/[^\x20\t\r\n\f]+/g;wt.Callbacks=function(t){t="string"==typeof t?l(t):wt.extend({},t);var e,n,o,r,s=[],a=[],u=-1,c=function(){for(r=r||t.once,o=e=!0;a.length;u=-1)for(n=a.shift();++u<s.length;)!1===s[u].apply(n[0],n[1])&&t.stopOnFalse&&(u=s.length,n=!1);t.memory||(n=!1),e=!1,r&&(s=n?[]:"")},f={add:function(){return s&&(n&&!e&&(u=s.length-1,a.push(n)),function e(n){wt.each(n,function(n,o){yt(o)?t.unique&&f.has(o)||s.push(o):o&&o.length&&"string"!==i(o)&&e(o)})}(arguments),n&&!e&&c()),this},remove:function(){return wt.each(arguments,function(t,e){for(var n;(n=wt.inArray(e,s,n))>-1;)s.splice(n,1),n<=u&&u--}),this},has:function(t){return t?wt.inArray(t,s)>-1:s.length>0},empty:function(){return s&&(s=[]),this},disable:function(){return r=a=[],s=n="",this},disabled:function(){return!s},lock:function(){return r=a=[],n||e||(s=n=""),this},locked:function(){return!!r},fireWith:function(t,n){return r||(n=n||[],n=[t,n.slice?n.slice():n],a.push(n),e||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},wt.extend({Deferred:function(e){var n=[["notify","progress",wt.Callbacks("memory"),wt.Callbacks("memory"),2],["resolve","done",wt.Callbacks("once memory"),wt.Callbacks("once memory"),0,"resolved"],["reject","fail",wt.Callbacks("once memory"),wt.Callbacks("once memory"),1,"rejected"]],i="pending",o={state:function(){return i},always:function(){return r.done(arguments).fail(arguments),this},catch:function(t){return o.then(null,t)},pipe:function(){var t=arguments;return wt.Deferred(function(e){wt.each(n,function(n,i){var o=yt(t[i[4]])&&t[i[4]];r[i[1]](function(){var t=o&&o.apply(this,arguments);t&&yt(t.promise)?t.promise().progress(e.notify).done(e.resolve).fail(e.reject):e[i[0]+"With"](this,o?[t]:arguments)})}),t=null}).promise()},then:function(e,i,o){function r(e,n,i,o){return function(){var a=this,l=arguments,f=function(){var t,f;if(!(e<s)){if((t=i.apply(a,l))===n.promise())throw new TypeError("Thenable self-resolution");f=t&&("object"==typeof t||"function"==typeof t)&&t.then,yt(f)?o?f.call(t,r(s,n,u,o),r(s,n,c,o)):(s++,f.call(t,r(s,n,u,o),r(s,n,c,o),r(s,n,u,n.notifyWith))):(i!==u&&(a=void 0,l=[t]),(o||n.resolveWith)(a,l))}},p=o?f:function(){try{f()}catch(t){wt.Deferred.exceptionHook&&wt.Deferred.exceptionHook(t,p.stackTrace),e+1>=s&&(i!==c&&(a=void 0,l=[t]),n.rejectWith(a,l))}};e?p():(wt.Deferred.getStackHook&&(p.stackTrace=wt.Deferred.getStackHook()),t.setTimeout(p))}}var s=0;return wt.Deferred(function(t){n[0][3].add(r(0,t,yt(o)?o:u,t.notifyWith)),n[1][3].add(r(0,t,yt(e)?e:u)),n[2][3].add(r(0,t,yt(i)?i:c))}).promise()},promise:function(t){return null!=t?wt.extend(t,o):o}},r={};return wt.each(n,function(t,e){var s=e[2],a=e[5];o[e[1]]=s.add,a&&s.add(function(){i=a},n[3-t][2].disable,n[3-t][3].disable,n[0][2].lock,n[0][3].lock),s.add(e[3].fire),r[e[0]]=function(){return r[e[0]+"With"](this===r?void 0:this,arguments),this},r[e[0]+"With"]=s.fireWith}),o.promise(r),e&&e.call(r,r),r},when:function(t){var e=arguments.length,n=e,i=Array(n),o=lt.call(arguments),r=wt.Deferred(),s=function(t){return function(n){i[t]=this,o[t]=arguments.length>1?lt.call(arguments):n,--e||r.resolveWith(i,o)}};if(e<=1&&(f(t,r.done(s(n)).resolve,r.reject,!e),"pending"===r.state()||yt(o[n]&&o[n].then)))return r.then();for(;n--;)f(o[n],s(n),r.reject);return r.promise()}});var It=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;wt.Deferred.exceptionHook=function(e,n){t.console&&t.console.warn&&e&&It.test(e.name)&&t.console.warn("jQuery.Deferred exception: "+e.message,e.stack,n)},wt.readyException=function(e){t.setTimeout(function(){throw e})};var Lt=wt.Deferred();wt.fn.ready=function(t){return Lt.then(t).catch(function(t){wt.readyException(t)}),this},wt.extend({isReady:!1,readyWait:1,ready:function(t){(!0===t?--wt.readyWait:wt.isReady)||(wt.isReady=!0,!0!==t&&--wt.readyWait>0||Lt.resolveWith(st,[wt]))}}),wt.ready.then=Lt.then,"complete"===st.readyState||"loading"!==st.readyState&&!st.documentElement.doScroll?t.setTimeout(wt.ready):(st.addEventListener("DOMContentLoaded",p),t.addEventListener("load",p));var Rt=function(t,e,n,o,r,s,a){var l=0,u=t.length,c=null==n;if("object"===i(n)){r=!0;for(l in n)Rt(t,e,l,n[l],!0,s,a)}else if(void 0!==o&&(r=!0,yt(o)||(a=!0),c&&(a?(e.call(t,o),e=null):(c=e,e=function(t,e,n){return c.call(wt(t),n)})),e))for(;l<u;l++)e(t[l],n,a?o:o.call(t[l],l,e(t[l],n)));return r?t:c?e.call(t):u?e(t[0],n):s},qt=/^-ms-/,Pt=/-([a-z])/g,Ht=function(t){return 1===t.nodeType||9===t.nodeType||!+t.nodeType};g.uid=1,g.prototype={cache:function(t){var e=t[this.expando];return e||(e={},Ht(t)&&(t.nodeType?t[this.expando]=e:Object.defineProperty(t,this.expando,{value:e,configurable:!0}))),e},set:function(t,e,n){var i,o=this.cache(t);if("string"==typeof e)o[h(e)]=n;else for(i in e)o[h(i)]=e[i];return o},get:function(t,e){return void 0===e?this.cache(t):t[this.expando]&&t[this.expando][h(e)]},access:function(t,e,n){return void 0===e||e&&"string"==typeof e&&void 0===n?this.get(t,e):(this.set(t,e,n),void 0!==n?n:e)},remove:function(t,e){var n,i=t[this.expando];if(void 0!==i){if(void 0!==e){Array.isArray(e)?e=e.map(h):(e=h(e),e=e in i?[e]:e.match(Ot)||[]),n=e.length;for(;n--;)delete i[e[n]]}(void 0===e||wt.isEmptyObject(i))&&(t.nodeType?t[this.expando]=void 0:delete t[this.expando])}},hasData:function(t){var e=t[this.expando];return void 0!==e&&!wt.isEmptyObject(e)}};var Mt=new g,Wt=new g,Ft=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Bt=/[A-Z]/g;wt.extend({hasData:function(t){return Wt.hasData(t)||Mt.hasData(t)},data:function(t,e,n){return Wt.access(t,e,n)},removeData:function(t,e){Wt.remove(t,e)},_data:function(t,e,n){return Mt.access(t,e,n)},_removeData:function(t,e){Mt.remove(t,e)}}),wt.fn.extend({data:function(t,e){var n,i,o,r=this[0],s=r&&r.attributes;if(void 0===t){if(this.length&&(o=Wt.get(r),1===r.nodeType&&!Mt.get(r,"hasDataAttrs"))){for(n=s.length;n--;)s[n]&&(i=s[n].name,0===i.indexOf("data-")&&(i=h(i.slice(5)),v(r,i,o[i])));Mt.set(r,"hasDataAttrs",!0)}return o}return"object"==typeof t?this.each(function(){Wt.set(this,t)}):Rt(this,function(e){var n;if(r&&void 0===e){if(void 0!==(n=Wt.get(r,t)))return n;if(void 0!==(n=v(r,t)))return n}else this.each(function(){Wt.set(this,t,e)})},null,e,arguments.length>1,null,!0)},removeData:function(t){return this.each(function(){Wt.remove(this,t)})}}),wt.extend({queue:function(t,e,n){var i;if(t)return e=(e||"fx")+"queue",i=Mt.get(t,e),n&&(!i||Array.isArray(n)?i=Mt.access(t,e,wt.makeArray(n)):i.push(n)),i||[]},dequeue:function(t,e){e=e||"fx";var n=wt.queue(t,e),i=n.length,o=n.shift(),r=wt._queueHooks(t,e),s=function(){wt.dequeue(t,e)};"inprogress"===o&&(o=n.shift(),i--),o&&("fx"===e&&n.unshift("inprogress"),delete r.stop,o.call(t,s,r)),!i&&r&&r.empty.fire()},_queueHooks:function(t,e){var n=e+"queueHooks";return Mt.get(t,n)||Mt.access(t,n,{empty:wt.Callbacks("once memory").add(function(){Mt.remove(t,[e+"queue",n])})})}}),wt.fn.extend({queue:function(t,e){var n=2;return"string"!=typeof t&&(e=t,t="fx",n--),arguments.length<n?wt.queue(this[0],t):void 0===e?this:this.each(function(){var n=wt.queue(this,t,e);wt._queueHooks(this,t),"fx"===t&&"inprogress"!==n[0]&&wt.dequeue(this,t)})},dequeue:function(t){return this.each(function(){wt.dequeue(this,t)})},clearQueue:function(t){return this.queue(t||"fx",[])},promise:function(t,e){var n,i=1,o=wt.Deferred(),r=this,s=this.length,a=function(){--i||o.resolveWith(r,[r])};for("string"!=typeof t&&(e=t,t=void 0),t=t||"fx";s--;)(n=Mt.get(r[s],t+"queueHooks"))&&n.empty&&(i++,n.empty.add(a));return a(),o.promise(e)}});var Ut=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,_t=new RegExp("^(?:([+-])=|)("+Ut+")([a-z%]*)$","i"),zt=["Top","Right","Bottom","Left"],Vt=function(t,e){return t=e||t,"none"===t.style.display||""===t.style.display&&wt.contains(t.ownerDocument,t)&&"none"===wt.css(t,"display")},Qt=function(t,e,n,i){var o,r,s={};for(r in e)s[r]=t.style[r],t.style[r]=e[r];o=n.apply(t,i||[]);for(r in e)t.style[r]=s[r];return o},Xt={};wt.fn.extend({show:function(){return x(this,!0)},hide:function(){return x(this)},toggle:function(t){return"boolean"==typeof t?t?this.show():this.hide():this.each(function(){Vt(this)?wt(this).show():wt(this).hide()})}});var Gt=/^(?:checkbox|radio)$/i,Yt=/<([a-z][^\/\0>\x20\t\r\n\f]+)/i,Jt=/^$|^module$|\/(?:java|ecma)script/i,Kt={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};Kt.optgroup=Kt.option,Kt.tbody=Kt.tfoot=Kt.colgroup=Kt.caption=Kt.thead,Kt.th=Kt.td;var Zt=/<|&#?\w+;/;!function(){var t=st.createDocumentFragment(),e=t.appendChild(st.createElement("div")),n=st.createElement("input");n.setAttribute("type","radio"),n.setAttribute("checked","checked"),n.setAttribute("name","t"),e.appendChild(n),vt.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="<textarea>x</textarea>",vt.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var te=st.documentElement,ee=/^key/,ne=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ie=/^([^.]*)(?:\.(.+)|)/;wt.event={global:{},add:function(t,e,n,i,o){var r,s,a,l,u,c,f,p,d,h,g,m=Mt.get(t);if(m)for(n.handler&&(r=n,n=r.handler,o=r.selector),o&&wt.find.matchesSelector(te,o),n.guid||(n.guid=wt.guid++),(l=m.events)||(l=m.events={}),(s=m.handle)||(s=m.handle=function(e){return void 0!==wt&&wt.event.triggered!==e.type?wt.event.dispatch.apply(t,arguments):void 0}),e=(e||"").match(Ot)||[""],u=e.length;u--;)a=ie.exec(e[u])||[],d=g=a[1],h=(a[2]||"").split(".").sort(),d&&(f=wt.event.special[d]||{},d=(o?f.delegateType:f.bindType)||d,f=wt.event.special[d]||{},c=wt.extend({type:d,origType:g,data:i,handler:n,guid:n.guid,selector:o,needsContext:o&&wt.expr.match.needsContext.test(o),namespace:h.join(".")},r),(p=l[d])||(p=l[d]=[],p.delegateCount=0,f.setup&&!1!==f.setup.call(t,i,h,s)||t.addEventListener&&t.addEventListener(d,s)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),o?p.splice(p.delegateCount++,0,c):p.push(c),wt.event.global[d]=!0)},remove:function(t,e,n,i,o){var r,s,a,l,u,c,f,p,d,h,g,m=Mt.hasData(t)&&Mt.get(t);if(m&&(l=m.events)){for(e=(e||"").match(Ot)||[""],u=e.length;u--;)if(a=ie.exec(e[u])||[],d=g=a[1],h=(a[2]||"").split(".").sort(),d){for(f=wt.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,p=l[d]||[],a=a[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=r=p.length;r--;)c=p[r],!o&&g!==c.origType||n&&n.guid!==c.guid||a&&!a.test(c.namespace)||i&&i!==c.selector&&("**"!==i||!c.selector)||(p.splice(r,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(t,c));s&&!p.length&&(f.teardown&&!1!==f.teardown.call(t,h,m.handle)||wt.removeEvent(t,d,m.handle),delete l[d])}else for(d in l)wt.event.remove(t,d+e[u],n,i,!0);wt.isEmptyObject(l)&&Mt.remove(t,"handle events")}},dispatch:function(t){var e,n,i,o,r,s,a=wt.event.fix(t),l=new Array(arguments.length),u=(Mt.get(this,"events")||{})[a.type]||[],c=wt.event.special[a.type]||{};for(l[0]=a,e=1;e<arguments.length;e++)l[e]=arguments[e];if(a.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,a)){for(s=wt.event.handlers.call(this,a,u),e=0;(o=s[e++])&&!a.isPropagationStopped();)for(a.currentTarget=o.elem,n=0;(r=o.handlers[n++])&&!a.isImmediatePropagationStopped();)a.rnamespace&&!a.rnamespace.test(r.namespace)||(a.handleObj=r,a.data=r.data,void 0!==(i=((wt.event.special[r.origType]||{}).handle||r.handler).apply(o.elem,l))&&!1===(a.result=i)&&(a.preventDefault(),a.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,a),a.result}},handlers:function(t,e){var n,i,o,r,s,a=[],l=e.delegateCount,u=t.target;if(l&&u.nodeType&&!("click"===t.type&&t.button>=1))for(;u!==this;u=u.parentNode||this)if(1===u.nodeType&&("click"!==t.type||!0!==u.disabled)){for(r=[],s={},n=0;n<l;n++)i=e[n],o=i.selector+" ",void 0===s[o]&&(s[o]=i.needsContext?wt(o,this).index(u)>-1:wt.find(o,this,null,[u]).length),s[o]&&r.push(i);r.length&&a.push({elem:u,handlers:r})}return u=this,l<e.length&&a.push({elem:u,handlers:e.slice(l)}),a},addProp:function(t,e){Object.defineProperty(wt.Event.prototype,t,{enumerable:!0,configurable:!0,get:yt(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(t){return t[wt.expando]?t:new wt.Event(t)},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==k()&&this.focus)return this.focus(),!1},delegateType:"focusin"},blur:{trigger:function(){if(this===k()&&this.blur)return this.blur(),!1},delegateType:"focusout"},click:{trigger:function(){if("checkbox"===this.type&&this.click&&r(this,"input"))return this.click(),!1},_default:function(t){return r(t.target,"a")}},beforeunload:{postDispatch:function(t){void 0!==t.result&&t.originalEvent&&(t.originalEvent.returnValue=t.result)}}}},wt.removeEvent=function(t,e,n){t.removeEventListener&&t.removeEventListener(e,n)},wt.Event=function(t,e){if(!(this instanceof wt.Event))return new wt.Event(t,e);t&&t.type?(this.originalEvent=t,this.type=t.type,this.isDefaultPrevented=t.defaultPrevented||void 0===t.defaultPrevented&&!1===t.returnValue?E:S,this.target=t.target&&3===t.target.nodeType?t.target.parentNode:t.target,this.currentTarget=t.currentTarget,this.relatedTarget=t.relatedTarget):this.type=t,e&&wt.extend(this,e),this.timeStamp=t&&t.timeStamp||Date.now(),this[wt.expando]=!0},wt.Event.prototype={constructor:wt.Event,isDefaultPrevented:S,isPropagationStopped:S,isImmediatePropagationStopped:S,isSimulated:!1,preventDefault:function(){var t=this.originalEvent;this.isDefaultPrevented=E,t&&!this.isSimulated&&t.preventDefault()},stopPropagation:function(){var t=this.originalEvent;this.isPropagationStopped=E,t&&!this.isSimulated&&t.stopPropagation()},stopImmediatePropagation:function(){var t=this.originalEvent;this.isImmediatePropagationStopped=E,t&&!this.isSimulated&&t.stopImmediatePropagation(),this.stopPropagation()}},wt.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(t){var e=t.button;return null==t.which&&ee.test(t.type)?null!=t.charCode?t.charCode:t.keyCode:!t.which&&void 0!==e&&ne.test(t.type)?1&e?1:2&e?3:4&e?2:0:t.which}},wt.event.addProp),wt.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(t,e){wt.event.special[t]={delegateType:e,bindType:e,handle:function(t){var n,i=this,o=t.relatedTarget,r=t.handleObj;return o&&(o===i||wt.contains(i,o))||(t.type=r.origType,n=r.handler.apply(this,arguments),t.type=e),n}}}),wt.fn.extend({on:function(t,e,n,i){return $(this,t,e,n,i)},one:function(t,e,n,i){return $(this,t,e,n,i,1)},off:function(t,e,n){var i,o;if(t&&t.preventDefault&&t.handleObj)return i=t.handleObj,wt(t.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof t){for(o in t)this.off(o,e,t[o]);return this}return!1!==e&&"function"!=typeof e||(n=e,e=void 0),!1===n&&(n=S),this.each(function(){wt.event.remove(this,t,n,e)})}});var oe=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,re=/<script|<style|<link/i,se=/checked\s*(?:[^=]|=\s*.checked.)/i,ae=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;wt.extend({htmlPrefilter:function(t){return t.replace(oe,"<$1></$2>")},clone:function(t,e,n){var i,o,r,s,a=t.cloneNode(!0),l=wt.contains(t.ownerDocument,t);if(!(vt.noCloneChecked||1!==t.nodeType&&11!==t.nodeType||wt.isXMLDoc(t)))for(s=w(a),r=w(t),i=0,o=r.length;i<o;i++)O(r[i],s[i]);if(e)if(n)for(r=r||w(t),s=s||w(a),i=0,o=r.length;i<o;i++)j(r[i],s[i]);else j(t,a);return s=w(a,"script"),s.length>0&&T(s,!l&&w(t,"script")),a},cleanData:function(t){for(var e,n,i,o=wt.event.special,r=0;void 0!==(n=t[r]);r++)if(Ht(n)){if(e=n[Mt.expando]){if(e.events)for(i in e.events)o[i]?wt.event.remove(n,i):wt.removeEvent(n,i,e.handle);n[Mt.expando]=void 0}n[Wt.expando]&&(n[Wt.expando]=void 0)}}}),wt.fn.extend({detach:function(t){return L(this,t,!0)},remove:function(t){return L(this,t)},text:function(t){return Rt(this,function(t){return void 0===t?wt.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=t)})},null,t,arguments.length)},append:function(){return I(this,arguments,function(t){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){D(this,t).appendChild(t)}})},prepend:function(){return I(this,arguments,function(t){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var e=D(this,t);e.insertBefore(t,e.firstChild)}})},before:function(){return I(this,arguments,function(t){this.parentNode&&this.parentNode.insertBefore(t,this)})},after:function(){return I(this,arguments,function(t){this.parentNode&&this.parentNode.insertBefore(t,this.nextSibling)})},empty:function(){for(var t,e=0;null!=(t=this[e]);e++)1===t.nodeType&&(wt.cleanData(w(t,!1)),t.textContent="");return this},clone:function(t,e){return t=null!=t&&t,e=null==e?t:e,this.map(function(){return wt.clone(this,t,e)})},html:function(t){return Rt(this,function(t){var e=this[0]||{},n=0,i=this.length;if(void 0===t&&1===e.nodeType)return e.innerHTML;if("string"==typeof t&&!re.test(t)&&!Kt[(Yt.exec(t)||["",""])[1].toLowerCase()]){t=wt.htmlPrefilter(t);try{for(;n<i;n++)e=this[n]||{},1===e.nodeType&&(wt.cleanData(w(e,!1)),e.innerHTML=t);e=0}catch(t){}}e&&this.empty().append(t)},null,t,arguments.length)},replaceWith:function(){var t=[];return I(this,arguments,function(e){var n=this.parentNode;wt.inArray(this,t)<0&&(wt.cleanData(w(this)),n&&n.replaceChild(e,this))},t)}}),wt.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(t,e){wt.fn[t]=function(t){for(var n,i=[],o=wt(t),r=o.length-1,s=0;s<=r;s++)n=s===r?this:this.clone(!0),wt(o[s])[e](n),ct.apply(i,n.get());return this.pushStack(i)}});var le=new RegExp("^("+Ut+")(?!px)[a-z%]+$","i"),ue=function(e){var n=e.ownerDocument.defaultView;return n&&n.opener||(n=t),n.getComputedStyle(e)},ce=new RegExp(zt.join("|"),"i");!function(){function e(){if(u){l.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",u.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",te.appendChild(l).appendChild(u);var e=t.getComputedStyle(u);i="1%"!==e.top,a=12===n(e.marginLeft),u.style.right="60%",s=36===n(e.right),o=36===n(e.width),u.style.position="absolute",r=36===u.offsetWidth||"absolute",te.removeChild(l),u=null}}function n(t){return Math.round(parseFloat(t))}var i,o,r,s,a,l=st.createElement("div"),u=st.createElement("div");u.style&&(u.style.backgroundClip="content-box",u.cloneNode(!0).style.backgroundClip="",vt.clearCloneStyle="content-box"===u.style.backgroundClip,wt.extend(vt,{boxSizingReliable:function(){return e(),o},pixelBoxStyles:function(){return e(),s},pixelPosition:function(){return e(),i},reliableMarginLeft:function(){return e(),a},scrollboxSize:function(){return e(),r}}))}();var fe=/^(none|table(?!-c[ea]).+)/,pe=/^--/,de={position:"absolute",visibility:"hidden",display:"block"},he={letterSpacing:"0",fontWeight:"400"},ge=["Webkit","Moz","ms"],me=st.createElement("div").style;wt.extend({cssHooks:{opacity:{get:function(t,e){if(e){var n=R(t,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(t,e,n,i){if(t&&3!==t.nodeType&&8!==t.nodeType&&t.style){var o,r,s,a=h(e),l=pe.test(e),u=t.style;if(l||(e=H(a)),s=wt.cssHooks[e]||wt.cssHooks[a],void 0===n)return s&&"get"in s&&void 0!==(o=s.get(t,!1,i))?o:u[e];r=typeof n,"string"===r&&(o=_t.exec(n))&&o[1]&&(n=y(t,e,o),r="number"),null!=n&&n===n&&("number"===r&&(n+=o&&o[3]||(wt.cssNumber[a]?"":"px")),vt.clearCloneStyle||""!==n||0!==e.indexOf("background")||(u[e]="inherit"),s&&"set"in s&&void 0===(n=s.set(t,n,i))||(l?u.setProperty(e,n):u[e]=n))}},css:function(t,e,n,i){var o,r,s,a=h(e);return pe.test(e)||(e=H(a)),s=wt.cssHooks[e]||wt.cssHooks[a],s&&"get"in s&&(o=s.get(t,!0,n)),void 0===o&&(o=R(t,e,i)),"normal"===o&&e in he&&(o=he[e]),""===n||n?(r=parseFloat(o),!0===n||isFinite(r)?r||0:o):o}}),wt.each(["height","width"],function(t,e){wt.cssHooks[e]={get:function(t,n,i){if(n)return!fe.test(wt.css(t,"display"))||t.getClientRects().length&&t.getBoundingClientRect().width?F(t,e,i):Qt(t,de,function(){return F(t,e,i)})},set:function(t,n,i){var o,r=ue(t),s="border-box"===wt.css(t,"boxSizing",!1,r),a=i&&W(t,e,i,s,r);return s&&vt.scrollboxSize()===r.position&&(a-=Math.ceil(t["offset"+e[0].toUpperCase()+e.slice(1)]-parseFloat(r[e])-W(t,e,"border",!1,r)-.5)),a&&(o=_t.exec(n))&&"px"!==(o[3]||"px")&&(t.style[e]=n,n=wt.css(t,e)),M(t,n,a)}}}),wt.cssHooks.marginLeft=q(vt.reliableMarginLeft,function(t,e){if(e)return(parseFloat(R(t,"marginLeft"))||t.getBoundingClientRect().left-Qt(t,{marginLeft:0},function(){return t.getBoundingClientRect().left}))+"px"}),wt.each({margin:"",padding:"",border:"Width"},function(t,e){wt.cssHooks[t+e]={expand:function(n){for(var i=0,o={},r="string"==typeof n?n.split(" "):[n];i<4;i++)o[t+zt[i]+e]=r[i]||r[i-2]||r[0];return o}},"margin"!==t&&(wt.cssHooks[t+e].set=M)}),wt.fn.extend({css:function(t,e){return Rt(this,function(t,e,n){var i,o,r={},s=0;if(Array.isArray(e)){for(i=ue(t),o=e.length;s<o;s++)r[e[s]]=wt.css(t,e[s],!1,i);return r}return void 0!==n?wt.style(t,e,n):wt.css(t,e)},t,e,arguments.length>1)}}),wt.Tween=B,B.prototype={constructor:B,init:function(t,e,n,i,o,r){this.elem=t,this.prop=n,this.easing=o||wt.easing._default,this.options=e,this.start=this.now=this.cur(),this.end=i,this.unit=r||(wt.cssNumber[n]?"":"px")},cur:function(){var t=B.propHooks[this.prop];return t&&t.get?t.get(this):B.propHooks._default.get(this)},run:function(t){var e,n=B.propHooks[this.prop];return this.options.duration?this.pos=e=wt.easing[this.easing](t,this.options.duration*t,0,1,this.options.duration):this.pos=e=t,this.now=(this.end-this.start)*e+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):B.propHooks._default.set(this),this}},B.prototype.init.prototype=B.prototype,B.propHooks={_default:{get:function(t){var e;return 1!==t.elem.nodeType||null!=t.elem[t.prop]&&null==t.elem.style[t.prop]?t.elem[t.prop]:(e=wt.css(t.elem,t.prop,""),e&&"auto"!==e?e:0)},set:function(t){wt.fx.step[t.prop]?wt.fx.step[t.prop](t):1!==t.elem.nodeType||null==t.elem.style[wt.cssProps[t.prop]]&&!wt.cssHooks[t.prop]?t.elem[t.prop]=t.now:wt.style(t.elem,t.prop,t.now+t.unit)}}},B.propHooks.scrollTop=B.propHooks.scrollLeft={set:function(t){t.elem.nodeType&&t.elem.parentNode&&(t.elem[t.prop]=t.now)}},wt.easing={linear:function(t){return t},swing:function(t){return.5-Math.cos(t*Math.PI)/2},_default:"swing"},wt.fx=B.prototype.init,wt.fx.step={};var ve,ye,be=/^(?:toggle|show|hide)$/,xe=/queueHooks$/;wt.Animation=wt.extend(G,{tweeners:{"*":[function(t,e){var n=this.createTween(t,e);return y(n.elem,t,_t.exec(e),n),n}]},tweener:function(t,e){yt(t)?(e=t,t=["*"]):t=t.match(Ot);for(var n,i=0,o=t.length;i<o;i++)n=t[i],G.tweeners[n]=G.tweeners[n]||[],G.tweeners[n].unshift(e)},prefilters:[Q],prefilter:function(t,e){e?G.prefilters.unshift(t):G.prefilters.push(t)}}),wt.speed=function(t,e,n){var i=t&&"object"==typeof t?wt.extend({},t):{complete:n||!n&&e||yt(t)&&t,duration:t,easing:n&&e||e&&!yt(e)&&e};return wt.fx.off?i.duration=0:"number"!=typeof i.duration&&(i.duration in wt.fx.speeds?i.duration=wt.fx.speeds[i.duration]:i.duration=wt.fx.speeds._default),null!=i.queue&&!0!==i.queue||(i.queue="fx"),i.old=i.complete,i.complete=function(){yt(i.old)&&i.old.call(this),i.queue&&wt.dequeue(this,i.queue)},i},wt.fn.extend({fadeTo:function(t,e,n,i){return this.filter(Vt).css("opacity",0).show().end().animate({opacity:e},t,n,i)},animate:function(t,e,n,i){var o=wt.isEmptyObject(t),r=wt.speed(e,n,i),s=function(){var e=G(this,wt.extend({},t),r);(o||Mt.get(this,"finish"))&&e.stop(!0)};return s.finish=s,o||!1===r.queue?this.each(s):this.queue(r.queue,s)},stop:function(t,e,n){var i=function(t){var e=t.stop;delete t.stop,e(n)};return"string"!=typeof t&&(n=e,e=t,t=void 0),e&&!1!==t&&this.queue(t||"fx",[]),this.each(function(){var e=!0,o=null!=t&&t+"queueHooks",r=wt.timers,s=Mt.get(this);if(o)s[o]&&s[o].stop&&i(s[o]);else for(o in s)s[o]&&s[o].stop&&xe.test(o)&&i(s[o]);for(o=r.length;o--;)r[o].elem!==this||null!=t&&r[o].queue!==t||(r[o].anim.stop(n),e=!1,r.splice(o,1));!e&&n||wt.dequeue(this,t)})},finish:function(t){return!1!==t&&(t=t||"fx"),this.each(function(){
+var e,n=Mt.get(this),i=n[t+"queue"],o=n[t+"queueHooks"],r=wt.timers,s=i?i.length:0;for(n.finish=!0,wt.queue(this,t,[]),o&&o.stop&&o.stop.call(this,!0),e=r.length;e--;)r[e].elem===this&&r[e].queue===t&&(r[e].anim.stop(!0),r.splice(e,1));for(e=0;e<s;e++)i[e]&&i[e].finish&&i[e].finish.call(this);delete n.finish})}}),wt.each(["toggle","show","hide"],function(t,e){var n=wt.fn[e];wt.fn[e]=function(t,i,o){return null==t||"boolean"==typeof t?n.apply(this,arguments):this.animate(z(e,!0),t,i,o)}}),wt.each({slideDown:z("show"),slideUp:z("hide"),slideToggle:z("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(t,e){wt.fn[t]=function(t,n,i){return this.animate(e,t,n,i)}}),wt.timers=[],wt.fx.tick=function(){var t,e=0,n=wt.timers;for(ve=Date.now();e<n.length;e++)(t=n[e])()||n[e]!==t||n.splice(e--,1);n.length||wt.fx.stop(),ve=void 0},wt.fx.timer=function(t){wt.timers.push(t),wt.fx.start()},wt.fx.interval=13,wt.fx.start=function(){ye||(ye=!0,U())},wt.fx.stop=function(){ye=null},wt.fx.speeds={slow:600,fast:200,_default:400},wt.fn.delay=function(e,n){return e=wt.fx?wt.fx.speeds[e]||e:e,n=n||"fx",this.queue(n,function(n,i){var o=t.setTimeout(n,e);i.stop=function(){t.clearTimeout(o)}})},function(){var t=st.createElement("input"),e=st.createElement("select"),n=e.appendChild(st.createElement("option"));t.type="checkbox",vt.checkOn=""!==t.value,vt.optSelected=n.selected,t=st.createElement("input"),t.value="t",t.type="radio",vt.radioValue="t"===t.value}();var we,Te=wt.expr.attrHandle;wt.fn.extend({attr:function(t,e){return Rt(this,wt.attr,t,e,arguments.length>1)},removeAttr:function(t){return this.each(function(){wt.removeAttr(this,t)})}}),wt.extend({attr:function(t,e,n){var i,o,r=t.nodeType;if(3!==r&&8!==r&&2!==r)return void 0===t.getAttribute?wt.prop(t,e,n):(1===r&&wt.isXMLDoc(t)||(o=wt.attrHooks[e.toLowerCase()]||(wt.expr.match.bool.test(e)?we:void 0)),void 0!==n?null===n?void wt.removeAttr(t,e):o&&"set"in o&&void 0!==(i=o.set(t,n,e))?i:(t.setAttribute(e,n+""),n):o&&"get"in o&&null!==(i=o.get(t,e))?i:(i=wt.find.attr(t,e),null==i?void 0:i))},attrHooks:{type:{set:function(t,e){if(!vt.radioValue&&"radio"===e&&r(t,"input")){var n=t.value;return t.setAttribute("type",e),n&&(t.value=n),e}}}},removeAttr:function(t,e){var n,i=0,o=e&&e.match(Ot);if(o&&1===t.nodeType)for(;n=o[i++];)t.removeAttribute(n)}}),we={set:function(t,e,n){return!1===e?wt.removeAttr(t,n):t.setAttribute(n,n),n}},wt.each(wt.expr.match.bool.source.match(/\w+/g),function(t,e){var n=Te[e]||wt.find.attr;Te[e]=function(t,e,i){var o,r,s=e.toLowerCase();return i||(r=Te[s],Te[s]=o,o=null!=n(t,e,i)?s:null,Te[s]=r),o}});var Ce=/^(?:input|select|textarea|button)$/i,Ee=/^(?:a|area)$/i;wt.fn.extend({prop:function(t,e){return Rt(this,wt.prop,t,e,arguments.length>1)},removeProp:function(t){return this.each(function(){delete this[wt.propFix[t]||t]})}}),wt.extend({prop:function(t,e,n){var i,o,r=t.nodeType;if(3!==r&&8!==r&&2!==r)return 1===r&&wt.isXMLDoc(t)||(e=wt.propFix[e]||e,o=wt.propHooks[e]),void 0!==n?o&&"set"in o&&void 0!==(i=o.set(t,n,e))?i:t[e]=n:o&&"get"in o&&null!==(i=o.get(t,e))?i:t[e]},propHooks:{tabIndex:{get:function(t){var e=wt.find.attr(t,"tabindex");return e?parseInt(e,10):Ce.test(t.nodeName)||Ee.test(t.nodeName)&&t.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),vt.optSelected||(wt.propHooks.selected={get:function(t){var e=t.parentNode;return e&&e.parentNode&&e.parentNode.selectedIndex,null},set:function(t){var e=t.parentNode;e&&(e.selectedIndex,e.parentNode&&e.parentNode.selectedIndex)}}),wt.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){wt.propFix[this.toLowerCase()]=this}),wt.fn.extend({addClass:function(t){var e,n,i,o,r,s,a,l=0;if(yt(t))return this.each(function(e){wt(this).addClass(t.call(this,e,J(this)))});if(e=K(t),e.length)for(;n=this[l++];)if(o=J(n),i=1===n.nodeType&&" "+Y(o)+" "){for(s=0;r=e[s++];)i.indexOf(" "+r+" ")<0&&(i+=r+" ");a=Y(i),o!==a&&n.setAttribute("class",a)}return this},removeClass:function(t){var e,n,i,o,r,s,a,l=0;if(yt(t))return this.each(function(e){wt(this).removeClass(t.call(this,e,J(this)))});if(!arguments.length)return this.attr("class","");if(e=K(t),e.length)for(;n=this[l++];)if(o=J(n),i=1===n.nodeType&&" "+Y(o)+" "){for(s=0;r=e[s++];)for(;i.indexOf(" "+r+" ")>-1;)i=i.replace(" "+r+" "," ");a=Y(i),o!==a&&n.setAttribute("class",a)}return this},toggleClass:function(t,e){var n=typeof t,i="string"===n||Array.isArray(t);return"boolean"==typeof e&&i?e?this.addClass(t):this.removeClass(t):yt(t)?this.each(function(n){wt(this).toggleClass(t.call(this,n,J(this),e),e)}):this.each(function(){var e,o,r,s;if(i)for(o=0,r=wt(this),s=K(t);e=s[o++];)r.hasClass(e)?r.removeClass(e):r.addClass(e);else void 0!==t&&"boolean"!==n||(e=J(this),e&&Mt.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===t?"":Mt.get(this,"__className__")||""))})},hasClass:function(t){var e,n,i=0;for(e=" "+t+" ";n=this[i++];)if(1===n.nodeType&&(" "+Y(J(n))+" ").indexOf(e)>-1)return!0;return!1}});var Se=/\r/g;wt.fn.extend({val:function(t){var e,n,i,o=this[0];{if(arguments.length)return i=yt(t),this.each(function(n){var o;1===this.nodeType&&(o=i?t.call(this,n,wt(this).val()):t,null==o?o="":"number"==typeof o?o+="":Array.isArray(o)&&(o=wt.map(o,function(t){return null==t?"":t+""})),(e=wt.valHooks[this.type]||wt.valHooks[this.nodeName.toLowerCase()])&&"set"in e&&void 0!==e.set(this,o,"value")||(this.value=o))});if(o)return(e=wt.valHooks[o.type]||wt.valHooks[o.nodeName.toLowerCase()])&&"get"in e&&void 0!==(n=e.get(o,"value"))?n:(n=o.value,"string"==typeof n?n.replace(Se,""):null==n?"":n)}}}),wt.extend({valHooks:{option:{get:function(t){var e=wt.find.attr(t,"value");return null!=e?e:Y(wt.text(t))}},select:{get:function(t){var e,n,i,o=t.options,s=t.selectedIndex,a="select-one"===t.type,l=a?null:[],u=a?s+1:o.length;for(i=s<0?u:a?s:0;i<u;i++)if(n=o[i],(n.selected||i===s)&&!n.disabled&&(!n.parentNode.disabled||!r(n.parentNode,"optgroup"))){if(e=wt(n).val(),a)return e;l.push(e)}return l},set:function(t,e){for(var n,i,o=t.options,r=wt.makeArray(e),s=o.length;s--;)i=o[s],(i.selected=wt.inArray(wt.valHooks.option.get(i),r)>-1)&&(n=!0);return n||(t.selectedIndex=-1),r}}}}),wt.each(["radio","checkbox"],function(){wt.valHooks[this]={set:function(t,e){if(Array.isArray(e))return t.checked=wt.inArray(wt(t).val(),e)>-1}},vt.checkOn||(wt.valHooks[this].get=function(t){return null===t.getAttribute("value")?"on":t.value})}),vt.focusin="onfocusin"in t;var ke=/^(?:focusinfocus|focusoutblur)$/,$e=function(t){t.stopPropagation()};wt.extend(wt.event,{trigger:function(e,n,i,o){var r,s,a,l,u,c,f,p,d=[i||st],h=ht.call(e,"type")?e.type:e,g=ht.call(e,"namespace")?e.namespace.split("."):[];if(s=p=a=i=i||st,3!==i.nodeType&&8!==i.nodeType&&!ke.test(h+wt.event.triggered)&&(h.indexOf(".")>-1&&(g=h.split("."),h=g.shift(),g.sort()),u=h.indexOf(":")<0&&"on"+h,e=e[wt.expando]?e:new wt.Event(h,"object"==typeof e&&e),e.isTrigger=o?2:3,e.namespace=g.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+g.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=i),n=null==n?[e]:wt.makeArray(n,[e]),f=wt.event.special[h]||{},o||!f.trigger||!1!==f.trigger.apply(i,n))){if(!o&&!f.noBubble&&!bt(i)){for(l=f.delegateType||h,ke.test(l+h)||(s=s.parentNode);s;s=s.parentNode)d.push(s),a=s;a===(i.ownerDocument||st)&&d.push(a.defaultView||a.parentWindow||t)}for(r=0;(s=d[r++])&&!e.isPropagationStopped();)p=s,e.type=r>1?l:f.bindType||h,c=(Mt.get(s,"events")||{})[e.type]&&Mt.get(s,"handle"),c&&c.apply(s,n),(c=u&&s[u])&&c.apply&&Ht(s)&&(e.result=c.apply(s,n),!1===e.result&&e.preventDefault());return e.type=h,o||e.isDefaultPrevented()||f._default&&!1!==f._default.apply(d.pop(),n)||!Ht(i)||u&&yt(i[h])&&!bt(i)&&(a=i[u],a&&(i[u]=null),wt.event.triggered=h,e.isPropagationStopped()&&p.addEventListener(h,$e),i[h](),e.isPropagationStopped()&&p.removeEventListener(h,$e),wt.event.triggered=void 0,a&&(i[u]=a)),e.result}},simulate:function(t,e,n){var i=wt.extend(new wt.Event,n,{type:t,isSimulated:!0});wt.event.trigger(i,null,e)}}),wt.fn.extend({trigger:function(t,e){return this.each(function(){wt.event.trigger(t,e,this)})},triggerHandler:function(t,e){var n=this[0];if(n)return wt.event.trigger(t,e,n,!0)}}),vt.focusin||wt.each({focus:"focusin",blur:"focusout"},function(t,e){var n=function(t){wt.event.simulate(e,t.target,wt.event.fix(t))};wt.event.special[e]={setup:function(){var i=this.ownerDocument||this,o=Mt.access(i,e);o||i.addEventListener(t,n,!0),Mt.access(i,e,(o||0)+1)},teardown:function(){var i=this.ownerDocument||this,o=Mt.access(i,e)-1;o?Mt.access(i,e,o):(i.removeEventListener(t,n,!0),Mt.remove(i,e))}}});var De=t.location,Ne=Date.now(),Ae=/\?/;wt.parseXML=function(e){var n;if(!e||"string"!=typeof e)return null;try{n=(new t.DOMParser).parseFromString(e,"text/xml")}catch(t){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||wt.error("Invalid XML: "+e),n};var je=/\[\]$/,Oe=/\r?\n/g,Ie=/^(?:submit|button|image|reset|file)$/i,Le=/^(?:input|select|textarea|keygen)/i;wt.param=function(t,e){var n,i=[],o=function(t,e){var n=yt(e)?e():e;i[i.length]=encodeURIComponent(t)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(t)||t.jquery&&!wt.isPlainObject(t))wt.each(t,function(){o(this.name,this.value)});else for(n in t)Z(n,t[n],e,o);return i.join("&")},wt.fn.extend({serialize:function(){return wt.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var t=wt.prop(this,"elements");return t?wt.makeArray(t):this}).filter(function(){var t=this.type;return this.name&&!wt(this).is(":disabled")&&Le.test(this.nodeName)&&!Ie.test(t)&&(this.checked||!Gt.test(t))}).map(function(t,e){var n=wt(this).val();return null==n?null:Array.isArray(n)?wt.map(n,function(t){return{name:e.name,value:t.replace(Oe,"\r\n")}}):{name:e.name,value:n.replace(Oe,"\r\n")}}).get()}});var Re=/%20/g,qe=/#.*$/,Pe=/([?&])_=[^&]*/,He=/^(.*?):[ \t]*([^\r\n]*)$/gm,Me=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,We=/^(?:GET|HEAD)$/,Fe=/^\/\//,Be={},Ue={},_e="*/".concat("*"),ze=st.createElement("a");ze.href=De.href,wt.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:De.href,type:"GET",isLocal:Me.test(De.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":_e,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":wt.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(t,e){return e?nt(nt(t,wt.ajaxSettings),e):nt(wt.ajaxSettings,t)},ajaxPrefilter:tt(Be),ajaxTransport:tt(Ue),ajax:function(e,n){function i(e,n,i,a){var u,p,d,x,w,T=n;c||(c=!0,l&&t.clearTimeout(l),o=void 0,s=a||"",C.readyState=e>0?4:0,u=e>=200&&e<300||304===e,i&&(x=it(h,C,i)),x=ot(h,x,C,u),u?(h.ifModified&&(w=C.getResponseHeader("Last-Modified"),w&&(wt.lastModified[r]=w),(w=C.getResponseHeader("etag"))&&(wt.etag[r]=w)),204===e||"HEAD"===h.type?T="nocontent":304===e?T="notmodified":(T=x.state,p=x.data,d=x.error,u=!d)):(d=T,!e&&T||(T="error",e<0&&(e=0))),C.status=e,C.statusText=(n||T)+"",u?v.resolveWith(g,[p,T,C]):v.rejectWith(g,[C,T,d]),C.statusCode(b),b=void 0,f&&m.trigger(u?"ajaxSuccess":"ajaxError",[C,h,u?p:d]),y.fireWith(g,[C,T]),f&&(m.trigger("ajaxComplete",[C,h]),--wt.active||wt.event.trigger("ajaxStop")))}"object"==typeof e&&(n=e,e=void 0),n=n||{};var o,r,s,a,l,u,c,f,p,d,h=wt.ajaxSetup({},n),g=h.context||h,m=h.context&&(g.nodeType||g.jquery)?wt(g):wt.event,v=wt.Deferred(),y=wt.Callbacks("once memory"),b=h.statusCode||{},x={},w={},T="canceled",C={readyState:0,getResponseHeader:function(t){var e;if(c){if(!a)for(a={};e=He.exec(s);)a[e[1].toLowerCase()]=e[2];e=a[t.toLowerCase()]}return null==e?null:e},getAllResponseHeaders:function(){return c?s:null},setRequestHeader:function(t,e){return null==c&&(t=w[t.toLowerCase()]=w[t.toLowerCase()]||t,x[t]=e),this},overrideMimeType:function(t){return null==c&&(h.mimeType=t),this},statusCode:function(t){var e;if(t)if(c)C.always(t[C.status]);else for(e in t)b[e]=[b[e],t[e]];return this},abort:function(t){var e=t||T;return o&&o.abort(e),i(0,e),this}};if(v.promise(C),h.url=((e||h.url||De.href)+"").replace(Fe,De.protocol+"//"),h.type=n.method||n.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(Ot)||[""],null==h.crossDomain){u=st.createElement("a");try{u.href=h.url,u.href=u.href,h.crossDomain=ze.protocol+"//"+ze.host!=u.protocol+"//"+u.host}catch(t){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=wt.param(h.data,h.traditional)),et(Be,h,n,C),c)return C;f=wt.event&&h.global,f&&0==wt.active++&&wt.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!We.test(h.type),r=h.url.replace(qe,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(Re,"+")):(d=h.url.slice(r.length),h.data&&(h.processData||"string"==typeof h.data)&&(r+=(Ae.test(r)?"&":"?")+h.data,delete h.data),!1===h.cache&&(r=r.replace(Pe,"$1"),d=(Ae.test(r)?"&":"?")+"_="+Ne+++d),h.url=r+d),h.ifModified&&(wt.lastModified[r]&&C.setRequestHeader("If-Modified-Since",wt.lastModified[r]),wt.etag[r]&&C.setRequestHeader("If-None-Match",wt.etag[r])),(h.data&&h.hasContent&&!1!==h.contentType||n.contentType)&&C.setRequestHeader("Content-Type",h.contentType),C.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+_e+"; q=0.01":""):h.accepts["*"]);for(p in h.headers)C.setRequestHeader(p,h.headers[p]);if(h.beforeSend&&(!1===h.beforeSend.call(g,C,h)||c))return C.abort();if(T="abort",y.add(h.complete),C.done(h.success),C.fail(h.error),o=et(Ue,h,n,C)){if(C.readyState=1,f&&m.trigger("ajaxSend",[C,h]),c)return C;h.async&&h.timeout>0&&(l=t.setTimeout(function(){C.abort("timeout")},h.timeout));try{c=!1,o.send(x,i)}catch(t){if(c)throw t;i(-1,t)}}else i(-1,"No Transport");return C},getJSON:function(t,e,n){return wt.get(t,e,n,"json")},getScript:function(t,e){return wt.get(t,void 0,e,"script")}}),wt.each(["get","post"],function(t,e){wt[e]=function(t,n,i,o){return yt(n)&&(o=o||i,i=n,n=void 0),wt.ajax(wt.extend({url:t,type:e,dataType:o,data:n,success:i},wt.isPlainObject(t)&&t))}}),wt._evalUrl=function(t){return wt.ajax({url:t,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,throws:!0})},wt.fn.extend({wrapAll:function(t){var e;return this[0]&&(yt(t)&&(t=t.call(this[0])),e=wt(t,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&e.insertBefore(this[0]),e.map(function(){for(var t=this;t.firstElementChild;)t=t.firstElementChild;return t}).append(this)),this},wrapInner:function(t){return yt(t)?this.each(function(e){wt(this).wrapInner(t.call(this,e))}):this.each(function(){var e=wt(this),n=e.contents();n.length?n.wrapAll(t):e.append(t)})},wrap:function(t){var e=yt(t);return this.each(function(n){wt(this).wrapAll(e?t.call(this,n):t)})},unwrap:function(t){return this.parent(t).not("body").each(function(){wt(this).replaceWith(this.childNodes)}),this}}),wt.expr.pseudos.hidden=function(t){return!wt.expr.pseudos.visible(t)},wt.expr.pseudos.visible=function(t){return!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length)},wt.ajaxSettings.xhr=function(){try{return new t.XMLHttpRequest}catch(t){}};var Ve={0:200,1223:204},Qe=wt.ajaxSettings.xhr();vt.cors=!!Qe&&"withCredentials"in Qe,vt.ajax=Qe=!!Qe,wt.ajaxTransport(function(e){var n,i;if(vt.cors||Qe&&!e.crossDomain)return{send:function(o,r){var s,a=e.xhr();if(a.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(s in e.xhrFields)a[s]=e.xhrFields[s];e.mimeType&&a.overrideMimeType&&a.overrideMimeType(e.mimeType),e.crossDomain||o["X-Requested-With"]||(o["X-Requested-With"]="XMLHttpRequest");for(s in o)a.setRequestHeader(s,o[s]);n=function(t){return function(){n&&(n=i=a.onload=a.onerror=a.onabort=a.ontimeout=a.onreadystatechange=null,"abort"===t?a.abort():"error"===t?"number"!=typeof a.status?r(0,"error"):r(a.status,a.statusText):r(Ve[a.status]||a.status,a.statusText,"text"!==(a.responseType||"text")||"string"!=typeof a.responseText?{binary:a.response}:{text:a.responseText},a.getAllResponseHeaders()))}},a.onload=n(),i=a.onerror=a.ontimeout=n("error"),void 0!==a.onabort?a.onabort=i:a.onreadystatechange=function(){4===a.readyState&&t.setTimeout(function(){n&&i()})},n=n("abort");try{a.send(e.hasContent&&e.data||null)}catch(t){if(n)throw t}},abort:function(){n&&n()}}}),wt.ajaxPrefilter(function(t){t.crossDomain&&(t.contents.script=!1)}),wt.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(t){return wt.globalEval(t),t}}}),wt.ajaxPrefilter("script",function(t){void 0===t.cache&&(t.cache=!1),t.crossDomain&&(t.type="GET")}),wt.ajaxTransport("script",function(t){if(t.crossDomain){var e,n;return{send:function(i,o){e=wt("<script>").prop({charset:t.scriptCharset,src:t.url}).on("load error",n=function(t){e.remove(),n=null,t&&o("error"===t.type?404:200,t.type)}),st.head.appendChild(e[0])},abort:function(){n&&n()}}}});var Xe=[],Ge=/(=)\?(?=&|$)|\?\?/;wt.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var t=Xe.pop()||wt.expando+"_"+Ne++;return this[t]=!0,t}}),wt.ajaxPrefilter("json jsonp",function(e,n,i){var o,r,s,a=!1!==e.jsonp&&(Ge.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ge.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return o=e.jsonpCallback=yt(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ge,"$1"+o):!1!==e.jsonp&&(e.url+=(Ae.test(e.url)?"&":"?")+e.jsonp+"="+o),e.converters["script json"]=function(){return s||wt.error(o+" was not called"),s[0]},e.dataTypes[0]="json",r=t[o],t[o]=function(){s=arguments},i.always(function(){void 0===r?wt(t).removeProp(o):t[o]=r,e[o]&&(e.jsonpCallback=n.jsonpCallback,Xe.push(o)),s&&yt(r)&&r(s[0]),s=r=void 0}),"script"}),vt.createHTMLDocument=function(){var t=st.implementation.createHTMLDocument("").body;return t.innerHTML="<form></form><form></form>",2===t.childNodes.length}(),wt.parseHTML=function(t,e,n){if("string"!=typeof t)return[];"boolean"==typeof e&&(n=e,e=!1);var i,o,r;return e||(vt.createHTMLDocument?(e=st.implementation.createHTMLDocument(""),i=e.createElement("base"),i.href=st.location.href,e.head.appendChild(i)):e=st),o=$t.exec(t),r=!n&&[],o?[e.createElement(o[1])]:(o=C([t],e,r),r&&r.length&&wt(r).remove(),wt.merge([],o.childNodes))},wt.fn.load=function(t,e,n){var i,o,r,s=this,a=t.indexOf(" ");return a>-1&&(i=Y(t.slice(a)),t=t.slice(0,a)),yt(e)?(n=e,e=void 0):e&&"object"==typeof e&&(o="POST"),s.length>0&&wt.ajax({url:t,type:o||"GET",dataType:"html",data:e}).done(function(t){r=arguments,s.html(i?wt("<div>").append(wt.parseHTML(t)).find(i):t)}).always(n&&function(t,e){s.each(function(){n.apply(this,r||[t.responseText,e,t])})}),this},wt.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(t,e){wt.fn[e]=function(t){return this.on(e,t)}}),wt.expr.pseudos.animated=function(t){return wt.grep(wt.timers,function(e){return t===e.elem}).length},wt.offset={setOffset:function(t,e,n){var i,o,r,s,a,l,u,c=wt.css(t,"position"),f=wt(t),p={};"static"===c&&(t.style.position="relative"),a=f.offset(),r=wt.css(t,"top"),l=wt.css(t,"left"),u=("absolute"===c||"fixed"===c)&&(r+l).indexOf("auto")>-1,u?(i=f.position(),s=i.top,o=i.left):(s=parseFloat(r)||0,o=parseFloat(l)||0),yt(e)&&(e=e.call(t,n,wt.extend({},a))),null!=e.top&&(p.top=e.top-a.top+s),null!=e.left&&(p.left=e.left-a.left+o),"using"in e?e.using.call(t,p):f.css(p)}},wt.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){wt.offset.setOffset(this,t,e)});var e,n,i=this[0];if(i)return i.getClientRects().length?(e=i.getBoundingClientRect(),n=i.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}},position:function(){if(this[0]){var t,e,n,i=this[0],o={top:0,left:0};if("fixed"===wt.css(i,"position"))e=i.getBoundingClientRect();else{for(e=this.offset(),n=i.ownerDocument,t=i.offsetParent||n.documentElement;t&&(t===n.body||t===n.documentElement)&&"static"===wt.css(t,"position");)t=t.parentNode;t&&t!==i&&1===t.nodeType&&(o=wt(t).offset(),o.top+=wt.css(t,"borderTopWidth",!0),o.left+=wt.css(t,"borderLeftWidth",!0))}return{top:e.top-o.top-wt.css(i,"marginTop",!0),left:e.left-o.left-wt.css(i,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var t=this.offsetParent;t&&"static"===wt.css(t,"position");)t=t.offsetParent;return t||te})}}),wt.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,e){var n="pageYOffset"===e;wt.fn[t]=function(i){return Rt(this,function(t,i,o){var r;if(bt(t)?r=t:9===t.nodeType&&(r=t.defaultView),void 0===o)return r?r[e]:t[i];r?r.scrollTo(n?r.pageXOffset:o,n?o:r.pageYOffset):t[i]=o},t,i,arguments.length)}}),wt.each(["top","left"],function(t,e){wt.cssHooks[e]=q(vt.pixelPosition,function(t,n){if(n)return n=R(t,e),le.test(n)?wt(t).position()[e]+"px":n})}),wt.each({Height:"height",Width:"width"},function(t,e){wt.each({padding:"inner"+t,content:e,"":"outer"+t},function(n,i){wt.fn[i]=function(o,r){var s=arguments.length&&(n||"boolean"!=typeof o),a=n||(!0===o||!0===r?"margin":"border");return Rt(this,function(e,n,o){var r;return bt(e)?0===i.indexOf("outer")?e["inner"+t]:e.document.documentElement["client"+t]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+t],r["scroll"+t],e.body["offset"+t],r["offset"+t],r["client"+t])):void 0===o?wt.css(e,n,a):wt.style(e,n,o,a)},e,s?o:void 0,s)}})}),wt.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(t,e){wt.fn[e]=function(t,n){return arguments.length>0?this.on(e,null,t,n):this.trigger(e)}}),wt.fn.extend({hover:function(t,e){return this.mouseenter(t).mouseleave(e||t)}}),wt.fn.extend({bind:function(t,e,n){return this.on(t,null,e,n)},unbind:function(t,e){return this.off(t,null,e)},delegate:function(t,e,n,i){return this.on(e,t,n,i)},undelegate:function(t,e,n){return 1===arguments.length?this.off(t,"**"):this.off(e,t||"**",n)}}),wt.proxy=function(t,e){var n,i,o;if("string"==typeof e&&(n=t[e],e=t,t=n),yt(t))return i=lt.call(arguments,2),o=function(){return t.apply(e||this,i.concat(lt.call(arguments)))},o.guid=t.guid=t.guid||wt.guid++,o},wt.holdReady=function(t){t?wt.readyWait++:wt.ready(!0)},wt.isArray=Array.isArray,wt.parseJSON=JSON.parse,wt.nodeName=r,wt.isFunction=yt,wt.isWindow=bt,wt.camelCase=h,wt.type=i,wt.now=Date.now,wt.isNumeric=function(t){var e=wt.type(t);return("number"===e||"string"===e)&&!isNaN(t-parseFloat(t))},"function"==typeof define&&define.amd&&define("jquery",[],function(){return wt});var Ye=t.jQuery,Je=t.$;return wt.noConflict=function(e){return t.$===wt&&(t.$=Je),e&&t.jQuery===wt&&(t.jQuery=Ye),wt},e||(t.jQuery=t.$=wt),wt}),"undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(t){"use strict";var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||e[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),function(t){"use strict";function e(){var t=document.createElement("bootstrap"),e={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var n in e)if(void 0!==t.style[n])return{end:e[n]};return!1}t.fn.emulateTransitionEnd=function(e){var n=!1,i=this;t(this).one("bsTransitionEnd",function(){n=!0});var o=function(){n||t(i).trigger(t.support.transition.end)};return setTimeout(o,e),this},t(function(){t.support.transition=e(),t.support.transition&&(t.event.special.bsTransitionEnd={bindType:t.support.transition.end,delegateType:t.support.transition.end,handle:function(e){if(t(e.target).is(this))return e.handleObj.handler.apply(this,arguments)}})})}(jQuery),function(t){"use strict";function e(e){return this.each(function(){var n=t(this),o=n.data("bs.alert");o||n.data("bs.alert",o=new i(this)),"string"==typeof e&&o[e].call(n)})}var n='[data-dismiss="alert"]',i=function(e){t(e).on("click",n,this.close)};i.VERSION="3.3.7",i.TRANSITION_DURATION=150,i.prototype.close=function(e){function n(){s.detach().trigger("closed.bs.alert").remove()}var o=t(this),r=o.attr("data-target");r||(r=o.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,""));var s=t("#"===r?[]:r);e&&e.preventDefault(),s.length||(s=o.closest(".alert")),s.trigger(e=t.Event("close.bs.alert")),e.isDefaultPrevented()||(s.removeClass("in"),t.support.transition&&s.hasClass("fade")?s.one("bsTransitionEnd",n).emulateTransitionEnd(i.TRANSITION_DURATION):n())};var o=t.fn.alert;t.fn.alert=e,t.fn.alert.Constructor=i,t.fn.alert.noConflict=function(){return t.fn.alert=o,this},t(document).on("click.bs.alert.data-api",n,i.prototype.close)}(jQuery),function(t){"use strict";function e(e){return this.each(function(){var i=t(this),o=i.data("bs.button"),r="object"==typeof e&&e;o||i.data("bs.button",o=new n(this,r)),"toggle"==e?o.toggle():e&&o.setState(e)})}var n=function(e,i){this.$element=t(e),this.options=t.extend({},n.DEFAULTS,i),this.isLoading=!1};n.VERSION="3.3.7",n.DEFAULTS={loadingText:"loading..."},n.prototype.setState=function(e){var n="disabled",i=this.$element,o=i.is("input")?"val":"html",r=i.data();e+="Text",null==r.resetText&&i.data("resetText",i[o]()),setTimeout(t.proxy(function(){i[o](null==r[e]?this.options[e]:r[e]),"loadingText"==e?(this.isLoading=!0,i.addClass(n).attr(n,n).prop(n,!0)):this.isLoading&&(this.isLoading=!1,i.removeClass(n).removeAttr(n).prop(n,!1))},this),0)},n.prototype.toggle=function(){var t=!0,e=this.$element.closest('[data-toggle="buttons"]');if(e.length){var n=this.$element.find("input");"radio"==n.prop("type")?(n.prop("checked")&&(t=!1),e.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==n.prop("type")&&(n.prop("checked")!==this.$element.hasClass("active")&&(t=!1),this.$element.toggleClass("active")),n.prop("checked",this.$element.hasClass("active")),t&&n.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var i=t.fn.button;t.fn.button=e,t.fn.button.Constructor=n,t.fn.button.noConflict=function(){return t.fn.button=i,this},t(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(n){var i=t(n.target).closest(".btn");e.call(i,"toggle"),t(n.target).is('input[type="radio"], input[type="checkbox"]')||(n.preventDefault(),i.is("input,button")?i.trigger("focus"):i.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(e){t(e.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(e.type))})}(jQuery),function(t){"use strict";function e(e){return this.each(function(){var i=t(this),o=i.data("bs.carousel"),r=t.extend({},n.DEFAULTS,i.data(),"object"==typeof e&&e),s="string"==typeof e?e:r.slide;o||i.data("bs.carousel",o=new n(this,r)),"number"==typeof e?o.to(e):s?o[s]():r.interval&&o.pause().cycle()})}var n=function(e,n){this.$element=t(e),this.$indicators=this.$element.find(".carousel-indicators"),this.options=n,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",t.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",t.proxy(this.pause,this)).on("mouseleave.bs.carousel",t.proxy(this.cycle,this))};n.VERSION="3.3.7",n.TRANSITION_DURATION=600,n.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},n.prototype.keydown=function(t){if(!/input|textarea/i.test(t.target.tagName)){switch(t.which){case 37:this.prev();break;case 39:this.next();break;default:return}t.preventDefault()}},n.prototype.cycle=function(e){return e||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(t.proxy(this.next,this),this.options.interval)),this},n.prototype.getItemIndex=function(t){return this.$items=t.parent().children(".item"),this.$items.index(t||this.$active)},n.prototype.getItemForDirection=function(t,e){var n=this.getItemIndex(e);if(("prev"==t&&0===n||"next"==t&&n==this.$items.length-1)&&!this.options.wrap)return e;var i="prev"==t?-1:1,o=(n+i)%this.$items.length;return this.$items.eq(o)},n.prototype.to=function(t){var e=this,n=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(t>this.$items.length-1||t<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){e.to(t)}):n==t?this.pause().cycle():this.slide(t>n?"next":"prev",this.$items.eq(t))},n.prototype.pause=function(e){return e||(this.paused=!0),this.$element.find(".next, .prev").length&&t.support.transition&&(this.$element.trigger(t.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},n.prototype.next=function(){if(!this.sliding)return this.slide("next")},n.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},n.prototype.slide=function(e,i){var o=this.$element.find(".item.active"),r=i||this.getItemForDirection(e,o),s=this.interval,a="next"==e?"left":"right",l=this;if(r.hasClass("active"))return this.sliding=!1;var u=r[0],c=t.Event("slide.bs.carousel",{relatedTarget:u,direction:a});if(this.$element.trigger(c),!c.isDefaultPrevented()){if(this.sliding=!0,s&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var f=t(this.$indicators.children()[this.getItemIndex(r)]);f&&f.addClass("active")}var p=t.Event("slid.bs.carousel",{relatedTarget:u,direction:a});return t.support.transition&&this.$element.hasClass("slide")?(r.addClass(e),r[0].offsetWidth,o.addClass(a),r.addClass(a),o.one("bsTransitionEnd",function(){r.removeClass([e,a].join(" ")).addClass("active"),o.removeClass(["active",a].join(" ")),l.sliding=!1,setTimeout(function(){l.$element.trigger(p)},0)}).emulateTransitionEnd(n.TRANSITION_DURATION)):(o.removeClass("active"),r.addClass("active"),this.sliding=!1,this.$element.trigger(p)),s&&this.cycle(),this}};var i=t.fn.carousel;t.fn.carousel=e,t.fn.carousel.Constructor=n,t.fn.carousel.noConflict=function(){return t.fn.carousel=i,this};var o=function(n){var i,o=t(this),r=t(o.attr("data-target")||(i=o.attr("href"))&&i.replace(/.*(?=#[^\s]+$)/,""));if(r.hasClass("carousel")){var s=t.extend({},r.data(),o.data()),a=o.attr("data-slide-to");a&&(s.interval=!1),e.call(r,s),a&&r.data("bs.carousel").to(a),n.preventDefault()}};t(document).on("click.bs.carousel.data-api","[data-slide]",o).on("click.bs.carousel.data-api","[data-slide-to]",o),t(window).on("load",function(){t('[data-ride="carousel"]').each(function(){var n=t(this);e.call(n,n.data())})})}(jQuery),function(t){"use strict";function e(e){var n,i=e.attr("data-target")||(n=e.attr("href"))&&n.replace(/.*(?=#[^\s]+$)/,"");return t(i)}function n(e){return this.each(function(){var n=t(this),o=n.data("bs.collapse"),r=t.extend({},i.DEFAULTS,n.data(),"object"==typeof e&&e);!o&&r.toggle&&/show|hide/.test(e)&&(r.toggle=!1),o||n.data("bs.collapse",o=new i(this,r)),"string"==typeof e&&o[e]()})}var i=function(e,n){this.$element=t(e),this.options=t.extend({},i.DEFAULTS,n),this.$trigger=t('[data-toggle="collapse"][href="#'+e.id+'"],[data-toggle="collapse"][data-target="#'+e.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),
+this.options.toggle&&this.toggle()};i.VERSION="3.3.7",i.TRANSITION_DURATION=350,i.DEFAULTS={toggle:!0},i.prototype.dimension=function(){return this.$element.hasClass("width")?"width":"height"},i.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var e,o=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(o&&o.length&&(e=o.data("bs.collapse"))&&e.transitioning)){var r=t.Event("show.bs.collapse");if(this.$element.trigger(r),!r.isDefaultPrevented()){o&&o.length&&(n.call(o,"hide"),e||o.data("bs.collapse",null));var s=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[s](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var a=function(){this.$element.removeClass("collapsing").addClass("collapse in")[s](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!t.support.transition)return a.call(this);var l=t.camelCase(["scroll",s].join("-"));this.$element.one("bsTransitionEnd",t.proxy(a,this)).emulateTransitionEnd(i.TRANSITION_DURATION)[s](this.$element[0][l])}}}},i.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var e=t.Event("hide.bs.collapse");if(this.$element.trigger(e),!e.isDefaultPrevented()){var n=this.dimension();this.$element[n](this.$element[n]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var o=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};if(!t.support.transition)return o.call(this);this.$element[n](0).one("bsTransitionEnd",t.proxy(o,this)).emulateTransitionEnd(i.TRANSITION_DURATION)}}},i.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},i.prototype.getParent=function(){return t(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(t.proxy(function(n,i){var o=t(i);this.addAriaAndCollapsedClass(e(o),o)},this)).end()},i.prototype.addAriaAndCollapsedClass=function(t,e){var n=t.hasClass("in");t.attr("aria-expanded",n),e.toggleClass("collapsed",!n).attr("aria-expanded",n)};var o=t.fn.collapse;t.fn.collapse=n,t.fn.collapse.Constructor=i,t.fn.collapse.noConflict=function(){return t.fn.collapse=o,this},t(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(i){var o=t(this);o.attr("data-target")||i.preventDefault();var r=e(o),s=r.data("bs.collapse"),a=s?"toggle":o.data();n.call(r,a)})}(jQuery),function(t){"use strict";function e(e){var n=e.attr("data-target");n||(n=e.attr("href"),n=n&&/#[A-Za-z]/.test(n)&&n.replace(/.*(?=#[^\s]*$)/,""));var i=n&&t(n);return i&&i.length?i:e.parent()}function n(n){n&&3===n.which||(t(o).remove(),t(r).each(function(){var i=t(this),o=e(i),r={relatedTarget:this};o.hasClass("open")&&(n&&"click"==n.type&&/input|textarea/i.test(n.target.tagName)&&t.contains(o[0],n.target)||(o.trigger(n=t.Event("hide.bs.dropdown",r)),n.isDefaultPrevented()||(i.attr("aria-expanded","false"),o.removeClass("open").trigger(t.Event("hidden.bs.dropdown",r)))))}))}function i(e){return this.each(function(){var n=t(this),i=n.data("bs.dropdown");i||n.data("bs.dropdown",i=new s(this)),"string"==typeof e&&i[e].call(n)})}var o=".dropdown-backdrop",r='[data-toggle="dropdown"]',s=function(e){t(e).on("click.bs.dropdown",this.toggle)};s.VERSION="3.3.7",s.prototype.toggle=function(i){var o=t(this);if(!o.is(".disabled, :disabled")){var r=e(o),s=r.hasClass("open");if(n(),!s){"ontouchstart"in document.documentElement&&!r.closest(".navbar-nav").length&&t(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(t(this)).on("click",n);var a={relatedTarget:this};if(r.trigger(i=t.Event("show.bs.dropdown",a)),i.isDefaultPrevented())return;o.trigger("focus").attr("aria-expanded","true"),r.toggleClass("open").trigger(t.Event("shown.bs.dropdown",a))}return!1}},s.prototype.keydown=function(n){if(/(38|40|27|32)/.test(n.which)&&!/input|textarea/i.test(n.target.tagName)){var i=t(this);if(n.preventDefault(),n.stopPropagation(),!i.is(".disabled, :disabled")){var o=e(i),s=o.hasClass("open");if(!s&&27!=n.which||s&&27==n.which)return 27==n.which&&o.find(r).trigger("focus"),i.trigger("click");var a=o.find(".dropdown-menu li:not(.disabled):visible a");if(a.length){var l=a.index(n.target);38==n.which&&l>0&&l--,40==n.which&&l<a.length-1&&l++,~l||(l=0),a.eq(l).trigger("focus")}}}};var a=t.fn.dropdown;t.fn.dropdown=i,t.fn.dropdown.Constructor=s,t.fn.dropdown.noConflict=function(){return t.fn.dropdown=a,this},t(document).on("click.bs.dropdown.data-api",n).on("click.bs.dropdown.data-api",".dropdown form",function(t){t.stopPropagation()}).on("click.bs.dropdown.data-api",r,s.prototype.toggle).on("keydown.bs.dropdown.data-api",r,s.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",s.prototype.keydown)}(jQuery),function(t){"use strict";function e(e,i){return this.each(function(){var o=t(this),r=o.data("bs.modal"),s=t.extend({},n.DEFAULTS,o.data(),"object"==typeof e&&e);r||o.data("bs.modal",r=new n(this,s)),"string"==typeof e?r[e](i):s.show&&r.show(i)})}var n=function(e,n){this.options=n,this.$body=t(document.body),this.$element=t(e),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,t.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};n.VERSION="3.3.7",n.TRANSITION_DURATION=300,n.BACKDROP_TRANSITION_DURATION=150,n.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},n.prototype.toggle=function(t){return this.isShown?this.hide():this.show(t)},n.prototype.show=function(e){var i=this,o=t.Event("show.bs.modal",{relatedTarget:e});this.$element.trigger(o),this.isShown||o.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',t.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){i.$element.one("mouseup.dismiss.bs.modal",function(e){t(e.target).is(i.$element)&&(i.ignoreBackdropClick=!0)})}),this.backdrop(function(){var o=t.support.transition&&i.$element.hasClass("fade");i.$element.parent().length||i.$element.appendTo(i.$body),i.$element.show().scrollTop(0),i.adjustDialog(),o&&i.$element[0].offsetWidth,i.$element.addClass("in"),i.enforceFocus();var r=t.Event("shown.bs.modal",{relatedTarget:e});o?i.$dialog.one("bsTransitionEnd",function(){i.$element.trigger("focus").trigger(r)}).emulateTransitionEnd(n.TRANSITION_DURATION):i.$element.trigger("focus").trigger(r)}))},n.prototype.hide=function(e){e&&e.preventDefault(),e=t.Event("hide.bs.modal"),this.$element.trigger(e),this.isShown&&!e.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),t(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),t.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",t.proxy(this.hideModal,this)).emulateTransitionEnd(n.TRANSITION_DURATION):this.hideModal())},n.prototype.enforceFocus=function(){t(document).off("focusin.bs.modal").on("focusin.bs.modal",t.proxy(function(t){document===t.target||this.$element[0]===t.target||this.$element.has(t.target).length||this.$element.trigger("focus")},this))},n.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",t.proxy(function(t){27==t.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},n.prototype.resize=function(){this.isShown?t(window).on("resize.bs.modal",t.proxy(this.handleUpdate,this)):t(window).off("resize.bs.modal")},n.prototype.hideModal=function(){var t=this;this.$element.hide(),this.backdrop(function(){t.$body.removeClass("modal-open"),t.resetAdjustments(),t.resetScrollbar(),t.$element.trigger("hidden.bs.modal")})},n.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},n.prototype.backdrop=function(e){var i=this,o=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var r=t.support.transition&&o;if(this.$backdrop=t(document.createElement("div")).addClass("modal-backdrop "+o).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",t.proxy(function(t){if(this.ignoreBackdropClick)return void(this.ignoreBackdropClick=!1);t.target===t.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide())},this)),r&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!e)return;r?this.$backdrop.one("bsTransitionEnd",e).emulateTransitionEnd(n.BACKDROP_TRANSITION_DURATION):e()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var s=function(){i.removeBackdrop(),e&&e()};t.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",s).emulateTransitionEnd(n.BACKDROP_TRANSITION_DURATION):s()}else e&&e()},n.prototype.handleUpdate=function(){this.adjustDialog()},n.prototype.adjustDialog=function(){var t=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},n.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},n.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth<t,this.scrollbarWidth=this.measureScrollbar()},n.prototype.setScrollbar=function(){var t=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",t+this.scrollbarWidth)},n.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},n.prototype.measureScrollbar=function(){var t=document.createElement("div");t.className="modal-scrollbar-measure",this.$body.append(t);var e=t.offsetWidth-t.clientWidth;return this.$body[0].removeChild(t),e};var i=t.fn.modal;t.fn.modal=e,t.fn.modal.Constructor=n,t.fn.modal.noConflict=function(){return t.fn.modal=i,this},t(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(n){var i=t(this),o=i.attr("href"),r=t(i.attr("data-target")||o&&o.replace(/.*(?=#[^\s]+$)/,"")),s=r.data("bs.modal")?"toggle":t.extend({remote:!/#/.test(o)&&o},r.data(),i.data());i.is("a")&&n.preventDefault(),r.one("show.bs.modal",function(t){t.isDefaultPrevented()||r.one("hidden.bs.modal",function(){i.is(":visible")&&i.trigger("focus")})}),e.call(r,s,this)})}(jQuery),function(t){"use strict";function e(e){return this.each(function(){var i=t(this),o=i.data("bs.tooltip"),r="object"==typeof e&&e;!o&&/destroy|hide/.test(e)||(o||i.data("bs.tooltip",o=new n(this,r)),"string"==typeof e&&o[e]())})}var n=function(t,e){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",t,e)};n.VERSION="3.3.7",n.TRANSITION_DURATION=150,n.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},n.prototype.init=function(e,n,i){if(this.enabled=!0,this.type=e,this.$element=t(n),this.options=this.getOptions(i),this.$viewport=this.options.viewport&&t(t.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var o=this.options.trigger.split(" "),r=o.length;r--;){var s=o[r];if("click"==s)this.$element.on("click."+this.type,this.options.selector,t.proxy(this.toggle,this));else if("manual"!=s){var a="hover"==s?"mouseenter":"focusin",l="hover"==s?"mouseleave":"focusout";this.$element.on(a+"."+this.type,this.options.selector,t.proxy(this.enter,this)),this.$element.on(l+"."+this.type,this.options.selector,t.proxy(this.leave,this))}}this.options.selector?this._options=t.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},n.prototype.getDefaults=function(){return n.DEFAULTS},n.prototype.getOptions=function(e){return e=t.extend({},this.getDefaults(),this.$element.data(),e),e.delay&&"number"==typeof e.delay&&(e.delay={show:e.delay,hide:e.delay}),e},n.prototype.getDelegateOptions=function(){var e={},n=this.getDefaults();return this._options&&t.each(this._options,function(t,i){n[t]!=i&&(e[t]=i)}),e},n.prototype.enter=function(e){var n=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);return n||(n=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,n)),e instanceof t.Event&&(n.inState["focusin"==e.type?"focus":"hover"]=!0),n.tip().hasClass("in")||"in"==n.hoverState?void(n.hoverState="in"):(clearTimeout(n.timeout),n.hoverState="in",n.options.delay&&n.options.delay.show?void(n.timeout=setTimeout(function(){"in"==n.hoverState&&n.show()},n.options.delay.show)):n.show())},n.prototype.isInStateTrue=function(){for(var t in this.inState)if(this.inState[t])return!0;return!1},n.prototype.leave=function(e){var n=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);if(n||(n=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,n)),e instanceof t.Event&&(n.inState["focusout"==e.type?"focus":"hover"]=!1),!n.isInStateTrue()){if(clearTimeout(n.timeout),n.hoverState="out",!n.options.delay||!n.options.delay.hide)return n.hide();n.timeout=setTimeout(function(){"out"==n.hoverState&&n.hide()},n.options.delay.hide)}},n.prototype.show=function(){var e=t.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(e);var i=t.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(e.isDefaultPrevented()||!i)return;var o=this,r=this.tip(),s=this.getUID(this.type);this.setContent(),r.attr("id",s),this.$element.attr("aria-describedby",s),this.options.animation&&r.addClass("fade");var a="function"==typeof this.options.placement?this.options.placement.call(this,r[0],this.$element[0]):this.options.placement,l=/\s?auto?\s?/i,u=l.test(a);u&&(a=a.replace(l,"")||"top"),r.detach().css({top:0,left:0,display:"block"}).addClass(a).data("bs."+this.type,this),this.options.container?r.appendTo(this.options.container):r.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var c=this.getPosition(),f=r[0].offsetWidth,p=r[0].offsetHeight;if(u){var d=a,h=this.getPosition(this.$viewport);a="bottom"==a&&c.bottom+p>h.bottom?"top":"top"==a&&c.top-p<h.top?"bottom":"right"==a&&c.right+f>h.width?"left":"left"==a&&c.left-f<h.left?"right":a,r.removeClass(d).addClass(a)}var g=this.getCalculatedOffset(a,c,f,p);this.applyPlacement(g,a);var m=function(){var t=o.hoverState;o.$element.trigger("shown.bs."+o.type),o.hoverState=null,"out"==t&&o.leave(o)};t.support.transition&&this.$tip.hasClass("fade")?r.one("bsTransitionEnd",m).emulateTransitionEnd(n.TRANSITION_DURATION):m()}},n.prototype.applyPlacement=function(e,n){var i=this.tip(),o=i[0].offsetWidth,r=i[0].offsetHeight,s=parseInt(i.css("margin-top"),10),a=parseInt(i.css("margin-left"),10);isNaN(s)&&(s=0),isNaN(a)&&(a=0),e.top+=s,e.left+=a,t.offset.setOffset(i[0],t.extend({using:function(t){i.css({top:Math.round(t.top),left:Math.round(t.left)})}},e),0),i.addClass("in");var l=i[0].offsetWidth,u=i[0].offsetHeight;"top"==n&&u!=r&&(e.top=e.top+r-u);var c=this.getViewportAdjustedDelta(n,e,l,u);c.left?e.left+=c.left:e.top+=c.top;var f=/top|bottom/.test(n),p=f?2*c.left-o+l:2*c.top-r+u,d=f?"offsetWidth":"offsetHeight";i.offset(e),this.replaceArrow(p,i[0][d],f)},n.prototype.replaceArrow=function(t,e,n){this.arrow().css(n?"left":"top",50*(1-t/e)+"%").css(n?"top":"left","")},n.prototype.setContent=function(){var t=this.tip(),e=this.getTitle();t.find(".tooltip-inner")[this.options.html?"html":"text"](e),t.removeClass("fade in top bottom left right")},n.prototype.hide=function(e){function i(){"in"!=o.hoverState&&r.detach(),o.$element&&o.$element.removeAttr("aria-describedby").trigger("hidden.bs."+o.type),e&&e()}var o=this,r=t(this.$tip),s=t.Event("hide.bs."+this.type);if(this.$element.trigger(s),!s.isDefaultPrevented())return r.removeClass("in"),t.support.transition&&r.hasClass("fade")?r.one("bsTransitionEnd",i).emulateTransitionEnd(n.TRANSITION_DURATION):i(),this.hoverState=null,this},n.prototype.fixTitle=function(){var t=this.$element;(t.attr("title")||"string"!=typeof t.attr("data-original-title"))&&t.attr("data-original-title",t.attr("title")||"").attr("title","")},n.prototype.hasContent=function(){return this.getTitle()},n.prototype.getPosition=function(e){e=e||this.$element;var n=e[0],i="BODY"==n.tagName,o=n.getBoundingClientRect();null==o.width&&(o=t.extend({},o,{width:o.right-o.left,height:o.bottom-o.top}));var r=window.SVGElement&&n instanceof window.SVGElement,s=i?{top:0,left:0}:r?null:e.offset(),a={scroll:i?document.documentElement.scrollTop||document.body.scrollTop:e.scrollTop()},l=i?{width:t(window).width(),height:t(window).height()}:null;return t.extend({},o,a,l,s)},n.prototype.getCalculatedOffset=function(t,e,n,i){return"bottom"==t?{top:e.top+e.height,left:e.left+e.width/2-n/2}:"top"==t?{top:e.top-i,left:e.left+e.width/2-n/2}:"left"==t?{top:e.top+e.height/2-i/2,left:e.left-n}:{top:e.top+e.height/2-i/2,left:e.left+e.width}},n.prototype.getViewportAdjustedDelta=function(t,e,n,i){var o={top:0,left:0};if(!this.$viewport)return o;var r=this.options.viewport&&this.options.viewport.padding||0,s=this.getPosition(this.$viewport);if(/right|left/.test(t)){var a=e.top-r-s.scroll,l=e.top+r-s.scroll+i;a<s.top?o.top=s.top-a:l>s.top+s.height&&(o.top=s.top+s.height-l)}else{var u=e.left-r,c=e.left+r+n;u<s.left?o.left=s.left-u:c>s.right&&(o.left=s.left+s.width-c)}return o},n.prototype.getTitle=function(){var t=this.$element,e=this.options;return t.attr("data-original-title")||("function"==typeof e.title?e.title.call(t[0]):e.title)},n.prototype.getUID=function(t){do{t+=~~(1e6*Math.random())}while(document.getElementById(t));return t},n.prototype.tip=function(){if(!this.$tip&&(this.$tip=t(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},n.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},n.prototype.enable=function(){this.enabled=!0},n.prototype.disable=function(){this.enabled=!1},n.prototype.toggleEnabled=function(){this.enabled=!this.enabled},n.prototype.toggle=function(e){var n=this;e&&((n=t(e.currentTarget).data("bs."+this.type))||(n=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,n))),e?(n.inState.click=!n.inState.click,n.isInStateTrue()?n.enter(n):n.leave(n)):n.tip().hasClass("in")?n.leave(n):n.enter(n)},n.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide(function(){t.$element.off("."+t.type).removeData("bs."+t.type),t.$tip&&t.$tip.detach(),t.$tip=null,t.$arrow=null,t.$viewport=null,t.$element=null})};var i=t.fn.tooltip;t.fn.tooltip=e,t.fn.tooltip.Constructor=n,t.fn.tooltip.noConflict=function(){return t.fn.tooltip=i,this}}(jQuery),function(t){"use strict";function e(e){return this.each(function(){var i=t(this),o=i.data("bs.popover"),r="object"==typeof e&&e;!o&&/destroy|hide/.test(e)||(o||i.data("bs.popover",o=new n(this,r)),"string"==typeof e&&o[e]())})}var n=function(t,e){this.init("popover",t,e)};if(!t.fn.tooltip)throw new Error("Popover requires tooltip.js");n.VERSION="3.3.7",n.DEFAULTS=t.extend({},t.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),n.prototype=t.extend({},t.fn.tooltip.Constructor.prototype),n.prototype.constructor=n,n.prototype.getDefaults=function(){return n.DEFAULTS},n.prototype.setContent=function(){var t=this.tip(),e=this.getTitle(),n=this.getContent();t.find(".popover-title")[this.options.html?"html":"text"](e),t.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof n?"html":"append":"text"](n),t.removeClass("fade top bottom left right in"),t.find(".popover-title").html()||t.find(".popover-title").hide()},n.prototype.hasContent=function(){return this.getTitle()||this.getContent()},n.prototype.getContent=function(){var t=this.$element,e=this.options;return t.attr("data-content")||("function"==typeof e.content?e.content.call(t[0]):e.content)},n.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var i=t.fn.popover;t.fn.popover=e,t.fn.popover.Constructor=n,t.fn.popover.noConflict=function(){return t.fn.popover=i,this}}(jQuery),function(t){"use strict";function e(n,i){this.$body=t(document.body),this.$scrollElement=t(t(n).is(document.body)?window:n),this.options=t.extend({},e.DEFAULTS,i),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",t.proxy(this.process,this)),this.refresh(),this.process()}function n(n){return this.each(function(){var i=t(this),o=i.data("bs.scrollspy"),r="object"==typeof n&&n;o||i.data("bs.scrollspy",o=new e(this,r)),"string"==typeof n&&o[n]()})}e.VERSION="3.3.7",e.DEFAULTS={offset:10},e.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},e.prototype.refresh=function(){var e=this,n="offset",i=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),t.isWindow(this.$scrollElement[0])||(n="position",i=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var e=t(this),o=e.data("target")||e.attr("href"),r=/^#./.test(o)&&t(o);return r&&r.length&&r.is(":visible")&&[[r[n]().top+i,o]]||null}).sort(function(t,e){return t[0]-e[0]}).each(function(){e.offsets.push(this[0]),e.targets.push(this[1])})},e.prototype.process=function(){var t,e=this.$scrollElement.scrollTop()+this.options.offset,n=this.getScrollHeight(),i=this.options.offset+n-this.$scrollElement.height(),o=this.offsets,r=this.targets,s=this.activeTarget;if(this.scrollHeight!=n&&this.refresh(),e>=i)return s!=(t=r[r.length-1])&&this.activate(t);if(s&&e<o[0])return this.activeTarget=null,this.clear();for(t=o.length;t--;)s!=r[t]&&e>=o[t]&&(void 0===o[t+1]||e<o[t+1])&&this.activate(r[t])},e.prototype.activate=function(e){this.activeTarget=e,this.clear();var n=this.selector+'[data-target="'+e+'"],'+this.selector+'[href="'+e+'"]',i=t(n).parents("li").addClass("active");i.parent(".dropdown-menu").length&&(i=i.closest("li.dropdown").addClass("active")),i.trigger("activate.bs.scrollspy")},e.prototype.clear=function(){t(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var i=t.fn.scrollspy;t.fn.scrollspy=n,t.fn.scrollspy.Constructor=e,t.fn.scrollspy.noConflict=function(){return t.fn.scrollspy=i,this},t(window).on("load.bs.scrollspy.data-api",function(){t('[data-spy="scroll"]').each(function(){var e=t(this);n.call(e,e.data())})})}(jQuery),function(t){"use strict";function e(e){return this.each(function(){var i=t(this),o=i.data("bs.tab");o||i.data("bs.tab",o=new n(this)),"string"==typeof e&&o[e]()})}var n=function(e){this.element=t(e)};n.VERSION="3.3.7",n.TRANSITION_DURATION=150,n.prototype.show=function(){var e=this.element,n=e.closest("ul:not(.dropdown-menu)"),i=e.data("target");if(i||(i=e.attr("href"),i=i&&i.replace(/.*(?=#[^\s]*$)/,"")),!e.parent("li").hasClass("active")){var o=n.find(".active:last a"),r=t.Event("hide.bs.tab",{relatedTarget:e[0]}),s=t.Event("show.bs.tab",{relatedTarget:o[0]});if(o.trigger(r),e.trigger(s),!s.isDefaultPrevented()&&!r.isDefaultPrevented()){var a=t(i);this.activate(e.closest("li"),n),this.activate(a,a.parent(),function(){o.trigger({type:"hidden.bs.tab",relatedTarget:e[0]}),e.trigger({type:"shown.bs.tab",relatedTarget:o[0]})})}}},n.prototype.activate=function(e,i,o){function r(){s.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),e.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),a?(e[0].offsetWidth,e.addClass("in")):e.removeClass("fade"),e.parent(".dropdown-menu").length&&e.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),o&&o()}var s=i.find("> .active"),a=o&&t.support.transition&&(s.length&&s.hasClass("fade")||!!i.find("> .fade").length);s.length&&a?s.one("bsTransitionEnd",r).emulateTransitionEnd(n.TRANSITION_DURATION):r(),s.removeClass("in")};var i=t.fn.tab;t.fn.tab=e,t.fn.tab.Constructor=n,t.fn.tab.noConflict=function(){return t.fn.tab=i,this};var o=function(n){n.preventDefault(),e.call(t(this),"show")};t(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',o).on("click.bs.tab.data-api",'[data-toggle="pill"]',o)}(jQuery),function(t){"use strict";function e(e){return this.each(function(){var i=t(this),o=i.data("bs.affix"),r="object"==typeof e&&e;o||i.data("bs.affix",o=new n(this,r)),"string"==typeof e&&o[e]()})}var n=function(e,i){this.options=t.extend({},n.DEFAULTS,i),this.$target=t(this.options.target).on("scroll.bs.affix.data-api",t.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",t.proxy(this.checkPositionWithEventLoop,this)),this.$element=t(e),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};n.VERSION="3.3.7",n.RESET="affix affix-top affix-bottom",n.DEFAULTS={offset:0,target:window},n.prototype.getState=function(t,e,n,i){var o=this.$target.scrollTop(),r=this.$element.offset(),s=this.$target.height();if(null!=n&&"top"==this.affixed)return o<n&&"top";if("bottom"==this.affixed)return null!=n?!(o+this.unpin<=r.top)&&"bottom":!(o+s<=t-i)&&"bottom";var a=null==this.affixed,l=a?o:r.top,u=a?s:e;return null!=n&&o<=n?"top":null!=i&&l+u>=t-i&&"bottom"},n.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(n.RESET).addClass("affix");var t=this.$target.scrollTop(),e=this.$element.offset();return this.pinnedOffset=e.top-t},n.prototype.checkPositionWithEventLoop=function(){setTimeout(t.proxy(this.checkPosition,this),1)},n.prototype.checkPosition=function(){if(this.$element.is(":visible")){var e=this.$element.height(),i=this.options.offset,o=i.top,r=i.bottom,s=Math.max(t(document).height(),t(document.body).height());"object"!=typeof i&&(r=o=i),"function"==typeof o&&(o=i.top(this.$element)),"function"==typeof r&&(r=i.bottom(this.$element));var a=this.getState(s,e,o,r);if(this.affixed!=a){null!=this.unpin&&this.$element.css("top","");var l="affix"+(a?"-"+a:""),u=t.Event(l+".bs.affix");if(this.$element.trigger(u),u.isDefaultPrevented())return;this.affixed=a,this.unpin="bottom"==a?this.getPinnedOffset():null,this.$element.removeClass(n.RESET).addClass(l).trigger(l.replace("affix","affixed")+".bs.affix")}"bottom"==a&&this.$element.offset({top:s-e-r})}};var i=t.fn.affix;t.fn.affix=e,t.fn.affix.Constructor=n,t.fn.affix.noConflict=function(){return t.fn.affix=i,this},t(window).on("load",function(){t('[data-spy="affix"]').each(function(){var n=t(this),i=n.data();i.offset=i.offset||{},null!=i.offsetBottom&&(i.offset.bottom=i.offsetBottom),null!=i.offsetTop&&(i.offset.top=i.offsetTop),e.call(n,i)})})}(jQuery),function(t,e){t(window).on("load",function(){window.location.hash&&t(window.location.hash).hasClass("tab-pane")&&(window.scrollTo(0,0),setTimeout(function(){window.scrollTo(0,0)},1))}),t(e).ready(function(){var e=window.location.hash;0==t("#rightcolumn").length&&(t("#midcolumn").attr("class","no-right-sidebar"),e&&(window.location.hash=e)),0==t("#main-sidebar").length&&(t("#midcolumn").attr("class","no-left-nav"),e&&(window.location.hash=e)),t("#showalltabs").click(function(){t(".tabs li").each(function(e,n){t(this).removeClass("active")}),t(".tab-pane").each(function(e,n){t(this).addClass("active")})}),e&&t('ul.nav a[href="'+e+'"]').tab("show")}),t(e).on("click",".yamm .dropdown-menu",function(t){t.stopPropagation()}),t(window).on("load resize scroll",function(){if(t(window).width()<1270)return t(".scrollup").hide(),!1;t(this).scrollTop()>100?t(".scrollup").fadeIn():t(".scrollup").fadeOut()}),t(".scrollup").click(function(){return t("html, body").animate({scrollTop:0},600),!1}),t(".nav-tabs a").click(function(e){t(this).tab("show"),history.pushState({},"",this.href),t(".alert:not(.stay-visible)").remove()}),t("a[data-tab-destination]").on("click",function(){var e=t(this).attr("data-tab-destination");t("#"+e).click()}),t(".solstice-collapse").click(function(){t(this).find("i").toggleClass("fa-chevron-down fa-chevron-up")}),feather.replace(),t(".featured-highlights-item").matchHeight(),t(".featured-story-block").matchHeight(),t(".news-list-match-height .media-link").matchHeight({byRow:!1}),t(".main-menu-search").on("shown.bs.dropdown",function(){t(".gsc-input").focus()}),t(e).bind("keydown","27",function(e){t(".eclipse-search a").dropdown("toggle")})}(jQuery,document);
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/javascript/main.min.js b/eclipse.org-common/themes/solstice/public/javascript/main.min.js
index 17ecbb3..42bf120 100644
--- a/eclipse.org-common/themes/solstice/public/javascript/main.min.js
+++ b/eclipse.org-common/themes/solstice/public/javascript/main.min.js
@@ -1,10 +1,8 @@
-function solsticeCreateCookie(name,value,path){document.cookie=name+"="+escape(value)+"; path="+path+";"}function solsticeFetchCookie(name){for(var cookie_value="",current_cookie="",name_and_equal=name+"=",all_cookies=document.cookie.split(";"),number_of_cookies=all_cookies.length,i=0;number_of_cookies>i;i++)if(current_cookie=all_cookies[i].trim(),0==current_cookie.indexOf(name_and_equal)){cookie_value=current_cookie.substring(name_and_equal.length,current_cookie.length);break}return cookie_value}if(function(global,factory){"object"==typeof module&&"object"==typeof module.exports?module.exports=global.document?factory(global,!0):function(w){if(!w.document)throw new Error("jQuery requires a window with a document");return factory(w)}:factory(global)}("undefined"!=typeof window?window:this,function(window,noGlobal){function isArrayLike(obj){var length=!!obj&&"length"in obj&&obj.length,type=jQuery.type(obj);return"function"===type||jQuery.isWindow(obj)?!1:"array"===type||0===length||"number"==typeof length&&length>0&&length-1 in obj}function winnow(elements,qualifier,not){if(jQuery.isFunction(qualifier))return jQuery.grep(elements,function(elem,i){return!!qualifier.call(elem,i,elem)!==not});if(qualifier.nodeType)return jQuery.grep(elements,function(elem){return elem===qualifier!==not});if("string"==typeof qualifier){if(risSimple.test(qualifier))return jQuery.filter(qualifier,elements,not);qualifier=jQuery.filter(qualifier,elements)}return jQuery.grep(elements,function(elem){return indexOf.call(qualifier,elem)>-1!==not})}function sibling(cur,dir){for(;(cur=cur[dir])&&1!==cur.nodeType;);return cur}function createOptions(options){var object={};return jQuery.each(options.match(rnotwhite)||[],function(_,flag){object[flag]=!0}),object}function completed(){document.removeEventListener("DOMContentLoaded",completed),window.removeEventListener("load",completed),jQuery.ready()}function Data(){this.expando=jQuery.expando+Data.uid++}function dataAttr(elem,key,data){var name;if(void 0===data&&1===elem.nodeType)if(name="data-"+key.replace(rmultiDash,"-$&").toLowerCase(),data=elem.getAttribute(name),"string"==typeof data){try{data="true"===data?!0:"false"===data?!1:"null"===data?null:+data+""===data?+data:rbrace.test(data)?jQuery.parseJSON(data):data}catch(e){}dataUser.set(elem,key,data)}else data=void 0;return data}function adjustCSS(elem,prop,valueParts,tween){var adjusted,scale=1,maxIterations=20,currentValue=tween?function(){return tween.cur()}:function(){return jQuery.css(elem,prop,"")},initial=currentValue(),unit=valueParts&&valueParts[3]||(jQuery.cssNumber[prop]?"":"px"),initialInUnit=(jQuery.cssNumber[prop]||"px"!==unit&&+initial)&&rcssNum.exec(jQuery.css(elem,prop));if(initialInUnit&&initialInUnit[3]!==unit){unit=unit||initialInUnit[3],valueParts=valueParts||[],initialInUnit=+initial||1;do scale=scale||".5",initialInUnit/=scale,jQuery.style(elem,prop,initialInUnit+unit);while(scale!==(scale=currentValue()/initial)&&1!==scale&&--maxIterations)}return valueParts&&(initialInUnit=+initialInUnit||+initial||0,adjusted=valueParts[1]?initialInUnit+(valueParts[1]+1)*valueParts[2]:+valueParts[2],tween&&(tween.unit=unit,tween.start=initialInUnit,tween.end=adjusted)),adjusted}function getAll(context,tag){var ret="undefined"!=typeof context.getElementsByTagName?context.getElementsByTagName(tag||"*"):"undefined"!=typeof context.querySelectorAll?context.querySelectorAll(tag||"*"):[];return void 0===tag||tag&&jQuery.nodeName(context,tag)?jQuery.merge([context],ret):ret}function setGlobalEval(elems,refElements){for(var i=0,l=elems.length;l>i;i++)dataPriv.set(elems[i],"globalEval",!refElements||dataPriv.get(refElements[i],"globalEval"))}function buildFragment(elems,context,scripts,selection,ignored){for(var elem,tmp,tag,wrap,contains,j,fragment=context.createDocumentFragment(),nodes=[],i=0,l=elems.length;l>i;i++)if(elem=elems[i],elem||0===elem)if("object"===jQuery.type(elem))jQuery.merge(nodes,elem.nodeType?[elem]:elem);else if(rhtml.test(elem)){for(tmp=tmp||fragment.appendChild(context.createElement("div")),tag=(rtagName.exec(elem)||["",""])[1].toLowerCase(),wrap=wrapMap[tag]||wrapMap._default,tmp.innerHTML=wrap[1]+jQuery.htmlPrefilter(elem)+wrap[2],j=wrap[0];j--;)tmp=tmp.lastChild;jQuery.merge(nodes,tmp.childNodes),tmp=fragment.firstChild,tmp.textContent=""}else nodes.push(context.createTextNode(elem));for(fragment.textContent="",i=0;elem=nodes[i++];)if(selection&&jQuery.inArray(elem,selection)>-1)ignored&&ignored.push(elem);else if(contains=jQuery.contains(elem.ownerDocument,elem),tmp=getAll(fragment.appendChild(elem),"script"),contains&&setGlobalEval(tmp),scripts)for(j=0;elem=tmp[j++];)rscriptType.test(elem.type||"")&&scripts.push(elem);return fragment}function returnTrue(){return!0}function returnFalse(){return!1}function safeActiveElement(){try{return document.activeElement}catch(err){}}function on(elem,types,selector,data,fn,one){var origFn,type;if("object"==typeof types){"string"!=typeof selector&&(data=data||selector,selector=void 0);for(type in types)on(elem,type,selector,data,types[type],one);return elem}if(null==data&&null==fn?(fn=selector,data=selector=void 0):null==fn&&("string"==typeof selector?(fn=data,data=void 0):(fn=data,data=selector,selector=void 0)),fn===!1)fn=returnFalse;else if(!fn)return elem;return 1===one&&(origFn=fn,fn=function(event){return jQuery().off(event),origFn.apply(this,arguments)},fn.guid=origFn.guid||(origFn.guid=jQuery.guid++)),elem.each(function(){jQuery.event.add(this,types,fn,data,selector)})}function manipulationTarget(elem,content){return jQuery.nodeName(elem,"table")&&jQuery.nodeName(11!==content.nodeType?content:content.firstChild,"tr")?elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody")):elem}function disableScript(elem){return elem.type=(null!==elem.getAttribute("type"))+"/"+elem.type,elem}function restoreScript(elem){var match=rscriptTypeMasked.exec(elem.type);return match?elem.type=match[1]:elem.removeAttribute("type"),elem}function cloneCopyEvent(src,dest){var i,l,type,pdataOld,pdataCur,udataOld,udataCur,events;if(1===dest.nodeType){if(dataPriv.hasData(src)&&(pdataOld=dataPriv.access(src),pdataCur=dataPriv.set(dest,pdataOld),events=pdataOld.events)){delete pdataCur.handle,pdataCur.events={};for(type in events)for(i=0,l=events[type].length;l>i;i++)jQuery.event.add(dest,type,events[type][i])}dataUser.hasData(src)&&(udataOld=dataUser.access(src),udataCur=jQuery.extend({},udataOld),dataUser.set(dest,udataCur))}}function fixInput(src,dest){var nodeName=dest.nodeName.toLowerCase();"input"===nodeName&&rcheckableType.test(src.type)?dest.checked=src.checked:("input"===nodeName||"textarea"===nodeName)&&(dest.defaultValue=src.defaultValue)}function domManip(collection,args,callback,ignored){args=concat.apply([],args);var fragment,first,scripts,hasScripts,node,doc,i=0,l=collection.length,iNoClone=l-1,value=args[0],isFunction=jQuery.isFunction(value);if(isFunction||l>1&&"string"==typeof value&&!support.checkClone&&rchecked.test(value))return collection.each(function(index){var self=collection.eq(index);isFunction&&(args[0]=value.call(this,index,self.html())),domManip(self,args,callback,ignored)});if(l&&(fragment=buildFragment(args,collection[0].ownerDocument,!1,collection,ignored),first=fragment.firstChild,1===fragment.childNodes.length&&(fragment=first),first||ignored)){for(scripts=jQuery.map(getAll(fragment,"script"),disableScript),hasScripts=scripts.length;l>i;i++)node=fragment,i!==iNoClone&&(node=jQuery.clone(node,!0,!0),hasScripts&&jQuery.merge(scripts,getAll(node,"script"))),callback.call(collection[i],node,i);if(hasScripts)for(doc=scripts[scripts.length-1].ownerDocument,jQuery.map(scripts,restoreScript),i=0;hasScripts>i;i++)node=scripts[i],rscriptType.test(node.type||"")&&!dataPriv.access(node,"globalEval")&&jQuery.contains(doc,node)&&(node.src?jQuery._evalUrl&&jQuery._evalUrl(node.src):jQuery.globalEval(node.textContent.replace(rcleanScript,"")))}return collection}function remove(elem,selector,keepData){for(var node,nodes=selector?jQuery.filter(selector,elem):elem,i=0;null!=(node=nodes[i]);i++)keepData||1!==node.nodeType||jQuery.cleanData(getAll(node)),node.parentNode&&(keepData&&jQuery.contains(node.ownerDocument,node)&&setGlobalEval(getAll(node,"script")),node.parentNode.removeChild(node));return elem}function actualDisplay(name,doc){var elem=jQuery(doc.createElement(name)).appendTo(doc.body),display=jQuery.css(elem[0],"display");return elem.detach(),display}function defaultDisplay(nodeName){var doc=document,display=elemdisplay[nodeName];return display||(display=actualDisplay(nodeName,doc),"none"!==display&&display||(iframe=(iframe||jQuery("<iframe frameborder='0' width='0' height='0'/>")).appendTo(doc.documentElement),doc=iframe[0].contentDocument,doc.write(),doc.close(),display=actualDisplay(nodeName,doc),iframe.detach()),elemdisplay[nodeName]=display),display}function curCSS(elem,name,computed){var width,minWidth,maxWidth,ret,style=elem.style;return computed=computed||getStyles(elem),ret=computed?computed.getPropertyValue(name)||computed[name]:void 0,""!==ret&&void 0!==ret||jQuery.contains(elem.ownerDocument,elem)||(ret=jQuery.style(elem,name)),computed&&!support.pixelMarginRight()&&rnumnonpx.test(ret)&&rmargin.test(name)&&(width=style.width,minWidth=style.minWidth,maxWidth=style.maxWidth,style.minWidth=style.maxWidth=style.width=ret,ret=computed.width,style.width=width,style.minWidth=minWidth,style.maxWidth=maxWidth),void 0!==ret?ret+"":ret}function addGetHookIf(conditionFn,hookFn){return{get:function(){return conditionFn()?void delete this.get:(this.get=hookFn).apply(this,arguments)}}}function vendorPropName(name){if(name in emptyStyle)return name;for(var capName=name[0].toUpperCase()+name.slice(1),i=cssPrefixes.length;i--;)if(name=cssPrefixes[i]+capName,name in emptyStyle)return name}function setPositiveNumber(elem,value,subtract){var matches=rcssNum.exec(value);return matches?Math.max(0,matches[2]-(subtract||0))+(matches[3]||"px"):value}function augmentWidthOrHeight(elem,name,extra,isBorderBox,styles){for(var i=extra===(isBorderBox?"border":"content")?4:"width"===name?1:0,val=0;4>i;i+=2)"margin"===extra&&(val+=jQuery.css(elem,extra+cssExpand[i],!0,styles)),isBorderBox?("content"===extra&&(val-=jQuery.css(elem,"padding"+cssExpand[i],!0,styles)),"margin"!==extra&&(val-=jQuery.css(elem,"border"+cssExpand[i]+"Width",!0,styles))):(val+=jQuery.css(elem,"padding"+cssExpand[i],!0,styles),"padding"!==extra&&(val+=jQuery.css(elem,"border"+cssExpand[i]+"Width",!0,styles)));return val}function getWidthOrHeight(elem,name,extra){var valueIsBorderBox=!0,val="width"===name?elem.offsetWidth:elem.offsetHeight,styles=getStyles(elem),isBorderBox="border-box"===jQuery.css(elem,"boxSizing",!1,styles);if(0>=val||null==val){if(val=curCSS(elem,name,styles),(0>val||null==val)&&(val=elem.style[name]),rnumnonpx.test(val))return val;valueIsBorderBox=isBorderBox&&(support.boxSizingReliable()||val===elem.style[name]),val=parseFloat(val)||0}return val+augmentWidthOrHeight(elem,name,extra||(isBorderBox?"border":"content"),valueIsBorderBox,styles)+"px"}function showHide(elements,show){for(var display,elem,hidden,values=[],index=0,length=elements.length;length>index;index++)elem=elements[index],elem.style&&(values[index]=dataPriv.get(elem,"olddisplay"),display=elem.style.display,show?(values[index]||"none"!==display||(elem.style.display=""),""===elem.style.display&&isHidden(elem)&&(values[index]=dataPriv.access(elem,"olddisplay",defaultDisplay(elem.nodeName)))):(hidden=isHidden(elem),"none"===display&&hidden||dataPriv.set(elem,"olddisplay",hidden?display:jQuery.css(elem,"display"))));for(index=0;length>index;index++)elem=elements[index],elem.style&&(show&&"none"!==elem.style.display&&""!==elem.style.display||(elem.style.display=show?values[index]||"":"none"));return elements}function Tween(elem,options,prop,end,easing){return new Tween.prototype.init(elem,options,prop,end,easing)}function createFxNow(){return window.setTimeout(function(){fxNow=void 0}),fxNow=jQuery.now()}function genFx(type,includeWidth){var which,i=0,attrs={height:type};for(includeWidth=includeWidth?1:0;4>i;i+=2-includeWidth)which=cssExpand[i],attrs["margin"+which]=attrs["padding"+which]=type;return includeWidth&&(attrs.opacity=attrs.width=type),attrs}function createTween(value,prop,animation){for(var tween,collection=(Animation.tweeners[prop]||[]).concat(Animation.tweeners["*"]),index=0,length=collection.length;length>index;index++)if(tween=collection[index].call(animation,prop,value))return tween}function defaultPrefilter(elem,props,opts){var prop,value,toggle,tween,hooks,oldfire,display,checkDisplay,anim=this,orig={},style=elem.style,hidden=elem.nodeType&&isHidden(elem),dataShow=dataPriv.get(elem,"fxshow");opts.queue||(hooks=jQuery._queueHooks(elem,"fx"),null==hooks.unqueued&&(hooks.unqueued=0,oldfire=hooks.empty.fire,hooks.empty.fire=function(){hooks.unqueued||oldfire()}),hooks.unqueued++,anim.always(function(){anim.always(function(){hooks.unqueued--,jQuery.queue(elem,"fx").length||hooks.empty.fire()})})),1===elem.nodeType&&("height"in props||"width"in props)&&(opts.overflow=[style.overflow,style.overflowX,style.overflowY],display=jQuery.css(elem,"display"),checkDisplay="none"===display?dataPriv.get(elem,"olddisplay")||defaultDisplay(elem.nodeName):display,"inline"===checkDisplay&&"none"===jQuery.css(elem,"float")&&(style.display="inline-block")),opts.overflow&&(style.overflow="hidden",anim.always(function(){style.overflow=opts.overflow[0],style.overflowX=opts.overflow[1],style.overflowY=opts.overflow[2]}));for(prop in props)if(value=props[prop],rfxtypes.exec(value)){if(delete props[prop],toggle=toggle||"toggle"===value,value===(hidden?"hide":"show")){if("show"!==value||!dataShow||void 0===dataShow[prop])continue;hidden=!0}orig[prop]=dataShow&&dataShow[prop]||jQuery.style(elem,prop)}else display=void 0;if(jQuery.isEmptyObject(orig))"inline"===("none"===display?defaultDisplay(elem.nodeName):display)&&(style.display=display);else{dataShow?"hidden"in dataShow&&(hidden=dataShow.hidden):dataShow=dataPriv.access(elem,"fxshow",{}),toggle&&(dataShow.hidden=!hidden),hidden?jQuery(elem).show():anim.done(function(){jQuery(elem).hide()}),anim.done(function(){var prop;dataPriv.remove(elem,"fxshow");for(prop in orig)jQuery.style(elem,prop,orig[prop])});for(prop in orig)tween=createTween(hidden?dataShow[prop]:0,prop,anim),prop in dataShow||(dataShow[prop]=tween.start,hidden&&(tween.end=tween.start,tween.start="width"===prop||"height"===prop?1:0))}}function propFilter(props,specialEasing){var index,name,easing,value,hooks;for(index in props)if(name=jQuery.camelCase(index),easing=specialEasing[name],value=props[index],jQuery.isArray(value)&&(easing=value[1],value=props[index]=value[0]),index!==name&&(props[name]=value,delete props[index]),hooks=jQuery.cssHooks[name],hooks&&"expand"in hooks){value=hooks.expand(value),delete props[name];for(index in value)index in props||(props[index]=value[index],specialEasing[index]=easing)}else specialEasing[name]=easing}function Animation(elem,properties,options){var result,stopped,index=0,length=Animation.prefilters.length,deferred=jQuery.Deferred().always(function(){delete tick.elem}),tick=function(){if(stopped)return!1;for(var currentTime=fxNow||createFxNow(),remaining=Math.max(0,animation.startTime+animation.duration-currentTime),temp=remaining/animation.duration||0,percent=1-temp,index=0,length=animation.tweens.length;length>index;index++)animation.tweens[index].run(percent);return deferred.notifyWith(elem,[animation,percent,remaining]),1>percent&&length?remaining:(deferred.resolveWith(elem,[animation]),!1)},animation=deferred.promise({elem:elem,props:jQuery.extend({},properties),opts:jQuery.extend(!0,{specialEasing:{},easing:jQuery.easing._default},options),originalProperties:properties,originalOptions:options,startTime:fxNow||createFxNow(),duration:options.duration,tweens:[],createTween:function(prop,end){var tween=jQuery.Tween(elem,animation.opts,prop,end,animation.opts.specialEasing[prop]||animation.opts.easing);return animation.tweens.push(tween),tween},stop:function(gotoEnd){var index=0,length=gotoEnd?animation.tweens.length:0;if(stopped)return this;for(stopped=!0;length>index;index++)animation.tweens[index].run(1);return gotoEnd?(deferred.notifyWith(elem,[animation,1,0]),deferred.resolveWith(elem,[animation,gotoEnd])):deferred.rejectWith(elem,[animation,gotoEnd]),this}}),props=animation.props;for(propFilter(props,animation.opts.specialEasing);length>index;index++)if(result=Animation.prefilters[index].call(animation,elem,props,animation.opts))return jQuery.isFunction(result.stop)&&(jQuery._queueHooks(animation.elem,animation.opts.queue).stop=jQuery.proxy(result.stop,result)),result;return jQuery.map(props,createTween,animation),jQuery.isFunction(animation.opts.start)&&animation.opts.start.call(elem,animation),jQuery.fx.timer(jQuery.extend(tick,{elem:elem,anim:animation,queue:animation.opts.queue})),animation.progress(animation.opts.progress).done(animation.opts.done,animation.opts.complete).fail(animation.opts.fail).always(animation.opts.always)}function getClass(elem){return elem.getAttribute&&elem.getAttribute("class")||""}function addToPrefiltersOrTransports(structure){return function(dataTypeExpression,func){"string"!=typeof dataTypeExpression&&(func=dataTypeExpression,dataTypeExpression="*");var dataType,i=0,dataTypes=dataTypeExpression.toLowerCase().match(rnotwhite)||[];if(jQuery.isFunction(func))for(;dataType=dataTypes[i++];)"+"===dataType[0]?(dataType=dataType.slice(1)||"*",(structure[dataType]=structure[dataType]||[]).unshift(func)):(structure[dataType]=structure[dataType]||[]).push(func)}}function inspectPrefiltersOrTransports(structure,options,originalOptions,jqXHR){function inspect(dataType){var selected;return inspected[dataType]=!0,jQuery.each(structure[dataType]||[],function(_,prefilterOrFactory){var dataTypeOrTransport=prefilterOrFactory(options,originalOptions,jqXHR);return"string"!=typeof dataTypeOrTransport||seekingTransport||inspected[dataTypeOrTransport]?seekingTransport?!(selected=dataTypeOrTransport):void 0:(options.dataTypes.unshift(dataTypeOrTransport),inspect(dataTypeOrTransport),!1)}),selected}var inspected={},seekingTransport=structure===transports;return inspect(options.dataTypes[0])||!inspected["*"]&&inspect("*")}function ajaxExtend(target,src){var key,deep,flatOptions=jQuery.ajaxSettings.flatOptions||{};for(key in src)void 0!==src[key]&&((flatOptions[key]?target:deep||(deep={}))[key]=src[key]);return deep&&jQuery.extend(!0,target,deep),target}function ajaxHandleResponses(s,jqXHR,responses){for(var ct,type,finalDataType,firstDataType,contents=s.contents,dataTypes=s.dataTypes;"*"===dataTypes[0];)dataTypes.shift(),void 0===ct&&(ct=s.mimeType||jqXHR.getResponseHeader("Content-Type"));if(ct)for(type in contents)if(contents[type]&&contents[type].test(ct)){dataTypes.unshift(type);break}if(dataTypes[0]in responses)finalDataType=dataTypes[0];else{for(type in responses){if(!dataTypes[0]||s.converters[type+" "+dataTypes[0]]){finalDataType=type;break}firstDataType||(firstDataType=type)}finalDataType=finalDataType||firstDataType}return finalDataType?(finalDataType!==dataTypes[0]&&dataTypes.unshift(finalDataType),responses[finalDataType]):void 0}function ajaxConvert(s,response,jqXHR,isSuccess){var conv2,current,conv,tmp,prev,converters={},dataTypes=s.dataTypes.slice();if(dataTypes[1])for(conv in s.converters)converters[conv.toLowerCase()]=s.converters[conv];for(current=dataTypes.shift();current;)if(s.responseFields[current]&&(jqXHR[s.responseFields[current]]=response),!prev&&isSuccess&&s.dataFilter&&(response=s.dataFilter(response,s.dataType)),prev=current,current=dataTypes.shift())if("*"===current)current=prev;else if("*"!==prev&&prev!==current){if(conv=converters[prev+" "+current]||converters["* "+current],!conv)for(conv2 in converters)if(tmp=conv2.split(" "),tmp[1]===current&&(conv=converters[prev+" "+tmp[0]]||converters["* "+tmp[0]])){conv===!0?conv=converters[conv2]:converters[conv2]!==!0&&(current=tmp[0],dataTypes.unshift(tmp[1]));break}if(conv!==!0)if(conv&&s["throws"])response=conv(response);else try{response=conv(response)}catch(e){return{state:"parsererror",error:conv?e:"No conversion from "+prev+" to "+current}}}return{state:"success",data:response}}function buildParams(prefix,obj,traditional,add){var name;if(jQuery.isArray(obj))jQuery.each(obj,function(i,v){traditional||rbracket.test(prefix)?add(prefix,v):buildParams(prefix+"["+("object"==typeof v&&null!=v?i:"")+"]",v,traditional,add)});else if(traditional||"object"!==jQuery.type(obj))add(prefix,obj);else for(name in obj)buildParams(prefix+"["+name+"]",obj[name],traditional,add)}function getWindow(elem){return jQuery.isWindow(elem)?elem:9===elem.nodeType&&elem.defaultView}var arr=[],document=window.document,slice=arr.slice,concat=arr.concat,push=arr.push,indexOf=arr.indexOf,class2type={},toString=class2type.toString,hasOwn=class2type.hasOwnProperty,support={},version="2.2.4",jQuery=function(selector,context){return new jQuery.fn.init(selector,context)},rtrim=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,rmsPrefix=/^-ms-/,rdashAlpha=/-([\da-z])/gi,fcamelCase=function(all,letter){return letter.toUpperCase()};jQuery.fn=jQuery.prototype={jquery:version,constructor:jQuery,selector:"",length:0,toArray:function(){return slice.call(this)},get:function(num){return null!=num?0>num?this[num+this.length]:this[num]:slice.call(this)},pushStack:function(elems){var ret=jQuery.merge(this.constructor(),elems);return ret.prevObject=this,ret.context=this.context,ret},each:function(callback){return jQuery.each(this,callback)},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem)}))},slice:function(){return this.pushStack(slice.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(i){var len=this.length,j=+i+(0>i?len:0);return this.pushStack(j>=0&&len>j?[this[j]]:[])},end:function(){return this.prevObject||this.constructor()},push:push,sort:arr.sort,splice:arr.splice},jQuery.extend=jQuery.fn.extend=function(){var options,name,src,copy,copyIsArray,clone,target=arguments[0]||{},i=1,length=arguments.length,deep=!1;for("boolean"==typeof target&&(deep=target,target=arguments[i]||{},i++),"object"==typeof target||jQuery.isFunction(target)||(target={}),i===length&&(target=this,i--);length>i;i++)if(null!=(options=arguments[i]))for(name in options)src=target[name],copy=options[name],target!==copy&&(deep&&copy&&(jQuery.isPlainObject(copy)||(copyIsArray=jQuery.isArray(copy)))?(copyIsArray?(copyIsArray=!1,clone=src&&jQuery.isArray(src)?src:[]):clone=src&&jQuery.isPlainObject(src)?src:{},target[name]=jQuery.extend(deep,clone,copy)):void 0!==copy&&(target[name]=copy));return target},jQuery.extend({expando:"jQuery"+(version+Math.random()).replace(/\D/g,""),isReady:!0,error:function(msg){throw new Error(msg)},noop:function(){},isFunction:function(obj){return"function"===jQuery.type(obj)},isArray:Array.isArray,isWindow:function(obj){return null!=obj&&obj===obj.window},isNumeric:function(obj){var realStringObj=obj&&obj.toString();return!jQuery.isArray(obj)&&realStringObj-parseFloat(realStringObj)+1>=0},isPlainObject:function(obj){var key;if("object"!==jQuery.type(obj)||obj.nodeType||jQuery.isWindow(obj))return!1;if(obj.constructor&&!hasOwn.call(obj,"constructor")&&!hasOwn.call(obj.constructor.prototype||{},"isPrototypeOf"))return!1;for(key in obj);return void 0===key||hasOwn.call(obj,key)},isEmptyObject:function(obj){var name;for(name in obj)return!1;return!0},type:function(obj){return null==obj?obj+"":"object"==typeof obj||"function"==typeof obj?class2type[toString.call(obj)]||"object":typeof obj},globalEval:function(code){var script,indirect=eval;code=jQuery.trim(code),code&&(1===code.indexOf("use strict")?(script=document.createElement("script"),script.text=code,document.head.appendChild(script).parentNode.removeChild(script)):indirect(code))},camelCase:function(string){return string.replace(rmsPrefix,"ms-").replace(rdashAlpha,fcamelCase)},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toLowerCase()===name.toLowerCase()},each:function(obj,callback){var length,i=0;if(isArrayLike(obj))for(length=obj.length;length>i&&callback.call(obj[i],i,obj[i])!==!1;i++);else for(i in obj)if(callback.call(obj[i],i,obj[i])===!1)break;return obj},trim:function(text){return null==text?"":(text+"").replace(rtrim,"")},makeArray:function(arr,results){var ret=results||[];return null!=arr&&(isArrayLike(Object(arr))?jQuery.merge(ret,"string"==typeof arr?[arr]:arr):push.call(ret,arr)),ret},inArray:function(elem,arr,i){return null==arr?-1:indexOf.call(arr,elem,i)},merge:function(first,second){for(var len=+second.length,j=0,i=first.length;len>j;j++)first[i++]=second[j];return first.length=i,first},grep:function(elems,callback,invert){for(var callbackInverse,matches=[],i=0,length=elems.length,callbackExpect=!invert;length>i;i++)callbackInverse=!callback(elems[i],i),callbackInverse!==callbackExpect&&matches.push(elems[i]);return matches},map:function(elems,callback,arg){var length,value,i=0,ret=[];if(isArrayLike(elems))for(length=elems.length;length>i;i++)value=callback(elems[i],i,arg),null!=value&&ret.push(value);else for(i in elems)value=callback(elems[i],i,arg),null!=value&&ret.push(value);return concat.apply([],ret)},guid:1,proxy:function(fn,context){var tmp,args,proxy;return"string"==typeof context&&(tmp=fn[context],context=fn,fn=tmp),jQuery.isFunction(fn)?(args=slice.call(arguments,2),proxy=function(){return fn.apply(context||this,args.concat(slice.call(arguments)))},proxy.guid=fn.guid=fn.guid||jQuery.guid++,proxy):void 0},now:Date.now,support:support}),"function"==typeof Symbol&&(jQuery.fn[Symbol.iterator]=arr[Symbol.iterator]),jQuery.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(i,name){class2type["[object "+name+"]"]=name.toLowerCase()});var Sizzle=function(window){function Sizzle(selector,context,results,seed){var m,i,elem,nid,nidselect,match,groups,newSelector,newContext=context&&context.ownerDocument,nodeType=context?context.nodeType:9;if(results=results||[],"string"!=typeof selector||!selector||1!==nodeType&&9!==nodeType&&11!==nodeType)return results;if(!seed&&((context?context.ownerDocument||context:preferredDoc)!==document&&setDocument(context),context=context||document,documentIsHTML)){if(11!==nodeType&&(match=rquickExpr.exec(selector)))if(m=match[1]){if(9===nodeType){if(!(elem=context.getElementById(m)))return results;if(elem.id===m)return results.push(elem),results}else if(newContext&&(elem=newContext.getElementById(m))&&contains(context,elem)&&elem.id===m)return results.push(elem),results}else{if(match[2])return push.apply(results,context.getElementsByTagName(selector)),results;if((m=match[3])&&support.getElementsByClassName&&context.getElementsByClassName)return push.apply(results,context.getElementsByClassName(m)),results}if(!(!support.qsa||compilerCache[selector+" "]||rbuggyQSA&&rbuggyQSA.test(selector))){if(1!==nodeType)newContext=context,newSelector=selector;else if("object"!==context.nodeName.toLowerCase()){for((nid=context.getAttribute("id"))?nid=nid.replace(rescape,"\\$&"):context.setAttribute("id",nid=expando),groups=tokenize(selector),i=groups.length,nidselect=ridentifier.test(nid)?"#"+nid:"[id='"+nid+"']";i--;)groups[i]=nidselect+" "+toSelector(groups[i]);newSelector=groups.join(","),newContext=rsibling.test(selector)&&testContext(context.parentNode)||context}if(newSelector)try{return push.apply(results,newContext.querySelectorAll(newSelector)),results}catch(qsaError){}finally{nid===expando&&context.removeAttribute("id")}}}return select(selector.replace(rtrim,"$1"),context,results,seed)}function createCache(){function cache(key,value){return keys.push(key+" ")>Expr.cacheLength&&delete cache[keys.shift()],cache[key+" "]=value}var keys=[];return cache}function markFunction(fn){return fn[expando]=!0,fn}function assert(fn){var div=document.createElement("div");try{return!!fn(div)}catch(e){return!1}finally{div.parentNode&&div.parentNode.removeChild(div),div=null}}function addHandle(attrs,handler){for(var arr=attrs.split("|"),i=arr.length;i--;)Expr.attrHandle[arr[i]]=handler}function siblingCheck(a,b){var cur=b&&a,diff=cur&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||MAX_NEGATIVE)-(~a.sourceIndex||MAX_NEGATIVE);if(diff)return diff;if(cur)for(;cur=cur.nextSibling;)if(cur===b)return-1;return a?1:-1}function createInputPseudo(type){return function(elem){var name=elem.nodeName.toLowerCase();return"input"===name&&elem.type===type}}function createButtonPseudo(type){return function(elem){var name=elem.nodeName.toLowerCase();return("input"===name||"button"===name)&&elem.type===type}}function createPositionalPseudo(fn){return markFunction(function(argument){return argument=+argument,markFunction(function(seed,matches){for(var j,matchIndexes=fn([],seed.length,argument),i=matchIndexes.length;i--;)seed[j=matchIndexes[i]]&&(seed[j]=!(matches[j]=seed[j]))})})}function testContext(context){return context&&"undefined"!=typeof context.getElementsByTagName&&context}function setFilters(){}function toSelector(tokens){for(var i=0,len=tokens.length,selector="";len>i;i++)selector+=tokens[i].value;return selector}function addCombinator(matcher,combinator,base){var dir=combinator.dir,checkNonElements=base&&"parentNode"===dir,doneName=done++;return combinator.first?function(elem,context,xml){for(;elem=elem[dir];)if(1===elem.nodeType||checkNonElements)return matcher(elem,context,xml)}:function(elem,context,xml){var oldCache,uniqueCache,outerCache,newCache=[dirruns,doneName];if(xml){for(;elem=elem[dir];)if((1===elem.nodeType||checkNonElements)&&matcher(elem,context,xml))return!0}else for(;elem=elem[dir];)if(1===elem.nodeType||checkNonElements){if(outerCache=elem[expando]||(elem[expando]={}),uniqueCache=outerCache[elem.uniqueID]||(outerCache[elem.uniqueID]={}),(oldCache=uniqueCache[dir])&&oldCache[0]===dirruns&&oldCache[1]===doneName)return newCache[2]=oldCache[2];if(uniqueCache[dir]=newCache,newCache[2]=matcher(elem,context,xml))return!0}}}function elementMatcher(matchers){return matchers.length>1?function(elem,context,xml){for(var i=matchers.length;i--;)if(!matchers[i](elem,context,xml))return!1;return!0}:matchers[0]}function multipleContexts(selector,contexts,results){for(var i=0,len=contexts.length;len>i;i++)Sizzle(selector,contexts[i],results);return results}function condense(unmatched,map,filter,context,xml){for(var elem,newUnmatched=[],i=0,len=unmatched.length,mapped=null!=map;len>i;i++)(elem=unmatched[i])&&(!filter||filter(elem,context,xml))&&(newUnmatched.push(elem),mapped&&map.push(i));return newUnmatched}function setMatcher(preFilter,selector,matcher,postFilter,postFinder,postSelector){return postFilter&&!postFilter[expando]&&(postFilter=setMatcher(postFilter)),postFinder&&!postFinder[expando]&&(postFinder=setMatcher(postFinder,postSelector)),markFunction(function(seed,results,context,xml){var temp,i,elem,preMap=[],postMap=[],preexisting=results.length,elems=seed||multipleContexts(selector||"*",context.nodeType?[context]:context,[]),matcherIn=!preFilter||!seed&&selector?elems:condense(elems,preMap,preFilter,context,xml),matcherOut=matcher?postFinder||(seed?preFilter:preexisting||postFilter)?[]:results:matcherIn;if(matcher&&matcher(matcherIn,matcherOut,context,xml),postFilter)for(temp=condense(matcherOut,postMap),postFilter(temp,[],context,xml),i=temp.length;i--;)(elem=temp[i])&&(matcherOut[postMap[i]]=!(matcherIn[postMap[i]]=elem));if(seed){if(postFinder||preFilter){if(postFinder){for(temp=[],i=matcherOut.length;i--;)(elem=matcherOut[i])&&temp.push(matcherIn[i]=elem);postFinder(null,matcherOut=[],temp,xml)}for(i=matcherOut.length;i--;)(elem=matcherOut[i])&&(temp=postFinder?indexOf(seed,elem):preMap[i])>-1&&(seed[temp]=!(results[temp]=elem))}}else matcherOut=condense(matcherOut===results?matcherOut.splice(preexisting,matcherOut.length):matcherOut),postFinder?postFinder(null,results,matcherOut,xml):push.apply(results,matcherOut);
-})}function matcherFromTokens(tokens){for(var checkContext,matcher,j,len=tokens.length,leadingRelative=Expr.relative[tokens[0].type],implicitRelative=leadingRelative||Expr.relative[" "],i=leadingRelative?1:0,matchContext=addCombinator(function(elem){return elem===checkContext},implicitRelative,!0),matchAnyContext=addCombinator(function(elem){return indexOf(checkContext,elem)>-1},implicitRelative,!0),matchers=[function(elem,context,xml){var ret=!leadingRelative&&(xml||context!==outermostContext)||((checkContext=context).nodeType?matchContext(elem,context,xml):matchAnyContext(elem,context,xml));return checkContext=null,ret}];len>i;i++)if(matcher=Expr.relative[tokens[i].type])matchers=[addCombinator(elementMatcher(matchers),matcher)];else{if(matcher=Expr.filter[tokens[i].type].apply(null,tokens[i].matches),matcher[expando]){for(j=++i;len>j&&!Expr.relative[tokens[j].type];j++);return setMatcher(i>1&&elementMatcher(matchers),i>1&&toSelector(tokens.slice(0,i-1).concat({value:" "===tokens[i-2].type?"*":""})).replace(rtrim,"$1"),matcher,j>i&&matcherFromTokens(tokens.slice(i,j)),len>j&&matcherFromTokens(tokens=tokens.slice(j)),len>j&&toSelector(tokens))}matchers.push(matcher)}return elementMatcher(matchers)}function matcherFromGroupMatchers(elementMatchers,setMatchers){var bySet=setMatchers.length>0,byElement=elementMatchers.length>0,superMatcher=function(seed,context,xml,results,outermost){var elem,j,matcher,matchedCount=0,i="0",unmatched=seed&&[],setMatched=[],contextBackup=outermostContext,elems=seed||byElement&&Expr.find.TAG("*",outermost),dirrunsUnique=dirruns+=null==contextBackup?1:Math.random()||.1,len=elems.length;for(outermost&&(outermostContext=context===document||context||outermost);i!==len&&null!=(elem=elems[i]);i++){if(byElement&&elem){for(j=0,context||elem.ownerDocument===document||(setDocument(elem),xml=!documentIsHTML);matcher=elementMatchers[j++];)if(matcher(elem,context||document,xml)){results.push(elem);break}outermost&&(dirruns=dirrunsUnique)}bySet&&((elem=!matcher&&elem)&&matchedCount--,seed&&unmatched.push(elem))}if(matchedCount+=i,bySet&&i!==matchedCount){for(j=0;matcher=setMatchers[j++];)matcher(unmatched,setMatched,context,xml);if(seed){if(matchedCount>0)for(;i--;)unmatched[i]||setMatched[i]||(setMatched[i]=pop.call(results));setMatched=condense(setMatched)}push.apply(results,setMatched),outermost&&!seed&&setMatched.length>0&&matchedCount+setMatchers.length>1&&Sizzle.uniqueSort(results)}return outermost&&(dirruns=dirrunsUnique,outermostContext=contextBackup),unmatched};return bySet?markFunction(superMatcher):superMatcher}var i,support,Expr,getText,isXML,tokenize,compile,select,outermostContext,sortInput,hasDuplicate,setDocument,document,docElem,documentIsHTML,rbuggyQSA,rbuggyMatches,matches,contains,expando="sizzle"+1*new Date,preferredDoc=window.document,dirruns=0,done=0,classCache=createCache(),tokenCache=createCache(),compilerCache=createCache(),sortOrder=function(a,b){return a===b&&(hasDuplicate=!0),0},MAX_NEGATIVE=1<<31,hasOwn={}.hasOwnProperty,arr=[],pop=arr.pop,push_native=arr.push,push=arr.push,slice=arr.slice,indexOf=function(list,elem){for(var i=0,len=list.length;len>i;i++)if(list[i]===elem)return i;return-1},booleans="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",whitespace="[\\x20\\t\\r\\n\\f]",identifier="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",attributes="\\["+whitespace+"*("+identifier+")(?:"+whitespace+"*([*^$|!~]?=)"+whitespace+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+identifier+"))|)"+whitespace+"*\\]",pseudos=":("+identifier+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+attributes+")*)|.*)\\)|)",rwhitespace=new RegExp(whitespace+"+","g"),rtrim=new RegExp("^"+whitespace+"+|((?:^|[^\\\\])(?:\\\\.)*)"+whitespace+"+$","g"),rcomma=new RegExp("^"+whitespace+"*,"+whitespace+"*"),rcombinators=new RegExp("^"+whitespace+"*([>+~]|"+whitespace+")"+whitespace+"*"),rattributeQuotes=new RegExp("="+whitespace+"*([^\\]'\"]*?)"+whitespace+"*\\]","g"),rpseudo=new RegExp(pseudos),ridentifier=new RegExp("^"+identifier+"$"),matchExpr={ID:new RegExp("^#("+identifier+")"),CLASS:new RegExp("^\\.("+identifier+")"),TAG:new RegExp("^("+identifier+"|[*])"),ATTR:new RegExp("^"+attributes),PSEUDO:new RegExp("^"+pseudos),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+whitespace+"*(even|odd|(([+-]|)(\\d*)n|)"+whitespace+"*(?:([+-]|)"+whitespace+"*(\\d+)|))"+whitespace+"*\\)|)","i"),bool:new RegExp("^(?:"+booleans+")$","i"),needsContext:new RegExp("^"+whitespace+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+whitespace+"*((?:-\\d)?\\d*)"+whitespace+"*\\)|)(?=[^-]|$)","i")},rinputs=/^(?:input|select|textarea|button)$/i,rheader=/^h\d$/i,rnative=/^[^{]+\{\s*\[native \w/,rquickExpr=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,rsibling=/[+~]/,rescape=/'|\\/g,runescape=new RegExp("\\\\([\\da-f]{1,6}"+whitespace+"?|("+whitespace+")|.)","ig"),funescape=function(_,escaped,escapedWhitespace){var high="0x"+escaped-65536;return high!==high||escapedWhitespace?escaped:0>high?String.fromCharCode(high+65536):String.fromCharCode(high>>10|55296,1023&high|56320)},unloadHandler=function(){setDocument()};try{push.apply(arr=slice.call(preferredDoc.childNodes),preferredDoc.childNodes),arr[preferredDoc.childNodes.length].nodeType}catch(e){push={apply:arr.length?function(target,els){push_native.apply(target,slice.call(els))}:function(target,els){for(var j=target.length,i=0;target[j++]=els[i++];);target.length=j-1}}}support=Sizzle.support={},isXML=Sizzle.isXML=function(elem){var documentElement=elem&&(elem.ownerDocument||elem).documentElement;return documentElement?"HTML"!==documentElement.nodeName:!1},setDocument=Sizzle.setDocument=function(node){var hasCompare,parent,doc=node?node.ownerDocument||node:preferredDoc;return doc!==document&&9===doc.nodeType&&doc.documentElement?(document=doc,docElem=document.documentElement,documentIsHTML=!isXML(document),(parent=document.defaultView)&&parent.top!==parent&&(parent.addEventListener?parent.addEventListener("unload",unloadHandler,!1):parent.attachEvent&&parent.attachEvent("onunload",unloadHandler)),support.attributes=assert(function(div){return div.className="i",!div.getAttribute("className")}),support.getElementsByTagName=assert(function(div){return div.appendChild(document.createComment("")),!div.getElementsByTagName("*").length}),support.getElementsByClassName=rnative.test(document.getElementsByClassName),support.getById=assert(function(div){return docElem.appendChild(div).id=expando,!document.getElementsByName||!document.getElementsByName(expando).length}),support.getById?(Expr.find.ID=function(id,context){if("undefined"!=typeof context.getElementById&&documentIsHTML){var m=context.getElementById(id);return m?[m]:[]}},Expr.filter.ID=function(id){var attrId=id.replace(runescape,funescape);return function(elem){return elem.getAttribute("id")===attrId}}):(delete Expr.find.ID,Expr.filter.ID=function(id){var attrId=id.replace(runescape,funescape);return function(elem){var node="undefined"!=typeof elem.getAttributeNode&&elem.getAttributeNode("id");return node&&node.value===attrId}}),Expr.find.TAG=support.getElementsByTagName?function(tag,context){return"undefined"!=typeof context.getElementsByTagName?context.getElementsByTagName(tag):support.qsa?context.querySelectorAll(tag):void 0}:function(tag,context){var elem,tmp=[],i=0,results=context.getElementsByTagName(tag);if("*"===tag){for(;elem=results[i++];)1===elem.nodeType&&tmp.push(elem);return tmp}return results},Expr.find.CLASS=support.getElementsByClassName&&function(className,context){return"undefined"!=typeof context.getElementsByClassName&&documentIsHTML?context.getElementsByClassName(className):void 0},rbuggyMatches=[],rbuggyQSA=[],(support.qsa=rnative.test(document.querySelectorAll))&&(assert(function(div){docElem.appendChild(div).innerHTML="<a id='"+expando+"'></a><select id='"+expando+"-\r\\' msallowcapture=''><option selected=''></option></select>",div.querySelectorAll("[msallowcapture^='']").length&&rbuggyQSA.push("[*^$]="+whitespace+"*(?:''|\"\")"),div.querySelectorAll("[selected]").length||rbuggyQSA.push("\\["+whitespace+"*(?:value|"+booleans+")"),div.querySelectorAll("[id~="+expando+"-]").length||rbuggyQSA.push("~="),div.querySelectorAll(":checked").length||rbuggyQSA.push(":checked"),div.querySelectorAll("a#"+expando+"+*").length||rbuggyQSA.push(".#.+[+~]")}),assert(function(div){var input=document.createElement("input");input.setAttribute("type","hidden"),div.appendChild(input).setAttribute("name","D"),div.querySelectorAll("[name=d]").length&&rbuggyQSA.push("name"+whitespace+"*[*^$|!~]?="),div.querySelectorAll(":enabled").length||rbuggyQSA.push(":enabled",":disabled"),div.querySelectorAll("*,:x"),rbuggyQSA.push(",.*:")})),(support.matchesSelector=rnative.test(matches=docElem.matches||docElem.webkitMatchesSelector||docElem.mozMatchesSelector||docElem.oMatchesSelector||docElem.msMatchesSelector))&&assert(function(div){support.disconnectedMatch=matches.call(div,"div"),matches.call(div,"[s!='']:x"),rbuggyMatches.push("!=",pseudos)}),rbuggyQSA=rbuggyQSA.length&&new RegExp(rbuggyQSA.join("|")),rbuggyMatches=rbuggyMatches.length&&new RegExp(rbuggyMatches.join("|")),hasCompare=rnative.test(docElem.compareDocumentPosition),contains=hasCompare||rnative.test(docElem.contains)?function(a,b){var adown=9===a.nodeType?a.documentElement:a,bup=b&&b.parentNode;return a===bup||!(!bup||1!==bup.nodeType||!(adown.contains?adown.contains(bup):a.compareDocumentPosition&&16&a.compareDocumentPosition(bup)))}:function(a,b){if(b)for(;b=b.parentNode;)if(b===a)return!0;return!1},sortOrder=hasCompare?function(a,b){if(a===b)return hasDuplicate=!0,0;var compare=!a.compareDocumentPosition-!b.compareDocumentPosition;return compare?compare:(compare=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&compare||!support.sortDetached&&b.compareDocumentPosition(a)===compare?a===document||a.ownerDocument===preferredDoc&&contains(preferredDoc,a)?-1:b===document||b.ownerDocument===preferredDoc&&contains(preferredDoc,b)?1:sortInput?indexOf(sortInput,a)-indexOf(sortInput,b):0:4&compare?-1:1)}:function(a,b){if(a===b)return hasDuplicate=!0,0;var cur,i=0,aup=a.parentNode,bup=b.parentNode,ap=[a],bp=[b];if(!aup||!bup)return a===document?-1:b===document?1:aup?-1:bup?1:sortInput?indexOf(sortInput,a)-indexOf(sortInput,b):0;if(aup===bup)return siblingCheck(a,b);for(cur=a;cur=cur.parentNode;)ap.unshift(cur);for(cur=b;cur=cur.parentNode;)bp.unshift(cur);for(;ap[i]===bp[i];)i++;return i?siblingCheck(ap[i],bp[i]):ap[i]===preferredDoc?-1:bp[i]===preferredDoc?1:0},document):document},Sizzle.matches=function(expr,elements){return Sizzle(expr,null,null,elements)},Sizzle.matchesSelector=function(elem,expr){if((elem.ownerDocument||elem)!==document&&setDocument(elem),expr=expr.replace(rattributeQuotes,"='$1']"),!(!support.matchesSelector||!documentIsHTML||compilerCache[expr+" "]||rbuggyMatches&&rbuggyMatches.test(expr)||rbuggyQSA&&rbuggyQSA.test(expr)))try{var ret=matches.call(elem,expr);if(ret||support.disconnectedMatch||elem.document&&11!==elem.document.nodeType)return ret}catch(e){}return Sizzle(expr,document,null,[elem]).length>0},Sizzle.contains=function(context,elem){return(context.ownerDocument||context)!==document&&setDocument(context),contains(context,elem)},Sizzle.attr=function(elem,name){(elem.ownerDocument||elem)!==document&&setDocument(elem);var fn=Expr.attrHandle[name.toLowerCase()],val=fn&&hasOwn.call(Expr.attrHandle,name.toLowerCase())?fn(elem,name,!documentIsHTML):void 0;return void 0!==val?val:support.attributes||!documentIsHTML?elem.getAttribute(name):(val=elem.getAttributeNode(name))&&val.specified?val.value:null},Sizzle.error=function(msg){throw new Error("Syntax error, unrecognized expression: "+msg)},Sizzle.uniqueSort=function(results){var elem,duplicates=[],j=0,i=0;if(hasDuplicate=!support.detectDuplicates,sortInput=!support.sortStable&&results.slice(0),results.sort(sortOrder),hasDuplicate){for(;elem=results[i++];)elem===results[i]&&(j=duplicates.push(i));for(;j--;)results.splice(duplicates[j],1)}return sortInput=null,results},getText=Sizzle.getText=function(elem){var node,ret="",i=0,nodeType=elem.nodeType;if(nodeType){if(1===nodeType||9===nodeType||11===nodeType){if("string"==typeof elem.textContent)return elem.textContent;for(elem=elem.firstChild;elem;elem=elem.nextSibling)ret+=getText(elem)}else if(3===nodeType||4===nodeType)return elem.nodeValue}else for(;node=elem[i++];)ret+=getText(node);return ret},Expr=Sizzle.selectors={cacheLength:50,createPseudo:markFunction,match:matchExpr,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(match){return match[1]=match[1].replace(runescape,funescape),match[3]=(match[3]||match[4]||match[5]||"").replace(runescape,funescape),"~="===match[2]&&(match[3]=" "+match[3]+" "),match.slice(0,4)},CHILD:function(match){return match[1]=match[1].toLowerCase(),"nth"===match[1].slice(0,3)?(match[3]||Sizzle.error(match[0]),match[4]=+(match[4]?match[5]+(match[6]||1):2*("even"===match[3]||"odd"===match[3])),match[5]=+(match[7]+match[8]||"odd"===match[3])):match[3]&&Sizzle.error(match[0]),match},PSEUDO:function(match){var excess,unquoted=!match[6]&&match[2];return matchExpr.CHILD.test(match[0])?null:(match[3]?match[2]=match[4]||match[5]||"":unquoted&&rpseudo.test(unquoted)&&(excess=tokenize(unquoted,!0))&&(excess=unquoted.indexOf(")",unquoted.length-excess)-unquoted.length)&&(match[0]=match[0].slice(0,excess),match[2]=unquoted.slice(0,excess)),match.slice(0,3))}},filter:{TAG:function(nodeNameSelector){var nodeName=nodeNameSelector.replace(runescape,funescape).toLowerCase();return"*"===nodeNameSelector?function(){return!0}:function(elem){return elem.nodeName&&elem.nodeName.toLowerCase()===nodeName}},CLASS:function(className){var pattern=classCache[className+" "];return pattern||(pattern=new RegExp("(^|"+whitespace+")"+className+"("+whitespace+"|$)"))&&classCache(className,function(elem){return pattern.test("string"==typeof elem.className&&elem.className||"undefined"!=typeof elem.getAttribute&&elem.getAttribute("class")||"")})},ATTR:function(name,operator,check){return function(elem){var result=Sizzle.attr(elem,name);return null==result?"!="===operator:operator?(result+="","="===operator?result===check:"!="===operator?result!==check:"^="===operator?check&&0===result.indexOf(check):"*="===operator?check&&result.indexOf(check)>-1:"$="===operator?check&&result.slice(-check.length)===check:"~="===operator?(" "+result.replace(rwhitespace," ")+" ").indexOf(check)>-1:"|="===operator?result===check||result.slice(0,check.length+1)===check+"-":!1):!0}},CHILD:function(type,what,argument,first,last){var simple="nth"!==type.slice(0,3),forward="last"!==type.slice(-4),ofType="of-type"===what;return 1===first&&0===last?function(elem){return!!elem.parentNode}:function(elem,context,xml){var cache,uniqueCache,outerCache,node,nodeIndex,start,dir=simple!==forward?"nextSibling":"previousSibling",parent=elem.parentNode,name=ofType&&elem.nodeName.toLowerCase(),useCache=!xml&&!ofType,diff=!1;if(parent){if(simple){for(;dir;){for(node=elem;node=node[dir];)if(ofType?node.nodeName.toLowerCase()===name:1===node.nodeType)return!1;start=dir="only"===type&&!start&&"nextSibling"}return!0}if(start=[forward?parent.firstChild:parent.lastChild],forward&&useCache){for(node=parent,outerCache=node[expando]||(node[expando]={}),uniqueCache=outerCache[node.uniqueID]||(outerCache[node.uniqueID]={}),cache=uniqueCache[type]||[],nodeIndex=cache[0]===dirruns&&cache[1],diff=nodeIndex&&cache[2],node=nodeIndex&&parent.childNodes[nodeIndex];node=++nodeIndex&&node&&node[dir]||(diff=nodeIndex=0)||start.pop();)if(1===node.nodeType&&++diff&&node===elem){uniqueCache[type]=[dirruns,nodeIndex,diff];break}}else if(useCache&&(node=elem,outerCache=node[expando]||(node[expando]={}),uniqueCache=outerCache[node.uniqueID]||(outerCache[node.uniqueID]={}),cache=uniqueCache[type]||[],nodeIndex=cache[0]===dirruns&&cache[1],diff=nodeIndex),diff===!1)for(;(node=++nodeIndex&&node&&node[dir]||(diff=nodeIndex=0)||start.pop())&&((ofType?node.nodeName.toLowerCase()!==name:1!==node.nodeType)||!++diff||(useCache&&(outerCache=node[expando]||(node[expando]={}),uniqueCache=outerCache[node.uniqueID]||(outerCache[node.uniqueID]={}),uniqueCache[type]=[dirruns,diff]),node!==elem)););return diff-=last,diff===first||diff%first===0&&diff/first>=0}}},PSEUDO:function(pseudo,argument){var args,fn=Expr.pseudos[pseudo]||Expr.setFilters[pseudo.toLowerCase()]||Sizzle.error("unsupported pseudo: "+pseudo);return fn[expando]?fn(argument):fn.length>1?(args=[pseudo,pseudo,"",argument],Expr.setFilters.hasOwnProperty(pseudo.toLowerCase())?markFunction(function(seed,matches){for(var idx,matched=fn(seed,argument),i=matched.length;i--;)idx=indexOf(seed,matched[i]),seed[idx]=!(matches[idx]=matched[i])}):function(elem){return fn(elem,0,args)}):fn}},pseudos:{not:markFunction(function(selector){var input=[],results=[],matcher=compile(selector.replace(rtrim,"$1"));return matcher[expando]?markFunction(function(seed,matches,context,xml){for(var elem,unmatched=matcher(seed,null,xml,[]),i=seed.length;i--;)(elem=unmatched[i])&&(seed[i]=!(matches[i]=elem))}):function(elem,context,xml){return input[0]=elem,matcher(input,null,xml,results),input[0]=null,!results.pop()}}),has:markFunction(function(selector){return function(elem){return Sizzle(selector,elem).length>0}}),contains:markFunction(function(text){return text=text.replace(runescape,funescape),function(elem){return(elem.textContent||elem.innerText||getText(elem)).indexOf(text)>-1}}),lang:markFunction(function(lang){return ridentifier.test(lang||"")||Sizzle.error("unsupported lang: "+lang),lang=lang.replace(runescape,funescape).toLowerCase(),function(elem){var elemLang;do if(elemLang=documentIsHTML?elem.lang:elem.getAttribute("xml:lang")||elem.getAttribute("lang"))return elemLang=elemLang.toLowerCase(),elemLang===lang||0===elemLang.indexOf(lang+"-");while((elem=elem.parentNode)&&1===elem.nodeType);return!1}}),target:function(elem){var hash=window.location&&window.location.hash;return hash&&hash.slice(1)===elem.id},root:function(elem){return elem===docElem},focus:function(elem){return elem===document.activeElement&&(!document.hasFocus||document.hasFocus())&&!!(elem.type||elem.href||~elem.tabIndex)},enabled:function(elem){return elem.disabled===!1},disabled:function(elem){return elem.disabled===!0},checked:function(elem){var nodeName=elem.nodeName.toLowerCase();return"input"===nodeName&&!!elem.checked||"option"===nodeName&&!!elem.selected},selected:function(elem){return elem.parentNode&&elem.parentNode.selectedIndex,elem.selected===!0},empty:function(elem){for(elem=elem.firstChild;elem;elem=elem.nextSibling)if(elem.nodeType<6)return!1;return!0},parent:function(elem){return!Expr.pseudos.empty(elem)},header:function(elem){return rheader.test(elem.nodeName)},input:function(elem){return rinputs.test(elem.nodeName)},button:function(elem){var name=elem.nodeName.toLowerCase();return"input"===name&&"button"===elem.type||"button"===name},text:function(elem){var attr;return"input"===elem.nodeName.toLowerCase()&&"text"===elem.type&&(null==(attr=elem.getAttribute("type"))||"text"===attr.toLowerCase())},first:createPositionalPseudo(function(){return[0]}),last:createPositionalPseudo(function(matchIndexes,length){return[length-1]}),eq:createPositionalPseudo(function(matchIndexes,length,argument){return[0>argument?argument+length:argument]}),even:createPositionalPseudo(function(matchIndexes,length){for(var i=0;length>i;i+=2)matchIndexes.push(i);return matchIndexes}),odd:createPositionalPseudo(function(matchIndexes,length){for(var i=1;length>i;i+=2)matchIndexes.push(i);return matchIndexes}),lt:createPositionalPseudo(function(matchIndexes,length,argument){for(var i=0>argument?argument+length:argument;--i>=0;)matchIndexes.push(i);return matchIndexes}),gt:createPositionalPseudo(function(matchIndexes,length,argument){for(var i=0>argument?argument+length:argument;++i<length;)matchIndexes.push(i);return matchIndexes})}},Expr.pseudos.nth=Expr.pseudos.eq;for(i in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})Expr.pseudos[i]=createInputPseudo(i);for(i in{submit:!0,reset:!0})Expr.pseudos[i]=createButtonPseudo(i);return setFilters.prototype=Expr.filters=Expr.pseudos,Expr.setFilters=new setFilters,tokenize=Sizzle.tokenize=function(selector,parseOnly){var matched,match,tokens,type,soFar,groups,preFilters,cached=tokenCache[selector+" "];if(cached)return parseOnly?0:cached.slice(0);for(soFar=selector,groups=[],preFilters=Expr.preFilter;soFar;){(!matched||(match=rcomma.exec(soFar)))&&(match&&(soFar=soFar.slice(match[0].length)||soFar),groups.push(tokens=[])),matched=!1,(match=rcombinators.exec(soFar))&&(matched=match.shift(),tokens.push({value:matched,type:match[0].replace(rtrim," ")}),soFar=soFar.slice(matched.length));for(type in Expr.filter)!(match=matchExpr[type].exec(soFar))||preFilters[type]&&!(match=preFilters[type](match))||(matched=match.shift(),tokens.push({value:matched,type:type,matches:match}),soFar=soFar.slice(matched.length));if(!matched)break}return parseOnly?soFar.length:soFar?Sizzle.error(selector):tokenCache(selector,groups).slice(0)},compile=Sizzle.compile=function(selector,match){var i,setMatchers=[],elementMatchers=[],cached=compilerCache[selector+" "];if(!cached){for(match||(match=tokenize(selector)),i=match.length;i--;)cached=matcherFromTokens(match[i]),cached[expando]?setMatchers.push(cached):elementMatchers.push(cached);cached=compilerCache(selector,matcherFromGroupMatchers(elementMatchers,setMatchers)),cached.selector=selector}return cached},select=Sizzle.select=function(selector,context,results,seed){var i,tokens,token,type,find,compiled="function"==typeof selector&&selector,match=!seed&&tokenize(selector=compiled.selector||selector);if(results=results||[],1===match.length){if(tokens=match[0]=match[0].slice(0),tokens.length>2&&"ID"===(token=tokens[0]).type&&support.getById&&9===context.nodeType&&documentIsHTML&&Expr.relative[tokens[1].type]){if(context=(Expr.find.ID(token.matches[0].replace(runescape,funescape),context)||[])[0],!context)return results;compiled&&(context=context.parentNode),selector=selector.slice(tokens.shift().value.length)}for(i=matchExpr.needsContext.test(selector)?0:tokens.length;i--&&(token=tokens[i],!Expr.relative[type=token.type]);)if((find=Expr.find[type])&&(seed=find(token.matches[0].replace(runescape,funescape),rsibling.test(tokens[0].type)&&testContext(context.parentNode)||context))){if(tokens.splice(i,1),selector=seed.length&&toSelector(tokens),!selector)return push.apply(results,seed),results;break}}return(compiled||compile(selector,match))(seed,context,!documentIsHTML,results,!context||rsibling.test(selector)&&testContext(context.parentNode)||context),results},support.sortStable=expando.split("").sort(sortOrder).join("")===expando,support.detectDuplicates=!!hasDuplicate,setDocument(),support.sortDetached=assert(function(div1){return 1&div1.compareDocumentPosition(document.createElement("div"))}),assert(function(div){return div.innerHTML="<a href='#'></a>","#"===div.firstChild.getAttribute("href")})||addHandle("type|href|height|width",function(elem,name,isXML){return isXML?void 0:elem.getAttribute(name,"type"===name.toLowerCase()?1:2)}),support.attributes&&assert(function(div){return div.innerHTML="<input/>",div.firstChild.setAttribute("value",""),""===div.firstChild.getAttribute("value")})||addHandle("value",function(elem,name,isXML){return isXML||"input"!==elem.nodeName.toLowerCase()?void 0:elem.defaultValue}),assert(function(div){return null==div.getAttribute("disabled")})||addHandle(booleans,function(elem,name,isXML){var val;return isXML?void 0:elem[name]===!0?name.toLowerCase():(val=elem.getAttributeNode(name))&&val.specified?val.value:null}),Sizzle}(window);jQuery.find=Sizzle,jQuery.expr=Sizzle.selectors,jQuery.expr[":"]=jQuery.expr.pseudos,jQuery.uniqueSort=jQuery.unique=Sizzle.uniqueSort,jQuery.text=Sizzle.getText,jQuery.isXMLDoc=Sizzle.isXML,jQuery.contains=Sizzle.contains;var dir=function(elem,dir,until){for(var matched=[],truncate=void 0!==until;(elem=elem[dir])&&9!==elem.nodeType;)if(1===elem.nodeType){if(truncate&&jQuery(elem).is(until))break;matched.push(elem)}return matched},siblings=function(n,elem){for(var matched=[];n;n=n.nextSibling)1===n.nodeType&&n!==elem&&matched.push(n);return matched},rneedsContext=jQuery.expr.match.needsContext,rsingleTag=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,risSimple=/^.[^:#\[\.,]*$/;jQuery.filter=function(expr,elems,not){var elem=elems[0];return not&&(expr=":not("+expr+")"),1===elems.length&&1===elem.nodeType?jQuery.find.matchesSelector(elem,expr)?[elem]:[]:jQuery.find.matches(expr,jQuery.grep(elems,function(elem){return 1===elem.nodeType}))},jQuery.fn.extend({find:function(selector){var i,len=this.length,ret=[],self=this;if("string"!=typeof selector)return this.pushStack(jQuery(selector).filter(function(){for(i=0;len>i;i++)if(jQuery.contains(self[i],this))return!0}));for(i=0;len>i;i++)jQuery.find(selector,self[i],ret);return ret=this.pushStack(len>1?jQuery.unique(ret):ret),ret.selector=this.selector?this.selector+" "+selector:selector,ret},filter:function(selector){return this.pushStack(winnow(this,selector||[],!1))},not:function(selector){return this.pushStack(winnow(this,selector||[],!0))},is:function(selector){return!!winnow(this,"string"==typeof selector&&rneedsContext.test(selector)?jQuery(selector):selector||[],!1).length}});var rootjQuery,rquickExpr=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,init=jQuery.fn.init=function(selector,context,root){var match,elem;if(!selector)return this;if(root=root||rootjQuery,"string"==typeof selector){if(match="<"===selector[0]&&">"===selector[selector.length-1]&&selector.length>=3?[null,selector,null]:rquickExpr.exec(selector),!match||!match[1]&&context)return!context||context.jquery?(context||root).find(selector):this.constructor(context).find(selector);if(match[1]){if(context=context instanceof jQuery?context[0]:context,jQuery.merge(this,jQuery.parseHTML(match[1],context&&context.nodeType?context.ownerDocument||context:document,!0)),rsingleTag.test(match[1])&&jQuery.isPlainObject(context))for(match in context)jQuery.isFunction(this[match])?this[match](context[match]):this.attr(match,context[match]);return this}return elem=document.getElementById(match[2]),elem&&elem.parentNode&&(this.length=1,this[0]=elem),this.context=document,this.selector=selector,this}return selector.nodeType?(this.context=this[0]=selector,this.length=1,this):jQuery.isFunction(selector)?void 0!==root.ready?root.ready(selector):selector(jQuery):(void 0!==selector.selector&&(this.selector=selector.selector,this.context=selector.context),jQuery.makeArray(selector,this))};init.prototype=jQuery.fn,rootjQuery=jQuery(document);var rparentsprev=/^(?:parents|prev(?:Until|All))/,guaranteedUnique={children:!0,contents:!0,next:!0,prev:!0};jQuery.fn.extend({has:function(target){var targets=jQuery(target,this),l=targets.length;return this.filter(function(){for(var i=0;l>i;i++)if(jQuery.contains(this,targets[i]))return!0})},closest:function(selectors,context){for(var cur,i=0,l=this.length,matched=[],pos=rneedsContext.test(selectors)||"string"!=typeof selectors?jQuery(selectors,context||this.context):0;l>i;i++)for(cur=this[i];cur&&cur!==context;cur=cur.parentNode)if(cur.nodeType<11&&(pos?pos.index(cur)>-1:1===cur.nodeType&&jQuery.find.matchesSelector(cur,selectors))){matched.push(cur);break}return this.pushStack(matched.length>1?jQuery.uniqueSort(matched):matched)},index:function(elem){return elem?"string"==typeof elem?indexOf.call(jQuery(elem),this[0]):indexOf.call(this,elem.jquery?elem[0]:elem):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(selector,context){return this.pushStack(jQuery.uniqueSort(jQuery.merge(this.get(),jQuery(selector,context))))},addBack:function(selector){return this.add(null==selector?this.prevObject:this.prevObject.filter(selector))}}),jQuery.each({parent:function(elem){var parent=elem.parentNode;return parent&&11!==parent.nodeType?parent:null},parents:function(elem){return dir(elem,"parentNode")},parentsUntil:function(elem,i,until){return dir(elem,"parentNode",until)},next:function(elem){return sibling(elem,"nextSibling")},prev:function(elem){return sibling(elem,"previousSibling")},nextAll:function(elem){return dir(elem,"nextSibling")},prevAll:function(elem){return dir(elem,"previousSibling")},nextUntil:function(elem,i,until){return dir(elem,"nextSibling",until)},prevUntil:function(elem,i,until){return dir(elem,"previousSibling",until)},siblings:function(elem){return siblings((elem.parentNode||{}).firstChild,elem)},children:function(elem){return siblings(elem.firstChild)},contents:function(elem){return elem.contentDocument||jQuery.merge([],elem.childNodes)}},function(name,fn){jQuery.fn[name]=function(until,selector){var matched=jQuery.map(this,fn,until);return"Until"!==name.slice(-5)&&(selector=until),selector&&"string"==typeof selector&&(matched=jQuery.filter(selector,matched)),this.length>1&&(guaranteedUnique[name]||jQuery.uniqueSort(matched),rparentsprev.test(name)&&matched.reverse()),this.pushStack(matched)}});var rnotwhite=/\S+/g;jQuery.Callbacks=function(options){options="string"==typeof options?createOptions(options):jQuery.extend({},options);var firing,memory,fired,locked,list=[],queue=[],firingIndex=-1,fire=function(){for(locked=options.once,fired=firing=!0;queue.length;firingIndex=-1)for(memory=queue.shift();++firingIndex<list.length;)list[firingIndex].apply(memory[0],memory[1])===!1&&options.stopOnFalse&&(firingIndex=list.length,memory=!1);options.memory||(memory=!1),firing=!1,locked&&(list=memory?[]:"")},self={add:function(){return list&&(memory&&!firing&&(firingIndex=list.length-1,queue.push(memory)),function add(args){jQuery.each(args,function(_,arg){jQuery.isFunction(arg)?options.unique&&self.has(arg)||list.push(arg):arg&&arg.length&&"string"!==jQuery.type(arg)&&add(arg)})}(arguments),memory&&!firing&&fire()),this},remove:function(){return jQuery.each(arguments,function(_,arg){for(var index;(index=jQuery.inArray(arg,list,index))>-1;)list.splice(index,1),firingIndex>=index&&firingIndex--}),this},has:function(fn){return fn?jQuery.inArray(fn,list)>-1:list.length>0},empty:function(){return list&&(list=[]),this},disable:function(){return locked=queue=[],list=memory="",this},disabled:function(){return!list},lock:function(){return locked=queue=[],memory||(list=memory=""),this},locked:function(){return!!locked},fireWith:function(context,args){return locked||(args=args||[],args=[context,args.slice?args.slice():args],queue.push(args),firing||fire()),this},fire:function(){return self.fireWith(this,arguments),this},fired:function(){return!!fired}};return self},jQuery.extend({Deferred:function(func){var tuples=[["resolve","done",jQuery.Callbacks("once memory"),"resolved"],["reject","fail",jQuery.Callbacks("once memory"),"rejected"],["notify","progress",jQuery.Callbacks("memory")]],state="pending",promise={state:function(){return state},always:function(){return deferred.done(arguments).fail(arguments),this},then:function(){var fns=arguments;return jQuery.Deferred(function(newDefer){jQuery.each(tuples,function(i,tuple){var fn=jQuery.isFunction(fns[i])&&fns[i];deferred[tuple[1]](function(){var returned=fn&&fn.apply(this,arguments);returned&&jQuery.isFunction(returned.promise)?returned.promise().progress(newDefer.notify).done(newDefer.resolve).fail(newDefer.reject):newDefer[tuple[0]+"With"](this===promise?newDefer.promise():this,fn?[returned]:arguments)})}),fns=null}).promise()},promise:function(obj){return null!=obj?jQuery.extend(obj,promise):promise}},deferred={};return promise.pipe=promise.then,jQuery.each(tuples,function(i,tuple){var list=tuple[2],stateString=tuple[3];promise[tuple[1]]=list.add,stateString&&list.add(function(){state=stateString},tuples[1^i][2].disable,tuples[2][2].lock),
-deferred[tuple[0]]=function(){return deferred[tuple[0]+"With"](this===deferred?promise:this,arguments),this},deferred[tuple[0]+"With"]=list.fireWith}),promise.promise(deferred),func&&func.call(deferred,deferred),deferred},when:function(subordinate){var progressValues,progressContexts,resolveContexts,i=0,resolveValues=slice.call(arguments),length=resolveValues.length,remaining=1!==length||subordinate&&jQuery.isFunction(subordinate.promise)?length:0,deferred=1===remaining?subordinate:jQuery.Deferred(),updateFunc=function(i,contexts,values){return function(value){contexts[i]=this,values[i]=arguments.length>1?slice.call(arguments):value,values===progressValues?deferred.notifyWith(contexts,values):--remaining||deferred.resolveWith(contexts,values)}};if(length>1)for(progressValues=new Array(length),progressContexts=new Array(length),resolveContexts=new Array(length);length>i;i++)resolveValues[i]&&jQuery.isFunction(resolveValues[i].promise)?resolveValues[i].promise().progress(updateFunc(i,progressContexts,progressValues)).done(updateFunc(i,resolveContexts,resolveValues)).fail(deferred.reject):--remaining;return remaining||deferred.resolveWith(resolveContexts,resolveValues),deferred.promise()}});var readyList;jQuery.fn.ready=function(fn){return jQuery.ready.promise().done(fn),this},jQuery.extend({isReady:!1,readyWait:1,holdReady:function(hold){hold?jQuery.readyWait++:jQuery.ready(!0)},ready:function(wait){(wait===!0?--jQuery.readyWait:jQuery.isReady)||(jQuery.isReady=!0,wait!==!0&&--jQuery.readyWait>0||(readyList.resolveWith(document,[jQuery]),jQuery.fn.triggerHandler&&(jQuery(document).triggerHandler("ready"),jQuery(document).off("ready"))))}}),jQuery.ready.promise=function(obj){return readyList||(readyList=jQuery.Deferred(),"complete"===document.readyState||"loading"!==document.readyState&&!document.documentElement.doScroll?window.setTimeout(jQuery.ready):(document.addEventListener("DOMContentLoaded",completed),window.addEventListener("load",completed))),readyList.promise(obj)},jQuery.ready.promise();var access=function(elems,fn,key,value,chainable,emptyGet,raw){var i=0,len=elems.length,bulk=null==key;if("object"===jQuery.type(key)){chainable=!0;for(i in key)access(elems,fn,i,key[i],!0,emptyGet,raw)}else if(void 0!==value&&(chainable=!0,jQuery.isFunction(value)||(raw=!0),bulk&&(raw?(fn.call(elems,value),fn=null):(bulk=fn,fn=function(elem,key,value){return bulk.call(jQuery(elem),value)})),fn))for(;len>i;i++)fn(elems[i],key,raw?value:value.call(elems[i],i,fn(elems[i],key)));return chainable?elems:bulk?fn.call(elems):len?fn(elems[0],key):emptyGet},acceptData=function(owner){return 1===owner.nodeType||9===owner.nodeType||!+owner.nodeType};Data.uid=1,Data.prototype={register:function(owner,initial){var value=initial||{};return owner.nodeType?owner[this.expando]=value:Object.defineProperty(owner,this.expando,{value:value,writable:!0,configurable:!0}),owner[this.expando]},cache:function(owner){if(!acceptData(owner))return{};var value=owner[this.expando];return value||(value={},acceptData(owner)&&(owner.nodeType?owner[this.expando]=value:Object.defineProperty(owner,this.expando,{value:value,configurable:!0}))),value},set:function(owner,data,value){var prop,cache=this.cache(owner);if("string"==typeof data)cache[data]=value;else for(prop in data)cache[prop]=data[prop];return cache},get:function(owner,key){return void 0===key?this.cache(owner):owner[this.expando]&&owner[this.expando][key]},access:function(owner,key,value){var stored;return void 0===key||key&&"string"==typeof key&&void 0===value?(stored=this.get(owner,key),void 0!==stored?stored:this.get(owner,jQuery.camelCase(key))):(this.set(owner,key,value),void 0!==value?value:key)},remove:function(owner,key){var i,name,camel,cache=owner[this.expando];if(void 0!==cache){if(void 0===key)this.register(owner);else{jQuery.isArray(key)?name=key.concat(key.map(jQuery.camelCase)):(camel=jQuery.camelCase(key),key in cache?name=[key,camel]:(name=camel,name=name in cache?[name]:name.match(rnotwhite)||[])),i=name.length;for(;i--;)delete cache[name[i]]}(void 0===key||jQuery.isEmptyObject(cache))&&(owner.nodeType?owner[this.expando]=void 0:delete owner[this.expando])}},hasData:function(owner){var cache=owner[this.expando];return void 0!==cache&&!jQuery.isEmptyObject(cache)}};var dataPriv=new Data,dataUser=new Data,rbrace=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,rmultiDash=/[A-Z]/g;jQuery.extend({hasData:function(elem){return dataUser.hasData(elem)||dataPriv.hasData(elem)},data:function(elem,name,data){return dataUser.access(elem,name,data)},removeData:function(elem,name){dataUser.remove(elem,name)},_data:function(elem,name,data){return dataPriv.access(elem,name,data)},_removeData:function(elem,name){dataPriv.remove(elem,name)}}),jQuery.fn.extend({data:function(key,value){var i,name,data,elem=this[0],attrs=elem&&elem.attributes;if(void 0===key){if(this.length&&(data=dataUser.get(elem),1===elem.nodeType&&!dataPriv.get(elem,"hasDataAttrs"))){for(i=attrs.length;i--;)attrs[i]&&(name=attrs[i].name,0===name.indexOf("data-")&&(name=jQuery.camelCase(name.slice(5)),dataAttr(elem,name,data[name])));dataPriv.set(elem,"hasDataAttrs",!0)}return data}return"object"==typeof key?this.each(function(){dataUser.set(this,key)}):access(this,function(value){var data,camelKey;if(elem&&void 0===value){if(data=dataUser.get(elem,key)||dataUser.get(elem,key.replace(rmultiDash,"-$&").toLowerCase()),void 0!==data)return data;if(camelKey=jQuery.camelCase(key),data=dataUser.get(elem,camelKey),void 0!==data)return data;if(data=dataAttr(elem,camelKey,void 0),void 0!==data)return data}else camelKey=jQuery.camelCase(key),this.each(function(){var data=dataUser.get(this,camelKey);dataUser.set(this,camelKey,value),key.indexOf("-")>-1&&void 0!==data&&dataUser.set(this,key,value)})},null,value,arguments.length>1,null,!0)},removeData:function(key){return this.each(function(){dataUser.remove(this,key)})}}),jQuery.extend({queue:function(elem,type,data){var queue;return elem?(type=(type||"fx")+"queue",queue=dataPriv.get(elem,type),data&&(!queue||jQuery.isArray(data)?queue=dataPriv.access(elem,type,jQuery.makeArray(data)):queue.push(data)),queue||[]):void 0},dequeue:function(elem,type){type=type||"fx";var queue=jQuery.queue(elem,type),startLength=queue.length,fn=queue.shift(),hooks=jQuery._queueHooks(elem,type),next=function(){jQuery.dequeue(elem,type)};"inprogress"===fn&&(fn=queue.shift(),startLength--),fn&&("fx"===type&&queue.unshift("inprogress"),delete hooks.stop,fn.call(elem,next,hooks)),!startLength&&hooks&&hooks.empty.fire()},_queueHooks:function(elem,type){var key=type+"queueHooks";return dataPriv.get(elem,key)||dataPriv.access(elem,key,{empty:jQuery.Callbacks("once memory").add(function(){dataPriv.remove(elem,[type+"queue",key])})})}}),jQuery.fn.extend({queue:function(type,data){var setter=2;return"string"!=typeof type&&(data=type,type="fx",setter--),arguments.length<setter?jQuery.queue(this[0],type):void 0===data?this:this.each(function(){var queue=jQuery.queue(this,type,data);jQuery._queueHooks(this,type),"fx"===type&&"inprogress"!==queue[0]&&jQuery.dequeue(this,type)})},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type)})},clearQueue:function(type){return this.queue(type||"fx",[])},promise:function(type,obj){var tmp,count=1,defer=jQuery.Deferred(),elements=this,i=this.length,resolve=function(){--count||defer.resolveWith(elements,[elements])};for("string"!=typeof type&&(obj=type,type=void 0),type=type||"fx";i--;)tmp=dataPriv.get(elements[i],type+"queueHooks"),tmp&&tmp.empty&&(count++,tmp.empty.add(resolve));return resolve(),defer.promise(obj)}});var pnum=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,rcssNum=new RegExp("^(?:([+-])=|)("+pnum+")([a-z%]*)$","i"),cssExpand=["Top","Right","Bottom","Left"],isHidden=function(elem,el){return elem=el||elem,"none"===jQuery.css(elem,"display")||!jQuery.contains(elem.ownerDocument,elem)},rcheckableType=/^(?:checkbox|radio)$/i,rtagName=/<([\w:-]+)/,rscriptType=/^$|\/(?:java|ecma)script/i,wrapMap={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};wrapMap.optgroup=wrapMap.option,wrapMap.tbody=wrapMap.tfoot=wrapMap.colgroup=wrapMap.caption=wrapMap.thead,wrapMap.th=wrapMap.td;var rhtml=/<|&#?\w+;/;!function(){var fragment=document.createDocumentFragment(),div=fragment.appendChild(document.createElement("div")),input=document.createElement("input");input.setAttribute("type","radio"),input.setAttribute("checked","checked"),input.setAttribute("name","t"),div.appendChild(input),support.checkClone=div.cloneNode(!0).cloneNode(!0).lastChild.checked,div.innerHTML="<textarea>x</textarea>",support.noCloneChecked=!!div.cloneNode(!0).lastChild.defaultValue}();var rkeyEvent=/^key/,rmouseEvent=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,rtypenamespace=/^([^.]*)(?:\.(.+)|)/;jQuery.event={global:{},add:function(elem,types,handler,data,selector){var handleObjIn,eventHandle,tmp,events,t,handleObj,special,handlers,type,namespaces,origType,elemData=dataPriv.get(elem);if(elemData)for(handler.handler&&(handleObjIn=handler,handler=handleObjIn.handler,selector=handleObjIn.selector),handler.guid||(handler.guid=jQuery.guid++),(events=elemData.events)||(events=elemData.events={}),(eventHandle=elemData.handle)||(eventHandle=elemData.handle=function(e){return"undefined"!=typeof jQuery&&jQuery.event.triggered!==e.type?jQuery.event.dispatch.apply(elem,arguments):void 0}),types=(types||"").match(rnotwhite)||[""],t=types.length;t--;)tmp=rtypenamespace.exec(types[t])||[],type=origType=tmp[1],namespaces=(tmp[2]||"").split(".").sort(),type&&(special=jQuery.event.special[type]||{},type=(selector?special.delegateType:special.bindType)||type,special=jQuery.event.special[type]||{},handleObj=jQuery.extend({type:type,origType:origType,data:data,handler:handler,guid:handler.guid,selector:selector,needsContext:selector&&jQuery.expr.match.needsContext.test(selector),namespace:namespaces.join(".")},handleObjIn),(handlers=events[type])||(handlers=events[type]=[],handlers.delegateCount=0,special.setup&&special.setup.call(elem,data,namespaces,eventHandle)!==!1||elem.addEventListener&&elem.addEventListener(type,eventHandle)),special.add&&(special.add.call(elem,handleObj),handleObj.handler.guid||(handleObj.handler.guid=handler.guid)),selector?handlers.splice(handlers.delegateCount++,0,handleObj):handlers.push(handleObj),jQuery.event.global[type]=!0)},remove:function(elem,types,handler,selector,mappedTypes){var j,origCount,tmp,events,t,handleObj,special,handlers,type,namespaces,origType,elemData=dataPriv.hasData(elem)&&dataPriv.get(elem);if(elemData&&(events=elemData.events)){for(types=(types||"").match(rnotwhite)||[""],t=types.length;t--;)if(tmp=rtypenamespace.exec(types[t])||[],type=origType=tmp[1],namespaces=(tmp[2]||"").split(".").sort(),type){for(special=jQuery.event.special[type]||{},type=(selector?special.delegateType:special.bindType)||type,handlers=events[type]||[],tmp=tmp[2]&&new RegExp("(^|\\.)"+namespaces.join("\\.(?:.*\\.|)")+"(\\.|$)"),origCount=j=handlers.length;j--;)handleObj=handlers[j],!mappedTypes&&origType!==handleObj.origType||handler&&handler.guid!==handleObj.guid||tmp&&!tmp.test(handleObj.namespace)||selector&&selector!==handleObj.selector&&("**"!==selector||!handleObj.selector)||(handlers.splice(j,1),handleObj.selector&&handlers.delegateCount--,special.remove&&special.remove.call(elem,handleObj));origCount&&!handlers.length&&(special.teardown&&special.teardown.call(elem,namespaces,elemData.handle)!==!1||jQuery.removeEvent(elem,type,elemData.handle),delete events[type])}else for(type in events)jQuery.event.remove(elem,type+types[t],handler,selector,!0);jQuery.isEmptyObject(events)&&dataPriv.remove(elem,"handle events")}},dispatch:function(event){event=jQuery.event.fix(event);var i,j,ret,matched,handleObj,handlerQueue=[],args=slice.call(arguments),handlers=(dataPriv.get(this,"events")||{})[event.type]||[],special=jQuery.event.special[event.type]||{};if(args[0]=event,event.delegateTarget=this,!special.preDispatch||special.preDispatch.call(this,event)!==!1){for(handlerQueue=jQuery.event.handlers.call(this,event,handlers),i=0;(matched=handlerQueue[i++])&&!event.isPropagationStopped();)for(event.currentTarget=matched.elem,j=0;(handleObj=matched.handlers[j++])&&!event.isImmediatePropagationStopped();)(!event.rnamespace||event.rnamespace.test(handleObj.namespace))&&(event.handleObj=handleObj,event.data=handleObj.data,ret=((jQuery.event.special[handleObj.origType]||{}).handle||handleObj.handler).apply(matched.elem,args),void 0!==ret&&(event.result=ret)===!1&&(event.preventDefault(),event.stopPropagation()));return special.postDispatch&&special.postDispatch.call(this,event),event.result}},handlers:function(event,handlers){var i,matches,sel,handleObj,handlerQueue=[],delegateCount=handlers.delegateCount,cur=event.target;if(delegateCount&&cur.nodeType&&("click"!==event.type||isNaN(event.button)||event.button<1))for(;cur!==this;cur=cur.parentNode||this)if(1===cur.nodeType&&(cur.disabled!==!0||"click"!==event.type)){for(matches=[],i=0;delegateCount>i;i++)handleObj=handlers[i],sel=handleObj.selector+" ",void 0===matches[sel]&&(matches[sel]=handleObj.needsContext?jQuery(sel,this).index(cur)>-1:jQuery.find(sel,this,null,[cur]).length),matches[sel]&&matches.push(handleObj);matches.length&&handlerQueue.push({elem:cur,handlers:matches})}return delegateCount<handlers.length&&handlerQueue.push({elem:this,handlers:handlers.slice(delegateCount)}),handlerQueue},props:"altKey bubbles cancelable ctrlKey currentTarget detail eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(event,original){return null==event.which&&(event.which=null!=original.charCode?original.charCode:original.keyCode),event}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(event,original){var eventDoc,doc,body,button=original.button;return null==event.pageX&&null!=original.clientX&&(eventDoc=event.target.ownerDocument||document,doc=eventDoc.documentElement,body=eventDoc.body,event.pageX=original.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc&&doc.clientLeft||body&&body.clientLeft||0),event.pageY=original.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc&&doc.clientTop||body&&body.clientTop||0)),event.which||void 0===button||(event.which=1&button?1:2&button?3:4&button?2:0),event}},fix:function(event){if(event[jQuery.expando])return event;var i,prop,copy,type=event.type,originalEvent=event,fixHook=this.fixHooks[type];for(fixHook||(this.fixHooks[type]=fixHook=rmouseEvent.test(type)?this.mouseHooks:rkeyEvent.test(type)?this.keyHooks:{}),copy=fixHook.props?this.props.concat(fixHook.props):this.props,event=new jQuery.Event(originalEvent),i=copy.length;i--;)prop=copy[i],event[prop]=originalEvent[prop];return event.target||(event.target=document),3===event.target.nodeType&&(event.target=event.target.parentNode),fixHook.filter?fixHook.filter(event,originalEvent):event},special:{load:{noBubble:!0},focus:{trigger:function(){return this!==safeActiveElement()&&this.focus?(this.focus(),!1):void 0},delegateType:"focusin"},blur:{trigger:function(){return this===safeActiveElement()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return"checkbox"===this.type&&this.click&&jQuery.nodeName(this,"input")?(this.click(),!1):void 0},_default:function(event){return jQuery.nodeName(event.target,"a")}},beforeunload:{postDispatch:function(event){void 0!==event.result&&event.originalEvent&&(event.originalEvent.returnValue=event.result)}}}},jQuery.removeEvent=function(elem,type,handle){elem.removeEventListener&&elem.removeEventListener(type,handle)},jQuery.Event=function(src,props){return this instanceof jQuery.Event?(src&&src.type?(this.originalEvent=src,this.type=src.type,this.isDefaultPrevented=src.defaultPrevented||void 0===src.defaultPrevented&&src.returnValue===!1?returnTrue:returnFalse):this.type=src,props&&jQuery.extend(this,props),this.timeStamp=src&&src.timeStamp||jQuery.now(),void(this[jQuery.expando]=!0)):new jQuery.Event(src,props)},jQuery.Event.prototype={constructor:jQuery.Event,isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=returnTrue,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=returnTrue,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=returnTrue,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},jQuery.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(orig,fix){jQuery.event.special[orig]={delegateType:fix,bindType:fix,handle:function(event){var ret,target=this,related=event.relatedTarget,handleObj=event.handleObj;return(!related||related!==target&&!jQuery.contains(target,related))&&(event.type=handleObj.origType,ret=handleObj.handler.apply(this,arguments),event.type=fix),ret}}}),jQuery.fn.extend({on:function(types,selector,data,fn){return on(this,types,selector,data,fn)},one:function(types,selector,data,fn){return on(this,types,selector,data,fn,1)},off:function(types,selector,fn){var handleObj,type;if(types&&types.preventDefault&&types.handleObj)return handleObj=types.handleObj,jQuery(types.delegateTarget).off(handleObj.namespace?handleObj.origType+"."+handleObj.namespace:handleObj.origType,handleObj.selector,handleObj.handler),this;if("object"==typeof types){for(type in types)this.off(type,selector,types[type]);return this}return(selector===!1||"function"==typeof selector)&&(fn=selector,selector=void 0),fn===!1&&(fn=returnFalse),this.each(function(){jQuery.event.remove(this,types,fn,selector)})}});var rxhtmlTag=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,rnoInnerhtml=/<script|<style|<link/i,rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,rscriptTypeMasked=/^true\/(.*)/,rcleanScript=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;jQuery.extend({htmlPrefilter:function(html){return html.replace(rxhtmlTag,"<$1></$2>")},clone:function(elem,dataAndEvents,deepDataAndEvents){var i,l,srcElements,destElements,clone=elem.cloneNode(!0),inPage=jQuery.contains(elem.ownerDocument,elem);if(!(support.noCloneChecked||1!==elem.nodeType&&11!==elem.nodeType||jQuery.isXMLDoc(elem)))for(destElements=getAll(clone),srcElements=getAll(elem),i=0,l=srcElements.length;l>i;i++)fixInput(srcElements[i],destElements[i]);if(dataAndEvents)if(deepDataAndEvents)for(srcElements=srcElements||getAll(elem),destElements=destElements||getAll(clone),i=0,l=srcElements.length;l>i;i++)cloneCopyEvent(srcElements[i],destElements[i]);else cloneCopyEvent(elem,clone);return destElements=getAll(clone,"script"),destElements.length>0&&setGlobalEval(destElements,!inPage&&getAll(elem,"script")),clone},cleanData:function(elems){for(var data,elem,type,special=jQuery.event.special,i=0;void 0!==(elem=elems[i]);i++)if(acceptData(elem)){if(data=elem[dataPriv.expando]){if(data.events)for(type in data.events)special[type]?jQuery.event.remove(elem,type):jQuery.removeEvent(elem,type,data.handle);elem[dataPriv.expando]=void 0}elem[dataUser.expando]&&(elem[dataUser.expando]=void 0)}}}),jQuery.fn.extend({domManip:domManip,detach:function(selector){return remove(this,selector,!0)},remove:function(selector){return remove(this,selector)},text:function(value){return access(this,function(value){return void 0===value?jQuery.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=value)})},null,value,arguments.length)},append:function(){return domManip(this,arguments,function(elem){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var target=manipulationTarget(this,elem);target.appendChild(elem)}})},prepend:function(){return domManip(this,arguments,function(elem){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var target=manipulationTarget(this,elem);target.insertBefore(elem,target.firstChild)}})},before:function(){return domManip(this,arguments,function(elem){this.parentNode&&this.parentNode.insertBefore(elem,this)})},after:function(){return domManip(this,arguments,function(elem){this.parentNode&&this.parentNode.insertBefore(elem,this.nextSibling)})},empty:function(){for(var elem,i=0;null!=(elem=this[i]);i++)1===elem.nodeType&&(jQuery.cleanData(getAll(elem,!1)),elem.textContent="");return this},clone:function(dataAndEvents,deepDataAndEvents){return dataAndEvents=null==dataAndEvents?!1:dataAndEvents,deepDataAndEvents=null==deepDataAndEvents?dataAndEvents:deepDataAndEvents,this.map(function(){return jQuery.clone(this,dataAndEvents,deepDataAndEvents)})},html:function(value){return access(this,function(value){var elem=this[0]||{},i=0,l=this.length;if(void 0===value&&1===elem.nodeType)return elem.innerHTML;if("string"==typeof value&&!rnoInnerhtml.test(value)&&!wrapMap[(rtagName.exec(value)||["",""])[1].toLowerCase()]){value=jQuery.htmlPrefilter(value);try{for(;l>i;i++)elem=this[i]||{},1===elem.nodeType&&(jQuery.cleanData(getAll(elem,!1)),elem.innerHTML=value);elem=0}catch(e){}}elem&&this.empty().append(value)},null,value,arguments.length)},replaceWith:function(){var ignored=[];return domManip(this,arguments,function(elem){var parent=this.parentNode;jQuery.inArray(this,ignored)<0&&(jQuery.cleanData(getAll(this)),parent&&parent.replaceChild(elem,this))},ignored)}}),jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){for(var elems,ret=[],insert=jQuery(selector),last=insert.length-1,i=0;last>=i;i++)elems=i===last?this:this.clone(!0),jQuery(insert[i])[original](elems),push.apply(ret,elems.get());return this.pushStack(ret)}});var iframe,elemdisplay={HTML:"block",BODY:"block"},rmargin=/^margin/,rnumnonpx=new RegExp("^("+pnum+")(?!px)[a-z%]+$","i"),getStyles=function(elem){var view=elem.ownerDocument.defaultView;return view&&view.opener||(view=window),view.getComputedStyle(elem)},swap=function(elem,options,callback,args){var ret,name,old={};for(name in options)old[name]=elem.style[name],elem.style[name]=options[name];ret=callback.apply(elem,args||[]);for(name in options)elem.style[name]=old[name];return ret},documentElement=document.documentElement;!function(){function computeStyleTests(){div.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",div.innerHTML="",documentElement.appendChild(container);var divStyle=window.getComputedStyle(div);pixelPositionVal="1%"!==divStyle.top,reliableMarginLeftVal="2px"===divStyle.marginLeft,boxSizingReliableVal="4px"===divStyle.width,div.style.marginRight="50%",pixelMarginRightVal="4px"===divStyle.marginRight,documentElement.removeChild(container)}var pixelPositionVal,boxSizingReliableVal,pixelMarginRightVal,reliableMarginLeftVal,container=document.createElement("div"),div=document.createElement("div");div.style&&(div.style.backgroundClip="content-box",div.cloneNode(!0).style.backgroundClip="",support.clearCloneStyle="content-box"===div.style.backgroundClip,container.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",container.appendChild(div),jQuery.extend(support,{pixelPosition:function(){return computeStyleTests(),pixelPositionVal},boxSizingReliable:function(){return null==boxSizingReliableVal&&computeStyleTests(),boxSizingReliableVal},pixelMarginRight:function(){return null==boxSizingReliableVal&&computeStyleTests(),pixelMarginRightVal},reliableMarginLeft:function(){return null==boxSizingReliableVal&&computeStyleTests(),reliableMarginLeftVal},reliableMarginRight:function(){var ret,marginDiv=div.appendChild(document.createElement("div"));return marginDiv.style.cssText=div.style.cssText="-webkit-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",marginDiv.style.marginRight=marginDiv.style.width="0",div.style.width="1px",documentElement.appendChild(container),ret=!parseFloat(window.getComputedStyle(marginDiv).marginRight),documentElement.removeChild(container),div.removeChild(marginDiv),ret}}))}();var rdisplayswap=/^(none|table(?!-c[ea]).+)/,cssShow={position:"absolute",visibility:"hidden",display:"block"},cssNormalTransform={letterSpacing:"0",fontWeight:"400"},cssPrefixes=["Webkit","O","Moz","ms"],emptyStyle=document.createElement("div").style;jQuery.extend({cssHooks:{opacity:{get:function(elem,computed){if(computed){var ret=curCSS(elem,"opacity");return""===ret?"1":ret}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(elem,name,value,extra){if(elem&&3!==elem.nodeType&&8!==elem.nodeType&&elem.style){var ret,type,hooks,origName=jQuery.camelCase(name),style=elem.style;return name=jQuery.cssProps[origName]||(jQuery.cssProps[origName]=vendorPropName(origName)||origName),hooks=jQuery.cssHooks[name]||jQuery.cssHooks[origName],void 0===value?hooks&&"get"in hooks&&void 0!==(ret=hooks.get(elem,!1,extra))?ret:style[name]:(type=typeof value,"string"===type&&(ret=rcssNum.exec(value))&&ret[1]&&(value=adjustCSS(elem,name,ret),type="number"),null!=value&&value===value&&("number"===type&&(value+=ret&&ret[3]||(jQuery.cssNumber[origName]?"":"px")),support.clearCloneStyle||""!==value||0!==name.indexOf("background")||(style[name]="inherit"),hooks&&"set"in hooks&&void 0===(value=hooks.set(elem,value,extra))||(style[name]=value)),void 0)}},css:function(elem,name,extra,styles){var val,num,hooks,origName=jQuery.camelCase(name);return name=jQuery.cssProps[origName]||(jQuery.cssProps[origName]=vendorPropName(origName)||origName),hooks=jQuery.cssHooks[name]||jQuery.cssHooks[origName],hooks&&"get"in hooks&&(val=hooks.get(elem,!0,extra)),void 0===val&&(val=curCSS(elem,name,styles)),"normal"===val&&name in cssNormalTransform&&(val=cssNormalTransform[name]),""===extra||extra?(num=parseFloat(val),extra===!0||isFinite(num)?num||0:val):val}}),jQuery.each(["height","width"],function(i,name){jQuery.cssHooks[name]={get:function(elem,computed,extra){return computed?rdisplayswap.test(jQuery.css(elem,"display"))&&0===elem.offsetWidth?swap(elem,cssShow,function(){return getWidthOrHeight(elem,name,extra)}):getWidthOrHeight(elem,name,extra):void 0},set:function(elem,value,extra){var matches,styles=extra&&getStyles(elem),subtract=extra&&augmentWidthOrHeight(elem,name,extra,"border-box"===jQuery.css(elem,"boxSizing",!1,styles),styles);return subtract&&(matches=rcssNum.exec(value))&&"px"!==(matches[3]||"px")&&(elem.style[name]=value,value=jQuery.css(elem,name)),setPositiveNumber(elem,value,subtract)}}}),jQuery.cssHooks.marginLeft=addGetHookIf(support.reliableMarginLeft,function(elem,computed){return computed?(parseFloat(curCSS(elem,"marginLeft"))||elem.getBoundingClientRect().left-swap(elem,{marginLeft:0},function(){return elem.getBoundingClientRect().left}))+"px":void 0}),jQuery.cssHooks.marginRight=addGetHookIf(support.reliableMarginRight,function(elem,computed){return computed?swap(elem,{display:"inline-block"},curCSS,[elem,"marginRight"]):void 0}),jQuery.each({margin:"",padding:"",border:"Width"},function(prefix,suffix){jQuery.cssHooks[prefix+suffix]={expand:function(value){for(var i=0,expanded={},parts="string"==typeof value?value.split(" "):[value];4>i;i++)expanded[prefix+cssExpand[i]+suffix]=parts[i]||parts[i-2]||parts[0];return expanded}},rmargin.test(prefix)||(jQuery.cssHooks[prefix+suffix].set=setPositiveNumber)}),jQuery.fn.extend({css:function(name,value){return access(this,function(elem,name,value){var styles,len,map={},i=0;if(jQuery.isArray(name)){for(styles=getStyles(elem),len=name.length;len>i;i++)map[name[i]]=jQuery.css(elem,name[i],!1,styles);return map}return void 0!==value?jQuery.style(elem,name,value):jQuery.css(elem,name)},name,value,arguments.length>1)},show:function(){return showHide(this,!0)},hide:function(){return showHide(this)},toggle:function(state){return"boolean"==typeof state?state?this.show():this.hide():this.each(function(){isHidden(this)?jQuery(this).show():jQuery(this).hide()})}}),jQuery.Tween=Tween,Tween.prototype={constructor:Tween,init:function(elem,options,prop,end,easing,unit){this.elem=elem,this.prop=prop,this.easing=easing||jQuery.easing._default,this.options=options,this.start=this.now=this.cur(),this.end=end,this.unit=unit||(jQuery.cssNumber[prop]?"":"px")},cur:function(){var hooks=Tween.propHooks[this.prop];return hooks&&hooks.get?hooks.get(this):Tween.propHooks._default.get(this)},run:function(percent){var eased,hooks=Tween.propHooks[this.prop];return this.options.duration?this.pos=eased=jQuery.easing[this.easing](percent,this.options.duration*percent,0,1,this.options.duration):this.pos=eased=percent,this.now=(this.end-this.start)*eased+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),hooks&&hooks.set?hooks.set(this):Tween.propHooks._default.set(this),this}},Tween.prototype.init.prototype=Tween.prototype,Tween.propHooks={_default:{get:function(tween){var result;return 1!==tween.elem.nodeType||null!=tween.elem[tween.prop]&&null==tween.elem.style[tween.prop]?tween.elem[tween.prop]:(result=jQuery.css(tween.elem,tween.prop,""),result&&"auto"!==result?result:0)},set:function(tween){jQuery.fx.step[tween.prop]?jQuery.fx.step[tween.prop](tween):1!==tween.elem.nodeType||null==tween.elem.style[jQuery.cssProps[tween.prop]]&&!jQuery.cssHooks[tween.prop]?tween.elem[tween.prop]=tween.now:jQuery.style(tween.elem,tween.prop,tween.now+tween.unit)}}},Tween.propHooks.scrollTop=Tween.propHooks.scrollLeft={set:function(tween){tween.elem.nodeType&&tween.elem.parentNode&&(tween.elem[tween.prop]=tween.now)}},jQuery.easing={linear:function(p){return p},swing:function(p){return.5-Math.cos(p*Math.PI)/2},_default:"swing"},jQuery.fx=Tween.prototype.init,jQuery.fx.step={};var fxNow,timerId,rfxtypes=/^(?:toggle|show|hide)$/,rrun=/queueHooks$/;jQuery.Animation=jQuery.extend(Animation,{tweeners:{"*":[function(prop,value){var tween=this.createTween(prop,value);return adjustCSS(tween.elem,prop,rcssNum.exec(value),tween),tween}]},tweener:function(props,callback){jQuery.isFunction(props)?(callback=props,props=["*"]):props=props.match(rnotwhite);for(var prop,index=0,length=props.length;length>index;index++)prop=props[index],Animation.tweeners[prop]=Animation.tweeners[prop]||[],Animation.tweeners[prop].unshift(callback)},prefilters:[defaultPrefilter],prefilter:function(callback,prepend){prepend?Animation.prefilters.unshift(callback):Animation.prefilters.push(callback)}}),jQuery.speed=function(speed,easing,fn){var opt=speed&&"object"==typeof speed?jQuery.extend({},speed):{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};return opt.duration=jQuery.fx.off?0:"number"==typeof opt.duration?opt.duration:opt.duration in jQuery.fx.speeds?jQuery.fx.speeds[opt.duration]:jQuery.fx.speeds._default,(null==opt.queue||opt.queue===!0)&&(opt.queue="fx"),opt.old=opt.complete,opt.complete=function(){jQuery.isFunction(opt.old)&&opt.old.call(this),opt.queue&&jQuery.dequeue(this,opt.queue)},opt},jQuery.fn.extend({fadeTo:function(speed,to,easing,callback){return this.filter(isHidden).css("opacity",0).show().end().animate({opacity:to},speed,easing,callback)},animate:function(prop,speed,easing,callback){var empty=jQuery.isEmptyObject(prop),optall=jQuery.speed(speed,easing,callback),doAnimation=function(){
-var anim=Animation(this,jQuery.extend({},prop),optall);(empty||dataPriv.get(this,"finish"))&&anim.stop(!0)};return doAnimation.finish=doAnimation,empty||optall.queue===!1?this.each(doAnimation):this.queue(optall.queue,doAnimation)},stop:function(type,clearQueue,gotoEnd){var stopQueue=function(hooks){var stop=hooks.stop;delete hooks.stop,stop(gotoEnd)};return"string"!=typeof type&&(gotoEnd=clearQueue,clearQueue=type,type=void 0),clearQueue&&type!==!1&&this.queue(type||"fx",[]),this.each(function(){var dequeue=!0,index=null!=type&&type+"queueHooks",timers=jQuery.timers,data=dataPriv.get(this);if(index)data[index]&&data[index].stop&&stopQueue(data[index]);else for(index in data)data[index]&&data[index].stop&&rrun.test(index)&&stopQueue(data[index]);for(index=timers.length;index--;)timers[index].elem!==this||null!=type&&timers[index].queue!==type||(timers[index].anim.stop(gotoEnd),dequeue=!1,timers.splice(index,1));(dequeue||!gotoEnd)&&jQuery.dequeue(this,type)})},finish:function(type){return type!==!1&&(type=type||"fx"),this.each(function(){var index,data=dataPriv.get(this),queue=data[type+"queue"],hooks=data[type+"queueHooks"],timers=jQuery.timers,length=queue?queue.length:0;for(data.finish=!0,jQuery.queue(this,type,[]),hooks&&hooks.stop&&hooks.stop.call(this,!0),index=timers.length;index--;)timers[index].elem===this&&timers[index].queue===type&&(timers[index].anim.stop(!0),timers.splice(index,1));for(index=0;length>index;index++)queue[index]&&queue[index].finish&&queue[index].finish.call(this);delete data.finish})}}),jQuery.each(["toggle","show","hide"],function(i,name){var cssFn=jQuery.fn[name];jQuery.fn[name]=function(speed,easing,callback){return null==speed||"boolean"==typeof speed?cssFn.apply(this,arguments):this.animate(genFx(name,!0),speed,easing,callback)}}),jQuery.each({slideDown:genFx("show"),slideUp:genFx("hide"),slideToggle:genFx("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(name,props){jQuery.fn[name]=function(speed,easing,callback){return this.animate(props,speed,easing,callback)}}),jQuery.timers=[],jQuery.fx.tick=function(){var timer,i=0,timers=jQuery.timers;for(fxNow=jQuery.now();i<timers.length;i++)timer=timers[i],timer()||timers[i]!==timer||timers.splice(i--,1);timers.length||jQuery.fx.stop(),fxNow=void 0},jQuery.fx.timer=function(timer){jQuery.timers.push(timer),timer()?jQuery.fx.start():jQuery.timers.pop()},jQuery.fx.interval=13,jQuery.fx.start=function(){timerId||(timerId=window.setInterval(jQuery.fx.tick,jQuery.fx.interval))},jQuery.fx.stop=function(){window.clearInterval(timerId),timerId=null},jQuery.fx.speeds={slow:600,fast:200,_default:400},jQuery.fn.delay=function(time,type){return time=jQuery.fx?jQuery.fx.speeds[time]||time:time,type=type||"fx",this.queue(type,function(next,hooks){var timeout=window.setTimeout(next,time);hooks.stop=function(){window.clearTimeout(timeout)}})},function(){var input=document.createElement("input"),select=document.createElement("select"),opt=select.appendChild(document.createElement("option"));input.type="checkbox",support.checkOn=""!==input.value,support.optSelected=opt.selected,select.disabled=!0,support.optDisabled=!opt.disabled,input=document.createElement("input"),input.value="t",input.type="radio",support.radioValue="t"===input.value}();var boolHook,attrHandle=jQuery.expr.attrHandle;jQuery.fn.extend({attr:function(name,value){return access(this,jQuery.attr,name,value,arguments.length>1)},removeAttr:function(name){return this.each(function(){jQuery.removeAttr(this,name)})}}),jQuery.extend({attr:function(elem,name,value){var ret,hooks,nType=elem.nodeType;if(3!==nType&&8!==nType&&2!==nType)return"undefined"==typeof elem.getAttribute?jQuery.prop(elem,name,value):(1===nType&&jQuery.isXMLDoc(elem)||(name=name.toLowerCase(),hooks=jQuery.attrHooks[name]||(jQuery.expr.match.bool.test(name)?boolHook:void 0)),void 0!==value?null===value?void jQuery.removeAttr(elem,name):hooks&&"set"in hooks&&void 0!==(ret=hooks.set(elem,value,name))?ret:(elem.setAttribute(name,value+""),value):hooks&&"get"in hooks&&null!==(ret=hooks.get(elem,name))?ret:(ret=jQuery.find.attr(elem,name),null==ret?void 0:ret))},attrHooks:{type:{set:function(elem,value){if(!support.radioValue&&"radio"===value&&jQuery.nodeName(elem,"input")){var val=elem.value;return elem.setAttribute("type",value),val&&(elem.value=val),value}}}},removeAttr:function(elem,value){var name,propName,i=0,attrNames=value&&value.match(rnotwhite);if(attrNames&&1===elem.nodeType)for(;name=attrNames[i++];)propName=jQuery.propFix[name]||name,jQuery.expr.match.bool.test(name)&&(elem[propName]=!1),elem.removeAttribute(name)}}),boolHook={set:function(elem,value,name){return value===!1?jQuery.removeAttr(elem,name):elem.setAttribute(name,name),name}},jQuery.each(jQuery.expr.match.bool.source.match(/\w+/g),function(i,name){var getter=attrHandle[name]||jQuery.find.attr;attrHandle[name]=function(elem,name,isXML){var ret,handle;return isXML||(handle=attrHandle[name],attrHandle[name]=ret,ret=null!=getter(elem,name,isXML)?name.toLowerCase():null,attrHandle[name]=handle),ret}});var rfocusable=/^(?:input|select|textarea|button)$/i,rclickable=/^(?:a|area)$/i;jQuery.fn.extend({prop:function(name,value){return access(this,jQuery.prop,name,value,arguments.length>1)},removeProp:function(name){return this.each(function(){delete this[jQuery.propFix[name]||name]})}}),jQuery.extend({prop:function(elem,name,value){var ret,hooks,nType=elem.nodeType;if(3!==nType&&8!==nType&&2!==nType)return 1===nType&&jQuery.isXMLDoc(elem)||(name=jQuery.propFix[name]||name,hooks=jQuery.propHooks[name]),void 0!==value?hooks&&"set"in hooks&&void 0!==(ret=hooks.set(elem,value,name))?ret:elem[name]=value:hooks&&"get"in hooks&&null!==(ret=hooks.get(elem,name))?ret:elem[name]},propHooks:{tabIndex:{get:function(elem){var tabindex=jQuery.find.attr(elem,"tabindex");return tabindex?parseInt(tabindex,10):rfocusable.test(elem.nodeName)||rclickable.test(elem.nodeName)&&elem.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),support.optSelected||(jQuery.propHooks.selected={get:function(elem){var parent=elem.parentNode;return parent&&parent.parentNode&&parent.parentNode.selectedIndex,null},set:function(elem){var parent=elem.parentNode;parent&&(parent.selectedIndex,parent.parentNode&&parent.parentNode.selectedIndex)}}),jQuery.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){jQuery.propFix[this.toLowerCase()]=this});var rclass=/[\t\r\n\f]/g;jQuery.fn.extend({addClass:function(value){var classes,elem,cur,curValue,clazz,j,finalValue,i=0;if(jQuery.isFunction(value))return this.each(function(j){jQuery(this).addClass(value.call(this,j,getClass(this)))});if("string"==typeof value&&value)for(classes=value.match(rnotwhite)||[];elem=this[i++];)if(curValue=getClass(elem),cur=1===elem.nodeType&&(" "+curValue+" ").replace(rclass," ")){for(j=0;clazz=classes[j++];)cur.indexOf(" "+clazz+" ")<0&&(cur+=clazz+" ");finalValue=jQuery.trim(cur),curValue!==finalValue&&elem.setAttribute("class",finalValue)}return this},removeClass:function(value){var classes,elem,cur,curValue,clazz,j,finalValue,i=0;if(jQuery.isFunction(value))return this.each(function(j){jQuery(this).removeClass(value.call(this,j,getClass(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof value&&value)for(classes=value.match(rnotwhite)||[];elem=this[i++];)if(curValue=getClass(elem),cur=1===elem.nodeType&&(" "+curValue+" ").replace(rclass," ")){for(j=0;clazz=classes[j++];)for(;cur.indexOf(" "+clazz+" ")>-1;)cur=cur.replace(" "+clazz+" "," ");finalValue=jQuery.trim(cur),curValue!==finalValue&&elem.setAttribute("class",finalValue)}return this},toggleClass:function(value,stateVal){var type=typeof value;return"boolean"==typeof stateVal&&"string"===type?stateVal?this.addClass(value):this.removeClass(value):jQuery.isFunction(value)?this.each(function(i){jQuery(this).toggleClass(value.call(this,i,getClass(this),stateVal),stateVal)}):this.each(function(){var className,i,self,classNames;if("string"===type)for(i=0,self=jQuery(this),classNames=value.match(rnotwhite)||[];className=classNames[i++];)self.hasClass(className)?self.removeClass(className):self.addClass(className);else(void 0===value||"boolean"===type)&&(className=getClass(this),className&&dataPriv.set(this,"__className__",className),this.setAttribute&&this.setAttribute("class",className||value===!1?"":dataPriv.get(this,"__className__")||""))})},hasClass:function(selector){var className,elem,i=0;for(className=" "+selector+" ";elem=this[i++];)if(1===elem.nodeType&&(" "+getClass(elem)+" ").replace(rclass," ").indexOf(className)>-1)return!0;return!1}});var rreturn=/\r/g,rspaces=/[\x20\t\r\n\f]+/g;jQuery.fn.extend({val:function(value){var hooks,ret,isFunction,elem=this[0];{if(arguments.length)return isFunction=jQuery.isFunction(value),this.each(function(i){var val;1===this.nodeType&&(val=isFunction?value.call(this,i,jQuery(this).val()):value,null==val?val="":"number"==typeof val?val+="":jQuery.isArray(val)&&(val=jQuery.map(val,function(value){return null==value?"":value+""})),hooks=jQuery.valHooks[this.type]||jQuery.valHooks[this.nodeName.toLowerCase()],hooks&&"set"in hooks&&void 0!==hooks.set(this,val,"value")||(this.value=val))});if(elem)return hooks=jQuery.valHooks[elem.type]||jQuery.valHooks[elem.nodeName.toLowerCase()],hooks&&"get"in hooks&&void 0!==(ret=hooks.get(elem,"value"))?ret:(ret=elem.value,"string"==typeof ret?ret.replace(rreturn,""):null==ret?"":ret)}}}),jQuery.extend({valHooks:{option:{get:function(elem){var val=jQuery.find.attr(elem,"value");return null!=val?val:jQuery.trim(jQuery.text(elem)).replace(rspaces," ")}},select:{get:function(elem){for(var value,option,options=elem.options,index=elem.selectedIndex,one="select-one"===elem.type||0>index,values=one?null:[],max=one?index+1:options.length,i=0>index?max:one?index:0;max>i;i++)if(option=options[i],!(!option.selected&&i!==index||(support.optDisabled?option.disabled:null!==option.getAttribute("disabled"))||option.parentNode.disabled&&jQuery.nodeName(option.parentNode,"optgroup"))){if(value=jQuery(option).val(),one)return value;values.push(value)}return values},set:function(elem,value){for(var optionSet,option,options=elem.options,values=jQuery.makeArray(value),i=options.length;i--;)option=options[i],(option.selected=jQuery.inArray(jQuery.valHooks.option.get(option),values)>-1)&&(optionSet=!0);return optionSet||(elem.selectedIndex=-1),values}}}}),jQuery.each(["radio","checkbox"],function(){jQuery.valHooks[this]={set:function(elem,value){return jQuery.isArray(value)?elem.checked=jQuery.inArray(jQuery(elem).val(),value)>-1:void 0}},support.checkOn||(jQuery.valHooks[this].get=function(elem){return null===elem.getAttribute("value")?"on":elem.value})});var rfocusMorph=/^(?:focusinfocus|focusoutblur)$/;jQuery.extend(jQuery.event,{trigger:function(event,data,elem,onlyHandlers){var i,cur,tmp,bubbleType,ontype,handle,special,eventPath=[elem||document],type=hasOwn.call(event,"type")?event.type:event,namespaces=hasOwn.call(event,"namespace")?event.namespace.split("."):[];if(cur=tmp=elem=elem||document,3!==elem.nodeType&&8!==elem.nodeType&&!rfocusMorph.test(type+jQuery.event.triggered)&&(type.indexOf(".")>-1&&(namespaces=type.split("."),type=namespaces.shift(),namespaces.sort()),ontype=type.indexOf(":")<0&&"on"+type,event=event[jQuery.expando]?event:new jQuery.Event(type,"object"==typeof event&&event),event.isTrigger=onlyHandlers?2:3,event.namespace=namespaces.join("."),event.rnamespace=event.namespace?new RegExp("(^|\\.)"+namespaces.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,event.result=void 0,event.target||(event.target=elem),data=null==data?[event]:jQuery.makeArray(data,[event]),special=jQuery.event.special[type]||{},onlyHandlers||!special.trigger||special.trigger.apply(elem,data)!==!1)){if(!onlyHandlers&&!special.noBubble&&!jQuery.isWindow(elem)){for(bubbleType=special.delegateType||type,rfocusMorph.test(bubbleType+type)||(cur=cur.parentNode);cur;cur=cur.parentNode)eventPath.push(cur),tmp=cur;tmp===(elem.ownerDocument||document)&&eventPath.push(tmp.defaultView||tmp.parentWindow||window)}for(i=0;(cur=eventPath[i++])&&!event.isPropagationStopped();)event.type=i>1?bubbleType:special.bindType||type,handle=(dataPriv.get(cur,"events")||{})[event.type]&&dataPriv.get(cur,"handle"),handle&&handle.apply(cur,data),handle=ontype&&cur[ontype],handle&&handle.apply&&acceptData(cur)&&(event.result=handle.apply(cur,data),event.result===!1&&event.preventDefault());return event.type=type,onlyHandlers||event.isDefaultPrevented()||special._default&&special._default.apply(eventPath.pop(),data)!==!1||!acceptData(elem)||ontype&&jQuery.isFunction(elem[type])&&!jQuery.isWindow(elem)&&(tmp=elem[ontype],tmp&&(elem[ontype]=null),jQuery.event.triggered=type,elem[type](),jQuery.event.triggered=void 0,tmp&&(elem[ontype]=tmp)),event.result}},simulate:function(type,elem,event){var e=jQuery.extend(new jQuery.Event,event,{type:type,isSimulated:!0});jQuery.event.trigger(e,null,elem)}}),jQuery.fn.extend({trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this)})},triggerHandler:function(type,data){var elem=this[0];return elem?jQuery.event.trigger(type,data,elem,!0):void 0}}),jQuery.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(i,name){jQuery.fn[name]=function(data,fn){return arguments.length>0?this.on(name,null,data,fn):this.trigger(name)}}),jQuery.fn.extend({hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut||fnOver)}}),support.focusin="onfocusin"in window,support.focusin||jQuery.each({focus:"focusin",blur:"focusout"},function(orig,fix){var handler=function(event){jQuery.event.simulate(fix,event.target,jQuery.event.fix(event))};jQuery.event.special[fix]={setup:function(){var doc=this.ownerDocument||this,attaches=dataPriv.access(doc,fix);attaches||doc.addEventListener(orig,handler,!0),dataPriv.access(doc,fix,(attaches||0)+1)},teardown:function(){var doc=this.ownerDocument||this,attaches=dataPriv.access(doc,fix)-1;attaches?dataPriv.access(doc,fix,attaches):(doc.removeEventListener(orig,handler,!0),dataPriv.remove(doc,fix))}}});var location=window.location,nonce=jQuery.now(),rquery=/\?/;jQuery.parseJSON=function(data){return JSON.parse(data+"")},jQuery.parseXML=function(data){var xml;if(!data||"string"!=typeof data)return null;try{xml=(new window.DOMParser).parseFromString(data,"text/xml")}catch(e){xml=void 0}return(!xml||xml.getElementsByTagName("parsererror").length)&&jQuery.error("Invalid XML: "+data),xml};var rhash=/#.*$/,rts=/([?&])_=[^&]*/,rheaders=/^(.*?):[ \t]*([^\r\n]*)$/gm,rlocalProtocol=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,rnoContent=/^(?:GET|HEAD)$/,rprotocol=/^\/\//,prefilters={},transports={},allTypes="*/".concat("*"),originAnchor=document.createElement("a");originAnchor.href=location.href,jQuery.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:location.href,type:"GET",isLocal:rlocalProtocol.test(location.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":allTypes,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":jQuery.parseJSON,"text xml":jQuery.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(target,settings){return settings?ajaxExtend(ajaxExtend(target,jQuery.ajaxSettings),settings):ajaxExtend(jQuery.ajaxSettings,target)},ajaxPrefilter:addToPrefiltersOrTransports(prefilters),ajaxTransport:addToPrefiltersOrTransports(transports),ajax:function(url,options){function done(status,nativeStatusText,responses,headers){var isSuccess,success,error,response,modified,statusText=nativeStatusText;2!==state&&(state=2,timeoutTimer&&window.clearTimeout(timeoutTimer),transport=void 0,responseHeadersString=headers||"",jqXHR.readyState=status>0?4:0,isSuccess=status>=200&&300>status||304===status,responses&&(response=ajaxHandleResponses(s,jqXHR,responses)),response=ajaxConvert(s,response,jqXHR,isSuccess),isSuccess?(s.ifModified&&(modified=jqXHR.getResponseHeader("Last-Modified"),modified&&(jQuery.lastModified[cacheURL]=modified),modified=jqXHR.getResponseHeader("etag"),modified&&(jQuery.etag[cacheURL]=modified)),204===status||"HEAD"===s.type?statusText="nocontent":304===status?statusText="notmodified":(statusText=response.state,success=response.data,error=response.error,isSuccess=!error)):(error=statusText,(status||!statusText)&&(statusText="error",0>status&&(status=0))),jqXHR.status=status,jqXHR.statusText=(nativeStatusText||statusText)+"",isSuccess?deferred.resolveWith(callbackContext,[success,statusText,jqXHR]):deferred.rejectWith(callbackContext,[jqXHR,statusText,error]),jqXHR.statusCode(statusCode),statusCode=void 0,fireGlobals&&globalEventContext.trigger(isSuccess?"ajaxSuccess":"ajaxError",[jqXHR,s,isSuccess?success:error]),completeDeferred.fireWith(callbackContext,[jqXHR,statusText]),fireGlobals&&(globalEventContext.trigger("ajaxComplete",[jqXHR,s]),--jQuery.active||jQuery.event.trigger("ajaxStop")))}"object"==typeof url&&(options=url,url=void 0),options=options||{};var transport,cacheURL,responseHeadersString,responseHeaders,timeoutTimer,urlAnchor,fireGlobals,i,s=jQuery.ajaxSetup({},options),callbackContext=s.context||s,globalEventContext=s.context&&(callbackContext.nodeType||callbackContext.jquery)?jQuery(callbackContext):jQuery.event,deferred=jQuery.Deferred(),completeDeferred=jQuery.Callbacks("once memory"),statusCode=s.statusCode||{},requestHeaders={},requestHeadersNames={},state=0,strAbort="canceled",jqXHR={readyState:0,getResponseHeader:function(key){var match;if(2===state){if(!responseHeaders)for(responseHeaders={};match=rheaders.exec(responseHeadersString);)responseHeaders[match[1].toLowerCase()]=match[2];match=responseHeaders[key.toLowerCase()]}return null==match?null:match},getAllResponseHeaders:function(){return 2===state?responseHeadersString:null},setRequestHeader:function(name,value){var lname=name.toLowerCase();return state||(name=requestHeadersNames[lname]=requestHeadersNames[lname]||name,requestHeaders[name]=value),this},overrideMimeType:function(type){return state||(s.mimeType=type),this},statusCode:function(map){var code;if(map)if(2>state)for(code in map)statusCode[code]=[statusCode[code],map[code]];else jqXHR.always(map[jqXHR.status]);return this},abort:function(statusText){var finalText=statusText||strAbort;return transport&&transport.abort(finalText),done(0,finalText),this}};if(deferred.promise(jqXHR).complete=completeDeferred.add,jqXHR.success=jqXHR.done,jqXHR.error=jqXHR.fail,s.url=((url||s.url||location.href)+"").replace(rhash,"").replace(rprotocol,location.protocol+"//"),s.type=options.method||options.type||s.method||s.type,s.dataTypes=jQuery.trim(s.dataType||"*").toLowerCase().match(rnotwhite)||[""],null==s.crossDomain){urlAnchor=document.createElement("a");try{urlAnchor.href=s.url,urlAnchor.href=urlAnchor.href,s.crossDomain=originAnchor.protocol+"//"+originAnchor.host!=urlAnchor.protocol+"//"+urlAnchor.host}catch(e){s.crossDomain=!0}}if(s.data&&s.processData&&"string"!=typeof s.data&&(s.data=jQuery.param(s.data,s.traditional)),inspectPrefiltersOrTransports(prefilters,s,options,jqXHR),2===state)return jqXHR;fireGlobals=jQuery.event&&s.global,fireGlobals&&0===jQuery.active++&&jQuery.event.trigger("ajaxStart"),s.type=s.type.toUpperCase(),s.hasContent=!rnoContent.test(s.type),cacheURL=s.url,s.hasContent||(s.data&&(cacheURL=s.url+=(rquery.test(cacheURL)?"&":"?")+s.data,delete s.data),s.cache===!1&&(s.url=rts.test(cacheURL)?cacheURL.replace(rts,"$1_="+nonce++):cacheURL+(rquery.test(cacheURL)?"&":"?")+"_="+nonce++)),s.ifModified&&(jQuery.lastModified[cacheURL]&&jqXHR.setRequestHeader("If-Modified-Since",jQuery.lastModified[cacheURL]),jQuery.etag[cacheURL]&&jqXHR.setRequestHeader("If-None-Match",jQuery.etag[cacheURL])),(s.data&&s.hasContent&&s.contentType!==!1||options.contentType)&&jqXHR.setRequestHeader("Content-Type",s.contentType),jqXHR.setRequestHeader("Accept",s.dataTypes[0]&&s.accepts[s.dataTypes[0]]?s.accepts[s.dataTypes[0]]+("*"!==s.dataTypes[0]?", "+allTypes+"; q=0.01":""):s.accepts["*"]);for(i in s.headers)jqXHR.setRequestHeader(i,s.headers[i]);if(s.beforeSend&&(s.beforeSend.call(callbackContext,jqXHR,s)===!1||2===state))return jqXHR.abort();strAbort="abort";for(i in{success:1,error:1,complete:1})jqXHR[i](s[i]);if(transport=inspectPrefiltersOrTransports(transports,s,options,jqXHR)){if(jqXHR.readyState=1,fireGlobals&&globalEventContext.trigger("ajaxSend",[jqXHR,s]),2===state)return jqXHR;s.async&&s.timeout>0&&(timeoutTimer=window.setTimeout(function(){jqXHR.abort("timeout")},s.timeout));try{state=1,transport.send(requestHeaders,done)}catch(e){if(!(2>state))throw e;done(-1,e)}}else done(-1,"No Transport");return jqXHR},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json")},getScript:function(url,callback){return jQuery.get(url,void 0,callback,"script")}}),jQuery.each(["get","post"],function(i,method){jQuery[method]=function(url,data,callback,type){return jQuery.isFunction(data)&&(type=type||callback,callback=data,data=void 0),jQuery.ajax(jQuery.extend({url:url,type:method,dataType:type,data:data,success:callback},jQuery.isPlainObject(url)&&url))}}),jQuery._evalUrl=function(url){return jQuery.ajax({url:url,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},jQuery.fn.extend({wrapAll:function(html){var wrap;return jQuery.isFunction(html)?this.each(function(i){jQuery(this).wrapAll(html.call(this,i))}):(this[0]&&(wrap=jQuery(html,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&wrap.insertBefore(this[0]),wrap.map(function(){for(var elem=this;elem.firstElementChild;)elem=elem.firstElementChild;return elem}).append(this)),this)},wrapInner:function(html){return jQuery.isFunction(html)?this.each(function(i){jQuery(this).wrapInner(html.call(this,i))}):this.each(function(){var self=jQuery(this),contents=self.contents();contents.length?contents.wrapAll(html):self.append(html)})},wrap:function(html){var isFunction=jQuery.isFunction(html);return this.each(function(i){jQuery(this).wrapAll(isFunction?html.call(this,i):html)})},unwrap:function(){return this.parent().each(function(){jQuery.nodeName(this,"body")||jQuery(this).replaceWith(this.childNodes)}).end()}}),jQuery.expr.filters.hidden=function(elem){return!jQuery.expr.filters.visible(elem)},jQuery.expr.filters.visible=function(elem){return elem.offsetWidth>0||elem.offsetHeight>0||elem.getClientRects().length>0};var r20=/%20/g,rbracket=/\[\]$/,rCRLF=/\r?\n/g,rsubmitterTypes=/^(?:submit|button|image|reset|file)$/i,rsubmittable=/^(?:input|select|textarea|keygen)/i;jQuery.param=function(a,traditional){var prefix,s=[],add=function(key,value){value=jQuery.isFunction(value)?value():null==value?"":value,s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value)};if(void 0===traditional&&(traditional=jQuery.ajaxSettings&&jQuery.ajaxSettings.traditional),jQuery.isArray(a)||a.jquery&&!jQuery.isPlainObject(a))jQuery.each(a,function(){add(this.name,this.value)});else for(prefix in a)buildParams(prefix,a[prefix],traditional,add);return s.join("&").replace(r20,"+")},jQuery.fn.extend({serialize:function(){return jQuery.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var elements=jQuery.prop(this,"elements");return elements?jQuery.makeArray(elements):this}).filter(function(){var type=this.type;return this.name&&!jQuery(this).is(":disabled")&&rsubmittable.test(this.nodeName)&&!rsubmitterTypes.test(type)&&(this.checked||!rcheckableType.test(type))}).map(function(i,elem){var val=jQuery(this).val();return null==val?null:jQuery.isArray(val)?jQuery.map(val,function(val){return{name:elem.name,value:val.replace(rCRLF,"\r\n")}}):{name:elem.name,value:val.replace(rCRLF,"\r\n")}}).get()}}),jQuery.ajaxSettings.xhr=function(){try{return new window.XMLHttpRequest}catch(e){}};var xhrSuccessStatus={0:200,1223:204},xhrSupported=jQuery.ajaxSettings.xhr();support.cors=!!xhrSupported&&"withCredentials"in xhrSupported,support.ajax=xhrSupported=!!xhrSupported,jQuery.ajaxTransport(function(options){var callback,errorCallback;return support.cors||xhrSupported&&!options.crossDomain?{send:function(headers,complete){var i,xhr=options.xhr();if(xhr.open(options.type,options.url,options.async,options.username,options.password),options.xhrFields)for(i in options.xhrFields)xhr[i]=options.xhrFields[i];options.mimeType&&xhr.overrideMimeType&&xhr.overrideMimeType(options.mimeType),options.crossDomain||headers["X-Requested-With"]||(headers["X-Requested-With"]="XMLHttpRequest");for(i in headers)xhr.setRequestHeader(i,headers[i]);callback=function(type){return function(){callback&&(callback=errorCallback=xhr.onload=xhr.onerror=xhr.onabort=xhr.onreadystatechange=null,"abort"===type?xhr.abort():"error"===type?"number"!=typeof xhr.status?complete(0,"error"):complete(xhr.status,xhr.statusText):complete(xhrSuccessStatus[xhr.status]||xhr.status,xhr.statusText,"text"!==(xhr.responseType||"text")||"string"!=typeof xhr.responseText?{binary:xhr.response}:{text:xhr.responseText},xhr.getAllResponseHeaders()))}},xhr.onload=callback(),errorCallback=xhr.onerror=callback("error"),void 0!==xhr.onabort?xhr.onabort=errorCallback:xhr.onreadystatechange=function(){4===xhr.readyState&&window.setTimeout(function(){callback&&errorCallback()})},callback=callback("abort");try{xhr.send(options.hasContent&&options.data||null)}catch(e){if(callback)throw e}},abort:function(){callback&&callback()}}:void 0}),jQuery.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(text){return jQuery.globalEval(text),text}}}),jQuery.ajaxPrefilter("script",function(s){void 0===s.cache&&(s.cache=!1),s.crossDomain&&(s.type="GET")}),jQuery.ajaxTransport("script",function(s){if(s.crossDomain){var script,callback;return{send:function(_,complete){script=jQuery("<script>").prop({charset:s.scriptCharset,src:s.url}).on("load error",callback=function(evt){script.remove(),callback=null,evt&&complete("error"===evt.type?404:200,evt.type)}),document.head.appendChild(script[0])},abort:function(){callback&&callback()}}}});var oldCallbacks=[],rjsonp=/(=)\?(?=&|$)|\?\?/;jQuery.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var callback=oldCallbacks.pop()||jQuery.expando+"_"+nonce++;return this[callback]=!0,callback}}),jQuery.ajaxPrefilter("json jsonp",function(s,originalSettings,jqXHR){var callbackName,overwritten,responseContainer,jsonProp=s.jsonp!==!1&&(rjsonp.test(s.url)?"url":"string"==typeof s.data&&0===(s.contentType||"").indexOf("application/x-www-form-urlencoded")&&rjsonp.test(s.data)&&"data");return jsonProp||"jsonp"===s.dataTypes[0]?(callbackName=s.jsonpCallback=jQuery.isFunction(s.jsonpCallback)?s.jsonpCallback():s.jsonpCallback,jsonProp?s[jsonProp]=s[jsonProp].replace(rjsonp,"$1"+callbackName):s.jsonp!==!1&&(s.url+=(rquery.test(s.url)?"&":"?")+s.jsonp+"="+callbackName),s.converters["script json"]=function(){return responseContainer||jQuery.error(callbackName+" was not called"),responseContainer[0]},s.dataTypes[0]="json",overwritten=window[callbackName],window[callbackName]=function(){responseContainer=arguments},jqXHR.always(function(){void 0===overwritten?jQuery(window).removeProp(callbackName):window[callbackName]=overwritten,s[callbackName]&&(s.jsonpCallback=originalSettings.jsonpCallback,oldCallbacks.push(callbackName)),responseContainer&&jQuery.isFunction(overwritten)&&overwritten(responseContainer[0]),responseContainer=overwritten=void 0}),"script"):void 0}),jQuery.parseHTML=function(data,context,keepScripts){if(!data||"string"!=typeof data)return null;"boolean"==typeof context&&(keepScripts=context,context=!1),context=context||document;var parsed=rsingleTag.exec(data),scripts=!keepScripts&&[];return parsed?[context.createElement(parsed[1])]:(parsed=buildFragment([data],context,scripts),scripts&&scripts.length&&jQuery(scripts).remove(),jQuery.merge([],parsed.childNodes))};var _load=jQuery.fn.load;jQuery.fn.load=function(url,params,callback){if("string"!=typeof url&&_load)return _load.apply(this,arguments);var selector,type,response,self=this,off=url.indexOf(" ");return off>-1&&(selector=jQuery.trim(url.slice(off)),url=url.slice(0,off)),jQuery.isFunction(params)?(callback=params,params=void 0):params&&"object"==typeof params&&(type="POST"),self.length>0&&jQuery.ajax({url:url,type:type||"GET",dataType:"html",data:params}).done(function(responseText){response=arguments,self.html(selector?jQuery("<div>").append(jQuery.parseHTML(responseText)).find(selector):responseText)}).always(callback&&function(jqXHR,status){self.each(function(){callback.apply(this,response||[jqXHR.responseText,status,jqXHR])})}),this},jQuery.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(i,type){jQuery.fn[type]=function(fn){return this.on(type,fn)}}),jQuery.expr.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem}).length},jQuery.offset={setOffset:function(elem,options,i){var curPosition,curLeft,curCSSTop,curTop,curOffset,curCSSLeft,calculatePosition,position=jQuery.css(elem,"position"),curElem=jQuery(elem),props={};"static"===position&&(elem.style.position="relative"),curOffset=curElem.offset(),curCSSTop=jQuery.css(elem,"top"),curCSSLeft=jQuery.css(elem,"left"),calculatePosition=("absolute"===position||"fixed"===position)&&(curCSSTop+curCSSLeft).indexOf("auto")>-1,calculatePosition?(curPosition=curElem.position(),curTop=curPosition.top,curLeft=curPosition.left):(curTop=parseFloat(curCSSTop)||0,curLeft=parseFloat(curCSSLeft)||0),jQuery.isFunction(options)&&(options=options.call(elem,i,jQuery.extend({},curOffset))),null!=options.top&&(props.top=options.top-curOffset.top+curTop),null!=options.left&&(props.left=options.left-curOffset.left+curLeft),"using"in options?options.using.call(elem,props):curElem.css(props)}},jQuery.fn.extend({offset:function(options){if(arguments.length)return void 0===options?this:this.each(function(i){jQuery.offset.setOffset(this,options,i)});var docElem,win,elem=this[0],box={top:0,left:0},doc=elem&&elem.ownerDocument;if(doc)return docElem=doc.documentElement,jQuery.contains(docElem,elem)?(box=elem.getBoundingClientRect(),win=getWindow(doc),{top:box.top+win.pageYOffset-docElem.clientTop,left:box.left+win.pageXOffset-docElem.clientLeft}):box},position:function(){if(this[0]){var offsetParent,offset,elem=this[0],parentOffset={top:0,left:0};return"fixed"===jQuery.css(elem,"position")?offset=elem.getBoundingClientRect():(offsetParent=this.offsetParent(),offset=this.offset(),jQuery.nodeName(offsetParent[0],"html")||(parentOffset=offsetParent.offset()),parentOffset.top+=jQuery.css(offsetParent[0],"borderTopWidth",!0),parentOffset.left+=jQuery.css(offsetParent[0],"borderLeftWidth",!0)),{top:offset.top-parentOffset.top-jQuery.css(elem,"marginTop",!0),left:offset.left-parentOffset.left-jQuery.css(elem,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var offsetParent=this.offsetParent;offsetParent&&"static"===jQuery.css(offsetParent,"position");)offsetParent=offsetParent.offsetParent;return offsetParent||documentElement})}}),jQuery.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(method,prop){var top="pageYOffset"===prop;jQuery.fn[method]=function(val){return access(this,function(elem,method,val){var win=getWindow(elem);return void 0===val?win?win[prop]:elem[method]:void(win?win.scrollTo(top?win.pageXOffset:val,top?val:win.pageYOffset):elem[method]=val)},method,val,arguments.length);
-}}),jQuery.each(["top","left"],function(i,prop){jQuery.cssHooks[prop]=addGetHookIf(support.pixelPosition,function(elem,computed){return computed?(computed=curCSS(elem,prop),rnumnonpx.test(computed)?jQuery(elem).position()[prop]+"px":computed):void 0})}),jQuery.each({Height:"height",Width:"width"},function(name,type){jQuery.each({padding:"inner"+name,content:type,"":"outer"+name},function(defaultExtra,funcName){jQuery.fn[funcName]=function(margin,value){var chainable=arguments.length&&(defaultExtra||"boolean"!=typeof margin),extra=defaultExtra||(margin===!0||value===!0?"margin":"border");return access(this,function(elem,type,value){var doc;return jQuery.isWindow(elem)?elem.document.documentElement["client"+name]:9===elem.nodeType?(doc=elem.documentElement,Math.max(elem.body["scroll"+name],doc["scroll"+name],elem.body["offset"+name],doc["offset"+name],doc["client"+name])):void 0===value?jQuery.css(elem,type,extra):jQuery.style(elem,type,value,extra)},type,chainable?margin:void 0,chainable,null)}})}),jQuery.fn.extend({bind:function(types,data,fn){return this.on(types,null,data,fn)},unbind:function(types,fn){return this.off(types,null,fn)},delegate:function(selector,types,data,fn){return this.on(types,selector,data,fn)},undelegate:function(selector,types,fn){return 1===arguments.length?this.off(selector,"**"):this.off(types,selector||"**",fn)},size:function(){return this.length}}),jQuery.fn.andSelf=jQuery.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return jQuery});var _jQuery=window.jQuery,_$=window.$;return jQuery.noConflict=function(deep){return window.$===jQuery&&(window.$=_$),deep&&window.jQuery===jQuery&&(window.jQuery=_jQuery),jQuery},noGlobal||(window.jQuery=window.$=jQuery),jQuery}),"undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");if(+function($){"use strict";var version=$.fn.jquery.split(" ")[0].split(".");if(version[0]<2&&version[1]<9||1==version[0]&&9==version[1]&&version[2]<1||version[0]>2)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3")}(jQuery),+function($){"use strict";function transitionEnd(){var el=document.createElement("bootstrap"),transEndEventNames={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var name in transEndEventNames)if(void 0!==el.style[name])return{end:transEndEventNames[name]};return!1}$.fn.emulateTransitionEnd=function(duration){var called=!1,$el=this;$(this).one("bsTransitionEnd",function(){called=!0});var callback=function(){called||$($el).trigger($.support.transition.end)};return setTimeout(callback,duration),this},$(function(){$.support.transition=transitionEnd(),$.support.transition&&($.event.special.bsTransitionEnd={bindType:$.support.transition.end,delegateType:$.support.transition.end,handle:function(e){return $(e.target).is(this)?e.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function($){"use strict";function Plugin(option){return this.each(function(){var $this=$(this),data=$this.data("bs.alert");data||$this.data("bs.alert",data=new Alert(this)),"string"==typeof option&&data[option].call($this)})}var dismiss='[data-dismiss="alert"]',Alert=function(el){$(el).on("click",dismiss,this.close)};Alert.VERSION="3.3.6",Alert.TRANSITION_DURATION=150,Alert.prototype.close=function(e){function removeElement(){$parent.detach().trigger("closed.bs.alert").remove()}var $this=$(this),selector=$this.attr("data-target");selector||(selector=$this.attr("href"),selector=selector&&selector.replace(/.*(?=#[^\s]*$)/,""));var $parent=$(selector);e&&e.preventDefault(),$parent.length||($parent=$this.closest(".alert")),$parent.trigger(e=$.Event("close.bs.alert")),e.isDefaultPrevented()||($parent.removeClass("in"),$.support.transition&&$parent.hasClass("fade")?$parent.one("bsTransitionEnd",removeElement).emulateTransitionEnd(Alert.TRANSITION_DURATION):removeElement())};var old=$.fn.alert;$.fn.alert=Plugin,$.fn.alert.Constructor=Alert,$.fn.alert.noConflict=function(){return $.fn.alert=old,this},$(document).on("click.bs.alert.data-api",dismiss,Alert.prototype.close)}(jQuery),+function($){"use strict";function Plugin(option){return this.each(function(){var $this=$(this),data=$this.data("bs.button"),options="object"==typeof option&&option;data||$this.data("bs.button",data=new Button(this,options)),"toggle"==option?data.toggle():option&&data.setState(option)})}var Button=function(element,options){this.$element=$(element),this.options=$.extend({},Button.DEFAULTS,options),this.isLoading=!1};Button.VERSION="3.3.6",Button.DEFAULTS={loadingText:"loading..."},Button.prototype.setState=function(state){var d="disabled",$el=this.$element,val=$el.is("input")?"val":"html",data=$el.data();state+="Text",null==data.resetText&&$el.data("resetText",$el[val]()),setTimeout($.proxy(function(){$el[val](null==data[state]?this.options[state]:data[state]),"loadingText"==state?(this.isLoading=!0,$el.addClass(d).attr(d,d)):this.isLoading&&(this.isLoading=!1,$el.removeClass(d).removeAttr(d))},this),0)},Button.prototype.toggle=function(){var changed=!0,$parent=this.$element.closest('[data-toggle="buttons"]');if($parent.length){var $input=this.$element.find("input");"radio"==$input.prop("type")?($input.prop("checked")&&(changed=!1),$parent.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==$input.prop("type")&&($input.prop("checked")!==this.$element.hasClass("active")&&(changed=!1),this.$element.toggleClass("active")),$input.prop("checked",this.$element.hasClass("active")),changed&&$input.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var old=$.fn.button;$.fn.button=Plugin,$.fn.button.Constructor=Button,$.fn.button.noConflict=function(){return $.fn.button=old,this},$(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(e){var $btn=$(e.target);$btn.hasClass("btn")||($btn=$btn.closest(".btn")),Plugin.call($btn,"toggle"),$(e.target).is('input[type="radio"]')||$(e.target).is('input[type="checkbox"]')||e.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(e){$(e.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(e.type))})}(jQuery),+function($){"use strict";function Plugin(option){return this.each(function(){var $this=$(this),data=$this.data("bs.carousel"),options=$.extend({},Carousel.DEFAULTS,$this.data(),"object"==typeof option&&option),action="string"==typeof option?option:options.slide;data||$this.data("bs.carousel",data=new Carousel(this,options)),"number"==typeof option?data.to(option):action?data[action]():options.interval&&data.pause().cycle()})}var Carousel=function(element,options){this.$element=$(element),this.$indicators=this.$element.find(".carousel-indicators"),this.options=options,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",$.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",$.proxy(this.pause,this)).on("mouseleave.bs.carousel",$.proxy(this.cycle,this))};Carousel.VERSION="3.3.6",Carousel.TRANSITION_DURATION=600,Carousel.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},Carousel.prototype.keydown=function(e){if(!/input|textarea/i.test(e.target.tagName)){switch(e.which){case 37:this.prev();break;case 39:this.next();break;default:return}e.preventDefault()}},Carousel.prototype.cycle=function(e){return e||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval($.proxy(this.next,this),this.options.interval)),this},Carousel.prototype.getItemIndex=function(item){return this.$items=item.parent().children(".item"),this.$items.index(item||this.$active)},Carousel.prototype.getItemForDirection=function(direction,active){var activeIndex=this.getItemIndex(active),willWrap="prev"==direction&&0===activeIndex||"next"==direction&&activeIndex==this.$items.length-1;if(willWrap&&!this.options.wrap)return active;var delta="prev"==direction?-1:1,itemIndex=(activeIndex+delta)%this.$items.length;return this.$items.eq(itemIndex)},Carousel.prototype.to=function(pos){var that=this,activeIndex=this.getItemIndex(this.$active=this.$element.find(".item.active"));return pos>this.$items.length-1||0>pos?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){that.to(pos)}):activeIndex==pos?this.pause().cycle():this.slide(pos>activeIndex?"next":"prev",this.$items.eq(pos))},Carousel.prototype.pause=function(e){return e||(this.paused=!0),this.$element.find(".next, .prev").length&&$.support.transition&&(this.$element.trigger($.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},Carousel.prototype.next=function(){return this.sliding?void 0:this.slide("next")},Carousel.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},Carousel.prototype.slide=function(type,next){var $active=this.$element.find(".item.active"),$next=next||this.getItemForDirection(type,$active),isCycling=this.interval,direction="next"==type?"left":"right",that=this;if($next.hasClass("active"))return this.sliding=!1;var relatedTarget=$next[0],slideEvent=$.Event("slide.bs.carousel",{relatedTarget:relatedTarget,direction:direction});if(this.$element.trigger(slideEvent),!slideEvent.isDefaultPrevented()){if(this.sliding=!0,isCycling&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var $nextIndicator=$(this.$indicators.children()[this.getItemIndex($next)]);$nextIndicator&&$nextIndicator.addClass("active")}var slidEvent=$.Event("slid.bs.carousel",{relatedTarget:relatedTarget,direction:direction});return $.support.transition&&this.$element.hasClass("slide")?($next.addClass(type),$next[0].offsetWidth,$active.addClass(direction),$next.addClass(direction),$active.one("bsTransitionEnd",function(){$next.removeClass([type,direction].join(" ")).addClass("active"),$active.removeClass(["active",direction].join(" ")),that.sliding=!1,setTimeout(function(){that.$element.trigger(slidEvent)},0)}).emulateTransitionEnd(Carousel.TRANSITION_DURATION)):($active.removeClass("active"),$next.addClass("active"),this.sliding=!1,this.$element.trigger(slidEvent)),isCycling&&this.cycle(),this}};var old=$.fn.carousel;$.fn.carousel=Plugin,$.fn.carousel.Constructor=Carousel,$.fn.carousel.noConflict=function(){return $.fn.carousel=old,this};var clickHandler=function(e){var href,$this=$(this),$target=$($this.attr("data-target")||(href=$this.attr("href"))&&href.replace(/.*(?=#[^\s]+$)/,""));if($target.hasClass("carousel")){var options=$.extend({},$target.data(),$this.data()),slideIndex=$this.attr("data-slide-to");slideIndex&&(options.interval=!1),Plugin.call($target,options),slideIndex&&$target.data("bs.carousel").to(slideIndex),e.preventDefault()}};$(document).on("click.bs.carousel.data-api","[data-slide]",clickHandler).on("click.bs.carousel.data-api","[data-slide-to]",clickHandler),$(window).on("load",function(){$('[data-ride="carousel"]').each(function(){var $carousel=$(this);Plugin.call($carousel,$carousel.data())})})}(jQuery),+function($){"use strict";function getTargetFromTrigger($trigger){var href,target=$trigger.attr("data-target")||(href=$trigger.attr("href"))&&href.replace(/.*(?=#[^\s]+$)/,"");return $(target)}function Plugin(option){return this.each(function(){var $this=$(this),data=$this.data("bs.collapse"),options=$.extend({},Collapse.DEFAULTS,$this.data(),"object"==typeof option&&option);!data&&options.toggle&&/show|hide/.test(option)&&(options.toggle=!1),data||$this.data("bs.collapse",data=new Collapse(this,options)),"string"==typeof option&&data[option]()})}var Collapse=function(element,options){this.$element=$(element),this.options=$.extend({},Collapse.DEFAULTS,options),this.$trigger=$('[data-toggle="collapse"][href="#'+element.id+'"],[data-toggle="collapse"][data-target="#'+element.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};Collapse.VERSION="3.3.6",Collapse.TRANSITION_DURATION=350,Collapse.DEFAULTS={toggle:!0},Collapse.prototype.dimension=function(){var hasWidth=this.$element.hasClass("width");return hasWidth?"width":"height"},Collapse.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var activesData,actives=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(actives&&actives.length&&(activesData=actives.data("bs.collapse"),activesData&&activesData.transitioning))){var startEvent=$.Event("show.bs.collapse");if(this.$element.trigger(startEvent),!startEvent.isDefaultPrevented()){actives&&actives.length&&(Plugin.call(actives,"hide"),activesData||actives.data("bs.collapse",null));var dimension=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[dimension](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var complete=function(){this.$element.removeClass("collapsing").addClass("collapse in")[dimension](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!$.support.transition)return complete.call(this);var scrollSize=$.camelCase(["scroll",dimension].join("-"));this.$element.one("bsTransitionEnd",$.proxy(complete,this)).emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize])}}}},Collapse.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var startEvent=$.Event("hide.bs.collapse");if(this.$element.trigger(startEvent),!startEvent.isDefaultPrevented()){var dimension=this.dimension();this.$element[dimension](this.$element[dimension]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var complete=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return $.support.transition?void this.$element[dimension](0).one("bsTransitionEnd",$.proxy(complete,this)).emulateTransitionEnd(Collapse.TRANSITION_DURATION):complete.call(this)}}},Collapse.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},Collapse.prototype.getParent=function(){return $(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each($.proxy(function(i,element){var $element=$(element);this.addAriaAndCollapsedClass(getTargetFromTrigger($element),$element)},this)).end()},Collapse.prototype.addAriaAndCollapsedClass=function($element,$trigger){var isOpen=$element.hasClass("in");$element.attr("aria-expanded",isOpen),$trigger.toggleClass("collapsed",!isOpen).attr("aria-expanded",isOpen)};var old=$.fn.collapse;$.fn.collapse=Plugin,$.fn.collapse.Constructor=Collapse,$.fn.collapse.noConflict=function(){return $.fn.collapse=old,this},$(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(e){var $this=$(this);$this.attr("data-target")||e.preventDefault();var $target=getTargetFromTrigger($this),data=$target.data("bs.collapse"),option=data?"toggle":$this.data();Plugin.call($target,option)})}(jQuery),+function($){"use strict";function getParent($this){var selector=$this.attr("data-target");selector||(selector=$this.attr("href"),selector=selector&&/#[A-Za-z]/.test(selector)&&selector.replace(/.*(?=#[^\s]*$)/,""));var $parent=selector&&$(selector);return $parent&&$parent.length?$parent:$this.parent()}function clearMenus(e){e&&3===e.which||($(backdrop).remove(),$(toggle).each(function(){var $this=$(this),$parent=getParent($this),relatedTarget={relatedTarget:this};$parent.hasClass("open")&&(e&&"click"==e.type&&/input|textarea/i.test(e.target.tagName)&&$.contains($parent[0],e.target)||($parent.trigger(e=$.Event("hide.bs.dropdown",relatedTarget)),e.isDefaultPrevented()||($this.attr("aria-expanded","false"),$parent.removeClass("open").trigger($.Event("hidden.bs.dropdown",relatedTarget)))))}))}function Plugin(option){return this.each(function(){var $this=$(this),data=$this.data("bs.dropdown");data||$this.data("bs.dropdown",data=new Dropdown(this)),"string"==typeof option&&data[option].call($this)})}var backdrop=".dropdown-backdrop",toggle='[data-toggle="dropdown"]',Dropdown=function(element){$(element).on("click.bs.dropdown",this.toggle)};Dropdown.VERSION="3.3.6",Dropdown.prototype.toggle=function(e){var $this=$(this);if(!$this.is(".disabled, :disabled")){var $parent=getParent($this),isActive=$parent.hasClass("open");if(clearMenus(),!isActive){"ontouchstart"in document.documentElement&&!$parent.closest(".navbar-nav").length&&$(document.createElement("div")).addClass("dropdown-backdrop").insertAfter($(this)).on("click",clearMenus);var relatedTarget={relatedTarget:this};if($parent.trigger(e=$.Event("show.bs.dropdown",relatedTarget)),e.isDefaultPrevented())return;$this.trigger("focus").attr("aria-expanded","true"),$parent.toggleClass("open").trigger($.Event("shown.bs.dropdown",relatedTarget))}return!1}},Dropdown.prototype.keydown=function(e){if(/(38|40|27|32)/.test(e.which)&&!/input|textarea/i.test(e.target.tagName)){var $this=$(this);if(e.preventDefault(),e.stopPropagation(),!$this.is(".disabled, :disabled")){var $parent=getParent($this),isActive=$parent.hasClass("open");if(!isActive&&27!=e.which||isActive&&27==e.which)return 27==e.which&&$parent.find(toggle).trigger("focus"),$this.trigger("click");var desc=" li:not(.disabled):visible a",$items=$parent.find(".dropdown-menu"+desc);if($items.length){var index=$items.index(e.target);38==e.which&&index>0&&index--,40==e.which&&index<$items.length-1&&index++,~index||(index=0),$items.eq(index).trigger("focus")}}}};var old=$.fn.dropdown;$.fn.dropdown=Plugin,$.fn.dropdown.Constructor=Dropdown,$.fn.dropdown.noConflict=function(){return $.fn.dropdown=old,this},$(document).on("click.bs.dropdown.data-api",clearMenus).on("click.bs.dropdown.data-api",".dropdown form",function(e){e.stopPropagation()}).on("click.bs.dropdown.data-api",toggle,Dropdown.prototype.toggle).on("keydown.bs.dropdown.data-api",toggle,Dropdown.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",Dropdown.prototype.keydown)}(jQuery),+function($){"use strict";function Plugin(option,_relatedTarget){return this.each(function(){var $this=$(this),data=$this.data("bs.modal"),options=$.extend({},Modal.DEFAULTS,$this.data(),"object"==typeof option&&option);data||$this.data("bs.modal",data=new Modal(this,options)),"string"==typeof option?data[option](_relatedTarget):options.show&&data.show(_relatedTarget)})}var Modal=function(element,options){this.options=options,this.$body=$(document.body),this.$element=$(element),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,$.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};Modal.VERSION="3.3.6",Modal.TRANSITION_DURATION=300,Modal.BACKDROP_TRANSITION_DURATION=150,Modal.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},Modal.prototype.toggle=function(_relatedTarget){return this.isShown?this.hide():this.show(_relatedTarget)},Modal.prototype.show=function(_relatedTarget){var that=this,e=$.Event("show.bs.modal",{relatedTarget:_relatedTarget});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',$.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){that.$element.one("mouseup.dismiss.bs.modal",function(e){$(e.target).is(that.$element)&&(that.ignoreBackdropClick=!0)})}),this.backdrop(function(){var transition=$.support.transition&&that.$element.hasClass("fade");that.$element.parent().length||that.$element.appendTo(that.$body),that.$element.show().scrollTop(0),that.adjustDialog(),transition&&that.$element[0].offsetWidth,that.$element.addClass("in"),that.enforceFocus();var e=$.Event("shown.bs.modal",{relatedTarget:_relatedTarget});transition?that.$dialog.one("bsTransitionEnd",function(){that.$element.trigger("focus").trigger(e)}).emulateTransitionEnd(Modal.TRANSITION_DURATION):that.$element.trigger("focus").trigger(e)}))},Modal.prototype.hide=function(e){e&&e.preventDefault(),e=$.Event("hide.bs.modal"),this.$element.trigger(e),this.isShown&&!e.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),$(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),$.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",$.proxy(this.hideModal,this)).emulateTransitionEnd(Modal.TRANSITION_DURATION):this.hideModal())},Modal.prototype.enforceFocus=function(){$(document).off("focusin.bs.modal").on("focusin.bs.modal",$.proxy(function(e){this.$element[0]===e.target||this.$element.has(e.target).length||this.$element.trigger("focus")},this))},Modal.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",$.proxy(function(e){27==e.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},Modal.prototype.resize=function(){this.isShown?$(window).on("resize.bs.modal",$.proxy(this.handleUpdate,this)):$(window).off("resize.bs.modal")},Modal.prototype.hideModal=function(){var that=this;this.$element.hide(),this.backdrop(function(){that.$body.removeClass("modal-open"),that.resetAdjustments(),that.resetScrollbar(),that.$element.trigger("hidden.bs.modal")})},Modal.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},Modal.prototype.backdrop=function(callback){var that=this,animate=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var doAnimate=$.support.transition&&animate;if(this.$backdrop=$(document.createElement("div")).addClass("modal-backdrop "+animate).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",$.proxy(function(e){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(e.target===e.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),doAnimate&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!callback)return;doAnimate?this.$backdrop.one("bsTransitionEnd",callback).emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION):callback()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var callbackRemove=function(){that.removeBackdrop(),callback&&callback()};$.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",callbackRemove).emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION):callbackRemove()}else callback&&callback()},Modal.prototype.handleUpdate=function(){this.adjustDialog()},Modal.prototype.adjustDialog=function(){var modalIsOverflowing=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&modalIsOverflowing?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!modalIsOverflowing?this.scrollbarWidth:""})},Modal.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},Modal.prototype.checkScrollbar=function(){var fullWindowWidth=window.innerWidth;if(!fullWindowWidth){var documentElementRect=document.documentElement.getBoundingClientRect();fullWindowWidth=documentElementRect.right-Math.abs(documentElementRect.left)}this.bodyIsOverflowing=document.body.clientWidth<fullWindowWidth,this.scrollbarWidth=this.measureScrollbar()},Modal.prototype.setScrollbar=function(){var bodyPad=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",bodyPad+this.scrollbarWidth)},Modal.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},Modal.prototype.measureScrollbar=function(){var scrollDiv=document.createElement("div");scrollDiv.className="modal-scrollbar-measure",this.$body.append(scrollDiv);var scrollbarWidth=scrollDiv.offsetWidth-scrollDiv.clientWidth;return this.$body[0].removeChild(scrollDiv),scrollbarWidth};var old=$.fn.modal;$.fn.modal=Plugin,$.fn.modal.Constructor=Modal,$.fn.modal.noConflict=function(){return $.fn.modal=old,this},$(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(e){var $this=$(this),href=$this.attr("href"),$target=$($this.attr("data-target")||href&&href.replace(/.*(?=#[^\s]+$)/,"")),option=$target.data("bs.modal")?"toggle":$.extend({remote:!/#/.test(href)&&href},$target.data(),$this.data());$this.is("a")&&e.preventDefault(),$target.one("show.bs.modal",function(showEvent){showEvent.isDefaultPrevented()||$target.one("hidden.bs.modal",function(){$this.is(":visible")&&$this.trigger("focus")})}),Plugin.call($target,option,this)})}(jQuery),+function($){"use strict";function Plugin(option){return this.each(function(){var $this=$(this),data=$this.data("bs.tooltip"),options="object"==typeof option&&option;(data||!/destroy|hide/.test(option))&&(data||$this.data("bs.tooltip",data=new Tooltip(this,options)),"string"==typeof option&&data[option]())})}var Tooltip=function(element,options){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",element,options)};Tooltip.VERSION="3.3.6",Tooltip.TRANSITION_DURATION=150,Tooltip.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},Tooltip.prototype.init=function(type,element,options){if(this.enabled=!0,this.type=type,this.$element=$(element),this.options=this.getOptions(options),this.$viewport=this.options.viewport&&$($.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var triggers=this.options.trigger.split(" "),i=triggers.length;i--;){var trigger=triggers[i];if("click"==trigger)this.$element.on("click."+this.type,this.options.selector,$.proxy(this.toggle,this));else if("manual"!=trigger){var eventIn="hover"==trigger?"mouseenter":"focusin",eventOut="hover"==trigger?"mouseleave":"focusout";this.$element.on(eventIn+"."+this.type,this.options.selector,$.proxy(this.enter,this)),this.$element.on(eventOut+"."+this.type,this.options.selector,$.proxy(this.leave,this))}}this.options.selector?this._options=$.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},Tooltip.prototype.getDefaults=function(){return Tooltip.DEFAULTS},Tooltip.prototype.getOptions=function(options){return options=$.extend({},this.getDefaults(),this.$element.data(),options),options.delay&&"number"==typeof options.delay&&(options.delay={show:options.delay,hide:options.delay}),options},Tooltip.prototype.getDelegateOptions=function(){var options={},defaults=this.getDefaults();return this._options&&$.each(this._options,function(key,value){defaults[key]!=value&&(options[key]=value)}),options},Tooltip.prototype.enter=function(obj){var self=obj instanceof this.constructor?obj:$(obj.currentTarget).data("bs."+this.type);return self||(self=new this.constructor(obj.currentTarget,this.getDelegateOptions()),$(obj.currentTarget).data("bs."+this.type,self)),obj instanceof $.Event&&(self.inState["focusin"==obj.type?"focus":"hover"]=!0),self.tip().hasClass("in")||"in"==self.hoverState?void(self.hoverState="in"):(clearTimeout(self.timeout),self.hoverState="in",self.options.delay&&self.options.delay.show?void(self.timeout=setTimeout(function(){"in"==self.hoverState&&self.show()},self.options.delay.show)):self.show())},Tooltip.prototype.isInStateTrue=function(){for(var key in this.inState)if(this.inState[key])return!0;return!1},Tooltip.prototype.leave=function(obj){var self=obj instanceof this.constructor?obj:$(obj.currentTarget).data("bs."+this.type);return self||(self=new this.constructor(obj.currentTarget,this.getDelegateOptions()),$(obj.currentTarget).data("bs."+this.type,self)),obj instanceof $.Event&&(self.inState["focusout"==obj.type?"focus":"hover"]=!1),self.isInStateTrue()?void 0:(clearTimeout(self.timeout),self.hoverState="out",self.options.delay&&self.options.delay.hide?void(self.timeout=setTimeout(function(){"out"==self.hoverState&&self.hide()},self.options.delay.hide)):self.hide())},Tooltip.prototype.show=function(){var e=$.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(e);var inDom=$.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(e.isDefaultPrevented()||!inDom)return;var that=this,$tip=this.tip(),tipId=this.getUID(this.type);this.setContent(),$tip.attr("id",tipId),this.$element.attr("aria-describedby",tipId),this.options.animation&&$tip.addClass("fade");var placement="function"==typeof this.options.placement?this.options.placement.call(this,$tip[0],this.$element[0]):this.options.placement,autoToken=/\s?auto?\s?/i,autoPlace=autoToken.test(placement);autoPlace&&(placement=placement.replace(autoToken,"")||"top"),$tip.detach().css({top:0,left:0,display:"block"}).addClass(placement).data("bs."+this.type,this),this.options.container?$tip.appendTo(this.options.container):$tip.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var pos=this.getPosition(),actualWidth=$tip[0].offsetWidth,actualHeight=$tip[0].offsetHeight;if(autoPlace){var orgPlacement=placement,viewportDim=this.getPosition(this.$viewport);placement="bottom"==placement&&pos.bottom+actualHeight>viewportDim.bottom?"top":"top"==placement&&pos.top-actualHeight<viewportDim.top?"bottom":"right"==placement&&pos.right+actualWidth>viewportDim.width?"left":"left"==placement&&pos.left-actualWidth<viewportDim.left?"right":placement,$tip.removeClass(orgPlacement).addClass(placement)}var calculatedOffset=this.getCalculatedOffset(placement,pos,actualWidth,actualHeight);this.applyPlacement(calculatedOffset,placement);var complete=function(){var prevHoverState=that.hoverState;that.$element.trigger("shown.bs."+that.type),that.hoverState=null,"out"==prevHoverState&&that.leave(that)};$.support.transition&&this.$tip.hasClass("fade")?$tip.one("bsTransitionEnd",complete).emulateTransitionEnd(Tooltip.TRANSITION_DURATION):complete()}},Tooltip.prototype.applyPlacement=function(offset,placement){var $tip=this.tip(),width=$tip[0].offsetWidth,height=$tip[0].offsetHeight,marginTop=parseInt($tip.css("margin-top"),10),marginLeft=parseInt($tip.css("margin-left"),10);isNaN(marginTop)&&(marginTop=0),isNaN(marginLeft)&&(marginLeft=0),offset.top+=marginTop,offset.left+=marginLeft,$.offset.setOffset($tip[0],$.extend({using:function(props){$tip.css({top:Math.round(props.top),left:Math.round(props.left)})}},offset),0),$tip.addClass("in");var actualWidth=$tip[0].offsetWidth,actualHeight=$tip[0].offsetHeight;"top"==placement&&actualHeight!=height&&(offset.top=offset.top+height-actualHeight);var delta=this.getViewportAdjustedDelta(placement,offset,actualWidth,actualHeight);delta.left?offset.left+=delta.left:offset.top+=delta.top;var isVertical=/top|bottom/.test(placement),arrowDelta=isVertical?2*delta.left-width+actualWidth:2*delta.top-height+actualHeight,arrowOffsetPosition=isVertical?"offsetWidth":"offsetHeight";
-$tip.offset(offset),this.replaceArrow(arrowDelta,$tip[0][arrowOffsetPosition],isVertical)},Tooltip.prototype.replaceArrow=function(delta,dimension,isVertical){this.arrow().css(isVertical?"left":"top",50*(1-delta/dimension)+"%").css(isVertical?"top":"left","")},Tooltip.prototype.setContent=function(){var $tip=this.tip(),title=this.getTitle();$tip.find(".tooltip-inner")[this.options.html?"html":"text"](title),$tip.removeClass("fade in top bottom left right")},Tooltip.prototype.hide=function(callback){function complete(){"in"!=that.hoverState&&$tip.detach(),that.$element.removeAttr("aria-describedby").trigger("hidden.bs."+that.type),callback&&callback()}var that=this,$tip=$(this.$tip),e=$.Event("hide.bs."+this.type);return this.$element.trigger(e),e.isDefaultPrevented()?void 0:($tip.removeClass("in"),$.support.transition&&$tip.hasClass("fade")?$tip.one("bsTransitionEnd",complete).emulateTransitionEnd(Tooltip.TRANSITION_DURATION):complete(),this.hoverState=null,this)},Tooltip.prototype.fixTitle=function(){var $e=this.$element;($e.attr("title")||"string"!=typeof $e.attr("data-original-title"))&&$e.attr("data-original-title",$e.attr("title")||"").attr("title","")},Tooltip.prototype.hasContent=function(){return this.getTitle()},Tooltip.prototype.getPosition=function($element){$element=$element||this.$element;var el=$element[0],isBody="BODY"==el.tagName,elRect=el.getBoundingClientRect();null==elRect.width&&(elRect=$.extend({},elRect,{width:elRect.right-elRect.left,height:elRect.bottom-elRect.top}));var elOffset=isBody?{top:0,left:0}:$element.offset(),scroll={scroll:isBody?document.documentElement.scrollTop||document.body.scrollTop:$element.scrollTop()},outerDims=isBody?{width:$(window).width(),height:$(window).height()}:null;return $.extend({},elRect,scroll,outerDims,elOffset)},Tooltip.prototype.getCalculatedOffset=function(placement,pos,actualWidth,actualHeight){return"bottom"==placement?{top:pos.top+pos.height,left:pos.left+pos.width/2-actualWidth/2}:"top"==placement?{top:pos.top-actualHeight,left:pos.left+pos.width/2-actualWidth/2}:"left"==placement?{top:pos.top+pos.height/2-actualHeight/2,left:pos.left-actualWidth}:{top:pos.top+pos.height/2-actualHeight/2,left:pos.left+pos.width}},Tooltip.prototype.getViewportAdjustedDelta=function(placement,pos,actualWidth,actualHeight){var delta={top:0,left:0};if(!this.$viewport)return delta;var viewportPadding=this.options.viewport&&this.options.viewport.padding||0,viewportDimensions=this.getPosition(this.$viewport);if(/right|left/.test(placement)){var topEdgeOffset=pos.top-viewportPadding-viewportDimensions.scroll,bottomEdgeOffset=pos.top+viewportPadding-viewportDimensions.scroll+actualHeight;topEdgeOffset<viewportDimensions.top?delta.top=viewportDimensions.top-topEdgeOffset:bottomEdgeOffset>viewportDimensions.top+viewportDimensions.height&&(delta.top=viewportDimensions.top+viewportDimensions.height-bottomEdgeOffset)}else{var leftEdgeOffset=pos.left-viewportPadding,rightEdgeOffset=pos.left+viewportPadding+actualWidth;leftEdgeOffset<viewportDimensions.left?delta.left=viewportDimensions.left-leftEdgeOffset:rightEdgeOffset>viewportDimensions.right&&(delta.left=viewportDimensions.left+viewportDimensions.width-rightEdgeOffset)}return delta},Tooltip.prototype.getTitle=function(){var title,$e=this.$element,o=this.options;return title=$e.attr("data-original-title")||("function"==typeof o.title?o.title.call($e[0]):o.title)},Tooltip.prototype.getUID=function(prefix){do prefix+=~~(1e6*Math.random());while(document.getElementById(prefix));return prefix},Tooltip.prototype.tip=function(){if(!this.$tip&&(this.$tip=$(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},Tooltip.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},Tooltip.prototype.enable=function(){this.enabled=!0},Tooltip.prototype.disable=function(){this.enabled=!1},Tooltip.prototype.toggleEnabled=function(){this.enabled=!this.enabled},Tooltip.prototype.toggle=function(e){var self=this;e&&(self=$(e.currentTarget).data("bs."+this.type),self||(self=new this.constructor(e.currentTarget,this.getDelegateOptions()),$(e.currentTarget).data("bs."+this.type,self))),e?(self.inState.click=!self.inState.click,self.isInStateTrue()?self.enter(self):self.leave(self)):self.tip().hasClass("in")?self.leave(self):self.enter(self)},Tooltip.prototype.destroy=function(){var that=this;clearTimeout(this.timeout),this.hide(function(){that.$element.off("."+that.type).removeData("bs."+that.type),that.$tip&&that.$tip.detach(),that.$tip=null,that.$arrow=null,that.$viewport=null})};var old=$.fn.tooltip;$.fn.tooltip=Plugin,$.fn.tooltip.Constructor=Tooltip,$.fn.tooltip.noConflict=function(){return $.fn.tooltip=old,this}}(jQuery),+function($){"use strict";function Plugin(option){return this.each(function(){var $this=$(this),data=$this.data("bs.popover"),options="object"==typeof option&&option;(data||!/destroy|hide/.test(option))&&(data||$this.data("bs.popover",data=new Popover(this,options)),"string"==typeof option&&data[option]())})}var Popover=function(element,options){this.init("popover",element,options)};if(!$.fn.tooltip)throw new Error("Popover requires tooltip.js");Popover.VERSION="3.3.6",Popover.DEFAULTS=$.extend({},$.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),Popover.prototype=$.extend({},$.fn.tooltip.Constructor.prototype),Popover.prototype.constructor=Popover,Popover.prototype.getDefaults=function(){return Popover.DEFAULTS},Popover.prototype.setContent=function(){var $tip=this.tip(),title=this.getTitle(),content=this.getContent();$tip.find(".popover-title")[this.options.html?"html":"text"](title),$tip.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof content?"html":"append":"text"](content),$tip.removeClass("fade top bottom left right in"),$tip.find(".popover-title").html()||$tip.find(".popover-title").hide()},Popover.prototype.hasContent=function(){return this.getTitle()||this.getContent()},Popover.prototype.getContent=function(){var $e=this.$element,o=this.options;return $e.attr("data-content")||("function"==typeof o.content?o.content.call($e[0]):o.content)},Popover.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var old=$.fn.popover;$.fn.popover=Plugin,$.fn.popover.Constructor=Popover,$.fn.popover.noConflict=function(){return $.fn.popover=old,this}}(jQuery),+function($){"use strict";function ScrollSpy(element,options){this.$body=$(document.body),this.$scrollElement=$($(element).is(document.body)?window:element),this.options=$.extend({},ScrollSpy.DEFAULTS,options),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",$.proxy(this.process,this)),this.refresh(),this.process()}function Plugin(option){return this.each(function(){var $this=$(this),data=$this.data("bs.scrollspy"),options="object"==typeof option&&option;data||$this.data("bs.scrollspy",data=new ScrollSpy(this,options)),"string"==typeof option&&data[option]()})}ScrollSpy.VERSION="3.3.6",ScrollSpy.DEFAULTS={offset:10},ScrollSpy.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},ScrollSpy.prototype.refresh=function(){var that=this,offsetMethod="offset",offsetBase=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),$.isWindow(this.$scrollElement[0])||(offsetMethod="position",offsetBase=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var $el=$(this),href=$el.data("target")||$el.attr("href"),$href=/^#./.test(href)&&$(href);return $href&&$href.length&&$href.is(":visible")&&[[$href[offsetMethod]().top+offsetBase,href]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){that.offsets.push(this[0]),that.targets.push(this[1])})},ScrollSpy.prototype.process=function(){var i,scrollTop=this.$scrollElement.scrollTop()+this.options.offset,scrollHeight=this.getScrollHeight(),maxScroll=this.options.offset+scrollHeight-this.$scrollElement.height(),offsets=this.offsets,targets=this.targets,activeTarget=this.activeTarget;if(this.scrollHeight!=scrollHeight&&this.refresh(),scrollTop>=maxScroll)return activeTarget!=(i=targets[targets.length-1])&&this.activate(i);if(activeTarget&&scrollTop<offsets[0])return this.activeTarget=null,this.clear();for(i=offsets.length;i--;)activeTarget!=targets[i]&&scrollTop>=offsets[i]&&(void 0===offsets[i+1]||scrollTop<offsets[i+1])&&this.activate(targets[i])},ScrollSpy.prototype.activate=function(target){this.activeTarget=target,this.clear();var selector=this.selector+'[data-target="'+target+'"],'+this.selector+'[href="'+target+'"]',active=$(selector).parents("li").addClass("active");active.parent(".dropdown-menu").length&&(active=active.closest("li.dropdown").addClass("active")),active.trigger("activate.bs.scrollspy")},ScrollSpy.prototype.clear=function(){$(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var old=$.fn.scrollspy;$.fn.scrollspy=Plugin,$.fn.scrollspy.Constructor=ScrollSpy,$.fn.scrollspy.noConflict=function(){return $.fn.scrollspy=old,this},$(window).on("load.bs.scrollspy.data-api",function(){$('[data-spy="scroll"]').each(function(){var $spy=$(this);Plugin.call($spy,$spy.data())})})}(jQuery),+function($){"use strict";function Plugin(option){return this.each(function(){var $this=$(this),data=$this.data("bs.tab");data||$this.data("bs.tab",data=new Tab(this)),"string"==typeof option&&data[option]()})}var Tab=function(element){this.element=$(element)};Tab.VERSION="3.3.6",Tab.TRANSITION_DURATION=150,Tab.prototype.show=function(){var $this=this.element,$ul=$this.closest("ul:not(.dropdown-menu)"),selector=$this.data("target");if(selector||(selector=$this.attr("href"),selector=selector&&selector.replace(/.*(?=#[^\s]*$)/,"")),!$this.parent("li").hasClass("active")){var $previous=$ul.find(".active:last a"),hideEvent=$.Event("hide.bs.tab",{relatedTarget:$this[0]}),showEvent=$.Event("show.bs.tab",{relatedTarget:$previous[0]});if($previous.trigger(hideEvent),$this.trigger(showEvent),!showEvent.isDefaultPrevented()&&!hideEvent.isDefaultPrevented()){var $target=$(selector);this.activate($this.closest("li"),$ul),this.activate($target,$target.parent(),function(){$previous.trigger({type:"hidden.bs.tab",relatedTarget:$this[0]}),$this.trigger({type:"shown.bs.tab",relatedTarget:$previous[0]})})}}},Tab.prototype.activate=function(element,container,callback){function next(){$active.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),element.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),transition?(element[0].offsetWidth,element.addClass("in")):element.removeClass("fade"),element.parent(".dropdown-menu").length&&element.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),callback&&callback()}var $active=container.find("> .active"),transition=callback&&$.support.transition&&($active.length&&$active.hasClass("fade")||!!container.find("> .fade").length);$active.length&&transition?$active.one("bsTransitionEnd",next).emulateTransitionEnd(Tab.TRANSITION_DURATION):next(),$active.removeClass("in")};var old=$.fn.tab;$.fn.tab=Plugin,$.fn.tab.Constructor=Tab,$.fn.tab.noConflict=function(){return $.fn.tab=old,this};var clickHandler=function(e){e.preventDefault(),Plugin.call($(this),"show")};$(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',clickHandler).on("click.bs.tab.data-api",'[data-toggle="pill"]',clickHandler)}(jQuery),+function($){"use strict";function Plugin(option){return this.each(function(){var $this=$(this),data=$this.data("bs.affix"),options="object"==typeof option&&option;data||$this.data("bs.affix",data=new Affix(this,options)),"string"==typeof option&&data[option]()})}var Affix=function(element,options){this.options=$.extend({},Affix.DEFAULTS,options),this.$target=$(this.options.target).on("scroll.bs.affix.data-api",$.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",$.proxy(this.checkPositionWithEventLoop,this)),this.$element=$(element),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};Affix.VERSION="3.3.6",Affix.RESET="affix affix-top affix-bottom",Affix.DEFAULTS={offset:0,target:window},Affix.prototype.getState=function(scrollHeight,height,offsetTop,offsetBottom){var scrollTop=this.$target.scrollTop(),position=this.$element.offset(),targetHeight=this.$target.height();if(null!=offsetTop&&"top"==this.affixed)return offsetTop>scrollTop?"top":!1;if("bottom"==this.affixed)return null!=offsetTop?scrollTop+this.unpin<=position.top?!1:"bottom":scrollHeight-offsetBottom>=scrollTop+targetHeight?!1:"bottom";var initializing=null==this.affixed,colliderTop=initializing?scrollTop:position.top,colliderHeight=initializing?targetHeight:height;return null!=offsetTop&&offsetTop>=scrollTop?"top":null!=offsetBottom&&colliderTop+colliderHeight>=scrollHeight-offsetBottom?"bottom":!1},Affix.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(Affix.RESET).addClass("affix");var scrollTop=this.$target.scrollTop(),position=this.$element.offset();return this.pinnedOffset=position.top-scrollTop},Affix.prototype.checkPositionWithEventLoop=function(){setTimeout($.proxy(this.checkPosition,this),1)},Affix.prototype.checkPosition=function(){if(this.$element.is(":visible")){var height=this.$element.height(),offset=this.options.offset,offsetTop=offset.top,offsetBottom=offset.bottom,scrollHeight=Math.max($(document).height(),$(document.body).height());"object"!=typeof offset&&(offsetBottom=offsetTop=offset),"function"==typeof offsetTop&&(offsetTop=offset.top(this.$element)),"function"==typeof offsetBottom&&(offsetBottom=offset.bottom(this.$element));var affix=this.getState(scrollHeight,height,offsetTop,offsetBottom);if(this.affixed!=affix){null!=this.unpin&&this.$element.css("top","");var affixType="affix"+(affix?"-"+affix:""),e=$.Event(affixType+".bs.affix");if(this.$element.trigger(e),e.isDefaultPrevented())return;this.affixed=affix,this.unpin="bottom"==affix?this.getPinnedOffset():null,this.$element.removeClass(Affix.RESET).addClass(affixType).trigger(affixType.replace("affix","affixed")+".bs.affix")}"bottom"==affix&&this.$element.offset({top:scrollHeight-height-offsetBottom})}};var old=$.fn.affix;$.fn.affix=Plugin,$.fn.affix.Constructor=Affix,$.fn.affix.noConflict=function(){return $.fn.affix=old,this},$(window).on("load",function(){$('[data-spy="affix"]').each(function(){var $spy=$(this),data=$spy.data();data.offset=data.offset||{},null!=data.offsetBottom&&(data.offset.bottom=data.offsetBottom),null!=data.offsetTop&&(data.offset.top=data.offsetTop),Plugin.call($spy,data)})})}(jQuery),"undefined"==typeof jQuery)throw new Error("BootstrapValidator requires jQuery");!function(a){var b=a.fn.jquery.split(" ")[0].split(".");if(+b[0]<2&&+b[1]<9||1===+b[0]&&9===+b[1]&&+b[2]<1)throw new Error("BootstrapValidator requires jQuery version 1.9.1 or higher")}(window.jQuery),function(a){var b=function(b,c){this.$form=a(b),this.options=a.extend({},a.fn.bootstrapValidator.DEFAULT_OPTIONS,c),this.$invalidFields=a([]),this.$submitButton=null,this.$hiddenButton=null,this.STATUS_NOT_VALIDATED="NOT_VALIDATED",this.STATUS_VALIDATING="VALIDATING",this.STATUS_INVALID="INVALID",this.STATUS_VALID="VALID";var d=function(){for(var a=3,b=document.createElement("div"),c=b.all||[];b.innerHTML="<!--[if gt IE "+ ++a+"]><br><![endif]-->",c[0];);return a>4?a:!a}(),e=document.createElement("div");this._changeEvent=9!==d&&"oninput"in e?"input":"keyup",this._submitIfValid=null,this._cacheFields={},this._init()};b.prototype={constructor:b,_init:function(){var b=this,c={autoFocus:this.$form.attr("data-bv-autofocus"),container:this.$form.attr("data-bv-container"),events:{formInit:this.$form.attr("data-bv-events-form-init"),formError:this.$form.attr("data-bv-events-form-error"),formSuccess:this.$form.attr("data-bv-events-form-success"),fieldAdded:this.$form.attr("data-bv-events-field-added"),fieldRemoved:this.$form.attr("data-bv-events-field-removed"),fieldInit:this.$form.attr("data-bv-events-field-init"),fieldError:this.$form.attr("data-bv-events-field-error"),fieldSuccess:this.$form.attr("data-bv-events-field-success"),fieldStatus:this.$form.attr("data-bv-events-field-status"),validatorError:this.$form.attr("data-bv-events-validator-error"),validatorSuccess:this.$form.attr("data-bv-events-validator-success")},excluded:this.$form.attr("data-bv-excluded"),feedbackIcons:{valid:this.$form.attr("data-bv-feedbackicons-valid"),invalid:this.$form.attr("data-bv-feedbackicons-invalid"),validating:this.$form.attr("data-bv-feedbackicons-validating")},group:this.$form.attr("data-bv-group"),live:this.$form.attr("data-bv-live"),message:this.$form.attr("data-bv-message"),onError:this.$form.attr("data-bv-onerror"),onSuccess:this.$form.attr("data-bv-onsuccess"),submitButtons:this.$form.attr("data-bv-submitbuttons"),threshold:this.$form.attr("data-bv-threshold"),trigger:this.$form.attr("data-bv-trigger"),verbose:this.$form.attr("data-bv-verbose"),fields:{}};this.$form.attr("novalidate","novalidate").addClass(this.options.elementClass).on("submit.bv",function(a){a.preventDefault(),b.validate()}).on("click.bv",this.options.submitButtons,function(){b.$submitButton=a(this),b._submitIfValid=!0}).find("[name], [data-bv-field]").each(function(){var d=a(this),e=d.attr("name")||d.attr("data-bv-field"),f=b._parseOptions(d);f&&(d.attr("data-bv-field",e),c.fields[e]=a.extend({},f,c.fields[e]))}),this.options=a.extend(!0,this.options,c),this.$hiddenButton=a("<button/>").attr("type","submit").prependTo(this.$form).addClass("bv-hidden-submit").css({display:"none",width:0,height:0}),this.$form.on("click.bv",'[type="submit"]',function(c){if(!c.isDefaultPrevented()){var d=a(c.target),e=d.is('[type="submit"]')?d.eq(0):d.parent('[type="submit"]').eq(0);!b.options.submitButtons||e.is(b.options.submitButtons)||e.is(b.$hiddenButton)||b.$form.off("submit.bv").submit()}});for(var d in this.options.fields)this._initField(d);this.$form.trigger(a.Event(this.options.events.formInit),{bv:this,options:this.options}),this.options.onSuccess&&this.$form.on(this.options.events.formSuccess,function(c){a.fn.bootstrapValidator.helpers.call(b.options.onSuccess,[c])}),this.options.onError&&this.$form.on(this.options.events.formError,function(c){a.fn.bootstrapValidator.helpers.call(b.options.onError,[c])})},_parseOptions:function(b){var c,d,e,f,g,h,i,j,k,l=b.attr("name")||b.attr("data-bv-field"),m={};for(d in a.fn.bootstrapValidator.validators)if(c=a.fn.bootstrapValidator.validators[d],e="data-bv-"+d.toLowerCase(),f=b.attr(e)+"",k="function"==typeof c.enableByHtml5?c.enableByHtml5(b):null,k&&"false"!==f||k!==!0&&(""===f||"true"===f||e===f.toLowerCase())){c.html5Attributes=a.extend({},{message:"message",onerror:"onError",onsuccess:"onSuccess"},c.html5Attributes),m[d]=a.extend({},k===!0?{}:k,m[d]);for(j in c.html5Attributes)g=c.html5Attributes[j],h="data-bv-"+d.toLowerCase()+"-"+j,i=b.attr(h),i&&("true"===i||h===i.toLowerCase()?i=!0:"false"===i&&(i=!1),m[d][g]=i)}var n={autoFocus:b.attr("data-bv-autofocus"),container:b.attr("data-bv-container"),excluded:b.attr("data-bv-excluded"),feedbackIcons:b.attr("data-bv-feedbackicons"),group:b.attr("data-bv-group"),message:b.attr("data-bv-message"),onError:b.attr("data-bv-onerror"),onStatus:b.attr("data-bv-onstatus"),onSuccess:b.attr("data-bv-onsuccess"),selector:b.attr("data-bv-selector"),threshold:b.attr("data-bv-threshold"),trigger:b.attr("data-bv-trigger"),verbose:b.attr("data-bv-verbose"),validators:m},o=a.isEmptyObject(n),p=a.isEmptyObject(m);return!p||!o&&this.options.fields&&this.options.fields[l]?(n.validators=m,n):null},_initField:function(b){var c=a([]);switch(typeof b){case"object":c=b,b=b.attr("data-bv-field");break;case"string":c=this.getFieldElements(b),c.attr("data-bv-field",b)}if(0!==c.length&&null!==this.options.fields[b]&&null!==this.options.fields[b].validators){var d;for(d in this.options.fields[b].validators)a.fn.bootstrapValidator.validators[d]||delete this.options.fields[b].validators[d];null===this.options.fields[b].enabled&&(this.options.fields[b].enabled=!0);for(var e=this,f=c.length,g=c.attr("type"),h=1===f||"radio"===g||"checkbox"===g,i="radio"===g||"checkbox"===g||"file"===g||"SELECT"===c.eq(0).get(0).tagName?"change":this._changeEvent,j=(this.options.fields[b].trigger||this.options.trigger||i).split(" "),k=a.map(j,function(a){return a+".update.bv"}).join(" "),l=0;f>l;l++){var m=c.eq(l),n=this.options.fields[b].group||this.options.group,o=m.parents(n),p="function"==typeof(this.options.fields[b].container||this.options.container)?(this.options.fields[b].container||this.options.container).call(this,m,this):this.options.fields[b].container||this.options.container,q=p&&"tooltip"!==p&&"popover"!==p?a(p):this._getMessageContainer(m,n);p&&"tooltip"!==p&&"popover"!==p&&q.addClass("has-error"),q.find('.help-block[data-bv-validator][data-bv-for="'+b+'"]').remove(),o.find('i[data-bv-icon-for="'+b+'"]').remove(),m.off(k).on(k,function(){e.updateStatus(a(this),e.STATUS_NOT_VALIDATED)}),m.data("bv.messages",q);for(d in this.options.fields[b].validators)m.data("bv.result."+d,this.STATUS_NOT_VALIDATED),h&&l!==f-1||a("<small/>").css("display","none").addClass("help-block").attr("data-bv-validator",d).attr("data-bv-for",b).attr("data-bv-result",this.STATUS_NOT_VALIDATED).html(this._getMessage(b,d)).appendTo(q),"function"==typeof a.fn.bootstrapValidator.validators[d].init&&a.fn.bootstrapValidator.validators[d].init(this,m,this.options.fields[b].validators[d]);if(this.options.fields[b].feedbackIcons!==!1&&"false"!==this.options.fields[b].feedbackIcons&&this.options.feedbackIcons&&this.options.feedbackIcons.validating&&this.options.feedbackIcons.invalid&&this.options.feedbackIcons.valid&&(!h||l===f-1)){o.addClass("has-feedback");var r=a("<i/>").css("display","none").addClass("form-control-feedback").attr("data-bv-icon-for",b).insertAfter(m);if("checkbox"===g||"radio"===g){var s=m.parent();s.hasClass(g)?r.insertAfter(s):s.parent().hasClass(g)&&r.insertAfter(s.parent())}0===o.find("label").length&&r.addClass("bv-no-label"),0!==o.find(".input-group").length&&r.addClass("bv-icon-input-group").insertAfter(o.find(".input-group").eq(0)),h?l===f-1&&c.data("bv.icon",r):m.data("bv.icon",r),p&&m.off("focus.container.bv").on("focus.container.bv",function(){switch(p){case"tooltip":a(this).data("bv.icon").tooltip("show");break;case"popover":a(this).data("bv.icon").popover("show")}}).off("blur.container.bv").on("blur.container.bv",function(){switch(p){case"tooltip":a(this).data("bv.icon").tooltip("hide");break;case"popover":a(this).data("bv.icon").popover("hide")}})}}switch(c.on(this.options.events.fieldSuccess,function(b,c){var d=e.getOptions(c.field,null,"onSuccess");d&&a.fn.bootstrapValidator.helpers.call(d,[b,c])}).on(this.options.events.fieldError,function(b,c){var d=e.getOptions(c.field,null,"onError");d&&a.fn.bootstrapValidator.helpers.call(d,[b,c])}).on(this.options.events.fieldStatus,function(b,c){var d=e.getOptions(c.field,null,"onStatus");d&&a.fn.bootstrapValidator.helpers.call(d,[b,c])}).on(this.options.events.validatorError,function(b,c){var d=e.getOptions(c.field,c.validator,"onError");d&&a.fn.bootstrapValidator.helpers.call(d,[b,c])}).on(this.options.events.validatorSuccess,function(b,c){var d=e.getOptions(c.field,c.validator,"onSuccess");d&&a.fn.bootstrapValidator.helpers.call(d,[b,c])}),k=a.map(j,function(a){return a+".live.bv"}).join(" "),this.options.live){case"submitted":break;case"disabled":c.off(k);break;case"enabled":default:c.off(k).on(k,function(){e._exceedThreshold(a(this))&&e.validateField(a(this))})}c.trigger(a.Event(this.options.events.fieldInit),{bv:this,field:b,element:c})}},_getMessage:function(b,c){if(!(this.options.fields[b]&&a.fn.bootstrapValidator.validators[c]&&this.options.fields[b].validators&&this.options.fields[b].validators[c]))return"";var d=this.options.fields[b].validators[c];switch(!0){case!!d.message:return d.message;case!!this.options.fields[b].message:return this.options.fields[b].message;case!!a.fn.bootstrapValidator.i18n[c]:return a.fn.bootstrapValidator.i18n[c]["default"];default:return this.options.message}},_getMessageContainer:function(a,b){var c=a.parent();if(c.is(b))return c;var d=c.attr("class");if(!d)return this._getMessageContainer(c,b);d=d.split(" ");for(var e=d.length,f=0;e>f;f++)if(/^col-(xs|sm|md|lg)-\d+$/.test(d[f])||/^col-(xs|sm|md|lg)-offset-\d+$/.test(d[f]))return c;return this._getMessageContainer(c,b)},_submit:function(){var b=this.isValid(),c=b?this.options.events.formSuccess:this.options.events.formError,d=a.Event(c);this.$form.trigger(d),this.$submitButton&&(b?this._onSuccess(d):this._onError(d))},_isExcluded:function(b){var c=b.attr("data-bv-excluded"),d=b.attr("data-bv-field")||b.attr("name");switch(!0){case!!d&&this.options.fields&&this.options.fields[d]&&("true"===this.options.fields[d].excluded||this.options.fields[d].excluded===!0):case"true"===c:case""===c:return!0;case!!d&&this.options.fields&&this.options.fields[d]&&("false"===this.options.fields[d].excluded||this.options.fields[d].excluded===!1):case"false"===c:return!1;default:if(this.options.excluded){"string"==typeof this.options.excluded&&(this.options.excluded=a.map(this.options.excluded.split(","),function(b){return a.trim(b)}));for(var e=this.options.excluded.length,f=0;e>f;f++)if("string"==typeof this.options.excluded[f]&&b.is(this.options.excluded[f])||"function"==typeof this.options.excluded[f]&&this.options.excluded[f].call(this,b,this)===!0)return!0}return!1}},_exceedThreshold:function(b){var c=b.attr("data-bv-field"),d=this.options.fields[c].threshold||this.options.threshold;if(!d)return!0;var e=-1!==a.inArray(b.attr("type"),["button","checkbox","file","hidden","image","radio","reset","submit"]);return e||b.val().length>=d},_onError:function(b){if(!b.isDefaultPrevented()){if("submitted"===this.options.live){this.options.live="enabled";var c=this;for(var d in this.options.fields)!function(b){var e=c.getFieldElements(b);if(e.length){var f=a(e[0]).attr("type"),g="radio"===f||"checkbox"===f||"file"===f||"SELECT"===a(e[0]).get(0).tagName?"change":c._changeEvent,h=c.options.fields[d].trigger||c.options.trigger||g,i=a.map(h.split(" "),function(a){return a+".live.bv"}).join(" ");e.off(i).on(i,function(){c._exceedThreshold(a(this))&&c.validateField(a(this))})}}(d)}for(var e=0;e<this.$invalidFields.length;e++){var f=this.$invalidFields.eq(e),g=this._isOptionEnabled(f.attr("data-bv-field"),"autoFocus");if(g){var h,i=f.parents(".tab-pane");i&&(h=i.attr("id"))&&a('a[href="#'+h+'"][data-toggle="tab"]').tab("show"),f.focus();break}}}},_onSuccess:function(a){a.isDefaultPrevented()||this.disableSubmitButtons(!0).defaultSubmit()},_onFieldValidated:function(b,c){var d=b.attr("data-bv-field"),e=this.options.fields[d].validators,f={},g=0,h={bv:this,field:d,element:b,validator:c,result:b.data("bv.response."+c)};if(c)switch(b.data("bv.result."+c)){case this.STATUS_INVALID:b.trigger(a.Event(this.options.events.validatorError),h);break;case this.STATUS_VALID:b.trigger(a.Event(this.options.events.validatorSuccess),h)}f[this.STATUS_NOT_VALIDATED]=0,f[this.STATUS_VALIDATING]=0,f[this.STATUS_INVALID]=0,f[this.STATUS_VALID]=0;for(var i in e)if(e[i].enabled!==!1){g++;var j=b.data("bv.result."+i);j&&f[j]++}f[this.STATUS_VALID]===g?(this.$invalidFields=this.$invalidFields.not(b),b.trigger(a.Event(this.options.events.fieldSuccess),h)):(0===f[this.STATUS_NOT_VALIDATED]||!this._isOptionEnabled(d,"verbose"))&&0===f[this.STATUS_VALIDATING]&&f[this.STATUS_INVALID]>0&&(this.$invalidFields=this.$invalidFields.add(b),b.trigger(a.Event(this.options.events.fieldError),h))},_isOptionEnabled:function(a,b){return!this.options.fields[a]||"true"!==this.options.fields[a][b]&&this.options.fields[a][b]!==!0?!this.options.fields[a]||"false"!==this.options.fields[a][b]&&this.options.fields[a][b]!==!1?"true"===this.options[b]||this.options[b]===!0:!1:!0},getFieldElements:function(b){return this._cacheFields[b]||(this._cacheFields[b]=this.options.fields[b]&&this.options.fields[b].selector?a(this.options.fields[b].selector):this.$form.find('[name="'+b+'"]')),this._cacheFields[b]},getOptions:function(a,b,c){if(!a)return c?this.options[c]:this.options;if("object"==typeof a&&(a=a.attr("data-bv-field")),!this.options.fields[a])return null;var d=this.options.fields[a];return b?d.validators&&d.validators[b]?c?d.validators[b][c]:d.validators[b]:null:c?d[c]:d},disableSubmitButtons:function(a){return a?"disabled"!==this.options.live&&this.$form.find(this.options.submitButtons).attr("disabled","disabled"):this.$form.find(this.options.submitButtons).removeAttr("disabled"),this},validate:function(){if(!this.options.fields)return this;this.disableSubmitButtons(!0),this._submitIfValid=!1;for(var a in this.options.fields)this.validateField(a);return this._submit(),this._submitIfValid=!0,this},validateField:function(b){var c=a([]);switch(typeof b){case"object":c=b,b=b.attr("data-bv-field");break;case"string":c=this.getFieldElements(b)}if(0===c.length||!this.options.fields[b]||this.options.fields[b].enabled===!1)return this;for(var d,e,f=this,g=c.attr("type"),h="radio"===g||"checkbox"===g?1:c.length,i="radio"===g||"checkbox"===g,j=this.options.fields[b].validators,k=this._isOptionEnabled(b,"verbose"),l=0;h>l;l++){var m=c.eq(l);if(!this._isExcluded(m)){var n=!1;for(d in j){if(m.data("bv.dfs."+d)&&m.data("bv.dfs."+d).reject(),n)break;var o=m.data("bv.result."+d);if(o!==this.STATUS_VALID&&o!==this.STATUS_INVALID)if(j[d].enabled!==!1){if(m.data("bv.result."+d,this.STATUS_VALIDATING),e=a.fn.bootstrapValidator.validators[d].validate(this,m,j[d]),"object"==typeof e&&e.resolve)this.updateStatus(i?b:m,this.STATUS_VALIDATING,d),m.data("bv.dfs."+d,e),e.done(function(a,b,c){a.removeData("bv.dfs."+b).data("bv.response."+b,c),c.message&&f.updateMessage(a,b,c.message),f.updateStatus(i?a.attr("data-bv-field"):a,c.valid?f.STATUS_VALID:f.STATUS_INVALID,b),c.valid&&f._submitIfValid===!0?f._submit():c.valid||k||(n=!0)});else if("object"==typeof e&&void 0!==e.valid&&void 0!==e.message){if(m.data("bv.response."+d,e),this.updateMessage(i?b:m,d,e.message),this.updateStatus(i?b:m,e.valid?this.STATUS_VALID:this.STATUS_INVALID,d),!e.valid&&!k)break}else if("boolean"==typeof e&&(m.data("bv.response."+d,e),this.updateStatus(i?b:m,e?this.STATUS_VALID:this.STATUS_INVALID,d),!e&&!k))break}else this.updateStatus(i?b:m,this.STATUS_VALID,d);else this._onFieldValidated(m,d)}}}return this},updateMessage:function(b,c,d){var e=a([]);switch(typeof b){case"object":e=b,b=b.attr("data-bv-field");break;case"string":e=this.getFieldElements(b)}e.each(function(){a(this).data("bv.messages").find('.help-block[data-bv-validator="'+c+'"][data-bv-for="'+b+'"]').html(d)})},updateStatus:function(b,c,d){var e=a([]);switch(typeof b){case"object":e=b,b=b.attr("data-bv-field");break;case"string":e=this.getFieldElements(b)}c===this.STATUS_NOT_VALIDATED&&(this._submitIfValid=!1);for(var f=this,g=e.attr("type"),h=this.options.fields[b].group||this.options.group,i="radio"===g||"checkbox"===g?1:e.length,j=0;i>j;j++){var k=e.eq(j);if(!this._isExcluded(k)){var l=k.parents(h),m=k.data("bv.messages"),n=m.find('.help-block[data-bv-validator][data-bv-for="'+b+'"]'),o=d?n.filter('[data-bv-validator="'+d+'"]'):n,p=k.data("bv.icon"),q="function"==typeof(this.options.fields[b].container||this.options.container)?(this.options.fields[b].container||this.options.container).call(this,k,this):this.options.fields[b].container||this.options.container,r=null;if(d)k.data("bv.result."+d,c);else for(var s in this.options.fields[b].validators)k.data("bv.result."+s,c);
-o.attr("data-bv-result",c);var t,u,v=k.parents(".tab-pane");switch(v&&(t=v.attr("id"))&&(u=a('a[href="#'+t+'"][data-toggle="tab"]').parent()),c){case this.STATUS_VALIDATING:r=null,this.disableSubmitButtons(!0),l.removeClass("has-success").removeClass("has-error"),p&&p.removeClass(this.options.feedbackIcons.valid).removeClass(this.options.feedbackIcons.invalid).addClass(this.options.feedbackIcons.validating).show(),u&&u.removeClass("bv-tab-success").removeClass("bv-tab-error");break;case this.STATUS_INVALID:r=!1,this.disableSubmitButtons(!0),l.removeClass("has-success").addClass("has-error"),p&&p.removeClass(this.options.feedbackIcons.valid).removeClass(this.options.feedbackIcons.validating).addClass(this.options.feedbackIcons.invalid).show(),u&&u.removeClass("bv-tab-success").addClass("bv-tab-error");break;case this.STATUS_VALID:r=0===n.filter('[data-bv-result="'+this.STATUS_NOT_VALIDATED+'"]').length?n.filter('[data-bv-result="'+this.STATUS_VALID+'"]').length===n.length:null,null!==r&&(this.disableSubmitButtons(this.$submitButton?!this.isValid():!r),p&&p.removeClass(this.options.feedbackIcons.invalid).removeClass(this.options.feedbackIcons.validating).removeClass(this.options.feedbackIcons.valid).addClass(r?this.options.feedbackIcons.valid:this.options.feedbackIcons.invalid).show()),l.removeClass("has-error has-success").addClass(this.isValidContainer(l)?"has-success":"has-error"),u&&u.removeClass("bv-tab-success").removeClass("bv-tab-error").addClass(this.isValidContainer(v)?"bv-tab-success":"bv-tab-error");break;case this.STATUS_NOT_VALIDATED:default:r=null,this.disableSubmitButtons(!1),l.removeClass("has-success").removeClass("has-error"),p&&p.removeClass(this.options.feedbackIcons.valid).removeClass(this.options.feedbackIcons.invalid).removeClass(this.options.feedbackIcons.validating).hide(),u&&u.removeClass("bv-tab-success").removeClass("bv-tab-error")}switch(!0){case p&&"tooltip"===q:r===!1?p.css("cursor","pointer").tooltip("destroy").tooltip({container:"body",html:!0,placement:"auto top",title:n.filter('[data-bv-result="'+f.STATUS_INVALID+'"]').eq(0).html()}):p.css("cursor","").tooltip("destroy");break;case p&&"popover"===q:r===!1?p.css("cursor","pointer").popover("destroy").popover({container:"body",content:n.filter('[data-bv-result="'+f.STATUS_INVALID+'"]').eq(0).html(),html:!0,placement:"auto top",trigger:"hover click"}):p.css("cursor","").popover("destroy");break;default:c===this.STATUS_INVALID?o.show():o.hide()}k.trigger(a.Event(this.options.events.fieldStatus),{bv:this,field:b,element:k,status:c}),this._onFieldValidated(k,d)}}return this},isValid:function(){for(var a in this.options.fields)if(!this.isValidField(a))return!1;return!0},isValidField:function(b){var c=a([]);switch(typeof b){case"object":c=b,b=b.attr("data-bv-field");break;case"string":c=this.getFieldElements(b)}if(0===c.length||!this.options.fields[b]||this.options.fields[b].enabled===!1)return!0;for(var d,e,f,g=c.attr("type"),h="radio"===g||"checkbox"===g?1:c.length,i=0;h>i;i++)if(d=c.eq(i),!this._isExcluded(d))for(e in this.options.fields[b].validators)if(this.options.fields[b].validators[e].enabled!==!1&&(f=d.data("bv.result."+e),f!==this.STATUS_VALID))return!1;return!0},isValidContainer:function(b){var c=this,d={},e="string"==typeof b?a(b):b;if(0===e.length)return!0;e.find("[data-bv-field]").each(function(){var b=a(this),e=b.attr("data-bv-field");c._isExcluded(b)||d[e]||(d[e]=b)});for(var f in d){var g=d[f];if(g.data("bv.messages").find('.help-block[data-bv-validator][data-bv-for="'+f+'"]').filter('[data-bv-result="'+this.STATUS_INVALID+'"]').length>0)return!1}return!0},defaultSubmit:function(){this.$submitButton&&a("<input/>").attr("type","hidden").attr("data-bv-submit-hidden","").attr("name",this.$submitButton.attr("name")).val(this.$submitButton.val()).appendTo(this.$form),this.$form.off("submit.bv").submit()},getInvalidFields:function(){return this.$invalidFields},getSubmitButton:function(){return this.$submitButton},getMessages:function(b,c){var d=this,e=[],f=a([]);switch(!0){case b&&"object"==typeof b:f=b;break;case b&&"string"==typeof b:var g=this.getFieldElements(b);if(g.length>0){var h=g.attr("type");f="radio"===h||"checkbox"===h?g.eq(0):g}break;default:f=this.$invalidFields}var i=c?'[data-bv-validator="'+c+'"]':"";return f.each(function(){e=e.concat(a(this).data("bv.messages").find('.help-block[data-bv-for="'+a(this).attr("data-bv-field")+'"][data-bv-result="'+d.STATUS_INVALID+'"]'+i).map(function(){var b=a(this).attr("data-bv-validator"),c=a(this).attr("data-bv-for");return d.options.fields[c].validators[b].enabled===!1?"":a(this).html()}).get())}),e},updateOption:function(a,b,c,d){return"object"==typeof a&&(a=a.attr("data-bv-field")),this.options.fields[a]&&this.options.fields[a].validators[b]&&(this.options.fields[a].validators[b][c]=d,this.updateStatus(a,this.STATUS_NOT_VALIDATED,b)),this},addField:function(b,c){var d=a([]);switch(typeof b){case"object":d=b,b=b.attr("data-bv-field")||b.attr("name");break;case"string":delete this._cacheFields[b],d=this.getFieldElements(b)}d.attr("data-bv-field",b);for(var e=d.attr("type"),f="radio"===e||"checkbox"===e?1:d.length,g=0;f>g;g++){var h=d.eq(g),i=this._parseOptions(h);i=null===i?c:a.extend(!0,c,i),this.options.fields[b]=a.extend(!0,this.options.fields[b],i),this._cacheFields[b]=this._cacheFields[b]?this._cacheFields[b].add(h):h,this._initField("checkbox"===e||"radio"===e?b:h)}return this.disableSubmitButtons(!1),this.$form.trigger(a.Event(this.options.events.fieldAdded),{field:b,element:d,options:this.options.fields[b]}),this},removeField:function(b){var c=a([]);switch(typeof b){case"object":c=b,b=b.attr("data-bv-field")||b.attr("name"),c.attr("data-bv-field",b);break;case"string":c=this.getFieldElements(b)}if(0===c.length)return this;for(var d=c.attr("type"),e="radio"===d||"checkbox"===d?1:c.length,f=0;e>f;f++){var g=c.eq(f);this.$invalidFields=this.$invalidFields.not(g),this._cacheFields[b]=this._cacheFields[b].not(g)}return this._cacheFields[b]&&0!==this._cacheFields[b].length||delete this.options.fields[b],("checkbox"===d||"radio"===d)&&this._initField(b),this.disableSubmitButtons(!1),this.$form.trigger(a.Event(this.options.events.fieldRemoved),{field:b,element:c}),this},resetField:function(b,c){var d=a([]);switch(typeof b){case"object":d=b,b=b.attr("data-bv-field");break;case"string":d=this.getFieldElements(b)}var e=d.length;if(this.options.fields[b])for(var f=0;e>f;f++)for(var g in this.options.fields[b].validators)d.eq(f).removeData("bv.dfs."+g);if(this.updateStatus(b,this.STATUS_NOT_VALIDATED),c){var h=d.attr("type");"radio"===h||"checkbox"===h?d.removeAttr("checked").removeAttr("selected"):d.val("")}return this},resetForm:function(b){for(var c in this.options.fields)this.resetField(c,b);return this.$invalidFields=a([]),this.$submitButton=null,this.disableSubmitButtons(!1),this},revalidateField:function(a){return this.updateStatus(a,this.STATUS_NOT_VALIDATED).validateField(a),this},enableFieldValidators:function(a,b,c){var d=this.options.fields[a].validators;if(c&&d&&d[c]&&d[c].enabled!==b)this.options.fields[a].validators[c].enabled=b,this.updateStatus(a,this.STATUS_NOT_VALIDATED,c);else if(!c&&this.options.fields[a].enabled!==b){this.options.fields[a].enabled=b;for(var e in d)this.enableFieldValidators(a,b,e)}return this},getDynamicOption:function(b,c){var d="string"==typeof b?this.getFieldElements(b):b,e=d.val();if("function"==typeof c)return a.fn.bootstrapValidator.helpers.call(c,[e,this,d]);if("string"==typeof c){var f=this.getFieldElements(c);return f.length?f.val():a.fn.bootstrapValidator.helpers.call(c,[e,this,d])||c}return null},destroy:function(){var b,c,d,e,f,g;for(b in this.options.fields){c=this.getFieldElements(b),g=this.options.fields[b].group||this.options.group;for(var h=0;h<c.length;h++){if(d=c.eq(h),d.data("bv.messages").find('.help-block[data-bv-validator][data-bv-for="'+b+'"]').remove().end().end().removeData("bv.messages").parents(g).removeClass("has-feedback has-error has-success").end().off(".bv").removeAttr("data-bv-field"),f=d.data("bv.icon")){var i="function"==typeof(this.options.fields[b].container||this.options.container)?(this.options.fields[b].container||this.options.container).call(this,d,this):this.options.fields[b].container||this.options.container;switch(i){case"tooltip":f.tooltip("destroy").remove();break;case"popover":f.popover("destroy").remove();break;default:f.remove()}}d.removeData("bv.icon");for(e in this.options.fields[b].validators)d.data("bv.dfs."+e)&&d.data("bv.dfs."+e).reject(),d.removeData("bv.result."+e).removeData("bv.response."+e).removeData("bv.dfs."+e),"function"==typeof a.fn.bootstrapValidator.validators[e].destroy&&a.fn.bootstrapValidator.validators[e].destroy(this,d,this.options.fields[b].validators[e])}}this.disableSubmitButtons(!1),this.$hiddenButton.remove(),this.$form.removeClass(this.options.elementClass).off(".bv").removeData("bootstrapValidator").find("[data-bv-submit-hidden]").remove().end().find('[type="submit"]').off("click.bv")}},a.fn.bootstrapValidator=function(c){var d=arguments;return this.each(function(){var e=a(this),f=e.data("bootstrapValidator"),g="object"==typeof c&&c;f||(f=new b(this,g),e.data("bootstrapValidator",f)),"string"==typeof c&&f[c].apply(f,Array.prototype.slice.call(d,1))})},a.fn.bootstrapValidator.DEFAULT_OPTIONS={autoFocus:!0,container:null,elementClass:"bv-form",events:{formInit:"init.form.bv",formError:"error.form.bv",formSuccess:"success.form.bv",fieldAdded:"added.field.bv",fieldRemoved:"removed.field.bv",fieldInit:"init.field.bv",fieldError:"error.field.bv",fieldSuccess:"success.field.bv",fieldStatus:"status.field.bv",validatorError:"error.validator.bv",validatorSuccess:"success.validator.bv"},excluded:[":disabled",":hidden",":not(:visible)"],feedbackIcons:{valid:null,invalid:null,validating:null},fields:null,group:".form-group",live:"enabled",message:"This value is not valid",submitButtons:'[type="submit"]',threshold:null,verbose:!0},a.fn.bootstrapValidator.validators={},a.fn.bootstrapValidator.i18n={},a.fn.bootstrapValidator.Constructor=b,a.fn.bootstrapValidator.helpers={call:function(a,b){if("function"==typeof a)return a.apply(this,b);if("string"==typeof a){"()"===a.substring(a.length-2)&&(a=a.substring(0,a.length-2));for(var c=a.split("."),d=c.pop(),e=window,f=0;f<c.length;f++)e=e[c[f]];return"undefined"==typeof e[d]?null:e[d].apply(this,b)}},format:function(b,c){a.isArray(c)||(c=[c]);for(var d in c)b=b.replace("%s",c[d]);return b},date:function(a,b,c,d){if(isNaN(a)||isNaN(b)||isNaN(c))return!1;if(c.length>2||b.length>2||a.length>4)return!1;if(c=parseInt(c,10),b=parseInt(b,10),a=parseInt(a,10),1e3>a||a>9999||0>=b||b>12)return!1;var e=[31,28,31,30,31,30,31,31,30,31,30,31];if((a%400===0||a%100!==0&&a%4===0)&&(e[1]=29),0>=c||c>e[b-1])return!1;if(d===!0){var f=new Date,g=f.getFullYear(),h=f.getMonth(),i=f.getDate();return g>a||a===g&&h>b-1||a===g&&b-1===h&&i>c}return!0},luhn:function(a){for(var b=a.length,c=0,d=[[0,1,2,3,4,5,6,7,8,9],[0,2,4,6,8,1,3,5,7,9]],e=0;b--;)e+=d[c][parseInt(a.charAt(b),10)],c^=1;return e%10===0&&e>0},mod11And10:function(a){for(var b=5,c=a.length,d=0;c>d;d++)b=(2*(b||10)%11+parseInt(a.charAt(d),10))%10;return 1===b},mod37And36:function(a,b){b=b||"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";for(var c=b.length,d=a.length,e=Math.floor(c/2),f=0;d>f;f++)e=(2*(e||c)%(c+1)+b.indexOf(a.charAt(f)))%c;return 1===e}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.base64=a.extend(a.fn.bootstrapValidator.i18n.base64||{},{"default":"Please enter a valid base 64 encoded"}),a.fn.bootstrapValidator.validators.base64={validate:function(a,b){var c=b.val();return""===c?!0:/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$/.test(c)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.between=a.extend(a.fn.bootstrapValidator.i18n.between||{},{"default":"Please enter a value between %s and %s",notInclusive:"Please enter a value between %s and %s strictly"}),a.fn.bootstrapValidator.validators.between={html5Attributes:{message:"message",min:"min",max:"max",inclusive:"inclusive"},enableByHtml5:function(a){return"range"===a.attr("type")?{min:a.attr("min"),max:a.attr("max")}:!1},validate:function(b,c,d){var e=c.val();if(""===e)return!0;if(e=this._format(e),!a.isNumeric(e))return!1;var f=a.isNumeric(d.min)?d.min:b.getDynamicOption(c,d.min),g=a.isNumeric(d.max)?d.max:b.getDynamicOption(c,d.max),h=this._format(f),i=this._format(g);return e=parseFloat(e),d.inclusive===!0||void 0===d.inclusive?{valid:e>=h&&i>=e,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.between["default"],[f,g])}:{valid:e>h&&i>e,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.between.notInclusive,[f,g])}},_format:function(a){return(a+"").replace(",",".")}}}(window.jQuery),function(a){a.fn.bootstrapValidator.validators.blank={validate:function(){return!0}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.callback=a.extend(a.fn.bootstrapValidator.i18n.callback||{},{"default":"Please enter a valid value"}),a.fn.bootstrapValidator.validators.callback={html5Attributes:{message:"message",callback:"callback"},validate:function(b,c,d){var e=c.val(),f=new a.Deferred,g={valid:!0};if(d.callback){var h=a.fn.bootstrapValidator.helpers.call(d.callback,[e,b,c]);g="boolean"==typeof h?{valid:h}:h}return f.resolve(c,"callback",g),f}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.choice=a.extend(a.fn.bootstrapValidator.i18n.choice||{},{"default":"Please enter a valid value",less:"Please choose %s options at minimum",more:"Please choose %s options at maximum",between:"Please choose %s - %s options"}),a.fn.bootstrapValidator.validators.choice={html5Attributes:{message:"message",min:"min",max:"max"},validate:function(b,c,d){var e=c.is("select")?b.getFieldElements(c.attr("data-bv-field")).find("option").filter(":selected").length:b.getFieldElements(c.attr("data-bv-field")).filter(":checked").length,f=d.min?a.isNumeric(d.min)?d.min:b.getDynamicOption(c,d.min):null,g=d.max?a.isNumeric(d.max)?d.max:b.getDynamicOption(c,d.max):null,h=!0,i=d.message||a.fn.bootstrapValidator.i18n.choice["default"];switch((f&&e<parseInt(f,10)||g&&e>parseInt(g,10))&&(h=!1),!0){case!!f&&!!g:i=a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.choice.between,[parseInt(f,10),parseInt(g,10)]);break;case!!f:i=a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.choice.less,parseInt(f,10));break;case!!g:i=a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.choice.more,parseInt(g,10))}return{valid:h,message:i}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.color=a.extend(a.fn.bootstrapValidator.i18n.color||{},{"default":"Please enter a valid color"}),a.fn.bootstrapValidator.validators.color={SUPPORTED_TYPES:["hex","rgb","rgba","hsl","hsla","keyword"],KEYWORD_COLORS:["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","green","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","transparent","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"],validate:function(b,c,d){var e=c.val();if(""===e)return!0;var f=d.type||this.SUPPORTED_TYPES;a.isArray(f)||(f=f.replace(/s/g,"").split(","));for(var g,h,i=!1,j=0;j<f.length;j++)if(h=f[j],g="_"+h.toLowerCase(),i=i||this[g](e))return!0;return!1},_hex:function(a){return/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(a)},_hsl:function(a){return/^hsl\((\s*(-?\d+)\s*,)(\s*(\b(0?\d{1,2}|100)\b%)\s*,)(\s*(\b(0?\d{1,2}|100)\b%)\s*)\)$/.test(a)},_hsla:function(a){return/^hsla\((\s*(-?\d+)\s*,)(\s*(\b(0?\d{1,2}|100)\b%)\s*,){2}(\s*(0?(\.\d+)?|1(\.0+)?)\s*)\)$/.test(a)},_keyword:function(b){return a.inArray(b,this.KEYWORD_COLORS)>=0},_rgb:function(a){var b=/^rgb\((\s*(\b([01]?\d{1,2}|2[0-4]\d|25[0-5])\b)\s*,){2}(\s*(\b([01]?\d{1,2}|2[0-4]\d|25[0-5])\b)\s*)\)$/,c=/^rgb\((\s*(\b(0?\d{1,2}|100)\b%)\s*,){2}(\s*(\b(0?\d{1,2}|100)\b%)\s*)\)$/;return b.test(a)||c.test(a)},_rgba:function(a){var b=/^rgba\((\s*(\b([01]?\d{1,2}|2[0-4]\d|25[0-5])\b)\s*,){3}(\s*(0?(\.\d+)?|1(\.0+)?)\s*)\)$/,c=/^rgba\((\s*(\b(0?\d{1,2}|100)\b%)\s*,){3}(\s*(0?(\.\d+)?|1(\.0+)?)\s*)\)$/;return b.test(a)||c.test(a)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.creditCard=a.extend(a.fn.bootstrapValidator.i18n.creditCard||{},{"default":"Please enter a valid credit card number"}),a.fn.bootstrapValidator.validators.creditCard={validate:function(b,c){var d=c.val();if(""===d)return!0;if(/[^0-9-\s]+/.test(d))return!1;if(d=d.replace(/\D/g,""),!a.fn.bootstrapValidator.helpers.luhn(d))return!1;var e,f,g={AMERICAN_EXPRESS:{length:[15],prefix:["34","37"]},DINERS_CLUB:{length:[14],prefix:["300","301","302","303","304","305","36"]},DINERS_CLUB_US:{length:[16],prefix:["54","55"]},DISCOVER:{length:[16],prefix:["6011","622126","622127","622128","622129","62213","62214","62215","62216","62217","62218","62219","6222","6223","6224","6225","6226","6227","6228","62290","62291","622920","622921","622922","622923","622924","622925","644","645","646","647","648","649","65"]},JCB:{length:[16],prefix:["3528","3529","353","354","355","356","357","358"]},LASER:{length:[16,17,18,19],prefix:["6304","6706","6771","6709"]},MAESTRO:{length:[12,13,14,15,16,17,18,19],prefix:["5018","5020","5038","6304","6759","6761","6762","6763","6764","6765","6766"]},MASTERCARD:{length:[16],prefix:["51","52","53","54","55"]},SOLO:{length:[16,18,19],prefix:["6334","6767"]},UNIONPAY:{length:[16,17,18,19],prefix:["622126","622127","622128","622129","62213","62214","62215","62216","62217","62218","62219","6222","6223","6224","6225","6226","6227","6228","62290","62291","622920","622921","622922","622923","622924","622925"]},VISA:{length:[16],prefix:["4"]}};for(e in g)for(f in g[e].prefix)if(d.substr(0,g[e].prefix[f].length)===g[e].prefix[f]&&-1!==a.inArray(d.length,g[e].length))return!0;return!1}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.cusip=a.extend(a.fn.bootstrapValidator.i18n.cusip||{},{"default":"Please enter a valid CUSIP number"}),a.fn.bootstrapValidator.validators.cusip={validate:function(b,c){var d=c.val();if(""===d)return!0;if(d=d.toUpperCase(),!/^[0-9A-Z]{9}$/.test(d))return!1;for(var e=a.map(d.split(""),function(a){var b=a.charCodeAt(0);return b>="A".charCodeAt(0)&&b<="Z".charCodeAt(0)?b-"A".charCodeAt(0)+10:a}),f=e.length,g=0,h=0;f-1>h;h++){var i=parseInt(e[h],10);h%2!==0&&(i*=2),i>9&&(i-=9),g+=i}return g=(10-g%10)%10,g===e[f-1]}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.cvv=a.extend(a.fn.bootstrapValidator.i18n.cvv||{},{"default":"Please enter a valid CVV number"}),a.fn.bootstrapValidator.validators.cvv={html5Attributes:{message:"message",ccfield:"creditCardField"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;if(!/^[0-9]{3,4}$/.test(e))return!1;if(!d.creditCardField)return!0;var f=b.getFieldElements(d.creditCardField).val();if(""===f)return!0;f=f.replace(/\D/g,"");var g,h,i={AMERICAN_EXPRESS:{length:[15],prefix:["34","37"]},DINERS_CLUB:{length:[14],prefix:["300","301","302","303","304","305","36"]},DINERS_CLUB_US:{length:[16],prefix:["54","55"]},DISCOVER:{length:[16],prefix:["6011","622126","622127","622128","622129","62213","62214","62215","62216","62217","62218","62219","6222","6223","6224","6225","6226","6227","6228","62290","62291","622920","622921","622922","622923","622924","622925","644","645","646","647","648","649","65"]},JCB:{length:[16],prefix:["3528","3529","353","354","355","356","357","358"]},LASER:{length:[16,17,18,19],prefix:["6304","6706","6771","6709"]},MAESTRO:{length:[12,13,14,15,16,17,18,19],prefix:["5018","5020","5038","6304","6759","6761","6762","6763","6764","6765","6766"]},MASTERCARD:{length:[16],prefix:["51","52","53","54","55"]},SOLO:{length:[16,18,19],prefix:["6334","6767"]},UNIONPAY:{length:[16,17,18,19],prefix:["622126","622127","622128","622129","62213","62214","62215","62216","62217","62218","62219","6222","6223","6224","6225","6226","6227","6228","62290","62291","622920","622921","622922","622923","622924","622925"]},VISA:{length:[16],prefix:["4"]}},j=null;for(g in i)for(h in i[g].prefix)if(f.substr(0,i[g].prefix[h].length)===i[g].prefix[h]&&-1!==a.inArray(f.length,i[g].length)){j=g;break}return null===j?!1:"AMERICAN_EXPRESS"===j?4===e.length:3===e.length}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.date=a.extend(a.fn.bootstrapValidator.i18n.date||{},{"default":"Please enter a valid date",min:"Please enter a date after %s",max:"Please enter a date before %s",range:"Please enter a date in the range %s - %s"}),a.fn.bootstrapValidator.validators.date={html5Attributes:{message:"message",format:"format",min:"min",max:"max",separator:"separator"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;d.format=d.format||"MM/DD/YYYY","date"===c.attr("type")&&(d.format="YYYY-MM-DD");var f=d.format.split(" "),g=f[0],h=f.length>1?f[1]:null,i=f.length>2?f[2]:null,j=e.split(" "),k=j[0],l=j.length>1?j[1]:null;if(f.length!==j.length)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};var m=d.separator;if(m||(m=-1!==k.indexOf("/")?"/":-1!==k.indexOf("-")?"-":null),null===m||-1===k.indexOf(m))return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};if(k=k.split(m),g=g.split(m),k.length!==g.length)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};var n=k[a.inArray("YYYY",g)],o=k[a.inArray("MM",g)],p=k[a.inArray("DD",g)];if(!n||!o||!p||4!==n.length)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};var q=null,r=null,s=null;if(h){if(h=h.split(":"),l=l.split(":"),h.length!==l.length)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};if(r=l.length>0?l[0]:null,q=l.length>1?l[1]:null,s=l.length>2?l[2]:null){if(isNaN(s)||s.length>2)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};if(s=parseInt(s,10),0>s||s>60)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]}}if(r){if(isNaN(r)||r.length>2)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};if(r=parseInt(r,10),0>r||r>=24||i&&r>12)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]}}if(q){if(isNaN(q)||q.length>2)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]};if(q=parseInt(q,10),0>q||q>59)return{valid:!1,message:d.message||a.fn.bootstrapValidator.i18n.date["default"]}}}var t=a.fn.bootstrapValidator.helpers.date(n,o,p),u=d.message||a.fn.bootstrapValidator.i18n.date["default"],v=null,w=null,x=d.min,y=d.max;switch(x&&(isNaN(Date.parse(x))&&(x=b.getDynamicOption(c,x)),v=this._parseDate(x,g,m)),y&&(isNaN(Date.parse(y))&&(y=b.getDynamicOption(c,y)),w=this._parseDate(y,g,m)),k=new Date(n,o,p,r,q,s),!0){case x&&!y&&t:t=k.getTime()>=v.getTime(),u=d.message||a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.date.min,x);break;case y&&!x&&t:t=k.getTime()<=w.getTime(),u=d.message||a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.date.max,y);break;case y&&x&&t:t=k.getTime()<=w.getTime()&&k.getTime()>=v.getTime(),u=d.message||a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.date.range,[x,y])}return{valid:t,message:u}},_parseDate:function(b,c,d){var e=0,f=0,g=0,h=b.split(" "),i=h[0],j=h.length>1?h[1]:null;i=i.split(d);var k=i[a.inArray("YYYY",c)],l=i[a.inArray("MM",c)],m=i[a.inArray("DD",c)];return j&&(j=j.split(":"),f=j.length>0?j[0]:null,e=j.length>1?j[1]:null,g=j.length>2?j[2]:null),new Date(k,l,m,f,e,g)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.different=a.extend(a.fn.bootstrapValidator.i18n.different||{},{"default":"Please enter a different value"}),a.fn.bootstrapValidator.validators.different={html5Attributes:{message:"message",field:"field"},validate:function(a,b,c){var d=b.val();if(""===d)return!0;for(var e=c.field.split(","),f=!0,g=0;g<e.length;g++){var h=a.getFieldElements(e[g]);if(null!=h&&0!==h.length){var i=h.val();d===i?f=!1:""!==i&&a.updateStatus(h,a.STATUS_VALID,"different")}}return f}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.digits=a.extend(a.fn.bootstrapValidator.i18n.digits||{},{"default":"Please enter only digits"}),a.fn.bootstrapValidator.validators.digits={validate:function(a,b){var c=b.val();return""===c?!0:/^\d+$/.test(c)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.ean=a.extend(a.fn.bootstrapValidator.i18n.ean||{},{"default":"Please enter a valid EAN number"}),a.fn.bootstrapValidator.validators.ean={validate:function(a,b){var c=b.val();if(""===c)return!0;if(!/^(\d{8}|\d{12}|\d{13})$/.test(c))return!1;for(var d=c.length,e=0,f=8===d?[3,1]:[1,3],g=0;d-1>g;g++)e+=parseInt(c.charAt(g),10)*f[g%2];return e=(10-e%10)%10,e+""===c.charAt(d-1)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.emailAddress=a.extend(a.fn.bootstrapValidator.i18n.emailAddress||{},{"default":"Please enter a valid email address"}),a.fn.bootstrapValidator.validators.emailAddress={html5Attributes:{message:"message",multiple:"multiple",separator:"separator"},enableByHtml5:function(a){return"email"===a.attr("type")},validate:function(a,b,c){var d=b.val();if(""===d)return!0;var e=/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/,f=c.multiple===!0||"true"===c.multiple;if(f){for(var g=c.separator||/[,;]/,h=this._splitEmailAddresses(d,g),i=0;i<h.length;i++)if(!e.test(h[i]))return!1;return!0}return e.test(d)},_splitEmailAddresses:function(a,b){for(var c=a.split(/"/),d=c.length,e=[],f="",g=0;d>g;g++)if(g%2===0){var h=c[g].split(b),i=h.length;if(1===i)f+=h[0];else{e.push(f+h[0]);for(var j=1;i-1>j;j++)e.push(h[j]);f=h[i-1]}}else f+='"'+c[g],d-1>g&&(f+='"');return e.push(f),e}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.file=a.extend(a.fn.bootstrapValidator.i18n.file||{},{"default":"Please choose a valid file"}),a.fn.bootstrapValidator.validators.file={html5Attributes:{extension:"extension",maxfiles:"maxFiles",minfiles:"minFiles",maxsize:"maxSize",minsize:"minSize",maxtotalsize:"maxTotalSize",mintotalsize:"minTotalSize",message:"message",type:"type"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;var f,g=d.extension?d.extension.toLowerCase().split(","):null,h=d.type?d.type.toLowerCase().split(","):null,i=window.File&&window.FileList&&window.FileReader;if(i){var j=c.get(0).files,k=j.length,l=0;if(d.maxFiles&&k>parseInt(d.maxFiles,10)||d.minFiles&&k<parseInt(d.minFiles,10))return!1;for(var m=0;k>m;m++)if(l+=j[m].size,f=j[m].name.substr(j[m].name.lastIndexOf(".")+1),d.minSize&&j[m].size<parseInt(d.minSize,10)||d.maxSize&&j[m].size>parseInt(d.maxSize,10)||g&&-1===a.inArray(f.toLowerCase(),g)||j[m].type&&h&&-1===a.inArray(j[m].type.toLowerCase(),h))return!1;if(d.maxTotalSize&&l>parseInt(d.maxTotalSize,10)||d.minTotalSize&&l<parseInt(d.minTotalSize,10))return!1}else if(f=e.substr(e.lastIndexOf(".")+1),g&&-1===a.inArray(f.toLowerCase(),g))return!1;return!0}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.greaterThan=a.extend(a.fn.bootstrapValidator.i18n.greaterThan||{},{"default":"Please enter a value greater than or equal to %s",notInclusive:"Please enter a value greater than %s"}),a.fn.bootstrapValidator.validators.greaterThan={html5Attributes:{message:"message",value:"value",inclusive:"inclusive"},enableByHtml5:function(a){var b=a.attr("type"),c=a.attr("min");return c&&"date"!==b?{value:c}:!1},validate:function(b,c,d){var e=c.val();if(""===e)return!0;if(e=this._format(e),!a.isNumeric(e))return!1;var f=a.isNumeric(d.value)?d.value:b.getDynamicOption(c,d.value),g=this._format(f);return e=parseFloat(e),d.inclusive===!0||void 0===d.inclusive?{valid:e>=g,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.greaterThan["default"],f)}:{valid:e>g,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.greaterThan.notInclusive,f)}},_format:function(a){return(a+"").replace(",",".")}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.grid=a.extend(a.fn.bootstrapValidator.i18n.grid||{},{"default":"Please enter a valid GRId number"}),a.fn.bootstrapValidator.validators.grid={validate:function(b,c){var d=c.val();return""===d?!0:(d=d.toUpperCase(),/^[GRID:]*([0-9A-Z]{2})[-\s]*([0-9A-Z]{5})[-\s]*([0-9A-Z]{10})[-\s]*([0-9A-Z]{1})$/g.test(d)?(d=d.replace(/\s/g,"").replace(/-/g,""),"GRID:"===d.substr(0,5)&&(d=d.substr(5)),a.fn.bootstrapValidator.helpers.mod37And36(d)):!1)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.hex=a.extend(a.fn.bootstrapValidator.i18n.hex||{},{"default":"Please enter a valid hexadecimal number"}),a.fn.bootstrapValidator.validators.hex={validate:function(a,b){var c=b.val();return""===c?!0:/^[0-9a-fA-F]+$/.test(c)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.hexColor=a.extend(a.fn.bootstrapValidator.i18n.hexColor||{},{"default":"Please enter a valid hex color"}),a.fn.bootstrapValidator.validators.hexColor={enableByHtml5:function(a){return"color"===a.attr("type")},validate:function(a,b){var c=b.val();return""===c?!0:"color"===b.attr("type")?/^#[0-9A-F]{6}$/i.test(c):/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(c)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.iban=a.extend(a.fn.bootstrapValidator.i18n.iban||{},{"default":"Please enter a valid IBAN number",countryNotSupported:"The country code %s is not supported",country:"Please enter a valid IBAN number in %s",countries:{AD:"Andorra",AE:"United Arab Emirates",AL:"Albania",AO:"Angola",AT:"Austria",AZ:"Azerbaijan",BA:"Bosnia and Herzegovina",BE:"Belgium",BF:"Burkina Faso",BG:"Bulgaria",BH:"Bahrain",BI:"Burundi",BJ:"Benin",BR:"Brazil",CH:"Switzerland",CI:"Ivory Coast",CM:"Cameroon",CR:"Costa Rica",CV:"Cape Verde",CY:"Cyprus",CZ:"Czech Republic",DE:"Germany",DK:"Denmark",DO:"Dominican Republic",DZ:"Algeria",EE:"Estonia",ES:"Spain",FI:"Finland",FO:"Faroe Islands",FR:"France",GB:"United Kingdom",GE:"Georgia",GI:"Gibraltar",GL:"Greenland",GR:"Greece",GT:"Guatemala",HR:"Croatia",HU:"Hungary",IE:"Ireland",IL:"Israel",IR:"Iran",IS:"Iceland",IT:"Italy",JO:"Jordan",KW:"Kuwait",KZ:"Kazakhstan",LB:"Lebanon",LI:"Liechtenstein",LT:"Lithuania",LU:"Luxembourg",LV:"Latvia",MC:"Monaco",MD:"Moldova",ME:"Montenegro",MG:"Madagascar",MK:"Macedonia",ML:"Mali",MR:"Mauritania",MT:"Malta",MU:"Mauritius",MZ:"Mozambique",NL:"Netherlands",NO:"Norway",
-PK:"Pakistan",PL:"Poland",PS:"Palestine",PT:"Portugal",QA:"Qatar",RO:"Romania",RS:"Serbia",SA:"Saudi Arabia",SE:"Sweden",SI:"Slovenia",SK:"Slovakia",SM:"San Marino",SN:"Senegal",TN:"Tunisia",TR:"Turkey",VG:"Virgin Islands, British"}}),a.fn.bootstrapValidator.validators.iban={html5Attributes:{message:"message",country:"country"},REGEX:{AD:"AD[0-9]{2}[0-9]{4}[0-9]{4}[A-Z0-9]{12}",AE:"AE[0-9]{2}[0-9]{3}[0-9]{16}",AL:"AL[0-9]{2}[0-9]{8}[A-Z0-9]{16}",AO:"AO[0-9]{2}[0-9]{21}",AT:"AT[0-9]{2}[0-9]{5}[0-9]{11}",AZ:"AZ[0-9]{2}[A-Z]{4}[A-Z0-9]{20}",BA:"BA[0-9]{2}[0-9]{3}[0-9]{3}[0-9]{8}[0-9]{2}",BE:"BE[0-9]{2}[0-9]{3}[0-9]{7}[0-9]{2}",BF:"BF[0-9]{2}[0-9]{23}",BG:"BG[0-9]{2}[A-Z]{4}[0-9]{4}[0-9]{2}[A-Z0-9]{8}",BH:"BH[0-9]{2}[A-Z]{4}[A-Z0-9]{14}",BI:"BI[0-9]{2}[0-9]{12}",BJ:"BJ[0-9]{2}[A-Z]{1}[0-9]{23}",BR:"BR[0-9]{2}[0-9]{8}[0-9]{5}[0-9]{10}[A-Z][A-Z0-9]",CH:"CH[0-9]{2}[0-9]{5}[A-Z0-9]{12}",CI:"CI[0-9]{2}[A-Z]{1}[0-9]{23}",CM:"CM[0-9]{2}[0-9]{23}",CR:"CR[0-9]{2}[0-9]{3}[0-9]{14}",CV:"CV[0-9]{2}[0-9]{21}",CY:"CY[0-9]{2}[0-9]{3}[0-9]{5}[A-Z0-9]{16}",CZ:"CZ[0-9]{2}[0-9]{20}",DE:"DE[0-9]{2}[0-9]{8}[0-9]{10}",DK:"DK[0-9]{2}[0-9]{14}",DO:"DO[0-9]{2}[A-Z0-9]{4}[0-9]{20}",DZ:"DZ[0-9]{2}[0-9]{20}",EE:"EE[0-9]{2}[0-9]{2}[0-9]{2}[0-9]{11}[0-9]{1}",ES:"ES[0-9]{2}[0-9]{4}[0-9]{4}[0-9]{1}[0-9]{1}[0-9]{10}",FI:"FI[0-9]{2}[0-9]{6}[0-9]{7}[0-9]{1}",FO:"FO[0-9]{2}[0-9]{4}[0-9]{9}[0-9]{1}",FR:"FR[0-9]{2}[0-9]{5}[0-9]{5}[A-Z0-9]{11}[0-9]{2}",GB:"GB[0-9]{2}[A-Z]{4}[0-9]{6}[0-9]{8}",GE:"GE[0-9]{2}[A-Z]{2}[0-9]{16}",GI:"GI[0-9]{2}[A-Z]{4}[A-Z0-9]{15}",GL:"GL[0-9]{2}[0-9]{4}[0-9]{9}[0-9]{1}",GR:"GR[0-9]{2}[0-9]{3}[0-9]{4}[A-Z0-9]{16}",GT:"GT[0-9]{2}[A-Z0-9]{4}[A-Z0-9]{20}",HR:"HR[0-9]{2}[0-9]{7}[0-9]{10}",HU:"HU[0-9]{2}[0-9]{3}[0-9]{4}[0-9]{1}[0-9]{15}[0-9]{1}",IE:"IE[0-9]{2}[A-Z]{4}[0-9]{6}[0-9]{8}",IL:"IL[0-9]{2}[0-9]{3}[0-9]{3}[0-9]{13}",IR:"IR[0-9]{2}[0-9]{22}",IS:"IS[0-9]{2}[0-9]{4}[0-9]{2}[0-9]{6}[0-9]{10}",IT:"IT[0-9]{2}[A-Z]{1}[0-9]{5}[0-9]{5}[A-Z0-9]{12}",JO:"JO[0-9]{2}[A-Z]{4}[0-9]{4}[0]{8}[A-Z0-9]{10}",KW:"KW[0-9]{2}[A-Z]{4}[0-9]{22}",KZ:"KZ[0-9]{2}[0-9]{3}[A-Z0-9]{13}",LB:"LB[0-9]{2}[0-9]{4}[A-Z0-9]{20}",LI:"LI[0-9]{2}[0-9]{5}[A-Z0-9]{12}",LT:"LT[0-9]{2}[0-9]{5}[0-9]{11}",LU:"LU[0-9]{2}[0-9]{3}[A-Z0-9]{13}",LV:"LV[0-9]{2}[A-Z]{4}[A-Z0-9]{13}",MC:"MC[0-9]{2}[0-9]{5}[0-9]{5}[A-Z0-9]{11}[0-9]{2}",MD:"MD[0-9]{2}[A-Z0-9]{20}",ME:"ME[0-9]{2}[0-9]{3}[0-9]{13}[0-9]{2}",MG:"MG[0-9]{2}[0-9]{23}",MK:"MK[0-9]{2}[0-9]{3}[A-Z0-9]{10}[0-9]{2}",ML:"ML[0-9]{2}[A-Z]{1}[0-9]{23}",MR:"MR13[0-9]{5}[0-9]{5}[0-9]{11}[0-9]{2}",MT:"MT[0-9]{2}[A-Z]{4}[0-9]{5}[A-Z0-9]{18}",MU:"MU[0-9]{2}[A-Z]{4}[0-9]{2}[0-9]{2}[0-9]{12}[0-9]{3}[A-Z]{3}",MZ:"MZ[0-9]{2}[0-9]{21}",NL:"NL[0-9]{2}[A-Z]{4}[0-9]{10}",NO:"NO[0-9]{2}[0-9]{4}[0-9]{6}[0-9]{1}",PK:"PK[0-9]{2}[A-Z]{4}[A-Z0-9]{16}",PL:"PL[0-9]{2}[0-9]{8}[0-9]{16}",PS:"PS[0-9]{2}[A-Z]{4}[A-Z0-9]{21}",PT:"PT[0-9]{2}[0-9]{4}[0-9]{4}[0-9]{11}[0-9]{2}",QA:"QA[0-9]{2}[A-Z]{4}[A-Z0-9]{21}",RO:"RO[0-9]{2}[A-Z]{4}[A-Z0-9]{16}",RS:"RS[0-9]{2}[0-9]{3}[0-9]{13}[0-9]{2}",SA:"SA[0-9]{2}[0-9]{2}[A-Z0-9]{18}",SE:"SE[0-9]{2}[0-9]{3}[0-9]{16}[0-9]{1}",SI:"SI[0-9]{2}[0-9]{5}[0-9]{8}[0-9]{2}",SK:"SK[0-9]{2}[0-9]{4}[0-9]{6}[0-9]{10}",SM:"SM[0-9]{2}[A-Z]{1}[0-9]{5}[0-9]{5}[A-Z0-9]{12}",SN:"SN[0-9]{2}[A-Z]{1}[0-9]{23}",TN:"TN59[0-9]{2}[0-9]{3}[0-9]{13}[0-9]{2}",TR:"TR[0-9]{2}[0-9]{5}[A-Z0-9]{1}[A-Z0-9]{16}",VG:"VG[0-9]{2}[A-Z]{4}[0-9]{16}"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;e=e.replace(/[^a-zA-Z0-9]/g,"").toUpperCase();var f=d.country;if(f?"string"==typeof f&&this.REGEX[f]||(f=b.getDynamicOption(c,f)):f=e.substr(0,2),!this.REGEX[f])return{valid:!1,message:a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.iban.countryNotSupported,f)};if(!new RegExp("^"+this.REGEX[f]+"$").test(e))return{valid:!1,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.iban.country,a.fn.bootstrapValidator.i18n.iban.countries[f])};e=e.substr(4)+e.substr(0,4),e=a.map(e.split(""),function(a){var b=a.charCodeAt(0);return b>="A".charCodeAt(0)&&b<="Z".charCodeAt(0)?b-"A".charCodeAt(0)+10:a}),e=e.join("");for(var g=parseInt(e.substr(0,1),10),h=e.length,i=1;h>i;++i)g=(10*g+parseInt(e.substr(i,1),10))%97;return{valid:1===g,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.iban.country,a.fn.bootstrapValidator.i18n.iban.countries[f])}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.id=a.extend(a.fn.bootstrapValidator.i18n.id||{},{"default":"Please enter a valid identification number",countryNotSupported:"The country code %s is not supported",country:"Please enter a valid identification number in %s",countries:{BA:"Bosnia and Herzegovina",BG:"Bulgaria",BR:"Brazil",CH:"Switzerland",CL:"Chile",CN:"China",CZ:"Czech Republic",DK:"Denmark",EE:"Estonia",ES:"Spain",FI:"Finland",HR:"Croatia",IE:"Ireland",IS:"Iceland",LT:"Lithuania",LV:"Latvia",ME:"Montenegro",MK:"Macedonia",NL:"Netherlands",RO:"Romania",RS:"Serbia",SE:"Sweden",SI:"Slovenia",SK:"Slovakia",SM:"San Marino",TH:"Thailand",ZA:"South Africa"}}),a.fn.bootstrapValidator.validators.id={html5Attributes:{message:"message",country:"country"},COUNTRY_CODES:["BA","BG","BR","CH","CL","CN","CZ","DK","EE","ES","FI","HR","IE","IS","LT","LV","ME","MK","NL","RO","RS","SE","SI","SK","SM","TH","ZA"],validate:function(b,c,d){var e=c.val();if(""===e)return!0;var f=d.country;if(f?("string"!=typeof f||-1===a.inArray(f.toUpperCase(),this.COUNTRY_CODES))&&(f=b.getDynamicOption(c,f)):f=e.substr(0,2),-1===a.inArray(f,this.COUNTRY_CODES))return{valid:!1,message:a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.id.countryNotSupported,f)};var g=["_",f.toLowerCase()].join("");return this[g](e)?!0:{valid:!1,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.id.country,a.fn.bootstrapValidator.i18n.id.countries[f.toUpperCase()])}},_validateJMBG:function(a,b){if(!/^\d{13}$/.test(a))return!1;var c=parseInt(a.substr(0,2),10),d=parseInt(a.substr(2,2),10),e=(parseInt(a.substr(4,3),10),parseInt(a.substr(7,2),10)),f=parseInt(a.substr(12,1),10);if(c>31||d>12)return!1;for(var g=0,h=0;6>h;h++)g+=(7-h)*(parseInt(a.charAt(h),10)+parseInt(a.charAt(h+6),10));if(g=11-g%11,(10===g||11===g)&&(g=0),g!==f)return!1;switch(b.toUpperCase()){case"BA":return e>=10&&19>=e;case"MK":return e>=41&&49>=e;case"ME":return e>=20&&29>=e;case"RS":return e>=70&&99>=e;case"SI":return e>=50&&59>=e;default:return!0}},_ba:function(a){return this._validateJMBG(a,"BA")},_mk:function(a){return this._validateJMBG(a,"MK")},_me:function(a){return this._validateJMBG(a,"ME")},_rs:function(a){return this._validateJMBG(a,"RS")},_si:function(a){return this._validateJMBG(a,"SI")},_bg:function(b){if(!/^\d{10}$/.test(b)&&!/^\d{6}\s\d{3}\s\d{1}$/.test(b))return!1;b=b.replace(/\s/g,"");var c=parseInt(b.substr(0,2),10)+1900,d=parseInt(b.substr(2,2),10),e=parseInt(b.substr(4,2),10);if(d>40?(c+=100,d-=40):d>20&&(c-=100,d-=20),!a.fn.bootstrapValidator.helpers.date(c,d,e))return!1;for(var f=0,g=[2,4,8,5,10,9,7,3,6],h=0;9>h;h++)f+=parseInt(b.charAt(h),10)*g[h];return f=f%11%10,f+""===b.substr(9,1)},_br:function(a){if(/^1{11}|2{11}|3{11}|4{11}|5{11}|6{11}|7{11}|8{11}|9{11}|0{11}$/.test(a))return!1;if(!/^\d{11}$/.test(a)&&!/^\d{3}\.\d{3}\.\d{3}-\d{2}$/.test(a))return!1;a=a.replace(/\./g,"").replace(/-/g,"");for(var b=0,c=0;9>c;c++)b+=(10-c)*parseInt(a.charAt(c),10);if(b=11-b%11,(10===b||11===b)&&(b=0),b+""!==a.charAt(9))return!1;var d=0;for(c=0;10>c;c++)d+=(11-c)*parseInt(a.charAt(c),10);return d=11-d%11,(10===d||11===d)&&(d=0),d+""===a.charAt(10)},_ch:function(a){if(!/^756[\.]{0,1}[0-9]{4}[\.]{0,1}[0-9]{4}[\.]{0,1}[0-9]{2}$/.test(a))return!1;a=a.replace(/\D/g,"").substr(3);for(var b=a.length,c=0,d=8===b?[3,1]:[1,3],e=0;b-1>e;e++)c+=parseInt(a.charAt(e),10)*d[e%2];return c=10-c%10,c+""===a.charAt(b-1)},_cl:function(a){if(!/^\d{7,8}[-]{0,1}[0-9K]$/i.test(a))return!1;for(a=a.replace(/\-/g,"");a.length<9;)a="0"+a;for(var b=0,c=[3,2,7,6,5,4,3,2],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b=11-b%11,11===b?b=0:10===b&&(b="K"),b+""===a.charAt(8).toUpperCase()},_cn:function(b){if(b=b.trim(),!/^\d{15}$/.test(b)&&!/^\d{17}[\dXx]{1}$/.test(b))return!1;var c={11:{0:[0],1:[[0,9],[11,17]],2:[0,28,29]},12:{0:[0],1:[[0,16]],2:[0,21,23,25]},13:{0:[0],1:[[0,5],7,8,21,[23,33],[81,85]],2:[[0,5],[7,9],[23,25],27,29,30,81,83],3:[[0,4],[21,24]],4:[[0,4],6,21,[23,35],81],5:[[0,3],[21,35],81,82],6:[[0,4],[21,38],[81,84]],7:[[0,3],5,6,[21,33]],8:[[0,4],[21,28]],9:[[0,3],[21,30],[81,84]],10:[[0,3],[22,26],28,81,82],11:[[0,2],[21,28],81,82]},14:{0:[0],1:[0,1,[5,10],[21,23],81],2:[[0,3],11,12,[21,27]],3:[[0,3],11,21,22],4:[[0,2],11,21,[23,31],81],5:[[0,2],21,22,24,25,81],6:[[0,3],[21,24]],7:[[0,2],[21,29],81],8:[[0,2],[21,30],81,82],9:[[0,2],[21,32],81],10:[[0,2],[21,34],81,82],11:[[0,2],[21,30],81,82],23:[[0,3],22,23,[25,30],32,33]},15:{0:[0],1:[[0,5],[21,25]],2:[[0,7],[21,23]],3:[[0,4]],4:[[0,4],[21,26],[28,30]],5:[[0,2],[21,26],81],6:[[0,2],[21,27]],7:[[0,3],[21,27],[81,85]],8:[[0,2],[21,26]],9:[[0,2],[21,29],81],22:[[0,2],[21,24]],25:[[0,2],[22,31]],26:[[0,2],[24,27],[29,32],34],28:[0,1,[22,27]],29:[0,[21,23]]},21:{0:[0],1:[[0,6],[11,14],[22,24],81],2:[[0,4],[11,13],24,[81,83]],3:[[0,4],11,21,23,81],4:[[0,4],11,[21,23]],5:[[0,5],21,22],6:[[0,4],24,81,82],7:[[0,3],11,26,27,81,82],8:[[0,4],11,81,82],9:[[0,5],11,21,22],10:[[0,5],11,21,81],11:[[0,3],21,22],12:[[0,2],4,21,23,24,81,82],13:[[0,3],21,22,24,81,82],14:[[0,4],21,22,81]},22:{0:[0],1:[[0,6],12,22,[81,83]],2:[[0,4],11,21,[81,84]],3:[[0,3],22,23,81,82],4:[[0,3],21,22],5:[[0,3],21,23,24,81,82],6:[[0,2],4,5,[21,23],25,81],7:[[0,2],[21,24],81],8:[[0,2],21,22,81,82],24:[[0,6],24,26]},23:{0:[0],1:[[0,12],21,[23,29],[81,84]],2:[[0,8],21,[23,25],27,[29,31],81],3:[[0,7],21,81,82],4:[[0,7],21,22],5:[[0,3],5,6,[21,24]],6:[[0,6],[21,24]],7:[[0,16],22,81],8:[[0,5],11,22,26,28,33,81,82],9:[[0,4],21],10:[[0,5],24,25,81,[83,85]],11:[[0,2],21,23,24,81,82],12:[[0,2],[21,26],[81,83]],27:[[0,4],[21,23]]},31:{0:[0],1:[0,1,[3,10],[12,20]],2:[0,30]},32:{0:[0],1:[[0,7],11,[13,18],24,25],2:[[0,6],11,81,82],3:[[0,5],11,12,[21,24],81,82],4:[[0,2],4,5,11,12,81,82],5:[[0,9],[81,85]],6:[[0,2],11,12,21,23,[81,84]],7:[0,1,3,5,6,[21,24]],8:[[0,4],11,26,[29,31]],9:[[0,3],[21,25],28,81,82],10:[[0,3],11,12,23,81,84,88],11:[[0,2],11,12,[81,83]],12:[[0,4],[81,84]],13:[[0,2],11,[21,24]]},33:{0:[0],1:[[0,6],[8,10],22,27,82,83,85],2:[0,1,[3,6],11,12,25,26,[81,83]],3:[[0,4],22,24,[26,29],81,82],4:[[0,2],11,21,24,[81,83]],5:[[0,3],[21,23]],6:[[0,2],21,24,[81,83]],7:[[0,3],23,26,27,[81,84]],8:[[0,3],22,24,25,81],9:[[0,3],21,22],10:[[0,4],[21,24],81,82],11:[[0,2],[21,27],81]},34:{0:[0],1:[[0,4],11,[21,24],81],2:[[0,4],7,8,[21,23],25],3:[[0,4],11,[21,23]],4:[[0,6],21],5:[[0,4],6,[21,23]],6:[[0,4],21],7:[[0,3],11,21],8:[[0,3],11,[22,28],81],10:[[0,4],[21,24]],11:[[0,3],22,[24,26],81,82],12:[[0,4],21,22,25,26,82],13:[[0,2],[21,24]],14:[[0,2],[21,24]],15:[[0,3],[21,25]],16:[[0,2],[21,23]],17:[[0,2],[21,23]],18:[[0,2],[21,25],81]},35:{0:[0],1:[[0,5],11,[21,25],28,81,82],2:[[0,6],[11,13]],3:[[0,5],22],4:[[0,3],21,[23,30],81],5:[[0,5],21,[24,27],[81,83]],6:[[0,3],[22,29],81],7:[[0,2],[21,25],[81,84]],8:[[0,2],[21,25],81],9:[[0,2],[21,26],81,82]},36:{0:[0],1:[[0,5],11,[21,24]],2:[[0,3],22,81],3:[[0,2],13,[21,23]],4:[[0,3],21,[23,30],81,82],5:[[0,2],21],6:[[0,2],22,81],7:[[0,2],[21,35],81,82],8:[[0,3],[21,30],81],9:[[0,2],[21,26],[81,83]],10:[[0,2],[21,30]],11:[[0,2],[21,30],81]},37:{0:[0],1:[[0,5],12,13,[24,26],81],2:[[0,3],5,[11,14],[81,85]],3:[[0,6],[21,23]],4:[[0,6],81],5:[[0,3],[21,23]],6:[[0,2],[11,13],34,[81,87]],7:[[0,5],24,25,[81,86]],8:[[0,2],11,[26,32],[81,83]],9:[[0,3],11,21,23,82,83],10:[[0,2],[81,83]],11:[[0,3],21,22],12:[[0,3]],13:[[0,2],11,12,[21,29]],14:[[0,2],[21,28],81,82],15:[[0,2],[21,26],81],16:[[0,2],[21,26]],17:[[0,2],[21,28]]},41:{0:[0],1:[[0,6],8,22,[81,85]],2:[[0,5],11,[21,25]],3:[[0,7],11,[22,29],81],4:[[0,4],11,[21,23],25,81,82],5:[[0,3],5,6,22,23,26,27,81],6:[[0,3],11,21,22],7:[[0,4],11,21,[24,28],81,82],8:[[0,4],11,[21,23],25,[81,83]],9:[[0,2],22,23,[26,28]],10:[[0,2],[23,25],81,82],11:[[0,4],[21,23]],12:[[0,2],21,22,24,81,82],13:[[0,3],[21,30],81],14:[[0,3],[21,26],81],15:[[0,3],[21,28]],16:[[0,2],[21,28],81],17:[[0,2],[21,29]],90:[0,1]},42:{0:[0],1:[[0,7],[11,17]],2:[[0,5],22,81],3:[[0,3],[21,25],81],5:[[0,6],[25,29],[81,83]],6:[[0,2],6,7,[24,26],[82,84]],7:[[0,4]],8:[[0,2],4,21,22,81],9:[[0,2],[21,23],81,82,84],10:[[0,3],[22,24],81,83,87],11:[[0,2],[21,27],81,82],12:[[0,2],[21,24],81],13:[[0,3],21,81],28:[[0,2],22,23,[25,28]],90:[0,[4,6],21]},43:{0:[0],1:[[0,5],11,12,21,22,24,81],2:[[0,4],11,21,[23,25],81],3:[[0,2],4,21,81,82],4:[0,1,[5,8],12,[21,24],26,81,82],5:[[0,3],11,[21,25],[27,29],81],6:[[0,3],11,21,23,24,26,81,82],7:[[0,3],[21,26],81],8:[[0,2],11,21,22],9:[[0,3],[21,23],81],10:[[0,3],[21,28],81],11:[[0,3],[21,29]],12:[[0,2],[21,30],81],13:[[0,2],21,22,81,82],31:[0,1,[22,27],30]},44:{0:[0],1:[[0,7],[11,16],83,84],2:[[0,5],21,22,24,29,32,33,81,82],3:[0,1,[3,8]],4:[[0,4]],5:[0,1,[6,15],23,82,83],6:[0,1,[4,8]],7:[0,1,[3,5],81,[83,85]],8:[[0,4],11,23,25,[81,83]],9:[[0,3],23,[81,83]],12:[[0,3],[23,26],83,84],13:[[0,3],[22,24],81],14:[[0,2],[21,24],26,27,81],15:[[0,2],21,23,81],16:[[0,2],[21,25]],17:[[0,2],21,23,81],18:[[0,3],21,23,[25,27],81,82],19:[0],20:[0],51:[[0,3],21,22],52:[[0,3],21,22,24,81],53:[[0,2],[21,23],81]},45:{0:[0],1:[[0,9],[21,27]],2:[[0,5],[21,26]],3:[[0,5],11,12,[21,32]],4:[0,1,[3,6],11,[21,23],81],5:[[0,3],12,21],6:[[0,3],21,81],7:[[0,3],21,22],8:[[0,4],21,81],9:[[0,3],[21,24],81],10:[[0,2],[21,31]],11:[[0,2],[21,23]],12:[[0,2],[21,29],81],13:[[0,2],[21,24],81],14:[[0,2],[21,25],81]},46:{0:[0],1:[0,1,[5,8]],2:[0,1],3:[0,[21,23]],90:[[0,3],[5,7],[21,39]]},50:{0:[0],1:[[0,19]],2:[0,[22,38],[40,43]],3:[0,[81,84]]},51:{0:[0],1:[0,1,[4,8],[12,15],[21,24],29,31,32,[81,84]],3:[[0,4],11,21,22],4:[[0,3],11,21,22],5:[[0,4],21,22,24,25],6:[0,1,3,23,26,[81,83]],7:[0,1,3,4,[22,27],81],8:[[0,2],11,12,[21,24]],9:[[0,4],[21,23]],10:[[0,2],11,24,25,28],11:[[0,2],[11,13],23,24,26,29,32,33,81],13:[[0,4],[21,25],81],14:[[0,2],[21,25]],15:[[0,3],[21,29]],16:[[0,3],[21,23],81],17:[[0,3],[21,25],81],18:[[0,3],[21,27]],19:[[0,3],[21,23]],20:[[0,2],21,22,81],32:[0,[21,33]],33:[0,[21,38]],34:[0,1,[22,37]]},52:{0:[0],1:[[0,3],[11,15],[21,23],81],2:[0,1,3,21,22],3:[[0,3],[21,30],81,82],4:[[0,2],[21,25]],5:[[0,2],[21,27]],6:[[0,3],[21,28]],22:[0,1,[22,30]],23:[0,1,[22,28]],24:[0,1,[22,28]],26:[0,1,[22,36]],27:[[0,2],22,23,[25,32]]},53:{0:[0],1:[[0,3],[11,14],21,22,[24,29],81],3:[[0,2],[21,26],28,81],4:[[0,2],[21,28]],5:[[0,2],[21,24]],6:[[0,2],[21,30]],7:[[0,2],[21,24]],8:[[0,2],[21,29]],9:[[0,2],[21,27]],23:[0,1,[22,29],31],25:[[0,4],[22,32]],26:[0,1,[21,28]],27:[0,1,[22,30]],28:[0,1,22,23],29:[0,1,[22,32]],31:[0,2,3,[22,24]],34:[0,[21,23]],33:[0,21,[23,25]],35:[0,[21,28]]},54:{0:[0],1:[[0,2],[21,27]],21:[0,[21,29],32,33],22:[0,[21,29],[31,33]],23:[0,1,[22,38]],24:[0,[21,31]],25:[0,[21,27]],26:[0,[21,27]]},61:{0:[0],1:[[0,4],[11,16],22,[24,26]],2:[[0,4],22],3:[[0,4],[21,24],[26,31]],4:[[0,4],[22,31],81],5:[[0,2],[21,28],81,82],6:[[0,2],[21,32]],7:[[0,2],[21,30]],8:[[0,2],[21,31]],9:[[0,2],[21,29]],10:[[0,2],[21,26]]},62:{0:[0],1:[[0,5],11,[21,23]],2:[0,1],3:[[0,2],21],4:[[0,3],[21,23]],5:[[0,3],[21,25]],6:[[0,2],[21,23]],7:[[0,2],[21,25]],8:[[0,2],[21,26]],9:[[0,2],[21,24],81,82],10:[[0,2],[21,27]],11:[[0,2],[21,26]],12:[[0,2],[21,28]],24:[0,21,[24,29]],26:[0,21,[23,30]],29:[0,1,[21,27]],30:[0,1,[21,27]]},63:{0:[0],1:[[0,5],[21,23]],2:[0,2,[21,25]],21:[0,[21,23],[26,28]],22:[0,[21,24]],23:[0,[21,24]],25:[0,[21,25]],26:[0,[21,26]],27:[0,1,[21,26]],28:[[0,2],[21,23]]},64:{0:[0],1:[0,1,[4,6],21,22,81],2:[[0,3],5,[21,23]],3:[[0,3],[21,24],81],4:[[0,2],[21,25]],5:[[0,2],21,22]},65:{0:[0],1:[[0,9],21],2:[[0,5]],21:[0,1,22,23],22:[0,1,22,23],23:[[0,3],[23,25],27,28],28:[0,1,[22,29]],29:[0,1,[22,29]],30:[0,1,[22,24]],31:[0,1,[21,31]],32:[0,1,[21,27]],40:[0,2,3,[21,28]],42:[[0,2],21,[23,26]],43:[0,1,[21,26]],90:[[0,4]],27:[[0,2],22,23]},71:{0:[0]},81:{0:[0]},82:{0:[0]}},d=parseInt(b.substr(0,2),10),e=parseInt(b.substr(2,2),10),f=parseInt(b.substr(4,2),10);if(!c[d]||!c[d][e])return!1;for(var g=!1,h=c[d][e],i=0;i<h.length;i++)if(a.isArray(h[i])&&h[i][0]<=f&&f<=h[i][1]||!a.isArray(h[i])&&f===h[i]){g=!0;break}if(!g)return!1;var j;j=18===b.length?b.substr(6,8):"19"+b.substr(6,6);var k=parseInt(j.substr(0,4),10),l=parseInt(j.substr(4,2),10),m=parseInt(j.substr(6,2),10);if(!a.fn.bootstrapValidator.helpers.date(k,l,m))return!1;if(18===b.length){var n=0,o=[7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2];for(i=0;17>i;i++)n+=parseInt(b.charAt(i),10)*o[i];n=(12-n%11)%11;var p="X"!==b.charAt(17).toUpperCase()?parseInt(b.charAt(17),10):10;return p===n}return!0},_cz:function(b){if(!/^\d{9,10}$/.test(b))return!1;var c=1900+parseInt(b.substr(0,2),10),d=parseInt(b.substr(2,2),10)%50%20,e=parseInt(b.substr(4,2),10);if(9===b.length){if(c>=1980&&(c-=100),c>1953)return!1}else 1954>c&&(c+=100);if(!a.fn.bootstrapValidator.helpers.date(c,d,e))return!1;if(10===b.length){var f=parseInt(b.substr(0,9),10)%11;return 1985>c&&(f%=10),f+""===b.substr(9,1)}return!0},_dk:function(b){if(!/^[0-9]{6}[-]{0,1}[0-9]{4}$/.test(b))return!1;b=b.replace(/-/g,"");var c=parseInt(b.substr(0,2),10),d=parseInt(b.substr(2,2),10),e=parseInt(b.substr(4,2),10);switch(!0){case-1!=="5678".indexOf(b.charAt(6))&&e>=58:e+=1800;break;case-1!=="0123".indexOf(b.charAt(6)):case-1!=="49".indexOf(b.charAt(6))&&e>=37:e+=1900;break;default:e+=2e3}return a.fn.bootstrapValidator.helpers.date(e,d,c)},_ee:function(a){return this._lt(a)},_es:function(a){if(!/^[0-9A-Z]{8}[-]{0,1}[0-9A-Z]$/.test(a)&&!/^[XYZ][-]{0,1}[0-9]{7}[-]{0,1}[0-9A-Z]$/.test(a))return!1;a=a.replace(/-/g,"");var b="XYZ".indexOf(a.charAt(0));-1!==b&&(a=b+a.substr(1)+"");var c=parseInt(a.substr(0,8),10);return c="TRWAGMYFPDXBNJZSQVHLCKE"[c%23],c===a.substr(8,1)},_fi:function(b){if(!/^[0-9]{6}[-+A][0-9]{3}[0-9ABCDEFHJKLMNPRSTUVWXY]$/.test(b))return!1;var c=parseInt(b.substr(0,2),10),d=parseInt(b.substr(2,2),10),e=parseInt(b.substr(4,2),10),f={"+":1800,"-":1900,A:2e3};if(e=f[b.charAt(6)]+e,!a.fn.bootstrapValidator.helpers.date(e,d,c))return!1;var g=parseInt(b.substr(7,3),10);if(2>g)return!1;var h=b.substr(0,6)+b.substr(7,3)+"";return h=parseInt(h,10),"0123456789ABCDEFHJKLMNPRSTUVWXY".charAt(h%31)===b.charAt(10)},_hr:function(b){return/^[0-9]{11}$/.test(b)?a.fn.bootstrapValidator.helpers.mod11And10(b):!1},_ie:function(a){if(!/^\d{7}[A-W][AHWTX]?$/.test(a))return!1;var b=function(a){for(;a.length<7;)a="0"+a;for(var b="WABCDEFGHIJKLMNOPQRSTUV",c=0,d=0;7>d;d++)c+=parseInt(a.charAt(d),10)*(8-d);return c+=9*b.indexOf(a.substr(7)),b[c%23]};return 9!==a.length||"A"!==a.charAt(8)&&"H"!==a.charAt(8)?a.charAt(7)===b(a.substr(0,7)):a.charAt(7)===b(a.substr(0,7)+a.substr(8)+"")},_is:function(b){if(!/^[0-9]{6}[-]{0,1}[0-9]{4}$/.test(b))return!1;b=b.replace(/-/g,"");var c=parseInt(b.substr(0,2),10),d=parseInt(b.substr(2,2),10),e=parseInt(b.substr(4,2),10),f=parseInt(b.charAt(9),10);if(e=9===f?1900+e:100*(20+f)+e,!a.fn.bootstrapValidator.helpers.date(e,d,c,!0))return!1;for(var g=0,h=[3,2,7,6,5,4,3,2],i=0;8>i;i++)g+=parseInt(b.charAt(i),10)*h[i];return g=11-g%11,g+""===b.charAt(8)},_lt:function(b){if(!/^[0-9]{11}$/.test(b))return!1;var c=parseInt(b.charAt(0),10),d=parseInt(b.substr(1,2),10),e=parseInt(b.substr(3,2),10),f=parseInt(b.substr(5,2),10),g=c%2===0?17+c/2:17+(c+1)/2;if(d=100*g+d,!a.fn.bootstrapValidator.helpers.date(d,e,f,!0))return!1;for(var h=0,i=[1,2,3,4,5,6,7,8,9,1],j=0;10>j;j++)h+=parseInt(b.charAt(j),10)*i[j];if(h%=11,10!==h)return h+""===b.charAt(10);for(h=0,i=[3,4,5,6,7,8,9,1,2,3],j=0;10>j;j++)h+=parseInt(b.charAt(j),10)*i[j];return h%=11,10===h&&(h=0),h+""===b.charAt(10)},_lv:function(b){if(!/^[0-9]{6}[-]{0,1}[0-9]{5}$/.test(b))return!1;b=b.replace(/\D/g,"");var c=parseInt(b.substr(0,2),10),d=parseInt(b.substr(2,2),10),e=parseInt(b.substr(4,2),10);if(e=e+1800+100*parseInt(b.charAt(6),10),!a.fn.bootstrapValidator.helpers.date(e,d,c,!0))return!1;for(var f=0,g=[10,5,8,4,2,1,6,3,7,9],h=0;10>h;h++)f+=parseInt(b.charAt(h),10)*g[h];return f=(f+1)%11%10,f+""===b.charAt(10)},_nl:function(a){for(;a.length<9;)a="0"+a;if(!/^[0-9]{4}[.]{0,1}[0-9]{2}[.]{0,1}[0-9]{3}$/.test(a))return!1;if(a=a.replace(/\./g,""),0===parseInt(a,10))return!1;for(var b=0,c=a.length,d=0;c-1>d;d++)b+=(9-d)*parseInt(a.charAt(d),10);return b%=11,10===b&&(b=0),b+""===a.charAt(c-1)},_ro:function(b){if(!/^[0-9]{13}$/.test(b))return!1;var c=parseInt(b.charAt(0),10);if(0===c||7===c||8===c)return!1;var d=parseInt(b.substr(1,2),10),e=parseInt(b.substr(3,2),10),f=parseInt(b.substr(5,2),10),g={1:1900,2:1900,3:1800,4:1800,5:2e3,6:2e3};if(f>31&&e>12)return!1;if(9!==c&&(d=g[c+""]+d,!a.fn.bootstrapValidator.helpers.date(d,e,f)))return!1;for(var h=0,i=[2,7,9,1,4,6,3,5,8,2,7,9],j=b.length,k=0;j-1>k;k++)h+=parseInt(b.charAt(k),10)*i[k];return h%=11,10===h&&(h=1),h+""===b.charAt(j-1)},_se:function(b){if(!/^[0-9]{10}$/.test(b)&&!/^[0-9]{6}[-|+][0-9]{4}$/.test(b))return!1;b=b.replace(/[^0-9]/g,"");var c=parseInt(b.substr(0,2),10)+1900,d=parseInt(b.substr(2,2),10),e=parseInt(b.substr(4,2),10);return a.fn.bootstrapValidator.helpers.date(c,d,e)?a.fn.bootstrapValidator.helpers.luhn(b):!1},_sk:function(a){return this._cz(a)},_sm:function(a){return/^\d{5}$/.test(a)},_th:function(a){if(13!==a.length)return!1;for(var b=0,c=0;12>c;c++)b+=parseInt(a.charAt(c),10)*(13-c);return(11-b%11)%10===parseInt(a.charAt(12),10)},_za:function(b){if(!/^[0-9]{10}[0|1][8|9][0-9]$/.test(b))return!1;var c=parseInt(b.substr(0,2),10),d=(new Date).getFullYear()%100,e=parseInt(b.substr(2,2),10),f=parseInt(b.substr(4,2),10);return c=c>=d?c+1900:c+2e3,a.fn.bootstrapValidator.helpers.date(c,e,f)?a.fn.bootstrapValidator.helpers.luhn(b):!1}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.identical=a.extend(a.fn.bootstrapValidator.i18n.identical||{},{"default":"Please enter the same value"}),a.fn.bootstrapValidator.validators.identical={html5Attributes:{message:"message",field:"field"},validate:function(a,b,c){var d=b.val();if(""===d)return!0;var e=a.getFieldElements(c.field);return null===e||0===e.length?!0:d===e.val()?(a.updateStatus(c.field,a.STATUS_VALID,"identical"),!0):!1}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.imei=a.extend(a.fn.bootstrapValidator.i18n.imei||{},{"default":"Please enter a valid IMEI number"}),a.fn.bootstrapValidator.validators.imei={validate:function(b,c){var d=c.val();if(""===d)return!0;switch(!0){case/^\d{15}$/.test(d):case/^\d{2}-\d{6}-\d{6}-\d{1}$/.test(d):case/^\d{2}\s\d{6}\s\d{6}\s\d{1}$/.test(d):return d=d.replace(/[^0-9]/g,""),a.fn.bootstrapValidator.helpers.luhn(d);case/^\d{14}$/.test(d):case/^\d{16}$/.test(d):case/^\d{2}-\d{6}-\d{6}(|-\d{2})$/.test(d):case/^\d{2}\s\d{6}\s\d{6}(|\s\d{2})$/.test(d):return!0;default:return!1}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.imo=a.extend(a.fn.bootstrapValidator.i18n.imo||{},{"default":"Please enter a valid IMO number"}),a.fn.bootstrapValidator.validators.imo={validate:function(a,b){var c=b.val();if(""===c)return!0;if(!/^IMO \d{7}$/i.test(c))return!1;for(var d=0,e=c.replace(/^.*(\d{7})$/,"$1"),f=6;f>=1;f--)d+=e.slice(6-f,-f)*(f+1);return d%10===parseInt(e.charAt(6),10)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.integer=a.extend(a.fn.bootstrapValidator.i18n.integer||{},{"default":"Please enter a valid number"}),a.fn.bootstrapValidator.validators.integer={enableByHtml5:function(a){return"number"===a.attr("type")&&(void 0===a.attr("step")||a.attr("step")%1===0)},validate:function(a,b){if(this.enableByHtml5(b)&&b.get(0).validity&&b.get(0).validity.badInput===!0)return!1;var c=b.val();return""===c?!0:/^(?:-?(?:0|[1-9][0-9]*))$/.test(c)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.ip=a.extend(a.fn.bootstrapValidator.i18n.ip||{},{"default":"Please enter a valid IP address",ipv4:"Please enter a valid IPv4 address",ipv6:"Please enter a valid IPv6 address"}),a.fn.bootstrapValidator.validators.ip={html5Attributes:{message:"message",ipv4:"ipv4",ipv6:"ipv6"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;d=a.extend({},{ipv4:!0,ipv6:!0},d);var f,g=/^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,h=/^\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(%.+)?\s*$/,i=!1;switch(!0){case d.ipv4&&!d.ipv6:i=g.test(e),f=d.message||a.fn.bootstrapValidator.i18n.ip.ipv4;break;case!d.ipv4&&d.ipv6:i=h.test(e),f=d.message||a.fn.bootstrapValidator.i18n.ip.ipv6;break;case d.ipv4&&d.ipv6:default:i=g.test(e)||h.test(e),f=d.message||a.fn.bootstrapValidator.i18n.ip["default"]}return{valid:i,message:f}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.isbn=a.extend(a.fn.bootstrapValidator.i18n.isbn||{},{"default":"Please enter a valid ISBN number"}),a.fn.bootstrapValidator.validators.isbn={validate:function(a,b){var c=b.val();if(""===c)return!0;var d;switch(!0){case/^\d{9}[\dX]$/.test(c):case 13===c.length&&/^(\d+)-(\d+)-(\d+)-([\dX])$/.test(c):case 13===c.length&&/^(\d+)\s(\d+)\s(\d+)\s([\dX])$/.test(c):d="ISBN10";break;case/^(978|979)\d{9}[\dX]$/.test(c):case 17===c.length&&/^(978|979)-(\d+)-(\d+)-(\d+)-([\dX])$/.test(c):case 17===c.length&&/^(978|979)\s(\d+)\s(\d+)\s(\d+)\s([\dX])$/.test(c):d="ISBN13";break;default:return!1}c=c.replace(/[^0-9X]/gi,"");var e,f,g=c.split(""),h=g.length,i=0;switch(d){case"ISBN10":for(i=0,e=0;h-1>e;e++)i+=parseInt(g[e],10)*(10-e);return f=11-i%11,11===f?f=0:10===f&&(f="X"),f+""===g[h-1];case"ISBN13":for(i=0,e=0;h-1>e;e++)i+=e%2===0?parseInt(g[e],10):3*parseInt(g[e],10);return f=10-i%10,10===f&&(f="0"),f+""===g[h-1];default:return!1}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.isin=a.extend(a.fn.bootstrapValidator.i18n.isin||{},{"default":"Please enter a valid ISIN number"}),a.fn.bootstrapValidator.validators.isin={COUNTRY_CODES:"AF|AX|AL|DZ|AS|AD|AO|AI|AQ|AG|AR|AM|AW|AU|AT|AZ|BS|BH|BD|BB|BY|BE|BZ|BJ|BM|BT|BO|BQ|BA|BW|BV|BR|IO|BN|BG|BF|BI|KH|CM|CA|CV|KY|CF|TD|CL|CN|CX|CC|CO|KM|CG|CD|CK|CR|CI|HR|CU|CW|CY|CZ|DK|DJ|DM|DO|EC|EG|SV|GQ|ER|EE|ET|FK|FO|FJ|FI|FR|GF|PF|TF|GA|GM|GE|DE|GH|GI|GR|GL|GD|GP|GU|GT|GG|GN|GW|GY|HT|HM|VA|HN|HK|HU|IS|IN|ID|IR|IQ|IE|IM|IL|IT|JM|JP|JE|JO|KZ|KE|KI|KP|KR|KW|KG|LA|LV|LB|LS|LR|LY|LI|LT|LU|MO|MK|MG|MW|MY|MV|ML|MT|MH|MQ|MR|MU|YT|MX|FM|MD|MC|MN|ME|MS|MA|MZ|MM|NA|NR|NP|NL|NC|NZ|NI|NE|NG|NU|NF|MP|NO|OM|PK|PW|PS|PA|PG|PY|PE|PH|PN|PL|PT|PR|QA|RE|RO|RU|RW|BL|SH|KN|LC|MF|PM|VC|WS|SM|ST|SA|SN|RS|SC|SL|SG|SX|SK|SI|SB|SO|ZA|GS|SS|ES|LK|SD|SR|SJ|SZ|SE|CH|SY|TW|TJ|TZ|TH|TL|TG|TK|TO|TT|TN|TR|TM|TC|TV|UG|UA|AE|GB|US|UM|UY|UZ|VU|VE|VN|VG|VI|WF|EH|YE|ZM|ZW",validate:function(a,b){var c=b.val();if(""===c)return!0;c=c.toUpperCase();var d=new RegExp("^("+this.COUNTRY_CODES+")[0-9A-Z]{10}$");if(!d.test(c))return!1;for(var e="",f=c.length,g=0;f-1>g;g++){var h=c.charCodeAt(g);e+=h>57?(h-55).toString():c.charAt(g)}var i="",j=e.length,k=j%2!==0?0:1;for(g=0;j>g;g++)i+=parseInt(e[g],10)*(g%2===k?2:1)+"";var l=0;for(g=0;g<i.length;g++)l+=parseInt(i.charAt(g),10);return l=(10-l%10)%10,l+""===c.charAt(f-1)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.ismn=a.extend(a.fn.bootstrapValidator.i18n.ismn||{},{"default":"Please enter a valid ISMN number"}),a.fn.bootstrapValidator.validators.ismn={validate:function(a,b){var c=b.val();if(""===c)return!0;var d;switch(!0){case/^M\d{9}$/.test(c):case/^M-\d{4}-\d{4}-\d{1}$/.test(c):case/^M\s\d{4}\s\d{4}\s\d{1}$/.test(c):d="ISMN10";break;case/^9790\d{9}$/.test(c):case/^979-0-\d{4}-\d{4}-\d{1}$/.test(c):case/^979\s0\s\d{4}\s\d{4}\s\d{1}$/.test(c):d="ISMN13";break;default:return!1}"ISMN10"===d&&(c="9790"+c.substr(1)),c=c.replace(/[^0-9]/gi,"");for(var e=c.length,f=0,g=[1,3],h=0;e-1>h;h++)f+=parseInt(c.charAt(h),10)*g[h%2];return f=10-f%10,f+""===c.charAt(e-1)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.issn=a.extend(a.fn.bootstrapValidator.i18n.issn||{},{"default":"Please enter a valid ISSN number"}),a.fn.bootstrapValidator.validators.issn={validate:function(a,b){var c=b.val();if(""===c)return!0;if(!/^\d{4}\-\d{3}[\dX]$/.test(c))return!1;c=c.replace(/[^0-9X]/gi,"");var d=c.split(""),e=d.length,f=0;"X"===d[7]&&(d[7]=10);for(var g=0;e>g;g++)f+=parseInt(d[g],10)*(8-g);return f%11===0}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.lessThan=a.extend(a.fn.bootstrapValidator.i18n.lessThan||{},{"default":"Please enter a value less than or equal to %s",notInclusive:"Please enter a value less than %s"}),a.fn.bootstrapValidator.validators.lessThan={html5Attributes:{message:"message",value:"value",inclusive:"inclusive"},enableByHtml5:function(a){var b=a.attr("type"),c=a.attr("max");return c&&"date"!==b?{value:c}:!1},validate:function(b,c,d){var e=c.val();if(""===e)return!0;if(e=this._format(e),!a.isNumeric(e))return!1;var f=a.isNumeric(d.value)?d.value:b.getDynamicOption(c,d.value),g=this._format(f);return e=parseFloat(e),d.inclusive===!0||void 0===d.inclusive?{valid:g>=e,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.lessThan["default"],f)}:{valid:g>e,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.lessThan.notInclusive,f)}},_format:function(a){return(a+"").replace(",",".")}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.mac=a.extend(a.fn.bootstrapValidator.i18n.mac||{},{"default":"Please enter a valid MAC address"}),a.fn.bootstrapValidator.validators.mac={validate:function(a,b){var c=b.val();return""===c?!0:/^([0-9A-F]{2}[:-]){5}([0-9A-F]{2})$/.test(c)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.meid=a.extend(a.fn.bootstrapValidator.i18n.meid||{},{"default":"Please enter a valid MEID number"}),a.fn.bootstrapValidator.validators.meid={validate:function(b,c){var d=c.val();if(""===d)return!0;switch(!0){case/^[0-9A-F]{15}$/i.test(d):case/^[0-9A-F]{2}[- ][0-9A-F]{6}[- ][0-9A-F]{6}[- ][0-9A-F]$/i.test(d):case/^\d{19}$/.test(d):case/^\d{5}[- ]\d{5}[- ]\d{4}[- ]\d{4}[- ]\d$/.test(d):var e=d.charAt(d.length-1);if(d=d.replace(/[- ]/g,""),d.match(/^\d*$/i))return a.fn.bootstrapValidator.helpers.luhn(d);d=d.slice(0,-1);for(var f="",g=1;13>=g;g+=2)f+=(2*parseInt(d.charAt(g),16)).toString(16);var h=0;for(g=0;g<f.length;g++)h+=parseInt(f.charAt(g),16);return h%10===0?"0"===e:e===(2*(10*Math.floor((h+10)/10)-h)).toString(16);case/^[0-9A-F]{14}$/i.test(d):case/^[0-9A-F]{2}[- ][0-9A-F]{6}[- ][0-9A-F]{6}$/i.test(d):case/^\d{18}$/.test(d):case/^\d{5}[- ]\d{5}[- ]\d{4}[- ]\d{4}$/.test(d):return!0;default:return!1}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.notEmpty=a.extend(a.fn.bootstrapValidator.i18n.notEmpty||{},{"default":"Please enter a value"}),a.fn.bootstrapValidator.validators.notEmpty={enableByHtml5:function(a){var b=a.attr("required")+"";return"required"===b||"true"===b},validate:function(b,c){var d=c.attr("type");return"radio"===d||"checkbox"===d?b.getFieldElements(c.attr("data-bv-field")).filter(":checked").length>0:"number"===d&&c.get(0).validity&&c.get(0).validity.badInput===!0?!0:""!==a.trim(c.val())}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.numeric=a.extend(a.fn.bootstrapValidator.i18n.numeric||{},{
-"default":"Please enter a valid float number"}),a.fn.bootstrapValidator.validators.numeric={html5Attributes:{message:"message",separator:"separator"},enableByHtml5:function(a){return"number"===a.attr("type")&&void 0!==a.attr("step")&&a.attr("step")%1!==0},validate:function(a,b,c){if(this.enableByHtml5(b)&&b.get(0).validity&&b.get(0).validity.badInput===!0)return!1;var d=b.val();if(""===d)return!0;var e=c.separator||".";return"."!==e&&(d=d.replace(e,".")),!isNaN(parseFloat(d))&&isFinite(d)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.phone=a.extend(a.fn.bootstrapValidator.i18n.phone||{},{"default":"Please enter a valid phone number",countryNotSupported:"The country code %s is not supported",country:"Please enter a valid phone number in %s",countries:{BR:"Brazil",CN:"China",CZ:"Czech Republic",DE:"Germany",DK:"Denmark",ES:"Spain",FR:"France",GB:"United Kingdom",MA:"Morocco",PK:"Pakistan",RO:"Romania",RU:"Russia",SK:"Slovakia",TH:"Thailand",US:"USA",VE:"Venezuela"}}),a.fn.bootstrapValidator.validators.phone={html5Attributes:{message:"message",country:"country"},COUNTRY_CODES:["BR","CN","CZ","DE","DK","ES","FR","GB","MA","PK","RO","RU","SK","TH","US","VE"],validate:function(b,c,d){var e=c.val();if(""===e)return!0;var f=d.country;if(("string"!=typeof f||-1===a.inArray(f,this.COUNTRY_CODES))&&(f=b.getDynamicOption(c,f)),!f||-1===a.inArray(f.toUpperCase(),this.COUNTRY_CODES))return{valid:!1,message:a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.phone.countryNotSupported,f)};var g=!0;switch(f.toUpperCase()){case"BR":e=a.trim(e),g=/^(([\d]{4}[-.\s]{1}[\d]{2,3}[-.\s]{1}[\d]{2}[-.\s]{1}[\d]{2})|([\d]{4}[-.\s]{1}[\d]{3}[-.\s]{1}[\d]{4})|((\(?\+?[0-9]{2}\)?\s?)?(\(?\d{2}\)?\s?)?\d{4,5}[-.\s]?\d{4}))$/.test(e);break;case"CN":e=a.trim(e),g=/^((00|\+)?(86(?:-| )))?((\d{11})|(\d{3}[- ]{1}\d{4}[- ]{1}\d{4})|((\d{2,4}[- ]){1}(\d{7,8}|(\d{3,4}[- ]{1}\d{4}))([- ]{1}\d{1,4})?))$/.test(e);break;case"CZ":g=/^(((00)([- ]?)|\+)(420)([- ]?))?((\d{3})([- ]?)){2}(\d{3})$/.test(e);break;case"DE":e=a.trim(e),g=/^(((((((00|\+)49[ \-/]?)|0)[1-9][0-9]{1,4})[ \-/]?)|((((00|\+)49\()|\(0)[1-9][0-9]{1,4}\)[ \-/]?))[0-9]{1,7}([ \-/]?[0-9]{1,5})?)$/.test(e);break;case"DK":e=a.trim(e),g=/^(\+45|0045|\(45\))?\s?[2-9](\s?\d){7}$/.test(e);break;case"ES":e=a.trim(e),g=/^(?:(?:(?:\+|00)34\D?))?(?:9|6)(?:\d\D?){8}$/.test(e);break;case"FR":e=a.trim(e),g=/^(?:(?:(?:\+|00)33[ ]?(?:\(0\)[ ]?)?)|0){1}[1-9]{1}([ .-]?)(?:\d{2}\1?){3}\d{2}$/.test(e);break;case"GB":e=a.trim(e),g=/^\(?(?:(?:0(?:0|11)\)?[\s-]?\(?|\+)44\)?[\s-]?\(?(?:0\)?[\s-]?\(?)?|0)(?:\d{2}\)?[\s-]?\d{4}[\s-]?\d{4}|\d{3}\)?[\s-]?\d{3}[\s-]?\d{3,4}|\d{4}\)?[\s-]?(?:\d{5}|\d{3}[\s-]?\d{3})|\d{5}\)?[\s-]?\d{4,5}|8(?:00[\s-]?11[\s-]?11|45[\s-]?46[\s-]?4\d))(?:(?:[\s-]?(?:x|ext\.?\s?|\#)\d+)?)$/.test(e);break;case"MA":e=a.trim(e),g=/^(?:(?:(?:\+|00)212[\s]?(?:[\s]?\(0\)[\s]?)?)|0){1}(?:5[\s.-]?[2-3]|6[\s.-]?[13-9]){1}[0-9]{1}(?:[\s.-]?\d{2}){3}$/.test(e);break;case"PK":e=a.trim(e),g=/^0?3[0-9]{2}[0-9]{7}$/.test(e);break;case"RO":g=/^(\+4|)?(07[0-8]{1}[0-9]{1}|02[0-9]{2}|03[0-9]{2}){1}?(\s|\.|\-)?([0-9]{3}(\s|\.|\-|)){2}$/g.test(e);break;case"RU":g=/^((8|\+7|007)[\-\.\/ ]?)?([\(\/\.]?\d{3}[\)\/\.]?[\-\.\/ ]?)?[\d\-\.\/ ]{7,10}$/g.test(e);break;case"SK":g=/^(((00)([- ]?)|\+)(420)([- ]?))?((\d{3})([- ]?)){2}(\d{3})$/.test(e);break;case"TH":g=/^0\(?([6|8-9]{2})*-([0-9]{3})*-([0-9]{4})$/.test(e);break;case"VE":e=a.trim(e),g=/^0(?:2(?:12|4[0-9]|5[1-9]|6[0-9]|7[0-8]|8[1-35-8]|9[1-5]|3[45789])|4(?:1[246]|2[46]))\d{7}$/.test(e);break;case"US":default:e=e.replace(/\D/g,""),g=/^(?:(1\-?)|(\+1 ?))?\(?(\d{3})[\)\-\.]?(\d{3})[\-\.]?(\d{4})$/.test(e)&&10===e.length}return{valid:g,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.phone.country,a.fn.bootstrapValidator.i18n.phone.countries[f])}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.regexp=a.extend(a.fn.bootstrapValidator.i18n.regexp||{},{"default":"Please enter a value matching the pattern"}),a.fn.bootstrapValidator.validators.regexp={html5Attributes:{message:"message",regexp:"regexp"},enableByHtml5:function(a){var b=a.attr("pattern");return b?{regexp:b}:!1},validate:function(a,b,c){var d=b.val();if(""===d)return!0;var e="string"==typeof c.regexp?new RegExp(c.regexp):c.regexp;return e.test(d)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.remote=a.extend(a.fn.bootstrapValidator.i18n.remote||{},{"default":"Please enter a valid value"}),a.fn.bootstrapValidator.validators.remote={html5Attributes:{message:"message",name:"name",type:"type",url:"url",data:"data",delay:"delay"},destroy:function(a,b){b.data("bv.remote.timer")&&(clearTimeout(b.data("bv.remote.timer")),b.removeData("bv.remote.timer"))},validate:function(b,c,d){function e(){var b=a.ajax({type:k,headers:l,url:j,dataType:"json",data:i});return b.then(function(a){a.valid=a.valid===!0||"true"===a.valid,g.resolve(c,"remote",a)}),g.fail(function(){b.abort()}),g}var f=c.val(),g=new a.Deferred;if(""===f)return g.resolve(c,"remote",{valid:!0}),g;var h=c.attr("data-bv-field"),i=d.data||{},j=d.url,k=d.type||"GET",l=d.headers||{};return"function"==typeof i&&(i=i.call(this,b)),"string"==typeof i&&(i=JSON.parse(i)),"function"==typeof j&&(j=j.call(this,b)),i[d.name||h]=f,d.delay?(c.data("bv.remote.timer")&&clearTimeout(c.data("bv.remote.timer")),c.data("bv.remote.timer",setTimeout(e,d.delay)),g):e()}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.rtn=a.extend(a.fn.bootstrapValidator.i18n.rtn||{},{"default":"Please enter a valid RTN number"}),a.fn.bootstrapValidator.validators.rtn={validate:function(a,b){var c=b.val();if(""===c)return!0;if(!/^\d{9}$/.test(c))return!1;for(var d=0,e=0;e<c.length;e+=3)d+=3*parseInt(c.charAt(e),10)+7*parseInt(c.charAt(e+1),10)+parseInt(c.charAt(e+2),10);return 0!==d&&d%10===0}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.sedol=a.extend(a.fn.bootstrapValidator.i18n.sedol||{},{"default":"Please enter a valid SEDOL number"}),a.fn.bootstrapValidator.validators.sedol={validate:function(a,b){var c=b.val();if(""===c)return!0;if(c=c.toUpperCase(),!/^[0-9A-Z]{7}$/.test(c))return!1;for(var d=0,e=[1,3,1,7,3,9,1],f=c.length,g=0;f-1>g;g++)d+=e[g]*parseInt(c.charAt(g),36);return d=(10-d%10)%10,d+""===c.charAt(f-1)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.siren=a.extend(a.fn.bootstrapValidator.i18n.siren||{},{"default":"Please enter a valid SIREN number"}),a.fn.bootstrapValidator.validators.siren={validate:function(b,c){var d=c.val();return""===d?!0:/^\d{9}$/.test(d)?a.fn.bootstrapValidator.helpers.luhn(d):!1}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.siret=a.extend(a.fn.bootstrapValidator.i18n.siret||{},{"default":"Please enter a valid SIRET number"}),a.fn.bootstrapValidator.validators.siret={validate:function(a,b){var c=b.val();if(""===c)return!0;for(var d,e=0,f=c.length,g=0;f>g;g++)d=parseInt(c.charAt(g),10),g%2===0&&(d=2*d,d>9&&(d-=9)),e+=d;return e%10===0}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.step=a.extend(a.fn.bootstrapValidator.i18n.step||{},{"default":"Please enter a valid step of %s"}),a.fn.bootstrapValidator.validators.step={html5Attributes:{message:"message",base:"baseValue",step:"step"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;if(d=a.extend({},{baseValue:0,step:1},d),e=parseFloat(e),!a.isNumeric(e))return!1;var f=function(a,b){var c=Math.pow(10,b);a*=c;var d=a>0|-(0>a),e=a%1===.5*d;return e?(Math.floor(a)+(d>0))/c:Math.round(a)/c},g=function(a,b){if(0===b)return 1;var c=(a+"").split("."),d=(b+"").split("."),e=(1===c.length?0:c[1].length)+(1===d.length?0:d[1].length);return f(a-b*Math.floor(a/b),e)},h=g(e-d.baseValue,d.step);return{valid:0===h||h===d.step,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.step["default"],[d.step])}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.stringCase=a.extend(a.fn.bootstrapValidator.i18n.stringCase||{},{"default":"Please enter only lowercase characters",upper:"Please enter only uppercase characters"}),a.fn.bootstrapValidator.validators.stringCase={html5Attributes:{message:"message","case":"case"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;var f=(d["case"]||"lower").toLowerCase();return{valid:"upper"===f?e===e.toUpperCase():e===e.toLowerCase(),message:d.message||("upper"===f?a.fn.bootstrapValidator.i18n.stringCase.upper:a.fn.bootstrapValidator.i18n.stringCase["default"])}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.stringLength=a.extend(a.fn.bootstrapValidator.i18n.stringLength||{},{"default":"Please enter a value with valid length",less:"Please enter less than %s characters",more:"Please enter more than %s characters",between:"Please enter value between %s and %s characters long"}),a.fn.bootstrapValidator.validators.stringLength={html5Attributes:{message:"message",min:"min",max:"max",trim:"trim",utf8bytes:"utf8Bytes"},enableByHtml5:function(b){var c={},d=b.attr("maxlength"),e=b.attr("minlength");return d&&(c.max=parseInt(d,10)),e&&(c.min=parseInt(e,10)),a.isEmptyObject(c)?!1:c},validate:function(b,c,d){var e=c.val();if((d.trim===!0||"true"===d.trim)&&(e=a.trim(e)),""===e)return!0;var f=a.isNumeric(d.min)?d.min:b.getDynamicOption(c,d.min),g=a.isNumeric(d.max)?d.max:b.getDynamicOption(c,d.max),h=function(a){for(var b=a.length,c=a.length-1;c>=0;c--){var d=a.charCodeAt(c);d>127&&2047>=d?b++:d>2047&&65535>=d&&(b+=2),d>=56320&&57343>=d&&c--}return b},i=d.utf8Bytes?h(e):e.length,j=!0,k=d.message||a.fn.bootstrapValidator.i18n.stringLength["default"];switch((f&&i<parseInt(f,10)||g&&i>parseInt(g,10))&&(j=!1),!0){case!!f&&!!g:k=a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.stringLength.between,[parseInt(f,10),parseInt(g,10)]);break;case!!f:k=a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.stringLength.more,parseInt(f,10));break;case!!g:k=a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.stringLength.less,parseInt(g,10))}return{valid:j,message:k}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.uri=a.extend(a.fn.bootstrapValidator.i18n.uri||{},{"default":"Please enter a valid URI"}),a.fn.bootstrapValidator.validators.uri={html5Attributes:{message:"message",allowlocal:"allowLocal",protocol:"protocol"},enableByHtml5:function(a){return"url"===a.attr("type")},validate:function(a,b,c){var d=b.val();if(""===d)return!0;var e=c.allowLocal===!0||"true"===c.allowLocal,f=(c.protocol||"http, https, ftp").split(",").join("|").replace(/\s/g,""),g=new RegExp("^(?:(?:"+f+")://)(?:\\S+(?::\\S*)?@)?(?:"+(e?"":"(?!(?:10|127)(?:\\.\\d{1,3}){3})(?!(?:169\\.254|192\\.168)(?:\\.\\d{1,3}){2})(?!172\\.(?:1[6-9]|2\\d|3[0-1])(?:\\.\\d{1,3}){2})")+"(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[1-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,}))"+(e?"?":"")+")(?::\\d{2,5})?(?:/[^\\s]*)?$","i");return g.test(d)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.uuid=a.extend(a.fn.bootstrapValidator.i18n.uuid||{},{"default":"Please enter a valid UUID number",version:"Please enter a valid UUID version %s number"}),a.fn.bootstrapValidator.validators.uuid={html5Attributes:{message:"message",version:"version"},validate:function(b,c,d){var e=c.val();if(""===e)return!0;var f={3:/^[0-9A-F]{8}-[0-9A-F]{4}-3[0-9A-F]{3}-[0-9A-F]{4}-[0-9A-F]{12}$/i,4:/^[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i,5:/^[0-9A-F]{8}-[0-9A-F]{4}-5[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i,all:/^[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$/i},g=d.version?d.version+"":"all";return{valid:null===f[g]?!0:f[g].test(e),message:d.version?a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.uuid.version,d.version):d.message||a.fn.bootstrapValidator.i18n.uuid["default"]}}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.vat=a.extend(a.fn.bootstrapValidator.i18n.vat||{},{"default":"Please enter a valid VAT number",countryNotSupported:"The country code %s is not supported",country:"Please enter a valid VAT number in %s",countries:{AT:"Austria",BE:"Belgium",BG:"Bulgaria",BR:"Brazil",CH:"Switzerland",CY:"Cyprus",CZ:"Czech Republic",DE:"Germany",DK:"Denmark",EE:"Estonia",ES:"Spain",FI:"Finland",FR:"France",GB:"United Kingdom",GR:"Greek",EL:"Greek",HU:"Hungary",HR:"Croatia",IE:"Ireland",IS:"Iceland",IT:"Italy",LT:"Lithuania",LU:"Luxembourg",LV:"Latvia",MT:"Malta",NL:"Netherlands",NO:"Norway",PL:"Poland",PT:"Portugal",RO:"Romania",RU:"Russia",RS:"Serbia",SE:"Sweden",SI:"Slovenia",SK:"Slovakia",VE:"Venezuela",ZA:"South Africa"}}),a.fn.bootstrapValidator.validators.vat={html5Attributes:{message:"message",country:"country"},COUNTRY_CODES:["AT","BE","BG","BR","CH","CY","CZ","DE","DK","EE","EL","ES","FI","FR","GB","GR","HR","HU","IE","IS","IT","LT","LU","LV","MT","NL","NO","PL","PT","RO","RU","RS","SE","SK","SI","VE","ZA"],validate:function(b,c,d){var e=c.val();if(""===e)return!0;var f=d.country;if(f?("string"!=typeof f||-1===a.inArray(f.toUpperCase(),this.COUNTRY_CODES))&&(f=b.getDynamicOption(c,f)):f=e.substr(0,2),-1===a.inArray(f,this.COUNTRY_CODES))return{valid:!1,message:a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.vat.countryNotSupported,f)};var g=["_",f.toLowerCase()].join("");return this[g](e)?!0:{valid:!1,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.vat.country,a.fn.bootstrapValidator.i18n.vat.countries[f.toUpperCase()])}},_at:function(a){if(/^ATU[0-9]{8}$/.test(a)&&(a=a.substr(2)),!/^U[0-9]{8}$/.test(a))return!1;a=a.substr(1);for(var b=0,c=[1,2,1,2,1,2,1],d=0,e=0;7>e;e++)d=parseInt(a.charAt(e),10)*c[e],d>9&&(d=Math.floor(d/10)+d%10),b+=d;return b=10-(b+4)%10,10===b&&(b=0),b+""===a.substr(7,1)},_be:function(a){if(/^BE[0]{0,1}[0-9]{9}$/.test(a)&&(a=a.substr(2)),!/^[0]{0,1}[0-9]{9}$/.test(a))return!1;if(9===a.length&&(a="0"+a),"0"===a.substr(1,1))return!1;var b=parseInt(a.substr(0,8),10)+parseInt(a.substr(8,2),10);return b%97===0},_bg:function(b){if(/^BG[0-9]{9,10}$/.test(b)&&(b=b.substr(2)),!/^[0-9]{9,10}$/.test(b))return!1;var c=0,d=0;if(9===b.length){for(d=0;8>d;d++)c+=parseInt(b.charAt(d),10)*(d+1);if(c%=11,10===c)for(c=0,d=0;8>d;d++)c+=parseInt(b.charAt(d),10)*(d+3);return c%=10,c+""===b.substr(8)}if(10===b.length){var e=function(b){var c=parseInt(b.substr(0,2),10)+1900,d=parseInt(b.substr(2,2),10),e=parseInt(b.substr(4,2),10);if(d>40?(c+=100,d-=40):d>20&&(c-=100,d-=20),!a.fn.bootstrapValidator.helpers.date(c,d,e))return!1;for(var f=0,g=[2,4,8,5,10,9,7,3,6],h=0;9>h;h++)f+=parseInt(b.charAt(h),10)*g[h];return f=f%11%10,f+""===b.substr(9,1)},f=function(a){for(var b=0,c=[21,19,17,13,11,9,7,3,1],d=0;9>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%=10,b+""===a.substr(9,1)},g=function(a){for(var b=0,c=[4,3,2,7,6,5,4,3,2],d=0;9>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b=11-b%11,10===b?!1:(11===b&&(b=0),b+""===a.substr(9,1))};return e(b)||f(b)||g(b)}return!1},_br:function(a){if(""===a)return!0;var b=a.replace(/[^\d]+/g,"");if(""===b||14!==b.length)return!1;if("00000000000000"===b||"11111111111111"===b||"22222222222222"===b||"33333333333333"===b||"44444444444444"===b||"55555555555555"===b||"66666666666666"===b||"77777777777777"===b||"88888888888888"===b||"99999999999999"===b)return!1;for(var c=b.length-2,d=b.substring(0,c),e=b.substring(c),f=0,g=c-7,h=c;h>=1;h--)f+=parseInt(d.charAt(c-h),10)*g--,2>g&&(g=9);var i=2>f%11?0:11-f%11;if(i!==parseInt(e.charAt(0),10))return!1;for(c+=1,d=b.substring(0,c),f=0,g=c-7,h=c;h>=1;h--)f+=parseInt(d.charAt(c-h),10)*g--,2>g&&(g=9);return i=2>f%11?0:11-f%11,i===parseInt(e.charAt(1),10)},_ch:function(a){if(/^CHE[0-9]{9}(MWST)?$/.test(a)&&(a=a.substr(2)),!/^E[0-9]{9}(MWST)?$/.test(a))return!1;a=a.substr(1);for(var b=0,c=[5,4,3,2,7,6,5,4],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b=11-b%11,10===b?!1:(11===b&&(b=0),b+""===a.substr(8,1))},_cy:function(a){if(/^CY[0-5|9]{1}[0-9]{7}[A-Z]{1}$/.test(a)&&(a=a.substr(2)),!/^[0-5|9]{1}[0-9]{7}[A-Z]{1}$/.test(a))return!1;if("12"===a.substr(0,2))return!1;for(var b=0,c={0:1,1:0,2:5,3:7,4:9,5:13,6:15,7:17,8:19,9:21},d=0;8>d;d++){var e=parseInt(a.charAt(d),10);d%2===0&&(e=c[e+""]),b+=e}return b="ABCDEFGHIJKLMNOPQRSTUVWXYZ"[b%26],b+""===a.substr(8,1)},_cz:function(b){if(/^CZ[0-9]{8,10}$/.test(b)&&(b=b.substr(2)),!/^[0-9]{8,10}$/.test(b))return!1;var c=0,d=0;if(8===b.length){if(b.charAt(0)+""=="9")return!1;for(c=0,d=0;7>d;d++)c+=parseInt(b.charAt(d),10)*(8-d);return c=11-c%11,10===c&&(c=0),11===c&&(c=1),c+""===b.substr(7,1)}if(9===b.length&&b.charAt(0)+""=="6"){for(c=0,d=0;7>d;d++)c+=parseInt(b.charAt(d+1),10)*(8-d);return c=11-c%11,10===c&&(c=0),11===c&&(c=1),c=[8,7,6,5,4,3,2,1,0,9,10][c-1],c+""===b.substr(8,1)}if(9===b.length||10===b.length){var e=1900+parseInt(b.substr(0,2),10),f=parseInt(b.substr(2,2),10)%50%20,g=parseInt(b.substr(4,2),10);if(9===b.length){if(e>=1980&&(e-=100),e>1953)return!1}else 1954>e&&(e+=100);if(!a.fn.bootstrapValidator.helpers.date(e,f,g))return!1;if(10===b.length){var h=parseInt(b.substr(0,9),10)%11;return 1985>e&&(h%=10),h+""===b.substr(9,1)}return!0}return!1},_de:function(b){return/^DE[0-9]{9}$/.test(b)&&(b=b.substr(2)),/^[0-9]{9}$/.test(b)?a.fn.bootstrapValidator.helpers.mod11And10(b):!1},_dk:function(a){if(/^DK[0-9]{8}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{8}$/.test(a))return!1;for(var b=0,c=[2,7,6,5,4,3,2,1],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%11===0},_ee:function(a){if(/^EE[0-9]{9}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{9}$/.test(a))return!1;for(var b=0,c=[3,7,1,3,7,1,3,7,1],d=0;9>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%10===0},_es:function(a){if(/^ES[0-9A-Z][0-9]{7}[0-9A-Z]$/.test(a)&&(a=a.substr(2)),!/^[0-9A-Z][0-9]{7}[0-9A-Z]$/.test(a))return!1;var b=function(a){var b=parseInt(a.substr(0,8),10);return b="TRWAGMYFPDXBNJZSQVHLCKE"[b%23],b+""===a.substr(8,1)},c=function(a){var b=["XYZ".indexOf(a.charAt(0)),a.substr(1)].join("");return b=parseInt(b,10),b="TRWAGMYFPDXBNJZSQVHLCKE"[b%23],b+""===a.substr(8,1)},d=function(a){var b,c=a.charAt(0);if(-1!=="KLM".indexOf(c))return b=parseInt(a.substr(1,8),10),b="TRWAGMYFPDXBNJZSQVHLCKE"[b%23],b+""===a.substr(8,1);if(-1!=="ABCDEFGHJNPQRSUVW".indexOf(c)){for(var d=0,e=[2,1,2,1,2,1,2],f=0,g=0;7>g;g++)f=parseInt(a.charAt(g+1),10)*e[g],f>9&&(f=Math.floor(f/10)+f%10),d+=f;return d=10-d%10,d+""===a.substr(8,1)||"JABCDEFGHI"[d]===a.substr(8,1)}return!1},e=a.charAt(0);return/^[0-9]$/.test(e)?b(a):/^[XYZ]$/.test(e)?c(a):d(a)},_fi:function(a){if(/^FI[0-9]{8}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{8}$/.test(a))return!1;for(var b=0,c=[7,9,10,5,8,4,2,1],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%11===0},_fr:function(b){if(/^FR[0-9A-Z]{2}[0-9]{9}$/.test(b)&&(b=b.substr(2)),!/^[0-9A-Z]{2}[0-9]{9}$/.test(b))return!1;if(!a.fn.bootstrapValidator.helpers.luhn(b.substr(2)))return!1;if(/^[0-9]{2}$/.test(b.substr(0,2)))return b.substr(0,2)===parseInt(b.substr(2)+"12",10)%97+"";var c,d="0123456789ABCDEFGHJKLMNPQRSTUVWXYZ";return c=/^[0-9]{1}$/.test(b.charAt(0))?24*d.indexOf(b.charAt(0))+d.indexOf(b.charAt(1))-10:34*d.indexOf(b.charAt(0))+d.indexOf(b.charAt(1))-100,(parseInt(b.substr(2),10)+1+Math.floor(c/11))%11===c%11},_gb:function(a){if((/^GB[0-9]{9}$/.test(a)||/^GB[0-9]{12}$/.test(a)||/^GBGD[0-9]{3}$/.test(a)||/^GBHA[0-9]{3}$/.test(a)||/^GB(GD|HA)8888[0-9]{5}$/.test(a))&&(a=a.substr(2)),!(/^[0-9]{9}$/.test(a)||/^[0-9]{12}$/.test(a)||/^GD[0-9]{3}$/.test(a)||/^HA[0-9]{3}$/.test(a)||/^(GD|HA)8888[0-9]{5}$/.test(a)))return!1;var b=a.length;if(5===b){var c=a.substr(0,2),d=parseInt(a.substr(2),10);return"GD"===c&&500>d||"HA"===c&&d>=500}if(11===b&&("GD8888"===a.substr(0,6)||"HA8888"===a.substr(0,6)))return"GD"===a.substr(0,2)&&parseInt(a.substr(6,3),10)>=500||"HA"===a.substr(0,2)&&parseInt(a.substr(6,3),10)<500?!1:parseInt(a.substr(6,3),10)%97===parseInt(a.substr(9,2),10);if(9===b||12===b){for(var e=0,f=[8,7,6,5,4,3,2,10,1],g=0;9>g;g++)e+=parseInt(a.charAt(g),10)*f[g];return e%=97,parseInt(a.substr(0,3),10)>=100?0===e||42===e||55===e:0===e}return!0},_gr:function(a){if(/^(GR|EL)[0-9]{9}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{9}$/.test(a))return!1;8===a.length&&(a="0"+a);for(var b=0,c=[256,128,64,32,16,8,4,2],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b=b%11%10,b+""===a.substr(8,1)},_el:function(a){return this._gr(a)},_hu:function(a){if(/^HU[0-9]{8}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{8}$/.test(a))return!1;for(var b=0,c=[9,7,3,1,9,7,3,1],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%10===0},_hr:function(b){return/^HR[0-9]{11}$/.test(b)&&(b=b.substr(2)),/^[0-9]{11}$/.test(b)?a.fn.bootstrapValidator.helpers.mod11And10(b):!1},_ie:function(a){if(/^IE[0-9]{1}[0-9A-Z\*\+]{1}[0-9]{5}[A-Z]{1,2}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{1}[0-9A-Z\*\+]{1}[0-9]{5}[A-Z]{1,2}$/.test(a))return!1;var b=function(a){for(;a.length<7;)a="0"+a;for(var b="WABCDEFGHIJKLMNOPQRSTUV",c=0,d=0;7>d;d++)c+=parseInt(a.charAt(d),10)*(8-d);return c+=9*b.indexOf(a.substr(7)),b[c%23]};return/^[0-9]+$/.test(a.substr(0,7))?a.charAt(7)===b(a.substr(0,7)+a.substr(8)+""):-1!=="ABCDEFGHIJKLMNOPQRSTUVWXYZ+*".indexOf(a.charAt(1))?a.charAt(7)===b(a.substr(2,5)+a.substr(0,1)+""):!0},_is:function(a){return/^IS[0-9]{5,6}$/.test(a)&&(a=a.substr(2)),/^[0-9]{5,6}$/.test(a)},_it:function(b){if(/^IT[0-9]{11}$/.test(b)&&(b=b.substr(2)),!/^[0-9]{11}$/.test(b))return!1;if(0===parseInt(b.substr(0,7),10))return!1;var c=parseInt(b.substr(7,3),10);return 1>c||c>201&&999!==c&&888!==c?!1:a.fn.bootstrapValidator.helpers.luhn(b)},_lt:function(a){if(/^LT([0-9]{7}1[0-9]{1}|[0-9]{10}1[0-9]{1})$/.test(a)&&(a=a.substr(2)),!/^([0-9]{7}1[0-9]{1}|[0-9]{10}1[0-9]{1})$/.test(a))return!1;var b,c=a.length,d=0;for(b=0;c-1>b;b++)d+=parseInt(a.charAt(b),10)*(1+b%9);var e=d%11;if(10===e)for(d=0,b=0;c-1>b;b++)d+=parseInt(a.charAt(b),10)*(1+(b+2)%9);return e=e%11%10,e+""===a.charAt(c-1)},_lu:function(a){return/^LU[0-9]{8}$/.test(a)&&(a=a.substr(2)),/^[0-9]{8}$/.test(a)?parseInt(a.substr(0,6),10)%89+""===a.substr(6,2):!1},_lv:function(b){if(/^LV[0-9]{11}$/.test(b)&&(b=b.substr(2)),!/^[0-9]{11}$/.test(b))return!1;var c,d=parseInt(b.charAt(0),10),e=0,f=[],g=b.length;if(d>3){for(e=0,f=[9,1,4,8,3,10,2,5,7,6,1],c=0;g>c;c++)e+=parseInt(b.charAt(c),10)*f[c];return e%=11,3===e}var h=parseInt(b.substr(0,2),10),i=parseInt(b.substr(2,2),10),j=parseInt(b.substr(4,2),10);if(j=j+1800+100*parseInt(b.charAt(6),10),!a.fn.bootstrapValidator.helpers.date(j,i,h))return!1;for(e=0,f=[10,5,8,4,2,1,6,3,7,9],c=0;g-1>c;c++)e+=parseInt(b.charAt(c),10)*f[c];return e=(e+1)%11%10,e+""===b.charAt(g-1)},_mt:function(a){if(/^MT[0-9]{8}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{8}$/.test(a))return!1;for(var b=0,c=[3,4,6,7,8,9,10,1],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%37===0},_nl:function(a){if(/^NL[0-9]{9}B[0-9]{2}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{9}B[0-9]{2}$/.test(a))return!1;for(var b=0,c=[9,8,7,6,5,4,3,2],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%=11,b>9&&(b=0),b+""===a.substr(8,1)},_no:function(a){if(/^NO[0-9]{9}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{9}$/.test(a))return!1;for(var b=0,c=[3,2,7,6,5,4,3,2],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b=11-b%11,11===b&&(b=0),b+""===a.substr(8,1)},_pl:function(a){if(/^PL[0-9]{10}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{10}$/.test(a))return!1;for(var b=0,c=[6,5,7,2,3,4,5,6,7,-1],d=0;10>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b%11===0},_pt:function(a){if(/^PT[0-9]{9}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{9}$/.test(a))return!1;for(var b=0,c=[9,8,7,6,5,4,3,2],d=0;8>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b=11-b%11,b>9&&(b=0),b+""===a.substr(8,1)},_ro:function(a){if(/^RO[1-9][0-9]{1,9}$/.test(a)&&(a=a.substr(2)),!/^[1-9][0-9]{1,9}$/.test(a))return!1;for(var b=a.length,c=[7,5,3,2,1,7,5,3,2].slice(10-b),d=0,e=0;b-1>e;e++)d+=parseInt(a.charAt(e),10)*c[e];return d=10*d%11%10,d+""===a.substr(b-1,1)},_ru:function(a){if(/^RU([0-9]{10}|[0-9]{12})$/.test(a)&&(a=a.substr(2)),!/^([0-9]{10}|[0-9]{12})$/.test(a))return!1;var b=0;if(10===a.length){var c=0,d=[2,4,10,3,5,9,4,6,8,0];for(b=0;10>b;b++)c+=parseInt(a.charAt(b),10)*d[b];return c%=11,c>9&&(c%=10),c+""===a.substr(9,1)}if(12===a.length){var e=0,f=[7,2,4,10,3,5,9,4,6,8,0],g=0,h=[3,7,2,4,10,3,5,9,4,6,8,0];for(b=0;11>b;b++)e+=parseInt(a.charAt(b),10)*f[b],g+=parseInt(a.charAt(b),10)*h[b];return e%=11,e>9&&(e%=10),g%=11,g>9&&(g%=10),e+""===a.substr(10,1)&&g+""===a.substr(11,1)}return!1},_rs:function(a){if(/^RS[0-9]{9}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{9}$/.test(a))return!1;for(var b=10,c=0,d=0;8>d;d++)c=(parseInt(a.charAt(d),10)+b)%10,0===c&&(c=10),b=2*c%11;return(b+parseInt(a.substr(8,1),10))%10===1},_se:function(b){return/^SE[0-9]{10}01$/.test(b)&&(b=b.substr(2)),/^[0-9]{10}01$/.test(b)?(b=b.substr(0,10),a.fn.bootstrapValidator.helpers.luhn(b)):!1},_si:function(a){if(/^SI[0-9]{8}$/.test(a)&&(a=a.substr(2)),!/^[0-9]{8}$/.test(a))return!1;for(var b=0,c=[8,7,6,5,4,3,2],d=0;7>d;d++)b+=parseInt(a.charAt(d),10)*c[d];return b=11-b%11,10===b&&(b=0),b+""===a.substr(7,1)},_sk:function(a){return/^SK[1-9][0-9][(2-4)|(6-9)][0-9]{7}$/.test(a)&&(a=a.substr(2)),/^[1-9][0-9][(2-4)|(6-9)][0-9]{7}$/.test(a)?parseInt(a,10)%11===0:!1},_ve:function(a){if(/^VE[VEJPG][0-9]{9}$/.test(a)&&(a=a.substr(2)),!/^[VEJPG][0-9]{9}$/.test(a))return!1;for(var b={V:4,E:8,J:12,P:16,G:20},c=b[a.charAt(0)],d=[3,2,7,6,5,4,3,2],e=0;8>e;e++)c+=parseInt(a.charAt(e+1),10)*d[e];return c=11-c%11,(11===c||10===c)&&(c=0),c+""===a.substr(9,1)},_za:function(a){return/^ZA4[0-9]{9}$/.test(a)&&(a=a.substr(2)),/^4[0-9]{9}$/.test(a)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.vin=a.extend(a.fn.bootstrapValidator.i18n.vin||{},{"default":"Please enter a valid VIN number"}),a.fn.bootstrapValidator.validators.vin={validate:function(a,b){var c=b.val();if(""===c)return!0;if(!/^[a-hj-npr-z0-9]{8}[0-9xX][a-hj-npr-z0-9]{8}$/i.test(c))return!1;c=c.toUpperCase();for(var d={A:1,B:2,C:3,D:4,E:5,F:6,G:7,H:8,J:1,K:2,L:3,M:4,N:5,P:7,R:9,S:2,T:3,U:4,V:5,W:6,X:7,Y:8,Z:9,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,0:0},e=[8,7,6,5,4,3,2,10,0,9,8,7,6,5,4,3,2],f=0,g=c.length,h=0;g>h;h++)f+=d[c.charAt(h)+""]*e[h];var i=f%11;return 10===i&&(i="X"),i+""===c.charAt(8)}}}(window.jQuery),function(a){a.fn.bootstrapValidator.i18n.zipCode=a.extend(a.fn.bootstrapValidator.i18n.zipCode||{},{"default":"Please enter a valid postal code",countryNotSupported:"The country code %s is not supported",country:"Please enter a valid postal code in %s",countries:{AT:"Austria",BR:"Brazil",CA:"Canada",CH:"Switzerland",CZ:"Czech Republic",DE:"Germany",DK:"Denmark",FR:"France",GB:"United Kingdom",IE:"Ireland",IT:"Italy",MA:"Morocco",NL:"Netherlands",PT:"Portugal",RO:"Romania",RU:"Russia",SE:"Sweden",SG:"Singapore",SK:"Slovakia",US:"USA"}}),a.fn.bootstrapValidator.validators.zipCode={html5Attributes:{message:"message",country:"country"},COUNTRY_CODES:["AT","BR","CA","CH","CZ","DE","DK","FR","GB","IE","IT","MA","NL","PT","RO","RU","SE","SG","SK","US"],validate:function(b,c,d){var e=c.val();if(""===e||!d.country)return!0;var f=d.country;if(("string"!=typeof f||-1===a.inArray(f,this.COUNTRY_CODES))&&(f=b.getDynamicOption(c,f)),!f||-1===a.inArray(f.toUpperCase(),this.COUNTRY_CODES))return{valid:!1,message:a.fn.bootstrapValidator.helpers.format(a.fn.bootstrapValidator.i18n.zipCode.countryNotSupported,f)};var g=!1;switch(f=f.toUpperCase()){case"AT":g=/^([1-9]{1})(\d{3})$/.test(e);break;case"BR":g=/^(\d{2})([\.]?)(\d{3})([\-]?)(\d{3})$/.test(e);break;case"CA":g=/^(?:A|B|C|E|G|H|J|K|L|M|N|P|R|S|T|V|X|Y){1}[0-9]{1}(?:A|B|C|E|G|H|J|K|L|M|N|P|R|S|T|V|W|X|Y|Z){1}\s?[0-9]{1}(?:A|B|C|E|G|H|J|K|L|M|N|P|R|S|T|V|W|X|Y|Z){1}[0-9]{1}$/i.test(e);break;case"CH":g=/^([1-9]{1})(\d{3})$/.test(e);break;case"CZ":g=/^(\d{3})([ ]?)(\d{2})$/.test(e);break;case"DE":g=/^(?!01000|99999)(0[1-9]\d{3}|[1-9]\d{4})$/.test(e);break;case"DK":g=/^(DK(-|\s)?)?\d{4}$/i.test(e);break;case"FR":g=/^[0-9]{5}$/i.test(e);break;case"GB":g=this._gb(e);break;case"IE":g=/^(D6W|[ACDEFHKNPRTVWXY]\d{2})\s[0-9ACDEFHKNPRTVWXY]{4}$/.test(e);break;case"IT":g=/^(I-|IT-)?\d{5}$/i.test(e);break;case"MA":g=/^[1-9][0-9]{4}$/i.test(e);break;case"NL":g=/^[1-9][0-9]{3} ?(?!sa|sd|ss)[a-z]{2}$/i.test(e);break;case"PT":g=/^[1-9]\d{3}-\d{3}$/.test(e);break;case"RO":g=/^(0[1-8]{1}|[1-9]{1}[0-5]{1})?[0-9]{4}$/i.test(e);break;case"RU":g=/^[0-9]{6}$/i.test(e);break;case"SE":g=/^(S-)?\d{3}\s?\d{2}$/i.test(e);break;case"SG":g=/^([0][1-9]|[1-6][0-9]|[7]([0-3]|[5-9])|[8][0-2])(\d{4})$/i.test(e);break;case"SK":g=/^(\d{3})([ ]?)(\d{2})$/.test(e);break;case"US":default:g=/^\d{4,5}([\-]?\d{4})?$/.test(e)}return{valid:g,message:a.fn.bootstrapValidator.helpers.format(d.message||a.fn.bootstrapValidator.i18n.zipCode.country,a.fn.bootstrapValidator.i18n.zipCode.countries[f])}},_gb:function(a){for(var b="[ABCDEFGHIJKLMNOPRSTUWYZ]",c="[ABCDEFGHKLMNOPQRSTUVWXY]",d="[ABCDEFGHJKPMNRSTUVWXY]",e="[ABEHMNPRVWXY]",f="[ABDEFGHJLNPQRSTUWXYZ]",g=[new RegExp("^("+b+"{1}"+c+"?[0-9]{1,2})(\\s*)([0-9]{1}"+f+"{2})$","i"),new RegExp("^("+b+"{1}[0-9]{1}"+d+"{1})(\\s*)([0-9]{1}"+f+"{2})$","i"),new RegExp("^("+b+"{1}"+c+"{1}?[0-9]{1}"+e+"{1})(\\s*)([0-9]{1}"+f+"{2})$","i"),new RegExp("^(BF1)(\\s*)([0-6]{1}[ABDEFGHJLNPQRST]{1}[ABDEFGHJLNPQRSTUWZYZ]{1})$","i"),/^(GIR)(\s*)(0AA)$/i,/^(BFPO)(\s*)([0-9]{1,4})$/i,/^(BFPO)(\s*)(c\/o\s*[0-9]{1,3})$/i,/^([A-Z]{4})(\s*)(1ZZ)$/i,/^(AI-2640)$/i],h=0;h<g.length;h++)if(g[h].test(a))return!0;return!1}}}(window.jQuery),function($,document){$(window).on("load",function(){window.location.hash&&$(window.location.hash).hasClass("tab-pane")&&(window.scrollTo(0,0),setTimeout(function(){window.scrollTo(0,0)},1))}),$(document).ready(function(){var href_hash=window.location.hash;0==$("#rightcolumn").length&&($("#midcolumn").attr("class","no-right-sidebar"),href_hash&&(window.location.hash=href_hash)),0==$("#leftcol").length&&($("#midcolumn").attr("class","no-left-nav"),href_hash&&(window.location.hash=href_hash)),$("#showalltabs").click(function(){$(".tabs li").each(function(i,t){$(this).removeClass("active")}),$(".tab-pane").each(function(i,t){$(this).addClass("active")})}),href_hash&&$('ul.nav a[href="'+href_hash+'"]').tab("show")}),$(document).on("click",".yamm .dropdown-menu",function(e){e.stopPropagation()}),$(window).on("load resize scroll",function(){return $(window).width()<1270?($(".scrollup").hide(),!1):void($(this).scrollTop()>100?$(".scrollup").fadeIn():$(".scrollup").fadeOut())}),$(".scrollup").click(function(){return $("html, body").animate({scrollTop:0},600),!1}),$(".nav-tabs a").click(function(e){$(this).tab("show"),history.pushState({},"",this.href),$(".alert:not(.stay-visible)").remove()}),$("a[data-tab-destination]").on("click",function(){var tab=$(this).attr("data-tab-destination");$("#"+tab).click()}),$(".solstice-collapse").click(function(){$(this).find("i").toggleClass("fa-chevron-down fa-chevron-up")})}(jQuery,document),function($,document){$(document).ready(function(){function disablePaymentRadio(){var payment_type=$("input[name=type]:radio:checked").val();"paypal"===payment_type?$("input[name=subscription]").attr("disabled",!1):($("#subscription_default").prop("checked",!0),$("input[name=subscription]").attr("disabled",!0))}$("input.recognition-checkbox").is(":checked")&&$(".recognition-fields").slideDown(300),$("input.recognition-checkbox").click(function(){1==$(this).prop("checked")?$(".recognition-fields").slideDown(300):0==$(this).prop("checked")&&$(".recognition-fields").slideUp(300)}),$(".btn-square").click(function(){$(".btn-square, .amount-body, .highlight-amount-body").removeClass("active"),$(this).addClass("active"),$("input[name=amount]").val($(this).val())}),$("input[name=amount]").click(function(){$("input[name=amount]").bind("keyup change",function(e){$(".btn-square").removeClass("active")})}),disablePaymentRadio(),$("input[name=type]:radio").change(function(e){disablePaymentRadio()}),$(".btn-donate-close").click(function(){var cookie_name=eclipse_org_common.settings.cookies_class.name,cookie=jQuery.parseJSON(unescape(solsticeFetchCookie(cookie_name))),path="/";
-cookie.donation_banner.value.visible=0,cookie=JSON.stringify(cookie),solsticeCreateCookie(cookie_name,cookie,path),$(".donate-ad").slideUp(300)})})}(jQuery,document);
\ No newline at end of file
+function solsticeCreateCookie(e,t,n){document.cookie=e+"="+escape(t)+"; path="+n+";"}function solsticeFetchCookie(e){for(var t="",n="",i=e+"=",o=document.cookie.split(";"),r=o.length,a=0;a<r;a++)if(n=o[a].trim(),0==n.indexOf(i)){t=n.substring(i.length,n.length);break}return t}if(function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){"use strict";function n(e,t,n){var i,o=(t=t||ae).createElement("script");if(o.text=e,n)for(i in be)n[i]&&(o[i]=n[i]);t.head.appendChild(o).parentNode.removeChild(o)}function i(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?he[fe.call(e)]||"object":typeof e}function o(e){var t=!!e&&"length"in e&&e.length,n=i(e);return!me(e)&&!xe(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}function r(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}function a(e,t,n){return me(t)?we.grep(e,function(e,i){return!!t.call(e,i,e)!==n}):t.nodeType?we.grep(e,function(e){return e===t!==n}):"string"!=typeof t?we.grep(e,function(e){return pe.call(t,e)>-1!==n}):we.filter(t,e,n)}function s(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}function l(e){var t={};return we.each(e.match(De)||[],function(e,n){t[n]=!0}),t}function c(e){return e}function u(e){throw e}function p(e,t,n,i){var o;try{e&&me(o=e.promise)?o.call(e).done(t).fail(n):e&&me(o=e.then)?o.call(e,t,n):t.apply(void 0,[e].slice(i))}catch(e){n.apply(void 0,[e])}}function h(){ae.removeEventListener("DOMContentLoaded",h),e.removeEventListener("load",h),we.ready()}function f(e,t){return t.toUpperCase()}function d(e){return e.replace(He,"ms-").replace(Pe,f)}function y(){this.expando=we.expando+y.uid++}function v(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:ze.test(e)?JSON.parse(e):e)}function g(e,t,n){var i;if(void 0===n&&1===e.nodeType)if(i="data-"+t.replace(Be,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(i))){try{n=v(n)}catch(e){}qe.set(e,t,n)}else n=void 0;return n}function m(e,t,n,i){var o,r,a=20,s=i?function(){return i.cur()}:function(){return we.css(e,t,"")},l=s(),c=n&&n[3]||(we.cssNumber[t]?"":"px"),u=(we.cssNumber[t]||"px"!==c&&+l)&&Fe.exec(we.css(e,t));if(u&&u[3]!==c){for(l/=2,c=c||u[3],u=+l||1;a--;)we.style(e,t,u+c),(1-r)*(1-(r=s()/l||.5))<=0&&(a=0),u/=r;u*=2,we.style(e,t,u+c),n=n||[]}return n&&(u=+u||+l||0,o=n[1]?u+(n[1]+1)*n[2]:+n[2],i&&(i.unit=c,i.start=u,i.end=o)),o}function x(e){var t,n=e.ownerDocument,i=e.nodeName,o=Qe[i];return o||(t=n.body.appendChild(n.createElement(i)),o=we.css(t,"display"),t.parentNode.removeChild(t),"none"===o&&(o="block"),Qe[i]=o,o)}function b(e,t){for(var n,i,o=[],r=0,a=e.length;r<a;r++)(i=e[r]).style&&(n=i.style.display,t?("none"===n&&(o[r]=Re.get(i,"display")||null,o[r]||(i.style.display="")),""===i.style.display&&Ue(i)&&(o[r]=x(i))):"none"!==n&&(o[r]="none",Re.set(i,"display",n)));for(r=0;r<a;r++)null!=o[r]&&(e[r].style.display=o[r]);return e}function w(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&r(e,t)?we.merge([e],n):n}function k(e,t){for(var n=0,i=e.length;n<i;n++)Re.set(e[n],"globalEval",!t||Re.get(t[n],"globalEval"))}function T(e,t,n,o,r){for(var a,s,l,c,u,p,h=t.createDocumentFragment(),f=[],d=0,y=e.length;d<y;d++)if((a=e[d])||0===a)if("object"===i(a))we.merge(f,a.nodeType?[a]:a);else if(Ze.test(a)){for(s=s||h.appendChild(t.createElement("div")),l=(Je.exec(a)||["",""])[1].toLowerCase(),c=Ye[l]||Ye._default,s.innerHTML=c[1]+we.htmlPrefilter(a)+c[2],p=c[0];p--;)s=s.lastChild;we.merge(f,s.childNodes),(s=h.firstChild).textContent=""}else f.push(t.createTextNode(a));for(h.textContent="",d=0;a=f[d++];)if(o&&we.inArray(a,o)>-1)r&&r.push(a);else if(u=we.contains(a.ownerDocument,a),s=w(h.appendChild(a),"script"),u&&k(s),n)for(p=0;a=s[p++];)Ke.test(a.type||"")&&n.push(a);return h}function C(){return!0}function S(){return!1}function E(){try{return ae.activeElement}catch(e){}}function A(e,t,n,i,o,r){var a,s;if("object"==typeof t){"string"!=typeof n&&(i=i||n,n=void 0);for(s in t)A(e,s,n,i,t[s],r);return e}if(null==i&&null==o?(o=n,i=n=void 0):null==o&&("string"==typeof n?(o=i,i=void 0):(o=i,i=n,n=void 0)),!1===o)o=S;else if(!o)return e;return 1===r&&(a=o,(o=function(e){return we().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=we.guid++)),e.each(function(){we.event.add(this,t,o,i,n)})}function M(e,t){return r(e,"table")&&r(11!==t.nodeType?t:t.firstChild,"tr")?we(e).children("tbody")[0]||e:e}function O(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function j(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function N(e,t){var n,i,o,r,a,s,l,c;if(1===t.nodeType){if(Re.hasData(e)&&(r=Re.access(e),a=Re.set(t,r),c=r.events)){delete a.handle,a.events={};for(o in c)for(n=0,i=c[o].length;n<i;n++)we.event.add(t,o,c[o][n])}qe.hasData(e)&&(s=qe.access(e),l=we.extend({},s),qe.set(t,l))}}function D(e,t){var n=t.nodeName.toLowerCase();"input"===n&&Ge.test(e.type)?t.checked=e.checked:"input"!==n&&"textarea"!==n||(t.defaultValue=e.defaultValue)}function $(e,t,i,o){t=ce.apply([],t);var r,a,s,l,c,u,p=0,h=e.length,f=h-1,d=t[0],y=me(d);if(y||h>1&&"string"==typeof d&&!ge.checkClone&&at.test(d))return e.each(function(n){var r=e.eq(n);y&&(t[0]=d.call(this,n,r.html())),$(r,t,i,o)});if(h&&(r=T(t,e[0].ownerDocument,!1,e,o),a=r.firstChild,1===r.childNodes.length&&(r=a),a||o)){for(l=(s=we.map(w(r,"script"),O)).length;p<h;p++)c=r,p!==f&&(c=we.clone(c,!0,!0),l&&we.merge(s,w(c,"script"))),i.call(e[p],c,p);if(l)for(u=s[s.length-1].ownerDocument,we.map(s,j),p=0;p<l;p++)c=s[p],Ke.test(c.type||"")&&!Re.access(c,"globalEval")&&we.contains(u,c)&&(c.src&&"module"!==(c.type||"").toLowerCase()?we._evalUrl&&we._evalUrl(c.src):n(c.textContent.replace(st,""),u,c))}return e}function L(e,t,n){for(var i,o=t?we.filter(t,e):e,r=0;null!=(i=o[r]);r++)n||1!==i.nodeType||we.cleanData(w(i)),i.parentNode&&(n&&we.contains(i.ownerDocument,i)&&k(w(i,"script")),i.parentNode.removeChild(i));return e}function _(e,t,n){var i,o,r,a,s=e.style;return(n=n||ct(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||we.contains(e.ownerDocument,e)||(a=we.style(e,t)),!ge.pixelBoxStyles()&&lt.test(a)&&ut.test(t)&&(i=s.width,o=s.minWidth,r=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=i,s.minWidth=o,s.maxWidth=r)),void 0!==a?a+"":a}function H(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}function P(e){if(e in vt)return e;for(var t=e[0].toUpperCase()+e.slice(1),n=yt.length;n--;)if((e=yt[n]+t)in vt)return e}function I(e){var t=we.cssProps[e];return t||(t=we.cssProps[e]=P(e)||e),t}function R(e,t,n){var i=Fe.exec(t);return i?Math.max(0,i[2]-(n||0))+(i[3]||"px"):t}function q(e,t,n,i,o,r){var a="width"===t?1:0,s=0,l=0;if(n===(i?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(l+=we.css(e,n+We[a],!0,o)),i?("content"===n&&(l-=we.css(e,"padding"+We[a],!0,o)),"margin"!==n&&(l-=we.css(e,"border"+We[a]+"Width",!0,o))):(l+=we.css(e,"padding"+We[a],!0,o),"padding"!==n?l+=we.css(e,"border"+We[a]+"Width",!0,o):s+=we.css(e,"border"+We[a]+"Width",!0,o));return!i&&r>=0&&(l+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-r-l-s-.5))),l}function z(e,t,n){var i=ct(e),o=_(e,t,i),r="border-box"===we.css(e,"boxSizing",!1,i),a=r;if(lt.test(o)){if(!n)return o;o="auto"}return a=a&&(ge.boxSizingReliable()||o===e.style[t]),("auto"===o||!parseFloat(o)&&"inline"===we.css(e,"display",!1,i))&&(o=e["offset"+t[0].toUpperCase()+t.slice(1)],a=!0),(o=parseFloat(o)||0)+q(e,t,n||(r?"border":"content"),a,i,o)+"px"}function B(e,t,n,i,o){return new B.prototype.init(e,t,n,i,o)}function V(){mt&&(!1===ae.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(V):e.setTimeout(V,we.fx.interval),we.fx.tick())}function F(){return e.setTimeout(function(){gt=void 0}),gt=Date.now()}function W(e,t){var n,i=0,o={height:e};for(t=t?1:0;i<4;i+=2-t)o["margin"+(n=We[i])]=o["padding"+n]=e;return t&&(o.opacity=o.width=e),o}function U(e,t,n){for(var i,o=(G.tweeners[t]||[]).concat(G.tweeners["*"]),r=0,a=o.length;r<a;r++)if(i=o[r].call(n,t,e))return i}function X(e,t,n){var i,o,r,a,s,l,c,u,p="width"in t||"height"in t,h=this,f={},d=e.style,y=e.nodeType&&Ue(e),v=Re.get(e,"fxshow");n.queue||(null==(a=we._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,h.always(function(){h.always(function(){a.unqueued--,we.queue(e,"fx").length||a.empty.fire()})}));for(i in t)if(o=t[i],xt.test(o)){if(delete t[i],r=r||"toggle"===o,o===(y?"hide":"show")){if("show"!==o||!v||void 0===v[i])continue;y=!0}f[i]=v&&v[i]||we.style(e,i)}if((l=!we.isEmptyObject(t))||!we.isEmptyObject(f)){p&&1===e.nodeType&&(n.overflow=[d.overflow,d.overflowX,d.overflowY],null==(c=v&&v.display)&&(c=Re.get(e,"display")),"none"===(u=we.css(e,"display"))&&(c?u=c:(b([e],!0),c=e.style.display||c,u=we.css(e,"display"),b([e]))),("inline"===u||"inline-block"===u&&null!=c)&&"none"===we.css(e,"float")&&(l||(h.done(function(){d.display=c}),null==c&&(u=d.display,c="none"===u?"":u)),d.display="inline-block")),n.overflow&&(d.overflow="hidden",h.always(function(){d.overflow=n.overflow[0],d.overflowX=n.overflow[1],d.overflowY=n.overflow[2]})),l=!1;for(i in f)l||(v?"hidden"in v&&(y=v.hidden):v=Re.access(e,"fxshow",{display:c}),r&&(v.hidden=!y),y&&b([e],!0),h.done(function(){y||b([e]),Re.remove(e,"fxshow");for(i in f)we.style(e,i,f[i])})),l=U(y?v[i]:0,i,h),i in v||(v[i]=l.start,y&&(l.end=l.start,l.start=0))}}function Q(e,t){var n,i,o,r,a;for(n in e)if(i=d(n),o=t[i],r=e[n],Array.isArray(r)&&(o=r[1],r=e[n]=r[0]),n!==i&&(e[i]=r,delete e[n]),(a=we.cssHooks[i])&&"expand"in a){r=a.expand(r),delete e[i];for(n in r)n in e||(e[n]=r[n],t[n]=o)}else t[i]=o}function G(e,t,n){var i,o,r=0,a=G.prefilters.length,s=we.Deferred().always(function(){delete l.elem}),l=function(){if(o)return!1;for(var t=gt||F(),n=Math.max(0,c.startTime+c.duration-t),i=1-(n/c.duration||0),r=0,a=c.tweens.length;r<a;r++)c.tweens[r].run(i);return s.notifyWith(e,[c,i,n]),i<1&&a?n:(a||s.notifyWith(e,[c,1,0]),s.resolveWith(e,[c]),!1)},c=s.promise({elem:e,props:we.extend({},t),opts:we.extend(!0,{specialEasing:{},easing:we.easing._default},n),originalProperties:t,originalOptions:n,startTime:gt||F(),duration:n.duration,tweens:[],createTween:function(t,n){var i=we.Tween(e,c.opts,t,n,c.opts.specialEasing[t]||c.opts.easing);return c.tweens.push(i),i},stop:function(t){var n=0,i=t?c.tweens.length:0;if(o)return this;for(o=!0;n<i;n++)c.tweens[n].run(1);return t?(s.notifyWith(e,[c,1,0]),s.resolveWith(e,[c,t])):s.rejectWith(e,[c,t]),this}}),u=c.props;for(Q(u,c.opts.specialEasing);r<a;r++)if(i=G.prefilters[r].call(c,e,u,c.opts))return me(i.stop)&&(we._queueHooks(c.elem,c.opts.queue).stop=i.stop.bind(i)),i;return we.map(u,U,c),me(c.opts.start)&&c.opts.start.call(e,c),c.progress(c.opts.progress).done(c.opts.done,c.opts.complete).fail(c.opts.fail).always(c.opts.always),we.fx.timer(we.extend(l,{elem:e,anim:c,queue:c.opts.queue})),c}function J(e){return(e.match(De)||[]).join(" ")}function K(e){return e.getAttribute&&e.getAttribute("class")||""}function Y(e){return Array.isArray(e)?e:"string"==typeof e?e.match(De)||[]:[]}function Z(e,t,n,o){var r;if(Array.isArray(t))we.each(t,function(t,i){n||Nt.test(e)?o(e,i):Z(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,o)});else if(n||"object"!==i(t))o(e,t);else for(r in t)Z(e+"["+r+"]",t[r],n,o)}function ee(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var i,o=0,r=t.toLowerCase().match(De)||[];if(me(n))for(;i=r[o++];)"+"===i[0]?(i=i.slice(1)||"*",(e[i]=e[i]||[]).unshift(n)):(e[i]=e[i]||[]).push(n)}}function te(e,t,n,i){function o(s){var l;return r[s]=!0,we.each(e[s]||[],function(e,s){var c=s(t,n,i);return"string"!=typeof c||a||r[c]?a?!(l=c):void 0:(t.dataTypes.unshift(c),o(c),!1)}),l}var r={},a=e===Vt;return o(t.dataTypes[0])||!r["*"]&&o("*")}function ne(e,t){var n,i,o=we.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((o[n]?e:i||(i={}))[n]=t[n]);return i&&we.extend(!0,e,i),e}function ie(e,t,n){for(var i,o,r,a,s=e.contents,l=e.dataTypes;"*"===l[0];)l.shift(),void 0===i&&(i=e.mimeType||t.getResponseHeader("Content-Type"));if(i)for(o in s)if(s[o]&&s[o].test(i)){l.unshift(o);break}if(l[0]in n)r=l[0];else{for(o in n){if(!l[0]||e.converters[o+" "+l[0]]){r=o;break}a||(a=o)}r=r||a}if(r)return r!==l[0]&&l.unshift(r),n[r]}function oe(e,t,n,i){var o,r,a,s,l,c={},u=e.dataTypes.slice();if(u[1])for(a in e.converters)c[a.toLowerCase()]=e.converters[a];for(r=u.shift();r;)if(e.responseFields[r]&&(n[e.responseFields[r]]=t),!l&&i&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=r,r=u.shift())if("*"===r)r=l;else if("*"!==l&&l!==r){if(!(a=c[l+" "+r]||c["* "+r]))for(o in c)if((s=o.split(" "))[1]===r&&(a=c[l+" "+s[0]]||c["* "+s[0]])){!0===a?a=c[o]:!0!==c[o]&&(r=s[0],u.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+l+" to "+r}}}return{state:"success",data:t}}var re=[],ae=e.document,se=Object.getPrototypeOf,le=re.slice,ce=re.concat,ue=re.push,pe=re.indexOf,he={},fe=he.toString,de=he.hasOwnProperty,ye=de.toString,ve=ye.call(Object),ge={},me=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},xe=function(e){return null!=e&&e===e.window},be={type:!0,src:!0,noModule:!0},we=function(e,t){return new we.fn.init(e,t)},ke=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;we.fn=we.prototype={jquery:"3.3.1",constructor:we,length:0,toArray:function(){return le.call(this)},get:function(e){return null==e?le.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=we.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return we.each(this,e)},map:function(e){return this.pushStack(we.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(le.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:ue,sort:re.sort,splice:re.splice},we.extend=we.fn.extend=function(){var e,t,n,i,o,r,a=arguments[0]||{},s=1,l=arguments.length,c=!1;for("boolean"==typeof a&&(c=a,a=arguments[s]||{},s++),"object"==typeof a||me(a)||(a={}),s===l&&(a=this,s--);s<l;s++)if(null!=(e=arguments[s]))for(t in e)n=a[t],a!==(i=e[t])&&(c&&i&&(we.isPlainObject(i)||(o=Array.isArray(i)))?(o?(o=!1,r=n&&Array.isArray(n)?n:[]):r=n&&we.isPlainObject(n)?n:{},a[t]=we.extend(c,r,i)):void 0!==i&&(a[t]=i));return a},we.extend({expando:"jQuery"+("3.3.1"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==fe.call(e)||(t=se(e))&&("function"!=typeof(n=de.call(t,"constructor")&&t.constructor)||ye.call(n)!==ve))},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e){n(e)},each:function(e,t){var n,i=0;if(o(e))for(n=e.length;i<n&&!1!==t.call(e[i],i,e[i]);i++);else for(i in e)if(!1===t.call(e[i],i,e[i]))break;return e},trim:function(e){return null==e?"":(e+"").replace(ke,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(o(Object(e))?we.merge(n,"string"==typeof e?[e]:e):ue.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:pe.call(t,e,n)},merge:function(e,t){for(var n=+t.length,i=0,o=e.length;i<n;i++)e[o++]=t[i];return e.length=o,e},grep:function(e,t,n){for(var i=[],o=0,r=e.length,a=!n;o<r;o++)!t(e[o],o)!==a&&i.push(e[o]);return i},map:function(e,t,n){var i,r,a=0,s=[];if(o(e))for(i=e.length;a<i;a++)null!=(r=t(e[a],a,n))&&s.push(r);else for(a in e)null!=(r=t(e[a],a,n))&&s.push(r);return ce.apply([],s)},guid:1,support:ge}),"function"==typeof Symbol&&(we.fn[Symbol.iterator]=re[Symbol.iterator]),we.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){he["[object "+t+"]"]=t.toLowerCase()});var Te=function(e){function t(e,t,n,i){var o,r,a,s,l,u,h,f=t&&t.ownerDocument,d=t?t.nodeType:9;if(n=n||[],"string"!=typeof e||!e||1!==d&&9!==d&&11!==d)return n;if(!i&&((t?t.ownerDocument||t:R)!==N&&j(t),t=t||N,$)){if(11!==d&&(l=ye.exec(e)))if(o=l[1]){if(9===d){if(!(a=t.getElementById(o)))return n;if(a.id===o)return n.push(a),n}else if(f&&(a=f.getElementById(o))&&P(t,a)&&a.id===o)return n.push(a),n}else{if(l[2])return J.apply(n,t.getElementsByTagName(e)),n;if((o=l[3])&&b.getElementsByClassName&&t.getElementsByClassName)return J.apply(n,t.getElementsByClassName(o)),n}if(b.qsa&&!F[e+" "]&&(!L||!L.test(e))){if(1!==d)f=t,h=e;else if("object"!==t.nodeName.toLowerCase()){for((s=t.getAttribute("id"))?s=s.replace(xe,be):t.setAttribute("id",s=I),r=(u=C(e)).length;r--;)u[r]="#"+s+" "+p(u[r]);h=u.join(","),f=ve.test(e)&&c(t.parentNode)||t}if(h)try{return J.apply(n,f.querySelectorAll(h)),n}catch(e){}finally{s===I&&t.removeAttribute("id")}}}return E(e.replace(re,"$1"),t,n,i)}function n(){function e(n,i){return t.push(n+" ")>w.cacheLength&&delete e[t.shift()],e[n+" "]=i}var t=[];return e}function i(e){return e[I]=!0,e}function o(e){var t=N.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function r(e,t){for(var n=e.split("|"),i=n.length;i--;)w.attrHandle[n[i]]=t}function a(e,t){var n=t&&e,i=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(i)return i;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function s(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ke(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function l(e){return i(function(t){return t=+t,i(function(n,i){for(var o,r=e([],n.length,t),a=r.length;a--;)n[o=r[a]]&&(n[o]=!(i[o]=n[o]))})})}function c(e){return e&&void 0!==e.getElementsByTagName&&e}function u(){}function p(e){for(var t=0,n=e.length,i="";t<n;t++)i+=e[t].value;return i}function h(e,t,n){var i=t.dir,o=t.next,r=o||i,a=n&&"parentNode"===r,s=z++;return t.first?function(t,n,o){for(;t=t[i];)if(1===t.nodeType||a)return e(t,n,o);return!1}:function(t,n,l){var c,u,p,h=[q,s];if(l){for(;t=t[i];)if((1===t.nodeType||a)&&e(t,n,l))return!0}else for(;t=t[i];)if(1===t.nodeType||a)if(p=t[I]||(t[I]={}),u=p[t.uniqueID]||(p[t.uniqueID]={}),o&&o===t.nodeName.toLowerCase())t=t[i]||t;else{if((c=u[r])&&c[0]===q&&c[1]===s)return h[2]=c[2];if(u[r]=h,h[2]=e(t,n,l))return!0}return!1}}function f(e){return e.length>1?function(t,n,i){for(var o=e.length;o--;)if(!e[o](t,n,i))return!1;return!0}:e[0]}function d(e,n,i){for(var o=0,r=n.length;o<r;o++)t(e,n[o],i);return i}function y(e,t,n,i,o){for(var r,a=[],s=0,l=e.length,c=null!=t;s<l;s++)(r=e[s])&&(n&&!n(r,i,o)||(a.push(r),c&&t.push(s)));return a}function v(e,t,n,o,r,a){return o&&!o[I]&&(o=v(o)),r&&!r[I]&&(r=v(r,a)),i(function(i,a,s,l){var c,u,p,h=[],f=[],v=a.length,g=i||d(t||"*",s.nodeType?[s]:s,[]),m=!e||!i&&t?g:y(g,h,e,s,l),x=n?r||(i?e:v||o)?[]:a:m;if(n&&n(m,x,s,l),o)for(c=y(x,f),o(c,[],s,l),u=c.length;u--;)(p=c[u])&&(x[f[u]]=!(m[f[u]]=p));if(i){if(r||e){if(r){for(c=[],u=x.length;u--;)(p=x[u])&&c.push(m[u]=p);r(null,x=[],c,l)}for(u=x.length;u--;)(p=x[u])&&(c=r?Y(i,p):h[u])>-1&&(i[c]=!(a[c]=p))}}else x=y(x===a?x.splice(v,x.length):x),r?r(null,a,x,l):J.apply(a,x)})}function g(e){for(var t,n,i,o=e.length,r=w.relative[e[0].type],a=r||w.relative[" "],s=r?1:0,l=h(function(e){return e===t},a,!0),c=h(function(e){return Y(t,e)>-1},a,!0),u=[function(e,n,i){var o=!r&&(i||n!==A)||((t=n).nodeType?l(e,n,i):c(e,n,i));return t=null,o}];s<o;s++)if(n=w.relative[e[s].type])u=[h(f(u),n)];else{if((n=w.filter[e[s].type].apply(null,e[s].matches))[I]){for(i=++s;i<o&&!w.relative[e[i].type];i++);return v(s>1&&f(u),s>1&&p(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(re,"$1"),n,s<i&&g(e.slice(s,i)),i<o&&g(e=e.slice(i)),i<o&&p(e))}u.push(n)}return f(u)}function m(e,n){var o=n.length>0,r=e.length>0,a=function(i,a,s,l,c){var u,p,h,f=0,d="0",v=i&&[],g=[],m=A,x=i||r&&w.find.TAG("*",c),b=q+=null==m?1:Math.random()||.1,k=x.length;for(c&&(A=a===N||a||c);d!==k&&null!=(u=x[d]);d++){if(r&&u){for(p=0,a||u.ownerDocument===N||(j(u),s=!$);h=e[p++];)if(h(u,a||N,s)){l.push(u);break}c&&(q=b)}o&&((u=!h&&u)&&f--,i&&v.push(u))}if(f+=d,o&&d!==f){for(p=0;h=n[p++];)h(v,g,a,s);if(i){if(f>0)for(;d--;)v[d]||g[d]||(g[d]=Q.call(l));g=y(g)}J.apply(l,g),c&&!i&&g.length>0&&f+n.length>1&&t.uniqueSort(l)}return c&&(q=b,A=m),v};return o?i(a):a}var x,b,w,k,T,C,S,E,A,M,O,j,N,D,$,L,_,H,P,I="sizzle"+1*new Date,R=e.document,q=0,z=0,B=n(),V=n(),F=n(),W=function(e,t){return e===t&&(O=!0),0},U={}.hasOwnProperty,X=[],Q=X.pop,G=X.push,J=X.push,K=X.slice,Y=function(e,t){for(var n=0,i=e.length;n<i;n++)if(e[n]===t)return n;return-1},Z="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",ee="[\\x20\\t\\r\\n\\f]",te="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",ne="\\["+ee+"*("+te+")(?:"+ee+"*([*^$|!~]?=)"+ee+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+te+"))|)"+ee+"*\\]",ie=":("+te+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+ne+")*)|.*)\\)|)",oe=new RegExp(ee+"+","g"),re=new RegExp("^"+ee+"+|((?:^|[^\\\\])(?:\\\\.)*)"+ee+"+$","g"),ae=new RegExp("^"+ee+"*,"+ee+"*"),se=new RegExp("^"+ee+"*([>+~]|"+ee+")"+ee+"*"),le=new RegExp("="+ee+"*([^\\]'\"]*?)"+ee+"*\\]","g"),ce=new RegExp(ie),ue=new RegExp("^"+te+"$"),pe={ID:new RegExp("^#("+te+")"),CLASS:new RegExp("^\\.("+te+")"),TAG:new RegExp("^("+te+"|[*])"),ATTR:new RegExp("^"+ne),PSEUDO:new RegExp("^"+ie),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ee+"*(even|odd|(([+-]|)(\\d*)n|)"+ee+"*(?:([+-]|)"+ee+"*(\\d+)|))"+ee+"*\\)|)","i"),bool:new RegExp("^(?:"+Z+")$","i"),needsContext:new RegExp("^"+ee+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ee+"*((?:-\\d)?\\d*)"+ee+"*\\)|)(?=[^-]|$)","i")},he=/^(?:input|select|textarea|button)$/i,fe=/^h\d$/i,de=/^[^{]+\{\s*\[native \w/,ye=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ve=/[+~]/,ge=new RegExp("\\\\([\\da-f]{1,6}"+ee+"?|("+ee+")|.)","ig"),me=function(e,t,n){var i="0x"+t-65536;return i!==i||n?t:i<0?String.fromCharCode(i+65536):String.fromCharCode(i>>10|55296,1023&i|56320)},xe=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,be=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},we=function(){j()},ke=h(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{J.apply(X=K.call(R.childNodes),R.childNodes),X[R.childNodes.length].nodeType}catch(e){J={apply:X.length?function(e,t){G.apply(e,K.call(t))}:function(e,t){for(var n=e.length,i=0;e[n++]=t[i++];);e.length=n-1}}}b=t.support={},T=t.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},j=t.setDocument=function(e){var t,n,i=e?e.ownerDocument||e:R;return i!==N&&9===i.nodeType&&i.documentElement?(N=i,D=N.documentElement,$=!T(N),R!==N&&(n=N.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",we,!1):n.attachEvent&&n.attachEvent("onunload",we)),b.attributes=o(function(e){return e.className="i",!e.getAttribute("className")}),b.getElementsByTagName=o(function(e){return e.appendChild(N.createComment("")),!e.getElementsByTagName("*").length}),b.getElementsByClassName=de.test(N.getElementsByClassName),b.getById=o(function(e){return D.appendChild(e).id=I,!N.getElementsByName||!N.getElementsByName(I).length}),b.getById?(w.filter.ID=function(e){var t=e.replace(ge,me);return function(e){return e.getAttribute("id")===t}},w.find.ID=function(e,t){if(void 0!==t.getElementById&&$){var n=t.getElementById(e);return n?[n]:[]}}):(w.filter.ID=function(e){var t=e.replace(ge,me);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},w.find.ID=function(e,t){if(void 0!==t.getElementById&&$){var n,i,o,r=t.getElementById(e);if(r){if((n=r.getAttributeNode("id"))&&n.value===e)return[r];for(o=t.getElementsByName(e),i=0;r=o[i++];)if((n=r.getAttributeNode("id"))&&n.value===e)return[r]}return[]}}),w.find.TAG=b.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):b.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,i=[],o=0,r=t.getElementsByTagName(e);if("*"===e){for(;n=r[o++];)1===n.nodeType&&i.push(n);return i}return r},w.find.CLASS=b.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&$)return t.getElementsByClassName(e)},_=[],L=[],(b.qsa=de.test(N.querySelectorAll))&&(o(function(e){D.appendChild(e).innerHTML="<a id='"+I+"'></a><select id='"+I+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&L.push("[*^$]="+ee+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||L.push("\\["+ee+"*(?:value|"+Z+")"),e.querySelectorAll("[id~="+I+"-]").length||L.push("~="),e.querySelectorAll(":checked").length||L.push(":checked"),e.querySelectorAll("a#"+I+"+*").length||L.push(".#.+[+~]")}),o(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=N.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&L.push("name"+ee+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&L.push(":enabled",":disabled"),D.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&L.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),L.push(",.*:")})),(b.matchesSelector=de.test(H=D.matches||D.webkitMatchesSelector||D.mozMatchesSelector||D.oMatchesSelector||D.msMatchesSelector))&&o(function(e){b.disconnectedMatch=H.call(e,"*"),H.call(e,"[s!='']:x"),_.push("!=",ie)}),L=L.length&&new RegExp(L.join("|")),_=_.length&&new RegExp(_.join("|")),t=de.test(D.compareDocumentPosition),P=t||de.test(D.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,i=t&&t.parentNode;return e===i||!(!i||1!==i.nodeType||!(n.contains?n.contains(i):e.compareDocumentPosition&&16&e.compareDocumentPosition(i)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},W=t?function(e,t){if(e===t)return O=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!b.sortDetached&&t.compareDocumentPosition(e)===n?e===N||e.ownerDocument===R&&P(R,e)?-1:t===N||t.ownerDocument===R&&P(R,t)?1:M?Y(M,e)-Y(M,t):0:4&n?-1:1)}:function(e,t){if(e===t)return O=!0,0;var n,i=0,o=e.parentNode,r=t.parentNode,s=[e],l=[t];if(!o||!r)return e===N?-1:t===N?1:o?-1:r?1:M?Y(M,e)-Y(M,t):0;if(o===r)return a(e,t);for(n=e;n=n.parentNode;)s.unshift(n);for(n=t;n=n.parentNode;)l.unshift(n);for(;s[i]===l[i];)i++;return i?a(s[i],l[i]):s[i]===R?-1:l[i]===R?1:0},N):N},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if((e.ownerDocument||e)!==N&&j(e),n=n.replace(le,"='$1']"),b.matchesSelector&&$&&!F[n+" "]&&(!_||!_.test(n))&&(!L||!L.test(n)))try{var i=H.call(e,n);if(i||b.disconnectedMatch||e.document&&11!==e.document.nodeType)return i}catch(e){}return t(n,N,null,[e]).length>0},t.contains=function(e,t){return(e.ownerDocument||e)!==N&&j(e),P(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!==N&&j(e);var n=w.attrHandle[t.toLowerCase()],i=n&&U.call(w.attrHandle,t.toLowerCase())?n(e,t,!$):void 0;return void 0!==i?i:b.attributes||!$?e.getAttribute(t):(i=e.getAttributeNode(t))&&i.specified?i.value:null},t.escape=function(e){return(e+"").replace(xe,be)},t.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},t.uniqueSort=function(e){var t,n=[],i=0,o=0;if(O=!b.detectDuplicates,M=!b.sortStable&&e.slice(0),e.sort(W),O){for(;t=e[o++];)t===e[o]&&(i=n.push(o));for(;i--;)e.splice(n[i],1)}return M=null,e},k=t.getText=function(e){var t,n="",i=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=k(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[i++];)n+=k(t);return n},(w=t.selectors={cacheLength:50,createPseudo:i,match:pe,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(ge,me),e[3]=(e[3]||e[4]||e[5]||"").replace(ge,me),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||t.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&t.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return pe.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&ce.test(n)&&(t=C(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(ge,me).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=B[e+" "];return t||(t=new RegExp("(^|"+ee+")"+e+"("+ee+"|$)"))&&B(e,function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,n,i){return function(o){var r=t.attr(o,e);return null==r?"!="===n:!n||(r+="","="===n?r===i:"!="===n?r!==i:"^="===n?i&&0===r.indexOf(i):"*="===n?i&&r.indexOf(i)>-1:"$="===n?i&&r.slice(-i.length)===i:"~="===n?(" "+r.replace(oe," ")+" ").indexOf(i)>-1:"|="===n&&(r===i||r.slice(0,i.length+1)===i+"-"))}},CHILD:function(e,t,n,i,o){var r="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===i&&0===o?function(e){return!!e.parentNode}:function(t,n,l){var c,u,p,h,f,d,y=r!==a?"nextSibling":"previousSibling",v=t.parentNode,g=s&&t.nodeName.toLowerCase(),m=!l&&!s,x=!1;if(v){if(r){for(;y;){for(h=t;h=h[y];)if(s?h.nodeName.toLowerCase()===g:1===h.nodeType)return!1;d=y="only"===e&&!d&&"nextSibling"}return!0}if(d=[a?v.firstChild:v.lastChild],a&&m){for(x=(f=(c=(u=(p=(h=v)[I]||(h[I]={}))[h.uniqueID]||(p[h.uniqueID]={}))[e]||[])[0]===q&&c[1])&&c[2],h=f&&v.childNodes[f];h=++f&&h&&h[y]||(x=f=0)||d.pop();)if(1===h.nodeType&&++x&&h===t){u[e]=[q,f,x];break}}else if(m&&(x=f=(c=(u=(p=(h=t)[I]||(h[I]={}))[h.uniqueID]||(p[h.uniqueID]={}))[e]||[])[0]===q&&c[1]),!1===x)for(;(h=++f&&h&&h[y]||(x=f=0)||d.pop())&&((s?h.nodeName.toLowerCase()!==g:1!==h.nodeType)||!++x||(m&&((u=(p=h[I]||(h[I]={}))[h.uniqueID]||(p[h.uniqueID]={}))[e]=[q,x]),h!==t)););return(x-=o)===i||x%i==0&&x/i>=0}}},PSEUDO:function(e,n){var o,r=w.pseudos[e]||w.setFilters[e.toLowerCase()]||t.error("unsupported pseudo: "+e);return r[I]?r(n):r.length>1?(o=[e,e,"",n],w.setFilters.hasOwnProperty(e.toLowerCase())?i(function(e,t){for(var i,o=r(e,n),a=o.length;a--;)e[i=Y(e,o[a])]=!(t[i]=o[a])}):function(e){return r(e,0,o)}):r}},pseudos:{not:i(function(e){var t=[],n=[],o=S(e.replace(re,"$1"));return o[I]?i(function(e,t,n,i){for(var r,a=o(e,null,i,[]),s=e.length;s--;)(r=a[s])&&(e[s]=!(t[s]=r))}):function(e,i,r){return t[0]=e,o(t,null,r,n),t[0]=null,!n.pop()}}),has:i(function(e){return function(n){return t(e,n).length>0}}),contains:i(function(e){return e=e.replace(ge,me),function(t){return(t.textContent||t.innerText||k(t)).indexOf(e)>-1}}),lang:i(function(e){return ue.test(e||"")||t.error("unsupported lang: "+e),e=e.replace(ge,me).toLowerCase(),function(t){var n;do{if(n=$?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===D},focus:function(e){
+return e===N.activeElement&&(!N.hasFocus||N.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:s(!1),disabled:s(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!w.pseudos.empty(e)},header:function(e){return fe.test(e.nodeName)},input:function(e){return he.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:l(function(){return[0]}),last:l(function(e,t){return[t-1]}),eq:l(function(e,t,n){return[n<0?n+t:n]}),even:l(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:l(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:l(function(e,t,n){for(var i=n<0?n+t:n;--i>=0;)e.push(i);return e}),gt:l(function(e,t,n){for(var i=n<0?n+t:n;++i<t;)e.push(i);return e})}}).pseudos.nth=w.pseudos.eq;for(x in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})w.pseudos[x]=function(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}(x);for(x in{submit:!0,reset:!0})w.pseudos[x]=function(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}(x);return u.prototype=w.filters=w.pseudos,w.setFilters=new u,C=t.tokenize=function(e,n){var i,o,r,a,s,l,c,u=V[e+" "];if(u)return n?0:u.slice(0);for(s=e,l=[],c=w.preFilter;s;){i&&!(o=ae.exec(s))||(o&&(s=s.slice(o[0].length)||s),l.push(r=[])),i=!1,(o=se.exec(s))&&(i=o.shift(),r.push({value:i,type:o[0].replace(re," ")}),s=s.slice(i.length));for(a in w.filter)!(o=pe[a].exec(s))||c[a]&&!(o=c[a](o))||(i=o.shift(),r.push({value:i,type:a,matches:o}),s=s.slice(i.length));if(!i)break}return n?s.length:s?t.error(e):V(e,l).slice(0)},S=t.compile=function(e,t){var n,i=[],o=[],r=F[e+" "];if(!r){for(t||(t=C(e)),n=t.length;n--;)(r=g(t[n]))[I]?i.push(r):o.push(r);(r=F(e,m(o,i))).selector=e}return r},E=t.select=function(e,t,n,i){var o,r,a,s,l,u="function"==typeof e&&e,h=!i&&C(e=u.selector||e);if(n=n||[],1===h.length){if((r=h[0]=h[0].slice(0)).length>2&&"ID"===(a=r[0]).type&&9===t.nodeType&&$&&w.relative[r[1].type]){if(!(t=(w.find.ID(a.matches[0].replace(ge,me),t)||[])[0]))return n;u&&(t=t.parentNode),e=e.slice(r.shift().value.length)}for(o=pe.needsContext.test(e)?0:r.length;o--&&(a=r[o],!w.relative[s=a.type]);)if((l=w.find[s])&&(i=l(a.matches[0].replace(ge,me),ve.test(r[0].type)&&c(t.parentNode)||t))){if(r.splice(o,1),!(e=i.length&&p(r)))return J.apply(n,i),n;break}}return(u||S(e,h))(i,t,!$,n,!t||ve.test(e)&&c(t.parentNode)||t),n},b.sortStable=I.split("").sort(W).join("")===I,b.detectDuplicates=!!O,j(),b.sortDetached=o(function(e){return 1&e.compareDocumentPosition(N.createElement("fieldset"))}),o(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||r("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),b.attributes&&o(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||r("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),o(function(e){return null==e.getAttribute("disabled")})||r(Z,function(e,t,n){var i;if(!n)return!0===e[t]?t.toLowerCase():(i=e.getAttributeNode(t))&&i.specified?i.value:null}),t}(e);we.find=Te,we.expr=Te.selectors,we.expr[":"]=we.expr.pseudos,we.uniqueSort=we.unique=Te.uniqueSort,we.text=Te.getText,we.isXMLDoc=Te.isXML,we.contains=Te.contains,we.escapeSelector=Te.escape;var Ce=function(e,t,n){for(var i=[],o=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(o&&we(e).is(n))break;i.push(e)}return i},Se=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},Ee=we.expr.match.needsContext,Ae=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;we.filter=function(e,t,n){var i=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===i.nodeType?we.find.matchesSelector(i,e)?[i]:[]:we.find.matches(e,we.grep(t,function(e){return 1===e.nodeType}))},we.fn.extend({find:function(e){var t,n,i=this.length,o=this;if("string"!=typeof e)return this.pushStack(we(e).filter(function(){for(t=0;t<i;t++)if(we.contains(o[t],this))return!0}));for(n=this.pushStack([]),t=0;t<i;t++)we.find(e,o[t],n);return i>1?we.uniqueSort(n):n},filter:function(e){return this.pushStack(a(this,e||[],!1))},not:function(e){return this.pushStack(a(this,e||[],!0))},is:function(e){return!!a(this,"string"==typeof e&&Ee.test(e)?we(e):e||[],!1).length}});var Me,Oe=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(we.fn.init=function(e,t,n){var i,o;if(!e)return this;if(n=n||Me,"string"==typeof e){if(!(i="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:Oe.exec(e))||!i[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(i[1]){if(t=t instanceof we?t[0]:t,we.merge(this,we.parseHTML(i[1],t&&t.nodeType?t.ownerDocument||t:ae,!0)),Ae.test(i[1])&&we.isPlainObject(t))for(i in t)me(this[i])?this[i](t[i]):this.attr(i,t[i]);return this}return(o=ae.getElementById(i[2]))&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):me(e)?void 0!==n.ready?n.ready(e):e(we):we.makeArray(e,this)}).prototype=we.fn,Me=we(ae);var je=/^(?:parents|prev(?:Until|All))/,Ne={children:!0,contents:!0,next:!0,prev:!0};we.fn.extend({has:function(e){var t=we(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(we.contains(this,t[e]))return!0})},closest:function(e,t){var n,i=0,o=this.length,r=[],a="string"!=typeof e&&we(e);if(!Ee.test(e))for(;i<o;i++)for(n=this[i];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&we.find.matchesSelector(n,e))){r.push(n);break}return this.pushStack(r.length>1?we.uniqueSort(r):r)},index:function(e){return e?"string"==typeof e?pe.call(we(e),this[0]):pe.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(we.uniqueSort(we.merge(this.get(),we(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),we.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return Ce(e,"parentNode")},parentsUntil:function(e,t,n){return Ce(e,"parentNode",n)},next:function(e){return s(e,"nextSibling")},prev:function(e){return s(e,"previousSibling")},nextAll:function(e){return Ce(e,"nextSibling")},prevAll:function(e){return Ce(e,"previousSibling")},nextUntil:function(e,t,n){return Ce(e,"nextSibling",n)},prevUntil:function(e,t,n){return Ce(e,"previousSibling",n)},siblings:function(e){return Se((e.parentNode||{}).firstChild,e)},children:function(e){return Se(e.firstChild)},contents:function(e){return r(e,"iframe")?e.contentDocument:(r(e,"template")&&(e=e.content||e),we.merge([],e.childNodes))}},function(e,t){we.fn[e]=function(n,i){var o=we.map(this,t,n);return"Until"!==e.slice(-5)&&(i=n),i&&"string"==typeof i&&(o=we.filter(i,o)),this.length>1&&(Ne[e]||we.uniqueSort(o),je.test(e)&&o.reverse()),this.pushStack(o)}});var De=/[^\x20\t\r\n\f]+/g;we.Callbacks=function(e){e="string"==typeof e?l(e):we.extend({},e);var t,n,o,r,a=[],s=[],c=-1,u=function(){for(r=r||e.once,o=t=!0;s.length;c=-1)for(n=s.shift();++c<a.length;)!1===a[c].apply(n[0],n[1])&&e.stopOnFalse&&(c=a.length,n=!1);e.memory||(n=!1),t=!1,r&&(a=n?[]:"")},p={add:function(){return a&&(n&&!t&&(c=a.length-1,s.push(n)),function t(n){we.each(n,function(n,o){me(o)?e.unique&&p.has(o)||a.push(o):o&&o.length&&"string"!==i(o)&&t(o)})}(arguments),n&&!t&&u()),this},remove:function(){return we.each(arguments,function(e,t){for(var n;(n=we.inArray(t,a,n))>-1;)a.splice(n,1),n<=c&&c--}),this},has:function(e){return e?we.inArray(e,a)>-1:a.length>0},empty:function(){return a&&(a=[]),this},disable:function(){return r=s=[],a=n="",this},disabled:function(){return!a},lock:function(){return r=s=[],n||t||(a=n=""),this},locked:function(){return!!r},fireWith:function(e,n){return r||(n=[e,(n=n||[]).slice?n.slice():n],s.push(n),t||u()),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!o}};return p},we.extend({Deferred:function(t){var n=[["notify","progress",we.Callbacks("memory"),we.Callbacks("memory"),2],["resolve","done",we.Callbacks("once memory"),we.Callbacks("once memory"),0,"resolved"],["reject","fail",we.Callbacks("once memory"),we.Callbacks("once memory"),1,"rejected"]],i="pending",o={state:function(){return i},always:function(){return r.done(arguments).fail(arguments),this},catch:function(e){return o.then(null,e)},pipe:function(){var e=arguments;return we.Deferred(function(t){we.each(n,function(n,i){var o=me(e[i[4]])&&e[i[4]];r[i[1]](function(){var e=o&&o.apply(this,arguments);e&&me(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[i[0]+"With"](this,o?[e]:arguments)})}),e=null}).promise()},then:function(t,i,o){function r(t,n,i,o){return function(){var s=this,l=arguments,p=function(){var e,p;if(!(t<a)){if((e=i.apply(s,l))===n.promise())throw new TypeError("Thenable self-resolution");p=e&&("object"==typeof e||"function"==typeof e)&&e.then,me(p)?o?p.call(e,r(a,n,c,o),r(a,n,u,o)):(a++,p.call(e,r(a,n,c,o),r(a,n,u,o),r(a,n,c,n.notifyWith))):(i!==c&&(s=void 0,l=[e]),(o||n.resolveWith)(s,l))}},h=o?p:function(){try{p()}catch(e){we.Deferred.exceptionHook&&we.Deferred.exceptionHook(e,h.stackTrace),t+1>=a&&(i!==u&&(s=void 0,l=[e]),n.rejectWith(s,l))}};t?h():(we.Deferred.getStackHook&&(h.stackTrace=we.Deferred.getStackHook()),e.setTimeout(h))}}var a=0;return we.Deferred(function(e){n[0][3].add(r(0,e,me(o)?o:c,e.notifyWith)),n[1][3].add(r(0,e,me(t)?t:c)),n[2][3].add(r(0,e,me(i)?i:u))}).promise()},promise:function(e){return null!=e?we.extend(e,o):o}},r={};return we.each(n,function(e,t){var a=t[2],s=t[5];o[t[1]]=a.add,s&&a.add(function(){i=s},n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),r[t[0]]=function(){return r[t[0]+"With"](this===r?void 0:this,arguments),this},r[t[0]+"With"]=a.fireWith}),o.promise(r),t&&t.call(r,r),r},when:function(e){var t=arguments.length,n=t,i=Array(n),o=le.call(arguments),r=we.Deferred(),a=function(e){return function(n){i[e]=this,o[e]=arguments.length>1?le.call(arguments):n,--t||r.resolveWith(i,o)}};if(t<=1&&(p(e,r.done(a(n)).resolve,r.reject,!t),"pending"===r.state()||me(o[n]&&o[n].then)))return r.then();for(;n--;)p(o[n],a(n),r.reject);return r.promise()}});var $e=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;we.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&$e.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},we.readyException=function(t){e.setTimeout(function(){throw t})};var Le=we.Deferred();we.fn.ready=function(e){return Le.then(e).catch(function(e){we.readyException(e)}),this},we.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--we.readyWait:we.isReady)||(we.isReady=!0,!0!==e&&--we.readyWait>0||Le.resolveWith(ae,[we]))}}),we.ready.then=Le.then,"complete"===ae.readyState||"loading"!==ae.readyState&&!ae.documentElement.doScroll?e.setTimeout(we.ready):(ae.addEventListener("DOMContentLoaded",h),e.addEventListener("load",h));var _e=function(e,t,n,o,r,a,s){var l=0,c=e.length,u=null==n;if("object"===i(n)){r=!0;for(l in n)_e(e,t,l,n[l],!0,a,s)}else if(void 0!==o&&(r=!0,me(o)||(s=!0),u&&(s?(t.call(e,o),t=null):(u=t,t=function(e,t,n){return u.call(we(e),n)})),t))for(;l<c;l++)t(e[l],n,s?o:o.call(e[l],l,t(e[l],n)));return r?e:u?t.call(e):c?t(e[0],n):a},He=/^-ms-/,Pe=/-([a-z])/g,Ie=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};y.uid=1,y.prototype={cache:function(e){var t=e[this.expando];return t||(t={},Ie(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var i,o=this.cache(e);if("string"==typeof t)o[d(t)]=n;else for(i in t)o[d(i)]=t[i];return o},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][d(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,i=e[this.expando];if(void 0!==i){if(void 0!==t){n=(t=Array.isArray(t)?t.map(d):(t=d(t))in i?[t]:t.match(De)||[]).length;for(;n--;)delete i[t[n]]}(void 0===t||we.isEmptyObject(i))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!we.isEmptyObject(t)}};var Re=new y,qe=new y,ze=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Be=/[A-Z]/g;we.extend({hasData:function(e){return qe.hasData(e)||Re.hasData(e)},data:function(e,t,n){return qe.access(e,t,n)},removeData:function(e,t){qe.remove(e,t)},_data:function(e,t,n){return Re.access(e,t,n)},_removeData:function(e,t){Re.remove(e,t)}}),we.fn.extend({data:function(e,t){var n,i,o,r=this[0],a=r&&r.attributes;if(void 0===e){if(this.length&&(o=qe.get(r),1===r.nodeType&&!Re.get(r,"hasDataAttrs"))){for(n=a.length;n--;)a[n]&&0===(i=a[n].name).indexOf("data-")&&(i=d(i.slice(5)),g(r,i,o[i]));Re.set(r,"hasDataAttrs",!0)}return o}return"object"==typeof e?this.each(function(){qe.set(this,e)}):_e(this,function(t){var n;if(r&&void 0===t){if(void 0!==(n=qe.get(r,e)))return n;if(void 0!==(n=g(r,e)))return n}else this.each(function(){qe.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){qe.remove(this,e)})}}),we.extend({queue:function(e,t,n){var i;if(e)return t=(t||"fx")+"queue",i=Re.get(e,t),n&&(!i||Array.isArray(n)?i=Re.access(e,t,we.makeArray(n)):i.push(n)),i||[]},dequeue:function(e,t){t=t||"fx";var n=we.queue(e,t),i=n.length,o=n.shift(),r=we._queueHooks(e,t),a=function(){we.dequeue(e,t)};"inprogress"===o&&(o=n.shift(),i--),o&&("fx"===t&&n.unshift("inprogress"),delete r.stop,o.call(e,a,r)),!i&&r&&r.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Re.get(e,n)||Re.access(e,n,{empty:we.Callbacks("once memory").add(function(){Re.remove(e,[t+"queue",n])})})}}),we.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length<n?we.queue(this[0],e):void 0===t?this:this.each(function(){var n=we.queue(this,e,t);we._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&we.dequeue(this,e)})},dequeue:function(e){return this.each(function(){we.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,i=1,o=we.Deferred(),r=this,a=this.length,s=function(){--i||o.resolveWith(r,[r])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";a--;)(n=Re.get(r[a],e+"queueHooks"))&&n.empty&&(i++,n.empty.add(s));return s(),o.promise(t)}});var Ve=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,Fe=new RegExp("^(?:([+-])=|)("+Ve+")([a-z%]*)$","i"),We=["Top","Right","Bottom","Left"],Ue=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&we.contains(e.ownerDocument,e)&&"none"===we.css(e,"display")},Xe=function(e,t,n,i){var o,r,a={};for(r in t)a[r]=e.style[r],e.style[r]=t[r];o=n.apply(e,i||[]);for(r in t)e.style[r]=a[r];return o},Qe={};we.fn.extend({show:function(){return b(this,!0)},hide:function(){return b(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){Ue(this)?we(this).show():we(this).hide()})}});var Ge=/^(?:checkbox|radio)$/i,Je=/<([a-z][^\/\0>\x20\t\r\n\f]+)/i,Ke=/^$|^module$|\/(?:java|ecma)script/i,Ye={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};Ye.optgroup=Ye.option,Ye.tbody=Ye.tfoot=Ye.colgroup=Ye.caption=Ye.thead,Ye.th=Ye.td;var Ze=/<|&#?\w+;/;!function(){var e=ae.createDocumentFragment().appendChild(ae.createElement("div")),t=ae.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),ge.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="<textarea>x</textarea>",ge.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var et=ae.documentElement,tt=/^key/,nt=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,it=/^([^.]*)(?:\.(.+)|)/;we.event={global:{},add:function(e,t,n,i,o){var r,a,s,l,c,u,p,h,f,d,y,v=Re.get(e);if(v)for(n.handler&&(n=(r=n).handler,o=r.selector),o&&we.find.matchesSelector(et,o),n.guid||(n.guid=we.guid++),(l=v.events)||(l=v.events={}),(a=v.handle)||(a=v.handle=function(t){return void 0!==we&&we.event.triggered!==t.type?we.event.dispatch.apply(e,arguments):void 0}),c=(t=(t||"").match(De)||[""]).length;c--;)f=y=(s=it.exec(t[c])||[])[1],d=(s[2]||"").split(".").sort(),f&&(p=we.event.special[f]||{},f=(o?p.delegateType:p.bindType)||f,p=we.event.special[f]||{},u=we.extend({type:f,origType:y,data:i,handler:n,guid:n.guid,selector:o,needsContext:o&&we.expr.match.needsContext.test(o),namespace:d.join(".")},r),(h=l[f])||((h=l[f]=[]).delegateCount=0,p.setup&&!1!==p.setup.call(e,i,d,a)||e.addEventListener&&e.addEventListener(f,a)),p.add&&(p.add.call(e,u),u.handler.guid||(u.handler.guid=n.guid)),o?h.splice(h.delegateCount++,0,u):h.push(u),we.event.global[f]=!0)},remove:function(e,t,n,i,o){var r,a,s,l,c,u,p,h,f,d,y,v=Re.hasData(e)&&Re.get(e);if(v&&(l=v.events)){for(c=(t=(t||"").match(De)||[""]).length;c--;)if(s=it.exec(t[c])||[],f=y=s[1],d=(s[2]||"").split(".").sort(),f){for(p=we.event.special[f]||{},h=l[f=(i?p.delegateType:p.bindType)||f]||[],s=s[2]&&new RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=r=h.length;r--;)u=h[r],!o&&y!==u.origType||n&&n.guid!==u.guid||s&&!s.test(u.namespace)||i&&i!==u.selector&&("**"!==i||!u.selector)||(h.splice(r,1),u.selector&&h.delegateCount--,p.remove&&p.remove.call(e,u));a&&!h.length&&(p.teardown&&!1!==p.teardown.call(e,d,v.handle)||we.removeEvent(e,f,v.handle),delete l[f])}else for(f in l)we.event.remove(e,f+t[c],n,i,!0);we.isEmptyObject(l)&&Re.remove(e,"handle events")}},dispatch:function(e){var t,n,i,o,r,a,s=we.event.fix(e),l=new Array(arguments.length),c=(Re.get(this,"events")||{})[s.type]||[],u=we.event.special[s.type]||{};for(l[0]=s,t=1;t<arguments.length;t++)l[t]=arguments[t];if(s.delegateTarget=this,!u.preDispatch||!1!==u.preDispatch.call(this,s)){for(a=we.event.handlers.call(this,s,c),t=0;(o=a[t++])&&!s.isPropagationStopped();)for(s.currentTarget=o.elem,n=0;(r=o.handlers[n++])&&!s.isImmediatePropagationStopped();)s.rnamespace&&!s.rnamespace.test(r.namespace)||(s.handleObj=r,s.data=r.data,void 0!==(i=((we.event.special[r.origType]||{}).handle||r.handler).apply(o.elem,l))&&!1===(s.result=i)&&(s.preventDefault(),s.stopPropagation()));return u.postDispatch&&u.postDispatch.call(this,s),s.result}},handlers:function(e,t){var n,i,o,r,a,s=[],l=t.delegateCount,c=e.target;if(l&&c.nodeType&&!("click"===e.type&&e.button>=1))for(;c!==this;c=c.parentNode||this)if(1===c.nodeType&&("click"!==e.type||!0!==c.disabled)){for(r=[],a={},n=0;n<l;n++)void 0===a[o=(i=t[n]).selector+" "]&&(a[o]=i.needsContext?we(o,this).index(c)>-1:we.find(o,this,null,[c]).length),a[o]&&r.push(i);r.length&&s.push({elem:c,handlers:r})}return c=this,l<t.length&&s.push({elem:c,handlers:t.slice(l)}),s},addProp:function(e,t){Object.defineProperty(we.Event.prototype,e,{enumerable:!0,configurable:!0,get:me(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[we.expando]?e:new we.Event(e)},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==E()&&this.focus)return this.focus(),!1},delegateType:"focusin"},blur:{trigger:function(){if(this===E()&&this.blur)return this.blur(),!1},delegateType:"focusout"},click:{trigger:function(){if("checkbox"===this.type&&this.click&&r(this,"input"))return this.click(),!1},_default:function(e){return r(e.target,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},we.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},we.Event=function(e,t){if(!(this instanceof we.Event))return new we.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?C:S,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&we.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[we.expando]=!0},we.Event.prototype={constructor:we.Event,isDefaultPrevented:S,isPropagationStopped:S,isImmediatePropagationStopped:S,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=C,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=C,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=C,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},we.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&tt.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&nt.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},we.event.addProp),we.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,t){we.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,i=this,o=e.relatedTarget,r=e.handleObj;return o&&(o===i||we.contains(i,o))||(e.type=r.origType,n=r.handler.apply(this,arguments),e.type=t),n}}}),we.fn.extend({on:function(e,t,n,i){return A(this,e,t,n,i)},one:function(e,t,n,i){return A(this,e,t,n,i,1)},off:function(e,t,n){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,we(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,t,e[o]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=S),this.each(function(){we.event.remove(this,e,n,t)})}});var ot=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,rt=/<script|<style|<link/i,at=/checked\s*(?:[^=]|=\s*.checked.)/i,st=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;we.extend({htmlPrefilter:function(e){return e.replace(ot,"<$1></$2>")},clone:function(e,t,n){var i,o,r,a,s=e.cloneNode(!0),l=we.contains(e.ownerDocument,e);if(!(ge.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||we.isXMLDoc(e)))for(a=w(s),i=0,o=(r=w(e)).length;i<o;i++)D(r[i],a[i]);if(t)if(n)for(r=r||w(e),a=a||w(s),i=0,o=r.length;i<o;i++)N(r[i],a[i]);else N(e,s);return(a=w(s,"script")).length>0&&k(a,!l&&w(e,"script")),s},cleanData:function(e){for(var t,n,i,o=we.event.special,r=0;void 0!==(n=e[r]);r++)if(Ie(n)){if(t=n[Re.expando]){if(t.events)for(i in t.events)o[i]?we.event.remove(n,i):we.removeEvent(n,i,t.handle);n[Re.expando]=void 0}n[qe.expando]&&(n[qe.expando]=void 0)}}}),we.fn.extend({detach:function(e){return L(this,e,!0)},remove:function(e){return L(this,e)},text:function(e){return _e(this,function(e){return void 0===e?we.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return $(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||M(this,e).appendChild(e)})},prepend:function(){return $(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=M(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return $(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return $(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(we.cleanData(w(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return we.clone(this,e,t)})},html:function(e){return _e(this,function(e){var t=this[0]||{},n=0,i=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!rt.test(e)&&!Ye[(Je.exec(e)||["",""])[1].toLowerCase()]){e=we.htmlPrefilter(e);try{for(;n<i;n++)1===(t=this[n]||{}).nodeType&&(we.cleanData(w(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=[];return $(this,arguments,function(t){var n=this.parentNode;we.inArray(this,e)<0&&(we.cleanData(w(this)),n&&n.replaceChild(t,this))},e)}}),we.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){we.fn[e]=function(e){for(var n,i=[],o=we(e),r=o.length-1,a=0;a<=r;a++)n=a===r?this:this.clone(!0),we(o[a])[t](n),ue.apply(i,n.get());return this.pushStack(i)}});var lt=new RegExp("^("+Ve+")(?!px)[a-z%]+$","i"),ct=function(t){var n=t.ownerDocument.defaultView;return n&&n.opener||(n=e),n.getComputedStyle(t)},ut=new RegExp(We.join("|"),"i");!function(){function t(){if(c){l.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",c.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",et.appendChild(l).appendChild(c);var t=e.getComputedStyle(c);i="1%"!==t.top,s=12===n(t.marginLeft),c.style.right="60%",a=36===n(t.right),o=36===n(t.width),c.style.position="absolute",r=36===c.offsetWidth||"absolute",et.removeChild(l),c=null}}function n(e){return Math.round(parseFloat(e))}var i,o,r,a,s,l=ae.createElement("div"),c=ae.createElement("div");c.style&&(c.style.backgroundClip="content-box",c.cloneNode(!0).style.backgroundClip="",ge.clearCloneStyle="content-box"===c.style.backgroundClip,we.extend(ge,{boxSizingReliable:function(){return t(),o},pixelBoxStyles:function(){return t(),a},pixelPosition:function(){return t(),i},reliableMarginLeft:function(){return t(),s},scrollboxSize:function(){return t(),r}}))}();var pt=/^(none|table(?!-c[ea]).+)/,ht=/^--/,ft={position:"absolute",visibility:"hidden",display:"block"},dt={letterSpacing:"0",fontWeight:"400"},yt=["Webkit","Moz","ms"],vt=ae.createElement("div").style;we.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=_(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,r,a,s=d(t),l=ht.test(t),c=e.style;if(l||(t=I(s)),a=we.cssHooks[t]||we.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(o=a.get(e,!1,i))?o:c[t];"string"==(r=typeof n)&&(o=Fe.exec(n))&&o[1]&&(n=m(e,t,o),r="number"),null!=n&&n===n&&("number"===r&&(n+=o&&o[3]||(we.cssNumber[s]?"":"px")),ge.clearCloneStyle||""!==n||0!==t.indexOf("background")||(c[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,i))||(l?c.setProperty(t,n):c[t]=n))}},css:function(e,t,n,i){var o,r,a,s=d(t);return ht.test(t)||(t=I(s)),(a=we.cssHooks[t]||we.cssHooks[s])&&"get"in a&&(o=a.get(e,!0,n)),void 0===o&&(o=_(e,t,i)),"normal"===o&&t in dt&&(o=dt[t]),""===n||n?(r=parseFloat(o),!0===n||isFinite(r)?r||0:o):o}}),we.each(["height","width"],function(e,t){we.cssHooks[t]={get:function(e,n,i){if(n)return!pt.test(we.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?z(e,t,i):Xe(e,ft,function(){return z(e,t,i)})},set:function(e,n,i){var o,r=ct(e),a="border-box"===we.css(e,"boxSizing",!1,r),s=i&&q(e,t,i,a,r);return a&&ge.scrollboxSize()===r.position&&(s-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(r[t])-q(e,t,"border",!1,r)-.5)),s&&(o=Fe.exec(n))&&"px"!==(o[3]||"px")&&(e.style[t]=n,n=we.css(e,t)),R(e,n,s)}}}),we.cssHooks.marginLeft=H(ge.reliableMarginLeft,function(e,t){if(t)return(parseFloat(_(e,"marginLeft"))||e.getBoundingClientRect().left-Xe(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),we.each({margin:"",padding:"",border:"Width"},function(e,t){we.cssHooks[e+t]={expand:function(n){for(var i=0,o={},r="string"==typeof n?n.split(" "):[n];i<4;i++)o[e+We[i]+t]=r[i]||r[i-2]||r[0];return o}},"margin"!==e&&(we.cssHooks[e+t].set=R)}),we.fn.extend({css:function(e,t){return _e(this,function(e,t,n){var i,o,r={},a=0;if(Array.isArray(t)){for(i=ct(e),o=t.length;a<o;a++)r[t[a]]=we.css(e,t[a],!1,i);return r}return void 0!==n?we.style(e,t,n):we.css(e,t)},e,t,arguments.length>1)}}),we.Tween=B,B.prototype={constructor:B,init:function(e,t,n,i,o,r){this.elem=e,this.prop=n,this.easing=o||we.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=i,this.unit=r||(we.cssNumber[n]?"":"px")},cur:function(){var e=B.propHooks[this.prop];return e&&e.get?e.get(this):B.propHooks._default.get(this)},run:function(e){var t,n=B.propHooks[this.prop];return this.options.duration?this.pos=t=we.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):B.propHooks._default.set(this),this}},B.prototype.init.prototype=B.prototype,B.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=we.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){we.fx.step[e.prop]?we.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[we.cssProps[e.prop]]&&!we.cssHooks[e.prop]?e.elem[e.prop]=e.now:we.style(e.elem,e.prop,e.now+e.unit)}}},B.propHooks.scrollTop=B.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},we.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},we.fx=B.prototype.init,we.fx.step={};var gt,mt,xt=/^(?:toggle|show|hide)$/,bt=/queueHooks$/;we.Animation=we.extend(G,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return m(n.elem,e,Fe.exec(t),n),n}]},tweener:function(e,t){me(e)?(t=e,e=["*"]):e=e.match(De);for(var n,i=0,o=e.length;i<o;i++)n=e[i],G.tweeners[n]=G.tweeners[n]||[],G.tweeners[n].unshift(t)},prefilters:[X],prefilter:function(e,t){t?G.prefilters.unshift(e):G.prefilters.push(e)}}),we.speed=function(e,t,n){var i=e&&"object"==typeof e?we.extend({},e):{complete:n||!n&&t||me(e)&&e,duration:e,easing:n&&t||t&&!me(t)&&t};return we.fx.off?i.duration=0:"number"!=typeof i.duration&&(i.duration in we.fx.speeds?i.duration=we.fx.speeds[i.duration]:i.duration=we.fx.speeds._default),null!=i.queue&&!0!==i.queue||(i.queue="fx"),i.old=i.complete,i.complete=function(){me(i.old)&&i.old.call(this),i.queue&&we.dequeue(this,i.queue)},i},we.fn.extend({fadeTo:function(e,t,n,i){return this.filter(Ue).css("opacity",0).show().end().animate({opacity:t},e,n,i)},animate:function(e,t,n,i){var o=we.isEmptyObject(e),r=we.speed(t,n,i),a=function(){var t=G(this,we.extend({},e),r);(o||Re.get(this,"finish"))&&t.stop(!0)};return a.finish=a,o||!1===r.queue?this.each(a):this.queue(r.queue,a)},stop:function(e,t,n){var i=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&!1!==e&&this.queue(e||"fx",[]),this.each(function(){var t=!0,o=null!=e&&e+"queueHooks",r=we.timers,a=Re.get(this)
+;if(o)a[o]&&a[o].stop&&i(a[o]);else for(o in a)a[o]&&a[o].stop&&bt.test(o)&&i(a[o]);for(o=r.length;o--;)r[o].elem!==this||null!=e&&r[o].queue!==e||(r[o].anim.stop(n),t=!1,r.splice(o,1));!t&&n||we.dequeue(this,e)})},finish:function(e){return!1!==e&&(e=e||"fx"),this.each(function(){var t,n=Re.get(this),i=n[e+"queue"],o=n[e+"queueHooks"],r=we.timers,a=i?i.length:0;for(n.finish=!0,we.queue(this,e,[]),o&&o.stop&&o.stop.call(this,!0),t=r.length;t--;)r[t].elem===this&&r[t].queue===e&&(r[t].anim.stop(!0),r.splice(t,1));for(t=0;t<a;t++)i[t]&&i[t].finish&&i[t].finish.call(this);delete n.finish})}}),we.each(["toggle","show","hide"],function(e,t){var n=we.fn[t];we.fn[t]=function(e,i,o){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(W(t,!0),e,i,o)}}),we.each({slideDown:W("show"),slideUp:W("hide"),slideToggle:W("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){we.fn[e]=function(e,n,i){return this.animate(t,e,n,i)}}),we.timers=[],we.fx.tick=function(){var e,t=0,n=we.timers;for(gt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||we.fx.stop(),gt=void 0},we.fx.timer=function(e){we.timers.push(e),we.fx.start()},we.fx.interval=13,we.fx.start=function(){mt||(mt=!0,V())},we.fx.stop=function(){mt=null},we.fx.speeds={slow:600,fast:200,_default:400},we.fn.delay=function(t,n){return t=we.fx?we.fx.speeds[t]||t:t,n=n||"fx",this.queue(n,function(n,i){var o=e.setTimeout(n,t);i.stop=function(){e.clearTimeout(o)}})},function(){var e=ae.createElement("input"),t=ae.createElement("select").appendChild(ae.createElement("option"));e.type="checkbox",ge.checkOn=""!==e.value,ge.optSelected=t.selected,(e=ae.createElement("input")).value="t",e.type="radio",ge.radioValue="t"===e.value}();var wt,kt=we.expr.attrHandle;we.fn.extend({attr:function(e,t){return _e(this,we.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){we.removeAttr(this,e)})}}),we.extend({attr:function(e,t,n){var i,o,r=e.nodeType;if(3!==r&&8!==r&&2!==r)return void 0===e.getAttribute?we.prop(e,t,n):(1===r&&we.isXMLDoc(e)||(o=we.attrHooks[t.toLowerCase()]||(we.expr.match.bool.test(t)?wt:void 0)),void 0!==n?null===n?void we.removeAttr(e,t):o&&"set"in o&&void 0!==(i=o.set(e,n,t))?i:(e.setAttribute(t,n+""),n):o&&"get"in o&&null!==(i=o.get(e,t))?i:null==(i=we.find.attr(e,t))?void 0:i)},attrHooks:{type:{set:function(e,t){if(!ge.radioValue&&"radio"===t&&r(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,i=0,o=t&&t.match(De);if(o&&1===e.nodeType)for(;n=o[i++];)e.removeAttribute(n)}}),wt={set:function(e,t,n){return!1===t?we.removeAttr(e,n):e.setAttribute(n,n),n}},we.each(we.expr.match.bool.source.match(/\w+/g),function(e,t){var n=kt[t]||we.find.attr;kt[t]=function(e,t,i){var o,r,a=t.toLowerCase();return i||(r=kt[a],kt[a]=o,o=null!=n(e,t,i)?a:null,kt[a]=r),o}});var Tt=/^(?:input|select|textarea|button)$/i,Ct=/^(?:a|area)$/i;we.fn.extend({prop:function(e,t){return _e(this,we.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[we.propFix[e]||e]})}}),we.extend({prop:function(e,t,n){var i,o,r=e.nodeType;if(3!==r&&8!==r&&2!==r)return 1===r&&we.isXMLDoc(e)||(t=we.propFix[t]||t,o=we.propHooks[t]),void 0!==n?o&&"set"in o&&void 0!==(i=o.set(e,n,t))?i:e[t]=n:o&&"get"in o&&null!==(i=o.get(e,t))?i:e[t]},propHooks:{tabIndex:{get:function(e){var t=we.find.attr(e,"tabindex");return t?parseInt(t,10):Tt.test(e.nodeName)||Ct.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),ge.optSelected||(we.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),we.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){we.propFix[this.toLowerCase()]=this}),we.fn.extend({addClass:function(e){var t,n,i,o,r,a,s,l=0;if(me(e))return this.each(function(t){we(this).addClass(e.call(this,t,K(this)))});if((t=Y(e)).length)for(;n=this[l++];)if(o=K(n),i=1===n.nodeType&&" "+J(o)+" "){for(a=0;r=t[a++];)i.indexOf(" "+r+" ")<0&&(i+=r+" ");o!==(s=J(i))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,i,o,r,a,s,l=0;if(me(e))return this.each(function(t){we(this).removeClass(e.call(this,t,K(this)))});if(!arguments.length)return this.attr("class","");if((t=Y(e)).length)for(;n=this[l++];)if(o=K(n),i=1===n.nodeType&&" "+J(o)+" "){for(a=0;r=t[a++];)for(;i.indexOf(" "+r+" ")>-1;)i=i.replace(" "+r+" "," ");o!==(s=J(i))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,i="string"===n||Array.isArray(e);return"boolean"==typeof t&&i?t?this.addClass(e):this.removeClass(e):me(e)?this.each(function(n){we(this).toggleClass(e.call(this,n,K(this),t),t)}):this.each(function(){var t,o,r,a;if(i)for(o=0,r=we(this),a=Y(e);t=a[o++];)r.hasClass(t)?r.removeClass(t):r.addClass(t);else void 0!==e&&"boolean"!==n||((t=K(this))&&Re.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":Re.get(this,"__className__")||""))})},hasClass:function(e){var t,n,i=0;for(t=" "+e+" ";n=this[i++];)if(1===n.nodeType&&(" "+J(K(n))+" ").indexOf(t)>-1)return!0;return!1}});var St=/\r/g;we.fn.extend({val:function(e){var t,n,i,o=this[0];return arguments.length?(i=me(e),this.each(function(n){var o;1===this.nodeType&&(null==(o=i?e.call(this,n,we(this).val()):e)?o="":"number"==typeof o?o+="":Array.isArray(o)&&(o=we.map(o,function(e){return null==e?"":e+""})),(t=we.valHooks[this.type]||we.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,o,"value")||(this.value=o))})):o?(t=we.valHooks[o.type]||we.valHooks[o.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(o,"value"))?n:"string"==typeof(n=o.value)?n.replace(St,""):null==n?"":n:void 0}}),we.extend({valHooks:{option:{get:function(e){var t=we.find.attr(e,"value");return null!=t?t:J(we.text(e))}},select:{get:function(e){var t,n,i,o=e.options,a=e.selectedIndex,s="select-one"===e.type,l=s?null:[],c=s?a+1:o.length;for(i=a<0?c:s?a:0;i<c;i++)if(((n=o[i]).selected||i===a)&&!n.disabled&&(!n.parentNode.disabled||!r(n.parentNode,"optgroup"))){if(t=we(n).val(),s)return t;l.push(t)}return l},set:function(e,t){for(var n,i,o=e.options,r=we.makeArray(t),a=o.length;a--;)((i=o[a]).selected=we.inArray(we.valHooks.option.get(i),r)>-1)&&(n=!0);return n||(e.selectedIndex=-1),r}}}}),we.each(["radio","checkbox"],function(){we.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=we.inArray(we(e).val(),t)>-1}},ge.checkOn||(we.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),ge.focusin="onfocusin"in e;var Et=/^(?:focusinfocus|focusoutblur)$/,At=function(e){e.stopPropagation()};we.extend(we.event,{trigger:function(t,n,i,o){var r,a,s,l,c,u,p,h,f=[i||ae],d=de.call(t,"type")?t.type:t,y=de.call(t,"namespace")?t.namespace.split("."):[];if(a=h=s=i=i||ae,3!==i.nodeType&&8!==i.nodeType&&!Et.test(d+we.event.triggered)&&(d.indexOf(".")>-1&&(d=(y=d.split(".")).shift(),y.sort()),c=d.indexOf(":")<0&&"on"+d,t=t[we.expando]?t:new we.Event(d,"object"==typeof t&&t),t.isTrigger=o?2:3,t.namespace=y.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+y.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=i),n=null==n?[t]:we.makeArray(n,[t]),p=we.event.special[d]||{},o||!p.trigger||!1!==p.trigger.apply(i,n))){if(!o&&!p.noBubble&&!xe(i)){for(l=p.delegateType||d,Et.test(l+d)||(a=a.parentNode);a;a=a.parentNode)f.push(a),s=a;s===(i.ownerDocument||ae)&&f.push(s.defaultView||s.parentWindow||e)}for(r=0;(a=f[r++])&&!t.isPropagationStopped();)h=a,t.type=r>1?l:p.bindType||d,(u=(Re.get(a,"events")||{})[t.type]&&Re.get(a,"handle"))&&u.apply(a,n),(u=c&&a[c])&&u.apply&&Ie(a)&&(t.result=u.apply(a,n),!1===t.result&&t.preventDefault());return t.type=d,o||t.isDefaultPrevented()||p._default&&!1!==p._default.apply(f.pop(),n)||!Ie(i)||c&&me(i[d])&&!xe(i)&&((s=i[c])&&(i[c]=null),we.event.triggered=d,t.isPropagationStopped()&&h.addEventListener(d,At),i[d](),t.isPropagationStopped()&&h.removeEventListener(d,At),we.event.triggered=void 0,s&&(i[c]=s)),t.result}},simulate:function(e,t,n){var i=we.extend(new we.Event,n,{type:e,isSimulated:!0});we.event.trigger(i,null,t)}}),we.fn.extend({trigger:function(e,t){return this.each(function(){we.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return we.event.trigger(e,t,n,!0)}}),ge.focusin||we.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){we.event.simulate(t,e.target,we.event.fix(e))};we.event.special[t]={setup:function(){var i=this.ownerDocument||this,o=Re.access(i,t);o||i.addEventListener(e,n,!0),Re.access(i,t,(o||0)+1)},teardown:function(){var i=this.ownerDocument||this,o=Re.access(i,t)-1;o?Re.access(i,t,o):(i.removeEventListener(e,n,!0),Re.remove(i,t))}}});var Mt=e.location,Ot=Date.now(),jt=/\?/;we.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||we.error("Invalid XML: "+t),n};var Nt=/\[\]$/,Dt=/\r?\n/g,$t=/^(?:submit|button|image|reset|file)$/i,Lt=/^(?:input|select|textarea|keygen)/i;we.param=function(e,t){var n,i=[],o=function(e,t){var n=me(t)?t():t;i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(e)||e.jquery&&!we.isPlainObject(e))we.each(e,function(){o(this.name,this.value)});else for(n in e)Z(n,e[n],t,o);return i.join("&")},we.fn.extend({serialize:function(){return we.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=we.prop(this,"elements");return e?we.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!we(this).is(":disabled")&&Lt.test(this.nodeName)&&!$t.test(e)&&(this.checked||!Ge.test(e))}).map(function(e,t){var n=we(this).val();return null==n?null:Array.isArray(n)?we.map(n,function(e){return{name:t.name,value:e.replace(Dt,"\r\n")}}):{name:t.name,value:n.replace(Dt,"\r\n")}}).get()}});var _t=/%20/g,Ht=/#.*$/,Pt=/([?&])_=[^&]*/,It=/^(.*?):[ \t]*([^\r\n]*)$/gm,Rt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,qt=/^(?:GET|HEAD)$/,zt=/^\/\//,Bt={},Vt={},Ft="*/".concat("*"),Wt=ae.createElement("a");Wt.href=Mt.href,we.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Mt.href,type:"GET",isLocal:Rt.test(Mt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Ft,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":we.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?ne(ne(e,we.ajaxSettings),t):ne(we.ajaxSettings,e)},ajaxPrefilter:ee(Bt),ajaxTransport:ee(Vt),ajax:function(t,n){function i(t,n,i,s){var c,h,f,b,w,k=n;u||(u=!0,l&&e.clearTimeout(l),o=void 0,a=s||"",T.readyState=t>0?4:0,c=t>=200&&t<300||304===t,i&&(b=ie(d,T,i)),b=oe(d,b,T,c),c?(d.ifModified&&((w=T.getResponseHeader("Last-Modified"))&&(we.lastModified[r]=w),(w=T.getResponseHeader("etag"))&&(we.etag[r]=w)),204===t||"HEAD"===d.type?k="nocontent":304===t?k="notmodified":(k=b.state,h=b.data,c=!(f=b.error))):(f=k,!t&&k||(k="error",t<0&&(t=0))),T.status=t,T.statusText=(n||k)+"",c?g.resolveWith(y,[h,k,T]):g.rejectWith(y,[T,k,f]),T.statusCode(x),x=void 0,p&&v.trigger(c?"ajaxSuccess":"ajaxError",[T,d,c?h:f]),m.fireWith(y,[T,k]),p&&(v.trigger("ajaxComplete",[T,d]),--we.active||we.event.trigger("ajaxStop")))}"object"==typeof t&&(n=t,t=void 0),n=n||{};var o,r,a,s,l,c,u,p,h,f,d=we.ajaxSetup({},n),y=d.context||d,v=d.context&&(y.nodeType||y.jquery)?we(y):we.event,g=we.Deferred(),m=we.Callbacks("once memory"),x=d.statusCode||{},b={},w={},k="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(u){if(!s)for(s={};t=It.exec(a);)s[t[1].toLowerCase()]=t[2];t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return u?a:null},setRequestHeader:function(e,t){return null==u&&(e=w[e.toLowerCase()]=w[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==u&&(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(u)T.always(e[T.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||k;return o&&o.abort(t),i(0,t),this}};if(g.promise(T),d.url=((t||d.url||Mt.href)+"").replace(zt,Mt.protocol+"//"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=(d.dataType||"*").toLowerCase().match(De)||[""],null==d.crossDomain){c=ae.createElement("a");try{c.href=d.url,c.href=c.href,d.crossDomain=Wt.protocol+"//"+Wt.host!=c.protocol+"//"+c.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&"string"!=typeof d.data&&(d.data=we.param(d.data,d.traditional)),te(Bt,d,n,T),u)return T;(p=we.event&&d.global)&&0==we.active++&&we.event.trigger("ajaxStart"),d.type=d.type.toUpperCase(),d.hasContent=!qt.test(d.type),r=d.url.replace(Ht,""),d.hasContent?d.data&&d.processData&&0===(d.contentType||"").indexOf("application/x-www-form-urlencoded")&&(d.data=d.data.replace(_t,"+")):(f=d.url.slice(r.length),d.data&&(d.processData||"string"==typeof d.data)&&(r+=(jt.test(r)?"&":"?")+d.data,delete d.data),!1===d.cache&&(r=r.replace(Pt,"$1"),f=(jt.test(r)?"&":"?")+"_="+Ot+++f),d.url=r+f),d.ifModified&&(we.lastModified[r]&&T.setRequestHeader("If-Modified-Since",we.lastModified[r]),we.etag[r]&&T.setRequestHeader("If-None-Match",we.etag[r])),(d.data&&d.hasContent&&!1!==d.contentType||n.contentType)&&T.setRequestHeader("Content-Type",d.contentType),T.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+("*"!==d.dataTypes[0]?", "+Ft+"; q=0.01":""):d.accepts["*"]);for(h in d.headers)T.setRequestHeader(h,d.headers[h]);if(d.beforeSend&&(!1===d.beforeSend.call(y,T,d)||u))return T.abort();if(k="abort",m.add(d.complete),T.done(d.success),T.fail(d.error),o=te(Vt,d,n,T)){if(T.readyState=1,p&&v.trigger("ajaxSend",[T,d]),u)return T;d.async&&d.timeout>0&&(l=e.setTimeout(function(){T.abort("timeout")},d.timeout));try{u=!1,o.send(b,i)}catch(e){if(u)throw e;i(-1,e)}}else i(-1,"No Transport");return T},getJSON:function(e,t,n){return we.get(e,t,n,"json")},getScript:function(e,t){return we.get(e,void 0,t,"script")}}),we.each(["get","post"],function(e,t){we[t]=function(e,n,i,o){return me(n)&&(o=o||i,i=n,n=void 0),we.ajax(we.extend({url:e,type:t,dataType:o,data:n,success:i},we.isPlainObject(e)&&e))}}),we._evalUrl=function(e){return we.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,throws:!0})},we.fn.extend({wrapAll:function(e){var t;return this[0]&&(me(e)&&(e=e.call(this[0])),t=we(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return me(e)?this.each(function(t){we(this).wrapInner(e.call(this,t))}):this.each(function(){var t=we(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=me(e);return this.each(function(n){we(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){we(this).replaceWith(this.childNodes)}),this}}),we.expr.pseudos.hidden=function(e){return!we.expr.pseudos.visible(e)},we.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},we.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Ut={0:200,1223:204},Xt=we.ajaxSettings.xhr();ge.cors=!!Xt&&"withCredentials"in Xt,ge.ajax=Xt=!!Xt,we.ajaxTransport(function(t){var n,i;if(ge.cors||Xt&&!t.crossDomain)return{send:function(o,r){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||o["X-Requested-With"]||(o["X-Requested-With"]="XMLHttpRequest");for(a in o)s.setRequestHeader(a,o[a]);n=function(e){return function(){n&&(n=i=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?r(0,"error"):r(s.status,s.statusText):r(Ut[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),i=s.onerror=s.ontimeout=n("error"),void 0!==s.onabort?s.onabort=i:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout(function(){n&&i()})},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}}),we.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),we.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return we.globalEval(e),e}}}),we.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),we.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(i,o){t=we("<script>").prop({charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&o("error"===e.type?404:200,e.type)}),ae.head.appendChild(t[0])},abort:function(){n&&n()}}}});var Qt=[],Gt=/(=)\?(?=&|$)|\?\?/;we.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Qt.pop()||we.expando+"_"+Ot++;return this[e]=!0,e}}),we.ajaxPrefilter("json jsonp",function(t,n,i){var o,r,a,s=!1!==t.jsonp&&(Gt.test(t.url)?"url":"string"==typeof t.data&&0===(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&Gt.test(t.data)&&"data");if(s||"jsonp"===t.dataTypes[0])return o=t.jsonpCallback=me(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,s?t[s]=t[s].replace(Gt,"$1"+o):!1!==t.jsonp&&(t.url+=(jt.test(t.url)?"&":"?")+t.jsonp+"="+o),t.converters["script json"]=function(){return a||we.error(o+" was not called"),a[0]},t.dataTypes[0]="json",r=e[o],e[o]=function(){a=arguments},i.always(function(){void 0===r?we(e).removeProp(o):e[o]=r,t[o]&&(t.jsonpCallback=n.jsonpCallback,Qt.push(o)),a&&me(r)&&r(a[0]),a=r=void 0}),"script"}),ge.createHTMLDocument=function(){var e=ae.implementation.createHTMLDocument("").body;return e.innerHTML="<form></form><form></form>",2===e.childNodes.length}(),we.parseHTML=function(e,t,n){if("string"!=typeof e)return[];"boolean"==typeof t&&(n=t,t=!1);var i,o,r;return t||(ge.createHTMLDocument?((i=(t=ae.implementation.createHTMLDocument("")).createElement("base")).href=ae.location.href,t.head.appendChild(i)):t=ae),o=Ae.exec(e),r=!n&&[],o?[t.createElement(o[1])]:(o=T([e],t,r),r&&r.length&&we(r).remove(),we.merge([],o.childNodes))},we.fn.load=function(e,t,n){var i,o,r,a=this,s=e.indexOf(" ");return s>-1&&(i=J(e.slice(s)),e=e.slice(0,s)),me(t)?(n=t,t=void 0):t&&"object"==typeof t&&(o="POST"),a.length>0&&we.ajax({url:e,type:o||"GET",dataType:"html",data:t}).done(function(e){r=arguments,a.html(i?we("<div>").append(we.parseHTML(e)).find(i):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,r||[e.responseText,t,e])})}),this},we.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){we.fn[t]=function(e){return this.on(t,e)}}),we.expr.pseudos.animated=function(e){return we.grep(we.timers,function(t){return e===t.elem}).length},we.offset={setOffset:function(e,t,n){var i,o,r,a,s,l,c=we.css(e,"position"),u=we(e),p={};"static"===c&&(e.style.position="relative"),s=u.offset(),r=we.css(e,"top"),l=we.css(e,"left"),("absolute"===c||"fixed"===c)&&(r+l).indexOf("auto")>-1?(a=(i=u.position()).top,o=i.left):(a=parseFloat(r)||0,o=parseFloat(l)||0),me(t)&&(t=t.call(e,n,we.extend({},s))),null!=t.top&&(p.top=t.top-s.top+a),null!=t.left&&(p.left=t.left-s.left+o),"using"in t?t.using.call(e,p):u.css(p)}},we.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each(function(t){we.offset.setOffset(this,e,t)});var t,n,i=this[0];return i?i.getClientRects().length?(t=i.getBoundingClientRect(),n=i.ownerDocument.defaultView,{top:t.top+n.pageYOffset,left:t.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,i=this[0],o={top:0,left:0};if("fixed"===we.css(i,"position"))t=i.getBoundingClientRect();else{for(t=this.offset(),n=i.ownerDocument,e=i.offsetParent||n.documentElement;e&&(e===n.body||e===n.documentElement)&&"static"===we.css(e,"position");)e=e.parentNode;e&&e!==i&&1===e.nodeType&&((o=we(e).offset()).top+=we.css(e,"borderTopWidth",!0),o.left+=we.css(e,"borderLeftWidth",!0))}return{top:t.top-o.top-we.css(i,"marginTop",!0),left:t.left-o.left-we.css(i,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent;e&&"static"===we.css(e,"position");)e=e.offsetParent;return e||et})}}),we.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,t){var n="pageYOffset"===t;we.fn[e]=function(i){return _e(this,function(e,i,o){var r;if(xe(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===o)return r?r[t]:e[i];r?r.scrollTo(n?r.pageXOffset:o,n?o:r.pageYOffset):e[i]=o},e,i,arguments.length)}}),we.each(["top","left"],function(e,t){we.cssHooks[t]=H(ge.pixelPosition,function(e,n){if(n)return n=_(e,t),lt.test(n)?we(e).position()[t]+"px":n})}),we.each({Height:"height",Width:"width"},function(e,t){we.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,i){we.fn[i]=function(o,r){var a=arguments.length&&(n||"boolean"!=typeof o),s=n||(!0===o||!0===r?"margin":"border");return _e(this,function(t,n,o){var r;return xe(t)?0===i.indexOf("outer")?t["inner"+e]:t.document.documentElement["client"+e]:9===t.nodeType?(r=t.documentElement,Math.max(t.body["scroll"+e],r["scroll"+e],t.body["offset"+e],r["offset"+e],r["client"+e])):void 0===o?we.css(t,n,s):we.style(t,n,o,s)},t,a?o:void 0,a)}})}),we.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,t){we.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),we.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),we.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,i){return this.on(t,e,n,i)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),we.proxy=function(e,t){var n,i,o;if("string"==typeof t&&(n=e[t],t=e,e=n),me(e))return i=le.call(arguments,2),o=function(){return e.apply(t||this,i.concat(le.call(arguments)))},o.guid=e.guid=e.guid||we.guid++,o},we.holdReady=function(e){e?we.readyWait++:we.ready(!0)},we.isArray=Array.isArray,we.parseJSON=JSON.parse,we.nodeName=r,we.isFunction=me,we.isWindow=xe,we.camelCase=d,we.type=i,we.now=Date.now,we.isNumeric=function(e){var t=we.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},"function"==typeof define&&define.amd&&define("jquery",[],function(){return we});var Jt=e.jQuery,Kt=e.$;return we.noConflict=function(t){return e.$===we&&(e.$=Kt),t&&e.jQuery===we&&(e.jQuery=Jt),we},t||(e.jQuery=e.$=we),we}),"undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(e){"use strict";var t=e.fn.jquery.split(" ")[0].split(".");if(t[0]<2&&t[1]<9||1==t[0]&&9==t[1]&&t[2]<1||t[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),function(e){"use strict";function t(){var e=document.createElement("bootstrap"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var n in t)if(void 0!==e.style[n])return{end:t[n]};return!1}e.fn.emulateTransitionEnd=function(t){var n=!1,i=this;e(this).one("bsTransitionEnd",function(){n=!0});var o=function(){n||e(i).trigger(e.support.transition.end)};return setTimeout(o,t),this},e(function(){e.support.transition=t(),e.support.transition&&(e.event.special.bsTransitionEnd={bindType:e.support.transition.end,delegateType:e.support.transition.end,handle:function(t){if(e(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}})})}(jQuery),function(e){"use strict";function t(t){return this.each(function(){var n=e(this),o=n.data("bs.alert");o||n.data("bs.alert",o=new i(this)),"string"==typeof t&&o[t].call(n)})}var n='[data-dismiss="alert"]',i=function(t){e(t).on("click",n,this.close)};i.VERSION="3.3.7",i.TRANSITION_DURATION=150,i.prototype.close=function(t){function n(){a.detach().trigger("closed.bs.alert").remove()}var o=e(this),r=o.attr("data-target");r||(r=o.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,""));var a=e("#"===r?[]:r);t&&t.preventDefault(),a.length||(a=o.closest(".alert")),a.trigger(t=e.Event("close.bs.alert")),t.isDefaultPrevented()||(a.removeClass("in"),e.support.transition&&a.hasClass("fade")?a.one("bsTransitionEnd",n).emulateTransitionEnd(i.TRANSITION_DURATION):n())};var o=e.fn.alert;e.fn.alert=t,e.fn.alert.Constructor=i,e.fn.alert.noConflict=function(){return e.fn.alert=o,this},e(document).on("click.bs.alert.data-api",n,i.prototype.close)}(jQuery),function(e){"use strict";function t(t){return this.each(function(){var i=e(this),o=i.data("bs.button"),r="object"==typeof t&&t;o||i.data("bs.button",o=new n(this,r)),"toggle"==t?o.toggle():t&&o.setState(t)})}var n=function(t,i){this.$element=e(t),this.options=e.extend({},n.DEFAULTS,i),this.isLoading=!1};n.VERSION="3.3.7",n.DEFAULTS={loadingText:"loading..."},n.prototype.setState=function(t){var n="disabled",i=this.$element,o=i.is("input")?"val":"html",r=i.data();t+="Text",null==r.resetText&&i.data("resetText",i[o]()),setTimeout(e.proxy(function(){i[o](null==r[t]?this.options[t]:r[t]),"loadingText"==t?(this.isLoading=!0,i.addClass(n).attr(n,n).prop(n,!0)):this.isLoading&&(this.isLoading=!1,i.removeClass(n).removeAttr(n).prop(n,!1))},this),0)},n.prototype.toggle=function(){var e=!0,t=this.$element.closest('[data-toggle="buttons"]');if(t.length){var n=this.$element.find("input");"radio"==n.prop("type")?(n.prop("checked")&&(e=!1),t.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==n.prop("type")&&(n.prop("checked")!==this.$element.hasClass("active")&&(e=!1),this.$element.toggleClass("active")),n.prop("checked",this.$element.hasClass("active")),e&&n.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var i=e.fn.button;e.fn.button=t,e.fn.button.Constructor=n,e.fn.button.noConflict=function(){return e.fn.button=i,this},e(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(n){var i=e(n.target).closest(".btn");t.call(i,"toggle"),e(n.target).is('input[type="radio"], input[type="checkbox"]')||(n.preventDefault(),i.is("input,button")?i.trigger("focus"):i.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(t){e(t.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(t.type))})}(jQuery),function(e){"use strict";function t(t){return this.each(function(){var i=e(this),o=i.data("bs.carousel"),r=e.extend({},n.DEFAULTS,i.data(),"object"==typeof t&&t),a="string"==typeof t?t:r.slide;o||i.data("bs.carousel",o=new n(this,r)),"number"==typeof t?o.to(t):a?o[a]():r.interval&&o.pause().cycle()})}var n=function(t,n){this.$element=e(t),this.$indicators=this.$element.find(".carousel-indicators"),this.options=n,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",e.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",e.proxy(this.pause,this)).on("mouseleave.bs.carousel",e.proxy(this.cycle,this))};n.VERSION="3.3.7",n.TRANSITION_DURATION=600,n.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},n.prototype.keydown=function(e){if(!/input|textarea/i.test(e.target.tagName)){switch(e.which){case 37:this.prev();break;case 39:this.next();break;default:return}e.preventDefault()}},n.prototype.cycle=function(t){return t||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(e.proxy(this.next,this),this.options.interval)),this},n.prototype.getItemIndex=function(e){return this.$items=e.parent().children(".item"),this.$items.index(e||this.$active)},n.prototype.getItemForDirection=function(e,t){var n=this.getItemIndex(t);if(("prev"==e&&0===n||"next"==e&&n==this.$items.length-1)&&!this.options.wrap)return t;var i="prev"==e?-1:1,o=(n+i)%this.$items.length;return this.$items.eq(o)},n.prototype.to=function(e){var t=this,n=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(e>this.$items.length-1||e<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){t.to(e)}):n==e?this.pause().cycle():this.slide(e>n?"next":"prev",this.$items.eq(e))},n.prototype.pause=function(t){return t||(this.paused=!0),this.$element.find(".next, .prev").length&&e.support.transition&&(this.$element.trigger(e.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},n.prototype.next=function(){if(!this.sliding)return this.slide("next")},n.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},n.prototype.slide=function(t,i){var o=this.$element.find(".item.active"),r=i||this.getItemForDirection(t,o),a=this.interval,s="next"==t?"left":"right",l=this;if(r.hasClass("active"))return this.sliding=!1;var c=r[0],u=e.Event("slide.bs.carousel",{relatedTarget:c,direction:s});if(this.$element.trigger(u),!u.isDefaultPrevented()){if(this.sliding=!0,a&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var p=e(this.$indicators.children()[this.getItemIndex(r)]);p&&p.addClass("active")}var h=e.Event("slid.bs.carousel",{relatedTarget:c,direction:s});return e.support.transition&&this.$element.hasClass("slide")?(r.addClass(t),r[0].offsetWidth,o.addClass(s),r.addClass(s),o.one("bsTransitionEnd",function(){r.removeClass([t,s].join(" ")).addClass("active"),o.removeClass(["active",s].join(" ")),l.sliding=!1,setTimeout(function(){l.$element.trigger(h)},0)}).emulateTransitionEnd(n.TRANSITION_DURATION)):(o.removeClass("active"),r.addClass("active"),this.sliding=!1,this.$element.trigger(h)),a&&this.cycle(),this}};var i=e.fn.carousel;e.fn.carousel=t,e.fn.carousel.Constructor=n,e.fn.carousel.noConflict=function(){return e.fn.carousel=i,this};var o=function(n){var i,o=e(this),r=e(o.attr("data-target")||(i=o.attr("href"))&&i.replace(/.*(?=#[^\s]+$)/,""));if(r.hasClass("carousel")){var a=e.extend({},r.data(),o.data()),s=o.attr("data-slide-to");s&&(a.interval=!1),t.call(r,a),s&&r.data("bs.carousel").to(s),n.preventDefault()}};e(document).on("click.bs.carousel.data-api","[data-slide]",o).on("click.bs.carousel.data-api","[data-slide-to]",o),e(window).on("load",function(){e('[data-ride="carousel"]').each(function(){var n=e(this);t.call(n,n.data())})})}(jQuery),function(e){"use strict";function t(t){var n,i=t.attr("data-target")||(n=t.attr("href"))&&n.replace(/.*(?=#[^\s]+$)/,"");return e(i)}function n(t){return this.each(function(){var n=e(this),o=n.data("bs.collapse"),r=e.extend({},i.DEFAULTS,n.data(),"object"==typeof t&&t);!o&&r.toggle&&/show|hide/.test(t)&&(r.toggle=!1),o||n.data("bs.collapse",o=new i(this,r)),"string"==typeof t&&o[t]()})}var i=function(t,n){this.$element=e(t),this.options=e.extend({},i.DEFAULTS,n),
+this.$trigger=e('[data-toggle="collapse"][href="#'+t.id+'"],[data-toggle="collapse"][data-target="#'+t.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};i.VERSION="3.3.7",i.TRANSITION_DURATION=350,i.DEFAULTS={toggle:!0},i.prototype.dimension=function(){return this.$element.hasClass("width")?"width":"height"},i.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var t,o=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(o&&o.length&&(t=o.data("bs.collapse"))&&t.transitioning)){var r=e.Event("show.bs.collapse");if(this.$element.trigger(r),!r.isDefaultPrevented()){o&&o.length&&(n.call(o,"hide"),t||o.data("bs.collapse",null));var a=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[a](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var s=function(){this.$element.removeClass("collapsing").addClass("collapse in")[a](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!e.support.transition)return s.call(this);var l=e.camelCase(["scroll",a].join("-"));this.$element.one("bsTransitionEnd",e.proxy(s,this)).emulateTransitionEnd(i.TRANSITION_DURATION)[a](this.$element[0][l])}}}},i.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var t=e.Event("hide.bs.collapse");if(this.$element.trigger(t),!t.isDefaultPrevented()){var n=this.dimension();this.$element[n](this.$element[n]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var o=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return e.support.transition?void this.$element[n](0).one("bsTransitionEnd",e.proxy(o,this)).emulateTransitionEnd(i.TRANSITION_DURATION):o.call(this)}}},i.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},i.prototype.getParent=function(){return e(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(e.proxy(function(n,i){var o=e(i);this.addAriaAndCollapsedClass(t(o),o)},this)).end()},i.prototype.addAriaAndCollapsedClass=function(e,t){var n=e.hasClass("in");e.attr("aria-expanded",n),t.toggleClass("collapsed",!n).attr("aria-expanded",n)};var o=e.fn.collapse;e.fn.collapse=n,e.fn.collapse.Constructor=i,e.fn.collapse.noConflict=function(){return e.fn.collapse=o,this},e(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(i){var o=e(this);o.attr("data-target")||i.preventDefault();var r=t(o),a=r.data("bs.collapse"),s=a?"toggle":o.data();n.call(r,s)})}(jQuery),function(e){"use strict";function t(t){var n=t.attr("data-target");n||(n=t.attr("href"),n=n&&/#[A-Za-z]/.test(n)&&n.replace(/.*(?=#[^\s]*$)/,""));var i=n&&e(n);return i&&i.length?i:t.parent()}function n(n){n&&3===n.which||(e(o).remove(),e(r).each(function(){var i=e(this),o=t(i),r={relatedTarget:this};o.hasClass("open")&&(n&&"click"==n.type&&/input|textarea/i.test(n.target.tagName)&&e.contains(o[0],n.target)||(o.trigger(n=e.Event("hide.bs.dropdown",r)),n.isDefaultPrevented()||(i.attr("aria-expanded","false"),o.removeClass("open").trigger(e.Event("hidden.bs.dropdown",r)))))}))}function i(t){return this.each(function(){var n=e(this),i=n.data("bs.dropdown");i||n.data("bs.dropdown",i=new a(this)),"string"==typeof t&&i[t].call(n)})}var o=".dropdown-backdrop",r='[data-toggle="dropdown"]',a=function(t){e(t).on("click.bs.dropdown",this.toggle)};a.VERSION="3.3.7",a.prototype.toggle=function(i){var o=e(this);if(!o.is(".disabled, :disabled")){var r=t(o),a=r.hasClass("open");if(n(),!a){"ontouchstart"in document.documentElement&&!r.closest(".navbar-nav").length&&e(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(e(this)).on("click",n);var s={relatedTarget:this};if(r.trigger(i=e.Event("show.bs.dropdown",s)),i.isDefaultPrevented())return;o.trigger("focus").attr("aria-expanded","true"),r.toggleClass("open").trigger(e.Event("shown.bs.dropdown",s))}return!1}},a.prototype.keydown=function(n){if(/(38|40|27|32)/.test(n.which)&&!/input|textarea/i.test(n.target.tagName)){var i=e(this);if(n.preventDefault(),n.stopPropagation(),!i.is(".disabled, :disabled")){var o=t(i),a=o.hasClass("open");if(!a&&27!=n.which||a&&27==n.which)return 27==n.which&&o.find(r).trigger("focus"),i.trigger("click");var s=o.find(".dropdown-menu li:not(.disabled):visible a");if(s.length){var l=s.index(n.target);38==n.which&&l>0&&l--,40==n.which&&l<s.length-1&&l++,~l||(l=0),s.eq(l).trigger("focus")}}}};var s=e.fn.dropdown;e.fn.dropdown=i,e.fn.dropdown.Constructor=a,e.fn.dropdown.noConflict=function(){return e.fn.dropdown=s,this},e(document).on("click.bs.dropdown.data-api",n).on("click.bs.dropdown.data-api",".dropdown form",function(e){e.stopPropagation()}).on("click.bs.dropdown.data-api",r,a.prototype.toggle).on("keydown.bs.dropdown.data-api",r,a.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",a.prototype.keydown)}(jQuery),function(e){"use strict";function t(t,i){return this.each(function(){var o=e(this),r=o.data("bs.modal"),a=e.extend({},n.DEFAULTS,o.data(),"object"==typeof t&&t);r||o.data("bs.modal",r=new n(this,a)),"string"==typeof t?r[t](i):a.show&&r.show(i)})}var n=function(t,n){this.options=n,this.$body=e(document.body),this.$element=e(t),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,e.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};n.VERSION="3.3.7",n.TRANSITION_DURATION=300,n.BACKDROP_TRANSITION_DURATION=150,n.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},n.prototype.toggle=function(e){return this.isShown?this.hide():this.show(e)},n.prototype.show=function(t){var i=this,o=e.Event("show.bs.modal",{relatedTarget:t});this.$element.trigger(o),this.isShown||o.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',e.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){i.$element.one("mouseup.dismiss.bs.modal",function(t){e(t.target).is(i.$element)&&(i.ignoreBackdropClick=!0)})}),this.backdrop(function(){var o=e.support.transition&&i.$element.hasClass("fade");i.$element.parent().length||i.$element.appendTo(i.$body),i.$element.show().scrollTop(0),i.adjustDialog(),o&&i.$element[0].offsetWidth,i.$element.addClass("in"),i.enforceFocus();var r=e.Event("shown.bs.modal",{relatedTarget:t});o?i.$dialog.one("bsTransitionEnd",function(){i.$element.trigger("focus").trigger(r)}).emulateTransitionEnd(n.TRANSITION_DURATION):i.$element.trigger("focus").trigger(r)}))},n.prototype.hide=function(t){t&&t.preventDefault(),t=e.Event("hide.bs.modal"),this.$element.trigger(t),this.isShown&&!t.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),e(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),e.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",e.proxy(this.hideModal,this)).emulateTransitionEnd(n.TRANSITION_DURATION):this.hideModal())},n.prototype.enforceFocus=function(){e(document).off("focusin.bs.modal").on("focusin.bs.modal",e.proxy(function(e){document===e.target||this.$element[0]===e.target||this.$element.has(e.target).length||this.$element.trigger("focus")},this))},n.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",e.proxy(function(e){27==e.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},n.prototype.resize=function(){this.isShown?e(window).on("resize.bs.modal",e.proxy(this.handleUpdate,this)):e(window).off("resize.bs.modal")},n.prototype.hideModal=function(){var e=this;this.$element.hide(),this.backdrop(function(){e.$body.removeClass("modal-open"),e.resetAdjustments(),e.resetScrollbar(),e.$element.trigger("hidden.bs.modal")})},n.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},n.prototype.backdrop=function(t){var i=this,o=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var r=e.support.transition&&o;if(this.$backdrop=e(document.createElement("div")).addClass("modal-backdrop "+o).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",e.proxy(function(e){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(e.target===e.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),r&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!t)return;r?this.$backdrop.one("bsTransitionEnd",t).emulateTransitionEnd(n.BACKDROP_TRANSITION_DURATION):t()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var a=function(){i.removeBackdrop(),t&&t()};e.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",a).emulateTransitionEnd(n.BACKDROP_TRANSITION_DURATION):a()}else t&&t()},n.prototype.handleUpdate=function(){this.adjustDialog()},n.prototype.adjustDialog=function(){var e=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&e?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!e?this.scrollbarWidth:""})},n.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},n.prototype.checkScrollbar=function(){var e=window.innerWidth;if(!e){var t=document.documentElement.getBoundingClientRect();e=t.right-Math.abs(t.left)}this.bodyIsOverflowing=document.body.clientWidth<e,this.scrollbarWidth=this.measureScrollbar()},n.prototype.setScrollbar=function(){var e=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",e+this.scrollbarWidth)},n.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},n.prototype.measureScrollbar=function(){var e=document.createElement("div");e.className="modal-scrollbar-measure",this.$body.append(e);var t=e.offsetWidth-e.clientWidth;return this.$body[0].removeChild(e),t};var i=e.fn.modal;e.fn.modal=t,e.fn.modal.Constructor=n,e.fn.modal.noConflict=function(){return e.fn.modal=i,this},e(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(n){var i=e(this),o=i.attr("href"),r=e(i.attr("data-target")||o&&o.replace(/.*(?=#[^\s]+$)/,"")),a=r.data("bs.modal")?"toggle":e.extend({remote:!/#/.test(o)&&o},r.data(),i.data());i.is("a")&&n.preventDefault(),r.one("show.bs.modal",function(e){e.isDefaultPrevented()||r.one("hidden.bs.modal",function(){i.is(":visible")&&i.trigger("focus")})}),t.call(r,a,this)})}(jQuery),function(e){"use strict";function t(t){return this.each(function(){var i=e(this),o=i.data("bs.tooltip"),r="object"==typeof t&&t;!o&&/destroy|hide/.test(t)||(o||i.data("bs.tooltip",o=new n(this,r)),"string"==typeof t&&o[t]())})}var n=function(e,t){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",e,t)};n.VERSION="3.3.7",n.TRANSITION_DURATION=150,n.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},n.prototype.init=function(t,n,i){if(this.enabled=!0,this.type=t,this.$element=e(n),this.options=this.getOptions(i),this.$viewport=this.options.viewport&&e(e.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var o=this.options.trigger.split(" "),r=o.length;r--;){var a=o[r];if("click"==a)this.$element.on("click."+this.type,this.options.selector,e.proxy(this.toggle,this));else if("manual"!=a){var s="hover"==a?"mouseenter":"focusin",l="hover"==a?"mouseleave":"focusout";this.$element.on(s+"."+this.type,this.options.selector,e.proxy(this.enter,this)),this.$element.on(l+"."+this.type,this.options.selector,e.proxy(this.leave,this))}}this.options.selector?this._options=e.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},n.prototype.getDefaults=function(){return n.DEFAULTS},n.prototype.getOptions=function(t){return t=e.extend({},this.getDefaults(),this.$element.data(),t),t.delay&&"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),t},n.prototype.getDelegateOptions=function(){var t={},n=this.getDefaults();return this._options&&e.each(this._options,function(e,i){n[e]!=i&&(t[e]=i)}),t},n.prototype.enter=function(t){var n=t instanceof this.constructor?t:e(t.currentTarget).data("bs."+this.type);return n||(n=new this.constructor(t.currentTarget,this.getDelegateOptions()),e(t.currentTarget).data("bs."+this.type,n)),t instanceof e.Event&&(n.inState["focusin"==t.type?"focus":"hover"]=!0),n.tip().hasClass("in")||"in"==n.hoverState?void(n.hoverState="in"):(clearTimeout(n.timeout),n.hoverState="in",n.options.delay&&n.options.delay.show?void(n.timeout=setTimeout(function(){"in"==n.hoverState&&n.show()},n.options.delay.show)):n.show())},n.prototype.isInStateTrue=function(){for(var e in this.inState)if(this.inState[e])return!0;return!1},n.prototype.leave=function(t){var n=t instanceof this.constructor?t:e(t.currentTarget).data("bs."+this.type);if(n||(n=new this.constructor(t.currentTarget,this.getDelegateOptions()),e(t.currentTarget).data("bs."+this.type,n)),t instanceof e.Event&&(n.inState["focusout"==t.type?"focus":"hover"]=!1),!n.isInStateTrue())return clearTimeout(n.timeout),n.hoverState="out",n.options.delay&&n.options.delay.hide?void(n.timeout=setTimeout(function(){"out"==n.hoverState&&n.hide()},n.options.delay.hide)):n.hide()},n.prototype.show=function(){var t=e.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(t);var i=e.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(t.isDefaultPrevented()||!i)return;var o=this,r=this.tip(),a=this.getUID(this.type);this.setContent(),r.attr("id",a),this.$element.attr("aria-describedby",a),this.options.animation&&r.addClass("fade");var s="function"==typeof this.options.placement?this.options.placement.call(this,r[0],this.$element[0]):this.options.placement,l=/\s?auto?\s?/i,c=l.test(s);c&&(s=s.replace(l,"")||"top"),r.detach().css({top:0,left:0,display:"block"}).addClass(s).data("bs."+this.type,this),this.options.container?r.appendTo(this.options.container):r.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var u=this.getPosition(),p=r[0].offsetWidth,h=r[0].offsetHeight;if(c){var f=s,d=this.getPosition(this.$viewport);s="bottom"==s&&u.bottom+h>d.bottom?"top":"top"==s&&u.top-h<d.top?"bottom":"right"==s&&u.right+p>d.width?"left":"left"==s&&u.left-p<d.left?"right":s,r.removeClass(f).addClass(s)}var y=this.getCalculatedOffset(s,u,p,h);this.applyPlacement(y,s);var v=function(){var e=o.hoverState;o.$element.trigger("shown.bs."+o.type),o.hoverState=null,"out"==e&&o.leave(o)};e.support.transition&&this.$tip.hasClass("fade")?r.one("bsTransitionEnd",v).emulateTransitionEnd(n.TRANSITION_DURATION):v()}},n.prototype.applyPlacement=function(t,n){var i=this.tip(),o=i[0].offsetWidth,r=i[0].offsetHeight,a=parseInt(i.css("margin-top"),10),s=parseInt(i.css("margin-left"),10);isNaN(a)&&(a=0),isNaN(s)&&(s=0),t.top+=a,t.left+=s,e.offset.setOffset(i[0],e.extend({using:function(e){i.css({top:Math.round(e.top),left:Math.round(e.left)})}},t),0),i.addClass("in");var l=i[0].offsetWidth,c=i[0].offsetHeight;"top"==n&&c!=r&&(t.top=t.top+r-c);var u=this.getViewportAdjustedDelta(n,t,l,c);u.left?t.left+=u.left:t.top+=u.top;var p=/top|bottom/.test(n),h=p?2*u.left-o+l:2*u.top-r+c,f=p?"offsetWidth":"offsetHeight";i.offset(t),this.replaceArrow(h,i[0][f],p)},n.prototype.replaceArrow=function(e,t,n){this.arrow().css(n?"left":"top",50*(1-e/t)+"%").css(n?"top":"left","")},n.prototype.setContent=function(){var e=this.tip(),t=this.getTitle();e.find(".tooltip-inner")[this.options.html?"html":"text"](t),e.removeClass("fade in top bottom left right")},n.prototype.hide=function(t){function i(){"in"!=o.hoverState&&r.detach(),o.$element&&o.$element.removeAttr("aria-describedby").trigger("hidden.bs."+o.type),t&&t()}var o=this,r=e(this.$tip),a=e.Event("hide.bs."+this.type);if(this.$element.trigger(a),!a.isDefaultPrevented())return r.removeClass("in"),e.support.transition&&r.hasClass("fade")?r.one("bsTransitionEnd",i).emulateTransitionEnd(n.TRANSITION_DURATION):i(),this.hoverState=null,this},n.prototype.fixTitle=function(){var e=this.$element;(e.attr("title")||"string"!=typeof e.attr("data-original-title"))&&e.attr("data-original-title",e.attr("title")||"").attr("title","")},n.prototype.hasContent=function(){return this.getTitle()},n.prototype.getPosition=function(t){t=t||this.$element;var n=t[0],i="BODY"==n.tagName,o=n.getBoundingClientRect();null==o.width&&(o=e.extend({},o,{width:o.right-o.left,height:o.bottom-o.top}));var r=window.SVGElement&&n instanceof window.SVGElement,a=i?{top:0,left:0}:r?null:t.offset(),s={scroll:i?document.documentElement.scrollTop||document.body.scrollTop:t.scrollTop()},l=i?{width:e(window).width(),height:e(window).height()}:null;return e.extend({},o,s,l,a)},n.prototype.getCalculatedOffset=function(e,t,n,i){return"bottom"==e?{top:t.top+t.height,left:t.left+t.width/2-n/2}:"top"==e?{top:t.top-i,left:t.left+t.width/2-n/2}:"left"==e?{top:t.top+t.height/2-i/2,left:t.left-n}:{top:t.top+t.height/2-i/2,left:t.left+t.width}},n.prototype.getViewportAdjustedDelta=function(e,t,n,i){var o={top:0,left:0};if(!this.$viewport)return o;var r=this.options.viewport&&this.options.viewport.padding||0,a=this.getPosition(this.$viewport);if(/right|left/.test(e)){var s=t.top-r-a.scroll,l=t.top+r-a.scroll+i;s<a.top?o.top=a.top-s:l>a.top+a.height&&(o.top=a.top+a.height-l)}else{var c=t.left-r,u=t.left+r+n;c<a.left?o.left=a.left-c:u>a.right&&(o.left=a.left+a.width-u)}return o},n.prototype.getTitle=function(){var e=this.$element,t=this.options;return e.attr("data-original-title")||("function"==typeof t.title?t.title.call(e[0]):t.title)},n.prototype.getUID=function(e){do{e+=~~(1e6*Math.random())}while(document.getElementById(e));return e},n.prototype.tip=function(){if(!this.$tip&&(this.$tip=e(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},n.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},n.prototype.enable=function(){this.enabled=!0},n.prototype.disable=function(){this.enabled=!1},n.prototype.toggleEnabled=function(){this.enabled=!this.enabled},n.prototype.toggle=function(t){var n=this;t&&((n=e(t.currentTarget).data("bs."+this.type))||(n=new this.constructor(t.currentTarget,this.getDelegateOptions()),e(t.currentTarget).data("bs."+this.type,n))),t?(n.inState.click=!n.inState.click,n.isInStateTrue()?n.enter(n):n.leave(n)):n.tip().hasClass("in")?n.leave(n):n.enter(n)},n.prototype.destroy=function(){var e=this;clearTimeout(this.timeout),this.hide(function(){e.$element.off("."+e.type).removeData("bs."+e.type),e.$tip&&e.$tip.detach(),e.$tip=null,e.$arrow=null,e.$viewport=null,e.$element=null})};var i=e.fn.tooltip;e.fn.tooltip=t,e.fn.tooltip.Constructor=n,e.fn.tooltip.noConflict=function(){return e.fn.tooltip=i,this}}(jQuery),function(e){"use strict";function t(t){return this.each(function(){var i=e(this),o=i.data("bs.popover"),r="object"==typeof t&&t;!o&&/destroy|hide/.test(t)||(o||i.data("bs.popover",o=new n(this,r)),"string"==typeof t&&o[t]())})}var n=function(e,t){this.init("popover",e,t)};if(!e.fn.tooltip)throw new Error("Popover requires tooltip.js");n.VERSION="3.3.7",n.DEFAULTS=e.extend({},e.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),n.prototype=e.extend({},e.fn.tooltip.Constructor.prototype),n.prototype.constructor=n,n.prototype.getDefaults=function(){return n.DEFAULTS},n.prototype.setContent=function(){var e=this.tip(),t=this.getTitle(),n=this.getContent();e.find(".popover-title")[this.options.html?"html":"text"](t),e.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof n?"html":"append":"text"](n),e.removeClass("fade top bottom left right in"),e.find(".popover-title").html()||e.find(".popover-title").hide()},n.prototype.hasContent=function(){return this.getTitle()||this.getContent()},n.prototype.getContent=function(){var e=this.$element,t=this.options;return e.attr("data-content")||("function"==typeof t.content?t.content.call(e[0]):t.content)},n.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var i=e.fn.popover;e.fn.popover=t,e.fn.popover.Constructor=n,e.fn.popover.noConflict=function(){return e.fn.popover=i,this}}(jQuery),function(e){"use strict";function t(n,i){this.$body=e(document.body),this.$scrollElement=e(e(n).is(document.body)?window:n),this.options=e.extend({},t.DEFAULTS,i),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",e.proxy(this.process,this)),this.refresh(),this.process()}function n(n){return this.each(function(){var i=e(this),o=i.data("bs.scrollspy"),r="object"==typeof n&&n;o||i.data("bs.scrollspy",o=new t(this,r)),"string"==typeof n&&o[n]()})}t.VERSION="3.3.7",t.DEFAULTS={offset:10},t.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},t.prototype.refresh=function(){var t=this,n="offset",i=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),e.isWindow(this.$scrollElement[0])||(n="position",i=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var t=e(this),o=t.data("target")||t.attr("href"),r=/^#./.test(o)&&e(o);return r&&r.length&&r.is(":visible")&&[[r[n]().top+i,o]]||null}).sort(function(e,t){return e[0]-t[0]}).each(function(){t.offsets.push(this[0]),t.targets.push(this[1])})},t.prototype.process=function(){var e,t=this.$scrollElement.scrollTop()+this.options.offset,n=this.getScrollHeight(),i=this.options.offset+n-this.$scrollElement.height(),o=this.offsets,r=this.targets,a=this.activeTarget;if(this.scrollHeight!=n&&this.refresh(),t>=i)return a!=(e=r[r.length-1])&&this.activate(e);if(a&&t<o[0])return this.activeTarget=null,this.clear();for(e=o.length;e--;)a!=r[e]&&t>=o[e]&&(void 0===o[e+1]||t<o[e+1])&&this.activate(r[e])},t.prototype.activate=function(t){this.activeTarget=t,this.clear();var n=this.selector+'[data-target="'+t+'"],'+this.selector+'[href="'+t+'"]',i=e(n).parents("li").addClass("active");i.parent(".dropdown-menu").length&&(i=i.closest("li.dropdown").addClass("active")),i.trigger("activate.bs.scrollspy")},t.prototype.clear=function(){e(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var i=e.fn.scrollspy;e.fn.scrollspy=n,e.fn.scrollspy.Constructor=t,e.fn.scrollspy.noConflict=function(){return e.fn.scrollspy=i,this},e(window).on("load.bs.scrollspy.data-api",function(){e('[data-spy="scroll"]').each(function(){var t=e(this);n.call(t,t.data())})})}(jQuery),function(e){"use strict";function t(t){return this.each(function(){var i=e(this),o=i.data("bs.tab");o||i.data("bs.tab",o=new n(this)),"string"==typeof t&&o[t]()})}var n=function(t){this.element=e(t)};n.VERSION="3.3.7",n.TRANSITION_DURATION=150,n.prototype.show=function(){var t=this.element,n=t.closest("ul:not(.dropdown-menu)"),i=t.data("target");if(i||(i=t.attr("href"),i=i&&i.replace(/.*(?=#[^\s]*$)/,"")),!t.parent("li").hasClass("active")){var o=n.find(".active:last a"),r=e.Event("hide.bs.tab",{relatedTarget:t[0]}),a=e.Event("show.bs.tab",{relatedTarget:o[0]});if(o.trigger(r),t.trigger(a),!a.isDefaultPrevented()&&!r.isDefaultPrevented()){var s=e(i);this.activate(t.closest("li"),n),this.activate(s,s.parent(),function(){o.trigger({type:"hidden.bs.tab",relatedTarget:t[0]}),t.trigger({type:"shown.bs.tab",relatedTarget:o[0]})})}}},n.prototype.activate=function(t,i,o){function r(){a.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),t.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),s?(t[0].offsetWidth,t.addClass("in")):t.removeClass("fade"),t.parent(".dropdown-menu").length&&t.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),o&&o()}var a=i.find("> .active"),s=o&&e.support.transition&&(a.length&&a.hasClass("fade")||!!i.find("> .fade").length);a.length&&s?a.one("bsTransitionEnd",r).emulateTransitionEnd(n.TRANSITION_DURATION):r(),a.removeClass("in")};var i=e.fn.tab;e.fn.tab=t,e.fn.tab.Constructor=n,e.fn.tab.noConflict=function(){return e.fn.tab=i,this};var o=function(n){n.preventDefault(),t.call(e(this),"show")};e(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',o).on("click.bs.tab.data-api",'[data-toggle="pill"]',o)}(jQuery),function(e){"use strict";function t(t){return this.each(function(){var i=e(this),o=i.data("bs.affix"),r="object"==typeof t&&t;o||i.data("bs.affix",o=new n(this,r)),"string"==typeof t&&o[t]()})}var n=function(t,i){this.options=e.extend({},n.DEFAULTS,i),this.$target=e(this.options.target).on("scroll.bs.affix.data-api",e.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",e.proxy(this.checkPositionWithEventLoop,this)),this.$element=e(t),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};n.VERSION="3.3.7",n.RESET="affix affix-top affix-bottom",n.DEFAULTS={offset:0,target:window},n.prototype.getState=function(e,t,n,i){var o=this.$target.scrollTop(),r=this.$element.offset(),a=this.$target.height();if(null!=n&&"top"==this.affixed)return o<n&&"top";if("bottom"==this.affixed)return null!=n?!(o+this.unpin<=r.top)&&"bottom":!(o+a<=e-i)&&"bottom";var s=null==this.affixed,l=s?o:r.top,c=s?a:t;return null!=n&&o<=n?"top":null!=i&&l+c>=e-i&&"bottom"},n.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(n.RESET).addClass("affix");var e=this.$target.scrollTop(),t=this.$element.offset();return this.pinnedOffset=t.top-e},n.prototype.checkPositionWithEventLoop=function(){setTimeout(e.proxy(this.checkPosition,this),1)},n.prototype.checkPosition=function(){if(this.$element.is(":visible")){var t=this.$element.height(),i=this.options.offset,o=i.top,r=i.bottom,a=Math.max(e(document).height(),e(document.body).height());"object"!=typeof i&&(r=o=i),"function"==typeof o&&(o=i.top(this.$element)),"function"==typeof r&&(r=i.bottom(this.$element));var s=this.getState(a,t,o,r);if(this.affixed!=s){null!=this.unpin&&this.$element.css("top","");var l="affix"+(s?"-"+s:""),c=e.Event(l+".bs.affix");if(this.$element.trigger(c),c.isDefaultPrevented())return;this.affixed=s,this.unpin="bottom"==s?this.getPinnedOffset():null,this.$element.removeClass(n.RESET).addClass(l).trigger(l.replace("affix","affixed")+".bs.affix")}"bottom"==s&&this.$element.offset({top:a-t-r})}};var i=e.fn.affix;e.fn.affix=t,e.fn.affix.Constructor=n,e.fn.affix.noConflict=function(){return e.fn.affix=i,this},e(window).on("load",function(){e('[data-spy="affix"]').each(function(){var n=e(this),i=n.data();i.offset=i.offset||{},null!=i.offsetBottom&&(i.offset.bottom=i.offsetBottom),null!=i.offsetTop&&(i.offset.top=i.offsetTop),t.call(n,i)})})}(jQuery),function(e){if(!e.hasInitialised){var t={escapeRegExp:function(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")},hasClass:function(e,t){var n=" ";return 1===e.nodeType&&(n+e.className+n).replace(/[\n\t]/g,n).indexOf(n+t+n)>=0},addClass:function(e,t){e.className+=" "+t},removeClass:function(e,t){var n=new RegExp("\\b"+this.escapeRegExp(t)+"\\b");e.className=e.className.replace(n,"")},interpolateString:function(e,t){var n=/{{([a-z][a-z0-9\-_]*)}}/gi;return e.replace(n,function(e){return t(arguments[1])||""})},getCookie:function(e){var t="; "+document.cookie,n=t.split("; "+e+"=");return n.length<2?void 0:n.pop().split(";").shift()},setCookie:function(e,t,n,i,o){var r=new Date;r.setDate(r.getDate()+(n||365));var a=[e+"="+t,"expires="+r.toUTCString(),"path="+(o||"/")];i&&a.push("domain="+i),document.cookie=a.join(";")},deepExtend:function(e,t){for(var n in t)t.hasOwnProperty(n)&&(n in e&&this.isPlainObject(e[n])&&this.isPlainObject(t[n])?this.deepExtend(e[n],t[n]):e[n]=t[n]);return e},throttle:function(e,t){var n=!1;return function(){n||(e.apply(this,arguments),n=!0,setTimeout(function(){n=!1},t))}},hash:function(e){var t,n,i,o=0;if(0===e.length)return o;for(t=0,i=e.length;t<i;++t)n=e.charCodeAt(t),o=(o<<5)-o+n,o|=0;return o},normaliseHex:function(e){return"#"==e[0]&&(e=e.substr(1)),3==e.length&&(e=e[0]+e[0]+e[1]+e[1]+e[2]+e[2]),e},getContrast:function(e){return e=this.normaliseHex(e),(299*parseInt(e.substr(0,2),16)+587*parseInt(e.substr(2,2),16)+114*parseInt(e.substr(4,2),16))/1e3>=128?"#000":"#fff"},getLuminance:function(e){var t=parseInt(this.normaliseHex(e),16),n=38+(t>>16),i=38+(t>>8&255),o=38+(255&t);return"#"+(16777216+65536*(n<255?n<1?0:n:255)+256*(i<255?i<1?0:i:255)+(o<255?o<1?0:o:255)).toString(16).slice(1)},isMobile:function(){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)},isPlainObject:function(e){return"object"==typeof e&&null!==e&&e.constructor==Object}};e.status={deny:"deny",allow:"allow",dismiss:"dismiss"},e.transitionEnd=function(){var e=document.createElement("div"),t={t:"transitionend",OT:"oTransitionEnd",msT:"MSTransitionEnd",MozT:"transitionend",WebkitT:"webkitTransitionEnd"};for(var n in t)if(t.hasOwnProperty(n)&&void 0!==e.style[n+"ransition"])return t[n];return""}(),e.hasTransition=!!e.transitionEnd;var n=Object.keys(e.status).map(t.escapeRegExp);e.customStyles={},e.Popup=function(){function i(){this.initialise.apply(this,arguments)}function o(e){this.openingTimeout=null,t.removeClass(e,"cc-invisible")}function r(t){t.style.display="none",t.removeEventListener(e.transitionEnd,this.afterTransition),this.afterTransition=null}function a(){var t=this.options.onInitialise.bind(this);if(!window.navigator.cookieEnabled)return t(e.status.deny),!0;if(window.CookiesOK||window.navigator.CookiesOK)return t(e.status.allow),!0;var n=Object.keys(e.status),i=this.getStatus(),o=n.indexOf(i)>=0;return o&&t(i),o}function s(){var e=this.options.position.split("-"),t=[];return e.forEach(function(e){t.push("cc-"+e)}),t}function l(){var e=this.options,n="top"==e.position||"bottom"==e.position?"banner":"floating";t.isMobile()&&(n="floating");var i=["cc-"+n,"cc-type-"+e.type,"cc-theme-"+e.theme];e.static&&i.push("cc-static"),i.push.apply(i,s.call(this));h.call(this,this.options.palette);return this.customStyleSelector&&i.push(this.customStyleSelector),i}function c(){var e={},n=this.options;n.showLink||(n.elements.link="",n.elements.messagelink=n.elements.message),Object.keys(n.elements).forEach(function(i){e[i]=t.interpolateString(n.elements[i],function(e){
+var t=n.content[e];return e&&"string"==typeof t&&t.length?t:""})});var i=n.compliance[n.type];i||(i=n.compliance.info),e.compliance=t.interpolateString(i,function(t){return e[t]});var o=n.layouts[n.layout];return o||(o=n.layouts.basic),t.interpolateString(o,function(t){return e[t]})}function u(n){var i=this.options,o=document.createElement("div"),r=i.container&&1===i.container.nodeType?i.container:document.body;o.innerHTML=n;var a=o.children[0];return a.style.display="none",t.hasClass(a,"cc-window")&&e.hasTransition&&t.addClass(a,"cc-invisible"),this.onButtonClick=p.bind(this),a.addEventListener("click",this.onButtonClick),i.autoAttach&&(r.firstChild?r.insertBefore(a,r.firstChild):r.appendChild(a)),a}function p(i){var o=i.target;if(t.hasClass(o,"cc-btn")){var r=o.className.match(new RegExp("\\bcc-("+n.join("|")+")\\b")),a=r&&r[1]||!1;a&&(this.setStatus(a),this.close(!0))}t.hasClass(o,"cc-close")&&(this.setStatus(e.status.dismiss),this.close(!0)),t.hasClass(o,"cc-revoke")&&this.revokeChoice()}function h(e){var n=t.hash(JSON.stringify(e)),i="cc-color-override-"+n,o=t.isPlainObject(e);return this.customStyleSelector=o?i:null,o&&f(n,e,"."+i),o}function f(n,i,o){if(e.customStyles[n])return void++e.customStyles[n].references;var r={},a=i.popup,s=i.button,l=i.highlight;a&&(a.text=a.text?a.text:t.getContrast(a.background),a.link=a.link?a.link:a.text,r[o+".cc-window"]=["color: "+a.text,"background-color: "+a.background],r[o+".cc-revoke"]=["color: "+a.text,"background-color: "+a.background],r[o+" .cc-link,"+o+" .cc-link:active,"+o+" .cc-link:visited"]=["color: "+a.link],s&&(s.text=s.text?s.text:t.getContrast(s.background),s.border=s.border?s.border:"transparent",r[o+" .cc-btn"]=["color: "+s.text,"border-color: "+s.border,"background-color: "+s.background],"transparent"!=s.background&&(r[o+" .cc-btn:hover, "+o+" .cc-btn:focus"]=["background-color: "+d(s.background)]),l?(l.text=l.text?l.text:t.getContrast(l.background),l.border=l.border?l.border:"transparent",r[o+" .cc-highlight .cc-btn:first-child"]=["color: "+l.text,"border-color: "+l.border,"background-color: "+l.background]):r[o+" .cc-highlight .cc-btn:first-child"]=["color: "+a.text]));var c=document.createElement("style");document.head.appendChild(c),e.customStyles[n]={references:1,element:c.sheet};var u=-1;for(var p in r)r.hasOwnProperty(p)&&c.sheet.insertRule(p+"{"+r[p].join(";")+"}",++u)}function d(e){return e=t.normaliseHex(e),"000000"==e?"#222":t.getLuminance(e)}function y(n){if(t.isPlainObject(n)){var i=t.hash(JSON.stringify(n)),o=e.customStyles[i];if(o&&!--o.references){var r=o.element.ownerNode;r&&r.parentNode&&r.parentNode.removeChild(r),e.customStyles[i]=null}}}function v(e,t){for(var n=0,i=e.length;n<i;++n){var o=e[n];if(o instanceof RegExp&&o.test(t)||"string"==typeof o&&o.length&&o===t)return!0}return!1}function g(){var t=this.setStatus.bind(this),n=this.options.dismissOnTimeout;"number"==typeof n&&n>=0&&(this.dismissTimeout=window.setTimeout(function(){t(e.status.dismiss)},Math.floor(n)));var i=this.options.dismissOnScroll;if("number"==typeof i&&i>=0){var o=function(n){window.pageYOffset>Math.floor(i)&&(t(e.status.dismiss),window.removeEventListener("scroll",o),this.onWindowScroll=null)};this.onWindowScroll=o,window.addEventListener("scroll",o)}}function m(){if("info"!=this.options.type&&(this.options.revokable=!0),t.isMobile()&&(this.options.animateRevokable=!1),this.options.revokable){var e=s.call(this);this.options.animateRevokable&&e.push("cc-animate"),this.customStyleSelector&&e.push(this.customStyleSelector);var n=this.options.revokeBtn.replace("{{classes}}",e.join(" "));this.revokeBtn=u.call(this,n);var i=this.revokeBtn;if(this.options.animateRevokable){var o=t.throttle(function(e){var n=!1,o=window.innerHeight-20;t.hasClass(i,"cc-top")&&e.clientY<20&&(n=!0),t.hasClass(i,"cc-bottom")&&e.clientY>o&&(n=!0),n?t.hasClass(i,"cc-active")||t.addClass(i,"cc-active"):t.hasClass(i,"cc-active")&&t.removeClass(i,"cc-active")},200);this.onMouseMove=o,window.addEventListener("mousemove",o)}}}var x={enabled:!0,container:null,cookie:{name:"cookieconsent_status",path:"/",domain:"",expiryDays:365},onPopupOpen:function(){},onPopupClose:function(){},onInitialise:function(e){},onStatusChange:function(e,t){},onRevokeChoice:function(){},content:{header:"Cookies used on the website!",message:"This website uses cookies to ensure you get the best experience on our website.",dismiss:"Got it!",allow:"Allow cookies",deny:"Decline",link:"Learn more",href:"http://cookiesandyou.com",close:"&#x274c;"},elements:{header:'<span class="cc-header">{{header}}</span>&nbsp;',message:'<span id="cookieconsent:desc" class="cc-message">{{message}}</span>',messagelink:'<span id="cookieconsent:desc" class="cc-message">{{message}} <a aria-label="learn more about cookies" role=button tabindex="0" class="cc-link" href="{{href}}" rel="noopener noreferrer nofollow" target="_blank">{{link}}</a></span>',dismiss:'<a aria-label="dismiss cookie message" role=button tabindex="0" class="cc-btn cc-dismiss">{{dismiss}}</a>',allow:'<a aria-label="allow cookies" role=button tabindex="0"  class="cc-btn cc-allow">{{allow}}</a>',deny:'<a aria-label="deny cookies" role=button tabindex="0" class="cc-btn cc-deny">{{deny}}</a>',link:'<a aria-label="learn more about cookies" role=button tabindex="0" class="cc-link" href="{{href}}" target="_blank">{{link}}</a>',close:'<span aria-label="dismiss cookie message" role=button tabindex="0" class="cc-close">{{close}}</span>'},window:'<div role="dialog" aria-live="polite" aria-label="cookieconsent" aria-describedby="cookieconsent:desc" class="cc-window {{classes}}">\x3c!--googleoff: all--\x3e{{children}}\x3c!--googleon: all--\x3e</div>',revokeBtn:'<div class="cc-revoke {{classes}}">Cookie Policy</div>',compliance:{info:'<div class="cc-compliance">{{dismiss}}</div>',"opt-in":'<div class="cc-compliance cc-highlight">{{dismiss}}{{allow}}</div>',"opt-out":'<div class="cc-compliance cc-highlight">{{deny}}{{dismiss}}</div>'},type:"info",layouts:{basic:"{{messagelink}}{{compliance}}","basic-close":"{{messagelink}}{{compliance}}{{close}}","basic-header":"{{header}}{{message}}{{link}}{{compliance}}"},layout:"basic",position:"bottom",theme:"block",static:!1,palette:null,revokable:!1,animateRevokable:!0,showLink:!0,dismissOnScroll:!1,dismissOnTimeout:!1,autoOpen:!0,autoAttach:!0,whitelistPage:[],blacklistPage:[],overrideHTML:null};return i.prototype.initialise=function(e){this.options&&this.destroy(),t.deepExtend(this.options={},x),t.isPlainObject(e)&&t.deepExtend(this.options,e),a.call(this)&&(this.options.enabled=!1),v(this.options.blacklistPage,location.pathname)&&(this.options.enabled=!1),v(this.options.whitelistPage,location.pathname)&&(this.options.enabled=!0);var n=this.options.window.replace("{{classes}}",l.call(this).join(" ")).replace("{{children}}",c.call(this)),i=this.options.overrideHTML;if("string"==typeof i&&i.length&&(n=i),this.options.static){var o=u.call(this,'<div class="cc-grower">'+n+"</div>");o.style.display="",this.element=o.firstChild,this.element.style.display="none",t.addClass(this.element,"cc-invisible")}else this.element=u.call(this,n);g.call(this),m.call(this),this.options.autoOpen&&this.autoOpen()},i.prototype.destroy=function(){this.onButtonClick&&this.element&&(this.element.removeEventListener("click",this.onButtonClick),this.onButtonClick=null),this.dismissTimeout&&(clearTimeout(this.dismissTimeout),this.dismissTimeout=null),this.onWindowScroll&&(window.removeEventListener("scroll",this.onWindowScroll),this.onWindowScroll=null),this.onMouseMove&&(window.removeEventListener("mousemove",this.onMouseMove),this.onMouseMove=null),this.element&&this.element.parentNode&&this.element.parentNode.removeChild(this.element),this.element=null,this.revokeBtn&&this.revokeBtn.parentNode&&this.revokeBtn.parentNode.removeChild(this.revokeBtn),this.revokeBtn=null,y(this.options.palette),this.options=null},i.prototype.open=function(t){if(this.element)return this.isOpen()||(e.hasTransition?this.fadeIn():this.element.style.display="",this.options.revokable&&this.toggleRevokeButton(),this.options.onPopupOpen.call(this)),this},i.prototype.close=function(t){if(this.element)return this.isOpen()&&(e.hasTransition?this.fadeOut():this.element.style.display="none",t&&this.options.revokable&&this.toggleRevokeButton(!0),this.options.onPopupClose.call(this)),this},i.prototype.fadeIn=function(){var n=this.element;if(e.hasTransition&&n&&(this.afterTransition&&r.call(this,n),t.hasClass(n,"cc-invisible"))){if(n.style.display="",this.options.static){var i=this.element.clientHeight;this.element.parentNode.style.maxHeight=i+"px"}this.openingTimeout=setTimeout(o.bind(this,n),20)}},i.prototype.fadeOut=function(){var n=this.element;e.hasTransition&&n&&(this.openingTimeout&&(clearTimeout(this.openingTimeout),o.bind(this,n)),t.hasClass(n,"cc-invisible")||(this.options.static&&(this.element.parentNode.style.maxHeight=""),this.afterTransition=r.bind(this,n),n.addEventListener(e.transitionEnd,this.afterTransition),t.addClass(n,"cc-invisible")))},i.prototype.isOpen=function(){return this.element&&""==this.element.style.display&&(!e.hasTransition||!t.hasClass(this.element,"cc-invisible"))},i.prototype.toggleRevokeButton=function(e){this.revokeBtn&&(this.revokeBtn.style.display=e?"":"none")},i.prototype.revokeChoice=function(e){this.options.enabled=!0,this.clearStatus(),this.options.onRevokeChoice.call(this),e||this.autoOpen()},i.prototype.hasAnswered=function(t){return Object.keys(e.status).indexOf(this.getStatus())>=0},i.prototype.hasConsented=function(t){var n=this.getStatus();return n==e.status.allow||n==e.status.dismiss},i.prototype.autoOpen=function(e){!this.hasAnswered()&&this.options.enabled&&this.open()},i.prototype.setStatus=function(n){var i=this.options.cookie,o=t.getCookie(i.name),r=Object.keys(e.status).indexOf(o)>=0;Object.keys(e.status).indexOf(n)>=0?(t.setCookie(i.name,n,i.expiryDays,i.domain,i.path),this.options.onStatusChange.call(this,n,r)):this.clearStatus()},i.prototype.getStatus=function(){return t.getCookie(this.options.cookie.name)},i.prototype.clearStatus=function(){var e=this.options.cookie;t.setCookie(e.name,"",-1,e.domain,e.path)},i}(),e.Location=function(){function e(e){t.deepExtend(this.options={},r),t.isPlainObject(e)&&t.deepExtend(this.options,e),this.currentServiceIndex=-1}function n(e,t,n){var i,o=document.createElement("script");o.type="text/"+(e.type||"javascript"),o.src=e.src||e,o.async=!1,o.onreadystatechange=o.onload=function(){var e=o.readyState;clearTimeout(i),t.done||e&&!/loaded|complete/.test(e)||(t.done=!0,t(),o.onreadystatechange=o.onload=null)},document.body.appendChild(o),i=setTimeout(function(){t.done=!0,t(),o.onreadystatechange=o.onload=null},n)}function i(e,t,n,i,o){var r=new(window.XMLHttpRequest||window.ActiveXObject)("MSXML2.XMLHTTP.3.0");if(r.open(i?"POST":"GET",e,1),r.setRequestHeader("X-Requested-With","XMLHttpRequest"),r.setRequestHeader("Content-type","application/x-www-form-urlencoded"),Array.isArray(o))for(var a=0,s=o.length;a<s;++a){var l=o[a].split(":",2);r.setRequestHeader(l[0].replace(/^\s+|\s+$/g,""),l[1].replace(/^\s+|\s+$/g,""))}"function"==typeof t&&(r.onreadystatechange=function(){r.readyState>3&&t(r)}),r.send(i)}function o(e){return new Error("Error ["+(e.code||"UNKNOWN")+"]: "+e.error)}var r={timeout:5e3,services:["freegeoip","ipinfo","maxmind"],serviceDefinitions:{freegeoip:function(){return{url:"//freegeoip.net/json/?callback={callback}",isScript:!0,callback:function(e,t){try{var n=JSON.parse(t);return n.error?o(n):{code:n.country_code}}catch(e){return o({error:"Invalid response ("+e+")"})}}}},ipinfo:function(){return{url:"//ipinfo.io",headers:["Accept: application/json"],callback:function(e,t){try{var n=JSON.parse(t);return n.error?o(n):{code:n.country}}catch(e){return o({error:"Invalid response ("+e+")"})}}}},ipinfodb:function(e){return{url:"//api.ipinfodb.com/v3/ip-country/?key={api_key}&format=json&callback={callback}",isScript:!0,callback:function(e,t){try{var n=JSON.parse(t);return"ERROR"==n.statusCode?o({error:n.statusMessage}):{code:n.countryCode}}catch(e){return o({error:"Invalid response ("+e+")"})}}}},maxmind:function(){return{url:"//js.maxmind.com/js/apis/geoip2/v2.1/geoip2.js",isScript:!0,callback:function(e){if(!window.geoip2)return void e(new Error("Unexpected response format. The downloaded script should have exported `geoip2` to the global scope"));geoip2.country(function(t){try{e({code:t.country.iso_code})}catch(t){e(o(t))}},function(t){e(o(t))})}}}}};return e.prototype.getNextService=function(){var e;do{e=this.getServiceByIdx(++this.currentServiceIndex)}while(this.currentServiceIndex<this.options.services.length&&!e);return e},e.prototype.getServiceByIdx=function(e){var n=this.options.services[e];if("function"==typeof n){var i=n();return i.name&&t.deepExtend(i,this.options.serviceDefinitions[i.name](i)),i}return"string"==typeof n?this.options.serviceDefinitions[n]():t.isPlainObject(n)?this.options.serviceDefinitions[n.name](n):null},e.prototype.locate=function(e,t){var n=this.getNextService();if(!n)return void t(new Error("No services to run"));this.callbackComplete=e,this.callbackError=t,this.runService(n,this.runNextServiceOnError.bind(this))},e.prototype.setupUrl=function(e){var t=this.getCurrentServiceOpts();return e.url.replace(/\{(.*?)\}/g,function(n,i){if("callback"===i){var o="callback"+Date.now();return window[o]=function(t){e.__JSONP_DATA=JSON.stringify(t)},o}if(i in t.interpolateUrl)return t.interpolateUrl[i]})},e.prototype.runService=function(e,t){var o=this;if(e&&e.url&&e.callback){(e.isScript?n:i)(this.setupUrl(e),function(n){var i=n?n.responseText:"";e.__JSONP_DATA&&(i=e.__JSONP_DATA,delete e.__JSONP_DATA),o.runServiceCallback.call(o,t,e,i)},this.options.timeout,e.data,e.headers)}},e.prototype.runServiceCallback=function(e,t,n){var i=this,o=function(t){r||i.onServiceResult.call(i,e,t)},r=t.callback(o,n);r&&this.onServiceResult.call(this,e,r)},e.prototype.onServiceResult=function(e,t){t instanceof Error||t&&t.error?e.call(this,t,null):e.call(this,null,t)},e.prototype.runNextServiceOnError=function(e,t){if(e){this.logError(e);var n=this.getNextService();n?this.runService(n,this.runNextServiceOnError.bind(this)):this.completeService.call(this,this.callbackError,new Error("All services failed"))}else this.completeService.call(this,this.callbackComplete,t)},e.prototype.getCurrentServiceOpts=function(){var e=this.options.services[this.currentServiceIndex];return"string"==typeof e?{name:e}:"function"==typeof e?e():t.isPlainObject(e)?e:{}},e.prototype.completeService=function(e,t){this.currentServiceIndex=-1,e&&e(t)},e.prototype.logError=function(e){var t=this.currentServiceIndex,n=this.getServiceByIdx(t);console.error("The service["+t+"] ("+n.url+") responded with the following error",e)},e}(),e.Law=function(){function e(e){this.initialise.apply(this,arguments)}var n={regionalLaw:!0,hasLaw:["AT","BE","BG","HR","CZ","CY","DK","EE","FI","FR","DE","EL","HU","IE","IT","LV","LT","LU","MT","NL","PL","PT","SK","SI","ES","SE","GB","UK"],revokable:["HR","CY","DK","EE","FR","DE","LV","LT","NL","PT","ES"],explicitAction:["HR","IT","ES"]};return e.prototype.initialise=function(e){t.deepExtend(this.options={},n),t.isPlainObject(e)&&t.deepExtend(this.options,e)},e.prototype.get=function(e){var t=this.options;return{hasLaw:t.hasLaw.indexOf(e)>=0,revokable:t.revokable.indexOf(e)>=0,explicitAction:t.explicitAction.indexOf(e)>=0}},e.prototype.applyLaw=function(e,t){var n=this.get(t);return n.hasLaw||(e.enabled=!1),this.options.regionalLaw&&(n.revokable&&(e.revokable=!0),n.explicitAction&&(e.dismissOnScroll=!1,e.dismissOnTimeout=!1)),e},e}(),e.initialise=function(t,n,i){var o=new e.Law(t.law);n||(n=function(){}),i||(i=function(){}),e.getCountryCode(t,function(i){delete t.law,delete t.location,i.code&&(t=o.applyLaw(t,i.code)),n(new e.Popup(t))},function(n){delete t.law,delete t.location,i(n,new e.Popup(t))})},e.getCountryCode=function(t,n,i){if(t.law&&t.law.countryCode)return void n({code:t.law.countryCode});if(t.location){return void new e.Location(t.location).locate(function(e){n(e||{})},i)}n({})},e.utils=t,e.hasInitialised=!0,window.cookieconsent=e}}(window.cookieconsent||{}),window.addEventListener("load",function(){window.cookieconsent.Popup.prototype.revokeChoice=function(e){this.options.enabled=!0,this.options.onRevokeChoice.call(this),e||this.autoOpen(),this.open()},window.cookieconsent.Popup.prototype.removeCookies=function(){for(var e=["eclipse_cookieconsent_status","has_js"],t=document.cookie.split(";"),n=0;n<t.length;n++){var i=t[n],o=i.indexOf("="),r=o>-1?i.substr(0,o):i;r=r.trim(),void 0!==e&&0!=e.length&&-1!=e.indexOf(r)||(document.cookie=r+"=;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/;")}},window.cookieconsent.initialise({type:"opt-in",position:"bottom",revokable:!0,enabled:!0,cookie:{name:"eclipse_cookieconsent_status",expiryDays:90,domain:"."+location.hostname.split(".").reverse()[1]+"."+location.hostname.split(".").reverse()[0]},compliance:{"opt-in":'<div class="cc-compliance cc-highlight">{{deny}}{{allow}}</div>'},onStatusChange:function(e,t){document.cookie="eclipse_cookieconsent_status="+e+"; expires=0; path=/;","allow"!==e&&this.removeCookies()},onInitialise:function(e,t){console.log(e),setTimeout(function(){document.getElementsByClassName("cc-revoke")[0].style.display="block"})},revokeBtn:'<div class="cc-revoke {{classes}}">Cookie settings</div>',palette:{popup:{background:"#353434",text:"#ffffff"},highlight:{background:"#fff",text:"#000000"},button:{background:"#da7a08",text:"#ffffff"}},content:{href:"https://www.eclipse.org/legal/privacy.php",dismiss:"Dismiss",link:"click here.",message:"Some Eclipse Foundation pages use cookies to better serve you when you return to the site. You can set your browser to notify you before you receive a cookie or turn off cookies. If you do so, however, some areas of some sites may not function properly. To read Eclipse Foundation Privacy Policy"}})}),function(e){"use strict";"function"==typeof define&&define.amd?define(["jquery"],e):"undefined"!=typeof module&&module.exports?module.exports=e(require("jquery")):e(jQuery)}(function(e){var t=-1,n=-1,i=function(e){return parseFloat(e)||0},o=function(t){var n=e(t),o=null,r=[];return n.each(function(){var t=e(this),n=t.offset().top-i(t.css("margin-top")),a=r.length>0?r[r.length-1]:null;null===a?r.push(t):Math.floor(Math.abs(o-n))<=1?r[r.length-1]=a.add(t):r.push(t),o=n}),r},r=function(t){var n={byRow:!0,property:"height",target:null,remove:!1};return"object"==typeof t?e.extend(n,t):("boolean"==typeof t?n.byRow=t:"remove"===t&&(n.remove=!0),n)},a=e.fn.matchHeight=function(t){var n=r(t);if(n.remove){var i=this;return this.css(n.property,""),e.each(a._groups,function(e,t){t.elements=t.elements.not(i)}),this}return this.length<=1&&!n.target?this:(a._groups.push({elements:this,options:n}),a._apply(this,n),this)};a.version="0.7.2",a._groups=[],a._throttle=80,a._maintainScroll=!1,a._beforeUpdate=null,a._afterUpdate=null,a._rows=o,a._parse=i,a._parseOptions=r,a._apply=function(t,n){var s=r(n),l=e(t),c=[l],u=e(window).scrollTop(),p=e("html").outerHeight(!0),h=l.parents().filter(":hidden");return h.each(function(){var t=e(this);t.data("style-cache",t.attr("style"))}),h.css("display","block"),s.byRow&&!s.target&&(l.each(function(){var t=e(this),n=t.css("display");"inline-block"!==n&&"flex"!==n&&"inline-flex"!==n&&(n="block"),t.data("style-cache",t.attr("style")),t.css({display:n,"padding-top":"0","padding-bottom":"0","margin-top":"0","margin-bottom":"0","border-top-width":"0","border-bottom-width":"0",height:"100px",overflow:"hidden"})}),c=o(l),l.each(function(){var t=e(this);t.attr("style",t.data("style-cache")||"")})),e.each(c,function(t,n){var o=e(n),r=0;if(s.target)r=s.target.outerHeight(!1);else{if(s.byRow&&o.length<=1)return void o.css(s.property,"");o.each(function(){var t=e(this),n=t.attr("style"),i=t.css("display");"inline-block"!==i&&"flex"!==i&&"inline-flex"!==i&&(i="block");var o={display:i};o[s.property]="",t.css(o),t.outerHeight(!1)>r&&(r=t.outerHeight(!1)),n?t.attr("style",n):t.css("display","")})}o.each(function(){var t=e(this),n=0;s.target&&t.is(s.target)||("border-box"!==t.css("box-sizing")&&(n+=i(t.css("border-top-width"))+i(t.css("border-bottom-width")),n+=i(t.css("padding-top"))+i(t.css("padding-bottom"))),t.css(s.property,r-n+"px"))})}),h.each(function(){var t=e(this);t.attr("style",t.data("style-cache")||null)}),a._maintainScroll&&e(window).scrollTop(u/p*e("html").outerHeight(!0)),this},a._applyDataApi=function(){var t={};e("[data-match-height], [data-mh]").each(function(){var n=e(this),i=n.attr("data-mh")||n.attr("data-match-height");t[i]=i in t?t[i].add(n):n}),e.each(t,function(){this.matchHeight(!0)})};var s=function(t){a._beforeUpdate&&a._beforeUpdate(t,a._groups),e.each(a._groups,function(){a._apply(this.elements,this.options)}),a._afterUpdate&&a._afterUpdate(t,a._groups)};a._update=function(i,o){if(o&&"resize"===o.type){var r=e(window).width();if(r===t)return;t=r}i?-1===n&&(n=setTimeout(function(){s(o),n=-1},a._throttle)):s(o)},e(a._applyDataApi);var l=e.fn.on?"on":"bind";e(window)[l]("load",function(e){a._update(!1,e)}),e(window)[l]("resize orientationchange",function(e){a._update(!0,e)})}),function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.feather=t():e.feather=t()}("undefined"!=typeof self?self:this,function(){return function(e){function t(i){if(n[i])return n[i].exports;var o=n[i]={i:i,l:!1,exports:{}};return e[i].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,i){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:i})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=49)}([function(e,t,n){var i=n(36)("wks"),o=n(15),r=n(1).Symbol,a="function"==typeof r;(e.exports=function(e){return i[e]||(i[e]=a&&r[e]||(a?r:o)("Symbol."+e))}).store=i},function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,n){var i=n(1),o=n(7),r=n(8),a=n(10),s=n(11),l=function(e,t,n){var c,u,p,h,f=e&l.F,d=e&l.G,y=e&l.S,v=e&l.P,g=e&l.B,m=d?i:y?i[t]||(i[t]={}):(i[t]||{}).prototype,x=d?o:o[t]||(o[t]={}),b=x.prototype||(x.prototype={});d&&(n=t);for(c in n)u=!f&&m&&void 0!==m[c],p=(u?m:n)[c],h=g&&u?s(p,i):v&&"function"==typeof p?s(Function.call,p):p,m&&a(m,c,p,e&l.U),x[c]!=p&&r(x,c,h),v&&b[c]!=p&&(b[c]=p)};i.core=o,l.F=1,l.G=2,l.S=4,l.P=8,l.B=16,l.W=32,l.U=64,l.R=128,e.exports=l},function(e,t,n){var i=n(9),o=n(29),r=n(31),a=Object.defineProperty;t.f=n(5)?Object.defineProperty:function(e,t,n){if(i(e),t=r(t,!0),i(n),o)try{return a(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},function(e,t,n){e.exports=!n(12)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t){var n=e.exports={version:"2.5.3"};"number"==typeof __e&&(__e=n)},function(e,t,n){var i=n(4),o=n(14);e.exports=n(5)?function(e,t,n){return i.f(e,t,o(1,n))}:function(e,t,n){return e[t]=n,e}},function(e,t,n){var i=n(2);e.exports=function(e){if(!i(e))throw TypeError(e+" is not an object!");return e}},function(e,t,n){var i=n(1),o=n(8),r=n(6),a=n(15)("src"),s=Function.toString,l=(""+s).split("toString");n(7).inspectSource=function(e){return s.call(e)},(e.exports=function(e,t,n,s){var c="function"==typeof n;c&&(r(n,"name")||o(n,"name",t)),e[t]!==n&&(c&&(r(n,a)||o(n,a,e[t]?""+e[t]:l.join(String(t)))),e===i?e[t]=n:s?e[t]?e[t]=n:o(e,t,n):(delete e[t],o(e,t,n)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[a]||s.call(this)})},function(e,t,n){var i=n(32);e.exports=function(e,t,n){if(i(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,i){return e.call(t,n,i)};case 3:return function(n,i,o){return e.call(t,n,i,o)}}return function(){return e.apply(t,arguments)}}},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t){e.exports={}},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t){var n=0,i=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+i).toString(36))}},function(e,t,n){var i=n(34),o=n(19);e.exports=function(e){return i(o(e))}},function(e,t,n){var i=n(11),o=n(38),r=n(39),a=n(9),s=n(22),l=n(40),c={},u={},t=e.exports=function(e,t,n,p,h){var f,d,y,v,g=h?function(){return e}:l(e),m=i(n,p,t?2:1),x=0;if("function"!=typeof g)throw TypeError(e+" is not iterable!");if(r(g)){for(f=s(e.length);f>x;x++)if((v=t?m(a(d=e[x])[0],d[1]):m(e[x]))===c||v===u)return v}else for(y=g.call(e);!(d=y.next()).done;)if((v=o(y,m,d.value,t))===c||v===u)return v};t.BREAK=c,t.RETURN=u},function(e,t){var n=Math.ceil,i=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?i:n)(e)}},function(e,t){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on  "+e);return e}},function(e,t,n){"use strict";var i=n(52),o=n(3),r=n(10),a=n(8),s=n(6),l=n(13),c=n(53),u=n(24),p=n(59),h=n(0)("iterator"),f=!([].keys&&"next"in[].keys()),d=function(){return this};e.exports=function(e,t,n,y,v,g,m){c(n,t,y);var x,b,w,k=function(e){if(!f&&e in E)return E[e];switch(e){case"keys":case"values":return function(){return new n(this,e)}}return function(){return new n(this,e)}},T=t+" Iterator",C="values"==v,S=!1,E=e.prototype,A=E[h]||E["@@iterator"]||v&&E[v],M=!f&&A||k(v),O=v?C?k("entries"):M:void 0,j="Array"==t?E.entries||A:A;if(j&&(w=p(j.call(new e)))!==Object.prototype&&w.next&&(u(w,T,!0),i||s(w,h)||a(w,h,d)),C&&A&&"values"!==A.name&&(S=!0,M=function(){return A.call(this)}),i&&!m||!f&&!S&&E[h]||a(E,h,M),l[t]=M,l[T]=d,v)if(x={values:C?M:k("values"),keys:g?M:k("keys"),entries:O},m)for(b in x)b in E||r(E,b,x[b]);else o(o.P+o.F*(f||S),t,x);return x}},function(e,t,n){var i=n(55),o=n(37);e.exports=Object.keys||function(e){return i(e,o)}},function(e,t,n){var i=n(18),o=Math.min;e.exports=function(e){return e>0?o(i(e),9007199254740991):0}},function(e,t,n){var i=n(36)("keys"),o=n(15);e.exports=function(e){return i[e]||(i[e]=o(e))}},function(e,t,n){var i=n(4).f,o=n(6),r=n(0)("toStringTag");e.exports=function(e,t,n){e&&!o(e=n?e:e.prototype,r)&&i(e,r,{configurable:!0,value:t})}},function(e,t,n){var i=n(19);e.exports=function(e){return Object(i(e))}},function(e,t,n){var i=n(35),o=n(0)("toStringTag"),r="Arguments"==i(function(){return arguments}()),a=function(e,t){try{return e[t]}catch(e){}};e.exports=function(e){var t,n,s;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=a(t=Object(e),o))?n:r?i(t):"Object"==(s=i(t))&&"function"==typeof t.callee?"Arguments":s}},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=n(86),r=i(o),a=n(88),s=i(a),l=n(89),c=i(l);t.default=Object.keys(s.default).map(function(e){return new r.default(e,s.default[e],c.default[e])}).reduce(function(e,t){return e[t.name]=t,e},{})},function(e,t,n){"use strict";var i=n(51)(!0);n(20)(String,"String",function(e){this._t=String(e),this._i=0},function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=i(t,n),this._i+=e.length,{value:e,done:!1})})},function(e,t,n){e.exports=!n(5)&&!n(12)(function(){return 7!=Object.defineProperty(n(30)("div"),"a",{get:function(){return 7}}).a})},function(e,t,n){var i=n(2),o=n(1).document,r=i(o)&&i(o.createElement);e.exports=function(e){return r?o.createElement(e):{}}},function(e,t,n){var i=n(2);e.exports=function(e,t){if(!i(e))return e;var n,o;if(t&&"function"==typeof(n=e.toString)&&!i(o=n.call(e)))return o;if("function"==typeof(n=e.valueOf)&&!i(o=n.call(e)))return o;if(!t&&"function"==typeof(n=e.toString)&&!i(o=n.call(e)))return o;throw TypeError("Can't convert object to primitive value")}},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t,n){var i=n(9),o=n(54),r=n(37),a=n(23)("IE_PROTO"),s=function(){},l=function(){var e,t=n(30)("iframe"),i=r.length;for(t.style.display="none",n(58).appendChild(t),t.src="javascript:",e=t.contentWindow.document,e.open(),e.write("<script>document.F=Object<\/script>"),e.close(),l=e.F;i--;)delete l.prototype[r[i]];return l()};e.exports=Object.create||function(e,t){var n;return null!==e?(s.prototype=i(e),n=new s,s.prototype=null,n[a]=e):n=l(),void 0===t?n:o(n,t)}},function(e,t,n){var i=n(35);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==i(e)?e.split(""):Object(e)}},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t,n){var i=n(1),o=i["__core-js_shared__"]||(i["__core-js_shared__"]={});e.exports=function(e){return o[e]||(o[e]={})}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,n){var i=n(9);e.exports=function(e,t,n,o){try{return o?t(i(n)[0],n[1]):t(n)}catch(t){var r=e.return;throw void 0!==r&&i(r.call(e)),t}}},function(e,t,n){var i=n(13),o=n(0)("iterator"),r=Array.prototype;e.exports=function(e){return void 0!==e&&(i.Array===e||r[o]===e)}},function(e,t,n){var i=n(26),o=n(0)("iterator"),r=n(13);e.exports=n(7).getIteratorMethod=function(e){if(void 0!=e)return e[o]||e["@@iterator"]||r[i(e)]}},function(e,t,n){var i=n(0)("iterator"),o=!1;try{var r=[7][i]();r.return=function(){o=!0},Array.from(r,function(){throw 2})}catch(e){}e.exports=function(e,t){if(!t&&!o)return!1;var n=!1;try{var r=[7],a=r[i]();a.next=function(){return{done:n=!0}},r[i]=function(){return a},e(r)}catch(e){}return n}},function(e,t){t.f={}.propertyIsEnumerable},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t,n){var i=n(10);e.exports=function(e,t,n){for(var o in t)i(e,o,t[o],n);return e}},function(e,t){e.exports=function(e,t,n,i){if(!(e instanceof t)||void 0!==i&&i in e)throw TypeError(n+": incorrect invocation!");return e}},function(e,t,n){var i=n(15)("meta"),o=n(2),r=n(6),a=n(4).f,s=0,l=Object.isExtensible||function(){return!0},c=!n(12)(function(){return l(Object.preventExtensions({}))}),u=function(e){a(e,i,{value:{i:"O"+ ++s,w:{}}})},p=function(e,t){if(!o(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!r(e,i)){if(!l(e))return"F";if(!t)return"E";u(e)}return e[i].i},h=function(e,t){if(!r(e,i)){if(!l(e))return!0;if(!t)return!1;u(e)}return e[i].w},f=function(e){return c&&d.NEED&&l(e)&&!r(e,i)&&u(e),e},d=e.exports={KEY:i,NEED:!1,fastKey:p,getWeak:h,onFreeze:f}},function(e,t,n){var i=n(2);e.exports=function(e,t){if(!i(e)||e._t!==t)throw TypeError("Incompatible receiver, "+t+" required!");return e}},function(e,t,n){var i,o;!function(){"use strict";var n=function(){function e(){}function t(e,t){for(var n=t.length,i=0;i<n;++i)r(e,t[i])}function n(e,t){e[t]=!0}function i(e,t){for(var n in t)s.call(t,n)&&(e[n]=!!t[n])}function o(e,t){for(var n=t.split(l),i=n.length,o=0;o<i;++o)e[n[o]]=!0}function r(e,r){if(r){var a=typeof r;"string"===a?o(e,r):Array.isArray(r)?t(e,r):"object"===a?i(e,r):"number"===a&&n(e,r)}}function a(){for(var n=arguments.length,i=Array(n),o=0;o<n;o++)i[o]=arguments[o];var r=new e;t(r,i);var a=[];for(var s in r)r[s]&&a.push(s);return a.join(" ")}e.prototype=Object.create(null);var s={}.hasOwnProperty,l=/\s+/;return a}();void 0!==e&&e.exports?e.exports=n:(i=[],void 0!==(o=function(){return n}.apply(t,i))&&(e.exports=o))}()},function(e,t,n){n(50),n(62),n(66),e.exports=n(85)},function(e,t,n){n(28),n(60),e.exports=n(7).Array.from
+},function(e,t,n){var i=n(18),o=n(19);e.exports=function(e){return function(t,n){var r,a,s=String(o(t)),l=i(n),c=s.length;return l<0||l>=c?e?"":void 0:(r=s.charCodeAt(l),r<55296||r>56319||l+1===c||(a=s.charCodeAt(l+1))<56320||a>57343?e?s.charAt(l):r:e?s.slice(l,l+2):a-56320+(r-55296<<10)+65536)}}},function(e,t){e.exports=!1},function(e,t,n){"use strict";var i=n(33),o=n(14),r=n(24),a={};n(8)(a,n(0)("iterator"),function(){return this}),e.exports=function(e,t,n){e.prototype=i(a,{next:o(1,n)}),r(e,t+" Iterator")}},function(e,t,n){var i=n(4),o=n(9),r=n(21);e.exports=n(5)?Object.defineProperties:function(e,t){o(e);for(var n,a=r(t),s=a.length,l=0;s>l;)i.f(e,n=a[l++],t[n]);return e}},function(e,t,n){var i=n(6),o=n(16),r=n(56)(!1),a=n(23)("IE_PROTO");e.exports=function(e,t){var n,s=o(e),l=0,c=[];for(n in s)n!=a&&i(s,n)&&c.push(n);for(;t.length>l;)i(s,n=t[l++])&&(~r(c,n)||c.push(n));return c}},function(e,t,n){var i=n(16),o=n(22),r=n(57);e.exports=function(e){return function(t,n,a){var s,l=i(t),c=o(l.length),u=r(a,c);if(e&&n!=n){for(;c>u;)if((s=l[u++])!=s)return!0}else for(;c>u;u++)if((e||u in l)&&l[u]===n)return e||u||0;return!e&&-1}}},function(e,t,n){var i=n(18),o=Math.max,r=Math.min;e.exports=function(e,t){return e=i(e),e<0?o(e+t,0):r(e,t)}},function(e,t,n){var i=n(1).document;e.exports=i&&i.documentElement},function(e,t,n){var i=n(6),o=n(25),r=n(23)("IE_PROTO"),a=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=o(e),i(e,r)?e[r]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?a:null}},function(e,t,n){"use strict";var i=n(11),o=n(3),r=n(25),a=n(38),s=n(39),l=n(22),c=n(61),u=n(40);o(o.S+o.F*!n(41)(function(e){Array.from(e)}),"Array",{from:function(e){var t,n,o,p,h=r(e),f="function"==typeof this?this:Array,d=arguments.length,y=d>1?arguments[1]:void 0,v=void 0!==y,g=0,m=u(h);if(v&&(y=i(y,d>2?arguments[2]:void 0,2)),void 0==m||f==Array&&s(m))for(t=l(h.length),n=new f(t);t>g;g++)c(n,g,v?y(h[g],g):h[g]);else for(p=m.call(h),n=new f;!(o=p.next()).done;g++)c(n,g,v?a(p,y,[o.value,g],!0):o.value);return n.length=g,n}})},function(e,t,n){"use strict";var i=n(4),o=n(14);e.exports=function(e,t,n){t in e?i.f(e,t,o(0,n)):e[t]=n}},function(e,t,n){n(63),e.exports=n(7).Object.assign},function(e,t,n){var i=n(3);i(i.S+i.F,"Object",{assign:n(64)})},function(e,t,n){"use strict";var i=n(21),o=n(65),r=n(42),a=n(25),s=n(34),l=Object.assign;e.exports=!l||n(12)(function(){var e={},t={},n=Symbol(),i="abcdefghijklmnopqrst";return e[n]=7,i.split("").forEach(function(e){t[e]=e}),7!=l({},e)[n]||Object.keys(l({},t)).join("")!=i})?function(e,t){for(var n=a(e),l=arguments.length,c=1,u=o.f,p=r.f;l>c;)for(var h,f=s(arguments[c++]),d=u?i(f).concat(u(f)):i(f),y=d.length,v=0;y>v;)p.call(f,h=d[v++])&&(n[h]=f[h]);return n}:l},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t,n){n(67),n(28),n(68),n(71),n(78),n(81),n(83),e.exports=n(7).Set},function(e,t,n){"use strict";var i=n(26),o={};o[n(0)("toStringTag")]="z",o+""!="[object z]"&&n(10)(Object.prototype,"toString",function(){return"[object "+i(this)+"]"},!0)},function(e,t,n){for(var i=n(69),o=n(21),r=n(10),a=n(1),s=n(8),l=n(13),c=n(0),u=c("iterator"),p=c("toStringTag"),h=l.Array,f={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},d=o(f),y=0;y<d.length;y++){var v,g=d[y],m=f[g],x=a[g],b=x&&x.prototype;if(b&&(b[u]||s(b,u,h),b[p]||s(b,p,g),l[g]=h,m))for(v in i)b[v]||r(b,v,i[v],!0)}},function(e,t,n){"use strict";var i=n(70),o=n(43),r=n(13),a=n(16);e.exports=n(20)(Array,"Array",function(e,t){this._t=a(e),this._i=0,this._k=t},function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,o(1)):"keys"==t?o(0,n):"values"==t?o(0,e[n]):o(0,[n,e[n]])},"values"),r.Arguments=r.Array,i("keys"),i("values"),i("entries")},function(e,t,n){var i=n(0)("unscopables"),o=Array.prototype;void 0==o[i]&&n(8)(o,i,{}),e.exports=function(e){o[i][e]=!0}},function(e,t,n){"use strict";var i=n(72),o=n(47);e.exports=n(74)("Set",function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}},{add:function(e){return i.def(o(this,"Set"),e=0===e?0:e,e)}},i)},function(e,t,n){"use strict";var i=n(4).f,o=n(33),r=n(44),a=n(11),s=n(45),l=n(17),c=n(20),u=n(43),p=n(73),h=n(5),f=n(46).fastKey,d=n(47),y=h?"_s":"size",v=function(e,t){var n,i=f(t);if("F"!==i)return e._i[i];for(n=e._f;n;n=n.n)if(n.k==t)return n};e.exports={getConstructor:function(e,t,n,c){var u=e(function(e,i){s(e,u,t,"_i"),e._t=t,e._i=o(null),e._f=void 0,e._l=void 0,e[y]=0,void 0!=i&&l(i,n,e[c],e)});return r(u.prototype,{clear:function(){for(var e=d(this,t),n=e._i,i=e._f;i;i=i.n)i.r=!0,i.p&&(i.p=i.p.n=void 0),delete n[i.i];e._f=e._l=void 0,e[y]=0},delete:function(e){var n=d(this,t),i=v(n,e);if(i){var o=i.n,r=i.p;delete n._i[i.i],i.r=!0,r&&(r.n=o),o&&(o.p=r),n._f==i&&(n._f=o),n._l==i&&(n._l=r),n[y]--}return!!i},forEach:function(e){d(this,t);for(var n,i=a(e,arguments.length>1?arguments[1]:void 0,3);n=n?n.n:this._f;)for(i(n.v,n.k,this);n&&n.r;)n=n.p},has:function(e){return!!v(d(this,t),e)}}),h&&i(u.prototype,"size",{get:function(){return d(this,t)[y]}}),u},def:function(e,t,n){var i,o,r=v(e,t);return r?r.v=n:(e._l=r={i:o=f(t,!0),k:t,v:n,p:i=e._l,n:void 0,r:!1},e._f||(e._f=r),i&&(i.n=r),e[y]++,"F"!==o&&(e._i[o]=r)),e},getEntry:v,setStrong:function(e,t,n){c(e,t,function(e,n){this._t=d(e,t),this._k=n,this._l=void 0},function(){for(var e=this,t=e._k,n=e._l;n&&n.r;)n=n.p;return e._t&&(e._l=n=n?n.n:e._t._f)?"keys"==t?u(0,n.k):"values"==t?u(0,n.v):u(0,[n.k,n.v]):(e._t=void 0,u(1))},n?"entries":"values",!n,!0),p(t)}}},function(e,t,n){"use strict";var i=n(1),o=n(4),r=n(5),a=n(0)("species");e.exports=function(e){var t=i[e];r&&t&&!t[a]&&o.f(t,a,{configurable:!0,get:function(){return this}})}},function(e,t,n){"use strict";var i=n(1),o=n(3),r=n(10),a=n(44),s=n(46),l=n(17),c=n(45),u=n(2),p=n(12),h=n(41),f=n(24),d=n(75);e.exports=function(e,t,n,y,v,g){var m=i[e],x=m,b=v?"set":"add",w=x&&x.prototype,k={},T=function(e){var t=w[e];r(w,e,"delete"==e?function(e){return!(g&&!u(e))&&t.call(this,0===e?0:e)}:"has"==e?function(e){return!(g&&!u(e))&&t.call(this,0===e?0:e)}:"get"==e?function(e){return g&&!u(e)?void 0:t.call(this,0===e?0:e)}:"add"==e?function(e){return t.call(this,0===e?0:e),this}:function(e,n){return t.call(this,0===e?0:e,n),this})};if("function"==typeof x&&(g||w.forEach&&!p(function(){(new x).entries().next()}))){var C=new x,S=C[b](g?{}:-0,1)!=C,E=p(function(){C.has(1)}),A=h(function(e){new x(e)}),M=!g&&p(function(){for(var e=new x,t=5;t--;)e[b](t,t);return!e.has(-0)});A||(x=t(function(t,n){c(t,x,e);var i=d(new m,t,x);return void 0!=n&&l(n,v,i[b],i),i}),x.prototype=w,w.constructor=x),(E||M)&&(T("delete"),T("has"),v&&T("get")),(M||S)&&T(b),g&&w.clear&&delete w.clear}else x=y.getConstructor(t,e,v,b),a(x.prototype,n),s.NEED=!0;return f(x,e),k[e]=x,o(o.G+o.W+o.F*(x!=m),k),g||y.setStrong(x,e,v),x}},function(e,t,n){var i=n(2),o=n(76).set;e.exports=function(e,t,n){var r,a=t.constructor;return a!==n&&"function"==typeof a&&(r=a.prototype)!==n.prototype&&i(r)&&o&&o(e,r),e}},function(e,t,n){var i=n(2),o=n(9),r=function(e,t){if(o(e),!i(t)&&null!==t)throw TypeError(t+": can't set as prototype!")};e.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(e,t,i){try{i=n(11)(Function.call,n(77).f(Object.prototype,"__proto__").set,2),i(e,[]),t=!(e instanceof Array)}catch(e){t=!0}return function(e,n){return r(e,n),t?e.__proto__=n:i(e,n),e}}({},!1):void 0),check:r}},function(e,t,n){var i=n(42),o=n(14),r=n(16),a=n(31),s=n(6),l=n(29),c=Object.getOwnPropertyDescriptor;t.f=n(5)?c:function(e,t){if(e=r(e),t=a(t,!0),l)try{return c(e,t)}catch(e){}if(s(e,t))return o(!i.f.call(e,t),e[t])}},function(e,t,n){var i=n(3);i(i.P+i.R,"Set",{toJSON:n(79)("Set")})},function(e,t,n){var i=n(26),o=n(80);e.exports=function(e){return function(){if(i(this)!=e)throw TypeError(e+"#toJSON isn't generic");return o(this)}}},function(e,t,n){var i=n(17);e.exports=function(e,t){var n=[];return i(e,!1,n.push,n,t),n}},function(e,t,n){n(82)("Set")},function(e,t,n){"use strict";var i=n(3);e.exports=function(e){i(i.S,e,{of:function(){for(var e=arguments.length,t=new Array(e);e--;)t[e]=arguments[e];return new this(t)}})}},function(e,t,n){n(84)("Set")},function(e,t,n){"use strict";var i=n(3),o=n(32),r=n(11),a=n(17);e.exports=function(e){i(i.S,e,{from:function(e){var t,n,i,s,l=arguments[1];return o(this),t=void 0!==l,t&&o(l),void 0==e?new this:(n=[],t?(i=0,s=r(l,arguments[2],2),a(e,!1,function(e){n.push(s(e,i++))})):a(e,!1,n.push,n),new this(n))}})}},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}var o=n(27),r=i(o),a=n(90),s=i(a),l=n(91),c=i(l);e.exports={icons:r.default,toSvg:s.default,replace:c.default}},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e){return Object.keys(e).map(function(t){return t+'="'+e[t]+'"'}).join(" ")}Object.defineProperty(t,"__esModule",{value:!0});var a=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},s=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(48),c=i(l),u=n(87),p=i(u),h=function(){function e(t,n){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[];o(this,e),this.name=t,this.contents=n,this.tags=i,this.attrs=a({},p.default,{class:"feather feather-"+t})}return s(e,[{key:"toSvg",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return"<svg "+r(a({},this.attrs,e,{class:(0,c.default)(this.attrs.class,e.class)}))+">"+this.contents+"</svg>"}},{key:"toString",value:function(){return this.contents}}]),e}();t.default=h},function(e,t){e.exports={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":2,"stroke-linecap":"round","stroke-linejoin":"round"}},function(e,t){e.exports={activity:'<polyline points="22 12 18 12 15 21 9 3 6 12 2 12"></polyline>',airplay:'<path d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"></path><polygon points="12 15 17 21 7 21 12 15"></polygon>',"alert-circle":'<circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12" y2="16"></line>',"alert-octagon":'<polygon points="7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"></polygon><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12" y2="16"></line>',"alert-triangle":'<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"></path><line x1="12" y1="9" x2="12" y2="13"></line><line x1="12" y1="17" x2="12" y2="17"></line>',"align-center":'<line x1="18" y1="10" x2="6" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="18" y1="18" x2="6" y2="18"></line>',"align-justify":'<line x1="21" y1="10" x2="3" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="21" y1="18" x2="3" y2="18"></line>',"align-left":'<line x1="17" y1="10" x2="3" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="17" y1="18" x2="3" y2="18"></line>',"align-right":'<line x1="21" y1="10" x2="7" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="21" y1="18" x2="7" y2="18"></line>',anchor:'<circle cx="12" cy="5" r="3"></circle><line x1="12" y1="22" x2="12" y2="8"></line><path d="M5 12H2a10 10 0 0 0 20 0h-3"></path>',aperture:'<circle cx="12" cy="12" r="10"></circle><line x1="14.31" y1="8" x2="20.05" y2="17.94"></line><line x1="9.69" y1="8" x2="21.17" y2="8"></line><line x1="7.38" y1="12" x2="13.12" y2="2.06"></line><line x1="9.69" y1="16" x2="3.95" y2="6.06"></line><line x1="14.31" y1="16" x2="2.83" y2="16"></line><line x1="16.62" y1="12" x2="10.88" y2="21.94"></line>',archive:'<polyline points="21 8 21 21 3 21 3 8"></polyline><rect x="1" y="3" width="22" height="5"></rect><line x1="10" y1="12" x2="14" y2="12"></line>',"arrow-down-circle":'<circle cx="12" cy="12" r="10"></circle><polyline points="8 12 12 16 16 12"></polyline><line x1="12" y1="8" x2="12" y2="16"></line>',"arrow-down-left":'<line x1="17" y1="7" x2="7" y2="17"></line><polyline points="17 17 7 17 7 7"></polyline>',"arrow-down-right":'<line x1="7" y1="7" x2="17" y2="17"></line><polyline points="17 7 17 17 7 17"></polyline>',"arrow-down":'<line x1="12" y1="5" x2="12" y2="19"></line><polyline points="19 12 12 19 5 12"></polyline>',"arrow-left-circle":'<circle cx="12" cy="12" r="10"></circle><polyline points="12 8 8 12 12 16"></polyline><line x1="16" y1="12" x2="8" y2="12"></line>',"arrow-left":'<line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline>',"arrow-right-circle":'<circle cx="12" cy="12" r="10"></circle><polyline points="12 16 16 12 12 8"></polyline><line x1="8" y1="12" x2="16" y2="12"></line>',"arrow-right":'<line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline>',"arrow-up-circle":'<circle cx="12" cy="12" r="10"></circle><polyline points="16 12 12 8 8 12"></polyline><line x1="12" y1="16" x2="12" y2="8"></line>',"arrow-up-left":'<line x1="17" y1="17" x2="7" y2="7"></line><polyline points="7 17 7 7 17 7"></polyline>',"arrow-up-right":'<line x1="7" y1="17" x2="17" y2="7"></line><polyline points="7 7 17 7 17 17"></polyline>',"arrow-up":'<line x1="12" y1="19" x2="12" y2="5"></line><polyline points="5 12 12 5 19 12"></polyline>',"at-sign":'<circle cx="12" cy="12" r="4"></circle><path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"></path>',award:'<circle cx="12" cy="8" r="7"></circle><polyline points="8.21 13.89 7 23 12 20 17 23 15.79 13.88"></polyline>',"bar-chart-2":'<line x1="18" y1="20" x2="18" y2="10"></line><line x1="12" y1="20" x2="12" y2="4"></line><line x1="6" y1="20" x2="6" y2="14"></line>',"bar-chart":'<line x1="12" y1="20" x2="12" y2="10"></line><line x1="18" y1="20" x2="18" y2="4"></line><line x1="6" y1="20" x2="6" y2="16"></line>',"battery-charging":'<path d="M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19"></path><line x1="23" y1="13" x2="23" y2="11"></line><polyline points="11 6 7 12 13 12 9 18"></polyline>',battery:'<rect x="1" y="6" width="18" height="12" rx="2" ry="2"></rect><line x1="23" y1="13" x2="23" y2="11"></line>',"bell-off":'<path d="M8.56 2.9A7 7 0 0 1 19 9v4m-2 4H2a3 3 0 0 0 3-3V9a7 7 0 0 1 .78-3.22M13.73 21a2 2 0 0 1-3.46 0"></path><line x1="1" y1="1" x2="23" y2="23"></line>',bell:'<path d="M22 17H2a3 3 0 0 0 3-3V9a7 7 0 0 1 14 0v5a3 3 0 0 0 3 3zm-8.27 4a2 2 0 0 1-3.46 0"></path>',bluetooth:'<polyline points="6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5"></polyline>',bold:'<path d="M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"></path><path d="M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"></path>',"book-open":'<path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"></path><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"></path>',book:'<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"></path><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"></path>',bookmark:'<path d="M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"></path>',box:'<path d="M12.89 1.45l8 4A2 2 0 0 1 22 7.24v9.53a2 2 0 0 1-1.11 1.79l-8 4a2 2 0 0 1-1.79 0l-8-4a2 2 0 0 1-1.1-1.8V7.24a2 2 0 0 1 1.11-1.79l8-4a2 2 0 0 1 1.78 0z"></path><polyline points="2.32 6.16 12 11 21.68 6.16"></polyline><line x1="12" y1="22.76" x2="12" y2="11"></line>',briefcase:'<rect x="2" y="7" width="20" height="14" rx="2" ry="2"></rect><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"></path>',calendar:'<rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line>',"camera-off":'<line x1="1" y1="1" x2="23" y2="23"></line><path d="M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56"></path>',camera:'<path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"></path><circle cx="12" cy="13" r="4"></circle>',cast:'<path d="M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"></path><line x1="2" y1="20" x2="2" y2="20"></line>',"check-circle":'<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline>',"check-square":'<polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path>',check:'<polyline points="20 6 9 17 4 12"></polyline>',"chevron-down":'<polyline points="6 9 12 15 18 9"></polyline>',"chevron-left":'<polyline points="15 18 9 12 15 6"></polyline>',"chevron-right":'<polyline points="9 18 15 12 9 6"></polyline>',"chevron-up":'<polyline points="18 15 12 9 6 15"></polyline>',"chevrons-down":'<polyline points="7 13 12 18 17 13"></polyline><polyline points="7 6 12 11 17 6"></polyline>',"chevrons-left":'<polyline points="11 17 6 12 11 7"></polyline><polyline points="18 17 13 12 18 7"></polyline>',"chevrons-right":'<polyline points="13 17 18 12 13 7"></polyline><polyline points="6 17 11 12 6 7"></polyline>',"chevrons-up":'<polyline points="17 11 12 6 7 11"></polyline><polyline points="17 18 12 13 7 18"></polyline>',chrome:'<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="4"></circle><line x1="21.17" y1="8" x2="12" y2="8"></line><line x1="3.95" y1="6.06" x2="8.54" y2="14"></line><line x1="10.88" y1="21.94" x2="15.46" y2="14"></line>',circle:'<circle cx="12" cy="12" r="10"></circle>',clipboard:'<path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><rect x="8" y="2" width="8" height="4" rx="1" ry="1"></rect>',clock:'<circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline>',"cloud-drizzle":'<line x1="8" y1="19" x2="8" y2="21"></line><line x1="8" y1="13" x2="8" y2="15"></line><line x1="16" y1="19" x2="16" y2="21"></line><line x1="16" y1="13" x2="16" y2="15"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="12" y1="15" x2="12" y2="17"></line><path d="M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"></path>',"cloud-lightning":'<path d="M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9"></path><polyline points="13 11 9 17 15 17 11 23"></polyline>',"cloud-off":'<path d="M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3"></path><line x1="1" y1="1" x2="23" y2="23"></line>',"cloud-rain":'<line x1="16" y1="13" x2="16" y2="21"></line><line x1="8" y1="13" x2="8" y2="21"></line><line x1="12" y1="15" x2="12" y2="23"></line><path d="M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"></path>',"cloud-snow":'<path d="M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25"></path><line x1="8" y1="16" x2="8" y2="16"></line><line x1="8" y1="20" x2="8" y2="20"></line><line x1="12" y1="18" x2="12" y2="18"></line><line x1="12" y1="22" x2="12" y2="22"></line><line x1="16" y1="16" x2="16" y2="16"></line><line x1="16" y1="20" x2="16" y2="20"></line>',cloud:'<path d="M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"></path>',code:'<polyline points="16 18 22 12 16 6"></polyline><polyline points="8 6 2 12 8 18"></polyline>',codepen:'<polygon points="12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"></polygon><line x1="12" y1="22" x2="12" y2="15.5"></line><polyline points="22 8.5 12 15.5 2 8.5"></polyline><polyline points="2 15.5 12 8.5 22 15.5"></polyline><line x1="12" y1="2" x2="12" y2="8.5"></line>',command:'<path d="M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"></path>',compass:'<circle cx="12" cy="12" r="10"></circle><polygon points="16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"></polygon>',copy:'<rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path>',"corner-down-left":'<polyline points="9 10 4 15 9 20"></polyline><path d="M20 4v7a4 4 0 0 1-4 4H4"></path>',"corner-down-right":'<polyline points="15 10 20 15 15 20"></polyline><path d="M4 4v7a4 4 0 0 0 4 4h12"></path>',"corner-left-down":'<polyline points="14 15 9 20 4 15"></polyline><path d="M20 4h-7a4 4 0 0 0-4 4v12"></path>',"corner-left-up":'<polyline points="14 9 9 4 4 9"></polyline><path d="M20 20h-7a4 4 0 0 1-4-4V4"></path>',"corner-right-down":'<polyline points="10 15 15 20 20 15"></polyline><path d="M4 4h7a4 4 0 0 1 4 4v12"></path>',"corner-right-up":'<polyline points="10 9 15 4 20 9"></polyline><path d="M4 20h7a4 4 0 0 0 4-4V4"></path>',"corner-up-left":'<polyline points="9 14 4 9 9 4"></polyline><path d="M20 20v-7a4 4 0 0 0-4-4H4"></path>',"corner-up-right":'<polyline points="15 14 20 9 15 4"></polyline><path d="M4 20v-7a4 4 0 0 1 4-4h12"></path>',cpu:'<rect x="4" y="4" width="16" height="16" rx="2" ry="2"></rect><rect x="9" y="9" width="6" height="6"></rect><line x1="9" y1="1" x2="9" y2="4"></line><line x1="15" y1="1" x2="15" y2="4"></line><line x1="9" y1="20" x2="9" y2="23"></line><line x1="15" y1="20" x2="15" y2="23"></line><line x1="20" y1="9" x2="23" y2="9"></line><line x1="20" y1="14" x2="23" y2="14"></line><line x1="1" y1="9" x2="4" y2="9"></line><line x1="1" y1="14" x2="4" y2="14"></line>',"credit-card":'<rect x="1" y="4" width="22" height="16" rx="2" ry="2"></rect><line x1="1" y1="10" x2="23" y2="10"></line>',crop:'<path d="M6.13 1L6 16a2 2 0 0 0 2 2h15"></path><path d="M1 6.13L16 6a2 2 0 0 1 2 2v15"></path>',crosshair:'<circle cx="12" cy="12" r="10"></circle><line x1="22" y1="12" x2="18" y2="12"></line><line x1="6" y1="12" x2="2" y2="12"></line><line x1="12" y1="6" x2="12" y2="2"></line><line x1="12" y1="22" x2="12" y2="18"></line>',database:'<ellipse cx="12" cy="5" rx="9" ry="3"></ellipse><path d="M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"></path><path d="M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"></path>',delete:'<path d="M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z"></path><line x1="18" y1="9" x2="12" y2="15"></line><line x1="12" y1="9" x2="18" y2="15"></line>',disc:'<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="3"></circle>',"dollar-sign":'<line x1="12" y1="1" x2="12" y2="23"></line><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"></path>',"download-cloud":'<polyline points="8 17 12 21 16 17"></polyline><line x1="12" y1="12" x2="12" y2="21"></line><path d="M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"></path>',download:'<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="7 10 12 15 17 10"></polyline><line x1="12" y1="15" x2="12" y2="3"></line>',droplet:'<path d="M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"></path>',"edit-2":'<polygon points="16 3 21 8 8 21 3 21 3 16 16 3"></polygon>',"edit-3":'<polygon points="14 2 18 6 7 17 3 17 3 13 14 2"></polygon><line x1="3" y1="22" x2="21" y2="22"></line>',edit:'<path d="M20 14.66V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.34"></path><polygon points="18 2 22 6 12 16 8 16 8 12 18 2"></polygon>',"external-link":'<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line>',"eye-off":'<path d="M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"></path><line x1="1" y1="1" x2="23" y2="23"></line>',eye:'<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path><circle cx="12" cy="12" r="3"></circle>',facebook:'<path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"></path>',"fast-forward":'<polygon points="13 19 22 12 13 5 13 19"></polygon><polygon points="2 19 11 12 2 5 2 19"></polygon>',feather:'<path d="M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z"></path><line x1="16" y1="8" x2="2" y2="22"></line><line x1="17" y1="15" x2="9" y2="15"></line>',"file-minus":'<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="9" y1="15" x2="15" y2="15"></line>',"file-plus":'<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="12" y1="18" x2="12" y2="12"></line><line x1="9" y1="15" x2="15" y2="15"></line>',"file-text":'<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline>',file:'<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path><polyline points="13 2 13 9 20 9"></polyline>',film:'<rect x="2" y="2" width="20" height="20" rx="2.18" ry="2.18"></rect><line x1="7" y1="2" x2="7" y2="22"></line><line x1="17" y1="2" x2="17" y2="22"></line><line x1="2" y1="12" x2="22" y2="12"></line><line x1="2" y1="7" x2="7" y2="7"></line><line x1="2" y1="17" x2="7" y2="17"></line><line x1="17" y1="17" x2="22" y2="17"></line><line x1="17" y1="7" x2="22" y2="7"></line>',filter:'<polygon points="22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"></polygon>',flag:'<path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"></path><line x1="4" y1="22" x2="4" y2="15"></line>',"folder-minus":'<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path><line x1="9" y1="14" x2="15" y2="14"></line>',"folder-plus":'<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path><line x1="12" y1="11" x2="12" y2="17"></line><line x1="9" y1="14" x2="15" y2="14"></line>',folder:'<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path>',gift:'<polyline points="20 12 20 22 4 22 4 12"></polyline><rect x="2" y="7" width="20" height="5"></rect><line x1="12" y1="22" x2="12" y2="7"></line><path d="M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"></path><path d="M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"></path>',"git-branch":'<line x1="6" y1="3" x2="6" y2="15"></line><circle cx="18" cy="6" r="3"></circle><circle cx="6" cy="18" r="3"></circle><path d="M18 9a9 9 0 0 1-9 9"></path>',"git-commit":'<circle cx="12" cy="12" r="4"></circle><line x1="1.05" y1="12" x2="7" y2="12"></line><line x1="17.01" y1="12" x2="22.96" y2="12"></line>',"git-merge":'<circle cx="18" cy="18" r="3"></circle><circle cx="6" cy="6" r="3"></circle><path d="M6 21V9a9 9 0 0 0 9 9"></path>',"git-pull-request":'<circle cx="18" cy="18" r="3"></circle><circle cx="6" cy="6" r="3"></circle><path d="M13 6h3a2 2 0 0 1 2 2v7"></path><line x1="6" y1="9" x2="6" y2="21"></line>',github:'<path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"></path>',gitlab:'<path d="M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z"></path>',globe:'<circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path>',grid:'<rect x="3" y="3" width="7" height="7"></rect><rect x="14" y="3" width="7" height="7"></rect><rect x="14" y="14" width="7" height="7"></rect><rect x="3" y="14" width="7" height="7"></rect>',"hard-drive":'<line x1="22" y1="12" x2="2" y2="12"></line><path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"></path><line x1="6" y1="16" x2="6" y2="16"></line><line x1="10" y1="16" x2="10" y2="16"></line>',hash:'<line x1="4" y1="9" x2="20" y2="9"></line><line x1="4" y1="15" x2="20" y2="15"></line><line x1="10" y1="3" x2="8" y2="21"></line><line x1="16" y1="3" x2="14" y2="21"></line>',headphones:'<path d="M3 18v-6a9 9 0 0 1 18 0v6"></path><path d="M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"></path>',heart:'<path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>',"help-circle":'<circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12" y2="17"></line>',home:'<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline>',image:'<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline>',inbox:'<polyline points="22 12 16 12 14 15 10 15 8 12 2 12"></polyline><path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"></path>',info:'<circle cx="12" cy="12" r="10"></circle><line x1="12" y1="16" x2="12" y2="12"></line><line x1="12" y1="8" x2="12" y2="8"></line>',instagram:'<rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path><line x1="17.5" y1="6.5" x2="17.5" y2="6.5"></line>',italic:'<line x1="19" y1="4" x2="10" y2="4"></line><line x1="14" y1="20" x2="5" y2="20"></line><line x1="15" y1="4" x2="9" y2="20"></line>',layers:'<polygon points="12 2 2 7 12 12 22 7 12 2"></polygon><polyline points="2 17 12 22 22 17"></polyline><polyline points="2 12 12 17 22 12"></polyline>',layout:'<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line>',"life-buoy":'<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="4"></circle><line x1="4.93" y1="4.93" x2="9.17" y2="9.17"></line><line x1="14.83" y1="14.83" x2="19.07" y2="19.07"></line><line x1="14.83" y1="9.17" x2="19.07" y2="4.93"></line><line x1="14.83" y1="9.17" x2="18.36" y2="5.64"></line><line x1="4.93" y1="19.07" x2="9.17" y2="14.83"></line>',"link-2":'<path d="M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3"></path><line x1="8" y1="12" x2="16" y2="12"></line>',link:'<path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path>',linkedin:'<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path><rect x="2" y="9" width="4" height="12"></rect><circle cx="4" cy="4" r="2"></circle>',list:'<line x1="8" y1="6" x2="21" y2="6"></line><line x1="8" y1="12" x2="21" y2="12"></line><line x1="8" y1="18" x2="21" y2="18"></line><line x1="3" y1="6" x2="3" y2="6"></line><line x1="3" y1="12" x2="3" y2="12"></line><line x1="3" y1="18" x2="3" y2="18"></line>',
+loader:'<line x1="12" y1="2" x2="12" y2="6"></line><line x1="12" y1="18" x2="12" y2="22"></line><line x1="4.93" y1="4.93" x2="7.76" y2="7.76"></line><line x1="16.24" y1="16.24" x2="19.07" y2="19.07"></line><line x1="2" y1="12" x2="6" y2="12"></line><line x1="18" y1="12" x2="22" y2="12"></line><line x1="4.93" y1="19.07" x2="7.76" y2="16.24"></line><line x1="16.24" y1="7.76" x2="19.07" y2="4.93"></line>',lock:'<rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path>',"log-in":'<path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"></path><polyline points="10 17 15 12 10 7"></polyline><line x1="15" y1="12" x2="3" y2="12"></line>',"log-out":'<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line>',mail:'<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline>',"map-pin":'<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle>',map:'<polygon points="1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"></polygon><line x1="8" y1="2" x2="8" y2="18"></line><line x1="16" y1="6" x2="16" y2="22"></line>',"maximize-2":'<polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" y1="3" x2="14" y2="10"></line><line x1="3" y1="21" x2="10" y2="14"></line>',maximize:'<path d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"></path>',menu:'<line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line>',"message-circle":'<path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"></path>',"message-square":'<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path>',"mic-off":'<line x1="1" y1="1" x2="23" y2="23"></line><path d="M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6"></path><path d="M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23"></path><line x1="12" y1="19" x2="12" y2="23"></line><line x1="8" y1="23" x2="16" y2="23"></line>',mic:'<path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"></path><path d="M19 10v2a7 7 0 0 1-14 0v-2"></path><line x1="12" y1="19" x2="12" y2="23"></line><line x1="8" y1="23" x2="16" y2="23"></line>',"minimize-2":'<polyline points="4 14 10 14 10 20"></polyline><polyline points="20 10 14 10 14 4"></polyline><line x1="14" y1="10" x2="21" y2="3"></line><line x1="3" y1="21" x2="10" y2="14"></line>',minimize:'<path d="M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3"></path>',"minus-circle":'<circle cx="12" cy="12" r="10"></circle><line x1="8" y1="12" x2="16" y2="12"></line>',"minus-square":'<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="8" y1="12" x2="16" y2="12"></line>',minus:'<line x1="5" y1="12" x2="19" y2="12"></line>',monitor:'<rect x="2" y="3" width="20" height="14" rx="2" ry="2"></rect><line x1="8" y1="21" x2="16" y2="21"></line><line x1="12" y1="17" x2="12" y2="21"></line>',moon:'<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>',"more-horizontal":'<circle cx="12" cy="12" r="1"></circle><circle cx="19" cy="12" r="1"></circle><circle cx="5" cy="12" r="1"></circle>',"more-vertical":'<circle cx="12" cy="12" r="1"></circle><circle cx="12" cy="5" r="1"></circle><circle cx="12" cy="19" r="1"></circle>',move:'<polyline points="5 9 2 12 5 15"></polyline><polyline points="9 5 12 2 15 5"></polyline><polyline points="15 19 12 22 9 19"></polyline><polyline points="19 9 22 12 19 15"></polyline><line x1="2" y1="12" x2="22" y2="12"></line><line x1="12" y1="2" x2="12" y2="22"></line>',music:'<path d="M9 17H5a2 2 0 0 0-2 2 2 2 0 0 0 2 2h2a2 2 0 0 0 2-2zm12-2h-4a2 2 0 0 0-2 2 2 2 0 0 0 2 2h2a2 2 0 0 0 2-2z"></path><polyline points="9 17 9 5 21 3 21 15"></polyline>',"navigation-2":'<polygon points="12 2 19 21 12 17 5 21 12 2"></polygon>',navigation:'<polygon points="3 11 22 2 13 21 11 13 3 11"></polygon>',octagon:'<polygon points="7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"></polygon>',package:'<path d="M12.89 1.45l8 4A2 2 0 0 1 22 7.24v9.53a2 2 0 0 1-1.11 1.79l-8 4a2 2 0 0 1-1.79 0l-8-4a2 2 0 0 1-1.1-1.8V7.24a2 2 0 0 1 1.11-1.79l8-4a2 2 0 0 1 1.78 0z"></path><polyline points="2.32 6.16 12 11 21.68 6.16"></polyline><line x1="12" y1="22.76" x2="12" y2="11"></line><line x1="7" y1="3.5" x2="17" y2="8.5"></line>',paperclip:'<path d="M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48"></path>',"pause-circle":'<circle cx="12" cy="12" r="10"></circle><line x1="10" y1="15" x2="10" y2="9"></line><line x1="14" y1="15" x2="14" y2="9"></line>',pause:'<rect x="6" y="4" width="4" height="16"></rect><rect x="14" y="4" width="4" height="16"></rect>',percent:'<line x1="19" y1="5" x2="5" y2="19"></line><circle cx="6.5" cy="6.5" r="2.5"></circle><circle cx="17.5" cy="17.5" r="2.5"></circle>',"phone-call":'<path d="M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>',"phone-forwarded":'<polyline points="19 1 23 5 19 9"></polyline><line x1="15" y1="5" x2="23" y2="5"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>',"phone-incoming":'<polyline points="16 2 16 8 22 8"></polyline><line x1="23" y1="1" x2="16" y2="8"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>',"phone-missed":'<line x1="23" y1="1" x2="17" y2="7"></line><line x1="17" y1="1" x2="23" y2="7"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>',"phone-off":'<path d="M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"></path><line x1="23" y1="1" x2="1" y2="23"></line>',"phone-outgoing":'<polyline points="23 7 23 1 17 1"></polyline><line x1="16" y1="8" x2="23" y2="1"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>',phone:'<path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>',"pie-chart":'<path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path>',"play-circle":'<circle cx="12" cy="12" r="10"></circle><polygon points="10 8 16 12 10 16 10 8"></polygon>',play:'<polygon points="5 3 19 12 5 21 5 3"></polygon>',"plus-circle":'<circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line>',"plus-square":'<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line>',plus:'<line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line>',pocket:'<path d="M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z"></path><polyline points="8 10 12 14 16 10"></polyline>',power:'<path d="M18.36 6.64a9 9 0 1 1-12.73 0"></path><line x1="12" y1="2" x2="12" y2="12"></line>',printer:'<polyline points="6 9 6 2 18 2 18 9"></polyline><path d="M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"></path><rect x="6" y="14" width="12" height="8"></rect>',radio:'<circle cx="12" cy="12" r="2"></circle><path d="M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14"></path>',"refresh-ccw":'<polyline points="1 4 1 10 7 10"></polyline><polyline points="23 20 23 14 17 14"></polyline><path d="M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"></path>',"refresh-cw":'<polyline points="23 4 23 10 17 10"></polyline><polyline points="1 20 1 14 7 14"></polyline><path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"></path>',repeat:'<polyline points="17 1 21 5 17 9"></polyline><path d="M3 11V9a4 4 0 0 1 4-4h14"></path><polyline points="7 23 3 19 7 15"></polyline><path d="M21 13v2a4 4 0 0 1-4 4H3"></path>',rewind:'<polygon points="11 19 2 12 11 5 11 19"></polygon><polygon points="22 19 13 12 22 5 22 19"></polygon>',"rotate-ccw":'<polyline points="1 4 1 10 7 10"></polyline><path d="M3.51 15a9 9 0 1 0 2.13-9.36L1 10"></path>',"rotate-cw":'<polyline points="23 4 23 10 17 10"></polyline><path d="M20.49 15a9 9 0 1 1-2.12-9.36L23 10"></path>',rss:'<path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle>',save:'<path d="M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"></path><polyline points="17 21 17 13 7 13 7 21"></polyline><polyline points="7 3 7 8 15 8"></polyline>',scissors:'<circle cx="6" cy="6" r="3"></circle><circle cx="6" cy="18" r="3"></circle><line x1="20" y1="4" x2="8.12" y2="15.88"></line><line x1="14.47" y1="14.48" x2="20" y2="20"></line><line x1="8.12" y1="8.12" x2="12" y2="12"></line>',search:'<circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line>',send:'<line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon>',server:'<rect x="2" y="2" width="20" height="8" rx="2" ry="2"></rect><rect x="2" y="14" width="20" height="8" rx="2" ry="2"></rect><line x1="6" y1="6" x2="6" y2="6"></line><line x1="6" y1="18" x2="6" y2="18"></line>',settings:'<circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path>',"share-2":'<circle cx="18" cy="5" r="3"></circle><circle cx="6" cy="12" r="3"></circle><circle cx="18" cy="19" r="3"></circle><line x1="8.59" y1="13.51" x2="15.42" y2="17.49"></line><line x1="15.41" y1="6.51" x2="8.59" y2="10.49"></line>',share:'<path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"></path><polyline points="16 6 12 2 8 6"></polyline><line x1="12" y1="2" x2="12" y2="15"></line>',"shield-off":'<path d="M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18"></path><path d="M4.73 4.73L4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38"></path><line x1="1" y1="1" x2="23" y2="23"></line>',shield:'<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path>',"shopping-bag":'<path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path><line x1="3" y1="6" x2="21" y2="6"></line><path d="M16 10a4 4 0 0 1-8 0"></path>',"shopping-cart":'<circle cx="9" cy="21" r="1"></circle><circle cx="20" cy="21" r="1"></circle><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"></path>',shuffle:'<polyline points="16 3 21 3 21 8"></polyline><line x1="4" y1="20" x2="21" y2="3"></line><polyline points="21 16 21 21 16 21"></polyline><line x1="15" y1="15" x2="21" y2="21"></line><line x1="4" y1="4" x2="9" y2="9"></line>',sidebar:'<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="9" y1="3" x2="9" y2="21"></line>',"skip-back":'<polygon points="19 20 9 12 19 4 19 20"></polygon><line x1="5" y1="19" x2="5" y2="5"></line>',"skip-forward":'<polygon points="5 4 15 12 5 20 5 4"></polygon><line x1="19" y1="5" x2="19" y2="19"></line>',slack:'<path d="M22.08 9C19.81 1.41 16.54-.35 9 1.92S-.35 7.46 1.92 15 7.46 24.35 15 22.08 24.35 16.54 22.08 9z"></path><line x1="12.57" y1="5.99" x2="16.15" y2="16.39"></line><line x1="7.85" y1="7.61" x2="11.43" y2="18.01"></line><line x1="16.39" y1="7.85" x2="5.99" y2="11.43"></line><line x1="18.01" y1="12.57" x2="7.61" y2="16.15"></line>',slash:'<circle cx="12" cy="12" r="10"></circle><line x1="4.93" y1="4.93" x2="19.07" y2="19.07"></line>',sliders:'<line x1="4" y1="21" x2="4" y2="14"></line><line x1="4" y1="10" x2="4" y2="3"></line><line x1="12" y1="21" x2="12" y2="12"></line><line x1="12" y1="8" x2="12" y2="3"></line><line x1="20" y1="21" x2="20" y2="16"></line><line x1="20" y1="12" x2="20" y2="3"></line><line x1="1" y1="14" x2="7" y2="14"></line><line x1="9" y1="8" x2="15" y2="8"></line><line x1="17" y1="16" x2="23" y2="16"></line>',smartphone:'<rect x="5" y="2" width="14" height="20" rx="2" ry="2"></rect><line x1="12" y1="18" x2="12" y2="18"></line>',speaker:'<rect x="4" y="2" width="16" height="20" rx="2" ry="2"></rect><circle cx="12" cy="14" r="4"></circle><line x1="12" y1="6" x2="12" y2="6"></line>',square:'<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>',star:'<polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon>',"stop-circle":'<circle cx="12" cy="12" r="10"></circle><rect x="9" y="9" width="6" height="6"></rect>',sun:'<circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>',sunrise:'<path d="M17 18a5 5 0 0 0-10 0"></path><line x1="12" y1="2" x2="12" y2="9"></line><line x1="4.22" y1="10.22" x2="5.64" y2="11.64"></line><line x1="1" y1="18" x2="3" y2="18"></line><line x1="21" y1="18" x2="23" y2="18"></line><line x1="18.36" y1="11.64" x2="19.78" y2="10.22"></line><line x1="23" y1="22" x2="1" y2="22"></line><polyline points="8 6 12 2 16 6"></polyline>',sunset:'<path d="M17 18a5 5 0 0 0-10 0"></path><line x1="12" y1="9" x2="12" y2="2"></line><line x1="4.22" y1="10.22" x2="5.64" y2="11.64"></line><line x1="1" y1="18" x2="3" y2="18"></line><line x1="21" y1="18" x2="23" y2="18"></line><line x1="18.36" y1="11.64" x2="19.78" y2="10.22"></line><line x1="23" y1="22" x2="1" y2="22"></line><polyline points="16 5 12 9 8 5"></polyline>',tablet:'<rect x="4" y="2" width="16" height="20" rx="2" ry="2" transform="rotate(180 12 12)"></rect><line x1="12" y1="18" x2="12" y2="18"></line>',tag:'<path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"></path><line x1="7" y1="7" x2="7" y2="7"></line>',target:'<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="6"></circle><circle cx="12" cy="12" r="2"></circle>',terminal:'<polyline points="4 17 10 11 4 5"></polyline><line x1="12" y1="19" x2="20" y2="19"></line>',thermometer:'<path d="M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z"></path>',"thumbs-down":'<path d="M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"></path>',"thumbs-up":'<path d="M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"></path>',"toggle-left":'<rect x="1" y="5" width="22" height="14" rx="7" ry="7"></rect><circle cx="8" cy="12" r="3"></circle>',"toggle-right":'<rect x="1" y="5" width="22" height="14" rx="7" ry="7"></rect><circle cx="16" cy="12" r="3"></circle>',"trash-2":'<polyline points="3 6 5 6 21 6"></polyline><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path><line x1="10" y1="11" x2="10" y2="17"></line><line x1="14" y1="11" x2="14" y2="17"></line>',trash:'<polyline points="3 6 5 6 21 6"></polyline><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path>',"trending-down":'<polyline points="23 18 13.5 8.5 8.5 13.5 1 6"></polyline><polyline points="17 18 23 18 23 12"></polyline>',"trending-up":'<polyline points="23 6 13.5 15.5 8.5 10.5 1 18"></polyline><polyline points="17 6 23 6 23 12"></polyline>',triangle:'<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"></path>',truck:'<rect x="1" y="3" width="15" height="13"></rect><polygon points="16 8 20 8 23 11 23 16 16 16 16 8"></polygon><circle cx="5.5" cy="18.5" r="2.5"></circle><circle cx="18.5" cy="18.5" r="2.5"></circle>',tv:'<rect x="2" y="7" width="20" height="15" rx="2" ry="2"></rect><polyline points="17 2 12 7 7 2"></polyline>',twitter:'<path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path>',type:'<polyline points="4 7 4 4 20 4 20 7"></polyline><line x1="9" y1="20" x2="15" y2="20"></line><line x1="12" y1="4" x2="12" y2="20"></line>',umbrella:'<path d="M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7"></path>',underline:'<path d="M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3"></path><line x1="4" y1="21" x2="20" y2="21"></line>',unlock:'<rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 9.9-1"></path>',"upload-cloud":'<polyline points="16 16 12 12 8 16"></polyline><line x1="12" y1="12" x2="12" y2="21"></line><path d="M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"></path><polyline points="16 16 12 12 8 16"></polyline>',upload:'<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="17 8 12 3 7 8"></polyline><line x1="12" y1="3" x2="12" y2="15"></line>',"user-check":'<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><polyline points="17 11 19 13 23 9"></polyline>',"user-minus":'<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><line x1="23" y1="11" x2="17" y2="11"></line>',"user-plus":'<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><line x1="20" y1="8" x2="20" y2="14"></line><line x1="23" y1="11" x2="17" y2="11"></line>',"user-x":'<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><line x1="18" y1="8" x2="23" y2="13"></line><line x1="23" y1="8" x2="18" y2="13"></line>',user:'<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle>',users:'<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path>',"video-off":'<path d="M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10"></path><line x1="1" y1="1" x2="23" y2="23"></line>',video:'<polygon points="23 7 16 12 23 17 23 7"></polygon><rect x="1" y="5" width="15" height="14" rx="2" ry="2"></rect>',voicemail:'<circle cx="5.5" cy="11.5" r="4.5"></circle><circle cx="18.5" cy="11.5" r="4.5"></circle><line x1="5.5" y1="16" x2="18.5" y2="16"></line>',"volume-1":'<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><path d="M15.54 8.46a5 5 0 0 1 0 7.07"></path>',"volume-2":'<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><path d="M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07"></path>',"volume-x":'<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><line x1="23" y1="9" x2="17" y2="15"></line><line x1="17" y1="9" x2="23" y2="15"></line>',volume:'<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon>',watch:'<circle cx="12" cy="12" r="7"></circle><polyline points="12 9 12 12 13.5 13.5"></polyline><path d="M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83"></path>',"wifi-off":'<line x1="1" y1="1" x2="23" y2="23"></line><path d="M16.72 11.06A10.94 10.94 0 0 1 19 12.55"></path><path d="M5 12.55a10.94 10.94 0 0 1 5.17-2.39"></path><path d="M10.71 5.05A16 16 0 0 1 22.58 9"></path><path d="M1.42 9a15.91 15.91 0 0 1 4.7-2.88"></path><path d="M8.53 16.11a6 6 0 0 1 6.95 0"></path><line x1="12" y1="20" x2="12" y2="20"></line>',wifi:'<path d="M5 12.55a11 11 0 0 1 14.08 0"></path><path d="M1.42 9a16 16 0 0 1 21.16 0"></path><path d="M8.53 16.11a6 6 0 0 1 6.95 0"></path><line x1="12" y1="20" x2="12" y2="20"></line>',wind:'<path d="M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2"></path>',"x-circle":'<circle cx="12" cy="12" r="10"></circle><line x1="15" y1="9" x2="9" y2="15"></line><line x1="9" y1="9" x2="15" y2="15"></line>',"x-square":'<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="9" y1="9" x2="15" y2="15"></line><line x1="15" y1="9" x2="9" y2="15"></line>',x:'<line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line>',youtube:'<path d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"></path><polygon points="9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"></polygon>',"zap-off":'<polyline points="12.41 6.75 13 2 10.57 4.92"></polyline><polyline points="18.57 12.91 21 10 15.66 10"></polyline><polyline points="8 8 3 14 12 14 11 22 16 16"></polyline><line x1="1" y1="1" x2="23" y2="23"></line>',zap:'<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"></polygon>',"zoom-in":'<circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line><line x1="11" y1="8" x2="11" y2="14"></line><line x1="8" y1="11" x2="14" y2="11"></line>',"zoom-out":'<circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line><line x1="8" y1="11" x2="14" y2="11"></line>'}},function(e,t){e.exports={activity:["pulse","health","action","motion"],airplay:["stream","cast","mirroring"],"alert-circle":["warning"],"alert-octagon":["warning"],"alert-triangle":["warning"],"at-sign":["mention"],award:["achievement","badge"],aperture:["camera","photo"],bell:["alarm","notification"],"bell-off":["alarm","notification","silent"],bluetooth:["wireless"],"book-open":["read"],book:["read","dictionary","booklet","magazine"],bookmark:["read","clip","marker","tag"],briefcase:["work","bag","baggage","folder"],clipboard:["copy"],clock:["time","watch","alarm"],"cloud-drizzle":["weather","shower"],"cloud-lightning":["weather","bolt"],"cloud-rain":["weather"],"cloud-snow":["weather","blizzard"],cloud:["weather"],codepen:["logo"],command:["keyboard","cmd"],compass:["navigation","safari","travel"],copy:["clone","duplicate"],"corner-down-left":["arrow"],"corner-down-right":["arrow"],"corner-left-down":["arrow"],"corner-left-up":["arrow"],"corner-right-down":["arrow"],"corner-right-up":["arrow"],"corner-up-left":["arrow"],"corner-up-right":["arrow"],"credit-card":["purchase","payment","cc"],crop:["photo","image"],crosshair:["aim","target"],database:["storage"],delete:["remove"],disc:["album","cd","dvd","music"],"dollar-sign":["currency","money","payment"],droplet:["water"],edit:["pencil","change"],"edit-2":["pencil","change"],"edit-3":["pencil","change"],eye:["view","watch"],"eye-off":["view","watch"],"external-link":["outbound"],facebook:["logo"],"fast-forward":["music"],film:["movie","video"],"folder-minus":["directory"],"folder-plus":["directory"],folder:["directory"],gift:["present","box","birthday","party"],"git-branch":["code","version control"],"git-commit":["code","version control"],"git-merge":["code","version control"],"git-pull-request":["code","version control"],github:["logo","version control"],gitlab:["logo","version control"],global:["world","browser","language","translate"],"hard-drive":["computer","server"],hash:["hashtag","number","pound"],headphones:["music","audio"],heart:["like","love"],"help-circle":["question mark"],home:["house"],image:["picture"],inbox:["email"],instagram:["logo","camera"],"life-bouy":["help","life ring","support"],linkedin:["logo"],lock:["security","password"],"log-in":["sign in","arrow"],"log-out":["sign out","arrow"],mail:["email"],"map-pin":["location","navigation","travel","marker"],map:["location","navigation","travel"],maximize:["fullscreen"],"maximize-2":["fullscreen","arrows"],menu:["bars","navigation","hamburger"],"message-circle":["comment","chat"],"message-square":["comment","chat"],"mic-off":["record"],mic:["record"],minimize:["exit fullscreen"],"minimize-2":["exit fullscreen","arrows"],monitor:["tv"],moon:["dark","night"],"more-horizontal":["ellipsis"],"more-vertical":["ellipsis"],move:["arrows"],navigation:["location","travel"],"navigation-2":["location","travel"],octagon:["stop"],package:["box"],paperclip:["attachment"],pause:["music","stop"],"pause-circle":["music","stop"],play:["music","start"],"play-circle":["music","start"],plus:["add","new"],"plus-circle":["add","new"],"plus-square":["add","new"],pocket:["logo","save"],power:["on","off"],radio:["signal"],rewind:["music"],rss:["feed","subscribe"],save:["floppy disk"],send:["message","mail","paper airplane"],settings:["cog","edit","gear","preferences"],shield:["security"],"shield-off":["security"],"shopping-bag":["ecommerce","cart","purchase","store"],"shopping-cart":["ecommerce","cart","purchase","store"],shuffle:["music"],"skip-back":["music"],"skip-forward":["music"],slash:["ban","no"],sliders:["settings","controls"],speaker:["music"],star:["bookmark","favorite","like"],sun:["brightness","weather","light"],sunrise:["weather"],sunset:["weather"],tag:["label"],target:["bullseye"],terminal:["code","command line"],"thumbs-down":["dislike","bad"],"thumbs-up":["like","good"],"toggle-left":["on","off","switch"],"toggle-right":["on","off","switch"],trash:["garbage","delete","remove"],"trash-2":["garbage","delete","remove"],triangle:["delta"],truck:["delivery","van","shipping"],twitter:["logo"],umbrella:["rain","weather"],"video-off":["camera","movie","film"],video:["camera","movie","film"],voicemail:["phone"],volume:["music","sound","mute"],"volume-1":["music","sound"],"volume-2":["music","sound"],"volume-x":["music","sound","mute"],watch:["clock","time"],wind:["weather","air"],"x-circle":["cancel","close","delete","remove","times"],"x-square":["cancel","close","delete","remove","times"],x:["cancel","close","delete","remove","times"],youtube:["logo","video","play"],"zap-off":["flash","camera","lightning"],zap:["flash","camera","lightning"]}},function(e,t,n){"use strict";function i(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(console.warn("feather.toSvg() is deprecated. Please use feather.icons[name].toSvg() instead."),!e)throw new Error("The required `key` (icon name) parameter is missing.");if(!r.default[e])throw new Error("No icon matching '"+e+"'. See the complete list of icons at https://feathericons.com");return r.default[e].toSvg(t)}Object.defineProperty(t,"__esModule",{value:!0});var o=n(27),r=function(e){return e&&e.__esModule?e:{default:e}}(o);t.default=i},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function o(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if("undefined"==typeof document)throw new Error("`feather.replace()` only works in a browser environment.");var t=document.querySelectorAll("[data-feather]");Array.from(t).forEach(function(t){return r(t,e)})}function r(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=a(e),i=n["data-feather"];delete n["data-feather"];var o=p.default[i].toSvg(s({},t,n,{class:(0,c.default)(t.class,n.class)})),r=(new DOMParser).parseFromString(o,"image/svg+xml"),l=r.querySelector("svg");e.parentNode.replaceChild(l,e)}function a(e){return Array.from(e.attributes).reduce(function(e,t){return e[t.name]=t.value,e},{})}Object.defineProperty(t,"__esModule",{value:!0});var s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},l=n(48),c=i(l),u=n(27),p=i(u);t.default=o}])}),function(e,t){e(window).on("load",function(){window.location.hash&&e(window.location.hash).hasClass("tab-pane")&&(window.scrollTo(0,0),setTimeout(function(){window.scrollTo(0,0)},1))}),e(t).ready(function(){var t=window.location.hash;0==e("#rightcolumn").length&&(e("#midcolumn").attr("class","no-right-sidebar"),t&&(window.location.hash=t)),0==e("#main-sidebar").length&&(e("#midcolumn").attr("class","no-left-nav"),t&&(window.location.hash=t)),e("#showalltabs").click(function(){e(".tabs li").each(function(t,n){e(this).removeClass("active")}),e(".tab-pane").each(function(t,n){e(this).addClass("active")})}),t&&e('ul.nav a[href="'+t+'"]').tab("show")}),e(t).on("click",".yamm .dropdown-menu",function(e){e.stopPropagation()}),e(window).on("load resize scroll",function(){if(e(window).width()<1270)return e(".scrollup").hide(),!1;e(this).scrollTop()>100?e(".scrollup").fadeIn():e(".scrollup").fadeOut()}),e(".scrollup").click(function(){return e("html, body").animate({scrollTop:0},600),!1}),e(".nav-tabs a").click(function(t){e(this).tab("show"),history.pushState({},"",this.href),e(".alert:not(.stay-visible)").remove()}),e("a[data-tab-destination]").on("click",function(){var t=e(this).attr("data-tab-destination");e("#"+t).click()}),e(".solstice-collapse").click(function(){e(this).find("i").toggleClass("fa-chevron-down fa-chevron-up")}),feather.replace(),e(".featured-highlights-item").matchHeight(),e(".featured-story-block").matchHeight(),e(".news-list-match-height .media-link").matchHeight({byRow:!1}),e(".main-menu-search").on("shown.bs.dropdown",function(){e(".gsc-input").focus()}),e(t).bind("keydown","27",function(t){e(".eclipse-search a").dropdown("toggle")})}(jQuery,document),function(e,t){e(t).ready(function(){function t(){var t=e("input[name=type]:radio:checked").val();"paypal"===t?e("input[name=subscription]").attr("disabled",!1):e("input[name=subscription]").attr("disabled",!0);var n=e("input[name=credit_process_url]").val();if("credit"===t&&n)e("#donation_default_eclipse_form").attr("action",n);else{var i=e("input[name=default_process_url]").val()
+;i&&e("#donation_default_eclipse_form").attr("action",i),e("#subscription_default").prop("checked",!0)}}e("input.recognition-checkbox").is(":checked")&&e(".recognition-fields").slideDown(300),e("input.recognition-checkbox").click(function(){1==e(this).prop("checked")?e(".recognition-fields").slideDown(300):0==e(this).prop("checked")&&e(".recognition-fields").slideUp(300)}),e(".btn-square").click(function(){e(".btn-square, .amount-body, .highlight-amount-body").removeClass("active"),e(this).addClass("active"),e("input[name=amount]").val(e(this).val())}),e("input[name=amount]").click(function(){e("input[name=amount]").bind("keyup change",function(t){e(".btn-square").removeClass("active")})}),t(),e("input[name=type]:radio").change(function(e){t()}),e(".btn-donate-close").click(function(){var t=eclipse_org_common.settings.cookies_class.name,n=jQuery.parseJSON(unescape(solsticeFetchCookie(t)));n.donation_banner.value.visible=0,n=JSON.stringify(n),solsticeCreateCookie(t,n,"/"),e(".donate-ad").slideUp(300)})})}(jQuery,document);
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/javascript/vendor/cookieconsent/cookieconsent.min.js b/eclipse.org-common/themes/solstice/public/javascript/vendor/cookieconsent/cookieconsent.min.js
new file mode 100644
index 0000000..d4713a0
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/javascript/vendor/cookieconsent/cookieconsent.min.js
@@ -0,0 +1 @@
+!function(e){if(!e.hasInitialised){var t={escapeRegExp:function(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")},hasClass:function(e,t){var i=" ";return 1===e.nodeType&&(i+e.className+i).replace(/[\n\t]/g,i).indexOf(i+t+i)>=0},addClass:function(e,t){e.className+=" "+t},removeClass:function(e,t){var i=new RegExp("\\b"+this.escapeRegExp(t)+"\\b");e.className=e.className.replace(i,"")},interpolateString:function(e,t){var i=/{{([a-z][a-z0-9\-_]*)}}/gi;return e.replace(i,function(e){return t(arguments[1])||""})},getCookie:function(e){var t="; "+document.cookie,i=t.split("; "+e+"=");return 2!=i.length?void 0:i.pop().split(";").shift()},setCookie:function(e,t,i,n,o){var s=new Date;s.setDate(s.getDate()+(i||365));var r=[e+"="+t,"expires="+s.toUTCString(),"path="+(o||"/")];n&&r.push("domain="+n),document.cookie=r.join(";")},deepExtend:function(e,t){for(var i in t)t.hasOwnProperty(i)&&(i in e&&this.isPlainObject(e[i])&&this.isPlainObject(t[i])?this.deepExtend(e[i],t[i]):e[i]=t[i]);return e},throttle:function(e,t){var i=!1;return function(){i||(e.apply(this,arguments),i=!0,setTimeout(function(){i=!1},t))}},hash:function(e){var t,i,n,o=0;if(0===e.length)return o;for(t=0,n=e.length;t<n;++t)i=e.charCodeAt(t),o=(o<<5)-o+i,o|=0;return o},normaliseHex:function(e){return"#"==e[0]&&(e=e.substr(1)),3==e.length&&(e=e[0]+e[0]+e[1]+e[1]+e[2]+e[2]),e},getContrast:function(e){return e=this.normaliseHex(e),(299*parseInt(e.substr(0,2),16)+587*parseInt(e.substr(2,2),16)+114*parseInt(e.substr(4,2),16))/1e3>=128?"#000":"#fff"},getLuminance:function(e){var t=parseInt(this.normaliseHex(e),16),i=38+(t>>16),n=38+(t>>8&255),o=38+(255&t);return"#"+(16777216+65536*(i<255?i<1?0:i:255)+256*(n<255?n<1?0:n:255)+(o<255?o<1?0:o:255)).toString(16).slice(1)},isMobile:function(){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)},isPlainObject:function(e){return"object"==typeof e&&null!==e&&e.constructor==Object}};e.status={deny:"deny",allow:"allow",dismiss:"dismiss"},e.transitionEnd=function(){var e=document.createElement("div"),t={t:"transitionend",OT:"oTransitionEnd",msT:"MSTransitionEnd",MozT:"transitionend",WebkitT:"webkitTransitionEnd"};for(var i in t)if(t.hasOwnProperty(i)&&void 0!==e.style[i+"ransition"])return t[i];return""}(),e.hasTransition=!!e.transitionEnd;var i=Object.keys(e.status).map(t.escapeRegExp);e.customStyles={},e.Popup=function(){function n(){this.initialise.apply(this,arguments)}function o(e){this.openingTimeout=null,t.removeClass(e,"cc-invisible")}function s(t){t.style.display="none",t.removeEventListener(e.transitionEnd,this.afterTransition),this.afterTransition=null}function r(){var t=this.options.onInitialise.bind(this);if(!window.navigator.cookieEnabled)return t(e.status.deny),!0;if(window.CookiesOK||window.navigator.CookiesOK)return t(e.status.allow),!0;var i=Object.keys(e.status),n=this.getStatus(),o=i.indexOf(n)>=0;return o&&t(n),o}function a(){var e=this.options.position.split("-"),t=[];return e.forEach(function(e){t.push("cc-"+e)}),t}function c(){var e=this.options,i="top"==e.position||"bottom"==e.position?"banner":"floating";t.isMobile()&&(i="floating");var n=["cc-"+i,"cc-type-"+e.type,"cc-theme-"+e.theme];return e.static&&n.push("cc-static"),n.push.apply(n,a.call(this)),p.call(this,this.options.palette),this.customStyleSelector&&n.push(this.customStyleSelector),n}function l(){var e={},i=this.options;i.showLink||(i.elements.link="",i.elements.messagelink=i.elements.message),Object.keys(i.elements).forEach(function(n){e[n]=t.interpolateString(i.elements[n],function(e){var t=i.content[e];return e&&"string"==typeof t&&t.length?t:""})});var n=i.compliance[i.type];n||(n=i.compliance.info),e.compliance=t.interpolateString(n,function(t){return e[t]});var o=i.layouts[i.layout];return o||(o=i.layouts.basic),t.interpolateString(o,function(t){return e[t]})}function u(i){var n=this.options,o=document.createElement("div"),s=n.container&&1===n.container.nodeType?n.container:document.body;o.innerHTML=i;var r=o.children[0];return r.style.display="none",t.hasClass(r,"cc-window")&&e.hasTransition&&t.addClass(r,"cc-invisible"),this.onButtonClick=h.bind(this),r.addEventListener("click",this.onButtonClick),n.autoAttach&&(s.firstChild?s.insertBefore(r,s.firstChild):s.appendChild(r)),r}function h(n){var o=n.target;if(t.hasClass(o,"cc-btn")){var s=o.className.match(new RegExp("\\bcc-("+i.join("|")+")\\b")),r=s&&s[1]||!1;r&&(this.setStatus(r),this.close(!0))}t.hasClass(o,"cc-close")&&(this.setStatus(e.status.dismiss),this.close(!0)),t.hasClass(o,"cc-revoke")&&this.revokeChoice()}function p(e){var i=t.hash(JSON.stringify(e)),n="cc-color-override-"+i,o=t.isPlainObject(e);return this.customStyleSelector=o?n:null,o&&d(i,e,"."+n),o}function d(i,n,o){if(e.customStyles[i])return void++e.customStyles[i].references;var s={},r=n.popup,a=n.button,c=n.highlight;r&&(r.text=r.text?r.text:t.getContrast(r.background),r.link=r.link?r.link:r.text,s[o+".cc-window"]=["color: "+r.text,"background-color: "+r.background],s[o+".cc-revoke"]=["color: "+r.text,"background-color: "+r.background],s[o+" .cc-link,"+o+" .cc-link:active,"+o+" .cc-link:visited"]=["color: "+r.link],a&&(a.text=a.text?a.text:t.getContrast(a.background),a.border=a.border?a.border:"transparent",s[o+" .cc-btn"]=["color: "+a.text,"border-color: "+a.border,"background-color: "+a.background],"transparent"!=a.background&&(s[o+" .cc-btn:hover, "+o+" .cc-btn:focus"]=["background-color: "+f(a.background)]),c?(c.text=c.text?c.text:t.getContrast(c.background),c.border=c.border?c.border:"transparent",s[o+" .cc-highlight .cc-btn:first-child"]=["color: "+c.text,"border-color: "+c.border,"background-color: "+c.background]):s[o+" .cc-highlight .cc-btn:first-child"]=["color: "+r.text]));var l=document.createElement("style");document.head.appendChild(l),e.customStyles[i]={references:1,element:l.sheet};var u=-1;for(var h in s)s.hasOwnProperty(h)&&l.sheet.insertRule(h+"{"+s[h].join(";")+"}",++u)}function f(e){return e=t.normaliseHex(e),"000000"==e?"#222":t.getLuminance(e)}function v(i){if(t.isPlainObject(i)){var n=t.hash(JSON.stringify(i)),o=e.customStyles[n];if(o&&!--o.references){var s=o.element.ownerNode;s&&s.parentNode&&s.parentNode.removeChild(s),e.customStyles[n]=null}}}function m(e,t){for(var i=0,n=e.length;i<n;++i){var o=e[i];if(o instanceof RegExp&&o.test(t)||"string"==typeof o&&o.length&&o===t)return!0}return!1}function b(){var t=this.setStatus.bind(this),i=this.options.dismissOnTimeout;"number"==typeof i&&i>=0&&(this.dismissTimeout=window.setTimeout(function(){t(e.status.dismiss)},Math.floor(i)));var n=this.options.dismissOnScroll;if("number"==typeof n&&n>=0){var o=function(i){window.pageYOffset>Math.floor(n)&&(t(e.status.dismiss),window.removeEventListener("scroll",o),this.onWindowScroll=null)};this.onWindowScroll=o,window.addEventListener("scroll",o)}}function g(){if("info"!=this.options.type&&(this.options.revokable=!0),t.isMobile()&&(this.options.animateRevokable=!1),this.options.revokable){var e=a.call(this);this.options.animateRevokable&&e.push("cc-animate"),this.customStyleSelector&&e.push(this.customStyleSelector);var i=this.options.revokeBtn.replace("{{classes}}",e.join(" "));this.revokeBtn=u.call(this,i);var n=this.revokeBtn;if(this.options.animateRevokable){var o=t.throttle(function(e){var i=!1,o=window.innerHeight-20;t.hasClass(n,"cc-top")&&e.clientY<20&&(i=!0),t.hasClass(n,"cc-bottom")&&e.clientY>o&&(i=!0),i?t.hasClass(n,"cc-active")||t.addClass(n,"cc-active"):t.hasClass(n,"cc-active")&&t.removeClass(n,"cc-active")},200);this.onMouseMove=o,window.addEventListener("mousemove",o)}}}var y={enabled:!0,container:null,cookie:{name:"cookieconsent_status",path:"/",domain:"",expiryDays:365},onPopupOpen:function(){},onPopupClose:function(){},onInitialise:function(e){},onStatusChange:function(e,t){},onRevokeChoice:function(){},content:{header:"Cookies used on the website!",message:"This website uses cookies to ensure you get the best experience on our website.",dismiss:"Got it!",allow:"Allow cookies",deny:"Decline",link:"Learn more",href:"http://cookiesandyou.com",close:"&#x274c;"},elements:{header:'<span class="cc-header">{{header}}</span>&nbsp;',message:'<span id="cookieconsent:desc" class="cc-message">{{message}}</span>',messagelink:'<span id="cookieconsent:desc" class="cc-message">{{message}} <a aria-label="learn more about cookies" role=button tabindex="0" class="cc-link" href="{{href}}" rel="noopener noreferrer nofollow" target="_blank">{{link}}</a></span>',dismiss:'<a aria-label="dismiss cookie message" role=button tabindex="0" class="cc-btn cc-dismiss">{{dismiss}}</a>',allow:'<a aria-label="allow cookies" role=button tabindex="0"  class="cc-btn cc-allow">{{allow}}</a>',deny:'<a aria-label="deny cookies" role=button tabindex="0" class="cc-btn cc-deny">{{deny}}</a>',link:'<a aria-label="learn more about cookies" role=button tabindex="0" class="cc-link" href="{{href}}" target="_blank">{{link}}</a>',close:'<span aria-label="dismiss cookie message" role=button tabindex="0" class="cc-close">{{close}}</span>'},window:'<div role="dialog" aria-live="polite" aria-label="cookieconsent" aria-describedby="cookieconsent:desc" class="cc-window {{classes}}">\x3c!--googleoff: all--\x3e{{children}}\x3c!--googleon: all--\x3e</div>',revokeBtn:'<div class="cc-revoke {{classes}}">Cookie Policy</div>',compliance:{info:'<div class="cc-compliance">{{dismiss}}</div>',"opt-in":'<div class="cc-compliance cc-highlight">{{dismiss}}{{allow}}</div>',"opt-out":'<div class="cc-compliance cc-highlight">{{deny}}{{dismiss}}</div>'},type:"info",layouts:{basic:"{{messagelink}}{{compliance}}","basic-close":"{{messagelink}}{{compliance}}{{close}}","basic-header":"{{header}}{{message}}{{link}}{{compliance}}"},layout:"basic",position:"bottom",theme:"block",static:!1,palette:null,revokable:!1,animateRevokable:!0,showLink:!0,dismissOnScroll:!1,dismissOnTimeout:!1,autoOpen:!0,autoAttach:!0,whitelistPage:[],blacklistPage:[],overrideHTML:null};return n.prototype.initialise=function(e){this.options&&this.destroy(),t.deepExtend(this.options={},y),t.isPlainObject(e)&&t.deepExtend(this.options,e),r.call(this)&&(this.options.enabled=!1),m(this.options.blacklistPage,location.pathname)&&(this.options.enabled=!1),m(this.options.whitelistPage,location.pathname)&&(this.options.enabled=!0);var i=this.options.window.replace("{{classes}}",c.call(this).join(" ")).replace("{{children}}",l.call(this)),n=this.options.overrideHTML;if("string"==typeof n&&n.length&&(i=n),this.options.static){var o=u.call(this,'<div class="cc-grower">'+i+"</div>");o.style.display="",this.element=o.firstChild,this.element.style.display="none",t.addClass(this.element,"cc-invisible")}else this.element=u.call(this,i);b.call(this),g.call(this),this.options.autoOpen&&this.autoOpen()},n.prototype.destroy=function(){this.onButtonClick&&this.element&&(this.element.removeEventListener("click",this.onButtonClick),this.onButtonClick=null),this.dismissTimeout&&(clearTimeout(this.dismissTimeout),this.dismissTimeout=null),this.onWindowScroll&&(window.removeEventListener("scroll",this.onWindowScroll),this.onWindowScroll=null),this.onMouseMove&&(window.removeEventListener("mousemove",this.onMouseMove),this.onMouseMove=null),this.element&&this.element.parentNode&&this.element.parentNode.removeChild(this.element),this.element=null,this.revokeBtn&&this.revokeBtn.parentNode&&this.revokeBtn.parentNode.removeChild(this.revokeBtn),this.revokeBtn=null,v(this.options.palette),this.options=null},n.prototype.open=function(t){if(this.element)return this.isOpen()||(e.hasTransition?this.fadeIn():this.element.style.display="",this.options.revokable&&this.toggleRevokeButton(),this.options.onPopupOpen.call(this)),this},n.prototype.close=function(t){if(this.element)return this.isOpen()&&(e.hasTransition?this.fadeOut():this.element.style.display="none",t&&this.options.revokable&&this.toggleRevokeButton(!0),this.options.onPopupClose.call(this)),this},n.prototype.fadeIn=function(){var i=this.element;if(e.hasTransition&&i&&(this.afterTransition&&s.call(this,i),t.hasClass(i,"cc-invisible"))){if(i.style.display="",this.options.static){var n=this.element.clientHeight;this.element.parentNode.style.maxHeight=n+"px"}this.openingTimeout=setTimeout(o.bind(this,i),20)}},n.prototype.fadeOut=function(){var i=this.element;e.hasTransition&&i&&(this.openingTimeout&&(clearTimeout(this.openingTimeout),o.bind(this,i)),t.hasClass(i,"cc-invisible")||(this.options.static&&(this.element.parentNode.style.maxHeight=""),this.afterTransition=s.bind(this,i),i.addEventListener(e.transitionEnd,this.afterTransition),t.addClass(i,"cc-invisible")))},n.prototype.isOpen=function(){return this.element&&""==this.element.style.display&&(!e.hasTransition||!t.hasClass(this.element,"cc-invisible"))},n.prototype.toggleRevokeButton=function(e){this.revokeBtn&&(this.revokeBtn.style.display=e?"":"none")},n.prototype.revokeChoice=function(e){this.options.enabled=!0,this.clearStatus(),this.options.onRevokeChoice.call(this),e||this.autoOpen()},n.prototype.hasAnswered=function(t){return Object.keys(e.status).indexOf(this.getStatus())>=0},n.prototype.hasConsented=function(t){var i=this.getStatus();return i==e.status.allow||i==e.status.dismiss},n.prototype.autoOpen=function(e){!this.hasAnswered()&&this.options.enabled&&this.open()},n.prototype.setStatus=function(i){var n=this.options.cookie,o=t.getCookie(n.name),s=Object.keys(e.status).indexOf(o)>=0;Object.keys(e.status).indexOf(i)>=0?(t.setCookie(n.name,i,n.expiryDays,n.domain,n.path),this.options.onStatusChange.call(this,i,s)):this.clearStatus()},n.prototype.getStatus=function(){return t.getCookie(this.options.cookie.name)},n.prototype.clearStatus=function(){var e=this.options.cookie;t.setCookie(e.name,"",-1,e.domain,e.path)},n}(),e.Location=function(){function e(e){t.deepExtend(this.options={},s),t.isPlainObject(e)&&t.deepExtend(this.options,e),this.currentServiceIndex=-1}function i(e,t,i){var n,o=document.createElement("script");o.type="text/"+(e.type||"javascript"),o.src=e.src||e,o.async=!1,o.onreadystatechange=o.onload=function(){var e=o.readyState;clearTimeout(n),t.done||e&&!/loaded|complete/.test(e)||(t.done=!0,t(),o.onreadystatechange=o.onload=null)},document.body.appendChild(o),n=setTimeout(function(){t.done=!0,t(),o.onreadystatechange=o.onload=null},i)}function n(e,t,i,n,o){var s=new(window.XMLHttpRequest||window.ActiveXObject)("MSXML2.XMLHTTP.3.0");if(s.open(n?"POST":"GET",e,1),s.setRequestHeader("X-Requested-With","XMLHttpRequest"),s.setRequestHeader("Content-type","application/x-www-form-urlencoded"),Array.isArray(o))for(var r=0,a=o.length;r<a;++r){var c=o[r].split(":",2);s.setRequestHeader(c[0].replace(/^\s+|\s+$/g,""),c[1].replace(/^\s+|\s+$/g,""))}"function"==typeof t&&(s.onreadystatechange=function(){s.readyState>3&&t(s)}),s.send(n)}function o(e){return new Error("Error ["+(e.code||"UNKNOWN")+"]: "+e.error)}var s={timeout:5e3,services:["freegeoip","ipinfo","maxmind"],serviceDefinitions:{freegeoip:function(){return{url:"//freegeoip.net/json/?callback={callback}",isScript:!0,callback:function(e,t){try{var i=JSON.parse(t);return i.error?o(i):{code:i.country_code}}catch(e){return o({error:"Invalid response ("+e+")"})}}}},ipinfo:function(){return{url:"//ipinfo.io",headers:["Accept: application/json"],callback:function(e,t){try{var i=JSON.parse(t);return i.error?o(i):{code:i.country}}catch(e){return o({error:"Invalid response ("+e+")"})}}}},ipinfodb:function(e){return{url:"//api.ipinfodb.com/v3/ip-country/?key={api_key}&format=json&callback={callback}",isScript:!0,callback:function(e,t){try{var i=JSON.parse(t);return"ERROR"==i.statusCode?o({error:i.statusMessage}):{code:i.countryCode}}catch(e){return o({error:"Invalid response ("+e+")"})}}}},maxmind:function(){return{url:"//js.maxmind.com/js/apis/geoip2/v2.1/geoip2.js",isScript:!0,callback:function(e){return window.geoip2?void geoip2.country(function(t){try{e({code:t.country.iso_code})}catch(t){e(o(t))}},function(t){e(o(t))}):void e(new Error("Unexpected response format. The downloaded script should have exported `geoip2` to the global scope"))}}}}};return e.prototype.getNextService=function(){var e;do{e=this.getServiceByIdx(++this.currentServiceIndex)}while(this.currentServiceIndex<this.options.services.length&&!e);return e},e.prototype.getServiceByIdx=function(e){var i=this.options.services[e];if("function"==typeof i){var n=i();return n.name&&t.deepExtend(n,this.options.serviceDefinitions[n.name](n)),n}return"string"==typeof i?this.options.serviceDefinitions[i]():t.isPlainObject(i)?this.options.serviceDefinitions[i.name](i):null},e.prototype.locate=function(e,t){var i=this.getNextService();return i?(this.callbackComplete=e,this.callbackError=t,void this.runService(i,this.runNextServiceOnError.bind(this))):void t(new Error("No services to run"))},e.prototype.setupUrl=function(e){var t=this.getCurrentServiceOpts();return e.url.replace(/\{(.*?)\}/g,function(i,n){if("callback"===n){var o="callback"+Date.now();return window[o]=function(t){e.__JSONP_DATA=JSON.stringify(t)},o}if(n in t.interpolateUrl)return t.interpolateUrl[n]})},e.prototype.runService=function(e,t){var o=this;if(e&&e.url&&e.callback){(e.isScript?i:n)(this.setupUrl(e),function(i){var n=i?i.responseText:"";e.__JSONP_DATA&&(n=e.__JSONP_DATA,delete e.__JSONP_DATA),o.runServiceCallback.call(o,t,e,n)},this.options.timeout,e.data,e.headers)}},e.prototype.runServiceCallback=function(e,t,i){var n=this,o=function(t){s||n.onServiceResult.call(n,e,t)},s=t.callback(o,i);s&&this.onServiceResult.call(this,e,s)},e.prototype.onServiceResult=function(e,t){t instanceof Error||t&&t.error?e.call(this,t,null):e.call(this,null,t)},e.prototype.runNextServiceOnError=function(e,t){if(e){this.logError(e);var i=this.getNextService();i?this.runService(i,this.runNextServiceOnError.bind(this)):this.completeService.call(this,this.callbackError,new Error("All services failed"))}else this.completeService.call(this,this.callbackComplete,t)},e.prototype.getCurrentServiceOpts=function(){var e=this.options.services[this.currentServiceIndex];return"string"==typeof e?{name:e}:"function"==typeof e?e():t.isPlainObject(e)?e:{}},e.prototype.completeService=function(e,t){this.currentServiceIndex=-1,e&&e(t)},e.prototype.logError=function(e){var t=this.currentServiceIndex,i=this.getServiceByIdx(t);console.error("The service["+t+"] ("+i.url+") responded with the following error",e)},e}(),e.Law=function(){function e(e){this.initialise.apply(this,arguments)}var i={regionalLaw:!0,hasLaw:["AT","BE","BG","HR","CZ","CY","DK","EE","FI","FR","DE","EL","HU","IE","IT","LV","LT","LU","MT","NL","PL","PT","SK","SI","ES","SE","GB","UK"],revokable:["HR","CY","DK","EE","FR","DE","LV","LT","NL","PT","ES"],explicitAction:["HR","IT","ES"]};return e.prototype.initialise=function(e){t.deepExtend(this.options={},i),t.isPlainObject(e)&&t.deepExtend(this.options,e)},e.prototype.get=function(e){var t=this.options;return{hasLaw:t.hasLaw.indexOf(e)>=0,revokable:t.revokable.indexOf(e)>=0,explicitAction:t.explicitAction.indexOf(e)>=0}},e.prototype.applyLaw=function(e,t){var i=this.get(t);return i.hasLaw||(e.enabled=!1),this.options.regionalLaw&&(i.revokable&&(e.revokable=!0),i.explicitAction&&(e.dismissOnScroll=!1,e.dismissOnTimeout=!1)),e},e}(),e.initialise=function(t,i,n){var o=new e.Law(t.law);i||(i=function(){}),n||(n=function(){}),e.getCountryCode(t,function(n){delete t.law,delete t.location,n.code&&(t=o.applyLaw(t,n.code)),i(new e.Popup(t))},function(i){delete t.law,delete t.location,n(i,new e.Popup(t))})},e.getCountryCode=function(t,i,n){if(t.law&&t.law.countryCode)return void i({code:t.law.countryCode});if(t.location){return void new e.Location(t.location).locate(function(e){i(e||{})},n)}i({})},e.utils=t,e.hasInitialised=!0,window.cookieconsent=e}}(window.cookieconsent||{});
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/javascript/vendor/cookieconsent/default.min.js b/eclipse.org-common/themes/solstice/public/javascript/vendor/cookieconsent/default.min.js
new file mode 100644
index 0000000..76c7225
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/javascript/vendor/cookieconsent/default.min.js
@@ -0,0 +1 @@
+!function(e){if(!e.hasInitialised){var t={escapeRegExp:function(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")},hasClass:function(e,t){var i=" ";return 1===e.nodeType&&(i+e.className+i).replace(/[\n\t]/g,i).indexOf(i+t+i)>=0},addClass:function(e,t){e.className+=" "+t},removeClass:function(e,t){var i=new RegExp("\\b"+this.escapeRegExp(t)+"\\b");e.className=e.className.replace(i,"")},interpolateString:function(e,t){var i=/{{([a-z][a-z0-9\-_]*)}}/gi;return e.replace(i,function(e){return t(arguments[1])||""})},getCookie:function(e){var t="; "+document.cookie,i=t.split("; "+e+"=");return i.length<2?void 0:i.pop().split(";").shift()},setCookie:function(e,t,i,o,n){var s=new Date;s.setDate(s.getDate()+(i||365));var r=[e+"="+t,"expires="+s.toUTCString(),"path="+(n||"/")];o&&r.push("domain="+o),document.cookie=r.join(";")},deepExtend:function(e,t){for(var i in t)t.hasOwnProperty(i)&&(i in e&&this.isPlainObject(e[i])&&this.isPlainObject(t[i])?this.deepExtend(e[i],t[i]):e[i]=t[i]);return e},throttle:function(e,t){var i=!1;return function(){i||(e.apply(this,arguments),i=!0,setTimeout(function(){i=!1},t))}},hash:function(e){var t,i,o,n=0;if(0===e.length)return n;for(t=0,o=e.length;t<o;++t)i=e.charCodeAt(t),n=(n<<5)-n+i,n|=0;return n},normaliseHex:function(e){return"#"==e[0]&&(e=e.substr(1)),3==e.length&&(e=e[0]+e[0]+e[1]+e[1]+e[2]+e[2]),e},getContrast:function(e){return e=this.normaliseHex(e),(299*parseInt(e.substr(0,2),16)+587*parseInt(e.substr(2,2),16)+114*parseInt(e.substr(4,2),16))/1e3>=128?"#000":"#fff"},getLuminance:function(e){var t=parseInt(this.normaliseHex(e),16),i=38+(t>>16),o=38+(t>>8&255),n=38+(255&t);return"#"+(16777216+65536*(i<255?i<1?0:i:255)+256*(o<255?o<1?0:o:255)+(n<255?n<1?0:n:255)).toString(16).slice(1)},isMobile:function(){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)},isPlainObject:function(e){return"object"==typeof e&&null!==e&&e.constructor==Object}};e.status={deny:"deny",allow:"allow",dismiss:"dismiss"},e.transitionEnd=function(){var e=document.createElement("div"),t={t:"transitionend",OT:"oTransitionEnd",msT:"MSTransitionEnd",MozT:"transitionend",WebkitT:"webkitTransitionEnd"};for(var i in t)if(t.hasOwnProperty(i)&&void 0!==e.style[i+"ransition"])return t[i];return""}(),e.hasTransition=!!e.transitionEnd;var i=Object.keys(e.status).map(t.escapeRegExp);e.customStyles={},e.Popup=function(){function o(){this.initialise.apply(this,arguments)}function n(e){this.openingTimeout=null,t.removeClass(e,"cc-invisible")}function s(t){t.style.display="none",t.removeEventListener(e.transitionEnd,this.afterTransition),this.afterTransition=null}function r(){var t=this.options.onInitialise.bind(this);if(!window.navigator.cookieEnabled)return t(e.status.deny),!0;if(window.CookiesOK||window.navigator.CookiesOK)return t(e.status.allow),!0;var i=Object.keys(e.status),o=this.getStatus(),n=i.indexOf(o)>=0;return n&&t(o),n}function a(){var e=this.options.position.split("-"),t=[];return e.forEach(function(e){t.push("cc-"+e)}),t}function c(){var e=this.options,i="top"==e.position||"bottom"==e.position?"banner":"floating";t.isMobile()&&(i="floating");var o=["cc-"+i,"cc-type-"+e.type,"cc-theme-"+e.theme];e.static&&o.push("cc-static"),o.push.apply(o,a.call(this));h.call(this,this.options.palette);return this.customStyleSelector&&o.push(this.customStyleSelector),o}function l(){var e={},i=this.options;i.showLink||(i.elements.link="",i.elements.messagelink=i.elements.message),Object.keys(i.elements).forEach(function(o){e[o]=t.interpolateString(i.elements[o],function(e){var t=i.content[e];return e&&"string"==typeof t&&t.length?t:""})});var o=i.compliance[i.type];o||(o=i.compliance.info),e.compliance=t.interpolateString(o,function(t){return e[t]});var n=i.layouts[i.layout];return n||(n=i.layouts.basic),t.interpolateString(n,function(t){return e[t]})}function u(i){var o=this.options,n=document.createElement("div"),s=o.container&&1===o.container.nodeType?o.container:document.body;n.innerHTML=i;var r=n.children[0];return r.style.display="none",t.hasClass(r,"cc-window")&&e.hasTransition&&t.addClass(r,"cc-invisible"),this.onButtonClick=p.bind(this),r.addEventListener("click",this.onButtonClick),o.autoAttach&&(s.firstChild?s.insertBefore(r,s.firstChild):s.appendChild(r)),r}function p(o){var n=o.target;if(t.hasClass(n,"cc-btn")){var s=n.className.match(new RegExp("\\bcc-("+i.join("|")+")\\b")),r=s&&s[1]||!1;r&&(this.setStatus(r),this.close(!0))}t.hasClass(n,"cc-close")&&(this.setStatus(e.status.dismiss),this.close(!0)),t.hasClass(n,"cc-revoke")&&this.revokeChoice()}function h(e){var i=t.hash(JSON.stringify(e)),o="cc-color-override-"+i,n=t.isPlainObject(e);return this.customStyleSelector=n?o:null,n&&d(i,e,"."+o),n}function d(i,o,n){if(e.customStyles[i])return void++e.customStyles[i].references;var s={},r=o.popup,a=o.button,c=o.highlight;r&&(r.text=r.text?r.text:t.getContrast(r.background),r.link=r.link?r.link:r.text,s[n+".cc-window"]=["color: "+r.text,"background-color: "+r.background],s[n+".cc-revoke"]=["color: "+r.text,"background-color: "+r.background],s[n+" .cc-link,"+n+" .cc-link:active,"+n+" .cc-link:visited"]=["color: "+r.link],a&&(a.text=a.text?a.text:t.getContrast(a.background),a.border=a.border?a.border:"transparent",s[n+" .cc-btn"]=["color: "+a.text,"border-color: "+a.border,"background-color: "+a.background],"transparent"!=a.background&&(s[n+" .cc-btn:hover, "+n+" .cc-btn:focus"]=["background-color: "+f(a.background)]),c?(c.text=c.text?c.text:t.getContrast(c.background),c.border=c.border?c.border:"transparent",s[n+" .cc-highlight .cc-btn:first-child"]=["color: "+c.text,"border-color: "+c.border,"background-color: "+c.background]):s[n+" .cc-highlight .cc-btn:first-child"]=["color: "+r.text]));var l=document.createElement("style");document.head.appendChild(l),e.customStyles[i]={references:1,element:l.sheet};var u=-1;for(var p in s)s.hasOwnProperty(p)&&l.sheet.insertRule(p+"{"+s[p].join(";")+"}",++u)}function f(e){return e=t.normaliseHex(e),"000000"==e?"#222":t.getLuminance(e)}function v(i){if(t.isPlainObject(i)){var o=t.hash(JSON.stringify(i)),n=e.customStyles[o];if(n&&!--n.references){var s=n.element.ownerNode;s&&s.parentNode&&s.parentNode.removeChild(s),e.customStyles[o]=null}}}function m(e,t){for(var i=0,o=e.length;i<o;++i){var n=e[i];if(n instanceof RegExp&&n.test(t)||"string"==typeof n&&n.length&&n===t)return!0}return!1}function b(){var t=this.setStatus.bind(this),i=this.options.dismissOnTimeout;"number"==typeof i&&i>=0&&(this.dismissTimeout=window.setTimeout(function(){t(e.status.dismiss)},Math.floor(i)));var o=this.options.dismissOnScroll;if("number"==typeof o&&o>=0){var n=function(i){window.pageYOffset>Math.floor(o)&&(t(e.status.dismiss),window.removeEventListener("scroll",n),this.onWindowScroll=null)};this.onWindowScroll=n,window.addEventListener("scroll",n)}}function y(){if("info"!=this.options.type&&(this.options.revokable=!0),t.isMobile()&&(this.options.animateRevokable=!1),this.options.revokable){var e=a.call(this);this.options.animateRevokable&&e.push("cc-animate"),this.customStyleSelector&&e.push(this.customStyleSelector);var i=this.options.revokeBtn.replace("{{classes}}",e.join(" "));this.revokeBtn=u.call(this,i);var o=this.revokeBtn;if(this.options.animateRevokable){var n=t.throttle(function(e){var i=!1,n=window.innerHeight-20;t.hasClass(o,"cc-top")&&e.clientY<20&&(i=!0),t.hasClass(o,"cc-bottom")&&e.clientY>n&&(i=!0),i?t.hasClass(o,"cc-active")||t.addClass(o,"cc-active"):t.hasClass(o,"cc-active")&&t.removeClass(o,"cc-active")},200);this.onMouseMove=n,window.addEventListener("mousemove",n)}}}var g={enabled:!0,container:null,cookie:{name:"cookieconsent_status",path:"/",domain:"",expiryDays:365},onPopupOpen:function(){},onPopupClose:function(){},onInitialise:function(e){},onStatusChange:function(e,t){},onRevokeChoice:function(){},content:{header:"Cookies used on the website!",message:"This website uses cookies to ensure you get the best experience on our website.",dismiss:"Got it!",allow:"Allow cookies",deny:"Decline",link:"Learn more",href:"http://cookiesandyou.com",close:"&#x274c;"},elements:{header:'<span class="cc-header">{{header}}</span>&nbsp;',message:'<span id="cookieconsent:desc" class="cc-message">{{message}}</span>',messagelink:'<span id="cookieconsent:desc" class="cc-message">{{message}} <a aria-label="learn more about cookies" role=button tabindex="0" class="cc-link" href="{{href}}" rel="noopener noreferrer nofollow" target="_blank">{{link}}</a></span>',dismiss:'<a aria-label="dismiss cookie message" role=button tabindex="0" class="cc-btn cc-dismiss">{{dismiss}}</a>',allow:'<a aria-label="allow cookies" role=button tabindex="0"  class="cc-btn cc-allow">{{allow}}</a>',deny:'<a aria-label="deny cookies" role=button tabindex="0" class="cc-btn cc-deny">{{deny}}</a>',link:'<a aria-label="learn more about cookies" role=button tabindex="0" class="cc-link" href="{{href}}" target="_blank">{{link}}</a>',close:'<span aria-label="dismiss cookie message" role=button tabindex="0" class="cc-close">{{close}}</span>'},window:'<div role="dialog" aria-live="polite" aria-label="cookieconsent" aria-describedby="cookieconsent:desc" class="cc-window {{classes}}">\x3c!--googleoff: all--\x3e{{children}}\x3c!--googleon: all--\x3e</div>',revokeBtn:'<div class="cc-revoke {{classes}}">Cookie Policy</div>',compliance:{info:'<div class="cc-compliance">{{dismiss}}</div>',"opt-in":'<div class="cc-compliance cc-highlight">{{dismiss}}{{allow}}</div>',"opt-out":'<div class="cc-compliance cc-highlight">{{deny}}{{dismiss}}</div>'},type:"info",layouts:{basic:"{{messagelink}}{{compliance}}","basic-close":"{{messagelink}}{{compliance}}{{close}}","basic-header":"{{header}}{{message}}{{link}}{{compliance}}"},layout:"basic",position:"bottom",theme:"block",static:!1,palette:null,revokable:!1,animateRevokable:!0,showLink:!0,dismissOnScroll:!1,dismissOnTimeout:!1,autoOpen:!0,autoAttach:!0,whitelistPage:[],blacklistPage:[],overrideHTML:null};return o.prototype.initialise=function(e){this.options&&this.destroy(),t.deepExtend(this.options={},g),t.isPlainObject(e)&&t.deepExtend(this.options,e),r.call(this)&&(this.options.enabled=!1),m(this.options.blacklistPage,location.pathname)&&(this.options.enabled=!1),m(this.options.whitelistPage,location.pathname)&&(this.options.enabled=!0);var i=this.options.window.replace("{{classes}}",c.call(this).join(" ")).replace("{{children}}",l.call(this)),o=this.options.overrideHTML;if("string"==typeof o&&o.length&&(i=o),this.options.static){var n=u.call(this,'<div class="cc-grower">'+i+"</div>");n.style.display="",this.element=n.firstChild,this.element.style.display="none",t.addClass(this.element,"cc-invisible")}else this.element=u.call(this,i);b.call(this),y.call(this),this.options.autoOpen&&this.autoOpen()},o.prototype.destroy=function(){this.onButtonClick&&this.element&&(this.element.removeEventListener("click",this.onButtonClick),this.onButtonClick=null),this.dismissTimeout&&(clearTimeout(this.dismissTimeout),this.dismissTimeout=null),this.onWindowScroll&&(window.removeEventListener("scroll",this.onWindowScroll),this.onWindowScroll=null),this.onMouseMove&&(window.removeEventListener("mousemove",this.onMouseMove),this.onMouseMove=null),this.element&&this.element.parentNode&&this.element.parentNode.removeChild(this.element),this.element=null,this.revokeBtn&&this.revokeBtn.parentNode&&this.revokeBtn.parentNode.removeChild(this.revokeBtn),this.revokeBtn=null,v(this.options.palette),this.options=null},o.prototype.open=function(t){if(this.element)return this.isOpen()||(e.hasTransition?this.fadeIn():this.element.style.display="",this.options.revokable&&this.toggleRevokeButton(),this.options.onPopupOpen.call(this)),this},o.prototype.close=function(t){if(this.element)return this.isOpen()&&(e.hasTransition?this.fadeOut():this.element.style.display="none",t&&this.options.revokable&&this.toggleRevokeButton(!0),this.options.onPopupClose.call(this)),this},o.prototype.fadeIn=function(){var i=this.element;if(e.hasTransition&&i&&(this.afterTransition&&s.call(this,i),t.hasClass(i,"cc-invisible"))){if(i.style.display="",this.options.static){var o=this.element.clientHeight;this.element.parentNode.style.maxHeight=o+"px"}this.openingTimeout=setTimeout(n.bind(this,i),20)}},o.prototype.fadeOut=function(){var i=this.element;e.hasTransition&&i&&(this.openingTimeout&&(clearTimeout(this.openingTimeout),n.bind(this,i)),t.hasClass(i,"cc-invisible")||(this.options.static&&(this.element.parentNode.style.maxHeight=""),this.afterTransition=s.bind(this,i),i.addEventListener(e.transitionEnd,this.afterTransition),t.addClass(i,"cc-invisible")))},o.prototype.isOpen=function(){return this.element&&""==this.element.style.display&&(!e.hasTransition||!t.hasClass(this.element,"cc-invisible"))},o.prototype.toggleRevokeButton=function(e){this.revokeBtn&&(this.revokeBtn.style.display=e?"":"none")},o.prototype.revokeChoice=function(e){this.options.enabled=!0,this.clearStatus(),this.options.onRevokeChoice.call(this),e||this.autoOpen()},o.prototype.hasAnswered=function(t){return Object.keys(e.status).indexOf(this.getStatus())>=0},o.prototype.hasConsented=function(t){var i=this.getStatus();return i==e.status.allow||i==e.status.dismiss},o.prototype.autoOpen=function(e){!this.hasAnswered()&&this.options.enabled&&this.open()},o.prototype.setStatus=function(i){var o=this.options.cookie,n=t.getCookie(o.name),s=Object.keys(e.status).indexOf(n)>=0;Object.keys(e.status).indexOf(i)>=0?(t.setCookie(o.name,i,o.expiryDays,o.domain,o.path),this.options.onStatusChange.call(this,i,s)):this.clearStatus()},o.prototype.getStatus=function(){return t.getCookie(this.options.cookie.name)},o.prototype.clearStatus=function(){var e=this.options.cookie;t.setCookie(e.name,"",-1,e.domain,e.path)},o}(),e.Location=function(){function e(e){t.deepExtend(this.options={},s),t.isPlainObject(e)&&t.deepExtend(this.options,e),this.currentServiceIndex=-1}function i(e,t,i){var o,n=document.createElement("script");n.type="text/"+(e.type||"javascript"),n.src=e.src||e,n.async=!1,n.onreadystatechange=n.onload=function(){var e=n.readyState;clearTimeout(o),t.done||e&&!/loaded|complete/.test(e)||(t.done=!0,t(),n.onreadystatechange=n.onload=null)},document.body.appendChild(n),o=setTimeout(function(){t.done=!0,t(),n.onreadystatechange=n.onload=null},i)}function o(e,t,i,o,n){var s=new(window.XMLHttpRequest||window.ActiveXObject)("MSXML2.XMLHTTP.3.0");if(s.open(o?"POST":"GET",e,1),s.setRequestHeader("X-Requested-With","XMLHttpRequest"),s.setRequestHeader("Content-type","application/x-www-form-urlencoded"),Array.isArray(n))for(var r=0,a=n.length;r<a;++r){var c=n[r].split(":",2);s.setRequestHeader(c[0].replace(/^\s+|\s+$/g,""),c[1].replace(/^\s+|\s+$/g,""))}"function"==typeof t&&(s.onreadystatechange=function(){s.readyState>3&&t(s)}),s.send(o)}function n(e){return new Error("Error ["+(e.code||"UNKNOWN")+"]: "+e.error)}var s={timeout:5e3,services:["freegeoip","ipinfo","maxmind"],serviceDefinitions:{freegeoip:function(){return{url:"//freegeoip.net/json/?callback={callback}",isScript:!0,callback:function(e,t){try{var i=JSON.parse(t);return i.error?n(i):{code:i.country_code}}catch(e){return n({error:"Invalid response ("+e+")"})}}}},ipinfo:function(){return{url:"//ipinfo.io",headers:["Accept: application/json"],callback:function(e,t){try{var i=JSON.parse(t);return i.error?n(i):{code:i.country}}catch(e){return n({error:"Invalid response ("+e+")"})}}}},ipinfodb:function(e){return{url:"//api.ipinfodb.com/v3/ip-country/?key={api_key}&format=json&callback={callback}",isScript:!0,callback:function(e,t){try{var i=JSON.parse(t);return"ERROR"==i.statusCode?n({error:i.statusMessage}):{code:i.countryCode}}catch(e){return n({error:"Invalid response ("+e+")"})}}}},maxmind:function(){return{url:"//js.maxmind.com/js/apis/geoip2/v2.1/geoip2.js",isScript:!0,callback:function(e){if(!window.geoip2)return void e(new Error("Unexpected response format. The downloaded script should have exported `geoip2` to the global scope"));geoip2.country(function(t){try{e({code:t.country.iso_code})}catch(t){e(n(t))}},function(t){e(n(t))})}}}}};return e.prototype.getNextService=function(){var e;do{e=this.getServiceByIdx(++this.currentServiceIndex)}while(this.currentServiceIndex<this.options.services.length&&!e);return e},e.prototype.getServiceByIdx=function(e){var i=this.options.services[e];if("function"==typeof i){var o=i();return o.name&&t.deepExtend(o,this.options.serviceDefinitions[o.name](o)),o}return"string"==typeof i?this.options.serviceDefinitions[i]():t.isPlainObject(i)?this.options.serviceDefinitions[i.name](i):null},e.prototype.locate=function(e,t){var i=this.getNextService();if(!i)return void t(new Error("No services to run"));this.callbackComplete=e,this.callbackError=t,this.runService(i,this.runNextServiceOnError.bind(this))},e.prototype.setupUrl=function(e){var t=this.getCurrentServiceOpts();return e.url.replace(/\{(.*?)\}/g,function(i,o){if("callback"===o){var n="callback"+Date.now();return window[n]=function(t){e.__JSONP_DATA=JSON.stringify(t)},n}if(o in t.interpolateUrl)return t.interpolateUrl[o]})},e.prototype.runService=function(e,t){var n=this;if(e&&e.url&&e.callback){(e.isScript?i:o)(this.setupUrl(e),function(i){var o=i?i.responseText:"";e.__JSONP_DATA&&(o=e.__JSONP_DATA,delete e.__JSONP_DATA),n.runServiceCallback.call(n,t,e,o)},this.options.timeout,e.data,e.headers)}},e.prototype.runServiceCallback=function(e,t,i){var o=this,n=function(t){s||o.onServiceResult.call(o,e,t)},s=t.callback(n,i);s&&this.onServiceResult.call(this,e,s)},e.prototype.onServiceResult=function(e,t){t instanceof Error||t&&t.error?e.call(this,t,null):e.call(this,null,t)},e.prototype.runNextServiceOnError=function(e,t){if(e){this.logError(e);var i=this.getNextService();i?this.runService(i,this.runNextServiceOnError.bind(this)):this.completeService.call(this,this.callbackError,new Error("All services failed"))}else this.completeService.call(this,this.callbackComplete,t)},e.prototype.getCurrentServiceOpts=function(){var e=this.options.services[this.currentServiceIndex];return"string"==typeof e?{name:e}:"function"==typeof e?e():t.isPlainObject(e)?e:{}},e.prototype.completeService=function(e,t){this.currentServiceIndex=-1,e&&e(t)},e.prototype.logError=function(e){var t=this.currentServiceIndex,i=this.getServiceByIdx(t);console.error("The service["+t+"] ("+i.url+") responded with the following error",e)},e}(),e.Law=function(){function e(e){this.initialise.apply(this,arguments)}var i={regionalLaw:!0,hasLaw:["AT","BE","BG","HR","CZ","CY","DK","EE","FI","FR","DE","EL","HU","IE","IT","LV","LT","LU","MT","NL","PL","PT","SK","SI","ES","SE","GB","UK"],revokable:["HR","CY","DK","EE","FR","DE","LV","LT","NL","PT","ES"],explicitAction:["HR","IT","ES"]};return e.prototype.initialise=function(e){t.deepExtend(this.options={},i),t.isPlainObject(e)&&t.deepExtend(this.options,e)},e.prototype.get=function(e){var t=this.options;return{hasLaw:t.hasLaw.indexOf(e)>=0,revokable:t.revokable.indexOf(e)>=0,explicitAction:t.explicitAction.indexOf(e)>=0}},e.prototype.applyLaw=function(e,t){var i=this.get(t);return i.hasLaw||(e.enabled=!1),this.options.regionalLaw&&(i.revokable&&(e.revokable=!0),i.explicitAction&&(e.dismissOnScroll=!1,e.dismissOnTimeout=!1)),e},e}(),e.initialise=function(t,i,o){var n=new e.Law(t.law);i||(i=function(){}),o||(o=function(){}),e.getCountryCode(t,function(o){delete t.law,delete t.location,o.code&&(t=n.applyLaw(t,o.code)),i(new e.Popup(t))},function(i){delete t.law,delete t.location,o(i,new e.Popup(t))})},e.getCountryCode=function(t,i,o){if(t.law&&t.law.countryCode)return void i({code:t.law.countryCode});if(t.location){return void new e.Location(t.location).locate(function(e){i(e||{})},o)}i({})},e.utils=t,e.hasInitialised=!0,window.cookieconsent=e}}(window.cookieconsent||{}),window.addEventListener("load",function(){window.cookieconsent.Popup.prototype.revokeChoice=function(e){this.options.enabled=!0,this.options.onRevokeChoice.call(this),e||this.autoOpen(),this.open()},window.cookieconsent.Popup.prototype.removeCookies=function(){for(var e=["eclipse_cookieconsent_status","has_js"],t=document.cookie.split(";"),i=0;i<t.length;i++){var o=t[i],n=o.indexOf("="),s=n>-1?o.substr(0,n):o;s=s.trim(),void 0!==e&&0!=e.length&&-1!=e.indexOf(s)||(document.cookie=s+"=;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/;")}},window.cookieconsent.initialise({type:"opt-in",position:"bottom",revokable:!0,enabled:!0,cookie:{name:"eclipse_cookieconsent_status",expiryDays:90,domain:"."+location.hostname.split(".").reverse()[1]+"."+location.hostname.split(".").reverse()[0]},compliance:{"opt-in":'<div class="cc-compliance cc-highlight">{{deny}}{{allow}}</div>'},onStatusChange:function(e,t){document.cookie="eclipse_cookieconsent_status="+e+"; expires=0; path=/;","allow"!==e&&this.removeCookies()},onInitialise:function(e,t){console.log(e),setTimeout(function(){document.getElementsByClassName("cc-revoke")[0].style.display="block"})},revokeBtn:'<div class="cc-revoke {{classes}}">Cookie settings</div>',palette:{popup:{background:"#353434",text:"#ffffff"},highlight:{background:"#fff",text:"#000000"},button:{background:"#da7a08",text:"#ffffff"}},content:{href:"https://www.eclipse.org/legal/privacy.php",dismiss:"Dismiss",link:"click here.",message:"Some Eclipse Foundation pages use cookies to better serve you when you return to the site. You can set your browser to notify you before you receive a cookie or turn off cookies. If you do so, however, some areas of some sites may not function properly. To read Eclipse Foundation Privacy Policy"}})});
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/mix-manifest.json b/eclipse.org-common/themes/solstice/public/mix-manifest.json
new file mode 100644
index 0000000..b6a7f87
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/mix-manifest.json
@@ -0,0 +1,7 @@
+{
+    "/stylesheets/vendor/cookieconsent/cookieconsent.min.css": "/stylesheets/vendor/cookieconsent/cookieconsent.min.css",
+    "/javascript/vendor/cookieconsent/cookieconsent.min.js": "/javascript/vendor/cookieconsent/cookieconsent.min.js",
+    "/javascript/vendor/cookieconsent/default.min.js": "/javascript/vendor/cookieconsent/default.min.js",
+    "/javascript/main.min.js": "/javascript/main.min.js",
+    "/javascript/barebone.min.js": "/javascript/barebone.min.js"
+}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/stylesheets/barebone-footer.min.css b/eclipse.org-common/themes/solstice/public/stylesheets/barebone-footer.min.css
index 54fd0c3..637269e 100644
--- a/eclipse.org-common/themes/solstice/public/stylesheets/barebone-footer.min.css
+++ b/eclipse.org-common/themes/solstice/public/stylesheets/barebone-footer.min.css
@@ -1,9 +1,9 @@
-.thin-header *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.thin-header *:before,.thin-header *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.default-breadcrumbs{background:url('../images/template/breadcrumbs-large-bg.jpg') center #1b1732;background-size:100%;color:#fff;text-align:center;border-bottom:none;font-size:inherit}.default-breadcrumbs p{color:#bebebe;max-width:450px;margin:30px auto 20px auto;font-weight:400}.default-breadcrumbs p:last-child{padding-bottom:1.5em}.default-breadcrumbs .btn{min-width:150px;margin-right:10px;margin-left:10px}.default-breadcrumbs .breadcrumb{background:none;margin:15px 0 14px 0;padding-left:0;padding-bottom:0;text-align:left;text-transform:uppercase}.default-breadcrumbs .breadcrumb li{padding-bottom:3px}.default-breadcrumbs .breadcrumb .active{color:#fff}.default-breadcrumbs .breadcrumb a{font-weight:600;text-decoration:none}.default-breadcrumbs .breadcrumb a:link,.default-breadcrumbs .breadcrumb a:visited{color:#ababab}.default-breadcrumbs .breadcrumb a:hover{color:#f7941e}body #st-el-4 .st-btns{overflow:auto}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#fff}.breadcrumb>.active{color:#777}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#2c2255}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#2c2255}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#2c2255}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important;float:left}.navbar-right{float:right !important;float:right;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}.float-right{float:right}.float-left{float:left}.padding-0{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.reset{padding:0;margin:0}.visible-thin{display:none !important}.brand-primary{color:#2c2255}.brand-secondary{color:#afbbdc}.brand-success{color:#5cb85c}.brand-info{color:#afbbdc}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}tr.background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.background-blue{background:#afbbdc;color:#fff}.blue{color:#00f}.darkblue{color:#009}.yellow{color:yellow}.red{color:#f00}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-grey{background:#f5f5f5}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-white{background:#fff}#novaContent.background-image-none{background-image:none}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;-moz-transition:opacity .15s ease-in-out;-ms-transition:opacity .15s ease-in-out;-o-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{padding-bottom:0;margin-bottom:-28px}.table-layout-fixed{table-layout:fixed}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.col-xs-5-eclipse,.col-sm-5-eclipse,.col-md-5-eclipse,.col-lg-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.donation-button{padding-top:.75em;padding-bottom:.75em;padding-left:3.5em;padding-right:3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:hover,.btn-simple:active{border:1px solid #777;background:#eee}.btn-smaller,.btn-group-smaller>.btn{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:normal}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing *:before,.reset-box-sizing *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px 5px}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.no-border{border:none ! important}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table.table-solstice th{background:#afbbdc;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(even){background:#40bbdc}.vertical-align{display:flex;align-items:center}@media (min-width:992px){.vertical-align-md{display:flex;align-items:center}}.box-gray-border{border:1px solid #d6d6d6}/*!
- * Yamm!3
- * Yet another megamenu for Bootstrap 3
- * 
+.thin-header *,.thin-header :after,.thin-header :before{-webkit-box-sizing:border-box;box-sizing:border-box}.default-breadcrumbs{background:url(../images/vendor/eclipsefdn-solstice-template/breadcrumbs-large-bg.jpg?4a206a335e863414be1696a765c91fec) 50% #1b1732;background-size:100%;color:#ababab;border-bottom:none;border-top:none;font-size:inherit}.breadcrumb{background:none;margin-bottom:0;text-transform:uppercase}.breadcrumb a{font-weight:600}.breadcrumb a:link,.breadcrumb a:visited{color:#ababab}.breadcrumb a:hover{color:#f7941e}body #st-el-4 .st-btns{overflow:auto}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-13,.col-lg-14,.col-lg-15,.col-lg-16,.col-lg-17,.col-lg-18,.col-lg-19,.col-lg-20,.col-lg-21,.col-lg-22,.col-lg-23,.col-lg-24,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-13,.col-md-14,.col-md-15,.col-md-16,.col-md-17,.col-md-18,.col-md-19,.col-md-20,.col-md-21,.col-md-22,.col-md-23,.col-md-24,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-13,.col-sm-14,.col-sm-15,.col-sm-16,.col-sm-17,.col-sm-18,.col-sm-19,.col-sm-20,.col-sm-21,.col-sm-22,.col-sm-23,.col-sm-24,.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-13,.col-xs-14,.col-xs-15,.col-xs-16,.col-xs-17,.col-xs-18,.col-xs-19,.col-xs-20,.col-xs-21,.col-xs-22,.col-xs-23,.col-xs-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-13,.col-xs-14,.col-xs-15,.col-xs-16,.col-xs-17,.col-xs-18,.col-xs-19,.col-xs-20,.col-xs-21,.col-xs-22,.col-xs-23,.col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-13,.col-sm-14,.col-sm-15,.col-sm-16,.col-sm-17,.col-sm-18,.col-sm-19,.col-sm-20,.col-sm-21,.col-sm-22,.col-sm-23,.col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-13,.col-md-14,.col-md-15,.col-md-16,.col-md-17,.col-md-18,.col-md-19,.col-md-20,.col-md-21,.col-md-22,.col-md-23,.col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-13,.col-lg-14,.col-lg-15,.col-lg-16,.col-lg-17,.col-lg-18,.col-lg-19,.col-lg-20,.col-lg-21,.col-lg-22,.col-lg-23,.col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.breadcrumb{padding:20px 30px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\A0";padding:0 5px;color:#ababab}.breadcrumb>.active{color:#fff}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#2c2255}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li,.nav>li>a{position:relative;display:block}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#2c2255}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container-fluid .navbar-brand,.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin:8px -15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left!important;float:left}.navbar-right{float:right!important;float:right;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.row:after,.row:before{content:" ";display:table}.clearfix:after,.container-fluid:after,.container:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.block-box,.sideitem{background:#f6f6f6;color:#202020;margin:0 0 2em;padding:0 0 5px;border:none}.block-box h2,.block-box h3,.block-box h6,.sideitem h2,.sideitem h3,.sideitem h6{background:#afbbdc;color:#fff;margin:0 0 15px;padding:15px 20px;text-transform:uppercase;font-weight:700;font-size:15px}.block-box h2 a:hover,.block-box h3 a:hover,.block-box h6 a:hover,.sideitem h2 a:hover,.sideitem h3 a:hover,.sideitem h6 a:hover{color:#fff}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0 15px 15px}.block-box .list-heading,.sideitem .list-heading{font-weight:700;margin-bottom:4px;font-size:15px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.block-heading{background:none repeat scroll 0 0 #afbbdc;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.brand-primary{color:#2c2255}.brand-secondary{color:#868685}.brand-tertiary{color:#afbbdc}.brand-quaternary{color:#342343}.brand-quinary{color:#bed247}.brand-success{color:#5cb85c}.brand-info{color:#afbbdc}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.blue{color:#00f}.darkblue{color:#009}.yellow{color:#ff0}.red{color:red}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-primary{background:#2c2255;color:#fff}.background-primary h2,.background-primary h3,.background-primary h4,.background-primary li,.background-primary p{color:inherit}.background-secondary{background:#868685;color:#fff}.background-secondary h2,.background-secondary h3,.background-secondary h4,.background-secondary li,.background-secondary p{color:inherit}.background-tertiary{background:#afbbdc;color:#fff}.background-tertiary h2,.background-tertiary h3,.background-tertiary h4,.background-tertiary li,.background-tertiary p{color:inherit}.background-quaternary{background:#342343;color:#fff}.background-quaternary h2,.background-quaternary h3,.background-quaternary h4,.background-quaternary li,.background-quaternary p{color:inherit}.background-quinary{background:#bed247;color:#fff}.background-quinary h2,.background-quinary h3,.background-quinary h4,.background-quinary li,.background-quinary p{color:inherit}.background-bg-body{background:#fff}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-mid-grey{background:#e6e7e8}.background-grey{background:#f5f5f5}.background-light-grey{background:#f1f1f1}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-blue{background:#afbbdc;color:#fff}.background-white{background:#fff}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}.label-purple{background-color:#2c2255}#novaContent.background-image-none{background-image:none}.table-striped>tbody>tr:nth-of-type(odd).background-orange,tr.background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.box-gray-border{border:1px solid #d6d6d6}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.border-grey-right{border-right:1px solid #ccc}.no-border{border:none!important}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing :after,.reset-box-sizing :before{-webkit-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.vertical-align{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (min-width:992px){.vertical-align-md{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.float-right{float:right}.float-left{float:left}.visible-thin{display:none!important}.col-lg-5-eclipse,.col-md-5-eclipse,.col-sm-5-eclipse,.col-xs-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:700;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:"\F00C"}.container-list{counter-reset:list;padding-left:55px}.container-list>.list-row{margin-top:12px;position:relative;min-height:3em}.container-list>.list-row:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:700;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(list);counter-increment:list;display:block}.container-list>.list-row>div:first-child{padding-left:.5em}.container-list>.list-row .no-wrap{white-space:nowrap}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:700;color:#969696}.list-checkmark a:hover{color:#f7941e}.list-padding li{padding-bottom:25px}.list-border-right li{border-right:1px solid}.list-border-right li:last-child{border:none}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.fa-li{top:.23em}.reset{margin:0}.padding-0,.reset{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-35{padding:35px}.padding-40{padding:40px}.padding-45{padding:45px}.padding-50{padding:50px}.padding-55{padding:55px}.padding-60{padding:60px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-bottom-35{padding-bottom:35px}.padding-bottom-40{padding-bottom:40px}.padding-bottom-45{padding-bottom:45px}.padding-bottom-50{padding-bottom:50px}.padding-bottom-55{padding-bottom:55px}.padding-bottom-60{padding-bottom:60px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-top-35{padding-top:35px}.padding-top-40{padding-top:40px}.padding-top-45{padding-top:45px}.padding-top-50{padding-top:50px}.padding-top-55{padding-top:55px}.padding-top-60{padding-top:60px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-left-35{padding-left:35px}.padding-left-40{padding-left:40px}.padding-left-45{padding-left:45px}.padding-left-50{padding-left:50px}.padding-left-55{padding-left:55px}.padding-left-60{padding-left:60px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.padding-right-35{padding-right:35px}.padding-right-40{padding-right:40px}.padding-right-45{padding-right:45px}.padding-right-50{padding-right:50px}.padding-right-55{padding-right:55px}.padding-right-60{padding-right:60px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-35{margin:35px}.margin-40{margin:40px}.margin-45{margin:45px}.margin-50{margin:50px}.margin-55{margin:55px}.margin-60{margin:60px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-bottom-35{margin-bottom:35px}.margin-bottom-40{margin-bottom:40px}.margin-bottom-45{margin-bottom:45px}.margin-bottom-50{margin-bottom:50px}.margin-bottom-55{margin-bottom:55px}.margin-bottom-60{margin-bottom:60px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-top-35{margin-top:35px}.margin-top-40{margin-top:40px}.margin-top-45{margin-top:45px}.margin-top-50{margin-top:50px}.margin-top-55{margin-top:55px}.margin-top-60{margin-top:60px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-7{margin-right:7px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-right-35{margin-right:35px}.margin-right-40{margin-right:40px}.margin-right-45{margin-right:45px}.margin-right-50{margin-right:50px}.margin-right-55{margin-right:55px}.margin-right-60{margin-right:60px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.margin-left-35{margin-left:35px}.margin-left-40{margin-left:40px}.margin-left-45{margin-left:45px}.margin-left-50{margin-left:50px}.margin-left-55{margin-left:55px}.margin-left-60{margin-left:60px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.margin-auto{margin:0 auto}.breadcrumbs-default-margin{margin-bottom:20px}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;vertical-align:middle}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0;-moz-transform:scale(.9999);border-color:#f5f5f5 transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent}.triangle.triangle-white{border-color:#f9f9f9 hsla(0,0%,98%,0) hsla(0,0%,98%,0) transparent}.box{padding:15px 10px;margin-bottom:10px;margin-top:1.5em}.blue_box{background-color:#114e68}.blue_box h3,.blue_box p{color:#fff}.uppercase{text-transform:uppercase}.fw-200{font-weight:200}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.emphasis,.fw-700{font-weight:700}.emphasis{color:#f7941e}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.underlined{text-decoration:underline}.small{font-size:10px}.big{font-size:20px}.font-size-large{font-size:58px}.text-highlight{background:#eee;padding:12px 24px}.white-space-normal{white-space:normal}.header-short-underline{font-size:18px;font-weight:700}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}a:visited{color:#9e55d2}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}.a-underline{text-decoration:underline}.a-underline:hover{text-decoration:none}blockquote{font-size:14px}.top-level-heading{background:#868685;position:relative;padding:20px;margin-bottom:30px;color:#fff}.top-level-heading:after{width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #868685;position:absolute;content:"";bottom:-20px;left:50%;margin-left:-20px}.heading-underline{position:relative;font-size:2em;text-transform:uppercase;font-weight:200;margin:50px 0 20px}.heading-underline:after{border-bottom:4px solid #f7941d;content:"";display:block;width:100px;margin:10px auto 0}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{margin-bottom:-28px}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table-layout-fixed{table-layout:fixed}.table.table-solstice th{background:#afbbdc;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(2n){background:#40bbdc}.deprecated #novaContent{background:url(../images/vendor/eclipsefdn-solstice-template/bg-deprecated.gif?3219c56285f22eddb0f5746aeca4d4fe) center 75px no-repeat!important}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.textfield-underline{border-top:none;border-left:none;border-right:none;border-bottom:1px solid inherit;background-color:transparent;border-radius:0;-webkit-box-shadow:none;box-shadow:none;margin:10px auto;color:inherit}.textfield-underline:-moz-placeholder,.textfield-underline::-moz-placeholder{color:inherit}.textfield-underline:-ms-input-placeholder{color:inherit}.textfield-underline::-webkit-input-placeholder{color:inherit}.hidden-label label.control-label{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.border-reset{border:0!important}/*!
+ * Yamm!3 - Yet another megamenu for Bootstrap 3
  * http://geedmo.github.com/yamm3
- */.yamm .nav,.yamm .collapse,.yamm .dropup,.yamm .dropdown{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .nav.navbar-right .dropdown-menu{left:auto;right:0}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}html{position:relative;min-height:100%}.toolbar-container-wrapper{background:#fff}.toolbar-row{padding:8px 0;font-size:12px;color:#666;font-weight:300}.toolbar-row a{font-weight:300;padding-left:4px;color:#666}.toolbar-row a:hover{color:#f7941e}.toolbar-row ul{margin-bottom:0}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#afbbdc}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #ccc}@media (min-width:768px){.page-header-logo-bordered{border-bottom:1px solid #ccc}}#header-right{text-align:right}.thin-header .visible-thin{display:block !important}.logo-eclipse-default-mobile{max-height:50px}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}.img-responsive{display:block;max-width:100%;height:auto}.list-unstyled{list-style:none}.barebone-layout{color:#333;font-family:'Open Sans',"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857}.barebone-layout a{text-decoration:none}.barebone-layout .nav a{text-decoration:none}.barebone-layout .navbar-toggle{cursor:pointer}.barebone-layout .navbar-toggle.collapsed{display:block}.logo-eclipse-default{max-height:50px}.cla_dec{opacity:.33;vertical-align:bottom}.cla_dec:hover{opacity:1}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#efeef2;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#2c2255;height:3px}#main-menu .nav{margin:0;background:#2c2255}#main-menu .nav>li{border:1px solid #fafafb}#main-menu .nav>li.open .dropdown-toggle{color:#000;background:#efeef2}#main-menu .nav>li>a{color:#fff;text-transform:uppercase}#main-menu .nav>li .dropdown-menu{background:#2a2a2c;padding:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#f7941e;color:#fff}#main-menu .nav>li .dropdown-menu>li.active a:hover,#main-menu .nav>li .dropdown-menu>li.active a:focus{color:#000;background:#f5f5f5}#main-menu .nav>li .dropdown-menu>li>a{padding:5px 20px 5px 30px;color:#fff}#main-menu .nav>li .dropdown-menu>li>a:hover,#main-menu .nav>li .dropdown-menu>li>a:focus{color:#000;background:#f5f5f5}}@media (min-width:768px){#main-menu{font-size:.9em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#787878}#main-menu li a:hover,#main-menu li a:active{background:none;color:#f7941e}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:initial;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:initial;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:hover{color:#f7941e}#main-menu .dropdown-menu a:active{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active{color:#f7941e;background:none}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.separator,.ul-left-nav>li.about{padding-left:0;font-weight:bold}.ul-left-nav>li.separator img,.ul-left-nav>li.about img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#f7941e}/*!
+ * 
+ * @geedmo - Licensed under the MIT license
+ */.yamm .collapse,.yamm .dropdown,.yamm .dropup,.yamm .nav{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}html{position:relative;min-height:100%}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #ccc}@media (min-width:768px){.page-header-logo-bordered{border-bottom:1px solid #ccc}}#header-right{text-align:right}.thin-header .visible-thin{display:block!important}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}.img-responsive{display:block;max-width:100%;height:auto}.list-unstyled{list-style:none}.barebone-layout{color:#333;font-family:Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857}.barebone-layout .nav a,.barebone-layout a{text-decoration:none}.barebone-layout .navbar-toggle{cursor:pointer}.barebone-layout .navbar-toggle.collapsed{display:block}.logo-eclipse-default{max-height:50px}.cla_dec{opacity:.33;vertical-align:bottom}.cla_dec:hover{opacity:1}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#efeef2;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu #navbar-main-menu{float:none}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#2c2255;height:3px}#main-menu .nav{margin:0;padding:0;background:#2c2255}#main-menu .nav>li.open .dropdown-toggle{color:#fff;background:#efeef2}#main-menu .nav>li>a{color:#fff;text-transform:uppercase;padding:10px 15px;border-bottom:none}#main-menu .nav>li .dropdown-menu{background:#2a2a2c;padding:0;border-radius:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#f7941e;color:#fff}#main-menu .nav>li .dropdown-menu>li.active a:focus,#main-menu .nav>li .dropdown-menu>li.active a:hover{color:#000;background:#f5f5f5}#main-menu .nav>li .dropdown-menu>li>a{padding:10px 15px;color:#fff}#main-menu .nav>li .dropdown-menu>li>a:focus,#main-menu .nav>li .dropdown-menu>li>a:hover{color:#000;background:#f5f5f5}#main-menu .nav>li.main-menu-search .dropdown-toggle{display:none}#main-menu .nav>li.main-menu-search .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none;display:block}#main-menu .nav>li.main-menu-search .dropdown-menu p{color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .yamm-content{padding:15px}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input{background-color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input-box{border:none}}@media (max-width:1199px){#breadcrumb .container,#header-wrapper .container,.toolbar-container-wrapper .container,main .container{width:auto}}@media (min-width:768px){#main-menu{font-size:1em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#787878}#main-menu li a:active,#main-menu li a:hover{color:#f7941e}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:auto;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:auto;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:active,#main-menu .dropdown-menu a:hover{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active,#main-menu a:focus{color:#f7941e}#main-menu .nav .open a,#main-menu .nav .open a:focus,#main-menu .nav .open a:hover,#main-menu .nav>li>a:focus,#main-menu .nav>li>a:hover{background-color:transparent}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.about,.ul-left-nav>li.separator{padding-left:0;font-weight:700}.ul-left-nav>li.about img,.ul-left-nav>li.separator img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#f7941e}.logo-eclipse-default-mobile{max-height:50px}@media (min-width:768px){.alternate-layout #main-menu{font-size:1em}.alternate-layout #main-menu ul li{text-transform:uppercase}.alternate-layout #main-menu li a{color:#787878}.alternate-layout #main-menu li a:active,.alternate-layout #main-menu li a:hover{color:#f7941e}}@media (min-width:992px){.alternate-layout #main-menu{font-size:1em}}@media (max-width:767px){.alternate-layout #main-menu{background:#fff}}/*!
  *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}footer *,footer#solstice-footer *,.thin-header *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}footer *:before,footer#solstice-footer *:before,.thin-header *:before,footer *:after,footer#solstice-footer *:after,.thin-header *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}footer .list-inline,footer#solstice-footer .list-inline,.thin-header .list-inline{list-style:none;margin-left:-5px}footer .list-inline>li,footer#solstice-footer .list-inline>li,.thin-header .list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}.anchor{display:block;position:relative;top:-14px;visibility:hidden;z-index:9999}.scrollup{width:40px;height:40px;opacity:.3;position:fixed;bottom:50px;right:15px;display:none;text-indent:-9999px;background:url('../images/components/back-to-top/back-to-top.png') no-repeat}.scrollup:focus{outline:none}#back-to-top{margin:0;padding:0}#back-to-top a{border-top:1px solid #808080;background-color:#666;color:#fff;display:block;padding:4px 0 3px;text-align:center;width:100%;margin:0}#back-to-top a:hover,#back-to-top a:focus{text-decoration:none;background:#dfdfe4;color:#4a4a4a}footer#solstice-footer{background:no-repeat center center #242426;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding-top:3.5em;color:#a8a7a9;padding-bottom:26px;font-size:14px;border-top:1px solid #f7941e}footer#solstice-footer h2{color:#fff;padding:0 0 7px 0;margin-top:0;font-weight:300;font-size:21px;border-bottom:2px solid #6e6d71;max-width:80%}footer#solstice-footer a:link,footer#solstice-footer a:active,footer#solstice-footer a:visited{color:#a8a7a9;font-weight:400}footer#solstice-footer a:hover{color:#f7941e}footer#solstice-footer .social-media a:link,footer#solstice-footer .social-media a:active,footer#solstice-footer .social-media a:visited{color:#fff}footer#solstice-footer .social-media a:hover{color:#f7941e}footer#solstice-footer .logo-eclipse-white{margin-bottom:15px;max-width:161px}footer#solstice-footer .nav{margin-left:-15px;margin-bottom:25px}footer#solstice-footer .nav a{padding:6px 15px 6px 20px}footer#solstice-footer .nav a:hover{background:none;color:#f7941e}footer#solstice-footer li{padding-bottom:0}@media (max-width:991px){footer#solstice-footer #copyright-text,footer#solstice-footer #footer-other{text-align:left;clear:both}}@media (max-width:450px){footer#solstice-footer section.col-xs-11,footer#solstice-footer section.col-xs-14{position:relative;float:left;width:95.83333333%;min-height:1px;padding-left:15px;padding-right:15px}}@media (min-width:451px) and (max-width:767px){footer#solstice-footer #footer-useful-links{clear:left}footer#solstice-footer #copyright{clear:both}}#copyright{padding-top:15px}#copyright img{float:left;margin-top:10px;margin-right:15px;clear:both}#copyright-text{padding-top:21px;text-align:right}.social-media{margin-top:57px;font-size:2.3em}.social-media a:hover{color:#f7941e}#footer-eclipse-foundation,#footer-legal,#footer-useful-links,#footer-other{z-index:99}.footer-other-working-groups{font-weight:300;font-size:11px}.footer-other-working-groups .social-media{margin-top:20px}.footer-other-working-groups .img-responsive{padding-right:20px;max-width:235px}.footer-other-working-groups .footer-working-group-col{padding:55px 0 0 0}@media (min-width:992px){.footer-other-working-groups{background:url('../images/template/footer-working-group-separator.png') center repeat-y}.footer-other-working-groups .img-responsive{max-width:100%;padding-right:30px}.footer-other-working-groups .footer-working-group-col{padding:0}}.footer-min{background:#f5f5f5;border-top:1px solid #b5b5b5;position:absolute;width:100%;bottom:0;padding:10px 0}.footer-min a{font-weight:normal;font-size:.8em}.footer-min p,.footer-min ul{margin-bottom:0;font-size:.8em}.footer-min ul{text-align:right}.footer-min ul li{padding-bottom:0}@media screen and (max-width:767px){.footer-min p,.footer-min ul{text-align:center}}body.solstice-footer-min{margin-bottom:36px;position:static}@media screen and (max-width:767px){body.solstice-footer-min{margin-bottom:51px}}
\ No newline at end of file
+ */@font-face{font-family:FontAwesome;src:url(../fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);src:url(../fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix&v=4.7.0) format("embedded-opentype"),url(../fonts/vendor/font-awesome/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(../fonts/vendor/font-awesome/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(../fonts/vendor/font-awesome/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(../fonts/vendor/font-awesome/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\F000"}.fa-music:before{content:"\F001"}.fa-search:before{content:"\F002"}.fa-envelope-o:before{content:"\F003"}.fa-heart:before{content:"\F004"}.fa-star:before{content:"\F005"}.fa-star-o:before{content:"\F006"}.fa-user:before{content:"\F007"}.fa-film:before{content:"\F008"}.fa-th-large:before{content:"\F009"}.fa-th:before{content:"\F00A"}.fa-th-list:before{content:"\F00B"}.fa-check:before{content:"\F00C"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\F00D"}.fa-search-plus:before{content:"\F00E"}.fa-search-minus:before{content:"\F010"}.fa-power-off:before{content:"\F011"}.fa-signal:before{content:"\F012"}.fa-cog:before,.fa-gear:before{content:"\F013"}.fa-trash-o:before{content:"\F014"}.fa-home:before{content:"\F015"}.fa-file-o:before{content:"\F016"}.fa-clock-o:before{content:"\F017"}.fa-road:before{content:"\F018"}.fa-download:before{content:"\F019"}.fa-arrow-circle-o-down:before{content:"\F01A"}.fa-arrow-circle-o-up:before{content:"\F01B"}.fa-inbox:before{content:"\F01C"}.fa-play-circle-o:before{content:"\F01D"}.fa-repeat:before,.fa-rotate-right:before{content:"\F01E"}.fa-refresh:before{content:"\F021"}.fa-list-alt:before{content:"\F022"}.fa-lock:before{content:"\F023"}.fa-flag:before{content:"\F024"}.fa-headphones:before{content:"\F025"}.fa-volume-off:before{content:"\F026"}.fa-volume-down:before{content:"\F027"}.fa-volume-up:before{content:"\F028"}.fa-qrcode:before{content:"\F029"}.fa-barcode:before{content:"\F02A"}.fa-tag:before{content:"\F02B"}.fa-tags:before{content:"\F02C"}.fa-book:before{content:"\F02D"}.fa-bookmark:before{content:"\F02E"}.fa-print:before{content:"\F02F"}.fa-camera:before{content:"\F030"}.fa-font:before{content:"\F031"}.fa-bold:before{content:"\F032"}.fa-italic:before{content:"\F033"}.fa-text-height:before{content:"\F034"}.fa-text-width:before{content:"\F035"}.fa-align-left:before{content:"\F036"}.fa-align-center:before{content:"\F037"}.fa-align-right:before{content:"\F038"}.fa-align-justify:before{content:"\F039"}.fa-list:before{content:"\F03A"}.fa-dedent:before,.fa-outdent:before{content:"\F03B"}.fa-indent:before{content:"\F03C"}.fa-video-camera:before{content:"\F03D"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\F03E"}.fa-pencil:before{content:"\F040"}.fa-map-marker:before{content:"\F041"}.fa-adjust:before{content:"\F042"}.fa-tint:before{content:"\F043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\F044"}.fa-share-square-o:before{content:"\F045"}.fa-check-square-o:before{content:"\F046"}.fa-arrows:before{content:"\F047"}.fa-step-backward:before{content:"\F048"}.fa-fast-backward:before{content:"\F049"}.fa-backward:before{content:"\F04A"}.fa-play:before{content:"\F04B"}.fa-pause:before{content:"\F04C"}.fa-stop:before{content:"\F04D"}.fa-forward:before{content:"\F04E"}.fa-fast-forward:before{content:"\F050"}.fa-step-forward:before{content:"\F051"}.fa-eject:before{content:"\F052"}.fa-chevron-left:before{content:"\F053"}.fa-chevron-right:before{content:"\F054"}.fa-plus-circle:before{content:"\F055"}.fa-minus-circle:before{content:"\F056"}.fa-times-circle:before{content:"\F057"}.fa-check-circle:before{content:"\F058"}.fa-question-circle:before{content:"\F059"}.fa-info-circle:before{content:"\F05A"}.fa-crosshairs:before{content:"\F05B"}.fa-times-circle-o:before{content:"\F05C"}.fa-check-circle-o:before{content:"\F05D"}.fa-ban:before{content:"\F05E"}.fa-arrow-left:before{content:"\F060"}.fa-arrow-right:before{content:"\F061"}.fa-arrow-up:before{content:"\F062"}.fa-arrow-down:before{content:"\F063"}.fa-mail-forward:before,.fa-share:before{content:"\F064"}.fa-expand:before{content:"\F065"}.fa-compress:before{content:"\F066"}.fa-plus:before{content:"\F067"}.fa-minus:before{content:"\F068"}.fa-asterisk:before{content:"\F069"}.fa-exclamation-circle:before{content:"\F06A"}.fa-gift:before{content:"\F06B"}.fa-leaf:before{content:"\F06C"}.fa-fire:before{content:"\F06D"}.fa-eye:before{content:"\F06E"}.fa-eye-slash:before{content:"\F070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\F071"}.fa-plane:before{content:"\F072"}.fa-calendar:before{content:"\F073"}.fa-random:before{content:"\F074"}.fa-comment:before{content:"\F075"}.fa-magnet:before{content:"\F076"}.fa-chevron-up:before{content:"\F077"}.fa-chevron-down:before{content:"\F078"}.fa-retweet:before{content:"\F079"}.fa-shopping-cart:before{content:"\F07A"}.fa-folder:before{content:"\F07B"}.fa-folder-open:before{content:"\F07C"}.fa-arrows-v:before{content:"\F07D"}.fa-arrows-h:before{content:"\F07E"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\F080"}.fa-twitter-square:before{content:"\F081"}.fa-facebook-square:before{content:"\F082"}.fa-camera-retro:before{content:"\F083"}.fa-key:before{content:"\F084"}.fa-cogs:before,.fa-gears:before{content:"\F085"}.fa-comments:before{content:"\F086"}.fa-thumbs-o-up:before{content:"\F087"}.fa-thumbs-o-down:before{content:"\F088"}.fa-star-half:before{content:"\F089"}.fa-heart-o:before{content:"\F08A"}.fa-sign-out:before{content:"\F08B"}.fa-linkedin-square:before{content:"\F08C"}.fa-thumb-tack:before{content:"\F08D"}.fa-external-link:before{content:"\F08E"}.fa-sign-in:before{content:"\F090"}.fa-trophy:before{content:"\F091"}.fa-github-square:before{content:"\F092"}.fa-upload:before{content:"\F093"}.fa-lemon-o:before{content:"\F094"}.fa-phone:before{content:"\F095"}.fa-square-o:before{content:"\F096"}.fa-bookmark-o:before{content:"\F097"}.fa-phone-square:before{content:"\F098"}.fa-twitter:before{content:"\F099"}.fa-facebook-f:before,.fa-facebook:before{content:"\F09A"}.fa-github:before{content:"\F09B"}.fa-unlock:before{content:"\F09C"}.fa-credit-card:before{content:"\F09D"}.fa-feed:before,.fa-rss:before{content:"\F09E"}.fa-hdd-o:before{content:"\F0A0"}.fa-bullhorn:before{content:"\F0A1"}.fa-bell:before{content:"\F0F3"}.fa-certificate:before{content:"\F0A3"}.fa-hand-o-right:before{content:"\F0A4"}.fa-hand-o-left:before{content:"\F0A5"}.fa-hand-o-up:before{content:"\F0A6"}.fa-hand-o-down:before{content:"\F0A7"}.fa-arrow-circle-left:before{content:"\F0A8"}.fa-arrow-circle-right:before{content:"\F0A9"}.fa-arrow-circle-up:before{content:"\F0AA"}.fa-arrow-circle-down:before{content:"\F0AB"}.fa-globe:before{content:"\F0AC"}.fa-wrench:before{content:"\F0AD"}.fa-tasks:before{content:"\F0AE"}.fa-filter:before{content:"\F0B0"}.fa-briefcase:before{content:"\F0B1"}.fa-arrows-alt:before{content:"\F0B2"}.fa-group:before,.fa-users:before{content:"\F0C0"}.fa-chain:before,.fa-link:before{content:"\F0C1"}.fa-cloud:before{content:"\F0C2"}.fa-flask:before{content:"\F0C3"}.fa-cut:before,.fa-scissors:before{content:"\F0C4"}.fa-copy:before,.fa-files-o:before{content:"\F0C5"}.fa-paperclip:before{content:"\F0C6"}.fa-floppy-o:before,.fa-save:before{content:"\F0C7"}.fa-square:before{content:"\F0C8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\F0C9"}.fa-list-ul:before{content:"\F0CA"}.fa-list-ol:before{content:"\F0CB"}.fa-strikethrough:before{content:"\F0CC"}.fa-underline:before{content:"\F0CD"}.fa-table:before{content:"\F0CE"}.fa-magic:before{content:"\F0D0"}.fa-truck:before{content:"\F0D1"}.fa-pinterest:before{content:"\F0D2"}.fa-pinterest-square:before{content:"\F0D3"}.fa-google-plus-square:before{content:"\F0D4"}.fa-google-plus:before{content:"\F0D5"}.fa-money:before{content:"\F0D6"}.fa-caret-down:before{content:"\F0D7"}.fa-caret-up:before{content:"\F0D8"}.fa-caret-left:before{content:"\F0D9"}.fa-caret-right:before{content:"\F0DA"}.fa-columns:before{content:"\F0DB"}.fa-sort:before,.fa-unsorted:before{content:"\F0DC"}.fa-sort-desc:before,.fa-sort-down:before{content:"\F0DD"}.fa-sort-asc:before,.fa-sort-up:before{content:"\F0DE"}.fa-envelope:before{content:"\F0E0"}.fa-linkedin:before{content:"\F0E1"}.fa-rotate-left:before,.fa-undo:before{content:"\F0E2"}.fa-gavel:before,.fa-legal:before{content:"\F0E3"}.fa-dashboard:before,.fa-tachometer:before{content:"\F0E4"}.fa-comment-o:before{content:"\F0E5"}.fa-comments-o:before{content:"\F0E6"}.fa-bolt:before,.fa-flash:before{content:"\F0E7"}.fa-sitemap:before{content:"\F0E8"}.fa-umbrella:before{content:"\F0E9"}.fa-clipboard:before,.fa-paste:before{content:"\F0EA"}.fa-lightbulb-o:before{content:"\F0EB"}.fa-exchange:before{content:"\F0EC"}.fa-cloud-download:before{content:"\F0ED"}.fa-cloud-upload:before{content:"\F0EE"}.fa-user-md:before{content:"\F0F0"}.fa-stethoscope:before{content:"\F0F1"}.fa-suitcase:before{content:"\F0F2"}.fa-bell-o:before{content:"\F0A2"}.fa-coffee:before{content:"\F0F4"}.fa-cutlery:before{content:"\F0F5"}.fa-file-text-o:before{content:"\F0F6"}.fa-building-o:before{content:"\F0F7"}.fa-hospital-o:before{content:"\F0F8"}.fa-ambulance:before{content:"\F0F9"}.fa-medkit:before{content:"\F0FA"}.fa-fighter-jet:before{content:"\F0FB"}.fa-beer:before{content:"\F0FC"}.fa-h-square:before{content:"\F0FD"}.fa-plus-square:before{content:"\F0FE"}.fa-angle-double-left:before{content:"\F100"}.fa-angle-double-right:before{content:"\F101"}.fa-angle-double-up:before{content:"\F102"}.fa-angle-double-down:before{content:"\F103"}.fa-angle-left:before{content:"\F104"}.fa-angle-right:before{content:"\F105"}.fa-angle-up:before{content:"\F106"}.fa-angle-down:before{content:"\F107"}.fa-desktop:before{content:"\F108"}.fa-laptop:before{content:"\F109"}.fa-tablet:before{content:"\F10A"}.fa-mobile-phone:before,.fa-mobile:before{content:"\F10B"}.fa-circle-o:before{content:"\F10C"}.fa-quote-left:before{content:"\F10D"}.fa-quote-right:before{content:"\F10E"}.fa-spinner:before{content:"\F110"}.fa-circle:before{content:"\F111"}.fa-mail-reply:before,.fa-reply:before{content:"\F112"}.fa-github-alt:before{content:"\F113"}.fa-folder-o:before{content:"\F114"}.fa-folder-open-o:before{content:"\F115"}.fa-smile-o:before{content:"\F118"}.fa-frown-o:before{content:"\F119"}.fa-meh-o:before{content:"\F11A"}.fa-gamepad:before{content:"\F11B"}.fa-keyboard-o:before{content:"\F11C"}.fa-flag-o:before{content:"\F11D"}.fa-flag-checkered:before{content:"\F11E"}.fa-terminal:before{content:"\F120"}.fa-code:before{content:"\F121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\F122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\F123"}.fa-location-arrow:before{content:"\F124"}.fa-crop:before{content:"\F125"}.fa-code-fork:before{content:"\F126"}.fa-chain-broken:before,.fa-unlink:before{content:"\F127"}.fa-question:before{content:"\F128"}.fa-info:before{content:"\F129"}.fa-exclamation:before{content:"\F12A"}.fa-superscript:before{content:"\F12B"}.fa-subscript:before{content:"\F12C"}.fa-eraser:before{content:"\F12D"}.fa-puzzle-piece:before{content:"\F12E"}.fa-microphone:before{content:"\F130"}.fa-microphone-slash:before{content:"\F131"}.fa-shield:before{content:"\F132"}.fa-calendar-o:before{content:"\F133"}.fa-fire-extinguisher:before{content:"\F134"}.fa-rocket:before{content:"\F135"}.fa-maxcdn:before{content:"\F136"}.fa-chevron-circle-left:before{content:"\F137"}.fa-chevron-circle-right:before{content:"\F138"}.fa-chevron-circle-up:before{content:"\F139"}.fa-chevron-circle-down:before{content:"\F13A"}.fa-html5:before{content:"\F13B"}.fa-css3:before{content:"\F13C"}.fa-anchor:before{content:"\F13D"}.fa-unlock-alt:before{content:"\F13E"}.fa-bullseye:before{content:"\F140"}.fa-ellipsis-h:before{content:"\F141"}.fa-ellipsis-v:before{content:"\F142"}.fa-rss-square:before{content:"\F143"}.fa-play-circle:before{content:"\F144"}.fa-ticket:before{content:"\F145"}.fa-minus-square:before{content:"\F146"}.fa-minus-square-o:before{content:"\F147"}.fa-level-up:before{content:"\F148"}.fa-level-down:before{content:"\F149"}.fa-check-square:before{content:"\F14A"}.fa-pencil-square:before{content:"\F14B"}.fa-external-link-square:before{content:"\F14C"}.fa-share-square:before{content:"\F14D"}.fa-compass:before{content:"\F14E"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\F150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\F151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\F152"}.fa-eur:before,.fa-euro:before{content:"\F153"}.fa-gbp:before{content:"\F154"}.fa-dollar:before,.fa-usd:before{content:"\F155"}.fa-inr:before,.fa-rupee:before{content:"\F156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\F157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\F158"}.fa-krw:before,.fa-won:before{content:"\F159"}.fa-bitcoin:before,.fa-btc:before{content:"\F15A"}.fa-file:before{content:"\F15B"}.fa-file-text:before{content:"\F15C"}.fa-sort-alpha-asc:before{content:"\F15D"}.fa-sort-alpha-desc:before{content:"\F15E"}.fa-sort-amount-asc:before{content:"\F160"}.fa-sort-amount-desc:before{content:"\F161"}.fa-sort-numeric-asc:before{content:"\F162"}.fa-sort-numeric-desc:before{content:"\F163"}.fa-thumbs-up:before{content:"\F164"}.fa-thumbs-down:before{content:"\F165"}.fa-youtube-square:before{content:"\F166"}.fa-youtube:before{content:"\F167"}.fa-xing:before{content:"\F168"}.fa-xing-square:before{content:"\F169"}.fa-youtube-play:before{content:"\F16A"}.fa-dropbox:before{content:"\F16B"}.fa-stack-overflow:before{content:"\F16C"}.fa-instagram:before{content:"\F16D"}.fa-flickr:before{content:"\F16E"}.fa-adn:before{content:"\F170"}.fa-bitbucket:before{content:"\F171"}.fa-bitbucket-square:before{content:"\F172"}.fa-tumblr:before{content:"\F173"}.fa-tumblr-square:before{content:"\F174"}.fa-long-arrow-down:before{content:"\F175"}.fa-long-arrow-up:before{content:"\F176"}.fa-long-arrow-left:before{content:"\F177"}.fa-long-arrow-right:before{content:"\F178"}.fa-apple:before{content:"\F179"}.fa-windows:before{content:"\F17A"}.fa-android:before{content:"\F17B"}.fa-linux:before{content:"\F17C"}.fa-dribbble:before{content:"\F17D"}.fa-skype:before{content:"\F17E"}.fa-foursquare:before{content:"\F180"}.fa-trello:before{content:"\F181"}.fa-female:before{content:"\F182"}.fa-male:before{content:"\F183"}.fa-gittip:before,.fa-gratipay:before{content:"\F184"}.fa-sun-o:before{content:"\F185"}.fa-moon-o:before{content:"\F186"}.fa-archive:before{content:"\F187"}.fa-bug:before{content:"\F188"}.fa-vk:before{content:"\F189"}.fa-weibo:before{content:"\F18A"}.fa-renren:before{content:"\F18B"}.fa-pagelines:before{content:"\F18C"}.fa-stack-exchange:before{content:"\F18D"}.fa-arrow-circle-o-right:before{content:"\F18E"}.fa-arrow-circle-o-left:before{content:"\F190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\F191"}.fa-dot-circle-o:before{content:"\F192"}.fa-wheelchair:before{content:"\F193"}.fa-vimeo-square:before{content:"\F194"}.fa-try:before,.fa-turkish-lira:before{content:"\F195"}.fa-plus-square-o:before{content:"\F196"}.fa-space-shuttle:before{content:"\F197"}.fa-slack:before{content:"\F198"}.fa-envelope-square:before{content:"\F199"}.fa-wordpress:before{content:"\F19A"}.fa-openid:before{content:"\F19B"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\F19C"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\F19D"}.fa-yahoo:before{content:"\F19E"}.fa-google:before{content:"\F1A0"}.fa-reddit:before{content:"\F1A1"}.fa-reddit-square:before{content:"\F1A2"}.fa-stumbleupon-circle:before{content:"\F1A3"}.fa-stumbleupon:before{content:"\F1A4"}.fa-delicious:before{content:"\F1A5"}.fa-digg:before{content:"\F1A6"}.fa-pied-piper-pp:before{content:"\F1A7"}.fa-pied-piper-alt:before{content:"\F1A8"}.fa-drupal:before{content:"\F1A9"}.fa-joomla:before{content:"\F1AA"}.fa-language:before{content:"\F1AB"}.fa-fax:before{content:"\F1AC"}.fa-building:before{content:"\F1AD"}.fa-child:before{content:"\F1AE"}.fa-paw:before{content:"\F1B0"}.fa-spoon:before{content:"\F1B1"}.fa-cube:before{content:"\F1B2"}.fa-cubes:before{content:"\F1B3"}.fa-behance:before{content:"\F1B4"}.fa-behance-square:before{content:"\F1B5"}.fa-steam:before{content:"\F1B6"}.fa-steam-square:before{content:"\F1B7"}.fa-recycle:before{content:"\F1B8"}.fa-automobile:before,.fa-car:before{content:"\F1B9"}.fa-cab:before,.fa-taxi:before{content:"\F1BA"}.fa-tree:before{content:"\F1BB"}.fa-spotify:before{content:"\F1BC"}.fa-deviantart:before{content:"\F1BD"}.fa-soundcloud:before{content:"\F1BE"}.fa-database:before{content:"\F1C0"}.fa-file-pdf-o:before{content:"\F1C1"}.fa-file-word-o:before{content:"\F1C2"}.fa-file-excel-o:before{content:"\F1C3"}.fa-file-powerpoint-o:before{content:"\F1C4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\F1C5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\F1C6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\F1C7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\F1C8"}.fa-file-code-o:before{content:"\F1C9"}.fa-vine:before{content:"\F1CA"}.fa-codepen:before{content:"\F1CB"}.fa-jsfiddle:before{content:"\F1CC"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\F1CD"}.fa-circle-o-notch:before{content:"\F1CE"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\F1D0"}.fa-empire:before,.fa-ge:before{content:"\F1D1"}.fa-git-square:before{content:"\F1D2"}.fa-git:before{content:"\F1D3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\F1D4"}.fa-tencent-weibo:before{content:"\F1D5"}.fa-qq:before{content:"\F1D6"}.fa-wechat:before,.fa-weixin:before{content:"\F1D7"}.fa-paper-plane:before,.fa-send:before{content:"\F1D8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\F1D9"}.fa-history:before{content:"\F1DA"}.fa-circle-thin:before{content:"\F1DB"}.fa-header:before{content:"\F1DC"}.fa-paragraph:before{content:"\F1DD"}.fa-sliders:before{content:"\F1DE"}.fa-share-alt:before{content:"\F1E0"}.fa-share-alt-square:before{content:"\F1E1"}.fa-bomb:before{content:"\F1E2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\F1E3"}.fa-tty:before{content:"\F1E4"}.fa-binoculars:before{content:"\F1E5"}.fa-plug:before{content:"\F1E6"}.fa-slideshare:before{content:"\F1E7"}.fa-twitch:before{content:"\F1E8"}.fa-yelp:before{content:"\F1E9"}.fa-newspaper-o:before{content:"\F1EA"}.fa-wifi:before{content:"\F1EB"}.fa-calculator:before{content:"\F1EC"}.fa-paypal:before{content:"\F1ED"}.fa-google-wallet:before{content:"\F1EE"}.fa-cc-visa:before{content:"\F1F0"}.fa-cc-mastercard:before{content:"\F1F1"}.fa-cc-discover:before{content:"\F1F2"}.fa-cc-amex:before{content:"\F1F3"}.fa-cc-paypal:before{content:"\F1F4"}.fa-cc-stripe:before{content:"\F1F5"}.fa-bell-slash:before{content:"\F1F6"}.fa-bell-slash-o:before{content:"\F1F7"}.fa-trash:before{content:"\F1F8"}.fa-copyright:before{content:"\F1F9"}.fa-at:before{content:"\F1FA"}.fa-eyedropper:before{content:"\F1FB"}.fa-paint-brush:before{content:"\F1FC"}.fa-birthday-cake:before{content:"\F1FD"}.fa-area-chart:before{content:"\F1FE"}.fa-pie-chart:before{content:"\F200"}.fa-line-chart:before{content:"\F201"}.fa-lastfm:before{content:"\F202"}.fa-lastfm-square:before{content:"\F203"}.fa-toggle-off:before{content:"\F204"}.fa-toggle-on:before{content:"\F205"}.fa-bicycle:before{content:"\F206"}.fa-bus:before{content:"\F207"}.fa-ioxhost:before{content:"\F208"}.fa-angellist:before{content:"\F209"}.fa-cc:before{content:"\F20A"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\F20B"}.fa-meanpath:before{content:"\F20C"}.fa-buysellads:before{content:"\F20D"}.fa-connectdevelop:before{content:"\F20E"}.fa-dashcube:before{content:"\F210"}.fa-forumbee:before{content:"\F211"}.fa-leanpub:before{content:"\F212"}.fa-sellsy:before{content:"\F213"}.fa-shirtsinbulk:before{content:"\F214"}.fa-simplybuilt:before{content:"\F215"}.fa-skyatlas:before{content:"\F216"}.fa-cart-plus:before{content:"\F217"}.fa-cart-arrow-down:before{content:"\F218"}.fa-diamond:before{content:"\F219"}.fa-ship:before{content:"\F21A"}.fa-user-secret:before{content:"\F21B"}.fa-motorcycle:before{content:"\F21C"}.fa-street-view:before{content:"\F21D"}.fa-heartbeat:before{content:"\F21E"}.fa-venus:before{content:"\F221"}.fa-mars:before{content:"\F222"}.fa-mercury:before{content:"\F223"}.fa-intersex:before,.fa-transgender:before{content:"\F224"}.fa-transgender-alt:before{content:"\F225"}.fa-venus-double:before{content:"\F226"}.fa-mars-double:before{content:"\F227"}.fa-venus-mars:before{content:"\F228"}.fa-mars-stroke:before{content:"\F229"}.fa-mars-stroke-v:before{content:"\F22A"}.fa-mars-stroke-h:before{content:"\F22B"}.fa-neuter:before{content:"\F22C"}.fa-genderless:before{content:"\F22D"}.fa-facebook-official:before{content:"\F230"}.fa-pinterest-p:before{content:"\F231"}.fa-whatsapp:before{content:"\F232"}.fa-server:before{content:"\F233"}.fa-user-plus:before{content:"\F234"}.fa-user-times:before{content:"\F235"}.fa-bed:before,.fa-hotel:before{content:"\F236"}.fa-viacoin:before{content:"\F237"}.fa-train:before{content:"\F238"}.fa-subway:before{content:"\F239"}.fa-medium:before{content:"\F23A"}.fa-y-combinator:before,.fa-yc:before{content:"\F23B"}.fa-optin-monster:before{content:"\F23C"}.fa-opencart:before{content:"\F23D"}.fa-expeditedssl:before{content:"\F23E"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\F240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\F241"}.fa-battery-2:before,.fa-battery-half:before{content:"\F242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\F243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\F244"}.fa-mouse-pointer:before{content:"\F245"}.fa-i-cursor:before{content:"\F246"}.fa-object-group:before{content:"\F247"}.fa-object-ungroup:before{content:"\F248"}.fa-sticky-note:before{content:"\F249"}.fa-sticky-note-o:before{content:"\F24A"}.fa-cc-jcb:before{content:"\F24B"}.fa-cc-diners-club:before{content:"\F24C"}.fa-clone:before{content:"\F24D"}.fa-balance-scale:before{content:"\F24E"}.fa-hourglass-o:before{content:"\F250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\F251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\F252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\F253"}.fa-hourglass:before{content:"\F254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\F255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\F256"}.fa-hand-scissors-o:before{content:"\F257"}.fa-hand-lizard-o:before{content:"\F258"}.fa-hand-spock-o:before{content:"\F259"}.fa-hand-pointer-o:before{content:"\F25A"}.fa-hand-peace-o:before{content:"\F25B"}.fa-trademark:before{content:"\F25C"}.fa-registered:before{content:"\F25D"}.fa-creative-commons:before{content:"\F25E"}.fa-gg:before{content:"\F260"}.fa-gg-circle:before{content:"\F261"}.fa-tripadvisor:before{content:"\F262"}.fa-odnoklassniki:before{content:"\F263"}.fa-odnoklassniki-square:before{content:"\F264"}.fa-get-pocket:before{content:"\F265"}.fa-wikipedia-w:before{content:"\F266"}.fa-safari:before{content:"\F267"}.fa-chrome:before{content:"\F268"}.fa-firefox:before{content:"\F269"}.fa-opera:before{content:"\F26A"}.fa-internet-explorer:before{content:"\F26B"}.fa-television:before,.fa-tv:before{content:"\F26C"}.fa-contao:before{content:"\F26D"}.fa-500px:before{content:"\F26E"}.fa-amazon:before{content:"\F270"}.fa-calendar-plus-o:before{content:"\F271"}.fa-calendar-minus-o:before{content:"\F272"}.fa-calendar-times-o:before{content:"\F273"}.fa-calendar-check-o:before{content:"\F274"}.fa-industry:before{content:"\F275"}.fa-map-pin:before{content:"\F276"}.fa-map-signs:before{content:"\F277"}.fa-map-o:before{content:"\F278"}.fa-map:before{content:"\F279"}.fa-commenting:before{content:"\F27A"}.fa-commenting-o:before{content:"\F27B"}.fa-houzz:before{content:"\F27C"}.fa-vimeo:before{content:"\F27D"}.fa-black-tie:before{content:"\F27E"}.fa-fonticons:before{content:"\F280"}.fa-reddit-alien:before{content:"\F281"}.fa-edge:before{content:"\F282"}.fa-credit-card-alt:before{content:"\F283"}.fa-codiepie:before{content:"\F284"}.fa-modx:before{content:"\F285"}.fa-fort-awesome:before{content:"\F286"}.fa-usb:before{content:"\F287"}.fa-product-hunt:before{content:"\F288"}.fa-mixcloud:before{content:"\F289"}.fa-scribd:before{content:"\F28A"}.fa-pause-circle:before{content:"\F28B"}.fa-pause-circle-o:before{content:"\F28C"}.fa-stop-circle:before{content:"\F28D"}.fa-stop-circle-o:before{content:"\F28E"}.fa-shopping-bag:before{content:"\F290"}.fa-shopping-basket:before{content:"\F291"}.fa-hashtag:before{content:"\F292"}.fa-bluetooth:before{content:"\F293"}.fa-bluetooth-b:before{content:"\F294"}.fa-percent:before{content:"\F295"}.fa-gitlab:before{content:"\F296"}.fa-wpbeginner:before{content:"\F297"}.fa-wpforms:before{content:"\F298"}.fa-envira:before{content:"\F299"}.fa-universal-access:before{content:"\F29A"}.fa-wheelchair-alt:before{content:"\F29B"}.fa-question-circle-o:before{content:"\F29C"}.fa-blind:before{content:"\F29D"}.fa-audio-description:before{content:"\F29E"}.fa-volume-control-phone:before{content:"\F2A0"}.fa-braille:before{content:"\F2A1"}.fa-assistive-listening-systems:before{content:"\F2A2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\F2A3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\F2A4"}.fa-glide:before{content:"\F2A5"}.fa-glide-g:before{content:"\F2A6"}.fa-sign-language:before,.fa-signing:before{content:"\F2A7"}.fa-low-vision:before{content:"\F2A8"}.fa-viadeo:before{content:"\F2A9"}.fa-viadeo-square:before{content:"\F2AA"}.fa-snapchat:before{content:"\F2AB"}.fa-snapchat-ghost:before{content:"\F2AC"}.fa-snapchat-square:before{content:"\F2AD"}.fa-pied-piper:before{content:"\F2AE"}.fa-first-order:before{content:"\F2B0"}.fa-yoast:before{content:"\F2B1"}.fa-themeisle:before{content:"\F2B2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\F2B3"}.fa-fa:before,.fa-font-awesome:before{content:"\F2B4"}.fa-handshake-o:before{content:"\F2B5"}.fa-envelope-open:before{content:"\F2B6"}.fa-envelope-open-o:before{content:"\F2B7"}.fa-linode:before{content:"\F2B8"}.fa-address-book:before{content:"\F2B9"}.fa-address-book-o:before{content:"\F2BA"}.fa-address-card:before,.fa-vcard:before{content:"\F2BB"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\F2BC"}.fa-user-circle:before{content:"\F2BD"}.fa-user-circle-o:before{content:"\F2BE"}.fa-user-o:before{content:"\F2C0"}.fa-id-badge:before{content:"\F2C1"}.fa-drivers-license:before,.fa-id-card:before{content:"\F2C2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\F2C3"}.fa-quora:before{content:"\F2C4"}.fa-free-code-camp:before{content:"\F2C5"}.fa-telegram:before{content:"\F2C6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\F2C7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\F2C8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\F2C9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\F2CA"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\F2CB"}.fa-shower:before{content:"\F2CC"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\F2CD"}.fa-podcast:before{content:"\F2CE"}.fa-window-maximize:before{content:"\F2D0"}.fa-window-minimize:before{content:"\F2D1"}.fa-window-restore:before{content:"\F2D2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\F2D3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\F2D4"}.fa-bandcamp:before{content:"\F2D5"}.fa-grav:before{content:"\F2D6"}.fa-etsy:before{content:"\F2D7"}.fa-imdb:before{content:"\F2D8"}.fa-ravelry:before{content:"\F2D9"}.fa-eercast:before{content:"\F2DA"}.fa-microchip:before{content:"\F2DB"}.fa-snowflake-o:before{content:"\F2DC"}.fa-superpowers:before{content:"\F2DD"}.fa-wpexplorer:before{content:"\F2DE"}.fa-meetup:before{content:"\F2E0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.thin-header *,.thin-header :after,.thin-header :before,footer#solstice-footer *,footer#solstice-footer :after,footer#solstice-footer :before,footer *,footer :after,footer :before{-webkit-box-sizing:border-box;box-sizing:border-box}.thin-header .list-inline,footer#solstice-footer .list-inline,footer .list-inline{list-style:none;margin-left:-5px}.thin-header .list-inline>li,footer#solstice-footer .list-inline>li,footer .list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}.anchor{display:block;position:relative;top:-14px;visibility:hidden;z-index:9999}.scrollup{width:40px;height:40px;opacity:.3;position:fixed;bottom:50px;right:15px;display:none;text-indent:-9999px;background:url(../images/vendor/eclipsefdn-solstice-components/back-to-top/back-to-top.png?19e6da177416da3208367d78ea0a3c23) no-repeat}.scrollup:focus{outline:none}#back-to-top{margin:0;padding:0}#back-to-top a{border-top:1px solid gray;background-color:#666;color:#fff;display:block;padding:4px 0 3px;text-align:center;width:100%;margin:0}#back-to-top a:focus,#back-to-top a:hover{text-decoration:none;background:#dfdfe4;color:#4a4a4a}footer#solstice-footer{background:no-repeat 50% #242426;font-family:Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif;padding-top:3.5em;color:#a8a7a9;padding-bottom:26px;font-size:14px;border-top:1px solid #f7941e}footer#solstice-footer h2{color:#fff;margin-top:0;font-weight:300;font-size:21px;max-width:80%}footer#solstice-footer a:active,footer#solstice-footer a:focus,footer#solstice-footer a:link,footer#solstice-footer a:visited{color:#a8a7a9;font-weight:400}footer#solstice-footer a:hover{color:#f7941e}footer#solstice-footer .logo-eclipse-white{margin-bottom:15px;max-width:161px}footer#solstice-footer .nav{margin-left:-15px;margin-bottom:25px}footer#solstice-footer .nav a{padding:6px 15px 6px 20px}footer#solstice-footer .nav a:hover{background:none;color:#f7941e}footer#solstice-footer li{padding-bottom:0}@media (max-width:450px){footer#solstice-footer section.col-xs-11,footer#solstice-footer section.col-xs-14{position:relative;float:left;width:95.83333333%;min-height:1px;padding-left:15px;padding-right:15px}}@media (min-width:451px) and (max-width:767px){footer#solstice-footer #footer-useful-links{clear:left}footer#solstice-footer #copyright{clear:both}}#copyright{padding-top:15px}#copyright img{float:left;margin-top:10px;margin-right:15px;clear:both}@media (max-width:991px){#copyright-text{margin-bottom:20px}}@media (min-width:992px){.social-media{text-align:right}}#footer-eclipse-foundation,#footer-legal,#footer-other,#footer-useful-links{z-index:99}.footer-other-working-groups{font-weight:300;font-size:11px}.footer-other-working-groups .logo-eclipse-default,.footer-other-working-groups .social-media{margin-bottom:20px;margin-top:0}.footer-other-working-groups .img-responsive{max-width:175px}.footer-other-working-groups .footer-working-group-col{padding:0}@media (min-width:1200px){.footer-other-working-groups{background:url(../images/vendor/eclipsefdn-solstice-template/footer-working-group-separator.png?7755eb2e94e0b22d832e9ffa7cd79479) 50% repeat-y}.footer-other-working-groups .img-responsive{max-width:200px}}.footer-min{background:#f5f5f5;border-top:1px solid #b5b5b5;position:absolute;width:100%;bottom:0;padding:10px 0}.footer-min a{font-weight:400;font-size:.8em}.footer-min p,.footer-min ul{margin-bottom:0;font-size:.8em}.footer-min ul{text-align:right}.footer-min ul li{padding-bottom:0}@media screen and (max-width:767px){.footer-min p,.footer-min ul{text-align:center}}body.solstice-footer-min{margin-bottom:36px;position:static}@media screen and (max-width:767px){body.solstice-footer-min{margin-bottom:51px}}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/stylesheets/barebone.min.css b/eclipse.org-common/themes/solstice/public/stylesheets/barebone.min.css
index 26b3b5e..343d378 100644
--- a/eclipse.org-common/themes/solstice/public/stylesheets/barebone.min.css
+++ b/eclipse.org-common/themes/solstice/public/stylesheets/barebone.min.css
@@ -1,6 +1,6 @@
-.thin-header *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.thin-header *:before,.thin-header *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.default-breadcrumbs{background:url('../images/template/breadcrumbs-large-bg.jpg') center #1b1732;background-size:100%;color:#fff;text-align:center;border-bottom:none;font-size:inherit}.default-breadcrumbs p{color:#bebebe;max-width:450px;margin:30px auto 20px auto;font-weight:400}.default-breadcrumbs p:last-child{padding-bottom:1.5em}.default-breadcrumbs .btn{min-width:150px;margin-right:10px;margin-left:10px}.default-breadcrumbs .breadcrumb{background:none;margin:15px 0 14px 0;padding-left:0;padding-bottom:0;text-align:left;text-transform:uppercase}.default-breadcrumbs .breadcrumb li{padding-bottom:3px}.default-breadcrumbs .breadcrumb .active{color:#fff}.default-breadcrumbs .breadcrumb a{font-weight:600;text-decoration:none}.default-breadcrumbs .breadcrumb a:link,.default-breadcrumbs .breadcrumb a:visited{color:#ababab}.default-breadcrumbs .breadcrumb a:hover{color:#f7941e}body #st-el-4 .st-btns{overflow:auto}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#fff}.breadcrumb>.active{color:#777}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#2c2255}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#2c2255}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#2c2255}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}.float-right{float:right}.float-left{float:left}.padding-0{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.reset{padding:0;margin:0}.visible-thin{display:none !important}.brand-primary{color:#2c2255}.brand-secondary{color:#afbbdc}.brand-success{color:#5cb85c}.brand-info{color:#afbbdc}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}tr.background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.background-blue{background:#afbbdc;color:#fff}.blue{color:#00f}.darkblue{color:#009}.yellow{color:yellow}.red{color:#f00}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-grey{background:#f5f5f5}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-white{background:#fff}#novaContent.background-image-none{background-image:none}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;-moz-transition:opacity .15s ease-in-out;-ms-transition:opacity .15s ease-in-out;-o-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{padding-bottom:0;margin-bottom:-28px}.table-layout-fixed{table-layout:fixed}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.col-xs-5-eclipse,.col-sm-5-eclipse,.col-md-5-eclipse,.col-lg-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.donation-button{padding-top:.75em;padding-bottom:.75em;padding-left:3.5em;padding-right:3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:hover,.btn-simple:active{border:1px solid #777;background:#eee}.btn-smaller,.btn-group-smaller>.btn{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:normal}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing *:before,.reset-box-sizing *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px 5px}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.no-border{border:none ! important}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table.table-solstice th{background:#afbbdc;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(even){background:#40bbdc}.vertical-align{display:flex;align-items:center}@media (min-width:992px){.vertical-align-md{display:flex;align-items:center}}.box-gray-border{border:1px solid #d6d6d6}/*!
- * Yamm!3
- * Yet another megamenu for Bootstrap 3
- * 
+.thin-header *,.thin-header :after,.thin-header :before{-webkit-box-sizing:border-box;box-sizing:border-box}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.default-breadcrumbs{background:url(../images/vendor/eclipsefdn-solstice-template/breadcrumbs-large-bg.jpg?4a206a335e863414be1696a765c91fec) 50% #1b1732;background-size:100%;color:#ababab;border-bottom:none;border-top:none;font-size:inherit}.breadcrumb{background:none;margin-bottom:0;text-transform:uppercase}.breadcrumb a{font-weight:600}.breadcrumb a:link,.breadcrumb a:visited{color:#ababab}.breadcrumb a:hover{color:#f7941e}body #st-el-4 .st-btns{overflow:auto}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-13,.col-lg-14,.col-lg-15,.col-lg-16,.col-lg-17,.col-lg-18,.col-lg-19,.col-lg-20,.col-lg-21,.col-lg-22,.col-lg-23,.col-lg-24,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-13,.col-md-14,.col-md-15,.col-md-16,.col-md-17,.col-md-18,.col-md-19,.col-md-20,.col-md-21,.col-md-22,.col-md-23,.col-md-24,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-13,.col-sm-14,.col-sm-15,.col-sm-16,.col-sm-17,.col-sm-18,.col-sm-19,.col-sm-20,.col-sm-21,.col-sm-22,.col-sm-23,.col-sm-24,.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-13,.col-xs-14,.col-xs-15,.col-xs-16,.col-xs-17,.col-xs-18,.col-xs-19,.col-xs-20,.col-xs-21,.col-xs-22,.col-xs-23,.col-xs-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-13,.col-xs-14,.col-xs-15,.col-xs-16,.col-xs-17,.col-xs-18,.col-xs-19,.col-xs-20,.col-xs-21,.col-xs-22,.col-xs-23,.col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-13,.col-sm-14,.col-sm-15,.col-sm-16,.col-sm-17,.col-sm-18,.col-sm-19,.col-sm-20,.col-sm-21,.col-sm-22,.col-sm-23,.col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-13,.col-md-14,.col-md-15,.col-md-16,.col-md-17,.col-md-18,.col-md-19,.col-md-20,.col-md-21,.col-md-22,.col-md-23,.col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-13,.col-lg-14,.col-lg-15,.col-lg-16,.col-lg-17,.col-lg-18,.col-lg-19,.col-lg-20,.col-lg-21,.col-lg-22,.col-lg-23,.col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.breadcrumb{padding:20px 30px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\A0";padding:0 5px;color:#ababab}.breadcrumb>.active{color:#fff}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#2c2255}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li,.nav>li>a{position:relative;display:block}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#2c2255}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container-fluid .navbar-brand,.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin:8px -15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.row:after,.row:before{content:" ";display:table}.clearfix:after,.container-fluid:after,.container:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.block-box,.sideitem{background:#f6f6f6;color:#202020;margin:0 0 2em;padding:0 0 5px;border:none}.block-box h2,.block-box h3,.block-box h6,.sideitem h2,.sideitem h3,.sideitem h6{background:#afbbdc;color:#fff;margin:0 0 15px;padding:15px 20px;text-transform:uppercase;font-weight:700;font-size:15px}.block-box h2 a:hover,.block-box h3 a:hover,.block-box h6 a:hover,.sideitem h2 a:hover,.sideitem h3 a:hover,.sideitem h6 a:hover{color:#fff}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0 15px 15px}.block-box .list-heading,.sideitem .list-heading{font-weight:700;margin-bottom:4px;font-size:15px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.block-heading{background:none repeat scroll 0 0 #afbbdc;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.brand-primary{color:#2c2255}.brand-secondary{color:#868685}.brand-tertiary{color:#afbbdc}.brand-quaternary{color:#342343}.brand-quinary{color:#bed247}.brand-success{color:#5cb85c}.brand-info{color:#afbbdc}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.blue{color:#00f}.darkblue{color:#009}.yellow{color:#ff0}.red{color:red}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-primary{background:#2c2255;color:#fff}.background-primary h2,.background-primary h3,.background-primary h4,.background-primary li,.background-primary p{color:inherit}.background-secondary{background:#868685;color:#fff}.background-secondary h2,.background-secondary h3,.background-secondary h4,.background-secondary li,.background-secondary p{color:inherit}.background-tertiary{background:#afbbdc;color:#fff}.background-tertiary h2,.background-tertiary h3,.background-tertiary h4,.background-tertiary li,.background-tertiary p{color:inherit}.background-quaternary{background:#342343;color:#fff}.background-quaternary h2,.background-quaternary h3,.background-quaternary h4,.background-quaternary li,.background-quaternary p{color:inherit}.background-quinary{background:#bed247;color:#fff}.background-quinary h2,.background-quinary h3,.background-quinary h4,.background-quinary li,.background-quinary p{color:inherit}.background-bg-body{background:#fff}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-mid-grey{background:#e6e7e8}.background-grey{background:#f5f5f5}.background-light-grey{background:#f1f1f1}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-blue{background:#afbbdc;color:#fff}.background-white{background:#fff}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}.label-purple{background-color:#2c2255}#novaContent.background-image-none{background-image:none}.table-striped>tbody>tr:nth-of-type(odd).background-orange,tr.background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.box-gray-border{border:1px solid #d6d6d6}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.border-grey-right{border-right:1px solid #ccc}.no-border{border:none!important}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing :after,.reset-box-sizing :before{-webkit-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.vertical-align{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (min-width:992px){.vertical-align-md{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.float-right{float:right}.float-left{float:left}.visible-thin{display:none!important}.col-lg-5-eclipse,.col-md-5-eclipse,.col-sm-5-eclipse,.col-xs-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:700;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:"\F00C"}.container-list{counter-reset:list;padding-left:55px}.container-list>.list-row{margin-top:12px;position:relative;min-height:3em}.container-list>.list-row:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:700;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(list);counter-increment:list;display:block}.container-list>.list-row>div:first-child{padding-left:.5em}.container-list>.list-row .no-wrap{white-space:nowrap}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:700;color:#969696}.list-checkmark a:hover{color:#f7941e}.list-padding li{padding-bottom:25px}.list-border-right li{border-right:1px solid}.list-border-right li:last-child{border:none}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.fa-li{top:.23em}.reset{margin:0}.padding-0,.reset{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-35{padding:35px}.padding-40{padding:40px}.padding-45{padding:45px}.padding-50{padding:50px}.padding-55{padding:55px}.padding-60{padding:60px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-bottom-35{padding-bottom:35px}.padding-bottom-40{padding-bottom:40px}.padding-bottom-45{padding-bottom:45px}.padding-bottom-50{padding-bottom:50px}.padding-bottom-55{padding-bottom:55px}.padding-bottom-60{padding-bottom:60px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-top-35{padding-top:35px}.padding-top-40{padding-top:40px}.padding-top-45{padding-top:45px}.padding-top-50{padding-top:50px}.padding-top-55{padding-top:55px}.padding-top-60{padding-top:60px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-left-35{padding-left:35px}.padding-left-40{padding-left:40px}.padding-left-45{padding-left:45px}.padding-left-50{padding-left:50px}.padding-left-55{padding-left:55px}.padding-left-60{padding-left:60px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.padding-right-35{padding-right:35px}.padding-right-40{padding-right:40px}.padding-right-45{padding-right:45px}.padding-right-50{padding-right:50px}.padding-right-55{padding-right:55px}.padding-right-60{padding-right:60px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-35{margin:35px}.margin-40{margin:40px}.margin-45{margin:45px}.margin-50{margin:50px}.margin-55{margin:55px}.margin-60{margin:60px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-bottom-35{margin-bottom:35px}.margin-bottom-40{margin-bottom:40px}.margin-bottom-45{margin-bottom:45px}.margin-bottom-50{margin-bottom:50px}.margin-bottom-55{margin-bottom:55px}.margin-bottom-60{margin-bottom:60px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-top-35{margin-top:35px}.margin-top-40{margin-top:40px}.margin-top-45{margin-top:45px}.margin-top-50{margin-top:50px}.margin-top-55{margin-top:55px}.margin-top-60{margin-top:60px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-7{margin-right:7px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-right-35{margin-right:35px}.margin-right-40{margin-right:40px}.margin-right-45{margin-right:45px}.margin-right-50{margin-right:50px}.margin-right-55{margin-right:55px}.margin-right-60{margin-right:60px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.margin-left-35{margin-left:35px}.margin-left-40{margin-left:40px}.margin-left-45{margin-left:45px}.margin-left-50{margin-left:50px}.margin-left-55{margin-left:55px}.margin-left-60{margin-left:60px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.margin-auto{margin:0 auto}.breadcrumbs-default-margin{margin-bottom:20px}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;vertical-align:middle}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0;-moz-transform:scale(.9999);border-color:#f5f5f5 transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent}.triangle.triangle-white{border-color:#f9f9f9 hsla(0,0%,98%,0) hsla(0,0%,98%,0) transparent}.box{padding:15px 10px;margin-bottom:10px;margin-top:1.5em}.blue_box{background-color:#114e68}.blue_box h3,.blue_box p{color:#fff}.uppercase{text-transform:uppercase}.fw-200{font-weight:200}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.emphasis,.fw-700{font-weight:700}.emphasis{color:#f7941e}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.underlined{text-decoration:underline}.small{font-size:10px}.big{font-size:20px}.font-size-large{font-size:58px}.text-highlight{background:#eee;padding:12px 24px}.white-space-normal{white-space:normal}.header-short-underline{font-size:18px;font-weight:700}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}a:visited{color:#9e55d2}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}.a-underline{text-decoration:underline}.a-underline:hover{text-decoration:none}blockquote{font-size:14px}.top-level-heading{background:#868685;position:relative;padding:20px;margin-bottom:30px;color:#fff}.top-level-heading:after{width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #868685;position:absolute;content:"";bottom:-20px;left:50%;margin-left:-20px}.heading-underline{position:relative;font-size:2em;text-transform:uppercase;font-weight:200;margin:50px 0 20px}.heading-underline:after{border-bottom:4px solid #f7941d;content:"";display:block;width:100px;margin:10px auto 0}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{margin-bottom:-28px}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table-layout-fixed{table-layout:fixed}.table.table-solstice th{background:#afbbdc;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(2n){background:#40bbdc}.deprecated #novaContent{background:url(../images/vendor/eclipsefdn-solstice-template/bg-deprecated.gif?3219c56285f22eddb0f5746aeca4d4fe) center 75px no-repeat!important}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.textfield-underline{border-top:none;border-left:none;border-right:none;border-bottom:1px solid inherit;background-color:transparent;border-radius:0;-webkit-box-shadow:none;box-shadow:none;margin:10px auto;color:inherit}.textfield-underline:-moz-placeholder,.textfield-underline::-moz-placeholder{color:inherit}.textfield-underline:-ms-input-placeholder{color:inherit}.textfield-underline::-webkit-input-placeholder{color:inherit}.hidden-label label.control-label{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.border-reset{border:0!important}/*!
+ * Yamm!3 - Yet another megamenu for Bootstrap 3
  * http://geedmo.github.com/yamm3
- */.yamm .nav,.yamm .collapse,.yamm .dropup,.yamm .dropdown{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .nav.navbar-right .dropdown-menu{left:auto;right:0}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}html{position:relative;min-height:100%}.toolbar-container-wrapper{background:#fff}.toolbar-row{padding:8px 0;font-size:12px;color:#666;font-weight:300}.toolbar-row a{font-weight:300;padding-left:4px;color:#666}.toolbar-row a:hover{color:#f7941e}.toolbar-row ul{margin-bottom:0}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#afbbdc}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #ccc}@media (min-width:768px){.page-header-logo-bordered{border-bottom:1px solid #ccc}}#header-right{text-align:right}.thin-header .visible-thin{display:block !important}.logo-eclipse-default-mobile{max-height:50px}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}.img-responsive{display:block;max-width:100%;height:auto}.list-unstyled{list-style:none}.barebone-layout{color:#333;font-family:'Open Sans',"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857}.barebone-layout a{text-decoration:none}.barebone-layout .nav a{text-decoration:none}.barebone-layout .navbar-toggle{cursor:pointer}.barebone-layout .navbar-toggle.collapsed{display:block}.logo-eclipse-default{max-height:50px}.cla_dec{opacity:.33;vertical-align:bottom}.cla_dec:hover{opacity:1}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#efeef2;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#2c2255;height:3px}#main-menu .nav{margin:0;background:#2c2255}#main-menu .nav>li{border:1px solid #fafafb}#main-menu .nav>li.open .dropdown-toggle{color:#000;background:#efeef2}#main-menu .nav>li>a{color:#fff;text-transform:uppercase}#main-menu .nav>li .dropdown-menu{background:#2a2a2c;padding:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#f7941e;color:#fff}#main-menu .nav>li .dropdown-menu>li.active a:hover,#main-menu .nav>li .dropdown-menu>li.active a:focus{color:#000;background:#f5f5f5}#main-menu .nav>li .dropdown-menu>li>a{padding:5px 20px 5px 30px;color:#fff}#main-menu .nav>li .dropdown-menu>li>a:hover,#main-menu .nav>li .dropdown-menu>li>a:focus{color:#000;background:#f5f5f5}}@media (min-width:768px){#main-menu{font-size:.9em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#787878}#main-menu li a:hover,#main-menu li a:active{background:none;color:#f7941e}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:initial;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:initial;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:hover{color:#f7941e}#main-menu .dropdown-menu a:active{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active{color:#f7941e;background:none}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.separator,.ul-left-nav>li.about{padding-left:0;font-weight:bold}.ul-left-nav>li.separator img,.ul-left-nav>li.about img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#f7941e}
\ No newline at end of file
+ * 
+ * @geedmo - Licensed under the MIT license
+ */.yamm .collapse,.yamm .dropdown,.yamm .dropup,.yamm .nav{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}html{position:relative;min-height:100%}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #ccc}@media (min-width:768px){.page-header-logo-bordered{border-bottom:1px solid #ccc}}#header-right{text-align:right}.thin-header .visible-thin{display:block!important}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}.img-responsive{display:block;max-width:100%;height:auto}.list-unstyled{list-style:none}.barebone-layout{color:#333;font-family:Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857}.barebone-layout .nav a,.barebone-layout a{text-decoration:none}.barebone-layout .navbar-toggle{cursor:pointer}.barebone-layout .navbar-toggle.collapsed{display:block}.logo-eclipse-default{max-height:50px}.cla_dec{opacity:.33;vertical-align:bottom}.cla_dec:hover{opacity:1}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#efeef2;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu #navbar-main-menu{float:none}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#2c2255;height:3px}#main-menu .nav{margin:0;padding:0;background:#2c2255}#main-menu .nav>li.open .dropdown-toggle{color:#fff;background:#efeef2}#main-menu .nav>li>a{color:#fff;text-transform:uppercase;padding:10px 15px;border-bottom:none}#main-menu .nav>li .dropdown-menu{background:#2a2a2c;padding:0;border-radius:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#f7941e;color:#fff}#main-menu .nav>li .dropdown-menu>li.active a:focus,#main-menu .nav>li .dropdown-menu>li.active a:hover{color:#000;background:#f5f5f5}#main-menu .nav>li .dropdown-menu>li>a{padding:10px 15px;color:#fff}#main-menu .nav>li .dropdown-menu>li>a:focus,#main-menu .nav>li .dropdown-menu>li>a:hover{color:#000;background:#f5f5f5}#main-menu .nav>li.main-menu-search .dropdown-toggle{display:none}#main-menu .nav>li.main-menu-search .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none;display:block}#main-menu .nav>li.main-menu-search .dropdown-menu p{color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .yamm-content{padding:15px}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input{background-color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input-box{border:none}}@media (max-width:1199px){#breadcrumb .container,#header-wrapper .container,.toolbar-container-wrapper .container,main .container{width:auto}}@media (min-width:768px){#main-menu{font-size:1em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#787878}#main-menu li a:active,#main-menu li a:hover{color:#f7941e}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:auto;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:auto;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:active,#main-menu .dropdown-menu a:hover{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active,#main-menu a:focus{color:#f7941e}#main-menu .nav .open a,#main-menu .nav .open a:focus,#main-menu .nav .open a:hover,#main-menu .nav>li>a:focus,#main-menu .nav>li>a:hover{background-color:transparent}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.about,.ul-left-nav>li.separator{padding-left:0;font-weight:700}.ul-left-nav>li.about img,.ul-left-nav>li.separator img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#f7941e}.logo-eclipse-default-mobile{max-height:50px}@media (min-width:768px){.alternate-layout #main-menu{font-size:1em}.alternate-layout #main-menu ul li{text-transform:uppercase}.alternate-layout #main-menu li a{color:#787878}.alternate-layout #main-menu li a:active,.alternate-layout #main-menu li a:hover{color:#f7941e}}@media (min-width:992px){.alternate-layout #main-menu{font-size:1em}}@media (max-width:767px){.alternate-layout #main-menu{background:#fff}}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/stylesheets/eclipse-ide.min.css b/eclipse.org-common/themes/solstice/public/stylesheets/eclipse-ide.min.css
new file mode 100644
index 0000000..7fba76d
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/stylesheets/eclipse-ide.min.css
@@ -0,0 +1,35 @@
+.cc-window{opacity:1;-webkit-transition:opacity 1s ease;transition:opacity 1s ease}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{-webkit-transition:-webkit-transform 1s ease;transition:-webkit-transform 1s ease;transition:transform 1s ease;transition:transform 1s ease,-webkit-transform 1s ease}.cc-animate.cc-revoke.cc-top{-webkit-transform:translateY(-2em);transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{-webkit-transform:translateY(2em);transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-bottom,.cc-animate.cc-revoke.cc-active.cc-top,.cc-revoke:hover{-webkit-transform:translateY(0);transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;-webkit-transition:max-height 1s;transition:max-height 1s}.cc-link,.cc-revoke:hover{text-decoration:underline}.cc-revoke,.cc-window{position:fixed;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica,Calibri,Arial,sans-serif;font-size:16px;line-height:1.5em;display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;max-width:24em;-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.cc-window.cc-banner{padding:1em 1.8em;width:100%;-ms-flex-direction:row;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.cc-revoke{padding:.5em}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;padding:.2em}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-banner .cc-btn:last-child{min-width:140px}.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:focus,.cc-close:hover{opacity:1}.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{display:block;margin-bottom:1em}.cc-window.cc-floating .cc-compliance{-ms-flex:1 0 auto;-webkit-box-flex:1;flex:1 0 auto}.cc-window.cc-banner{-ms-flex-align:center;-webkit-box-align:center;align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{-ms-flex:1;-webkit-box-flex:1;flex:1}.cc-compliance{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;-ms-flex-line-pack:justify;align-content:space-between}.cc-compliance>.cc-btn{-ms-flex:1;-webkit-box-flex:1;flex:1}.cc-btn+.cc-btn{margin-left:.5em}@media print{.cc-revoke,.cc-window{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}.cc-window.cc-banner{-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.cc-window.cc-banner .cc-compliance{-ms-flex:1;-webkit-box-flex:1;flex:1}.cc-window.cc-floating{max-width:none}.cc-window .cc-message{margin-bottom:1em}.cc-window.cc-banner{-ms-flex-align:unset;-webkit-box-align:unset;align-items:unset}}.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;-ms-flex:none;-webkit-box-flex:0;flex:none}.cc-theme-classic .cc-btn{border-radius:5px}.cc-theme-classic .cc-btn:last-child{min-width:140px}.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}.cc-theme-edgeless.cc-window{padding:0}.cc-floating.cc-theme-edgeless .cc-message{margin:2em 2em 1.5em}.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}/*!
+ * Copyright (c) 2018 Eclipse Foundation, Inc.
+ * 
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v. 2.0 which is available at
+ * http://www.eclipse.org/legal/epl-2.0.
+ * 
+ * Contributors:
+ *   Christopher Guindon <chris.guindon@eclipse-foundation.org>
+ * 
+ * SPDX-License-Identifier: EPL-2.0
+*//*!
+ * Copyright (c) 2018 Eclipse Foundation, Inc.
+ * 
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v. 2.0 which is available at
+ * http://www.eclipse.org/legal/epl-2.0.
+ * 
+ * Contributors:
+ *   Christopher Guindon <chris.guindon@eclipse-foundation.org>
+ * 
+ * SPDX-License-Identifier: EPL-2.0
+*//*!
+ *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */@font-face{font-family:FontAwesome;src:url(../fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);src:url(../fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix&v=4.7.0) format("embedded-opentype"),url(../fonts/vendor/font-awesome/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(../fonts/vendor/font-awesome/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(../fonts/vendor/font-awesome/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(../fonts/vendor/font-awesome/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\F000"}.fa-music:before{content:"\F001"}.fa-search:before{content:"\F002"}.fa-envelope-o:before{content:"\F003"}.fa-heart:before{content:"\F004"}.fa-star:before{content:"\F005"}.fa-star-o:before{content:"\F006"}.fa-user:before{content:"\F007"}.fa-film:before{content:"\F008"}.fa-th-large:before{content:"\F009"}.fa-th:before{content:"\F00A"}.fa-th-list:before{content:"\F00B"}.fa-check:before{content:"\F00C"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\F00D"}.fa-search-plus:before{content:"\F00E"}.fa-search-minus:before{content:"\F010"}.fa-power-off:before{content:"\F011"}.fa-signal:before{content:"\F012"}.fa-cog:before,.fa-gear:before{content:"\F013"}.fa-trash-o:before{content:"\F014"}.fa-home:before{content:"\F015"}.fa-file-o:before{content:"\F016"}.fa-clock-o:before{content:"\F017"}.fa-road:before{content:"\F018"}.fa-download:before{content:"\F019"}.fa-arrow-circle-o-down:before{content:"\F01A"}.fa-arrow-circle-o-up:before{content:"\F01B"}.fa-inbox:before{content:"\F01C"}.fa-play-circle-o:before{content:"\F01D"}.fa-repeat:before,.fa-rotate-right:before{content:"\F01E"}.fa-refresh:before{content:"\F021"}.fa-list-alt:before{content:"\F022"}.fa-lock:before{content:"\F023"}.fa-flag:before{content:"\F024"}.fa-headphones:before{content:"\F025"}.fa-volume-off:before{content:"\F026"}.fa-volume-down:before{content:"\F027"}.fa-volume-up:before{content:"\F028"}.fa-qrcode:before{content:"\F029"}.fa-barcode:before{content:"\F02A"}.fa-tag:before{content:"\F02B"}.fa-tags:before{content:"\F02C"}.fa-book:before{content:"\F02D"}.fa-bookmark:before{content:"\F02E"}.fa-print:before{content:"\F02F"}.fa-camera:before{content:"\F030"}.fa-font:before{content:"\F031"}.fa-bold:before{content:"\F032"}.fa-italic:before{content:"\F033"}.fa-text-height:before{content:"\F034"}.fa-text-width:before{content:"\F035"}.fa-align-left:before{content:"\F036"}.fa-align-center:before{content:"\F037"}.fa-align-right:before{content:"\F038"}.fa-align-justify:before{content:"\F039"}.fa-list:before{content:"\F03A"}.fa-dedent:before,.fa-outdent:before{content:"\F03B"}.fa-indent:before{content:"\F03C"}.fa-video-camera:before{content:"\F03D"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\F03E"}.fa-pencil:before{content:"\F040"}.fa-map-marker:before{content:"\F041"}.fa-adjust:before{content:"\F042"}.fa-tint:before{content:"\F043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\F044"}.fa-share-square-o:before{content:"\F045"}.fa-check-square-o:before{content:"\F046"}.fa-arrows:before{content:"\F047"}.fa-step-backward:before{content:"\F048"}.fa-fast-backward:before{content:"\F049"}.fa-backward:before{content:"\F04A"}.fa-play:before{content:"\F04B"}.fa-pause:before{content:"\F04C"}.fa-stop:before{content:"\F04D"}.fa-forward:before{content:"\F04E"}.fa-fast-forward:before{content:"\F050"}.fa-step-forward:before{content:"\F051"}.fa-eject:before{content:"\F052"}.fa-chevron-left:before{content:"\F053"}.fa-chevron-right:before{content:"\F054"}.fa-plus-circle:before{content:"\F055"}.fa-minus-circle:before{content:"\F056"}.fa-times-circle:before{content:"\F057"}.fa-check-circle:before{content:"\F058"}.fa-question-circle:before{content:"\F059"}.fa-info-circle:before{content:"\F05A"}.fa-crosshairs:before{content:"\F05B"}.fa-times-circle-o:before{content:"\F05C"}.fa-check-circle-o:before{content:"\F05D"}.fa-ban:before{content:"\F05E"}.fa-arrow-left:before{content:"\F060"}.fa-arrow-right:before{content:"\F061"}.fa-arrow-up:before{content:"\F062"}.fa-arrow-down:before{content:"\F063"}.fa-mail-forward:before,.fa-share:before{content:"\F064"}.fa-expand:before{content:"\F065"}.fa-compress:before{content:"\F066"}.fa-plus:before{content:"\F067"}.fa-minus:before{content:"\F068"}.fa-asterisk:before{content:"\F069"}.fa-exclamation-circle:before{content:"\F06A"}.fa-gift:before{content:"\F06B"}.fa-leaf:before{content:"\F06C"}.fa-fire:before{content:"\F06D"}.fa-eye:before{content:"\F06E"}.fa-eye-slash:before{content:"\F070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\F071"}.fa-plane:before{content:"\F072"}.fa-calendar:before{content:"\F073"}.fa-random:before{content:"\F074"}.fa-comment:before{content:"\F075"}.fa-magnet:before{content:"\F076"}.fa-chevron-up:before{content:"\F077"}.fa-chevron-down:before{content:"\F078"}.fa-retweet:before{content:"\F079"}.fa-shopping-cart:before{content:"\F07A"}.fa-folder:before{content:"\F07B"}.fa-folder-open:before{content:"\F07C"}.fa-arrows-v:before{content:"\F07D"}.fa-arrows-h:before{content:"\F07E"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\F080"}.fa-twitter-square:before{content:"\F081"}.fa-facebook-square:before{content:"\F082"}.fa-camera-retro:before{content:"\F083"}.fa-key:before{content:"\F084"}.fa-cogs:before,.fa-gears:before{content:"\F085"}.fa-comments:before{content:"\F086"}.fa-thumbs-o-up:before{content:"\F087"}.fa-thumbs-o-down:before{content:"\F088"}.fa-star-half:before{content:"\F089"}.fa-heart-o:before{content:"\F08A"}.fa-sign-out:before{content:"\F08B"}.fa-linkedin-square:before{content:"\F08C"}.fa-thumb-tack:before{content:"\F08D"}.fa-external-link:before{content:"\F08E"}.fa-sign-in:before{content:"\F090"}.fa-trophy:before{content:"\F091"}.fa-github-square:before{content:"\F092"}.fa-upload:before{content:"\F093"}.fa-lemon-o:before{content:"\F094"}.fa-phone:before{content:"\F095"}.fa-square-o:before{content:"\F096"}.fa-bookmark-o:before{content:"\F097"}.fa-phone-square:before{content:"\F098"}.fa-twitter:before{content:"\F099"}.fa-facebook-f:before,.fa-facebook:before{content:"\F09A"}.fa-github:before{content:"\F09B"}.fa-unlock:before{content:"\F09C"}.fa-credit-card:before{content:"\F09D"}.fa-feed:before,.fa-rss:before{content:"\F09E"}.fa-hdd-o:before{content:"\F0A0"}.fa-bullhorn:before{content:"\F0A1"}.fa-bell:before{content:"\F0F3"}.fa-certificate:before{content:"\F0A3"}.fa-hand-o-right:before{content:"\F0A4"}.fa-hand-o-left:before{content:"\F0A5"}.fa-hand-o-up:before{content:"\F0A6"}.fa-hand-o-down:before{content:"\F0A7"}.fa-arrow-circle-left:before{content:"\F0A8"}.fa-arrow-circle-right:before{content:"\F0A9"}.fa-arrow-circle-up:before{content:"\F0AA"}.fa-arrow-circle-down:before{content:"\F0AB"}.fa-globe:before{content:"\F0AC"}.fa-wrench:before{content:"\F0AD"}.fa-tasks:before{content:"\F0AE"}.fa-filter:before{content:"\F0B0"}.fa-briefcase:before{content:"\F0B1"}.fa-arrows-alt:before{content:"\F0B2"}.fa-group:before,.fa-users:before{content:"\F0C0"}.fa-chain:before,.fa-link:before{content:"\F0C1"}.fa-cloud:before{content:"\F0C2"}.fa-flask:before{content:"\F0C3"}.fa-cut:before,.fa-scissors:before{content:"\F0C4"}.fa-copy:before,.fa-files-o:before{content:"\F0C5"}.fa-paperclip:before{content:"\F0C6"}.fa-floppy-o:before,.fa-save:before{content:"\F0C7"}.fa-square:before{content:"\F0C8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\F0C9"}.fa-list-ul:before{content:"\F0CA"}.fa-list-ol:before{content:"\F0CB"}.fa-strikethrough:before{content:"\F0CC"}.fa-underline:before{content:"\F0CD"}.fa-table:before{content:"\F0CE"}.fa-magic:before{content:"\F0D0"}.fa-truck:before{content:"\F0D1"}.fa-pinterest:before{content:"\F0D2"}.fa-pinterest-square:before{content:"\F0D3"}.fa-google-plus-square:before{content:"\F0D4"}.fa-google-plus:before{content:"\F0D5"}.fa-money:before{content:"\F0D6"}.fa-caret-down:before{content:"\F0D7"}.fa-caret-up:before{content:"\F0D8"}.fa-caret-left:before{content:"\F0D9"}.fa-caret-right:before{content:"\F0DA"}.fa-columns:before{content:"\F0DB"}.fa-sort:before,.fa-unsorted:before{content:"\F0DC"}.fa-sort-desc:before,.fa-sort-down:before{content:"\F0DD"}.fa-sort-asc:before,.fa-sort-up:before{content:"\F0DE"}.fa-envelope:before{content:"\F0E0"}.fa-linkedin:before{content:"\F0E1"}.fa-rotate-left:before,.fa-undo:before{content:"\F0E2"}.fa-gavel:before,.fa-legal:before{content:"\F0E3"}.fa-dashboard:before,.fa-tachometer:before{content:"\F0E4"}.fa-comment-o:before{content:"\F0E5"}.fa-comments-o:before{content:"\F0E6"}.fa-bolt:before,.fa-flash:before{content:"\F0E7"}.fa-sitemap:before{content:"\F0E8"}.fa-umbrella:before{content:"\F0E9"}.fa-clipboard:before,.fa-paste:before{content:"\F0EA"}.fa-lightbulb-o:before{content:"\F0EB"}.fa-exchange:before{content:"\F0EC"}.fa-cloud-download:before{content:"\F0ED"}.fa-cloud-upload:before{content:"\F0EE"}.fa-user-md:before{content:"\F0F0"}.fa-stethoscope:before{content:"\F0F1"}.fa-suitcase:before{content:"\F0F2"}.fa-bell-o:before{content:"\F0A2"}.fa-coffee:before{content:"\F0F4"}.fa-cutlery:before{content:"\F0F5"}.fa-file-text-o:before{content:"\F0F6"}.fa-building-o:before{content:"\F0F7"}.fa-hospital-o:before{content:"\F0F8"}.fa-ambulance:before{content:"\F0F9"}.fa-medkit:before{content:"\F0FA"}.fa-fighter-jet:before{content:"\F0FB"}.fa-beer:before{content:"\F0FC"}.fa-h-square:before{content:"\F0FD"}.fa-plus-square:before{content:"\F0FE"}.fa-angle-double-left:before{content:"\F100"}.fa-angle-double-right:before{content:"\F101"}.fa-angle-double-up:before{content:"\F102"}.fa-angle-double-down:before{content:"\F103"}.fa-angle-left:before{content:"\F104"}.fa-angle-right:before{content:"\F105"}.fa-angle-up:before{content:"\F106"}.fa-angle-down:before{content:"\F107"}.fa-desktop:before{content:"\F108"}.fa-laptop:before{content:"\F109"}.fa-tablet:before{content:"\F10A"}.fa-mobile-phone:before,.fa-mobile:before{content:"\F10B"}.fa-circle-o:before{content:"\F10C"}.fa-quote-left:before{content:"\F10D"}.fa-quote-right:before{content:"\F10E"}.fa-spinner:before{content:"\F110"}.fa-circle:before{content:"\F111"}.fa-mail-reply:before,.fa-reply:before{content:"\F112"}.fa-github-alt:before{content:"\F113"}.fa-folder-o:before{content:"\F114"}.fa-folder-open-o:before{content:"\F115"}.fa-smile-o:before{content:"\F118"}.fa-frown-o:before{content:"\F119"}.fa-meh-o:before{content:"\F11A"}.fa-gamepad:before{content:"\F11B"}.fa-keyboard-o:before{content:"\F11C"}.fa-flag-o:before{content:"\F11D"}.fa-flag-checkered:before{content:"\F11E"}.fa-terminal:before{content:"\F120"}.fa-code:before{content:"\F121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\F122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\F123"}.fa-location-arrow:before{content:"\F124"}.fa-crop:before{content:"\F125"}.fa-code-fork:before{content:"\F126"}.fa-chain-broken:before,.fa-unlink:before{content:"\F127"}.fa-question:before{content:"\F128"}.fa-info:before{content:"\F129"}.fa-exclamation:before{content:"\F12A"}.fa-superscript:before{content:"\F12B"}.fa-subscript:before{content:"\F12C"}.fa-eraser:before{content:"\F12D"}.fa-puzzle-piece:before{content:"\F12E"}.fa-microphone:before{content:"\F130"}.fa-microphone-slash:before{content:"\F131"}.fa-shield:before{content:"\F132"}.fa-calendar-o:before{content:"\F133"}.fa-fire-extinguisher:before{content:"\F134"}.fa-rocket:before{content:"\F135"}.fa-maxcdn:before{content:"\F136"}.fa-chevron-circle-left:before{content:"\F137"}.fa-chevron-circle-right:before{content:"\F138"}.fa-chevron-circle-up:before{content:"\F139"}.fa-chevron-circle-down:before{content:"\F13A"}.fa-html5:before{content:"\F13B"}.fa-css3:before{content:"\F13C"}.fa-anchor:before{content:"\F13D"}.fa-unlock-alt:before{content:"\F13E"}.fa-bullseye:before{content:"\F140"}.fa-ellipsis-h:before{content:"\F141"}.fa-ellipsis-v:before{content:"\F142"}.fa-rss-square:before{content:"\F143"}.fa-play-circle:before{content:"\F144"}.fa-ticket:before{content:"\F145"}.fa-minus-square:before{content:"\F146"}.fa-minus-square-o:before{content:"\F147"}.fa-level-up:before{content:"\F148"}.fa-level-down:before{content:"\F149"}.fa-check-square:before{content:"\F14A"}.fa-pencil-square:before{content:"\F14B"}.fa-external-link-square:before{content:"\F14C"}.fa-share-square:before{content:"\F14D"}.fa-compass:before{content:"\F14E"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\F150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\F151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\F152"}.fa-eur:before,.fa-euro:before{content:"\F153"}.fa-gbp:before{content:"\F154"}.fa-dollar:before,.fa-usd:before{content:"\F155"}.fa-inr:before,.fa-rupee:before{content:"\F156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\F157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\F158"}.fa-krw:before,.fa-won:before{content:"\F159"}.fa-bitcoin:before,.fa-btc:before{content:"\F15A"}.fa-file:before{content:"\F15B"}.fa-file-text:before{content:"\F15C"}.fa-sort-alpha-asc:before{content:"\F15D"}.fa-sort-alpha-desc:before{content:"\F15E"}.fa-sort-amount-asc:before{content:"\F160"}.fa-sort-amount-desc:before{content:"\F161"}.fa-sort-numeric-asc:before{content:"\F162"}.fa-sort-numeric-desc:before{content:"\F163"}.fa-thumbs-up:before{content:"\F164"}.fa-thumbs-down:before{content:"\F165"}.fa-youtube-square:before{content:"\F166"}.fa-youtube:before{content:"\F167"}.fa-xing:before{content:"\F168"}.fa-xing-square:before{content:"\F169"}.fa-youtube-play:before{content:"\F16A"}.fa-dropbox:before{content:"\F16B"}.fa-stack-overflow:before{content:"\F16C"}.fa-instagram:before{content:"\F16D"}.fa-flickr:before{content:"\F16E"}.fa-adn:before{content:"\F170"}.fa-bitbucket:before{content:"\F171"}.fa-bitbucket-square:before{content:"\F172"}.fa-tumblr:before{content:"\F173"}.fa-tumblr-square:before{content:"\F174"}.fa-long-arrow-down:before{content:"\F175"}.fa-long-arrow-up:before{content:"\F176"}.fa-long-arrow-left:before{content:"\F177"}.fa-long-arrow-right:before{content:"\F178"}.fa-apple:before{content:"\F179"}.fa-windows:before{content:"\F17A"}.fa-android:before{content:"\F17B"}.fa-linux:before{content:"\F17C"}.fa-dribbble:before{content:"\F17D"}.fa-skype:before{content:"\F17E"}.fa-foursquare:before{content:"\F180"}.fa-trello:before{content:"\F181"}.fa-female:before{content:"\F182"}.fa-male:before{content:"\F183"}.fa-gittip:before,.fa-gratipay:before{content:"\F184"}.fa-sun-o:before{content:"\F185"}.fa-moon-o:before{content:"\F186"}.fa-archive:before{content:"\F187"}.fa-bug:before{content:"\F188"}.fa-vk:before{content:"\F189"}.fa-weibo:before{content:"\F18A"}.fa-renren:before{content:"\F18B"}.fa-pagelines:before{content:"\F18C"}.fa-stack-exchange:before{content:"\F18D"}.fa-arrow-circle-o-right:before{content:"\F18E"}.fa-arrow-circle-o-left:before{content:"\F190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\F191"}.fa-dot-circle-o:before{content:"\F192"}.fa-wheelchair:before{content:"\F193"}.fa-vimeo-square:before{content:"\F194"}.fa-try:before,.fa-turkish-lira:before{content:"\F195"}.fa-plus-square-o:before{content:"\F196"}.fa-space-shuttle:before{content:"\F197"}.fa-slack:before{content:"\F198"}.fa-envelope-square:before{content:"\F199"}.fa-wordpress:before{content:"\F19A"}.fa-openid:before{content:"\F19B"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\F19C"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\F19D"}.fa-yahoo:before{content:"\F19E"}.fa-google:before{content:"\F1A0"}.fa-reddit:before{content:"\F1A1"}.fa-reddit-square:before{content:"\F1A2"}.fa-stumbleupon-circle:before{content:"\F1A3"}.fa-stumbleupon:before{content:"\F1A4"}.fa-delicious:before{content:"\F1A5"}.fa-digg:before{content:"\F1A6"}.fa-pied-piper-pp:before{content:"\F1A7"}.fa-pied-piper-alt:before{content:"\F1A8"}.fa-drupal:before{content:"\F1A9"}.fa-joomla:before{content:"\F1AA"}.fa-language:before{content:"\F1AB"}.fa-fax:before{content:"\F1AC"}.fa-building:before{content:"\F1AD"}.fa-child:before{content:"\F1AE"}.fa-paw:before{content:"\F1B0"}.fa-spoon:before{content:"\F1B1"}.fa-cube:before{content:"\F1B2"}.fa-cubes:before{content:"\F1B3"}.fa-behance:before{content:"\F1B4"}.fa-behance-square:before{content:"\F1B5"}.fa-steam:before{content:"\F1B6"}.fa-steam-square:before{content:"\F1B7"}.fa-recycle:before{content:"\F1B8"}.fa-automobile:before,.fa-car:before{content:"\F1B9"}.fa-cab:before,.fa-taxi:before{content:"\F1BA"}.fa-tree:before{content:"\F1BB"}.fa-spotify:before{content:"\F1BC"}.fa-deviantart:before{content:"\F1BD"}.fa-soundcloud:before{content:"\F1BE"}.fa-database:before{content:"\F1C0"}.fa-file-pdf-o:before{content:"\F1C1"}.fa-file-word-o:before{content:"\F1C2"}.fa-file-excel-o:before{content:"\F1C3"}.fa-file-powerpoint-o:before{content:"\F1C4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\F1C5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\F1C6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\F1C7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\F1C8"}.fa-file-code-o:before{content:"\F1C9"}.fa-vine:before{content:"\F1CA"}.fa-codepen:before{content:"\F1CB"}.fa-jsfiddle:before{content:"\F1CC"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\F1CD"}.fa-circle-o-notch:before{content:"\F1CE"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\F1D0"}.fa-empire:before,.fa-ge:before{content:"\F1D1"}.fa-git-square:before{content:"\F1D2"}.fa-git:before{content:"\F1D3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\F1D4"}.fa-tencent-weibo:before{content:"\F1D5"}.fa-qq:before{content:"\F1D6"}.fa-wechat:before,.fa-weixin:before{content:"\F1D7"}.fa-paper-plane:before,.fa-send:before{content:"\F1D8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\F1D9"}.fa-history:before{content:"\F1DA"}.fa-circle-thin:before{content:"\F1DB"}.fa-header:before{content:"\F1DC"}.fa-paragraph:before{content:"\F1DD"}.fa-sliders:before{content:"\F1DE"}.fa-share-alt:before{content:"\F1E0"}.fa-share-alt-square:before{content:"\F1E1"}.fa-bomb:before{content:"\F1E2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\F1E3"}.fa-tty:before{content:"\F1E4"}.fa-binoculars:before{content:"\F1E5"}.fa-plug:before{content:"\F1E6"}.fa-slideshare:before{content:"\F1E7"}.fa-twitch:before{content:"\F1E8"}.fa-yelp:before{content:"\F1E9"}.fa-newspaper-o:before{content:"\F1EA"}.fa-wifi:before{content:"\F1EB"}.fa-calculator:before{content:"\F1EC"}.fa-paypal:before{content:"\F1ED"}.fa-google-wallet:before{content:"\F1EE"}.fa-cc-visa:before{content:"\F1F0"}.fa-cc-mastercard:before{content:"\F1F1"}.fa-cc-discover:before{content:"\F1F2"}.fa-cc-amex:before{content:"\F1F3"}.fa-cc-paypal:before{content:"\F1F4"}.fa-cc-stripe:before{content:"\F1F5"}.fa-bell-slash:before{content:"\F1F6"}.fa-bell-slash-o:before{content:"\F1F7"}.fa-trash:before{content:"\F1F8"}.fa-copyright:before{content:"\F1F9"}.fa-at:before{content:"\F1FA"}.fa-eyedropper:before{content:"\F1FB"}.fa-paint-brush:before{content:"\F1FC"}.fa-birthday-cake:before{content:"\F1FD"}.fa-area-chart:before{content:"\F1FE"}.fa-pie-chart:before{content:"\F200"}.fa-line-chart:before{content:"\F201"}.fa-lastfm:before{content:"\F202"}.fa-lastfm-square:before{content:"\F203"}.fa-toggle-off:before{content:"\F204"}.fa-toggle-on:before{content:"\F205"}.fa-bicycle:before{content:"\F206"}.fa-bus:before{content:"\F207"}.fa-ioxhost:before{content:"\F208"}.fa-angellist:before{content:"\F209"}.fa-cc:before{content:"\F20A"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\F20B"}.fa-meanpath:before{content:"\F20C"}.fa-buysellads:before{content:"\F20D"}.fa-connectdevelop:before{content:"\F20E"}.fa-dashcube:before{content:"\F210"}.fa-forumbee:before{content:"\F211"}.fa-leanpub:before{content:"\F212"}.fa-sellsy:before{content:"\F213"}.fa-shirtsinbulk:before{content:"\F214"}.fa-simplybuilt:before{content:"\F215"}.fa-skyatlas:before{content:"\F216"}.fa-cart-plus:before{content:"\F217"}.fa-cart-arrow-down:before{content:"\F218"}.fa-diamond:before{content:"\F219"}.fa-ship:before{content:"\F21A"}.fa-user-secret:before{content:"\F21B"}.fa-motorcycle:before{content:"\F21C"}.fa-street-view:before{content:"\F21D"}.fa-heartbeat:before{content:"\F21E"}.fa-venus:before{content:"\F221"}.fa-mars:before{content:"\F222"}.fa-mercury:before{content:"\F223"}.fa-intersex:before,.fa-transgender:before{content:"\F224"}.fa-transgender-alt:before{content:"\F225"}.fa-venus-double:before{content:"\F226"}.fa-mars-double:before{content:"\F227"}.fa-venus-mars:before{content:"\F228"}.fa-mars-stroke:before{content:"\F229"}.fa-mars-stroke-v:before{content:"\F22A"}.fa-mars-stroke-h:before{content:"\F22B"}.fa-neuter:before{content:"\F22C"}.fa-genderless:before{content:"\F22D"}.fa-facebook-official:before{content:"\F230"}.fa-pinterest-p:before{content:"\F231"}.fa-whatsapp:before{content:"\F232"}.fa-server:before{content:"\F233"}.fa-user-plus:before{content:"\F234"}.fa-user-times:before{content:"\F235"}.fa-bed:before,.fa-hotel:before{content:"\F236"}.fa-viacoin:before{content:"\F237"}.fa-train:before{content:"\F238"}.fa-subway:before{content:"\F239"}.fa-medium:before{content:"\F23A"}.fa-y-combinator:before,.fa-yc:before{content:"\F23B"}.fa-optin-monster:before{content:"\F23C"}.fa-opencart:before{content:"\F23D"}.fa-expeditedssl:before{content:"\F23E"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\F240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\F241"}.fa-battery-2:before,.fa-battery-half:before{content:"\F242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\F243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\F244"}.fa-mouse-pointer:before{content:"\F245"}.fa-i-cursor:before{content:"\F246"}.fa-object-group:before{content:"\F247"}.fa-object-ungroup:before{content:"\F248"}.fa-sticky-note:before{content:"\F249"}.fa-sticky-note-o:before{content:"\F24A"}.fa-cc-jcb:before{content:"\F24B"}.fa-cc-diners-club:before{content:"\F24C"}.fa-clone:before{content:"\F24D"}.fa-balance-scale:before{content:"\F24E"}.fa-hourglass-o:before{content:"\F250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\F251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\F252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\F253"}.fa-hourglass:before{content:"\F254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\F255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\F256"}.fa-hand-scissors-o:before{content:"\F257"}.fa-hand-lizard-o:before{content:"\F258"}.fa-hand-spock-o:before{content:"\F259"}.fa-hand-pointer-o:before{content:"\F25A"}.fa-hand-peace-o:before{content:"\F25B"}.fa-trademark:before{content:"\F25C"}.fa-registered:before{content:"\F25D"}.fa-creative-commons:before{content:"\F25E"}.fa-gg:before{content:"\F260"}.fa-gg-circle:before{content:"\F261"}.fa-tripadvisor:before{content:"\F262"}.fa-odnoklassniki:before{content:"\F263"}.fa-odnoklassniki-square:before{content:"\F264"}.fa-get-pocket:before{content:"\F265"}.fa-wikipedia-w:before{content:"\F266"}.fa-safari:before{content:"\F267"}.fa-chrome:before{content:"\F268"}.fa-firefox:before{content:"\F269"}.fa-opera:before{content:"\F26A"}.fa-internet-explorer:before{content:"\F26B"}.fa-television:before,.fa-tv:before{content:"\F26C"}.fa-contao:before{content:"\F26D"}.fa-500px:before{content:"\F26E"}.fa-amazon:before{content:"\F270"}.fa-calendar-plus-o:before{content:"\F271"}.fa-calendar-minus-o:before{content:"\F272"}.fa-calendar-times-o:before{content:"\F273"}.fa-calendar-check-o:before{content:"\F274"}.fa-industry:before{content:"\F275"}.fa-map-pin:before{content:"\F276"}.fa-map-signs:before{content:"\F277"}.fa-map-o:before{content:"\F278"}.fa-map:before{content:"\F279"}.fa-commenting:before{content:"\F27A"}.fa-commenting-o:before{content:"\F27B"}.fa-houzz:before{content:"\F27C"}.fa-vimeo:before{content:"\F27D"}.fa-black-tie:before{content:"\F27E"}.fa-fonticons:before{content:"\F280"}.fa-reddit-alien:before{content:"\F281"}.fa-edge:before{content:"\F282"}.fa-credit-card-alt:before{content:"\F283"}.fa-codiepie:before{content:"\F284"}.fa-modx:before{content:"\F285"}.fa-fort-awesome:before{content:"\F286"}.fa-usb:before{content:"\F287"}.fa-product-hunt:before{content:"\F288"}.fa-mixcloud:before{content:"\F289"}.fa-scribd:before{content:"\F28A"}.fa-pause-circle:before{content:"\F28B"}.fa-pause-circle-o:before{content:"\F28C"}.fa-stop-circle:before{content:"\F28D"}.fa-stop-circle-o:before{content:"\F28E"}.fa-shopping-bag:before{content:"\F290"}.fa-shopping-basket:before{content:"\F291"}.fa-hashtag:before{content:"\F292"}.fa-bluetooth:before{content:"\F293"}.fa-bluetooth-b:before{content:"\F294"}.fa-percent:before{content:"\F295"}.fa-gitlab:before{content:"\F296"}.fa-wpbeginner:before{content:"\F297"}.fa-wpforms:before{content:"\F298"}.fa-envira:before{content:"\F299"}.fa-universal-access:before{content:"\F29A"}.fa-wheelchair-alt:before{content:"\F29B"}.fa-question-circle-o:before{content:"\F29C"}.fa-blind:before{content:"\F29D"}.fa-audio-description:before{content:"\F29E"}.fa-volume-control-phone:before{content:"\F2A0"}.fa-braille:before{content:"\F2A1"}.fa-assistive-listening-systems:before{content:"\F2A2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\F2A3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\F2A4"}.fa-glide:before{content:"\F2A5"}.fa-glide-g:before{content:"\F2A6"}.fa-sign-language:before,.fa-signing:before{content:"\F2A7"}.fa-low-vision:before{content:"\F2A8"}.fa-viadeo:before{content:"\F2A9"}.fa-viadeo-square:before{content:"\F2AA"}.fa-snapchat:before{content:"\F2AB"}.fa-snapchat-ghost:before{content:"\F2AC"}.fa-snapchat-square:before{content:"\F2AD"}.fa-pied-piper:before{content:"\F2AE"}.fa-first-order:before{content:"\F2B0"}.fa-yoast:before{content:"\F2B1"}.fa-themeisle:before{content:"\F2B2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\F2B3"}.fa-fa:before,.fa-font-awesome:before{content:"\F2B4"}.fa-handshake-o:before{content:"\F2B5"}.fa-envelope-open:before{content:"\F2B6"}.fa-envelope-open-o:before{content:"\F2B7"}.fa-linode:before{content:"\F2B8"}.fa-address-book:before{content:"\F2B9"}.fa-address-book-o:before{content:"\F2BA"}.fa-address-card:before,.fa-vcard:before{content:"\F2BB"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\F2BC"}.fa-user-circle:before{content:"\F2BD"}.fa-user-circle-o:before{content:"\F2BE"}.fa-user-o:before{content:"\F2C0"}.fa-id-badge:before{content:"\F2C1"}.fa-drivers-license:before,.fa-id-card:before{content:"\F2C2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\F2C3"}.fa-quora:before{content:"\F2C4"}.fa-free-code-camp:before{content:"\F2C5"}.fa-telegram:before{content:"\F2C6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\F2C7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\F2C8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\F2C9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\F2CA"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\F2CB"}.fa-shower:before{content:"\F2CC"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\F2CD"}.fa-podcast:before{content:"\F2CE"}.fa-window-maximize:before{content:"\F2D0"}.fa-window-minimize:before{content:"\F2D1"}.fa-window-restore:before{content:"\F2D2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\F2D3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\F2D4"}.fa-bandcamp:before{content:"\F2D5"}.fa-grav:before{content:"\F2D6"}.fa-etsy:before{content:"\F2D7"}.fa-imdb:before{content:"\F2D8"}.fa-ravelry:before{content:"\F2D9"}.fa-eercast:before{content:"\F2DA"}.fa-microchip:before{content:"\F2DB"}.fa-snowflake-o:before{content:"\F2DC"}.fa-superpowers:before{content:"\F2DD"}.fa-wpexplorer:before{content:"\F2DE"}.fa-meetup:before{content:"\F2E0"}/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{background:transparent!important;color:#000!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:Glyphicons Halflings;src:url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1);src:url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1?#iefix) format("embedded-opentype"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.woff2?448c34a56d699c29117adc64c43affeb) format("woff2"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.woff?fa2772327f55d8198301fdb8bcfc8158) format("woff"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.ttf?e18bbf611f2a2e43afc071aa2f4e1512) format("truetype"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.svg?89889688147bd7575d6327160d64e760#glyphicons_halflingsregular) format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:Glyphicons Halflings;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"*"}.glyphicon-plus:before{content:"+"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20AC"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270F"}.glyphicon-glass:before{content:"\E001"}.glyphicon-music:before{content:"\E002"}.glyphicon-search:before{content:"\E003"}.glyphicon-heart:before{content:"\E005"}.glyphicon-star:before{content:"\E006"}.glyphicon-star-empty:before{content:"\E007"}.glyphicon-user:before{content:"\E008"}.glyphicon-film:before{content:"\E009"}.glyphicon-th-large:before{content:"\E010"}.glyphicon-th:before{content:"\E011"}.glyphicon-th-list:before{content:"\E012"}.glyphicon-ok:before{content:"\E013"}.glyphicon-remove:before{content:"\E014"}.glyphicon-zoom-in:before{content:"\E015"}.glyphicon-zoom-out:before{content:"\E016"}.glyphicon-off:before{content:"\E017"}.glyphicon-signal:before{content:"\E018"}.glyphicon-cog:before{content:"\E019"}.glyphicon-trash:before{content:"\E020"}.glyphicon-home:before{content:"\E021"}.glyphicon-file:before{content:"\E022"}.glyphicon-time:before{content:"\E023"}.glyphicon-road:before{content:"\E024"}.glyphicon-download-alt:before{content:"\E025"}.glyphicon-download:before{content:"\E026"}.glyphicon-upload:before{content:"\E027"}.glyphicon-inbox:before{content:"\E028"}.glyphicon-play-circle:before{content:"\E029"}.glyphicon-repeat:before{content:"\E030"}.glyphicon-refresh:before{content:"\E031"}.glyphicon-list-alt:before{content:"\E032"}.glyphicon-lock:before{content:"\E033"}.glyphicon-flag:before{content:"\E034"}.glyphicon-headphones:before{content:"\E035"}.glyphicon-volume-off:before{content:"\E036"}.glyphicon-volume-down:before{content:"\E037"}.glyphicon-volume-up:before{content:"\E038"}.glyphicon-qrcode:before{content:"\E039"}.glyphicon-barcode:before{content:"\E040"}.glyphicon-tag:before{content:"\E041"}.glyphicon-tags:before{content:"\E042"}.glyphicon-book:before{content:"\E043"}.glyphicon-bookmark:before{content:"\E044"}.glyphicon-print:before{content:"\E045"}.glyphicon-camera:before{content:"\E046"}.glyphicon-font:before{content:"\E047"}.glyphicon-bold:before{content:"\E048"}.glyphicon-italic:before{content:"\E049"}.glyphicon-text-height:before{content:"\E050"}.glyphicon-text-width:before{content:"\E051"}.glyphicon-align-left:before{content:"\E052"}.glyphicon-align-center:before{content:"\E053"}.glyphicon-align-right:before{content:"\E054"}.glyphicon-align-justify:before{content:"\E055"}.glyphicon-list:before{content:"\E056"}.glyphicon-indent-left:before{content:"\E057"}.glyphicon-indent-right:before{content:"\E058"}.glyphicon-facetime-video:before{content:"\E059"}.glyphicon-picture:before{content:"\E060"}.glyphicon-map-marker:before{content:"\E062"}.glyphicon-adjust:before{content:"\E063"}.glyphicon-tint:before{content:"\E064"}.glyphicon-edit:before{content:"\E065"}.glyphicon-share:before{content:"\E066"}.glyphicon-check:before{content:"\E067"}.glyphicon-move:before{content:"\E068"}.glyphicon-step-backward:before{content:"\E069"}.glyphicon-fast-backward:before{content:"\E070"}.glyphicon-backward:before{content:"\E071"}.glyphicon-play:before{content:"\E072"}.glyphicon-pause:before{content:"\E073"}.glyphicon-stop:before{content:"\E074"}.glyphicon-forward:before{content:"\E075"}.glyphicon-fast-forward:before{content:"\E076"}.glyphicon-step-forward:before{content:"\E077"}.glyphicon-eject:before{content:"\E078"}.glyphicon-chevron-left:before{content:"\E079"}.glyphicon-chevron-right:before{content:"\E080"}.glyphicon-plus-sign:before{content:"\E081"}.glyphicon-minus-sign:before{content:"\E082"}.glyphicon-remove-sign:before{content:"\E083"}.glyphicon-ok-sign:before{content:"\E084"}.glyphicon-question-sign:before{content:"\E085"}.glyphicon-info-sign:before{content:"\E086"}.glyphicon-screenshot:before{content:"\E087"}.glyphicon-remove-circle:before{content:"\E088"}.glyphicon-ok-circle:before{content:"\E089"}.glyphicon-ban-circle:before{content:"\E090"}.glyphicon-arrow-left:before{content:"\E091"}.glyphicon-arrow-right:before{content:"\E092"}.glyphicon-arrow-up:before{content:"\E093"}.glyphicon-arrow-down:before{content:"\E094"}.glyphicon-share-alt:before{content:"\E095"}.glyphicon-resize-full:before{content:"\E096"}.glyphicon-resize-small:before{content:"\E097"}.glyphicon-exclamation-sign:before{content:"\E101"}.glyphicon-gift:before{content:"\E102"}.glyphicon-leaf:before{content:"\E103"}.glyphicon-fire:before{content:"\E104"}.glyphicon-eye-open:before{content:"\E105"}.glyphicon-eye-close:before{content:"\E106"}.glyphicon-warning-sign:before{content:"\E107"}.glyphicon-plane:before{content:"\E108"}.glyphicon-calendar:before{content:"\E109"}.glyphicon-random:before{content:"\E110"}.glyphicon-comment:before{content:"\E111"}.glyphicon-magnet:before{content:"\E112"}.glyphicon-chevron-up:before{content:"\E113"}.glyphicon-chevron-down:before{content:"\E114"}.glyphicon-retweet:before{content:"\E115"}.glyphicon-shopping-cart:before{content:"\E116"}.glyphicon-folder-close:before{content:"\E117"}.glyphicon-folder-open:before{content:"\E118"}.glyphicon-resize-vertical:before{content:"\E119"}.glyphicon-resize-horizontal:before{content:"\E120"}.glyphicon-hdd:before{content:"\E121"}.glyphicon-bullhorn:before{content:"\E122"}.glyphicon-bell:before{content:"\E123"}.glyphicon-certificate:before{content:"\E124"}.glyphicon-thumbs-up:before{content:"\E125"}.glyphicon-thumbs-down:before{content:"\E126"}.glyphicon-hand-right:before{content:"\E127"}.glyphicon-hand-left:before{content:"\E128"}.glyphicon-hand-up:before{content:"\E129"}.glyphicon-hand-down:before{content:"\E130"}.glyphicon-circle-arrow-right:before{content:"\E131"}.glyphicon-circle-arrow-left:before{content:"\E132"}.glyphicon-circle-arrow-up:before{content:"\E133"}.glyphicon-circle-arrow-down:before{content:"\E134"}.glyphicon-globe:before{content:"\E135"}.glyphicon-wrench:before{content:"\E136"}.glyphicon-tasks:before{content:"\E137"}.glyphicon-filter:before{content:"\E138"}.glyphicon-briefcase:before{content:"\E139"}.glyphicon-fullscreen:before{content:"\E140"}.glyphicon-dashboard:before{content:"\E141"}.glyphicon-paperclip:before{content:"\E142"}.glyphicon-heart-empty:before{content:"\E143"}.glyphicon-link:before{content:"\E144"}.glyphicon-phone:before{content:"\E145"}.glyphicon-pushpin:before{content:"\E146"}.glyphicon-usd:before{content:"\E148"}.glyphicon-gbp:before{content:"\E149"}.glyphicon-sort:before{content:"\E150"}.glyphicon-sort-by-alphabet:before{content:"\E151"}.glyphicon-sort-by-alphabet-alt:before{content:"\E152"}.glyphicon-sort-by-order:before{content:"\E153"}.glyphicon-sort-by-order-alt:before{content:"\E154"}.glyphicon-sort-by-attributes:before{content:"\E155"}.glyphicon-sort-by-attributes-alt:before{content:"\E156"}.glyphicon-unchecked:before{content:"\E157"}.glyphicon-expand:before{content:"\E158"}.glyphicon-collapse-down:before{content:"\E159"}.glyphicon-collapse-up:before{content:"\E160"}.glyphicon-log-in:before{content:"\E161"}.glyphicon-flash:before{content:"\E162"}.glyphicon-log-out:before{content:"\E163"}.glyphicon-new-window:before{content:"\E164"}.glyphicon-record:before{content:"\E165"}.glyphicon-save:before{content:"\E166"}.glyphicon-open:before{content:"\E167"}.glyphicon-saved:before{content:"\E168"}.glyphicon-import:before{content:"\E169"}.glyphicon-export:before{content:"\E170"}.glyphicon-send:before{content:"\E171"}.glyphicon-floppy-disk:before{content:"\E172"}.glyphicon-floppy-saved:before{content:"\E173"}.glyphicon-floppy-remove:before{content:"\E174"}.glyphicon-floppy-save:before{content:"\E175"}.glyphicon-floppy-open:before{content:"\E176"}.glyphicon-credit-card:before{content:"\E177"}.glyphicon-transfer:before{content:"\E178"}.glyphicon-cutlery:before{content:"\E179"}.glyphicon-header:before{content:"\E180"}.glyphicon-compressed:before{content:"\E181"}.glyphicon-earphone:before{content:"\E182"}.glyphicon-phone-alt:before{content:"\E183"}.glyphicon-tower:before{content:"\E184"}.glyphicon-stats:before{content:"\E185"}.glyphicon-sd-video:before{content:"\E186"}.glyphicon-hd-video:before{content:"\E187"}.glyphicon-subtitles:before{content:"\E188"}.glyphicon-sound-stereo:before{content:"\E189"}.glyphicon-sound-dolby:before{content:"\E190"}.glyphicon-sound-5-1:before{content:"\E191"}.glyphicon-sound-6-1:before{content:"\E192"}.glyphicon-sound-7-1:before{content:"\E193"}.glyphicon-copyright-mark:before{content:"\E194"}.glyphicon-registration-mark:before{content:"\E195"}.glyphicon-cloud-download:before{content:"\E197"}.glyphicon-cloud-upload:before{content:"\E198"}.glyphicon-tree-conifer:before{content:"\E199"}.glyphicon-tree-deciduous:before{content:"\E200"}.glyphicon-cd:before{content:"\E201"}.glyphicon-save-file:before{content:"\E202"}.glyphicon-open-file:before{content:"\E203"}.glyphicon-level-up:before{content:"\E204"}.glyphicon-copy:before{content:"\E205"}.glyphicon-paste:before{content:"\E206"}.glyphicon-alert:before{content:"\E209"}.glyphicon-equalizer:before{content:"\E210"}.glyphicon-king:before{content:"\E211"}.glyphicon-queen:before{content:"\E212"}.glyphicon-pawn:before{content:"\E213"}.glyphicon-bishop:before{content:"\E214"}.glyphicon-knight:before{content:"\E215"}.glyphicon-baby-formula:before{content:"\E216"}.glyphicon-tent:before{content:"\26FA"}.glyphicon-blackboard:before{content:"\E218"}.glyphicon-bed:before{content:"\E219"}.glyphicon-apple:before{content:"\F8FF"}.glyphicon-erase:before{content:"\E221"}.glyphicon-hourglass:before{content:"\231B"}.glyphicon-lamp:before{content:"\E223"}.glyphicon-duplicate:before{content:"\E224"}.glyphicon-piggy-bank:before{content:"\E225"}.glyphicon-scissors:before{content:"\E226"}.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\E227"}.glyphicon-jpy:before,.glyphicon-yen:before{content:"\A5"}.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20BD"}.glyphicon-scale:before{content:"\E230"}.glyphicon-ice-lolly:before{content:"\E231"}.glyphicon-ice-lolly-tasted:before{content:"\E232"}.glyphicon-education:before{content:"\E233"}.glyphicon-option-horizontal:before{content:"\E234"}.glyphicon-option-vertical:before{content:"\E235"}.glyphicon-menu-hamburger:before{content:"\E236"}.glyphicon-modal-window:before{content:"\E237"}.glyphicon-oil:before{content:"\E238"}.glyphicon-grain:before{content:"\E239"}.glyphicon-sunglasses:before{content:"\E240"}.glyphicon-text-size:before{content:"\E241"}.glyphicon-text-color:before{content:"\E242"}.glyphicon-text-background:before{content:"\E243"}.glyphicon-object-align-top:before{content:"\E244"}.glyphicon-object-align-bottom:before{content:"\E245"}.glyphicon-object-align-horizontal:before{content:"\E246"}.glyphicon-object-align-left:before{content:"\E247"}.glyphicon-object-align-vertical:before{content:"\E248"}.glyphicon-object-align-right:before{content:"\E249"}.glyphicon-triangle-right:before{content:"\E250"}.glyphicon-triangle-left:before{content:"\E251"}.glyphicon-triangle-bottom:before{content:"\E252"}.glyphicon-triangle-top:before{content:"\E253"}.glyphicon-console:before{content:"\E254"}.glyphicon-superscript:before{content:"\E255"}.glyphicon-subscript:before{content:"\E256"}.glyphicon-menu-left:before{content:"\E257"}.glyphicon-menu-right:before{content:"\E258"}.glyphicon-menu-down:before{content:"\E259"}.glyphicon-menu-up:before{content:"\E260"}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#4c4d4e;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#285f8f;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail>img,.thumbnail a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #ccc}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:200;line-height:1.1;color:#4c4d4e}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#f7941e}a.text-primary:focus,a.text-primary:hover{color:#da7a08}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#f7941e}a.bg-primary:focus,a.bg-primary:hover{background-color:#da7a08}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:"\2014   \A0"}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:""}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:"\A0   \2014"}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Courier New,monospace}code{color:#c7254e;background-color:#f9f2f4;border-radius:4px}code,kbd{padding:2px 4px;font-size:90%}kbd{color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-13,.col-lg-14,.col-lg-15,.col-lg-16,.col-lg-17,.col-lg-18,.col-lg-19,.col-lg-20,.col-lg-21,.col-lg-22,.col-lg-23,.col-lg-24,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-13,.col-md-14,.col-md-15,.col-md-16,.col-md-17,.col-md-18,.col-md-19,.col-md-20,.col-md-21,.col-md-22,.col-md-23,.col-md-24,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-13,.col-sm-14,.col-sm-15,.col-sm-16,.col-sm-17,.col-sm-18,.col-sm-19,.col-sm-20,.col-sm-21,.col-sm-22,.col-sm-23,.col-sm-24,.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-13,.col-xs-14,.col-xs-15,.col-xs-16,.col-xs-17,.col-xs-18,.col-xs-19,.col-xs-20,.col-xs-21,.col-xs-22,.col-xs-23,.col-xs-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-13,.col-xs-14,.col-xs-15,.col-xs-16,.col-xs-17,.col-xs-18,.col-xs-19,.col-xs-20,.col-xs-21,.col-xs-22,.col-xs-23,.col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-13,.col-sm-14,.col-sm-15,.col-sm-16,.col-sm-17,.col-sm-18,.col-sm-19,.col-sm-20,.col-sm-21,.col-sm-22,.col-sm-23,.col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-13,.col-md-14,.col-md-15,.col-md-16,.col-md-17,.col-md-18,.col-md-19,.col-md-20,.col-md-21,.col-md-22,.col-md-23,.col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-13,.col-lg-14,.col-lg-15,.col-lg-16,.col-lg-17,.col-lg-18,.col-lg-19,.col-lg-20,.col-lg-21,.col-lg-22,.col-lg-23,.col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777}caption,th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{margin:0;min-width:0}fieldset,legend{padding:0;border:0}legend{display:block;width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{padding-top:7px}.form-control,output{display:block;font-size:14px;line-height:1.42857143;color:#2f2f2f}.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox-inline input[type=checkbox],.checkbox input[type=checkbox],.radio-inline input[type=radio],.radio input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .checkbox label,fieldset[disabled] .radio-inline,fieldset[disabled] .radio label,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success.checkbox-inline label,.has-success.checkbox label,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.radio-inline label,.has-success.radio label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning.checkbox-inline label,.has-warning.checkbox label,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.radio-inline label,.has-warning.radio label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error.checkbox-inline label,.has-error.checkbox label,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.radio-inline label,.has-error.radio label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#8b8d8e}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#f7941e;border-color:#f7941e}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#da7a08;border-color:#905105}.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#da7a08;border-color:#d07507}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#b86707;border-color:#905105}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#f7941e;border-color:#f7941e}.btn-primary .badge{color:#f7941e;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#2d672d}.btn-success.active,.btn-success:active,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#419641}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#2d672d}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#5cb85c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#828282;border-color:#828282}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#696969;border-color:#424242}.btn-info.active,.btn-info:active,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#696969;border-color:#636363}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#575757;border-color:#424242}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#828282;border-color:#828282}.btn-info .badge{color:#828282;background-color:#fff}.btn-warning{color:#fff;background-color:#f7941e;border-color:#f7941e}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#da7a08;border-color:#905105}.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#da7a08;border-color:#d07507}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#b86707;border-color:#905105}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f7941e;border-color:#f7941e}.btn-warning .badge{color:#f7941e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#8b211e}.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#c12e2a}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#8b211e}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d9534f}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#285f8f;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:0}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:0}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#f7941e}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child),.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio],[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#2f2f2f;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group .form-control:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group .form-control:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn,.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li,.nav>li>a{position:relative;display:block}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#f7941e}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container-fluid .navbar-brand,.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin:8px -15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left;float:left!important}.navbar-right{float:right;float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 0;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\A0";padding:0 5px;color:#656668}.breadcrumb>.active{color:#4c4d4e}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#285f8f;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#f7941e;border-color:#f7941e;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#f7941e}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#da7a08}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#828282}.label-info[href]:focus,.label-info[href]:hover{background-color:#696969}.label-warning{background-color:#f7941e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#da7a08}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:#fff;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container-fluid .jumbotron,.container .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container-fluid .jumbotron,.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#4c4d4e}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#f7941e;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-info{background-color:#828282}.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-warning{background-color:#f7941e}.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#f7941e;border-color:#f7941e}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#fef2e3}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#ececec;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-heading>.dropdown .dropdown-toggle,.panel-title{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#4c4d4e;background-color:#dfdfdf;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#dfdfdf;background-color:#4c4d4e}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#f7941e}.panel-primary>.panel-heading{color:#fff;background-color:#f7941e;border-color:#f7941e}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#f7941e}.panel-primary>.panel-heading .badge{color:#f7941e;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#f7941e}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal,.modal-open{overflow:hidden}.modal{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translateY(-25%);transform:translateY(-25%);-webkit-transition:-webkit-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0);transform:translate(0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px}.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{left:5px}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel,.carousel-inner{position:relative}.carousel-inner{overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:left .6s ease-in-out;transition:left .6s ease-in-out}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media (-webkit-transform-3d),(transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translateZ(0);transform:translateZ(0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:transparent}.carousel-control.left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(90deg,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001));background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000",endColorstr="#00000000",GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(90deg,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5));background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#80000000",GradientType=1)}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:"\2039"}.carousel-control .icon-next:before{content:"\203A"}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:transparent}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{content:" ";display:table}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}/*!
+ * Yamm!3 - Yet another megamenu for Bootstrap 3
+ * http://geedmo.github.com/yamm3
+ * 
+ * @geedmo - Licensed under the MIT license
+ */.yamm .collapse,.yamm .dropdown,.yamm .dropup,.yamm .nav{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}.btn{text-transform:none}.btn:visited{color:#fff}.btn-default:visited{color:#333}.btn-white{background:#fff;border:1px solid #0b0a0f;color:#0b0a0f}.btn-white:hover{background:transparent}.btn-white:visited{color:#333}.btn-huge{font-size:1.1em;padding:10px 35px}.btn-huge i{margin-right:2px}.btn-transparent:link,.btn-transparent:visited{background:transparent;border-color:#fff;color:#fff;font-size:11px;padding:7px 15px}.btn-transparent:active,.btn-transparent:hover{color:#f7941e;border-color:#f7941e;background:#ccc}.btn-transparent .caret{margin-left:6px}.donation-button{padding:.75em 3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:visited{color:inherit}.btn-simple:active,.btn-simple:hover{border:1px solid #777;background:#eee}.btn-simple-white{text-transform:none;font-weight:400;font-size:13px;border:0;border-radius:0}.btn-group-smaller>.btn,.btn-smaller{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:400}.btn-white-purple-border:visited{color:#2d2252}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.btn-secondary{color:#fff;background-color:#868685;border-color:#868685}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#6c6c6c;border-color:#464645}.btn-secondary.active,.btn-secondary:active,.btn-secondary:hover,.open>.dropdown-toggle.btn-secondary{color:#fff;background-color:#6c6c6c;border-color:#676766}.btn-secondary.active.focus,.btn-secondary.active:focus,.btn-secondary.active:hover,.btn-secondary:active.focus,.btn-secondary:active:focus,.btn-secondary:active:hover,.open>.dropdown-toggle.btn-secondary.focus,.open>.dropdown-toggle.btn-secondary:focus,.open>.dropdown-toggle.btn-secondary:hover{color:#fff;background-color:#5b5b5a;border-color:#464645}.btn-secondary.active,.btn-secondary:active,.open>.dropdown-toggle.btn-secondary{background-image:none}.btn-secondary.disabled.focus,.btn-secondary.disabled:focus,.btn-secondary.disabled:hover,.btn-secondary[disabled].focus,.btn-secondary[disabled]:focus,.btn-secondary[disabled]:hover,fieldset[disabled] .btn-secondary.focus,fieldset[disabled] .btn-secondary:focus,fieldset[disabled] .btn-secondary:hover{background-color:#868685;border-color:#868685}.btn-secondary .badge{color:#868685;background-color:#fff}.media{padding-bottom:2em}.media .pull-left{margin-right:30px}.media .media-heading{font-size:27px}.media p{font-size:14px;padding-bottom:0}.media .emphasis{margin-bottom:2px;padding-bottom:0}.modal{text-align:center}@media screen and (min-width:768px){.modal:before{display:inline-block;vertical-align:middle;content:" ";height:100%}}.modal-title{font-weight:600;font-size:22px}.modal-content{border-radius:0}.modal-content-container{border:1px solid #eee;padding:0 20px}.modal-dialog{display:inline-block;text-align:left;vertical-align:middle}.nav>li>a{color:#f7941e}.nav-tabs>li{padding-bottom:0}.nav-tabs>li a:hover{background:#f7941e;color:#fff}.tab-content{padding:10px;border:1px solid #ddd;border-top:none;background:#fff}.tab-pane{padding:.5em 1em}.tab-pane .page-header{margin-top:10px}.section-highlights{background-color:#fff}.section-highlights .featured-highlights-item{text-align:center;padding:25px;border-right:1px solid #ccc}.section-highlights .featured-highlights-item:last-child{border:none}.section-highlights .featured-highlights-item h3{font-size:20px;font-weight:600;margin-top:10px}.section-highlights .featured-highlights-item .feather{stroke:#f7941e;width:40px;height:40px}.section-top-angle{background-color:#fff;position:relative}.section-top-angle:before{background-color:#fff;-webkit-clip-path:polygon(0 16%,100% 0,100% 100%,0 100%);clip-path:polygon(0 16%,100% 0,100% 100%,0 100%);display:block;content:"";position:absolute;top:-79px;width:100%;height:80px}.featured-footer{padding:50px 0;text-align:center;-webkit-clip-path:polygon(0 8%,100% 0,100% 100%,0 91%);clip-path:polygon(0 8%,100% 0,100% 100%,0 91%);margin-bottom:-30px;margin-top:30px}.featured-footer h2{margin-top:10px}.featured-footer .feather{width:40px;height:40px}.featured-footer .textfield-underline{text-align:center;width:300px}.featured-centered-item{height:260px;text-align:center;white-space:nowrap;position:relative}@media (max-width:1200px){.featured-centered-item{height:205px}}@media (max-width:768px){.featured-centered-item{margin-bottom:15px}}.featured-centered-item:before{content:"";height:100%}.featured-centered-item .centered-item,.featured-centered-item:before{display:inline-block;vertical-align:middle}@media (max-width:1200px){.featured-centered-item .centered-item{width:205px;padding:20px}}@media (max-width:480px){.featured-centered-item .centered-item{width:165px;padding:20px}}.featured-centered-item .centered-item img{display:inherit}.featured-centered-item a{position:absolute;opacity:0;display:table;transition:all .5s ease;-webkit-transition:all .5s ease;-moz-transition:all .5s ease;-o-transition:all .5s ease;z-index:9;top:0;left:0;height:260px;background-color:rgba(0,0,0,.8);width:100%;padding:20px;white-space:normal;color:#fff}.featured-centered-item a:hover{opacity:1;text-decoration:none}@media (max-width:1200px){.featured-centered-item a{height:205px}}.featured-centered-item a .item-description,.featured-centered-item a .item-title{color:#fff;display:block;margin-bottom:10px}.featured-centered-item a .item-title{text-transform:uppercase;font-size:18px;font-weight:300}@media (max-width:1200px){.featured-centered-item a .item-description{display:none}}.featured-centered-item a .arrow{font-size:2em;color:#fff}.featured-centered-item a .centered-vertical-item{display:table-cell;vertical-align:middle}.newsletter-sponsored-by{background-color:#1f1f1f;padding:15px 0}.newsletter-sponsored-by .sponsored-by-neon{margin-bottom:0;color:#9e9e9e}@media (max-width:768px){.newsletter-sponsored-by .sponsored-by-neon{text-align:center;margin-bottom:15px}}.newsletter-sponsored-by .neon-logo{max-width:150px;max-height:50px;margin-left:10px}.newsletter-sponsored-by .google-search-archive{margin-bottom:0;text-transform:uppercase;font-weight:200;color:#9e9e9e;text-align:right}@media (max-width:768px){.newsletter-sponsored-by .google-search-archive{text-align:center}}.newsletter-featured-container{background-image:url("/community/eclipse_newsletter/assets/public/images/featured-newsletter-bg.jpg");background-size:cover}.newsletter-featured-container .item-title,.newsletter-featured-container h2,.newsletter-featured-container h3{color:#fff}.newsletter-featured-container h2{font-size:3em}@media (max-width:991px){.newsletter-featured-container h2{text-align:center}}.newsletter-featured-container .featured-item{height:260px;text-align:center;white-space:nowrap}@media (max-width:1200px){.newsletter-featured-container .featured-item{height:205px}}.newsletter-featured-container .featured-item:before{content:"";display:inline-block;height:100%;vertical-align:middle}.newsletter-featured-container .featured-item .centered-item{display:inline-block;vertical-align:middle;width:260px}.newsletter-featured-container .featured-title-container{height:520px;white-space:nowrap}@media (max-width:1200px){.newsletter-featured-container .featured-title-container{height:410px}}@media (max-width:992px){.newsletter-featured-container .featured-title-container{height:inherit}}@media (min-width:992px){.newsletter-featured-container .featured-title-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}}@media (min-width:992px){.newsletter-featured-container .featured-title-item{width:260px;display:inline-block;vertical-align:middle}}@media (max-width:991px){.newsletter-featured-container .featured-title-item{margin-bottom:50px;text-align:center}}.news-list-top-shape:before{z-index:2;content:"";display:block;position:relative;top:-50px;width:100%;-webkit-clip-path:polygon(100% 57%,0 100%,100% 100%);clip-path:polygon(100% 57%,0 100%,100% 100%);background-color:#f9f9f9;height:50px}.news-list h2{color:#868685;margin-bottom:20px;margin-top:0}.news-list .news-list-icon{margin-bottom:0}.news-list .news-list-icon .feather{height:50px;stroke:#f7941e;width:50px}.news-list .media-link{background-color:#fff;color:#484848;display:block;margin-bottom:10px;padding:30px}.news-list .media-link:hover{background-color:#fcdab2;color:#484848;text-decoration:none}.news-list .media-link:focus,.news-list .media-link:visited{color:#484848}@media (min-width:992px){.news-list .news-list-col{padding-bottom:70px;padding-left:5px;padding-right:5px}}.news-list .media-heading{color:#484848;font-size:19px;font-weight:700}.news-list .media-text{color:#484848}.news-list .news-list-links{text-align:center}.news-list .news-list-links a{color:#9c9c9c}.news-list .news-list-links .news-list-links-rss{border-left:1px solid #9c9c9c;padding-left:10px}.news-list .news-list-links .fa-rss{color:#f7941e;font-size:18px;margin-left:10px;position:relative;top:2px}.featured-jumbotron-bottom-shape{-webkit-clip-path:polygon(0 0,100% 0,100% 94%,0 100%);clip-path:polygon(0 0,100% 0,100% 94%,0 100%);position:relative;z-index:2;margin-bottom:-30px}.featured-jumbotron{background-color:#868685;text-align:center;color:#fff;padding-top:10px;margin-bottom:0}.featured-jumbotron .btn{padding-left:20px;padding-right:20px;min-width:200px}@media (max-width:991px){.featured-jumbotron .btn{margin-bottom:25px}}.featured-jumbotron h1{font-weight:700;margin-bottom:30px;margin-top:0}@media (min-width:992px){.featured-jumbotron h1{font-size:45px}}@media (max-width:991px){.featured-jumbotron h1{font-size:30px}}.featured-jumbotron h1:after{border-bottom:3px solid #fff;width:100px;height:5px;display:block;content:"";margin:15px auto 0}.featured-jumbotron h2{color:inherit}.featured-jumbotron a:not(.btn):not(.jumbotron-icon){color:#8a9ca5}.featured-jumbotron a:not(.btn):not(.jumbotron-icon):hover{color:#576972}.featured-jumbotron a:not(.btn):not(.jumbotron-icon):visited{color:#9a816d}@media (max-width:767px){.featured-jumbotron .btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0;min-width:auto}}.featured-jumbotron .jumbotron-icon{margin-bottom:10px;display:block;color:inherit}@media (min-width:768px){.featured-jumbotron .jumbotron-icon{height:60px}.featured-jumbotron .jumbotron-icon .feather{width:60px;height:60px}}@media (max-width:767px){.featured-jumbotron .jumbotron-icon{height:45px}}@media (max-width:767px) and (max-width:767px){.featured-jumbotron .jumbotron-icon .feather{width:45px;height:45px}}.featured-story{position:relative;z-index:1;background-color:#fff;overflow:hidden}@media (max-width:767px){.featured-story{text-align:center}}.featured-story-description{color:#9b9b9b;font-size:12px;margin-top:5px;clear:both;padding-top:10px;margin-bottom:10px}.featured-ad,.featured-story-block{padding-top:25px}@media (min-width:768px){.featured-ad,.featured-story-block{padding-top:50px;min-height:340px}}.featured-story-block{background-position:100% 0;background-repeat:no-repeat;background-color:#fff}.featured-story-block .featured-story-description{font-size:.9em;margin-bottom:10px}@media (min-width:768px){.featured-story-block{padding-right:100px;padding-bottom:50px}}.featured-story-block h2{color:#868685;margin-top:0}.featured-story-block p{font-size:21px;font-weight:100;margin-bottom:20px}.featured-ad-content{clear:both}.featured-ad{position:relative;background-color:#eaeaeb;padding-bottom:50px}@media (min-width:768px){.featured-ad{text-align:right}.featured-ad .featured-ad-content{z-index:2;width:100%;position:absolute;right:15px}.featured-ad .featured-ad-content img{float:right}.featured-ad:after,.featured-ad:before{content:"";position:absolute;min-height:100%;top:0;background-color:#eaeaeb}.featured-ad:before{width:100px;z-index:1;left:-45px;-webkit-clip-path:polygon(0 0,100% 0,100% 100%,0 100%,37% 51%);clip-path:polygon(0 0,100% 0,100% 100%,0 100%,37% 51%)}.featured-ad:after{width:1000px;z-index:1;left:0}}.eclipsefnd-ad:after{clear:both;content:" ";display:table}.eclipsefnd-ad a{-webkit-box-shadow:3px 4px 46px -6px rgba(0,0,0,.51);box-shadow:3px 4px 46px -6px rgba(0,0,0,.51);background:#fff 50% no-repeat;height:200px;width:200px;display:block;text-align:center;text-indent:-9999px;margin:auto}@media (min-width:768px){.eclipsefnd-ad a{float:right}}.ad-strategic-default a{background-size:200px 200px}.ad-eclipsecon-schedule a{font-weight:300}.ad-eclipsecon-schedule>thead>tr>th{border-color:#cecece}.ad-eclipsecon-schedule>tbody>tr>td,.ad-eclipsecon-schedule>tbody>tr>th{border:none}.ad-eclipsecon-schedule>tbody>tr:nth-of-type(odd){background-color:#e8e8e8}.ad-eclipsecon-schedule-title{position:relative;padding-left:30px;display:block;font-size:16px;font-weight:600}.ad-eclipsecon-schedule-title:before{font-family:FontAwesome;content:"\F041";position:absolute;font-size:35px;color:#a59bd0;left:0;top:-2px}.donate-ad{background-color:#f6f6f6;position:relative;overflow:hidden;border-bottom:4px solid #bf4b97}.donate-ad h2{margin-top:0}.donate-ad .btn-square{background-color:#2e2458;color:#fff;margin-bottom:10px;width:57px}.donate-ad .btn-square.active{background-color:#f7941d}.donate-ad .underlined-link{font-weight:400;text-decoration:underline}.donate-ad .underlined-link:hover{text-decoration:none}.donate-ad .btn-donate-close{position:absolute;top:20px;right:20px;z-index:999;font-size:1.2em;cursor:pointer}.donate-ad .list-amount{margin-bottom:0}.donate-ad .donate-submit{margin-top:20px}.donate-ad .donate-submit .input-group-addon{font-size:.8em}.donate-ad .form-inline .input-group>.form-control{padding-right:6px;text-align:right}@media (min-width:768px){.donate-ad .form-inline .input-group>.form-control{width:60px}}.donate-form,.donate-text{padding-top:20px}@media (min-width:992px){.donate-text:after{content:"";position:absolute;top:0;right:-34px;width:0;height:0;border-top:126px solid transparent;border-left:34px solid #f6f6f6;border-bottom:126px solid transparent;z-index:99}}.donate-form form{position:relative;z-index:9}.donate-form:after{content:"";position:absolute;width:1000px;height:300px;z-index:1;left:0;top:0;background-color:#fff}.recognition-fields{display:none}.anchor{display:block;position:relative;top:-14px;visibility:hidden;z-index:9999}.scrollup{width:40px;height:40px;opacity:.3;position:fixed;bottom:50px;right:15px;display:none;text-indent:-9999px;background:url(../images/vendor/eclipsefdn-solstice-components/back-to-top/back-to-top.png?19e6da177416da3208367d78ea0a3c23) no-repeat}.scrollup:focus{outline:none}#back-to-top{margin:0;padding:0}#back-to-top a{border-top:1px solid gray;background-color:#666;color:#fff;display:block;padding:4px 0 3px;text-align:center;width:100%;margin:0}#back-to-top a:focus,#back-to-top a:hover{text-decoration:none;background:#dfdfe4;color:#4a4a4a}.share-button{padding:5px;display:block;color:#fff;width:24px;height:24px}.share-button:active,.share-button:focus,.share-button:hover,.share-button:visited{color:#fff}.share-button .fa{font-size:13px}.share-button-twitter{background-color:#1da1f2}.share-button-facebook{background-color:#3b5998}.share-button-mail{background-color:#949494}.default-breadcrumbs{background:#efefef;background-size:100%;color:#656668;border-bottom:none;border-top:none;font-size:.85em}.breadcrumb{background:none;margin-bottom:0;text-transform:inherit}.breadcrumb a{font-weight:300}.breadcrumb a:link,.breadcrumb a:visited{color:#656668}.breadcrumb a:hover{color:#4c4d4e}body #st-el-4 .st-btns{overflow:auto}.discover-search{background:#efefef}.discover-search h2{color:#545454;margin-top:1.3em;padding-bottom:0;margin-bottom:.1em}.discover-search .form-search-projects{margin-bottom:1.4em}.discover-search>.container{min-height:267px}@media (min-width:992px){.discover-search>.container{background:url(../images/vendor/eclipsefdn-solstice-components/discover-search/discover-search-bg.jpg?7caf6dd2285eb601704861e00e81cf5a) 100% no-repeat}}.drag_installbutton{position:relative;clear:both;display:inline}.drag_installbutton .tooltip{opacity:1;display:none;background:url(../images/vendor/eclipsefdn-solstice-components/drag-drop/mpcdrag.png?0e677e73f1642275ebc6a4fbf2a61c09) no-repeat scroll 110% 60% #a285c5;position:absolute;top:0;left:64px;text-align:left;width:325px;color:#000;border:1px solid #ae00ce;z-index:99;padding:5px 50px 5px 5px}.drag_installbutton .tooltip h3{margin-top:0;color:#000}.drag_installbutton .tooltip.show-right{left:-335px}.drag_installbutton a.drag:hover .tooltip{display:block}.drag_installbutton.drag_installbutton_v2 .btn:hover{cursor:move}.drag_installbutton.drag_installbutton_v2 .tooltip{left:100px;margin-top:-6px;border:1px solid #777;background-color:#eee}.drag_installbutton.drag_installbutton_v2 .tooltip.tooltip-below-right{right:0;left:auto;top:40px}.drag_installbutton.drag_installbutton_v2 .tooltip h3{font-size:18px}footer#solstice-footer{background:#fff;font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;padding-top:60px;color:#868685;padding-bottom:26px;font-size:14px;border-top:none}footer#solstice-footer h2{color:#000;margin-top:0;font-weight:400;font-size:18px;max-width:auto}footer#solstice-footer a:active,footer#solstice-footer a:focus,footer#solstice-footer a:link,footer#solstice-footer a:visited{color:#868685;font-weight:400}footer#solstice-footer a:hover{color:#393939}footer#solstice-footer .logo-eclipse-white{margin-bottom:15px;max-width:161px}footer#solstice-footer .nav{margin-left:-15px;margin-bottom:25px}footer#solstice-footer .nav a{padding:6px 15px}footer#solstice-footer .nav a:hover{background:none;color:#393939}footer#solstice-footer li{padding-bottom:0}@media (max-width:450px){footer#solstice-footer section.col-xs-11,footer#solstice-footer section.col-xs-14{position:relative;float:left;width:95.83333333%;min-height:1px;padding-left:15px;padding-right:15px}}@media (min-width:451px) and (max-width:767px){footer#solstice-footer #footer-useful-links{clear:left}footer#solstice-footer #copyright{clear:both}}#copyright{padding-top:15px}#copyright img{float:left;margin-top:10px;margin-right:15px;clear:both}@media (max-width:991px){#copyright-text{margin-bottom:20px}}@media (min-width:992px){.social-media{text-align:right}}#footer-eclipse-foundation,#footer-legal,#footer-other,#footer-useful-links{z-index:99}.footer-other-working-groups{font-weight:300;font-size:11px}.footer-other-working-groups .logo-eclipse-default,.footer-other-working-groups .social-media{margin-bottom:20px;margin-top:0}.footer-other-working-groups .img-responsive{max-width:175px}.footer-other-working-groups .footer-working-group-col{padding:0}@media (min-width:1200px){.footer-other-working-groups{background:url(../images/vendor/eclipsefdn-solstice-template/footer-working-group-separator.png?7755eb2e94e0b22d832e9ffa7cd79479) 50% repeat-y}.footer-other-working-groups .img-responsive{max-width:200px}}.footer-min{background:#ececec;border-top:1px solid #acacac;position:absolute;width:100%;bottom:0;padding:10px 0}.footer-min a{font-weight:400;font-size:.8em}.footer-min p,.footer-min ul{margin-bottom:0;font-size:.8em}.footer-min ul{text-align:right}.footer-min ul li{padding-bottom:0}@media screen and (max-width:767px){.footer-min p,.footer-min ul{text-align:center}}body.solstice-footer-min{margin-bottom:36px;position:static}@media screen and (max-width:767px){body.solstice-footer-min{margin-bottom:51px}}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:transparent;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu #navbar-main-menu{float:none}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#f7941e;height:3px}#main-menu .nav{margin:0;padding:0;background:#acacab}#main-menu .nav>li.open .dropdown-toggle{color:#fff;background:#787878}#main-menu .nav>li>a{color:#fff;text-transform:none;padding:18px 15px;border-bottom:1px solid #525252}#main-menu .nav>li .dropdown-menu{background:#525252;padding:0;border-radius:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#f7941e;color:#fff}#main-menu .nav>li .dropdown-menu>li.active a:focus,#main-menu .nav>li .dropdown-menu>li.active a:hover{color:#fff;background:#f5f5f5}#main-menu .nav>li .dropdown-menu>li>a{padding:18px 15px;color:#afafaf}#main-menu .nav>li .dropdown-menu>li>a:focus,#main-menu .nav>li .dropdown-menu>li>a:hover{color:#7c7c7c;background:#f5f5f5}#main-menu .nav>li.main-menu-search .dropdown-toggle{display:none}#main-menu .nav>li.main-menu-search .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none;display:block}#main-menu .nav>li.main-menu-search .dropdown-menu p{color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .yamm-content{padding:15px}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input{background-color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input-box{border:none}}@media (max-width:1199px){#breadcrumb .container,#header-wrapper .container,.toolbar-container-wrapper .container,main .container{width:auto}}@media (min-width:768px){#main-menu{font-size:14px;margin-bottom:5px}#main-menu .dropdown li,#main-menu ul li{text-transform:none}#main-menu li a{margin-right:0;color:#fff}#main-menu li a:active,#main-menu li a:hover{color:#ccc}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:auto;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:auto;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#6b655f}#main-menu .dropdown-menu a:active,#main-menu .dropdown-menu a:hover{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:17px}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active,#main-menu a:focus{color:#ccc}#main-menu .nav .open a,#main-menu .nav .open a:focus,#main-menu .nav .open a:hover,#main-menu .nav>li>a:focus,#main-menu .nav>li>a:hover{background-color:transparent}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.about,.ul-left-nav>li.separator{padding-left:0;font-weight:700}.ul-left-nav>li.about img,.ul-left-nav>li.separator img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#35322f}.logo-eclipse-default-mobile{max-height:50px}@media (min-width:768px){.alternate-layout #main-menu{font-size:14px}.alternate-layout #main-menu ul li{text-transform:none}.alternate-layout #main-menu li a{color:#6b655f}.alternate-layout #main-menu li a:active,.alternate-layout #main-menu li a:hover{color:#35322f}}@media (min-width:992px){.alternate-layout #main-menu{font-size:17px}}@media (max-width:767px){.alternate-layout #main-menu{background:#2c2255 100% 0 no-repeat}}main #bigbuttons{min-height:1px;padding:1.65em 15px 2.2em;text-align:center;position:relative;top:auto;left:auto}@media (min-width:768px){main #bigbuttons{float:left;width:41.66666667%;margin-left:58.33333333%}}@media (min-width:992px){main #bigbuttons{float:left;width:62.5%;margin-left:37.5%}}@media (min-width:1200px){main #bigbuttons{float:left;width:66.66666667%;margin-left:25%}}main #bigbuttons h3{display:none}main #bigbuttons:after,main #bigbuttons:before{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons ul{padding-left:0;list-style:none;margin-left:-5px}main #bigbuttons ul>li{display:inline-block;padding-left:5px;padding-right:5px}main #bigbuttons ul li{background:none}@media (min-width:768px){main #bigbuttons ul li{float:right}}main #bigbuttons a{position:relative;margin:0;top:auto;left:auto}main #bigbuttons a:hover{text-decoration:none}div#novaContent{background-position:0 0;padding-top:0}@media (max-width:767px){div#novaContent{background-image:none}}@media (min-width:1200px){div#novaContent{background-position:top}}.legacy-page #midcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #midcolumn{float:left;width:70.83333333%}}.legacy-page #midcolumn #maincontent,.legacy-page #midcolumn #midcolumn{width:100%}.legacy-page #midcolumn.no-right-sidebar{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #midcolumn.no-right-sidebar{float:left;width:100%}}.legacy-page #rightcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #rightcolumn{float:left;width:29.16666667%}}.logo-eclipse-default{margin:13px 0}.header_nav{padding-bottom:35px}.header_nav img{margin:20px auto}.header_nav ul{background:#f4f4f4;padding:0;text-transform:uppercase;color:#7b778e;margin:0;font-size:16px}.header_nav ul li{list-style:none;clear:right;padding-bottom:0}.header_nav ul li:nth-child(odd){clear:left}.header_nav ul a{padding:20px;display:block;font-weight:600}.header_nav ul a:active,.header_nav ul a:link,.header_nav ul a:visited{color:#7b778e}.header_nav ul a:hover{color:#f7941e}.header_nav ul a i{font-size:30px;padding:4px 0 0;text-align:center;font-weight:700}.header_nav ul span{padding:0 0 0 5px}.header_nav ul span p{font-size:11px;text-transform:none;font-weight:400;margin:0}.icon-sidebar-menu h3{margin-top:0;font-size:16px;margin-bottom:5px}.icon-sidebar-menu p{font-size:13px}.icon-sidebar-menu .circle-icon{width:80px;height:80px;display:block}.icon-sidebar-menu .circle-icon i{font-size:37px;margin-top:20px}.step-by-step .intro{text-align:center}.step-by-step .intro h2{margin-top:1.5em}.step-by-step .step-by-step-timeline{text-align:center;margin-top:1.5em}.step-by-step .step-by-step-timeline .step-icon,.step-by-step .step-by-step-timeline .step-icon:hover,.step-by-step .step-by-step-timeline .step-icon:visited{color:#4c4d4e}.step-by-step .step-by-step-timeline .feather{width:50px;height:50px;margin-bottom:15px}.tabs-sidebar .nav{margin-top:15px}.tabs-sidebar .nav img{padding-top:13px}.tabs-sidebar .nav .active img.desaturate{-webkit-filter:grayscale(0);filter:grayscale(0)}.tabs-sidebar .nav li.active a{background:none;border:1px solid #cbd3e8}.tabs-sidebar .nav li.active a:after{content:"";position:absolute;left:100%;top:50%;margin-top:-13px;display:block;width:8px;height:21px;background:url(../images/vendor/eclipsefdn-solstice-components/tabs-sidebar/tabs-sidebar-active.png?ba27d4209469fa215d4ad75e4c5ebbe9) no-repeat}.tabs-sidebar .nav li a{border:1px solid #fff}.tabs-sidebar .nav li a:focus,.tabs-sidebar .nav li a:hover{outline:none;border:1px solid #cbd3e8}.tabs-sidebar .tab-content .row{padding:1em;border-bottom:1px solid #eee}.tabs-sidebar .tab-content p{font-size:13.5px}.timeline{margin:35px auto 0}.timeline a{font-weight:700}.timeline .gs-item{padding-bottom:20px}.timeline .circle{background:#5b46b0;color:#fff;border:2px solid #fff;height:47px;width:47px;font-size:20px;float:left;padding-top:6px;padding-left:1px;font-weight:700}.timeline .two .circle{background:#523f9e}.timeline .three .circle{background:#3f3179}.timeline .four .circle{background:#2c2255}.timeline h1{font-size:2em;text-align:left;padding:9px 0 0 62px;margin-bottom:24px}.timeline ul{padding-left:1px}.timeline li{margin-bottom:1em;padding-left:14px;list-style:none}.timeline li:before{content:"\BB";color:#f7941e;margin-left:-16px;margin-right:10px;display:block;float:left}@media (min-width:992px){.timeline{border-top:1px dotted #c2cbe4;position:relative}.timeline .circle{margin:-25px auto 0;float:none}.timeline h1{padding-top:15px;float:none;padding-left:0}}.toolbar-menu{background-color:#fff;border-bottom:1px solid #ccc;border-top:1px solid #ccc;margin-bottom:25px}.toolbar-menu .breadcrumb{margin-bottom:0;padding-left:0;background:none}.toolbar-menu .breadcrumb li{padding-bottom:0;font-size:1.1em}.toolbar-menu .breadcrumb>li+li:before{content:" | "}.toolbar-menu .breadcrumb a:link,.toolbar-menu .breadcrumb a:visited{color:#2f2f2f}.toolbar-menu .breadcrumb a:hover{color:#f7941e}.toolbar-menu .breadcrumb a.active{color:#371e1d;font-weight:600}.toolbar-container-wrapper{background:transparent}.toolbar-row{padding:8px 0;font-size:12px;color:#fff;font-weight:300}.toolbar-row a{font-weight:300;color:#fff;text-decoration:none}.toolbar-row a:hover{color:#ccc}.toolbar-row a:visited{color:#fff}.toolbar-row ul{margin-bottom:0}.toolbar-row ul li:last-child{padding-right:0}.toolbar-row .toolbar-left-content span{font-size:18px}@media (max-width:767px){.toolbar-row .toolbar-left-content span{padding-top:10px;text-align:center;display:block}}@media (min-width:768px){.toolbar-row .toolbar-left-content span{border-left:5px solid #f7941e;padding-left:10px}}.toolbar-row .toolbar-left-content a{font-weight:700;color:#f7941e}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#828282}.alternate-layout .toolbar-container-wrapper{background:#fff}.alternate-layout .toolbar-row,.alternate-layout .toolbar-row a{color:#2c2255}.alternate-layout .toolbar-row a:hover{color:#48388c}.alternate-layout .toolbar-row a:visited{color:#2c2255}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.block-box,.sideitem{background:#fff;color:#4c4d4e;margin:0 0 2em;padding:15px;border:1px solid #e0e0e0}.block-box h2,.block-box h3,.block-box h6,.sideitem h2,.sideitem h3,.sideitem h6{background:none;color:#4c4d4e;margin:0 0 10px;padding:0 0 10px;text-transform:inherit;font-weight:600;font-size:15px}.block-box h2 a:hover,.block-box h3 a:hover,.block-box h6 a:hover,.sideitem h2 a:hover,.sideitem h3 a:hover,.sideitem h6 a:hover{color:#4c4d4e}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0}.block-box .list-heading,.sideitem .list-heading{font-weight:600;margin-bottom:4px;font-size:15px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.block-heading{background:none repeat scroll 0 0 #2c2255;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.brand-primary{color:#f7941e}.brand-secondary{color:#868685}.brand-tertiary{color:#2c2255}.brand-quaternary,.brand-quinary{color:#efefef}.brand-success{color:#5cb85c}.brand-info{color:#828282}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.blue{color:#00f}.darkblue{color:#009}.yellow{color:#ff0}.red{color:red}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-primary{background:#f7941e;color:#fff}.background-primary h2,.background-primary h3,.background-primary h4,.background-primary li,.background-primary p{color:inherit}.background-secondary{background:#868685;color:#fff}.background-secondary h2,.background-secondary h3,.background-secondary h4,.background-secondary li,.background-secondary p{color:inherit}.background-tertiary{background:#2c2255;color:#fff}.background-tertiary h2,.background-tertiary h3,.background-tertiary h4,.background-tertiary li,.background-tertiary p{color:inherit}.background-quaternary{background:#efefef;color:#fff}.background-quaternary h2,.background-quaternary h3,.background-quaternary h4,.background-quaternary li,.background-quaternary p{color:inherit}.background-quinary{background:#efefef;color:#fff}.background-quinary h2,.background-quinary h3,.background-quinary h4,.background-quinary li,.background-quinary p{color:inherit}.background-bg-body{background:#fff}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-mid-grey{background:#e6e7e8}.background-grey{background:#ececec}.background-light-grey{background:#f1f1f1}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-blue{background:#828282;color:#fff}.background-white{background:#fff}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}.label-purple{background-color:#f7941e}#novaContent.background-image-none{background-image:none}.table-striped>tbody>tr:nth-of-type(odd).background-orange,tr.background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.box-gray-border{border:1px solid #d6d6d6}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.border-grey-right{border-right:1px solid #ccc}.no-border{border:none!important}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing :after,.reset-box-sizing :before{-webkit-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.vertical-align{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (min-width:992px){.vertical-align-md{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.float-right{float:right}.float-left{float:left}.visible-thin{display:none!important}.col-lg-5-eclipse,.col-md-5-eclipse,.col-sm-5-eclipse,.col-xs-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:700;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:"\F00C"}.container-list{counter-reset:list;padding-left:55px}.container-list>.list-row{margin-top:12px;position:relative;min-height:3em}.container-list>.list-row:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:700;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(list);counter-increment:list;display:block}.container-list>.list-row>div:first-child{padding-left:.5em}.container-list>.list-row .no-wrap{white-space:nowrap}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:700;color:#969696}.list-checkmark a:hover{color:#f7941e}.list-padding li{padding-bottom:25px}.list-border-right li{border-right:1px solid}.list-border-right li:last-child{border:none}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.fa-li{top:.23em}.reset{margin:0}.padding-0,.reset{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-35{padding:35px}.padding-40{padding:40px}.padding-45{padding:45px}.padding-50{padding:50px}.padding-55{padding:55px}.padding-60{padding:60px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-bottom-35{padding-bottom:35px}.padding-bottom-40{padding-bottom:40px}.padding-bottom-45{padding-bottom:45px}.padding-bottom-50{padding-bottom:50px}.padding-bottom-55{padding-bottom:55px}.padding-bottom-60{padding-bottom:60px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-top-35{padding-top:35px}.padding-top-40{padding-top:40px}.padding-top-45{padding-top:45px}.padding-top-50{padding-top:50px}.padding-top-55{padding-top:55px}.padding-top-60{padding-top:60px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-left-35{padding-left:35px}.padding-left-40{padding-left:40px}.padding-left-45{padding-left:45px}.padding-left-50{padding-left:50px}.padding-left-55{padding-left:55px}.padding-left-60{padding-left:60px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.padding-right-35{padding-right:35px}.padding-right-40{padding-right:40px}.padding-right-45{padding-right:45px}.padding-right-50{padding-right:50px}.padding-right-55{padding-right:55px}.padding-right-60{padding-right:60px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-35{margin:35px}.margin-40{margin:40px}.margin-45{margin:45px}.margin-50{margin:50px}.margin-55{margin:55px}.margin-60{margin:60px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-bottom-35{margin-bottom:35px}.margin-bottom-40{margin-bottom:40px}.margin-bottom-45{margin-bottom:45px}.margin-bottom-50{margin-bottom:50px}.margin-bottom-55{margin-bottom:55px}.margin-bottom-60{margin-bottom:60px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-top-35{margin-top:35px}.margin-top-40{margin-top:40px}.margin-top-45{margin-top:45px}.margin-top-50{margin-top:50px}.margin-top-55{margin-top:55px}.margin-top-60{margin-top:60px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-7{margin-right:7px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-right-35{margin-right:35px}.margin-right-40{margin-right:40px}.margin-right-45{margin-right:45px}.margin-right-50{margin-right:50px}.margin-right-55{margin-right:55px}.margin-right-60{margin-right:60px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.margin-left-35{margin-left:35px}.margin-left-40{margin-left:40px}.margin-left-45{margin-left:45px}.margin-left-50{margin-left:50px}.margin-left-55{margin-left:55px}.margin-left-60{margin-left:60px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.margin-auto{margin:0 auto}.breadcrumbs-default-margin{margin-bottom:20px}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;vertical-align:middle}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0;-moz-transform:scale(.9999);border-color:#ececec transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent}.triangle.triangle-white{border-color:#f9f9f9 hsla(0,0%,98%,0) hsla(0,0%,98%,0) transparent}.box{padding:15px 10px;margin-bottom:10px;margin-top:1.5em}.blue_box{background-color:#114e68}.blue_box h3,.blue_box p{color:#fff}.uppercase{text-transform:uppercase}.fw-200{font-weight:200}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.emphasis,.fw-700{font-weight:700}.emphasis{color:#f7941e}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.underlined{text-decoration:underline}.small{font-size:10px}.big{font-size:20px}.font-size-large{font-size:58px}.text-highlight{background:#eee;padding:12px 24px}.white-space-normal{white-space:normal}.header-short-underline{font-size:18px;font-weight:700}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}a:visited{color:#9e55d2}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}.a-underline{text-decoration:underline}.a-underline:hover{text-decoration:none}blockquote{font-size:14px}.top-level-heading{background:#868685;position:relative;padding:20px;margin-bottom:30px;color:#fff}.top-level-heading:after{width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #868685;position:absolute;content:"";bottom:-20px;left:50%;margin-left:-20px}.heading-underline{position:relative;font-size:2em;text-transform:uppercase;font-weight:200;margin:50px 0 20px}.heading-underline:after{border-bottom:4px solid #f7941d;content:"";display:block;width:100px;margin:10px auto 0}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{margin-bottom:-55px}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#ececec;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table-layout-fixed{table-layout:fixed}.table.table-solstice th{background:#828282;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(2n){background:#40bbdc}.deprecated #novaContent{background:url(../images/vendor/eclipsefdn-solstice-template/bg-deprecated.gif?3219c56285f22eddb0f5746aeca4d4fe) center 75px no-repeat!important}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.textfield-underline{border-top:none;border-left:none;border-right:none;border-bottom:1px solid inherit;background-color:transparent;border-radius:0;-webkit-box-shadow:none;box-shadow:none;margin:10px auto;color:inherit}.textfield-underline:-moz-placeholder,.textfield-underline::-moz-placeholder{color:inherit}.textfield-underline:-ms-input-placeholder{color:inherit}.textfield-underline::-webkit-input-placeholder{color:inherit}.hidden-label label.control-label{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.border-reset{border:0!important}@media (min-width:768px){#main-menu li>a{padding:0 0 2px;margin:10px 15px}#main-menu li>a:hover{border-bottom:1px solid #ccc;padding-bottom:1px}#main-menu li.dropdown.eclipse-more.open>a{color:#ccc}#main-menu li.dropdown.eclipse-more .dropdown-menu{background-color:#fff;right:15px;left:auto;border-radius:0;-webkit-box-shadow:none;box-shadow:none;border:none;background-clip:inherit;padding-top:0;outline:1px solid rgba(0,0,0,.15);outline-offset:-1px}#main-menu li.dropdown.eclipse-more .dropdown-menu:before{border-right:1px solid #f7941e;border-left:1px solid #f7941e;background-color:#f7941e;display:block;content:"";height:5px;width:100%;position:relative;top:-4px}#main-menu li.dropdown.eclipse-more .dropdown-menu p{color:#6b655f}#main-menu li.dropdown.eclipse-more .dropdown-menu a{color:#423f3b}#main-menu li.dropdown.eclipse-more .dropdown-menu a:hover{color:#6b655f;border:none}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box{border-top:none!important;border-left:none!important;border-right:none!important;border-bottom:1px solid inherit!important;background-color:transparent!important;border-radius:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;margin:10px auto!important;color:inherit!important;width:95%;margin:0!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box:-moz-placeholder,#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box::-moz-placeholder{color:inherit!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box:-ms-input-placeholder{color:inherit!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box::-webkit-input-placeholder{color:inherit!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box-focus,#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box:hover{border-top:none!important;border-left:none!important;border-right:none!important}.toolbar-row a{padding-bottom:1px}.toolbar-row a:hover{border-bottom:1px solid #ccc}}#header-row{padding-bottom:20px}.header-wrapper{background:#2c2255 100% 0 no-repeat;background-size:cover}.header-wrapper .featured-jumbotron{background-color:transparent}.header-default-bg-img{background-image:url(../images/vendor/eclipsefdn-solstice-components/landing-well/eclipse_home_bg.jpg?64547867c5e4ec0fcf669837305dc7a5)}.header-alternate-bg-img-1{background-image:url(../images/vendor/eclipsefdn-solstice-components/landing-well/eclipse_alternate_bg-1.jpg?1d805119502c5489dbed5cbc08f0c656)}.alternate-layout header{background-color:#fff}.alternate-layout #main-menu li.dropdown.eclipse-more.open>a{color:#35322f}#back-to-top a{border-top:none;padding:6px 15px;text-align:left;width:auto;float:left;margin-left:15px}@media (max-width:767px){#main-menu.navbar{border:0;border-bottom:none}#btn-call-for-action{padding-top:10px}#btn-call-for-action a{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}}@media (max-width:991px){#btn-call-for-action{padding-top:10px}#btn-call-for-action a{padding:5px 8px;font-size:12px;line-height:1.5;border-radius:0}}#adBlock,.cse .gsc-control-cse,.gsc-control-cse{background-color:#fff!important;border:none!important}.dropdown-menu .gsc-input-box{border-top:none!important;border-left:none!important;border-right:none!important;border-bottom:1px solid inherit!important;background-color:transparent!important;border-radius:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;margin:10px auto!important;color:inherit!important;width:95%;margin:0!important}.dropdown-menu .gsc-input-box:-moz-placeholder,.dropdown-menu .gsc-input-box::-moz-placeholder{color:inherit!important}.dropdown-menu .gsc-input-box:-ms-input-placeholder{color:inherit!important}.dropdown-menu .gsc-input-box::-webkit-input-placeholder{color:inherit!important}.dropdown-menu .gsc-input-box-focus,.dropdown-menu .gsc-input-box:hover{border-top:none!important;border-left:none!important;border-right:none!important;border-bottom:1px solid #d9d9d9!important}.gsc-search-button-v2{border:1px solid #f7941e!important;border-radius:0!important;-moz-border-radius:0!important;-webkit-border-radius:0!important;background-color:#f7941e!important;background-image:-webkit-gradient(linear,left top,left bottom,from(#f7941e),to(#f7941e))!important;background-image:linear-gradient(180deg,#f7941e,#f7941e)!important}.main-page-title{padding:20px 0 0}.main-page-title #main-sidebar{position:absolute;width:100%;padding-left:15px;padding-right:15px}#main-sidebar{color:#fff;position:relative}#main-sidebar .main-sidebar-html-block{background:#828282;padding:20px;text-align:center}#main-sidebar .ul-left-nav{background:#828282;padding:15px;position:relative;margin-bottom:0}#main-sidebar .ul-left-nav>li.separator{border:none}@media (min-width:992px){#main-sidebar:after{display:block;content:"";width:100%;height:40px;-webkit-clip-path:polygon(0 0,0 100%,100% 0);clip-path:polygon(0 0,0 100%,100% 0);position:relative;bottom:0;background:#828282}}#main-sidebar a,#main-sidebar a:hover{color:#fff}#main-sidebar .separator{font-size:18px;font-weight:400}#main-sidebar .separator:hover{text-decoration:none}#main-sidebar li{border-bottom:1px solid #9b9b9b;padding-bottom:10px;margin-bottom:10px}#main-sidebar li:last-child{border-bottom:none}.sideitem h6{border-bottom:1px solid #989a9b}.sideitem ul{margin-left:10px}@media (min-width:992px){.main-sidebar-default-margin{margin-top:-20px}}@media (max-width:767px){footer#solstice-footer{text-align:center}footer#solstice-footer .nav{margin-left:0}}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/stylesheets/forums.min.css b/eclipse.org-common/themes/solstice/public/stylesheets/forums.min.css
index 1afba9b..8984220 100644
--- a/eclipse.org-common/themes/solstice/public/stylesheets/forums.min.css
+++ b/eclipse.org-common/themes/solstice/public/stylesheets/forums.min.css
@@ -1,13 +1,24 @@
-/*!
- * Bootstrap v3.3.6 (http://getbootstrap.com)
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#2c2255;text-decoration:none}a:hover,a:focus{color:#100c1e;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#2c2255}a.text-primary:hover,a.text-primary:focus{color:#191331}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#2c2255}a.bg-primary:hover,a.bg-primary:focus{background-color:#191331}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#2f2f2f}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#2f2f2f;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#2c2255;border-color:#231b43}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#191331;border-color:#000}.btn-primary:hover{color:#fff;background-color:#191331;border-color:#0c0917}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#191331;border-color:#0c0917}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#0c0917;border-color:#000}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#2c2255;border-color:#231b43}.btn-primary .badge{color:#2c2255;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#afbbdc;border-color:#9dacd4}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#8c9dcc;border-color:#4a63a8}.btn-info:hover{color:#fff;background-color:#8c9dcc;border-color:#7388c2}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#8c9dcc;border-color:#7388c2}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#7388c2;border-color:#4a63a8}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#afbbdc;border-color:#9dacd4}.btn-info .badge{color:#afbbdc;background-color:#fff}.btn-warning{color:#fff;background-color:#f7941e;border-color:#f38809}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#da7a08;border-color:#784304}.btn-warning:hover{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#b86707;border-color:#784304}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f7941e;border-color:#f38809}.btn-warning .badge{color:#f7941e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#2c2255;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#100c1e;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#2c2255}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#2f2f2f;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#2c2255}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#2c2255}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important;float:left}.navbar-right{float:right !important;float:right;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#fff}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#2c2255;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#100c1e;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#2c2255;border-color:#2c2255;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#2c2255}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#191331}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#afbbdc}.label-info[href]:hover,.label-info[href]:focus{background-color:#8c9dcc}.label-warning{background-color:#f7941e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#da7a08}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#2c2255;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#2c2255}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#2c2255;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#afbbdc}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f7941e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#2c2255;border-color:#2c2255}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#8979ca}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#f5f5f5;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid transparent;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:-1px;border-top-right-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1px;border-bottom-right-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid transparent}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid transparent}.panel-default{border-color:transparent}.panel-default>.panel-heading{color:#fff;background-color:#afbbdc;border-color:transparent}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:transparent}.panel-default>.panel-heading .badge{color:#afbbdc;background-color:#fff}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:transparent}.panel-primary{border-color:#2c2255}.panel-primary>.panel-heading{color:#fff;background-color:#2c2255;border-color:#2c2255}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2c2255}.panel-primary>.panel-heading .badge{color:#2c2255;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2c2255}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}h1,h2,h3,h4,h5,h6{font-weight:300;color:#2c2255}h1{margin-bottom:25px}a{font-weight:bold}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}.font-size-large{font-size:58px}ul ul{margin-top:5px}.uppercase{text-transform:uppercase}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.fw-700{font-weight:700}.emphasis{color:#f7941e;font-weight:700}.small{font-size:10px}.text-highlight{background:#eee;padding:12px 24px}blockquote{font-size:14px}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:bold;color:#969696}.list-checkmark a:hover{color:#f7941e}.block-heading{background:none repeat scroll 0 0 #afbbdc;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.fa-li{top:.23em}.list-padding li{padding-bottom:25px}.header-short-underline{font-size:18px;font-weight:bold}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}.underlined{text-decoration:underline}/*!
+.cc-window{opacity:1;-webkit-transition:opacity 1s ease;transition:opacity 1s ease}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{-webkit-transition:-webkit-transform 1s ease;transition:-webkit-transform 1s ease;transition:transform 1s ease;transition:transform 1s ease,-webkit-transform 1s ease}.cc-animate.cc-revoke.cc-top{-webkit-transform:translateY(-2em);transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{-webkit-transform:translateY(2em);transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-bottom,.cc-animate.cc-revoke.cc-active.cc-top,.cc-revoke:hover{-webkit-transform:translateY(0);transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;-webkit-transition:max-height 1s;transition:max-height 1s}.cc-link,.cc-revoke:hover{text-decoration:underline}.cc-revoke,.cc-window{position:fixed;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica,Calibri,Arial,sans-serif;font-size:16px;line-height:1.5em;display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;max-width:24em;-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.cc-window.cc-banner{padding:1em 1.8em;width:100%;-ms-flex-direction:row;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.cc-revoke{padding:.5em}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;padding:.2em}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-banner .cc-btn:last-child{min-width:140px}.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:focus,.cc-close:hover{opacity:1}.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{display:block;margin-bottom:1em}.cc-window.cc-floating .cc-compliance{-ms-flex:1 0 auto;-webkit-box-flex:1;flex:1 0 auto}.cc-window.cc-banner{-ms-flex-align:center;-webkit-box-align:center;align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{-ms-flex:1;-webkit-box-flex:1;flex:1}.cc-compliance{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;-ms-flex-line-pack:justify;align-content:space-between}.cc-compliance>.cc-btn{-ms-flex:1;-webkit-box-flex:1;flex:1}.cc-btn+.cc-btn{margin-left:.5em}@media print{.cc-revoke,.cc-window{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}.cc-window.cc-banner{-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.cc-window.cc-banner .cc-compliance{-ms-flex:1;-webkit-box-flex:1;flex:1}.cc-window.cc-floating{max-width:none}.cc-window .cc-message{margin-bottom:1em}.cc-window.cc-banner{-ms-flex-align:unset;-webkit-box-align:unset;align-items:unset}}.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;-ms-flex:none;-webkit-box-flex:0;flex:none}.cc-theme-classic .cc-btn{border-radius:5px}.cc-theme-classic .cc-btn:last-child{min-width:140px}.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}.cc-theme-edgeless.cc-window{padding:0}.cc-floating.cc-theme-edgeless .cc-message{margin:2em 2em 1.5em}.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}/*!
+ * Copyright (c) 2018 Eclipse Foundation, Inc.
+ * 
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v. 2.0 which is available at
+ * http://www.eclipse.org/legal/epl-2.0.
+ * 
+ * Contributors:
+ *   Christopher Guindon <chris.guindon@eclipse-foundation.org>
+ * 
+ * SPDX-License-Identifier: EPL-2.0
+*//*!
  *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.anchor{display:block;position:relative;top:-14px;visibility:hidden;z-index:9999}.scrollup{width:40px;height:40px;opacity:.3;position:fixed;bottom:50px;right:15px;display:none;text-indent:-9999px;background:url('../images/components/back-to-top/back-to-top.png') no-repeat}.scrollup:focus{outline:none}#back-to-top{margin:0;padding:0}#back-to-top a{border-top:1px solid #808080;background-color:#666;color:#fff;display:block;padding:4px 0 3px;text-align:center;width:100%;margin:0}#back-to-top a:hover,#back-to-top a:focus{text-decoration:none;background:#dfdfe4;color:#4a4a4a}.block-box,.sideitem{background:#f6f6f6;color:#202020;margin-bottom:2em;padding-bottom:5px}.block-box h2,.sideitem h2,.block-box h3,.sideitem h3,.block-box h6,.sideitem h6{background:#afbbdc;color:#fff;margin:0 0 15px 0;padding:15px 20px;text-transform:uppercase;font-weight:700;font-size:15px}.block-box h2 a:hover,.sideitem h2 a:hover,.block-box h3 a:hover,.sideitem h3 a:hover,.block-box h6 a:hover,.sideitem h6 a:hover{color:#fff}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0 15px 15px}.block-box .list-heading,.sideitem .list-heading{font-weight:600;margin-bottom:4px;font-size:16px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.default-breadcrumbs{background:url('../images/template/breadcrumbs-large-bg.jpg') center #1b1732;background-size:100%;color:#fff;text-align:center;border-bottom:none;font-size:inherit}.default-breadcrumbs p{color:#bebebe;max-width:450px;margin:30px auto 20px auto;font-weight:400}.default-breadcrumbs p:last-child{padding-bottom:1.5em}.default-breadcrumbs .btn{min-width:150px;margin-right:10px;margin-left:10px}.default-breadcrumbs .breadcrumb{background:none;margin:15px 0 14px 0;padding-left:0;padding-bottom:0;text-align:left;text-transform:uppercase}.default-breadcrumbs .breadcrumb li{padding-bottom:3px}.default-breadcrumbs .breadcrumb .active{color:#fff}.default-breadcrumbs .breadcrumb a{font-weight:600;text-decoration:none}.default-breadcrumbs .breadcrumb a:link,.default-breadcrumbs .breadcrumb a:visited{color:#ababab}.default-breadcrumbs .breadcrumb a:hover{color:#f7941e}body #st-el-4 .st-btns{overflow:auto}.btn{text-transform:uppercase;font-weight:700}.btn-white{background:#fff;border:1px solid #0b0a0f;color:#0b0a0f}.btn-white:hover{background:transparent}.btn-huge{font-size:1.1em;padding:10px 35px}.btn-huge i{margin-right:2px}.btn-transparent:visited,.btn-transparent:link{background:transparent;border-color:#fff;color:#fff;font-size:11px;padding:7px 15px}.btn-transparent:hover,.btn-transparent:active{color:#2c2255;border-color:#2c2255;background:#ccc}.btn-transparent .caret{margin-left:6px}.media{padding-bottom:2em}.media .pull-left{margin-right:30px}.media h4.media-heading{font-size:27px}.media p{font-size:14px;padding-bottom:0}.media .emphasis{margin-bottom:2px;padding-bottom:0}.nav-tabs>li{padding-bottom:0}.nav-tabs>li a:hover{background:#f7941e;color:#fff}.tab-content{padding:10px;border:1px solid #ddd;border-top:none;background:#fff}.tab-pane{padding:.5em 1em}.tab-pane .page-header{margin-top:10px}/*!
- * Yamm!3
- * Yet another megamenu for Bootstrap 3
- * 
+ */@font-face{font-family:FontAwesome;src:url(../fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);src:url(../fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix&v=4.7.0) format("embedded-opentype"),url(../fonts/vendor/font-awesome/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(../fonts/vendor/font-awesome/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(../fonts/vendor/font-awesome/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(../fonts/vendor/font-awesome/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\F000"}.fa-music:before{content:"\F001"}.fa-search:before{content:"\F002"}.fa-envelope-o:before{content:"\F003"}.fa-heart:before{content:"\F004"}.fa-star:before{content:"\F005"}.fa-star-o:before{content:"\F006"}.fa-user:before{content:"\F007"}.fa-film:before{content:"\F008"}.fa-th-large:before{content:"\F009"}.fa-th:before{content:"\F00A"}.fa-th-list:before{content:"\F00B"}.fa-check:before{content:"\F00C"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\F00D"}.fa-search-plus:before{content:"\F00E"}.fa-search-minus:before{content:"\F010"}.fa-power-off:before{content:"\F011"}.fa-signal:before{content:"\F012"}.fa-cog:before,.fa-gear:before{content:"\F013"}.fa-trash-o:before{content:"\F014"}.fa-home:before{content:"\F015"}.fa-file-o:before{content:"\F016"}.fa-clock-o:before{content:"\F017"}.fa-road:before{content:"\F018"}.fa-download:before{content:"\F019"}.fa-arrow-circle-o-down:before{content:"\F01A"}.fa-arrow-circle-o-up:before{content:"\F01B"}.fa-inbox:before{content:"\F01C"}.fa-play-circle-o:before{content:"\F01D"}.fa-repeat:before,.fa-rotate-right:before{content:"\F01E"}.fa-refresh:before{content:"\F021"}.fa-list-alt:before{content:"\F022"}.fa-lock:before{content:"\F023"}.fa-flag:before{content:"\F024"}.fa-headphones:before{content:"\F025"}.fa-volume-off:before{content:"\F026"}.fa-volume-down:before{content:"\F027"}.fa-volume-up:before{content:"\F028"}.fa-qrcode:before{content:"\F029"}.fa-barcode:before{content:"\F02A"}.fa-tag:before{content:"\F02B"}.fa-tags:before{content:"\F02C"}.fa-book:before{content:"\F02D"}.fa-bookmark:before{content:"\F02E"}.fa-print:before{content:"\F02F"}.fa-camera:before{content:"\F030"}.fa-font:before{content:"\F031"}.fa-bold:before{content:"\F032"}.fa-italic:before{content:"\F033"}.fa-text-height:before{content:"\F034"}.fa-text-width:before{content:"\F035"}.fa-align-left:before{content:"\F036"}.fa-align-center:before{content:"\F037"}.fa-align-right:before{content:"\F038"}.fa-align-justify:before{content:"\F039"}.fa-list:before{content:"\F03A"}.fa-dedent:before,.fa-outdent:before{content:"\F03B"}.fa-indent:before{content:"\F03C"}.fa-video-camera:before{content:"\F03D"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\F03E"}.fa-pencil:before{content:"\F040"}.fa-map-marker:before{content:"\F041"}.fa-adjust:before{content:"\F042"}.fa-tint:before{content:"\F043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\F044"}.fa-share-square-o:before{content:"\F045"}.fa-check-square-o:before{content:"\F046"}.fa-arrows:before{content:"\F047"}.fa-step-backward:before{content:"\F048"}.fa-fast-backward:before{content:"\F049"}.fa-backward:before{content:"\F04A"}.fa-play:before{content:"\F04B"}.fa-pause:before{content:"\F04C"}.fa-stop:before{content:"\F04D"}.fa-forward:before{content:"\F04E"}.fa-fast-forward:before{content:"\F050"}.fa-step-forward:before{content:"\F051"}.fa-eject:before{content:"\F052"}.fa-chevron-left:before{content:"\F053"}.fa-chevron-right:before{content:"\F054"}.fa-plus-circle:before{content:"\F055"}.fa-minus-circle:before{content:"\F056"}.fa-times-circle:before{content:"\F057"}.fa-check-circle:before{content:"\F058"}.fa-question-circle:before{content:"\F059"}.fa-info-circle:before{content:"\F05A"}.fa-crosshairs:before{content:"\F05B"}.fa-times-circle-o:before{content:"\F05C"}.fa-check-circle-o:before{content:"\F05D"}.fa-ban:before{content:"\F05E"}.fa-arrow-left:before{content:"\F060"}.fa-arrow-right:before{content:"\F061"}.fa-arrow-up:before{content:"\F062"}.fa-arrow-down:before{content:"\F063"}.fa-mail-forward:before,.fa-share:before{content:"\F064"}.fa-expand:before{content:"\F065"}.fa-compress:before{content:"\F066"}.fa-plus:before{content:"\F067"}.fa-minus:before{content:"\F068"}.fa-asterisk:before{content:"\F069"}.fa-exclamation-circle:before{content:"\F06A"}.fa-gift:before{content:"\F06B"}.fa-leaf:before{content:"\F06C"}.fa-fire:before{content:"\F06D"}.fa-eye:before{content:"\F06E"}.fa-eye-slash:before{content:"\F070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\F071"}.fa-plane:before{content:"\F072"}.fa-calendar:before{content:"\F073"}.fa-random:before{content:"\F074"}.fa-comment:before{content:"\F075"}.fa-magnet:before{content:"\F076"}.fa-chevron-up:before{content:"\F077"}.fa-chevron-down:before{content:"\F078"}.fa-retweet:before{content:"\F079"}.fa-shopping-cart:before{content:"\F07A"}.fa-folder:before{content:"\F07B"}.fa-folder-open:before{content:"\F07C"}.fa-arrows-v:before{content:"\F07D"}.fa-arrows-h:before{content:"\F07E"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\F080"}.fa-twitter-square:before{content:"\F081"}.fa-facebook-square:before{content:"\F082"}.fa-camera-retro:before{content:"\F083"}.fa-key:before{content:"\F084"}.fa-cogs:before,.fa-gears:before{content:"\F085"}.fa-comments:before{content:"\F086"}.fa-thumbs-o-up:before{content:"\F087"}.fa-thumbs-o-down:before{content:"\F088"}.fa-star-half:before{content:"\F089"}.fa-heart-o:before{content:"\F08A"}.fa-sign-out:before{content:"\F08B"}.fa-linkedin-square:before{content:"\F08C"}.fa-thumb-tack:before{content:"\F08D"}.fa-external-link:before{content:"\F08E"}.fa-sign-in:before{content:"\F090"}.fa-trophy:before{content:"\F091"}.fa-github-square:before{content:"\F092"}.fa-upload:before{content:"\F093"}.fa-lemon-o:before{content:"\F094"}.fa-phone:before{content:"\F095"}.fa-square-o:before{content:"\F096"}.fa-bookmark-o:before{content:"\F097"}.fa-phone-square:before{content:"\F098"}.fa-twitter:before{content:"\F099"}.fa-facebook-f:before,.fa-facebook:before{content:"\F09A"}.fa-github:before{content:"\F09B"}.fa-unlock:before{content:"\F09C"}.fa-credit-card:before{content:"\F09D"}.fa-feed:before,.fa-rss:before{content:"\F09E"}.fa-hdd-o:before{content:"\F0A0"}.fa-bullhorn:before{content:"\F0A1"}.fa-bell:before{content:"\F0F3"}.fa-certificate:before{content:"\F0A3"}.fa-hand-o-right:before{content:"\F0A4"}.fa-hand-o-left:before{content:"\F0A5"}.fa-hand-o-up:before{content:"\F0A6"}.fa-hand-o-down:before{content:"\F0A7"}.fa-arrow-circle-left:before{content:"\F0A8"}.fa-arrow-circle-right:before{content:"\F0A9"}.fa-arrow-circle-up:before{content:"\F0AA"}.fa-arrow-circle-down:before{content:"\F0AB"}.fa-globe:before{content:"\F0AC"}.fa-wrench:before{content:"\F0AD"}.fa-tasks:before{content:"\F0AE"}.fa-filter:before{content:"\F0B0"}.fa-briefcase:before{content:"\F0B1"}.fa-arrows-alt:before{content:"\F0B2"}.fa-group:before,.fa-users:before{content:"\F0C0"}.fa-chain:before,.fa-link:before{content:"\F0C1"}.fa-cloud:before{content:"\F0C2"}.fa-flask:before{content:"\F0C3"}.fa-cut:before,.fa-scissors:before{content:"\F0C4"}.fa-copy:before,.fa-files-o:before{content:"\F0C5"}.fa-paperclip:before{content:"\F0C6"}.fa-floppy-o:before,.fa-save:before{content:"\F0C7"}.fa-square:before{content:"\F0C8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\F0C9"}.fa-list-ul:before{content:"\F0CA"}.fa-list-ol:before{content:"\F0CB"}.fa-strikethrough:before{content:"\F0CC"}.fa-underline:before{content:"\F0CD"}.fa-table:before{content:"\F0CE"}.fa-magic:before{content:"\F0D0"}.fa-truck:before{content:"\F0D1"}.fa-pinterest:before{content:"\F0D2"}.fa-pinterest-square:before{content:"\F0D3"}.fa-google-plus-square:before{content:"\F0D4"}.fa-google-plus:before{content:"\F0D5"}.fa-money:before{content:"\F0D6"}.fa-caret-down:before{content:"\F0D7"}.fa-caret-up:before{content:"\F0D8"}.fa-caret-left:before{content:"\F0D9"}.fa-caret-right:before{content:"\F0DA"}.fa-columns:before{content:"\F0DB"}.fa-sort:before,.fa-unsorted:before{content:"\F0DC"}.fa-sort-desc:before,.fa-sort-down:before{content:"\F0DD"}.fa-sort-asc:before,.fa-sort-up:before{content:"\F0DE"}.fa-envelope:before{content:"\F0E0"}.fa-linkedin:before{content:"\F0E1"}.fa-rotate-left:before,.fa-undo:before{content:"\F0E2"}.fa-gavel:before,.fa-legal:before{content:"\F0E3"}.fa-dashboard:before,.fa-tachometer:before{content:"\F0E4"}.fa-comment-o:before{content:"\F0E5"}.fa-comments-o:before{content:"\F0E6"}.fa-bolt:before,.fa-flash:before{content:"\F0E7"}.fa-sitemap:before{content:"\F0E8"}.fa-umbrella:before{content:"\F0E9"}.fa-clipboard:before,.fa-paste:before{content:"\F0EA"}.fa-lightbulb-o:before{content:"\F0EB"}.fa-exchange:before{content:"\F0EC"}.fa-cloud-download:before{content:"\F0ED"}.fa-cloud-upload:before{content:"\F0EE"}.fa-user-md:before{content:"\F0F0"}.fa-stethoscope:before{content:"\F0F1"}.fa-suitcase:before{content:"\F0F2"}.fa-bell-o:before{content:"\F0A2"}.fa-coffee:before{content:"\F0F4"}.fa-cutlery:before{content:"\F0F5"}.fa-file-text-o:before{content:"\F0F6"}.fa-building-o:before{content:"\F0F7"}.fa-hospital-o:before{content:"\F0F8"}.fa-ambulance:before{content:"\F0F9"}.fa-medkit:before{content:"\F0FA"}.fa-fighter-jet:before{content:"\F0FB"}.fa-beer:before{content:"\F0FC"}.fa-h-square:before{content:"\F0FD"}.fa-plus-square:before{content:"\F0FE"}.fa-angle-double-left:before{content:"\F100"}.fa-angle-double-right:before{content:"\F101"}.fa-angle-double-up:before{content:"\F102"}.fa-angle-double-down:before{content:"\F103"}.fa-angle-left:before{content:"\F104"}.fa-angle-right:before{content:"\F105"}.fa-angle-up:before{content:"\F106"}.fa-angle-down:before{content:"\F107"}.fa-desktop:before{content:"\F108"}.fa-laptop:before{content:"\F109"}.fa-tablet:before{content:"\F10A"}.fa-mobile-phone:before,.fa-mobile:before{content:"\F10B"}.fa-circle-o:before{content:"\F10C"}.fa-quote-left:before{content:"\F10D"}.fa-quote-right:before{content:"\F10E"}.fa-spinner:before{content:"\F110"}.fa-circle:before{content:"\F111"}.fa-mail-reply:before,.fa-reply:before{content:"\F112"}.fa-github-alt:before{content:"\F113"}.fa-folder-o:before{content:"\F114"}.fa-folder-open-o:before{content:"\F115"}.fa-smile-o:before{content:"\F118"}.fa-frown-o:before{content:"\F119"}.fa-meh-o:before{content:"\F11A"}.fa-gamepad:before{content:"\F11B"}.fa-keyboard-o:before{content:"\F11C"}.fa-flag-o:before{content:"\F11D"}.fa-flag-checkered:before{content:"\F11E"}.fa-terminal:before{content:"\F120"}.fa-code:before{content:"\F121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\F122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\F123"}.fa-location-arrow:before{content:"\F124"}.fa-crop:before{content:"\F125"}.fa-code-fork:before{content:"\F126"}.fa-chain-broken:before,.fa-unlink:before{content:"\F127"}.fa-question:before{content:"\F128"}.fa-info:before{content:"\F129"}.fa-exclamation:before{content:"\F12A"}.fa-superscript:before{content:"\F12B"}.fa-subscript:before{content:"\F12C"}.fa-eraser:before{content:"\F12D"}.fa-puzzle-piece:before{content:"\F12E"}.fa-microphone:before{content:"\F130"}.fa-microphone-slash:before{content:"\F131"}.fa-shield:before{content:"\F132"}.fa-calendar-o:before{content:"\F133"}.fa-fire-extinguisher:before{content:"\F134"}.fa-rocket:before{content:"\F135"}.fa-maxcdn:before{content:"\F136"}.fa-chevron-circle-left:before{content:"\F137"}.fa-chevron-circle-right:before{content:"\F138"}.fa-chevron-circle-up:before{content:"\F139"}.fa-chevron-circle-down:before{content:"\F13A"}.fa-html5:before{content:"\F13B"}.fa-css3:before{content:"\F13C"}.fa-anchor:before{content:"\F13D"}.fa-unlock-alt:before{content:"\F13E"}.fa-bullseye:before{content:"\F140"}.fa-ellipsis-h:before{content:"\F141"}.fa-ellipsis-v:before{content:"\F142"}.fa-rss-square:before{content:"\F143"}.fa-play-circle:before{content:"\F144"}.fa-ticket:before{content:"\F145"}.fa-minus-square:before{content:"\F146"}.fa-minus-square-o:before{content:"\F147"}.fa-level-up:before{content:"\F148"}.fa-level-down:before{content:"\F149"}.fa-check-square:before{content:"\F14A"}.fa-pencil-square:before{content:"\F14B"}.fa-external-link-square:before{content:"\F14C"}.fa-share-square:before{content:"\F14D"}.fa-compass:before{content:"\F14E"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\F150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\F151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\F152"}.fa-eur:before,.fa-euro:before{content:"\F153"}.fa-gbp:before{content:"\F154"}.fa-dollar:before,.fa-usd:before{content:"\F155"}.fa-inr:before,.fa-rupee:before{content:"\F156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\F157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\F158"}.fa-krw:before,.fa-won:before{content:"\F159"}.fa-bitcoin:before,.fa-btc:before{content:"\F15A"}.fa-file:before{content:"\F15B"}.fa-file-text:before{content:"\F15C"}.fa-sort-alpha-asc:before{content:"\F15D"}.fa-sort-alpha-desc:before{content:"\F15E"}.fa-sort-amount-asc:before{content:"\F160"}.fa-sort-amount-desc:before{content:"\F161"}.fa-sort-numeric-asc:before{content:"\F162"}.fa-sort-numeric-desc:before{content:"\F163"}.fa-thumbs-up:before{content:"\F164"}.fa-thumbs-down:before{content:"\F165"}.fa-youtube-square:before{content:"\F166"}.fa-youtube:before{content:"\F167"}.fa-xing:before{content:"\F168"}.fa-xing-square:before{content:"\F169"}.fa-youtube-play:before{content:"\F16A"}.fa-dropbox:before{content:"\F16B"}.fa-stack-overflow:before{content:"\F16C"}.fa-instagram:before{content:"\F16D"}.fa-flickr:before{content:"\F16E"}.fa-adn:before{content:"\F170"}.fa-bitbucket:before{content:"\F171"}.fa-bitbucket-square:before{content:"\F172"}.fa-tumblr:before{content:"\F173"}.fa-tumblr-square:before{content:"\F174"}.fa-long-arrow-down:before{content:"\F175"}.fa-long-arrow-up:before{content:"\F176"}.fa-long-arrow-left:before{content:"\F177"}.fa-long-arrow-right:before{content:"\F178"}.fa-apple:before{content:"\F179"}.fa-windows:before{content:"\F17A"}.fa-android:before{content:"\F17B"}.fa-linux:before{content:"\F17C"}.fa-dribbble:before{content:"\F17D"}.fa-skype:before{content:"\F17E"}.fa-foursquare:before{content:"\F180"}.fa-trello:before{content:"\F181"}.fa-female:before{content:"\F182"}.fa-male:before{content:"\F183"}.fa-gittip:before,.fa-gratipay:before{content:"\F184"}.fa-sun-o:before{content:"\F185"}.fa-moon-o:before{content:"\F186"}.fa-archive:before{content:"\F187"}.fa-bug:before{content:"\F188"}.fa-vk:before{content:"\F189"}.fa-weibo:before{content:"\F18A"}.fa-renren:before{content:"\F18B"}.fa-pagelines:before{content:"\F18C"}.fa-stack-exchange:before{content:"\F18D"}.fa-arrow-circle-o-right:before{content:"\F18E"}.fa-arrow-circle-o-left:before{content:"\F190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\F191"}.fa-dot-circle-o:before{content:"\F192"}.fa-wheelchair:before{content:"\F193"}.fa-vimeo-square:before{content:"\F194"}.fa-try:before,.fa-turkish-lira:before{content:"\F195"}.fa-plus-square-o:before{content:"\F196"}.fa-space-shuttle:before{content:"\F197"}.fa-slack:before{content:"\F198"}.fa-envelope-square:before{content:"\F199"}.fa-wordpress:before{content:"\F19A"}.fa-openid:before{content:"\F19B"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\F19C"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\F19D"}.fa-yahoo:before{content:"\F19E"}.fa-google:before{content:"\F1A0"}.fa-reddit:before{content:"\F1A1"}.fa-reddit-square:before{content:"\F1A2"}.fa-stumbleupon-circle:before{content:"\F1A3"}.fa-stumbleupon:before{content:"\F1A4"}.fa-delicious:before{content:"\F1A5"}.fa-digg:before{content:"\F1A6"}.fa-pied-piper-pp:before{content:"\F1A7"}.fa-pied-piper-alt:before{content:"\F1A8"}.fa-drupal:before{content:"\F1A9"}.fa-joomla:before{content:"\F1AA"}.fa-language:before{content:"\F1AB"}.fa-fax:before{content:"\F1AC"}.fa-building:before{content:"\F1AD"}.fa-child:before{content:"\F1AE"}.fa-paw:before{content:"\F1B0"}.fa-spoon:before{content:"\F1B1"}.fa-cube:before{content:"\F1B2"}.fa-cubes:before{content:"\F1B3"}.fa-behance:before{content:"\F1B4"}.fa-behance-square:before{content:"\F1B5"}.fa-steam:before{content:"\F1B6"}.fa-steam-square:before{content:"\F1B7"}.fa-recycle:before{content:"\F1B8"}.fa-automobile:before,.fa-car:before{content:"\F1B9"}.fa-cab:before,.fa-taxi:before{content:"\F1BA"}.fa-tree:before{content:"\F1BB"}.fa-spotify:before{content:"\F1BC"}.fa-deviantart:before{content:"\F1BD"}.fa-soundcloud:before{content:"\F1BE"}.fa-database:before{content:"\F1C0"}.fa-file-pdf-o:before{content:"\F1C1"}.fa-file-word-o:before{content:"\F1C2"}.fa-file-excel-o:before{content:"\F1C3"}.fa-file-powerpoint-o:before{content:"\F1C4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\F1C5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\F1C6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\F1C7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\F1C8"}.fa-file-code-o:before{content:"\F1C9"}.fa-vine:before{content:"\F1CA"}.fa-codepen:before{content:"\F1CB"}.fa-jsfiddle:before{content:"\F1CC"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\F1CD"}.fa-circle-o-notch:before{content:"\F1CE"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\F1D0"}.fa-empire:before,.fa-ge:before{content:"\F1D1"}.fa-git-square:before{content:"\F1D2"}.fa-git:before{content:"\F1D3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\F1D4"}.fa-tencent-weibo:before{content:"\F1D5"}.fa-qq:before{content:"\F1D6"}.fa-wechat:before,.fa-weixin:before{content:"\F1D7"}.fa-paper-plane:before,.fa-send:before{content:"\F1D8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\F1D9"}.fa-history:before{content:"\F1DA"}.fa-circle-thin:before{content:"\F1DB"}.fa-header:before{content:"\F1DC"}.fa-paragraph:before{content:"\F1DD"}.fa-sliders:before{content:"\F1DE"}.fa-share-alt:before{content:"\F1E0"}.fa-share-alt-square:before{content:"\F1E1"}.fa-bomb:before{content:"\F1E2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\F1E3"}.fa-tty:before{content:"\F1E4"}.fa-binoculars:before{content:"\F1E5"}.fa-plug:before{content:"\F1E6"}.fa-slideshare:before{content:"\F1E7"}.fa-twitch:before{content:"\F1E8"}.fa-yelp:before{content:"\F1E9"}.fa-newspaper-o:before{content:"\F1EA"}.fa-wifi:before{content:"\F1EB"}.fa-calculator:before{content:"\F1EC"}.fa-paypal:before{content:"\F1ED"}.fa-google-wallet:before{content:"\F1EE"}.fa-cc-visa:before{content:"\F1F0"}.fa-cc-mastercard:before{content:"\F1F1"}.fa-cc-discover:before{content:"\F1F2"}.fa-cc-amex:before{content:"\F1F3"}.fa-cc-paypal:before{content:"\F1F4"}.fa-cc-stripe:before{content:"\F1F5"}.fa-bell-slash:before{content:"\F1F6"}.fa-bell-slash-o:before{content:"\F1F7"}.fa-trash:before{content:"\F1F8"}.fa-copyright:before{content:"\F1F9"}.fa-at:before{content:"\F1FA"}.fa-eyedropper:before{content:"\F1FB"}.fa-paint-brush:before{content:"\F1FC"}.fa-birthday-cake:before{content:"\F1FD"}.fa-area-chart:before{content:"\F1FE"}.fa-pie-chart:before{content:"\F200"}.fa-line-chart:before{content:"\F201"}.fa-lastfm:before{content:"\F202"}.fa-lastfm-square:before{content:"\F203"}.fa-toggle-off:before{content:"\F204"}.fa-toggle-on:before{content:"\F205"}.fa-bicycle:before{content:"\F206"}.fa-bus:before{content:"\F207"}.fa-ioxhost:before{content:"\F208"}.fa-angellist:before{content:"\F209"}.fa-cc:before{content:"\F20A"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\F20B"}.fa-meanpath:before{content:"\F20C"}.fa-buysellads:before{content:"\F20D"}.fa-connectdevelop:before{content:"\F20E"}.fa-dashcube:before{content:"\F210"}.fa-forumbee:before{content:"\F211"}.fa-leanpub:before{content:"\F212"}.fa-sellsy:before{content:"\F213"}.fa-shirtsinbulk:before{content:"\F214"}.fa-simplybuilt:before{content:"\F215"}.fa-skyatlas:before{content:"\F216"}.fa-cart-plus:before{content:"\F217"}.fa-cart-arrow-down:before{content:"\F218"}.fa-diamond:before{content:"\F219"}.fa-ship:before{content:"\F21A"}.fa-user-secret:before{content:"\F21B"}.fa-motorcycle:before{content:"\F21C"}.fa-street-view:before{content:"\F21D"}.fa-heartbeat:before{content:"\F21E"}.fa-venus:before{content:"\F221"}.fa-mars:before{content:"\F222"}.fa-mercury:before{content:"\F223"}.fa-intersex:before,.fa-transgender:before{content:"\F224"}.fa-transgender-alt:before{content:"\F225"}.fa-venus-double:before{content:"\F226"}.fa-mars-double:before{content:"\F227"}.fa-venus-mars:before{content:"\F228"}.fa-mars-stroke:before{content:"\F229"}.fa-mars-stroke-v:before{content:"\F22A"}.fa-mars-stroke-h:before{content:"\F22B"}.fa-neuter:before{content:"\F22C"}.fa-genderless:before{content:"\F22D"}.fa-facebook-official:before{content:"\F230"}.fa-pinterest-p:before{content:"\F231"}.fa-whatsapp:before{content:"\F232"}.fa-server:before{content:"\F233"}.fa-user-plus:before{content:"\F234"}.fa-user-times:before{content:"\F235"}.fa-bed:before,.fa-hotel:before{content:"\F236"}.fa-viacoin:before{content:"\F237"}.fa-train:before{content:"\F238"}.fa-subway:before{content:"\F239"}.fa-medium:before{content:"\F23A"}.fa-y-combinator:before,.fa-yc:before{content:"\F23B"}.fa-optin-monster:before{content:"\F23C"}.fa-opencart:before{content:"\F23D"}.fa-expeditedssl:before{content:"\F23E"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\F240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\F241"}.fa-battery-2:before,.fa-battery-half:before{content:"\F242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\F243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\F244"}.fa-mouse-pointer:before{content:"\F245"}.fa-i-cursor:before{content:"\F246"}.fa-object-group:before{content:"\F247"}.fa-object-ungroup:before{content:"\F248"}.fa-sticky-note:before{content:"\F249"}.fa-sticky-note-o:before{content:"\F24A"}.fa-cc-jcb:before{content:"\F24B"}.fa-cc-diners-club:before{content:"\F24C"}.fa-clone:before{content:"\F24D"}.fa-balance-scale:before{content:"\F24E"}.fa-hourglass-o:before{content:"\F250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\F251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\F252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\F253"}.fa-hourglass:before{content:"\F254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\F255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\F256"}.fa-hand-scissors-o:before{content:"\F257"}.fa-hand-lizard-o:before{content:"\F258"}.fa-hand-spock-o:before{content:"\F259"}.fa-hand-pointer-o:before{content:"\F25A"}.fa-hand-peace-o:before{content:"\F25B"}.fa-trademark:before{content:"\F25C"}.fa-registered:before{content:"\F25D"}.fa-creative-commons:before{content:"\F25E"}.fa-gg:before{content:"\F260"}.fa-gg-circle:before{content:"\F261"}.fa-tripadvisor:before{content:"\F262"}.fa-odnoklassniki:before{content:"\F263"}.fa-odnoklassniki-square:before{content:"\F264"}.fa-get-pocket:before{content:"\F265"}.fa-wikipedia-w:before{content:"\F266"}.fa-safari:before{content:"\F267"}.fa-chrome:before{content:"\F268"}.fa-firefox:before{content:"\F269"}.fa-opera:before{content:"\F26A"}.fa-internet-explorer:before{content:"\F26B"}.fa-television:before,.fa-tv:before{content:"\F26C"}.fa-contao:before{content:"\F26D"}.fa-500px:before{content:"\F26E"}.fa-amazon:before{content:"\F270"}.fa-calendar-plus-o:before{content:"\F271"}.fa-calendar-minus-o:before{content:"\F272"}.fa-calendar-times-o:before{content:"\F273"}.fa-calendar-check-o:before{content:"\F274"}.fa-industry:before{content:"\F275"}.fa-map-pin:before{content:"\F276"}.fa-map-signs:before{content:"\F277"}.fa-map-o:before{content:"\F278"}.fa-map:before{content:"\F279"}.fa-commenting:before{content:"\F27A"}.fa-commenting-o:before{content:"\F27B"}.fa-houzz:before{content:"\F27C"}.fa-vimeo:before{content:"\F27D"}.fa-black-tie:before{content:"\F27E"}.fa-fonticons:before{content:"\F280"}.fa-reddit-alien:before{content:"\F281"}.fa-edge:before{content:"\F282"}.fa-credit-card-alt:before{content:"\F283"}.fa-codiepie:before{content:"\F284"}.fa-modx:before{content:"\F285"}.fa-fort-awesome:before{content:"\F286"}.fa-usb:before{content:"\F287"}.fa-product-hunt:before{content:"\F288"}.fa-mixcloud:before{content:"\F289"}.fa-scribd:before{content:"\F28A"}.fa-pause-circle:before{content:"\F28B"}.fa-pause-circle-o:before{content:"\F28C"}.fa-stop-circle:before{content:"\F28D"}.fa-stop-circle-o:before{content:"\F28E"}.fa-shopping-bag:before{content:"\F290"}.fa-shopping-basket:before{content:"\F291"}.fa-hashtag:before{content:"\F292"}.fa-bluetooth:before{content:"\F293"}.fa-bluetooth-b:before{content:"\F294"}.fa-percent:before{content:"\F295"}.fa-gitlab:before{content:"\F296"}.fa-wpbeginner:before{content:"\F297"}.fa-wpforms:before{content:"\F298"}.fa-envira:before{content:"\F299"}.fa-universal-access:before{content:"\F29A"}.fa-wheelchair-alt:before{content:"\F29B"}.fa-question-circle-o:before{content:"\F29C"}.fa-blind:before{content:"\F29D"}.fa-audio-description:before{content:"\F29E"}.fa-volume-control-phone:before{content:"\F2A0"}.fa-braille:before{content:"\F2A1"}.fa-assistive-listening-systems:before{content:"\F2A2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\F2A3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\F2A4"}.fa-glide:before{content:"\F2A5"}.fa-glide-g:before{content:"\F2A6"}.fa-sign-language:before,.fa-signing:before{content:"\F2A7"}.fa-low-vision:before{content:"\F2A8"}.fa-viadeo:before{content:"\F2A9"}.fa-viadeo-square:before{content:"\F2AA"}.fa-snapchat:before{content:"\F2AB"}.fa-snapchat-ghost:before{content:"\F2AC"}.fa-snapchat-square:before{content:"\F2AD"}.fa-pied-piper:before{content:"\F2AE"}.fa-first-order:before{content:"\F2B0"}.fa-yoast:before{content:"\F2B1"}.fa-themeisle:before{content:"\F2B2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\F2B3"}.fa-fa:before,.fa-font-awesome:before{content:"\F2B4"}.fa-handshake-o:before{content:"\F2B5"}.fa-envelope-open:before{content:"\F2B6"}.fa-envelope-open-o:before{content:"\F2B7"}.fa-linode:before{content:"\F2B8"}.fa-address-book:before{content:"\F2B9"}.fa-address-book-o:before{content:"\F2BA"}.fa-address-card:before,.fa-vcard:before{content:"\F2BB"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\F2BC"}.fa-user-circle:before{content:"\F2BD"}.fa-user-circle-o:before{content:"\F2BE"}.fa-user-o:before{content:"\F2C0"}.fa-id-badge:before{content:"\F2C1"}.fa-drivers-license:before,.fa-id-card:before{content:"\F2C2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\F2C3"}.fa-quora:before{content:"\F2C4"}.fa-free-code-camp:before{content:"\F2C5"}.fa-telegram:before{content:"\F2C6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\F2C7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\F2C8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\F2C9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\F2CA"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\F2CB"}.fa-shower:before{content:"\F2CC"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\F2CD"}.fa-podcast:before{content:"\F2CE"}.fa-window-maximize:before{content:"\F2D0"}.fa-window-minimize:before{content:"\F2D1"}.fa-window-restore:before{content:"\F2D2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\F2D3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\F2D4"}.fa-bandcamp:before{content:"\F2D5"}.fa-grav:before{content:"\F2D6"}.fa-etsy:before{content:"\F2D7"}.fa-imdb:before{content:"\F2D8"}.fa-ravelry:before{content:"\F2D9"}.fa-eercast:before{content:"\F2DA"}.fa-microchip:before{content:"\F2DB"}.fa-snowflake-o:before{content:"\F2DC"}.fa-superpowers:before{content:"\F2DD"}.fa-wpexplorer:before{content:"\F2DE"}.fa-meetup:before{content:"\F2E0"}/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{background:transparent!important;color:#000!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:Glyphicons Halflings;src:url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1);src:url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1?#iefix) format("embedded-opentype"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.woff2?448c34a56d699c29117adc64c43affeb) format("woff2"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.woff?fa2772327f55d8198301fdb8bcfc8158) format("woff"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.ttf?e18bbf611f2a2e43afc071aa2f4e1512) format("truetype"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.svg?89889688147bd7575d6327160d64e760#glyphicons_halflingsregular) format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:Glyphicons Halflings;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"*"}.glyphicon-plus:before{content:"+"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20AC"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270F"}.glyphicon-glass:before{content:"\E001"}.glyphicon-music:before{content:"\E002"}.glyphicon-search:before{content:"\E003"}.glyphicon-heart:before{content:"\E005"}.glyphicon-star:before{content:"\E006"}.glyphicon-star-empty:before{content:"\E007"}.glyphicon-user:before{content:"\E008"}.glyphicon-film:before{content:"\E009"}.glyphicon-th-large:before{content:"\E010"}.glyphicon-th:before{content:"\E011"}.glyphicon-th-list:before{content:"\E012"}.glyphicon-ok:before{content:"\E013"}.glyphicon-remove:before{content:"\E014"}.glyphicon-zoom-in:before{content:"\E015"}.glyphicon-zoom-out:before{content:"\E016"}.glyphicon-off:before{content:"\E017"}.glyphicon-signal:before{content:"\E018"}.glyphicon-cog:before{content:"\E019"}.glyphicon-trash:before{content:"\E020"}.glyphicon-home:before{content:"\E021"}.glyphicon-file:before{content:"\E022"}.glyphicon-time:before{content:"\E023"}.glyphicon-road:before{content:"\E024"}.glyphicon-download-alt:before{content:"\E025"}.glyphicon-download:before{content:"\E026"}.glyphicon-upload:before{content:"\E027"}.glyphicon-inbox:before{content:"\E028"}.glyphicon-play-circle:before{content:"\E029"}.glyphicon-repeat:before{content:"\E030"}.glyphicon-refresh:before{content:"\E031"}.glyphicon-list-alt:before{content:"\E032"}.glyphicon-lock:before{content:"\E033"}.glyphicon-flag:before{content:"\E034"}.glyphicon-headphones:before{content:"\E035"}.glyphicon-volume-off:before{content:"\E036"}.glyphicon-volume-down:before{content:"\E037"}.glyphicon-volume-up:before{content:"\E038"}.glyphicon-qrcode:before{content:"\E039"}.glyphicon-barcode:before{content:"\E040"}.glyphicon-tag:before{content:"\E041"}.glyphicon-tags:before{content:"\E042"}.glyphicon-book:before{content:"\E043"}.glyphicon-bookmark:before{content:"\E044"}.glyphicon-print:before{content:"\E045"}.glyphicon-camera:before{content:"\E046"}.glyphicon-font:before{content:"\E047"}.glyphicon-bold:before{content:"\E048"}.glyphicon-italic:before{content:"\E049"}.glyphicon-text-height:before{content:"\E050"}.glyphicon-text-width:before{content:"\E051"}.glyphicon-align-left:before{content:"\E052"}.glyphicon-align-center:before{content:"\E053"}.glyphicon-align-right:before{content:"\E054"}.glyphicon-align-justify:before{content:"\E055"}.glyphicon-list:before{content:"\E056"}.glyphicon-indent-left:before{content:"\E057"}.glyphicon-indent-right:before{content:"\E058"}.glyphicon-facetime-video:before{content:"\E059"}.glyphicon-picture:before{content:"\E060"}.glyphicon-map-marker:before{content:"\E062"}.glyphicon-adjust:before{content:"\E063"}.glyphicon-tint:before{content:"\E064"}.glyphicon-edit:before{content:"\E065"}.glyphicon-share:before{content:"\E066"}.glyphicon-check:before{content:"\E067"}.glyphicon-move:before{content:"\E068"}.glyphicon-step-backward:before{content:"\E069"}.glyphicon-fast-backward:before{content:"\E070"}.glyphicon-backward:before{content:"\E071"}.glyphicon-play:before{content:"\E072"}.glyphicon-pause:before{content:"\E073"}.glyphicon-stop:before{content:"\E074"}.glyphicon-forward:before{content:"\E075"}.glyphicon-fast-forward:before{content:"\E076"}.glyphicon-step-forward:before{content:"\E077"}.glyphicon-eject:before{content:"\E078"}.glyphicon-chevron-left:before{content:"\E079"}.glyphicon-chevron-right:before{content:"\E080"}.glyphicon-plus-sign:before{content:"\E081"}.glyphicon-minus-sign:before{content:"\E082"}.glyphicon-remove-sign:before{content:"\E083"}.glyphicon-ok-sign:before{content:"\E084"}.glyphicon-question-sign:before{content:"\E085"}.glyphicon-info-sign:before{content:"\E086"}.glyphicon-screenshot:before{content:"\E087"}.glyphicon-remove-circle:before{content:"\E088"}.glyphicon-ok-circle:before{content:"\E089"}.glyphicon-ban-circle:before{content:"\E090"}.glyphicon-arrow-left:before{content:"\E091"}.glyphicon-arrow-right:before{content:"\E092"}.glyphicon-arrow-up:before{content:"\E093"}.glyphicon-arrow-down:before{content:"\E094"}.glyphicon-share-alt:before{content:"\E095"}.glyphicon-resize-full:before{content:"\E096"}.glyphicon-resize-small:before{content:"\E097"}.glyphicon-exclamation-sign:before{content:"\E101"}.glyphicon-gift:before{content:"\E102"}.glyphicon-leaf:before{content:"\E103"}.glyphicon-fire:before{content:"\E104"}.glyphicon-eye-open:before{content:"\E105"}.glyphicon-eye-close:before{content:"\E106"}.glyphicon-warning-sign:before{content:"\E107"}.glyphicon-plane:before{content:"\E108"}.glyphicon-calendar:before{content:"\E109"}.glyphicon-random:before{content:"\E110"}.glyphicon-comment:before{content:"\E111"}.glyphicon-magnet:before{content:"\E112"}.glyphicon-chevron-up:before{content:"\E113"}.glyphicon-chevron-down:before{content:"\E114"}.glyphicon-retweet:before{content:"\E115"}.glyphicon-shopping-cart:before{content:"\E116"}.glyphicon-folder-close:before{content:"\E117"}.glyphicon-folder-open:before{content:"\E118"}.glyphicon-resize-vertical:before{content:"\E119"}.glyphicon-resize-horizontal:before{content:"\E120"}.glyphicon-hdd:before{content:"\E121"}.glyphicon-bullhorn:before{content:"\E122"}.glyphicon-bell:before{content:"\E123"}.glyphicon-certificate:before{content:"\E124"}.glyphicon-thumbs-up:before{content:"\E125"}.glyphicon-thumbs-down:before{content:"\E126"}.glyphicon-hand-right:before{content:"\E127"}.glyphicon-hand-left:before{content:"\E128"}.glyphicon-hand-up:before{content:"\E129"}.glyphicon-hand-down:before{content:"\E130"}.glyphicon-circle-arrow-right:before{content:"\E131"}.glyphicon-circle-arrow-left:before{content:"\E132"}.glyphicon-circle-arrow-up:before{content:"\E133"}.glyphicon-circle-arrow-down:before{content:"\E134"}.glyphicon-globe:before{content:"\E135"}.glyphicon-wrench:before{content:"\E136"}.glyphicon-tasks:before{content:"\E137"}.glyphicon-filter:before{content:"\E138"}.glyphicon-briefcase:before{content:"\E139"}.glyphicon-fullscreen:before{content:"\E140"}.glyphicon-dashboard:before{content:"\E141"}.glyphicon-paperclip:before{content:"\E142"}.glyphicon-heart-empty:before{content:"\E143"}.glyphicon-link:before{content:"\E144"}.glyphicon-phone:before{content:"\E145"}.glyphicon-pushpin:before{content:"\E146"}.glyphicon-usd:before{content:"\E148"}.glyphicon-gbp:before{content:"\E149"}.glyphicon-sort:before{content:"\E150"}.glyphicon-sort-by-alphabet:before{content:"\E151"}.glyphicon-sort-by-alphabet-alt:before{content:"\E152"}.glyphicon-sort-by-order:before{content:"\E153"}.glyphicon-sort-by-order-alt:before{content:"\E154"}.glyphicon-sort-by-attributes:before{content:"\E155"}.glyphicon-sort-by-attributes-alt:before{content:"\E156"}.glyphicon-unchecked:before{content:"\E157"}.glyphicon-expand:before{content:"\E158"}.glyphicon-collapse-down:before{content:"\E159"}.glyphicon-collapse-up:before{content:"\E160"}.glyphicon-log-in:before{content:"\E161"}.glyphicon-flash:before{content:"\E162"}.glyphicon-log-out:before{content:"\E163"}.glyphicon-new-window:before{content:"\E164"}.glyphicon-record:before{content:"\E165"}.glyphicon-save:before{content:"\E166"}.glyphicon-open:before{content:"\E167"}.glyphicon-saved:before{content:"\E168"}.glyphicon-import:before{content:"\E169"}.glyphicon-export:before{content:"\E170"}.glyphicon-send:before{content:"\E171"}.glyphicon-floppy-disk:before{content:"\E172"}.glyphicon-floppy-saved:before{content:"\E173"}.glyphicon-floppy-remove:before{content:"\E174"}.glyphicon-floppy-save:before{content:"\E175"}.glyphicon-floppy-open:before{content:"\E176"}.glyphicon-credit-card:before{content:"\E177"}.glyphicon-transfer:before{content:"\E178"}.glyphicon-cutlery:before{content:"\E179"}.glyphicon-header:before{content:"\E180"}.glyphicon-compressed:before{content:"\E181"}.glyphicon-earphone:before{content:"\E182"}.glyphicon-phone-alt:before{content:"\E183"}.glyphicon-tower:before{content:"\E184"}.glyphicon-stats:before{content:"\E185"}.glyphicon-sd-video:before{content:"\E186"}.glyphicon-hd-video:before{content:"\E187"}.glyphicon-subtitles:before{content:"\E188"}.glyphicon-sound-stereo:before{content:"\E189"}.glyphicon-sound-dolby:before{content:"\E190"}.glyphicon-sound-5-1:before{content:"\E191"}.glyphicon-sound-6-1:before{content:"\E192"}.glyphicon-sound-7-1:before{content:"\E193"}.glyphicon-copyright-mark:before{content:"\E194"}.glyphicon-registration-mark:before{content:"\E195"}.glyphicon-cloud-download:before{content:"\E197"}.glyphicon-cloud-upload:before{content:"\E198"}.glyphicon-tree-conifer:before{content:"\E199"}.glyphicon-tree-deciduous:before{content:"\E200"}.glyphicon-cd:before{content:"\E201"}.glyphicon-save-file:before{content:"\E202"}.glyphicon-open-file:before{content:"\E203"}.glyphicon-level-up:before{content:"\E204"}.glyphicon-copy:before{content:"\E205"}.glyphicon-paste:before{content:"\E206"}.glyphicon-alert:before{content:"\E209"}.glyphicon-equalizer:before{content:"\E210"}.glyphicon-king:before{content:"\E211"}.glyphicon-queen:before{content:"\E212"}.glyphicon-pawn:before{content:"\E213"}.glyphicon-bishop:before{content:"\E214"}.glyphicon-knight:before{content:"\E215"}.glyphicon-baby-formula:before{content:"\E216"}.glyphicon-tent:before{content:"\26FA"}.glyphicon-blackboard:before{content:"\E218"}.glyphicon-bed:before{content:"\E219"}.glyphicon-apple:before{content:"\F8FF"}.glyphicon-erase:before{content:"\E221"}.glyphicon-hourglass:before{content:"\231B"}.glyphicon-lamp:before{content:"\E223"}.glyphicon-duplicate:before{content:"\E224"}.glyphicon-piggy-bank:before{content:"\E225"}.glyphicon-scissors:before{content:"\E226"}.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\E227"}.glyphicon-jpy:before,.glyphicon-yen:before{content:"\A5"}.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20BD"}.glyphicon-scale:before{content:"\E230"}.glyphicon-ice-lolly:before{content:"\E231"}.glyphicon-ice-lolly-tasted:before{content:"\E232"}.glyphicon-education:before{content:"\E233"}.glyphicon-option-horizontal:before{content:"\E234"}.glyphicon-option-vertical:before{content:"\E235"}.glyphicon-menu-hamburger:before{content:"\E236"}.glyphicon-modal-window:before{content:"\E237"}.glyphicon-oil:before{content:"\E238"}.glyphicon-grain:before{content:"\E239"}.glyphicon-sunglasses:before{content:"\E240"}.glyphicon-text-size:before{content:"\E241"}.glyphicon-text-color:before{content:"\E242"}.glyphicon-text-background:before{content:"\E243"}.glyphicon-object-align-top:before{content:"\E244"}.glyphicon-object-align-bottom:before{content:"\E245"}.glyphicon-object-align-horizontal:before{content:"\E246"}.glyphicon-object-align-left:before{content:"\E247"}.glyphicon-object-align-vertical:before{content:"\E248"}.glyphicon-object-align-right:before{content:"\E249"}.glyphicon-triangle-right:before{content:"\E250"}.glyphicon-triangle-left:before{content:"\E251"}.glyphicon-triangle-bottom:before{content:"\E252"}.glyphicon-triangle-top:before{content:"\E253"}.glyphicon-console:before{content:"\E254"}.glyphicon-superscript:before{content:"\E255"}.glyphicon-subscript:before{content:"\E256"}.glyphicon-menu-left:before{content:"\E257"}.glyphicon-menu-right:before{content:"\E258"}.glyphicon-menu-down:before{content:"\E259"}.glyphicon-menu-up:before{content:"\E260"}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#4c4d4e;background-color:#f9f9f9}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#3f7b96;text-decoration:none}a:focus,a:hover{color:#305e72;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail>img,.thumbnail a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#f9f9f9;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #ccc}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:200;line-height:1.1;color:#4c4d4e}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#f7941e}a.text-primary:focus,a.text-primary:hover{color:#da7a08}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#f7941e}a.bg-primary:focus,a.bg-primary:hover{background-color:#da7a08}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:"\2014   \A0"}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:""}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:"\A0   \2014"}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Courier New,monospace}code{color:#c7254e;background-color:#f9f2f4;border-radius:4px}code,kbd{padding:2px 4px;font-size:90%}kbd{color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-13,.col-lg-14,.col-lg-15,.col-lg-16,.col-lg-17,.col-lg-18,.col-lg-19,.col-lg-20,.col-lg-21,.col-lg-22,.col-lg-23,.col-lg-24,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-13,.col-md-14,.col-md-15,.col-md-16,.col-md-17,.col-md-18,.col-md-19,.col-md-20,.col-md-21,.col-md-22,.col-md-23,.col-md-24,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-13,.col-sm-14,.col-sm-15,.col-sm-16,.col-sm-17,.col-sm-18,.col-sm-19,.col-sm-20,.col-sm-21,.col-sm-22,.col-sm-23,.col-sm-24,.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-13,.col-xs-14,.col-xs-15,.col-xs-16,.col-xs-17,.col-xs-18,.col-xs-19,.col-xs-20,.col-xs-21,.col-xs-22,.col-xs-23,.col-xs-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-13,.col-xs-14,.col-xs-15,.col-xs-16,.col-xs-17,.col-xs-18,.col-xs-19,.col-xs-20,.col-xs-21,.col-xs-22,.col-xs-23,.col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-13,.col-sm-14,.col-sm-15,.col-sm-16,.col-sm-17,.col-sm-18,.col-sm-19,.col-sm-20,.col-sm-21,.col-sm-22,.col-sm-23,.col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-13,.col-md-14,.col-md-15,.col-md-16,.col-md-17,.col-md-18,.col-md-19,.col-md-20,.col-md-21,.col-md-22,.col-md-23,.col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-13,.col-lg-14,.col-lg-15,.col-lg-16,.col-lg-17,.col-lg-18,.col-lg-19,.col-lg-20,.col-lg-21,.col-lg-22,.col-lg-23,.col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777}caption,th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#f9f9f9}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{margin:0;min-width:0}fieldset,legend{padding:0;border:0}legend{display:block;width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{padding-top:7px}.form-control,output{display:block;font-size:14px;line-height:1.42857143;color:#2f2f2f}.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox-inline input[type=checkbox],.checkbox input[type=checkbox],.radio-inline input[type=radio],.radio input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .checkbox label,fieldset[disabled] .radio-inline,fieldset[disabled] .radio label,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success.checkbox-inline label,.has-success.checkbox label,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.radio-inline label,.has-success.radio label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning.checkbox-inline label,.has-warning.checkbox label,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.radio-inline label,.has-warning.radio label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error.checkbox-inline label,.has-error.checkbox label,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.radio-inline label,.has-error.radio label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#8b8d8e}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#f7941e;border-color:#f7941e}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#da7a08;border-color:#905105}.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#da7a08;border-color:#d07507}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#b86707;border-color:#905105}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#f7941e;border-color:#f7941e}.btn-primary .badge{color:#f7941e;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#2d672d}.btn-success.active,.btn-success:active,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#419641}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#2d672d}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#5cb85c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#3f7b96;border-color:#3f7b96}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#305e72;border-color:#19313c}.btn-info.active,.btn-info:active,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#305e72;border-color:#2d586b}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#254959;border-color:#19313c}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#3f7b96;border-color:#3f7b96}.btn-info .badge{color:#3f7b96;background-color:#fff}.btn-warning{color:#fff;background-color:#f7941e;border-color:#f7941e}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#da7a08;border-color:#905105}.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#da7a08;border-color:#d07507}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#b86707;border-color:#905105}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f7941e;border-color:#f7941e}.btn-warning .badge{color:#f7941e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#8b211e}.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#c12e2a}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#8b211e}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d9534f}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#3f7b96;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#305e72;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:0}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:0}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#f7941e}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child),.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio],[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#2f2f2f;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group .form-control:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group .form-control:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn,.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li,.nav>li>a{position:relative;display:block}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#3f7b96}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#2f2f2f;background-color:#f9f9f9;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#f9f9f9}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#f7941e}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#f9f9f9}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container-fluid .navbar-brand,.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin:8px -15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left;float:left!important}.navbar-right{float:right;float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 0;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\A0";padding:0 5px;color:#656668}.breadcrumb>.active{color:#4c4d4e}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#3f7b96;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#305e72;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#f7941e;border-color:#f7941e;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#f7941e}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#da7a08}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#3f7b96}.label-info[href]:focus,.label-info[href]:hover{background-color:#305e72}.label-warning{background-color:#f7941e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#da7a08}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#3f7b96;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:#fff;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container-fluid .jumbotron,.container .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container-fluid .jumbotron,.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#f9f9f9;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#3f7b96}.thumbnail .caption{padding:9px;color:#4c4d4e}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#f7941e;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-info{background-color:#3f7b96}.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-warning{background-color:#f7941e}.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#f7941e;border-color:#f7941e}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#fef2e3}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#ececec;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-heading>.dropdown .dropdown-toggle,.panel-title{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#4c4d4e;background-color:#dfdfdf;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#dfdfdf;background-color:#4c4d4e}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#f7941e}.panel-primary>.panel-heading{color:#fff;background-color:#f7941e;border-color:#f7941e}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#f7941e}.panel-primary>.panel-heading .badge{color:#f7941e;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#f7941e}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal,.modal-open{overflow:hidden}.modal{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translateY(-25%);transform:translateY(-25%);-webkit-transition:-webkit-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0);transform:translate(0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px}.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{left:5px}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel,.carousel-inner{position:relative}.carousel-inner{overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:left .6s ease-in-out;transition:left .6s ease-in-out}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media (-webkit-transform-3d),(transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translateZ(0);transform:translateZ(0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:transparent}.carousel-control.left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(90deg,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001));background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000",endColorstr="#00000000",GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(90deg,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5));background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#80000000",GradientType=1)}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:"\2039"}.carousel-control .icon-next:before{content:"\203A"}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:transparent}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{content:" ";display:table}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}/*!
+ * Yamm!3 - Yet another megamenu for Bootstrap 3
  * http://geedmo.github.com/yamm3
- */.yamm .nav,.yamm .collapse,.yamm .dropup,.yamm .dropdown{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .nav.navbar-right .dropdown-menu{left:auto;right:0}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}html{position:relative;min-height:100%}.toolbar-container-wrapper{background:#fff}.toolbar-row{padding:8px 0;font-size:12px;color:#666;font-weight:300}.toolbar-row a{font-weight:300;padding-left:4px;color:#666}.toolbar-row a:hover{color:#f7941e}.toolbar-row ul{margin-bottom:0}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#afbbdc}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #ccc}@media (min-width:768px){.page-header-logo-bordered{border-bottom:1px solid #ccc}}#header-right{text-align:right}.thin-header .visible-thin{display:block !important}.logo-eclipse-default-mobile{max-height:50px}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#efeef2;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#2c2255;height:3px}#main-menu .nav{margin:0;background:#2c2255}#main-menu .nav>li{border:1px solid #fafafb}#main-menu .nav>li.open .dropdown-toggle{color:#000;background:#efeef2}#main-menu .nav>li>a{color:#fff;text-transform:uppercase}#main-menu .nav>li .dropdown-menu{background:#2a2a2c;padding:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#f7941e;color:#fff}#main-menu .nav>li .dropdown-menu>li.active a:hover,#main-menu .nav>li .dropdown-menu>li.active a:focus{color:#000;background:#f5f5f5}#main-menu .nav>li .dropdown-menu>li>a{padding:5px 20px 5px 30px;color:#fff}#main-menu .nav>li .dropdown-menu>li>a:hover,#main-menu .nav>li .dropdown-menu>li>a:focus{color:#000;background:#f5f5f5}}@media (min-width:768px){#main-menu{font-size:.9em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#787878}#main-menu li a:hover,#main-menu li a:active{background:none;color:#f7941e}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:initial;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:initial;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:hover{color:#f7941e}#main-menu .dropdown-menu a:active{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active{color:#f7941e;background:none}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.separator,.ul-left-nav>li.about{padding-left:0;font-weight:bold}.ul-left-nav>li.separator img,.ul-left-nav>li.about img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#f7941e}main{position:relative;padding-bottom:20px;background:transparent}main.no-promo{padding-top:20px}main.no-promo .breadcrumbs-offset{margin-top:-20px}footer#solstice-footer{background:no-repeat center center #242426;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding-top:3.5em;color:#a8a7a9;padding-bottom:26px;font-size:14px;border-top:1px solid #f7941e}footer#solstice-footer h2{color:#fff;padding:0 0 7px 0;margin-top:0;font-weight:300;font-size:21px;border-bottom:2px solid #6e6d71;max-width:80%}footer#solstice-footer a:link,footer#solstice-footer a:active,footer#solstice-footer a:visited{color:#a8a7a9;font-weight:400}footer#solstice-footer a:hover{color:#f7941e}footer#solstice-footer .social-media a:link,footer#solstice-footer .social-media a:active,footer#solstice-footer .social-media a:visited{color:#fff}footer#solstice-footer .social-media a:hover{color:#f7941e}footer#solstice-footer .logo-eclipse-white{margin-bottom:15px;max-width:161px}footer#solstice-footer .nav{margin-left:-15px;margin-bottom:25px}footer#solstice-footer .nav a{padding:6px 15px 6px 20px}footer#solstice-footer .nav a:hover{background:none;color:#f7941e}footer#solstice-footer li{padding-bottom:0}@media (max-width:991px){footer#solstice-footer #copyright-text,footer#solstice-footer #footer-other{text-align:left;clear:both}}@media (max-width:450px){footer#solstice-footer section.col-xs-11,footer#solstice-footer section.col-xs-14{position:relative;float:left;width:95.83333333%;min-height:1px;padding-left:15px;padding-right:15px}}@media (min-width:451px) and (max-width:767px){footer#solstice-footer #footer-useful-links{clear:left}footer#solstice-footer #copyright{clear:both}}#copyright{padding-top:15px}#copyright img{float:left;margin-top:10px;margin-right:15px;clear:both}#copyright-text{padding-top:21px;text-align:right}.social-media{margin-top:57px;font-size:2.3em}.social-media a:hover{color:#f7941e}#footer-eclipse-foundation,#footer-legal,#footer-useful-links,#footer-other{z-index:99}.footer-other-working-groups{font-weight:300;font-size:11px}.footer-other-working-groups .social-media{margin-top:20px}.footer-other-working-groups .img-responsive{padding-right:20px;max-width:235px}.footer-other-working-groups .footer-working-group-col{padding:55px 0 0 0}@media (min-width:992px){.footer-other-working-groups{background:url('../images/template/footer-working-group-separator.png') center repeat-y}.footer-other-working-groups .img-responsive{max-width:100%;padding-right:30px}.footer-other-working-groups .footer-working-group-col{padding:0}}.footer-min{background:#f5f5f5;border-top:1px solid #b5b5b5;position:absolute;width:100%;bottom:0;padding:10px 0}.footer-min a{font-weight:normal;font-size:.8em}.footer-min p,.footer-min ul{margin-bottom:0;font-size:.8em}.footer-min ul{text-align:right}.footer-min ul li{padding-bottom:0}@media screen and (max-width:767px){.footer-min p,.footer-min ul{text-align:center}}body.solstice-footer-min{margin-bottom:36px;position:static}@media screen and (max-width:767px){body.solstice-footer-min{margin-bottom:51px}}main #bigbuttons{padding-top:1.65em;padding-bottom:2.2em;min-height:1px;padding-left:15px;padding-right:15px;text-align:center;position:relative;top:auto;left:auto}@media (min-width:768px){main #bigbuttons{float:left;width:41.66666667%}}@media (min-width:768px){main #bigbuttons{margin-left:58.33333333%}}@media (min-width:992px){main #bigbuttons{float:left;width:62.5%}}@media (min-width:992px){main #bigbuttons{margin-left:37.5%}}@media (min-width:1200px){main #bigbuttons{float:left;width:66.66666667%}}@media (min-width:1200px){main #bigbuttons{margin-left:25%}}main #bigbuttons h3{display:none}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons ul{padding-left:0;list-style:none;margin-left:-5px}main #bigbuttons ul>li{display:inline-block;padding-left:5px;padding-right:5px}main #bigbuttons ul li{background:none}@media (min-width:768px){main #bigbuttons ul li{float:right}}main #bigbuttons a{position:relative;margin:0;top:auto;left:auto}main #bigbuttons a:hover{text-decoration:none}div#novaContent{background-position:left top;padding-top:0}@media (max-width:767px){div#novaContent{background-image:none}}@media (min-width:1200px){div#novaContent{background-position:center top}}.deprecated #novaContent{background:url("../images/template/bg-deprecated.gif") center 75px no-repeat ! important}#midcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px;padding-right:30px}@media (min-width:992px){#midcolumn{float:left;width:58.33333333%}}#midcolumn #midcolumn{width:100%;padding:0}#midcolumn.no-right-sidebar{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){#midcolumn.no-right-sidebar{float:left;width:83.33333333%}}#midcolumn.no-left-nav{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){#midcolumn.no-left-nav{float:left;width:75%}}main #rightcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){main #rightcolumn{float:left;width:25%}}@media print{.sideitem,#copyright{padding-left:0;padding-right:0}main{padding-bottom:0;padding-top:0}#solstice-footer,#copyright,#header-row{padding-top:0}}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.float-right{float:right}.float-left{float:left}.padding-0{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.reset{padding:0;margin:0}.visible-thin{display:none !important}.brand-primary{color:#2c2255}.brand-secondary{color:#afbbdc}.brand-success{color:#5cb85c}.brand-info{color:#afbbdc}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}tr.background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.background-blue{background:#afbbdc;color:#fff}.blue{color:#00f}.darkblue{color:#009}.yellow{color:yellow}.red{color:#f00}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-grey{background:#f5f5f5}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-white{background:#fff}#novaContent.background-image-none{background-image:none}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;-moz-transition:opacity .15s ease-in-out;-ms-transition:opacity .15s ease-in-out;-o-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{padding-bottom:0;margin-bottom:-28px}.table-layout-fixed{table-layout:fixed}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.col-xs-5-eclipse,.col-sm-5-eclipse,.col-md-5-eclipse,.col-lg-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.donation-button{padding-top:.75em;padding-bottom:.75em;padding-left:3.5em;padding-right:3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:hover,.btn-simple:active{border:1px solid #777;background:#eee}.btn-smaller,.btn-group-smaller>.btn{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:normal}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing *:before,.reset-box-sizing *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px 5px}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.no-border{border:none ! important}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table.table-solstice th{background:#afbbdc;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(even){background:#40bbdc}.vertical-align{display:flex;align-items:center}@media (min-width:992px){.vertical-align-md{display:flex;align-items:center}}.box-gray-border{border:1px solid #d6d6d6}#header-left{padding-top:15px;padding-bottom:10px}#header-right{padding-top:25px}#btn-call-for-action{padding-bottom:0;margin-top:7px}#main-menu-wrapper{clear:left}.thin-header #header-left{padding-top:0;padding-bottom:10px}.thin-header #main-menu-wrapper{padding-top:2px;clear:none}.ad-eclipsecon-schedule{background-color:#fff;width:200px;height:200px;margin:0 auto;padding:5px;text-align:center}.ad-eclipsecon-schedule h3{margin-top:0}.ad-eclipsecon-schedule div{margin:0;padding:0}main{padding-top:0}#novaContent{color:#000;font-size:13px}#novaContent,#novaContent *,#novaContent *:before,#novaContent *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#novaContent img{vertical-align:initial}#novaContent table{width:100%;max-width:100%}#novaContent table>thead>tr>th,#novaContent table>tbody>tr>th,#novaContent table>tfoot>tr>th,#novaContent table>thead>tr>td,#novaContent table>tbody>tr>td,#novaContent table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top}#novaContent table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #fff}#novaContent table th{text-align:center;background:#2f2f31;color:#fff;border:1px solid #ccc}#novaContent table th select{color:#2f2f31}#novaContent table th a,#novaContent table th a:link,#novaContent table th a:visited{color:#f7941e}#novaContent table th a:hover,#novaContent table th a:active{color:#fff}#novaContent table th.wa{text-align:left}#novaContent table>caption+thead>tr:first-child>th,#novaContent table>colgroup+thead>tr:first-child>th,#novaContent table>thead:first-child>tr:first-child>th,#novaContent table>caption+thead>tr:first-child>td,#novaContent table>colgroup+thead>tr:first-child>td,#novaContent table>thead:first-child>tr:first-child>td{border-top:0}#novaContent table>tbody+tbody{border-top:2px solid #fff}#novaContent table .table{background-color:#fff}#novaContent td.al,#novaContent td.GenText,#novaContent td.vt{border:none}#novaContent .clearer{clear:both}#novaContent .ForumBackground{border:0;font-size:13px}#novaContent .ForumBackground #midcolumn{padding-left:0;font-size:13px}#novaContent .ForumBackground .sideitem{font-size:13px}#novaContent .ForumBackground table{font-size:13px}#novaContent td.header{padding:0}#novaContent a.CatLink{font-size:14px;font-weight:bold;text-decoration:none;color:#000}#novaContent .CatDesc{color:#000;height:23px;background:#ccc;padding-left:5px ! important}#novaContent a.UserControlPanel,#novaContent a.UserControlPanel:visited{text-decoration:none}#novaContent div.UserControlPanel{margin-bottom:5px;text-align:right}#novaContent .CatLockedName{font-size:14px;font-weight:bold}#novaContent .CatLockPad{padding-left:20px}#novaContent .GenText,#novaContent .MsgIg,#novaContent td.repI{color:#000}#novaContent .GenTextRed{color:red}#novaContent .ErrorText{color:red;font-weight:bold}#novaContent .SmallText,#novaContent .DateText,#novaContent .TopBy,#novaContent td.permYES,#novaContent td.permNO{color:#202020;font-size:10px}#novaContent .SmallText a:link,#novaContent .DateText a:link,#novaContent .TopBy a:link,#novaContent td.permYES a:link,#novaContent td.permNO a:link,#novaContent .SmallText a:visited,#novaContent .DateText a:visited,#novaContent .TopBy a:visited,#novaContent td.permYES a:visited,#novaContent td.permNO a:visited{color:#2c2255}#novaContent .SmallText a:hover,#novaContent .DateText a:hover,#novaContent .TopBy a:hover,#novaContent td.permYES a:hover,#novaContent td.permNO a:hover{color:#f7941e}#novaContent .RowStyleA,#novaContent td.tt{background:#eee;border-bottom:solid;border-color:#dee2e6}#novaContent .RowStyleA.wo{border:none}#novaContent .RowStyleB{background:#dee2e6}#novaContent .RowStyleC{background:#c2cdd6}#novaContent .MsgToolBar{background:#dee2e6;padding-left:3px;padding-right:3px}#novaContent .MsgSpacer{padding-bottom:2px;padding-top:2px;padding-left:0;padding-right:0}#novaContent font.ptp{font-size:smaller;padding-left:10px}#novaContent .DialogTable{width:66%}#novaContent .PreviewTable{width:75%}#novaContent .AnnText{color:#000;background:#f5d300}#novaContent .AnnSubjText{font-weight:bold}#novaContent .MsgSubText{font-weight:bold;font-size:13px}#novaContent a.MsgSubText,#novaContent a.MsgSubText:visited{color:black;text-decoration:none}#novaContent .MsgBodyText{font-size:13px}#novaContent .FormattingToolsBG{background:#000}#novaContent .FormattingToolsCLR{background:#fff}#novaContent .MiniTable{background:#fff;border:0;padding:0;margin:0}#novaContent cite{color:#202020;font-size:11px;font-weight:bold;margin-left:20px;display:block;background:transparent url('../images/forums/quote.gif') left top no-repeat;padding-left:25px}#novaContent blockquote{color:#444;background:#fafafa;border-left:1px dashed #c2cdd6;margin:8px 1px 0 20px;overflow:hidden;padding:5px}#novaContent blockquote:first-letter{margin:.2em .2em .1em 0;font-family:"Monotype Corsiva","Apple Chancery",fantasy;font-size:220%;font-weight:bold;font-variant:small-caps}#novaContent blockquote blockquote{background-color:#f0f0f0;margin:8px 1px 0 10px}#novaContent blockquote blockquote blockquote{background-color:#e0e0e0}#novaContent .quote{color:#444;background:#fafafa;border:1px solid #c2cdd6}#novaContent .dashed{border:1px dashed #1b7cad}#novaContent .adminColor{font-weight:bold;color:#f00}#novaContent .modsColor{color:#0b0;font-weight:bold}#novaContent .brdrNormal,#novaContent td.tabItop,#novaContent td.tabImid,#novaContent td.tabIbot{border:#000;border-style:solid;border-left-width:0;border-top-width:0;border-right-width:0;border-bottom-width:1px;background-repeat:repeat;background-position:top}#novaContent .brdrSelected,#novaContent td.tabAmid,#novaContent td.tabAmid,#novaContent td.tabAbot{border:#000;border-style:solid;border-left-width:0;border-top-width:0;border-right-width:0;border-bottom-width:0;background-repeat:repeat;background-position:top}#novaContent form{padding:0;margin:0}#novaContent img{border:0}#novaContent a[href^="mailto:"]{background:url(../images/forums/email.png) no-repeat right center;padding-right:17px}#novaContent .StClr{font-weight:bold;color:green}#novaContent .AnClr{font-weight:bold;color:red}#novaContent .ModOpt,#novaContent .ModOpt a{color:#a8b1b8;margin-top:2px;font-size:small;text-align:right}#novaContent .TopBy{margin-top:3px;margin-bottom:0;padding-right:2px;text-align:right}#novaContent .MsgR2,#novaContent .MsgR1,#novaContent .MsgR3,#novaContent .MsgIg{background:#dee2e6;border-bottom:none;padding:2px}#novaContent .MsgIg{border:0}#novaContent .MsgR1{background:#ccd4dc}#novaContent .MsgR3{background:#f4f4f4;padding:1ex;padding-top:2ex}#novaContent .mnavMsg{border-bottom:1px dashed #eee;width:100%}#novaContent .mnavWarnTbl{border:1px dashed red}#novaContent .mnavNoRes{border:1px dashed blue}#novaContent font.lg{font-size:14px}#novaContent td.tt{text-align:left;width:100%;border-bottom:1px solid #fff}#novaContent table.tt{width:100%;padding:1px;margin:0;text-align:center;border:1px solid #000}#novaContent a.big:link,#novaContent a.big:active,#novaContent a.big:visited{font-size:15px}#novaContent .small,#novaContent a.small:link,#novaContent a.small:active,#novaContent a.small:visited{font-size:13px;font-weight:normal}#novaContent td.msgud,#novaContent td.msgot,#novaContent td.msgot a,#novaContent div.ctags{color:#202020;font-size:11px;vertical-align:top;width:33%;white-space:nowrap}#novaContent td.msgud{padding-right:10px;text-align:left}#novaContent td.msgot{text-align:right}#novaContent div.ctags{padding:2px;width:100%}#novaContent th.SelTS,#novaContent th.SelFS{padding:6px 8px;background:#2f2f31;color:#fff;text-align:left}#novaContent th.SelTS select,#novaContent th.SelFS select{color:#2f2f31}#novaContent th.SelTS a,#novaContent th.SelFS a,#novaContent th.SelTS a:link,#novaContent th.SelFS a:link,#novaContent th.SelTS a:visited,#novaContent th.SelFS a:visited{color:#f7941e}#novaContent th.SelTS a:hover,#novaContent th.SelFS a:hover,#novaContent th.SelTS a:active,#novaContent th.SelFS a:active{color:#fff}#novaContent th.SelFS{border-bottom:1px solid #fff;color:#fff}#novaContent td.NoAvatar{background:#f4f4f4;text-align:center}#novaContent td.Av1,#novaContent td.Av2{text-align:center;background:#f4f4f4;vertical-align:middle;white-space:nowrap}#novaContent td.Av2{background:#fefefe}#novaContent td.tabI,#novaContent td.tabA,#novaContent td.tabI:hover,#novaContent td.tabOVER,#novaContent td.tabON{border:1px solid black;background:#dee7f7;padding:2px}#novaContent td.tabOVER,#novaContent td.tabI:hover,#novaContent td.tabI:active{background:#fff}#novaContent td.tabON{background:#5279bd}#novaContent a.tabON:link,#novaContent a.tabON:active,#novaContent a.tabON:visited,#novaContent a.tabON:hover{color:#fff;font-weight:bold;text-decoration:none}#novaContent div.tabT{padding:1px;padding-left:10px;padding-right:10px}#novaContent table.tab{border-bottom:1px solid #000}#novaContent td.pmSn{background:#fff}#novaContent td.pmSa{background:#fffa00}#novaContent td.pmSf{background:red}#novaContent table.pmDu{width:175px;background-color:#fff;border:1px #c2cdd6 solid}#novaContent td.mvTc{background:#e5ffe7}#novaContent td.pmNav{background:#fff;text-align:right}#novaContent td.miniMH{text-align:center}#novaContent tr.mnavH{background:#eee}#novaContent tr.mnavM{background:#dee2e6}#novaContent table.regConf{width:80%;border:1px dashed #f00}#novaContent font.anon,#novaContent font.reg{color:#0a0}#novaContent td.permYES,#novaContent td.permNO{text-align:center;color:red;white-space:nowrap}#novaContent td.permNO{color:blue}#novaContent font.regEW{font-size:xx-small;color:#050;font-weight:bold}#novaContent td.repI{padding:5px;padding-left:20px}#novaContent table.pad{margin-top:2px;margin-bottom:2px}#novaContent font.selmsgInd{font-size:xx-small;font-weight:bold;text-decoration:none}#novaContent td.avatarPad{padding-right:3px;vertical-align:top}#novaContent div.pre{font-family:monospace;padding:5px;border:1px blue dashed;font-size:14px;white-space:pre;background:#fafafa;overflow:auto;margin:5px}#novaContent pre{white-space:pre-wrap}#novaContent .codehead,#novaContent .codehead a{color:#202020;background:#e9e9e9;font-size:xx-small;font-weight:bold}#novaContent html pre.prettyprint{border:none;padding:0;margin:5px}#novaContent a.big:active,#novaContent a:active,#novaContent a.CatLink:active,#novaContent a.UserControlPanel:active,#novaContent a.thLnk:active,#novaContent a.small:active,#novaContent a.PagerLink:active,#novaContent a.MsgSubText:active{color:#dc143c}#novaContent img.l{float:left;clear:right;margin:3px}#novaContent img.r{float:right;clear:left;margin:3px}#novaContent .AttachmentsList{margin-left:0;list-style:none;margin-top:10px;padding:0}#novaContent .signature{border-top:1px dotted #a0a0a0;color:#202020;font-size:10px}#novaContent td.header .headtitle{font-family:inherit;font-weight:500;line-height:1.1;color:inherit;margin-top:20px;margin-bottom:10px;font-size:36px}#novaContent td.header .headtitle small,#novaContent td.header .headtitle .small{font-weight:normal;line-height:1;color:#777}#novaContent td.header .headtitle small,#novaContent td.header .headtitle .small{font-size:65%}#novaContent td.header a:link,#novaContent td.header a:visited{color:#333}#novaContent td.header a:hover,#novaContent td.header a:active{color:#f7941e}#novaContent #headsearch{float:right;font-size:small;font-weight:bold;vertical-align:top}#novaContent .headbutton{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-transform:uppercase;font-weight:700;color:#fff;background-color:#2c2255;border-color:#231b43}#novaContent .headbutton:focus,#novaContent .headbutton:active:focus,#novaContent .headbutton.active:focus,#novaContent .headbutton.focus,#novaContent .headbutton:active.focus,#novaContent .headbutton.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#novaContent .headbutton:hover,#novaContent .headbutton:focus,#novaContent .headbutton.focus{color:#333;text-decoration:none}#novaContent .headbutton:active,#novaContent .headbutton.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}#novaContent .headbutton.disabled,#novaContent .headbutton[disabled],fieldset[disabled] #novaContent .headbutton{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a#novaContent .headbutton.disabled,fieldset[disabled] a#novaContent .headbutton{pointer-events:none}#novaContent .headbutton:focus,#novaContent .headbutton.focus{color:#fff;background-color:#191331;border-color:#000}#novaContent .headbutton:hover{color:#fff;background-color:#191331;border-color:#0c0917}#novaContent .headbutton:active,#novaContent .headbutton.active,.open>.dropdown-toggle#novaContent .headbutton{color:#fff;background-color:#191331;border-color:#0c0917}#novaContent .headbutton:active:hover,#novaContent .headbutton.active:hover,.open>.dropdown-toggle#novaContent .headbutton:hover,#novaContent .headbutton:active:focus,#novaContent .headbutton.active:focus,.open>.dropdown-toggle#novaContent .headbutton:focus,#novaContent .headbutton:active.focus,#novaContent .headbutton.active.focus,.open>.dropdown-toggle#novaContent .headbutton.focus{color:#fff;background-color:#0c0917;border-color:#000}#novaContent .headbutton:active,#novaContent .headbutton.active,.open>.dropdown-toggle#novaContent .headbutton{background-image:none}#novaContent .headbutton.disabled:hover,#novaContent .headbutton[disabled]:hover,fieldset[disabled] #novaContent .headbutton:hover,#novaContent .headbutton.disabled:focus,#novaContent .headbutton[disabled]:focus,fieldset[disabled] #novaContent .headbutton:focus,#novaContent .headbutton.disabled.focus,#novaContent .headbutton[disabled].focus,fieldset[disabled] #novaContent .headbutton.focus{background-color:#2c2255;border-color:#231b43}#novaContent .headbutton .badge{color:#2c2255;background-color:#fff}#novaContent .resizable-textarea .grippie{height:9px;background:#eee url('../images/forums/grippie.gif') no-repeat center 2px;border:1px solid #ddd;border-top-width:0;cursor:s-resize;overflow:hidden}#novaContent .wo{width:1px}#novaContent .wa{width:100%}#novaContent .al{text-align:left}#novaContent .ar{text-align:right}#novaContent .fl{float:left}#novaContent .fr{float:right}#novaContent .ac{text-align:center}#novaContent .vb{vertical-align:bottom}#novaContent .vt{vertical-align:top}#novaContent .vm{vertical-align:middle}#novaContent .nw{white-space:nowrap}#novaContent .fb{font-weight:bold}#novaContent .clear{clear:both}#novaContent img.at{float:left;clear:left}#novaContent div.sr{float:left;padding:5px}#novaContent div.ctb th{border:1px solid #ccc}#novaContent div.ctb .RowStyleC{display:none}#novaContent div.foot{padding:3px;margin:3px}#novaContent div.ip{overflow:auto;margin:0;padding:2px;width:600px;height:400px}#novaContent span.vt{padding-left:20px}#novaContent table.icqCP{font-family:arial,sans-serif;font-size:smaller;border:0}#novaContent div.pmL{padding-top:2px}#novaContent table.ucPW{width:175px}#novaContent .st0{background-color:#ff6}#novaContent .st1{background-color:#a0ffff}#novaContent .st2{background-color:#9f9}#novaContent .st3{background-color:#f99}#novaContent .st4{background-color:#f6f}#novaContent .st5{background-color:#800}#novaContent .st6{background-color:#0a0}#novaContent .st7{background-color:#886800}#novaContent .st8{background-color:#004699}#novaContent .st9{background-color:#909}#novaContent table.calendar{border-left:1px solid #999}#novaContent td.calendar-day{min-height:80px;font-size:11px;position:relative}#novaContent * html div.calendar-day{height:80px}#novaContent td.calendar-day:hover{background:#eceff5}#novaContent td.calendar-day-np{background:#eee;min-height:80px}#novaContent * html div.calendar-day-np{height:80px}#novaContent td.calendar-day-head{background:#ccc;font-weight:bold;text-align:center;width:120px;padding:5px;border-bottom:1px solid #999;border-top:1px solid #999;border-right:1px solid #999}#novaContent div.day-number{background:#999;position:absolute;z-index:2;top:-5px;right:-25px;padding:5px;color:#fff;font-weight:bold;width:20px;text-align:center}#novaContent td.calendar-day,#novaContent td.calendar-day-np{width:120px;padding:5px 25px 5px 5px;border-bottom:1px solid #999;border-right:1px solid #999}#novaContent input.button:link,#novaContent input.button:visited,#novaContent input.button{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-transform:uppercase;font-weight:700;color:#fff;background-color:#2c2255;border-color:#231b43}#novaContent input.button:link:focus,#novaContent input.button:visited:focus,#novaContent input.button:focus,#novaContent input.button:link:active:focus,#novaContent input.button:visited:active:focus,#novaContent input.button:active:focus,#novaContent input.button:link.active:focus,#novaContent input.button:visited.active:focus,#novaContent input.button.active:focus,#novaContent input.button:link.focus,#novaContent input.button:visited.focus,#novaContent input.button.focus,#novaContent input.button:link:active.focus,#novaContent input.button:visited:active.focus,#novaContent input.button:active.focus,#novaContent input.button:link.active.focus,#novaContent input.button:visited.active.focus,#novaContent input.button.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#novaContent input.button:link:hover,#novaContent input.button:visited:hover,#novaContent input.button:hover,#novaContent input.button:link:focus,#novaContent input.button:visited:focus,#novaContent input.button:focus,#novaContent input.button:link.focus,#novaContent input.button:visited.focus,#novaContent input.button.focus{color:#333;text-decoration:none}#novaContent input.button:link:active,#novaContent input.button:visited:active,#novaContent input.button:active,#novaContent input.button:link.active,#novaContent input.button:visited.active,#novaContent input.button.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}#novaContent input.button:link.disabled,#novaContent input.button:visited.disabled,#novaContent input.button.disabled,#novaContent input.button:link[disabled],#novaContent input.button:visited[disabled],#novaContent input.button[disabled],fieldset[disabled] #novaContent input.button:link,fieldset[disabled] #novaContent input.button:visited,fieldset[disabled] #novaContent input.button{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a#novaContent input.button:link.disabled,a#novaContent input.button:visited.disabled,a#novaContent input.button.disabled,fieldset[disabled] a#novaContent input.button:link,fieldset[disabled] a#novaContent input.button:visited,fieldset[disabled] a#novaContent input.button{pointer-events:none}#novaContent input.button:link:focus,#novaContent input.button:visited:focus,#novaContent input.button:focus,#novaContent input.button:link.focus,#novaContent input.button:visited.focus,#novaContent input.button.focus{color:#fff;background-color:#191331;border-color:#000}#novaContent input.button:link:hover,#novaContent input.button:visited:hover,#novaContent input.button:hover{color:#fff;background-color:#191331;border-color:#0c0917}#novaContent input.button:link:active,#novaContent input.button:visited:active,#novaContent input.button:active,#novaContent input.button:link.active,#novaContent input.button:visited.active,#novaContent input.button.active,.open>.dropdown-toggle#novaContent input.button:link,.open>.dropdown-toggle#novaContent input.button:visited,.open>.dropdown-toggle#novaContent input.button{color:#fff;background-color:#191331;border-color:#0c0917}#novaContent input.button:link:active:hover,#novaContent input.button:visited:active:hover,#novaContent input.button:active:hover,#novaContent input.button:link.active:hover,#novaContent input.button:visited.active:hover,#novaContent input.button.active:hover,.open>.dropdown-toggle#novaContent input.button:link:hover,.open>.dropdown-toggle#novaContent input.button:visited:hover,.open>.dropdown-toggle#novaContent input.button:hover,#novaContent input.button:link:active:focus,#novaContent input.button:visited:active:focus,#novaContent input.button:active:focus,#novaContent input.button:link.active:focus,#novaContent input.button:visited.active:focus,#novaContent input.button.active:focus,.open>.dropdown-toggle#novaContent input.button:link:focus,.open>.dropdown-toggle#novaContent input.button:visited:focus,.open>.dropdown-toggle#novaContent input.button:focus,#novaContent input.button:link:active.focus,#novaContent input.button:visited:active.focus,#novaContent input.button:active.focus,#novaContent input.button:link.active.focus,#novaContent input.button:visited.active.focus,#novaContent input.button.active.focus,.open>.dropdown-toggle#novaContent input.button:link.focus,.open>.dropdown-toggle#novaContent input.button:visited.focus,.open>.dropdown-toggle#novaContent input.button.focus{color:#fff;background-color:#0c0917;border-color:#000}#novaContent input.button:link:active,#novaContent input.button:visited:active,#novaContent input.button:active,#novaContent input.button:link.active,#novaContent input.button:visited.active,#novaContent input.button.active,.open>.dropdown-toggle#novaContent input.button:link,.open>.dropdown-toggle#novaContent input.button:visited,.open>.dropdown-toggle#novaContent input.button{background-image:none}#novaContent input.button:link.disabled:hover,#novaContent input.button:visited.disabled:hover,#novaContent input.button.disabled:hover,#novaContent input.button:link[disabled]:hover,#novaContent input.button:visited[disabled]:hover,#novaContent input.button[disabled]:hover,fieldset[disabled] #novaContent input.button:link:hover,fieldset[disabled] #novaContent input.button:visited:hover,fieldset[disabled] #novaContent input.button:hover,#novaContent input.button:link.disabled:focus,#novaContent input.button:visited.disabled:focus,#novaContent input.button.disabled:focus,#novaContent input.button:link[disabled]:focus,#novaContent input.button:visited[disabled]:focus,#novaContent input.button[disabled]:focus,fieldset[disabled] #novaContent input.button:link:focus,fieldset[disabled] #novaContent input.button:visited:focus,fieldset[disabled] #novaContent input.button:focus,#novaContent input.button:link.disabled.focus,#novaContent input.button:visited.disabled.focus,#novaContent input.button.disabled.focus,#novaContent input.button:link[disabled].focus,#novaContent input.button:visited[disabled].focus,#novaContent input.button[disabled].focus,fieldset[disabled] #novaContent input.button:link.focus,fieldset[disabled] #novaContent input.button:visited.focus,fieldset[disabled] #novaContent input.button.focus{background-color:#2c2255;border-color:#231b43}#novaContent input.button:link .badge,#novaContent input.button:visited .badge,#novaContent input.button .badge{color:#2c2255;background-color:#fff}#novaContent .small.button{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}
\ No newline at end of file
+ * 
+ * @geedmo - Licensed under the MIT license
+ */.yamm .collapse,.yamm .dropdown,.yamm .dropup,.yamm .nav{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}.btn{text-transform:none}.btn:visited{color:#fff}.btn-default:visited{color:#333}.btn-white{background:#fff;border:1px solid #0b0a0f;color:#0b0a0f}.btn-white:hover{background:transparent}.btn-white:visited{color:#333}.btn-huge{font-size:1.1em;padding:10px 35px}.btn-huge i{margin-right:2px}.btn-transparent:link,.btn-transparent:visited{background:transparent;border-color:#fff;color:#fff;font-size:11px;padding:7px 15px}.btn-transparent:active,.btn-transparent:hover{color:#f7941e;border-color:#f7941e;background:#ccc}.btn-transparent .caret{margin-left:6px}.donation-button{padding:.75em 3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:visited{color:inherit}.btn-simple:active,.btn-simple:hover{border:1px solid #777;background:#eee}.btn-simple-white{text-transform:none;font-weight:400;font-size:13px;border:0;border-radius:0}.btn-group-smaller>.btn,.btn-smaller{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:400}.btn-white-purple-border:visited{color:#2d2252}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.btn-secondary{color:#fff;background-color:#404040;border-color:#404040}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#272727;border-color:#000}.btn-secondary.active,.btn-secondary:active,.btn-secondary:hover,.open>.dropdown-toggle.btn-secondary{color:#fff;background-color:#272727;border-color:#212121}.btn-secondary.active.focus,.btn-secondary.active:focus,.btn-secondary.active:hover,.btn-secondary:active.focus,.btn-secondary:active:focus,.btn-secondary:active:hover,.open>.dropdown-toggle.btn-secondary.focus,.open>.dropdown-toggle.btn-secondary:focus,.open>.dropdown-toggle.btn-secondary:hover{color:#fff;background-color:#151515;border-color:#000}.btn-secondary.active,.btn-secondary:active,.open>.dropdown-toggle.btn-secondary{background-image:none}.btn-secondary.disabled.focus,.btn-secondary.disabled:focus,.btn-secondary.disabled:hover,.btn-secondary[disabled].focus,.btn-secondary[disabled]:focus,.btn-secondary[disabled]:hover,fieldset[disabled] .btn-secondary.focus,fieldset[disabled] .btn-secondary:focus,fieldset[disabled] .btn-secondary:hover{background-color:#404040;border-color:#404040}.btn-secondary .badge{color:#404040;background-color:#fff}.media{padding-bottom:2em}.media .pull-left{margin-right:30px}.media .media-heading{font-size:27px}.media p{font-size:14px;padding-bottom:0}.media .emphasis{margin-bottom:2px;padding-bottom:0}.modal{text-align:center}@media screen and (min-width:768px){.modal:before{display:inline-block;vertical-align:middle;content:" ";height:100%}}.modal-title{font-weight:600;font-size:22px}.modal-content{border-radius:0}.modal-content-container{border:1px solid #eee;padding:0 20px}.modal-dialog{display:inline-block;text-align:left;vertical-align:middle}.nav>li>a{color:#f7941e}.nav-tabs>li{padding-bottom:0}.nav-tabs>li a:hover{background:#f7941e;color:#fff}.tab-content{padding:10px;border:1px solid #ddd;border-top:none;background:#fff}.tab-pane{padding:.5em 1em}.tab-pane .page-header{margin-top:10px}.featured-footer{padding:50px 0;text-align:center;-webkit-clip-path:polygon(0 8%,100% 0,100% 100%,0 91%);clip-path:polygon(0 8%,100% 0,100% 100%,0 91%);margin-bottom:-30px;margin-top:30px}.featured-footer h2{margin-top:10px}.featured-footer .feather{width:40px;height:40px}.featured-footer .textfield-underline{text-align:center;width:300px}.anchor{display:block;position:relative;top:-14px;visibility:hidden;z-index:9999}.scrollup{width:40px;height:40px;opacity:.3;position:fixed;bottom:50px;right:15px;display:none;text-indent:-9999px;background:url(../images/vendor/eclipsefdn-solstice-components/back-to-top/back-to-top.png?19e6da177416da3208367d78ea0a3c23) no-repeat}.scrollup:focus{outline:none}#back-to-top{margin:0;padding:0}#back-to-top a{border-top:1px solid gray;background-color:#666;color:#fff;display:block;padding:4px 0 3px;text-align:center;width:100%;margin:0}#back-to-top a:focus,#back-to-top a:hover{text-decoration:none;background:#dfdfe4;color:#4a4a4a}.share-button{padding:5px;display:block;color:#fff;width:24px;height:24px}.share-button:active,.share-button:focus,.share-button:hover,.share-button:visited{color:#fff}.share-button .fa{font-size:13px}.share-button-twitter{background-color:#1da1f2}.share-button-facebook{background-color:#3b5998}.share-button-mail{background-color:#949494}.default-breadcrumbs{background:#efefef;background-size:100%;color:#656668;border-bottom:none;border-top:none;font-size:.85em}.breadcrumb{background:none;margin-bottom:0;text-transform:inherit}.breadcrumb a{font-weight:300}.breadcrumb a:link,.breadcrumb a:visited{color:#656668}.breadcrumb a:hover{color:#4c4d4e}body #st-el-4 .st-btns{overflow:auto}footer#solstice-footer{background:#fff;font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;padding-top:60px;color:#404040;padding-bottom:26px;font-size:14px;border-top:none}footer#solstice-footer h2{color:#000;margin-top:0;font-weight:400;font-size:18px;max-width:auto}footer#solstice-footer a:active,footer#solstice-footer a:focus,footer#solstice-footer a:link,footer#solstice-footer a:visited{color:#404040;font-weight:400}footer#solstice-footer a:hover{color:#000}footer#solstice-footer .logo-eclipse-white{margin-bottom:15px;max-width:161px}footer#solstice-footer .nav{margin-left:-15px;margin-bottom:25px}footer#solstice-footer .nav a{padding:6px 15px}footer#solstice-footer .nav a:hover{background:none;color:#000}footer#solstice-footer li{padding-bottom:0}@media (max-width:450px){footer#solstice-footer section.col-xs-11,footer#solstice-footer section.col-xs-14{position:relative;float:left;width:95.83333333%;min-height:1px;padding-left:15px;padding-right:15px}}@media (min-width:451px) and (max-width:767px){footer#solstice-footer #footer-useful-links{clear:left}footer#solstice-footer #copyright{clear:both}}#copyright{padding-top:15px}#copyright img{float:left;margin-top:10px;margin-right:15px;clear:both}@media (max-width:991px){#copyright-text{margin-bottom:20px}}@media (min-width:992px){.social-media{text-align:right}}#footer-eclipse-foundation,#footer-legal,#footer-other,#footer-useful-links{z-index:99}.footer-other-working-groups{font-weight:300;font-size:11px}.footer-other-working-groups .logo-eclipse-default,.footer-other-working-groups .social-media{margin-bottom:20px;margin-top:0}.footer-other-working-groups .img-responsive{max-width:175px}.footer-other-working-groups .footer-working-group-col{padding:0}@media (min-width:1200px){.footer-other-working-groups{background:url(../images/vendor/eclipsefdn-solstice-template/footer-working-group-separator.png?7755eb2e94e0b22d832e9ffa7cd79479) 50% repeat-y}.footer-other-working-groups .img-responsive{max-width:200px}}.footer-min{background:#ececec;border-top:1px solid #acacac;position:absolute;width:100%;bottom:0;padding:10px 0}.footer-min a{font-weight:400;font-size:.8em}.footer-min p,.footer-min ul{margin-bottom:0;font-size:.8em}.footer-min ul{text-align:right}.footer-min ul li{padding-bottom:0}@media screen and (max-width:767px){.footer-min p,.footer-min ul{text-align:center}}body.solstice-footer-min{margin-bottom:36px;position:static}@media screen and (max-width:767px){body.solstice-footer-min{margin-bottom:51px}}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:transparent;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu #navbar-main-menu{float:none}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#f7941e;height:3px}#main-menu .nav{margin:0;padding:0;background:#666}#main-menu .nav>li.open .dropdown-toggle{color:#fff;background:#787878}#main-menu .nav>li>a{color:#fff;text-transform:none;padding:18px 15px;border-bottom:1px solid #525252}#main-menu .nav>li .dropdown-menu{background:#525252;padding:0;border-radius:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#f7941e;color:#fff}#main-menu .nav>li .dropdown-menu>li.active a:focus,#main-menu .nav>li .dropdown-menu>li.active a:hover{color:#fff;background:#f5f5f5}#main-menu .nav>li .dropdown-menu>li>a{padding:18px 15px;color:#afafaf}#main-menu .nav>li .dropdown-menu>li>a:focus,#main-menu .nav>li .dropdown-menu>li>a:hover{color:#7c7c7c;background:#f5f5f5}#main-menu .nav>li.main-menu-search .dropdown-toggle{display:none}#main-menu .nav>li.main-menu-search .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none;display:block}#main-menu .nav>li.main-menu-search .dropdown-menu p{color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .yamm-content{padding:15px}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input{background-color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input-box{border:none}}@media (max-width:1199px){#breadcrumb .container,#header-wrapper .container,.toolbar-container-wrapper .container,main .container{width:auto}}@media (min-width:768px){#main-menu{font-size:14px;margin-bottom:5px}#main-menu .dropdown li,#main-menu ul li{text-transform:none}#main-menu li a{margin-right:0;color:#fff}#main-menu li a:active,#main-menu li a:hover{color:#ccc}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:auto;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:auto;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#6b655f}#main-menu .dropdown-menu a:active,#main-menu .dropdown-menu a:hover{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:17px}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active,#main-menu a:focus{color:#ccc}#main-menu .nav .open a,#main-menu .nav .open a:focus,#main-menu .nav .open a:hover,#main-menu .nav>li>a:focus,#main-menu .nav>li>a:hover{background-color:transparent}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.about,.ul-left-nav>li.separator{padding-left:0;font-weight:700}.ul-left-nav>li.about img,.ul-left-nav>li.separator img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#35322f}.logo-eclipse-default-mobile{max-height:50px}@media (min-width:768px){.alternate-layout #main-menu{font-size:14px}.alternate-layout #main-menu ul li{text-transform:none}.alternate-layout #main-menu li a{color:#6b655f}.alternate-layout #main-menu li a:active,.alternate-layout #main-menu li a:hover{color:#35322f}}@media (min-width:992px){.alternate-layout #main-menu{font-size:17px}}@media (max-width:767px){.alternate-layout #main-menu{background:#404040 100% 0 no-repeat}}.logo-eclipse-default{margin:0}.header_nav{padding-bottom:35px}.header_nav img{margin:20px auto}.header_nav ul{background:#f4f4f4;padding:0;text-transform:uppercase;color:#7b778e;margin:0;font-size:16px}.header_nav ul li{list-style:none;clear:right;padding-bottom:0}.header_nav ul li:nth-child(odd){clear:left}.header_nav ul a{padding:20px;display:block;font-weight:600}.header_nav ul a:active,.header_nav ul a:link,.header_nav ul a:visited{color:#7b778e}.header_nav ul a:hover{color:#f7941e}.header_nav ul a i{font-size:30px;padding:4px 0 0;text-align:center;font-weight:700}.header_nav ul span{padding:0 0 0 5px}.header_nav ul span p{font-size:11px;text-transform:none;font-weight:400;margin:0}.icon-sidebar-menu h3{margin-top:0;font-size:16px;margin-bottom:5px}.icon-sidebar-menu p{font-size:13px}.icon-sidebar-menu .circle-icon{width:80px;height:80px;display:block}.icon-sidebar-menu .circle-icon i{font-size:37px;margin-top:20px}.toolbar-menu{background-color:#fff;border-bottom:1px solid #ccc;border-top:1px solid #ccc;margin-bottom:25px}.toolbar-menu .breadcrumb{margin-bottom:0;padding-left:0;background:none}.toolbar-menu .breadcrumb li{padding-bottom:0;font-size:1.1em}.toolbar-menu .breadcrumb>li+li:before{content:" | "}.toolbar-menu .breadcrumb a:link,.toolbar-menu .breadcrumb a:visited{color:#2f2f2f}.toolbar-menu .breadcrumb a:hover{color:#f7941e}.toolbar-menu .breadcrumb a.active{color:#371e1d;font-weight:600}.toolbar-container-wrapper{background:transparent}.toolbar-row{padding:8px 0;font-size:12px;color:#fff;font-weight:300}.toolbar-row a{font-weight:300;color:#fff;text-decoration:none}.toolbar-row a:hover{color:#ccc}.toolbar-row a:visited{color:#fff}.toolbar-row ul{margin-bottom:0}.toolbar-row ul li:last-child{padding-right:0}.toolbar-row .toolbar-left-content span{font-size:18px}@media (max-width:767px){.toolbar-row .toolbar-left-content span{padding-top:10px;text-align:center;display:block}}@media (min-width:768px){.toolbar-row .toolbar-left-content span{border-left:5px solid #f7941e;padding-left:10px}}.toolbar-row .toolbar-left-content a{font-weight:700;color:#f7941e}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#3f7b96}.alternate-layout .toolbar-container-wrapper{background:#fff}.alternate-layout .toolbar-row,.alternate-layout .toolbar-row a{color:#404040}.alternate-layout .toolbar-row a:hover{color:#666}.alternate-layout .toolbar-row a:visited{color:#404040}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.block-box,.sideitem{background:#fff;color:#4c4d4e;margin:0 0 2em;padding:15px;border:1px solid #e0e0e0}.block-box h2,.block-box h3,.block-box h6,.sideitem h2,.sideitem h3,.sideitem h6{background:none;color:#4c4d4e;margin:0 0 10px;padding:0 0 10px;text-transform:inherit;font-weight:600;font-size:15px}.block-box h2 a:hover,.block-box h3 a:hover,.block-box h6 a:hover,.sideitem h2 a:hover,.sideitem h3 a:hover,.sideitem h6 a:hover{color:#4c4d4e}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0}.block-box .list-heading,.sideitem .list-heading{font-weight:600;margin-bottom:4px;font-size:15px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.block-heading{background:none repeat scroll 0 0 #3f7b96;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.brand-primary{color:#f7941e}.brand-secondary{color:#404040}.brand-tertiary{color:#3f7b96}.brand-quaternary,.brand-quinary{color:#efefef}.brand-success{color:#5cb85c}.brand-info{color:#3f7b96}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.blue{color:#00f}.darkblue{color:#009}.yellow{color:#ff0}.red{color:red}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-primary{background:#f7941e;color:#fff}.background-primary h2,.background-primary h3,.background-primary h4,.background-primary li,.background-primary p{color:inherit}.background-secondary{background:#404040;color:#fff}.background-secondary h2,.background-secondary h3,.background-secondary h4,.background-secondary li,.background-secondary p{color:inherit}.background-tertiary{background:#3f7b96;color:#fff}.background-tertiary h2,.background-tertiary h3,.background-tertiary h4,.background-tertiary li,.background-tertiary p{color:inherit}.background-quaternary{background:#efefef;color:#fff}.background-quaternary h2,.background-quaternary h3,.background-quaternary h4,.background-quaternary li,.background-quaternary p{color:inherit}.background-quinary{background:#efefef;color:#fff}.background-quinary h2,.background-quinary h3,.background-quinary h4,.background-quinary li,.background-quinary p{color:inherit}.background-bg-body{background:#f9f9f9}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-mid-grey{background:#e6e7e8}.background-grey{background:#ececec}.background-light-grey{background:#f1f1f1}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-blue{background:#3f7b96;color:#fff}.background-white{background:#fff}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}.label-purple{background-color:#f7941e}#novaContent.background-image-none{background-image:none}.table-striped>tbody>tr:nth-of-type(odd).background-orange,tr.background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.box-gray-border{border:1px solid #d6d6d6}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.border-grey-right{border-right:1px solid #ccc}.no-border{border:none!important}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing :after,.reset-box-sizing :before{-webkit-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.vertical-align{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (min-width:992px){.vertical-align-md{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.float-right{float:right}.float-left{float:left}.visible-thin{display:none!important}.col-lg-5-eclipse,.col-md-5-eclipse,.col-sm-5-eclipse,.col-xs-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:700;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:"\F00C"}.container-list{counter-reset:list;padding-left:55px}.container-list>.list-row{margin-top:12px;position:relative;min-height:3em}.container-list>.list-row:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:700;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(list);counter-increment:list;display:block}.container-list>.list-row>div:first-child{padding-left:.5em}.container-list>.list-row .no-wrap{white-space:nowrap}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:700;color:#969696}.list-checkmark a:hover{color:#f7941e}.list-padding li{padding-bottom:25px}.list-border-right li{border-right:1px solid}.list-border-right li:last-child{border:none}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.fa-li{top:.23em}.reset{margin:0}.padding-0,.reset{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-35{padding:35px}.padding-40{padding:40px}.padding-45{padding:45px}.padding-50{padding:50px}.padding-55{padding:55px}.padding-60{padding:60px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-bottom-35{padding-bottom:35px}.padding-bottom-40{padding-bottom:40px}.padding-bottom-45{padding-bottom:45px}.padding-bottom-50{padding-bottom:50px}.padding-bottom-55{padding-bottom:55px}.padding-bottom-60{padding-bottom:60px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-top-35{padding-top:35px}.padding-top-40{padding-top:40px}.padding-top-45{padding-top:45px}.padding-top-50{padding-top:50px}.padding-top-55{padding-top:55px}.padding-top-60{padding-top:60px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-left-35{padding-left:35px}.padding-left-40{padding-left:40px}.padding-left-45{padding-left:45px}.padding-left-50{padding-left:50px}.padding-left-55{padding-left:55px}.padding-left-60{padding-left:60px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.padding-right-35{padding-right:35px}.padding-right-40{padding-right:40px}.padding-right-45{padding-right:45px}.padding-right-50{padding-right:50px}.padding-right-55{padding-right:55px}.padding-right-60{padding-right:60px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-35{margin:35px}.margin-40{margin:40px}.margin-45{margin:45px}.margin-50{margin:50px}.margin-55{margin:55px}.margin-60{margin:60px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-bottom-35{margin-bottom:35px}.margin-bottom-40{margin-bottom:40px}.margin-bottom-45{margin-bottom:45px}.margin-bottom-50{margin-bottom:50px}.margin-bottom-55{margin-bottom:55px}.margin-bottom-60{margin-bottom:60px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-top-35{margin-top:35px}.margin-top-40{margin-top:40px}.margin-top-45{margin-top:45px}.margin-top-50{margin-top:50px}.margin-top-55{margin-top:55px}.margin-top-60{margin-top:60px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-7{margin-right:7px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-right-35{margin-right:35px}.margin-right-40{margin-right:40px}.margin-right-45{margin-right:45px}.margin-right-50{margin-right:50px}.margin-right-55{margin-right:55px}.margin-right-60{margin-right:60px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.margin-left-35{margin-left:35px}.margin-left-40{margin-left:40px}.margin-left-45{margin-left:45px}.margin-left-50{margin-left:50px}.margin-left-55{margin-left:55px}.margin-left-60{margin-left:60px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.margin-auto{margin:0 auto}.breadcrumbs-default-margin{margin-bottom:20px}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;vertical-align:middle}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0;-moz-transform:scale(.9999);border-color:#ececec transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent}.triangle.triangle-white{border-color:#f9f9f9 hsla(0,0%,98%,0) hsla(0,0%,98%,0) transparent}.box{padding:15px 10px;margin-bottom:10px;margin-top:1.5em}.blue_box{background-color:#114e68}.blue_box h3,.blue_box p{color:#fff}.uppercase{text-transform:uppercase}.fw-200{font-weight:200}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.emphasis,.fw-700{font-weight:700}.emphasis{color:#f7941e}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.underlined{text-decoration:underline}.small{font-size:10px}.big{font-size:20px}.font-size-large{font-size:58px}.text-highlight{background:#eee;padding:12px 24px}.white-space-normal{white-space:normal}.header-short-underline{font-size:18px;font-weight:700}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}a:visited{color:#af6e3d}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}.a-underline{text-decoration:underline}.a-underline:hover{text-decoration:none}blockquote{font-size:14px}.top-level-heading{background:#404040;position:relative;padding:20px;margin-bottom:30px;color:#fff}.top-level-heading:after{width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #404040;position:absolute;content:"";bottom:-20px;left:50%;margin-left:-20px}.heading-underline{position:relative;font-size:2em;text-transform:uppercase;font-weight:200;margin:50px 0 20px}.heading-underline:after{border-bottom:4px solid #f7941d;content:"";display:block;width:100px;margin:10px auto 0}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{margin-bottom:-55px}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#ececec;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table-layout-fixed{table-layout:fixed}.table.table-solstice th{background:#3f7b96;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(2n){background:#40bbdc}.deprecated #novaContent{background:url(../images/vendor/eclipsefdn-solstice-template/bg-deprecated.gif?3219c56285f22eddb0f5746aeca4d4fe) center 75px no-repeat!important}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.textfield-underline{border-top:none;border-left:none;border-right:none;border-bottom:1px solid inherit;background-color:transparent;border-radius:0;-webkit-box-shadow:none;box-shadow:none;margin:10px auto;color:inherit}.textfield-underline:-moz-placeholder,.textfield-underline::-moz-placeholder{color:inherit}.textfield-underline:-ms-input-placeholder{color:inherit}.textfield-underline::-webkit-input-placeholder{color:inherit}.hidden-label label.control-label{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.border-reset{border:0!important}@media (min-width:768px){#main-menu li>a{padding:0 0 2px;margin:10px 15px}#main-menu li>a:hover{border-bottom:1px solid #ccc;padding-bottom:1px}#main-menu li.dropdown.eclipse-more.open>a{color:#ccc}#main-menu li.dropdown.eclipse-more .dropdown-menu{background-color:#fff;right:15px;left:auto;border-radius:0;-webkit-box-shadow:none;box-shadow:none;border:none;background-clip:inherit;padding-top:0;outline:1px solid rgba(0,0,0,.15);outline-offset:-1px}#main-menu li.dropdown.eclipse-more .dropdown-menu:before{border-right:1px solid #f7941e;border-left:1px solid #f7941e;background-color:#f7941e;display:block;content:"";height:5px;width:100%;position:relative;top:-4px}#main-menu li.dropdown.eclipse-more .dropdown-menu p{color:#6b655f}#main-menu li.dropdown.eclipse-more .dropdown-menu a{color:#423f3b}#main-menu li.dropdown.eclipse-more .dropdown-menu a:hover{color:#6b655f;border:none}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box{border-top:none!important;border-left:none!important;border-right:none!important;border-bottom:1px solid inherit!important;background-color:transparent!important;border-radius:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;margin:10px auto!important;color:inherit!important;width:95%;margin:0!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box:-moz-placeholder,#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box::-moz-placeholder{color:inherit!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box:-ms-input-placeholder{color:inherit!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box::-webkit-input-placeholder{color:inherit!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box-focus,#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box:hover{border-top:none!important;border-left:none!important;border-right:none!important}.toolbar-row a{padding-bottom:1px}.toolbar-row a:hover{border-bottom:1px solid #ccc}}#header-row{padding-bottom:20px}.header-wrapper{background:#404040 100% 0 no-repeat;background-size:cover}.header-wrapper .featured-jumbotron{background-color:transparent}.header-default-bg-img{background-image:url(../images/vendor/eclipsefdn-solstice-components/landing-well/eclipse_home_bg.jpg?64547867c5e4ec0fcf669837305dc7a5)}.header-alternate-bg-img-1{background-image:url(../images/vendor/eclipsefdn-solstice-components/landing-well/eclipse_alternate_bg-1.jpg?1d805119502c5489dbed5cbc08f0c656)}.alternate-layout header{background-color:#fff}.alternate-layout #main-menu li.dropdown.eclipse-more.open>a{color:#35322f}#back-to-top a{border-top:none;padding:6px 15px;text-align:left;width:auto;float:left;margin-left:15px}@media (max-width:767px){#main-menu.navbar{border:0;border-bottom:none}#btn-call-for-action{padding-top:10px}#btn-call-for-action a{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}}@media (max-width:991px){#btn-call-for-action{padding-top:10px}#btn-call-for-action a{padding:5px 8px;font-size:12px;line-height:1.5;border-radius:0}}#adBlock,.cse .gsc-control-cse,.gsc-control-cse{background-color:#f9f9f9!important;border:none!important}.dropdown-menu .gsc-input-box{border-top:none!important;border-left:none!important;border-right:none!important;border-bottom:1px solid inherit!important;background-color:transparent!important;border-radius:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;margin:10px auto!important;color:inherit!important;width:95%;margin:0!important}.dropdown-menu .gsc-input-box:-moz-placeholder,.dropdown-menu .gsc-input-box::-moz-placeholder{color:inherit!important}.dropdown-menu .gsc-input-box:-ms-input-placeholder{color:inherit!important}.dropdown-menu .gsc-input-box::-webkit-input-placeholder{color:inherit!important}.dropdown-menu .gsc-input-box-focus,.dropdown-menu .gsc-input-box:hover{border-top:none!important;border-left:none!important;border-right:none!important;border-bottom:1px solid #d9d9d9!important}.gsc-search-button-v2{border:1px solid #f7941e!important;border-radius:0!important;-moz-border-radius:0!important;-webkit-border-radius:0!important;background-color:#f7941e!important;background-image:-webkit-gradient(linear,left top,left bottom,from(#f7941e),to(#f7941e))!important;background-image:linear-gradient(180deg,#f7941e,#f7941e)!important}.main-page-title{padding:20px 0 0}.main-page-title #main-sidebar{position:absolute;width:100%;padding-left:15px;padding-right:15px}#main-sidebar{color:#fff;position:relative}#main-sidebar .main-sidebar-html-block{background:#3f7b96;padding:20px;text-align:center}#main-sidebar .ul-left-nav{background:#3f7b96;padding:15px;position:relative;margin-bottom:0}#main-sidebar .ul-left-nav>li.separator{border:none}@media (min-width:992px){#main-sidebar:after{display:block;content:"";width:100%;height:40px;-webkit-clip-path:polygon(0 0,0 100%,100% 0);clip-path:polygon(0 0,0 100%,100% 0);position:relative;bottom:0;background:#3f7b96}}#main-sidebar a,#main-sidebar a:hover{color:#fff}#main-sidebar .separator{font-size:18px;font-weight:400}#main-sidebar .separator:hover{text-decoration:none}#main-sidebar li{border-bottom:1px solid #5297b6;padding-bottom:10px;margin-bottom:10px}#main-sidebar li:last-child{border-bottom:none}.sideitem h6{border-bottom:1px solid #989a9b}.sideitem ul{margin-left:10px}@media (min-width:992px){.main-sidebar-default-margin{margin-top:-20px}}@media (max-width:767px){footer#solstice-footer{text-align:center}footer#solstice-footer .nav{margin-left:0}}main{padding-top:0}#novaContent{color:#000;font-size:13px}#novaContent,#novaContent *,#novaContent :after,#novaContent :before{-webkit-box-sizing:content-box;box-sizing:content-box}#novaContent img{vertical-align:initial}#novaContent table{width:100%;max-width:100%}#novaContent table>tbody>tr>td,#novaContent table>tbody>tr>th,#novaContent table>tfoot>tr>td,#novaContent table>tfoot>tr>th,#novaContent table>thead>tr>td,#novaContent table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top}#novaContent table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #fff}#novaContent table th{text-align:center;background:#2f2f31;color:#fff;border:1px solid #ccc}#novaContent table th select{color:#2f2f31}#novaContent table th a,#novaContent table th a:link,#novaContent table th a:visited{color:#f7941e}#novaContent table th a:active,#novaContent table th a:hover{color:#fff}#novaContent table th.wa{text-align:left}#novaContent table>caption+thead>tr:first-child>td,#novaContent table>caption+thead>tr:first-child>th,#novaContent table>colgroup+thead>tr:first-child>td,#novaContent table>colgroup+thead>tr:first-child>th,#novaContent table>thead:first-child>tr:first-child>td,#novaContent table>thead:first-child>tr:first-child>th{border-top:0}#novaContent table>tbody+tbody{border-top:2px solid #fff}#novaContent table .table{background-color:#f9f9f9}#novaContent td.al,#novaContent td.GenText,#novaContent td.vt{border:none}#novaContent .clearer{clear:both}#novaContent .ForumBackground{border:0;font-size:13px}#novaContent .ForumBackground #midcolumn{padding-left:0;font-size:13px}#novaContent .ForumBackground .sideitem,#novaContent .ForumBackground table{font-size:13px}#novaContent td.header{padding:0}#novaContent a.CatLink{font-size:14px;font-weight:700;text-decoration:none;color:#000}#novaContent .CatDesc{color:#000;height:23px;background:#ccc;padding-left:5px!important}#novaContent a.UserControlPanel,#novaContent a.UserControlPanel:visited{text-decoration:none}#novaContent div.UserControlPanel{margin-bottom:5px;text-align:right}#novaContent .CatLockedName{font-size:14px;font-weight:700}#novaContent .CatLockPad{padding-left:20px}#novaContent .GenText,#novaContent .MsgIg,#novaContent td.repI{color:#000}#novaContent .GenTextRed{color:red}#novaContent .ErrorText{color:red;font-weight:700}#novaContent .DateText,#novaContent .SmallText,#novaContent .TopBy,#novaContent td.permNO,#novaContent td.permYES{color:#202020;font-size:10px}#novaContent .DateText a:hover,#novaContent .DateText a:link,#novaContent .DateText a:visited,#novaContent .SmallText a:hover,#novaContent .SmallText a:link,#novaContent .SmallText a:visited,#novaContent .TopBy a:hover,#novaContent .TopBy a:link,#novaContent .TopBy a:visited,#novaContent td.permNO a:hover,#novaContent td.permNO a:link,#novaContent td.permNO a:visited,#novaContent td.permYES a:hover,#novaContent td.permYES a:link,#novaContent td.permYES a:visited{color:#f7941e}#novaContent .RowStyleA,#novaContent td.tt{background:#eee;border-bottom:solid;border-color:#dee2e6}#novaContent .RowStyleA.wo{border:none}#novaContent .RowStyleB{background:#dee2e6}#novaContent .RowStyleC{background:#c2cdd6}#novaContent .MsgToolBar{background:#dee2e6;padding-left:3px;padding-right:3px}#novaContent .MsgSpacer{padding:2px 0}#novaContent font.ptp{font-size:smaller;padding-left:10px}#novaContent .DialogTable{width:66%}#novaContent .PreviewTable{width:75%}#novaContent .AnnText{color:#000;background:#f5d300}#novaContent .AnnSubjText{font-weight:700}#novaContent .MsgSubText{font-weight:700;font-size:13px}#novaContent a.MsgSubText,#novaContent a.MsgSubText:visited{color:#000;text-decoration:none}#novaContent .MsgBodyText{font-size:13px}#novaContent .FormattingToolsBG{background:#000}#novaContent .FormattingToolsCLR{background:#fff}#novaContent .MiniTable{background:#fff;border:0;padding:0;margin:0}#novaContent cite{color:#202020;font-size:11px;font-weight:700;margin-left:20px;display:block;background:transparent url("/eclipse.org-common/themes/solstice/public/images/forums/quote.gif") 0 0 no-repeat;padding-left:25px}#novaContent blockquote{color:#444;background:#fafafa;border-left:1px dashed #c2cdd6;margin:8px 1px 0 20px;overflow:hidden;padding:5px}#novaContent blockquote:first-letter{margin:.2em .2em .1em 0;font-family:Monotype Corsiva,Apple Chancery,fantasy;font-size:220%;font-weight:700;font-variant:small-caps}#novaContent blockquote blockquote{background-color:#f0f0f0;margin:8px 1px 0 10px}#novaContent blockquote blockquote blockquote{background-color:#e0e0e0}#novaContent .quote{color:#444;background:#fafafa;border:1px solid #c2cdd6}#novaContent .dashed{border:1px dashed #1b7cad}#novaContent .adminColor{font-weight:700;color:red}#novaContent .modsColor{color:#0b0;font-weight:700}#novaContent .brdrNormal,#novaContent td.tabIbot,#novaContent td.tabImid,#novaContent td.tabItop{border:#000;border-style:solid;border-left-width:0;border-top-width:0;border-right-width:0;border-bottom-width:1px;background-repeat:repeat;background-position:top}#novaContent .brdrSelected,#novaContent td.tabAbot,#novaContent td.tabAmid{border:#000;border-style:solid;border:0;background-repeat:repeat;background-position:top}#novaContent form{padding:0;margin:0}#novaContent img{border:0}#novaContent a[href^="mailto:"]{background:url(/eclipse.org-common/themes/solstice/public/images/forums/email.png) no-repeat 100%;padding-right:17px}#novaContent .StClr{font-weight:700;color:green}#novaContent .AnClr{font-weight:700;color:red}#novaContent .ModOpt,#novaContent .ModOpt a{color:#a8b1b8;margin-top:2px;font-size:small;text-align:right}#novaContent .TopBy{margin-top:3px;margin-bottom:0;padding-right:2px;text-align:right}#novaContent .MsgIg,#novaContent .MsgR1,#novaContent .MsgR2,#novaContent .MsgR3{background:#dee2e6;border-bottom:none;padding:2px}#novaContent .MsgIg{border:0}#novaContent .MsgR1{background:#ccd4dc}#novaContent .MsgR3{background:#f4f4f4;padding:1ex;padding-top:2ex}#novaContent .mnavMsg{border-bottom:1px dashed #eee;width:100%}#novaContent .mnavWarnTbl{border:1px dashed red}#novaContent .mnavNoRes{border:1px dashed blue}#novaContent font.lg{font-size:14px}#novaContent td.tt{text-align:left;width:100%;border-bottom:1px solid #fff}#novaContent table.tt{width:100%;padding:1px;margin:0;text-align:center;border:1px solid #000}#novaContent a.big:active,#novaContent a.big:link,#novaContent a.big:visited{font-size:15px}#novaContent .small,#novaContent a.small:active,#novaContent a.small:link,#novaContent a.small:visited{font-size:13px;font-weight:400}#novaContent div.ctags,#novaContent td.msgot,#novaContent td.msgot a,#novaContent td.msgud{color:#202020;font-size:11px;vertical-align:top;width:33%;white-space:nowrap}#novaContent td.msgud{padding-right:10px;text-align:left}#novaContent td.msgot{text-align:right}#novaContent div.ctags{padding:2px;width:100%}#novaContent th.SelFS,#novaContent th.SelTS{padding:6px 8px;background:#2f2f31;color:#fff;text-align:left}#novaContent th.SelFS select,#novaContent th.SelTS select{color:#2f2f31}#novaContent th.SelFS a,#novaContent th.SelFS a:link,#novaContent th.SelFS a:visited,#novaContent th.SelTS a,#novaContent th.SelTS a:link,#novaContent th.SelTS a:visited{color:#f7941e}#novaContent th.SelFS a:active,#novaContent th.SelFS a:hover,#novaContent th.SelTS a:active,#novaContent th.SelTS a:hover{color:#fff}#novaContent th.SelFS{border-bottom:1px solid #fff;color:#fff}#novaContent td.NoAvatar{background:#f4f4f4;text-align:center}#novaContent td.Av1,#novaContent td.Av2{text-align:center;background:#f4f4f4;vertical-align:middle;white-space:nowrap}#novaContent td.Av2{background:#fefefe}#novaContent td.tabA,#novaContent td.tabI,#novaContent td.tabI:hover,#novaContent td.tabON,#novaContent td.tabOVER{border:1px solid #000;background:#dee7f7;padding:2px}#novaContent td.tabI:active,#novaContent td.tabI:hover,#novaContent td.tabOVER{background:#fff}#novaContent td.tabON{background:#5279bd}#novaContent a.tabON:active,#novaContent a.tabON:hover,#novaContent a.tabON:link,#novaContent a.tabON:visited{color:#fff;font-weight:700;text-decoration:none}#novaContent div.tabT{padding:1px;padding-left:10px;padding-right:10px}#novaContent table.tab{border-bottom:1px solid #000}#novaContent td.pmSn{background:#fff}#novaContent td.pmSa{background:#fffa00}#novaContent td.pmSf{background:red}#novaContent table.pmDu{width:175px;background-color:#fff;border:1px solid #c2cdd6}#novaContent td.mvTc{background:#e5ffe7}#novaContent td.pmNav{background:#fff;text-align:right}#novaContent td.miniMH{text-align:center}#novaContent tr.mnavH{background:#eee}#novaContent tr.mnavM{background:#dee2e6}#novaContent table.regConf{width:80%;border:1px dashed red}#novaContent font.anon,#novaContent font.reg{color:#0a0}#novaContent td.permNO,#novaContent td.permYES{text-align:center;color:red;white-space:nowrap}#novaContent td.permNO{color:blue}#novaContent font.regEW{font-size:xx-small;color:#050;font-weight:700}#novaContent td.repI{padding:5px;padding-left:20px}#novaContent table.pad{margin-top:2px;margin-bottom:2px}#novaContent font.selmsgInd{font-size:xx-small;font-weight:700;text-decoration:none}#novaContent td.avatarPad{padding-right:3px;vertical-align:top}#novaContent div.pre{font-family:monospace;padding:5px;border:1px dashed blue;font-size:14px;white-space:pre;background:#fafafa;overflow:auto;margin:5px}#novaContent pre{white-space:pre-wrap}#novaContent .codehead,#novaContent .codehead a{color:#202020;background:#e9e9e9;font-size:xx-small;font-weight:700}#novaContent html pre.prettyprint{border:none;padding:0;margin:5px}#novaContent a.big:active,#novaContent a.CatLink:active,#novaContent a.MsgSubText:active,#novaContent a.PagerLink:active,#novaContent a.small:active,#novaContent a.thLnk:active,#novaContent a.UserControlPanel:active,#novaContent a:active{color:#dc143c}#novaContent img.l{float:left;clear:right;margin:3px}#novaContent img.r{float:right;clear:left;margin:3px}#novaContent .AttachmentsList{margin-left:0;list-style:none;margin-top:10px;padding:0}#novaContent .signature{border-top:1px dotted #a0a0a0;color:#202020;font-size:10px}#novaContent td.header .headtitle{font-family:inherit;font-weight:200;line-height:1.1;color:#4c4d4e;margin-top:20px;margin-bottom:10px;font-size:36px}#novaContent td.header .headtitle .small,#novaContent td.header .headtitle small{font-weight:400;line-height:1;color:#777;font-size:65%}#novaContent td.header a:link,#novaContent td.header a:visited{color:#333}#novaContent td.header a:active,#novaContent td.header a:hover{color:#f7941e}#novaContent #headsearch{float:right;font-size:small;font-weight:700;vertical-align:top}#novaContent .headbutton{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-transform:none;color:#fff;background-color:#f7941e;border-color:#f7941e}#novaContent .headbutton.active.focus,#novaContent .headbutton.active:focus,#novaContent .headbutton.focus,#novaContent .headbutton:active.focus,#novaContent .headbutton:active:focus,#novaContent .headbutton:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#novaContent .headbutton.focus,#novaContent .headbutton:focus,#novaContent .headbutton:hover{color:#333;text-decoration:none}#novaContent .headbutton.active,#novaContent .headbutton:active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}#novaContent .headbutton.disabled,#novaContent .headbutton[disabled],fieldset[disabled] #novaContent .headbutton{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a#novaContent .headbutton.disabled,fieldset[disabled] a#novaContent .headbutton{pointer-events:none}#novaContent .headbutton:visited{color:#fff}#novaContent .headbutton.focus,#novaContent .headbutton:focus{color:#fff;background-color:#da7a08;border-color:#905105}#novaContent .headbutton.active,#novaContent .headbutton:active,#novaContent .headbutton:hover,.open>.dropdown-toggle#novaContent .headbutton{color:#fff;background-color:#da7a08;border-color:#d07507}#novaContent .headbutton.active.focus,#novaContent .headbutton.active:focus,#novaContent .headbutton.active:hover,#novaContent .headbutton:active.focus,#novaContent .headbutton:active:focus,#novaContent .headbutton:active:hover,.open>.dropdown-toggle#novaContent .headbutton.focus,.open>.dropdown-toggle#novaContent .headbutton:focus,.open>.dropdown-toggle#novaContent .headbutton:hover{color:#fff;background-color:#b86707;border-color:#905105}#novaContent .headbutton.active,#novaContent .headbutton:active,.open>.dropdown-toggle#novaContent .headbutton{background-image:none}#novaContent .headbutton.disabled.focus,#novaContent .headbutton.disabled:focus,#novaContent .headbutton.disabled:hover,#novaContent .headbutton[disabled].focus,#novaContent .headbutton[disabled]:focus,#novaContent .headbutton[disabled]:hover,fieldset[disabled] #novaContent .headbutton.focus,fieldset[disabled] #novaContent .headbutton:focus,fieldset[disabled] #novaContent .headbutton:hover{background-color:#f7941e;border-color:#f7941e}#novaContent .headbutton .badge{color:#f7941e;background-color:#fff}#novaContent .resizable-textarea .grippie{height:9px;background:#eee url("/eclipse.org-common/themes/solstice/public/images/forums/grippie.gif") no-repeat center 2px;border:1px solid #ddd;border-top-width:0;cursor:s-resize;overflow:hidden}#novaContent .wo{width:1px}#novaContent .wa{width:100%}#novaContent .al{text-align:left}#novaContent .ar{text-align:right}#novaContent .fl{float:left}#novaContent .fr{float:right}#novaContent .ac{text-align:center}#novaContent .vb{vertical-align:bottom}#novaContent .vt{vertical-align:top}#novaContent .vm{vertical-align:middle}#novaContent .nw{white-space:nowrap}#novaContent .fb{font-weight:700}#novaContent .clear{clear:both}#novaContent img.at{float:left;clear:left}#novaContent div.sr{float:left;padding:5px}#novaContent div.ctb th{border:1px solid #ccc}#novaContent div.ctb .RowStyleC{display:none}#novaContent div.foot{padding:3px;margin:3px}#novaContent div.ip{overflow:auto;margin:0;padding:2px;width:600px;height:400px}#novaContent span.vt{padding-left:20px}#novaContent table.icqCP{font-family:arial,sans-serif;font-size:smaller;border:0}#novaContent div.pmL{padding-top:2px}#novaContent table.ucPW{width:175px}#novaContent .st0{background-color:#ff6}#novaContent .st1{background-color:#a0ffff}#novaContent .st2{background-color:#9f9}#novaContent .st3{background-color:#f99}#novaContent .st4{background-color:#f6f}#novaContent .st5{background-color:#800}#novaContent .st6{background-color:#0a0}#novaContent .st7{background-color:#886800}#novaContent .st8{background-color:#004699}#novaContent .st9{background-color:#909}#novaContent table.calendar{border-left:1px solid #999}#novaContent td.calendar-day{min-height:80px;font-size:11px;position:relative}#novaContent * html div.calendar-day{height:80px}#novaContent td.calendar-day:hover{background:#eceff5}#novaContent td.calendar-day-np{background:#eee;min-height:80px}#novaContent * html div.calendar-day-np{height:80px}#novaContent td.calendar-day-head{background:#ccc;font-weight:700;text-align:center;width:120px;padding:5px;border-bottom:1px solid #999;border-top:1px solid #999;border-right:1px solid #999}#novaContent div.day-number{background:#999;position:absolute;z-index:2;top:-5px;right:-25px;padding:5px;color:#fff;font-weight:700;width:20px;text-align:center}#novaContent td.calendar-day,#novaContent td.calendar-day-np{width:120px;padding:5px 25px 5px 5px;border-bottom:1px solid #999;border-right:1px solid #999}#novaContent input.button,#novaContent input.button:link,#novaContent input.button:visited{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-transform:none;color:#fff;background-color:#f7941e;border-color:#f7941e}#novaContent input.button.active.focus,#novaContent input.button.active:focus,#novaContent input.button.focus,#novaContent input.button:active.focus,#novaContent input.button:active:focus,#novaContent input.button:focus,#novaContent input.button:link.active.focus,#novaContent input.button:link.active:focus,#novaContent input.button:link.focus,#novaContent input.button:link:active.focus,#novaContent input.button:link:active:focus,#novaContent input.button:link:focus,#novaContent input.button:visited.active.focus,#novaContent input.button:visited.active:focus,#novaContent input.button:visited.focus,#novaContent input.button:visited:active.focus,#novaContent input.button:visited:active:focus,#novaContent input.button:visited:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#novaContent input.button.focus,#novaContent input.button:focus,#novaContent input.button:hover,#novaContent input.button:link.focus,#novaContent input.button:link:focus,#novaContent input.button:link:hover,#novaContent input.button:visited.focus,#novaContent input.button:visited:focus,#novaContent input.button:visited:hover{color:#333;text-decoration:none}#novaContent input.button.active,#novaContent input.button:active,#novaContent input.button:link.active,#novaContent input.button:link:active,#novaContent input.button:visited.active,#novaContent input.button:visited:active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}#novaContent input.button.disabled,#novaContent input.button:link.disabled,#novaContent input.button:link[disabled],#novaContent input.button:visited.disabled,#novaContent input.button:visited[disabled],#novaContent input.button[disabled],fieldset[disabled] #novaContent input.button,fieldset[disabled] #novaContent input.button:link,fieldset[disabled] #novaContent input.button:visited{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a#novaContent input.button.disabled,a#novaContent input.button:link.disabled,a#novaContent input.button:visited.disabled,fieldset[disabled] a#novaContent input.button,fieldset[disabled] a#novaContent input.button:link,fieldset[disabled] a#novaContent input.button:visited{pointer-events:none}#novaContent input.button:link:visited,#novaContent input.button:visited,#novaContent input.button:visited:visited{color:#fff}#novaContent input.button.focus,#novaContent input.button:focus,#novaContent input.button:link.focus,#novaContent input.button:link:focus,#novaContent input.button:visited.focus,#novaContent input.button:visited:focus{color:#fff;background-color:#da7a08;border-color:#905105}#novaContent input.button.active,#novaContent input.button:active,#novaContent input.button:hover,#novaContent input.button:link.active,#novaContent input.button:link:active,#novaContent input.button:link:hover,#novaContent input.button:visited.active,#novaContent input.button:visited:active,#novaContent input.button:visited:hover,.open>.dropdown-toggle#novaContent input.button,.open>.dropdown-toggle#novaContent input.button:link,.open>.dropdown-toggle#novaContent input.button:visited{color:#fff;background-color:#da7a08;border-color:#d07507}#novaContent input.button.active.focus,#novaContent input.button.active:focus,#novaContent input.button.active:hover,#novaContent input.button:active.focus,#novaContent input.button:active:focus,#novaContent input.button:active:hover,#novaContent input.button:link.active.focus,#novaContent input.button:link.active:focus,#novaContent input.button:link.active:hover,#novaContent input.button:link:active.focus,#novaContent input.button:link:active:focus,#novaContent input.button:link:active:hover,#novaContent input.button:visited.active.focus,#novaContent input.button:visited.active:focus,#novaContent input.button:visited.active:hover,#novaContent input.button:visited:active.focus,#novaContent input.button:visited:active:focus,#novaContent input.button:visited:active:hover,.open>.dropdown-toggle#novaContent input.button.focus,.open>.dropdown-toggle#novaContent input.button:focus,.open>.dropdown-toggle#novaContent input.button:hover,.open>.dropdown-toggle#novaContent input.button:link.focus,.open>.dropdown-toggle#novaContent input.button:link:focus,.open>.dropdown-toggle#novaContent input.button:link:hover,.open>.dropdown-toggle#novaContent input.button:visited.focus,.open>.dropdown-toggle#novaContent input.button:visited:focus,.open>.dropdown-toggle#novaContent input.button:visited:hover{color:#fff;background-color:#b86707;border-color:#905105}#novaContent input.button.active,#novaContent input.button:active,#novaContent input.button:link.active,#novaContent input.button:link:active,#novaContent input.button:visited.active,#novaContent input.button:visited:active,.open>.dropdown-toggle#novaContent input.button,.open>.dropdown-toggle#novaContent input.button:link,.open>.dropdown-toggle#novaContent input.button:visited{background-image:none}#novaContent input.button.disabled.focus,#novaContent input.button.disabled:focus,#novaContent input.button.disabled:hover,#novaContent input.button:link.disabled.focus,#novaContent input.button:link.disabled:focus,#novaContent input.button:link.disabled:hover,#novaContent input.button:link[disabled].focus,#novaContent input.button:link[disabled]:focus,#novaContent input.button:link[disabled]:hover,#novaContent input.button:visited.disabled.focus,#novaContent input.button:visited.disabled:focus,#novaContent input.button:visited.disabled:hover,#novaContent input.button:visited[disabled].focus,#novaContent input.button:visited[disabled]:focus,#novaContent input.button:visited[disabled]:hover,#novaContent input.button[disabled].focus,#novaContent input.button[disabled]:focus,#novaContent input.button[disabled]:hover,fieldset[disabled] #novaContent input.button.focus,fieldset[disabled] #novaContent input.button:focus,fieldset[disabled] #novaContent input.button:hover,fieldset[disabled] #novaContent input.button:link.focus,fieldset[disabled] #novaContent input.button:link:focus,fieldset[disabled] #novaContent input.button:link:hover,fieldset[disabled] #novaContent input.button:visited.focus,fieldset[disabled] #novaContent input.button:visited:focus,fieldset[disabled] #novaContent input.button:visited:hover{background-color:#f7941e;border-color:#f7941e}#novaContent input.button .badge,#novaContent input.button:link .badge,#novaContent input.button:visited .badge{color:#f7941e;background-color:#fff}#novaContent .small.button{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/stylesheets/jakarta.min.css b/eclipse.org-common/themes/solstice/public/stylesheets/jakarta.min.css
new file mode 100644
index 0000000..17a76b3
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/stylesheets/jakarta.min.css
@@ -0,0 +1,36 @@
+.cc-window{opacity:1;-webkit-transition:opacity 1s ease;transition:opacity 1s ease}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{-webkit-transition:-webkit-transform 1s ease;transition:-webkit-transform 1s ease;transition:transform 1s ease;transition:transform 1s ease,-webkit-transform 1s ease}.cc-animate.cc-revoke.cc-top{-webkit-transform:translateY(-2em);transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{-webkit-transform:translateY(2em);transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-bottom,.cc-animate.cc-revoke.cc-active.cc-top,.cc-revoke:hover{-webkit-transform:translateY(0);transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;-webkit-transition:max-height 1s;transition:max-height 1s}.cc-link,.cc-revoke:hover{text-decoration:underline}.cc-revoke,.cc-window{position:fixed;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica,Calibri,Arial,sans-serif;font-size:16px;line-height:1.5em;display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;max-width:24em;-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.cc-window.cc-banner{padding:1em 1.8em;width:100%;-ms-flex-direction:row;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.cc-revoke{padding:.5em}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;padding:.2em}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-banner .cc-btn:last-child{min-width:140px}.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:focus,.cc-close:hover{opacity:1}.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{display:block;margin-bottom:1em}.cc-window.cc-floating .cc-compliance{-ms-flex:1 0 auto;-webkit-box-flex:1;flex:1 0 auto}.cc-window.cc-banner{-ms-flex-align:center;-webkit-box-align:center;align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{-ms-flex:1;-webkit-box-flex:1;flex:1}.cc-compliance{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;-ms-flex-line-pack:justify;align-content:space-between}.cc-compliance>.cc-btn{-ms-flex:1;-webkit-box-flex:1;flex:1}.cc-btn+.cc-btn{margin-left:.5em}@media print{.cc-revoke,.cc-window{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}.cc-window.cc-banner{-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.cc-window.cc-banner .cc-compliance{-ms-flex:1;-webkit-box-flex:1;flex:1}.cc-window.cc-floating{max-width:none}.cc-window .cc-message{margin-bottom:1em}.cc-window.cc-banner{-ms-flex-align:unset;-webkit-box-align:unset;align-items:unset}}.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;-ms-flex:none;-webkit-box-flex:0;flex:none}.cc-theme-classic .cc-btn{border-radius:5px}.cc-theme-classic .cc-btn:last-child{min-width:140px}.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}.cc-theme-edgeless.cc-window{padding:0}.cc-floating.cc-theme-edgeless .cc-message{margin:2em 2em 1.5em}.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}/*!
+ * Copyright (c) 2018 Eclipse Foundation, Inc.
+ * 
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v. 2.0 which is available at
+ * http://www.eclipse.org/legal/epl-2.0.
+ * 
+ * Contributors:
+ *   Christopher Guindon <chris.guindon@eclipse-foundation.org>
+ *   Eric Poirier <eric.poirier@eclipse-foundation.org>
+ * 
+ * SPDX-License-Identifier: EPL-2.0
+*//*!
+ * Copyright (c) 2018 Eclipse Foundation, Inc.
+ * 
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v. 2.0 which is available at
+ * http://www.eclipse.org/legal/epl-2.0.
+ * 
+ * Contributors:
+ *   Christopher Guindon <chris.guindon@eclipse-foundation.org>
+ * 
+ * SPDX-License-Identifier: EPL-2.0
+*//*!
+ *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */@font-face{font-family:FontAwesome;src:url(../fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);src:url(../fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix&v=4.7.0) format("embedded-opentype"),url(../fonts/vendor/font-awesome/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(../fonts/vendor/font-awesome/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(../fonts/vendor/font-awesome/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(../fonts/vendor/font-awesome/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\F000"}.fa-music:before{content:"\F001"}.fa-search:before{content:"\F002"}.fa-envelope-o:before{content:"\F003"}.fa-heart:before{content:"\F004"}.fa-star:before{content:"\F005"}.fa-star-o:before{content:"\F006"}.fa-user:before{content:"\F007"}.fa-film:before{content:"\F008"}.fa-th-large:before{content:"\F009"}.fa-th:before{content:"\F00A"}.fa-th-list:before{content:"\F00B"}.fa-check:before{content:"\F00C"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\F00D"}.fa-search-plus:before{content:"\F00E"}.fa-search-minus:before{content:"\F010"}.fa-power-off:before{content:"\F011"}.fa-signal:before{content:"\F012"}.fa-cog:before,.fa-gear:before{content:"\F013"}.fa-trash-o:before{content:"\F014"}.fa-home:before{content:"\F015"}.fa-file-o:before{content:"\F016"}.fa-clock-o:before{content:"\F017"}.fa-road:before{content:"\F018"}.fa-download:before{content:"\F019"}.fa-arrow-circle-o-down:before{content:"\F01A"}.fa-arrow-circle-o-up:before{content:"\F01B"}.fa-inbox:before{content:"\F01C"}.fa-play-circle-o:before{content:"\F01D"}.fa-repeat:before,.fa-rotate-right:before{content:"\F01E"}.fa-refresh:before{content:"\F021"}.fa-list-alt:before{content:"\F022"}.fa-lock:before{content:"\F023"}.fa-flag:before{content:"\F024"}.fa-headphones:before{content:"\F025"}.fa-volume-off:before{content:"\F026"}.fa-volume-down:before{content:"\F027"}.fa-volume-up:before{content:"\F028"}.fa-qrcode:before{content:"\F029"}.fa-barcode:before{content:"\F02A"}.fa-tag:before{content:"\F02B"}.fa-tags:before{content:"\F02C"}.fa-book:before{content:"\F02D"}.fa-bookmark:before{content:"\F02E"}.fa-print:before{content:"\F02F"}.fa-camera:before{content:"\F030"}.fa-font:before{content:"\F031"}.fa-bold:before{content:"\F032"}.fa-italic:before{content:"\F033"}.fa-text-height:before{content:"\F034"}.fa-text-width:before{content:"\F035"}.fa-align-left:before{content:"\F036"}.fa-align-center:before{content:"\F037"}.fa-align-right:before{content:"\F038"}.fa-align-justify:before{content:"\F039"}.fa-list:before{content:"\F03A"}.fa-dedent:before,.fa-outdent:before{content:"\F03B"}.fa-indent:before{content:"\F03C"}.fa-video-camera:before{content:"\F03D"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\F03E"}.fa-pencil:before{content:"\F040"}.fa-map-marker:before{content:"\F041"}.fa-adjust:before{content:"\F042"}.fa-tint:before{content:"\F043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\F044"}.fa-share-square-o:before{content:"\F045"}.fa-check-square-o:before{content:"\F046"}.fa-arrows:before{content:"\F047"}.fa-step-backward:before{content:"\F048"}.fa-fast-backward:before{content:"\F049"}.fa-backward:before{content:"\F04A"}.fa-play:before{content:"\F04B"}.fa-pause:before{content:"\F04C"}.fa-stop:before{content:"\F04D"}.fa-forward:before{content:"\F04E"}.fa-fast-forward:before{content:"\F050"}.fa-step-forward:before{content:"\F051"}.fa-eject:before{content:"\F052"}.fa-chevron-left:before{content:"\F053"}.fa-chevron-right:before{content:"\F054"}.fa-plus-circle:before{content:"\F055"}.fa-minus-circle:before{content:"\F056"}.fa-times-circle:before{content:"\F057"}.fa-check-circle:before{content:"\F058"}.fa-question-circle:before{content:"\F059"}.fa-info-circle:before{content:"\F05A"}.fa-crosshairs:before{content:"\F05B"}.fa-times-circle-o:before{content:"\F05C"}.fa-check-circle-o:before{content:"\F05D"}.fa-ban:before{content:"\F05E"}.fa-arrow-left:before{content:"\F060"}.fa-arrow-right:before{content:"\F061"}.fa-arrow-up:before{content:"\F062"}.fa-arrow-down:before{content:"\F063"}.fa-mail-forward:before,.fa-share:before{content:"\F064"}.fa-expand:before{content:"\F065"}.fa-compress:before{content:"\F066"}.fa-plus:before{content:"\F067"}.fa-minus:before{content:"\F068"}.fa-asterisk:before{content:"\F069"}.fa-exclamation-circle:before{content:"\F06A"}.fa-gift:before{content:"\F06B"}.fa-leaf:before{content:"\F06C"}.fa-fire:before{content:"\F06D"}.fa-eye:before{content:"\F06E"}.fa-eye-slash:before{content:"\F070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\F071"}.fa-plane:before{content:"\F072"}.fa-calendar:before{content:"\F073"}.fa-random:before{content:"\F074"}.fa-comment:before{content:"\F075"}.fa-magnet:before{content:"\F076"}.fa-chevron-up:before{content:"\F077"}.fa-chevron-down:before{content:"\F078"}.fa-retweet:before{content:"\F079"}.fa-shopping-cart:before{content:"\F07A"}.fa-folder:before{content:"\F07B"}.fa-folder-open:before{content:"\F07C"}.fa-arrows-v:before{content:"\F07D"}.fa-arrows-h:before{content:"\F07E"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\F080"}.fa-twitter-square:before{content:"\F081"}.fa-facebook-square:before{content:"\F082"}.fa-camera-retro:before{content:"\F083"}.fa-key:before{content:"\F084"}.fa-cogs:before,.fa-gears:before{content:"\F085"}.fa-comments:before{content:"\F086"}.fa-thumbs-o-up:before{content:"\F087"}.fa-thumbs-o-down:before{content:"\F088"}.fa-star-half:before{content:"\F089"}.fa-heart-o:before{content:"\F08A"}.fa-sign-out:before{content:"\F08B"}.fa-linkedin-square:before{content:"\F08C"}.fa-thumb-tack:before{content:"\F08D"}.fa-external-link:before{content:"\F08E"}.fa-sign-in:before{content:"\F090"}.fa-trophy:before{content:"\F091"}.fa-github-square:before{content:"\F092"}.fa-upload:before{content:"\F093"}.fa-lemon-o:before{content:"\F094"}.fa-phone:before{content:"\F095"}.fa-square-o:before{content:"\F096"}.fa-bookmark-o:before{content:"\F097"}.fa-phone-square:before{content:"\F098"}.fa-twitter:before{content:"\F099"}.fa-facebook-f:before,.fa-facebook:before{content:"\F09A"}.fa-github:before{content:"\F09B"}.fa-unlock:before{content:"\F09C"}.fa-credit-card:before{content:"\F09D"}.fa-feed:before,.fa-rss:before{content:"\F09E"}.fa-hdd-o:before{content:"\F0A0"}.fa-bullhorn:before{content:"\F0A1"}.fa-bell:before{content:"\F0F3"}.fa-certificate:before{content:"\F0A3"}.fa-hand-o-right:before{content:"\F0A4"}.fa-hand-o-left:before{content:"\F0A5"}.fa-hand-o-up:before{content:"\F0A6"}.fa-hand-o-down:before{content:"\F0A7"}.fa-arrow-circle-left:before{content:"\F0A8"}.fa-arrow-circle-right:before{content:"\F0A9"}.fa-arrow-circle-up:before{content:"\F0AA"}.fa-arrow-circle-down:before{content:"\F0AB"}.fa-globe:before{content:"\F0AC"}.fa-wrench:before{content:"\F0AD"}.fa-tasks:before{content:"\F0AE"}.fa-filter:before{content:"\F0B0"}.fa-briefcase:before{content:"\F0B1"}.fa-arrows-alt:before{content:"\F0B2"}.fa-group:before,.fa-users:before{content:"\F0C0"}.fa-chain:before,.fa-link:before{content:"\F0C1"}.fa-cloud:before{content:"\F0C2"}.fa-flask:before{content:"\F0C3"}.fa-cut:before,.fa-scissors:before{content:"\F0C4"}.fa-copy:before,.fa-files-o:before{content:"\F0C5"}.fa-paperclip:before{content:"\F0C6"}.fa-floppy-o:before,.fa-save:before{content:"\F0C7"}.fa-square:before{content:"\F0C8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\F0C9"}.fa-list-ul:before{content:"\F0CA"}.fa-list-ol:before{content:"\F0CB"}.fa-strikethrough:before{content:"\F0CC"}.fa-underline:before{content:"\F0CD"}.fa-table:before{content:"\F0CE"}.fa-magic:before{content:"\F0D0"}.fa-truck:before{content:"\F0D1"}.fa-pinterest:before{content:"\F0D2"}.fa-pinterest-square:before{content:"\F0D3"}.fa-google-plus-square:before{content:"\F0D4"}.fa-google-plus:before{content:"\F0D5"}.fa-money:before{content:"\F0D6"}.fa-caret-down:before{content:"\F0D7"}.fa-caret-up:before{content:"\F0D8"}.fa-caret-left:before{content:"\F0D9"}.fa-caret-right:before{content:"\F0DA"}.fa-columns:before{content:"\F0DB"}.fa-sort:before,.fa-unsorted:before{content:"\F0DC"}.fa-sort-desc:before,.fa-sort-down:before{content:"\F0DD"}.fa-sort-asc:before,.fa-sort-up:before{content:"\F0DE"}.fa-envelope:before{content:"\F0E0"}.fa-linkedin:before{content:"\F0E1"}.fa-rotate-left:before,.fa-undo:before{content:"\F0E2"}.fa-gavel:before,.fa-legal:before{content:"\F0E3"}.fa-dashboard:before,.fa-tachometer:before{content:"\F0E4"}.fa-comment-o:before{content:"\F0E5"}.fa-comments-o:before{content:"\F0E6"}.fa-bolt:before,.fa-flash:before{content:"\F0E7"}.fa-sitemap:before{content:"\F0E8"}.fa-umbrella:before{content:"\F0E9"}.fa-clipboard:before,.fa-paste:before{content:"\F0EA"}.fa-lightbulb-o:before{content:"\F0EB"}.fa-exchange:before{content:"\F0EC"}.fa-cloud-download:before{content:"\F0ED"}.fa-cloud-upload:before{content:"\F0EE"}.fa-user-md:before{content:"\F0F0"}.fa-stethoscope:before{content:"\F0F1"}.fa-suitcase:before{content:"\F0F2"}.fa-bell-o:before{content:"\F0A2"}.fa-coffee:before{content:"\F0F4"}.fa-cutlery:before{content:"\F0F5"}.fa-file-text-o:before{content:"\F0F6"}.fa-building-o:before{content:"\F0F7"}.fa-hospital-o:before{content:"\F0F8"}.fa-ambulance:before{content:"\F0F9"}.fa-medkit:before{content:"\F0FA"}.fa-fighter-jet:before{content:"\F0FB"}.fa-beer:before{content:"\F0FC"}.fa-h-square:before{content:"\F0FD"}.fa-plus-square:before{content:"\F0FE"}.fa-angle-double-left:before{content:"\F100"}.fa-angle-double-right:before{content:"\F101"}.fa-angle-double-up:before{content:"\F102"}.fa-angle-double-down:before{content:"\F103"}.fa-angle-left:before{content:"\F104"}.fa-angle-right:before{content:"\F105"}.fa-angle-up:before{content:"\F106"}.fa-angle-down:before{content:"\F107"}.fa-desktop:before{content:"\F108"}.fa-laptop:before{content:"\F109"}.fa-tablet:before{content:"\F10A"}.fa-mobile-phone:before,.fa-mobile:before{content:"\F10B"}.fa-circle-o:before{content:"\F10C"}.fa-quote-left:before{content:"\F10D"}.fa-quote-right:before{content:"\F10E"}.fa-spinner:before{content:"\F110"}.fa-circle:before{content:"\F111"}.fa-mail-reply:before,.fa-reply:before{content:"\F112"}.fa-github-alt:before{content:"\F113"}.fa-folder-o:before{content:"\F114"}.fa-folder-open-o:before{content:"\F115"}.fa-smile-o:before{content:"\F118"}.fa-frown-o:before{content:"\F119"}.fa-meh-o:before{content:"\F11A"}.fa-gamepad:before{content:"\F11B"}.fa-keyboard-o:before{content:"\F11C"}.fa-flag-o:before{content:"\F11D"}.fa-flag-checkered:before{content:"\F11E"}.fa-terminal:before{content:"\F120"}.fa-code:before{content:"\F121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\F122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\F123"}.fa-location-arrow:before{content:"\F124"}.fa-crop:before{content:"\F125"}.fa-code-fork:before{content:"\F126"}.fa-chain-broken:before,.fa-unlink:before{content:"\F127"}.fa-question:before{content:"\F128"}.fa-info:before{content:"\F129"}.fa-exclamation:before{content:"\F12A"}.fa-superscript:before{content:"\F12B"}.fa-subscript:before{content:"\F12C"}.fa-eraser:before{content:"\F12D"}.fa-puzzle-piece:before{content:"\F12E"}.fa-microphone:before{content:"\F130"}.fa-microphone-slash:before{content:"\F131"}.fa-shield:before{content:"\F132"}.fa-calendar-o:before{content:"\F133"}.fa-fire-extinguisher:before{content:"\F134"}.fa-rocket:before{content:"\F135"}.fa-maxcdn:before{content:"\F136"}.fa-chevron-circle-left:before{content:"\F137"}.fa-chevron-circle-right:before{content:"\F138"}.fa-chevron-circle-up:before{content:"\F139"}.fa-chevron-circle-down:before{content:"\F13A"}.fa-html5:before{content:"\F13B"}.fa-css3:before{content:"\F13C"}.fa-anchor:before{content:"\F13D"}.fa-unlock-alt:before{content:"\F13E"}.fa-bullseye:before{content:"\F140"}.fa-ellipsis-h:before{content:"\F141"}.fa-ellipsis-v:before{content:"\F142"}.fa-rss-square:before{content:"\F143"}.fa-play-circle:before{content:"\F144"}.fa-ticket:before{content:"\F145"}.fa-minus-square:before{content:"\F146"}.fa-minus-square-o:before{content:"\F147"}.fa-level-up:before{content:"\F148"}.fa-level-down:before{content:"\F149"}.fa-check-square:before{content:"\F14A"}.fa-pencil-square:before{content:"\F14B"}.fa-external-link-square:before{content:"\F14C"}.fa-share-square:before{content:"\F14D"}.fa-compass:before{content:"\F14E"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\F150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\F151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\F152"}.fa-eur:before,.fa-euro:before{content:"\F153"}.fa-gbp:before{content:"\F154"}.fa-dollar:before,.fa-usd:before{content:"\F155"}.fa-inr:before,.fa-rupee:before{content:"\F156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\F157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\F158"}.fa-krw:before,.fa-won:before{content:"\F159"}.fa-bitcoin:before,.fa-btc:before{content:"\F15A"}.fa-file:before{content:"\F15B"}.fa-file-text:before{content:"\F15C"}.fa-sort-alpha-asc:before{content:"\F15D"}.fa-sort-alpha-desc:before{content:"\F15E"}.fa-sort-amount-asc:before{content:"\F160"}.fa-sort-amount-desc:before{content:"\F161"}.fa-sort-numeric-asc:before{content:"\F162"}.fa-sort-numeric-desc:before{content:"\F163"}.fa-thumbs-up:before{content:"\F164"}.fa-thumbs-down:before{content:"\F165"}.fa-youtube-square:before{content:"\F166"}.fa-youtube:before{content:"\F167"}.fa-xing:before{content:"\F168"}.fa-xing-square:before{content:"\F169"}.fa-youtube-play:before{content:"\F16A"}.fa-dropbox:before{content:"\F16B"}.fa-stack-overflow:before{content:"\F16C"}.fa-instagram:before{content:"\F16D"}.fa-flickr:before{content:"\F16E"}.fa-adn:before{content:"\F170"}.fa-bitbucket:before{content:"\F171"}.fa-bitbucket-square:before{content:"\F172"}.fa-tumblr:before{content:"\F173"}.fa-tumblr-square:before{content:"\F174"}.fa-long-arrow-down:before{content:"\F175"}.fa-long-arrow-up:before{content:"\F176"}.fa-long-arrow-left:before{content:"\F177"}.fa-long-arrow-right:before{content:"\F178"}.fa-apple:before{content:"\F179"}.fa-windows:before{content:"\F17A"}.fa-android:before{content:"\F17B"}.fa-linux:before{content:"\F17C"}.fa-dribbble:before{content:"\F17D"}.fa-skype:before{content:"\F17E"}.fa-foursquare:before{content:"\F180"}.fa-trello:before{content:"\F181"}.fa-female:before{content:"\F182"}.fa-male:before{content:"\F183"}.fa-gittip:before,.fa-gratipay:before{content:"\F184"}.fa-sun-o:before{content:"\F185"}.fa-moon-o:before{content:"\F186"}.fa-archive:before{content:"\F187"}.fa-bug:before{content:"\F188"}.fa-vk:before{content:"\F189"}.fa-weibo:before{content:"\F18A"}.fa-renren:before{content:"\F18B"}.fa-pagelines:before{content:"\F18C"}.fa-stack-exchange:before{content:"\F18D"}.fa-arrow-circle-o-right:before{content:"\F18E"}.fa-arrow-circle-o-left:before{content:"\F190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\F191"}.fa-dot-circle-o:before{content:"\F192"}.fa-wheelchair:before{content:"\F193"}.fa-vimeo-square:before{content:"\F194"}.fa-try:before,.fa-turkish-lira:before{content:"\F195"}.fa-plus-square-o:before{content:"\F196"}.fa-space-shuttle:before{content:"\F197"}.fa-slack:before{content:"\F198"}.fa-envelope-square:before{content:"\F199"}.fa-wordpress:before{content:"\F19A"}.fa-openid:before{content:"\F19B"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\F19C"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\F19D"}.fa-yahoo:before{content:"\F19E"}.fa-google:before{content:"\F1A0"}.fa-reddit:before{content:"\F1A1"}.fa-reddit-square:before{content:"\F1A2"}.fa-stumbleupon-circle:before{content:"\F1A3"}.fa-stumbleupon:before{content:"\F1A4"}.fa-delicious:before{content:"\F1A5"}.fa-digg:before{content:"\F1A6"}.fa-pied-piper-pp:before{content:"\F1A7"}.fa-pied-piper-alt:before{content:"\F1A8"}.fa-drupal:before{content:"\F1A9"}.fa-joomla:before{content:"\F1AA"}.fa-language:before{content:"\F1AB"}.fa-fax:before{content:"\F1AC"}.fa-building:before{content:"\F1AD"}.fa-child:before{content:"\F1AE"}.fa-paw:before{content:"\F1B0"}.fa-spoon:before{content:"\F1B1"}.fa-cube:before{content:"\F1B2"}.fa-cubes:before{content:"\F1B3"}.fa-behance:before{content:"\F1B4"}.fa-behance-square:before{content:"\F1B5"}.fa-steam:before{content:"\F1B6"}.fa-steam-square:before{content:"\F1B7"}.fa-recycle:before{content:"\F1B8"}.fa-automobile:before,.fa-car:before{content:"\F1B9"}.fa-cab:before,.fa-taxi:before{content:"\F1BA"}.fa-tree:before{content:"\F1BB"}.fa-spotify:before{content:"\F1BC"}.fa-deviantart:before{content:"\F1BD"}.fa-soundcloud:before{content:"\F1BE"}.fa-database:before{content:"\F1C0"}.fa-file-pdf-o:before{content:"\F1C1"}.fa-file-word-o:before{content:"\F1C2"}.fa-file-excel-o:before{content:"\F1C3"}.fa-file-powerpoint-o:before{content:"\F1C4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\F1C5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\F1C6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\F1C7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\F1C8"}.fa-file-code-o:before{content:"\F1C9"}.fa-vine:before{content:"\F1CA"}.fa-codepen:before{content:"\F1CB"}.fa-jsfiddle:before{content:"\F1CC"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\F1CD"}.fa-circle-o-notch:before{content:"\F1CE"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\F1D0"}.fa-empire:before,.fa-ge:before{content:"\F1D1"}.fa-git-square:before{content:"\F1D2"}.fa-git:before{content:"\F1D3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\F1D4"}.fa-tencent-weibo:before{content:"\F1D5"}.fa-qq:before{content:"\F1D6"}.fa-wechat:before,.fa-weixin:before{content:"\F1D7"}.fa-paper-plane:before,.fa-send:before{content:"\F1D8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\F1D9"}.fa-history:before{content:"\F1DA"}.fa-circle-thin:before{content:"\F1DB"}.fa-header:before{content:"\F1DC"}.fa-paragraph:before{content:"\F1DD"}.fa-sliders:before{content:"\F1DE"}.fa-share-alt:before{content:"\F1E0"}.fa-share-alt-square:before{content:"\F1E1"}.fa-bomb:before{content:"\F1E2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\F1E3"}.fa-tty:before{content:"\F1E4"}.fa-binoculars:before{content:"\F1E5"}.fa-plug:before{content:"\F1E6"}.fa-slideshare:before{content:"\F1E7"}.fa-twitch:before{content:"\F1E8"}.fa-yelp:before{content:"\F1E9"}.fa-newspaper-o:before{content:"\F1EA"}.fa-wifi:before{content:"\F1EB"}.fa-calculator:before{content:"\F1EC"}.fa-paypal:before{content:"\F1ED"}.fa-google-wallet:before{content:"\F1EE"}.fa-cc-visa:before{content:"\F1F0"}.fa-cc-mastercard:before{content:"\F1F1"}.fa-cc-discover:before{content:"\F1F2"}.fa-cc-amex:before{content:"\F1F3"}.fa-cc-paypal:before{content:"\F1F4"}.fa-cc-stripe:before{content:"\F1F5"}.fa-bell-slash:before{content:"\F1F6"}.fa-bell-slash-o:before{content:"\F1F7"}.fa-trash:before{content:"\F1F8"}.fa-copyright:before{content:"\F1F9"}.fa-at:before{content:"\F1FA"}.fa-eyedropper:before{content:"\F1FB"}.fa-paint-brush:before{content:"\F1FC"}.fa-birthday-cake:before{content:"\F1FD"}.fa-area-chart:before{content:"\F1FE"}.fa-pie-chart:before{content:"\F200"}.fa-line-chart:before{content:"\F201"}.fa-lastfm:before{content:"\F202"}.fa-lastfm-square:before{content:"\F203"}.fa-toggle-off:before{content:"\F204"}.fa-toggle-on:before{content:"\F205"}.fa-bicycle:before{content:"\F206"}.fa-bus:before{content:"\F207"}.fa-ioxhost:before{content:"\F208"}.fa-angellist:before{content:"\F209"}.fa-cc:before{content:"\F20A"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\F20B"}.fa-meanpath:before{content:"\F20C"}.fa-buysellads:before{content:"\F20D"}.fa-connectdevelop:before{content:"\F20E"}.fa-dashcube:before{content:"\F210"}.fa-forumbee:before{content:"\F211"}.fa-leanpub:before{content:"\F212"}.fa-sellsy:before{content:"\F213"}.fa-shirtsinbulk:before{content:"\F214"}.fa-simplybuilt:before{content:"\F215"}.fa-skyatlas:before{content:"\F216"}.fa-cart-plus:before{content:"\F217"}.fa-cart-arrow-down:before{content:"\F218"}.fa-diamond:before{content:"\F219"}.fa-ship:before{content:"\F21A"}.fa-user-secret:before{content:"\F21B"}.fa-motorcycle:before{content:"\F21C"}.fa-street-view:before{content:"\F21D"}.fa-heartbeat:before{content:"\F21E"}.fa-venus:before{content:"\F221"}.fa-mars:before{content:"\F222"}.fa-mercury:before{content:"\F223"}.fa-intersex:before,.fa-transgender:before{content:"\F224"}.fa-transgender-alt:before{content:"\F225"}.fa-venus-double:before{content:"\F226"}.fa-mars-double:before{content:"\F227"}.fa-venus-mars:before{content:"\F228"}.fa-mars-stroke:before{content:"\F229"}.fa-mars-stroke-v:before{content:"\F22A"}.fa-mars-stroke-h:before{content:"\F22B"}.fa-neuter:before{content:"\F22C"}.fa-genderless:before{content:"\F22D"}.fa-facebook-official:before{content:"\F230"}.fa-pinterest-p:before{content:"\F231"}.fa-whatsapp:before{content:"\F232"}.fa-server:before{content:"\F233"}.fa-user-plus:before{content:"\F234"}.fa-user-times:before{content:"\F235"}.fa-bed:before,.fa-hotel:before{content:"\F236"}.fa-viacoin:before{content:"\F237"}.fa-train:before{content:"\F238"}.fa-subway:before{content:"\F239"}.fa-medium:before{content:"\F23A"}.fa-y-combinator:before,.fa-yc:before{content:"\F23B"}.fa-optin-monster:before{content:"\F23C"}.fa-opencart:before{content:"\F23D"}.fa-expeditedssl:before{content:"\F23E"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\F240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\F241"}.fa-battery-2:before,.fa-battery-half:before{content:"\F242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\F243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\F244"}.fa-mouse-pointer:before{content:"\F245"}.fa-i-cursor:before{content:"\F246"}.fa-object-group:before{content:"\F247"}.fa-object-ungroup:before{content:"\F248"}.fa-sticky-note:before{content:"\F249"}.fa-sticky-note-o:before{content:"\F24A"}.fa-cc-jcb:before{content:"\F24B"}.fa-cc-diners-club:before{content:"\F24C"}.fa-clone:before{content:"\F24D"}.fa-balance-scale:before{content:"\F24E"}.fa-hourglass-o:before{content:"\F250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\F251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\F252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\F253"}.fa-hourglass:before{content:"\F254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\F255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\F256"}.fa-hand-scissors-o:before{content:"\F257"}.fa-hand-lizard-o:before{content:"\F258"}.fa-hand-spock-o:before{content:"\F259"}.fa-hand-pointer-o:before{content:"\F25A"}.fa-hand-peace-o:before{content:"\F25B"}.fa-trademark:before{content:"\F25C"}.fa-registered:before{content:"\F25D"}.fa-creative-commons:before{content:"\F25E"}.fa-gg:before{content:"\F260"}.fa-gg-circle:before{content:"\F261"}.fa-tripadvisor:before{content:"\F262"}.fa-odnoklassniki:before{content:"\F263"}.fa-odnoklassniki-square:before{content:"\F264"}.fa-get-pocket:before{content:"\F265"}.fa-wikipedia-w:before{content:"\F266"}.fa-safari:before{content:"\F267"}.fa-chrome:before{content:"\F268"}.fa-firefox:before{content:"\F269"}.fa-opera:before{content:"\F26A"}.fa-internet-explorer:before{content:"\F26B"}.fa-television:before,.fa-tv:before{content:"\F26C"}.fa-contao:before{content:"\F26D"}.fa-500px:before{content:"\F26E"}.fa-amazon:before{content:"\F270"}.fa-calendar-plus-o:before{content:"\F271"}.fa-calendar-minus-o:before{content:"\F272"}.fa-calendar-times-o:before{content:"\F273"}.fa-calendar-check-o:before{content:"\F274"}.fa-industry:before{content:"\F275"}.fa-map-pin:before{content:"\F276"}.fa-map-signs:before{content:"\F277"}.fa-map-o:before{content:"\F278"}.fa-map:before{content:"\F279"}.fa-commenting:before{content:"\F27A"}.fa-commenting-o:before{content:"\F27B"}.fa-houzz:before{content:"\F27C"}.fa-vimeo:before{content:"\F27D"}.fa-black-tie:before{content:"\F27E"}.fa-fonticons:before{content:"\F280"}.fa-reddit-alien:before{content:"\F281"}.fa-edge:before{content:"\F282"}.fa-credit-card-alt:before{content:"\F283"}.fa-codiepie:before{content:"\F284"}.fa-modx:before{content:"\F285"}.fa-fort-awesome:before{content:"\F286"}.fa-usb:before{content:"\F287"}.fa-product-hunt:before{content:"\F288"}.fa-mixcloud:before{content:"\F289"}.fa-scribd:before{content:"\F28A"}.fa-pause-circle:before{content:"\F28B"}.fa-pause-circle-o:before{content:"\F28C"}.fa-stop-circle:before{content:"\F28D"}.fa-stop-circle-o:before{content:"\F28E"}.fa-shopping-bag:before{content:"\F290"}.fa-shopping-basket:before{content:"\F291"}.fa-hashtag:before{content:"\F292"}.fa-bluetooth:before{content:"\F293"}.fa-bluetooth-b:before{content:"\F294"}.fa-percent:before{content:"\F295"}.fa-gitlab:before{content:"\F296"}.fa-wpbeginner:before{content:"\F297"}.fa-wpforms:before{content:"\F298"}.fa-envira:before{content:"\F299"}.fa-universal-access:before{content:"\F29A"}.fa-wheelchair-alt:before{content:"\F29B"}.fa-question-circle-o:before{content:"\F29C"}.fa-blind:before{content:"\F29D"}.fa-audio-description:before{content:"\F29E"}.fa-volume-control-phone:before{content:"\F2A0"}.fa-braille:before{content:"\F2A1"}.fa-assistive-listening-systems:before{content:"\F2A2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\F2A3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\F2A4"}.fa-glide:before{content:"\F2A5"}.fa-glide-g:before{content:"\F2A6"}.fa-sign-language:before,.fa-signing:before{content:"\F2A7"}.fa-low-vision:before{content:"\F2A8"}.fa-viadeo:before{content:"\F2A9"}.fa-viadeo-square:before{content:"\F2AA"}.fa-snapchat:before{content:"\F2AB"}.fa-snapchat-ghost:before{content:"\F2AC"}.fa-snapchat-square:before{content:"\F2AD"}.fa-pied-piper:before{content:"\F2AE"}.fa-first-order:before{content:"\F2B0"}.fa-yoast:before{content:"\F2B1"}.fa-themeisle:before{content:"\F2B2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\F2B3"}.fa-fa:before,.fa-font-awesome:before{content:"\F2B4"}.fa-handshake-o:before{content:"\F2B5"}.fa-envelope-open:before{content:"\F2B6"}.fa-envelope-open-o:before{content:"\F2B7"}.fa-linode:before{content:"\F2B8"}.fa-address-book:before{content:"\F2B9"}.fa-address-book-o:before{content:"\F2BA"}.fa-address-card:before,.fa-vcard:before{content:"\F2BB"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\F2BC"}.fa-user-circle:before{content:"\F2BD"}.fa-user-circle-o:before{content:"\F2BE"}.fa-user-o:before{content:"\F2C0"}.fa-id-badge:before{content:"\F2C1"}.fa-drivers-license:before,.fa-id-card:before{content:"\F2C2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\F2C3"}.fa-quora:before{content:"\F2C4"}.fa-free-code-camp:before{content:"\F2C5"}.fa-telegram:before{content:"\F2C6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\F2C7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\F2C8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\F2C9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\F2CA"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\F2CB"}.fa-shower:before{content:"\F2CC"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\F2CD"}.fa-podcast:before{content:"\F2CE"}.fa-window-maximize:before{content:"\F2D0"}.fa-window-minimize:before{content:"\F2D1"}.fa-window-restore:before{content:"\F2D2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\F2D3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\F2D4"}.fa-bandcamp:before{content:"\F2D5"}.fa-grav:before{content:"\F2D6"}.fa-etsy:before{content:"\F2D7"}.fa-imdb:before{content:"\F2D8"}.fa-ravelry:before{content:"\F2D9"}.fa-eercast:before{content:"\F2DA"}.fa-microchip:before{content:"\F2DB"}.fa-snowflake-o:before{content:"\F2DC"}.fa-superpowers:before{content:"\F2DD"}.fa-wpexplorer:before{content:"\F2DE"}.fa-meetup:before{content:"\F2E0"}/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{background:transparent!important;color:#000!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:Glyphicons Halflings;src:url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1);src:url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1?#iefix) format("embedded-opentype"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.woff2?448c34a56d699c29117adc64c43affeb) format("woff2"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.woff?fa2772327f55d8198301fdb8bcfc8158) format("woff"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.ttf?e18bbf611f2a2e43afc071aa2f4e1512) format("truetype"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.svg?89889688147bd7575d6327160d64e760#glyphicons_halflingsregular) format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:Glyphicons Halflings;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"*"}.glyphicon-plus:before{content:"+"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20AC"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270F"}.glyphicon-glass:before{content:"\E001"}.glyphicon-music:before{content:"\E002"}.glyphicon-search:before{content:"\E003"}.glyphicon-heart:before{content:"\E005"}.glyphicon-star:before{content:"\E006"}.glyphicon-star-empty:before{content:"\E007"}.glyphicon-user:before{content:"\E008"}.glyphicon-film:before{content:"\E009"}.glyphicon-th-large:before{content:"\E010"}.glyphicon-th:before{content:"\E011"}.glyphicon-th-list:before{content:"\E012"}.glyphicon-ok:before{content:"\E013"}.glyphicon-remove:before{content:"\E014"}.glyphicon-zoom-in:before{content:"\E015"}.glyphicon-zoom-out:before{content:"\E016"}.glyphicon-off:before{content:"\E017"}.glyphicon-signal:before{content:"\E018"}.glyphicon-cog:before{content:"\E019"}.glyphicon-trash:before{content:"\E020"}.glyphicon-home:before{content:"\E021"}.glyphicon-file:before{content:"\E022"}.glyphicon-time:before{content:"\E023"}.glyphicon-road:before{content:"\E024"}.glyphicon-download-alt:before{content:"\E025"}.glyphicon-download:before{content:"\E026"}.glyphicon-upload:before{content:"\E027"}.glyphicon-inbox:before{content:"\E028"}.glyphicon-play-circle:before{content:"\E029"}.glyphicon-repeat:before{content:"\E030"}.glyphicon-refresh:before{content:"\E031"}.glyphicon-list-alt:before{content:"\E032"}.glyphicon-lock:before{content:"\E033"}.glyphicon-flag:before{content:"\E034"}.glyphicon-headphones:before{content:"\E035"}.glyphicon-volume-off:before{content:"\E036"}.glyphicon-volume-down:before{content:"\E037"}.glyphicon-volume-up:before{content:"\E038"}.glyphicon-qrcode:before{content:"\E039"}.glyphicon-barcode:before{content:"\E040"}.glyphicon-tag:before{content:"\E041"}.glyphicon-tags:before{content:"\E042"}.glyphicon-book:before{content:"\E043"}.glyphicon-bookmark:before{content:"\E044"}.glyphicon-print:before{content:"\E045"}.glyphicon-camera:before{content:"\E046"}.glyphicon-font:before{content:"\E047"}.glyphicon-bold:before{content:"\E048"}.glyphicon-italic:before{content:"\E049"}.glyphicon-text-height:before{content:"\E050"}.glyphicon-text-width:before{content:"\E051"}.glyphicon-align-left:before{content:"\E052"}.glyphicon-align-center:before{content:"\E053"}.glyphicon-align-right:before{content:"\E054"}.glyphicon-align-justify:before{content:"\E055"}.glyphicon-list:before{content:"\E056"}.glyphicon-indent-left:before{content:"\E057"}.glyphicon-indent-right:before{content:"\E058"}.glyphicon-facetime-video:before{content:"\E059"}.glyphicon-picture:before{content:"\E060"}.glyphicon-map-marker:before{content:"\E062"}.glyphicon-adjust:before{content:"\E063"}.glyphicon-tint:before{content:"\E064"}.glyphicon-edit:before{content:"\E065"}.glyphicon-share:before{content:"\E066"}.glyphicon-check:before{content:"\E067"}.glyphicon-move:before{content:"\E068"}.glyphicon-step-backward:before{content:"\E069"}.glyphicon-fast-backward:before{content:"\E070"}.glyphicon-backward:before{content:"\E071"}.glyphicon-play:before{content:"\E072"}.glyphicon-pause:before{content:"\E073"}.glyphicon-stop:before{content:"\E074"}.glyphicon-forward:before{content:"\E075"}.glyphicon-fast-forward:before{content:"\E076"}.glyphicon-step-forward:before{content:"\E077"}.glyphicon-eject:before{content:"\E078"}.glyphicon-chevron-left:before{content:"\E079"}.glyphicon-chevron-right:before{content:"\E080"}.glyphicon-plus-sign:before{content:"\E081"}.glyphicon-minus-sign:before{content:"\E082"}.glyphicon-remove-sign:before{content:"\E083"}.glyphicon-ok-sign:before{content:"\E084"}.glyphicon-question-sign:before{content:"\E085"}.glyphicon-info-sign:before{content:"\E086"}.glyphicon-screenshot:before{content:"\E087"}.glyphicon-remove-circle:before{content:"\E088"}.glyphicon-ok-circle:before{content:"\E089"}.glyphicon-ban-circle:before{content:"\E090"}.glyphicon-arrow-left:before{content:"\E091"}.glyphicon-arrow-right:before{content:"\E092"}.glyphicon-arrow-up:before{content:"\E093"}.glyphicon-arrow-down:before{content:"\E094"}.glyphicon-share-alt:before{content:"\E095"}.glyphicon-resize-full:before{content:"\E096"}.glyphicon-resize-small:before{content:"\E097"}.glyphicon-exclamation-sign:before{content:"\E101"}.glyphicon-gift:before{content:"\E102"}.glyphicon-leaf:before{content:"\E103"}.glyphicon-fire:before{content:"\E104"}.glyphicon-eye-open:before{content:"\E105"}.glyphicon-eye-close:before{content:"\E106"}.glyphicon-warning-sign:before{content:"\E107"}.glyphicon-plane:before{content:"\E108"}.glyphicon-calendar:before{content:"\E109"}.glyphicon-random:before{content:"\E110"}.glyphicon-comment:before{content:"\E111"}.glyphicon-magnet:before{content:"\E112"}.glyphicon-chevron-up:before{content:"\E113"}.glyphicon-chevron-down:before{content:"\E114"}.glyphicon-retweet:before{content:"\E115"}.glyphicon-shopping-cart:before{content:"\E116"}.glyphicon-folder-close:before{content:"\E117"}.glyphicon-folder-open:before{content:"\E118"}.glyphicon-resize-vertical:before{content:"\E119"}.glyphicon-resize-horizontal:before{content:"\E120"}.glyphicon-hdd:before{content:"\E121"}.glyphicon-bullhorn:before{content:"\E122"}.glyphicon-bell:before{content:"\E123"}.glyphicon-certificate:before{content:"\E124"}.glyphicon-thumbs-up:before{content:"\E125"}.glyphicon-thumbs-down:before{content:"\E126"}.glyphicon-hand-right:before{content:"\E127"}.glyphicon-hand-left:before{content:"\E128"}.glyphicon-hand-up:before{content:"\E129"}.glyphicon-hand-down:before{content:"\E130"}.glyphicon-circle-arrow-right:before{content:"\E131"}.glyphicon-circle-arrow-left:before{content:"\E132"}.glyphicon-circle-arrow-up:before{content:"\E133"}.glyphicon-circle-arrow-down:before{content:"\E134"}.glyphicon-globe:before{content:"\E135"}.glyphicon-wrench:before{content:"\E136"}.glyphicon-tasks:before{content:"\E137"}.glyphicon-filter:before{content:"\E138"}.glyphicon-briefcase:before{content:"\E139"}.glyphicon-fullscreen:before{content:"\E140"}.glyphicon-dashboard:before{content:"\E141"}.glyphicon-paperclip:before{content:"\E142"}.glyphicon-heart-empty:before{content:"\E143"}.glyphicon-link:before{content:"\E144"}.glyphicon-phone:before{content:"\E145"}.glyphicon-pushpin:before{content:"\E146"}.glyphicon-usd:before{content:"\E148"}.glyphicon-gbp:before{content:"\E149"}.glyphicon-sort:before{content:"\E150"}.glyphicon-sort-by-alphabet:before{content:"\E151"}.glyphicon-sort-by-alphabet-alt:before{content:"\E152"}.glyphicon-sort-by-order:before{content:"\E153"}.glyphicon-sort-by-order-alt:before{content:"\E154"}.glyphicon-sort-by-attributes:before{content:"\E155"}.glyphicon-sort-by-attributes-alt:before{content:"\E156"}.glyphicon-unchecked:before{content:"\E157"}.glyphicon-expand:before{content:"\E158"}.glyphicon-collapse-down:before{content:"\E159"}.glyphicon-collapse-up:before{content:"\E160"}.glyphicon-log-in:before{content:"\E161"}.glyphicon-flash:before{content:"\E162"}.glyphicon-log-out:before{content:"\E163"}.glyphicon-new-window:before{content:"\E164"}.glyphicon-record:before{content:"\E165"}.glyphicon-save:before{content:"\E166"}.glyphicon-open:before{content:"\E167"}.glyphicon-saved:before{content:"\E168"}.glyphicon-import:before{content:"\E169"}.glyphicon-export:before{content:"\E170"}.glyphicon-send:before{content:"\E171"}.glyphicon-floppy-disk:before{content:"\E172"}.glyphicon-floppy-saved:before{content:"\E173"}.glyphicon-floppy-remove:before{content:"\E174"}.glyphicon-floppy-save:before{content:"\E175"}.glyphicon-floppy-open:before{content:"\E176"}.glyphicon-credit-card:before{content:"\E177"}.glyphicon-transfer:before{content:"\E178"}.glyphicon-cutlery:before{content:"\E179"}.glyphicon-header:before{content:"\E180"}.glyphicon-compressed:before{content:"\E181"}.glyphicon-earphone:before{content:"\E182"}.glyphicon-phone-alt:before{content:"\E183"}.glyphicon-tower:before{content:"\E184"}.glyphicon-stats:before{content:"\E185"}.glyphicon-sd-video:before{content:"\E186"}.glyphicon-hd-video:before{content:"\E187"}.glyphicon-subtitles:before{content:"\E188"}.glyphicon-sound-stereo:before{content:"\E189"}.glyphicon-sound-dolby:before{content:"\E190"}.glyphicon-sound-5-1:before{content:"\E191"}.glyphicon-sound-6-1:before{content:"\E192"}.glyphicon-sound-7-1:before{content:"\E193"}.glyphicon-copyright-mark:before{content:"\E194"}.glyphicon-registration-mark:before{content:"\E195"}.glyphicon-cloud-download:before{content:"\E197"}.glyphicon-cloud-upload:before{content:"\E198"}.glyphicon-tree-conifer:before{content:"\E199"}.glyphicon-tree-deciduous:before{content:"\E200"}.glyphicon-cd:before{content:"\E201"}.glyphicon-save-file:before{content:"\E202"}.glyphicon-open-file:before{content:"\E203"}.glyphicon-level-up:before{content:"\E204"}.glyphicon-copy:before{content:"\E205"}.glyphicon-paste:before{content:"\E206"}.glyphicon-alert:before{content:"\E209"}.glyphicon-equalizer:before{content:"\E210"}.glyphicon-king:before{content:"\E211"}.glyphicon-queen:before{content:"\E212"}.glyphicon-pawn:before{content:"\E213"}.glyphicon-bishop:before{content:"\E214"}.glyphicon-knight:before{content:"\E215"}.glyphicon-baby-formula:before{content:"\E216"}.glyphicon-tent:before{content:"\26FA"}.glyphicon-blackboard:before{content:"\E218"}.glyphicon-bed:before{content:"\E219"}.glyphicon-apple:before{content:"\F8FF"}.glyphicon-erase:before{content:"\E221"}.glyphicon-hourglass:before{content:"\231B"}.glyphicon-lamp:before{content:"\E223"}.glyphicon-duplicate:before{content:"\E224"}.glyphicon-piggy-bank:before{content:"\E225"}.glyphicon-scissors:before{content:"\E226"}.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\E227"}.glyphicon-jpy:before,.glyphicon-yen:before{content:"\A5"}.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20BD"}.glyphicon-scale:before{content:"\E230"}.glyphicon-ice-lolly:before{content:"\E231"}.glyphicon-ice-lolly-tasted:before{content:"\E232"}.glyphicon-education:before{content:"\E233"}.glyphicon-option-horizontal:before{content:"\E234"}.glyphicon-option-vertical:before{content:"\E235"}.glyphicon-menu-hamburger:before{content:"\E236"}.glyphicon-modal-window:before{content:"\E237"}.glyphicon-oil:before{content:"\E238"}.glyphicon-grain:before{content:"\E239"}.glyphicon-sunglasses:before{content:"\E240"}.glyphicon-text-size:before{content:"\E241"}.glyphicon-text-color:before{content:"\E242"}.glyphicon-text-background:before{content:"\E243"}.glyphicon-object-align-top:before{content:"\E244"}.glyphicon-object-align-bottom:before{content:"\E245"}.glyphicon-object-align-horizontal:before{content:"\E246"}.glyphicon-object-align-left:before{content:"\E247"}.glyphicon-object-align-vertical:before{content:"\E248"}.glyphicon-object-align-right:before{content:"\E249"}.glyphicon-triangle-right:before{content:"\E250"}.glyphicon-triangle-left:before{content:"\E251"}.glyphicon-triangle-bottom:before{content:"\E252"}.glyphicon-triangle-top:before{content:"\E253"}.glyphicon-console:before{content:"\E254"}.glyphicon-superscript:before{content:"\E255"}.glyphicon-subscript:before{content:"\E256"}.glyphicon-menu-left:before{content:"\E257"}.glyphicon-menu-right:before{content:"\E258"}.glyphicon-menu-down:before{content:"\E259"}.glyphicon-menu-up:before{content:"\E260"}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#3d3d3d;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#285f8f;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail>img,.thumbnail a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #ccc}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:200;line-height:1.1;color:#3d3d3d}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#ffa406}a.text-primary:focus,a.text-primary:hover{color:#d28600}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#ffa406}a.bg-primary:focus,a.bg-primary:hover{background-color:#d28600}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:"\2014   \A0"}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:""}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:"\A0   \2014"}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Courier New,monospace}code{color:#c7254e;background-color:#f9f2f4;border-radius:4px}code,kbd{padding:2px 4px;font-size:90%}kbd{color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-13,.col-lg-14,.col-lg-15,.col-lg-16,.col-lg-17,.col-lg-18,.col-lg-19,.col-lg-20,.col-lg-21,.col-lg-22,.col-lg-23,.col-lg-24,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-13,.col-md-14,.col-md-15,.col-md-16,.col-md-17,.col-md-18,.col-md-19,.col-md-20,.col-md-21,.col-md-22,.col-md-23,.col-md-24,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-13,.col-sm-14,.col-sm-15,.col-sm-16,.col-sm-17,.col-sm-18,.col-sm-19,.col-sm-20,.col-sm-21,.col-sm-22,.col-sm-23,.col-sm-24,.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-13,.col-xs-14,.col-xs-15,.col-xs-16,.col-xs-17,.col-xs-18,.col-xs-19,.col-xs-20,.col-xs-21,.col-xs-22,.col-xs-23,.col-xs-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-13,.col-xs-14,.col-xs-15,.col-xs-16,.col-xs-17,.col-xs-18,.col-xs-19,.col-xs-20,.col-xs-21,.col-xs-22,.col-xs-23,.col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-13,.col-sm-14,.col-sm-15,.col-sm-16,.col-sm-17,.col-sm-18,.col-sm-19,.col-sm-20,.col-sm-21,.col-sm-22,.col-sm-23,.col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-13,.col-md-14,.col-md-15,.col-md-16,.col-md-17,.col-md-18,.col-md-19,.col-md-20,.col-md-21,.col-md-22,.col-md-23,.col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-13,.col-lg-14,.col-lg-15,.col-lg-16,.col-lg-17,.col-lg-18,.col-lg-19,.col-lg-20,.col-lg-21,.col-lg-22,.col-lg-23,.col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777}caption,th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{margin:0;min-width:0}fieldset,legend{padding:0;border:0}legend{display:block;width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{padding-top:7px}.form-control,output{display:block;font-size:14px;line-height:1.42857143;color:#2f2f2f}.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox-inline input[type=checkbox],.checkbox input[type=checkbox],.radio-inline input[type=radio],.radio input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .checkbox label,fieldset[disabled] .radio-inline,fieldset[disabled] .radio label,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success.checkbox-inline label,.has-success.checkbox label,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.radio-inline label,.has-success.radio label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning.checkbox-inline label,.has-warning.checkbox label,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.radio-inline label,.has-warning.radio label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error.checkbox-inline label,.has-error.checkbox label,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.radio-inline label,.has-error.radio label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#7d7d7d}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#ffa406;border-color:#ffa406}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#d28600;border-color:#865500}.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#d28600;border-color:#c87f00}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#ae6f00;border-color:#865500}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#ffa406;border-color:#ffa406}.btn-primary .badge{color:#ffa406;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#2d672d}.btn-success.active,.btn-success:active,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#419641}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#2d672d}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#5cb85c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#627894;border-color:#627894}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#4e5f75;border-color:#2f3a47}.btn-info.active,.btn-info:active,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#4e5f75;border-color:#4a5a6f}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#3f4e60;border-color:#2f3a47}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#627894;border-color:#627894}.btn-info .badge{color:#627894;background-color:#fff}.btn-warning{color:#fff;background-color:#ffa406;border-color:#ffa406}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#d28600;border-color:#865500}.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#d28600;border-color:#c87f00}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#ae6f00;border-color:#865500}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#ffa406;border-color:#ffa406}.btn-warning .badge{color:#ffa406;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#8b211e}.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#c12e2a}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#8b211e}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d9534f}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#285f8f;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:0}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:0}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#ffa406}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child),.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio],[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#2f2f2f;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group .form-control:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group .form-control:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn,.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li,.nav>li>a{position:relative;display:block}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#ffa406}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container-fluid .navbar-brand,.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin:8px -15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left;float:left!important}.navbar-right{float:right;float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 0;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\A0";padding:0 5px;color:#575757}.breadcrumb>.active{color:#3d3d3d}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#285f8f;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#ffa406;border-color:#ffa406;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#ffa406}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#d28600}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#627894}.label-info[href]:focus,.label-info[href]:hover{background-color:#4e5f75}.label-warning{background-color:#ffa406}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#d28600}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:#fff;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container-fluid .jumbotron,.container .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container-fluid .jumbotron,.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#3d3d3d}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#ffa406;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-info{background-color:#627894}.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-warning{background-color:#ffa406}.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#ffa406;border-color:#ffa406}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#ffefd2}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#f5f5f5;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-heading>.dropdown .dropdown-toggle,.panel-title{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#3d3d3d;background-color:#e8e8e8;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#e8e8e8;background-color:#3d3d3d}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#ffa406}.panel-primary>.panel-heading{color:#fff;background-color:#ffa406;border-color:#ffa406}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ffa406}.panel-primary>.panel-heading .badge{color:#ffa406;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ffa406}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal,.modal-open{overflow:hidden}.modal{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translateY(-25%);transform:translateY(-25%);-webkit-transition:-webkit-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0);transform:translate(0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px}.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{left:5px}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel,.carousel-inner{position:relative}.carousel-inner{overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:left .6s ease-in-out;transition:left .6s ease-in-out}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media (-webkit-transform-3d),(transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translateZ(0);transform:translateZ(0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:transparent}.carousel-control.left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(90deg,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001));background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000",endColorstr="#00000000",GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(90deg,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5));background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#80000000",GradientType=1)}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:"\2039"}.carousel-control .icon-next:before{content:"\203A"}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:transparent}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{content:" ";display:table}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}/*!
+ * Yamm!3 - Yet another megamenu for Bootstrap 3
+ * http://geedmo.github.com/yamm3
+ * 
+ * @geedmo - Licensed under the MIT license
+ */.yamm .collapse,.yamm .dropdown,.yamm .dropup,.yamm .nav{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}.btn{text-transform:none}.btn:visited{color:#fff}.btn-default:visited{color:#333}.btn-white{background:#fff;border:1px solid #0b0a0f;color:#0b0a0f}.btn-white:hover{background:transparent}.btn-white:visited{color:#333}.btn-huge{font-size:1.1em;padding:10px 35px}.btn-huge i{margin-right:2px}.btn-transparent:link,.btn-transparent:visited{background:transparent;border-color:#fff;color:#fff;font-size:11px;padding:7px 15px}.btn-transparent:active,.btn-transparent:hover{color:#ffa406;border-color:#ffa406;background:#ccc}.btn-transparent .caret{margin-left:6px}.donation-button{padding:.75em 3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:visited{color:inherit}.btn-simple:active,.btn-simple:hover{border:1px solid #777;background:#eee}.btn-simple-white{text-transform:none;font-weight:400;font-size:13px;border:0;border-radius:0}.btn-group-smaller>.btn,.btn-smaller{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:400}.btn-white-purple-border:visited{color:#2d2252}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.btn-secondary{color:#fff;background-color:#627894;border-color:#627894}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#4e5f75;border-color:#2f3a47}.btn-secondary.active,.btn-secondary:active,.btn-secondary:hover,.open>.dropdown-toggle.btn-secondary{color:#fff;background-color:#4e5f75;border-color:#4a5a6f}.btn-secondary.active.focus,.btn-secondary.active:focus,.btn-secondary.active:hover,.btn-secondary:active.focus,.btn-secondary:active:focus,.btn-secondary:active:hover,.open>.dropdown-toggle.btn-secondary.focus,.open>.dropdown-toggle.btn-secondary:focus,.open>.dropdown-toggle.btn-secondary:hover{color:#fff;background-color:#3f4e60;border-color:#2f3a47}.btn-secondary.active,.btn-secondary:active,.open>.dropdown-toggle.btn-secondary{background-image:none}.btn-secondary.disabled.focus,.btn-secondary.disabled:focus,.btn-secondary.disabled:hover,.btn-secondary[disabled].focus,.btn-secondary[disabled]:focus,.btn-secondary[disabled]:hover,fieldset[disabled] .btn-secondary.focus,fieldset[disabled] .btn-secondary:focus,fieldset[disabled] .btn-secondary:hover{background-color:#627894;border-color:#627894}.btn-secondary .badge{color:#627894;background-color:#fff}.media{padding-bottom:2em}.media .pull-left{margin-right:30px}.media .media-heading{font-size:27px}.media p{font-size:14px;padding-bottom:0}.media .emphasis{margin-bottom:2px;padding-bottom:0}.modal{text-align:center}@media screen and (min-width:768px){.modal:before{display:inline-block;vertical-align:middle;content:" ";height:100%}}.modal-title{font-weight:600;font-size:22px}.modal-content{border-radius:0}.modal-content-container{border:1px solid #eee;padding:0 20px}.modal-dialog{display:inline-block;text-align:left;vertical-align:middle}.nav>li>a{color:#ffa406}.nav-tabs>li{padding-bottom:0}.nav-tabs>li a:hover{background:#ffa406;color:#fff}.tab-content{padding:10px;border:1px solid #ddd;border-top:none;background:#fff}.tab-pane{padding:.5em 1em}.tab-pane .page-header{margin-top:10px}.section-highlights{background-color:#fff}.section-highlights .featured-highlights-item{text-align:center;padding:25px;border-right:1px solid #ccc}.section-highlights .featured-highlights-item:last-child{border:none}.section-highlights .featured-highlights-item h3{font-size:20px;font-weight:600;margin-top:10px}.section-highlights .featured-highlights-item .feather{stroke:#ffa406;width:40px;height:40px}.section-top-angle{background-color:#fff;position:relative}.section-top-angle:before{background-color:#fff;-webkit-clip-path:polygon(0 16%,100% 0,100% 100%,0 100%);clip-path:polygon(0 16%,100% 0,100% 100%,0 100%);display:block;content:"";position:absolute;top:-79px;width:100%;height:80px}.featured-footer{padding:100px 30px;text-align:center;-webkit-clip-path:none;clip-path:none;margin-bottom:-30px;margin-top:30px}.featured-footer h2{margin-top:10px}.featured-footer .feather{width:40px;height:40px}.featured-footer .textfield-underline{text-align:center;width:300px}.featured-centered-item{height:260px;text-align:center;white-space:nowrap;position:relative}@media (max-width:1200px){.featured-centered-item{height:205px}}@media (max-width:768px){.featured-centered-item{margin-bottom:15px}}.featured-centered-item:before{content:"";height:100%}.featured-centered-item .centered-item,.featured-centered-item:before{display:inline-block;vertical-align:middle}@media (max-width:1200px){.featured-centered-item .centered-item{width:205px;padding:20px}}@media (max-width:480px){.featured-centered-item .centered-item{width:165px;padding:20px}}.featured-centered-item .centered-item img{display:inherit}.featured-centered-item a{position:absolute;opacity:0;display:table;transition:all .5s ease;-webkit-transition:all .5s ease;-moz-transition:all .5s ease;-o-transition:all .5s ease;z-index:9;top:0;left:0;height:260px;background-color:rgba(0,0,0,.8);width:100%;padding:20px;white-space:normal;color:#fff}.featured-centered-item a:hover{opacity:1;text-decoration:none}@media (max-width:1200px){.featured-centered-item a{height:205px}}.featured-centered-item a .item-description,.featured-centered-item a .item-title{color:#fff;display:block;margin-bottom:10px}.featured-centered-item a .item-title{text-transform:uppercase;font-size:18px;font-weight:300}@media (max-width:1200px){.featured-centered-item a .item-description{display:none}}.featured-centered-item a .arrow{font-size:2em;color:#fff}.featured-centered-item a .centered-vertical-item{display:table-cell;vertical-align:middle}.newsletter-sponsored-by{background-color:#1f1f1f;padding:15px 0}.newsletter-sponsored-by .sponsored-by-neon{margin-bottom:0;color:#9e9e9e}@media (max-width:768px){.newsletter-sponsored-by .sponsored-by-neon{text-align:center;margin-bottom:15px}}.newsletter-sponsored-by .neon-logo{max-width:150px;max-height:50px;margin-left:10px}.newsletter-sponsored-by .google-search-archive{margin-bottom:0;text-transform:uppercase;font-weight:200;color:#9e9e9e;text-align:right}@media (max-width:768px){.newsletter-sponsored-by .google-search-archive{text-align:center}}.newsletter-featured-container{background-image:url("/community/eclipse_newsletter/assets/public/images/featured-newsletter-bg.jpg");background-size:cover}.newsletter-featured-container .item-title,.newsletter-featured-container h2,.newsletter-featured-container h3{color:#fff}.newsletter-featured-container h2{font-size:3em}@media (max-width:991px){.newsletter-featured-container h2{text-align:center}}.newsletter-featured-container .featured-item{height:260px;text-align:center;white-space:nowrap}@media (max-width:1200px){.newsletter-featured-container .featured-item{height:205px}}.newsletter-featured-container .featured-item:before{content:"";display:inline-block;height:100%;vertical-align:middle}.newsletter-featured-container .featured-item .centered-item{display:inline-block;vertical-align:middle;width:260px}.newsletter-featured-container .featured-title-container{height:520px;white-space:nowrap}@media (max-width:1200px){.newsletter-featured-container .featured-title-container{height:410px}}@media (max-width:992px){.newsletter-featured-container .featured-title-container{height:inherit}}@media (min-width:992px){.newsletter-featured-container .featured-title-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}}@media (min-width:992px){.newsletter-featured-container .featured-title-item{width:260px;display:inline-block;vertical-align:middle}}@media (max-width:991px){.newsletter-featured-container .featured-title-item{margin-bottom:50px;text-align:center}}.news-list-top-shape:before{z-index:2;content:"";display:block;position:relative;top:-50px;width:100%;-webkit-clip-path:polygon(100% 57%,0 100%,100% 100%);clip-path:polygon(100% 57%,0 100%,100% 100%);background-color:#f9f9f9;height:50px}.news-list h2{color:#3d3d3d;margin-bottom:20px;margin-top:0}.news-list .news-list-icon{margin-bottom:0}.news-list .news-list-icon .feather{height:50px;stroke:#ffa406;width:50px}.news-list .media-link{background-color:#f9f9f9;color:#484848;display:block;margin-bottom:10px;padding:30px}.news-list .media-link:hover{background-color:#d3d3d3;color:#484848;text-decoration:none}.news-list .media-link:focus,.news-list .media-link:visited{color:#484848}@media (min-width:992px){.news-list .news-list-col{padding-bottom:70px;padding-left:5px;padding-right:5px}}.news-list .media-heading{color:#484848;font-size:19px;font-weight:700}.news-list .media-text{color:#484848}.news-list .news-list-links{text-align:center}.news-list .news-list-links a{color:#c9cbcd}.news-list .news-list-links .news-list-links-rss{border-left:1px solid #c9cbcd;padding-left:10px}.news-list .news-list-links .fa-rss{color:#ffa406;font-size:18px;margin-left:10px;position:relative;top:2px}.featured-jumbotron-bottom-shape{-webkit-clip-path:polygon(0 0,100% 0,100% 94%,0 100%);clip-path:polygon(0 0,100% 0,100% 94%,0 100%);position:relative;z-index:2;margin-bottom:-30px}.featured-jumbotron{background-color:#627894;text-align:center;color:#fff;padding-top:10px;margin-bottom:0}.featured-jumbotron .btn{padding-left:20px;padding-right:20px;min-width:200px}@media (max-width:991px){.featured-jumbotron .btn{margin-bottom:25px}}.featured-jumbotron h1{font-weight:700;margin-bottom:30px;margin-top:0}@media (min-width:992px){.featured-jumbotron h1{font-size:45px}}@media (max-width:991px){.featured-jumbotron h1{font-size:30px}}.featured-jumbotron h1:after{border-bottom:3px solid #fff;width:100px;height:5px;display:block;content:"";margin:15px auto 0}.featured-jumbotron h2{color:inherit}.featured-jumbotron a:not(.btn):not(.jumbotron-icon){color:#8a9ca5}.featured-jumbotron a:not(.btn):not(.jumbotron-icon):hover{color:#576972}.featured-jumbotron a:not(.btn):not(.jumbotron-icon):visited{color:#9a816d}@media (max-width:767px){.featured-jumbotron .btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0;min-width:auto}}.featured-jumbotron .jumbotron-icon{margin-bottom:10px;display:block;color:inherit}@media (min-width:768px){.featured-jumbotron .jumbotron-icon{height:60px}.featured-jumbotron .jumbotron-icon .feather{width:60px;height:60px}}@media (max-width:767px){.featured-jumbotron .jumbotron-icon{height:45px}}@media (max-width:767px) and (max-width:767px){.featured-jumbotron .jumbotron-icon .feather{width:45px;height:45px}}.featured-story{position:relative;z-index:1;background-color:#fff;overflow:hidden}@media (max-width:767px){.featured-story{text-align:center}}.featured-story-description{color:#9b9b9b;font-size:12px;margin-top:5px;clear:both;padding-top:10px;margin-bottom:10px}.featured-ad,.featured-story-block{padding-top:25px}@media (min-width:768px){.featured-ad,.featured-story-block{padding-top:50px;min-height:340px}}.featured-story-block{background-position:100% 0;background-repeat:no-repeat;background-color:#fff}.featured-story-block .featured-story-description{font-size:.9em;margin-bottom:10px}@media (min-width:768px){.featured-story-block{padding-right:100px;padding-bottom:50px}}.featured-story-block h2{color:#627894;margin-top:0}.featured-story-block p{font-size:21px;font-weight:100;margin-bottom:20px}.featured-ad-content{clear:both}.featured-ad{position:relative;background-color:#eaeaeb;padding-bottom:50px}@media (min-width:768px){.featured-ad{text-align:right}.featured-ad .featured-ad-content{z-index:2;width:100%;position:absolute;right:15px}.featured-ad .featured-ad-content img{float:right}.featured-ad:after,.featured-ad:before{content:"";position:absolute;min-height:100%;top:0;background-color:#eaeaeb}.featured-ad:before{width:100px;z-index:1;left:-45px;-webkit-clip-path:polygon(0 0,100% 0,100% 100%,0 100%,37% 51%);clip-path:polygon(0 0,100% 0,100% 100%,0 100%,37% 51%)}.featured-ad:after{width:1000px;z-index:1;left:0}}.eclipsefnd-ad:after{clear:both;content:" ";display:table}.eclipsefnd-ad a{-webkit-box-shadow:3px 4px 46px -6px rgba(0,0,0,.51);box-shadow:3px 4px 46px -6px rgba(0,0,0,.51);background:#fff 50% no-repeat;height:200px;width:200px;display:block;text-align:center;text-indent:-9999px;margin:auto}@media (min-width:768px){.eclipsefnd-ad a{float:right}}.ad-strategic-default a{background-size:200px 200px}.ad-eclipsecon-schedule a{font-weight:300}.ad-eclipsecon-schedule>thead>tr>th{border-color:#cecece}.ad-eclipsecon-schedule>tbody>tr>td,.ad-eclipsecon-schedule>tbody>tr>th{border:none}.ad-eclipsecon-schedule>tbody>tr:nth-of-type(odd){background-color:#e8e8e8}.ad-eclipsecon-schedule-title{position:relative;padding-left:30px;display:block;font-size:16px;font-weight:600}.ad-eclipsecon-schedule-title:before{font-family:FontAwesome;content:"\F041";position:absolute;font-size:35px;color:#a59bd0;left:0;top:-2px}.donate-ad{background-color:#f6f6f6;position:relative;overflow:hidden;border-bottom:4px solid #bf4b97}.donate-ad h2{margin-top:0}.donate-ad .btn-square{background-color:#2e2458;color:#fff;margin-bottom:10px;width:57px}.donate-ad .btn-square.active{background-color:#f7941d}.donate-ad .underlined-link{font-weight:400;text-decoration:underline}.donate-ad .underlined-link:hover{text-decoration:none}.donate-ad .btn-donate-close{position:absolute;top:20px;right:20px;z-index:999;font-size:1.2em;cursor:pointer}.donate-ad .list-amount{margin-bottom:0}.donate-ad .donate-submit{margin-top:20px}.donate-ad .donate-submit .input-group-addon{font-size:.8em}.donate-ad .form-inline .input-group>.form-control{padding-right:6px;text-align:right}@media (min-width:768px){.donate-ad .form-inline .input-group>.form-control{width:60px}}.donate-form,.donate-text{padding-top:20px}@media (min-width:992px){.donate-text:after{content:"";position:absolute;top:0;right:-34px;width:0;height:0;border-top:126px solid transparent;border-left:34px solid #f6f6f6;border-bottom:126px solid transparent;z-index:99}}.donate-form form{position:relative;z-index:9}.donate-form:after{content:"";position:absolute;width:1000px;height:300px;z-index:1;left:0;top:0;background-color:#fff}.recognition-fields{display:none}.anchor{display:block;position:relative;top:-14px;visibility:hidden;z-index:9999}.scrollup{width:40px;height:40px;opacity:.3;position:fixed;bottom:50px;right:15px;display:none;text-indent:-9999px;background:url(../images/vendor/eclipsefdn-solstice-components/back-to-top/back-to-top.png?19e6da177416da3208367d78ea0a3c23) no-repeat}.scrollup:focus{outline:none}#back-to-top{margin:0;padding:0}#back-to-top a{border-top:1px solid gray;background-color:#666;color:#fff;display:block;padding:4px 0 3px;text-align:center;width:100%;margin:0}#back-to-top a:focus,#back-to-top a:hover{text-decoration:none;background:#dfdfe4;color:#4a4a4a}.share-button{padding:5px;display:block;color:#fff;width:24px;height:24px}.share-button:active,.share-button:focus,.share-button:hover,.share-button:visited{color:#fff}.share-button .fa{font-size:13px}.share-button-twitter{background-color:#1da1f2}.share-button-facebook{background-color:#3b5998}.share-button-mail{background-color:#949494}.default-breadcrumbs{background:#f1f3f7;background-size:100%;color:#575757;border-bottom:none;border-top:none;font-size:.85em}.breadcrumb{background:none;margin-bottom:0;text-transform:inherit}.breadcrumb a{font-weight:300}.breadcrumb a:link,.breadcrumb a:visited{color:#575757}.breadcrumb a:hover{color:#3d3d3d}body #st-el-4 .st-btns{overflow:auto}.discover-search{background:#efefef}.discover-search h2{color:#545454;margin-top:1.3em;padding-bottom:0;margin-bottom:.1em}.discover-search .form-search-projects{margin-bottom:1.4em}.discover-search>.container{min-height:267px}@media (min-width:992px){.discover-search>.container{background:url(../images/vendor/eclipsefdn-solstice-components/discover-search/discover-search-bg.jpg?7caf6dd2285eb601704861e00e81cf5a) 100% no-repeat}}.drag_installbutton{position:relative;clear:both;display:inline}.drag_installbutton .tooltip{opacity:1;display:none;background:url(../images/vendor/eclipsefdn-solstice-components/drag-drop/mpcdrag.png?0e677e73f1642275ebc6a4fbf2a61c09) no-repeat scroll 110% 60% #a285c5;position:absolute;top:0;left:64px;text-align:left;width:325px;color:#000;border:1px solid #ae00ce;z-index:99;padding:5px 50px 5px 5px}.drag_installbutton .tooltip h3{margin-top:0;color:#000}.drag_installbutton .tooltip.show-right{left:-335px}.drag_installbutton a.drag:hover .tooltip{display:block}.drag_installbutton.drag_installbutton_v2 .btn:hover{cursor:move}.drag_installbutton.drag_installbutton_v2 .tooltip{left:100px;margin-top:-6px;border:1px solid #777;background-color:#eee}.drag_installbutton.drag_installbutton_v2 .tooltip.tooltip-below-right{right:0;left:auto;top:40px}.drag_installbutton.drag_installbutton_v2 .tooltip h3{font-size:18px}footer#solstice-footer{background:#fff;font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;padding-top:60px;color:#627894;padding-bottom:26px;font-size:14px;border-top:none}footer#solstice-footer h2{color:#000;margin-top:0;font-weight:400;font-size:18px;max-width:auto}footer#solstice-footer a:active,footer#solstice-footer a:focus,footer#solstice-footer a:link,footer#solstice-footer a:visited{color:#627894;font-weight:400}footer#solstice-footer a:hover{color:#252d38}footer#solstice-footer .logo-eclipse-white{margin-bottom:15px;max-width:161px}footer#solstice-footer .nav{margin-left:-15px;margin-bottom:25px}footer#solstice-footer .nav a{padding:6px 15px}footer#solstice-footer .nav a:hover{background:none;color:#252d38}footer#solstice-footer li{padding-bottom:0}@media (max-width:450px){footer#solstice-footer section.col-xs-11,footer#solstice-footer section.col-xs-14{position:relative;float:left;width:95.83333333%;min-height:1px;padding-left:15px;padding-right:15px}}@media (min-width:451px) and (max-width:767px){footer#solstice-footer #footer-useful-links{clear:left}footer#solstice-footer #copyright{clear:both}}#copyright{padding-top:15px}#copyright img{float:left;margin-top:10px;margin-right:15px;clear:both}@media (max-width:991px){#copyright-text{margin-bottom:20px}}@media (min-width:992px){.social-media{text-align:right}}#footer-eclipse-foundation,#footer-legal,#footer-other,#footer-useful-links{z-index:99}.footer-other-working-groups{font-weight:300;font-size:11px}.footer-other-working-groups .logo-eclipse-default,.footer-other-working-groups .social-media{margin-bottom:20px;margin-top:0}.footer-other-working-groups .img-responsive{max-width:175px}.footer-other-working-groups .footer-working-group-col{padding:0}@media (min-width:1200px){.footer-other-working-groups{background:url(../images/vendor/eclipsefdn-solstice-template/footer-working-group-separator.png?7755eb2e94e0b22d832e9ffa7cd79479) 50% repeat-y}.footer-other-working-groups .img-responsive{max-width:200px}}.footer-min{background:#f5f5f5;border-top:1px solid #b5b5b5;position:absolute;width:100%;bottom:0;padding:10px 0}.footer-min a{font-weight:400;font-size:.8em}.footer-min p,.footer-min ul{margin-bottom:0;font-size:.8em}.footer-min ul{text-align:right}.footer-min ul li{padding-bottom:0}@media screen and (max-width:767px){.footer-min p,.footer-min ul{text-align:center}}body.solstice-footer-min{margin-bottom:36px;position:static}@media screen and (max-width:767px){body.solstice-footer-min{margin-bottom:51px}}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:transparent;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu #navbar-main-menu{float:none}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#ffa406;height:3px}#main-menu .nav{margin:0;padding:0;background:#8e9fb4}#main-menu .nav>li.open .dropdown-toggle{color:#fff;background:#787878}#main-menu .nav>li>a{color:#fff;text-transform:none;padding:18px 15px;border-bottom:1px solid #525252}#main-menu .nav>li .dropdown-menu{background:#525252;padding:0;border-radius:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#ffa406;color:#fff}#main-menu .nav>li .dropdown-menu>li.active a:focus,#main-menu .nav>li .dropdown-menu>li.active a:hover{color:#fff;background:#f5f5f5}#main-menu .nav>li .dropdown-menu>li>a{padding:18px 15px;color:#afafaf}#main-menu .nav>li .dropdown-menu>li>a:focus,#main-menu .nav>li .dropdown-menu>li>a:hover{color:#7c7c7c;background:#f5f5f5}#main-menu .nav>li.main-menu-search .dropdown-toggle{display:none}#main-menu .nav>li.main-menu-search .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none;display:block}#main-menu .nav>li.main-menu-search .dropdown-menu p{color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .yamm-content{padding:15px}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input{background-color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input-box{border:none}}@media (max-width:1199px){#breadcrumb .container,#header-wrapper .container,.toolbar-container-wrapper .container,main .container{width:auto}}@media (min-width:768px){#main-menu{font-size:14px;margin-bottom:5px}#main-menu .dropdown li,#main-menu ul li{text-transform:none}#main-menu li a{margin-right:0;color:#fff}#main-menu li a:active,#main-menu li a:hover{color:#ccc}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:auto;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:auto;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#6b655f}#main-menu .dropdown-menu a:active,#main-menu .dropdown-menu a:hover{color:#ffa406}}@media (min-width:992px){#main-menu{font-size:17px}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active,#main-menu a:focus{color:#ccc}#main-menu .nav .open a,#main-menu .nav .open a:focus,#main-menu .nav .open a:hover,#main-menu .nav>li>a:focus,#main-menu .nav>li>a:hover{background-color:transparent}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.about,.ul-left-nav>li.separator{padding-left:0;font-weight:700}.ul-left-nav>li.about img,.ul-left-nav>li.separator img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#35322f}.logo-eclipse-default-mobile{max-height:50px}@media (min-width:768px){.alternate-layout #main-menu{font-size:14px}.alternate-layout #main-menu ul li{text-transform:none}.alternate-layout #main-menu li a{color:#6b655f}.alternate-layout #main-menu li a:active,.alternate-layout #main-menu li a:hover{color:#35322f}}@media (min-width:992px){.alternate-layout #main-menu{font-size:17px}}@media (max-width:767px){.alternate-layout #main-menu{background:#627894 100% 0 no-repeat}}main #bigbuttons{min-height:1px;padding:1.65em 15px 2.2em;text-align:center;position:relative;top:auto;left:auto}@media (min-width:768px){main #bigbuttons{float:left;width:41.66666667%;margin-left:58.33333333%}}@media (min-width:992px){main #bigbuttons{float:left;width:62.5%;margin-left:37.5%}}@media (min-width:1200px){main #bigbuttons{float:left;width:66.66666667%;margin-left:25%}}main #bigbuttons h3{display:none}main #bigbuttons:after,main #bigbuttons:before{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons ul{padding-left:0;list-style:none;margin-left:-5px}main #bigbuttons ul>li{display:inline-block;padding-left:5px;padding-right:5px}main #bigbuttons ul li{background:none}@media (min-width:768px){main #bigbuttons ul li{float:right}}main #bigbuttons a{position:relative;margin:0;top:auto;left:auto}main #bigbuttons a:hover{text-decoration:none}div#novaContent{background-position:0 0;padding-top:0}@media (max-width:767px){div#novaContent{background-image:none}}@media (min-width:1200px){div#novaContent{background-position:top}}.legacy-page #midcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #midcolumn{float:left;width:70.83333333%}}.legacy-page #midcolumn #maincontent,.legacy-page #midcolumn #midcolumn{width:100%}.legacy-page #midcolumn.no-right-sidebar{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #midcolumn.no-right-sidebar{float:left;width:100%}}.legacy-page #rightcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #rightcolumn{float:left;width:29.16666667%}}.logo-eclipse-default{margin:0}.header_nav{padding-bottom:35px}.header_nav img{margin:20px auto}.header_nav ul{background:#f4f4f4;padding:0;text-transform:uppercase;color:#7b778e;margin:0;font-size:16px}.header_nav ul li{list-style:none;clear:right;padding-bottom:0}.header_nav ul li:nth-child(odd){clear:left}.header_nav ul a{padding:20px;display:block;font-weight:600}.header_nav ul a:active,.header_nav ul a:link,.header_nav ul a:visited{color:#7b778e}.header_nav ul a:hover{color:#ffa406}.header_nav ul a i{font-size:30px;padding:4px 0 0;text-align:center;font-weight:700}.header_nav ul span{padding:0 0 0 5px}.header_nav ul span p{font-size:11px;text-transform:none;font-weight:400;margin:0}.icon-sidebar-menu h3{margin-top:0;font-size:16px;margin-bottom:5px}.icon-sidebar-menu p{font-size:13px}.icon-sidebar-menu .circle-icon{width:80px;height:80px;display:block}.icon-sidebar-menu .circle-icon i{font-size:37px;margin-top:20px}.step-by-step .intro{text-align:center}.step-by-step .intro h2{margin-top:1.5em}.step-by-step .step-by-step-timeline{text-align:center;margin-top:1.5em}.step-by-step .step-by-step-timeline .step-icon,.step-by-step .step-by-step-timeline .step-icon:hover,.step-by-step .step-by-step-timeline .step-icon:visited{color:#3d3d3d}.step-by-step .step-by-step-timeline .feather{width:50px;height:50px;margin-bottom:15px}.tabs-sidebar .nav{margin-top:15px}.tabs-sidebar .nav img{padding-top:13px}.tabs-sidebar .nav .active img.desaturate{-webkit-filter:grayscale(0);filter:grayscale(0)}.tabs-sidebar .nav li.active a{background:none;border:1px solid #cbd3e8}.tabs-sidebar .nav li.active a:after{content:"";position:absolute;left:100%;top:50%;margin-top:-13px;display:block;width:8px;height:21px;background:url(../images/vendor/eclipsefdn-solstice-components/tabs-sidebar/tabs-sidebar-active.png?ba27d4209469fa215d4ad75e4c5ebbe9) no-repeat}.tabs-sidebar .nav li a{border:1px solid #fff}.tabs-sidebar .nav li a:focus,.tabs-sidebar .nav li a:hover{outline:none;border:1px solid #cbd3e8}.tabs-sidebar .tab-content .row{padding:1em;border-bottom:1px solid #eee}.tabs-sidebar .tab-content p{font-size:13.5px}.timeline{margin:35px auto 0}.timeline a{font-weight:700}.timeline .gs-item{padding-bottom:20px}.timeline .circle{background:#adb9c9;color:#fff;border:2px solid #fff;height:47px;width:47px;font-size:20px;float:left;padding-top:6px;padding-left:1px;font-weight:700}.timeline .two .circle{background:#9eacbe}.timeline .three .circle{background:#7f92aa}.timeline .four .circle{background:#627894}.timeline h1{font-size:2em;text-align:left;padding:9px 0 0 62px;margin-bottom:24px}.timeline ul{padding-left:1px}.timeline li{margin-bottom:1em;padding-left:14px;list-style:none}.timeline li:before{content:"\BB";color:#ffa406;margin-left:-16px;margin-right:10px;display:block;float:left}@media (min-width:992px){.timeline{border-top:1px dotted #c2cbe4;position:relative}.timeline .circle{margin:-25px auto 0;float:none}.timeline h1{padding-top:15px;float:none;padding-left:0}}.toolbar-menu{background-color:#fff;border-bottom:1px solid #ccc;border-top:1px solid #ccc;margin-bottom:25px}.toolbar-menu .breadcrumb{margin-bottom:0;padding-left:0;background:none}.toolbar-menu .breadcrumb li{padding-bottom:0;font-size:1.1em}.toolbar-menu .breadcrumb>li+li:before{content:" | "}.toolbar-menu .breadcrumb a:link,.toolbar-menu .breadcrumb a:visited{color:#2f2f2f}.toolbar-menu .breadcrumb a:hover{color:#ffa406}.toolbar-menu .breadcrumb a.active{color:#371e1d;font-weight:600}.toolbar-container-wrapper{background:transparent}.toolbar-row{padding:8px 0;font-size:12px;color:#fff;font-weight:300}.toolbar-row a{font-weight:300;color:#fff;text-decoration:none}.toolbar-row a:hover{color:#ccc}.toolbar-row a:visited{color:#fff}.toolbar-row ul{margin-bottom:0}.toolbar-row ul li:last-child{padding-right:0}.toolbar-row .toolbar-left-content span{font-size:18px}@media (max-width:767px){.toolbar-row .toolbar-left-content span{padding-top:10px;text-align:center;display:block}}@media (min-width:768px){.toolbar-row .toolbar-left-content span{border-left:5px solid #f7941e;padding-left:10px}}.toolbar-row .toolbar-left-content a{font-weight:700;color:#ffa406}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#627894}.alternate-layout .toolbar-container-wrapper{background:#fff}.alternate-layout .toolbar-row,.alternate-layout .toolbar-row a{color:#627894}.alternate-layout .toolbar-row a:hover{color:#8e9fb4}.alternate-layout .toolbar-row a:visited{color:#627894}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.block-box,.sideitem{background:#fff;color:#3d3d3d;margin:0 0 2em;padding:15px;border:1px solid #e0e0e0}.block-box h2,.block-box h3,.block-box h6,.sideitem h2,.sideitem h3,.sideitem h6{background:none;color:#3d3d3d;margin:0 0 10px;padding:0 0 10px;text-transform:inherit;font-weight:600;font-size:15px}.block-box h2 a:hover,.block-box h3 a:hover,.block-box h6 a:hover,.sideitem h2 a:hover,.sideitem h3 a:hover,.sideitem h6 a:hover{color:#3d3d3d}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0}.block-box .list-heading,.sideitem .list-heading{font-weight:600;margin-bottom:4px;font-size:15px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.block-heading{background:none repeat scroll 0 0 #627894;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.brand-primary{color:#ffa406}.brand-secondary,.brand-tertiary{color:#627894}.brand-quaternary{color:#a0aec1}.brand-quinary{color:#f1f3f7}.brand-success{color:#5cb85c}.brand-info{color:#627894}.brand-warning{color:#ffa406}.brand-danger{color:#d9534f}.orange{color:#f7941e}.blue{color:#00f}.darkblue{color:#009}.yellow{color:#ff0}.red{color:red}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-primary{background:#ffa406;color:#fff}.background-primary h2,.background-primary h3,.background-primary h4,.background-primary li,.background-primary p{color:inherit}.background-secondary{background:#627894;color:#fff}.background-secondary h2,.background-secondary h3,.background-secondary h4,.background-secondary li,.background-secondary p{color:inherit}.background-tertiary{background:#627894;color:#fff}.background-tertiary h2,.background-tertiary h3,.background-tertiary h4,.background-tertiary li,.background-tertiary p{color:inherit}.background-quaternary{background:#a0aec1;color:#fff}.background-quaternary h2,.background-quaternary h3,.background-quaternary h4,.background-quaternary li,.background-quaternary p{color:inherit}.background-quinary{background:#f1f3f7;color:#fff}.background-quinary h2,.background-quinary h3,.background-quinary h4,.background-quinary li,.background-quinary p{color:inherit}.background-bg-body{background:#fff}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-mid-grey{background:#e6e7e8}.background-grey{background:#f5f5f5}.background-light-grey{background:#f1f1f1}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-blue{background:#627894;color:#fff}.background-white{background:#fff}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}.label-purple{background-color:#ffa406}#novaContent.background-image-none{background-image:none}.table-striped>tbody>tr:nth-of-type(odd).background-orange,tr.background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.box-gray-border{border:1px solid #d6d6d6}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.border-grey-right{border-right:1px solid #ccc}.no-border{border:none!important}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing :after,.reset-box-sizing :before{-webkit-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.vertical-align{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (min-width:992px){.vertical-align-md{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.float-right{float:right}.float-left{float:left}.visible-thin{display:none!important}.col-lg-5-eclipse,.col-md-5-eclipse,.col-sm-5-eclipse,.col-xs-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:700;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:"\F00C"}.container-list{counter-reset:list;padding-left:55px}.container-list>.list-row{margin-top:12px;position:relative;min-height:3em}.container-list>.list-row:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:700;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(list);counter-increment:list;display:block}.container-list>.list-row>div:first-child{padding-left:.5em}.container-list>.list-row .no-wrap{white-space:nowrap}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:700;color:#969696}.list-checkmark a:hover{color:#ffa406}.list-padding li{padding-bottom:25px}.list-border-right li{border-right:1px solid}.list-border-right li:last-child{border:none}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.fa-li{top:.23em}.reset{margin:0}.padding-0,.reset{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-35{padding:35px}.padding-40{padding:40px}.padding-45{padding:45px}.padding-50{padding:50px}.padding-55{padding:55px}.padding-60{padding:60px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-bottom-35{padding-bottom:35px}.padding-bottom-40{padding-bottom:40px}.padding-bottom-45{padding-bottom:45px}.padding-bottom-50{padding-bottom:50px}.padding-bottom-55{padding-bottom:55px}.padding-bottom-60{padding-bottom:60px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-top-35{padding-top:35px}.padding-top-40{padding-top:40px}.padding-top-45{padding-top:45px}.padding-top-50{padding-top:50px}.padding-top-55{padding-top:55px}.padding-top-60{padding-top:60px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-left-35{padding-left:35px}.padding-left-40{padding-left:40px}.padding-left-45{padding-left:45px}.padding-left-50{padding-left:50px}.padding-left-55{padding-left:55px}.padding-left-60{padding-left:60px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.padding-right-35{padding-right:35px}.padding-right-40{padding-right:40px}.padding-right-45{padding-right:45px}.padding-right-50{padding-right:50px}.padding-right-55{padding-right:55px}.padding-right-60{padding-right:60px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-35{margin:35px}.margin-40{margin:40px}.margin-45{margin:45px}.margin-50{margin:50px}.margin-55{margin:55px}.margin-60{margin:60px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-bottom-35{margin-bottom:35px}.margin-bottom-40{margin-bottom:40px}.margin-bottom-45{margin-bottom:45px}.margin-bottom-50{margin-bottom:50px}.margin-bottom-55{margin-bottom:55px}.margin-bottom-60{margin-bottom:60px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-top-35{margin-top:35px}.margin-top-40{margin-top:40px}.margin-top-45{margin-top:45px}.margin-top-50{margin-top:50px}.margin-top-55{margin-top:55px}.margin-top-60{margin-top:60px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-7{margin-right:7px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-right-35{margin-right:35px}.margin-right-40{margin-right:40px}.margin-right-45{margin-right:45px}.margin-right-50{margin-right:50px}.margin-right-55{margin-right:55px}.margin-right-60{margin-right:60px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.margin-left-35{margin-left:35px}.margin-left-40{margin-left:40px}.margin-left-45{margin-left:45px}.margin-left-50{margin-left:50px}.margin-left-55{margin-left:55px}.margin-left-60{margin-left:60px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.margin-auto{margin:0 auto}.breadcrumbs-default-margin{margin-bottom:20px}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;vertical-align:middle}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0;-moz-transform:scale(.9999);border-color:#f5f5f5 transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent}.triangle.triangle-white{border-color:#f9f9f9 hsla(0,0%,98%,0) hsla(0,0%,98%,0) transparent}.box{padding:15px 10px;margin-bottom:10px;margin-top:1.5em}.blue_box{background-color:#114e68}.blue_box h3,.blue_box p{color:#fff}.uppercase{text-transform:uppercase}.fw-200{font-weight:200}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.emphasis,.fw-700{font-weight:700}.emphasis{color:#ffa406}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.underlined{text-decoration:underline}.small{font-size:10px}.big{font-size:20px}.font-size-large{font-size:58px}.text-highlight{background:#eee;padding:12px 24px}.white-space-normal{white-space:normal}.header-short-underline{font-size:18px;font-weight:700}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}a:visited{color:#9e55d2}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}.a-underline{text-decoration:underline}.a-underline:hover{text-decoration:none}blockquote{font-size:14px}.top-level-heading{background:#627894;position:relative;padding:20px;margin-bottom:30px;color:#fff}.top-level-heading:after{width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #627894;position:absolute;content:"";bottom:-20px;left:50%;margin-left:-20px}.heading-underline{position:relative;font-size:2em;text-transform:uppercase;font-weight:200;margin:50px 0 20px}.heading-underline:after{border-bottom:4px solid #f7941d;content:"";display:block;width:100px;margin:10px auto 0}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{margin-bottom:-55px}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table-layout-fixed{table-layout:fixed}.table.table-solstice th{background:#627894;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(2n){background:#40bbdc}.deprecated #novaContent{background:url(../images/vendor/eclipsefdn-solstice-template/bg-deprecated.gif?3219c56285f22eddb0f5746aeca4d4fe) center 75px no-repeat!important}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#ffa406}.textfield-underline{border-top:none;border-left:none;border-right:none;border-bottom:1px solid inherit;background-color:transparent;border-radius:0;-webkit-box-shadow:none;box-shadow:none;margin:10px auto;color:inherit}.textfield-underline:-moz-placeholder,.textfield-underline::-moz-placeholder{color:inherit}.textfield-underline:-ms-input-placeholder{color:inherit}.textfield-underline::-webkit-input-placeholder{color:inherit}.hidden-label label.control-label{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.border-reset{border:0!important}@media (min-width:768px){#main-menu li>a{padding:0 0 2px;margin:10px 15px}#main-menu li>a:hover{border-bottom:1px solid #ccc;padding-bottom:1px}#main-menu li.dropdown.eclipse-more.open>a{color:#ccc}#main-menu li.dropdown.eclipse-more .dropdown-menu{background-color:#fff;right:15px;left:auto;border-radius:0;-webkit-box-shadow:none;box-shadow:none;border:none;background-clip:inherit;padding-top:0;outline:1px solid rgba(0,0,0,.15);outline-offset:-1px}#main-menu li.dropdown.eclipse-more .dropdown-menu:before{border-right:1px solid #ffa406;border-left:1px solid #ffa406;background-color:#ffa406;display:block;content:"";height:5px;width:100%;position:relative;top:-4px}#main-menu li.dropdown.eclipse-more .dropdown-menu p{color:#6b655f}#main-menu li.dropdown.eclipse-more .dropdown-menu a{color:#423f3b}#main-menu li.dropdown.eclipse-more .dropdown-menu a:hover{color:#6b655f;border:none}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box{border-top:none!important;border-left:none!important;border-right:none!important;border-bottom:1px solid inherit!important;background-color:transparent!important;border-radius:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;margin:10px auto!important;color:inherit!important;width:95%;margin:0!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box:-moz-placeholder,#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box::-moz-placeholder{color:inherit!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box:-ms-input-placeholder{color:inherit!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box::-webkit-input-placeholder{color:inherit!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box-focus,#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box:hover{border-top:none!important;border-left:none!important;border-right:none!important}.toolbar-row a{padding-bottom:1px}.toolbar-row a:hover{border-bottom:1px solid #ccc}}#header-row{padding-bottom:20px}.header-wrapper{background:#627894 100% 0 no-repeat;background-size:cover}.header-wrapper .featured-jumbotron{background-color:transparent}.header-default-bg-img{background-image:url(../images/vendor/eclipsefdn-solstice-components/landing-well/jakarta_home_bg.jpg?0275b19cb44057634c0bd75bc12cb7ca)}.header-alternate-bg-img-1{background-image:url(../images/vendor/eclipsefdn-solstice-components/landing-well/eclipse_alternate_bg-1.jpg?1d805119502c5489dbed5cbc08f0c656)}.alternate-layout header{background-color:#fff}.alternate-layout #main-menu li.dropdown.eclipse-more.open>a{color:#35322f}#back-to-top a{border-top:none;padding:6px 15px;text-align:left;width:auto;float:left;margin-left:15px}@media (max-width:767px){#main-menu.navbar{border:0;border-bottom:none}#btn-call-for-action{padding-top:10px}#btn-call-for-action a{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}}@media (max-width:991px){#btn-call-for-action{padding-top:10px}#btn-call-for-action a{padding:5px 8px;font-size:12px;line-height:1.5;border-radius:0}}#adBlock,.cse .gsc-control-cse,.gsc-control-cse{background-color:#fff!important;border:none!important}.dropdown-menu .gsc-input-box{border-top:none!important;border-left:none!important;border-right:none!important;border-bottom:1px solid inherit!important;background-color:transparent!important;border-radius:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;margin:10px auto!important;color:inherit!important;width:95%;margin:0!important}.dropdown-menu .gsc-input-box:-moz-placeholder,.dropdown-menu .gsc-input-box::-moz-placeholder{color:inherit!important}.dropdown-menu .gsc-input-box:-ms-input-placeholder{color:inherit!important}.dropdown-menu .gsc-input-box::-webkit-input-placeholder{color:inherit!important}.dropdown-menu .gsc-input-box-focus,.dropdown-menu .gsc-input-box:hover{border-top:none!important;border-left:none!important;border-right:none!important;border-bottom:1px solid #d9d9d9!important}.gsc-search-button-v2{border:1px solid #ffa406!important;border-radius:0!important;-moz-border-radius:0!important;-webkit-border-radius:0!important;background-color:#ffa406!important;background-image:-webkit-gradient(linear,left top,left bottom,from(#ffa406),to(#ffa406))!important;background-image:linear-gradient(180deg,#ffa406,#ffa406)!important}.main-page-title{padding:20px 0 0}.main-page-title #main-sidebar{position:absolute;width:100%;padding-left:15px;padding-right:15px}#main-sidebar{color:#fff;position:relative}#main-sidebar .main-sidebar-html-block{background:#627894;padding:20px;text-align:center}#main-sidebar .ul-left-nav{background:#627894;padding:15px;position:relative;margin-bottom:0}#main-sidebar .ul-left-nav>li.separator{border:none}@media (min-width:992px){#main-sidebar:after{display:block;content:"";width:100%;height:40px;-webkit-clip-path:none;clip-path:none;position:relative;bottom:0;background:#627894}}#main-sidebar a,#main-sidebar a:hover{color:#fff}#main-sidebar .separator{font-size:18px;font-weight:400}#main-sidebar .separator:hover{text-decoration:none}#main-sidebar li{border-bottom:1px solid #7f92aa;padding-bottom:10px;margin-bottom:10px}#main-sidebar li:last-child{border-bottom:none}.sideitem h6{border-bottom:1px solid #8a8a8a}.sideitem ul{margin-left:10px}@media (min-width:992px){.main-sidebar-default-margin{margin-top:-20px}}@media (max-width:767px){footer#solstice-footer{text-align:center}footer#solstice-footer .nav{margin-left:0}}main{border-bottom:1px solid #627894}@media (min-width:768px){.heading-line{border-bottom:1px solid #bdbdbd;margin-bottom:25px;position:relative;top:-15px}.heading-line span{background-color:#fff;padding:0 50px;position:relative;top:15px}}.featured-footer-newsletter{margin-top:0;margin-bottom:0;padding:100px 30px}.news-list .news-list-col{padding-bottom:0}main{line-height:1.5}.events .event{margin-top:35px}@media (min-width:768px){.events .heading-line span{background-color:#627894;padding:0 50px;position:relative;top:15px}}.events p{color:#bcc6d3}.jakarta-newsletter-default-padding{padding:100px 30px}.jakarta-newsletter .feather{width:60px;height:60px}.jakarta-members ul{padding-top:10px}.jakarta-members li{padding:0 20px 40px}.jakarta-members .img-responsive{display:inherit}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/stylesheets/locationtech-barebone.min.css b/eclipse.org-common/themes/solstice/public/stylesheets/locationtech-barebone.min.css
index 586c102..85006c8 100644
--- a/eclipse.org-common/themes/solstice/public/stylesheets/locationtech-barebone.min.css
+++ b/eclipse.org-common/themes/solstice/public/stylesheets/locationtech-barebone.min.css
@@ -1,6 +1,6 @@
-.thin-header *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.thin-header *:before,.thin-header *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.default-breadcrumbs{background:#f2f2f3;background-size:100%;color:#18203a;text-align:center;border-bottom:1px solid #fff;font-size:12px}.default-breadcrumbs p{color:#bebebe;max-width:450px;margin:30px auto 20px auto;font-weight:400}.default-breadcrumbs p:last-child{padding-bottom:1.5em}.default-breadcrumbs .btn{min-width:150px;margin-right:10px;margin-left:10px}.default-breadcrumbs .breadcrumb{background:none;margin:15px 0 14px 0;padding-left:0;padding-bottom:0;text-align:left;text-transform:uppercase}.default-breadcrumbs .breadcrumb li{padding-bottom:3px}.default-breadcrumbs .breadcrumb .active{color:#18203a}.default-breadcrumbs .breadcrumb a{font-weight:600;text-decoration:none}.default-breadcrumbs .breadcrumb a:link,.default-breadcrumbs .breadcrumb a:visited{color:#18203a}.default-breadcrumbs .breadcrumb a:hover{color:#1f3963}body #st-el-4 .st-btns{overflow:auto}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#18203a}.breadcrumb>.active{color:#777}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#1f3963}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#1f3963}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#1f3963}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}.float-right{float:right}.float-left{float:left}.padding-0{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.reset{padding:0;margin:0}.visible-thin{display:none !important}.brand-primary{color:#1f3963}.brand-secondary{color:#1f3963}.brand-success{color:#5cb85c}.brand-info{color:#1f3963}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}tr.background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.background-blue{background:#1f3963;color:#fff}.blue{color:#00f}.darkblue{color:#009}.yellow{color:yellow}.red{color:#f00}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-grey{background:#f5f5f5}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-white{background:#fff}#novaContent.background-image-none{background-image:none}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;-moz-transition:opacity .15s ease-in-out;-ms-transition:opacity .15s ease-in-out;-o-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{padding-bottom:0;margin-bottom:-28px}.table-layout-fixed{table-layout:fixed}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.col-xs-5-eclipse,.col-sm-5-eclipse,.col-md-5-eclipse,.col-lg-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.donation-button{padding-top:.75em;padding-bottom:.75em;padding-left:3.5em;padding-right:3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:hover,.btn-simple:active{border:1px solid #777;background:#eee}.btn-smaller,.btn-group-smaller>.btn{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:normal}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing *:before,.reset-box-sizing *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px 5px}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.no-border{border:none ! important}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table.table-solstice th{background:#1f3963;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(even){background:#40bbdc}.vertical-align{display:flex;align-items:center}@media (min-width:992px){.vertical-align-md{display:flex;align-items:center}}.box-gray-border{border:1px solid #d6d6d6}/*!
+.thin-header *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.thin-header *:before,.thin-header *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.default-breadcrumbs{background:#f2f2f3;background-size:100%;color:#18203a;border-bottom:1px solid #fff;border-top:1px solid #fff;font-size:12px}.breadcrumb{background:none;margin-bottom:0;text-transform:uppercase}.breadcrumb a{font-weight:600}.breadcrumb a:link,.breadcrumb a:visited{color:#18203a}.breadcrumb a:hover{color:#1f3963}body #st-el-4 .st-btns{overflow:auto}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.breadcrumb{padding:20px 30px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#18203a}.breadcrumb>.active{color:#fff}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#1f3963}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#1f3963}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none solid;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.block-box,.sideitem{background:#f6f6f6;color:#202020;margin:0 0 2em 0;padding:0 0 5px 0;border:none}.block-box h2,.sideitem h2,.block-box h3,.sideitem h3,.block-box h6,.sideitem h6{background:#1f3963;color:#fff;margin:0 0 15px 0;padding:15px 20px;text-transform:uppercase;font-weight:700;font-size:15px}.block-box h2 a:hover,.sideitem h2 a:hover,.block-box h3 a:hover,.sideitem h3 a:hover,.block-box h6 a:hover,.sideitem h6 a:hover{color:#fff}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0 15px 15px}.block-box .list-heading,.sideitem .list-heading{font-weight:700;margin-bottom:4px;font-size:15px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.block-heading{background:none repeat scroll 0 0 #1f3963;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.brand-primary{color:#1f3963}.brand-secondary{color:#3883be}.brand-tertiary{color:#1f3963}.brand-quaternary{color:#b27800}.brand-quinary{color:#ffab00}.brand-success{color:#5cb85c}.brand-info{color:#1f3963}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.blue{color:#00f}.darkblue{color:#009}.yellow{color:yellow}.red{color:#f00}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-primary{background:#1f3963;color:#fff}.background-primary h2,.background-primary h3,.background-primary h4,.background-primary p,.background-primary li{color:inherit}.background-secondary{background:#3883be;color:#fff}.background-secondary h2,.background-secondary h3,.background-secondary h4,.background-secondary p,.background-secondary li{color:inherit}.background-tertiary{background:#1f3963;color:#fff}.background-tertiary h2,.background-tertiary h3,.background-tertiary h4,.background-tertiary p,.background-tertiary li{color:inherit}.background-quaternary{background:#b27800;color:#fff}.background-quaternary h2,.background-quaternary h3,.background-quaternary h4,.background-quaternary p,.background-quaternary li{color:inherit}.background-quinary{background:#ffab00;color:#fff}.background-quinary h2,.background-quinary h3,.background-quinary h4,.background-quinary p,.background-quinary li{color:inherit}.background-bg-body{background:#fff}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-mid-grey{background:#e6e7e8}.background-grey{background:#f5f5f5}.background-light-grey{background:#f1f1f1}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-blue{background:#1f3963;color:#fff}.background-white{background:#fff}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}.label-purple{background-color:#1f3963}#novaContent.background-image-none{background-image:none}tr.background-orange{background:#fbc380}.table-striped>tbody>tr:nth-of-type(odd).background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.box-gray-border{border:1px solid #d6d6d6}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.border-grey-right{border-right:1px solid #ccc}.no-border{border:none ! important}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing *:before,.reset-box-sizing *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.vertical-align{display:flex;align-items:center;justify-content:center}@media (min-width:992px){.vertical-align-md{display:flex;align-items:center;justify-content:center}}.float-right{float:right}.float-left{float:left}.visible-thin{display:none !important}.col-xs-5-eclipse,.col-sm-5-eclipse,.col-md-5-eclipse,.col-lg-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:bold;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:""}.container-list{counter-reset:list;padding-left:55px}.container-list>.list-row{margin-top:12px;position:relative;min-height:3em}.container-list>.list-row:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:bold;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(list);counter-increment:list;display:block}.container-list>.list-row>div:first-child{padding-left:.5em}.container-list>.list-row .no-wrap{white-space:nowrap}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:bold;color:#969696}.list-checkmark a:hover{color:#f7941e}.list-padding li{padding-bottom:25px}.list-border-right li{border-right:1px solid}.list-border-right li:last-child{border:none}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.fa-li{top:.23em}.reset{padding:0;margin:0}.padding-0{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-35{padding:35px}.padding-40{padding:40px}.padding-45{padding:45px}.padding-50{padding:50px}.padding-55{padding:55px}.padding-60{padding:60px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-bottom-35{padding-bottom:35px}.padding-bottom-40{padding-bottom:40px}.padding-bottom-45{padding-bottom:45px}.padding-bottom-50{padding-bottom:50px}.padding-bottom-55{padding-bottom:55px}.padding-bottom-60{padding-bottom:60px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-top-35{padding-top:35px}.padding-top-40{padding-top:40px}.padding-top-45{padding-top:45px}.padding-top-50{padding-top:50px}.padding-top-55{padding-top:55px}.padding-top-60{padding-top:60px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-left-35{padding-left:35px}.padding-left-40{padding-left:40px}.padding-left-45{padding-left:45px}.padding-left-50{padding-left:50px}.padding-left-55{padding-left:55px}.padding-left-60{padding-left:60px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.padding-right-35{padding-right:35px}.padding-right-40{padding-right:40px}.padding-right-45{padding-right:45px}.padding-right-50{padding-right:50px}.padding-right-55{padding-right:55px}.padding-right-60{padding-right:60px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-35{margin:35px}.margin-40{margin:40px}.margin-45{margin:45px}.margin-50{margin:50px}.margin-55{margin:55px}.margin-60{margin:60px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-bottom-35{margin-bottom:35px}.margin-bottom-40{margin-bottom:40px}.margin-bottom-45{margin-bottom:45px}.margin-bottom-50{margin-bottom:50px}.margin-bottom-55{margin-bottom:55px}.margin-bottom-60{margin-bottom:60px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-top-35{margin-top:35px}.margin-top-40{margin-top:40px}.margin-top-45{margin-top:45px}.margin-top-50{margin-top:50px}.margin-top-55{margin-top:55px}.margin-top-60{margin-top:60px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-7{margin-right:7px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-right-35{margin-right:35px}.margin-right-40{margin-right:40px}.margin-right-45{margin-right:45px}.margin-right-50{margin-right:50px}.margin-right-55{margin-right:55px}.margin-right-60{margin-right:60px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.margin-left-35{margin-left:35px}.margin-left-40{margin-left:40px}.margin-left-45{margin-left:45px}.margin-left-50{margin-left:50px}.margin-left-55{margin-left:55px}.margin-left-60{margin-left:60px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.margin-auto{margin:0 auto}.breadcrumbs-default-margin{margin-bottom:20px}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,0.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,0.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;vertical-align:middle}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0 300px;-moz-transform:scale(.9999);border-color:#f5f5f5 transparent transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent transparent}.triangle.triangle-white{border-color:#f9f9f9 rgba(249,249,249,0) rgba(249,249,249,0) transparent}.box{padding:15px 10px;margin-bottom:10px;margin-top:1.5em}.blue_box{background-color:#114e68}.blue_box h3,.blue_box p{color:#fff}.uppercase{text-transform:uppercase}.fw-200{font-weight:200}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.fw-700{font-weight:700}.emphasis{color:#f7941e;font-weight:700}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.underlined{text-decoration:underline}.small{font-size:10px}.big{font-size:20px}.font-size-large{font-size:58px}.text-highlight{background:#eee;padding:12px 24px}.white-space-normal{white-space:normal}.header-short-underline{font-size:18px;font-weight:bold}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}a:visited{color:#9e55d2}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}.a-underline{text-decoration:underline}.a-underline:hover{text-decoration:none}blockquote{font-size:14px}.top-level-heading{background:#3883be;position:relative;padding:20px;margin-bottom:30px;color:#fff}.top-level-heading:after{width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #3883be;position:absolute;content:"";bottom:-20px;left:50%;margin-left:-20px}.heading-underline{position:relative;font-size:2em;text-transform:uppercase;font-weight:200;margin:50px 0 20px}.heading-underline:after{border-bottom:4px solid #f7941d;content:"";display:block;width:100px;margin:10px auto 0}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;-moz-transition:opacity .15s ease-in-out;-ms-transition:opacity .15s ease-in-out;-o-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{margin-bottom:-28px}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px 5px}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table-layout-fixed{table-layout:fixed}.table.table-solstice th{background:#1f3963;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(even){background:#40bbdc}.deprecated #novaContent{background:url("../images/template/bg-deprecated.gif") center 75px no-repeat ! important}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.textfield-underline{border-top:none;border-left:none;border-right:none;border-bottom:1px solid inherit;background-color:transparent;border-radius:0;box-shadow:none;margin:10px auto;color:inherit}.textfield-underline:-moz-placeholder{color:inherit}.textfield-underline::-moz-placeholder{color:inherit}.textfield-underline:-ms-input-placeholder{color:inherit}.textfield-underline::-webkit-input-placeholder{color:inherit}.hidden-label label.control-label{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.border-reset{border:0 !important}/*!
  * Yamm!3
  * Yet another megamenu for Bootstrap 3
  * 
  * http://geedmo.github.com/yamm3
- */.yamm .nav,.yamm .collapse,.yamm .dropup,.yamm .dropdown{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .nav.navbar-right .dropdown-menu{left:auto;right:0}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}html{position:relative;min-height:100%}.toolbar-container-wrapper{background:#fff}.toolbar-row{padding:8px 0;font-size:12px;color:#666;font-weight:300}.toolbar-row a{font-weight:300;padding-left:4px;color:#666}.toolbar-row a:hover{color:#f7941e}.toolbar-row ul{margin-bottom:0}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#1f3963}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #2f2f2f}@media (min-width:768px){.page-header-logo-bordered{border-bottom:none}}#header-right{text-align:right}.thin-header .visible-thin{display:block !important}.logo-eclipse-default-mobile{max-height:50px}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}.img-responsive{display:block;max-width:100%;height:auto}.list-unstyled{list-style:none}.barebone-layout{color:#333;font-family:'Open Sans',"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857}.barebone-layout a{text-decoration:none}.barebone-layout .nav a{text-decoration:none}.barebone-layout .navbar-toggle{cursor:pointer}.barebone-layout .navbar-toggle.collapsed{display:block}.logo-eclipse-default{max-height:50px}.cla_dec{opacity:.33;vertical-align:bottom}.cla_dec:hover{opacity:1}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#1f3963;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#fff;height:3px}#main-menu .nav{margin:0;background:#1f3963}#main-menu .nav>li{border:1px solid #244273}#main-menu .nav>li.open .dropdown-toggle{color:#fff;background:#b27800}#main-menu .nav>li>a{color:#fff;text-transform:uppercase}#main-menu .nav>li .dropdown-menu{background:#fff;padding:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#bfe7ff;color:#000}#main-menu .nav>li .dropdown-menu>li.active a:hover,#main-menu .nav>li .dropdown-menu>li.active a:focus{color:#000;background:#bfe7ff}#main-menu .nav>li .dropdown-menu>li>a{padding:5px 20px 5px 30px;color:#1f3963}#main-menu .nav>li .dropdown-menu>li>a:hover,#main-menu .nav>li .dropdown-menu>li>a:focus{color:#b27800;background:#f5f5f5}}@media (min-width:768px){#main-menu{font-size:.9em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#fff}#main-menu li a:hover,#main-menu li a:active{background:none;color:#ffab00}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:initial;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:initial;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:hover{color:#f7941e}#main-menu .dropdown-menu a:active{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active{color:#ffab00;background:none}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.separator,.ul-left-nav>li.about{padding-left:0;font-weight:bold}.ul-left-nav>li.separator img,.ul-left-nav>li.about img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#ffab00}.barebone-layout{background:#1f3963}.barebone-layout .wrapper-logo-default{padding-top:5px;padding-bottom:5px}
\ No newline at end of file
+ */.yamm .nav,.yamm .collapse,.yamm .dropup,.yamm .dropdown{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .nav.navbar-right .dropdown-menu{left:auto;right:0}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}- html{position:relative;min-height:100%}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #2f2f2f}@media (min-width:768px){.page-header-logo-bordered{border-bottom:none}}#header-right{text-align:right}.thin-header .visible-thin{display:block !important}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}.img-responsive{display:block;max-width:100%;height:auto}.list-unstyled{list-style:none}.barebone-layout{color:#333;font-family:'Open Sans',"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857}.barebone-layout a{text-decoration:none}.barebone-layout .nav a{text-decoration:none}.barebone-layout .navbar-toggle{cursor:pointer}.barebone-layout .navbar-toggle.collapsed{display:block}.logo-eclipse-default{max-height:50px}.cla_dec{opacity:.33;vertical-align:bottom}.cla_dec:hover{opacity:1}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#1f3963;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu #navbar-main-menu{float:none}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#fff;height:3px}#main-menu .nav{margin:0;padding:0;background:#1f3963}#main-menu .nav>li.open .dropdown-toggle{color:#fff;background:#b27800}#main-menu .nav>li>a{color:#fff;text-transform:uppercase;padding:10px 15px;border-bottom:none}#main-menu .nav>li .dropdown-menu{background:#fff;padding:0;border-radius:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#bfe7ff;color:#000}#main-menu .nav>li .dropdown-menu>li.active a:hover,#main-menu .nav>li .dropdown-menu>li.active a:focus{color:#000;background:#bfe7ff}#main-menu .nav>li .dropdown-menu>li>a{padding:10px 15px;color:#1f3963}#main-menu .nav>li .dropdown-menu>li>a:hover,#main-menu .nav>li .dropdown-menu>li>a:focus{color:#b27800;background:#f5f5f5}#main-menu .nav>li.main-menu-search .dropdown-toggle{display:none}#main-menu .nav>li.main-menu-search .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none;display:block}#main-menu .nav>li.main-menu-search .dropdown-menu p{color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .yamm-content{padding:15px}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input{background-color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input-box{border:none}}@media (max-width:1199px){#header-wrapper .container,.toolbar-container-wrapper .container,main .container,#breadcrumb .container{width:auto}}@media (min-width:768px){#main-menu{font-size:1em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#fff}#main-menu li a:hover,#main-menu li a:active{color:#ffab00}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:initial;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:initial;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:hover{color:#f7941e}#main-menu .dropdown-menu a:active{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active,#main-menu a:focus{color:#ffab00}#main-menu .nav>li>a:hover,#main-menu .nav>li>a:focus{background-color:transparent}#main-menu .nav .open a{background-color:transparent}#main-menu .nav .open a:hover,#main-menu .nav .open a:focus{background-color:transparent}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.separator,.ul-left-nav>li.about{padding-left:0;font-weight:bold}.ul-left-nav>li.separator img,.ul-left-nav>li.about img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#ffab00}.logo-eclipse-default-mobile{max-height:50px}@media (min-width:768px){.alternate-layout #main-menu{font-size:1em}.alternate-layout #main-menu ul li{text-transform:uppercase}.alternate-layout #main-menu li a{color:#fff}.alternate-layout #main-menu li a:hover,.alternate-layout #main-menu li a:active{color:#ffab00}}@media (min-width:992px){.alternate-layout #main-menu{font-size:1em}}@media (max-width:767px){.alternate-layout #main-menu{background:#fff}}.barebone-layout{background:#1f3963}.barebone-layout .wrapper-logo-default{padding-top:5px;padding-bottom:5px}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/stylesheets/locationtech.min.css b/eclipse.org-common/themes/solstice/public/stylesheets/locationtech.min.css
index 6ff7169..dcc32e6 100644
--- a/eclipse.org-common/themes/solstice/public/stylesheets/locationtech.min.css
+++ b/eclipse.org-common/themes/solstice/public/stylesheets/locationtech.min.css
@@ -1,13 +1,13 @@
 /*!
- * Bootstrap v3.3.6 (http://getbootstrap.com)
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#1f3963;text-decoration:none}a:hover,a:focus{color:#1f3963;text-decoration:none}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#1f3963}a.text-primary:hover,a.text-primary:focus{color:#13233c}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#1f3963}a.bg-primary:hover,a.bg-primary:focus{background-color:#13233c}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#2f2f2f}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#2f2f2f;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#1f3963;border-color:#192e50}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#13233c;border-color:#000}.btn-primary:hover{color:#fff;background-color:#13233c;border-color:#0a1321}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#13233c;border-color:#0a1321}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#0a1321;border-color:#000}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#1f3963;border-color:#192e50}.btn-primary .badge{color:#1f3963;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#1f3963;border-color:#192e50}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#13233c;border-color:#000}.btn-info:hover{color:#fff;background-color:#13233c;border-color:#0a1321}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#13233c;border-color:#0a1321}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#0a1321;border-color:#000}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#1f3963;border-color:#192e50}.btn-info .badge{color:#1f3963;background-color:#fff}.btn-warning{color:#fff;background-color:#f7941e;border-color:#f38809}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#da7a08;border-color:#784304}.btn-warning:hover{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#b86707;border-color:#784304}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f7941e;border-color:#f38809}.btn-warning .badge{color:#f7941e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#1f3963;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#1f3963;text-decoration:none;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#1f3963}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#2f2f2f;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#1f3963}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#1f3963}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important;float:left}.navbar-right{float:right !important;float:right;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#18203a}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#1f3963;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#1f3963;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#1f3963;border-color:#1f3963;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#1f3963}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#13233c}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#1f3963}.label-info[href]:hover,.label-info[href]:focus{background-color:#13233c}.label-warning{background-color:#f7941e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#da7a08}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#1f3963;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#1f3963}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#1f3963;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#1f3963}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f7941e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#1f3963;border-color:#1f3963}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#799cd5}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#f5f5f5;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid transparent;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:-1px;border-top-right-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1px;border-bottom-right-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid transparent}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid transparent}.panel-default{border-color:transparent}.panel-default>.panel-heading{color:#fff;background-color:#353535;border-color:transparent}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:transparent}.panel-default>.panel-heading .badge{color:#353535;background-color:#fff}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:transparent}.panel-primary{border-color:#1f3963}.panel-primary>.panel-heading{color:#fff;background-color:#1f3963;border-color:#1f3963}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#1f3963}.panel-primary>.panel-heading .badge{color:#1f3963;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#1f3963}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#ccc;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#ccc;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #ccc;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#1f3963}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}/*!
  *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6{font-weight:300;color:#1f3963}h1{margin-bottom:25px}a{font-weight:bold}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}.font-size-large{font-size:58px}ul ul{margin-top:5px}.uppercase{text-transform:uppercase}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.fw-700{font-weight:700}.emphasis{color:#f7941e;font-weight:700}.small{font-size:10px}.text-highlight{background:#eee;padding:12px 24px}blockquote{font-size:14px}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:bold;color:#969696}.list-checkmark a:hover{color:#f7941e}.block-heading{background:none repeat scroll 0 0 #afbbdc;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.fa-li{top:.23em}.list-padding li{padding-bottom:25px}.header-short-underline{font-size:18px;font-weight:bold}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}.underlined{text-decoration:underline}.ad-eclipsecon-schedule a{font-weight:300}.ad-eclipsecon-schedule>thead>tr>th{border-color:#cecece}.ad-eclipsecon-schedule>tbody>tr>th,.ad-eclipsecon-schedule>tbody>tr>td{border:none}.ad-eclipsecon-schedule>tbody>tr:nth-of-type(odd){background-color:#e8e8e8}.ad-eclipsecon-schedule-title{position:relative;padding-left:30px;display:block;font-size:16px;font-weight:600}.ad-eclipsecon-schedule-title:before{font-family:FontAwesome;content:"\f041";position:absolute;font-size:35px;color:#a59bd0;left:0;top:-2px}.donate-ad{background-color:#f6f6f6;position:relative;overflow:hidden;border-bottom:4px solid #bf4b97}.donate-ad h2{margin-top:0}.donate-ad .btn-square{background-color:#2e2458;color:#fff;margin-bottom:10px;width:57px}.donate-ad .btn-square.active{background-color:#f7941d}.donate-ad .underlined-link{font-weight:normal;text-decoration:underline}.donate-ad .underlined-link:hover{text-decoration:none}.donate-ad .btn-donate-close{position:absolute;top:20px;right:20px;z-index:999;font-size:1.2em;cursor:pointer}.donate-ad .list-amount{margin-bottom:0}.donate-ad .donate-submit{margin-top:20px}.donate-ad .donate-submit .input-group-addon{font-size:.8em}.donate-ad .form-inline .input-group>.form-control{padding-right:6px;text-align:right}@media (min-width:768px){.donate-ad .form-inline .input-group>.form-control{width:60px}}.donate-text,.donate-form{padding-top:20px}@media (min-width:992px){.donate-text:after{content:"";position:absolute;top:0;right:-34px;width:0;height:0;border-top:126px solid transparent;border-left:34px solid #f6f6f6;border-bottom:126px solid transparent;z-index:99}}.donate-form form{position:relative;z-index:9}.donate-form:after{content:"";position:absolute;width:1000px;height:300px;z-index:1;left:0;top:0;background-color:#fff}.recognition-fields{display:none}.anchor{display:block;position:relative;top:-14px;visibility:hidden;z-index:9999}.scrollup{width:40px;height:40px;opacity:.3;position:fixed;bottom:50px;right:15px;display:none;text-indent:-9999px;background:url('../images/components/back-to-top/back-to-top.png') no-repeat}.scrollup:focus{outline:none}#back-to-top{margin:0;padding:0}#back-to-top a{border-top:1px solid #808080;background-color:#666;color:#fff;display:block;padding:4px 0 3px;text-align:center;width:100%;margin:0}#back-to-top a:hover,#back-to-top a:focus{text-decoration:none;background:#dfdfe4;color:#4a4a4a}.block-box,.sideitem{background:#f6f6f6;color:#202020;margin-bottom:2em;padding-bottom:5px}.block-box h2,.sideitem h2,.block-box h3,.sideitem h3,.block-box h6,.sideitem h6{background:#1f3963;color:#fff;margin:0 0 15px 0;padding:15px 20px;text-transform:uppercase;font-weight:700;font-size:15px}.block-box h2 a:hover,.sideitem h2 a:hover,.block-box h3 a:hover,.sideitem h3 a:hover,.block-box h6 a:hover,.sideitem h6 a:hover{color:#fff}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0 15px 15px}.block-box .list-heading,.sideitem .list-heading{font-weight:600;margin-bottom:4px;font-size:16px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.default-breadcrumbs{background:#f2f2f3;background-size:100%;color:#18203a;text-align:center;border-bottom:1px solid #fff;font-size:12px}.default-breadcrumbs p{color:#bebebe;max-width:450px;margin:30px auto 20px auto;font-weight:400}.default-breadcrumbs p:last-child{padding-bottom:1.5em}.default-breadcrumbs .btn{min-width:150px;margin-right:10px;margin-left:10px}.default-breadcrumbs .breadcrumb{background:none;margin:15px 0 14px 0;padding-left:0;padding-bottom:0;text-align:left;text-transform:uppercase}.default-breadcrumbs .breadcrumb li{padding-bottom:3px}.default-breadcrumbs .breadcrumb .active{color:#18203a}.default-breadcrumbs .breadcrumb a{font-weight:600;text-decoration:none}.default-breadcrumbs .breadcrumb a:link,.default-breadcrumbs .breadcrumb a:visited{color:#18203a}.default-breadcrumbs .breadcrumb a:hover{color:#1f3963}body #st-el-4 .st-btns{overflow:auto}.discover-search{background:#efefef}.discover-search h2{color:#545454;margin-top:1.3em;padding-bottom:0;margin-bottom:.1em}.discover-search .form-search-projects{margin-bottom:1.4em}.discover-search>.container{min-height:267px}@media (min-width:992px){.discover-search>.container{background:url("../images/components/discover-search/discover-search-bg.jpg") right no-repeat}}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none solid;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.drag_installbutton{position:relative;clear:both;display:inline}.drag_installbutton .tooltip{opacity:1;display:none;background:url("../images/components/drag-drop/mpcdrag.png") no-repeat scroll 110% 60% #a285c5;position:absolute;top:0;left:64px;text-align:left;width:325px;color:#000;border:1px solid #ae00ce;z-index:99;padding:5px 50px 5px 5px}.drag_installbutton .tooltip h3{margin-top:0;color:#000}.drag_installbutton .tooltip.show-right{left:-335px}.drag_installbutton a.drag:hover .tooltip{display:block}.drag_installbutton.drag_installbutton_v2 .btn:hover{cursor:move}.drag_installbutton.drag_installbutton_v2 .tooltip{left:100px;margin-top:-6px;border:1px solid #777;background-color:#eee}.drag_installbutton.drag_installbutton_v2 .tooltip h3{font-size:18px}.gsc-search-box th,.gsc-branding th,.gsc-search-box td,.gsc-branding td{padding:0}.gsc-control-cse .gsc-table-result{font-family:inherit}.gsc-control-cse .gsc-input-box{height:inherit}.gsc-input-box{-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important;position:relative;top:-1px;transition:border-color .15s ease-in-out 0s}.gsc-input-box input.gsc-input{font-size:12px;height:25px !important;background-position:0 5px !important;background-color:transparent !important}.gsc-input-box:hover{border-color:#f7941e}.gsc-input-box-hover{border:1px;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.gsc-search-box-tools .gsc-search-box .gsc-input{padding-right:0 !important}input.gsc-search-button{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important;font-size:12px !important;margin-left:0 !important;position:relative;left:-1px;padding:6px 15px !important}.gsib_a{padding-top:0 !important}.gsst_a .gscb_a{color:#f7941e !important;position:relative;top:2px}.header-row{padding:4px 6px}.header-row h2{margin:.6em 0;font-size:1.4em;color:#fff}.header-row.pink{background:#fad9d9;border-top:1px solid #808080;border-bottom:1px solid #808080}.header_nav{padding-bottom:35px}.header_nav img{margin:20px auto}.header_nav ul{background:#f4f4f4;padding:0;text-transform:uppercase;color:#7b778e;margin:0;font-size:16px}.header_nav ul li{list-style:none;clear:right;padding-bottom:0}.header_nav ul li:nth-child(odd){clear:left}.header_nav ul a{padding:20px;display:block;font-weight:600}.header_nav ul a:active,.header_nav ul a:visited,.header_nav ul a:link{color:#7b778e}.header_nav ul a:hover{color:#f7941e}.header_nav ul a i{font-size:30px;padding:4px 0 0 0;text-align:center;font-weight:700}.header_nav ul span{padding:0 0 0 5px}.header_nav ul span p{font-size:11px;text-transform:none;font-weight:400;margin:0}.highlight{overflow:hidden;position:relative}.highlight .container{padding:4em 0 3em 0;position:relative}@media (min-width:992px){.highlight .container{padding:7em 0 5em 0}}.highlight h1{color:#333}.highlight p,.highlight li{font-size:1.1em}.highlight h1{margin-top:0;margin-bottom:.5em}.highlight .triangle{position:absolute;right:0;top:0}.highlight .list-inline{padding-top:1.7em}.highlight.background-charcoal{background:#252525;color:#7d7d7d}.highlight.background-charcoal h1{color:#7d7d7d}.highlight-img img{margin:auto}.highlight-left .triangle{right:auto;left:-115px}.icon-sidebar-menu h3{margin-top:0;font-size:16px;margin-bottom:5px}.icon-sidebar-menu p{font-size:13px}.icon-sidebar-menu .circle-icon{width:80px;height:80px;display:block}.icon-sidebar-menu .circle-icon i{font-size:37px;margin-top:20px}.landing-well{background-repeat:no-repeat;background-position:center middle;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-attachment:fixed;background-color:#1b1732;background-image:url("../images/components/landing-well/background.jpg");border-top:1px solid #f7941e;border-bottom:1px solid #f7941e;color:#fff;padding:30px 0;text-align:center}.landing-well h1{font-size:3.5em;margin-bottom:10px;font-weight:600}.landing-well h1 a{color:#fff}.landing-well h1 a:hover{color:#f7941e}.landing-well .circle h3{color:#fff}.landing-well p{font-size:1.2em;font-weight:100}.landing-well p a{color:#f7941e;font-weight:600;text-decoration:none}.landing-well p a:hover{color:#fff}.landing-well .landing-well-action{text-align:center}.landing-well .list-glyphicon{margin:2em 0 0 0;padding-bottom:1em}.landing-well .list-glyphicon img{height:110px;width:110px}@media (min-width:1200px){.landing-well li:last-child{margin-top:-20px}}@media (min-width:1200px){.landing-well{text-align:left}.landing-well h1{margin-top:.76em;padding-top:1.3em}.landing-well .list-glyphicon{margin-left:93px}}@media (min-width:992px){.landing-well .list-glyphicon img{height:160px;width:160px}.landing-well .circle{height:160px;margin:0 5px;font-size:44px;width:160px}.landing-well .circle h3{font-size:16px;top:3.4em;margin-left:5px;width:74%}}.news-list{padding-bottom:3em}.news-list h2{background:#f7941e;color:#fff;text-transform:uppercase;text-align:center;font-size:1.2em;padding:8px 8px;font-weight:600;margin-top:2.1em}.news-list h2 a{color:#fff}.news-list h2 a:hover{color:#3a3a3a}.news-list .link-rss-feed{float:right;font-size:.8em;margin-top:.2em}.news-list .news_item_header{display:none}.news_item_header{padding:0 0 2em 0}.news_item{border-bottom:1px solid #e9eef4;margin-bottom:20px;padding-bottom:10px}.news_item_date{color:#f7941e}.news_item_title h3{font-size:1.3em;margin-top:.2em}.news_item_title h3 a{font-weight:600;color:#3a3a3a}.news_item_title h3 a:hover{color:#cc7105}.news_item_description{font-weight:300}.news_view_all{color:#8e8e8e}.news_view_all a{color:#f7941e;font-weight:bold}.news_view_all a:hover{color:#604200}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:bold;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:""}.promoted-plugin{background-color:#fff}.promoted-plugin a:hover{text-decoration:none ! important}.promoted-plugin .drag{display:block;border:1px solid #e0e0e0}.promoted-plugin .drag:hover{background:#fbf7fb;cursor:move}.promoted-plugin .drag:hover .tooltip{display:block}.promoted-plugin .header{background:#f7941e none repeat scroll 0 0;display:block;padding:0 10px;text-align:center}.promoted-plugin .header h3{padding:8px 0;color:#fff;font-size:18px;margin:0}.promoted-plugin .content{padding:10px 0;display:block}.promoted-plugin .content .pp-content{font-size:12px;margin-bottom:0;line-height:1.5;padding:0 5px}.promoted-plugin .content .pp-image{padding:0 5px 0 10px}.promoted-plugin .content .pp-title{display:block;clear:both}.promoted-plugin .content .pp-text{font-weight:normal}.promoted-plugin .download{background-color:#333;text-align:center;color:#fff;display:block;font-weight:100}.promoted-plugin .download .download-icon{padding-left:0}.promoted-plugin .download .download-text{padding-left:0;padding-top:8px}.promoted-plugin .download .fa{font-size:18px;padding:10px;background-color:#282828}.promoted-plugin .download a{color:#fff;font-weight:normal}.promoted-plugin .download a:hover{color:#fff}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,0.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,0.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;vertical-align:middle}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0 300px;-moz-transform:scale(.9999);border-color:#f5f5f5 transparent transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent transparent}.triangle.triangle-white{border-color:#fff rgba(255,255,255,0) rgba(255,255,255,0) transparent}.step-by-step .intro{font-weight:300}.step-by-step .intro h2{margin-top:1.5em}.step-by-step .step-by-step-timeline{text-align:center;margin-top:1.5em}.step-by-step .step-by-step-timeline img{margin-bottom:1.35em;margin-top:1.4em}.step-by-step .step-by-step-timeline .btn{font-size:.85em}@media (max-width:1199px){.step-by-step .step-by-step-timeline .btn{font-size:.8em}}.tabs-sidebar .nav{margin-top:15px}.tabs-sidebar .nav img{padding-top:13px}.tabs-sidebar .nav .active img.desaturate{-webkit-filter:grayscale(0);filter:grayscale(0)}.tabs-sidebar .nav li.active a{background:none;border:1px solid #cbd3e8}.tabs-sidebar .nav li.active a:after{content:'';position:absolute;left:100%;top:50%;margin-top:-13px;display:block;width:8px;height:21px;background:url('../images/components/tabs-sidebar/tabs-sidebar-active.png') no-repeat}.tabs-sidebar .nav li a{border:1px solid #fff}.tabs-sidebar .nav li a:hover,.tabs-sidebar .nav li a:focus{outline:none;border:1px solid #cbd3e8}.tabs-sidebar .tab-content .row{padding:1em;border-bottom:1px solid #eee}.tabs-sidebar .tab-content p{font-size:13.5px}.timeline{margin:35px auto}.timeline .gs-item{padding-bottom:4em}.timeline .circle{background:#c3efff;color:#fff;border:2px solid #fff;height:47px;width:47px;font-size:20px;float:left;padding-top:6px;padding-left:1px;font-weight:700}.timeline .two .circle{background:#cbdeff}.timeline .three .circle{background:#d2d7ec}.timeline .four .circle{background:#1f3963}.timeline h1{color:#1f3963;font-size:2em;text-align:left;padding:9px 0 0 62px;margin-bottom:24px}.timeline ul{padding-left:1px}.timeline li{margin-bottom:1em;padding-left:14px;list-style:none}.timeline li:before{content:"\00BB";color:#f7941e;margin-left:-16px;margin-right:10px;display:block;float:left}@media (min-width:992px){.timeline{border-top:1px dotted #c2cbe4;position:relative}.timeline .circle{margin:-25px auto 0 auto;float:none}.timeline h1{padding-top:15px;float:none;padding-left:0}}.toolbar-menu{background-image:-webkit-linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-image:-o-linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-image:linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-repeat:no-repeat;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffdbdbdb', GradientType=0);margin-bottom:25px}.toolbar-menu .breadcrumb{margin-bottom:0;padding-left:0;background:none}.toolbar-menu .breadcrumb li{padding-bottom:0}.toolbar-menu .breadcrumb>li+li:before{content:" | "}.toolbar-menu .breadcrumb a:link,.toolbar-menu .breadcrumb a:visited{color:#2f2f2f;font-weight:600}.toolbar-menu .breadcrumb a:hover{color:#f7941e}.toolbar-menu .breadcrumb a.active{color:#371e1d;font-weight:bold}.btn{text-transform:uppercase;font-weight:700}.btn-white{background:#fff;border:1px solid #0b0a0f;color:#0b0a0f}.btn-white:hover{background:transparent}.btn-huge{font-size:1.1em;padding:10px 35px}.btn-huge i{margin-right:2px}.btn-transparent:visited,.btn-transparent:link{background:#1f3963;border-color:#fff;color:#fff;font-size:11px;padding:7px 15px}.btn-transparent:hover,.btn-transparent:active{color:#1f3963;border-color:#ffab00;background:#b27800}.btn-transparent .caret{margin-left:6px}.media{padding-bottom:2em}.media .pull-left{margin-right:30px}.media h4.media-heading{font-size:27px}.media p{font-size:14px;padding-bottom:0}.media .emphasis{margin-bottom:2px;padding-bottom:0}.solstice-modal .modal-content{padding:10px}.solstice-modal .modal-title{font-weight:600;font-size:22px}.solstice-modal .modal-content-container{border:1px solid #eee;padding:0 20px}.nav-tabs>li{padding-bottom:0}.nav-tabs>li a:hover{background:#f7941e;color:#fff}.tab-content{padding:10px;border:1px solid #ddd;border-top:none;background:#fff}.tab-pane{padding:.5em 1em}.tab-pane .page-header{margin-top:10px}/*!
+ */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#1f3963;text-decoration:none}a:hover,a:focus{color:#1f3963;text-decoration:none}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:300;line-height:1.1;color:#1f3963}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#1f3963}a.text-primary:hover,a.text-primary:focus{color:#13233c}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#1f3963}a.bg-primary:hover,a.bg-primary:focus{background-color:#13233c}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#2f2f2f}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#2f2f2f;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:700;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#1f3963;border-color:#192e50}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#13233c;border-color:#000}.btn-primary:hover{color:#fff;background-color:#13233c;border-color:#0a1321}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#13233c;border-color:#0a1321}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#0a1321;border-color:#000}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#1f3963;border-color:#192e50}.btn-primary .badge{color:#1f3963;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#1f3963;border-color:#192e50}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#13233c;border-color:#000}.btn-info:hover{color:#fff;background-color:#13233c;border-color:#0a1321}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#13233c;border-color:#0a1321}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#0a1321;border-color:#000}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#1f3963;border-color:#192e50}.btn-info .badge{color:#1f3963;background-color:#fff}.btn-warning{color:#fff;background-color:#f7941e;border-color:#f38809}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#da7a08;border-color:#784304}.btn-warning:hover{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#b86707;border-color:#784304}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f7941e;border-color:#f38809}.btn-warning .badge{color:#f7941e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#1f3963;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#1f3963;text-decoration:none;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#1f3963}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#2f2f2f;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#1f3963}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#1f3963}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left;float:left !important}.navbar-right{float:right;float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:20px 30px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#18203a}.breadcrumb>.active{color:#18203a}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#1f3963;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#1f3963;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#1f3963;border-color:#1f3963;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#1f3963}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#13233c}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#1f3963}.label-info[href]:hover,.label-info[href]:focus{background-color:#13233c}.label-warning{background-color:#f7941e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#da7a08}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#1f3963;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:#2c2255;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#1f3963}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#1f3963;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#1f3963}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f7941e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#1f3963;border-color:#1f3963}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#799cd5}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#f5f5f5;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:-1px;border-top-right-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1px;border-bottom-right-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#fff;background-color:#353535;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#353535;background-color:#fff}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#1f3963}.panel-primary>.panel-heading{color:#fff;background-color:#1f3963;border-color:#1f3963}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#1f3963}.panel-primary>.panel-heading .badge{color:#1f3963;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#1f3963}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#ccc;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#ccc;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #ccc;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#1f3963}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}/*!
  * Yamm!3
  * Yet another megamenu for Bootstrap 3
  * 
  * http://geedmo.github.com/yamm3
- */.yamm .nav,.yamm .collapse,.yamm .dropup,.yamm .dropdown{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .nav.navbar-right .dropdown-menu{left:auto;right:0}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}html{position:relative;min-height:100%}.toolbar-container-wrapper{background:#fff}.toolbar-row{padding:8px 0;font-size:12px;color:#666;font-weight:300}.toolbar-row a{font-weight:300;padding-left:4px;color:#666}.toolbar-row a:hover{color:#f7941e}.toolbar-row ul{margin-bottom:0}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#1f3963}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #2f2f2f}@media (min-width:768px){.page-header-logo-bordered{border-bottom:none}}#header-right{text-align:right}.thin-header .visible-thin{display:block !important}.logo-eclipse-default-mobile{max-height:50px}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#1f3963;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#fff;height:3px}#main-menu .nav{margin:0;background:#1f3963}#main-menu .nav>li{border:1px solid #244273}#main-menu .nav>li.open .dropdown-toggle{color:#fff;background:#b27800}#main-menu .nav>li>a{color:#fff;text-transform:uppercase}#main-menu .nav>li .dropdown-menu{background:#fff;padding:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#bfe7ff;color:#000}#main-menu .nav>li .dropdown-menu>li.active a:hover,#main-menu .nav>li .dropdown-menu>li.active a:focus{color:#000;background:#bfe7ff}#main-menu .nav>li .dropdown-menu>li>a{padding:5px 20px 5px 30px;color:#1f3963}#main-menu .nav>li .dropdown-menu>li>a:hover,#main-menu .nav>li .dropdown-menu>li>a:focus{color:#b27800;background:#f5f5f5}}@media (min-width:768px){#main-menu{font-size:.9em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#fff}#main-menu li a:hover,#main-menu li a:active{background:none;color:#ffab00}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:initial;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:initial;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:hover{color:#f7941e}#main-menu .dropdown-menu a:active{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active{color:#ffab00;background:none}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.separator,.ul-left-nav>li.about{padding-left:0;font-weight:bold}.ul-left-nav>li.separator img,.ul-left-nav>li.about img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#ffab00}main{position:relative;padding-bottom:20px;background:#f6f6f7}main.no-promo{padding-top:20px}main.no-promo .breadcrumbs-offset{margin-top:-20px}footer#solstice-footer{background:#1f3963;font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding-top:3.5em;color:#fff;padding-bottom:26px;font-size:14px;border-top:3px solid #b27800}footer#solstice-footer h2{color:#fff;padding:0 0 7px 0;margin-top:0;font-weight:600;font-size:21px;border-bottom:2px solid #6e6d71;max-width:80%}footer#solstice-footer a:link,footer#solstice-footer a:active,footer#solstice-footer a:visited{color:#fff;font-weight:400}footer#solstice-footer a:hover{color:#f7941e}footer#solstice-footer .social-media a:link,footer#solstice-footer .social-media a:active,footer#solstice-footer .social-media a:visited{color:#383838}footer#solstice-footer .social-media a:hover{color:#f7941e}footer#solstice-footer .logo-eclipse-white{margin-bottom:15px;max-width:161px}footer#solstice-footer .nav{margin-left:-15px;margin-bottom:25px}footer#solstice-footer .nav a{padding:6px 15px 6px 20px}footer#solstice-footer .nav a:hover{background:none;color:#f7941e}footer#solstice-footer li{padding-bottom:0}@media (max-width:991px){footer#solstice-footer #copyright-text,footer#solstice-footer #footer-other{text-align:left;clear:both}}@media (max-width:450px){footer#solstice-footer section.col-xs-11,footer#solstice-footer section.col-xs-14{position:relative;float:left;width:95.83333333%;min-height:1px;padding-left:15px;padding-right:15px}}@media (min-width:451px) and (max-width:767px){footer#solstice-footer #footer-useful-links{clear:left}footer#solstice-footer #copyright{clear:both}}#copyright{padding-top:15px}#copyright img{float:left;margin-top:10px;margin-right:15px;clear:both}#copyright-text{padding-top:21px;text-align:right}.social-media{margin-top:57px;font-size:2.3em}.social-media a:hover{color:#f7941e}#footer-eclipse-foundation,#footer-legal,#footer-useful-links,#footer-other{z-index:99}.footer-other-working-groups{font-weight:300;font-size:11px}.footer-other-working-groups .social-media{margin-top:20px}.footer-other-working-groups .img-responsive{padding-right:20px;max-width:235px}.footer-other-working-groups .footer-working-group-col{padding:55px 0 0 0}@media (min-width:992px){.footer-other-working-groups{background:url('../images/template/footer-working-group-separator.png') center repeat-y}.footer-other-working-groups .img-responsive{max-width:100%;padding-right:30px}.footer-other-working-groups .footer-working-group-col{padding:0}}.footer-min{background:#f5f5f5;border-top:1px solid #b5b5b5;position:absolute;width:100%;bottom:0;padding:10px 0}.footer-min a{font-weight:normal;font-size:.8em}.footer-min p,.footer-min ul{margin-bottom:0;font-size:.8em}.footer-min ul{text-align:right}.footer-min ul li{padding-bottom:0}@media screen and (max-width:767px){.footer-min p,.footer-min ul{text-align:center}}body.solstice-footer-min{margin-bottom:36px;position:static}@media screen and (max-width:767px){body.solstice-footer-min{margin-bottom:51px}}main #bigbuttons{padding-top:1.65em;padding-bottom:2.2em;min-height:1px;padding-left:15px;padding-right:15px;text-align:center;position:relative;top:auto;left:auto}@media (min-width:768px){main #bigbuttons{float:left;width:41.66666667%}}@media (min-width:768px){main #bigbuttons{margin-left:58.33333333%}}@media (min-width:992px){main #bigbuttons{float:left;width:62.5%}}@media (min-width:992px){main #bigbuttons{margin-left:37.5%}}@media (min-width:1200px){main #bigbuttons{float:left;width:66.66666667%}}@media (min-width:1200px){main #bigbuttons{margin-left:25%}}main #bigbuttons h3{display:none}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons ul{padding-left:0;list-style:none;margin-left:-5px}main #bigbuttons ul>li{display:inline-block;padding-left:5px;padding-right:5px}main #bigbuttons ul li{background:none}@media (min-width:768px){main #bigbuttons ul li{float:right}}main #bigbuttons a{position:relative;margin:0;top:auto;left:auto}main #bigbuttons a:hover{text-decoration:none}div#novaContent{background-position:left top;padding-top:0}@media (max-width:767px){div#novaContent{background-image:none}}@media (min-width:1200px){div#novaContent{background-position:center top}}.deprecated #novaContent{background:url("../images/template/bg-deprecated.gif") center 75px no-repeat ! important}#midcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px;padding-right:30px}@media (min-width:992px){#midcolumn{float:left;width:58.33333333%}}#midcolumn #midcolumn{width:100%;padding:0}#midcolumn.no-right-sidebar{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){#midcolumn.no-right-sidebar{float:left;width:83.33333333%}}#midcolumn.no-left-nav{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){#midcolumn.no-left-nav{float:left;width:75%}}main #rightcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){main #rightcolumn{float:left;width:25%}}@media print{.sideitem,#copyright{padding-left:0;padding-right:0}main{padding-bottom:0;padding-top:0}#solstice-footer,#copyright,#header-row{padding-top:0}}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.float-right{float:right}.float-left{float:left}.padding-0{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.reset{padding:0;margin:0}.visible-thin{display:none !important}.brand-primary{color:#1f3963}.brand-secondary{color:#1f3963}.brand-success{color:#5cb85c}.brand-info{color:#1f3963}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}tr.background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.background-blue{background:#1f3963;color:#fff}.blue{color:#00f}.darkblue{color:#009}.yellow{color:yellow}.red{color:#f00}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-grey{background:#f5f5f5}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-white{background:#fff}#novaContent.background-image-none{background-image:none}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;-moz-transition:opacity .15s ease-in-out;-ms-transition:opacity .15s ease-in-out;-o-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{padding-bottom:0;margin-bottom:-28px}.table-layout-fixed{table-layout:fixed}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.col-xs-5-eclipse,.col-sm-5-eclipse,.col-md-5-eclipse,.col-lg-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.donation-button{padding-top:.75em;padding-bottom:.75em;padding-left:3.5em;padding-right:3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:hover,.btn-simple:active{border:1px solid #777;background:#eee}.btn-smaller,.btn-group-smaller>.btn{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:normal}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing *:before,.reset-box-sizing *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px 5px}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.no-border{border:none ! important}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table.table-solstice th{background:#1f3963;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(even){background:#40bbdc}.vertical-align{display:flex;align-items:center}@media (min-width:992px){.vertical-align-md{display:flex;align-items:center}}.box-gray-border{border:1px solid #d6d6d6}#header-wrapper{background:#1f3963}@media (min-width:768px){#header-left .wrapper-logo-default img{padding:44px 0 0 30px}}.logo-eclipse-default{padding-top:44px}#header-right{padding-top:15px}#main-menu li a{margin-right:0}#main-menu .navbar-brand{padding-top:10px}.thin-header{padding:10px}.thin-header #header-left .wrapper-logo-default img{padding:10px 0 0 0}.thin-header #main-menu{padding-top:3px}
\ No newline at end of file
+ */.yamm .nav,.yamm .collapse,.yamm .dropup,.yamm .dropdown{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .nav.navbar-right .dropdown-menu{left:auto;right:0}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}.btn{text-transform:uppercase}.btn:visited{color:#fff}.btn-default:visited{color:#333}.btn-white{background:#fff;border:1px solid #0b0a0f;color:#0b0a0f}.btn-white:hover{background:transparent}.btn-white:visited{color:#333}.btn-huge{font-size:1.1em;padding:10px 35px}.btn-huge i{margin-right:2px}.btn-transparent:visited,.btn-transparent:link{background:#1f3963;border-color:#fff;color:#fff;font-size:11px;padding:7px 15px}.btn-transparent:hover,.btn-transparent:active{color:#1f3963;border-color:#ffab00;background:#b27800}.btn-transparent .caret{margin-left:6px}.donation-button{padding-top:.75em;padding-bottom:.75em;padding-left:3.5em;padding-right:3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:visited{color:inherit}.btn-simple:hover,.btn-simple:active{border:1px solid #777;background:#eee}.btn-simple-white{text-transform:none;font-weight:normal;font-size:13px;border:0;border-radius:0}.btn-smaller,.btn-group-smaller>.btn{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:normal}.btn-white-purple-border:visited{color:#2d2252}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.btn-secondary{color:#fff;background-color:#3883be;border-color:#3883be}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#2c6897;border-color:#1b3f5c}.btn-secondary:hover{color:#fff;background-color:#2c6897;border-color:#2a628f}.btn-secondary:active,.btn-secondary.active,.open>.dropdown-toggle.btn-secondary{color:#fff;background-color:#2c6897;border-color:#2a628f}.btn-secondary:active:hover,.btn-secondary.active:hover,.open>.dropdown-toggle.btn-secondary:hover,.btn-secondary:active:focus,.btn-secondary.active:focus,.open>.dropdown-toggle.btn-secondary:focus,.btn-secondary:active.focus,.btn-secondary.active.focus,.open>.dropdown-toggle.btn-secondary.focus{color:#fff;background-color:#24557b;border-color:#1b3f5c}.btn-secondary:active,.btn-secondary.active,.open>.dropdown-toggle.btn-secondary{background-image:none}.btn-secondary.disabled:hover,.btn-secondary[disabled]:hover,fieldset[disabled] .btn-secondary:hover,.btn-secondary.disabled:focus,.btn-secondary[disabled]:focus,fieldset[disabled] .btn-secondary:focus,.btn-secondary.disabled.focus,.btn-secondary[disabled].focus,fieldset[disabled] .btn-secondary.focus{background-color:#3883be;border-color:#3883be}.btn-secondary .badge{color:#3883be;background-color:#fff}.media{padding-bottom:2em}.media .pull-left{margin-right:30px}.media .media-heading{font-size:27px}.media p{font-size:14px;padding-bottom:0}.media .emphasis{margin-bottom:2px;padding-bottom:0}.modal{text-align:center}@media screen and (min-width:768px){.modal:before{display:inline-block;vertical-align:middle;content:" ";height:100%}}.modal-title{font-weight:600;font-size:22px}.modal-content{border-radius:0}.modal-content-container{border:1px solid #eee;padding:0 20px}.modal-dialog{display:inline-block;text-align:left;vertical-align:middle}.nav>li>a{color:#1f3963}.nav-tabs>li{padding-bottom:0}.nav-tabs>li a:hover{background:#f7941e;color:#fff}.tab-content{padding:10px;border:1px solid #ddd;border-top:none;background:#fff}.tab-pane{padding:.5em 1em}.tab-pane .page-header{margin-top:10px}.ad-eclipsecon-schedule a{font-weight:300}.ad-eclipsecon-schedule>thead>tr>th{border-color:#cecece}.ad-eclipsecon-schedule>tbody>tr>th,.ad-eclipsecon-schedule>tbody>tr>td{border:none}.ad-eclipsecon-schedule>tbody>tr:nth-of-type(odd){background-color:#e8e8e8}.ad-eclipsecon-schedule-title{position:relative;padding-left:30px;display:block;font-size:16px;font-weight:600}.ad-eclipsecon-schedule-title:before{font-family:FontAwesome;content:"\f041";position:absolute;font-size:35px;color:#a59bd0;left:0;top:-2px}.donate-ad{background-color:#f6f6f6;position:relative;overflow:hidden;border-bottom:4px solid #bf4b97}.donate-ad h2{margin-top:0}.donate-ad .btn-square{background-color:#2e2458;color:#fff;margin-bottom:10px;width:57px}.donate-ad .btn-square.active{background-color:#f7941d}.donate-ad .underlined-link{font-weight:normal;text-decoration:underline}.donate-ad .underlined-link:hover{text-decoration:none}.donate-ad .btn-donate-close{position:absolute;top:20px;right:20px;z-index:999;font-size:1.2em;cursor:pointer}.donate-ad .list-amount{margin-bottom:0}.donate-ad .donate-submit{margin-top:20px}.donate-ad .donate-submit .input-group-addon{font-size:.8em}.donate-ad .form-inline .input-group>.form-control{padding-right:6px;text-align:right}@media (min-width:768px){.donate-ad .form-inline .input-group>.form-control{width:60px}}.donate-text,.donate-form{padding-top:20px}@media (min-width:992px){.donate-text:after{content:"";position:absolute;top:0;right:-34px;width:0;height:0;border-top:126px solid transparent;border-left:34px solid #f6f6f6;border-bottom:126px solid transparent;z-index:99}}.donate-form form{position:relative;z-index:9}.donate-form:after{content:"";position:absolute;width:1000px;height:300px;z-index:1;left:0;top:0;background-color:#fff}.recognition-fields{display:none}.anchor{display:block;position:relative;top:-14px;visibility:hidden;z-index:9999}.scrollup{width:40px;height:40px;opacity:.3;position:fixed;bottom:50px;right:15px;display:none;text-indent:-9999px;background:url('../images/components/back-to-top/back-to-top.png') no-repeat}.scrollup:focus{outline:none}#back-to-top{margin:0;padding:0}#back-to-top a{border-top:1px solid #808080;background-color:#666;color:#fff;display:block;padding:4px 0 3px;text-align:center;width:100%;margin:0}#back-to-top a:hover,#back-to-top a:focus{text-decoration:none;background:#dfdfe4;color:#4a4a4a}.share-button{padding:5px;display:block;color:#fff;width:24px;height:24px}.share-button:hover,.share-button:visited,.share-button:active,.share-button:focus{color:#fff}.share-button .fa{font-size:13px}.share-button-twitter{background-color:#1da1f2}.share-button-facebook{background-color:#3b5998}.share-button-mail{background-color:#949494}.default-breadcrumbs{background:#f2f2f3;background-size:100%;color:#18203a;border-bottom:1px solid #fff;border-top:1px solid #fff;font-size:12px}.breadcrumb{background:none;margin-bottom:0;text-transform:uppercase}.breadcrumb a{font-weight:600}.breadcrumb a:link,.breadcrumb a:visited{color:#18203a}.breadcrumb a:hover{color:#1f3963}body #st-el-4 .st-btns{overflow:auto}.discover-search{background:#efefef}.discover-search h2{color:#545454;margin-top:1.3em;padding-bottom:0;margin-bottom:.1em}.discover-search .form-search-projects{margin-bottom:1.4em}.discover-search>.container{min-height:267px}@media (min-width:992px){.discover-search>.container{background:url("../images/components/discover-search/discover-search-bg.jpg") right no-repeat}}.drag_installbutton{position:relative;clear:both;display:inline}.drag_installbutton .tooltip{opacity:1;display:none;background:url("../images/components/drag-drop/mpcdrag.png") no-repeat scroll 110% 60% #a285c5;position:absolute;top:0;left:64px;text-align:left;width:325px;color:#000;border:1px solid #ae00ce;z-index:99;padding:5px 50px 5px 5px}.drag_installbutton .tooltip h3{margin-top:0;color:#000}.drag_installbutton .tooltip.show-right{left:-335px}.drag_installbutton a.drag:hover .tooltip{display:block}.drag_installbutton.drag_installbutton_v2 .btn:hover{cursor:move}.drag_installbutton.drag_installbutton_v2 .tooltip{left:100px;margin-top:-6px;border:1px solid #777;background-color:#eee}.drag_installbutton.drag_installbutton_v2 .tooltip.tooltip-below-right{right:0;left:auto;top:40px}.drag_installbutton.drag_installbutton_v2 .tooltip h3{font-size:18px}footer#solstice-footer{background:#1f3963;font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;padding-top:3.5em;color:#fff;padding-bottom:26px;font-size:14px;border-top:3px solid #b27800}footer#solstice-footer h2{color:#fff;margin-top:0;font-weight:600;font-size:21px;max-width:80%}footer#solstice-footer a:link,footer#solstice-footer a:active,footer#solstice-footer a:visited,footer#solstice-footer a:focus{color:#fff;font-weight:400}footer#solstice-footer a:hover{color:#f7941e}footer#solstice-footer .logo-eclipse-white{margin-bottom:15px;max-width:161px}footer#solstice-footer .nav{margin-left:-15px;margin-bottom:25px}footer#solstice-footer .nav a{padding:6px 15px 6px 20px}footer#solstice-footer .nav a:hover{background:none;color:#f7941e}footer#solstice-footer li{padding-bottom:0}@media (max-width:450px){footer#solstice-footer section.col-xs-11,footer#solstice-footer section.col-xs-14{position:relative;float:left;width:95.83333333%;min-height:1px;padding-left:15px;padding-right:15px}}@media (min-width:451px) and (max-width:767px){footer#solstice-footer #footer-useful-links{clear:left}footer#solstice-footer #copyright{clear:both}}#copyright{padding-top:15px}#copyright img{float:left;margin-top:10px;margin-right:15px;clear:both}@media (max-width:991px){#copyright-text{margin-bottom:20px}}@media (min-width:992px){.social-media{text-align:right}}#footer-eclipse-foundation,#footer-legal,#footer-useful-links,#footer-other{z-index:99}.footer-other-working-groups{font-weight:300;font-size:11px}.footer-other-working-groups .logo-eclipse-default,.footer-other-working-groups .social-media{margin-bottom:20px;margin-top:0}.footer-other-working-groups .img-responsive{max-width:175px}.footer-other-working-groups .footer-working-group-col{padding:0}@media (min-width:1200px){.footer-other-working-groups{background:url('../images/template/footer-working-group-separator.png') center repeat-y}.footer-other-working-groups .img-responsive{max-width:200px}}.footer-min{background:#f5f5f5;border-top:1px solid #b5b5b5;position:absolute;width:100%;bottom:0;padding:10px 0}.footer-min a{font-weight:normal;font-size:.8em}.footer-min p,.footer-min ul{margin-bottom:0;font-size:.8em}.footer-min ul{text-align:right}.footer-min ul li{padding-bottom:0}@media screen and (max-width:767px){.footer-min p,.footer-min ul{text-align:center}}body.solstice-footer-min{margin-bottom:36px;position:static}@media screen and (max-width:767px){body.solstice-footer-min{margin-bottom:51px}}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#1f3963;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu #navbar-main-menu{float:none}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#fff;height:3px}#main-menu .nav{margin:0;padding:0;background:#1f3963}#main-menu .nav>li.open .dropdown-toggle{color:#fff;background:#b27800}#main-menu .nav>li>a{color:#fff;text-transform:uppercase;padding:10px 15px;border-bottom:none}#main-menu .nav>li .dropdown-menu{background:#fff;padding:0;border-radius:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#bfe7ff;color:#000}#main-menu .nav>li .dropdown-menu>li.active a:hover,#main-menu .nav>li .dropdown-menu>li.active a:focus{color:#000;background:#bfe7ff}#main-menu .nav>li .dropdown-menu>li>a{padding:10px 15px;color:#1f3963}#main-menu .nav>li .dropdown-menu>li>a:hover,#main-menu .nav>li .dropdown-menu>li>a:focus{color:#b27800;background:#f5f5f5}#main-menu .nav>li.main-menu-search .dropdown-toggle{display:none}#main-menu .nav>li.main-menu-search .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none;display:block}#main-menu .nav>li.main-menu-search .dropdown-menu p{color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .yamm-content{padding:15px}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input{background-color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input-box{border:none}}@media (max-width:1199px){#header-wrapper .container,.toolbar-container-wrapper .container,main .container,#breadcrumb .container{width:auto}}@media (min-width:768px){#main-menu{font-size:1em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#fff}#main-menu li a:hover,#main-menu li a:active{color:#ffab00}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:initial;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:initial;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:hover{color:#f7941e}#main-menu .dropdown-menu a:active{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active,#main-menu a:focus{color:#ffab00}#main-menu .nav>li>a:hover,#main-menu .nav>li>a:focus{background-color:transparent}#main-menu .nav .open a{background-color:transparent}#main-menu .nav .open a:hover,#main-menu .nav .open a:focus{background-color:transparent}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.separator,.ul-left-nav>li.about{padding-left:0;font-weight:bold}.ul-left-nav>li.separator img,.ul-left-nav>li.about img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#ffab00}.logo-eclipse-default-mobile{max-height:50px}@media (min-width:768px){.alternate-layout #main-menu{font-size:1em}.alternate-layout #main-menu ul li{text-transform:uppercase}.alternate-layout #main-menu li a{color:#fff}.alternate-layout #main-menu li a:hover,.alternate-layout #main-menu li a:active{color:#ffab00}}@media (min-width:992px){.alternate-layout #main-menu{font-size:1em}}@media (max-width:767px){.alternate-layout #main-menu{background:#fff}}main #bigbuttons{padding-top:1.65em;padding-bottom:2.2em;min-height:1px;padding-left:15px;padding-right:15px;text-align:center;position:relative;top:auto;left:auto}@media (min-width:768px){main #bigbuttons{float:left;width:41.66666667%}}@media (min-width:768px){main #bigbuttons{margin-left:58.33333333%}}@media (min-width:992px){main #bigbuttons{float:left;width:62.5%}}@media (min-width:992px){main #bigbuttons{margin-left:37.5%}}@media (min-width:1200px){main #bigbuttons{float:left;width:66.66666667%}}@media (min-width:1200px){main #bigbuttons{margin-left:25%}}main #bigbuttons h3{display:none}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons ul{padding-left:0;list-style:none;margin-left:-5px}main #bigbuttons ul>li{display:inline-block;padding-left:5px;padding-right:5px}main #bigbuttons ul li{background:none}@media (min-width:768px){main #bigbuttons ul li{float:right}}main #bigbuttons a{position:relative;margin:0;top:auto;left:auto}main #bigbuttons a:hover{text-decoration:none}div#novaContent{background-position:left top;padding-top:0}@media (max-width:767px){div#novaContent{background-image:none}}@media (min-width:1200px){div#novaContent{background-position:center top}}.legacy-page #midcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #midcolumn{float:left;width:70.83333333%}}.legacy-page #midcolumn #maincontent,.legacy-page #midcolumn #midcolumn{width:100%}.legacy-page #midcolumn.no-right-sidebar{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #midcolumn.no-right-sidebar{float:left;width:100%}}.legacy-page #rightcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #rightcolumn{float:left;width:29.16666667%}}.logo-eclipse-default{margin:0}.header_nav{padding-bottom:35px}.header_nav img{margin:20px auto}.header_nav ul{background:#f4f4f4;padding:0;text-transform:uppercase;color:#7b778e;margin:0;font-size:16px}.header_nav ul li{list-style:none;clear:right;padding-bottom:0}.header_nav ul li:nth-child(odd){clear:left}.header_nav ul a{padding:20px;display:block;font-weight:600}.header_nav ul a:active,.header_nav ul a:visited,.header_nav ul a:link{color:#7b778e}.header_nav ul a:hover{color:#f7941e}.header_nav ul a i{font-size:30px;padding:4px 0 0 0;text-align:center;font-weight:700}.header_nav ul span{padding:0 0 0 5px}.header_nav ul span p{font-size:11px;text-transform:none;font-weight:400;margin:0}.icon-sidebar-menu h3{margin-top:0;font-size:16px;margin-bottom:5px}.icon-sidebar-menu p{font-size:13px}.icon-sidebar-menu .circle-icon{width:80px;height:80px;display:block}.icon-sidebar-menu .circle-icon i{font-size:37px;margin-top:20px}.step-by-step .intro{text-align:center}.step-by-step .intro h2{margin-top:1.5em}.step-by-step .step-by-step-timeline{text-align:center;margin-top:1.5em}.step-by-step .step-by-step-timeline .step-icon{color:#333}.step-by-step .step-by-step-timeline .step-icon:hover,.step-by-step .step-by-step-timeline .step-icon:visited{color:#333}.step-by-step .step-by-step-timeline .feather{width:50px;height:50px;margin-bottom:15px}.tabs-sidebar .nav{margin-top:15px}.tabs-sidebar .nav img{padding-top:13px}.tabs-sidebar .nav .active img.desaturate{-webkit-filter:grayscale(0);filter:grayscale(0)}.tabs-sidebar .nav li.active a{background:none;border:1px solid #cbd3e8}.tabs-sidebar .nav li.active a:after{content:'';position:absolute;left:100%;top:50%;margin-top:-13px;display:block;width:8px;height:21px;background:url('../images/components/tabs-sidebar/tabs-sidebar-active.png') no-repeat}.tabs-sidebar .nav li a{border:1px solid #fff}.tabs-sidebar .nav li a:hover,.tabs-sidebar .nav li a:focus{outline:none;border:1px solid #cbd3e8}.tabs-sidebar .tab-content .row{padding:1em;border-bottom:1px solid #eee}.tabs-sidebar .tab-content p{font-size:13.5px}.timeline{margin:35px auto 0 auto}.timeline a{font-weight:bold}.timeline .gs-item{padding-bottom:20px}.timeline .circle{background:#3f71c3;color:#fff;border:2px solid #fff;height:47px;width:47px;font-size:20px;float:left;padding-top:6px;padding-left:1px;font-weight:700}.timeline .two .circle{background:#3766b1}.timeline .three .circle{background:#2b4f8a}.timeline .four .circle{background:#1f3963}.timeline h1{font-size:2em;text-align:left;padding:9px 0 0 62px;margin-bottom:24px}.timeline ul{padding-left:1px}.timeline li{margin-bottom:1em;padding-left:14px;list-style:none}.timeline li:before{content:"\00BB";color:#f7941e;margin-left:-16px;margin-right:10px;display:block;float:left}@media (min-width:992px){.timeline{border-top:1px dotted #c2cbe4;position:relative}.timeline .circle{margin:-25px auto 0 auto;float:none}.timeline h1{padding-top:15px;float:none;padding-left:0}}.toolbar-menu{background-color:#fff;border-bottom:1px solid #ccc;border-top:1px solid #ccc;margin-bottom:25px}.toolbar-menu .breadcrumb{margin-bottom:0;padding-left:0;background:none}.toolbar-menu .breadcrumb li{padding-bottom:0;font-size:1.1em}.toolbar-menu .breadcrumb>li+li:before{content:" | "}.toolbar-menu .breadcrumb a:link,.toolbar-menu .breadcrumb a:visited{color:#2f2f2f}.toolbar-menu .breadcrumb a:hover{color:#f7941e}.toolbar-menu .breadcrumb a.active{color:#371e1d;font-weight:600}.toolbar-container-wrapper{background:#fff}.toolbar-row{padding:8px 0;font-size:12px;color:#666;font-weight:300}.toolbar-row a{font-weight:300;color:#666;text-decoration:none}.toolbar-row a:hover{color:#f7941e}.toolbar-row a:visited{color:#666}.toolbar-row ul{margin-bottom:0}.toolbar-row ul li:last-child{padding-right:0}.toolbar-row .toolbar-left-content span{font-size:18px}@media (max-width:767px){.toolbar-row .toolbar-left-content span{padding-top:10px;text-align:center;display:block}}@media (min-width:768px){.toolbar-row .toolbar-left-content span{border-left:5px solid #f7941e;padding-left:10px}}.toolbar-row .toolbar-left-content a{font-weight:bold;color:#f7941e}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#1f3963}.alternate-layout .toolbar-container-wrapper{background:#fff}.alternate-layout .toolbar-row{color:#666}.alternate-layout .toolbar-row a{color:#666}.alternate-layout .toolbar-row a:hover{color:#f7941e}.alternate-layout .toolbar-row a:visited{color:#666}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none solid;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.block-box,.sideitem{background:#f6f6f6;color:#202020;margin:0 0 2em 0;padding:0 0 5px 0;border:none}.block-box h2,.sideitem h2,.block-box h3,.sideitem h3,.block-box h6,.sideitem h6{background:#1f3963;color:#fff;margin:0 0 15px 0;padding:15px 20px;text-transform:uppercase;font-weight:700;font-size:15px}.block-box h2 a:hover,.sideitem h2 a:hover,.block-box h3 a:hover,.sideitem h3 a:hover,.block-box h6 a:hover,.sideitem h6 a:hover{color:#fff}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0 15px 15px}.block-box .list-heading,.sideitem .list-heading{font-weight:700;margin-bottom:4px;font-size:15px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.block-heading{background:none repeat scroll 0 0 #1f3963;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.brand-primary{color:#1f3963}.brand-secondary{color:#3883be}.brand-tertiary{color:#1f3963}.brand-quaternary{color:#b27800}.brand-quinary{color:#ffab00}.brand-success{color:#5cb85c}.brand-info{color:#1f3963}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.blue{color:#00f}.darkblue{color:#009}.yellow{color:yellow}.red{color:#f00}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-primary{background:#1f3963;color:#fff}.background-primary h2,.background-primary h3,.background-primary h4,.background-primary p,.background-primary li{color:inherit}.background-secondary{background:#3883be;color:#fff}.background-secondary h2,.background-secondary h3,.background-secondary h4,.background-secondary p,.background-secondary li{color:inherit}.background-tertiary{background:#1f3963;color:#fff}.background-tertiary h2,.background-tertiary h3,.background-tertiary h4,.background-tertiary p,.background-tertiary li{color:inherit}.background-quaternary{background:#b27800;color:#fff}.background-quaternary h2,.background-quaternary h3,.background-quaternary h4,.background-quaternary p,.background-quaternary li{color:inherit}.background-quinary{background:#ffab00;color:#fff}.background-quinary h2,.background-quinary h3,.background-quinary h4,.background-quinary p,.background-quinary li{color:inherit}.background-bg-body{background:#fff}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-mid-grey{background:#e6e7e8}.background-grey{background:#f5f5f5}.background-light-grey{background:#f1f1f1}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-blue{background:#1f3963;color:#fff}.background-white{background:#fff}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}.label-purple{background-color:#1f3963}#novaContent.background-image-none{background-image:none}tr.background-orange{background:#fbc380}.table-striped>tbody>tr:nth-of-type(odd).background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.box-gray-border{border:1px solid #d6d6d6}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.border-grey-right{border-right:1px solid #ccc}.no-border{border:none ! important}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing *:before,.reset-box-sizing *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.vertical-align{display:flex;align-items:center;justify-content:center}@media (min-width:992px){.vertical-align-md{display:flex;align-items:center;justify-content:center}}.float-right{float:right}.float-left{float:left}.visible-thin{display:none !important}.col-xs-5-eclipse,.col-sm-5-eclipse,.col-md-5-eclipse,.col-lg-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:bold;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:""}.container-list{counter-reset:list;padding-left:55px}.container-list>.list-row{margin-top:12px;position:relative;min-height:3em}.container-list>.list-row:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:bold;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(list);counter-increment:list;display:block}.container-list>.list-row>div:first-child{padding-left:.5em}.container-list>.list-row .no-wrap{white-space:nowrap}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:bold;color:#969696}.list-checkmark a:hover{color:#f7941e}.list-padding li{padding-bottom:25px}.list-border-right li{border-right:1px solid}.list-border-right li:last-child{border:none}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.fa-li{top:.23em}.reset{padding:0;margin:0}.padding-0{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-35{padding:35px}.padding-40{padding:40px}.padding-45{padding:45px}.padding-50{padding:50px}.padding-55{padding:55px}.padding-60{padding:60px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-bottom-35{padding-bottom:35px}.padding-bottom-40{padding-bottom:40px}.padding-bottom-45{padding-bottom:45px}.padding-bottom-50{padding-bottom:50px}.padding-bottom-55{padding-bottom:55px}.padding-bottom-60{padding-bottom:60px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-top-35{padding-top:35px}.padding-top-40{padding-top:40px}.padding-top-45{padding-top:45px}.padding-top-50{padding-top:50px}.padding-top-55{padding-top:55px}.padding-top-60{padding-top:60px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-left-35{padding-left:35px}.padding-left-40{padding-left:40px}.padding-left-45{padding-left:45px}.padding-left-50{padding-left:50px}.padding-left-55{padding-left:55px}.padding-left-60{padding-left:60px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.padding-right-35{padding-right:35px}.padding-right-40{padding-right:40px}.padding-right-45{padding-right:45px}.padding-right-50{padding-right:50px}.padding-right-55{padding-right:55px}.padding-right-60{padding-right:60px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-35{margin:35px}.margin-40{margin:40px}.margin-45{margin:45px}.margin-50{margin:50px}.margin-55{margin:55px}.margin-60{margin:60px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-bottom-35{margin-bottom:35px}.margin-bottom-40{margin-bottom:40px}.margin-bottom-45{margin-bottom:45px}.margin-bottom-50{margin-bottom:50px}.margin-bottom-55{margin-bottom:55px}.margin-bottom-60{margin-bottom:60px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-top-35{margin-top:35px}.margin-top-40{margin-top:40px}.margin-top-45{margin-top:45px}.margin-top-50{margin-top:50px}.margin-top-55{margin-top:55px}.margin-top-60{margin-top:60px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-7{margin-right:7px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-right-35{margin-right:35px}.margin-right-40{margin-right:40px}.margin-right-45{margin-right:45px}.margin-right-50{margin-right:50px}.margin-right-55{margin-right:55px}.margin-right-60{margin-right:60px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.margin-left-35{margin-left:35px}.margin-left-40{margin-left:40px}.margin-left-45{margin-left:45px}.margin-left-50{margin-left:50px}.margin-left-55{margin-left:55px}.margin-left-60{margin-left:60px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.margin-auto{margin:0 auto}.breadcrumbs-default-margin{margin-bottom:20px}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,0.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,0.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;vertical-align:middle}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0 300px;-moz-transform:scale(.9999);border-color:#f5f5f5 transparent transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent transparent}.triangle.triangle-white{border-color:#f9f9f9 rgba(249,249,249,0) rgba(249,249,249,0) transparent}.box{padding:15px 10px;margin-bottom:10px;margin-top:1.5em}.blue_box{background-color:#114e68}.blue_box h3,.blue_box p{color:#fff}.uppercase{text-transform:uppercase}.fw-200{font-weight:200}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.fw-700{font-weight:700}.emphasis{color:#f7941e;font-weight:700}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.underlined{text-decoration:underline}.small{font-size:10px}.big{font-size:20px}.font-size-large{font-size:58px}.text-highlight{background:#eee;padding:12px 24px}.white-space-normal{white-space:normal}.header-short-underline{font-size:18px;font-weight:bold}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}a:visited{color:#9e55d2}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}.a-underline{text-decoration:underline}.a-underline:hover{text-decoration:none}blockquote{font-size:14px}.top-level-heading{background:#3883be;position:relative;padding:20px;margin-bottom:30px;color:#fff}.top-level-heading:after{width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #3883be;position:absolute;content:"";bottom:-20px;left:50%;margin-left:-20px}.heading-underline{position:relative;font-size:2em;text-transform:uppercase;font-weight:200;margin:50px 0 20px}.heading-underline:after{border-bottom:4px solid #f7941d;content:"";display:block;width:100px;margin:10px auto 0}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;-moz-transition:opacity .15s ease-in-out;-ms-transition:opacity .15s ease-in-out;-o-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{margin-bottom:-28px}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px 5px}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table-layout-fixed{table-layout:fixed}.table.table-solstice th{background:#1f3963;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(even){background:#40bbdc}.deprecated #novaContent{background:url("../images/template/bg-deprecated.gif") center 75px no-repeat ! important}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.textfield-underline{border-top:none;border-left:none;border-right:none;border-bottom:1px solid inherit;background-color:transparent;border-radius:0;box-shadow:none;margin:10px auto;color:inherit}.textfield-underline:-moz-placeholder{color:inherit}.textfield-underline::-moz-placeholder{color:inherit}.textfield-underline:-ms-input-placeholder{color:inherit}.textfield-underline::-webkit-input-placeholder{color:inherit}.hidden-label label.control-label{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.border-reset{border:0 !important}- html{position:relative;min-height:100%}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #2f2f2f}@media (min-width:768px){.page-header-logo-bordered{border-bottom:none}}#header-right{text-align:right}.thin-header .visible-thin{display:block !important}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}main{position:relative;padding-bottom:20px;background:#f6f6f7}main.no-promo{padding-top:20px}main.no-promo .breadcrumbs-offset{margin-top:-20px}@media print{.sideitem,#copyright{padding-left:0;padding-right:0}main{padding-bottom:0;padding-top:0}#solstice-footer,#copyright,#header-row{padding-top:0}}h1{margin-bottom:25px}ul ul{margin-top:5px}#header-wrapper{background:#1f3963}@media (min-width:768px){#header-left .wrapper-logo-default img{padding:44px 0 0 30px}}.logo-eclipse-default{padding-top:44px}#header-right{padding-top:15px}#main-menu li a{margin-right:0}#main-menu .navbar-brand{padding-top:10px}.thin-header{padding:10px}.thin-header #header-left .wrapper-logo-default img{padding:10px 0 0 0}.thin-header #main-menu{padding-top:3px}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/stylesheets/polarsys-barebone.min.css b/eclipse.org-common/themes/solstice/public/stylesheets/polarsys-barebone.min.css
index f7cb8c2..3acc725 100644
--- a/eclipse.org-common/themes/solstice/public/stylesheets/polarsys-barebone.min.css
+++ b/eclipse.org-common/themes/solstice/public/stylesheets/polarsys-barebone.min.css
@@ -1,6 +1,6 @@
-.thin-header *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.thin-header *:before,.thin-header *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.default-breadcrumbs{background:url('../images/template/breadcrumbs-large-bg.jpg') center #1b1732;background-size:100%;color:#fff;text-align:center;border-bottom:none;font-size:inherit}.default-breadcrumbs p{color:#bebebe;max-width:450px;margin:30px auto 20px auto;font-weight:400}.default-breadcrumbs p:last-child{padding-bottom:1.5em}.default-breadcrumbs .btn{min-width:150px;margin-right:10px;margin-left:10px}.default-breadcrumbs .breadcrumb{background:none;margin:15px 0 14px 0;padding-left:0;padding-bottom:0;text-align:left;text-transform:uppercase}.default-breadcrumbs .breadcrumb li{padding-bottom:3px}.default-breadcrumbs .breadcrumb .active{color:#fff}.default-breadcrumbs .breadcrumb a{font-weight:600;text-decoration:none}.default-breadcrumbs .breadcrumb a:link,.default-breadcrumbs .breadcrumb a:visited{color:#ababab}.default-breadcrumbs .breadcrumb a:hover{color:#f7941e}body #st-el-4 .st-btns{overflow:auto}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#fff}.breadcrumb>.active{color:#777}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#2c2255}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#2c2255}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#2c2255}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}.float-right{float:right}.float-left{float:left}.padding-0{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.reset{padding:0;margin:0}.visible-thin{display:none !important}.brand-primary{color:#2c2255}.brand-secondary{color:#afbbdc}.brand-success{color:#5cb85c}.brand-info{color:#afbbdc}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}tr.background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.background-blue{background:#afbbdc;color:#fff}.blue{color:#00f}.darkblue{color:#009}.yellow{color:yellow}.red{color:#f00}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-grey{background:#f5f5f5}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-white{background:#fff}#novaContent.background-image-none{background-image:none}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;-moz-transition:opacity .15s ease-in-out;-ms-transition:opacity .15s ease-in-out;-o-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{padding-bottom:0;margin-bottom:-28px}.table-layout-fixed{table-layout:fixed}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.col-xs-5-eclipse,.col-sm-5-eclipse,.col-md-5-eclipse,.col-lg-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.donation-button{padding-top:.75em;padding-bottom:.75em;padding-left:3.5em;padding-right:3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:hover,.btn-simple:active{border:1px solid #777;background:#eee}.btn-smaller,.btn-group-smaller>.btn{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:normal}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing *:before,.reset-box-sizing *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px 5px}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.no-border{border:none ! important}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table.table-solstice th{background:#afbbdc;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(even){background:#40bbdc}.vertical-align{display:flex;align-items:center}@media (min-width:992px){.vertical-align-md{display:flex;align-items:center}}.box-gray-border{border:1px solid #d6d6d6}/*!
+.thin-header *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.thin-header *:before,.thin-header *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.default-breadcrumbs{background:url('../images/template/breadcrumbs-large-bg.jpg') center #1b1732;background-size:100%;color:#ababab;border-bottom:none;border-top:none;font-size:inherit}.breadcrumb{background:none;margin-bottom:0;text-transform:uppercase}.breadcrumb a{font-weight:600}.breadcrumb a:link,.breadcrumb a:visited{color:#ababab}.breadcrumb a:hover{color:#f7941e}body #st-el-4 .st-btns{overflow:auto}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.breadcrumb{padding:20px 30px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ababab}.breadcrumb>.active{color:#fff}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#2c2255}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#2c2255}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none solid;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.block-box,.sideitem{background:#f6f6f6;color:#202020;margin:0 0 2em 0;padding:0 0 5px 0;border:none}.block-box h2,.sideitem h2,.block-box h3,.sideitem h3,.block-box h6,.sideitem h6{background:#afbbdc;color:#fff;margin:0 0 15px 0;padding:15px 20px;text-transform:uppercase;font-weight:700;font-size:15px}.block-box h2 a:hover,.sideitem h2 a:hover,.block-box h3 a:hover,.sideitem h3 a:hover,.block-box h6 a:hover,.sideitem h6 a:hover{color:#fff}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0 15px 15px}.block-box .list-heading,.sideitem .list-heading{font-weight:700;margin-bottom:4px;font-size:15px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.block-heading{background:none repeat scroll 0 0 #afbbdc;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.brand-primary{color:#2c2255}.brand-secondary{color:#868685}.brand-tertiary{color:#afbbdc}.brand-quaternary{color:#342343}.brand-quinary{color:#bed247}.brand-success{color:#5cb85c}.brand-info{color:#afbbdc}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.blue{color:#00f}.darkblue{color:#009}.yellow{color:yellow}.red{color:#f00}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-primary{background:#2c2255;color:#fff}.background-primary h2,.background-primary h3,.background-primary h4,.background-primary p,.background-primary li{color:inherit}.background-secondary{background:#868685;color:#fff}.background-secondary h2,.background-secondary h3,.background-secondary h4,.background-secondary p,.background-secondary li{color:inherit}.background-tertiary{background:#afbbdc;color:#fff}.background-tertiary h2,.background-tertiary h3,.background-tertiary h4,.background-tertiary p,.background-tertiary li{color:inherit}.background-quaternary{background:#342343;color:#fff}.background-quaternary h2,.background-quaternary h3,.background-quaternary h4,.background-quaternary p,.background-quaternary li{color:inherit}.background-quinary{background:#bed247;color:#fff}.background-quinary h2,.background-quinary h3,.background-quinary h4,.background-quinary p,.background-quinary li{color:inherit}.background-bg-body{background:#fff}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-mid-grey{background:#e6e7e8}.background-grey{background:#f5f5f5}.background-light-grey{background:#f1f1f1}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-blue{background:#afbbdc;color:#fff}.background-white{background:#fff}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}.label-purple{background-color:#2c2255}#novaContent.background-image-none{background-image:none}tr.background-orange{background:#fbc380}.table-striped>tbody>tr:nth-of-type(odd).background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.box-gray-border{border:1px solid #d6d6d6}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.border-grey-right{border-right:1px solid #ccc}.no-border{border:none ! important}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing *:before,.reset-box-sizing *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.vertical-align{display:flex;align-items:center;justify-content:center}@media (min-width:992px){.vertical-align-md{display:flex;align-items:center;justify-content:center}}.float-right{float:right}.float-left{float:left}.visible-thin{display:none !important}.col-xs-5-eclipse,.col-sm-5-eclipse,.col-md-5-eclipse,.col-lg-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:bold;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:""}.container-list{counter-reset:list;padding-left:55px}.container-list>.list-row{margin-top:12px;position:relative;min-height:3em}.container-list>.list-row:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:bold;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(list);counter-increment:list;display:block}.container-list>.list-row>div:first-child{padding-left:.5em}.container-list>.list-row .no-wrap{white-space:nowrap}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:bold;color:#969696}.list-checkmark a:hover{color:#f7941e}.list-padding li{padding-bottom:25px}.list-border-right li{border-right:1px solid}.list-border-right li:last-child{border:none}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.fa-li{top:.23em}.reset{padding:0;margin:0}.padding-0{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-35{padding:35px}.padding-40{padding:40px}.padding-45{padding:45px}.padding-50{padding:50px}.padding-55{padding:55px}.padding-60{padding:60px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-bottom-35{padding-bottom:35px}.padding-bottom-40{padding-bottom:40px}.padding-bottom-45{padding-bottom:45px}.padding-bottom-50{padding-bottom:50px}.padding-bottom-55{padding-bottom:55px}.padding-bottom-60{padding-bottom:60px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-top-35{padding-top:35px}.padding-top-40{padding-top:40px}.padding-top-45{padding-top:45px}.padding-top-50{padding-top:50px}.padding-top-55{padding-top:55px}.padding-top-60{padding-top:60px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-left-35{padding-left:35px}.padding-left-40{padding-left:40px}.padding-left-45{padding-left:45px}.padding-left-50{padding-left:50px}.padding-left-55{padding-left:55px}.padding-left-60{padding-left:60px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.padding-right-35{padding-right:35px}.padding-right-40{padding-right:40px}.padding-right-45{padding-right:45px}.padding-right-50{padding-right:50px}.padding-right-55{padding-right:55px}.padding-right-60{padding-right:60px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-35{margin:35px}.margin-40{margin:40px}.margin-45{margin:45px}.margin-50{margin:50px}.margin-55{margin:55px}.margin-60{margin:60px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-bottom-35{margin-bottom:35px}.margin-bottom-40{margin-bottom:40px}.margin-bottom-45{margin-bottom:45px}.margin-bottom-50{margin-bottom:50px}.margin-bottom-55{margin-bottom:55px}.margin-bottom-60{margin-bottom:60px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-top-35{margin-top:35px}.margin-top-40{margin-top:40px}.margin-top-45{margin-top:45px}.margin-top-50{margin-top:50px}.margin-top-55{margin-top:55px}.margin-top-60{margin-top:60px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-7{margin-right:7px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-right-35{margin-right:35px}.margin-right-40{margin-right:40px}.margin-right-45{margin-right:45px}.margin-right-50{margin-right:50px}.margin-right-55{margin-right:55px}.margin-right-60{margin-right:60px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.margin-left-35{margin-left:35px}.margin-left-40{margin-left:40px}.margin-left-45{margin-left:45px}.margin-left-50{margin-left:50px}.margin-left-55{margin-left:55px}.margin-left-60{margin-left:60px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.margin-auto{margin:0 auto}.breadcrumbs-default-margin{margin-bottom:20px}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,0.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,0.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;vertical-align:middle}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0 300px;-moz-transform:scale(.9999);border-color:#f5f5f5 transparent transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent transparent}.triangle.triangle-white{border-color:#f9f9f9 rgba(249,249,249,0) rgba(249,249,249,0) transparent}.box{padding:15px 10px;margin-bottom:10px;margin-top:1.5em}.blue_box{background-color:#114e68}.blue_box h3,.blue_box p{color:#fff}.uppercase{text-transform:uppercase}.fw-200{font-weight:200}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.fw-700{font-weight:700}.emphasis{color:#f7941e;font-weight:700}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.underlined{text-decoration:underline}.small{font-size:10px}.big{font-size:20px}.font-size-large{font-size:58px}.text-highlight{background:#eee;padding:12px 24px}.white-space-normal{white-space:normal}.header-short-underline{font-size:18px;font-weight:bold}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}a:visited{color:#9e55d2}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}.a-underline{text-decoration:underline}.a-underline:hover{text-decoration:none}blockquote{font-size:14px}.top-level-heading{background:#868685;position:relative;padding:20px;margin-bottom:30px;color:#fff}.top-level-heading:after{width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #868685;position:absolute;content:"";bottom:-20px;left:50%;margin-left:-20px}.heading-underline{position:relative;font-size:2em;text-transform:uppercase;font-weight:200;margin:50px 0 20px}.heading-underline:after{border-bottom:4px solid #f7941d;content:"";display:block;width:100px;margin:10px auto 0}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;-moz-transition:opacity .15s ease-in-out;-ms-transition:opacity .15s ease-in-out;-o-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{margin-bottom:-28px}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px 5px}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table-layout-fixed{table-layout:fixed}.table.table-solstice th{background:#afbbdc;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(even){background:#40bbdc}.deprecated #novaContent{background:url("../images/template/bg-deprecated.gif") center 75px no-repeat ! important}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.textfield-underline{border-top:none;border-left:none;border-right:none;border-bottom:1px solid inherit;background-color:transparent;border-radius:0;box-shadow:none;margin:10px auto;color:inherit}.textfield-underline:-moz-placeholder{color:inherit}.textfield-underline::-moz-placeholder{color:inherit}.textfield-underline:-ms-input-placeholder{color:inherit}.textfield-underline::-webkit-input-placeholder{color:inherit}.hidden-label label.control-label{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.border-reset{border:0 !important}/*!
  * Yamm!3
  * Yet another megamenu for Bootstrap 3
  * 
  * http://geedmo.github.com/yamm3
- */.yamm .nav,.yamm .collapse,.yamm .dropup,.yamm .dropdown{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .nav.navbar-right .dropdown-menu{left:auto;right:0}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}html{position:relative;min-height:100%}.toolbar-container-wrapper{background:#fff}.toolbar-row{padding:8px 0;font-size:12px;color:#666;font-weight:300}.toolbar-row a{font-weight:300;padding-left:4px;color:#666}.toolbar-row a:hover{color:#f7941e}.toolbar-row ul{margin-bottom:0}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#afbbdc}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #ccc}@media (min-width:768px){.page-header-logo-bordered{border-bottom:1px solid #ccc}}#header-right{text-align:right}.thin-header .visible-thin{display:block !important}.logo-eclipse-default-mobile{max-height:50px}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}.img-responsive{display:block;max-width:100%;height:auto}.list-unstyled{list-style:none}.barebone-layout{color:#333;font-family:'Open Sans',"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857}.barebone-layout a{text-decoration:none}.barebone-layout .nav a{text-decoration:none}.barebone-layout .navbar-toggle{cursor:pointer}.barebone-layout .navbar-toggle.collapsed{display:block}.logo-eclipse-default{max-height:50px}.cla_dec{opacity:.33;vertical-align:bottom}.cla_dec:hover{opacity:1}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#efeef2;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#ccc;height:3px}#main-menu .nav{margin:0;background:#2c2255}#main-menu .nav>li{border:1px solid #fafafb}#main-menu .nav>li.open .dropdown-toggle{color:#fff;background:#342343}#main-menu .nav>li>a{color:#fff;text-transform:uppercase}#main-menu .nav>li .dropdown-menu{background:#efeef2;padding:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#bfe7ff;color:#000}#main-menu .nav>li .dropdown-menu>li.active a:hover,#main-menu .nav>li .dropdown-menu>li.active a:focus{color:#000;background:#bfe7ff}#main-menu .nav>li .dropdown-menu>li>a{padding:5px 20px 5px 30px;color:#2c2255}#main-menu .nav>li .dropdown-menu>li>a:hover,#main-menu .nav>li .dropdown-menu>li>a:focus{color:#afbbdc;background:#f5f5f5}}@media (min-width:768px){#main-menu{font-size:.9em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#787878}#main-menu li a:hover,#main-menu li a:active{background:none;color:#f7941e}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:initial;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:initial;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:hover{color:#f7941e}#main-menu .dropdown-menu a:active{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active{color:#f7941e;background:none}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.separator,.ul-left-nav>li.about{padding-left:0;font-weight:bold}.ul-left-nav>li.separator img,.ul-left-nav>li.about img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#f7941e}
\ No newline at end of file
+ */.yamm .nav,.yamm .collapse,.yamm .dropup,.yamm .dropdown{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .nav.navbar-right .dropdown-menu{left:auto;right:0}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}- html{position:relative;min-height:100%}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #ccc}@media (min-width:768px){.page-header-logo-bordered{border-bottom:1px solid #ccc}}#header-right{text-align:right}.thin-header .visible-thin{display:block !important}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}.img-responsive{display:block;max-width:100%;height:auto}.list-unstyled{list-style:none}.barebone-layout{color:#333;font-family:'Open Sans',"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857}.barebone-layout a{text-decoration:none}.barebone-layout .nav a{text-decoration:none}.barebone-layout .navbar-toggle{cursor:pointer}.barebone-layout .navbar-toggle.collapsed{display:block}.logo-eclipse-default{max-height:50px}.cla_dec{opacity:.33;vertical-align:bottom}.cla_dec:hover{opacity:1}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#efeef2;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu #navbar-main-menu{float:none}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#ccc;height:3px}#main-menu .nav{margin:0;padding:0;background:#2c2255}#main-menu .nav>li.open .dropdown-toggle{color:#fff;background:#342343}#main-menu .nav>li>a{color:#fff;text-transform:uppercase;padding:10px 15px;border-bottom:none}#main-menu .nav>li .dropdown-menu{background:#efeef2;padding:0;border-radius:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#bfe7ff;color:#000}#main-menu .nav>li .dropdown-menu>li.active a:hover,#main-menu .nav>li .dropdown-menu>li.active a:focus{color:#000;background:#bfe7ff}#main-menu .nav>li .dropdown-menu>li>a{padding:10px 15px;color:#2c2255}#main-menu .nav>li .dropdown-menu>li>a:hover,#main-menu .nav>li .dropdown-menu>li>a:focus{color:#afbbdc;background:#f5f5f5}#main-menu .nav>li.main-menu-search .dropdown-toggle{display:none}#main-menu .nav>li.main-menu-search .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none;display:block}#main-menu .nav>li.main-menu-search .dropdown-menu p{color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .yamm-content{padding:15px}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input{background-color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input-box{border:none}}@media (max-width:1199px){#header-wrapper .container,.toolbar-container-wrapper .container,main .container,#breadcrumb .container{width:auto}}@media (min-width:768px){#main-menu{font-size:1em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#787878}#main-menu li a:hover,#main-menu li a:active{color:#f7941e}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:initial;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:initial;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:hover{color:#f7941e}#main-menu .dropdown-menu a:active{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active,#main-menu a:focus{color:#f7941e}#main-menu .nav>li>a:hover,#main-menu .nav>li>a:focus{background-color:transparent}#main-menu .nav .open a{background-color:transparent}#main-menu .nav .open a:hover,#main-menu .nav .open a:focus{background-color:transparent}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.separator,.ul-left-nav>li.about{padding-left:0;font-weight:bold}.ul-left-nav>li.separator img,.ul-left-nav>li.about img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#f7941e}.logo-eclipse-default-mobile{max-height:50px}@media (min-width:768px){.alternate-layout #main-menu{font-size:1em}.alternate-layout #main-menu ul li{text-transform:uppercase}.alternate-layout #main-menu li a{color:#787878}.alternate-layout #main-menu li a:hover,.alternate-layout #main-menu li a:active{color:#f7941e}}@media (min-width:992px){.alternate-layout #main-menu{font-size:1em}}@media (max-width:767px){.alternate-layout #main-menu{background:#fff}}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/stylesheets/polarsys.min.css b/eclipse.org-common/themes/solstice/public/stylesheets/polarsys.min.css
index 41978a5..9cc755e 100644
--- a/eclipse.org-common/themes/solstice/public/stylesheets/polarsys.min.css
+++ b/eclipse.org-common/themes/solstice/public/stylesheets/polarsys.min.css
@@ -1,13 +1,13 @@
 /*!
- * Bootstrap v3.3.6 (http://getbootstrap.com)
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../../../../public/fonts/glyphicons-halflings-regular.eot');src:url('../../../../public/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../../../../public/fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../../../../public/fonts/glyphicons-halflings-regular.woff') format('woff'),url('../../../../public/fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../../../../public/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#18203a;text-decoration:none}a:hover,a:focus{color:#a6930b;text-decoration:none}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:#18203a}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#18203a}a.text-primary:hover,a.text-primary:focus{color:#090c16}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#18203a}a.bg-primary:hover,a.bg-primary:focus{background-color:#090c16}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#2f2f2f}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#2f2f2f;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#18203a;border-color:#111628}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#090c16;border-color:#000}.btn-primary:hover{color:#fff;background-color:#090c16;border-color:#000}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#090c16;border-color:#000}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#000;border-color:#000}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#18203a;border-color:#111628}.btn-primary .badge{color:#18203a;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#a6930b;border-color:#8e7e09}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#766908;border-color:#171401}.btn-info:hover{color:#fff;background-color:#766908;border-color:#554b06}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#766908;border-color:#554b06}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#554b06;border-color:#171401}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#a6930b;border-color:#8e7e09}.btn-info .badge{color:#a6930b;background-color:#fff}.btn-warning{color:#fff;background-color:#f7941e;border-color:#f38809}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#da7a08;border-color:#784304}.btn-warning:hover{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#b86707;border-color:#784304}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f7941e;border-color:#f38809}.btn-warning .badge{color:#f7941e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#18203a;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#a6930b;text-decoration:none;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#18203a}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#2f2f2f;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#18203a}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#18203a}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important;float:left}.navbar-right{float:right !important;float:right;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#18203a}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#18203a;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#a6930b;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#18203a;border-color:#18203a;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#18203a}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#090c16}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#a6930b}.label-info[href]:hover,.label-info[href]:focus{background-color:#766908}.label-warning{background-color:#f7941e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#da7a08}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#18203a;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#18203a}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#18203a;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#a6930b}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f7941e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#18203a;border-color:#18203a}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#6176bd}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#f5f5f5;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid transparent;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:-1px;border-top-right-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1px;border-bottom-right-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid transparent}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid transparent}.panel-default{border-color:transparent}.panel-default>.panel-heading{color:#fff;background-color:#353535;border-color:transparent}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:transparent}.panel-default>.panel-heading .badge{color:#353535;background-color:#fff}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:transparent}.panel-primary{border-color:#18203a}.panel-primary>.panel-heading{color:#fff;background-color:#18203a;border-color:#18203a}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#18203a}.panel-primary>.panel-heading .badge{color:#18203a;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#18203a}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#ccc;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#ccc;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #ccc;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#18203a}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}/*!
  *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:'FontAwesome';src:url('../../../../public/fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../../../../public/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../../../../public/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../../../../public/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../../../../public/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../../../../public/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6{font-weight:300;color:#18203a}h1{margin-bottom:25px}a{font-weight:bold}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}.font-size-large{font-size:58px}ul ul{margin-top:5px}.uppercase{text-transform:uppercase}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.fw-700{font-weight:700}.emphasis{color:#f7941e;font-weight:700}.small{font-size:10px}.text-highlight{background:#eee;padding:12px 24px}blockquote{font-size:14px}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:bold;color:#969696}.list-checkmark a:hover{color:#f7941e}.block-heading{background:none repeat scroll 0 0 #afbbdc;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.fa-li{top:.23em}.list-padding li{padding-bottom:25px}.header-short-underline{font-size:18px;font-weight:bold}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}.underlined{text-decoration:underline}.ad-eclipsecon-schedule a{font-weight:300}.ad-eclipsecon-schedule>thead>tr>th{border-color:#cecece}.ad-eclipsecon-schedule>tbody>tr>th,.ad-eclipsecon-schedule>tbody>tr>td{border:none}.ad-eclipsecon-schedule>tbody>tr:nth-of-type(odd){background-color:#e8e8e8}.ad-eclipsecon-schedule-title{position:relative;padding-left:30px;display:block;font-size:16px;font-weight:600}.ad-eclipsecon-schedule-title:before{font-family:FontAwesome;content:"\f041";position:absolute;font-size:35px;color:#a59bd0;left:0;top:-2px}.donate-ad{background-color:#f6f6f6;position:relative;overflow:hidden;border-bottom:4px solid #bf4b97}.donate-ad h2{margin-top:0}.donate-ad .btn-square{background-color:#2e2458;color:#fff;margin-bottom:10px;width:57px}.donate-ad .btn-square.active{background-color:#f7941d}.donate-ad .underlined-link{font-weight:normal;text-decoration:underline}.donate-ad .underlined-link:hover{text-decoration:none}.donate-ad .btn-donate-close{position:absolute;top:20px;right:20px;z-index:999;font-size:1.2em;cursor:pointer}.donate-ad .list-amount{margin-bottom:0}.donate-ad .donate-submit{margin-top:20px}.donate-ad .donate-submit .input-group-addon{font-size:.8em}.donate-ad .form-inline .input-group>.form-control{padding-right:6px;text-align:right}@media (min-width:768px){.donate-ad .form-inline .input-group>.form-control{width:60px}}.donate-text,.donate-form{padding-top:20px}@media (min-width:992px){.donate-text:after{content:"";position:absolute;top:0;right:-34px;width:0;height:0;border-top:126px solid transparent;border-left:34px solid #f6f6f6;border-bottom:126px solid transparent;z-index:99}}.donate-form form{position:relative;z-index:9}.donate-form:after{content:"";position:absolute;width:1000px;height:300px;z-index:1;left:0;top:0;background-color:#fff}.recognition-fields{display:none}.anchor{display:block;position:relative;top:-14px;visibility:hidden;z-index:9999}.scrollup{width:40px;height:40px;opacity:.3;position:fixed;bottom:50px;right:15px;display:none;text-indent:-9999px;background:url('../../../../public/images/components/back-to-top/back-to-top.png') no-repeat}.scrollup:focus{outline:none}#back-to-top{margin:0;padding:0}#back-to-top a{border-top:1px solid #808080;background-color:#666;color:#fff;display:block;padding:4px 0 3px;text-align:center;width:100%;margin:0}#back-to-top a:hover,#back-to-top a:focus{text-decoration:none;background:#dfdfe4;color:#4a4a4a}.block-box,.sideitem{background:#f6f6f6;color:#202020;margin-bottom:2em;padding-bottom:5px}.block-box h2,.sideitem h2,.block-box h3,.sideitem h3,.block-box h6,.sideitem h6{background:#a6930b;color:#fff;margin:0 0 15px 0;padding:15px 20px;text-transform:uppercase;font-weight:700;font-size:15px}.block-box h2 a:hover,.sideitem h2 a:hover,.block-box h3 a:hover,.sideitem h3 a:hover,.block-box h6 a:hover,.sideitem h6 a:hover{color:#fff}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0 15px 15px}.block-box .list-heading,.sideitem .list-heading{font-weight:600;margin-bottom:4px;font-size:16px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.default-breadcrumbs{background:#f2f2f3;background-size:100%;color:#18203a;text-align:center;border-bottom:1px solid #fff;font-size:inherit}.default-breadcrumbs p{color:#bebebe;max-width:450px;margin:30px auto 20px auto;font-weight:400}.default-breadcrumbs p:last-child{padding-bottom:1.5em}.default-breadcrumbs .btn{min-width:150px;margin-right:10px;margin-left:10px}.default-breadcrumbs .breadcrumb{background:none;margin:15px 0 14px 0;padding-left:0;padding-bottom:0;text-align:left;text-transform:uppercase}.default-breadcrumbs .breadcrumb li{padding-bottom:3px}.default-breadcrumbs .breadcrumb .active{color:#18203a}.default-breadcrumbs .breadcrumb a{font-weight:600;text-decoration:none}.default-breadcrumbs .breadcrumb a:link,.default-breadcrumbs .breadcrumb a:visited{color:#18203a}.default-breadcrumbs .breadcrumb a:hover{color:#a6930b}body #st-el-4 .st-btns{overflow:auto}.discover-search{background:#efefef}.discover-search h2{color:#545454;margin-top:1.3em;padding-bottom:0;margin-bottom:.1em}.discover-search .form-search-projects{margin-bottom:1.4em}.discover-search>.container{min-height:267px}@media (min-width:992px){.discover-search>.container{background:url("../../../../public/images/components/discover-search/discover-search-bg.jpg") right no-repeat}}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none solid;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.drag_installbutton{position:relative;clear:both;display:inline}.drag_installbutton .tooltip{opacity:1;display:none;background:url("../../../../public/images/components/drag-drop/mpcdrag.png") no-repeat scroll 110% 60% #a285c5;position:absolute;top:0;left:64px;text-align:left;width:325px;color:#000;border:1px solid #ae00ce;z-index:99;padding:5px 50px 5px 5px}.drag_installbutton .tooltip h3{margin-top:0;color:#000}.drag_installbutton .tooltip.show-right{left:-335px}.drag_installbutton a.drag:hover .tooltip{display:block}.drag_installbutton.drag_installbutton_v2 .btn:hover{cursor:move}.drag_installbutton.drag_installbutton_v2 .tooltip{left:100px;margin-top:-6px;border:1px solid #777;background-color:#eee}.drag_installbutton.drag_installbutton_v2 .tooltip h3{font-size:18px}.gsc-search-box th,.gsc-branding th,.gsc-search-box td,.gsc-branding td{padding:0}.gsc-control-cse .gsc-table-result{font-family:inherit}.gsc-control-cse .gsc-input-box{height:inherit}.gsc-input-box{-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important;position:relative;top:-1px;transition:border-color .15s ease-in-out 0s}.gsc-input-box input.gsc-input{font-size:12px;height:25px !important;background-position:0 5px !important;background-color:transparent !important}.gsc-input-box:hover{border-color:#f7941e}.gsc-input-box-hover{border:1px;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.gsc-search-box-tools .gsc-search-box .gsc-input{padding-right:0 !important}input.gsc-search-button{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important;font-size:12px !important;margin-left:0 !important;position:relative;left:-1px;padding:6px 15px !important}.gsib_a{padding-top:0 !important}.gsst_a .gscb_a{color:#f7941e !important;position:relative;top:2px}.header-row{padding:4px 6px}.header-row h2{margin:.6em 0;font-size:1.4em;color:#fff}.header-row.pink{background:#fad9d9;border-top:1px solid #808080;border-bottom:1px solid #808080}.header_nav{padding-bottom:35px}.header_nav img{margin:20px auto}.header_nav ul{background:#f4f4f4;padding:0;text-transform:uppercase;color:#7b778e;margin:0;font-size:16px}.header_nav ul li{list-style:none;clear:right;padding-bottom:0}.header_nav ul li:nth-child(odd){clear:left}.header_nav ul a{padding:20px;display:block;font-weight:600}.header_nav ul a:active,.header_nav ul a:visited,.header_nav ul a:link{color:#7b778e}.header_nav ul a:hover{color:#f7941e}.header_nav ul a i{font-size:30px;padding:4px 0 0 0;text-align:center;font-weight:700}.header_nav ul span{padding:0 0 0 5px}.header_nav ul span p{font-size:11px;text-transform:none;font-weight:400;margin:0}.highlight{overflow:hidden;position:relative}.highlight .container{padding:4em 0 3em 0;position:relative}@media (min-width:992px){.highlight .container{padding:7em 0 5em 0}}.highlight h1{color:#333}.highlight p,.highlight li{font-size:1.1em}.highlight h1{margin-top:0;margin-bottom:.5em}.highlight .triangle{position:absolute;right:0;top:0}.highlight .list-inline{padding-top:1.7em}.highlight.background-charcoal{background:#252525;color:#7d7d7d}.highlight.background-charcoal h1{color:#7d7d7d}.highlight-img img{margin:auto}.highlight-left .triangle{right:auto;left:-115px}.icon-sidebar-menu h3{margin-top:0;font-size:16px;margin-bottom:5px}.icon-sidebar-menu p{font-size:13px}.icon-sidebar-menu .circle-icon{width:80px;height:80px;display:block}.icon-sidebar-menu .circle-icon i{font-size:37px;margin-top:20px}.landing-well{background-repeat:no-repeat;background-position:center middle;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-attachment:fixed;background-color:#1b1732;background-image:url("../../../../public/images/components/landing-well/background.jpg");border-top:1px solid #f7941e;border-bottom:1px solid #f7941e;color:#fff;padding:30px 0;text-align:center}.landing-well h1{font-size:3.5em;margin-bottom:10px;font-weight:600}.landing-well h1 a{color:#fff}.landing-well h1 a:hover{color:#f7941e}.landing-well .circle h3{color:#fff}.landing-well p{font-size:1.2em;font-weight:100}.landing-well p a{color:#f7941e;font-weight:600;text-decoration:none}.landing-well p a:hover{color:#fff}.landing-well .landing-well-action{text-align:center}.landing-well .list-glyphicon{margin:2em 0 0 0;padding-bottom:1em}.landing-well .list-glyphicon img{height:110px;width:110px}@media (min-width:1200px){.landing-well li:last-child{margin-top:-20px}}@media (min-width:1200px){.landing-well{text-align:left}.landing-well h1{margin-top:.76em;padding-top:1.3em}.landing-well .list-glyphicon{margin-left:93px}}@media (min-width:992px){.landing-well .list-glyphicon img{height:160px;width:160px}.landing-well .circle{height:160px;margin:0 5px;font-size:44px;width:160px}.landing-well .circle h3{font-size:16px;top:3.4em;margin-left:5px;width:74%}}.news-list{padding-bottom:3em}.news-list h2{background:#f7941e;color:#fff;text-transform:uppercase;text-align:center;font-size:1.2em;padding:8px 8px;font-weight:600;margin-top:2.1em}.news-list h2 a{color:#fff}.news-list h2 a:hover{color:#3a3a3a}.news-list .link-rss-feed{float:right;font-size:.8em;margin-top:.2em}.news-list .news_item_header{display:none}.news_item_header{padding:0 0 2em 0}.news_item{border-bottom:1px solid #e9eef4;margin-bottom:20px;padding-bottom:10px}.news_item_date{color:#f7941e}.news_item_title h3{font-size:1.3em;margin-top:.2em}.news_item_title h3 a{font-weight:600;color:#3a3a3a}.news_item_title h3 a:hover{color:#cc7105}.news_item_description{font-weight:300}.news_view_all{color:#8e8e8e}.news_view_all a{color:#f7941e;font-weight:bold}.news_view_all a:hover{color:#604200}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:bold;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:""}.promoted-plugin{background-color:#fff}.promoted-plugin a:hover{text-decoration:none ! important}.promoted-plugin .drag{display:block;border:1px solid #e0e0e0}.promoted-plugin .drag:hover{background:#fbf7fb;cursor:move}.promoted-plugin .drag:hover .tooltip{display:block}.promoted-plugin .header{background:#f7941e none repeat scroll 0 0;display:block;padding:0 10px;text-align:center}.promoted-plugin .header h3{padding:8px 0;color:#fff;font-size:18px;margin:0}.promoted-plugin .content{padding:10px 0;display:block}.promoted-plugin .content .pp-content{font-size:12px;margin-bottom:0;line-height:1.5;padding:0 5px}.promoted-plugin .content .pp-image{padding:0 5px 0 10px}.promoted-plugin .content .pp-title{display:block;clear:both}.promoted-plugin .content .pp-text{font-weight:normal}.promoted-plugin .download{background-color:#333;text-align:center;color:#fff;display:block;font-weight:100}.promoted-plugin .download .download-icon{padding-left:0}.promoted-plugin .download .download-text{padding-left:0;padding-top:8px}.promoted-plugin .download .fa{font-size:18px;padding:10px;background-color:#282828}.promoted-plugin .download a{color:#fff;font-weight:normal}.promoted-plugin .download a:hover{color:#fff}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,0.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,0.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;vertical-align:middle}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0 300px;-moz-transform:scale(.9999);border-color:#f5f5f5 transparent transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent transparent}.triangle.triangle-white{border-color:#fff rgba(255,255,255,0) rgba(255,255,255,0) transparent}.step-by-step .intro{font-weight:300}.step-by-step .intro h2{margin-top:1.5em}.step-by-step .step-by-step-timeline{text-align:center;margin-top:1.5em}.step-by-step .step-by-step-timeline img{margin-bottom:1.35em;margin-top:1.4em}.step-by-step .step-by-step-timeline .btn{font-size:.85em}@media (max-width:1199px){.step-by-step .step-by-step-timeline .btn{font-size:.8em}}.tabs-sidebar .nav{margin-top:15px}.tabs-sidebar .nav img{padding-top:13px}.tabs-sidebar .nav .active img.desaturate{-webkit-filter:grayscale(0);filter:grayscale(0)}.tabs-sidebar .nav li.active a{background:none;border:1px solid #cbd3e8}.tabs-sidebar .nav li.active a:after{content:'';position:absolute;left:100%;top:50%;margin-top:-13px;display:block;width:8px;height:21px;background:url('../../../../public/images/components/tabs-sidebar/tabs-sidebar-active.png') no-repeat}.tabs-sidebar .nav li a{border:1px solid #fff}.tabs-sidebar .nav li a:hover,.tabs-sidebar .nav li a:focus{outline:none;border:1px solid #cbd3e8}.tabs-sidebar .tab-content .row{padding:1em;border-bottom:1px solid #eee}.tabs-sidebar .tab-content p{font-size:13.5px}.timeline{margin:35px auto}.timeline .gs-item{padding-bottom:4em}.timeline .circle{background:#c3efff;color:#fff;border:2px solid #fff;height:47px;width:47px;font-size:20px;float:left;padding-top:6px;padding-left:1px;font-weight:700}.timeline .two .circle{background:#cbdeff}.timeline .three .circle{background:#d2d7ec}.timeline .four .circle{background:#a6930b}.timeline h1{color:#a6930b;font-size:2em;text-align:left;padding:9px 0 0 62px;margin-bottom:24px}.timeline ul{padding-left:1px}.timeline li{margin-bottom:1em;padding-left:14px;list-style:none}.timeline li:before{content:"\00BB";color:#f7941e;margin-left:-16px;margin-right:10px;display:block;float:left}@media (min-width:992px){.timeline{border-top:1px dotted #c2cbe4;position:relative}.timeline .circle{margin:-25px auto 0 auto;float:none}.timeline h1{padding-top:15px;float:none;padding-left:0}}.toolbar-menu{background-image:-webkit-linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-image:-o-linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-image:linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-repeat:no-repeat;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffdbdbdb', GradientType=0);margin-bottom:25px}.toolbar-menu .breadcrumb{margin-bottom:0;padding-left:0;background:none}.toolbar-menu .breadcrumb li{padding-bottom:0}.toolbar-menu .breadcrumb>li+li:before{content:" | "}.toolbar-menu .breadcrumb a:link,.toolbar-menu .breadcrumb a:visited{color:#2f2f2f;font-weight:600}.toolbar-menu .breadcrumb a:hover{color:#f7941e}.toolbar-menu .breadcrumb a.active{color:#371e1d;font-weight:bold}.btn{text-transform:uppercase;font-weight:700}.btn-white{background:#fff;border:1px solid #0b0a0f;color:#0b0a0f}.btn-white:hover{background:transparent}.btn-huge{font-size:1.1em;padding:10px 35px}.btn-huge i{margin-right:2px}.btn-transparent:visited,.btn-transparent:link{background:transparent;border-color:#fff;color:#fff;font-size:11px;padding:7px 15px}.btn-transparent:hover,.btn-transparent:active{color:#18203a;border-color:#18203a;background:#ccc}.btn-transparent .caret{margin-left:6px}.media{padding-bottom:2em}.media .pull-left{margin-right:30px}.media h4.media-heading{font-size:27px}.media p{font-size:14px;padding-bottom:0}.media .emphasis{margin-bottom:2px;padding-bottom:0}.solstice-modal .modal-content{padding:10px}.solstice-modal .modal-title{font-weight:600;font-size:22px}.solstice-modal .modal-content-container{border:1px solid #eee;padding:0 20px}.nav-tabs>li{padding-bottom:0}.nav-tabs>li a:hover{background:#f7941e;color:#fff}.tab-content{padding:10px;border:1px solid #ddd;border-top:none;background:#fff}.tab-pane{padding:.5em 1em}.tab-pane .page-header{margin-top:10px}/*!
+ */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#18203a;text-decoration:none}a:hover,a:focus{color:#a6930b;text-decoration:none}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:300;line-height:1.1;color:#18203a}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#18203a}a.text-primary:hover,a.text-primary:focus{color:#090c16}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#18203a}a.bg-primary:hover,a.bg-primary:focus{background-color:#090c16}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#2f2f2f}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#2f2f2f;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:700;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#18203a;border-color:#111628}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#090c16;border-color:#000}.btn-primary:hover{color:#fff;background-color:#090c16;border-color:#000}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#090c16;border-color:#000}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#000;border-color:#000}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#18203a;border-color:#111628}.btn-primary .badge{color:#18203a;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#a6930b;border-color:#8e7e09}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#766908;border-color:#171401}.btn-info:hover{color:#fff;background-color:#766908;border-color:#554b06}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#766908;border-color:#554b06}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#554b06;border-color:#171401}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#a6930b;border-color:#8e7e09}.btn-info .badge{color:#a6930b;background-color:#fff}.btn-warning{color:#fff;background-color:#f7941e;border-color:#f38809}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#da7a08;border-color:#784304}.btn-warning:hover{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#b86707;border-color:#784304}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f7941e;border-color:#f38809}.btn-warning .badge{color:#f7941e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#18203a;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#a6930b;text-decoration:none;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#18203a}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#2f2f2f;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#18203a}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#18203a}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left;float:left !important}.navbar-right{float:right;float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:20px 30px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#18203a}.breadcrumb>.active{color:#18203a}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#18203a;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#a6930b;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#18203a;border-color:#18203a;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#18203a}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#090c16}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#a6930b}.label-info[href]:hover,.label-info[href]:focus{background-color:#766908}.label-warning{background-color:#f7941e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#da7a08}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#18203a;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:#2c2255;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#18203a}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#18203a;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#a6930b}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f7941e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#18203a;border-color:#18203a}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#6176bd}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#f5f5f5;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:-1px;border-top-right-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1px;border-bottom-right-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#fff;background-color:#353535;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#353535;background-color:#fff}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#18203a}.panel-primary>.panel-heading{color:#fff;background-color:#18203a;border-color:#18203a}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#18203a}.panel-primary>.panel-heading .badge{color:#18203a;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#18203a}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#ccc;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#ccc;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #ccc;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#18203a}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}/*!
  * Yamm!3
  * Yet another megamenu for Bootstrap 3
  * 
  * http://geedmo.github.com/yamm3
- */.yamm .nav,.yamm .collapse,.yamm .dropup,.yamm .dropdown{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .nav.navbar-right .dropdown-menu{left:auto;right:0}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}html{position:relative;min-height:100%}.toolbar-container-wrapper{background:#fff}.toolbar-row{padding:8px 0;font-size:12px;color:#666;font-weight:300}.toolbar-row a{font-weight:300;padding-left:4px;color:#666}.toolbar-row a:hover{color:#f7941e}.toolbar-row ul{margin-bottom:0}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#a6930b}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #ccc}@media (min-width:768px){.page-header-logo-bordered{border-bottom:1px solid #ccc}}#header-right{text-align:right}.thin-header .visible-thin{display:block !important}.logo-eclipse-default-mobile{max-height:50px}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#efeef2;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#ccc;height:3px}#main-menu .nav{margin:0;background:#18203a}#main-menu .nav>li{border:1px solid #fafafb}#main-menu .nav>li.open .dropdown-toggle{color:#fff;background:#342343}#main-menu .nav>li>a{color:#fff;text-transform:uppercase}#main-menu .nav>li .dropdown-menu{background:#efeef2;padding:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#bfe7ff;color:#000}#main-menu .nav>li .dropdown-menu>li.active a:hover,#main-menu .nav>li .dropdown-menu>li.active a:focus{color:#000;background:#bfe7ff}#main-menu .nav>li .dropdown-menu>li>a{padding:5px 20px 5px 30px;color:#18203a}#main-menu .nav>li .dropdown-menu>li>a:hover,#main-menu .nav>li .dropdown-menu>li>a:focus{color:#a6930b;background:#f5f5f5}}@media (min-width:768px){#main-menu{font-size:.9em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#787878}#main-menu li a:hover,#main-menu li a:active{background:none;color:#f7941e}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:initial;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:initial;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:hover{color:#f7941e}#main-menu .dropdown-menu a:active{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active{color:#f7941e;background:none}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.separator,.ul-left-nav>li.about{padding-left:0;font-weight:bold}.ul-left-nav>li.separator img,.ul-left-nav>li.about img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#f7941e}main{position:relative;padding-bottom:20px;background:#f6f6f7}main.no-promo{padding-top:20px}main.no-promo .breadcrumbs-offset{margin-top:-20px}footer#solstice-footer{background:#fff;font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding-top:3.5em;color:#000;padding-bottom:26px;font-size:14px;border-top:1px solid #ccc}footer#solstice-footer h2{color:#18203a;padding:0;margin-top:0;font-weight:600;font-size:17px;border-bottom:none;max-width:80%}footer#solstice-footer a:link,footer#solstice-footer a:active,footer#solstice-footer a:visited{color:#18203a;font-weight:400}footer#solstice-footer a:hover{color:#a6930b}footer#solstice-footer .social-media a:link,footer#solstice-footer .social-media a:active,footer#solstice-footer .social-media a:visited{color:#383838}footer#solstice-footer .social-media a:hover{color:#a6930b}footer#solstice-footer .logo-eclipse-white{margin-bottom:15px;max-width:161px}footer#solstice-footer .nav{margin-left:-15px;margin-bottom:25px}footer#solstice-footer .nav a{padding:4px 15px 4px 20px}footer#solstice-footer .nav a:hover{background:none;color:#a6930b}footer#solstice-footer li{padding-bottom:0}@media (max-width:991px){footer#solstice-footer #copyright-text,footer#solstice-footer #footer-other{text-align:left;clear:both}}@media (max-width:450px){footer#solstice-footer section.col-xs-11,footer#solstice-footer section.col-xs-14{position:relative;float:left;width:95.83333333%;min-height:1px;padding-left:15px;padding-right:15px}}@media (min-width:451px) and (max-width:767px){footer#solstice-footer #footer-useful-links{clear:left}footer#solstice-footer #copyright{clear:both}}#copyright{padding-top:15px}#copyright img{float:left;margin-top:10px;margin-right:15px;clear:both}#copyright-text{padding-top:21px;text-align:right}.social-media{margin-top:57px;font-size:2.3em}.social-media a:hover{color:#a6930b}#footer-eclipse-foundation,#footer-legal,#footer-useful-links,#footer-other{z-index:99}.footer-other-working-groups{font-weight:300;font-size:11px}.footer-other-working-groups .social-media{margin-top:20px}.footer-other-working-groups .img-responsive{padding-right:20px;max-width:235px}.footer-other-working-groups .footer-working-group-col{padding:55px 0 0 0}@media (min-width:992px){.footer-other-working-groups{background:url('../../../../public/images/template/footer-working-group-separator.png') center repeat-y}.footer-other-working-groups .img-responsive{max-width:100%;padding-right:30px}.footer-other-working-groups .footer-working-group-col{padding:0}}.footer-min{background:#f5f5f5;border-top:1px solid #b5b5b5;position:absolute;width:100%;bottom:0;padding:10px 0}.footer-min a{font-weight:normal;font-size:.8em}.footer-min p,.footer-min ul{margin-bottom:0;font-size:.8em}.footer-min ul{text-align:right}.footer-min ul li{padding-bottom:0}@media screen and (max-width:767px){.footer-min p,.footer-min ul{text-align:center}}body.solstice-footer-min{margin-bottom:36px;position:static}@media screen and (max-width:767px){body.solstice-footer-min{margin-bottom:51px}}main #bigbuttons{padding-top:1.65em;padding-bottom:2.2em;min-height:1px;padding-left:15px;padding-right:15px;text-align:center;position:relative;top:auto;left:auto}@media (min-width:768px){main #bigbuttons{float:left;width:41.66666667%}}@media (min-width:768px){main #bigbuttons{margin-left:58.33333333%}}@media (min-width:992px){main #bigbuttons{float:left;width:62.5%}}@media (min-width:992px){main #bigbuttons{margin-left:37.5%}}@media (min-width:1200px){main #bigbuttons{float:left;width:66.66666667%}}@media (min-width:1200px){main #bigbuttons{margin-left:25%}}main #bigbuttons h3{display:none}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons ul{padding-left:0;list-style:none;margin-left:-5px}main #bigbuttons ul>li{display:inline-block;padding-left:5px;padding-right:5px}main #bigbuttons ul li{background:none}@media (min-width:768px){main #bigbuttons ul li{float:right}}main #bigbuttons a{position:relative;margin:0;top:auto;left:auto}main #bigbuttons a:hover{text-decoration:none}div#novaContent{background-position:left top;padding-top:0}@media (max-width:767px){div#novaContent{background-image:none}}@media (min-width:1200px){div#novaContent{background-position:center top}}.deprecated #novaContent{background:url("../../../../public/images/template/bg-deprecated.gif") center 75px no-repeat ! important}#midcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px;padding-right:30px}@media (min-width:992px){#midcolumn{float:left;width:58.33333333%}}#midcolumn #midcolumn{width:100%;padding:0}#midcolumn.no-right-sidebar{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){#midcolumn.no-right-sidebar{float:left;width:83.33333333%}}#midcolumn.no-left-nav{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){#midcolumn.no-left-nav{float:left;width:75%}}main #rightcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){main #rightcolumn{float:left;width:25%}}@media print{.sideitem,#copyright{padding-left:0;padding-right:0}main{padding-bottom:0;padding-top:0}#solstice-footer,#copyright,#header-row{padding-top:0}}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.float-right{float:right}.float-left{float:left}.padding-0{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.reset{padding:0;margin:0}.visible-thin{display:none !important}.brand-primary{color:#18203a}.brand-secondary{color:#afbbdc}.brand-success{color:#5cb85c}.brand-info{color:#a6930b}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}tr.background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.background-blue{background:#a6930b;color:#fff}.blue{color:#00f}.darkblue{color:#009}.yellow{color:yellow}.red{color:#f00}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-grey{background:#f5f5f5}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-white{background:#fff}#novaContent.background-image-none{background-image:none}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;-moz-transition:opacity .15s ease-in-out;-ms-transition:opacity .15s ease-in-out;-o-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{padding-bottom:0;margin-bottom:-28px}.table-layout-fixed{table-layout:fixed}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.col-xs-5-eclipse,.col-sm-5-eclipse,.col-md-5-eclipse,.col-lg-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.donation-button{padding-top:.75em;padding-bottom:.75em;padding-left:3.5em;padding-right:3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:hover,.btn-simple:active{border:1px solid #777;background:#eee}.btn-smaller,.btn-group-smaller>.btn{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:normal}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing *:before,.reset-box-sizing *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px 5px}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.no-border{border:none ! important}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table.table-solstice th{background:#a6930b;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(even){background:#40bbdc}.vertical-align{display:flex;align-items:center}@media (min-width:992px){.vertical-align-md{display:flex;align-items:center}}.box-gray-border{border:1px solid #d6d6d6}#header-row{background:url("../../../../public/images/polarsys/header-bg-icons.png") right 20px top 20px no-repeat}#header-left{padding-top:15px}#header-right{padding-top:50px}.thin-header #main-menu-wrapper{padding-top:15px}.thin-header #header-left{padding-bottom:15px}.thin-header #main-menu{padding-top:15px}#header-wrapper{padding:0;border-bottom:1px solid #ccc}#header-row{background:url("../../../../public/images/polarsys/header-bg-icons.png") right 20px top 20px no-repeat}#header-left{padding-top:15px}#header-right{padding-top:50px}.thin-header #main-menu-wrapper{padding-top:15px}.thin-header #header-left{padding-bottom:15px}.thin-header #main-menu{padding-top:15px}
\ No newline at end of file
+ */.yamm .nav,.yamm .collapse,.yamm .dropup,.yamm .dropdown{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .nav.navbar-right .dropdown-menu{left:auto;right:0}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}.btn{text-transform:uppercase}.btn:visited{color:#fff}.btn-default:visited{color:#333}.btn-white{background:#fff;border:1px solid #0b0a0f;color:#0b0a0f}.btn-white:hover{background:transparent}.btn-white:visited{color:#333}.btn-huge{font-size:1.1em;padding:10px 35px}.btn-huge i{margin-right:2px}.btn-transparent:visited,.btn-transparent:link{background:transparent;border-color:#fff;color:#fff;font-size:11px;padding:7px 15px}.btn-transparent:hover,.btn-transparent:active{color:#18203a;border-color:#18203a;background:#ccc}.btn-transparent .caret{margin-left:6px}.donation-button{padding-top:.75em;padding-bottom:.75em;padding-left:3.5em;padding-right:3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:visited{color:inherit}.btn-simple:hover,.btn-simple:active{border:1px solid #777;background:#eee}.btn-simple-white{text-transform:none;font-weight:normal;font-size:13px;border:0;border-radius:0}.btn-smaller,.btn-group-smaller>.btn{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:normal}.btn-white-purple-border:visited{color:#2d2252}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.btn-secondary{color:#fff;background-color:#868685;border-color:#868685}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#6c6c6c;border-color:#464645}.btn-secondary:hover{color:#fff;background-color:#6c6c6c;border-color:#676766}.btn-secondary:active,.btn-secondary.active,.open>.dropdown-toggle.btn-secondary{color:#fff;background-color:#6c6c6c;border-color:#676766}.btn-secondary:active:hover,.btn-secondary.active:hover,.open>.dropdown-toggle.btn-secondary:hover,.btn-secondary:active:focus,.btn-secondary.active:focus,.open>.dropdown-toggle.btn-secondary:focus,.btn-secondary:active.focus,.btn-secondary.active.focus,.open>.dropdown-toggle.btn-secondary.focus{color:#fff;background-color:#5b5b5a;border-color:#464645}.btn-secondary:active,.btn-secondary.active,.open>.dropdown-toggle.btn-secondary{background-image:none}.btn-secondary.disabled:hover,.btn-secondary[disabled]:hover,fieldset[disabled] .btn-secondary:hover,.btn-secondary.disabled:focus,.btn-secondary[disabled]:focus,fieldset[disabled] .btn-secondary:focus,.btn-secondary.disabled.focus,.btn-secondary[disabled].focus,fieldset[disabled] .btn-secondary.focus{background-color:#868685;border-color:#868685}.btn-secondary .badge{color:#868685;background-color:#fff}.media{padding-bottom:2em}.media .pull-left{margin-right:30px}.media .media-heading{font-size:27px}.media p{font-size:14px;padding-bottom:0}.media .emphasis{margin-bottom:2px;padding-bottom:0}.modal{text-align:center}@media screen and (min-width:768px){.modal:before{display:inline-block;vertical-align:middle;content:" ";height:100%}}.modal-title{font-weight:600;font-size:22px}.modal-content{border-radius:0}.modal-content-container{border:1px solid #eee;padding:0 20px}.modal-dialog{display:inline-block;text-align:left;vertical-align:middle}.nav>li>a{color:#18203a}.nav-tabs>li{padding-bottom:0}.nav-tabs>li a:hover{background:#f7941e;color:#fff}.tab-content{padding:10px;border:1px solid #ddd;border-top:none;background:#fff}.tab-pane{padding:.5em 1em}.tab-pane .page-header{margin-top:10px}.ad-eclipsecon-schedule a{font-weight:300}.ad-eclipsecon-schedule>thead>tr>th{border-color:#cecece}.ad-eclipsecon-schedule>tbody>tr>th,.ad-eclipsecon-schedule>tbody>tr>td{border:none}.ad-eclipsecon-schedule>tbody>tr:nth-of-type(odd){background-color:#e8e8e8}.ad-eclipsecon-schedule-title{position:relative;padding-left:30px;display:block;font-size:16px;font-weight:600}.ad-eclipsecon-schedule-title:before{font-family:FontAwesome;content:"\f041";position:absolute;font-size:35px;color:#a59bd0;left:0;top:-2px}.donate-ad{background-color:#f6f6f6;position:relative;overflow:hidden;border-bottom:4px solid #bf4b97}.donate-ad h2{margin-top:0}.donate-ad .btn-square{background-color:#2e2458;color:#fff;margin-bottom:10px;width:57px}.donate-ad .btn-square.active{background-color:#f7941d}.donate-ad .underlined-link{font-weight:normal;text-decoration:underline}.donate-ad .underlined-link:hover{text-decoration:none}.donate-ad .btn-donate-close{position:absolute;top:20px;right:20px;z-index:999;font-size:1.2em;cursor:pointer}.donate-ad .list-amount{margin-bottom:0}.donate-ad .donate-submit{margin-top:20px}.donate-ad .donate-submit .input-group-addon{font-size:.8em}.donate-ad .form-inline .input-group>.form-control{padding-right:6px;text-align:right}@media (min-width:768px){.donate-ad .form-inline .input-group>.form-control{width:60px}}.donate-text,.donate-form{padding-top:20px}@media (min-width:992px){.donate-text:after{content:"";position:absolute;top:0;right:-34px;width:0;height:0;border-top:126px solid transparent;border-left:34px solid #f6f6f6;border-bottom:126px solid transparent;z-index:99}}.donate-form form{position:relative;z-index:9}.donate-form:after{content:"";position:absolute;width:1000px;height:300px;z-index:1;left:0;top:0;background-color:#fff}.recognition-fields{display:none}.anchor{display:block;position:relative;top:-14px;visibility:hidden;z-index:9999}.scrollup{width:40px;height:40px;opacity:.3;position:fixed;bottom:50px;right:15px;display:none;text-indent:-9999px;background:url('../images/components/back-to-top/back-to-top.png') no-repeat}.scrollup:focus{outline:none}#back-to-top{margin:0;padding:0}#back-to-top a{border-top:1px solid #808080;background-color:#666;color:#fff;display:block;padding:4px 0 3px;text-align:center;width:100%;margin:0}#back-to-top a:hover,#back-to-top a:focus{text-decoration:none;background:#dfdfe4;color:#4a4a4a}.share-button{padding:5px;display:block;color:#fff;width:24px;height:24px}.share-button:hover,.share-button:visited,.share-button:active,.share-button:focus{color:#fff}.share-button .fa{font-size:13px}.share-button-twitter{background-color:#1da1f2}.share-button-facebook{background-color:#3b5998}.share-button-mail{background-color:#949494}.default-breadcrumbs{background:#f2f2f3;background-size:100%;color:#18203a;border-bottom:1px solid #fff;border-top:1px solid #fff;font-size:inherit}.breadcrumb{background:none;margin-bottom:0;text-transform:uppercase}.breadcrumb a{font-weight:600}.breadcrumb a:link,.breadcrumb a:visited{color:#18203a}.breadcrumb a:hover{color:#a6930b}body #st-el-4 .st-btns{overflow:auto}.discover-search{background:#efefef}.discover-search h2{color:#545454;margin-top:1.3em;padding-bottom:0;margin-bottom:.1em}.discover-search .form-search-projects{margin-bottom:1.4em}.discover-search>.container{min-height:267px}@media (min-width:992px){.discover-search>.container{background:url("../images/components/discover-search/discover-search-bg.jpg") right no-repeat}}.drag_installbutton{position:relative;clear:both;display:inline}.drag_installbutton .tooltip{opacity:1;display:none;background:url("../images/components/drag-drop/mpcdrag.png") no-repeat scroll 110% 60% #a285c5;position:absolute;top:0;left:64px;text-align:left;width:325px;color:#000;border:1px solid #ae00ce;z-index:99;padding:5px 50px 5px 5px}.drag_installbutton .tooltip h3{margin-top:0;color:#000}.drag_installbutton .tooltip.show-right{left:-335px}.drag_installbutton a.drag:hover .tooltip{display:block}.drag_installbutton.drag_installbutton_v2 .btn:hover{cursor:move}.drag_installbutton.drag_installbutton_v2 .tooltip{left:100px;margin-top:-6px;border:1px solid #777;background-color:#eee}.drag_installbutton.drag_installbutton_v2 .tooltip.tooltip-below-right{right:0;left:auto;top:40px}.drag_installbutton.drag_installbutton_v2 .tooltip h3{font-size:18px}footer#solstice-footer{background:#fff;font-family:"Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;padding-top:3.5em;color:#000;padding-bottom:26px;font-size:14px;border-top:1px solid #ccc}footer#solstice-footer h2{color:#18203a;margin-top:0;font-weight:600;font-size:17px;max-width:80%}footer#solstice-footer a:link,footer#solstice-footer a:active,footer#solstice-footer a:visited,footer#solstice-footer a:focus{color:#18203a;font-weight:400}footer#solstice-footer a:hover{color:#a6930b}footer#solstice-footer .logo-eclipse-white{margin-bottom:15px;max-width:161px}footer#solstice-footer .nav{margin-left:-15px;margin-bottom:25px}footer#solstice-footer .nav a{padding:4px 15px 4px 20px}footer#solstice-footer .nav a:hover{background:none;color:#a6930b}footer#solstice-footer li{padding-bottom:0}@media (max-width:450px){footer#solstice-footer section.col-xs-11,footer#solstice-footer section.col-xs-14{position:relative;float:left;width:95.83333333%;min-height:1px;padding-left:15px;padding-right:15px}}@media (min-width:451px) and (max-width:767px){footer#solstice-footer #footer-useful-links{clear:left}footer#solstice-footer #copyright{clear:both}}#copyright{padding-top:15px}#copyright img{float:left;margin-top:10px;margin-right:15px;clear:both}@media (max-width:991px){#copyright-text{margin-bottom:20px}}@media (min-width:992px){.social-media{text-align:right}}#footer-eclipse-foundation,#footer-legal,#footer-useful-links,#footer-other{z-index:99}.footer-other-working-groups{font-weight:300;font-size:11px}.footer-other-working-groups .logo-eclipse-default,.footer-other-working-groups .social-media{margin-bottom:20px;margin-top:0}.footer-other-working-groups .img-responsive{max-width:175px}.footer-other-working-groups .footer-working-group-col{padding:0}@media (min-width:1200px){.footer-other-working-groups{background:url('../images/template/footer-working-group-separator.png') center repeat-y}.footer-other-working-groups .img-responsive{max-width:200px}}.footer-min{background:#f5f5f5;border-top:1px solid #b5b5b5;position:absolute;width:100%;bottom:0;padding:10px 0}.footer-min a{font-weight:normal;font-size:.8em}.footer-min p,.footer-min ul{margin-bottom:0;font-size:.8em}.footer-min ul{text-align:right}.footer-min ul li{padding-bottom:0}@media screen and (max-width:767px){.footer-min p,.footer-min ul{text-align:center}}body.solstice-footer-min{margin-bottom:36px;position:static}@media screen and (max-width:767px){body.solstice-footer-min{margin-bottom:51px}}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#efeef2;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu #navbar-main-menu{float:none}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#ccc;height:3px}#main-menu .nav{margin:0;padding:0;background:#18203a}#main-menu .nav>li.open .dropdown-toggle{color:#fff;background:#342343}#main-menu .nav>li>a{color:#fff;text-transform:uppercase;padding:10px 15px;border-bottom:none}#main-menu .nav>li .dropdown-menu{background:#efeef2;padding:0;border-radius:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#bfe7ff;color:#000}#main-menu .nav>li .dropdown-menu>li.active a:hover,#main-menu .nav>li .dropdown-menu>li.active a:focus{color:#000;background:#bfe7ff}#main-menu .nav>li .dropdown-menu>li>a{padding:10px 15px;color:#18203a}#main-menu .nav>li .dropdown-menu>li>a:hover,#main-menu .nav>li .dropdown-menu>li>a:focus{color:#a6930b;background:#f5f5f5}#main-menu .nav>li.main-menu-search .dropdown-toggle{display:none}#main-menu .nav>li.main-menu-search .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none;display:block}#main-menu .nav>li.main-menu-search .dropdown-menu p{color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .yamm-content{padding:15px}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input{background-color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input-box{border:none}}@media (max-width:1199px){#header-wrapper .container,.toolbar-container-wrapper .container,main .container,#breadcrumb .container{width:auto}}@media (min-width:768px){#main-menu{font-size:1em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#787878}#main-menu li a:hover,#main-menu li a:active{color:#f7941e}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:initial;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:initial;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:hover{color:#f7941e}#main-menu .dropdown-menu a:active{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active,#main-menu a:focus{color:#f7941e}#main-menu .nav>li>a:hover,#main-menu .nav>li>a:focus{background-color:transparent}#main-menu .nav .open a{background-color:transparent}#main-menu .nav .open a:hover,#main-menu .nav .open a:focus{background-color:transparent}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.separator,.ul-left-nav>li.about{padding-left:0;font-weight:bold}.ul-left-nav>li.separator img,.ul-left-nav>li.about img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#f7941e}.logo-eclipse-default-mobile{max-height:50px}@media (min-width:768px){.alternate-layout #main-menu{font-size:1em}.alternate-layout #main-menu ul li{text-transform:uppercase}.alternate-layout #main-menu li a{color:#787878}.alternate-layout #main-menu li a:hover,.alternate-layout #main-menu li a:active{color:#f7941e}}@media (min-width:992px){.alternate-layout #main-menu{font-size:1em}}@media (max-width:767px){.alternate-layout #main-menu{background:#fff}}main #bigbuttons{padding-top:1.65em;padding-bottom:2.2em;min-height:1px;padding-left:15px;padding-right:15px;text-align:center;position:relative;top:auto;left:auto}@media (min-width:768px){main #bigbuttons{float:left;width:41.66666667%}}@media (min-width:768px){main #bigbuttons{margin-left:58.33333333%}}@media (min-width:992px){main #bigbuttons{float:left;width:62.5%}}@media (min-width:992px){main #bigbuttons{margin-left:37.5%}}@media (min-width:1200px){main #bigbuttons{float:left;width:66.66666667%}}@media (min-width:1200px){main #bigbuttons{margin-left:25%}}main #bigbuttons h3{display:none}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons ul{padding-left:0;list-style:none;margin-left:-5px}main #bigbuttons ul>li{display:inline-block;padding-left:5px;padding-right:5px}main #bigbuttons ul li{background:none}@media (min-width:768px){main #bigbuttons ul li{float:right}}main #bigbuttons a{position:relative;margin:0;top:auto;left:auto}main #bigbuttons a:hover{text-decoration:none}div#novaContent{background-position:left top;padding-top:0}@media (max-width:767px){div#novaContent{background-image:none}}@media (min-width:1200px){div#novaContent{background-position:center top}}.legacy-page #midcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #midcolumn{float:left;width:70.83333333%}}.legacy-page #midcolumn #maincontent,.legacy-page #midcolumn #midcolumn{width:100%}.legacy-page #midcolumn.no-right-sidebar{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #midcolumn.no-right-sidebar{float:left;width:100%}}.legacy-page #rightcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #rightcolumn{float:left;width:29.16666667%}}.logo-eclipse-default{margin:0}.header_nav{padding-bottom:35px}.header_nav img{margin:20px auto}.header_nav ul{background:#f4f4f4;padding:0;text-transform:uppercase;color:#7b778e;margin:0;font-size:16px}.header_nav ul li{list-style:none;clear:right;padding-bottom:0}.header_nav ul li:nth-child(odd){clear:left}.header_nav ul a{padding:20px;display:block;font-weight:600}.header_nav ul a:active,.header_nav ul a:visited,.header_nav ul a:link{color:#7b778e}.header_nav ul a:hover{color:#f7941e}.header_nav ul a i{font-size:30px;padding:4px 0 0 0;text-align:center;font-weight:700}.header_nav ul span{padding:0 0 0 5px}.header_nav ul span p{font-size:11px;text-transform:none;font-weight:400;margin:0}.icon-sidebar-menu h3{margin-top:0;font-size:16px;margin-bottom:5px}.icon-sidebar-menu p{font-size:13px}.icon-sidebar-menu .circle-icon{width:80px;height:80px;display:block}.icon-sidebar-menu .circle-icon i{font-size:37px;margin-top:20px}.step-by-step .intro{text-align:center}.step-by-step .intro h2{margin-top:1.5em}.step-by-step .step-by-step-timeline{text-align:center;margin-top:1.5em}.step-by-step .step-by-step-timeline .step-icon{color:#333}.step-by-step .step-by-step-timeline .step-icon:hover,.step-by-step .step-by-step-timeline .step-icon:visited{color:#333}.step-by-step .step-by-step-timeline .feather{width:50px;height:50px;margin-bottom:15px}.tabs-sidebar .nav{margin-top:15px}.tabs-sidebar .nav img{padding-top:13px}.tabs-sidebar .nav .active img.desaturate{-webkit-filter:grayscale(0);filter:grayscale(0)}.tabs-sidebar .nav li.active a{background:none;border:1px solid #cbd3e8}.tabs-sidebar .nav li.active a:after{content:'';position:absolute;left:100%;top:50%;margin-top:-13px;display:block;width:8px;height:21px;background:url('../images/components/tabs-sidebar/tabs-sidebar-active.png') no-repeat}.tabs-sidebar .nav li a{border:1px solid #fff}.tabs-sidebar .nav li a:hover,.tabs-sidebar .nav li a:focus{outline:none;border:1px solid #cbd3e8}.tabs-sidebar .tab-content .row{padding:1em;border-bottom:1px solid #eee}.tabs-sidebar .tab-content p{font-size:13.5px}.timeline{margin:35px auto 0 auto}.timeline a{font-weight:bold}.timeline .gs-item{padding-bottom:20px}.timeline .circle{background:#fff;color:#fff;border:2px solid #fff;height:47px;width:47px;font-size:20px;float:left;padding-top:6px;padding-left:1px;font-weight:700}.timeline .two .circle{background:#f6f7fb}.timeline .three .circle{background:#d2d9ec}.timeline .four .circle{background:#afbbdc}.timeline h1{font-size:2em;text-align:left;padding:9px 0 0 62px;margin-bottom:24px}.timeline ul{padding-left:1px}.timeline li{margin-bottom:1em;padding-left:14px;list-style:none}.timeline li:before{content:"\00BB";color:#f7941e;margin-left:-16px;margin-right:10px;display:block;float:left}@media (min-width:992px){.timeline{border-top:1px dotted #c2cbe4;position:relative}.timeline .circle{margin:-25px auto 0 auto;float:none}.timeline h1{padding-top:15px;float:none;padding-left:0}}.toolbar-menu{background-color:#fff;border-bottom:1px solid #ccc;border-top:1px solid #ccc;margin-bottom:25px}.toolbar-menu .breadcrumb{margin-bottom:0;padding-left:0;background:none}.toolbar-menu .breadcrumb li{padding-bottom:0;font-size:1.1em}.toolbar-menu .breadcrumb>li+li:before{content:" | "}.toolbar-menu .breadcrumb a:link,.toolbar-menu .breadcrumb a:visited{color:#2f2f2f}.toolbar-menu .breadcrumb a:hover{color:#f7941e}.toolbar-menu .breadcrumb a.active{color:#371e1d;font-weight:600}.toolbar-container-wrapper{background:#fff}.toolbar-row{padding:8px 0;font-size:12px;color:#666;font-weight:300}.toolbar-row a{font-weight:300;color:#666;text-decoration:none}.toolbar-row a:hover{color:#f7941e}.toolbar-row a:visited{color:#666}.toolbar-row ul{margin-bottom:0}.toolbar-row ul li:last-child{padding-right:0}.toolbar-row .toolbar-left-content span{font-size:18px}@media (max-width:767px){.toolbar-row .toolbar-left-content span{padding-top:10px;text-align:center;display:block}}@media (min-width:768px){.toolbar-row .toolbar-left-content span{border-left:5px solid #f7941e;padding-left:10px}}.toolbar-row .toolbar-left-content a{font-weight:bold;color:#f7941e}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#a6930b}.alternate-layout .toolbar-container-wrapper{background:#fff}.alternate-layout .toolbar-row{color:#666}.alternate-layout .toolbar-row a{color:#666}.alternate-layout .toolbar-row a:hover{color:#f7941e}.alternate-layout .toolbar-row a:visited{color:#666}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none solid;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.block-box,.sideitem{background:#f6f6f6;color:#202020;margin:0 0 2em 0;padding:0 0 5px 0;border:none}.block-box h2,.sideitem h2,.block-box h3,.sideitem h3,.block-box h6,.sideitem h6{background:#a6930b;color:#fff;margin:0 0 15px 0;padding:15px 20px;text-transform:uppercase;font-weight:700;font-size:15px}.block-box h2 a:hover,.sideitem h2 a:hover,.block-box h3 a:hover,.sideitem h3 a:hover,.block-box h6 a:hover,.sideitem h6 a:hover{color:#fff}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0 15px 15px}.block-box .list-heading,.sideitem .list-heading{font-weight:700;margin-bottom:4px;font-size:15px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.block-heading{background:none repeat scroll 0 0 #afbbdc;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.brand-primary{color:#18203a}.brand-secondary{color:#868685}.brand-tertiary{color:#afbbdc}.brand-quaternary{color:#342343}.brand-quinary{color:#bed247}.brand-success{color:#5cb85c}.brand-info{color:#a6930b}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.blue{color:#00f}.darkblue{color:#009}.yellow{color:yellow}.red{color:#f00}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-primary{background:#18203a;color:#fff}.background-primary h2,.background-primary h3,.background-primary h4,.background-primary p,.background-primary li{color:inherit}.background-secondary{background:#868685;color:#fff}.background-secondary h2,.background-secondary h3,.background-secondary h4,.background-secondary p,.background-secondary li{color:inherit}.background-tertiary{background:#afbbdc;color:#fff}.background-tertiary h2,.background-tertiary h3,.background-tertiary h4,.background-tertiary p,.background-tertiary li{color:inherit}.background-quaternary{background:#342343;color:#fff}.background-quaternary h2,.background-quaternary h3,.background-quaternary h4,.background-quaternary p,.background-quaternary li{color:inherit}.background-quinary{background:#bed247;color:#fff}.background-quinary h2,.background-quinary h3,.background-quinary h4,.background-quinary p,.background-quinary li{color:inherit}.background-bg-body{background:#fff}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-mid-grey{background:#e6e7e8}.background-grey{background:#f5f5f5}.background-light-grey{background:#f1f1f1}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-blue{background:#a6930b;color:#fff}.background-white{background:#fff}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}.label-purple{background-color:#18203a}#novaContent.background-image-none{background-image:none}tr.background-orange{background:#fbc380}.table-striped>tbody>tr:nth-of-type(odd).background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.box-gray-border{border:1px solid #d6d6d6}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.border-grey-right{border-right:1px solid #ccc}.no-border{border:none ! important}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing *:before,.reset-box-sizing *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.vertical-align{display:flex;align-items:center;justify-content:center}@media (min-width:992px){.vertical-align-md{display:flex;align-items:center;justify-content:center}}.float-right{float:right}.float-left{float:left}.visible-thin{display:none !important}.col-xs-5-eclipse,.col-sm-5-eclipse,.col-md-5-eclipse,.col-lg-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:bold;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:""}.container-list{counter-reset:list;padding-left:55px}.container-list>.list-row{margin-top:12px;position:relative;min-height:3em}.container-list>.list-row:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:bold;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(list);counter-increment:list;display:block}.container-list>.list-row>div:first-child{padding-left:.5em}.container-list>.list-row .no-wrap{white-space:nowrap}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:bold;color:#969696}.list-checkmark a:hover{color:#f7941e}.list-padding li{padding-bottom:25px}.list-border-right li{border-right:1px solid}.list-border-right li:last-child{border:none}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.fa-li{top:.23em}.reset{padding:0;margin:0}.padding-0{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-35{padding:35px}.padding-40{padding:40px}.padding-45{padding:45px}.padding-50{padding:50px}.padding-55{padding:55px}.padding-60{padding:60px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-bottom-35{padding-bottom:35px}.padding-bottom-40{padding-bottom:40px}.padding-bottom-45{padding-bottom:45px}.padding-bottom-50{padding-bottom:50px}.padding-bottom-55{padding-bottom:55px}.padding-bottom-60{padding-bottom:60px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-top-35{padding-top:35px}.padding-top-40{padding-top:40px}.padding-top-45{padding-top:45px}.padding-top-50{padding-top:50px}.padding-top-55{padding-top:55px}.padding-top-60{padding-top:60px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-left-35{padding-left:35px}.padding-left-40{padding-left:40px}.padding-left-45{padding-left:45px}.padding-left-50{padding-left:50px}.padding-left-55{padding-left:55px}.padding-left-60{padding-left:60px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.padding-right-35{padding-right:35px}.padding-right-40{padding-right:40px}.padding-right-45{padding-right:45px}.padding-right-50{padding-right:50px}.padding-right-55{padding-right:55px}.padding-right-60{padding-right:60px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-35{margin:35px}.margin-40{margin:40px}.margin-45{margin:45px}.margin-50{margin:50px}.margin-55{margin:55px}.margin-60{margin:60px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-bottom-35{margin-bottom:35px}.margin-bottom-40{margin-bottom:40px}.margin-bottom-45{margin-bottom:45px}.margin-bottom-50{margin-bottom:50px}.margin-bottom-55{margin-bottom:55px}.margin-bottom-60{margin-bottom:60px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-top-35{margin-top:35px}.margin-top-40{margin-top:40px}.margin-top-45{margin-top:45px}.margin-top-50{margin-top:50px}.margin-top-55{margin-top:55px}.margin-top-60{margin-top:60px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-7{margin-right:7px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-right-35{margin-right:35px}.margin-right-40{margin-right:40px}.margin-right-45{margin-right:45px}.margin-right-50{margin-right:50px}.margin-right-55{margin-right:55px}.margin-right-60{margin-right:60px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.margin-left-35{margin-left:35px}.margin-left-40{margin-left:40px}.margin-left-45{margin-left:45px}.margin-left-50{margin-left:50px}.margin-left-55{margin-left:55px}.margin-left-60{margin-left:60px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.margin-auto{margin:0 auto}.breadcrumbs-default-margin{margin-bottom:20px}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,0.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,0.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;vertical-align:middle}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0 300px;-moz-transform:scale(.9999);border-color:#f5f5f5 transparent transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent transparent}.triangle.triangle-white{border-color:#f9f9f9 rgba(249,249,249,0) rgba(249,249,249,0) transparent}.box{padding:15px 10px;margin-bottom:10px;margin-top:1.5em}.blue_box{background-color:#114e68}.blue_box h3,.blue_box p{color:#fff}.uppercase{text-transform:uppercase}.fw-200{font-weight:200}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.fw-700{font-weight:700}.emphasis{color:#f7941e;font-weight:700}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.underlined{text-decoration:underline}.small{font-size:10px}.big{font-size:20px}.font-size-large{font-size:58px}.text-highlight{background:#eee;padding:12px 24px}.white-space-normal{white-space:normal}.header-short-underline{font-size:18px;font-weight:bold}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}a:visited{color:#9e55d2}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}.a-underline{text-decoration:underline}.a-underline:hover{text-decoration:none}blockquote{font-size:14px}.top-level-heading{background:#868685;position:relative;padding:20px;margin-bottom:30px;color:#fff}.top-level-heading:after{width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #868685;position:absolute;content:"";bottom:-20px;left:50%;margin-left:-20px}.heading-underline{position:relative;font-size:2em;text-transform:uppercase;font-weight:200;margin:50px 0 20px}.heading-underline:after{border-bottom:4px solid #f7941d;content:"";display:block;width:100px;margin:10px auto 0}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;-moz-transition:opacity .15s ease-in-out;-ms-transition:opacity .15s ease-in-out;-o-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{margin-bottom:-28px}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px 5px}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table-layout-fixed{table-layout:fixed}.table.table-solstice th{background:#a6930b;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(even){background:#40bbdc}.deprecated #novaContent{background:url("../images/template/bg-deprecated.gif") center 75px no-repeat ! important}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.textfield-underline{border-top:none;border-left:none;border-right:none;border-bottom:1px solid inherit;background-color:transparent;border-radius:0;box-shadow:none;margin:10px auto;color:inherit}.textfield-underline:-moz-placeholder{color:inherit}.textfield-underline::-moz-placeholder{color:inherit}.textfield-underline:-ms-input-placeholder{color:inherit}.textfield-underline::-webkit-input-placeholder{color:inherit}.hidden-label label.control-label{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.border-reset{border:0 !important}- html{position:relative;min-height:100%}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #ccc}@media (min-width:768px){.page-header-logo-bordered{border-bottom:1px solid #ccc}}#header-right{text-align:right}.thin-header .visible-thin{display:block !important}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}main{position:relative;padding-bottom:20px;background:#f6f6f7}main.no-promo{padding-top:20px}main.no-promo .breadcrumbs-offset{margin-top:-20px}@media print{.sideitem,#copyright{padding-left:0;padding-right:0}main{padding-bottom:0;padding-top:0}#solstice-footer,#copyright,#header-row{padding-top:0}}h1{margin-bottom:25px}ul ul{margin-top:5px}#header-left img{max-height:100px}main.no-promo.papyrus-ic-front{background-color:#fff;padding:0}.view-iwg-papyrus-ic-slideshow{padding-top:60px}#header-row{background:url("../images/polarsys/header-bg-icons.png") right 20px top 20px no-repeat}#header-left{padding-top:15px}#header-right{padding-top:50px}.thin-header #main-menu-wrapper{padding-top:15px}.thin-header #header-left{padding-bottom:15px}.thin-header #main-menu{padding-top:15px}#header-wrapper{padding:0;border-bottom:1px solid #ccc}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/stylesheets/quicksilver.min.css b/eclipse.org-common/themes/solstice/public/stylesheets/quicksilver.min.css
new file mode 100644
index 0000000..f00ec4d
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/stylesheets/quicksilver.min.css
@@ -0,0 +1,24 @@
+.cc-window{opacity:1;-webkit-transition:opacity 1s ease;transition:opacity 1s ease}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{-webkit-transition:-webkit-transform 1s ease;transition:-webkit-transform 1s ease;transition:transform 1s ease;transition:transform 1s ease,-webkit-transform 1s ease}.cc-animate.cc-revoke.cc-top{-webkit-transform:translateY(-2em);transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{-webkit-transform:translateY(2em);transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-bottom,.cc-animate.cc-revoke.cc-active.cc-top,.cc-revoke:hover{-webkit-transform:translateY(0);transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;-webkit-transition:max-height 1s;transition:max-height 1s}.cc-link,.cc-revoke:hover{text-decoration:underline}.cc-revoke,.cc-window{position:fixed;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica,Calibri,Arial,sans-serif;font-size:16px;line-height:1.5em;display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;max-width:24em;-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.cc-window.cc-banner{padding:1em 1.8em;width:100%;-ms-flex-direction:row;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.cc-revoke{padding:.5em}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;padding:.2em}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-banner .cc-btn:last-child{min-width:140px}.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:focus,.cc-close:hover{opacity:1}.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{display:block;margin-bottom:1em}.cc-window.cc-floating .cc-compliance{-ms-flex:1 0 auto;-webkit-box-flex:1;flex:1 0 auto}.cc-window.cc-banner{-ms-flex-align:center;-webkit-box-align:center;align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{-ms-flex:1;-webkit-box-flex:1;flex:1}.cc-compliance{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;-ms-flex-line-pack:justify;align-content:space-between}.cc-compliance>.cc-btn{-ms-flex:1;-webkit-box-flex:1;flex:1}.cc-btn+.cc-btn{margin-left:.5em}@media print{.cc-revoke,.cc-window{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}.cc-window.cc-banner{-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.cc-window.cc-banner .cc-compliance{-ms-flex:1;-webkit-box-flex:1;flex:1}.cc-window.cc-floating{max-width:none}.cc-window .cc-message{margin-bottom:1em}.cc-window.cc-banner{-ms-flex-align:unset;-webkit-box-align:unset;align-items:unset}}.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;-ms-flex:none;-webkit-box-flex:0;flex:none}.cc-theme-classic .cc-btn{border-radius:5px}.cc-theme-classic .cc-btn:last-child{min-width:140px}.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}.cc-theme-edgeless.cc-window{padding:0}.cc-floating.cc-theme-edgeless .cc-message{margin:2em 2em 1.5em}.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}/*!
+ * Copyright (c) 2018 Eclipse Foundation, Inc.
+ * 
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v. 2.0 which is available at
+ * http://www.eclipse.org/legal/epl-2.0.
+ * 
+ * Contributors:
+ *   Christopher Guindon <chris.guindon@eclipse-foundation.org>
+ * 
+ * SPDX-License-Identifier: EPL-2.0
+*//*!
+ *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */@font-face{font-family:FontAwesome;src:url(../fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);src:url(../fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix&v=4.7.0) format("embedded-opentype"),url(../fonts/vendor/font-awesome/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(../fonts/vendor/font-awesome/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(../fonts/vendor/font-awesome/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(../fonts/vendor/font-awesome/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\F000"}.fa-music:before{content:"\F001"}.fa-search:before{content:"\F002"}.fa-envelope-o:before{content:"\F003"}.fa-heart:before{content:"\F004"}.fa-star:before{content:"\F005"}.fa-star-o:before{content:"\F006"}.fa-user:before{content:"\F007"}.fa-film:before{content:"\F008"}.fa-th-large:before{content:"\F009"}.fa-th:before{content:"\F00A"}.fa-th-list:before{content:"\F00B"}.fa-check:before{content:"\F00C"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\F00D"}.fa-search-plus:before{content:"\F00E"}.fa-search-minus:before{content:"\F010"}.fa-power-off:before{content:"\F011"}.fa-signal:before{content:"\F012"}.fa-cog:before,.fa-gear:before{content:"\F013"}.fa-trash-o:before{content:"\F014"}.fa-home:before{content:"\F015"}.fa-file-o:before{content:"\F016"}.fa-clock-o:before{content:"\F017"}.fa-road:before{content:"\F018"}.fa-download:before{content:"\F019"}.fa-arrow-circle-o-down:before{content:"\F01A"}.fa-arrow-circle-o-up:before{content:"\F01B"}.fa-inbox:before{content:"\F01C"}.fa-play-circle-o:before{content:"\F01D"}.fa-repeat:before,.fa-rotate-right:before{content:"\F01E"}.fa-refresh:before{content:"\F021"}.fa-list-alt:before{content:"\F022"}.fa-lock:before{content:"\F023"}.fa-flag:before{content:"\F024"}.fa-headphones:before{content:"\F025"}.fa-volume-off:before{content:"\F026"}.fa-volume-down:before{content:"\F027"}.fa-volume-up:before{content:"\F028"}.fa-qrcode:before{content:"\F029"}.fa-barcode:before{content:"\F02A"}.fa-tag:before{content:"\F02B"}.fa-tags:before{content:"\F02C"}.fa-book:before{content:"\F02D"}.fa-bookmark:before{content:"\F02E"}.fa-print:before{content:"\F02F"}.fa-camera:before{content:"\F030"}.fa-font:before{content:"\F031"}.fa-bold:before{content:"\F032"}.fa-italic:before{content:"\F033"}.fa-text-height:before{content:"\F034"}.fa-text-width:before{content:"\F035"}.fa-align-left:before{content:"\F036"}.fa-align-center:before{content:"\F037"}.fa-align-right:before{content:"\F038"}.fa-align-justify:before{content:"\F039"}.fa-list:before{content:"\F03A"}.fa-dedent:before,.fa-outdent:before{content:"\F03B"}.fa-indent:before{content:"\F03C"}.fa-video-camera:before{content:"\F03D"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\F03E"}.fa-pencil:before{content:"\F040"}.fa-map-marker:before{content:"\F041"}.fa-adjust:before{content:"\F042"}.fa-tint:before{content:"\F043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\F044"}.fa-share-square-o:before{content:"\F045"}.fa-check-square-o:before{content:"\F046"}.fa-arrows:before{content:"\F047"}.fa-step-backward:before{content:"\F048"}.fa-fast-backward:before{content:"\F049"}.fa-backward:before{content:"\F04A"}.fa-play:before{content:"\F04B"}.fa-pause:before{content:"\F04C"}.fa-stop:before{content:"\F04D"}.fa-forward:before{content:"\F04E"}.fa-fast-forward:before{content:"\F050"}.fa-step-forward:before{content:"\F051"}.fa-eject:before{content:"\F052"}.fa-chevron-left:before{content:"\F053"}.fa-chevron-right:before{content:"\F054"}.fa-plus-circle:before{content:"\F055"}.fa-minus-circle:before{content:"\F056"}.fa-times-circle:before{content:"\F057"}.fa-check-circle:before{content:"\F058"}.fa-question-circle:before{content:"\F059"}.fa-info-circle:before{content:"\F05A"}.fa-crosshairs:before{content:"\F05B"}.fa-times-circle-o:before{content:"\F05C"}.fa-check-circle-o:before{content:"\F05D"}.fa-ban:before{content:"\F05E"}.fa-arrow-left:before{content:"\F060"}.fa-arrow-right:before{content:"\F061"}.fa-arrow-up:before{content:"\F062"}.fa-arrow-down:before{content:"\F063"}.fa-mail-forward:before,.fa-share:before{content:"\F064"}.fa-expand:before{content:"\F065"}.fa-compress:before{content:"\F066"}.fa-plus:before{content:"\F067"}.fa-minus:before{content:"\F068"}.fa-asterisk:before{content:"\F069"}.fa-exclamation-circle:before{content:"\F06A"}.fa-gift:before{content:"\F06B"}.fa-leaf:before{content:"\F06C"}.fa-fire:before{content:"\F06D"}.fa-eye:before{content:"\F06E"}.fa-eye-slash:before{content:"\F070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\F071"}.fa-plane:before{content:"\F072"}.fa-calendar:before{content:"\F073"}.fa-random:before{content:"\F074"}.fa-comment:before{content:"\F075"}.fa-magnet:before{content:"\F076"}.fa-chevron-up:before{content:"\F077"}.fa-chevron-down:before{content:"\F078"}.fa-retweet:before{content:"\F079"}.fa-shopping-cart:before{content:"\F07A"}.fa-folder:before{content:"\F07B"}.fa-folder-open:before{content:"\F07C"}.fa-arrows-v:before{content:"\F07D"}.fa-arrows-h:before{content:"\F07E"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\F080"}.fa-twitter-square:before{content:"\F081"}.fa-facebook-square:before{content:"\F082"}.fa-camera-retro:before{content:"\F083"}.fa-key:before{content:"\F084"}.fa-cogs:before,.fa-gears:before{content:"\F085"}.fa-comments:before{content:"\F086"}.fa-thumbs-o-up:before{content:"\F087"}.fa-thumbs-o-down:before{content:"\F088"}.fa-star-half:before{content:"\F089"}.fa-heart-o:before{content:"\F08A"}.fa-sign-out:before{content:"\F08B"}.fa-linkedin-square:before{content:"\F08C"}.fa-thumb-tack:before{content:"\F08D"}.fa-external-link:before{content:"\F08E"}.fa-sign-in:before{content:"\F090"}.fa-trophy:before{content:"\F091"}.fa-github-square:before{content:"\F092"}.fa-upload:before{content:"\F093"}.fa-lemon-o:before{content:"\F094"}.fa-phone:before{content:"\F095"}.fa-square-o:before{content:"\F096"}.fa-bookmark-o:before{content:"\F097"}.fa-phone-square:before{content:"\F098"}.fa-twitter:before{content:"\F099"}.fa-facebook-f:before,.fa-facebook:before{content:"\F09A"}.fa-github:before{content:"\F09B"}.fa-unlock:before{content:"\F09C"}.fa-credit-card:before{content:"\F09D"}.fa-feed:before,.fa-rss:before{content:"\F09E"}.fa-hdd-o:before{content:"\F0A0"}.fa-bullhorn:before{content:"\F0A1"}.fa-bell:before{content:"\F0F3"}.fa-certificate:before{content:"\F0A3"}.fa-hand-o-right:before{content:"\F0A4"}.fa-hand-o-left:before{content:"\F0A5"}.fa-hand-o-up:before{content:"\F0A6"}.fa-hand-o-down:before{content:"\F0A7"}.fa-arrow-circle-left:before{content:"\F0A8"}.fa-arrow-circle-right:before{content:"\F0A9"}.fa-arrow-circle-up:before{content:"\F0AA"}.fa-arrow-circle-down:before{content:"\F0AB"}.fa-globe:before{content:"\F0AC"}.fa-wrench:before{content:"\F0AD"}.fa-tasks:before{content:"\F0AE"}.fa-filter:before{content:"\F0B0"}.fa-briefcase:before{content:"\F0B1"}.fa-arrows-alt:before{content:"\F0B2"}.fa-group:before,.fa-users:before{content:"\F0C0"}.fa-chain:before,.fa-link:before{content:"\F0C1"}.fa-cloud:before{content:"\F0C2"}.fa-flask:before{content:"\F0C3"}.fa-cut:before,.fa-scissors:before{content:"\F0C4"}.fa-copy:before,.fa-files-o:before{content:"\F0C5"}.fa-paperclip:before{content:"\F0C6"}.fa-floppy-o:before,.fa-save:before{content:"\F0C7"}.fa-square:before{content:"\F0C8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\F0C9"}.fa-list-ul:before{content:"\F0CA"}.fa-list-ol:before{content:"\F0CB"}.fa-strikethrough:before{content:"\F0CC"}.fa-underline:before{content:"\F0CD"}.fa-table:before{content:"\F0CE"}.fa-magic:before{content:"\F0D0"}.fa-truck:before{content:"\F0D1"}.fa-pinterest:before{content:"\F0D2"}.fa-pinterest-square:before{content:"\F0D3"}.fa-google-plus-square:before{content:"\F0D4"}.fa-google-plus:before{content:"\F0D5"}.fa-money:before{content:"\F0D6"}.fa-caret-down:before{content:"\F0D7"}.fa-caret-up:before{content:"\F0D8"}.fa-caret-left:before{content:"\F0D9"}.fa-caret-right:before{content:"\F0DA"}.fa-columns:before{content:"\F0DB"}.fa-sort:before,.fa-unsorted:before{content:"\F0DC"}.fa-sort-desc:before,.fa-sort-down:before{content:"\F0DD"}.fa-sort-asc:before,.fa-sort-up:before{content:"\F0DE"}.fa-envelope:before{content:"\F0E0"}.fa-linkedin:before{content:"\F0E1"}.fa-rotate-left:before,.fa-undo:before{content:"\F0E2"}.fa-gavel:before,.fa-legal:before{content:"\F0E3"}.fa-dashboard:before,.fa-tachometer:before{content:"\F0E4"}.fa-comment-o:before{content:"\F0E5"}.fa-comments-o:before{content:"\F0E6"}.fa-bolt:before,.fa-flash:before{content:"\F0E7"}.fa-sitemap:before{content:"\F0E8"}.fa-umbrella:before{content:"\F0E9"}.fa-clipboard:before,.fa-paste:before{content:"\F0EA"}.fa-lightbulb-o:before{content:"\F0EB"}.fa-exchange:before{content:"\F0EC"}.fa-cloud-download:before{content:"\F0ED"}.fa-cloud-upload:before{content:"\F0EE"}.fa-user-md:before{content:"\F0F0"}.fa-stethoscope:before{content:"\F0F1"}.fa-suitcase:before{content:"\F0F2"}.fa-bell-o:before{content:"\F0A2"}.fa-coffee:before{content:"\F0F4"}.fa-cutlery:before{content:"\F0F5"}.fa-file-text-o:before{content:"\F0F6"}.fa-building-o:before{content:"\F0F7"}.fa-hospital-o:before{content:"\F0F8"}.fa-ambulance:before{content:"\F0F9"}.fa-medkit:before{content:"\F0FA"}.fa-fighter-jet:before{content:"\F0FB"}.fa-beer:before{content:"\F0FC"}.fa-h-square:before{content:"\F0FD"}.fa-plus-square:before{content:"\F0FE"}.fa-angle-double-left:before{content:"\F100"}.fa-angle-double-right:before{content:"\F101"}.fa-angle-double-up:before{content:"\F102"}.fa-angle-double-down:before{content:"\F103"}.fa-angle-left:before{content:"\F104"}.fa-angle-right:before{content:"\F105"}.fa-angle-up:before{content:"\F106"}.fa-angle-down:before{content:"\F107"}.fa-desktop:before{content:"\F108"}.fa-laptop:before{content:"\F109"}.fa-tablet:before{content:"\F10A"}.fa-mobile-phone:before,.fa-mobile:before{content:"\F10B"}.fa-circle-o:before{content:"\F10C"}.fa-quote-left:before{content:"\F10D"}.fa-quote-right:before{content:"\F10E"}.fa-spinner:before{content:"\F110"}.fa-circle:before{content:"\F111"}.fa-mail-reply:before,.fa-reply:before{content:"\F112"}.fa-github-alt:before{content:"\F113"}.fa-folder-o:before{content:"\F114"}.fa-folder-open-o:before{content:"\F115"}.fa-smile-o:before{content:"\F118"}.fa-frown-o:before{content:"\F119"}.fa-meh-o:before{content:"\F11A"}.fa-gamepad:before{content:"\F11B"}.fa-keyboard-o:before{content:"\F11C"}.fa-flag-o:before{content:"\F11D"}.fa-flag-checkered:before{content:"\F11E"}.fa-terminal:before{content:"\F120"}.fa-code:before{content:"\F121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\F122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\F123"}.fa-location-arrow:before{content:"\F124"}.fa-crop:before{content:"\F125"}.fa-code-fork:before{content:"\F126"}.fa-chain-broken:before,.fa-unlink:before{content:"\F127"}.fa-question:before{content:"\F128"}.fa-info:before{content:"\F129"}.fa-exclamation:before{content:"\F12A"}.fa-superscript:before{content:"\F12B"}.fa-subscript:before{content:"\F12C"}.fa-eraser:before{content:"\F12D"}.fa-puzzle-piece:before{content:"\F12E"}.fa-microphone:before{content:"\F130"}.fa-microphone-slash:before{content:"\F131"}.fa-shield:before{content:"\F132"}.fa-calendar-o:before{content:"\F133"}.fa-fire-extinguisher:before{content:"\F134"}.fa-rocket:before{content:"\F135"}.fa-maxcdn:before{content:"\F136"}.fa-chevron-circle-left:before{content:"\F137"}.fa-chevron-circle-right:before{content:"\F138"}.fa-chevron-circle-up:before{content:"\F139"}.fa-chevron-circle-down:before{content:"\F13A"}.fa-html5:before{content:"\F13B"}.fa-css3:before{content:"\F13C"}.fa-anchor:before{content:"\F13D"}.fa-unlock-alt:before{content:"\F13E"}.fa-bullseye:before{content:"\F140"}.fa-ellipsis-h:before{content:"\F141"}.fa-ellipsis-v:before{content:"\F142"}.fa-rss-square:before{content:"\F143"}.fa-play-circle:before{content:"\F144"}.fa-ticket:before{content:"\F145"}.fa-minus-square:before{content:"\F146"}.fa-minus-square-o:before{content:"\F147"}.fa-level-up:before{content:"\F148"}.fa-level-down:before{content:"\F149"}.fa-check-square:before{content:"\F14A"}.fa-pencil-square:before{content:"\F14B"}.fa-external-link-square:before{content:"\F14C"}.fa-share-square:before{content:"\F14D"}.fa-compass:before{content:"\F14E"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\F150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\F151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\F152"}.fa-eur:before,.fa-euro:before{content:"\F153"}.fa-gbp:before{content:"\F154"}.fa-dollar:before,.fa-usd:before{content:"\F155"}.fa-inr:before,.fa-rupee:before{content:"\F156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\F157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\F158"}.fa-krw:before,.fa-won:before{content:"\F159"}.fa-bitcoin:before,.fa-btc:before{content:"\F15A"}.fa-file:before{content:"\F15B"}.fa-file-text:before{content:"\F15C"}.fa-sort-alpha-asc:before{content:"\F15D"}.fa-sort-alpha-desc:before{content:"\F15E"}.fa-sort-amount-asc:before{content:"\F160"}.fa-sort-amount-desc:before{content:"\F161"}.fa-sort-numeric-asc:before{content:"\F162"}.fa-sort-numeric-desc:before{content:"\F163"}.fa-thumbs-up:before{content:"\F164"}.fa-thumbs-down:before{content:"\F165"}.fa-youtube-square:before{content:"\F166"}.fa-youtube:before{content:"\F167"}.fa-xing:before{content:"\F168"}.fa-xing-square:before{content:"\F169"}.fa-youtube-play:before{content:"\F16A"}.fa-dropbox:before{content:"\F16B"}.fa-stack-overflow:before{content:"\F16C"}.fa-instagram:before{content:"\F16D"}.fa-flickr:before{content:"\F16E"}.fa-adn:before{content:"\F170"}.fa-bitbucket:before{content:"\F171"}.fa-bitbucket-square:before{content:"\F172"}.fa-tumblr:before{content:"\F173"}.fa-tumblr-square:before{content:"\F174"}.fa-long-arrow-down:before{content:"\F175"}.fa-long-arrow-up:before{content:"\F176"}.fa-long-arrow-left:before{content:"\F177"}.fa-long-arrow-right:before{content:"\F178"}.fa-apple:before{content:"\F179"}.fa-windows:before{content:"\F17A"}.fa-android:before{content:"\F17B"}.fa-linux:before{content:"\F17C"}.fa-dribbble:before{content:"\F17D"}.fa-skype:before{content:"\F17E"}.fa-foursquare:before{content:"\F180"}.fa-trello:before{content:"\F181"}.fa-female:before{content:"\F182"}.fa-male:before{content:"\F183"}.fa-gittip:before,.fa-gratipay:before{content:"\F184"}.fa-sun-o:before{content:"\F185"}.fa-moon-o:before{content:"\F186"}.fa-archive:before{content:"\F187"}.fa-bug:before{content:"\F188"}.fa-vk:before{content:"\F189"}.fa-weibo:before{content:"\F18A"}.fa-renren:before{content:"\F18B"}.fa-pagelines:before{content:"\F18C"}.fa-stack-exchange:before{content:"\F18D"}.fa-arrow-circle-o-right:before{content:"\F18E"}.fa-arrow-circle-o-left:before{content:"\F190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\F191"}.fa-dot-circle-o:before{content:"\F192"}.fa-wheelchair:before{content:"\F193"}.fa-vimeo-square:before{content:"\F194"}.fa-try:before,.fa-turkish-lira:before{content:"\F195"}.fa-plus-square-o:before{content:"\F196"}.fa-space-shuttle:before{content:"\F197"}.fa-slack:before{content:"\F198"}.fa-envelope-square:before{content:"\F199"}.fa-wordpress:before{content:"\F19A"}.fa-openid:before{content:"\F19B"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\F19C"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\F19D"}.fa-yahoo:before{content:"\F19E"}.fa-google:before{content:"\F1A0"}.fa-reddit:before{content:"\F1A1"}.fa-reddit-square:before{content:"\F1A2"}.fa-stumbleupon-circle:before{content:"\F1A3"}.fa-stumbleupon:before{content:"\F1A4"}.fa-delicious:before{content:"\F1A5"}.fa-digg:before{content:"\F1A6"}.fa-pied-piper-pp:before{content:"\F1A7"}.fa-pied-piper-alt:before{content:"\F1A8"}.fa-drupal:before{content:"\F1A9"}.fa-joomla:before{content:"\F1AA"}.fa-language:before{content:"\F1AB"}.fa-fax:before{content:"\F1AC"}.fa-building:before{content:"\F1AD"}.fa-child:before{content:"\F1AE"}.fa-paw:before{content:"\F1B0"}.fa-spoon:before{content:"\F1B1"}.fa-cube:before{content:"\F1B2"}.fa-cubes:before{content:"\F1B3"}.fa-behance:before{content:"\F1B4"}.fa-behance-square:before{content:"\F1B5"}.fa-steam:before{content:"\F1B6"}.fa-steam-square:before{content:"\F1B7"}.fa-recycle:before{content:"\F1B8"}.fa-automobile:before,.fa-car:before{content:"\F1B9"}.fa-cab:before,.fa-taxi:before{content:"\F1BA"}.fa-tree:before{content:"\F1BB"}.fa-spotify:before{content:"\F1BC"}.fa-deviantart:before{content:"\F1BD"}.fa-soundcloud:before{content:"\F1BE"}.fa-database:before{content:"\F1C0"}.fa-file-pdf-o:before{content:"\F1C1"}.fa-file-word-o:before{content:"\F1C2"}.fa-file-excel-o:before{content:"\F1C3"}.fa-file-powerpoint-o:before{content:"\F1C4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\F1C5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\F1C6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\F1C7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\F1C8"}.fa-file-code-o:before{content:"\F1C9"}.fa-vine:before{content:"\F1CA"}.fa-codepen:before{content:"\F1CB"}.fa-jsfiddle:before{content:"\F1CC"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\F1CD"}.fa-circle-o-notch:before{content:"\F1CE"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\F1D0"}.fa-empire:before,.fa-ge:before{content:"\F1D1"}.fa-git-square:before{content:"\F1D2"}.fa-git:before{content:"\F1D3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\F1D4"}.fa-tencent-weibo:before{content:"\F1D5"}.fa-qq:before{content:"\F1D6"}.fa-wechat:before,.fa-weixin:before{content:"\F1D7"}.fa-paper-plane:before,.fa-send:before{content:"\F1D8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\F1D9"}.fa-history:before{content:"\F1DA"}.fa-circle-thin:before{content:"\F1DB"}.fa-header:before{content:"\F1DC"}.fa-paragraph:before{content:"\F1DD"}.fa-sliders:before{content:"\F1DE"}.fa-share-alt:before{content:"\F1E0"}.fa-share-alt-square:before{content:"\F1E1"}.fa-bomb:before{content:"\F1E2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\F1E3"}.fa-tty:before{content:"\F1E4"}.fa-binoculars:before{content:"\F1E5"}.fa-plug:before{content:"\F1E6"}.fa-slideshare:before{content:"\F1E7"}.fa-twitch:before{content:"\F1E8"}.fa-yelp:before{content:"\F1E9"}.fa-newspaper-o:before{content:"\F1EA"}.fa-wifi:before{content:"\F1EB"}.fa-calculator:before{content:"\F1EC"}.fa-paypal:before{content:"\F1ED"}.fa-google-wallet:before{content:"\F1EE"}.fa-cc-visa:before{content:"\F1F0"}.fa-cc-mastercard:before{content:"\F1F1"}.fa-cc-discover:before{content:"\F1F2"}.fa-cc-amex:before{content:"\F1F3"}.fa-cc-paypal:before{content:"\F1F4"}.fa-cc-stripe:before{content:"\F1F5"}.fa-bell-slash:before{content:"\F1F6"}.fa-bell-slash-o:before{content:"\F1F7"}.fa-trash:before{content:"\F1F8"}.fa-copyright:before{content:"\F1F9"}.fa-at:before{content:"\F1FA"}.fa-eyedropper:before{content:"\F1FB"}.fa-paint-brush:before{content:"\F1FC"}.fa-birthday-cake:before{content:"\F1FD"}.fa-area-chart:before{content:"\F1FE"}.fa-pie-chart:before{content:"\F200"}.fa-line-chart:before{content:"\F201"}.fa-lastfm:before{content:"\F202"}.fa-lastfm-square:before{content:"\F203"}.fa-toggle-off:before{content:"\F204"}.fa-toggle-on:before{content:"\F205"}.fa-bicycle:before{content:"\F206"}.fa-bus:before{content:"\F207"}.fa-ioxhost:before{content:"\F208"}.fa-angellist:before{content:"\F209"}.fa-cc:before{content:"\F20A"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\F20B"}.fa-meanpath:before{content:"\F20C"}.fa-buysellads:before{content:"\F20D"}.fa-connectdevelop:before{content:"\F20E"}.fa-dashcube:before{content:"\F210"}.fa-forumbee:before{content:"\F211"}.fa-leanpub:before{content:"\F212"}.fa-sellsy:before{content:"\F213"}.fa-shirtsinbulk:before{content:"\F214"}.fa-simplybuilt:before{content:"\F215"}.fa-skyatlas:before{content:"\F216"}.fa-cart-plus:before{content:"\F217"}.fa-cart-arrow-down:before{content:"\F218"}.fa-diamond:before{content:"\F219"}.fa-ship:before{content:"\F21A"}.fa-user-secret:before{content:"\F21B"}.fa-motorcycle:before{content:"\F21C"}.fa-street-view:before{content:"\F21D"}.fa-heartbeat:before{content:"\F21E"}.fa-venus:before{content:"\F221"}.fa-mars:before{content:"\F222"}.fa-mercury:before{content:"\F223"}.fa-intersex:before,.fa-transgender:before{content:"\F224"}.fa-transgender-alt:before{content:"\F225"}.fa-venus-double:before{content:"\F226"}.fa-mars-double:before{content:"\F227"}.fa-venus-mars:before{content:"\F228"}.fa-mars-stroke:before{content:"\F229"}.fa-mars-stroke-v:before{content:"\F22A"}.fa-mars-stroke-h:before{content:"\F22B"}.fa-neuter:before{content:"\F22C"}.fa-genderless:before{content:"\F22D"}.fa-facebook-official:before{content:"\F230"}.fa-pinterest-p:before{content:"\F231"}.fa-whatsapp:before{content:"\F232"}.fa-server:before{content:"\F233"}.fa-user-plus:before{content:"\F234"}.fa-user-times:before{content:"\F235"}.fa-bed:before,.fa-hotel:before{content:"\F236"}.fa-viacoin:before{content:"\F237"}.fa-train:before{content:"\F238"}.fa-subway:before{content:"\F239"}.fa-medium:before{content:"\F23A"}.fa-y-combinator:before,.fa-yc:before{content:"\F23B"}.fa-optin-monster:before{content:"\F23C"}.fa-opencart:before{content:"\F23D"}.fa-expeditedssl:before{content:"\F23E"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\F240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\F241"}.fa-battery-2:before,.fa-battery-half:before{content:"\F242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\F243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\F244"}.fa-mouse-pointer:before{content:"\F245"}.fa-i-cursor:before{content:"\F246"}.fa-object-group:before{content:"\F247"}.fa-object-ungroup:before{content:"\F248"}.fa-sticky-note:before{content:"\F249"}.fa-sticky-note-o:before{content:"\F24A"}.fa-cc-jcb:before{content:"\F24B"}.fa-cc-diners-club:before{content:"\F24C"}.fa-clone:before{content:"\F24D"}.fa-balance-scale:before{content:"\F24E"}.fa-hourglass-o:before{content:"\F250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\F251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\F252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\F253"}.fa-hourglass:before{content:"\F254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\F255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\F256"}.fa-hand-scissors-o:before{content:"\F257"}.fa-hand-lizard-o:before{content:"\F258"}.fa-hand-spock-o:before{content:"\F259"}.fa-hand-pointer-o:before{content:"\F25A"}.fa-hand-peace-o:before{content:"\F25B"}.fa-trademark:before{content:"\F25C"}.fa-registered:before{content:"\F25D"}.fa-creative-commons:before{content:"\F25E"}.fa-gg:before{content:"\F260"}.fa-gg-circle:before{content:"\F261"}.fa-tripadvisor:before{content:"\F262"}.fa-odnoklassniki:before{content:"\F263"}.fa-odnoklassniki-square:before{content:"\F264"}.fa-get-pocket:before{content:"\F265"}.fa-wikipedia-w:before{content:"\F266"}.fa-safari:before{content:"\F267"}.fa-chrome:before{content:"\F268"}.fa-firefox:before{content:"\F269"}.fa-opera:before{content:"\F26A"}.fa-internet-explorer:before{content:"\F26B"}.fa-television:before,.fa-tv:before{content:"\F26C"}.fa-contao:before{content:"\F26D"}.fa-500px:before{content:"\F26E"}.fa-amazon:before{content:"\F270"}.fa-calendar-plus-o:before{content:"\F271"}.fa-calendar-minus-o:before{content:"\F272"}.fa-calendar-times-o:before{content:"\F273"}.fa-calendar-check-o:before{content:"\F274"}.fa-industry:before{content:"\F275"}.fa-map-pin:before{content:"\F276"}.fa-map-signs:before{content:"\F277"}.fa-map-o:before{content:"\F278"}.fa-map:before{content:"\F279"}.fa-commenting:before{content:"\F27A"}.fa-commenting-o:before{content:"\F27B"}.fa-houzz:before{content:"\F27C"}.fa-vimeo:before{content:"\F27D"}.fa-black-tie:before{content:"\F27E"}.fa-fonticons:before{content:"\F280"}.fa-reddit-alien:before{content:"\F281"}.fa-edge:before{content:"\F282"}.fa-credit-card-alt:before{content:"\F283"}.fa-codiepie:before{content:"\F284"}.fa-modx:before{content:"\F285"}.fa-fort-awesome:before{content:"\F286"}.fa-usb:before{content:"\F287"}.fa-product-hunt:before{content:"\F288"}.fa-mixcloud:before{content:"\F289"}.fa-scribd:before{content:"\F28A"}.fa-pause-circle:before{content:"\F28B"}.fa-pause-circle-o:before{content:"\F28C"}.fa-stop-circle:before{content:"\F28D"}.fa-stop-circle-o:before{content:"\F28E"}.fa-shopping-bag:before{content:"\F290"}.fa-shopping-basket:before{content:"\F291"}.fa-hashtag:before{content:"\F292"}.fa-bluetooth:before{content:"\F293"}.fa-bluetooth-b:before{content:"\F294"}.fa-percent:before{content:"\F295"}.fa-gitlab:before{content:"\F296"}.fa-wpbeginner:before{content:"\F297"}.fa-wpforms:before{content:"\F298"}.fa-envira:before{content:"\F299"}.fa-universal-access:before{content:"\F29A"}.fa-wheelchair-alt:before{content:"\F29B"}.fa-question-circle-o:before{content:"\F29C"}.fa-blind:before{content:"\F29D"}.fa-audio-description:before{content:"\F29E"}.fa-volume-control-phone:before{content:"\F2A0"}.fa-braille:before{content:"\F2A1"}.fa-assistive-listening-systems:before{content:"\F2A2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\F2A3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\F2A4"}.fa-glide:before{content:"\F2A5"}.fa-glide-g:before{content:"\F2A6"}.fa-sign-language:before,.fa-signing:before{content:"\F2A7"}.fa-low-vision:before{content:"\F2A8"}.fa-viadeo:before{content:"\F2A9"}.fa-viadeo-square:before{content:"\F2AA"}.fa-snapchat:before{content:"\F2AB"}.fa-snapchat-ghost:before{content:"\F2AC"}.fa-snapchat-square:before{content:"\F2AD"}.fa-pied-piper:before{content:"\F2AE"}.fa-first-order:before{content:"\F2B0"}.fa-yoast:before{content:"\F2B1"}.fa-themeisle:before{content:"\F2B2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\F2B3"}.fa-fa:before,.fa-font-awesome:before{content:"\F2B4"}.fa-handshake-o:before{content:"\F2B5"}.fa-envelope-open:before{content:"\F2B6"}.fa-envelope-open-o:before{content:"\F2B7"}.fa-linode:before{content:"\F2B8"}.fa-address-book:before{content:"\F2B9"}.fa-address-book-o:before{content:"\F2BA"}.fa-address-card:before,.fa-vcard:before{content:"\F2BB"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\F2BC"}.fa-user-circle:before{content:"\F2BD"}.fa-user-circle-o:before{content:"\F2BE"}.fa-user-o:before{content:"\F2C0"}.fa-id-badge:before{content:"\F2C1"}.fa-drivers-license:before,.fa-id-card:before{content:"\F2C2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\F2C3"}.fa-quora:before{content:"\F2C4"}.fa-free-code-camp:before{content:"\F2C5"}.fa-telegram:before{content:"\F2C6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\F2C7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\F2C8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\F2C9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\F2CA"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\F2CB"}.fa-shower:before{content:"\F2CC"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\F2CD"}.fa-podcast:before{content:"\F2CE"}.fa-window-maximize:before{content:"\F2D0"}.fa-window-minimize:before{content:"\F2D1"}.fa-window-restore:before{content:"\F2D2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\F2D3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\F2D4"}.fa-bandcamp:before{content:"\F2D5"}.fa-grav:before{content:"\F2D6"}.fa-etsy:before{content:"\F2D7"}.fa-imdb:before{content:"\F2D8"}.fa-ravelry:before{content:"\F2D9"}.fa-eercast:before{content:"\F2DA"}.fa-microchip:before{content:"\F2DB"}.fa-snowflake-o:before{content:"\F2DC"}.fa-superpowers:before{content:"\F2DD"}.fa-wpexplorer:before{content:"\F2DE"}.fa-meetup:before{content:"\F2E0"}/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{background:transparent!important;color:#000!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:Glyphicons Halflings;src:url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1);src:url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1?#iefix) format("embedded-opentype"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.woff2?448c34a56d699c29117adc64c43affeb) format("woff2"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.woff?fa2772327f55d8198301fdb8bcfc8158) format("woff"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.ttf?e18bbf611f2a2e43afc071aa2f4e1512) format("truetype"),url(../fonts/vendor/bootstrap/glyphicons-halflings-regular.svg?89889688147bd7575d6327160d64e760#glyphicons_halflingsregular) format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:Glyphicons Halflings;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"*"}.glyphicon-plus:before{content:"+"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20AC"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270F"}.glyphicon-glass:before{content:"\E001"}.glyphicon-music:before{content:"\E002"}.glyphicon-search:before{content:"\E003"}.glyphicon-heart:before{content:"\E005"}.glyphicon-star:before{content:"\E006"}.glyphicon-star-empty:before{content:"\E007"}.glyphicon-user:before{content:"\E008"}.glyphicon-film:before{content:"\E009"}.glyphicon-th-large:before{content:"\E010"}.glyphicon-th:before{content:"\E011"}.glyphicon-th-list:before{content:"\E012"}.glyphicon-ok:before{content:"\E013"}.glyphicon-remove:before{content:"\E014"}.glyphicon-zoom-in:before{content:"\E015"}.glyphicon-zoom-out:before{content:"\E016"}.glyphicon-off:before{content:"\E017"}.glyphicon-signal:before{content:"\E018"}.glyphicon-cog:before{content:"\E019"}.glyphicon-trash:before{content:"\E020"}.glyphicon-home:before{content:"\E021"}.glyphicon-file:before{content:"\E022"}.glyphicon-time:before{content:"\E023"}.glyphicon-road:before{content:"\E024"}.glyphicon-download-alt:before{content:"\E025"}.glyphicon-download:before{content:"\E026"}.glyphicon-upload:before{content:"\E027"}.glyphicon-inbox:before{content:"\E028"}.glyphicon-play-circle:before{content:"\E029"}.glyphicon-repeat:before{content:"\E030"}.glyphicon-refresh:before{content:"\E031"}.glyphicon-list-alt:before{content:"\E032"}.glyphicon-lock:before{content:"\E033"}.glyphicon-flag:before{content:"\E034"}.glyphicon-headphones:before{content:"\E035"}.glyphicon-volume-off:before{content:"\E036"}.glyphicon-volume-down:before{content:"\E037"}.glyphicon-volume-up:before{content:"\E038"}.glyphicon-qrcode:before{content:"\E039"}.glyphicon-barcode:before{content:"\E040"}.glyphicon-tag:before{content:"\E041"}.glyphicon-tags:before{content:"\E042"}.glyphicon-book:before{content:"\E043"}.glyphicon-bookmark:before{content:"\E044"}.glyphicon-print:before{content:"\E045"}.glyphicon-camera:before{content:"\E046"}.glyphicon-font:before{content:"\E047"}.glyphicon-bold:before{content:"\E048"}.glyphicon-italic:before{content:"\E049"}.glyphicon-text-height:before{content:"\E050"}.glyphicon-text-width:before{content:"\E051"}.glyphicon-align-left:before{content:"\E052"}.glyphicon-align-center:before{content:"\E053"}.glyphicon-align-right:before{content:"\E054"}.glyphicon-align-justify:before{content:"\E055"}.glyphicon-list:before{content:"\E056"}.glyphicon-indent-left:before{content:"\E057"}.glyphicon-indent-right:before{content:"\E058"}.glyphicon-facetime-video:before{content:"\E059"}.glyphicon-picture:before{content:"\E060"}.glyphicon-map-marker:before{content:"\E062"}.glyphicon-adjust:before{content:"\E063"}.glyphicon-tint:before{content:"\E064"}.glyphicon-edit:before{content:"\E065"}.glyphicon-share:before{content:"\E066"}.glyphicon-check:before{content:"\E067"}.glyphicon-move:before{content:"\E068"}.glyphicon-step-backward:before{content:"\E069"}.glyphicon-fast-backward:before{content:"\E070"}.glyphicon-backward:before{content:"\E071"}.glyphicon-play:before{content:"\E072"}.glyphicon-pause:before{content:"\E073"}.glyphicon-stop:before{content:"\E074"}.glyphicon-forward:before{content:"\E075"}.glyphicon-fast-forward:before{content:"\E076"}.glyphicon-step-forward:before{content:"\E077"}.glyphicon-eject:before{content:"\E078"}.glyphicon-chevron-left:before{content:"\E079"}.glyphicon-chevron-right:before{content:"\E080"}.glyphicon-plus-sign:before{content:"\E081"}.glyphicon-minus-sign:before{content:"\E082"}.glyphicon-remove-sign:before{content:"\E083"}.glyphicon-ok-sign:before{content:"\E084"}.glyphicon-question-sign:before{content:"\E085"}.glyphicon-info-sign:before{content:"\E086"}.glyphicon-screenshot:before{content:"\E087"}.glyphicon-remove-circle:before{content:"\E088"}.glyphicon-ok-circle:before{content:"\E089"}.glyphicon-ban-circle:before{content:"\E090"}.glyphicon-arrow-left:before{content:"\E091"}.glyphicon-arrow-right:before{content:"\E092"}.glyphicon-arrow-up:before{content:"\E093"}.glyphicon-arrow-down:before{content:"\E094"}.glyphicon-share-alt:before{content:"\E095"}.glyphicon-resize-full:before{content:"\E096"}.glyphicon-resize-small:before{content:"\E097"}.glyphicon-exclamation-sign:before{content:"\E101"}.glyphicon-gift:before{content:"\E102"}.glyphicon-leaf:before{content:"\E103"}.glyphicon-fire:before{content:"\E104"}.glyphicon-eye-open:before{content:"\E105"}.glyphicon-eye-close:before{content:"\E106"}.glyphicon-warning-sign:before{content:"\E107"}.glyphicon-plane:before{content:"\E108"}.glyphicon-calendar:before{content:"\E109"}.glyphicon-random:before{content:"\E110"}.glyphicon-comment:before{content:"\E111"}.glyphicon-magnet:before{content:"\E112"}.glyphicon-chevron-up:before{content:"\E113"}.glyphicon-chevron-down:before{content:"\E114"}.glyphicon-retweet:before{content:"\E115"}.glyphicon-shopping-cart:before{content:"\E116"}.glyphicon-folder-close:before{content:"\E117"}.glyphicon-folder-open:before{content:"\E118"}.glyphicon-resize-vertical:before{content:"\E119"}.glyphicon-resize-horizontal:before{content:"\E120"}.glyphicon-hdd:before{content:"\E121"}.glyphicon-bullhorn:before{content:"\E122"}.glyphicon-bell:before{content:"\E123"}.glyphicon-certificate:before{content:"\E124"}.glyphicon-thumbs-up:before{content:"\E125"}.glyphicon-thumbs-down:before{content:"\E126"}.glyphicon-hand-right:before{content:"\E127"}.glyphicon-hand-left:before{content:"\E128"}.glyphicon-hand-up:before{content:"\E129"}.glyphicon-hand-down:before{content:"\E130"}.glyphicon-circle-arrow-right:before{content:"\E131"}.glyphicon-circle-arrow-left:before{content:"\E132"}.glyphicon-circle-arrow-up:before{content:"\E133"}.glyphicon-circle-arrow-down:before{content:"\E134"}.glyphicon-globe:before{content:"\E135"}.glyphicon-wrench:before{content:"\E136"}.glyphicon-tasks:before{content:"\E137"}.glyphicon-filter:before{content:"\E138"}.glyphicon-briefcase:before{content:"\E139"}.glyphicon-fullscreen:before{content:"\E140"}.glyphicon-dashboard:before{content:"\E141"}.glyphicon-paperclip:before{content:"\E142"}.glyphicon-heart-empty:before{content:"\E143"}.glyphicon-link:before{content:"\E144"}.glyphicon-phone:before{content:"\E145"}.glyphicon-pushpin:before{content:"\E146"}.glyphicon-usd:before{content:"\E148"}.glyphicon-gbp:before{content:"\E149"}.glyphicon-sort:before{content:"\E150"}.glyphicon-sort-by-alphabet:before{content:"\E151"}.glyphicon-sort-by-alphabet-alt:before{content:"\E152"}.glyphicon-sort-by-order:before{content:"\E153"}.glyphicon-sort-by-order-alt:before{content:"\E154"}.glyphicon-sort-by-attributes:before{content:"\E155"}.glyphicon-sort-by-attributes-alt:before{content:"\E156"}.glyphicon-unchecked:before{content:"\E157"}.glyphicon-expand:before{content:"\E158"}.glyphicon-collapse-down:before{content:"\E159"}.glyphicon-collapse-up:before{content:"\E160"}.glyphicon-log-in:before{content:"\E161"}.glyphicon-flash:before{content:"\E162"}.glyphicon-log-out:before{content:"\E163"}.glyphicon-new-window:before{content:"\E164"}.glyphicon-record:before{content:"\E165"}.glyphicon-save:before{content:"\E166"}.glyphicon-open:before{content:"\E167"}.glyphicon-saved:before{content:"\E168"}.glyphicon-import:before{content:"\E169"}.glyphicon-export:before{content:"\E170"}.glyphicon-send:before{content:"\E171"}.glyphicon-floppy-disk:before{content:"\E172"}.glyphicon-floppy-saved:before{content:"\E173"}.glyphicon-floppy-remove:before{content:"\E174"}.glyphicon-floppy-save:before{content:"\E175"}.glyphicon-floppy-open:before{content:"\E176"}.glyphicon-credit-card:before{content:"\E177"}.glyphicon-transfer:before{content:"\E178"}.glyphicon-cutlery:before{content:"\E179"}.glyphicon-header:before{content:"\E180"}.glyphicon-compressed:before{content:"\E181"}.glyphicon-earphone:before{content:"\E182"}.glyphicon-phone-alt:before{content:"\E183"}.glyphicon-tower:before{content:"\E184"}.glyphicon-stats:before{content:"\E185"}.glyphicon-sd-video:before{content:"\E186"}.glyphicon-hd-video:before{content:"\E187"}.glyphicon-subtitles:before{content:"\E188"}.glyphicon-sound-stereo:before{content:"\E189"}.glyphicon-sound-dolby:before{content:"\E190"}.glyphicon-sound-5-1:before{content:"\E191"}.glyphicon-sound-6-1:before{content:"\E192"}.glyphicon-sound-7-1:before{content:"\E193"}.glyphicon-copyright-mark:before{content:"\E194"}.glyphicon-registration-mark:before{content:"\E195"}.glyphicon-cloud-download:before{content:"\E197"}.glyphicon-cloud-upload:before{content:"\E198"}.glyphicon-tree-conifer:before{content:"\E199"}.glyphicon-tree-deciduous:before{content:"\E200"}.glyphicon-cd:before{content:"\E201"}.glyphicon-save-file:before{content:"\E202"}.glyphicon-open-file:before{content:"\E203"}.glyphicon-level-up:before{content:"\E204"}.glyphicon-copy:before{content:"\E205"}.glyphicon-paste:before{content:"\E206"}.glyphicon-alert:before{content:"\E209"}.glyphicon-equalizer:before{content:"\E210"}.glyphicon-king:before{content:"\E211"}.glyphicon-queen:before{content:"\E212"}.glyphicon-pawn:before{content:"\E213"}.glyphicon-bishop:before{content:"\E214"}.glyphicon-knight:before{content:"\E215"}.glyphicon-baby-formula:before{content:"\E216"}.glyphicon-tent:before{content:"\26FA"}.glyphicon-blackboard:before{content:"\E218"}.glyphicon-bed:before{content:"\E219"}.glyphicon-apple:before{content:"\F8FF"}.glyphicon-erase:before{content:"\E221"}.glyphicon-hourglass:before{content:"\231B"}.glyphicon-lamp:before{content:"\E223"}.glyphicon-duplicate:before{content:"\E224"}.glyphicon-piggy-bank:before{content:"\E225"}.glyphicon-scissors:before{content:"\E226"}.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\E227"}.glyphicon-jpy:before,.glyphicon-yen:before{content:"\A5"}.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20BD"}.glyphicon-scale:before{content:"\E230"}.glyphicon-ice-lolly:before{content:"\E231"}.glyphicon-ice-lolly-tasted:before{content:"\E232"}.glyphicon-education:before{content:"\E233"}.glyphicon-option-horizontal:before{content:"\E234"}.glyphicon-option-vertical:before{content:"\E235"}.glyphicon-menu-hamburger:before{content:"\E236"}.glyphicon-modal-window:before{content:"\E237"}.glyphicon-oil:before{content:"\E238"}.glyphicon-grain:before{content:"\E239"}.glyphicon-sunglasses:before{content:"\E240"}.glyphicon-text-size:before{content:"\E241"}.glyphicon-text-color:before{content:"\E242"}.glyphicon-text-background:before{content:"\E243"}.glyphicon-object-align-top:before{content:"\E244"}.glyphicon-object-align-bottom:before{content:"\E245"}.glyphicon-object-align-horizontal:before{content:"\E246"}.glyphicon-object-align-left:before{content:"\E247"}.glyphicon-object-align-vertical:before{content:"\E248"}.glyphicon-object-align-right:before{content:"\E249"}.glyphicon-triangle-right:before{content:"\E250"}.glyphicon-triangle-left:before{content:"\E251"}.glyphicon-triangle-bottom:before{content:"\E252"}.glyphicon-triangle-top:before{content:"\E253"}.glyphicon-console:before{content:"\E254"}.glyphicon-superscript:before{content:"\E255"}.glyphicon-subscript:before{content:"\E256"}.glyphicon-menu-left:before{content:"\E257"}.glyphicon-menu-right:before{content:"\E258"}.glyphicon-menu-down:before{content:"\E259"}.glyphicon-menu-up:before{content:"\E260"}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#4c4d4e;background-color:#f9f9f9}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#3f7b96;text-decoration:none}a:focus,a:hover{color:#305e72;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail>img,.thumbnail a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#f9f9f9;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #ccc}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:200;line-height:1.1;color:#4c4d4e}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#f7941e}a.text-primary:focus,a.text-primary:hover{color:#da7a08}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#f7941e}a.bg-primary:focus,a.bg-primary:hover{background-color:#da7a08}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:"\2014   \A0"}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:""}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:"\A0   \2014"}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Courier New,monospace}code{color:#c7254e;background-color:#f9f2f4;border-radius:4px}code,kbd{padding:2px 4px;font-size:90%}kbd{color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-13,.col-lg-14,.col-lg-15,.col-lg-16,.col-lg-17,.col-lg-18,.col-lg-19,.col-lg-20,.col-lg-21,.col-lg-22,.col-lg-23,.col-lg-24,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-13,.col-md-14,.col-md-15,.col-md-16,.col-md-17,.col-md-18,.col-md-19,.col-md-20,.col-md-21,.col-md-22,.col-md-23,.col-md-24,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-13,.col-sm-14,.col-sm-15,.col-sm-16,.col-sm-17,.col-sm-18,.col-sm-19,.col-sm-20,.col-sm-21,.col-sm-22,.col-sm-23,.col-sm-24,.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-13,.col-xs-14,.col-xs-15,.col-xs-16,.col-xs-17,.col-xs-18,.col-xs-19,.col-xs-20,.col-xs-21,.col-xs-22,.col-xs-23,.col-xs-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-13,.col-xs-14,.col-xs-15,.col-xs-16,.col-xs-17,.col-xs-18,.col-xs-19,.col-xs-20,.col-xs-21,.col-xs-22,.col-xs-23,.col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-13,.col-sm-14,.col-sm-15,.col-sm-16,.col-sm-17,.col-sm-18,.col-sm-19,.col-sm-20,.col-sm-21,.col-sm-22,.col-sm-23,.col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-13,.col-md-14,.col-md-15,.col-md-16,.col-md-17,.col-md-18,.col-md-19,.col-md-20,.col-md-21,.col-md-22,.col-md-23,.col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-13,.col-lg-14,.col-lg-15,.col-lg-16,.col-lg-17,.col-lg-18,.col-lg-19,.col-lg-20,.col-lg-21,.col-lg-22,.col-lg-23,.col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777}caption,th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#f9f9f9}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{margin:0;min-width:0}fieldset,legend{padding:0;border:0}legend{display:block;width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{padding-top:7px}.form-control,output{display:block;font-size:14px;line-height:1.42857143;color:#2f2f2f}.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox-inline input[type=checkbox],.checkbox input[type=checkbox],.radio-inline input[type=radio],.radio input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .checkbox label,fieldset[disabled] .radio-inline,fieldset[disabled] .radio label,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success.checkbox-inline label,.has-success.checkbox label,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.radio-inline label,.has-success.radio label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning.checkbox-inline label,.has-warning.checkbox label,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.radio-inline label,.has-warning.radio label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error.checkbox-inline label,.has-error.checkbox label,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.radio-inline label,.has-error.radio label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#8b8d8e}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#f7941e;border-color:#f7941e}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#da7a08;border-color:#905105}.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#da7a08;border-color:#d07507}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#b86707;border-color:#905105}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#f7941e;border-color:#f7941e}.btn-primary .badge{color:#f7941e;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#2d672d}.btn-success.active,.btn-success:active,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#419641}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#2d672d}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#5cb85c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#3f7b96;border-color:#3f7b96}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#305e72;border-color:#19313c}.btn-info.active,.btn-info:active,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#305e72;border-color:#2d586b}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#254959;border-color:#19313c}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#3f7b96;border-color:#3f7b96}.btn-info .badge{color:#3f7b96;background-color:#fff}.btn-warning{color:#fff;background-color:#f7941e;border-color:#f7941e}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#da7a08;border-color:#905105}.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#da7a08;border-color:#d07507}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#b86707;border-color:#905105}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f7941e;border-color:#f7941e}.btn-warning .badge{color:#f7941e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#8b211e}.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#c12e2a}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#8b211e}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d9534f}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#3f7b96;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#305e72;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:0}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:0}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#f7941e}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child),.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio],[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#2f2f2f;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group .form-control:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group .form-control:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn,.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li,.nav>li>a{position:relative;display:block}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#3f7b96}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#2f2f2f;background-color:#f9f9f9;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#f9f9f9}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#f7941e}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#f9f9f9}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container-fluid .navbar-brand,.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin:8px -15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left;float:left!important}.navbar-right{float:right;float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 0;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\A0";padding:0 5px;color:#656668}.breadcrumb>.active{color:#4c4d4e}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#3f7b96;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#305e72;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#f7941e;border-color:#f7941e;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#f7941e}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#da7a08}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#3f7b96}.label-info[href]:focus,.label-info[href]:hover{background-color:#305e72}.label-warning{background-color:#f7941e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#da7a08}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#3f7b96;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:#fff;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container-fluid .jumbotron,.container .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container-fluid .jumbotron,.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#f9f9f9;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#3f7b96}.thumbnail .caption{padding:9px;color:#4c4d4e}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#f7941e;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-info{background-color:#3f7b96}.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-warning{background-color:#f7941e}.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#f7941e;border-color:#f7941e}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#fef2e3}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#ececec;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-heading>.dropdown .dropdown-toggle,.panel-title{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#4c4d4e;background-color:#dfdfdf;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#dfdfdf;background-color:#4c4d4e}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#f7941e}.panel-primary>.panel-heading{color:#fff;background-color:#f7941e;border-color:#f7941e}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#f7941e}.panel-primary>.panel-heading .badge{color:#f7941e;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#f7941e}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal,.modal-open{overflow:hidden}.modal{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translateY(-25%);transform:translateY(-25%);-webkit-transition:-webkit-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0);transform:translate(0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px}.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{left:5px}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel,.carousel-inner{position:relative}.carousel-inner{overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:left .6s ease-in-out;transition:left .6s ease-in-out}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media (-webkit-transform-3d),(transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translateZ(0);transform:translateZ(0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:transparent}.carousel-control.left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(90deg,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001));background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000",endColorstr="#00000000",GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(90deg,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5));background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#80000000",GradientType=1)}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:"\2039"}.carousel-control .icon-next:before{content:"\203A"}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:transparent}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{content:" ";display:table}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}/*!
+ * Yamm!3 - Yet another megamenu for Bootstrap 3
+ * http://geedmo.github.com/yamm3
+ * 
+ * @geedmo - Licensed under the MIT license
+ */.yamm .collapse,.yamm .dropdown,.yamm .dropup,.yamm .nav{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}.btn{text-transform:none}.btn:visited{color:#fff}.btn-default:visited{color:#333}.btn-white{background:#fff;border:1px solid #0b0a0f;color:#0b0a0f}.btn-white:hover{background:transparent}.btn-white:visited{color:#333}.btn-huge{font-size:1.1em;padding:10px 35px}.btn-huge i{margin-right:2px}.btn-transparent:link,.btn-transparent:visited{background:transparent;border-color:#fff;color:#fff;font-size:11px;padding:7px 15px}.btn-transparent:active,.btn-transparent:hover{color:#f7941e;border-color:#f7941e;background:#ccc}.btn-transparent .caret{margin-left:6px}.donation-button{padding:.75em 3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:visited{color:inherit}.btn-simple:active,.btn-simple:hover{border:1px solid #777;background:#eee}.btn-simple-white{text-transform:none;font-weight:400;font-size:13px;border:0;border-radius:0}.btn-group-smaller>.btn,.btn-smaller{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:400}.btn-white-purple-border:visited{color:#2d2252}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.btn-secondary{color:#fff;background-color:#404040;border-color:#404040}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#272727;border-color:#000}.btn-secondary.active,.btn-secondary:active,.btn-secondary:hover,.open>.dropdown-toggle.btn-secondary{color:#fff;background-color:#272727;border-color:#212121}.btn-secondary.active.focus,.btn-secondary.active:focus,.btn-secondary.active:hover,.btn-secondary:active.focus,.btn-secondary:active:focus,.btn-secondary:active:hover,.open>.dropdown-toggle.btn-secondary.focus,.open>.dropdown-toggle.btn-secondary:focus,.open>.dropdown-toggle.btn-secondary:hover{color:#fff;background-color:#151515;border-color:#000}.btn-secondary.active,.btn-secondary:active,.open>.dropdown-toggle.btn-secondary{background-image:none}.btn-secondary.disabled.focus,.btn-secondary.disabled:focus,.btn-secondary.disabled:hover,.btn-secondary[disabled].focus,.btn-secondary[disabled]:focus,.btn-secondary[disabled]:hover,fieldset[disabled] .btn-secondary.focus,fieldset[disabled] .btn-secondary:focus,fieldset[disabled] .btn-secondary:hover{background-color:#404040;border-color:#404040}.btn-secondary .badge{color:#404040;background-color:#fff}.media{padding-bottom:2em}.media .pull-left{margin-right:30px}.media .media-heading{font-size:27px}.media p{font-size:14px;padding-bottom:0}.media .emphasis{margin-bottom:2px;padding-bottom:0}.modal{text-align:center}@media screen and (min-width:768px){.modal:before{display:inline-block;vertical-align:middle;content:" ";height:100%}}.modal-title{font-weight:600;font-size:22px}.modal-content{border-radius:0}.modal-content-container{border:1px solid #eee;padding:0 20px}.modal-dialog{display:inline-block;text-align:left;vertical-align:middle}.nav>li>a{color:#f7941e}.nav-tabs>li{padding-bottom:0}.nav-tabs>li a:hover{background:#f7941e;color:#fff}.tab-content{padding:10px;border:1px solid #ddd;border-top:none;background:#fff}.tab-pane{padding:.5em 1em}.tab-pane .page-header{margin-top:10px}.section-highlights{background-color:#f9f9f9}.section-highlights .featured-highlights-item{text-align:center;padding:25px;border-right:1px solid #ccc}.section-highlights .featured-highlights-item:last-child{border:none}.section-highlights .featured-highlights-item h3{font-size:20px;font-weight:600;margin-top:10px}.section-highlights .featured-highlights-item .feather{stroke:#f7941e;width:40px;height:40px}.section-top-angle{background-color:#f9f9f9;position:relative}.section-top-angle:before{background-color:#f9f9f9;-webkit-clip-path:polygon(0 16%,100% 0,100% 100%,0 100%);clip-path:polygon(0 16%,100% 0,100% 100%,0 100%);display:block;content:"";position:absolute;top:-79px;width:100%;height:80px}.featured-footer{padding:50px 0;text-align:center;-webkit-clip-path:polygon(0 8%,100% 0,100% 100%,0 91%);clip-path:polygon(0 8%,100% 0,100% 100%,0 91%);margin-bottom:-30px;margin-top:30px}.featured-footer h2{margin-top:10px}.featured-footer .feather{width:40px;height:40px}.featured-footer .textfield-underline{text-align:center;width:300px}.featured-centered-item{height:260px;text-align:center;white-space:nowrap;position:relative}@media (max-width:1200px){.featured-centered-item{height:205px}}@media (max-width:768px){.featured-centered-item{margin-bottom:15px}}.featured-centered-item:before{content:"";height:100%}.featured-centered-item .centered-item,.featured-centered-item:before{display:inline-block;vertical-align:middle}@media (max-width:1200px){.featured-centered-item .centered-item{width:205px;padding:20px}}@media (max-width:480px){.featured-centered-item .centered-item{width:165px;padding:20px}}.featured-centered-item .centered-item img{display:inherit}.featured-centered-item a{position:absolute;opacity:0;display:table;transition:all .5s ease;-webkit-transition:all .5s ease;-moz-transition:all .5s ease;-o-transition:all .5s ease;z-index:9;top:0;left:0;height:260px;background-color:rgba(0,0,0,.8);width:100%;padding:20px;white-space:normal;color:#fff}.featured-centered-item a:hover{opacity:1;text-decoration:none}@media (max-width:1200px){.featured-centered-item a{height:205px}}.featured-centered-item a .item-description,.featured-centered-item a .item-title{color:#fff;display:block;margin-bottom:10px}.featured-centered-item a .item-title{text-transform:uppercase;font-size:18px;font-weight:300}@media (max-width:1200px){.featured-centered-item a .item-description{display:none}}.featured-centered-item a .arrow{font-size:2em;color:#fff}.featured-centered-item a .centered-vertical-item{display:table-cell;vertical-align:middle}.newsletter-sponsored-by{background-color:#1f1f1f;padding:15px 0}.newsletter-sponsored-by .sponsored-by-neon{margin-bottom:0;color:#9e9e9e}@media (max-width:768px){.newsletter-sponsored-by .sponsored-by-neon{text-align:center;margin-bottom:15px}}.newsletter-sponsored-by .neon-logo{max-width:150px;max-height:50px;margin-left:10px}.newsletter-sponsored-by .google-search-archive{margin-bottom:0;text-transform:uppercase;font-weight:200;color:#9e9e9e;text-align:right}@media (max-width:768px){.newsletter-sponsored-by .google-search-archive{text-align:center}}.newsletter-featured-container{background-image:url("/community/eclipse_newsletter/assets/public/images/featured-newsletter-bg.jpg");background-size:cover}.newsletter-featured-container .item-title,.newsletter-featured-container h2,.newsletter-featured-container h3{color:#fff}.newsletter-featured-container h2{font-size:3em}@media (max-width:991px){.newsletter-featured-container h2{text-align:center}}.newsletter-featured-container .featured-item{height:260px;text-align:center;white-space:nowrap}@media (max-width:1200px){.newsletter-featured-container .featured-item{height:205px}}.newsletter-featured-container .featured-item:before{content:"";display:inline-block;height:100%;vertical-align:middle}.newsletter-featured-container .featured-item .centered-item{display:inline-block;vertical-align:middle;width:260px}.newsletter-featured-container .featured-title-container{height:520px;white-space:nowrap}@media (max-width:1200px){.newsletter-featured-container .featured-title-container{height:410px}}@media (max-width:992px){.newsletter-featured-container .featured-title-container{height:inherit}}@media (min-width:992px){.newsletter-featured-container .featured-title-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}}@media (min-width:992px){.newsletter-featured-container .featured-title-item{width:260px;display:inline-block;vertical-align:middle}}@media (max-width:991px){.newsletter-featured-container .featured-title-item{margin-bottom:50px;text-align:center}}.news-list-top-shape:before{z-index:2;content:"";display:block;position:relative;top:-50px;width:100%;-webkit-clip-path:polygon(100% 57%,0 100%,100% 100%);clip-path:polygon(100% 57%,0 100%,100% 100%);background-color:#f9f9f9;height:50px}.news-list h2{color:#404040;margin-bottom:20px;margin-top:0}.news-list .news-list-icon{margin-bottom:0}.news-list .news-list-icon .feather{height:50px;stroke:#f7941e;width:50px}.news-list .media-link{background-color:#fff;color:#484848;display:block;margin-bottom:10px;padding:30px}.news-list .media-link:hover{background-color:#fcdab2;color:#484848;text-decoration:none}.news-list .media-link:focus,.news-list .media-link:visited{color:#484848}@media (min-width:992px){.news-list .news-list-col{padding-bottom:70px;padding-left:5px;padding-right:5px}}.news-list .media-heading{color:#484848;font-size:19px;font-weight:700}.news-list .media-text{color:#484848}.news-list .news-list-links{text-align:center}.news-list .news-list-links a{color:#9c9c9c}.news-list .news-list-links .news-list-links-rss{border-left:1px solid #9c9c9c;padding-left:10px}.news-list .news-list-links .fa-rss{color:#f7941e;font-size:18px;margin-left:10px;position:relative;top:2px}.featured-jumbotron-bottom-shape{-webkit-clip-path:polygon(0 0,100% 0,100% 94%,0 100%);clip-path:polygon(0 0,100% 0,100% 94%,0 100%);position:relative;z-index:2;margin-bottom:-30px}.featured-jumbotron{background-color:#404040;text-align:center;color:#fff;padding-top:10px;margin-bottom:0}.featured-jumbotron .btn{padding-left:20px;padding-right:20px;min-width:200px}@media (max-width:991px){.featured-jumbotron .btn{margin-bottom:25px}}.featured-jumbotron h1{font-weight:700;margin-bottom:30px;margin-top:0}@media (min-width:992px){.featured-jumbotron h1{font-size:45px}}@media (max-width:991px){.featured-jumbotron h1{font-size:30px}}.featured-jumbotron h1:after{border-bottom:3px solid #fff;width:100px;height:5px;display:block;content:"";margin:15px auto 0}.featured-jumbotron h2{color:inherit}.featured-jumbotron a:not(.btn):not(.jumbotron-icon){color:#8a9ca5}.featured-jumbotron a:not(.btn):not(.jumbotron-icon):hover{color:#576972}.featured-jumbotron a:not(.btn):not(.jumbotron-icon):visited{color:#9a816d}@media (max-width:767px){.featured-jumbotron .btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0;min-width:auto}}.featured-jumbotron .jumbotron-icon{margin-bottom:10px;display:block;color:inherit}@media (min-width:768px){.featured-jumbotron .jumbotron-icon{height:60px}.featured-jumbotron .jumbotron-icon .feather{width:60px;height:60px}}@media (max-width:767px){.featured-jumbotron .jumbotron-icon{height:45px}}@media (max-width:767px) and (max-width:767px){.featured-jumbotron .jumbotron-icon .feather{width:45px;height:45px}}.featured-story{position:relative;z-index:1;background-color:#fff;overflow:hidden}@media (max-width:767px){.featured-story{text-align:center}}.featured-story-description{color:#9b9b9b;font-size:12px;margin-top:5px;clear:both;padding-top:10px;margin-bottom:10px}.featured-ad,.featured-story-block{padding-top:25px}@media (min-width:768px){.featured-ad,.featured-story-block{padding-top:50px;min-height:340px}}.featured-story-block{background-position:100% 0;background-repeat:no-repeat;background-color:#fff}.featured-story-block .featured-story-description{font-size:.9em;margin-bottom:10px}@media (min-width:768px){.featured-story-block{padding-right:100px;padding-bottom:50px}}.featured-story-block h2{color:#404040;margin-top:0}.featured-story-block p{font-size:21px;font-weight:100;margin-bottom:20px}.featured-ad-content{clear:both}.featured-ad{position:relative;background-color:#eaeaeb;padding-bottom:50px}@media (min-width:768px){.featured-ad{text-align:right}.featured-ad .featured-ad-content{z-index:2;width:100%;position:absolute;right:15px}.featured-ad .featured-ad-content img{float:right}.featured-ad:after,.featured-ad:before{content:"";position:absolute;min-height:100%;top:0;background-color:#eaeaeb}.featured-ad:before{width:100px;z-index:1;left:-45px;-webkit-clip-path:polygon(0 0,100% 0,100% 100%,0 100%,37% 51%);clip-path:polygon(0 0,100% 0,100% 100%,0 100%,37% 51%)}.featured-ad:after{width:1000px;z-index:1;left:0}}.eclipsefnd-ad:after{clear:both;content:" ";display:table}.eclipsefnd-ad a{-webkit-box-shadow:3px 4px 46px -6px rgba(0,0,0,.51);box-shadow:3px 4px 46px -6px rgba(0,0,0,.51);background:#fff 50% no-repeat;height:200px;width:200px;display:block;text-align:center;text-indent:-9999px;margin:auto}@media (min-width:768px){.eclipsefnd-ad a{float:right}}.ad-strategic-default a{background-size:200px 200px}.ad-eclipsecon-schedule a{font-weight:300}.ad-eclipsecon-schedule>thead>tr>th{border-color:#cecece}.ad-eclipsecon-schedule>tbody>tr>td,.ad-eclipsecon-schedule>tbody>tr>th{border:none}.ad-eclipsecon-schedule>tbody>tr:nth-of-type(odd){background-color:#e8e8e8}.ad-eclipsecon-schedule-title{position:relative;padding-left:30px;display:block;font-size:16px;font-weight:600}.ad-eclipsecon-schedule-title:before{font-family:FontAwesome;content:"\F041";position:absolute;font-size:35px;color:#a59bd0;left:0;top:-2px}.donate-ad{background-color:#f6f6f6;position:relative;overflow:hidden;border-bottom:4px solid #bf4b97}.donate-ad h2{margin-top:0}.donate-ad .btn-square{background-color:#2e2458;color:#fff;margin-bottom:10px;width:57px}.donate-ad .btn-square.active{background-color:#f7941d}.donate-ad .underlined-link{font-weight:400;text-decoration:underline}.donate-ad .underlined-link:hover{text-decoration:none}.donate-ad .btn-donate-close{position:absolute;top:20px;right:20px;z-index:999;font-size:1.2em;cursor:pointer}.donate-ad .list-amount{margin-bottom:0}.donate-ad .donate-submit{margin-top:20px}.donate-ad .donate-submit .input-group-addon{font-size:.8em}.donate-ad .form-inline .input-group>.form-control{padding-right:6px;text-align:right}@media (min-width:768px){.donate-ad .form-inline .input-group>.form-control{width:60px}}.donate-form,.donate-text{padding-top:20px}@media (min-width:992px){.donate-text:after{content:"";position:absolute;top:0;right:-34px;width:0;height:0;border-top:126px solid transparent;border-left:34px solid #f6f6f6;border-bottom:126px solid transparent;z-index:99}}.donate-form form{position:relative;z-index:9}.donate-form:after{content:"";position:absolute;width:1000px;height:300px;z-index:1;left:0;top:0;background-color:#fff}.recognition-fields{display:none}.anchor{display:block;position:relative;top:-14px;visibility:hidden;z-index:9999}.scrollup{width:40px;height:40px;opacity:.3;position:fixed;bottom:50px;right:15px;display:none;text-indent:-9999px;background:url(../images/vendor/eclipsefdn-solstice-components/back-to-top/back-to-top.png?19e6da177416da3208367d78ea0a3c23) no-repeat}.scrollup:focus{outline:none}#back-to-top{margin:0;padding:0}#back-to-top a{border-top:1px solid gray;background-color:#666;color:#fff;display:block;padding:4px 0 3px;text-align:center;width:100%;margin:0}#back-to-top a:focus,#back-to-top a:hover{text-decoration:none;background:#dfdfe4;color:#4a4a4a}.share-button{padding:5px;display:block;color:#fff;width:24px;height:24px}.share-button:active,.share-button:focus,.share-button:hover,.share-button:visited{color:#fff}.share-button .fa{font-size:13px}.share-button-twitter{background-color:#1da1f2}.share-button-facebook{background-color:#3b5998}.share-button-mail{background-color:#949494}.default-breadcrumbs{background:#efefef;background-size:100%;color:#656668;border-bottom:none;border-top:none;font-size:.85em}.breadcrumb{background:none;margin-bottom:0;text-transform:inherit}.breadcrumb a{font-weight:300}.breadcrumb a:link,.breadcrumb a:visited{color:#656668}.breadcrumb a:hover{color:#4c4d4e}body #st-el-4 .st-btns{overflow:auto}.discover-search{background:#efefef}.discover-search h2{color:#545454;margin-top:1.3em;padding-bottom:0;margin-bottom:.1em}.discover-search .form-search-projects{margin-bottom:1.4em}.discover-search>.container{min-height:267px}@media (min-width:992px){.discover-search>.container{background:url(../images/vendor/eclipsefdn-solstice-components/discover-search/discover-search-bg.jpg?7caf6dd2285eb601704861e00e81cf5a) 100% no-repeat}}.drag_installbutton{position:relative;clear:both;display:inline}.drag_installbutton .tooltip{opacity:1;display:none;background:url(../images/vendor/eclipsefdn-solstice-components/drag-drop/mpcdrag.png?0e677e73f1642275ebc6a4fbf2a61c09) no-repeat scroll 110% 60% #a285c5;position:absolute;top:0;left:64px;text-align:left;width:325px;color:#000;border:1px solid #ae00ce;z-index:99;padding:5px 50px 5px 5px}.drag_installbutton .tooltip h3{margin-top:0;color:#000}.drag_installbutton .tooltip.show-right{left:-335px}.drag_installbutton a.drag:hover .tooltip{display:block}.drag_installbutton.drag_installbutton_v2 .btn:hover{cursor:move}.drag_installbutton.drag_installbutton_v2 .tooltip{left:100px;margin-top:-6px;border:1px solid #777;background-color:#eee}.drag_installbutton.drag_installbutton_v2 .tooltip.tooltip-below-right{right:0;left:auto;top:40px}.drag_installbutton.drag_installbutton_v2 .tooltip h3{font-size:18px}footer#solstice-footer{background:#fff;font-family:Libre Franklin,Helvetica Neue,Helvetica,Arial,sans-serif;padding-top:60px;color:#404040;padding-bottom:26px;font-size:14px;border-top:none}footer#solstice-footer h2{color:#000;margin-top:0;font-weight:400;font-size:18px;max-width:auto}footer#solstice-footer a:active,footer#solstice-footer a:focus,footer#solstice-footer a:link,footer#solstice-footer a:visited{color:#404040;font-weight:400}footer#solstice-footer a:hover{color:#000}footer#solstice-footer .logo-eclipse-white{margin-bottom:15px;max-width:161px}footer#solstice-footer .nav{margin-left:-15px;margin-bottom:25px}footer#solstice-footer .nav a{padding:6px 15px}footer#solstice-footer .nav a:hover{background:none;color:#000}footer#solstice-footer li{padding-bottom:0}@media (max-width:450px){footer#solstice-footer section.col-xs-11,footer#solstice-footer section.col-xs-14{position:relative;float:left;width:95.83333333%;min-height:1px;padding-left:15px;padding-right:15px}}@media (min-width:451px) and (max-width:767px){footer#solstice-footer #footer-useful-links{clear:left}footer#solstice-footer #copyright{clear:both}}#copyright{padding-top:15px}#copyright img{float:left;margin-top:10px;margin-right:15px;clear:both}@media (max-width:991px){#copyright-text{margin-bottom:20px}}@media (min-width:992px){.social-media{text-align:right}}#footer-eclipse-foundation,#footer-legal,#footer-other,#footer-useful-links{z-index:99}.footer-other-working-groups{font-weight:300;font-size:11px}.footer-other-working-groups .logo-eclipse-default,.footer-other-working-groups .social-media{margin-bottom:20px;margin-top:0}.footer-other-working-groups .img-responsive{max-width:175px}.footer-other-working-groups .footer-working-group-col{padding:0}@media (min-width:1200px){.footer-other-working-groups{background:url(../images/vendor/eclipsefdn-solstice-template/footer-working-group-separator.png?7755eb2e94e0b22d832e9ffa7cd79479) 50% repeat-y}.footer-other-working-groups .img-responsive{max-width:200px}}.footer-min{background:#ececec;border-top:1px solid #acacac;position:absolute;width:100%;bottom:0;padding:10px 0}.footer-min a{font-weight:400;font-size:.8em}.footer-min p,.footer-min ul{margin-bottom:0;font-size:.8em}.footer-min ul{text-align:right}.footer-min ul li{padding-bottom:0}@media screen and (max-width:767px){.footer-min p,.footer-min ul{text-align:center}}body.solstice-footer-min{margin-bottom:36px;position:static}@media screen and (max-width:767px){body.solstice-footer-min{margin-bottom:51px}}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:transparent;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu #navbar-main-menu{float:none}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#f7941e;height:3px}#main-menu .nav{margin:0;padding:0;background:#666}#main-menu .nav>li.open .dropdown-toggle{color:#fff;background:#787878}#main-menu .nav>li>a{color:#fff;text-transform:none;padding:18px 15px;border-bottom:1px solid #525252}#main-menu .nav>li .dropdown-menu{background:#525252;padding:0;border-radius:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#f7941e;color:#fff}#main-menu .nav>li .dropdown-menu>li.active a:focus,#main-menu .nav>li .dropdown-menu>li.active a:hover{color:#fff;background:#f5f5f5}#main-menu .nav>li .dropdown-menu>li>a{padding:18px 15px;color:#afafaf}#main-menu .nav>li .dropdown-menu>li>a:focus,#main-menu .nav>li .dropdown-menu>li>a:hover{color:#7c7c7c;background:#f5f5f5}#main-menu .nav>li.main-menu-search .dropdown-toggle{display:none}#main-menu .nav>li.main-menu-search .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none;display:block}#main-menu .nav>li.main-menu-search .dropdown-menu p{color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .yamm-content{padding:15px}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input{background-color:#fff}#main-menu .nav>li.main-menu-search .dropdown-menu .gsc-input-box{border:none}}@media (max-width:1199px){#breadcrumb .container,#header-wrapper .container,.toolbar-container-wrapper .container,main .container{width:auto}}@media (min-width:768px){#main-menu{font-size:14px;margin-bottom:5px}#main-menu .dropdown li,#main-menu ul li{text-transform:none}#main-menu li a{margin-right:0;color:#fff}#main-menu li a:active,#main-menu li a:hover{color:#ccc}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:auto;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:auto;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#6b655f}#main-menu .dropdown-menu a:active,#main-menu .dropdown-menu a:hover{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:17px}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active,#main-menu a:focus{color:#ccc}#main-menu .nav .open a,#main-menu .nav .open a:focus,#main-menu .nav .open a:hover,#main-menu .nav>li>a:focus,#main-menu .nav>li>a:hover{background-color:transparent}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.about,.ul-left-nav>li.separator{padding-left:0;font-weight:700}.ul-left-nav>li.about img,.ul-left-nav>li.separator img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#35322f}.logo-eclipse-default-mobile{max-height:50px}@media (min-width:768px){.alternate-layout #main-menu{font-size:14px}.alternate-layout #main-menu ul li{text-transform:none}.alternate-layout #main-menu li a{color:#6b655f}.alternate-layout #main-menu li a:active,.alternate-layout #main-menu li a:hover{color:#35322f}}@media (min-width:992px){.alternate-layout #main-menu{font-size:17px}}@media (max-width:767px){.alternate-layout #main-menu{background:#404040 100% 0 no-repeat}}main #bigbuttons{min-height:1px;padding:1.65em 15px 2.2em;text-align:center;position:relative;top:auto;left:auto}@media (min-width:768px){main #bigbuttons{float:left;width:41.66666667%;margin-left:58.33333333%}}@media (min-width:992px){main #bigbuttons{float:left;width:62.5%;margin-left:37.5%}}@media (min-width:1200px){main #bigbuttons{float:left;width:66.66666667%;margin-left:25%}}main #bigbuttons h3{display:none}main #bigbuttons:after,main #bigbuttons:before{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons ul{padding-left:0;list-style:none;margin-left:-5px}main #bigbuttons ul>li{display:inline-block;padding-left:5px;padding-right:5px}main #bigbuttons ul li{background:none}@media (min-width:768px){main #bigbuttons ul li{float:right}}main #bigbuttons a{position:relative;margin:0;top:auto;left:auto}main #bigbuttons a:hover{text-decoration:none}div#novaContent{background-position:0 0;padding-top:0}@media (max-width:767px){div#novaContent{background-image:none}}@media (min-width:1200px){div#novaContent{background-position:top}}.legacy-page #midcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #midcolumn{float:left;width:70.83333333%}}.legacy-page #midcolumn #maincontent,.legacy-page #midcolumn #midcolumn{width:100%}.legacy-page #midcolumn.no-right-sidebar{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #midcolumn.no-right-sidebar{float:left;width:100%}}.legacy-page #rightcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){.legacy-page #rightcolumn{float:left;width:29.16666667%}}.logo-eclipse-default{margin:0}.header_nav{padding-bottom:35px}.header_nav img{margin:20px auto}.header_nav ul{background:#f4f4f4;padding:0;text-transform:uppercase;color:#7b778e;margin:0;font-size:16px}.header_nav ul li{list-style:none;clear:right;padding-bottom:0}.header_nav ul li:nth-child(odd){clear:left}.header_nav ul a{padding:20px;display:block;font-weight:600}.header_nav ul a:active,.header_nav ul a:link,.header_nav ul a:visited{color:#7b778e}.header_nav ul a:hover{color:#f7941e}.header_nav ul a i{font-size:30px;padding:4px 0 0;text-align:center;font-weight:700}.header_nav ul span{padding:0 0 0 5px}.header_nav ul span p{font-size:11px;text-transform:none;font-weight:400;margin:0}.icon-sidebar-menu h3{margin-top:0;font-size:16px;margin-bottom:5px}.icon-sidebar-menu p{font-size:13px}.icon-sidebar-menu .circle-icon{width:80px;height:80px;display:block}.icon-sidebar-menu .circle-icon i{font-size:37px;margin-top:20px}.step-by-step .intro{text-align:center}.step-by-step .intro h2{margin-top:1.5em}.step-by-step .step-by-step-timeline{text-align:center;margin-top:1.5em}.step-by-step .step-by-step-timeline .step-icon,.step-by-step .step-by-step-timeline .step-icon:hover,.step-by-step .step-by-step-timeline .step-icon:visited{color:#4c4d4e}.step-by-step .step-by-step-timeline .feather{width:50px;height:50px;margin-bottom:15px}.tabs-sidebar .nav{margin-top:15px}.tabs-sidebar .nav img{padding-top:13px}.tabs-sidebar .nav .active img.desaturate{-webkit-filter:grayscale(0);filter:grayscale(0)}.tabs-sidebar .nav li.active a{background:none;border:1px solid #cbd3e8}.tabs-sidebar .nav li.active a:after{content:"";position:absolute;left:100%;top:50%;margin-top:-13px;display:block;width:8px;height:21px;background:url(../images/vendor/eclipsefdn-solstice-components/tabs-sidebar/tabs-sidebar-active.png?ba27d4209469fa215d4ad75e4c5ebbe9) no-repeat}.tabs-sidebar .nav li a{border:1px solid #fff}.tabs-sidebar .nav li a:focus,.tabs-sidebar .nav li a:hover{outline:none;border:1px solid #cbd3e8}.tabs-sidebar .tab-content .row{padding:1em;border-bottom:1px solid #eee}.tabs-sidebar .tab-content p{font-size:13.5px}.timeline{margin:35px auto 0}.timeline a{font-weight:700}.timeline .gs-item{padding-bottom:20px}.timeline .circle{background:#88b7cd;color:#fff;border:2px solid #fff;height:47px;width:47px;font-size:20px;float:left;padding-top:6px;padding-left:1px;font-weight:700}.timeline .two .circle{background:#76adc5}.timeline .three .circle{background:#5297b6}.timeline .four .circle{background:#3f7b96}.timeline h1{font-size:2em;text-align:left;padding:9px 0 0 62px;margin-bottom:24px}.timeline ul{padding-left:1px}.timeline li{margin-bottom:1em;padding-left:14px;list-style:none}.timeline li:before{content:"\BB";color:#f7941e;margin-left:-16px;margin-right:10px;display:block;float:left}@media (min-width:992px){.timeline{border-top:1px dotted #c2cbe4;position:relative}.timeline .circle{margin:-25px auto 0;float:none}.timeline h1{padding-top:15px;float:none;padding-left:0}}.toolbar-menu{background-color:#fff;border-bottom:1px solid #ccc;border-top:1px solid #ccc;margin-bottom:25px}.toolbar-menu .breadcrumb{margin-bottom:0;padding-left:0;background:none}.toolbar-menu .breadcrumb li{padding-bottom:0;font-size:1.1em}.toolbar-menu .breadcrumb>li+li:before{content:" | "}.toolbar-menu .breadcrumb a:link,.toolbar-menu .breadcrumb a:visited{color:#2f2f2f}.toolbar-menu .breadcrumb a:hover{color:#f7941e}.toolbar-menu .breadcrumb a.active{color:#371e1d;font-weight:600}.toolbar-container-wrapper{background:transparent}.toolbar-row{padding:8px 0;font-size:12px;color:#fff;font-weight:300}.toolbar-row a{font-weight:300;color:#fff;text-decoration:none}.toolbar-row a:hover{color:#ccc}.toolbar-row a:visited{color:#fff}.toolbar-row ul{margin-bottom:0}.toolbar-row ul li:last-child{padding-right:0}.toolbar-row .toolbar-left-content span{font-size:18px}@media (max-width:767px){.toolbar-row .toolbar-left-content span{padding-top:10px;text-align:center;display:block}}@media (min-width:768px){.toolbar-row .toolbar-left-content span{border-left:5px solid #f7941e;padding-left:10px}}.toolbar-row .toolbar-left-content a{font-weight:700;color:#f7941e}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#3f7b96}.alternate-layout .toolbar-container-wrapper{background:#fff}.alternate-layout .toolbar-row,.alternate-layout .toolbar-row a{color:#404040}.alternate-layout .toolbar-row a:hover{color:#666}.alternate-layout .toolbar-row a:visited{color:#404040}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.block-box,.sideitem{background:#fff;color:#4c4d4e;margin:0 0 2em;padding:15px;border:1px solid #e0e0e0}.block-box h2,.block-box h3,.block-box h6,.sideitem h2,.sideitem h3,.sideitem h6{background:none;color:#4c4d4e;margin:0 0 10px;padding:0 0 10px;text-transform:inherit;font-weight:600;font-size:15px}.block-box h2 a:hover,.block-box h3 a:hover,.block-box h6 a:hover,.sideitem h2 a:hover,.sideitem h3 a:hover,.sideitem h6 a:hover{color:#4c4d4e}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0}.block-box .list-heading,.sideitem .list-heading{font-weight:600;margin-bottom:4px;font-size:15px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.block-heading{background:none repeat scroll 0 0 #3f7b96;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.brand-primary{color:#f7941e}.brand-secondary{color:#404040}.brand-tertiary{color:#3f7b96}.brand-quaternary,.brand-quinary{color:#efefef}.brand-success{color:#5cb85c}.brand-info{color:#3f7b96}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.blue{color:#00f}.darkblue{color:#009}.yellow{color:#ff0}.red{color:red}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-primary{background:#f7941e;color:#fff}.background-primary h2,.background-primary h3,.background-primary h4,.background-primary li,.background-primary p{color:inherit}.background-secondary{background:#404040;color:#fff}.background-secondary h2,.background-secondary h3,.background-secondary h4,.background-secondary li,.background-secondary p{color:inherit}.background-tertiary{background:#3f7b96;color:#fff}.background-tertiary h2,.background-tertiary h3,.background-tertiary h4,.background-tertiary li,.background-tertiary p{color:inherit}.background-quaternary{background:#efefef;color:#fff}.background-quaternary h2,.background-quaternary h3,.background-quaternary h4,.background-quaternary li,.background-quaternary p{color:inherit}.background-quinary{background:#efefef;color:#fff}.background-quinary h2,.background-quinary h3,.background-quinary h4,.background-quinary li,.background-quinary p{color:inherit}.background-bg-body{background:#f9f9f9}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-mid-grey{background:#e6e7e8}.background-grey{background:#ececec}.background-light-grey{background:#f1f1f1}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-blue{background:#3f7b96;color:#fff}.background-white{background:#fff}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}.label-purple{background-color:#f7941e}#novaContent.background-image-none{background-image:none}.table-striped>tbody>tr:nth-of-type(odd).background-orange,tr.background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.box-gray-border{border:1px solid #d6d6d6}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.border-grey-right{border-right:1px solid #ccc}.no-border{border:none!important}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing :after,.reset-box-sizing :before{-webkit-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.vertical-align{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (min-width:992px){.vertical-align-md{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.float-right{float:right}.float-left{float:left}.visible-thin{display:none!important}.col-lg-5-eclipse,.col-md-5-eclipse,.col-sm-5-eclipse,.col-xs-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:700;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:"\F00C"}.container-list{counter-reset:list;padding-left:55px}.container-list>.list-row{margin-top:12px;position:relative;min-height:3em}.container-list>.list-row:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:700;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(list);counter-increment:list;display:block}.container-list>.list-row>div:first-child{padding-left:.5em}.container-list>.list-row .no-wrap{white-space:nowrap}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:700;color:#969696}.list-checkmark a:hover{color:#f7941e}.list-padding li{padding-bottom:25px}.list-border-right li{border-right:1px solid}.list-border-right li:last-child{border:none}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.fa-li{top:.23em}.reset{margin:0}.padding-0,.reset{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-35{padding:35px}.padding-40{padding:40px}.padding-45{padding:45px}.padding-50{padding:50px}.padding-55{padding:55px}.padding-60{padding:60px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-bottom-35{padding-bottom:35px}.padding-bottom-40{padding-bottom:40px}.padding-bottom-45{padding-bottom:45px}.padding-bottom-50{padding-bottom:50px}.padding-bottom-55{padding-bottom:55px}.padding-bottom-60{padding-bottom:60px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-top-35{padding-top:35px}.padding-top-40{padding-top:40px}.padding-top-45{padding-top:45px}.padding-top-50{padding-top:50px}.padding-top-55{padding-top:55px}.padding-top-60{padding-top:60px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-left-35{padding-left:35px}.padding-left-40{padding-left:40px}.padding-left-45{padding-left:45px}.padding-left-50{padding-left:50px}.padding-left-55{padding-left:55px}.padding-left-60{padding-left:60px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.padding-right-35{padding-right:35px}.padding-right-40{padding-right:40px}.padding-right-45{padding-right:45px}.padding-right-50{padding-right:50px}.padding-right-55{padding-right:55px}.padding-right-60{padding-right:60px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-35{margin:35px}.margin-40{margin:40px}.margin-45{margin:45px}.margin-50{margin:50px}.margin-55{margin:55px}.margin-60{margin:60px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-bottom-35{margin-bottom:35px}.margin-bottom-40{margin-bottom:40px}.margin-bottom-45{margin-bottom:45px}.margin-bottom-50{margin-bottom:50px}.margin-bottom-55{margin-bottom:55px}.margin-bottom-60{margin-bottom:60px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-top-35{margin-top:35px}.margin-top-40{margin-top:40px}.margin-top-45{margin-top:45px}.margin-top-50{margin-top:50px}.margin-top-55{margin-top:55px}.margin-top-60{margin-top:60px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-7{margin-right:7px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-right-35{margin-right:35px}.margin-right-40{margin-right:40px}.margin-right-45{margin-right:45px}.margin-right-50{margin-right:50px}.margin-right-55{margin-right:55px}.margin-right-60{margin-right:60px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.margin-left-35{margin-left:35px}.margin-left-40{margin-left:40px}.margin-left-45{margin-left:45px}.margin-left-50{margin-left:50px}.margin-left-55{margin-left:55px}.margin-left-60{margin-left:60px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.margin-auto{margin:0 auto}.breadcrumbs-default-margin{margin-bottom:20px}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;vertical-align:middle}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0;-moz-transform:scale(.9999);border-color:#ececec transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent}.triangle.triangle-white{border-color:#f9f9f9 hsla(0,0%,98%,0) hsla(0,0%,98%,0) transparent}.box{padding:15px 10px;margin-bottom:10px;margin-top:1.5em}.blue_box{background-color:#114e68}.blue_box h3,.blue_box p{color:#fff}.uppercase{text-transform:uppercase}.fw-200{font-weight:200}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.emphasis,.fw-700{font-weight:700}.emphasis{color:#f7941e}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.underlined{text-decoration:underline}.small{font-size:10px}.big{font-size:20px}.font-size-large{font-size:58px}.text-highlight{background:#eee;padding:12px 24px}.white-space-normal{white-space:normal}.header-short-underline{font-size:18px;font-weight:700}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}a:visited{color:#af6e3d}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}.a-underline{text-decoration:underline}.a-underline:hover{text-decoration:none}blockquote{font-size:14px}.top-level-heading{background:#404040;position:relative;padding:20px;margin-bottom:30px;color:#fff}.top-level-heading:after{width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #404040;position:absolute;content:"";bottom:-20px;left:50%;margin-left:-20px}.heading-underline{position:relative;font-size:2em;text-transform:uppercase;font-weight:200;margin:50px 0 20px}.heading-underline:after{border-bottom:4px solid #f7941d;content:"";display:block;width:100px;margin:10px auto 0}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{margin-bottom:-55px}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#ececec;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table-layout-fixed{table-layout:fixed}.table.table-solstice th{background:#3f7b96;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(2n){background:#40bbdc}.deprecated #novaContent{background:url(../images/vendor/eclipsefdn-solstice-template/bg-deprecated.gif?3219c56285f22eddb0f5746aeca4d4fe) center 75px no-repeat!important}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.textfield-underline{border-top:none;border-left:none;border-right:none;border-bottom:1px solid inherit;background-color:transparent;border-radius:0;-webkit-box-shadow:none;box-shadow:none;margin:10px auto;color:inherit}.textfield-underline:-moz-placeholder,.textfield-underline::-moz-placeholder{color:inherit}.textfield-underline:-ms-input-placeholder{color:inherit}.textfield-underline::-webkit-input-placeholder{color:inherit}.hidden-label label.control-label{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.border-reset{border:0!important}@media (min-width:768px){#main-menu li>a{padding:0 0 2px;margin:10px 15px}#main-menu li>a:hover{border-bottom:1px solid #ccc;padding-bottom:1px}#main-menu li.dropdown.eclipse-more.open>a{color:#ccc}#main-menu li.dropdown.eclipse-more .dropdown-menu{background-color:#fff;right:15px;left:auto;border-radius:0;-webkit-box-shadow:none;box-shadow:none;border:none;background-clip:inherit;padding-top:0;outline:1px solid rgba(0,0,0,.15);outline-offset:-1px}#main-menu li.dropdown.eclipse-more .dropdown-menu:before{border-right:1px solid #f7941e;border-left:1px solid #f7941e;background-color:#f7941e;display:block;content:"";height:5px;width:100%;position:relative;top:-4px}#main-menu li.dropdown.eclipse-more .dropdown-menu p{color:#6b655f}#main-menu li.dropdown.eclipse-more .dropdown-menu a{color:#423f3b}#main-menu li.dropdown.eclipse-more .dropdown-menu a:hover{color:#6b655f;border:none}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box{border-top:none!important;border-left:none!important;border-right:none!important;border-bottom:1px solid inherit!important;background-color:transparent!important;border-radius:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;margin:10px auto!important;color:inherit!important;width:95%;margin:0!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box:-moz-placeholder,#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box::-moz-placeholder{color:inherit!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box:-ms-input-placeholder{color:inherit!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box::-webkit-input-placeholder{color:inherit!important}#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box-focus,#main-menu li.dropdown.eclipse-more .dropdown-menu .gsc-input-box:hover{border-top:none!important;border-left:none!important;border-right:none!important}.toolbar-row a{padding-bottom:1px}.toolbar-row a:hover{border-bottom:1px solid #ccc}}#header-row{padding-bottom:20px}.header-wrapper{background:#404040 100% 0 no-repeat;background-size:cover}.header-wrapper .featured-jumbotron{background-color:transparent}.header-default-bg-img{background-image:url(../images/vendor/eclipsefdn-solstice-components/landing-well/eclipse_home_bg.jpg?64547867c5e4ec0fcf669837305dc7a5)}.header-alternate-bg-img-1{background-image:url(../images/vendor/eclipsefdn-solstice-components/landing-well/eclipse_alternate_bg-1.jpg?1d805119502c5489dbed5cbc08f0c656)}.alternate-layout header{background-color:#fff}.alternate-layout #main-menu li.dropdown.eclipse-more.open>a{color:#35322f}#back-to-top a{border-top:none;padding:6px 15px;text-align:left;width:auto;float:left;margin-left:15px}@media (max-width:767px){#main-menu.navbar{border:0;border-bottom:none}#btn-call-for-action{padding-top:10px}#btn-call-for-action a{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}}@media (max-width:991px){#btn-call-for-action{padding-top:10px}#btn-call-for-action a{padding:5px 8px;font-size:12px;line-height:1.5;border-radius:0}}#adBlock,.cse .gsc-control-cse,.gsc-control-cse{background-color:#f9f9f9!important;border:none!important}.dropdown-menu .gsc-input-box{border-top:none!important;border-left:none!important;border-right:none!important;border-bottom:1px solid inherit!important;background-color:transparent!important;border-radius:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;margin:10px auto!important;color:inherit!important;width:95%;margin:0!important}.dropdown-menu .gsc-input-box:-moz-placeholder,.dropdown-menu .gsc-input-box::-moz-placeholder{color:inherit!important}.dropdown-menu .gsc-input-box:-ms-input-placeholder{color:inherit!important}.dropdown-menu .gsc-input-box::-webkit-input-placeholder{color:inherit!important}.dropdown-menu .gsc-input-box-focus,.dropdown-menu .gsc-input-box:hover{border-top:none!important;border-left:none!important;border-right:none!important;border-bottom:1px solid #d9d9d9!important}.gsc-search-button-v2{border:1px solid #f7941e!important;border-radius:0!important;-moz-border-radius:0!important;-webkit-border-radius:0!important;background-color:#f7941e!important;background-image:-webkit-gradient(linear,left top,left bottom,from(#f7941e),to(#f7941e))!important;background-image:linear-gradient(180deg,#f7941e,#f7941e)!important}.main-page-title{padding:20px 0 0}.main-page-title #main-sidebar{position:absolute;width:100%;padding-left:15px;padding-right:15px}#main-sidebar{color:#fff;position:relative}#main-sidebar .main-sidebar-html-block{background:#3f7b96;padding:20px;text-align:center}#main-sidebar .ul-left-nav{background:#3f7b96;padding:15px;position:relative;margin-bottom:0}#main-sidebar .ul-left-nav>li.separator{border:none}@media (min-width:992px){#main-sidebar:after{display:block;content:"";width:100%;height:40px;-webkit-clip-path:polygon(0 0,0 100%,100% 0);clip-path:polygon(0 0,0 100%,100% 0);position:relative;bottom:0;background:#3f7b96}}#main-sidebar a,#main-sidebar a:hover{color:#fff}#main-sidebar .separator{font-size:18px;font-weight:400}#main-sidebar .separator:hover{text-decoration:none}#main-sidebar li{border-bottom:1px solid #5297b6;padding-bottom:10px;margin-bottom:10px}#main-sidebar li:last-child{border-bottom:none}.sideitem h6{border-bottom:1px solid #989a9b}.sideitem ul{margin-left:10px}@media (min-width:992px){.main-sidebar-default-margin{margin-top:-20px}}@media (max-width:767px){footer#solstice-footer{text-align:center}footer#solstice-footer .nav{margin-left:0}}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/stylesheets/styles.css b/eclipse.org-common/themes/solstice/public/stylesheets/styles.css
deleted file mode 100644
index c8875b8..0000000
--- a/eclipse.org-common/themes/solstice/public/stylesheets/styles.css
+++ /dev/null
@@ -1,24 +0,0 @@
-/*!
- * Bootstrap v3.3.6 (http://getbootstrap.com)
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#2c2255;text-decoration:none}a:hover,a:focus{color:#100c1e;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#2c2255}a.text-primary:hover,a.text-primary:focus{color:#191331}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#2c2255}a.bg-primary:hover,a.bg-primary:focus{background-color:#191331}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#2f2f2f}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#2f2f2f;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#2c2255;border-color:#231b43}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#191331;border-color:#000}.btn-primary:hover{color:#fff;background-color:#191331;border-color:#0c0917}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#191331;border-color:#0c0917}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#0c0917;border-color:#000}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#2c2255;border-color:#231b43}.btn-primary .badge{color:#2c2255;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#afbbdc;border-color:#9dacd4}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#8c9dcc;border-color:#4a63a8}.btn-info:hover{color:#fff;background-color:#8c9dcc;border-color:#7388c2}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#8c9dcc;border-color:#7388c2}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#7388c2;border-color:#4a63a8}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#afbbdc;border-color:#9dacd4}.btn-info .badge{color:#afbbdc;background-color:#fff}.btn-warning{color:#fff;background-color:#f7941e;border-color:#f38809}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#da7a08;border-color:#784304}.btn-warning:hover{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#b86707;border-color:#784304}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f7941e;border-color:#f38809}.btn-warning .badge{color:#f7941e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#2c2255;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#100c1e;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#2c2255}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#2f2f2f;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:transparent}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:transparent;border-color:#2c2255}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#2c2255}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important;float:left}.navbar-right{float:right !important;float:right;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#fff}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#2c2255;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#100c1e;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#2c2255;border-color:#2c2255;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#2c2255}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#191331}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#afbbdc}.label-info[href]:hover,.label-info[href]:focus{background-color:#8c9dcc}.label-warning{background-color:#f7941e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#da7a08}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#2c2255;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#2c2255}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#2c2255;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#afbbdc}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f7941e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#2c2255;border-color:#2c2255}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#8979ca}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#f5f5f5;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid transparent;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:-1px;border-top-right-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1px;border-bottom-right-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid transparent}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid transparent}.panel-default{border-color:transparent}.panel-default>.panel-heading{color:#fff;background-color:#afbbdc;border-color:transparent}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:transparent}.panel-default>.panel-heading .badge{color:#afbbdc;background-color:#fff}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:transparent}.panel-primary{border-color:#2c2255}.panel-primary>.panel-heading{color:#fff;background-color:#2c2255;border-color:#2c2255}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2c2255}.panel-primary>.panel-heading .badge{color:#2c2255;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2c2255}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}/*!
- *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
- *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.4.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}h1,h2,h3,h4,h5,h6{font-weight:300;color:#2c2255}h1{margin-bottom:25px}a{font-weight:bold}.font-size-large{font-size:58px}li{padding-bottom:7px}ul ul{margin-top:5px}.uppercase{text-transform:uppercase}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.fw-700{font-weight:700}.emphasis{color:#f7941e;font-weight:700}.small{font-size:10px}.text-highlight{background:#eee;padding:12px 24px}blockquote{font-size:14px}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:bold;color:#969696}.list-checkmark a:hover{color:#f7941e}.block-heading{background:none repeat scroll 0 0 #afbbdc;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.fa-li{top:.23em}.list-padding li{padding-bottom:25px}.anchor{display:block;position:relative;top:-14px;visibility:hidden;z-index:9999}.scrollup{width:40px;height:40px;opacity:.3;position:fixed;bottom:50px;right:15px;display:none;text-indent:-9999px;background:url('../images/components/back-to-top/back-to-top.png') no-repeat}.scrollup:focus{outline:none}#back-to-top{margin:0;padding:0}#back-to-top a{border-top:1px solid #808080;background-color:#666;color:#fff;display:block;padding:4px 0 3px;text-align:center;width:100%;margin:0}#back-to-top a:hover,#back-to-top a:focus{text-decoration:none;background:#dfdfe4;color:#4a4a4a}.block-box,.sideitem{background:#f6f6f6;color:#202020;margin-bottom:2em;padding-bottom:5px}.block-box h2,.sideitem h2,.block-box h3,.sideitem h3,.block-box h6,.sideitem h6{background:#afbbdc;color:#fff;margin:0 0 15px 0;padding:15px 20px;text-transform:uppercase;font-weight:700;font-size:15px}.block-box h2 a:hover,.sideitem h2 a:hover,.block-box h3 a:hover,.sideitem h3 a:hover,.block-box h6 a:hover,.sideitem h6 a:hover{color:#fff}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0 15px 15px}.block-box .list-heading,.sideitem .list-heading{font-weight:600;margin-bottom:4px;font-size:16px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.default-breadcrumbs{background:url('../images/template/breadcrumbs-large-bg.jpg') center #1b1732;background-size:100%;color:#fff;text-align:center;border-bottom:none}.default-breadcrumbs p{color:#bebebe;max-width:450px;margin:30px auto 20px auto;font-weight:400}.default-breadcrumbs p:last-child{padding-bottom:1.5em}.default-breadcrumbs .btn{min-width:150px;margin-right:10px;margin-left:10px}.default-breadcrumbs .breadcrumb{background:none;margin:15px 0 14px 0;padding-left:0;padding-bottom:0;text-align:left;text-transform:uppercase}.default-breadcrumbs .breadcrumb li{padding-bottom:3px}.default-breadcrumbs .breadcrumb .active{color:#fff}.default-breadcrumbs .breadcrumb a{font-weight:600;text-decoration:none}.default-breadcrumbs .breadcrumb a:link,.default-breadcrumbs .breadcrumb a:visited{color:#ababab}.default-breadcrumbs .breadcrumb a:hover{color:#f7941e}.discover-search{background:#efefef}.discover-search h2{color:#545454;margin-top:1.3em;padding-bottom:0;margin-bottom:.1em}.discover-search .form-search-projects{margin-bottom:1.4em}.discover-search>.container{min-height:267px}@media (min-width:992px){.discover-search>.container{background:url("../images/components/discover-search/discover-search-bg.jpg") right no-repeat}}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none solid;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.drag_installbutton{position:relative;clear:both;display:inline}.drag_installbutton .tooltip{opacity:1;display:none;background:url("../images/components/drag-drop/mpcdrag.png") no-repeat scroll 110% 60% #a285c5;position:absolute;top:0;left:64px;text-align:left;width:325px;color:#000;border:1px solid #ae00ce;z-index:99;padding:5px 50px 5px 5px}.drag_installbutton .tooltip h3{margin-top:0;color:#000}.drag_installbutton .tooltip.show-right{left:-335px}.drag_installbutton a.drag:hover .tooltip{display:block}.drag_installbutton.drag_installbutton_v2 .btn:hover{cursor:move}.drag_installbutton.drag_installbutton_v2 .tooltip{left:100px;margin-top:-6px;border:1px solid #777;background-color:#eee}.drag_installbutton.drag_installbutton_v2 .tooltip h3{font-size:18px}.gsc-control-cse .gsc-table-result{font-family:inherit}.gsc-control-cse .gsc-input-box{height:inherit}.gsc-input-box{-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important;position:relative;top:-1px;transition:border-color .15s ease-in-out 0s}.gsc-input-box input.gsc-input{font-size:12px;height:25px !important;background-position:0 5px !important;background-color:transparent !important}.gsc-input-box:hover{border-color:#f7941e}.gsc-input-box-hover{border:1px;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.gsc-search-box-tools .gsc-search-box .gsc-input{padding-right:0 !important}input.gsc-search-button{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important;font-size:12px !important;margin-left:0 !important;position:relative;left:-1px;padding:6px 15px !important}.gsib_a{padding-top:0 !important}.gsst_a .gscb_a{color:#f7941e !important;position:relative;top:2px}.header-row{padding:4px 6px}.header-row h2{margin:.6em 0;font-size:1.4em;color:#fff}.header-row.pink{background:#fad9d9;border-top:1px solid #808080;border-bottom:1px solid #808080}.header_nav{padding-bottom:35px}.header_nav img{margin:20px auto}.header_nav ul{background:#f4f4f4;padding:0;text-transform:uppercase;color:#7b778e;margin:0;font-size:16px}.header_nav ul li{list-style:none;clear:right;padding-bottom:0}.header_nav ul li:nth-child(odd){clear:left}.header_nav ul a{padding:20px;display:block;font-weight:600}.header_nav ul a:active,.header_nav ul a:visited,.header_nav ul a:link{color:#7b778e}.header_nav ul a:hover{color:#f7941e}.header_nav ul a i{font-size:30px;padding:4px 0 0 0;text-align:center;font-weight:700}.header_nav ul span{padding:0 0 0 5px}.header_nav ul span p{font-size:11px;text-transform:none;font-weight:400;margin:0}.highlight{overflow:hidden;position:relative}.highlight .container{padding:4em 0 3em 0;position:relative}@media (min-width:992px){.highlight .container{padding:7em 0 5em 0}}.highlight h1{color:#333}.highlight p,.highlight li{font-size:1.1em}.highlight h1{margin-top:0;margin-bottom:.5em}.highlight .triangle{position:absolute;right:0;top:0}.highlight .list-inline{padding-top:1.7em}.highlight.background-charcoal{background:#252525;color:#7d7d7d}.highlight.background-charcoal h1{color:#7d7d7d}.highlight-img img{margin:auto}.highlight-left .triangle{right:auto;left:-115px}.icon-sidebar-menu h3{margin-top:0;font-size:16px;margin-bottom:5px}.icon-sidebar-menu p{font-size:13px}.icon-sidebar-menu .circle-icon{position:relative;width:80px;height:80px;display:block}.icon-sidebar-menu .circle-icon i{font-size:37px;position:absolute;left:25px;top:20px}.landing-well{background-repeat:no-repeat;background-position:center middle;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-attachment:fixed;background-color:#1b1732;background-image:url("../images/components/landing-well/background.jpg");border-top:1px solid #f7941e;border-bottom:1px solid #f7941e;color:#fff;padding:30px 0;text-align:center}.landing-well h1{font-size:3.5em;margin-bottom:10px;font-weight:600}.landing-well h1 a{color:#fff}.landing-well h1 a:hover{color:#f7941e}.landing-well .circle h3{color:#fff}.landing-well p{font-size:1.2em;font-weight:100}.landing-well p a{color:#f7941e;font-weight:600;text-decoration:none}.landing-well p a:hover{color:#fff}.landing-well .landing-well-action{text-align:center}.landing-well .list-glyphicon{margin:2em 0 0 0;padding-bottom:1em}.landing-well .list-glyphicon img{height:110px;width:110px}@media (min-width:1200px){.landing-well li:last-child{margin-top:-20px}}@media (min-width:1200px){.landing-well{text-align:left}.landing-well h1{margin-top:.76em;padding-top:1.3em}.landing-well .list-glyphicon{margin-left:93px}}@media (min-width:992px){.landing-well .list-glyphicon img{height:160px;width:160px}.landing-well .circle{height:160px;margin:0 5px;font-size:44px;width:160px}.landing-well .circle h3{font-size:16px;top:3.4em;margin-left:5px;width:74%}}.news-list{padding-bottom:3em}.news-list h2{background:#f7941e;color:#fff;text-transform:uppercase;text-align:center;font-size:1.2em;padding:8px 8px;font-weight:600;margin-top:2.1em}.news-list h2 a{color:#fff}.news-list h2 a:hover{color:#3a3a3a}.news-list .link-rss-feed{float:right;font-size:.8em;margin-top:.2em}.news-list .news_item_header{display:none}.news_item_header{padding:0 0 2em 0}.news_item{border-bottom:1px solid #e8e8e8;margin-bottom:20px;padding-bottom:10px}.news_item_date{color:#f7941e}.news_item_title h3{font-size:1.3em;margin-top:.2em}.news_item_title h3 a{font-weight:600;color:#3a3a3a}.news_item_title h3 a:hover{color:#cc7105}.news_item_description{font-weight:300}.news_view_all{color:#8e8e8e}.news_view_all a{color:#f7941e;font-weight:bold}.news_view_all a:hover{color:#604200}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:bold;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:""}.promoted-plugin{background-color:#fff}.promoted-plugin a:hover{text-decoration:none ! important}.promoted-plugin .drag{display:block;border:1px solid #e0e0e0}.promoted-plugin .drag:hover{background:#fbf7fb;cursor:move}.promoted-plugin .drag:hover .tooltip{display:block}.promoted-plugin .header{background:#f7941e none repeat scroll 0 0;display:block;padding:0 10px;text-align:center}.promoted-plugin .header h3{padding:8px 0;color:#fff;font-size:18px;margin:0}.promoted-plugin .content{padding:10px 0;display:block}.promoted-plugin .content .pp-content{font-size:12px;margin-bottom:0;line-height:1.5;padding:0 5px}.promoted-plugin .content .pp-image{padding:0 5px 0 10px}.promoted-plugin .content .pp-title{display:block;clear:both}.promoted-plugin .content .pp-text{font-weight:normal}.promoted-plugin .download{background-color:#333;text-align:center;color:#fff;display:block;font-weight:100}.promoted-plugin .download .download-icon{padding-left:0}.promoted-plugin .download .download-text{padding-left:0;padding-top:8px}.promoted-plugin .download .fa{font-size:18px;padding:10px;background-color:#282828}.promoted-plugin .download a{color:#fff;font-weight:normal}.promoted-plugin .download a:hover{color:#fff}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,0.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,0.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;line-height:140px;vertical-align:middle;padding:2em}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0 300px;-moz-transform:scale(.9999);border-color:#f5f5f5 transparent transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent transparent}.triangle.triangle-white{border-color:#fff rgba(255,255,255,0) rgba(255,255,255,0) transparent}.step-by-step .intro{font-weight:300}.step-by-step .intro h2{margin-top:1.5em}.step-by-step .step-by-step-timeline{text-align:center;margin-top:1.5em}.step-by-step .step-by-step-timeline img{margin-bottom:1.35em;margin-top:1.4em}.step-by-step .step-by-step-timeline .btn{font-size:.85em}@media (max-width:1199px){.step-by-step .step-by-step-timeline .btn{font-size:.8em}}.tabs-sidebar .nav{margin-top:15px}.tabs-sidebar .nav img{padding-top:13px}.tabs-sidebar .nav .active img.desaturate{-webkit-filter:grayscale(0);filter:grayscale(0)}.tabs-sidebar .nav li.active a{background:none;border:1px solid #cbd3e8}.tabs-sidebar .nav li.active a:after{content:'';position:absolute;left:100%;top:50%;margin-top:-13px;display:block;width:8px;height:21px;background:url('../images/components/tabs-sidebar/tabs-sidebar-active.png') no-repeat}.tabs-sidebar .nav li a{border:1px solid #fff}.tabs-sidebar .nav li a:hover,.tabs-sidebar .nav li a:focus{outline:none;border:1px solid #cbd3e8}.tabs-sidebar .tab-content .row{padding:1em;border-bottom:1px solid #eee}.tabs-sidebar .tab-content p{font-size:13.5px}.timeline{margin:35px auto}.timeline .gs-item{padding-bottom:4em}.timeline .circle{background:#c3efff;color:#fff;border:2px solid #fff;height:47px;width:47px;font-size:20px;float:left;padding-top:6px;padding-left:1px;font-weight:700}.timeline .two .circle{background:#cbdeff}.timeline .three .circle{background:#d2d7ec}.timeline .four .circle{background:#afbbdc}.timeline h1{color:#afbbdc;font-size:2em;text-align:left;padding:9px 0 0 62px;margin-bottom:24px}.timeline ul{padding-left:1px}.timeline li{margin-bottom:1em;padding-left:14px;list-style:none}.timeline li:before{content:"\00BB";color:#f7941e;margin-left:-16px;margin-right:10px;display:block;float:left}@media (min-width:992px){.timeline{border-top:1px dotted #c2cbe4;position:relative}.timeline .circle{margin:-25px auto 0 auto;float:none}.timeline h1{padding-top:15px;float:none;padding-left:0}}.toolbar-menu{background-image:-webkit-linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-image:-o-linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-image:linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-repeat:no-repeat;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffdbdbdb', GradientType=0);margin-bottom:25px}.toolbar-menu .breadcrumb{margin-bottom:0;padding-left:0;background:none}.toolbar-menu .breadcrumb li{padding-bottom:0}.toolbar-menu .breadcrumb>li+li:before{content:" | "}.toolbar-menu .breadcrumb a:link,.toolbar-menu .breadcrumb a:visited{color:#2f2f2f;font-weight:600}.toolbar-menu .breadcrumb a:hover{color:#f7941e}.toolbar-menu .breadcrumb a.active{color:#371e1d;font-weight:bold}.btn{text-transform:uppercase;font-weight:700}.btn-white{background:#fff;border:1px solid #0b0a0f;color:#0b0a0f}.btn-white:hover{background:transparent}.btn-huge{font-size:1.1em;padding:10px 35px}.btn-huge i{margin-right:2px}.btn-transparent:visited,.btn-transparent:link{background:transparent;border-color:#fff;color:#fff;font-size:11px;padding:7px 15px}.btn-transparent:hover,.btn-transparent:active{color:#2c2255;border-color:#2c2255;background:#ccc}.btn-transparent .caret{margin-left:6px}.media{padding-bottom:2em}.media .pull-left{margin-right:30px}.media h4.media-heading{font-size:27px}.media p{font-size:14px;padding-bottom:0}.media .emphasis{margin-bottom:2px;padding-bottom:0}.solstice-modal .modal-content{padding:10px}.solstice-modal .modal-title{font-weight:600;font-size:22px}.solstice-modal .modal-content-container{border:1px solid #eee;padding:0 20px}.nav-tabs>li{padding-bottom:0}.nav-tabs>li a:hover{background:#f7941e;color:#fff}.tab-content{padding:10px;border:1px solid #ddd;border-top:none;background:#fff}.tab-pane{padding:.5em 1em}.tab-pane .page-header{margin-top:10px}/*!
- * Yamm!3
- * Yet another megamenu for Bootstrap 3
- * 
- * http://geedmo.github.com/yamm3
- */.yamm .nav,.yamm .collapse,.yamm .dropup,.yamm .dropdown{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .nav.navbar-right .dropdown-menu{left:auto;right:0}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}.toolbar-row{padding:8px 0 0 0;font-size:12px;color:#666;font-weight:300}.toolbar-row a{font-weight:300;padding-left:4px;color:#666}.toolbar-row a:hover{color:#f7941e}.toolbar-row ul{margin-bottom:0}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#afbbdc}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #ccc}@media (min-width:768px){.page-header-logo-bordered{border-bottom:1px solid #ccc}}#header-right{text-align:right}.thin-header .visible-thin{display:block !important}.logo-eclipse-default-mobile{max-height:50px}#custom-search-form{height:34px}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#efeef2;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#2c2255;height:3px}#main-menu .nav{margin:0;background:#2c2255}#main-menu .nav>li{border:1px solid #fafafb}#main-menu .nav>li.open .dropdown-toggle{color:#000;background:#efeef2}#main-menu .nav>li>a{color:#fff;text-transform:uppercase}#main-menu .nav>li .dropdown-menu{background:#2a2a2c;padding:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#f7941e;color:#fff}#main-menu .nav>li .dropdown-menu>li.active a:hover,#main-menu .nav>li .dropdown-menu>li.active a:focus{color:#000;background:#f5f5f5}#main-menu .nav>li .dropdown-menu>li>a{padding:5px 20px 5px 30px;color:#fff}#main-menu .nav>li .dropdown-menu>li>a:hover,#main-menu .nav>li .dropdown-menu>li>a:focus{color:#000;background:#f5f5f5}}@media (min-width:768px){#main-menu{font-size:.9em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#787878}#main-menu li a:hover,#main-menu li a:active{background:none;color:#f7941e}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:initial;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:initial;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:hover{color:#f7941e}#main-menu .dropdown-menu a:active{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active{color:#f7941e;background:none}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.separator,.ul-left-nav>li.about{padding-left:0;font-weight:bold}.ul-left-nav>li.separator img,.ul-left-nav>li.about img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#f7941e}main{position:relative;padding-bottom:2em;background:transparent}footer#solstice-footer{background:url("../images/template/footer-bg.jpg") no-repeat center center #242426;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding-top:3.5em;color:#a8a7a9;padding-bottom:26px;font-size:14px;border-top:0}footer#solstice-footer h2{color:#fff;padding:0 0 7px 0;margin-top:0;font-weight:300;font-size:21px;border-bottom:2px solid #6e6d71;max-width:80%}footer#solstice-footer a:link,footer#solstice-footer a:active,footer#solstice-footer a:visited{color:#a8a7a9;font-weight:400}footer#solstice-footer a:hover{color:#f7941e}footer#solstice-footer .logo-eclipse-white{margin-bottom:15px}footer#solstice-footer .nav{margin-left:-15px;margin-bottom:25px}footer#solstice-footer .nav a{padding:6px 15px 6px 20px}footer#solstice-footer .nav a:hover{background:none;color:#f7941e}footer#solstice-footer li{padding-bottom:0}@media (max-width:991px){footer#solstice-footer #copyright-text,footer#solstice-footer #footer-other{text-align:left;clear:both}}@media (max-width:450px){footer#solstice-footer section.col-xs-11,footer#solstice-footer section.col-xs-14{position:relative;float:left;width:95.83333333%;min-height:1px;padding-left:15px;padding-right:15px}}@media (min-width:451px) and (max-width:767px){footer#solstice-footer #footer-useful-links{clear:left}footer#solstice-footer #copyright{clear:both}}#copyright{padding-top:15px}#copyright img{float:left;margin-top:10px;margin-right:15px;clear:both}#copyright-text{padding-top:21px;text-align:right}.social-media{margin-top:57px;font-size:2.3em}.social-media a:hover{color:#f7941e}#footer-eclipse-foundation,#footer-legal,#footer-useful-links,#footer-other{z-index:99}.footer-other-working-groups{font-weight:300;font-size:11px}.footer-other-working-groups .social-media{margin-top:20px}.footer-other-working-groups .img-responsive{padding-right:20px;max-width:235px}.footer-other-working-groups .footer-working-group-col{padding:55px 0 0 0}@media (min-width:992px){.footer-other-working-groups{background:url('../images/template/footer-working-group-separator.png') center repeat-y}.footer-other-working-groups .img-responsive{max-width:100%;padding-right:30px}.footer-other-working-groups .footer-working-group-col{padding:0}}main #bigbuttons{padding-top:1.65em;padding-bottom:2.2em;min-height:1px;padding-left:15px;padding-right:15px;text-align:center;position:relative;top:auto;left:auto}@media (min-width:768px){main #bigbuttons{float:left;width:41.66666667%}}@media (min-width:768px){main #bigbuttons{margin-left:58.33333333%}}@media (min-width:992px){main #bigbuttons{float:left;width:62.5%}}@media (min-width:992px){main #bigbuttons{margin-left:37.5%}}@media (min-width:1200px){main #bigbuttons{float:left;width:66.66666667%}}@media (min-width:1200px){main #bigbuttons{margin-left:25%}}main #bigbuttons h3{display:none}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons ul{padding-left:0;list-style:none;margin-left:-5px}main #bigbuttons ul>li{display:inline-block;padding-left:5px;padding-right:5px}main #bigbuttons ul li{background:none}@media (min-width:768px){main #bigbuttons ul li{float:right}}main #bigbuttons a{position:relative;margin:0;top:auto;left:auto}main #bigbuttons a:hover{text-decoration:none}div#novaContent{background-position:left top;padding-top:0}@media (max-width:767px){div#novaContent{background-image:none}}@media (min-width:1200px){div#novaContent{background-position:center top}}.deprecated #novaContent{background:url("../images/template/bg-deprecated.gif") center 75px no-repeat ! important}#midcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px;padding-right:30px}@media (min-width:992px){#midcolumn{float:left;width:58.33333333%}}#midcolumn #midcolumn{width:100%;padding:0}#midcolumn.no-right-sidebar{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){#midcolumn.no-right-sidebar{float:left;width:83.33333333%}}#midcolumn.no-left-nav{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){#midcolumn.no-left-nav{float:left;width:75%}}main #rightcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){main #rightcolumn{float:left;width:25%}}@media print{.sideitem,#copyright{padding-left:0;padding-right:0}main{padding-bottom:0;padding-top:0}#solstice-footer,#copyright,#header-row{padding-top:0}}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.float-right{float:right}.float-left{float:left}.padding-top-0{padding-top:0}.padding-bottom-0{padding-bottom:0}.padding-top-5{padding-top:5px}.padding-bottom-5{padding-bottom:5px}.padding-top-10{padding-top:10px}.padding-bottom-10{padding-bottom:10px}.padding-top-15{padding-top:15px}.padding-bottom-15{padding-bottom:15px}.padding-top-20{padding-top:20px}.padding-bottom-20{padding-bottom:20px}.padding-top-25{padding-top:25px}.padding-bottom-25{padding-bottom:25px}.margin-top-0{margin-top:0}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-top-5{margin-top:5px}.margin-bottom-10{margin-bottom:10px}.margin-top-10{margin-top:10px}.margin-bottom-15{margin-bottom:15px}.margin-top-15{margin-top:15px}.margin-bottom-20{margin-bottom:20px}.margin-top-20{margin-top:20px}.margin-bottom-25{margin-bottom:25px}.margin-top-25{margin-top:25px}.margin-right-5{margin-right:5px}.margin-left-5{margin-left:5px}.margin-right-10{margin-right:10px}.margin-left-10{margin-left:10px}.margin-right-15{margin-right:15px}.margin-left-15{margin-left:15px}.margin-right-20{margin-right:20px}.margin-left-20{margin-left:20px}.margin-right-25{margin-right:25px}.margin-left-25{margin-left:25px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.reset{padding:0;margin:0}.visible-thin{display:none !important}.orange{color:#f7941e}.yellow{color:yellow}.red{color:red}.green{color:green}.gray-light{color:#777}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-grey{background:#f5f5f5}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-blue{background:#afbbdc;color:#fff}.background-white{background:#fff}#novaContent.background-image-none{background-image:none}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;-moz-transition:opacity .15s ease-in-out;-ms-transition:opacity .15s ease-in-out;-o-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{padding-bottom:0;margin-bottom:-28px}.table-layout-fixed{table-layout:fixed}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.col-xs-5-eclipse,.col-sm-5-eclipse,.col-md-5-eclipse,.col-lg-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.donation-button{padding-top:.75em;padding-bottom:.75em;padding-left:3.5em;padding-right:3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:hover,.btn-simple:active{border:1px solid #777;background:#eee}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing *:before,.reset-box-sizing *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px 5px}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.no-border{border:none ! important}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table.table-solstice th{background:#afbbdc;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(even){background:#40bbdc}.vertical-align{display:flex;align-items:center}/*!
- * BootstrapValidator (http://bootstrapvalidator.com)
- * The best jQuery plugin to validate form fields. Designed to use with Bootstrap 3
- *
- * @version     v0.5.3, built on 2014-11-05 9:14:18 PM
- * @author      https://twitter.com/nghuuphuoc
- * @copyright   (c) 2013 - 2014 Nguyen Huu Phuoc
- * @license     Commercial: http://bootstrapvalidator.com/license/
- *              Non-commercial: http://creativecommons.org/licenses/by-nc-nd/3.0/
- */
-
-.bv-form .help-block{margin-bottom:0}.bv-form .tooltip-inner{text-align:left}.nav-tabs li.bv-tab-success>a{color:#3c763d}.nav-tabs li.bv-tab-error>a{color:#a94442}.bv-form .bv-icon-no-label{top:0}.bv-form .bv-icon-input-group{top:0;z-index:100}#header-left{padding-top:15px;padding-bottom:10px}#header-right{padding-top:25px}#btn-call-for-action{padding-bottom:0;padding-top:7px}#main-menu-wrapper{clear:left}.thin-header #header-left{padding-top:0;padding-bottom:10px}.thin-header #main-menu-wrapper{padding-top:2px;clear:none}footer#solstice-footer .logo-eclipse-white{max-width:161px}@media (min-width:1200px){#main-menu li a{margin-right:21px}}@media (min-width:992px){#main-menu li a{margin-right:10px}}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/stylesheets/styles.min.css b/eclipse.org-common/themes/solstice/public/stylesheets/styles.min.css
index 2ec0c0d..e4c83d2 100644
--- a/eclipse.org-common/themes/solstice/public/stylesheets/styles.min.css
+++ b/eclipse.org-common/themes/solstice/public/stylesheets/styles.min.css
@@ -1,16 +1,16 @@
 /*!
+ *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}/*!
  * Bootstrap v3.3.6 (http://getbootstrap.com)
  * Copyright 2011-2015 Twitter, Inc.
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#2c2255;text-decoration:none}a:hover,a:focus{color:#100c1e;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#2c2255}a.text-primary:hover,a.text-primary:focus{color:#191331}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#2c2255}a.bg-primary:hover,a.bg-primary:focus{background-color:#191331}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#2f2f2f}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#2f2f2f;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#2c2255;border-color:#231b43}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#191331;border-color:#000}.btn-primary:hover{color:#fff;background-color:#191331;border-color:#0c0917}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#191331;border-color:#0c0917}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#0c0917;border-color:#000}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#2c2255;border-color:#231b43}.btn-primary .badge{color:#2c2255;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#afbbdc;border-color:#9dacd4}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#8c9dcc;border-color:#4a63a8}.btn-info:hover{color:#fff;background-color:#8c9dcc;border-color:#7388c2}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#8c9dcc;border-color:#7388c2}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#7388c2;border-color:#4a63a8}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#afbbdc;border-color:#9dacd4}.btn-info .badge{color:#afbbdc;background-color:#fff}.btn-warning{color:#fff;background-color:#f7941e;border-color:#f38809}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#da7a08;border-color:#784304}.btn-warning:hover{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#b86707;border-color:#784304}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f7941e;border-color:#f38809}.btn-warning .badge{color:#f7941e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#2c2255;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#100c1e;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#2c2255}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#2f2f2f;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#2c2255}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#2c2255}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important;float:left}.navbar-right{float:right !important;float:right;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#fff}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#2c2255;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#100c1e;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#2c2255;border-color:#2c2255;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#2c2255}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#191331}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#afbbdc}.label-info[href]:hover,.label-info[href]:focus{background-color:#8c9dcc}.label-warning{background-color:#f7941e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#da7a08}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#2c2255;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#2c2255}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#2c2255;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#afbbdc}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f7941e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#2c2255;border-color:#2c2255}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#8979ca}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#f5f5f5;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid transparent;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:-1px;border-top-right-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1px;border-bottom-right-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid transparent}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid transparent}.panel-default{border-color:transparent}.panel-default>.panel-heading{color:#fff;background-color:#afbbdc;border-color:transparent}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:transparent}.panel-default>.panel-heading .badge{color:#afbbdc;background-color:#fff}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:transparent}.panel-primary{border-color:#2c2255}.panel-primary>.panel-heading{color:#fff;background-color:#2c2255;border-color:#2c2255}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2c2255}.panel-primary>.panel-heading .badge{color:#2c2255;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2c2255}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}/*!
- *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
- *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6{font-weight:300;color:#2c2255}h1{margin-bottom:25px}a{font-weight:bold}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}.font-size-large{font-size:58px}ul ul{margin-top:5px}.uppercase{text-transform:uppercase}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.fw-700{font-weight:700}.emphasis{color:#f7941e;font-weight:700}.small{font-size:10px}.text-highlight{background:#eee;padding:12px 24px}blockquote{font-size:14px}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:bold;color:#969696}.list-checkmark a:hover{color:#f7941e}.block-heading{background:none repeat scroll 0 0 #afbbdc;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.fa-li{top:.23em}.list-padding li{padding-bottom:25px}.header-short-underline{font-size:18px;font-weight:bold}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}.underlined{text-decoration:underline}.ad-eclipsecon-schedule a{font-weight:300}.ad-eclipsecon-schedule>thead>tr>th{border-color:#cecece}.ad-eclipsecon-schedule>tbody>tr>th,.ad-eclipsecon-schedule>tbody>tr>td{border:none}.ad-eclipsecon-schedule>tbody>tr:nth-of-type(odd){background-color:#e8e8e8}.ad-eclipsecon-schedule-title{position:relative;padding-left:30px;display:block;font-size:16px;font-weight:600}.ad-eclipsecon-schedule-title:before{font-family:FontAwesome;content:"\f041";position:absolute;font-size:35px;color:#a59bd0;left:0;top:-2px}.donate-ad{background-color:#f6f6f6;position:relative;overflow:hidden;border-bottom:4px solid #bf4b97}.donate-ad h2{margin-top:0}.donate-ad .btn-square{background-color:#2e2458;color:#fff;margin-bottom:10px;width:57px}.donate-ad .btn-square.active{background-color:#f7941d}.donate-ad .underlined-link{font-weight:normal;text-decoration:underline}.donate-ad .underlined-link:hover{text-decoration:none}.donate-ad .btn-donate-close{position:absolute;top:20px;right:20px;z-index:999;font-size:1.2em;cursor:pointer}.donate-ad .list-amount{margin-bottom:0}.donate-ad .donate-submit{margin-top:20px}.donate-ad .donate-submit .input-group-addon{font-size:.8em}.donate-ad .form-inline .input-group>.form-control{padding-right:6px;text-align:right}@media (min-width:768px){.donate-ad .form-inline .input-group>.form-control{width:60px}}.donate-text,.donate-form{padding-top:20px}@media (min-width:992px){.donate-text:after{content:"";position:absolute;top:0;right:-34px;width:0;height:0;border-top:126px solid transparent;border-left:34px solid #f6f6f6;border-bottom:126px solid transparent;z-index:99}}.donate-form form{position:relative;z-index:9}.donate-form:after{content:"";position:absolute;width:1000px;height:300px;z-index:1;left:0;top:0;background-color:#fff}.recognition-fields{display:none}.anchor{display:block;position:relative;top:-14px;visibility:hidden;z-index:9999}.scrollup{width:40px;height:40px;opacity:.3;position:fixed;bottom:50px;right:15px;display:none;text-indent:-9999px;background:url('../images/components/back-to-top/back-to-top.png') no-repeat}.scrollup:focus{outline:none}#back-to-top{margin:0;padding:0}#back-to-top a{border-top:1px solid #808080;background-color:#666;color:#fff;display:block;padding:4px 0 3px;text-align:center;width:100%;margin:0}#back-to-top a:hover,#back-to-top a:focus{text-decoration:none;background:#dfdfe4;color:#4a4a4a}.block-box,.sideitem{background:#f6f6f6;color:#202020;margin-bottom:2em;padding-bottom:5px}.block-box h2,.sideitem h2,.block-box h3,.sideitem h3,.block-box h6,.sideitem h6{background:#afbbdc;color:#fff;margin:0 0 15px 0;padding:15px 20px;text-transform:uppercase;font-weight:700;font-size:15px}.block-box h2 a:hover,.sideitem h2 a:hover,.block-box h3 a:hover,.sideitem h3 a:hover,.block-box h6 a:hover,.sideitem h6 a:hover{color:#fff}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0 15px 15px}.block-box .list-heading,.sideitem .list-heading{font-weight:600;margin-bottom:4px;font-size:16px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.default-breadcrumbs{background:url('../images/template/breadcrumbs-large-bg.jpg') center #1b1732;background-size:100%;color:#fff;text-align:center;border-bottom:none;font-size:inherit}.default-breadcrumbs p{color:#bebebe;max-width:450px;margin:30px auto 20px auto;font-weight:400}.default-breadcrumbs p:last-child{padding-bottom:1.5em}.default-breadcrumbs .btn{min-width:150px;margin-right:10px;margin-left:10px}.default-breadcrumbs .breadcrumb{background:none;margin:15px 0 14px 0;padding-left:0;padding-bottom:0;text-align:left;text-transform:uppercase}.default-breadcrumbs .breadcrumb li{padding-bottom:3px}.default-breadcrumbs .breadcrumb .active{color:#fff}.default-breadcrumbs .breadcrumb a{font-weight:600;text-decoration:none}.default-breadcrumbs .breadcrumb a:link,.default-breadcrumbs .breadcrumb a:visited{color:#ababab}.default-breadcrumbs .breadcrumb a:hover{color:#f7941e}body #st-el-4 .st-btns{overflow:auto}.discover-search{background:#efefef}.discover-search h2{color:#545454;margin-top:1.3em;padding-bottom:0;margin-bottom:.1em}.discover-search .form-search-projects{margin-bottom:1.4em}.discover-search>.container{min-height:267px}@media (min-width:992px){.discover-search>.container{background:url("../images/components/discover-search/discover-search-bg.jpg") right no-repeat}}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none solid;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.drag_installbutton{position:relative;clear:both;display:inline}.drag_installbutton .tooltip{opacity:1;display:none;background:url("../images/components/drag-drop/mpcdrag.png") no-repeat scroll 110% 60% #a285c5;position:absolute;top:0;left:64px;text-align:left;width:325px;color:#000;border:1px solid #ae00ce;z-index:99;padding:5px 50px 5px 5px}.drag_installbutton .tooltip h3{margin-top:0;color:#000}.drag_installbutton .tooltip.show-right{left:-335px}.drag_installbutton a.drag:hover .tooltip{display:block}.drag_installbutton.drag_installbutton_v2 .btn:hover{cursor:move}.drag_installbutton.drag_installbutton_v2 .tooltip{left:100px;margin-top:-6px;border:1px solid #777;background-color:#eee}.drag_installbutton.drag_installbutton_v2 .tooltip h3{font-size:18px}.gsc-search-box th,.gsc-branding th,.gsc-search-box td,.gsc-branding td{padding:0}.gsc-control-cse .gsc-table-result{font-family:inherit}.gsc-control-cse .gsc-input-box{height:inherit}.gsc-input-box{-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important;position:relative;top:-1px;transition:border-color .15s ease-in-out 0s}.gsc-input-box input.gsc-input{font-size:12px;height:25px !important;background-position:0 5px !important;background-color:transparent !important}.gsc-input-box:hover{border-color:#f7941e}.gsc-input-box-hover{border:1px;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.gsc-search-box-tools .gsc-search-box .gsc-input{padding-right:0 !important}input.gsc-search-button{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important;font-size:12px !important;margin-left:0 !important;position:relative;left:-1px;padding:6px 15px !important}.gsib_a{padding-top:0 !important}.gsst_a .gscb_a{color:#f7941e !important;position:relative;top:2px}.header-row{padding:4px 6px}.header-row h2{margin:.6em 0;font-size:1.4em;color:#fff}.header-row.pink{background:#fad9d9;border-top:1px solid #808080;border-bottom:1px solid #808080}.header_nav{padding-bottom:35px}.header_nav img{margin:20px auto}.header_nav ul{background:#f4f4f4;padding:0;text-transform:uppercase;color:#7b778e;margin:0;font-size:16px}.header_nav ul li{list-style:none;clear:right;padding-bottom:0}.header_nav ul li:nth-child(odd){clear:left}.header_nav ul a{padding:20px;display:block;font-weight:600}.header_nav ul a:active,.header_nav ul a:visited,.header_nav ul a:link{color:#7b778e}.header_nav ul a:hover{color:#f7941e}.header_nav ul a i{font-size:30px;padding:4px 0 0 0;text-align:center;font-weight:700}.header_nav ul span{padding:0 0 0 5px}.header_nav ul span p{font-size:11px;text-transform:none;font-weight:400;margin:0}.highlight{overflow:hidden;position:relative}.highlight .container{padding:4em 0 3em 0;position:relative}@media (min-width:992px){.highlight .container{padding:7em 0 5em 0}}.highlight h1{color:#333}.highlight p,.highlight li{font-size:1.1em}.highlight h1{margin-top:0;margin-bottom:.5em}.highlight .triangle{position:absolute;right:0;top:0}.highlight .list-inline{padding-top:1.7em}.highlight.background-charcoal{background:#252525;color:#7d7d7d}.highlight.background-charcoal h1{color:#7d7d7d}.highlight-img img{margin:auto}.highlight-left .triangle{right:auto;left:-115px}.icon-sidebar-menu h3{margin-top:0;font-size:16px;margin-bottom:5px}.icon-sidebar-menu p{font-size:13px}.icon-sidebar-menu .circle-icon{width:80px;height:80px;display:block}.icon-sidebar-menu .circle-icon i{font-size:37px;margin-top:20px}.landing-well{background-repeat:no-repeat;background-position:center middle;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-attachment:fixed;background-color:#1b1732;background-image:url("../images/components/landing-well/background.jpg");border-top:1px solid #f7941e;border-bottom:1px solid #f7941e;color:#fff;padding:30px 0;text-align:center}.landing-well h1{font-size:3.5em;margin-bottom:10px;font-weight:600}.landing-well h1 a{color:#fff}.landing-well h1 a:hover{color:#f7941e}.landing-well .circle h3{color:#fff}.landing-well p{font-size:1.2em;font-weight:100}.landing-well p a{color:#f7941e;font-weight:600;text-decoration:none}.landing-well p a:hover{color:#fff}.landing-well .landing-well-action{text-align:center}.landing-well .list-glyphicon{margin:2em 0 0 0;padding-bottom:1em}.landing-well .list-glyphicon img{height:110px;width:110px}@media (min-width:1200px){.landing-well li:last-child{margin-top:-20px}}@media (min-width:1200px){.landing-well{text-align:left}.landing-well h1{margin-top:.76em;padding-top:1.3em}.landing-well .list-glyphicon{margin-left:93px}}@media (min-width:992px){.landing-well .list-glyphicon img{height:160px;width:160px}.landing-well .circle{height:160px;margin:0 5px;font-size:44px;width:160px}.landing-well .circle h3{font-size:16px;top:3.4em;margin-left:5px;width:74%}}.news-list{padding-bottom:3em}.news-list h2{background:#f7941e;color:#fff;text-transform:uppercase;text-align:center;font-size:1.2em;padding:8px 8px;font-weight:600;margin-top:2.1em}.news-list h2 a{color:#fff}.news-list h2 a:hover{color:#3a3a3a}.news-list .link-rss-feed{float:right;font-size:.8em;margin-top:.2em}.news-list .news_item_header{display:none}.news_item_header{padding:0 0 2em 0}.news_item{border-bottom:1px solid #e8e8e8;margin-bottom:20px;padding-bottom:10px}.news_item_date{color:#f7941e}.news_item_title h3{font-size:1.3em;margin-top:.2em}.news_item_title h3 a{font-weight:600;color:#3a3a3a}.news_item_title h3 a:hover{color:#cc7105}.news_item_description{font-weight:300}.news_view_all{color:#8e8e8e}.news_view_all a{color:#f7941e;font-weight:bold}.news_view_all a:hover{color:#604200}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:bold;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:""}.promoted-plugin{background-color:#fff}.promoted-plugin a:hover{text-decoration:none ! important}.promoted-plugin .drag{display:block;border:1px solid #e0e0e0}.promoted-plugin .drag:hover{background:#fbf7fb;cursor:move}.promoted-plugin .drag:hover .tooltip{display:block}.promoted-plugin .header{background:#f7941e none repeat scroll 0 0;display:block;padding:0 10px;text-align:center}.promoted-plugin .header h3{padding:8px 0;color:#fff;font-size:18px;margin:0}.promoted-plugin .content{padding:10px 0;display:block}.promoted-plugin .content .pp-content{font-size:12px;margin-bottom:0;line-height:1.5;padding:0 5px}.promoted-plugin .content .pp-image{padding:0 5px 0 10px}.promoted-plugin .content .pp-title{display:block;clear:both}.promoted-plugin .content .pp-text{font-weight:normal}.promoted-plugin .download{background-color:#333;text-align:center;color:#fff;display:block;font-weight:100}.promoted-plugin .download .download-icon{padding-left:0}.promoted-plugin .download .download-text{padding-left:0;padding-top:8px}.promoted-plugin .download .fa{font-size:18px;padding:10px;background-color:#282828}.promoted-plugin .download a{color:#fff;font-weight:normal}.promoted-plugin .download a:hover{color:#fff}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,0.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,0.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;vertical-align:middle}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0 300px;-moz-transform:scale(.9999);border-color:#f5f5f5 transparent transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent transparent}.triangle.triangle-white{border-color:#fff rgba(255,255,255,0) rgba(255,255,255,0) transparent}.step-by-step .intro{font-weight:300}.step-by-step .intro h2{margin-top:1.5em}.step-by-step .step-by-step-timeline{text-align:center;margin-top:1.5em}.step-by-step .step-by-step-timeline img{margin-bottom:1.35em;margin-top:1.4em}.step-by-step .step-by-step-timeline .btn{font-size:.85em}@media (max-width:1199px){.step-by-step .step-by-step-timeline .btn{font-size:.8em}}.tabs-sidebar .nav{margin-top:15px}.tabs-sidebar .nav img{padding-top:13px}.tabs-sidebar .nav .active img.desaturate{-webkit-filter:grayscale(0);filter:grayscale(0)}.tabs-sidebar .nav li.active a{background:none;border:1px solid #cbd3e8}.tabs-sidebar .nav li.active a:after{content:'';position:absolute;left:100%;top:50%;margin-top:-13px;display:block;width:8px;height:21px;background:url('../images/components/tabs-sidebar/tabs-sidebar-active.png') no-repeat}.tabs-sidebar .nav li a{border:1px solid #fff}.tabs-sidebar .nav li a:hover,.tabs-sidebar .nav li a:focus{outline:none;border:1px solid #cbd3e8}.tabs-sidebar .tab-content .row{padding:1em;border-bottom:1px solid #eee}.tabs-sidebar .tab-content p{font-size:13.5px}.timeline{margin:35px auto}.timeline .gs-item{padding-bottom:4em}.timeline .circle{background:#c3efff;color:#fff;border:2px solid #fff;height:47px;width:47px;font-size:20px;float:left;padding-top:6px;padding-left:1px;font-weight:700}.timeline .two .circle{background:#cbdeff}.timeline .three .circle{background:#d2d7ec}.timeline .four .circle{background:#afbbdc}.timeline h1{color:#afbbdc;font-size:2em;text-align:left;padding:9px 0 0 62px;margin-bottom:24px}.timeline ul{padding-left:1px}.timeline li{margin-bottom:1em;padding-left:14px;list-style:none}.timeline li:before{content:"\00BB";color:#f7941e;margin-left:-16px;margin-right:10px;display:block;float:left}@media (min-width:992px){.timeline{border-top:1px dotted #c2cbe4;position:relative}.timeline .circle{margin:-25px auto 0 auto;float:none}.timeline h1{padding-top:15px;float:none;padding-left:0}}.toolbar-menu{background-image:-webkit-linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-image:-o-linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-image:linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-repeat:no-repeat;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffdbdbdb', GradientType=0);margin-bottom:25px}.toolbar-menu .breadcrumb{margin-bottom:0;padding-left:0;background:none}.toolbar-menu .breadcrumb li{padding-bottom:0}.toolbar-menu .breadcrumb>li+li:before{content:" | "}.toolbar-menu .breadcrumb a:link,.toolbar-menu .breadcrumb a:visited{color:#2f2f2f;font-weight:600}.toolbar-menu .breadcrumb a:hover{color:#f7941e}.toolbar-menu .breadcrumb a.active{color:#371e1d;font-weight:bold}.btn{text-transform:uppercase;font-weight:700}.btn-white{background:#fff;border:1px solid #0b0a0f;color:#0b0a0f}.btn-white:hover{background:transparent}.btn-huge{font-size:1.1em;padding:10px 35px}.btn-huge i{margin-right:2px}.btn-transparent:visited,.btn-transparent:link{background:transparent;border-color:#fff;color:#fff;font-size:11px;padding:7px 15px}.btn-transparent:hover,.btn-transparent:active{color:#2c2255;border-color:#2c2255;background:#ccc}.btn-transparent .caret{margin-left:6px}.media{padding-bottom:2em}.media .pull-left{margin-right:30px}.media h4.media-heading{font-size:27px}.media p{font-size:14px;padding-bottom:0}.media .emphasis{margin-bottom:2px;padding-bottom:0}.solstice-modal .modal-content{padding:10px}.solstice-modal .modal-title{font-weight:600;font-size:22px}.solstice-modal .modal-content-container{border:1px solid #eee;padding:0 20px}.nav-tabs>li{padding-bottom:0}.nav-tabs>li a:hover{background:#f7941e;color:#fff}.tab-content{padding:10px;border:1px solid #ddd;border-top:none;background:#fff}.tab-pane{padding:.5em 1em}.tab-pane .page-header{margin-top:10px}/*!
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#2c2255;text-decoration:none}a:hover,a:focus{color:#100c1e;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#2c2255}a.text-primary:hover,a.text-primary:focus{color:#191331}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#2c2255}a.bg-primary:hover,a.bg-primary:focus{background-color:#191331}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:auto}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:auto}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:auto}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:auto}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:auto}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:auto}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:auto}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:auto}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#2f2f2f}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#2f2f2f;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#2c2255;border-color:#231b43}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#191331;border-color:#000}.btn-primary:hover{color:#fff;background-color:#191331;border-color:#0c0917}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#191331;border-color:#0c0917}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#0c0917;border-color:#000}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#2c2255;border-color:#231b43}.btn-primary .badge{color:#2c2255;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#afbbdc;border-color:#9dacd4}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#8c9dcc;border-color:#4a63a8}.btn-info:hover{color:#fff;background-color:#8c9dcc;border-color:#7388c2}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#8c9dcc;border-color:#7388c2}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#7388c2;border-color:#4a63a8}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#afbbdc;border-color:#9dacd4}.btn-info .badge{color:#afbbdc;background-color:#fff}.btn-warning{color:#fff;background-color:#f7941e;border-color:#f38809}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#da7a08;border-color:#784304}.btn-warning:hover{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#da7a08;border-color:#b86707}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#b86707;border-color:#784304}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f7941e;border-color:#f38809}.btn-warning .badge{color:#f7941e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#2c2255;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#100c1e;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#2c2255}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#2f2f2f;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#2c2255}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#2f2f2f;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#2c2255}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left;float:left !important}.navbar-right{float:right;float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#fff}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#2c2255;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#100c1e;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#2c2255;border-color:#2c2255;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#2c2255}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#191331}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#afbbdc}.label-info[href]:hover,.label-info[href]:focus{background-color:#8c9dcc}.label-warning{background-color:#f7941e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#da7a08}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#2c2255;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#2c2255}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#2c2255;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#afbbdc}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f7941e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#2c2255;border-color:#2c2255}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#8979ca}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#f5f5f5;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid transparent;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:-1px;border-top-right-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1px;border-bottom-right-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid transparent}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid transparent}.panel-default{border-color:transparent}.panel-default>.panel-heading{color:#fff;background-color:#afbbdc;border-color:transparent}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:transparent}.panel-default>.panel-heading .badge{color:#afbbdc;background-color:#fff}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:transparent}.panel-primary{border-color:#2c2255}.panel-primary>.panel-heading{color:#fff;background-color:#2c2255;border-color:#2c2255}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2c2255}.panel-primary>.panel-heading .badge{color:#2c2255;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2c2255}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}h1,h2,h3,h4,h5,h6{font-weight:300;color:#2c2255}h1{margin-bottom:25px}a{color:#337ab7}a:hover{color:#285f8f}a:visited{color:#9e55d2}a[name],a[name]:hover{font-weight:inherit;text-decoration:inherit;color:inherit;background-color:inherit}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{font-weight:bold;color:#2c2255}h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover,h1 a:visited,h2 a:visited,h3 a:visited,h4 a:visited,h5 a:visited,h6 a:visited{color:#2c2255}.font-size-large{font-size:58px}ul ul{margin-top:5px}.uppercase{text-transform:uppercase}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-600{font-weight:600}.fw-700{font-weight:700}.emphasis{color:#f7941e;font-weight:700}.small{font-size:10px}.text-highlight{background:#eee;padding:12px 24px}blockquote{font-size:14px}.fa-ul-2x{margin-left:3.14286em}.fa-ul-2x li{padding-bottom:28px}.list-checkmark>li{padding-right:40px;padding-left:0}.list-checkmark a:link,.list-checkmark a:visited{font-weight:bold;color:#969696}.list-checkmark a:hover{color:#f7941e}.block-heading{background:none repeat scroll 0 0 #afbbdc;color:#fff;font-size:16px;font-weight:600;margin:0;padding:10px;text-transform:uppercase}.fa-li{top:.23em}.list-padding li{padding-bottom:25px}.header-short-underline{font-size:18px;font-weight:bold}.header-short-underline:after{content:"";position:relative;display:block;width:50px;height:3px;border-bottom:2px solid;margin:0 auto;top:5px}.underlined{text-decoration:underline}.ad-eclipsecon-schedule a{font-weight:300}.ad-eclipsecon-schedule>thead>tr>th{border-color:#cecece}.ad-eclipsecon-schedule>tbody>tr>th,.ad-eclipsecon-schedule>tbody>tr>td{border:none}.ad-eclipsecon-schedule>tbody>tr:nth-of-type(odd){background-color:#e8e8e8}.ad-eclipsecon-schedule-title{position:relative;padding-left:30px;display:block;font-size:16px;font-weight:600}.ad-eclipsecon-schedule-title:before{font-family:FontAwesome;content:"\f041";position:absolute;font-size:35px;color:#a59bd0;left:0;top:-2px}.donate-ad{background-color:#f6f6f6;position:relative;overflow:hidden;border-bottom:4px solid #bf4b97}.donate-ad h2{margin-top:0}.donate-ad .btn-square{background-color:#2e2458;color:#fff;margin-bottom:10px;width:57px}.donate-ad .btn-square.active{background-color:#f7941d}.donate-ad .underlined-link{font-weight:normal;text-decoration:underline}.donate-ad .underlined-link:hover{text-decoration:none}.donate-ad .btn-donate-close{position:absolute;top:20px;right:20px;z-index:999;font-size:1.2em;cursor:pointer}.donate-ad .list-amount{margin-bottom:0}.donate-ad .donate-submit{margin-top:20px}.donate-ad .donate-submit .input-group-addon{font-size:.8em}.donate-ad .form-inline .input-group>.form-control{padding-right:6px;text-align:right}@media (min-width:768px){.donate-ad .form-inline .input-group>.form-control{width:60px}}.donate-text,.donate-form{padding-top:20px}@media (min-width:992px){.donate-text:after{content:"";position:absolute;top:0;right:-34px;width:0;height:0;border-top:126px solid transparent;border-left:34px solid #f6f6f6;border-bottom:126px solid transparent;z-index:99}}.donate-form form{position:relative;z-index:9}.donate-form:after{content:"";position:absolute;width:1000px;height:300px;z-index:1;left:0;top:0;background-color:#fff}.recognition-fields{display:none}.anchor{display:block;position:relative;top:-14px;visibility:hidden;z-index:9999}.scrollup{width:40px;height:40px;opacity:.3;position:fixed;bottom:50px;right:15px;display:none;text-indent:-9999px;background:url('../images/components/back-to-top/back-to-top.png') no-repeat}.scrollup:focus{outline:none}#back-to-top{margin:0;padding:0}#back-to-top a{border-top:1px solid #808080;background-color:#666;color:#fff;display:block;padding:4px 0 3px;text-align:center;width:100%;margin:0}#back-to-top a:hover,#back-to-top a:focus{text-decoration:none;background:#dfdfe4;color:#4a4a4a}.block-box,.sideitem{background:#f6f6f6;color:#202020;margin-bottom:2em;padding-bottom:5px}.block-box h2,.sideitem h2,.block-box h3,.sideitem h3,.block-box h6,.sideitem h6{background:#afbbdc;color:#fff;margin:0 0 15px 0;padding:15px 20px;text-transform:uppercase;font-weight:700;font-size:15px}.block-box h2 a:hover,.sideitem h2 a:hover,.block-box h3 a:hover,.sideitem h3 a:hover,.block-box h6 a:hover,.sideitem h6 a:hover{color:#fff}.block-box .content,.sideitem .content{padding:.5em 1em}.block-box .reset li,.sideitem .reset li{padding-left:0;padding-bottom:15px}.block-box .reset li .date,.sideitem .reset li .date{padding-bottom:5px;padding-top:3px;font-weight:600;display:block;clear:both}.block-box p,.sideitem p{padding:0 15px 15px}.block-box .list-heading,.sideitem .list-heading{font-weight:600;margin-bottom:4px;font-size:16px}.block-box ul,.sideitem ul{padding-left:15px;padding-right:15px;margin-left:2.14286em}.block-box ul ul,.sideitem ul ul{padding-top:5px}.block-box ul ul li,.sideitem ul ul li{padding-bottom:2px}.block-box-classic{padding:3px;border:1px solid #d5d5d5}.default-breadcrumbs{background:url('../images/template/breadcrumbs-large-bg.jpg') center #1b1732;background-size:100%;color:#fff;text-align:center;border-bottom:none;font-size:inherit}.default-breadcrumbs p{color:#bebebe;max-width:450px;margin:30px auto 20px auto;font-weight:400}.default-breadcrumbs p:last-child{padding-bottom:1.5em}.default-breadcrumbs .btn{min-width:150px;margin-right:10px;margin-left:10px}.default-breadcrumbs .breadcrumb{background:none;margin:15px 0 14px 0;padding-left:0;padding-bottom:0;text-align:left;text-transform:uppercase}.default-breadcrumbs .breadcrumb li{padding-bottom:3px}.default-breadcrumbs .breadcrumb .active{color:#fff}.default-breadcrumbs .breadcrumb a{font-weight:600;text-decoration:none}.default-breadcrumbs .breadcrumb a:link,.default-breadcrumbs .breadcrumb a:visited{color:#ababab}.default-breadcrumbs .breadcrumb a:hover{color:#f7941e}body #st-el-4 .st-btns{overflow:auto}.discover-search{background:#efefef}.discover-search h2{color:#545454;margin-top:1.3em;padding-bottom:0;margin-bottom:.1em}.discover-search .form-search-projects{margin-bottom:1.4em}.discover-search>.container{min-height:267px}@media (min-width:992px){.discover-search>.container{background:url("../images/components/discover-search/discover-search-bg.jpg") right no-repeat}}.donation-box{text-align:center}.donation-box div:first-child{border-style:solid solid none solid;border-color:#e5e5e5;border-width:.1em;background:#fafafa;padding-top:1em;padding-bottom:1em}.donation-box div:first-child p.donation-amount{font-size:5em}.donation-box div:first-child h2{text-transform:uppercase;font-size:1.5em;margin-top:0}.donation-box div+div p{padding:2em;margin:0}.drag_installbutton{position:relative;clear:both;display:inline}.drag_installbutton .tooltip{opacity:1;display:none;background:url("../images/components/drag-drop/mpcdrag.png") no-repeat scroll 110% 60% #a285c5;position:absolute;top:0;left:64px;text-align:left;width:325px;color:#000;border:1px solid #ae00ce;z-index:99;padding:5px 50px 5px 5px}.drag_installbutton .tooltip h3{margin-top:0;color:#000}.drag_installbutton .tooltip.show-right{left:-335px}.drag_installbutton a.drag:hover .tooltip{display:block}.drag_installbutton.drag_installbutton_v2 .btn:hover{cursor:move}.drag_installbutton.drag_installbutton_v2 .tooltip{left:100px;margin-top:-6px;border:1px solid #777;background-color:#eee}.drag_installbutton.drag_installbutton_v2 .tooltip.tooltip-below-right{right:0;left:auto;top:40px}.drag_installbutton.drag_installbutton_v2 .tooltip h3{font-size:18px}.gsc-search-box th,.gsc-branding th,.gsc-search-box td,.gsc-branding td{padding:0}.gsc-control-cse .gsc-table-result{font-family:inherit}.gsc-control-cse .gsc-input-box{height:inherit}.gsc-input-box{-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important;position:relative;top:-1px;transition:border-color .15s ease-in-out 0s}.gsc-input-box input.gsc-input{font-size:12px;height:25px !important;background-position:0 5px !important;background-color:transparent !important}.gsc-input-box:hover{border-color:#f7941e}.gsc-input-box-hover{border:1px;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.gsc-search-box-tools .gsc-search-box .gsc-input{padding-right:0 !important}input.gsc-search-button{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important;font-size:12px !important;margin-left:0 !important;position:relative;left:-1px;padding:6px 15px !important}.gsib_a{padding-top:0 !important}.gsst_a .gscb_a{color:#f7941e !important;position:relative;top:2px}.header-row{padding:4px 6px}.header-row h2{margin:.6em 0;font-size:1.4em;color:#fff}.header-row.pink{background:#fad9d9;border-top:1px solid #808080;border-bottom:1px solid #808080}.header_nav{padding-bottom:35px}.header_nav img{margin:20px auto}.header_nav ul{background:#f4f4f4;padding:0;text-transform:uppercase;color:#7b778e;margin:0;font-size:16px}.header_nav ul li{list-style:none;clear:right;padding-bottom:0}.header_nav ul li:nth-child(odd){clear:left}.header_nav ul a{padding:20px;display:block;font-weight:600}.header_nav ul a:active,.header_nav ul a:visited,.header_nav ul a:link{color:#7b778e}.header_nav ul a:hover{color:#f7941e}.header_nav ul a i{font-size:30px;padding:4px 0 0 0;text-align:center;font-weight:700}.header_nav ul span{padding:0 0 0 5px}.header_nav ul span p{font-size:11px;text-transform:none;font-weight:400;margin:0}.highlight{overflow:hidden;position:relative}.highlight .container{padding:4em 0 3em 0;position:relative}@media (min-width:992px){.highlight .container{padding:7em 0 5em 0}}.highlight h1{color:#333}.highlight p,.highlight li{font-size:1.1em}.highlight h1{margin-top:0;margin-bottom:.5em}.highlight .triangle{position:absolute;right:0;top:0}.highlight .list-inline{padding-top:1.7em}.highlight.background-charcoal{background:#252525;color:#7d7d7d}.highlight.background-charcoal h1{color:#7d7d7d}.highlight-img img{margin:auto}.highlight-left .triangle{right:auto;left:-115px}.icon-sidebar-menu h3{margin-top:0;font-size:16px;margin-bottom:5px}.icon-sidebar-menu p{font-size:13px}.icon-sidebar-menu .circle-icon{width:80px;height:80px;display:block}.icon-sidebar-menu .circle-icon i{font-size:37px;margin-top:20px}.landing-well{background-repeat:no-repeat;background-position:center middle;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-attachment:fixed;background-color:#1b1732;background-image:url("../images/components/landing-well/background.jpg");border-top:1px solid #f7941e;border-bottom:1px solid #f7941e;color:#fff;padding:30px 0;text-align:center}.landing-well h1{font-size:3.5em;margin-bottom:10px;font-weight:600}.landing-well h1 a{color:#fff}.landing-well h1 a:hover{color:#f7941e}.landing-well .circle h3{color:#fff}.landing-well p{font-size:1.2em;font-weight:100}.landing-well p a{color:#f7941e;font-weight:600;text-decoration:none}.landing-well p a:hover{color:#fff}.landing-well .landing-well-action{text-align:center}.landing-well .list-glyphicon{margin:2em 0 0 0;padding-bottom:1em}.landing-well .list-glyphicon img{height:110px;width:110px}@media (min-width:1200px){.landing-well li:last-child{margin-top:-20px}}@media (min-width:1200px){.landing-well{text-align:left}.landing-well h1{margin-top:.76em;padding-top:1.3em}.landing-well .list-glyphicon{margin-left:93px}}@media (min-width:992px){.landing-well .list-glyphicon img{height:160px;width:160px}.landing-well .circle{height:160px;margin:0 5px;font-size:44px;width:160px}.landing-well .circle h3{font-size:16px;top:3.4em;margin-left:5px;width:74%}}.nav>li>a{color:#2c2255}.nav>li>a:hover{font-weight:bold}.news-list{padding-bottom:3em}.news-list h2{background:#f7941e;color:#fff;text-transform:uppercase;text-align:center;font-size:1.2em;padding:8px 8px;font-weight:600;margin-top:2.1em}.news-list h2 a{color:#fff}.news-list h2 a:hover{color:#3a3a3a}.news-list .link-rss-feed{float:right;font-size:.8em;margin-top:.2em}.news-list .news_item_header{display:none}.news_item_header{padding:0 0 2em 0}.news_item{border-bottom:1px solid #e8e8e8;margin-bottom:20px;padding-bottom:10px}.news_item_date{color:#f7941e}.news_item_title h3{font-size:1.3em;margin-top:.2em}.news_item_title h3 a{font-weight:600;color:#3a3a3a}.news_item_title h3 a:hover{color:#cc7105}.news_item_description{font-weight:300}.news_view_all{color:#8e8e8e}.news_view_all a{color:#f7941e;font-weight:bold}.news_view_all a:hover{color:#604200}.circles-list{list-style-type:none;counter-reset:li-counter}.circles-list>li{position:relative;padding-left:.5em;min-height:3em;margin-bottom:10px}.circles-list>li:before{position:absolute;top:0;left:-2em;width:1.8em;height:1.8em;font-size:1.2em;padding:6px 4px;line-height:1.2;text-align:center;font-weight:bold;color:#f5f5f5;border-radius:50%;background-color:#b1b9de;content:counter(li-counter);counter-increment:li-counter}ul.circles-list>li:before{font-family:FontAwesome;content:""}.promoted-plugin{background-color:#fff}.promoted-plugin a:hover{text-decoration:none ! important}.promoted-plugin .drag{display:block;border:1px solid #e0e0e0}.promoted-plugin .drag:hover{background:#fbf7fb;cursor:move}.promoted-plugin .drag:hover .tooltip{display:block}.promoted-plugin .header{background:#f7941e none repeat scroll 0 0;display:block;padding:0 10px;text-align:center}.promoted-plugin .header h3{padding:8px 0;color:#fff;font-size:18px;margin:0}.promoted-plugin .content{padding:10px 0;display:block}.promoted-plugin .content .pp-content{font-size:12px;margin-bottom:0;line-height:1.5;padding:0 5px}.promoted-plugin .content .pp-image{padding:0 5px 0 10px}.promoted-plugin .content .pp-title{display:block;clear:both}.promoted-plugin .content .pp-text{font-weight:normal}.promoted-plugin .download{background-color:#333;text-align:center;color:#fff;display:block;font-weight:100}.promoted-plugin .download .download-icon{padding-left:0}.promoted-plugin .download .download-text{padding-left:0;padding-top:8px}.promoted-plugin .download .fa{font-size:18px;padding:10px;background-color:#282828}.promoted-plugin .download a{color:#fff;font-weight:normal}.promoted-plugin .download a:hover{color:#fff}.circle{border-radius:50%;background:#fff;color:#262626;border:none;text-align:center;font-size:28px;padding-top:13px;height:110px;position:relative;width:110px;display:block}.circle h3{font-size:10px;position:absolute;text-align:center;top:3.3em;width:69%}.circle-dark{background:#0b0a0f;color:#fff;border:8px solid #494756;border:8px solid rgba(73,71,86,0.8);opacity:.8;filter:alpha(opacity=80)}.circle-dark:hover{opacity:.9;filter:alpha(opacity=90);border:8px solid #bec8e2;border:8px solid rgba(190,200,226,0.8);background:#494371;color:#fff}.circle-gray{color:#262626;background:#ccc}.circle-icon{background:#eee;width:140px;height:140px;border-radius:50%;text-align:center;vertical-align:middle}.triangle{width:0;height:0;border-style:solid;border-width:34px 300px 0 300px;-moz-transform:scale(.9999);border-color:#f5f5f5 transparent transparent transparent}.triangle.triangle-black{border-color:#252525 transparent transparent transparent}.triangle.triangle-white{border-color:#fff rgba(255,255,255,0) rgba(255,255,255,0) transparent}.step-by-step .intro{font-weight:300}.step-by-step .intro h2{margin-top:1.5em}.step-by-step .step-by-step-timeline{text-align:center;margin-top:1.5em}.step-by-step .step-by-step-timeline img{margin-bottom:1.35em;margin-top:1.4em}.step-by-step .step-by-step-timeline .btn{font-size:.85em}@media (max-width:1199px){.step-by-step .step-by-step-timeline .btn{font-size:.8em}}.tabs-sidebar .nav{margin-top:15px}.tabs-sidebar .nav img{padding-top:13px}.tabs-sidebar .nav .active img.desaturate{-webkit-filter:grayscale(0);filter:grayscale(0)}.tabs-sidebar .nav li.active a{background:none;border:1px solid #cbd3e8}.tabs-sidebar .nav li.active a:after{content:'';position:absolute;left:100%;top:50%;margin-top:-13px;display:block;width:8px;height:21px;background:url('../images/components/tabs-sidebar/tabs-sidebar-active.png') no-repeat}.tabs-sidebar .nav li a{border:1px solid #fff}.tabs-sidebar .nav li a:hover,.tabs-sidebar .nav li a:focus{outline:none;border:1px solid #cbd3e8}.tabs-sidebar .tab-content .row{padding:1em;border-bottom:1px solid #eee}.tabs-sidebar .tab-content p{font-size:13.5px}.timeline{margin:35px auto}.timeline a{font-weight:bold}.timeline .gs-item{padding-bottom:4em}.timeline .circle{background:#c3efff;color:#fff;border:2px solid #fff;height:47px;width:47px;font-size:20px;float:left;padding-top:6px;padding-left:1px;font-weight:700}.timeline .two .circle{background:#cbdeff}.timeline .three .circle{background:#d2d7ec}.timeline .four .circle{background:#afbbdc}.timeline h1{color:#afbbdc;font-size:2em;text-align:left;padding:9px 0 0 62px;margin-bottom:24px}.timeline ul{padding-left:1px}.timeline li{margin-bottom:1em;padding-left:14px;list-style:none}.timeline li:before{content:"\00BB";color:#f7941e;margin-left:-16px;margin-right:10px;display:block;float:left}@media (min-width:992px){.timeline{border-top:1px dotted #c2cbe4;position:relative}.timeline .circle{margin:-25px auto 0 auto;float:none}.timeline h1{padding-top:15px;float:none;padding-left:0}}.toolbar-menu{background-image:-webkit-linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-image:-o-linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-image:linear-gradient(#fff, #f0efef 70%, #dbdbdb);background-repeat:no-repeat;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffdbdbdb', GradientType=0);margin-bottom:25px}.toolbar-menu .breadcrumb{margin-bottom:0;padding-left:0;background:none}.toolbar-menu .breadcrumb li{padding-bottom:0}.toolbar-menu .breadcrumb>li+li:before{content:" | "}.toolbar-menu .breadcrumb a:link,.toolbar-menu .breadcrumb a:visited{color:#2f2f2f;font-weight:600}.toolbar-menu .breadcrumb a:hover{color:#f7941e}.toolbar-menu .breadcrumb a.active{color:#371e1d;font-weight:bold}.btn{text-transform:uppercase;font-weight:700}.btn:visited{color:#fff}.btn-default:visited{color:#333}.btn-white{background:#fff;border:1px solid #0b0a0f;color:#0b0a0f}.btn-white:hover{background:transparent}.btn-white:visited{color:#333}.btn-huge{font-size:1.1em;padding:10px 35px}.btn-huge i{margin-right:2px}.btn-transparent:visited,.btn-transparent:link{background:transparent;border-color:#fff;color:#fff;font-size:11px;padding:7px 15px}.btn-transparent:hover,.btn-transparent:active{color:#2c2255;border-color:#2c2255;background:#ccc}.btn-transparent .caret{margin-left:6px}.donation-button{padding-top:.75em;padding-bottom:.75em;padding-left:3.5em;padding-right:3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:visited{color:inherit}.btn-simple:hover,.btn-simple:active{border:1px solid #777;background:#eee}.btn-simple-white{text-transform:none;font-weight:normal;font-size:13px;border:0;border-radius:0}.btn-smaller,.btn-group-smaller>.btn{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:normal}.btn-white-purple-border:visited{color:#2d2252}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.media{padding-bottom:2em}.media .pull-left{margin-right:30px}.media h4.media-heading{font-size:27px}.media p{font-size:14px;padding-bottom:0}.media .emphasis{margin-bottom:2px;padding-bottom:0}.modal{text-align:center}@media screen and (min-width:768px){.modal:before{display:inline-block;vertical-align:middle;content:" ";height:100%}}.modal-title{font-weight:600;font-size:22px}.modal-content{border-radius:0}.modal-content-container{border:1px solid #eee;padding:0 20px}.modal-dialog{display:inline-block;text-align:left;vertical-align:middle}.nav-tabs>li{padding-bottom:0}.nav-tabs>li a:hover{background:#f7941e;color:#fff}.tab-content{padding:10px;border:1px solid #ddd;border-top:none;background:#fff}.tab-pane{padding:.5em 1em}.tab-pane .page-header{margin-top:10px}/*!
  * Yamm!3
  * Yet another megamenu for Bootstrap 3
  * 
  * http://geedmo.github.com/yamm3
- */.yamm .nav,.yamm .collapse,.yamm .dropup,.yamm .dropdown{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .nav.navbar-right .dropdown-menu{left:auto;right:0}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}html{position:relative;min-height:100%}.toolbar-container-wrapper{background:#fff}.toolbar-row{padding:8px 0;font-size:12px;color:#666;font-weight:300}.toolbar-row a{font-weight:300;padding-left:4px;color:#666}.toolbar-row a:hover{color:#f7941e}.toolbar-row ul{margin-bottom:0}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#afbbdc}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #ccc}@media (min-width:768px){.page-header-logo-bordered{border-bottom:1px solid #ccc}}#header-right{text-align:right}.thin-header .visible-thin{display:block !important}.logo-eclipse-default-mobile{max-height:50px}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#efeef2;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#2c2255;height:3px}#main-menu .nav{margin:0;background:#2c2255}#main-menu .nav>li{border:1px solid #fafafb}#main-menu .nav>li.open .dropdown-toggle{color:#000;background:#efeef2}#main-menu .nav>li>a{color:#fff;text-transform:uppercase}#main-menu .nav>li .dropdown-menu{background:#2a2a2c;padding:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#f7941e;color:#fff}#main-menu .nav>li .dropdown-menu>li.active a:hover,#main-menu .nav>li .dropdown-menu>li.active a:focus{color:#000;background:#f5f5f5}#main-menu .nav>li .dropdown-menu>li>a{padding:5px 20px 5px 30px;color:#fff}#main-menu .nav>li .dropdown-menu>li>a:hover,#main-menu .nav>li .dropdown-menu>li>a:focus{color:#000;background:#f5f5f5}}@media (min-width:768px){#main-menu{font-size:.9em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#787878}#main-menu li a:hover,#main-menu li a:active{background:none;color:#f7941e}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:initial;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:initial;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:hover{color:#f7941e}#main-menu .dropdown-menu a:active{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active{color:#f7941e;background:none}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.separator,.ul-left-nav>li.about{padding-left:0;font-weight:bold}.ul-left-nav>li.separator img,.ul-left-nav>li.about img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#f7941e}main{position:relative;padding-bottom:20px;background:transparent}main.no-promo{padding-top:20px}main.no-promo .breadcrumbs-offset{margin-top:-20px}footer#solstice-footer{background:no-repeat center center #242426;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding-top:3.5em;color:#a8a7a9;padding-bottom:26px;font-size:14px;border-top:1px solid #f7941e}footer#solstice-footer h2{color:#fff;padding:0 0 7px 0;margin-top:0;font-weight:300;font-size:21px;border-bottom:2px solid #6e6d71;max-width:80%}footer#solstice-footer a:link,footer#solstice-footer a:active,footer#solstice-footer a:visited{color:#a8a7a9;font-weight:400}footer#solstice-footer a:hover{color:#f7941e}footer#solstice-footer .social-media a:link,footer#solstice-footer .social-media a:active,footer#solstice-footer .social-media a:visited{color:#fff}footer#solstice-footer .social-media a:hover{color:#f7941e}footer#solstice-footer .logo-eclipse-white{margin-bottom:15px;max-width:161px}footer#solstice-footer .nav{margin-left:-15px;margin-bottom:25px}footer#solstice-footer .nav a{padding:6px 15px 6px 20px}footer#solstice-footer .nav a:hover{background:none;color:#f7941e}footer#solstice-footer li{padding-bottom:0}@media (max-width:991px){footer#solstice-footer #copyright-text,footer#solstice-footer #footer-other{text-align:left;clear:both}}@media (max-width:450px){footer#solstice-footer section.col-xs-11,footer#solstice-footer section.col-xs-14{position:relative;float:left;width:95.83333333%;min-height:1px;padding-left:15px;padding-right:15px}}@media (min-width:451px) and (max-width:767px){footer#solstice-footer #footer-useful-links{clear:left}footer#solstice-footer #copyright{clear:both}}#copyright{padding-top:15px}#copyright img{float:left;margin-top:10px;margin-right:15px;clear:both}#copyright-text{padding-top:21px;text-align:right}.social-media{margin-top:57px;font-size:2.3em}.social-media a:hover{color:#f7941e}#footer-eclipse-foundation,#footer-legal,#footer-useful-links,#footer-other{z-index:99}.footer-other-working-groups{font-weight:300;font-size:11px}.footer-other-working-groups .social-media{margin-top:20px}.footer-other-working-groups .img-responsive{padding-right:20px;max-width:235px}.footer-other-working-groups .footer-working-group-col{padding:55px 0 0 0}@media (min-width:992px){.footer-other-working-groups{background:url('../images/template/footer-working-group-separator.png') center repeat-y}.footer-other-working-groups .img-responsive{max-width:100%;padding-right:30px}.footer-other-working-groups .footer-working-group-col{padding:0}}.footer-min{background:#f5f5f5;border-top:1px solid #b5b5b5;position:absolute;width:100%;bottom:0;padding:10px 0}.footer-min a{font-weight:normal;font-size:.8em}.footer-min p,.footer-min ul{margin-bottom:0;font-size:.8em}.footer-min ul{text-align:right}.footer-min ul li{padding-bottom:0}@media screen and (max-width:767px){.footer-min p,.footer-min ul{text-align:center}}body.solstice-footer-min{margin-bottom:36px;position:static}@media screen and (max-width:767px){body.solstice-footer-min{margin-bottom:51px}}main #bigbuttons{padding-top:1.65em;padding-bottom:2.2em;min-height:1px;padding-left:15px;padding-right:15px;text-align:center;position:relative;top:auto;left:auto}@media (min-width:768px){main #bigbuttons{float:left;width:41.66666667%}}@media (min-width:768px){main #bigbuttons{margin-left:58.33333333%}}@media (min-width:992px){main #bigbuttons{float:left;width:62.5%}}@media (min-width:992px){main #bigbuttons{margin-left:37.5%}}@media (min-width:1200px){main #bigbuttons{float:left;width:66.66666667%}}@media (min-width:1200px){main #bigbuttons{margin-left:25%}}main #bigbuttons h3{display:none}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons ul{padding-left:0;list-style:none;margin-left:-5px}main #bigbuttons ul>li{display:inline-block;padding-left:5px;padding-right:5px}main #bigbuttons ul li{background:none}@media (min-width:768px){main #bigbuttons ul li{float:right}}main #bigbuttons a{position:relative;margin:0;top:auto;left:auto}main #bigbuttons a:hover{text-decoration:none}div#novaContent{background-position:left top;padding-top:0}@media (max-width:767px){div#novaContent{background-image:none}}@media (min-width:1200px){div#novaContent{background-position:center top}}.deprecated #novaContent{background:url("../images/template/bg-deprecated.gif") center 75px no-repeat ! important}#midcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px;padding-right:30px}@media (min-width:992px){#midcolumn{float:left;width:58.33333333%}}#midcolumn #midcolumn{width:100%;padding:0}#midcolumn.no-right-sidebar{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){#midcolumn.no-right-sidebar{float:left;width:83.33333333%}}#midcolumn.no-left-nav{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){#midcolumn.no-left-nav{float:left;width:75%}}main #rightcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){main #rightcolumn{float:left;width:25%}}@media print{.sideitem,#copyright{padding-left:0;padding-right:0}main{padding-bottom:0;padding-top:0}#solstice-footer,#copyright,#header-row{padding-top:0}}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.float-right{float:right}.float-left{float:left}.padding-0{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.reset{padding:0;margin:0}.visible-thin{display:none !important}.brand-primary{color:#2c2255}.brand-secondary{color:#afbbdc}.brand-success{color:#5cb85c}.brand-info{color:#afbbdc}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}tr.background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.background-blue{background:#afbbdc;color:#fff}.blue{color:#00f}.darkblue{color:#009}.yellow{color:yellow}.red{color:#f00}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-grey{background:#f5f5f5}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-white{background:#fff}#novaContent.background-image-none{background-image:none}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;-moz-transition:opacity .15s ease-in-out;-ms-transition:opacity .15s ease-in-out;-o-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{padding-bottom:0;margin-bottom:-28px}.table-layout-fixed{table-layout:fixed}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.col-xs-5-eclipse,.col-sm-5-eclipse,.col-md-5-eclipse,.col-lg-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.donation-button{padding-top:.75em;padding-bottom:.75em;padding-left:3.5em;padding-right:3.5em}.btn-simple{border:1px solid #ccc;text-transform:capitalize}.btn-simple:hover,.btn-simple:active{border:1px solid #777;background:#eee}.btn-smaller,.btn-group-smaller>.btn{padding:3px 8px;font-size:11px;line-height:1.5;border-radius:2px}.btn-full-width{width:100%}.btn-border-radius-0{border-radius:0}.btn-white-purple-border{border:2px solid #2d2252;color:#2d2252;text-transform:uppercase;background:#fff;text-align:center;padding:10px 15px;font-weight:normal}.btn-white-purple-border:hover{text-decoration:none;background:#2d2252;color:#fff}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing *:before,.reset-box-sizing *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px 5px}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.no-border{border:none ! important}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table.table-solstice th{background:#afbbdc;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(even){background:#40bbdc}.vertical-align{display:flex;align-items:center}@media (min-width:992px){.vertical-align-md{display:flex;align-items:center}}.box-gray-border{border:1px solid #d6d6d6}/*!
+ */.yamm .nav,.yamm .collapse,.yamm .dropup,.yamm .dropdown{position:static}.yamm .container{position:relative}.yamm .dropdown-menu{left:auto}.yamm .nav.navbar-right .dropdown-menu{left:auto;right:0}.yamm .yamm-content{padding:20px 30px}.yamm .dropdown.yamm-fw .dropdown-menu{left:0;right:0}html{position:relative;min-height:100%}.toolbar-container-wrapper{background:#fff}.toolbar-row{padding:8px 0;font-size:12px;color:#666;font-weight:300}.toolbar-row a{font-weight:300;padding-left:4px;color:#666}.toolbar-row a:hover{color:#f7941e}.toolbar-row ul{margin-bottom:0}.toolbar-row .toolbar-left-content span{font-size:18px}@media (max-width:767px){.toolbar-row .toolbar-left-content span{padding-top:10px;text-align:center;display:block}}@media (min-width:768px){.toolbar-row .toolbar-left-content span{border-left:5px solid #f7941e;padding-left:10px}}.toolbar-row .toolbar-left-content a{font-weight:bold;color:#f7941e}.toolbar-contrast{background:#f1f1f1;color:#7c7c7c}.toolbar-contrast a{font-weight:300}.toolbar-contrast a:link,.toolbar-contrast a:visited{color:#7c7c7c}.toolbar-contrast a:hover{color:#afbbdc}#header-wrapper{background:#fff}#header-row .navbar-collapse{padding-left:0;padding-right:0}#header-row li{padding-bottom:0}.page-header-logo-bordered{border-top:1px solid #ccc}@media (min-width:768px){.page-header-logo-bordered{border-bottom:1px solid #ccc}}#header-right{text-align:right}.thin-header .visible-thin{display:block !important}.logo-eclipse-default-mobile{max-height:50px}#custom-search-form{height:34px;max-width:215px}@media (min-width:768px){#custom-search-form{float:right}}@media (max-width:991px){#custom-search-form{margin:0 auto}}@media (max-width:767px){#main-menu-wrapper{padding:0;margin:0}#main-menu{background:#efeef2;margin-bottom:0}#main-menu .navbar-header{padding-top:15px;padding-bottom:15px}#main-menu .navbar-brand{height:auto;padding:0;padding-left:15px}#main-menu.navbar{border:0;border-bottom:1px solid #ccc}#main-menu .navbar-toggle{margin:0;padding:10px 15px 10px 0}#main-menu .navbar-toggle .icon-bar{background:#2c2255;height:3px}#main-menu .nav{margin:0;background:#2c2255}#main-menu .nav>li{border:1px solid #fafafb}#main-menu .nav>li.open .dropdown-toggle{color:#000;background:#efeef2}#main-menu .nav>li>a{color:#fff;text-transform:uppercase}#main-menu .nav>li .dropdown-menu{background:#2a2a2c;padding:0}#main-menu .nav>li .dropdown-menu>li.active a:link,#main-menu .nav>li .dropdown-menu>li.active a:visited{background:#f7941e;color:#fff}#main-menu .nav>li .dropdown-menu>li.active a:hover,#main-menu .nav>li .dropdown-menu>li.active a:focus{color:#000;background:#f5f5f5}#main-menu .nav>li .dropdown-menu>li>a{padding:5px 20px 5px 30px;color:#fff}#main-menu .nav>li .dropdown-menu>li>a:hover,#main-menu .nav>li .dropdown-menu>li>a:focus{color:#000;background:#f5f5f5}}@media (min-width:768px){#main-menu{font-size:.9em;margin-bottom:5px}#main-menu ul li{text-transform:uppercase}#main-menu .dropdown li{text-transform:none}#main-menu li a{margin-right:0;color:#787878}#main-menu li a:hover,#main-menu li a:active{color:#f7941e}#main-menu li.dropdown .dropdown-menu{left:auto;right:auto}#main-menu li.dropdown.eclipse-more .dropdown-menu{width:100%;right:initial;left:0}#main-menu .navbar-right li.dropdown:last-child .dropdown-menu{left:initial;right:0}#main-menu .navbar-right li.dropdown.eclipse-more .dropdown-menu{width:100%}#main-menu .dropdown-menu a{margin:0;color:#787878}#main-menu .dropdown-menu a:hover{color:#f7941e}#main-menu .dropdown-menu a:active{color:#f7941e}}@media (min-width:992px){#main-menu{font-size:1em}#main-menu .dropdown-menu{max-width:630px}#main-menu .dropdown-menu li{padding-bottom:2px}}#main-menu{margin-bottom:0}#main-menu li{padding-bottom:0}#main-menu a{font-weight:400}#main-menu a:active,#main-menu a:focus{color:#f7941e}#main-menu .nav>li>a:hover,#main-menu .nav>li>a:focus{background-color:transparent}#main-menu .nav .open a{background-color:transparent}#main-menu .nav .open a:hover,#main-menu .nav .open a:focus{background-color:transparent}.dropdown-toggle:hover{cursor:pointer}.ul-left-nav{padding-left:0;margin-left:0}.ul-left-nav>li{list-style:none;margin-bottom:.45em}.ul-left-nav>li.active a{font-weight:600}.ul-left-nav>li.separator,.ul-left-nav>li.about{padding-left:0;font-weight:bold}.ul-left-nav>li.separator img,.ul-left-nav>li.about img{position:absolute;top:6px}.ul-left-nav>li.separator{border-top:1px solid #d4d4dd;padding-top:8px}.ul-left-nav>li.separator a{font-weight:700}.ul-left-nav>li.separator:first-child{border-top:none}.ul-left-nav>li>a{color:#545454;font-weight:400}.ul-left-nav>li>a:hover{color:#f7941e}main{position:relative;padding-bottom:20px;background:transparent}main.no-promo{padding-top:20px}main.no-promo .breadcrumbs-offset{margin-top:-20px}footer#solstice-footer{background:no-repeat center center #242426;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding-top:3.5em;color:#a8a7a9;padding-bottom:26px;font-size:14px;border-top:1px solid #f7941e}footer#solstice-footer h2{color:#fff;padding:0 0 7px 0;margin-top:0;font-weight:300;font-size:21px;border-bottom:2px solid #6e6d71;max-width:80%}footer#solstice-footer a:link,footer#solstice-footer a:active,footer#solstice-footer a:visited,footer#solstice-footer a:focus{color:#a8a7a9;font-weight:400}footer#solstice-footer a:hover{color:#f7941e}footer#solstice-footer .social-media a:link,footer#solstice-footer .social-media a:active,footer#solstice-footer .social-media a:visited{color:#fff}footer#solstice-footer .social-media a:hover{color:#f7941e}footer#solstice-footer .logo-eclipse-white{margin-bottom:15px;max-width:161px}footer#solstice-footer .nav{margin-left:-15px;margin-bottom:25px}footer#solstice-footer .nav a{padding:6px 15px 6px 20px}footer#solstice-footer .nav a:hover{background:none;color:#f7941e}footer#solstice-footer li{padding-bottom:0}@media (max-width:991px){footer#solstice-footer #copyright-text,footer#solstice-footer #footer-other{text-align:left;clear:both}}@media (max-width:450px){footer#solstice-footer section.col-xs-11,footer#solstice-footer section.col-xs-14{position:relative;float:left;width:95.83333333%;min-height:1px;padding-left:15px;padding-right:15px}}@media (min-width:451px) and (max-width:767px){footer#solstice-footer #footer-useful-links{clear:left}footer#solstice-footer #copyright{clear:both}}#copyright{padding-top:15px}#copyright img{float:left;margin-top:10px;margin-right:15px;clear:both}#copyright-text{padding-top:21px;text-align:right}.social-media{margin-top:57px;font-size:2.3em}.social-media a:hover{color:#f7941e}#footer-eclipse-foundation,#footer-legal,#footer-useful-links,#footer-other{z-index:99}.footer-other-working-groups{font-weight:300;font-size:11px}.footer-other-working-groups .logo-eclipse-default,.footer-other-working-groups .social-media{margin-bottom:20px;margin-top:0}.footer-other-working-groups .img-responsive{max-width:175px}.footer-other-working-groups .footer-working-group-col{padding:0}@media (min-width:1200px){.footer-other-working-groups{background:url('../images/template/footer-working-group-separator.png') center repeat-y}.footer-other-working-groups .img-responsive{max-width:200px}}.footer-min{background:#f5f5f5;border-top:1px solid #b5b5b5;position:absolute;width:100%;bottom:0;padding:10px 0}.footer-min a{font-weight:normal;font-size:.8em}.footer-min p,.footer-min ul{margin-bottom:0;font-size:.8em}.footer-min ul{text-align:right}.footer-min ul li{padding-bottom:0}@media screen and (max-width:767px){.footer-min p,.footer-min ul{text-align:center}}body.solstice-footer-min{margin-bottom:36px;position:static}@media screen and (max-width:767px){body.solstice-footer-min{margin-bottom:51px}}main #bigbuttons{padding-top:1.65em;padding-bottom:2.2em;min-height:1px;padding-left:15px;padding-right:15px;text-align:center;position:relative;top:auto;left:auto}@media (min-width:768px){main #bigbuttons{float:left;width:41.66666667%}}@media (min-width:768px){main #bigbuttons{margin-left:58.33333333%}}@media (min-width:992px){main #bigbuttons{float:left;width:62.5%}}@media (min-width:992px){main #bigbuttons{margin-left:37.5%}}@media (min-width:1200px){main #bigbuttons{float:left;width:66.66666667%}}@media (min-width:1200px){main #bigbuttons{margin-left:25%}}main #bigbuttons h3{display:none}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons:before,main #bigbuttons:after{content:" ";display:table}main #bigbuttons:after{clear:both}main #bigbuttons ul{padding-left:0;list-style:none;margin-left:-5px}main #bigbuttons ul>li{display:inline-block;padding-left:5px;padding-right:5px}main #bigbuttons ul li{background:none}@media (min-width:768px){main #bigbuttons ul li{float:right}}main #bigbuttons a{position:relative;margin:0;top:auto;left:auto}main #bigbuttons a:hover{text-decoration:none}div#novaContent{background-position:left top;padding-top:0}@media (max-width:767px){div#novaContent{background-image:none}}@media (min-width:1200px){div#novaContent{background-position:center top}}.deprecated #novaContent{background:url("../images/template/bg-deprecated.gif") center 75px no-repeat ! important}#midcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px;padding-right:30px}@media (min-width:992px){#midcolumn{float:left;width:58.33333333%}}#midcolumn #midcolumn{width:100%;padding:0}#midcolumn.no-right-sidebar{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){#midcolumn.no-right-sidebar{float:left;width:83.33333333%}}#midcolumn.no-left-nav{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){#midcolumn.no-left-nav{float:left;width:75%}}main #rightcolumn{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:992px){main #rightcolumn{float:left;width:25%}}@media print{.sideitem,#copyright{padding-left:0;padding-right:0}main{padding-bottom:0;padding-top:0}#solstice-footer,#copyright,#header-row{padding-top:0}}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#f7941e}.hidden-label label.control-label{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.float-right{float:right}.float-left{float:left}.padding-0{padding:0}.padding-5{padding:5px}.padding-10{padding:10px}.padding-15{padding:15px}.padding-20{padding:20px}.padding-25{padding:25px}.padding-30{padding:30px}.padding-bottom-0{padding-bottom:0}.padding-bottom-5{padding-bottom:5px}.padding-bottom-10{padding-bottom:10px}.padding-bottom-15{padding-bottom:15px}.padding-bottom-20{padding-bottom:20px}.padding-bottom-25{padding-bottom:25px}.padding-bottom-30{padding-bottom:30px}.padding-top-0{padding-top:0}.padding-top-5{padding-top:5px}.padding-top-10{padding-top:10px}.padding-top-15{padding-top:15px}.padding-top-20{padding-top:20px}.padding-top-25{padding-top:25px}.padding-top-30{padding-top:30px}.padding-left-0{padding-left:0}.padding-left-5{padding-left:5px}.padding-left-10{padding-left:10px}.padding-left-15{padding-left:15px}.padding-left-20{padding-left:20px}.padding-left-25{padding-left:25px}.padding-left-30{padding-left:30px}.padding-right-0{padding-right:0}.padding-right-5{padding-right:5px}.padding-right-10{padding-right:10px}.padding-right-15{padding-right:15px}.padding-right-20{padding-right:20px}.padding-right-25{padding-right:25px}.padding-right-30{padding-right:30px}.margin-0{margin:0}.margin-5{margin:5px}.margin-10{margin:10px}.margin-15{margin:15px}.margin-20{margin:20px}.margin-25{margin:25px}.margin-30{margin:30px}.margin-bottom-0{margin-bottom:0}.margin-bottom-5{margin-bottom:5px}.margin-bottom-10{margin-bottom:10px}.margin-bottom-15{margin-bottom:15px}.margin-bottom-20{margin-bottom:20px}.margin-bottom-25{margin-bottom:25px}.margin-bottom-30{margin-bottom:30px}.margin-top-0{margin-top:0}.margin-top-5{margin-top:5px}.margin-top-10{margin-top:10px}.margin-top-15{margin-top:15px}.margin-top-20{margin-top:20px}.margin-top-25{margin-top:25px}.margin-top-30{margin-top:30px}.margin-right-0{margin-right:0}.margin-right-5{margin-right:5px}.margin-right-7{margin-right:7px}.margin-right-10{margin-right:10px}.margin-right-15{margin-right:15px}.margin-right-20{margin-right:20px}.margin-right-25{margin-right:25px}.margin-right-30{margin-right:30px}.margin-left-0{margin-left:0}.margin-left-5{margin-left:5px}.margin-left-10{margin-left:10px}.margin-left-15{margin-left:15px}.margin-left-20{margin-left:20px}.margin-left-25{margin-left:25px}.margin-left-30{margin-left:30px}.padding-top{padding-top:3em}.padding-bottom{padding-bottom:3em}.reset{padding:0;margin:0}.visible-thin{display:none !important}.brand-primary{color:#2c2255}.brand-secondary{color:#afbbdc}.brand-success{color:#5cb85c}.brand-info{color:#afbbdc}.brand-warning{color:#f7941e}.brand-danger{color:#d9534f}.orange{color:#f7941e}.background-orange{background:#f7941e;color:#000}.background-orange select{color:#000}tr.background-orange{background:#fbc380}.table-striped>tbody>tr:nth-of-type(odd).background-orange{background:#fbc380}.table-hover>tbody>tr.background-orange:hover{background:#f7941e}.background-blue{background:#afbbdc;color:#fff}.blue{color:#00f}.darkblue{color:#009}.yellow{color:yellow}.red{color:#f00}.lightred{color:#ff8080}.darkred{color:#900}.green{color:green}.black{color:#000}.white{color:#fff}.gray-light{color:#777}.gray{color:#9c9c9c}.background-charcoal{background:#2f2f31;color:#fff}.background-charcoal select{color:#2f2f31}.background-grey{background:#f5f5f5}.background-purple{background:#2c2255;color:#fff}.background-purple select{color:#2f2f31}.background-white{background:#fff}#novaContent.background-image-none{background-image:none}.fade-anim:hover{zoom:1;filter:alpha(opacity=50);opacity:.5;-webkit-transition:opacity .15s ease-in-out;-moz-transition:opacity .15s ease-in-out;-ms-transition:opacity .15s ease-in-out;-o-transition:opacity .15s ease-in-out;transition:opacity .15s ease-in-out}.footer-offset{padding-bottom:0;margin-bottom:-28px}.table-layout-fixed{table-layout:fixed}@media (min-width:768px){.border-left-col{border-left:1px solid #ccc;padding-left:62px}}@media (min-width:992px){.border-right-col{border-right:1px solid #ccc;padding-right:62px}}.border-grey-right{border-right:1px solid #ccc}.col-xs-5-eclipse,.col-sm-5-eclipse,.col-md-5-eclipse,.col-lg-5-eclipse{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5-eclipse{width:20%;float:left}@media (min-width:768px){.col-sm-5-eclipse{width:20%;float:left}}@media (min-width:992px){.col-md-5-eclipse{width:20%;float:left}}@media (min-width:1200px){.col-lg-5-eclipse{width:20%;float:left}}.reset-box-sizing,.reset-box-sizing *,.reset-box-sizing *:before,.reset-box-sizing *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.vcenter{display:inline-block;vertical-align:middle;float:none}.solstice-tags{line-height:2em}.solstice-tags a{font-size:.85em;background-color:#f5f5f5;border-bottom:2px solid #dfdfdf;margin:2px;padding:0 5px 2px 5px}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.white-space-normal{white-space:normal}.no-border{border:none ! important}img.desaturate{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.table.table-solstice th{background:#afbbdc;color:#fff;vertical-align:middle}.table.table-solstice th:nth-child(even){background:#40bbdc}.vertical-align{display:flex;align-items:center}@media (min-width:992px){.vertical-align-md{display:flex;align-items:center}}.box-gray-border{border:1px solid #d6d6d6}.label-purple{background-color:#2c2255}/*!
  * BootstrapValidator (http://bootstrapvalidator.com)
  * The best jQuery plugin to validate form fields. Designed to use with Bootstrap 3
  *
@@ -21,4 +21,10 @@
  *              Non-commercial: http://creativecommons.org/licenses/by-nc-nd/3.0/
  */
 
-.bv-form .help-block{margin-bottom:0}.bv-form .tooltip-inner{text-align:left}.nav-tabs li.bv-tab-success>a{color:#3c763d}.nav-tabs li.bv-tab-error>a{color:#a94442}.bv-form .bv-icon-no-label{top:0}.bv-form .bv-icon-input-group{top:0;z-index:100}#header-left{padding-top:15px;padding-bottom:10px}#header-right{padding-top:25px}#btn-call-for-action{padding-bottom:0;margin-top:7px}#main-menu-wrapper{clear:left}.thin-header #header-left{padding-top:0;padding-bottom:10px}.thin-header #main-menu-wrapper{padding-top:2px;clear:none}.ad-eclipsecon-schedule{background-color:#fff;width:200px;height:200px;margin:0 auto;padding:5px;text-align:center}.ad-eclipsecon-schedule h3{margin-top:0}.ad-eclipsecon-schedule div{margin:0;padding:0}
\ No newline at end of file
+.bv-form .help-block{margin-bottom:0}.bv-form .tooltip-inner{text-align:left}.nav-tabs li.bv-tab-success>a{color:#3c763d}.nav-tabs li.bv-tab-error>a{color:#a94442}.bv-form .bv-icon-no-label{top:0}.bv-form .bv-icon-input-group{top:0;z-index:100}#header-left{padding-top:15px;padding-bottom:10px}#header-right{padding-top:25px}#btn-call-for-action{padding-bottom:0;margin-top:7px}#main-menu-wrapper{clear:left}.thin-header #header-left{padding-top:0;padding-bottom:10px}.thin-header #main-menu-wrapper{padding-top:2px;clear:none}.ad-eclipsecon-schedule{background-color:#fff;width:200px;height:200px;margin:0 auto;padding:5px;text-align:center}.ad-eclipsecon-schedule h3{margin-top:0}.ad-eclipsecon-schedule div{margin:0;padding:0}
+.cc-window{opacity:1;transition:opacity 1s ease}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{transition:transform 1s ease}.cc-animate.cc-revoke.cc-top{transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-bottom,.cc-animate.cc-revoke.cc-active.cc-top,.cc-revoke:hover{transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;transition:max-height 1s}
+.cc-link,.cc-revoke:hover{text-decoration:underline}.cc-revoke,.cc-window{position:fixed;overflow:hidden;box-sizing:border-box;font-family:Helvetica,Calibri,Arial,sans-serif;font-size:16px;line-height:1.5em;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;max-width:24em;-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner{padding:1em 1.8em;width:100%;-ms-flex-direction:row;flex-direction:row}.cc-revoke{padding:.5em}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;padding:.2em}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-banner .cc-btn:last-child{min-width:140px}.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:focus,.cc-close:hover{opacity:1}
+.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{display:block;margin-bottom:1em}.cc-window.cc-floating .cc-compliance{-ms-flex:1 0 auto;flex:1 0 auto}.cc-window.cc-banner{-ms-flex-align:center;align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{-ms-flex:1;flex:1}.cc-compliance{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:justify;align-content:space-between}.cc-compliance>.cc-btn{-ms-flex:1;flex:1}.cc-btn+.cc-btn{margin-left:.5em}
+@media print{.cc-revoke,.cc-window{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}.cc-window.cc-banner{-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner .cc-compliance{-ms-flex:1;flex:1}.cc-window.cc-floating{max-width:none}.cc-window .cc-message{margin-bottom:1em}.cc-window.cc-banner{-ms-flex-align:unset;align-items:unset}}
+.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;-ms-flex:none;flex:none}.cc-theme-classic .cc-btn{border-radius:5px}.cc-theme-classic .cc-btn:last-child{min-width:140px}.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}
+.cc-theme-edgeless.cc-window{padding:0}.cc-floating.cc-theme-edgeless .cc-message{margin:2em 2em 1.5em}.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/stylesheets/table.min.css b/eclipse.org-common/themes/solstice/public/stylesheets/table.min.css
index eb1ca6b..5cdce6a 100644
--- a/eclipse.org-common/themes/solstice/public/stylesheets/table.min.css
+++ b/eclipse.org-common/themes/solstice/public/stylesheets/table.min.css
@@ -1 +1,12 @@
-table{width:100%;max-width:100%;margin-bottom:20px}table>thead>tr>th,table>tbody>tr>th,table>tfoot>tr>th,table>thead>tr>td,table>tbody>tr>td,table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}table>caption+thead>tr:first-child>th,table>colgroup+thead>tr:first-child>th,table>thead:first-child>tr:first-child>th,table>caption+thead>tr:first-child>td,table>colgroup+thead>tr:first-child>td,table>thead:first-child>tr:first-child>td{border-top:0}table>tbody+tbody{border-top:2px solid #ddd}table .table{background-color:#fff}
\ No newline at end of file
+/*!
+ * Copyright (c) 2018 Eclipse Foundation, Inc.
+ * 
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v. 2.0 which is available at
+ * http://www.eclipse.org/legal/epl-2.0.
+ * 
+ * Contributors:
+ *   Christopher Guindon <chris.guindon@eclipse-foundation.org>
+ * 
+ * SPDX-License-Identifier: EPL-2.0
+*/table{width:100%;max-width:100%;margin-bottom:20px}table>tbody>tr>td,table>tbody>tr>th,table>tfoot>tr>td,table>tfoot>tr>th,table>thead>tr>td,table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}table>caption+thead>tr:first-child>td,table>caption+thead>tr:first-child>th,table>colgroup+thead>tr:first-child>td,table>colgroup+thead>tr:first-child>th,table>thead:first-child>tr:first-child>td,table>thead:first-child>tr:first-child>th{border-top:0}table>tbody+tbody{border-top:2px solid #ddd}table .table{background-color:#fff}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/public/stylesheets/vendor/cookieconsent/cookieconsent.min.css b/eclipse.org-common/themes/solstice/public/stylesheets/vendor/cookieconsent/cookieconsent.min.css
new file mode 100644
index 0000000..795d574
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/public/stylesheets/vendor/cookieconsent/cookieconsent.min.css
@@ -0,0 +1 @@
+.cc-window{opacity:1;transition:opacity 1s ease}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{transition:transform 1s ease}.cc-animate.cc-revoke.cc-top{transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-bottom,.cc-animate.cc-revoke.cc-active.cc-top,.cc-revoke:hover{transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;transition:max-height 1s}.cc-link,.cc-revoke:hover{text-decoration:underline}.cc-revoke,.cc-window{position:fixed;overflow:hidden;box-sizing:border-box;font-family:Helvetica,Calibri,Arial,sans-serif;font-size:16px;line-height:1.5em;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;max-width:24em;-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner{padding:1em 1.8em;width:100%;-ms-flex-direction:row;flex-direction:row}.cc-revoke{padding:.5em}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;padding:.2em}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-banner .cc-btn:last-child{min-width:140px}.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:focus,.cc-close:hover{opacity:1}.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{display:block;margin-bottom:1em}.cc-window.cc-floating .cc-compliance{-ms-flex:1 0 auto;flex:1 0 auto}.cc-window.cc-banner{-ms-flex-align:center;align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{-ms-flex:1;flex:1}.cc-compliance{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:justify;align-content:space-between}.cc-compliance>.cc-btn{-ms-flex:1;flex:1}.cc-btn+.cc-btn{margin-left:.5em}@media print{.cc-revoke,.cc-window{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}.cc-window.cc-banner{-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner .cc-compliance{-ms-flex:1;flex:1}.cc-window.cc-floating{max-width:none}.cc-window .cc-message{margin-bottom:1em}.cc-window.cc-banner{-ms-flex-align:unset;align-items:unset}}.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;-ms-flex:none;flex:none}.cc-theme-classic .cc-btn{border-radius:5px}.cc-theme-classic .cc-btn:last-child{min-width:140px}.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}.cc-theme-edgeless.cc-window{padding:0}.cc-floating.cc-theme-edgeless .cc-message{margin:2em 2em 1.5em}.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/src/javascript/donate.js b/eclipse.org-common/themes/solstice/src/javascript/donate.js
deleted file mode 100644
index 7c15987..0000000
--- a/eclipse.org-common/themes/solstice/src/javascript/donate.js
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-// donate.js
-(function($, document) {
-  
-  $(document).ready(function() {
-
-    // If the page loads and the recognition checkbox is already checked
-    if ($('input.recognition-checkbox').is(':checked')) {
-      $('.recognition-fields').slideDown(300);
-    }
-
-    // If the recognition checkbox is clicked
-    $('input.recognition-checkbox').click(function(){
-        if($(this).prop("checked") == true){
-          $('.recognition-fields').slideDown(300);
-        }
-        else if($(this).prop("checked") == false){
-          $('.recognition-fields').slideUp(300);
-        }
-    });
-
-    // When the user click on a pre-defined donation amount
-    $('.btn-square').click(function() {
-      $('.btn-square, .amount-body, .highlight-amount-body').removeClass('active');
-      $(this).addClass('active');
-      $('input[name=amount]').val($(this).val());
-    });
-
-    // When the user click in the custom donation amount field
-    $('input[name=amount]').click(function() {
-      $('input[name=amount]').bind("keyup change", function(e) {
-          $('.btn-square').removeClass('active');
-      });
-    });
-
-    /**
-     * Disable the Payment radio depending 
-     * if Paypal or Bitcoin is selected
-     */
-    function disablePaymentRadio() {
-      var payment_type = $('input[name=type]:radio:checked').val();
-      if (payment_type === "paypal") {
-        $('input[name=subscription]').attr("disabled",false);
-      }
-      else{
-        $('#subscription_default').prop('checked',true);
-        $('input[name=subscription]').attr("disabled",true);
-      }
-    }
-
-    // Disable the Bitcoin radio if the page loads and it is selected.
-    disablePaymentRadio();
-
-    // Make changes when the user chooses either Paypal or Bitcoin
-    $('input[name=type]:radio').change(function(e){
-      disablePaymentRadio();
-    });
-
-    $('.btn-donate-close').click(function () {
-
-      // The cookie name based on what has been set in the settings
-      var cookie_name = eclipse_org_common.settings.cookies_class.name;
-
-      // The JSON decoded value of the cookie 
-      // fetched based on the cookie_name variable
-      var cookie = jQuery.parseJSON(unescape(solsticeFetchCookie(cookie_name)));
-
-      // Set the path
-      var path = "/";
-
-      // Set the banner as NOT visible
-      cookie.donation_banner.value.visible = 0;
-
-      // Make a string out of the object
-      cookie = JSON.stringify(cookie);
-
-      // Create the cookie
-      solsticeCreateCookie(cookie_name, cookie, path);
-
-      // Make the banner slide up
-      $('.donate-ad').slideUp(300);
-    });
-
-  });
-
-})(jQuery, document);
-
diff --git a/eclipse.org-common/themes/solstice/src/javascript/lib/solstice-cookies.js b/eclipse.org-common/themes/solstice/src/javascript/lib/solstice-cookies.js
deleted file mode 100644
index ee1cdc7..0000000
--- a/eclipse.org-common/themes/solstice/src/javascript/lib/solstice-cookies.js
+++ /dev/null
@@ -1,39 +0,0 @@
-
-// solstice-cookies.js
-
-/**
- * Create or Update a cookie
- *
- * @param string name - Name of the cookie
- * @param string value - Value of the cookie
- * @param string path - Path of the cookie
- */
-function solsticeCreateCookie(name, value, path) {
-  document.cookie = name+"=" + escape(value) + "; path=" + path + ";";
-}
-
-/**
- * Fetch a specific cookie based on the name
- *
- * @param string name - Name of the cookie
- *
- * @return string
- */
-function solsticeFetchCookie(name) {
-
-  var cookie_value = "";
-  var current_cookie = "";
-  var name_and_equal = name + "=";
-  var all_cookies = document.cookie.split(";");
-  var number_of_cookies = all_cookies.length;
-
-  for(var i = 0; i < number_of_cookies; i++) {
-    current_cookie = all_cookies[i].trim();
-    if (current_cookie.indexOf(name_and_equal) == 0) {
-      cookie_value = current_cookie.substring(name_and_equal.length, current_cookie.length);
-      break;
-    }
-  }
-
-  return cookie_value;
-}
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/src/javascript/main.js b/eclipse.org-common/themes/solstice/src/javascript/main.js
deleted file mode 100644
index 55880ab..0000000
--- a/eclipse.org-common/themes/solstice/src/javascript/main.js
+++ /dev/null
@@ -1,82 +0,0 @@
-// main.js
-(function($, document) {
-
-  $(window).on("load", function() {
-    if (window.location.hash && $(window.location.hash).hasClass("tab-pane")) {
-      window.scrollTo(0, 0);
-      setTimeout(function() {
-        window.scrollTo(0, 0);
-      }, 1);
-    }
-  });
-
-  $(document).ready(function() {
-
-    var href_hash = window.location.hash;
-    // Add a class if right column is non-existant.
-    if ($("#rightcolumn").length == 0) {
-      $("#midcolumn").attr("class", "no-right-sidebar");
-      if (href_hash) {
-        window.location.hash = href_hash;
-      }
-    }
-    // add a class if left column is non-existant.
-    if ($("#leftcol").length == 0) {
-      $("#midcolumn").attr("class", "no-left-nav");
-      if (href_hash) {
-        window.location.hash = href_hash;
-      }
-    }
-
-    $('#showalltabs').click(function(){
-      $('.tabs li').each(function(i,t){
-        $(this).removeClass('active');
-      });
-      $('.tab-pane').each(function(i,t){
-        $(this).addClass('active');
-      });
-    });
-
-    href_hash && $('ul.nav a[href="' + href_hash + '"]').tab('show');
-  });
-
-  // This code will prevent unexpected menu close when
-  // using some components (like accordion, forms, etc).
-  $(document).on("click", ".yamm .dropdown-menu", function(e) {
-    e.stopPropagation()
-  });
-
-  // scroll button.
-  $(window).on("load resize scroll", function(){
-    if ($(window).width() < 1270){
-      $('.scrollup').hide();
-      return false;
-    }
-    if ($(this).scrollTop() > 100) {
-      $('.scrollup').fadeIn();
-    } else {
-      $('.scrollup').fadeOut();
-    }
-  });
-
-  // scroll back to the top of the page.
-  $('.scrollup').click(function(){
-    $("html, body").animate({ scrollTop: 0 }, 600);
-    return false;
-  });
-
-  $('.nav-tabs a').click(function (e) {
-    $(this).tab('show');
-    history.pushState({}, "", this.href);
-    $('.alert:not(.stay-visible)').remove();
-  });
-
-  $("a[data-tab-destination]").on('click', function() {
-    var tab = $(this).attr('data-tab-destination');
-    $("#"+tab).click();
-  });
-
-  $('.solstice-collapse').click(function(){
-    $(this).find('i').toggleClass('fa-chevron-down fa-chevron-up');
-  });
-})(jQuery, document);
\ No newline at end of file
diff --git a/eclipse.org-common/themes/solstice/webpack.mix.js b/eclipse.org-common/themes/solstice/webpack.mix.js
new file mode 100644
index 0000000..e18f570
--- /dev/null
+++ b/eclipse.org-common/themes/solstice/webpack.mix.js
@@ -0,0 +1,61 @@
+/*!
+ * Copyright (c) 2018 Eclipse Foundation, Inc.
+ * 
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v. 2.0 which is available at
+ * http://www.eclipse.org/legal/epl-2.0.
+ * 
+ * Contributors:
+ *   Christopher Guindon <chris.guindon@eclipse-foundation.org>
+ * 
+ * SPDX-License-Identifier: EPL-2.0
+*/
+
+let mix = require('laravel-mix');
+mix.options({uglify: {uglifyOptions: {compress: true, mangle: false, output: {comments: '/^!/'}}}});
+mix.setPublicPath('public');
+mix.setResourceRoot('../');
+
+// Default CSS
+//mix.less('node_modules/eclipsefdn-solstice-assets/less/quicksilver/eclipse-ide/styles.less', 'public/stylesheets/eclipse-ide.min.css');
+//mix.less('node_modules/eclipsefdn-solstice-assets/less/quicksilver/styles.less', 'public/stylesheets/quicksilver.min.css');
+//mix.less('node_modules/eclipsefdn-solstice-assets/less/quicksilver/jakarta/styles.less', 'public/stylesheets/jakarta.min.css');
+//mix.less('node_modules/eclipsefdn-solstice-assets/less/solstice/_barebone/styles.less', 'public/stylesheets/barebone.min.css');
+//mix.less('node_modules/eclipsefdn-solstice-assets/less/solstice/_barebone/footer.less', 'public/stylesheets/barebone-footer.min.css');
+//mix.less('node_modules/eclipsefdn-solstice-assets/less/solstice/table.less', 'public/stylesheets/table.min.css');
+
+//mix.less('node_modules/eclipsefdn-solstice-assets/less/solstice/forums.less', 'public/stylesheets/forums.min.css');
+//mix.less('node_modules/eclipsefdn-solstice-assets/less/solstice/locationtech/styles.less', 'public/stylesheets/locationtech.min.css');
+//mix.less('node_modules/eclipsefdn-solstice-assets/less/solstice/locationtech/barebone.less', 'public/stylesheets/locationtech-barebone.min.css');
+//mix.less('node_modules/eclipsefdn-solstice-assets/less/solstice/polarsys/styles.less', 'public/stylesheets/polarsys.min.css');
+//mix.less('node_modules/eclipsefdn-solstice-assets/less/solstice/polarsys/barebone.less', 'public/stylesheets/polarsys-barebone.min.css');
+//mix.less('node_modules/eclipsefdn-solstice-assets/less/solstice/styles.less', 'public/stylesheets/styles.min.css');
+
+// Copy cookieconsent files
+mix.copy('node_modules/cookieconsent/build/cookieconsent.min.css', 'public/stylesheets/vendor/cookieconsent/cookieconsent.min.css');
+mix.copy('node_modules/cookieconsent/build/cookieconsent.min.js', 'public/javascript/vendor/cookieconsent/cookieconsent.min.js');
+mix.scripts([
+    'node_modules/cookieconsent/src/cookieconsent.js',
+    'node_modules/eclipsefdn-solstice-assets/js/solstice.cookieconsent.js'
+  ], 
+  'public/javascript/vendor/cookieconsent/default.min.js'
+);
+
+// JavaScript
+mix.scripts([
+    'node_modules/jquery/dist/jquery.min.js',
+    'node_modules/bootstrap/dist/js/bootstrap.min.js',
+    'node_modules/cookieconsent/src/cookieconsent.js',
+    'node_modules/eclipsefdn-solstice-assets/js/solstice.cookieconsent.js',
+    'node_modules/jquery-match-height/dist/jquery.matchHeight-min.js',
+    'node_modules/feather-icons/dist/feather.min.js',
+    'node_modules/eclipsefdn-solstice-assets/js/solstice.cookies.js',
+    'node_modules/eclipsefdn-solstice-assets/js/solstice.js',
+    'node_modules/eclipsefdn-solstice-assets/js/solstice.donate.js'
+], 'public/javascript/main.min.js');
+
+mix.scripts([
+    'node_modules/jquery/dist/jquery.js',
+    'node_modules/bootstrap/dist/js/bootstrap.js',
+    'node_modules/eclipsefdn-solstice-assets/js/solstice.js'
+], 'public/javascript/barebone.min.js');
diff --git a/eclipse.org-common/yui/2.3.1/connection/connection.js b/eclipse.org-common/yui/2.3.1/connection/connection.js
deleted file mode 100644
index 1fdcfa9..0000000
--- a/eclipse.org-common/yui/2.3.1/connection/connection.js
+++ /dev/null
@@ -1,1357 +0,0 @@
-/*
-Copyright (c) 2007, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.3.1
-*/
-/**
- * The Connection Manager provides a simplified interface to the XMLHttpRequest
- * object.  It handles cross-browser instantiantion of XMLHttpRequest, negotiates the
- * interactive states and server response, returning the results to a pre-defined
- * callback you create.
- *
- * @namespace YAHOO.util
- * @module connection
- * @requires yahoo
- * @requires event
- */
-
-/**
- * The Connection Manager singleton provides methods for creating and managing
- * asynchronous transactions.
- *
- * @class Connect
- */
-
-YAHOO.util.Connect =
-{
-  /**
-   * @description Array of MSFT ActiveX ids for XMLHttpRequest.
-   * @property _msxml_progid
-   * @private
-   * @static
-   * @type array
-   */
-	_msxml_progid:[
-		'Microsoft.XMLHTTP',
-		'MSXML2.XMLHTTP.3.0',
-		'MSXML2.XMLHTTP'
-		],
-
-  /**
-   * @description Object literal of HTTP header(s)
-   * @property _http_header
-   * @private
-   * @static
-   * @type object
-   */
-	_http_headers:{},
-
-  /**
-   * @description Determines if HTTP headers are set.
-   * @property _has_http_headers
-   * @private
-   * @static
-   * @type boolean
-   */
-	_has_http_headers:false,
-
- /**
-  * @description Determines if a default header of
-  * Content-Type of 'application/x-www-form-urlencoded'
-  * will be added to any client HTTP headers sent for POST
-  * transactions.
-  * @property _use_default_post_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _use_default_post_header:true,
-
- /**
-  * @description The default header used for POST transactions.
-  * @property _default_post_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _default_post_header:'application/x-www-form-urlencoded; charset=UTF-8',
-
- /**
-  * @description The default header used for transactions involving the
-  * use of HTML forms.
-  * @property _default_form_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _default_form_header:'application/x-www-form-urlencoded',
-
- /**
-  * @description Determines if a default header of
-  * 'X-Requested-With: XMLHttpRequest'
-  * will be added to each transaction.
-  * @property _use_default_xhr_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _use_default_xhr_header:true,
-
- /**
-  * @description The default header value for the label
-  * "X-Requested-With".  This is sent with each
-  * transaction, by default, to identify the
-  * request as being made by YUI Connection Manager.
-  * @property _default_xhr_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _default_xhr_header:'XMLHttpRequest',
-
- /**
-  * @description Determines if custom, default headers
-  * are set for each transaction.
-  * @property _has_default_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _has_default_headers:true,
-
- /**
-  * @description Determines if custom, default headers
-  * are set for each transaction.
-  * @property _has_default_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _default_headers:{},
-
- /**
-  * @description Property modified by setForm() to determine if the data
-  * should be submitted as an HTML form.
-  * @property _isFormSubmit
-  * @private
-  * @static
-  * @type boolean
-  */
-    _isFormSubmit:false,
-
- /**
-  * @description Property modified by setForm() to determine if a file(s)
-  * upload is expected.
-  * @property _isFileUpload
-  * @private
-  * @static
-  * @type boolean
-  */
-    _isFileUpload:false,
-
- /**
-  * @description Property modified by setForm() to set a reference to the HTML
-  * form node if the desired action is file upload.
-  * @property _formNode
-  * @private
-  * @static
-  * @type object
-  */
-    _formNode:null,
-
- /**
-  * @description Property modified by setForm() to set the HTML form data
-  * for each transaction.
-  * @property _sFormData
-  * @private
-  * @static
-  * @type string
-  */
-    _sFormData:null,
-
- /**
-  * @description Collection of polling references to the polling mechanism in handleReadyState.
-  * @property _poll
-  * @private
-  * @static
-  * @type object
-  */
-    _poll:{},
-
- /**
-  * @description Queue of timeout values for each transaction callback with a defined timeout value.
-  * @property _timeOut
-  * @private
-  * @static
-  * @type object
-  */
-    _timeOut:{},
-
-  /**
-   * @description The polling frequency, in milliseconds, for HandleReadyState.
-   * when attempting to determine a transaction's XHR readyState.
-   * The default is 50 milliseconds.
-   * @property _polling_interval
-   * @private
-   * @static
-   * @type int
-   */
-     _polling_interval:50,
-
-  /**
-   * @description A transaction counter that increments the transaction id for each transaction.
-   * @property _transaction_id
-   * @private
-   * @static
-   * @type int
-   */
-     _transaction_id:0,
-
-  /**
-   * @description Tracks the name-value pair of the "clicked" submit button if multiple submit
-   * buttons are present in an HTML form; and, if YAHOO.util.Event is available.
-   * @property _submitElementValue
-   * @private
-   * @static
-   * @type string
-   */
-	 _submitElementValue:null,
-
-  /**
-   * @description Determines whether YAHOO.util.Event is available and returns true or false.
-   * If true, an event listener is bound at the document level to trap click events that
-   * resolve to a target type of "Submit".  This listener will enable setForm() to determine
-   * the clicked "Submit" value in a multi-Submit button, HTML form.
-   * @property _hasSubmitListener
-   * @private
-   * @static
-   */
-	 _hasSubmitListener:(function()
-	 {
-		if(YAHOO.util.Event){
-			YAHOO.util.Event.addListener(
-				document,
-				'click',
-				function(e){
-					try
-					{
-						var obj = YAHOO.util.Event.getTarget(e);
-						if(obj.type.toLowerCase() == 'submit'){
-							YAHOO.util.Connect._submitElementValue = encodeURIComponent(obj.name) + "=" + encodeURIComponent(obj.value);
-						}
-					}
-					catch(e){}
-				});
-			return true;
-	    }
-	    return false;
-	 })(),
-
-  /**
-   * @description Custom event that fires at the start of a transaction
-   * @property startEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	startEvent: new YAHOO.util.CustomEvent('start'),
-
-  /**
-   * @description Custom event that fires when a transaction response has completed.
-   * @property completeEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	completeEvent: new YAHOO.util.CustomEvent('complete'),
-
-  /**
-   * @description Custom event that fires when handleTransactionResponse() determines a
-   * response in the HTTP 2xx range.
-   * @property successEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	successEvent: new YAHOO.util.CustomEvent('success'),
-
-  /**
-   * @description Custom event that fires when handleTransactionResponse() determines a
-   * response in the HTTP 4xx/5xx range.
-   * @property failureEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	failureEvent: new YAHOO.util.CustomEvent('failure'),
-
-  /**
-   * @description Custom event that fires when handleTransactionResponse() determines a
-   * response in the HTTP 4xx/5xx range.
-   * @property failureEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	uploadEvent: new YAHOO.util.CustomEvent('upload'),
-
-  /**
-   * @description Custom event that fires when a transaction is successfully aborted.
-   * @property abortEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	abortEvent: new YAHOO.util.CustomEvent('abort'),
-
-  /**
-   * @description A reference table that maps callback custom events members to its specific
-   * event name.
-   * @property _customEvents
-   * @private
-   * @static
-   * @type object
-   */
-	_customEvents:
-	{
-		onStart:['startEvent', 'start'],
-		onComplete:['completeEvent', 'complete'],
-		onSuccess:['successEvent', 'success'],
-		onFailure:['failureEvent', 'failure'],
-		onUpload:['uploadEvent', 'upload'],
-		onAbort:['abortEvent', 'abort']
-	},
-
-  /**
-   * @description Member to add an ActiveX id to the existing xml_progid array.
-   * In the event(unlikely) a new ActiveX id is introduced, it can be added
-   * without internal code modifications.
-   * @method setProgId
-   * @public
-   * @static
-   * @param {string} id The ActiveX id to be added to initialize the XHR object.
-   * @return void
-   */
-	setProgId:function(id)
-	{
-		this._msxml_progid.unshift(id);
-	},
-
-  /**
-   * @description Member to override the default POST header.
-   * @method setDefaultPostHeader
-   * @public
-   * @static
-   * @param {boolean} b Set and use default header - true or false .
-   * @return void
-   */
-	setDefaultPostHeader:function(b)
-	{
-		if(typeof b == 'string'){
-			this._default_post_header = b;
-		}
-		else if(typeof b == 'boolean'){
-			this._use_default_post_header = b;
-		}
-	},
-
-  /**
-   * @description Member to override the default transaction header..
-   * @method setDefaultXhrHeader
-   * @public
-   * @static
-   * @param {boolean} b Set and use default header - true or false .
-   * @return void
-   */
-	setDefaultXhrHeader:function(b)
-	{
-		if(typeof b == 'string'){
-			this._default_xhr_header = b;
-		}
-		else{
-			this._use_default_xhr_header = b;
-		}
-	},
-
-  /**
-   * @description Member to modify the default polling interval.
-   * @method setPollingInterval
-   * @public
-   * @static
-   * @param {int} i The polling interval in milliseconds.
-   * @return void
-   */
-	setPollingInterval:function(i)
-	{
-		if(typeof i == 'number' && isFinite(i)){
-			this._polling_interval = i;
-		}
-	},
-
-  /**
-   * @description Instantiates a XMLHttpRequest object and returns an object with two properties:
-   * the XMLHttpRequest instance and the transaction id.
-   * @method createXhrObject
-   * @private
-   * @static
-   * @param {int} transactionId Property containing the transaction id for this transaction.
-   * @return object
-   */
-	createXhrObject:function(transactionId)
-	{
-		var obj,http;
-		try
-		{
-			// Instantiates XMLHttpRequest in non-IE browsers and assigns to http.
-			http = new XMLHttpRequest();
-			//  Object literal with http and tId properties
-			obj = { conn:http, tId:transactionId };
-		}
-		catch(e)
-		{
-			for(var i=0; i<this._msxml_progid.length; ++i){
-				try
-				{
-					// Instantiates XMLHttpRequest for IE and assign to http
-					http = new ActiveXObject(this._msxml_progid[i]);
-					//  Object literal with conn and tId properties
-					obj = { conn:http, tId:transactionId };
-					break;
-				}
-				catch(e){}
-			}
-		}
-		finally
-		{
-			return obj;
-		}
-	},
-
-  /**
-   * @description This method is called by asyncRequest to create a
-   * valid connection object for the transaction.  It also passes a
-   * transaction id and increments the transaction id counter.
-   * @method getConnectionObject
-   * @private
-   * @static
-   * @return {object}
-   */
-	getConnectionObject:function(isFileUpload)
-	{
-		var o;
-		var tId = this._transaction_id;
-
-		try
-		{
-			if(!isFileUpload){
-				o = this.createXhrObject(tId);
-			}
-			else{
-				o = {};
-				o.tId = tId;
-				o.isUpload = true;
-			}
-
-			if(o){
-				this._transaction_id++;
-			}
-		}
-		catch(e){}
-		finally
-		{
-			return o;
-		}
-	},
-
-  /**
-   * @description Method for initiating an asynchronous request via the XHR object.
-   * @method asyncRequest
-   * @public
-   * @static
-   * @param {string} method HTTP transaction method
-   * @param {string} uri Fully qualified path of resource
-   * @param {callback} callback User-defined callback function or object
-   * @param {string} postData POST body
-   * @return {object} Returns the connection object
-   */
-	asyncRequest:function(method, uri, callback, postData)
-	{
-		var o = (this._isFileUpload)?this.getConnectionObject(true):this.getConnectionObject();
-
-		if(!o){
-			return null;
-		}
-		else{
-
-			// Intialize any transaction-specific custom events, if provided.
-			if(callback && callback.customevents){
-				this.initCustomEvents(o, callback);
-			}
-
-			if(this._isFormSubmit){
-				if(this._isFileUpload){
-					this.uploadFile(o, callback, uri, postData);
-					return o;
-				}
-
-				// If the specified HTTP method is GET, setForm() will return an
-				// encoded string that is concatenated to the uri to
-				// create a querystring.
-				if(method.toUpperCase() == 'GET'){
-					if(this._sFormData.length !== 0){
-						// If the URI already contains a querystring, append an ampersand
-						// and then concatenate _sFormData to the URI.
-						uri += ((uri.indexOf('?') == -1)?'?':'&') + this._sFormData;
-					}
-					else{
-						uri += "?" + this._sFormData;
-					}
-				}
-				else if(method.toUpperCase() == 'POST'){
-					// If POST data exist in addition to the HTML form data,
-					// it will be concatenated to the form data.
-					postData = postData?this._sFormData + "&" + postData:this._sFormData;
-				}
-			}
-
-			o.conn.open(method, uri, true);
-
-			// Each transaction will automatically include a custom header of
-			// "X-Requested-With: XMLHttpRequest" to identify the request as
-			// having originated from Connection Manager.
-			if(this._use_default_xhr_header){
-				if(!this._default_headers['X-Requested-With']){
-					this.initHeader('X-Requested-With', this._default_xhr_header, true);
-				}
-			}
-
-			if(this._isFormSubmit == false && this._use_default_post_header){
-				this.initHeader('Content-Type', this._default_post_header);
-			}
-
-			if(this._has_default_headers || this._has_http_headers){
-				this.setHeader(o);
-			}
-
-			this.handleReadyState(o, callback);
-			o.conn.send(postData || null);
-
-			// Fire global custom event -- startEvent
-			this.startEvent.fire(o);
-
-			if(o.startEvent){
-				// Fire transaction custom event -- startEvent
-				o.startEvent.fire(o);
-			}
-
-			return o;
-		}
-	},
-
-  /**
-   * @description This method creates and subscribes custom events,
-   * specific to each transaction
-   * @method initCustomEvents
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @param {callback} callback The user-defined callback object
-   * @return {void}
-   */
-	initCustomEvents:function(o, callback)
-	{
-		// Enumerate through callback.customevents members and bind/subscribe
-		// events that match in the _customEvents table.
-		for(var prop in callback.customevents){
-			if(this._customEvents[prop][0]){
-				// Create the custom event
-				o[this._customEvents[prop][0]] = new YAHOO.util.CustomEvent(this._customEvents[prop][1], (callback.scope)?callback.scope:null);
-
-				// Subscribe the custom event
-				o[this._customEvents[prop][0]].subscribe(callback.customevents[prop]);
-			}
-		}
-	},
-
-  /**
-   * @description This method serves as a timer that polls the XHR object's readyState
-   * property during a transaction, instead of binding a callback to the
-   * onreadystatechange event.  Upon readyState 4, handleTransactionResponse
-   * will process the response, and the timer will be cleared.
-   * @method handleReadyState
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @param {callback} callback The user-defined callback object
-   * @return {void}
-   */
-
-    handleReadyState:function(o, callback)
-
-    {
-		var oConn = this;
-
-		if(callback && callback.timeout){
-			this._timeOut[o.tId] = window.setTimeout(function(){ oConn.abort(o, callback, true); }, callback.timeout);
-		}
-
-		this._poll[o.tId] = window.setInterval(
-			function(){
-				if(o.conn && o.conn.readyState === 4){
-
-					// Clear the polling interval for the transaction
-					// and remove the reference from _poll.
-					window.clearInterval(oConn._poll[o.tId]);
-					delete oConn._poll[o.tId];
-
-					if(callback && callback.timeout){
-						window.clearTimeout(oConn._timeOut[o.tId]);
-						delete oConn._timeOut[o.tId];
-					}
-
-					// Fire global custom event -- completeEvent
-					oConn.completeEvent.fire(o);
-
-					if(o.completeEvent){
-						// Fire transaction custom event -- completeEvent
-						o.completeEvent.fire(o);
-					}
-
-					oConn.handleTransactionResponse(o, callback);
-				}
-			}
-		,this._polling_interval);
-    },
-
-  /**
-   * @description This method attempts to interpret the server response and
-   * determine whether the transaction was successful, or if an error or
-   * exception was encountered.
-   * @method handleTransactionResponse
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @param {object} callback The user-defined callback object
-   * @param {boolean} isAbort Determines if the transaction was terminated via abort().
-   * @return {void}
-   */
-    handleTransactionResponse:function(o, callback, isAbort)
-    {
-
-		var httpStatus, responseObject;
-
-		try
-		{
-			if(o.conn.status !== undefined && o.conn.status !== 0){
-				httpStatus = o.conn.status;
-			}
-			else{
-				httpStatus = 13030;
-			}
-		}
-		catch(e){
-
-			 // 13030 is a custom code to indicate the condition -- in Mozilla/FF --
-			 // when the XHR object's status and statusText properties are
-			 // unavailable, and a query attempt throws an exception.
-			httpStatus = 13030;
-		}
-
-		if(httpStatus >= 200 && httpStatus < 300 || httpStatus === 1223){
-			responseObject = this.createResponseObject(o, (callback && callback.argument)?callback.argument:undefined);
-			if(callback){
-				if(callback.success){
-					if(!callback.scope){
-						callback.success(responseObject);
-					}
-					else{
-						// If a scope property is defined, the callback will be fired from
-						// the context of the object.
-						callback.success.apply(callback.scope, [responseObject]);
-					}
-				}
-			}
-
-			// Fire global custom event -- successEvent
-			this.successEvent.fire(responseObject);
-
-			if(o.successEvent){
-				// Fire transaction custom event -- successEvent
-				o.successEvent.fire(responseObject);
-			}
-		}
-		else{
-			switch(httpStatus){
-				// The following cases are wininet.dll error codes that may be encountered.
-				case 12002: // Server timeout
-				case 12029: // 12029 to 12031 correspond to dropped connections.
-				case 12030:
-				case 12031:
-				case 12152: // Connection closed by server.
-				case 13030: // See above comments for variable status.
-					responseObject = this.createExceptionObject(o.tId, (callback && callback.argument)?callback.argument:undefined, (isAbort?isAbort:false));
-					if(callback){
-						if(callback.failure){
-							if(!callback.scope){
-								callback.failure(responseObject);
-							}
-							else{
-								callback.failure.apply(callback.scope, [responseObject]);
-							}
-						}
-					}
-
-					break;
-				default:
-					responseObject = this.createResponseObject(o, (callback && callback.argument)?callback.argument:undefined);
-					if(callback){
-						if(callback.failure){
-							if(!callback.scope){
-								callback.failure(responseObject);
-							}
-							else{
-								callback.failure.apply(callback.scope, [responseObject]);
-							}
-						}
-					}
-			}
-
-			// Fire global custom event -- failureEvent
-			this.failureEvent.fire(responseObject);
-
-			if(o.failureEvent){
-				// Fire transaction custom event -- failureEvent
-				o.failureEvent.fire(responseObject);
-			}
-
-		}
-
-		this.releaseObject(o);
-		responseObject = null;
-    },
-
-  /**
-   * @description This method evaluates the server response, creates and returns the results via
-   * its properties.  Success and failure cases will differ in the response
-   * object's property values.
-   * @method createResponseObject
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @param {callbackArg} callbackArg The user-defined argument or arguments to be passed to the callback
-   * @return {object}
-   */
-    createResponseObject:function(o, callbackArg)
-    {
-		var obj = {};
-		var headerObj = {};
-
-		try
-		{
-			var headerStr = o.conn.getAllResponseHeaders();
-			var header = headerStr.split('\n');
-			for(var i=0; i<header.length; i++){
-				var delimitPos = header[i].indexOf(':');
-				if(delimitPos != -1){
-					headerObj[header[i].substring(0,delimitPos)] = header[i].substring(delimitPos+2);
-				}
-			}
-		}
-		catch(e){}
-
-		obj.tId = o.tId;
-		// Normalize IE's response to HTTP 204 when Win error 1223.
-		obj.status = (o.conn.status == 1223)?204:o.conn.status;
-		// Normalize IE's statusText to "No Content" instead of "Unknown".
-		obj.statusText = (o.conn.status == 1223)?"No Content":o.conn.statusText;
-		obj.getResponseHeader = headerObj;
-		obj.getAllResponseHeaders = headerStr;
-		obj.responseText = o.conn.responseText;
-		obj.responseXML = o.conn.responseXML;
-
-		if(typeof callbackArg !== undefined){
-			obj.argument = callbackArg;
-		}
-
-		return obj;
-    },
-
-  /**
-   * @description If a transaction cannot be completed due to dropped or closed connections,
-   * there may be not be enough information to build a full response object.
-   * The failure callback will be fired and this specific condition can be identified
-   * by a status property value of 0.
-   *
-   * If an abort was successful, the status property will report a value of -1.
-   *
-   * @method createExceptionObject
-   * @private
-   * @static
-   * @param {int} tId The Transaction Id
-   * @param {callbackArg} callbackArg The user-defined argument or arguments to be passed to the callback
-   * @param {boolean} isAbort Determines if the exception case is caused by a transaction abort
-   * @return {object}
-   */
-    createExceptionObject:function(tId, callbackArg, isAbort)
-    {
-		var COMM_CODE = 0;
-		var COMM_ERROR = 'communication failure';
-		var ABORT_CODE = -1;
-		var ABORT_ERROR = 'transaction aborted';
-
-		var obj = {};
-
-		obj.tId = tId;
-		if(isAbort){
-			obj.status = ABORT_CODE;
-			obj.statusText = ABORT_ERROR;
-		}
-		else{
-			obj.status = COMM_CODE;
-			obj.statusText = COMM_ERROR;
-		}
-
-		if(callbackArg){
-			obj.argument = callbackArg;
-		}
-
-		return obj;
-    },
-
-  /**
-   * @description Method that initializes the custom HTTP headers for the each transaction.
-   * @method initHeader
-   * @public
-   * @static
-   * @param {string} label The HTTP header label
-   * @param {string} value The HTTP header value
-   * @param {string} isDefault Determines if the specific header is a default header
-   * automatically sent with each transaction.
-   * @return {void}
-   */
-	initHeader:function(label, value, isDefault)
-	{
-		var headerObj = (isDefault)?this._default_headers:this._http_headers;
-		headerObj[label] = value;
-
-		if(isDefault){
-			this._has_default_headers = true;
-		}
-		else{
-			this._has_http_headers = true;
-		}
-	},
-
-
-  /**
-   * @description Accessor that sets the HTTP headers for each transaction.
-   * @method setHeader
-   * @private
-   * @static
-   * @param {object} o The connection object for the transaction.
-   * @return {void}
-   */
-	setHeader:function(o)
-	{
-		if(this._has_default_headers){
-			for(var prop in this._default_headers){
-				if(YAHOO.lang.hasOwnProperty(this._default_headers, prop)){
-					o.conn.setRequestHeader(prop, this._default_headers[prop]);
-				}
-			}
-		}
-
-		if(this._has_http_headers){
-			for(var prop in this._http_headers){
-				if(YAHOO.lang.hasOwnProperty(this._http_headers, prop)){
-					o.conn.setRequestHeader(prop, this._http_headers[prop]);
-				}
-			}
-			delete this._http_headers;
-
-			this._http_headers = {};
-			this._has_http_headers = false;
-		}
-	},
-
-  /**
-   * @description Resets the default HTTP headers object
-   * @method resetDefaultHeaders
-   * @public
-   * @static
-   * @return {void}
-   */
-	resetDefaultHeaders:function(){
-		delete this._default_headers;
-		this._default_headers = {};
-		this._has_default_headers = false;
-	},
-
-  /**
-   * @description This method assembles the form label and value pairs and
-   * constructs an encoded string.
-   * asyncRequest() will automatically initialize the transaction with a
-   * a HTTP header Content-Type of application/x-www-form-urlencoded.
-   * @method setForm
-   * @public
-   * @static
-   * @param {string || object} form id or name attribute, or form object.
-   * @param {boolean} optional enable file upload.
-   * @param {boolean} optional enable file upload over SSL in IE only.
-   * @return {string} string of the HTML form field name and value pairs..
-   */
-	setForm:function(formId, isUpload, secureUri)
-	{
-		this.resetFormState();
-
-		var oForm;
-		if(typeof formId == 'string'){
-			// Determine if the argument is a form id or a form name.
-			// Note form name usage is deprecated by supported
-			// here for legacy reasons.
-			oForm = (document.getElementById(formId) || document.forms[formId]);
-		}
-		else if(typeof formId == 'object'){
-			// Treat argument as an HTML form object.
-			oForm = formId;
-		}
-		else{
-			return;
-		}
-
-		// If the isUpload argument is true, setForm will call createFrame to initialize
-		// an iframe as the form target.
-		//
-		// The argument secureURI is also required by IE in SSL environments
-		// where the secureURI string is a fully qualified HTTP path, used to set the source
-		// of the iframe, to a stub resource in the same domain.
-		if(isUpload){
-
-			// Create iframe in preparation for file upload.
-			var io = this.createFrame(secureUri?secureUri:null);
-			// Set form reference and file upload properties to true.
-			this._isFormSubmit = true;
-			this._isFileUpload = true;
-			this._formNode = oForm;
-
-			return;
-
-		}
-
-		var oElement, oName, oValue, oDisabled;
-		var hasSubmit = false;
-
-		// Iterate over the form elements collection to construct the
-		// label-value pairs.
-		for (var i=0; i<oForm.elements.length; i++){
-			oElement = oForm.elements[i];
-			oDisabled = oForm.elements[i].disabled;
-			oName = oForm.elements[i].name;
-			oValue = oForm.elements[i].value;
-
-			// Do not submit fields that are disabled or
-			// do not have a name attribute value.
-			if(!oDisabled && oName)
-			{
-				switch(oElement.type)
-				{
-					case 'select-one':
-					case 'select-multiple':
-						for(var j=0; j<oElement.options.length; j++){
-							if(oElement.options[j].selected){
-								if(window.ActiveXObject){
-									this._sFormData += encodeURIComponent(oName) + '=' + encodeURIComponent(oElement.options[j].attributes['value'].specified?oElement.options[j].value:oElement.options[j].text) + '&';
-								}
-								else{
-									this._sFormData += encodeURIComponent(oName) + '=' + encodeURIComponent(oElement.options[j].hasAttribute('value')?oElement.options[j].value:oElement.options[j].text) + '&';
-								}
-							}
-						}
-						break;
-					case 'radio':
-					case 'checkbox':
-						if(oElement.checked){
-							this._sFormData += encodeURIComponent(oName) + '=' + encodeURIComponent(oValue) + '&';
-						}
-						break;
-					case 'file':
-						// stub case as XMLHttpRequest will only send the file path as a string.
-					case undefined:
-						// stub case for fieldset element which returns undefined.
-					case 'reset':
-						// stub case for input type reset button.
-					case 'button':
-						// stub case for input type button elements.
-						break;
-					case 'submit':
-						if(hasSubmit === false){
-							if(this._hasSubmitListener && this._submitElementValue){
-								this._sFormData += this._submitElementValue + '&';
-							}
-							else{
-								this._sFormData += encodeURIComponent(oName) + '=' + encodeURIComponent(oValue) + '&';
-							}
-
-							hasSubmit = true;
-						}
-						break;
-					default:
-						this._sFormData += encodeURIComponent(oName) + '=' + encodeURIComponent(oValue) + '&';
-				}
-			}
-		}
-
-		this._isFormSubmit = true;
-		this._sFormData = this._sFormData.substr(0, this._sFormData.length - 1);
-
-
-		this.initHeader('Content-Type', this._default_form_header);
-
-		return this._sFormData;
-	},
-
-  /**
-   * @description Resets HTML form properties when an HTML form or HTML form
-   * with file upload transaction is sent.
-   * @method resetFormState
-   * @private
-   * @static
-   * @return {void}
-   */
-	resetFormState:function(){
-		this._isFormSubmit = false;
-		this._isFileUpload = false;
-		this._formNode = null;
-		this._sFormData = "";
-	},
-
-  /**
-   * @description Creates an iframe to be used for form file uploads.  It is remove from the
-   * document upon completion of the upload transaction.
-   * @method createFrame
-   * @private
-   * @static
-   * @param {string} optional qualified path of iframe resource for SSL in IE.
-   * @return {void}
-   */
-	createFrame:function(secureUri){
-
-		// IE does not allow the setting of id and name attributes as object
-		// properties via createElement().  A different iframe creation
-		// pattern is required for IE.
-		var frameId = 'yuiIO' + this._transaction_id;
-		var io;
-		if(window.ActiveXObject){
-			io = document.createElement('<iframe id="' + frameId + '" name="' + frameId + '" />');
-
-			// IE will throw a security exception in an SSL environment if the
-			// iframe source is undefined.
-			if(typeof secureUri == 'boolean'){
-				io.src = 'javascript:false';
-			}
-			else if(typeof secureURI == 'string'){
-				// Deprecated
-				io.src = secureUri;
-			}
-		}
-		else{
-			io = document.createElement('iframe');
-			io.id = frameId;
-			io.name = frameId;
-		}
-
-		io.style.position = 'absolute';
-		io.style.top = '-1000px';
-		io.style.left = '-1000px';
-
-		document.body.appendChild(io);
-	},
-
-  /**
-   * @description Parses the POST data and creates hidden form elements
-   * for each key-value, and appends them to the HTML form object.
-   * @method appendPostData
-   * @private
-   * @static
-   * @param {string} postData The HTTP POST data
-   * @return {array} formElements Collection of hidden fields.
-   */
-	appendPostData:function(postData)
-	{
-		var formElements = [];
-		var postMessage = postData.split('&');
-		for(var i=0; i < postMessage.length; i++){
-			var delimitPos = postMessage[i].indexOf('=');
-			if(delimitPos != -1){
-				formElements[i] = document.createElement('input');
-				formElements[i].type = 'hidden';
-				formElements[i].name = postMessage[i].substring(0,delimitPos);
-				formElements[i].value = postMessage[i].substring(delimitPos+1);
-				this._formNode.appendChild(formElements[i]);
-			}
-		}
-
-		return formElements;
-	},
-
-  /**
-   * @description Uploads HTML form, inclusive of files/attachments, using the
-   * iframe created in createFrame to facilitate the transaction.
-   * @method uploadFile
-   * @private
-   * @static
-   * @param {int} id The transaction id.
-   * @param {object} callback User-defined callback object.
-   * @param {string} uri Fully qualified path of resource.
-   * @param {string} postData POST data to be submitted in addition to HTML form.
-   * @return {void}
-   */
-	uploadFile:function(o, callback, uri, postData){
-
-		// Each iframe has an id prefix of "yuiIO" followed
-		// by the unique transaction id.
-		var frameId = 'yuiIO' + o.tId;
-		var uploadEncoding = 'multipart/form-data';
-		var io = document.getElementById(frameId);
-		var oConn = this;
-
-		// Track original HTML form attribute values.
-		var rawFormAttributes =
-		{
-			action:this._formNode.getAttribute('action'),
-			method:this._formNode.getAttribute('method'),
-			target:this._formNode.getAttribute('target')
-		};
-
-		// Initialize the HTML form properties in case they are
-		// not defined in the HTML form.
-		this._formNode.setAttribute('action', uri);
-		this._formNode.setAttribute('method', 'POST');
-		this._formNode.setAttribute('target', frameId);
-
-		if(this._formNode.encoding){
-			// IE does not respect property enctype for HTML forms.
-			// Instead it uses the property - "encoding".
-			this._formNode.setAttribute('encoding', uploadEncoding);
-		}
-		else{
-			this._formNode.setAttribute('enctype', uploadEncoding);
-		}
-
-		if(postData){
-			var oElements = this.appendPostData(postData);
-		}
-
-		// Start file upload.
-		this._formNode.submit();
-
-		// Fire global custom event -- startEvent
-		this.startEvent.fire(o);
-
-		if(o.startEvent){
-			// Fire transaction custom event -- startEvent
-			o.startEvent.fire(o);
-		}
-
-		// Start polling if a callback is present and the timeout
-		// property has been defined.
-		if(callback && callback.timeout){
-			this._timeOut[o.tId] = window.setTimeout(function(){ oConn.abort(o, callback, true); }, callback.timeout);
-		}
-
-		// Remove HTML elements created by appendPostData
-		if(oElements && oElements.length > 0){
-			for(var i=0; i < oElements.length; i++){
-				this._formNode.removeChild(oElements[i]);
-			}
-		}
-
-		// Restore HTML form attributes to their original
-		// values prior to file upload.
-		for(var prop in rawFormAttributes){
-			if(YAHOO.lang.hasOwnProperty(rawFormAttributes, prop)){
-				if(rawFormAttributes[prop]){
-					this._formNode.setAttribute(prop, rawFormAttributes[prop]);
-				}
-				else{
-					this._formNode.removeAttribute(prop);
-				}
-			}
-		}
-
-		// Reset HTML form state properties.
-		this.resetFormState();
-
-		// Create the upload callback handler that fires when the iframe
-		// receives the load event.  Subsequently, the event handler is detached
-		// and the iframe removed from the document.
-		var uploadCallback = function()
-		{
-			if(callback && callback.timeout){
-				window.clearTimeout(oConn._timeOut[o.tId]);
-				delete oConn._timeOut[o.tId];
-			}
-
-			// Fire global custom event -- completeEvent
-			oConn.completeEvent.fire(o);
-
-			if(o.completeEvent){
-				// Fire transaction custom event -- completeEvent
-				o.completeEvent.fire(o);
-			}
-
-			var obj = {};
-			obj.tId = o.tId;
-			obj.argument = callback.argument;
-
-			try
-			{
-				// responseText and responseXML will be populated with the same data from the iframe.
-				// Since the HTTP headers cannot be read from the iframe
-				obj.responseText = io.contentWindow.document.body?io.contentWindow.document.body.innerHTML:io.contentWindow.document.documentElement.textContent;
-				obj.responseXML = io.contentWindow.document.XMLDocument?io.contentWindow.document.XMLDocument:io.contentWindow.document;
-			}
-			catch(e){}
-
-			if(callback && callback.upload){
-				if(!callback.scope){
-					callback.upload(obj);
-				}
-				else{
-					callback.upload.apply(callback.scope, [obj]);
-				}
-			}
-
-			// Fire global custom event -- uploadEvent
-			oConn.uploadEvent.fire(obj);
-
-			if(o.uploadEvent){
-				// Fire transaction custom event -- uploadEvent
-				o.uploadEvent.fire(obj);
-			}
-
-			YAHOO.util.Event.removeListener(io, "load", uploadCallback);
-
-			setTimeout(
-				function(){
-					document.body.removeChild(io);
-					oConn.releaseObject(o);
-				}, 100);
-		};
-
-		// Bind the onload handler to the iframe to detect the file upload response.
-		YAHOO.util.Event.addListener(io, "load", uploadCallback);
-	},
-
-  /**
-   * @description Method to terminate a transaction, if it has not reached readyState 4.
-   * @method abort
-   * @public
-   * @static
-   * @param {object} o The connection object returned by asyncRequest.
-   * @param {object} callback  User-defined callback object.
-   * @param {string} isTimeout boolean to indicate if abort resulted from a callback timeout.
-   * @return {boolean}
-   */
-	abort:function(o, callback, isTimeout)
-	{
-		var abortStatus;
-
-		if(o.conn){
-			if(this.isCallInProgress(o)){
-				// Issue abort request
-				o.conn.abort();
-
-				window.clearInterval(this._poll[o.tId]);
-				delete this._poll[o.tId];
-
-				if(isTimeout){
-					window.clearTimeout(this._timeOut[o.tId]);
-					delete this._timeOut[o.tId];
-				}
-
-				abortStatus = true;
-			}
-		}
-		else if(o.isUpload === true){
-			var frameId = 'yuiIO' + o.tId;
-			var io = document.getElementById(frameId);
-
-			if(io){
-				// Remove the event listener from the iframe.
-				YAHOO.util.Event.removeListener(io, "load", uploadCallback);
-				// Destroy the iframe facilitating the transaction.
-				document.body.removeChild(io);
-
-				if(isTimeout){
-					window.clearTimeout(this._timeOut[o.tId]);
-					delete this._timeOut[o.tId];
-				}
-
-				abortStatus = true;
-			}
-		}
-		else{
-			abortStatus = false;
-		}
-
-		if(abortStatus === true){
-			// Fire global custom event -- abortEvent
-			this.abortEvent.fire(o);
-
-			if(o.abortEvent){
-				// Fire transaction custom event -- abortEvent
-				o.abortEvent.fire(o);
-			}
-
-			this.handleTransactionResponse(o, callback, true);
-		}
-
-		return abortStatus;
-	},
-
-  /**
-   * @description Determines if the transaction is still being processed.
-   * @method isCallInProgress
-   * @public
-   * @static
-   * @param {object} o The connection object returned by asyncRequest
-   * @return {boolean}
-   */
-	isCallInProgress:function(o)
-	{
-		// if the XHR object assigned to the transaction has not been dereferenced,
-		// then check its readyState status.  Otherwise, return false.
-		if(o && o.conn){
-			return o.conn.readyState !== 4 && o.conn.readyState !== 0;
-		}
-		else if(o && o.isUpload === true){
-			var frameId = 'yuiIO' + o.tId;
-			return document.getElementById(frameId)?true:false;
-		}
-		else{
-			return false;
-		}
-	},
-
-  /**
-   * @description Dereference the XHR instance and the connection object after the transaction is completed.
-   * @method releaseObject
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @return {void}
-   */
-	releaseObject:function(o)
-	{
-		//dereference the XHR instance.
-		if(o.conn){
-			o.conn = null;
-		}
-		//dereference the connection object.
-		o = null;
-	}
-};
-
-YAHOO.register("connection", YAHOO.util.Connect, {version: "2.3.1", build: "541"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.3.1/dom/dom.js b/eclipse.org-common/yui/2.3.1/dom/dom.js
deleted file mode 100644
index 0c7146e..0000000
--- a/eclipse.org-common/yui/2.3.1/dom/dom.js
+++ /dev/null
@@ -1,1217 +0,0 @@
-/*
-Copyright (c) 2007, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.3.1
-*/
-/**
- * The dom module provides helper methods for manipulating Dom elements.
- * @module dom
- *
- */
-
-(function() {
-    var Y = YAHOO.util,     // internal shorthand
-        getStyle,           // for load time browser branching
-        setStyle,           // ditto
-        id_counter = 0,     // for use with generateId
-        propertyCache = {}, // for faster hyphen converts
-        reClassNameCache = {}; // cache regexes for className
-    
-    // brower detection
-    var isOpera = YAHOO.env.ua.opera,
-        isSafari = YAHOO.env.ua.webkit, 
-        isGecko = YAHOO.env.ua.gecko,
-        isIE = YAHOO.env.ua.ie; 
-    
-    // regex cache
-    var patterns = {
-        HYPHEN: /(-[a-z])/i, // to normalize get/setStyle
-        ROOT_TAG: /^body|html$/i // body for quirks mode, html for standards
-    };
-
-    var toCamel = function(property) {
-        if ( !patterns.HYPHEN.test(property) ) {
-            return property; // no hyphens
-        }
-        
-        if (propertyCache[property]) { // already converted
-            return propertyCache[property];
-        }
-       
-        var converted = property;
- 
-        while( patterns.HYPHEN.exec(converted) ) {
-            converted = converted.replace(RegExp.$1,
-                    RegExp.$1.substr(1).toUpperCase());
-        }
-        
-        propertyCache[property] = converted;
-        return converted;
-        //return property.replace(/-([a-z])/gi, function(m0, m1) {return m1.toUpperCase()}) // cant use function as 2nd arg yet due to safari bug
-    };
-    
-    var getClassRegEx = function(className) {
-        var re = reClassNameCache[className];
-        if (!re) {
-            re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)');
-            reClassNameCache[className] = re;
-        }
-        return re;
-    };
-
-    // branching at load instead of runtime
-    if (document.defaultView && document.defaultView.getComputedStyle) { // W3C DOM method
-        getStyle = function(el, property) {
-            var value = null;
-            
-            if (property == 'float') { // fix reserved word
-                property = 'cssFloat';
-            }
-
-            var computed = document.defaultView.getComputedStyle(el, '');
-            if (computed) { // test computed before touching for safari
-                value = computed[toCamel(property)];
-            }
-            
-            return el.style[property] || value;
-        };
-    } else if (document.documentElement.currentStyle && isIE) { // IE method
-        getStyle = function(el, property) {                         
-            switch( toCamel(property) ) {
-                case 'opacity' :// IE opacity uses filter
-                    var val = 100;
-                    try { // will error if no DXImageTransform
-                        val = el.filters['DXImageTransform.Microsoft.Alpha'].opacity;
-
-                    } catch(e) {
-                        try { // make sure its in the document
-                            val = el.filters('alpha').opacity;
-                        } catch(e) {
-                        }
-                    }
-                    return val / 100;
-                case 'float': // fix reserved word
-                    property = 'styleFloat'; // fall through
-                default: 
-                    // test currentStyle before touching
-                    var value = el.currentStyle ? el.currentStyle[property] : null;
-                    return ( el.style[property] || value );
-            }
-        };
-    } else { // default to inline only
-        getStyle = function(el, property) { return el.style[property]; };
-    }
-    
-    if (isIE) {
-        setStyle = function(el, property, val) {
-            switch (property) {
-                case 'opacity':
-                    if ( YAHOO.lang.isString(el.style.filter) ) { // in case not appended
-                        el.style.filter = 'alpha(opacity=' + val * 100 + ')';
-                        
-                        if (!el.currentStyle || !el.currentStyle.hasLayout) {
-                            el.style.zoom = 1; // when no layout or cant tell
-                        }
-                    }
-                    break;
-                case 'float':
-                    property = 'styleFloat';
-                default:
-                el.style[property] = val;
-            }
-        };
-    } else {
-        setStyle = function(el, property, val) {
-            if (property == 'float') {
-                property = 'cssFloat';
-            }
-            el.style[property] = val;
-        };
-    }
-    
-    var testElement = function(node, method) {
-        return node && node.nodeType == 1 && ( !method || method(node) );
-    };
-
-    /**
-     * Provides helper methods for DOM elements.
-     * @namespace YAHOO.util
-     * @class Dom
-     */
-    YAHOO.util.Dom = {
-        /**
-         * Returns an HTMLElement reference.
-         * @method get
-         * @param {String | HTMLElement |Array} el Accepts a string to use as an ID for getting a DOM reference, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @return {HTMLElement | Array} A DOM reference to an HTML element or an array of HTMLElements.
-         */
-        get: function(el) {
-            if (el && (el.tagName || el.item)) { // HTMLElement, or HTMLCollection
-                return el;
-            }
-
-            if (YAHOO.lang.isString(el) || !el) { // HTMLElement or null
-                return document.getElementById(el);
-            }
-            
-            if (el.length !== undefined) { // array-like 
-                var c = [];
-                for (var i = 0, len = el.length; i < len; ++i) {
-                    c[c.length] = Y.Dom.get(el[i]);
-                }
-                
-                return c;
-            }
-
-            return el; // some other object, just pass it back
-        },
-    
-        /**
-         * Normalizes currentStyle and ComputedStyle.
-         * @method getStyle
-         * @param {String | HTMLElement |Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @param {String} property The style property whose value is returned.
-         * @return {String | Array} The current value of the style property for the element(s).
-         */
-        getStyle: function(el, property) {
-            property = toCamel(property);
-            
-            var f = function(element) {
-                return getStyle(element, property);
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-    
-        /**
-         * Wrapper for setting style properties of HTMLElements.  Normalizes "opacity" across modern browsers.
-         * @method setStyle
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @param {String} property The style property to be set.
-         * @param {String} val The value to apply to the given property.
-         */
-        setStyle: function(el, property, val) {
-            property = toCamel(property);
-            
-            var f = function(element) {
-                setStyle(element, property, val);
-                
-            };
-            
-            Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Gets the current position of an element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method getXY
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
-         * @return {Array} The XY position of the element(s)
-         */
-        getXY: function(el) {
-            var f = function(el) {
-    
-            // has to be part of document to have pageXY
-                if ( (el.parentNode === null || el.offsetParent === null ||
-                        this.getStyle(el, 'display') == 'none') && el != document.body) {
-                    return false;
-                }
-                
-                var parentNode = null;
-                var pos = [];
-                var box;
-                var doc = el.ownerDocument; 
-
-                if (el.getBoundingClientRect) { // IE
-                    box = el.getBoundingClientRect();
-                    return [box.left + Y.Dom.getDocumentScrollLeft(el.ownerDocument), box.top + Y.Dom.getDocumentScrollTop(el.ownerDocument)];
-                }
-                else { // safari, opera, & gecko
-                    pos = [el.offsetLeft, el.offsetTop];
-                    parentNode = el.offsetParent;
-
-                    // safari: if el is abs or any parent is abs, subtract body offsets
-                    var hasAbs = this.getStyle(el, 'position') == 'absolute';
-
-                    if (parentNode != el) {
-                        while (parentNode) {
-                            pos[0] += parentNode.offsetLeft;
-                            pos[1] += parentNode.offsetTop;
-                            if (isSafari && !hasAbs && 
-                                    this.getStyle(parentNode,'position') == 'absolute' ) {
-                                hasAbs = true; // we need to offset if any parent is absolutely positioned
-                            }
-                            parentNode = parentNode.offsetParent;
-                        }
-                    }
-
-                    if (isSafari && hasAbs) { //safari doubles in this case
-                        pos[0] -= el.ownerDocument.body.offsetLeft;
-                        pos[1] -= el.ownerDocument.body.offsetTop;
-                    } 
-                }
-                
-                parentNode = el.parentNode;
-
-                // account for any scrolled ancestors
-                while ( parentNode.tagName && !patterns.ROOT_TAG.test(parentNode.tagName) ) 
-                {
-                   // work around opera inline/table scrollLeft/Top bug
-                   if (Y.Dom.getStyle(parentNode, 'display').search(/^inline|table-row.*$/i)) { 
-                        pos[0] -= parentNode.scrollLeft;
-                        pos[1] -= parentNode.scrollTop;
-                    }
-                    
-                    parentNode = parentNode.parentNode; 
-                }
-       
-                
-                return pos;
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Gets the current X position of an element based on page coordinates.  The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method getX
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
-         * @return {Number | Array} The X position of the element(s)
-         */
-        getX: function(el) {
-            var f = function(el) {
-                return Y.Dom.getXY(el)[0];
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Gets the current Y position of an element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method getY
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
-         * @return {Number | Array} The Y position of the element(s)
-         */
-        getY: function(el) {
-            var f = function(el) {
-                return Y.Dom.getXY(el)[1];
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Set the position of an html element in page coordinates, regardless of how the element is positioned.
-         * The element(s) must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method setXY
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
-         * @param {Array} pos Contains X & Y values for new position (coordinates are page-based)
-         * @param {Boolean} noRetry By default we try and set the position a second time if the first fails
-         */
-        setXY: function(el, pos, noRetry) {
-            var f = function(el) {
-                var style_pos = this.getStyle(el, 'position');
-                if (style_pos == 'static') { // default to relative
-                    this.setStyle(el, 'position', 'relative');
-                    style_pos = 'relative';
-                }
-
-                var pageXY = this.getXY(el);
-                if (pageXY === false) { // has to be part of doc to have pageXY
-                    return false; 
-                }
-                
-                var delta = [ // assuming pixels; if not we will have to retry
-                    parseInt( this.getStyle(el, 'left'), 10 ),
-                    parseInt( this.getStyle(el, 'top'), 10 )
-                ];
-            
-                if ( isNaN(delta[0]) ) {// in case of 'auto'
-                    delta[0] = (style_pos == 'relative') ? 0 : el.offsetLeft;
-                } 
-                if ( isNaN(delta[1]) ) { // in case of 'auto'
-                    delta[1] = (style_pos == 'relative') ? 0 : el.offsetTop;
-                } 
-        
-                if (pos[0] !== null) { el.style.left = pos[0] - pageXY[0] + delta[0] + 'px'; }
-                if (pos[1] !== null) { el.style.top = pos[1] - pageXY[1] + delta[1] + 'px'; }
-              
-                if (!noRetry) {
-                    var newXY = this.getXY(el);
-
-                    // if retry is true, try one more time if we miss 
-                   if ( (pos[0] !== null && newXY[0] != pos[0]) || 
-                        (pos[1] !== null && newXY[1] != pos[1]) ) {
-                       this.setXY(el, pos, true);
-                   }
-                }        
-        
-            };
-            
-            Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Set the X position of an html element in page coordinates, regardless of how the element is positioned.
-         * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method setX
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @param {Int} x The value to use as the X coordinate for the element(s).
-         */
-        setX: function(el, x) {
-            Y.Dom.setXY(el, [x, null]);
-        },
-        
-        /**
-         * Set the Y position of an html element in page coordinates, regardless of how the element is positioned.
-         * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method setY
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @param {Int} x To use as the Y coordinate for the element(s).
-         */
-        setY: function(el, y) {
-            Y.Dom.setXY(el, [null, y]);
-        },
-        
-        /**
-         * Returns the region position of the given element.
-         * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
-         * @method getRegion
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @return {Region | Array} A Region or array of Region instances containing "top, left, bottom, right" member data.
-         */
-        getRegion: function(el) {
-            var f = function(el) {
-                if ( (el.parentNode === null || el.offsetParent === null ||
-                        this.getStyle(el, 'display') == 'none') && el != document.body) {
-                    return false;
-                }
-
-                var region = Y.Region.getRegion(el);
-                return region;
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Returns the width of the client (viewport).
-         * @method getClientWidth
-         * @deprecated Now using getViewportWidth.  This interface left intact for back compat.
-         * @return {Int} The width of the viewable area of the page.
-         */
-        getClientWidth: function() {
-            return Y.Dom.getViewportWidth();
-        },
-        
-        /**
-         * Returns the height of the client (viewport).
-         * @method getClientHeight
-         * @deprecated Now using getViewportHeight.  This interface left intact for back compat.
-         * @return {Int} The height of the viewable area of the page.
-         */
-        getClientHeight: function() {
-            return Y.Dom.getViewportHeight();
-        },
-
-        /**
-         * Returns a array of HTMLElements with the given class.
-         * For optimized performance, include a tag and/or root node when possible.
-         * @method getElementsByClassName
-         * @param {String} className The class name to match against
-         * @param {String} tag (optional) The tag name of the elements being collected
-         * @param {String | HTMLElement} root (optional) The HTMLElement or an ID to use as the starting point 
-         * @param {Function} apply (optional) A function to apply to each element when found 
-         * @return {Array} An array of elements that have the given class name
-         */
-        getElementsByClassName: function(className, tag, root, apply) {
-            tag = tag || '*';
-            root = (root) ? Y.Dom.get(root) : null || document; 
-            if (!root) {
-                return [];
-            }
-
-            var nodes = [],
-                elements = root.getElementsByTagName(tag),
-                re = getClassRegEx(className);
-
-            for (var i = 0, len = elements.length; i < len; ++i) {
-                if ( re.test(elements[i].className) ) {
-                    nodes[nodes.length] = elements[i];
-                    if (apply) {
-                        apply.call(elements[i], elements[i]);
-                    }
-                }
-            }
-            
-            return nodes;
-        },
-
-        /**
-         * Determines whether an HTMLElement has the given className.
-         * @method hasClass
-         * @param {String | HTMLElement | Array} el The element or collection to test
-         * @param {String} className the class name to search for
-         * @return {Boolean | Array} A boolean value or array of boolean values
-         */
-        hasClass: function(el, className) {
-            var re = getClassRegEx(className);
-
-            var f = function(el) {
-                return re.test(el.className);
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-    
-        /**
-         * Adds a class name to a given element or collection of elements.
-         * @method addClass         
-         * @param {String | HTMLElement | Array} el The element or collection to add the class to
-         * @param {String} className the class name to add to the class attribute
-         * @return {Boolean | Array} A pass/fail boolean or array of booleans
-         */
-        addClass: function(el, className) {
-            var f = function(el) {
-                if (this.hasClass(el, className)) {
-                    return false; // already present
-                }
-                
-                
-                el.className = YAHOO.lang.trim([el.className, className].join(' '));
-                return true;
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-    
-        /**
-         * Removes a class name from a given element or collection of elements.
-         * @method removeClass         
-         * @param {String | HTMLElement | Array} el The element or collection to remove the class from
-         * @param {String} className the class name to remove from the class attribute
-         * @return {Boolean | Array} A pass/fail boolean or array of booleans
-         */
-        removeClass: function(el, className) {
-            var re = getClassRegEx(className);
-            
-            var f = function(el) {
-                if (!this.hasClass(el, className)) {
-                    return false; // not present
-                }                 
-
-                
-                var c = el.className;
-                el.className = c.replace(re, ' ');
-                if ( this.hasClass(el, className) ) { // in case of multiple adjacent
-                    this.removeClass(el, className);
-                }
-
-                el.className = YAHOO.lang.trim(el.className); // remove any trailing spaces
-                return true;
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Replace a class with another class for a given element or collection of elements.
-         * If no oldClassName is present, the newClassName is simply added.
-         * @method replaceClass  
-         * @param {String | HTMLElement | Array} el The element or collection to remove the class from
-         * @param {String} oldClassName the class name to be replaced
-         * @param {String} newClassName the class name that will be replacing the old class name
-         * @return {Boolean | Array} A pass/fail boolean or array of booleans
-         */
-        replaceClass: function(el, oldClassName, newClassName) {
-            if (!newClassName || oldClassName === newClassName) { // avoid infinite loop
-                return false;
-            }
-            
-            var re = getClassRegEx(oldClassName);
-
-            var f = function(el) {
-            
-                if ( !this.hasClass(el, oldClassName) ) {
-                    this.addClass(el, newClassName); // just add it if nothing to replace
-                    return true; // NOTE: return
-                }
-            
-                el.className = el.className.replace(re, ' ' + newClassName + ' ');
-
-                if ( this.hasClass(el, oldClassName) ) { // in case of multiple adjacent
-                    this.replaceClass(el, oldClassName, newClassName);
-                }
-
-                el.className = YAHOO.lang.trim(el.className); // remove any trailing spaces
-                return true;
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Returns an ID and applies it to the element "el", if provided.
-         * @method generateId  
-         * @param {String | HTMLElement | Array} el (optional) An optional element array of elements to add an ID to (no ID is added if one is already present).
-         * @param {String} prefix (optional) an optional prefix to use (defaults to "yui-gen").
-         * @return {String | Array} The generated ID, or array of generated IDs (or original ID if already present on an element)
-         */
-        generateId: function(el, prefix) {
-            prefix = prefix || 'yui-gen';
-
-            var f = function(el) {
-                if (el && el.id) { // do not override existing ID
-                    return el.id;
-                } 
-
-                var id = prefix + id_counter++;
-
-                if (el) {
-                    el.id = id;
-                }
-                
-                return id;
-            };
-
-            // batch fails when no element, so just generate and return single ID
-            return Y.Dom.batch(el, f, Y.Dom, true) || f.apply(Y.Dom, arguments);
-        },
-        
-        /**
-         * Determines whether an HTMLElement is an ancestor of another HTML element in the DOM hierarchy.
-         * @method isAncestor
-         * @param {String | HTMLElement} haystack The possible ancestor
-         * @param {String | HTMLElement} needle The possible descendent
-         * @return {Boolean} Whether or not the haystack is an ancestor of needle
-         */
-        isAncestor: function(haystack, needle) {
-            haystack = Y.Dom.get(haystack);
-            if (!haystack || !needle) { return false; }
-            
-            var f = function(node) {
-                if (haystack.contains && node.nodeType && !isSafari) { // safari contains is broken
-                    return haystack.contains(node);
-                }
-                else if ( haystack.compareDocumentPosition && node.nodeType ) {
-                    return !!(haystack.compareDocumentPosition(node) & 16);
-                } else if (node.nodeType) {
-                    // fallback to crawling up (safari)
-                    return !!this.getAncestorBy(node, function(el) {
-                        return el == haystack; 
-                    }); 
-                }
-                return false;
-            };
-            
-            return Y.Dom.batch(needle, f, Y.Dom, true);      
-        },
-        
-        /**
-         * Determines whether an HTMLElement is present in the current document.
-         * @method inDocument         
-         * @param {String | HTMLElement} el The element to search for
-         * @return {Boolean} Whether or not the element is present in the current document
-         */
-        inDocument: function(el) {
-            var f = function(el) { // safari contains fails for body so crawl up
-                if (isSafari) {
-                    while (el = el.parentNode) { // note assignment
-                        if (el == document.documentElement) {
-                            return true;
-                        }
-                    }
-                    return false;
-                }
-                return this.isAncestor(document.documentElement, el);
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Returns a array of HTMLElements that pass the test applied by supplied boolean method.
-         * For optimized performance, include a tag and/or root node when possible.
-         * @method getElementsBy
-         * @param {Function} method - A boolean method for testing elements which receives the element as its only argument.
-         * @param {String} tag (optional) The tag name of the elements being collected
-         * @param {String | HTMLElement} root (optional) The HTMLElement or an ID to use as the starting point 
-         * @param {Function} apply (optional) A function to apply to each element when found 
-         * @return {Array} Array of HTMLElements
-         */
-        getElementsBy: function(method, tag, root, apply) {
-            tag = tag || '*';
-            root = (root) ? Y.Dom.get(root) : null || document; 
-
-            if (!root) {
-                return [];
-            }
-
-            var nodes = [],
-                elements = root.getElementsByTagName(tag);
-            
-            for (var i = 0, len = elements.length; i < len; ++i) {
-                if ( method(elements[i]) ) {
-                    nodes[nodes.length] = elements[i];
-                    if (apply) {
-                        apply(elements[i]);
-                    }
-                }
-            }
-
-            
-            return nodes;
-        },
-        
-        /**
-         * Runs the supplied method against each item in the Collection/Array.
-         * The method is called with the element(s) as the first arg, and the optional param as the second ( method(el, o) ).
-         * @method batch
-         * @param {String | HTMLElement | Array} el (optional) An element or array of elements to apply the method to
-         * @param {Function} method The method to apply to the element(s)
-         * @param {Any} o (optional) An optional arg that is passed to the supplied method
-         * @param {Boolean} override (optional) Whether or not to override the scope of "method" with "o"
-         * @return {Any | Array} The return value(s) from the supplied method
-         */
-        batch: function(el, method, o, override) {
-            el = (el && (el.tagName || el.item)) ? el : Y.Dom.get(el); // skip get() when possible
-
-            if (!el || !method) {
-                return false;
-            } 
-            var scope = (override) ? o : window;
-            
-            if (el.tagName || el.length === undefined) { // element or not array-like 
-                return method.call(scope, el, o);
-            } 
-
-            var collection = [];
-            
-            for (var i = 0, len = el.length; i < len; ++i) {
-                collection[collection.length] = method.call(scope, el[i], o);
-            }
-            
-            return collection;
-        },
-        
-        /**
-         * Returns the height of the document.
-         * @method getDocumentHeight
-         * @return {Int} The height of the actual document (which includes the body and its margin).
-         */
-        getDocumentHeight: function() {
-            var scrollHeight = (document.compatMode != 'CSS1Compat') ? document.body.scrollHeight : document.documentElement.scrollHeight;
-
-            var h = Math.max(scrollHeight, Y.Dom.getViewportHeight());
-            return h;
-        },
-        
-        /**
-         * Returns the width of the document.
-         * @method getDocumentWidth
-         * @return {Int} The width of the actual document (which includes the body and its margin).
-         */
-        getDocumentWidth: function() {
-            var scrollWidth = (document.compatMode != 'CSS1Compat') ? document.body.scrollWidth : document.documentElement.scrollWidth;
-            var w = Math.max(scrollWidth, Y.Dom.getViewportWidth());
-            return w;
-        },
-
-        /**
-         * Returns the current height of the viewport.
-         * @method getViewportHeight
-         * @return {Int} The height of the viewable area of the page (excludes scrollbars).
-         */
-        getViewportHeight: function() {
-            var height = self.innerHeight; // Safari, Opera
-            var mode = document.compatMode;
-        
-            if ( (mode || isIE) && !isOpera ) { // IE, Gecko
-                height = (mode == 'CSS1Compat') ?
-                        document.documentElement.clientHeight : // Standards
-                        document.body.clientHeight; // Quirks
-            }
-        
-            return height;
-        },
-        
-        /**
-         * Returns the current width of the viewport.
-         * @method getViewportWidth
-         * @return {Int} The width of the viewable area of the page (excludes scrollbars).
-         */
-        
-        getViewportWidth: function() {
-            var width = self.innerWidth;  // Safari
-            var mode = document.compatMode;
-            
-            if (mode || isIE) { // IE, Gecko, Opera
-                width = (mode == 'CSS1Compat') ?
-                        document.documentElement.clientWidth : // Standards
-                        document.body.clientWidth; // Quirks
-            }
-            return width;
-        },
-
-       /**
-         * Returns the nearest ancestor that passes the test applied by supplied boolean method.
-         * For performance reasons, IDs are not accepted and argument validation omitted.
-         * @method getAncestorBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method - A boolean method for testing elements which receives the element as its only argument.
-         * @return {Object} HTMLElement or null if not found
-         */
-        getAncestorBy: function(node, method) {
-            while (node = node.parentNode) { // NOTE: assignment
-                if ( testElement(node, method) ) {
-                    return node;
-                }
-            } 
-
-            return null;
-        },
-        
-        /**
-         * Returns the nearest ancestor with the given className.
-         * @method getAncestorByClassName
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @param {String} className
-         * @return {Object} HTMLElement
-         */
-        getAncestorByClassName: function(node, className) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                return null;
-            }
-            var method = function(el) { return Y.Dom.hasClass(el, className); };
-            return Y.Dom.getAncestorBy(node, method);
-        },
-
-        /**
-         * Returns the nearest ancestor with the given tagName.
-         * @method getAncestorByTagName
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @param {String} tagName
-         * @return {Object} HTMLElement
-         */
-        getAncestorByTagName: function(node, tagName) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                return null;
-            }
-            var method = function(el) {
-                 return el.tagName && el.tagName.toUpperCase() == tagName.toUpperCase();
-            };
-
-            return Y.Dom.getAncestorBy(node, method);
-        },
-
-        /**
-         * Returns the previous sibling that is an HTMLElement. 
-         * For performance reasons, IDs are not accepted and argument validation omitted.
-         * Returns the nearest HTMLElement sibling if no method provided.
-         * @method getPreviousSiblingBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method A boolean function used to test siblings
-         * that receives the sibling node being tested as its only argument
-         * @return {Object} HTMLElement or null if not found
-         */
-        getPreviousSiblingBy: function(node, method) {
-            while (node) {
-                node = node.previousSibling;
-                if ( testElement(node, method) ) {
-                    return node;
-                }
-            }
-            return null;
-        }, 
-
-        /**
-         * Returns the previous sibling that is an HTMLElement 
-         * @method getPreviousSibling
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Object} HTMLElement or null if not found
-         */
-        getPreviousSibling: function(node) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                return null;
-            }
-
-            return Y.Dom.getPreviousSiblingBy(node);
-        }, 
-
-        /**
-         * Returns the next HTMLElement sibling that passes the boolean method. 
-         * For performance reasons, IDs are not accepted and argument validation omitted.
-         * Returns the nearest HTMLElement sibling if no method provided.
-         * @method getNextSiblingBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method A boolean function used to test siblings
-         * that receives the sibling node being tested as its only argument
-         * @return {Object} HTMLElement or null if not found
-         */
-        getNextSiblingBy: function(node, method) {
-            while (node) {
-                node = node.nextSibling;
-                if ( testElement(node, method) ) {
-                    return node;
-                }
-            }
-            return null;
-        }, 
-
-        /**
-         * Returns the next sibling that is an HTMLElement 
-         * @method getNextSibling
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Object} HTMLElement or null if not found
-         */
-        getNextSibling: function(node) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                return null;
-            }
-
-            return Y.Dom.getNextSiblingBy(node);
-        }, 
-
-        /**
-         * Returns the first HTMLElement child that passes the test method. 
-         * @method getFirstChildBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method A boolean function used to test children
-         * that receives the node being tested as its only argument
-         * @return {Object} HTMLElement or null if not found
-         */
-        getFirstChildBy: function(node, method) {
-            var child = ( testElement(node.firstChild, method) ) ? node.firstChild : null;
-            return child || Y.Dom.getNextSiblingBy(node.firstChild, method);
-        }, 
-
-        /**
-         * Returns the first HTMLElement child. 
-         * @method getFirstChild
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Object} HTMLElement or null if not found
-         */
-        getFirstChild: function(node, method) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                return null;
-            }
-            return Y.Dom.getFirstChildBy(node);
-        }, 
-
-        /**
-         * Returns the last HTMLElement child that passes the test method. 
-         * @method getLastChildBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method A boolean function used to test children
-         * that receives the node being tested as its only argument
-         * @return {Object} HTMLElement or null if not found
-         */
-        getLastChildBy: function(node, method) {
-            if (!node) {
-                return null;
-            }
-            var child = ( testElement(node.lastChild, method) ) ? node.lastChild : null;
-            return child || Y.Dom.getPreviousSiblingBy(node.lastChild, method);
-        }, 
-
-        /**
-         * Returns the last HTMLElement child. 
-         * @method getLastChild
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Object} HTMLElement or null if not found
-         */
-        getLastChild: function(node) {
-            node = Y.Dom.get(node);
-            return Y.Dom.getLastChildBy(node);
-        }, 
-
-        /**
-         * Returns an array of HTMLElement childNodes that pass the test method. 
-         * @method getChildrenBy
-         * @param {HTMLElement} node The HTMLElement to start from
-         * @param {Function} method A boolean function used to test children
-         * that receives the node being tested as its only argument
-         * @return {Array} A static array of HTMLElements
-         */
-        getChildrenBy: function(node, method) {
-            var child = Y.Dom.getFirstChildBy(node, method);
-            var children = child ? [child] : [];
-
-            Y.Dom.getNextSiblingBy(child, function(node) {
-                if ( !method || method(node) ) {
-                    children[children.length] = node;
-                }
-                return false; // fail test to collect all children
-            });
-
-            return children;
-        },
- 
-        /**
-         * Returns an array of HTMLElement childNodes. 
-         * @method getChildren
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Array} A static array of HTMLElements
-         */
-        getChildren: function(node) {
-            node = Y.Dom.get(node);
-            if (!node) {
-            }
-
-            return Y.Dom.getChildrenBy(node);
-        },
- 
-        /**
-         * Returns the left scroll value of the document 
-         * @method getDocumentScrollLeft
-         * @param {HTMLDocument} document (optional) The document to get the scroll value of
-         * @return {Int}  The amount that the document is scrolled to the left
-         */
-        getDocumentScrollLeft: function(doc) {
-            doc = doc || document;
-            return Math.max(doc.documentElement.scrollLeft, doc.body.scrollLeft);
-        }, 
-
-        /**
-         * Returns the top scroll value of the document 
-         * @method getDocumentScrollTop
-         * @param {HTMLDocument} document (optional) The document to get the scroll value of
-         * @return {Int}  The amount that the document is scrolled to the top
-         */
-        getDocumentScrollTop: function(doc) {
-            doc = doc || document;
-            return Math.max(doc.documentElement.scrollTop, doc.body.scrollTop);
-        },
-
-        /**
-         * Inserts the new node as the previous sibling of the reference node 
-         * @method insertBefore
-         * @param {String | HTMLElement} newNode The node to be inserted
-         * @param {String | HTMLElement} referenceNode The node to insert the new node before 
-         * @return {HTMLElement} The node that was inserted (or null if insert fails) 
-         */
-        insertBefore: function(newNode, referenceNode) {
-            newNode = Y.Dom.get(newNode); 
-            referenceNode = Y.Dom.get(referenceNode); 
-            
-            if (!newNode || !referenceNode || !referenceNode.parentNode) {
-                return null;
-            }       
-
-            return referenceNode.parentNode.insertBefore(newNode, referenceNode); 
-        },
-
-        /**
-         * Inserts the new node as the next sibling of the reference node 
-         * @method insertAfter
-         * @param {String | HTMLElement} newNode The node to be inserted
-         * @param {String | HTMLElement} referenceNode The node to insert the new node after 
-         * @return {HTMLElement} The node that was inserted (or null if insert fails) 
-         */
-        insertAfter: function(newNode, referenceNode) {
-            newNode = Y.Dom.get(newNode); 
-            referenceNode = Y.Dom.get(referenceNode); 
-            
-            if (!newNode || !referenceNode || !referenceNode.parentNode) {
-                return null;
-            }       
-
-            if (referenceNode.nextSibling) {
-                return referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling); 
-            } else {
-                return referenceNode.parentNode.appendChild(newNode);
-            }
-        }
-    };
-})();
-/**
- * A region is a representation of an object on a grid.  It is defined
- * by the top, right, bottom, left extents, so is rectangular by default.  If 
- * other shapes are required, this class could be extended to support it.
- * @namespace YAHOO.util
- * @class Region
- * @param {Int} t the top extent
- * @param {Int} r the right extent
- * @param {Int} b the bottom extent
- * @param {Int} l the left extent
- * @constructor
- */
-YAHOO.util.Region = function(t, r, b, l) {
-
-    /**
-     * The region's top extent
-     * @property top
-     * @type Int
-     */
-    this.top = t;
-    
-    /**
-     * The region's top extent as index, for symmetry with set/getXY
-     * @property 1
-     * @type Int
-     */
-    this[1] = t;
-
-    /**
-     * The region's right extent
-     * @property right
-     * @type int
-     */
-    this.right = r;
-
-    /**
-     * The region's bottom extent
-     * @property bottom
-     * @type Int
-     */
-    this.bottom = b;
-
-    /**
-     * The region's left extent
-     * @property left
-     * @type Int
-     */
-    this.left = l;
-    
-    /**
-     * The region's left extent as index, for symmetry with set/getXY
-     * @property 0
-     * @type Int
-     */
-    this[0] = l;
-};
-
-/**
- * Returns true if this region contains the region passed in
- * @method contains
- * @param  {Region}  region The region to evaluate
- * @return {Boolean}        True if the region is contained with this region, 
- *                          else false
- */
-YAHOO.util.Region.prototype.contains = function(region) {
-    return ( region.left   >= this.left   && 
-             region.right  <= this.right  && 
-             region.top    >= this.top    && 
-             region.bottom <= this.bottom    );
-
-};
-
-/**
- * Returns the area of the region
- * @method getArea
- * @return {Int} the region's area
- */
-YAHOO.util.Region.prototype.getArea = function() {
-    return ( (this.bottom - this.top) * (this.right - this.left) );
-};
-
-/**
- * Returns the region where the passed in region overlaps with this one
- * @method intersect
- * @param  {Region} region The region that intersects
- * @return {Region}        The overlap region, or null if there is no overlap
- */
-YAHOO.util.Region.prototype.intersect = function(region) {
-    var t = Math.max( this.top,    region.top    );
-    var r = Math.min( this.right,  region.right  );
-    var b = Math.min( this.bottom, region.bottom );
-    var l = Math.max( this.left,   region.left   );
-    
-    if (b >= t && r >= l) {
-        return new YAHOO.util.Region(t, r, b, l);
-    } else {
-        return null;
-    }
-};
-
-/**
- * Returns the region representing the smallest region that can contain both
- * the passed in region and this region.
- * @method union
- * @param  {Region} region The region that to create the union with
- * @return {Region}        The union region
- */
-YAHOO.util.Region.prototype.union = function(region) {
-    var t = Math.min( this.top,    region.top    );
-    var r = Math.max( this.right,  region.right  );
-    var b = Math.max( this.bottom, region.bottom );
-    var l = Math.min( this.left,   region.left   );
-
-    return new YAHOO.util.Region(t, r, b, l);
-};
-
-/**
- * toString
- * @method toString
- * @return string the region properties
- */
-YAHOO.util.Region.prototype.toString = function() {
-    return ( "Region {"    +
-             "top: "       + this.top    + 
-             ", right: "   + this.right  + 
-             ", bottom: "  + this.bottom + 
-             ", left: "    + this.left   + 
-             "}" );
-};
-
-/**
- * Returns a region that is occupied by the DOM element
- * @method getRegion
- * @param  {HTMLElement} el The element
- * @return {Region}         The region that the element occupies
- * @static
- */
-YAHOO.util.Region.getRegion = function(el) {
-    var p = YAHOO.util.Dom.getXY(el);
-
-    var t = p[1];
-    var r = p[0] + el.offsetWidth;
-    var b = p[1] + el.offsetHeight;
-    var l = p[0];
-
-    return new YAHOO.util.Region(t, r, b, l);
-};
-
-/////////////////////////////////////////////////////////////////////////////
-
-
-/**
- * A point is a region that is special in that it represents a single point on 
- * the grid.
- * @namespace YAHOO.util
- * @class Point
- * @param {Int} x The X position of the point
- * @param {Int} y The Y position of the point
- * @constructor
- * @extends YAHOO.util.Region
- */
-YAHOO.util.Point = function(x, y) {
-   if (YAHOO.lang.isArray(x)) { // accept input from Dom.getXY, Event.getXY, etc.
-      y = x[1]; // dont blow away x yet
-      x = x[0];
-   }
-   
-    /**
-     * The X position of the point, which is also the right, left and index zero (for Dom.getXY symmetry)
-     * @property x
-     * @type Int
-     */
-
-    this.x = this.right = this.left = this[0] = x;
-     
-    /**
-     * The Y position of the point, which is also the top, bottom and index one (for Dom.getXY symmetry)
-     * @property y
-     * @type Int
-     */
-    this.y = this.top = this.bottom = this[1] = y;
-};
-
-YAHOO.util.Point.prototype = new YAHOO.util.Region();
-
-YAHOO.register("dom", YAHOO.util.Dom, {version: "2.3.1", build: "541"});
diff --git a/eclipse.org-common/yui/2.3.1/event/event.js b/eclipse.org-common/yui/2.3.1/event/event.js
deleted file mode 100644
index 9b8089e..0000000
--- a/eclipse.org-common/yui/2.3.1/event/event.js
+++ /dev/null
@@ -1,2374 +0,0 @@
-/*
-Copyright (c) 2007, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.3.1
-*/
-
-/**
- * The CustomEvent class lets you define events for your application
- * that can be subscribed to by one or more independent component.
- *
- * @param {String}  type The type of event, which is passed to the callback
- *                  when the event fires
- * @param {Object}  oScope The context the event will fire from.  "this" will
- *                  refer to this object in the callback.  Default value: 
- *                  the window object.  The listener can override this.
- * @param {boolean} silent pass true to prevent the event from writing to
- *                  the debugsystem
- * @param {int}     signature the signature that the custom event subscriber
- *                  will receive. YAHOO.util.CustomEvent.LIST or 
- *                  YAHOO.util.CustomEvent.FLAT.  The default is
- *                  YAHOO.util.CustomEvent.LIST.
- * @namespace YAHOO.util
- * @class CustomEvent
- * @constructor
- */
-YAHOO.util.CustomEvent = function(type, oScope, silent, signature) {
-
-    /**
-     * The type of event, returned to subscribers when the event fires
-     * @property type
-     * @type string
-     */
-    this.type = type;
-
-    /**
-     * The scope the the event will fire from by default.  Defaults to the window 
-     * obj
-     * @property scope
-     * @type object
-     */
-    this.scope = oScope || window;
-
-    /**
-     * By default all custom events are logged in the debug build, set silent
-     * to true to disable debug outpu for this event.
-     * @property silent
-     * @type boolean
-     */
-    this.silent = silent;
-
-    /**
-     * Custom events support two styles of arguments provided to the event
-     * subscribers.  
-     * <ul>
-     * <li>YAHOO.util.CustomEvent.LIST: 
-     *   <ul>
-     *   <li>param1: event name</li>
-     *   <li>param2: array of arguments sent to fire</li>
-     *   <li>param3: <optional> a custom object supplied by the subscriber</li>
-     *   </ul>
-     * </li>
-     * <li>YAHOO.util.CustomEvent.FLAT
-     *   <ul>
-     *   <li>param1: the first argument passed to fire.  If you need to
-     *           pass multiple parameters, use and array or object literal</li>
-     *   <li>param2: <optional> a custom object supplied by the subscriber</li>
-     *   </ul>
-     * </li>
-     * </ul>
-     *   @property signature
-     *   @type int
-     */
-    this.signature = signature || YAHOO.util.CustomEvent.LIST;
-
-    /**
-     * The subscribers to this event
-     * @property subscribers
-     * @type Subscriber[]
-     */
-    this.subscribers = [];
-
-    if (!this.silent) {
-    }
-
-    var onsubscribeType = "_YUICEOnSubscribe";
-
-    // Only add subscribe events for events that are not generated by 
-    // CustomEvent
-    if (type !== onsubscribeType) {
-
-        /**
-         * Custom events provide a custom event that fires whenever there is
-         * a new subscriber to the event.  This provides an opportunity to
-         * handle the case where there is a non-repeating event that has
-         * already fired has a new subscriber.  
-         *
-         * @event subscribeEvent
-         * @type YAHOO.util.CustomEvent
-         * @param {Function} fn The function to execute
-         * @param {Object}   obj An object to be passed along when the event 
-         *                       fires
-         * @param {boolean|Object}  override If true, the obj passed in becomes 
-         *                                   the execution scope of the listener.
-         *                                   if an object, that object becomes the
-         *                                   the execution scope.
-         */
-        this.subscribeEvent = 
-                new YAHOO.util.CustomEvent(onsubscribeType, this, true);
-
-    } 
-
-
-    /**
-     * In order to make it possible to execute the rest of the subscriber
-     * stack when one thows an exception, the subscribers exceptions are
-     * caught.  The most recent exception is stored in this property
-     * @property lastError
-     * @type Error
-     */
-    this.lastError = null;
-};
-
-/**
- * Subscriber listener sigature constant.  The LIST type returns three
- * parameters: the event type, the array of args passed to fire, and
- * the optional custom object
- * @property YAHOO.util.CustomEvent.LIST
- * @static
- * @type int
- */
-YAHOO.util.CustomEvent.LIST = 0;
-
-/**
- * Subscriber listener sigature constant.  The FLAT type returns two
- * parameters: the first argument passed to fire and the optional 
- * custom object
- * @property YAHOO.util.CustomEvent.FLAT
- * @static
- * @type int
- */
-YAHOO.util.CustomEvent.FLAT = 1;
-
-YAHOO.util.CustomEvent.prototype = {
-
-    /**
-     * Subscribes the caller to this event
-     * @method subscribe
-     * @param {Function} fn        The function to execute
-     * @param {Object}   obj       An object to be passed along when the event 
-     *                             fires
-     * @param {boolean|Object}  override If true, the obj passed in becomes 
-     *                                   the execution scope of the listener.
-     *                                   if an object, that object becomes the
-     *                                   the execution scope.
-     */
-    subscribe: function(fn, obj, override) {
-
-        if (!fn) {
-throw new Error("Invalid callback for subscriber to '" + this.type + "'");
-        }
-
-        if (this.subscribeEvent) {
-            this.subscribeEvent.fire(fn, obj, override);
-        }
-
-        this.subscribers.push( new YAHOO.util.Subscriber(fn, obj, override) );
-    },
-
-    /**
-     * Unsubscribes subscribers.
-     * @method unsubscribe
-     * @param {Function} fn  The subscribed function to remove, if not supplied
-     *                       all will be removed
-     * @param {Object}   obj  The custom object passed to subscribe.  This is
-     *                        optional, but if supplied will be used to
-     *                        disambiguate multiple listeners that are the same
-     *                        (e.g., you subscribe many object using a function
-     *                        that lives on the prototype)
-     * @return {boolean} True if the subscriber was found and detached.
-     */
-    unsubscribe: function(fn, obj) {
-
-        if (!fn) {
-            return this.unsubscribeAll();
-        }
-
-        var found = false;
-        for (var i=0, len=this.subscribers.length; i<len; ++i) {
-            var s = this.subscribers[i];
-            if (s && s.contains(fn, obj)) {
-                this._delete(i);
-                found = true;
-            }
-        }
-
-        return found;
-    },
-
-    /**
-     * Notifies the subscribers.  The callback functions will be executed
-     * from the scope specified when the event was created, and with the 
-     * following parameters:
-     *   <ul>
-     *   <li>The type of event</li>
-     *   <li>All of the arguments fire() was executed with as an array</li>
-     *   <li>The custom object (if any) that was passed into the subscribe() 
-     *       method</li>
-     *   </ul>
-     * @method fire 
-     * @param {Object*} arguments an arbitrary set of parameters to pass to 
-     *                            the handler.
-     * @return {boolean} false if one of the subscribers returned false, 
-     *                   true otherwise
-     */
-    fire: function() {
-        var len=this.subscribers.length;
-        if (!len && this.silent) {
-            return true;
-        }
-
-        var args=[], ret=true, i, rebuild=false;
-
-        for (i=0; i<arguments.length; ++i) {
-            args.push(arguments[i]);
-        }
-
-        var argslength = args.length;
-
-        if (!this.silent) {
-        }
-
-        for (i=0; i<len; ++i) {
-            var s = this.subscribers[i];
-            if (!s) {
-                rebuild=true;
-            } else {
-                if (!this.silent) {
-                }
-
-                var scope = s.getScope(this.scope);
-
-                if (this.signature == YAHOO.util.CustomEvent.FLAT) {
-                    var param = null;
-                    if (args.length > 0) {
-                        param = args[0];
-                    }
-
-                    try {
-                        ret = s.fn.call(scope, param, s.obj);
-                    } catch(e) {
-                        this.lastError = e;
-                    }
-                } else {
-                    try {
-                        ret = s.fn.call(scope, this.type, args, s.obj);
-                    } catch(e) {
-                        this.lastError = e;
-                    }
-                }
-                if (false === ret) {
-                    if (!this.silent) {
-                    }
-
-                    //break;
-                    return false;
-                }
-            }
-        }
-
-        if (rebuild) {
-            var newlist=[],subs=this.subscribers;
-            for (i=0,len=subs.length; i<len; i=i+1) {
-                newlist.push(subs[i]);
-            }
-
-            this.subscribers=newlist;
-        }
-
-        return true;
-    },
-
-    /**
-     * Removes all listeners
-     * @method unsubscribeAll
-     * @return {int} The number of listeners unsubscribed
-     */
-    unsubscribeAll: function() {
-        for (var i=0, len=this.subscribers.length; i<len; ++i) {
-            this._delete(len - 1 - i);
-        }
-
-        this.subscribers=[];
-
-        return i;
-    },
-
-    /**
-     * @method _delete
-     * @private
-     */
-    _delete: function(index) {
-        var s = this.subscribers[index];
-        if (s) {
-            delete s.fn;
-            delete s.obj;
-        }
-
-        this.subscribers[index]=null;
-    },
-
-    /**
-     * @method toString
-     */
-    toString: function() {
-         return "CustomEvent: " + "'" + this.type  + "', " + 
-             "scope: " + this.scope;
-
-    }
-};
-
-/////////////////////////////////////////////////////////////////////
-
-/**
- * Stores the subscriber information to be used when the event fires.
- * @param {Function} fn       The function to execute
- * @param {Object}   obj      An object to be passed along when the event fires
- * @param {boolean}  override If true, the obj passed in becomes the execution
- *                            scope of the listener
- * @class Subscriber
- * @constructor
- */
-YAHOO.util.Subscriber = function(fn, obj, override) {
-
-    /**
-     * The callback that will be execute when the event fires
-     * @property fn
-     * @type function
-     */
-    this.fn = fn;
-
-    /**
-     * An optional custom object that will passed to the callback when
-     * the event fires
-     * @property obj
-     * @type object
-     */
-    this.obj = YAHOO.lang.isUndefined(obj) ? null : obj;
-
-    /**
-     * The default execution scope for the event listener is defined when the
-     * event is created (usually the object which contains the event).
-     * By setting override to true, the execution scope becomes the custom
-     * object passed in by the subscriber.  If override is an object, that 
-     * object becomes the scope.
-     * @property override
-     * @type boolean|object
-     */
-    this.override = override;
-
-};
-
-/**
- * Returns the execution scope for this listener.  If override was set to true
- * the custom obj will be the scope.  If override is an object, that is the
- * scope, otherwise the default scope will be used.
- * @method getScope
- * @param {Object} defaultScope the scope to use if this listener does not
- *                              override it.
- */
-YAHOO.util.Subscriber.prototype.getScope = function(defaultScope) {
-    if (this.override) {
-        if (this.override === true) {
-            return this.obj;
-        } else {
-            return this.override;
-        }
-    }
-    return defaultScope;
-};
-
-/**
- * Returns true if the fn and obj match this objects properties.
- * Used by the unsubscribe method to match the right subscriber.
- *
- * @method contains
- * @param {Function} fn the function to execute
- * @param {Object} obj an object to be passed along when the event fires
- * @return {boolean} true if the supplied arguments match this 
- *                   subscriber's signature.
- */
-YAHOO.util.Subscriber.prototype.contains = function(fn, obj) {
-    if (obj) {
-        return (this.fn == fn && this.obj == obj);
-    } else {
-        return (this.fn == fn);
-    }
-};
-
-/**
- * @method toString
- */
-YAHOO.util.Subscriber.prototype.toString = function() {
-    return "Subscriber { obj: " + this.obj  + 
-           ", override: " +  (this.override || "no") + " }";
-};
-
-/**
- * The Event Utility provides utilities for managing DOM Events and tools
- * for building event systems
- *
- * @module event
- * @title Event Utility
- * @namespace YAHOO.util
- * @requires yahoo
- */
-
-// The first instance of Event will win if it is loaded more than once.
-// @TODO this needs to be changed so that only the state data that needs to
-// be preserved is kept, while methods are overwritten/added as needed.
-// This means that the module pattern can't be used.
-if (!YAHOO.util.Event) {
-
-/**
- * The event utility provides functions to add and remove event listeners,
- * event cleansing.  It also tries to automatically remove listeners it
- * registers during the unload event.
- *
- * @class Event
- * @static
- */
-    YAHOO.util.Event = function() {
-
-        /**
-         * True after the onload event has fired
-         * @property loadComplete
-         * @type boolean
-         * @static
-         * @private
-         */
-        var loadComplete =  false;
-
-        /**
-         * True when the document is initially usable
-         * @property DOMReady
-         * @type boolean
-         * @static
-         * @private
-         */
-        var DOMReady = false;
-
-        /**
-         * Cache of wrapped listeners
-         * @property listeners
-         * @type array
-         * @static
-         * @private
-         */
-        var listeners = [];
-
-        /**
-         * User-defined unload function that will be fired before all events
-         * are detached
-         * @property unloadListeners
-         * @type array
-         * @static
-         * @private
-         */
-        var unloadListeners = [];
-
-        /**
-         * Cache of DOM0 event handlers to work around issues with DOM2 events
-         * in Safari
-         * @property legacyEvents
-         * @static
-         * @private
-         */
-        var legacyEvents = [];
-
-        /**
-         * Listener stack for DOM0 events
-         * @property legacyHandlers
-         * @static
-         * @private
-         */
-        var legacyHandlers = [];
-
-        /**
-         * The number of times to poll after window.onload.  This number is
-         * increased if additional late-bound handlers are requested after
-         * the page load.
-         * @property retryCount
-         * @static
-         * @private
-         */
-        var retryCount = 0;
-
-        /**
-         * onAvailable listeners
-         * @property onAvailStack
-         * @static
-         * @private
-         */
-        var onAvailStack = [];
-
-        /**
-         * Lookup table for legacy events
-         * @property legacyMap
-         * @static
-         * @private
-         */
-        var legacyMap = [];
-
-        /**
-         * Counter for auto id generation
-         * @property counter
-         * @static
-         * @private
-         */
-        var counter = 0;
-        
-        /**
-         * Normalized keycodes for webkit/safari
-         * @property webkitKeymap
-         * @type {int: int}
-         * @private
-         * @static
-         * @final
-         */
-        var webkitKeymap = {
-            63232: 38, // up
-            63233: 40, // down
-            63234: 37, // left
-            63235: 39  // right
-        };
-
-        return {
-
-            /**
-             * The number of times we should look for elements that are not
-             * in the DOM at the time the event is requested after the document
-             * has been loaded.  The default is 4000@amp;10 ms, so it will poll
-             * for 40 seconds or until all outstanding handlers are bound
-             * (whichever comes first).
-             * @property POLL_RETRYS
-             * @type int
-             * @static
-             * @final
-             */
-            POLL_RETRYS: 4000,
-
-            /**
-             * The poll interval in milliseconds
-             * @property POLL_INTERVAL
-             * @type int
-             * @static
-             * @final
-             */
-            POLL_INTERVAL: 10,
-
-            /**
-             * Element to bind, int constant
-             * @property EL
-             * @type int
-             * @static
-             * @final
-             */
-            EL: 0,
-
-            /**
-             * Type of event, int constant
-             * @property TYPE
-             * @type int
-             * @static
-             * @final
-             */
-            TYPE: 1,
-
-            /**
-             * Function to execute, int constant
-             * @property FN
-             * @type int
-             * @static
-             * @final
-             */
-            FN: 2,
-
-            /**
-             * Function wrapped for scope correction and cleanup, int constant
-             * @property WFN
-             * @type int
-             * @static
-             * @final
-             */
-            WFN: 3,
-
-            /**
-             * Object passed in by the user that will be returned as a 
-             * parameter to the callback, int constant.  Specific to
-             * unload listeners
-             * @property OBJ
-             * @type int
-             * @static
-             * @final
-             */
-            UNLOAD_OBJ: 3,
-
-            /**
-             * Adjusted scope, either the element we are registering the event
-             * on or the custom object passed in by the listener, int constant
-             * @property ADJ_SCOPE
-             * @type int
-             * @static
-             * @final
-             */
-            ADJ_SCOPE: 4,
-
-            /**
-             * The original obj passed into addListener
-             * @property OBJ
-             * @type int
-             * @static
-             * @final
-             */
-            OBJ: 5,
-
-            /**
-             * The original scope parameter passed into addListener
-             * @property OVERRIDE
-             * @type int
-             * @static
-             * @final
-             */
-            OVERRIDE: 6,
-
-            /**
-             * addListener/removeListener can throw errors in unexpected scenarios.
-             * These errors are suppressed, the method returns false, and this property
-             * is set
-             * @property lastError
-             * @static
-             * @type Error
-             */
-            lastError: null,
-
-            /**
-             * Safari detection
-             * @property isSafari
-             * @private
-             * @static
-             * @deprecated use YAHOO.env.ua.webkit
-             */
-            isSafari: YAHOO.env.ua.webkit,
-            
-            /**
-             * webkit version
-             * @property webkit
-             * @type string
-             * @private
-             * @static
-             * @deprecated use YAHOO.env.ua.webkit
-             */
-            webkit: YAHOO.env.ua.webkit,
-            
-            /**
-             * IE detection 
-             * @property isIE
-             * @private
-             * @static
-             * @deprecated use YAHOO.env.ua.ie
-             */
-            isIE: YAHOO.env.ua.ie,
-
-            /**
-             * poll handle
-             * @property _interval
-             * @static
-             * @private
-             */
-            _interval: null,
-
-            /**
-             * @method startInterval
-             * @static
-             * @private
-             */
-            startInterval: function() {
-                if (!this._interval) {
-                    var self = this;
-                    var callback = function() { self._tryPreloadAttach(); };
-                    this._interval = setInterval(callback, this.POLL_INTERVAL);
-                }
-            },
-
-            /**
-             * Executes the supplied callback when the item with the supplied
-             * id is found.  This is meant to be used to execute behavior as
-             * soon as possible as the page loads.  If you use this after the
-             * initial page load it will poll for a fixed time for the element.
-             * The number of times it will poll and the frequency are
-             * configurable.  By default it will poll for 10 seconds.
-             *
-             * <p>The callback is executed with a single parameter:
-             * the custom object parameter, if provided.</p>
-             *
-             * @method onAvailable
-             *
-             * @param {string}   p_id the id of the element to look for.
-             * @param {function} p_fn what to execute when the element is found.
-             * @param {object}   p_obj an optional object to be passed back as
-             *                   a parameter to p_fn.
-             * @param {boolean|object}  p_override If set to true, p_fn will execute
-             *                   in the scope of p_obj, if set to an object it
-             *                   will execute in the scope of that object
-             *
-             * @static
-             */
-            onAvailable: function(p_id, p_fn, p_obj, p_override) {
-                onAvailStack.push( { id:         p_id, 
-                                     fn:         p_fn, 
-                                     obj:        p_obj, 
-                                     override:   p_override, 
-                                     checkReady: false    } );
-                retryCount = this.POLL_RETRYS;
-                this.startInterval();
-            },
-
-            /**
-             * Executes the supplied callback when the DOM is first usable.  This
-             * will execute immediately if called after the DOMReady event has
-             * fired.   @todo the DOMContentReady event does not fire when the
-             * script is dynamically injected into the page.  This means the
-             * DOMReady custom event will never fire in FireFox or Opera when the
-             * library is injected.  It _will_ fire in Safari, and the IE 
-             * implementation would allow for us to fire it if the defered script
-             * is not available.  We want this to behave the same in all browsers.
-             * Is there a way to identify when the script has been injected 
-             * instead of included inline?  Is there a way to know whether the 
-             * window onload event has fired without having had a listener attached 
-             * to it when it did so?
-             *
-             * <p>The callback is a CustomEvent, so the signature is:</p>
-             * <p>type <string>, args <array>, customobject <object></p>
-             * <p>For DOMReady events, there are no fire argments, so the
-             * signature is:</p>
-             * <p>"DOMReady", [], obj</p>
-             *
-             *
-             * @method onDOMReady
-             *
-             * @param {function} p_fn what to execute when the element is found.
-             * @param {object}   p_obj an optional object to be passed back as
-             *                   a parameter to p_fn.
-             * @param {boolean|object}  p_scope If set to true, p_fn will execute
-             *                   in the scope of p_obj, if set to an object it
-             *                   will execute in the scope of that object
-             *
-             * @static
-             */
-            onDOMReady: function(p_fn, p_obj, p_override) {
-                if (DOMReady) {
-                    setTimeout(function() {
-                        var s = window;
-                        if (p_override) {
-                            if (p_override === true) {
-                                s = p_obj;
-                            } else {
-                                s = p_override;
-                            }
-                        }
-                        p_fn.call(s, "DOMReady", [], p_obj);
-                    }, 0);
-                } else {
-                    this.DOMReadyEvent.subscribe(p_fn, p_obj, p_override);
-                }
-            },
-
-            /**
-             * Works the same way as onAvailable, but additionally checks the
-             * state of sibling elements to determine if the content of the
-             * available element is safe to modify.
-             *
-             * <p>The callback is executed with a single parameter:
-             * the custom object parameter, if provided.</p>
-             *
-             * @method onContentReady
-             *
-             * @param {string}   p_id the id of the element to look for.
-             * @param {function} p_fn what to execute when the element is ready.
-             * @param {object}   p_obj an optional object to be passed back as
-             *                   a parameter to p_fn.
-             * @param {boolean|object}  p_override If set to true, p_fn will execute
-             *                   in the scope of p_obj.  If an object, p_fn will
-             *                   exectute in the scope of that object
-             *
-             * @static
-             */
-            onContentReady: function(p_id, p_fn, p_obj, p_override) {
-                onAvailStack.push( { id:         p_id, 
-                                     fn:         p_fn, 
-                                     obj:        p_obj, 
-                                     override:   p_override,
-                                     checkReady: true      } );
-
-                retryCount = this.POLL_RETRYS;
-                this.startInterval();
-            },
-
-            /**
-             * Appends an event handler
-             *
-             * @method addListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to assign the 
-             *  listener to.
-             * @param {String}   sType     The type of event to append
-             * @param {Function} fn        The method the event invokes
-             * @param {Object}   obj    An arbitrary object that will be 
-             *                             passed as a parameter to the handler
-             * @param {Boolean|object}  override  If true, the obj passed in becomes
-             *                             the execution scope of the listener. If an
-             *                             object, this object becomes the execution
-             *                             scope.
-             * @return {Boolean} True if the action was successful or defered,
-             *                        false if one or more of the elements 
-             *                        could not have the listener attached,
-             *                        or if the operation throws an exception.
-             * @static
-             */
-            addListener: function(el, sType, fn, obj, override) {
-
-                if (!fn || !fn.call) {
-// throw new TypeError(sType + " addListener call failed, callback undefined");
-                    return false;
-                }
-
-                // The el argument can be an array of elements or element ids.
-                if ( this._isValidCollection(el)) {
-                    var ok = true;
-                    for (var i=0,len=el.length; i<len; ++i) {
-                        ok = this.on(el[i], 
-                                       sType, 
-                                       fn, 
-                                       obj, 
-                                       override) && ok;
-                    }
-                    return ok;
-
-                } else if (YAHOO.lang.isString(el)) {
-                    var oEl = this.getEl(el);
-                    // If the el argument is a string, we assume it is 
-                    // actually the id of the element.  If the page is loaded
-                    // we convert el to the actual element, otherwise we 
-                    // defer attaching the event until onload event fires
-
-                    // check to see if we need to delay hooking up the event 
-                    // until after the page loads.
-                    if (oEl) {
-                        el = oEl;
-                    } else {
-                        // defer adding the event until the element is available
-                        this.onAvailable(el, function() {
-                           YAHOO.util.Event.on(el, sType, fn, obj, override);
-                        });
-
-                        return true;
-                    }
-                }
-
-                // Element should be an html element or an array if we get 
-                // here.
-                if (!el) {
-                    return false;
-                }
-
-                // we need to make sure we fire registered unload events 
-                // prior to automatically unhooking them.  So we hang on to 
-                // these instead of attaching them to the window and fire the
-                // handles explicitly during our one unload event.
-                if ("unload" == sType && obj !== this) {
-                    unloadListeners[unloadListeners.length] =
-                            [el, sType, fn, obj, override];
-                    return true;
-                }
-
-
-                // if the user chooses to override the scope, we use the custom
-                // object passed in, otherwise the executing scope will be the
-                // HTML element that the event is registered on
-                var scope = el;
-                if (override) {
-                    if (override === true) {
-                        scope = obj;
-                    } else {
-                        scope = override;
-                    }
-                }
-
-                // wrap the function so we can return the obj object when
-                // the event fires;
-                var wrappedFn = function(e) {
-                        return fn.call(scope, YAHOO.util.Event.getEvent(e, el), 
-                                obj);
-                    };
-
-                var li = [el, sType, fn, wrappedFn, scope, obj, override];
-                var index = listeners.length;
-                // cache the listener so we can try to automatically unload
-                listeners[index] = li;
-
-                if (this.useLegacyEvent(el, sType)) {
-                    var legacyIndex = this.getLegacyIndex(el, sType);
-
-                    // Add a new dom0 wrapper if one is not detected for this
-                    // element
-                    if ( legacyIndex == -1 || 
-                                el != legacyEvents[legacyIndex][0] ) {
-
-                        legacyIndex = legacyEvents.length;
-                        legacyMap[el.id + sType] = legacyIndex;
-
-                        // cache the signature for the DOM0 event, and 
-                        // include the existing handler for the event, if any
-                        legacyEvents[legacyIndex] = 
-                            [el, sType, el["on" + sType]];
-                        legacyHandlers[legacyIndex] = [];
-
-                        el["on" + sType] = 
-                            function(e) {
-                                YAHOO.util.Event.fireLegacyEvent(
-                                    YAHOO.util.Event.getEvent(e), legacyIndex);
-                            };
-                    }
-
-                    // add a reference to the wrapped listener to our custom
-                    // stack of events
-                    //legacyHandlers[legacyIndex].push(index);
-                    legacyHandlers[legacyIndex].push(li);
-
-                } else {
-                    try {
-                        this._simpleAdd(el, sType, wrappedFn, false);
-                    } catch(ex) {
-                        // handle an error trying to attach an event.  If it fails
-                        // we need to clean up the cache
-                        this.lastError = ex;
-                        this.removeListener(el, sType, fn);
-                        return false;
-                    }
-                }
-
-                return true;
-                
-            },
-
-            /**
-             * When using legacy events, the handler is routed to this object
-             * so we can fire our custom listener stack.
-             * @method fireLegacyEvent
-             * @static
-             * @private
-             */
-            fireLegacyEvent: function(e, legacyIndex) {
-                var ok=true,le,lh,li,scope,ret;
-                
-                lh = legacyHandlers[legacyIndex];
-                for (var i=0,len=lh.length; i<len; ++i) {
-                    li = lh[i];
-                    if ( li && li[this.WFN] ) {
-                        scope = li[this.ADJ_SCOPE];
-                        ret = li[this.WFN].call(scope, e);
-                        ok = (ok && ret);
-                    }
-                }
-
-                // Fire the original handler if we replaced one.  We fire this
-                // after the other events to keep stopPropagation/preventDefault
-                // that happened in the DOM0 handler from touching our DOM2
-                // substitute
-                le = legacyEvents[legacyIndex];
-                if (le && le[2]) {
-                    le[2](e);
-                }
-                
-                return ok;
-            },
-
-            /**
-             * Returns the legacy event index that matches the supplied 
-             * signature
-             * @method getLegacyIndex
-             * @static
-             * @private
-             */
-            getLegacyIndex: function(el, sType) {
-                var key = this.generateId(el) + sType;
-                if (typeof legacyMap[key] == "undefined") { 
-                    return -1;
-                } else {
-                    return legacyMap[key];
-                }
-            },
-
-            /**
-             * Logic that determines when we should automatically use legacy
-             * events instead of DOM2 events.  Currently this is limited to old
-             * Safari browsers with a broken preventDefault
-             * @method useLegacyEvent
-             * @static
-             * @private
-             */
-            useLegacyEvent: function(el, sType) {
-                if (this.webkit && ("click"==sType || "dblclick"==sType)) {
-                    var v = parseInt(this.webkit, 10);
-                    if (!isNaN(v) && v<418) {
-                        return true;
-                    }
-                }
-                return false;
-            },
-                    
-            /**
-             * Removes an event listener
-             *
-             * @method removeListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to remove
-             *  the listener from.
-             * @param {String} sType the type of event to remove.
-             * @param {Function} fn the method the event invokes.  If fn is
-             *  undefined, then all event handlers for the type of event are 
-             *  removed.
-             * @return {boolean} true if the unbind was successful, false 
-             *  otherwise.
-             * @static
-             */
-            removeListener: function(el, sType, fn) {
-                var i, len, li;
-
-                // The el argument can be a string
-                if (typeof el == "string") {
-                    el = this.getEl(el);
-                // The el argument can be an array of elements or element ids.
-                } else if ( this._isValidCollection(el)) {
-                    var ok = true;
-                    for (i=0,len=el.length; i<len; ++i) {
-                        ok = ( this.removeListener(el[i], sType, fn) && ok );
-                    }
-                    return ok;
-                }
-
-                if (!fn || !fn.call) {
-                    //return false;
-                    return this.purgeElement(el, false, sType);
-                }
-
-                if ("unload" == sType) {
-
-                    for (i=0, len=unloadListeners.length; i<len; i++) {
-                        li = unloadListeners[i];
-                        if (li && 
-                            li[0] == el && 
-                            li[1] == sType && 
-                            li[2] == fn) {
-                                //unloadListeners.splice(i, 1);
-                                unloadListeners[i]=null;
-                                return true;
-                        }
-                    }
-
-                    return false;
-                }
-
-                var cacheItem = null;
-
-                // The index is a hidden parameter; needed to remove it from
-                // the method signature because it was tempting users to
-                // try and take advantage of it, which is not possible.
-                var index = arguments[3];
-  
-                if ("undefined" === typeof index) {
-                    index = this._getCacheIndex(el, sType, fn);
-                }
-
-                if (index >= 0) {
-                    cacheItem = listeners[index];
-                }
-
-                if (!el || !cacheItem) {
-                    return false;
-                }
-
-
-                if (this.useLegacyEvent(el, sType)) {
-                    var legacyIndex = this.getLegacyIndex(el, sType);
-                    var llist = legacyHandlers[legacyIndex];
-                    if (llist) {
-                        for (i=0, len=llist.length; i<len; ++i) {
-                            li = llist[i];
-                            if (li && 
-                                li[this.EL] == el && 
-                                li[this.TYPE] == sType && 
-                                li[this.FN] == fn) {
-                                    //llist.splice(i, 1);
-                                    llist[i]=null;
-                                    break;
-                            }
-                        }
-                    }
-
-                } else {
-                    try {
-                        this._simpleRemove(el, sType, cacheItem[this.WFN], false);
-                    } catch(ex) {
-                        this.lastError = ex;
-                        return false;
-                    }
-                }
-
-                // removed the wrapped handler
-                delete listeners[index][this.WFN];
-                delete listeners[index][this.FN];
-                //listeners.splice(index, 1);
-                listeners[index]=null;
-
-                return true;
-
-            },
-
-            /**
-             * Returns the event's target element.  Safari sometimes provides
-             * a text node, and this is automatically resolved to the text
-             * node's parent so that it behaves like other browsers.
-             * @method getTarget
-             * @param {Event} ev the event
-             * @param {boolean} resolveTextNode when set to true the target's
-             *                  parent will be returned if the target is a 
-             *                  text node.  @deprecated, the text node is
-             *                  now resolved automatically
-             * @return {HTMLElement} the event's target
-             * @static
-             */
-            getTarget: function(ev, resolveTextNode) {
-                var t = ev.target || ev.srcElement;
-                return this.resolveTextNode(t);
-            },
-
-            /**
-             * In some cases, some browsers will return a text node inside
-             * the actual element that was targeted.  This normalizes the
-             * return value for getTarget and getRelatedTarget.
-             * @method resolveTextNode
-             * @param {HTMLElement} node node to resolve
-             * @return {HTMLElement} the normized node
-             * @static
-             */
-            resolveTextNode: function(node) {
-                if (node && 3 == node.nodeType) {
-                    return node.parentNode;
-                } else {
-                    return node;
-                }
-            },
-
-            /**
-             * Returns the event's pageX
-             * @method getPageX
-             * @param {Event} ev the event
-             * @return {int} the event's pageX
-             * @static
-             */
-            getPageX: function(ev) {
-                var x = ev.pageX;
-                if (!x && 0 !== x) {
-                    x = ev.clientX || 0;
-
-                    if ( this.isIE ) {
-                        x += this._getScrollLeft();
-                    }
-                }
-
-                return x;
-            },
-
-            /**
-             * Returns the event's pageY
-             * @method getPageY
-             * @param {Event} ev the event
-             * @return {int} the event's pageY
-             * @static
-             */
-            getPageY: function(ev) {
-                var y = ev.pageY;
-                if (!y && 0 !== y) {
-                    y = ev.clientY || 0;
-
-                    if ( this.isIE ) {
-                        y += this._getScrollTop();
-                    }
-                }
-
-
-                return y;
-            },
-
-            /**
-             * Returns the pageX and pageY properties as an indexed array.
-             * @method getXY
-             * @param {Event} ev the event
-             * @return {[x, y]} the pageX and pageY properties of the event
-             * @static
-             */
-            getXY: function(ev) {
-                return [this.getPageX(ev), this.getPageY(ev)];
-            },
-
-            /**
-             * Returns the event's related target 
-             * @method getRelatedTarget
-             * @param {Event} ev the event
-             * @return {HTMLElement} the event's relatedTarget
-             * @static
-             */
-            getRelatedTarget: function(ev) {
-                var t = ev.relatedTarget;
-                if (!t) {
-                    if (ev.type == "mouseout") {
-                        t = ev.toElement;
-                    } else if (ev.type == "mouseover") {
-                        t = ev.fromElement;
-                    }
-                }
-
-                return this.resolveTextNode(t);
-            },
-
-            /**
-             * Returns the time of the event.  If the time is not included, the
-             * event is modified using the current time.
-             * @method getTime
-             * @param {Event} ev the event
-             * @return {Date} the time of the event
-             * @static
-             */
-            getTime: function(ev) {
-                if (!ev.time) {
-                    var t = new Date().getTime();
-                    try {
-                        ev.time = t;
-                    } catch(ex) { 
-                        this.lastError = ex;
-                        return t;
-                    }
-                }
-
-                return ev.time;
-            },
-
-            /**
-             * Convenience method for stopPropagation + preventDefault
-             * @method stopEvent
-             * @param {Event} ev the event
-             * @static
-             */
-            stopEvent: function(ev) {
-                this.stopPropagation(ev);
-                this.preventDefault(ev);
-            },
-
-            /**
-             * Stops event propagation
-             * @method stopPropagation
-             * @param {Event} ev the event
-             * @static
-             */
-            stopPropagation: function(ev) {
-                if (ev.stopPropagation) {
-                    ev.stopPropagation();
-                } else {
-                    ev.cancelBubble = true;
-                }
-            },
-
-            /**
-             * Prevents the default behavior of the event
-             * @method preventDefault
-             * @param {Event} ev the event
-             * @static
-             */
-            preventDefault: function(ev) {
-                if (ev.preventDefault) {
-                    ev.preventDefault();
-                } else {
-                    ev.returnValue = false;
-                }
-            },
-             
-            /**
-             * Finds the event in the window object, the caller's arguments, or
-             * in the arguments of another method in the callstack.  This is
-             * executed automatically for events registered through the event
-             * manager, so the implementer should not normally need to execute
-             * this function at all.
-             * @method getEvent
-             * @param {Event} e the event parameter from the handler
-             * @param {HTMLElement} boundEl the element the listener is attached to
-             * @return {Event} the event 
-             * @static
-             */
-            getEvent: function(e, boundEl) {
-                var ev = e || window.event;
-
-                if (!ev) {
-                    var c = this.getEvent.caller;
-                    while (c) {
-                        ev = c.arguments[0];
-                        if (ev && Event == ev.constructor) {
-                            break;
-                        }
-                        c = c.caller;
-                    }
-                }
-
-                // IE events that target non-browser objects (e.g., VML
-                // canvas) will sometimes throw errors when you try to
-                // inspect the properties of the event target.  We try to
-                // detect this condition, and provide a dummy target (the bound
-                // element) to eliminate spurious errors.  
-                if (ev && this.isIE) {
-
-                    try {
-
-                        var el = ev.srcElement;
-                        if (el) {
-                            var type = el.type;
-                        }
-
-                    } catch(ex) {
-
-                         
-                        ev.target = boundEl;
-                    }
-
-                }
-
-                return ev;
-            },
-
-            /**
-             * Returns the charcode for an event
-             * @method getCharCode
-             * @param {Event} ev the event
-             * @return {int} the event's charCode
-             * @static
-             */
-            getCharCode: function(ev) {
-                var code = ev.keyCode || ev.charCode || 0;
-
-                // webkit normalization
-                if (YAHOO.env.ua.webkit && (code in webkitKeymap)) {
-                    code = webkitKeymap[code];
-                }
-                return code;
-            },
-
-            /**
-             * Locating the saved event handler data by function ref
-             *
-             * @method _getCacheIndex
-             * @static
-             * @private
-             */
-            _getCacheIndex: function(el, sType, fn) {
-                for (var i=0,len=listeners.length; i<len; ++i) {
-                    var li = listeners[i];
-                    if ( li                 && 
-                         li[this.FN] == fn  && 
-                         li[this.EL] == el  && 
-                         li[this.TYPE] == sType ) {
-                        return i;
-                    }
-                }
-
-                return -1;
-            },
-
-            /**
-             * Generates an unique ID for the element if it does not already 
-             * have one.
-             * @method generateId
-             * @param el the element to create the id for
-             * @return {string} the resulting id of the element
-             * @static
-             */
-            generateId: function(el) {
-                var id = el.id;
-
-                if (!id) {
-                    id = "yuievtautoid-" + counter;
-                    ++counter;
-                    el.id = id;
-                }
-
-                return id;
-            },
-
-
-            /**
-             * We want to be able to use getElementsByTagName as a collection
-             * to attach a group of events to.  Unfortunately, different 
-             * browsers return different types of collections.  This function
-             * tests to determine if the object is array-like.  It will also 
-             * fail if the object is an array, but is empty.
-             * @method _isValidCollection
-             * @param o the object to test
-             * @return {boolean} true if the object is array-like and populated
-             * @static
-             * @private
-             */
-            _isValidCollection: function(o) {
-                try {
-                    return ( typeof o !== "string" && // o is not a string
-                             o.length              && // o is indexed
-                             !o.tagName            && // o is not an HTML element
-                             !o.alert              && // o is not a window
-                             typeof o[0] !== "undefined" );
-                } catch(e) {
-                    return false;
-                }
-
-            },
-
-            /**
-             * @private
-             * @property elCache
-             * DOM element cache
-             * @static
-             * @deprecated Elements are not cached due to issues that arise when
-             * elements are removed and re-added
-             */
-            elCache: {},
-
-            /**
-             * We cache elements bound by id because when the unload event 
-             * fires, we can no longer use document.getElementById
-             * @method getEl
-             * @static
-             * @private
-             * @deprecated Elements are not cached any longer
-             */
-            getEl: function(id) {
-                return (typeof id === "string") ? document.getElementById(id) : id;
-            },
-
-            /**
-             * Clears the element cache
-             * @deprecated Elements are not cached any longer
-             * @method clearCache
-             * @static
-             * @private
-             */
-            clearCache: function() { },
-
-            /**
-             * Custom event the fires when the dom is initially usable
-             * @event DOMReadyEvent
-             */
-            DOMReadyEvent: new YAHOO.util.CustomEvent("DOMReady", this),
-
-            /**
-             * hook up any deferred listeners
-             * @method _load
-             * @static
-             * @private
-             */
-            _load: function(e) {
-
-                if (!loadComplete) {
-                    loadComplete = true;
-                    var EU = YAHOO.util.Event;
-
-                    // Just in case DOMReady did not go off for some reason
-                    EU._ready();
-
-                    // Available elements may not have been detected before the
-                    // window load event fires. Try to find them now so that the
-                    // the user is more likely to get the onAvailable notifications
-                    // before the window load notification
-                    EU._tryPreloadAttach();
-
-                    // Remove the listener to assist with the IE memory issue, but not
-                    // for other browsers because FF 1.0x does not like it.
-                    //if (this.isIE) {
-                        //EU._simpleRemove(window, "load", EU._load);
-                    //}
-                }
-            },
-
-            /**
-             * Fires the DOMReady event listeners the first time the document is
-             * usable.
-             * @method _ready
-             * @static
-             * @private
-             */
-            _ready: function(e) {
-                if (!DOMReady) {
-                    DOMReady=true;
-                    var EU = YAHOO.util.Event;
-
-                    // Fire the content ready custom event
-                    EU.DOMReadyEvent.fire();
-
-                    // Remove the DOMContentLoaded (FF/Opera)
-                    EU._simpleRemove(document, "DOMContentLoaded", EU._ready);
-                }
-            },
-
-            /**
-             * Polling function that runs before the onload event fires, 
-             * attempting to attach to DOM Nodes as soon as they are 
-             * available
-             * @method _tryPreloadAttach
-             * @static
-             * @private
-             */
-            _tryPreloadAttach: function() {
-
-                if (this.locked) {
-                    return false;
-                }
-
-                if (this.isIE) {
-                    // Hold off if DOMReady has not fired and check current
-                    // readyState to protect against the IE operation aborted
-                    // issue.
-                    //if (!DOMReady || "complete" !== document.readyState) {
-                    if (!DOMReady) {
-                        this.startInterval();
-                        return false;
-                    }
-                }
-
-                this.locked = true;
-
-
-                // keep trying until after the page is loaded.  We need to 
-                // check the page load state prior to trying to bind the 
-                // elements so that we can be certain all elements have been 
-                // tested appropriately
-                var tryAgain = !loadComplete;
-                if (!tryAgain) {
-                    tryAgain = (retryCount > 0);
-                }
-
-                // onAvailable
-                var notAvail = [];
-
-                var executeItem = function (el, item) {
-                    var scope = el;
-                    if (item.override) {
-                        if (item.override === true) {
-                            scope = item.obj;
-                        } else {
-                            scope = item.override;
-                        }
-                    }
-                    item.fn.call(scope, item.obj);
-                };
-
-                var i,len,item,el;
-
-                // onAvailable
-                for (i=0,len=onAvailStack.length; i<len; ++i) {
-                    item = onAvailStack[i];
-                    if (item && !item.checkReady) {
-                        el = this.getEl(item.id);
-                        if (el) {
-                            executeItem(el, item);
-                            onAvailStack[i] = null;
-                        } else {
-                            notAvail.push(item);
-                        }
-                    }
-                }
-
-                // onContentReady
-                for (i=0,len=onAvailStack.length; i<len; ++i) {
-                    item = onAvailStack[i];
-                    if (item && item.checkReady) {
-                        el = this.getEl(item.id);
-
-                        if (el) {
-                            // The element is available, but not necessarily ready
-                            // @todo should we test parentNode.nextSibling?
-                            if (loadComplete || el.nextSibling) {
-                                executeItem(el, item);
-                                onAvailStack[i] = null;
-                            }
-                        } else {
-                            notAvail.push(item);
-                        }
-                    }
-                }
-
-                retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
-
-                if (tryAgain) {
-                    // we may need to strip the nulled out items here
-                    this.startInterval();
-                } else {
-                    clearInterval(this._interval);
-                    this._interval = null;
-                }
-
-                this.locked = false;
-
-                return true;
-
-            },
-
-            /**
-             * Removes all listeners attached to the given element via addListener.
-             * Optionally, the node's children can also be purged.
-             * Optionally, you can specify a specific type of event to remove.
-             * @method purgeElement
-             * @param {HTMLElement} el the element to purge
-             * @param {boolean} recurse recursively purge this element's children
-             * as well.  Use with caution.
-             * @param {string} sType optional type of listener to purge. If
-             * left out, all listeners will be removed
-             * @static
-             */
-            purgeElement: function(el, recurse, sType) {
-                var elListeners = this.getListeners(el, sType), i, len;
-                if (elListeners) {
-                    for (i=0,len=elListeners.length; i<len ; ++i) {
-                        var l = elListeners[i];
-                        // can't use the index on the changing collection
-                        this.removeListener(el, l.type, l.fn, l.index);
-                        //this.removeListener(el, l.type, l.fn);
-                    }
-                }
-
-                if (recurse && el && el.childNodes) {
-                    for (i=0,len=el.childNodes.length; i<len ; ++i) {
-                        this.purgeElement(el.childNodes[i], recurse, sType);
-                    }
-                }
-            },
-
-            /**
-             * Returns all listeners attached to the given element via addListener.
-             * Optionally, you can specify a specific type of event to return.
-             * @method getListeners
-             * @param el {HTMLElement} the element to inspect 
-             * @param sType {string} optional type of listener to return. If
-             * left out, all listeners will be returned
-             * @return {Object} the listener. Contains the following fields:
-             * &nbsp;&nbsp;type:   (string)   the type of event
-             * &nbsp;&nbsp;fn:     (function) the callback supplied to addListener
-             * &nbsp;&nbsp;obj:    (object)   the custom object supplied to addListener
-             * &nbsp;&nbsp;adjust: (boolean|object)  whether or not to adjust the default scope
-             * &nbsp;&nbsp;scope: (boolean)  the derived scope based on the adjust parameter
-             * &nbsp;&nbsp;index:  (int)      its position in the Event util listener cache
-             * @static
-             */           
-            getListeners: function(el, sType) {
-                var results=[], searchLists;
-                if (!sType) {
-                    searchLists = [listeners, unloadListeners];
-                } else if (sType == "unload") {
-                    searchLists = [unloadListeners];
-                } else {
-                    searchLists = [listeners];
-                }
-
-                for (var j=0;j<searchLists.length; j=j+1) {
-                    var searchList = searchLists[j];
-                    if (searchList && searchList.length > 0) {
-                        for (var i=0,len=searchList.length; i<len ; ++i) {
-                            var l = searchList[i];
-                            if ( l  && l[this.EL] === el && 
-                                    (!sType || sType === l[this.TYPE]) ) {
-                                results.push({
-                                    type:   l[this.TYPE],
-                                    fn:     l[this.FN],
-                                    obj:    l[this.OBJ],
-                                    adjust: l[this.OVERRIDE],
-                                    scope:  l[this.ADJ_SCOPE],
-                                    index:  i
-                                });
-                            }
-                        }
-                    }
-                }
-
-                return (results.length) ? results : null;
-            },
-
-            /**
-             * Removes all listeners registered by pe.event.  Called 
-             * automatically during the unload event.
-             * @method _unload
-             * @static
-             * @private
-             */
-            _unload: function(e) {
-
-                var EU = YAHOO.util.Event, i, j, l, len, index;
-
-                for (i=0,len=unloadListeners.length; i<len; ++i) {
-                    l = unloadListeners[i];
-                    if (l) {
-                        var scope = window;
-                        if (l[EU.ADJ_SCOPE]) {
-                            if (l[EU.ADJ_SCOPE] === true) {
-                                scope = l[EU.UNLOAD_OBJ];
-                            } else {
-                                scope = l[EU.ADJ_SCOPE];
-                            }
-                        }
-                        l[EU.FN].call(scope, EU.getEvent(e, l[EU.EL]), l[EU.UNLOAD_OBJ] );
-                        unloadListeners[i] = null;
-                        l=null;
-                        scope=null;
-                    }
-                }
-
-                unloadListeners = null;
-
-                if (listeners && listeners.length > 0) {
-                    j = listeners.length;
-                    while (j) {
-                        index = j-1;
-                        l = listeners[index];
-                        if (l) {
-                            EU.removeListener(l[EU.EL], l[EU.TYPE], l[EU.FN], index);
-                        } 
-                        j = j - 1;
-                    }
-                    l=null;
-
-                    EU.clearCache();
-                }
-
-                for (i=0,len=legacyEvents.length; i<len; ++i) {
-                    // dereference the element
-                    //delete legacyEvents[i][0];
-                    legacyEvents[i][0] = null;
-
-                    // delete the array item
-                    //delete legacyEvents[i];
-                    legacyEvents[i] = null;
-                }
-
-                legacyEvents = null;
-
-                EU._simpleRemove(window, "unload", EU._unload);
-
-            },
-
-            /**
-             * Returns scrollLeft
-             * @method _getScrollLeft
-             * @static
-             * @private
-             */
-            _getScrollLeft: function() {
-                return this._getScroll()[1];
-            },
-
-            /**
-             * Returns scrollTop
-             * @method _getScrollTop
-             * @static
-             * @private
-             */
-            _getScrollTop: function() {
-                return this._getScroll()[0];
-            },
-
-            /**
-             * Returns the scrollTop and scrollLeft.  Used to calculate the 
-             * pageX and pageY in Internet Explorer
-             * @method _getScroll
-             * @static
-             * @private
-             */
-            _getScroll: function() {
-                var dd = document.documentElement, db = document.body;
-                if (dd && (dd.scrollTop || dd.scrollLeft)) {
-                    return [dd.scrollTop, dd.scrollLeft];
-                } else if (db) {
-                    return [db.scrollTop, db.scrollLeft];
-                } else {
-                    return [0, 0];
-                }
-            },
-            
-            /**
-             * Used by old versions of CustomEvent, restored for backwards
-             * compatibility
-             * @method regCE
-             * @private
-             * @static
-             * @deprecated still here for backwards compatibility
-             */
-            regCE: function() {
-                // does nothing
-            },
-
-            /**
-             * Adds a DOM event directly without the caching, cleanup, scope adj, etc
-             *
-             * @method _simpleAdd
-             * @param {HTMLElement} el      the element to bind the handler to
-             * @param {string}      sType   the type of event handler
-             * @param {function}    fn      the callback to invoke
-             * @param {boolen}      capture capture or bubble phase
-             * @static
-             * @private
-             */
-            _simpleAdd: function () {
-                if (window.addEventListener) {
-                    return function(el, sType, fn, capture) {
-                        el.addEventListener(sType, fn, (capture));
-                    };
-                } else if (window.attachEvent) {
-                    return function(el, sType, fn, capture) {
-                        el.attachEvent("on" + sType, fn);
-                    };
-                } else {
-                    return function(){};
-                }
-            }(),
-
-            /**
-             * Basic remove listener
-             *
-             * @method _simpleRemove
-             * @param {HTMLElement} el      the element to bind the handler to
-             * @param {string}      sType   the type of event handler
-             * @param {function}    fn      the callback to invoke
-             * @param {boolen}      capture capture or bubble phase
-             * @static
-             * @private
-             */
-            _simpleRemove: function() {
-                if (window.removeEventListener) {
-                    return function (el, sType, fn, capture) {
-                        el.removeEventListener(sType, fn, (capture));
-                    };
-                } else if (window.detachEvent) {
-                    return function (el, sType, fn) {
-                        el.detachEvent("on" + sType, fn);
-                    };
-                } else {
-                    return function(){};
-                }
-            }()
-        };
-
-    }();
-
-    (function() {
-        var EU = YAHOO.util.Event;
-
-        /**
-         * YAHOO.util.Event.on is an alias for addListener
-         * @method on
-         * @see addListener
-         * @static
-         */
-        EU.on = EU.addListener;
-
-        /////////////////////////////////////////////////////////////
-        // DOMReady
-        // based on work by: Dean Edwards/John Resig/Matthias Miller 
-
-        // Internet Explorer: use the readyState of a defered script.
-        // This isolates what appears to be a safe moment to manipulate
-        // the DOM prior to when the document's readyState suggests
-        // it is safe to do so.
-        if (EU.isIE) {
-
-            // Process onAvailable/onContentReady items when when the 
-            // DOM is ready.
-            YAHOO.util.Event.onDOMReady(
-                    YAHOO.util.Event._tryPreloadAttach,
-                    YAHOO.util.Event, true);
-
-
-            var el, d=document, b=d.body;
-
-            // If the library is being injected after window.onload, it
-            // is not safe to document.write the script tag.  Detecting
-            // this state doesn't appear possible, so we expect a flag
-            // in YAHOO_config to be set if the library is being injected.
-            if (("undefined" !== typeof YAHOO_config) && YAHOO_config.injecting) {
-
-                el = document.createElement("script");
-                var p=d.getElementsByTagName("head")[0] || b;
-                p.insertBefore(el, p.firstChild);
-
-            } else {
-    d.write('<scr'+'ipt id="_yui_eu_dr" defer="true" src="//:"><'+'/script>');
-                el=document.getElementById("_yui_eu_dr");
-            }
-            
-
-            if (el) {
-                el.onreadystatechange = function() {
-                    if ("complete" === this.readyState) {
-                        this.parentNode.removeChild(this);
-                        YAHOO.util.Event._ready();
-                    }
-                };
-            } else {
-                // The library was likely injected into the page
-                // rendering onDOMReady unreliable
-                // YAHOO.util.Event._ready();
-            }
-
-            el=null;
-
-        
-        // Safari: The document's readyState in Safari currently will
-        // change to loaded/complete before images are loaded.
-        //} else if (EU.webkit) {
-        } else if (EU.webkit) {
-
-            EU._drwatch = setInterval(function(){
-                var rs=document.readyState;
-                if ("loaded" == rs || "complete" == rs) {
-                    clearInterval(EU._drwatch);
-                    EU._drwatch = null;
-                    EU._ready();
-                }
-            }, EU.POLL_INTERVAL); 
-
-        // FireFox and Opera: These browsers provide a event for this
-        // moment.
-        } else {
-
-            // @todo will this fire when the library is injected?
-
-            EU._simpleAdd(document, "DOMContentLoaded", EU._ready);
-
-        }
-        /////////////////////////////////////////////////////////////
-
-
-        EU._simpleAdd(window, "load", EU._load);
-        EU._simpleAdd(window, "unload", EU._unload);
-        EU._tryPreloadAttach();
-    })();
-
-}
-/**
- * EventProvider is designed to be used with YAHOO.augment to wrap 
- * CustomEvents in an interface that allows events to be subscribed to 
- * and fired by name.  This makes it possible for implementing code to
- * subscribe to an event that either has not been created yet, or will
- * not be created at all.
- *
- * @Class EventProvider
- */
-YAHOO.util.EventProvider = function() { };
-
-YAHOO.util.EventProvider.prototype = {
-
-    /**
-     * Private storage of custom events
-     * @property __yui_events
-     * @type Object[]
-     * @private
-     */
-    __yui_events: null,
-
-    /**
-     * Private storage of custom event subscribers
-     * @property __yui_subscribers
-     * @type Object[]
-     * @private
-     */
-    __yui_subscribers: null,
-    
-    /**
-     * Subscribe to a CustomEvent by event type
-     *
-     * @method subscribe
-     * @param p_type     {string}   the type, or name of the event
-     * @param p_fn       {function} the function to exectute when the event fires
-     * @param p_obj      {Object}   An object to be passed along when the event 
-     *                              fires
-     * @param p_override {boolean}  If true, the obj passed in becomes the 
-     *                              execution scope of the listener
-     */
-    subscribe: function(p_type, p_fn, p_obj, p_override) {
-
-        this.__yui_events = this.__yui_events || {};
-        var ce = this.__yui_events[p_type];
-
-        if (ce) {
-            ce.subscribe(p_fn, p_obj, p_override);
-        } else {
-            this.__yui_subscribers = this.__yui_subscribers || {};
-            var subs = this.__yui_subscribers;
-            if (!subs[p_type]) {
-                subs[p_type] = [];
-            }
-            subs[p_type].push(
-                { fn: p_fn, obj: p_obj, override: p_override } );
-        }
-    },
-
-    /**
-     * Unsubscribes one or more listeners the from the specified event
-     * @method unsubscribe
-     * @param p_type {string}   The type, or name of the event.  If the type
-     *                          is not specified, it will attempt to remove
-     *                          the listener from all hosted events.
-     * @param p_fn   {Function} The subscribed function to unsubscribe, if not
-     *                          supplied, all subscribers will be removed.
-     * @param p_obj  {Object}   The custom object passed to subscribe.  This is
-     *                        optional, but if supplied will be used to
-     *                        disambiguate multiple listeners that are the same
-     *                        (e.g., you subscribe many object using a function
-     *                        that lives on the prototype)
-     * @return {boolean} true if the subscriber was found and detached.
-     */
-    unsubscribe: function(p_type, p_fn, p_obj) {
-        this.__yui_events = this.__yui_events || {};
-        var evts = this.__yui_events;
-        if (p_type) {
-            var ce = evts[p_type];
-            if (ce) {
-                return ce.unsubscribe(p_fn, p_obj);
-            }
-        } else {
-            var ret = true;
-            for (var i in evts) {
-                if (YAHOO.lang.hasOwnProperty(evts, i)) {
-                    ret = ret && evts[i].unsubscribe(p_fn, p_obj);
-                }
-            }
-            return ret;
-        }
-
-        return false;
-    },
-    
-    /**
-     * Removes all listeners from the specified event.  If the event type
-     * is not specified, all listeners from all hosted custom events will
-     * be removed.
-     * @method unsubscribeAll
-     * @param p_type {string}   The type, or name of the event
-     */
-    unsubscribeAll: function(p_type) {
-        return this.unsubscribe(p_type);
-    },
-
-    /**
-     * Creates a new custom event of the specified type.  If a custom event
-     * by that name already exists, it will not be re-created.  In either
-     * case the custom event is returned. 
-     *
-     * @method createEvent
-     *
-     * @param p_type {string} the type, or name of the event
-     * @param p_config {object} optional config params.  Valid properties are:
-     *
-     *  <ul>
-     *    <li>
-     *      scope: defines the default execution scope.  If not defined
-     *      the default scope will be this instance.
-     *    </li>
-     *    <li>
-     *      silent: if true, the custom event will not generate log messages.
-     *      This is false by default.
-     *    </li>
-     *    <li>
-     *      onSubscribeCallback: specifies a callback to execute when the
-     *      event has a new subscriber.  This will fire immediately for
-     *      each queued subscriber if any exist prior to the creation of
-     *      the event.
-     *    </li>
-     *  </ul>
-     *
-     *  @return {CustomEvent} the custom event
-     *
-     */
-    createEvent: function(p_type, p_config) {
-
-        this.__yui_events = this.__yui_events || {};
-        var opts = p_config || {};
-        var events = this.__yui_events;
-
-        if (events[p_type]) {
-        } else {
-
-            var scope  = opts.scope  || this;
-            var silent = (opts.silent);
-
-            var ce = new YAHOO.util.CustomEvent(p_type, scope, silent,
-                    YAHOO.util.CustomEvent.FLAT);
-            events[p_type] = ce;
-
-            if (opts.onSubscribeCallback) {
-                ce.subscribeEvent.subscribe(opts.onSubscribeCallback);
-            }
-
-            this.__yui_subscribers = this.__yui_subscribers || {};
-            var qs = this.__yui_subscribers[p_type];
-
-            if (qs) {
-                for (var i=0; i<qs.length; ++i) {
-                    ce.subscribe(qs[i].fn, qs[i].obj, qs[i].override);
-                }
-            }
-        }
-
-        return events[p_type];
-    },
-
-
-   /**
-     * Fire a custom event by name.  The callback functions will be executed
-     * from the scope specified when the event was created, and with the 
-     * following parameters:
-     *   <ul>
-     *   <li>The first argument fire() was executed with</li>
-     *   <li>The custom object (if any) that was passed into the subscribe() 
-     *       method</li>
-     *   </ul>
-     * If the custom event has not been explicitly created, it will be
-     * created now with the default config, scoped to the host object
-     * @method fireEvent
-     * @param p_type    {string}  the type, or name of the event
-     * @param arguments {Object*} an arbitrary set of parameters to pass to 
-     *                            the handler.
-     * @return {boolean} the return value from CustomEvent.fire
-     *                   
-     */
-    fireEvent: function(p_type, arg1, arg2, etc) {
-
-        this.__yui_events = this.__yui_events || {};
-        var ce = this.__yui_events[p_type];
-
-        if (!ce) {
-            return null;
-        }
-
-        var args = [];
-        for (var i=1; i<arguments.length; ++i) {
-            args.push(arguments[i]);
-        }
-        return ce.fire.apply(ce, args);
-    },
-
-    /**
-     * Returns true if the custom event of the provided type has been created
-     * with createEvent.
-     * @method hasEvent
-     * @param type {string} the type, or name of the event
-     */
-    hasEvent: function(type) {
-        if (this.__yui_events) {
-            if (this.__yui_events[type]) {
-                return true;
-            }
-        }
-        return false;
-    }
-
-};
-
-/**
-* KeyListener is a utility that provides an easy interface for listening for
-* keydown/keyup events fired against DOM elements.
-* @namespace YAHOO.util
-* @class KeyListener
-* @constructor
-* @param {HTMLElement} attachTo The element or element ID to which the key 
-*                               event should be attached
-* @param {String}      attachTo The element or element ID to which the key
-*                               event should be attached
-* @param {Object}      keyData  The object literal representing the key(s) 
-*                               to detect. Possible attributes are 
-*                               shift(boolean), alt(boolean), ctrl(boolean) 
-*                               and keys(either an int or an array of ints 
-*                               representing keycodes).
-* @param {Function}    handler  The CustomEvent handler to fire when the 
-*                               key event is detected
-* @param {Object}      handler  An object literal representing the handler. 
-* @param {String}      event    Optional. The event (keydown or keyup) to 
-*                               listen for. Defaults automatically to keydown.
-*
-* @knownissue the "keypress" event is completely broken in Safari 2.x and below.
-*             the workaround is use "keydown" for key listening.  However, if
-*             it is desired to prevent the default behavior of the keystroke,
-*             that can only be done on the keypress event.  This makes key
-*             handling quite ugly.
-* @knownissue keydown is also broken in Safari 2.x and below for the ESC key.
-*             There currently is no workaround other than choosing another
-*             key to listen for.
-*/
-YAHOO.util.KeyListener = function(attachTo, keyData, handler, event) {
-    if (!attachTo) {
-    } else if (!keyData) {
-    } else if (!handler) {
-    } 
-    
-    if (!event) {
-        event = YAHOO.util.KeyListener.KEYDOWN;
-    }
-
-    /**
-    * The CustomEvent fired internally when a key is pressed
-    * @event keyEvent
-    * @private
-    * @param {Object} keyData The object literal representing the key(s) to 
-    *                         detect. Possible attributes are shift(boolean), 
-    *                         alt(boolean), ctrl(boolean) and keys(either an 
-    *                         int or an array of ints representing keycodes).
-    */
-    var keyEvent = new YAHOO.util.CustomEvent("keyPressed");
-    
-    /**
-    * The CustomEvent fired when the KeyListener is enabled via the enable() 
-    * function
-    * @event enabledEvent
-    * @param {Object} keyData The object literal representing the key(s) to 
-    *                         detect. Possible attributes are shift(boolean), 
-    *                         alt(boolean), ctrl(boolean) and keys(either an 
-    *                         int or an array of ints representing keycodes).
-    */
-    this.enabledEvent = new YAHOO.util.CustomEvent("enabled");
-
-    /**
-    * The CustomEvent fired when the KeyListener is disabled via the 
-    * disable() function
-    * @event disabledEvent
-    * @param {Object} keyData The object literal representing the key(s) to 
-    *                         detect. Possible attributes are shift(boolean), 
-    *                         alt(boolean), ctrl(boolean) and keys(either an 
-    *                         int or an array of ints representing keycodes).
-    */
-    this.disabledEvent = new YAHOO.util.CustomEvent("disabled");
-
-    if (typeof attachTo == 'string') {
-        attachTo = document.getElementById(attachTo);
-    }
-
-    if (typeof handler == 'function') {
-        keyEvent.subscribe(handler);
-    } else {
-        keyEvent.subscribe(handler.fn, handler.scope, handler.correctScope);
-    }
-
-    /**
-    * Handles the key event when a key is pressed.
-    * @method handleKeyPress
-    * @param {DOMEvent} e   The keypress DOM event
-    * @param {Object}   obj The DOM event scope object
-    * @private
-    */
-    function handleKeyPress(e, obj) {
-        if (! keyData.shift) {  
-            keyData.shift = false; 
-        }
-        if (! keyData.alt) {    
-            keyData.alt = false;
-        }
-        if (! keyData.ctrl) {
-            keyData.ctrl = false;
-        }
-
-        // check held down modifying keys first
-        if (e.shiftKey == keyData.shift && 
-            e.altKey   == keyData.alt &&
-            e.ctrlKey  == keyData.ctrl) { // if we pass this, all modifiers match
-            
-            var dataItem;
-            var keyPressed;
-
-            if (keyData.keys instanceof Array) {
-                for (var i=0;i<keyData.keys.length;i++) {
-                    dataItem = keyData.keys[i];
-
-                    if (dataItem == e.charCode ) {
-                        keyEvent.fire(e.charCode, e);
-                        break;
-                    } else if (dataItem == e.keyCode) {
-                        keyEvent.fire(e.keyCode, e);
-                        break;
-                    }
-                }
-            } else {
-                dataItem = keyData.keys;
-                if (dataItem == e.charCode ) {
-                    keyEvent.fire(e.charCode, e);
-                } else if (dataItem == e.keyCode) {
-                    keyEvent.fire(e.keyCode, e);
-                }
-            }
-        }
-    }
-
-    /**
-    * Enables the KeyListener by attaching the DOM event listeners to the 
-    * target DOM element
-    * @method enable
-    */
-    this.enable = function() {
-        if (! this.enabled) {
-            YAHOO.util.Event.addListener(attachTo, event, handleKeyPress);
-            this.enabledEvent.fire(keyData);
-        }
-        /**
-        * Boolean indicating the enabled/disabled state of the Tooltip
-        * @property enabled
-        * @type Boolean
-        */
-        this.enabled = true;
-    };
-
-    /**
-    * Disables the KeyListener by removing the DOM event listeners from the 
-    * target DOM element
-    * @method disable
-    */
-    this.disable = function() {
-        if (this.enabled) {
-            YAHOO.util.Event.removeListener(attachTo, event, handleKeyPress);
-            this.disabledEvent.fire(keyData);
-        }
-        this.enabled = false;
-    };
-
-    /**
-    * Returns a String representation of the object.
-    * @method toString
-    * @return {String}  The string representation of the KeyListener
-    */ 
-    this.toString = function() {
-        return "KeyListener [" + keyData.keys + "] " + attachTo.tagName + 
-                (attachTo.id ? "[" + attachTo.id + "]" : "");
-    };
-
-};
-
-/**
-* Constant representing the DOM "keydown" event.
-* @property YAHOO.util.KeyListener.KEYDOWN
-* @static
-* @final
-* @type String
-*/
-YAHOO.util.KeyListener.KEYDOWN = "keydown";
-
-/**
-* Constant representing the DOM "keyup" event.
-* @property YAHOO.util.KeyListener.KEYUP
-* @static
-* @final
-* @type String
-*/
-YAHOO.util.KeyListener.KEYUP = "keyup";
-YAHOO.register("event", YAHOO.util.Event, {version: "2.3.1", build: "541"});
diff --git a/eclipse.org-common/yui/2.3.1/logger/logger.js b/eclipse.org-common/yui/2.3.1/logger/logger.js
deleted file mode 100644
index e498963..0000000
--- a/eclipse.org-common/yui/2.3.1/logger/logger.js
+++ /dev/null
@@ -1,1945 +0,0 @@
-/*
-Copyright (c) 2007, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.3.1
-*/
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The LogMsg class defines a single log message.
- *
- * @class LogMsg
- * @constructor
- * @param oConfigs {Object} Object literal of configuration params.
- */
- YAHOO.widget.LogMsg = function(oConfigs) {
-    // Parse configs
-    if (oConfigs && (oConfigs.constructor == Object)) {
-        for(var param in oConfigs) {
-            this[param] = oConfigs[param];
-        }
-    }
- };
- 
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Log message.
- *
- * @property msg
- * @type String
- */
-YAHOO.widget.LogMsg.prototype.msg = null;
- 
-/**
- * Log timestamp.
- *
- * @property time
- * @type Date
- */
-YAHOO.widget.LogMsg.prototype.time = null;
-
-/**
- * Log category.
- *
- * @property category
- * @type String
- */
-YAHOO.widget.LogMsg.prototype.category = null;
-
-/**
- * Log source. The first word passed in as the source argument.
- *
- * @property source
- * @type String
- */
-YAHOO.widget.LogMsg.prototype.source = null;
-
-/**
- * Log source detail. The remainder of the string passed in as the source argument, not
- * including the first word (if any).
- *
- * @property sourceDetail
- * @type String
- */
-YAHOO.widget.LogMsg.prototype.sourceDetail = null;
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The LogWriter class provides a mechanism to log messages through
- * YAHOO.widget.Logger from a named source.
- *
- * @class LogWriter
- * @constructor
- * @param sSource {String} Source of LogWriter instance.
- */
-YAHOO.widget.LogWriter = function(sSource) {
-    if(!sSource) {
-        YAHOO.log("Could not instantiate LogWriter due to invalid source.",
-            "error", "LogWriter");
-        return;
-    }
-    this._source = sSource;
- };
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
- /**
- * Public accessor to the unique name of the LogWriter instance.
- *
- * @method toString
- * @return {String} Unique name of the LogWriter instance.
- */
-YAHOO.widget.LogWriter.prototype.toString = function() {
-    return "LogWriter " + this._sSource;
-};
-
-/**
- * Logs a message attached to the source of the LogWriter.
- *
- * @method log
- * @param sMsg {String} The log message.
- * @param sCategory {String} Category name.
- */
-YAHOO.widget.LogWriter.prototype.log = function(sMsg, sCategory) {
-    YAHOO.widget.Logger.log(sMsg, sCategory, this._source);
-};
-
-/**
- * Public accessor to get the source name.
- *
- * @method getSource
- * @return {String} The LogWriter source.
- */
-YAHOO.widget.LogWriter.prototype.getSource = function() {
-    return this._sSource;
-};
-
-/**
- * Public accessor to set the source name.
- *
- * @method setSource
- * @param sSource {String} Source of LogWriter instance.
- */
-YAHOO.widget.LogWriter.prototype.setSource = function(sSource) {
-    if(!sSource) {
-        YAHOO.log("Could not set source due to invalid source.", "error", this.toString());
-        return;
-    }
-    else {
-        this._sSource = sSource;
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Source of the LogWriter instance.
- *
- * @property _source
- * @type String
- * @private
- */
-YAHOO.widget.LogWriter.prototype._source = null;
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The LogReader class provides UI to read messages logged to YAHOO.widget.Logger.
- *
- * @class LogReader
- * @constructor
- * @param elContainer {HTMLElement} (optional) DOM element reference of an existing DIV.
- * @param elContainer {String} (optional) String ID of an existing DIV.
- * @param oConfigs {Object} (optional) Object literal of configuration params.
- */
-YAHOO.widget.LogReader = function(elContainer, oConfigs) {
-    this._sName = YAHOO.widget.LogReader._index;
-    YAHOO.widget.LogReader._index++;
-    
-    // Internal vars
-    this._buffer = []; // output buffer
-    this._filterCheckboxes = {}; // pointers to checkboxes
-    this._lastTime = YAHOO.widget.Logger.getStartTime(); // timestamp of last log message to console
-
-    // Parse config vars here
-    if (oConfigs && (oConfigs.constructor == Object)) {
-        for(var param in oConfigs) {
-            this[param] = oConfigs[param];
-        }
-    }
-
-    this._initContainerEl(elContainer);
-    if(!this._elContainer) {
-        YAHOO.log("Could not instantiate LogReader due to an invalid container element " +
-                elContainer, "error", this.toString());
-        return;
-    }
-    
-    this._initHeaderEl();
-    this._initConsoleEl();
-    this._initFooterEl();
-
-    this._initDragDrop();
-
-    this._initCategories();
-    this._initSources();
-
-    // Subscribe to Logger custom events
-    YAHOO.widget.Logger.newLogEvent.subscribe(this._onNewLog, this);
-    YAHOO.widget.Logger.logResetEvent.subscribe(this._onReset, this);
-
-    YAHOO.widget.Logger.categoryCreateEvent.subscribe(this._onCategoryCreate, this);
-    YAHOO.widget.Logger.sourceCreateEvent.subscribe(this._onSourceCreate, this);
-
-    this._filterLogs();
-    YAHOO.log("LogReader initialized", null, this.toString());
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Whether or not LogReader is enabled to output log messages.
- *
- * @property logReaderEnabled
- * @type Boolean
- * @default true
- */
-YAHOO.widget.LogReader.prototype.logReaderEnabled = true;
-
-/**
- * Public member to access CSS width of the LogReader container.
- *
- * @property width
- * @type String
- */
-YAHOO.widget.LogReader.prototype.width = null;
-
-/**
- * Public member to access CSS height of the LogReader container.
- *
- * @property height
- * @type String
- */
-YAHOO.widget.LogReader.prototype.height = null;
-
-/**
- * Public member to access CSS top position of the LogReader container.
- *
- * @property top
- * @type String
- */
-YAHOO.widget.LogReader.prototype.top = null;
-
-/**
- * Public member to access CSS left position of the LogReader container.
- *
- * @property left
- * @type String
- */
-YAHOO.widget.LogReader.prototype.left = null;
-
-/**
- * Public member to access CSS right position of the LogReader container.
- *
- * @property right
- * @type String
- */
-YAHOO.widget.LogReader.prototype.right = null;
-
-/**
- * Public member to access CSS bottom position of the LogReader container.
- *
- * @property bottom
- * @type String
- */
-YAHOO.widget.LogReader.prototype.bottom = null;
-
-/**
- * Public member to access CSS font size of the LogReader container.
- *
- * @property fontSize
- * @type String
- */
-YAHOO.widget.LogReader.prototype.fontSize = null;
-
-/**
- * Whether or not the footer UI is enabled for the LogReader.
- *
- * @property footerEnabled
- * @type Boolean
- * @default true
- */
-YAHOO.widget.LogReader.prototype.footerEnabled = true;
-
-/**
- * Whether or not output is verbose (more readable). Setting to true will make
- * output more compact (less readable).
- *
- * @property verboseOutput
- * @type Boolean
- * @default true
- */
-YAHOO.widget.LogReader.prototype.verboseOutput = true;
-
-/**
- * Whether or not newest message is printed on top.
- *
- * @property newestOnTop
- * @type Boolean
- */
-YAHOO.widget.LogReader.prototype.newestOnTop = true;
-
-/**
- * Output timeout buffer in milliseconds.
- *
- * @property outputBuffer
- * @type Number
- * @default 100
- */
-YAHOO.widget.LogReader.prototype.outputBuffer = 100;
-
-/**
- * Maximum number of messages a LogReader console will display.
- *
- * @property thresholdMax
- * @type Number
- * @default 500
- */
-YAHOO.widget.LogReader.prototype.thresholdMax = 500;
-
-/**
- * When a LogReader console reaches its thresholdMax, it will clear out messages
- * and print out the latest thresholdMin number of messages.
- *
- * @property thresholdMin
- * @type Number
- * @default 100
- */
-YAHOO.widget.LogReader.prototype.thresholdMin = 100;
-
-/**
- * True when LogReader is in a collapsed state, false otherwise.
- *
- * @property isCollapsed
- * @type Boolean
- * @default false
- */
-YAHOO.widget.LogReader.prototype.isCollapsed = false;
-
-/**
- * True when LogReader is in a paused state, false otherwise.
- *
- * @property isPaused
- * @type Boolean
- * @default false
- */
-YAHOO.widget.LogReader.prototype.isPaused = false;
-
-/**
- * Enables draggable LogReader if DragDrop Utility is present.
- *
- * @property draggable
- * @type Boolean
- * @default true
- */
-YAHOO.widget.LogReader.prototype.draggable = true;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
- /**
- * Public accessor to the unique name of the LogReader instance.
- *
- * @method toString
- * @return {String} Unique name of the LogReader instance.
- */
-YAHOO.widget.LogReader.prototype.toString = function() {
-    return "LogReader instance" + this._sName;
-};
-/**
- * Pauses output of log messages. While paused, log messages are not lost, but
- * get saved to a buffer and then output upon resume of LogReader.
- *
- * @method pause
- */
-YAHOO.widget.LogReader.prototype.pause = function() {
-    this.isPaused = true;
-    this._btnPause.value = "Resume";
-    this._timeout = null;
-    this.logReaderEnabled = false;
-};
-
-/**
- * Resumes output of log messages, including outputting any log messages that
- * have been saved to buffer while paused.
- *
- * @method resume
- */
-YAHOO.widget.LogReader.prototype.resume = function() {
-    this.isPaused = false;
-    this._btnPause.value = "Pause";
-    this.logReaderEnabled = true;
-    this._printBuffer();
-};
-
-/**
- * Hides UI of LogReader. Logging functionality is not disrupted.
- *
- * @method hide
- */
-YAHOO.widget.LogReader.prototype.hide = function() {
-    this._elContainer.style.display = "none";
-};
-
-/**
- * Shows UI of LogReader. Logging functionality is not disrupted.
- *
- * @method show
- */
-YAHOO.widget.LogReader.prototype.show = function() {
-    this._elContainer.style.display = "block";
-};
-
-/**
- * Collapses UI of LogReader. Logging functionality is not disrupted.
- *
- * @method collapse
- */
-YAHOO.widget.LogReader.prototype.collapse = function() {
-    this._elConsole.style.display = "none";
-    if(this._elFt) {
-        this._elFt.style.display = "none";
-    }
-    this._btnCollapse.value = "Expand";
-    this.isCollapsed = true;
-};
-
-/**
- * Expands UI of LogReader. Logging functionality is not disrupted.
- *
- * @method expand
- */
-YAHOO.widget.LogReader.prototype.expand = function() {
-    this._elConsole.style.display = "block";
-    if(this._elFt) {
-        this._elFt.style.display = "block";
-    }
-    this._btnCollapse.value = "Collapse";
-    this.isCollapsed = false;
-};
-
-/**
- * Returns related checkbox element for given filter (i.e., category or source).
- *
- * @method getCheckbox
- * @param {String} Category or source name.
- * @return {Array} Array of all filter checkboxes.
- */
-YAHOO.widget.LogReader.prototype.getCheckbox = function(filter) {
-    return this._filterCheckboxes[filter];
-};
-
-/**
- * Returns array of enabled categories.
- *
- * @method getCategories
- * @return {String[]} Array of enabled categories.
- */
-YAHOO.widget.LogReader.prototype.getCategories = function() {
-    return this._categoryFilters;
-};
-
-/**
- * Shows log messages associated with given category.
- *
- * @method showCategory
- * @param {String} Category name.
- */
-YAHOO.widget.LogReader.prototype.showCategory = function(sCategory) {
-    var filtersArray = this._categoryFilters;
-    // Don't do anything if category is already enabled
-    // Use Array.indexOf if available...
-    if(filtersArray.indexOf) {
-         if(filtersArray.indexOf(sCategory) >  -1) {
-            return;
-        }
-    }
-    // ...or do it the old-fashioned way
-    else {
-        for(var i=0; i<filtersArray.length; i++) {
-           if(filtersArray[i] === sCategory){
-                return;
-            }
-        }
-    }
-
-    this._categoryFilters.push(sCategory);
-    this._filterLogs();
-    var elCheckbox = this.getCheckbox(sCategory);
-    if(elCheckbox) {
-        elCheckbox.checked = true;
-    }
-};
-
-/**
- * Hides log messages associated with given category.
- *
- * @method hideCategory
- * @param {String} Category name.
- */
-YAHOO.widget.LogReader.prototype.hideCategory = function(sCategory) {
-    var filtersArray = this._categoryFilters;
-    for(var i=0; i<filtersArray.length; i++) {
-        if(sCategory == filtersArray[i]) {
-            filtersArray.splice(i, 1);
-            break;
-        }
-    }
-    this._filterLogs();
-    var elCheckbox = this.getCheckbox(sCategory);
-    if(elCheckbox) {
-        elCheckbox.checked = false;
-    }
-};
-
-/**
- * Returns array of enabled sources.
- *
- * @method getSources
- * @return {Array} Array of enabled sources.
- */
-YAHOO.widget.LogReader.prototype.getSources = function() {
-    return this._sourceFilters;
-};
-
-/**
- * Shows log messages associated with given source.
- *
- * @method showSource
- * @param {String} Source name.
- */
-YAHOO.widget.LogReader.prototype.showSource = function(sSource) {
-    var filtersArray = this._sourceFilters;
-    // Don't do anything if category is already enabled
-    // Use Array.indexOf if available...
-    if(filtersArray.indexOf) {
-         if(filtersArray.indexOf(sSource) >  -1) {
-            return;
-        }
-    }
-    // ...or do it the old-fashioned way
-    else {
-        for(var i=0; i<filtersArray.length; i++) {
-           if(sSource == filtersArray[i]){
-                return;
-            }
-        }
-    }
-    filtersArray.push(sSource);
-    this._filterLogs();
-    var elCheckbox = this.getCheckbox(sSource);
-    if(elCheckbox) {
-        elCheckbox.checked = true;
-    }
-};
-
-/**
- * Hides log messages associated with given source.
- *
- * @method hideSource
- * @param {String} Source name.
- */
-YAHOO.widget.LogReader.prototype.hideSource = function(sSource) {
-    var filtersArray = this._sourceFilters;
-    for(var i=0; i<filtersArray.length; i++) {
-        if(sSource == filtersArray[i]) {
-            filtersArray.splice(i, 1);
-            break;
-        }
-    }
-    this._filterLogs();
-    var elCheckbox = this.getCheckbox(sSource);
-    if(elCheckbox) {
-        elCheckbox.checked = false;
-    }
-};
-
-/**
- * Does not delete any log messages, but clears all printed log messages from
- * the console. Log messages will be printed out again if user re-filters. The
- * static method YAHOO.widget.Logger.reset() should be called in order to
- * actually delete log messages.
- *
- * @method clearConsole
- */
-YAHOO.widget.LogReader.prototype.clearConsole = function() {
-    // Clear the buffer of any pending messages
-    this._timeout = null;
-    this._buffer = [];
-    this._consoleMsgCount = 0;
-
-    var elConsole = this._elConsole;
-    while(elConsole.hasChildNodes()) {
-        elConsole.removeChild(elConsole.firstChild);
-    }
-};
-
-/**
- * Updates title to given string.
- *
- * @method setTitle
- * @param sTitle {String} New title.
- */
-YAHOO.widget.LogReader.prototype.setTitle = function(sTitle) {
-    this._title.innerHTML = this.html2Text(sTitle);
-};
-
-/**
- * Gets timestamp of the last log.
- *
- * @method getLastTime
- * @return {Date} Timestamp of the last log.
- */
-YAHOO.widget.LogReader.prototype.getLastTime = function() {
-    return this._lastTime;
-};
-
-/**
- * Formats message string to HTML for output to console.
- *
- * @method formatMsg
- * @param oLogMsg {Object} Log message object.
- * @return {String} HTML-formatted message for output to console.
- */
-YAHOO.widget.LogReader.prototype.formatMsg = function(oLogMsg) {
-    var category = oLogMsg.category;
-    
-    // Label for color-coded display
-    var label = category.substring(0,4).toUpperCase();
-
-    // Calculate the elapsed time to be from the last item that passed through the filter,
-    // not the absolute previous item in the stack
-
-    var time = oLogMsg.time;
-    if (time.toLocaleTimeString) {
-        var localTime  = time.toLocaleTimeString();
-    }
-    else {
-        localTime = time.toString();
-    }
-
-    var msecs = time.getTime();
-    var startTime = YAHOO.widget.Logger.getStartTime();
-    var totalTime = msecs - startTime;
-    var elapsedTime = msecs - this.getLastTime();
-
-    var source = oLogMsg.source;
-    var sourceDetail = oLogMsg.sourceDetail;
-    var sourceAndDetail = (sourceDetail) ?
-        source + " " + sourceDetail : source;
-        
-    
-    // Escape HTML entities in the log message itself for output to console
-    //var msg = this.html2Text(oLogMsg.msg); //TODO: delete
-    var msg = this.html2Text(YAHOO.lang.dump(oLogMsg.msg));
-
-    // Verbose output includes extra line breaks
-    var output =  (this.verboseOutput) ?
-        ["<pre class=\"yui-log-verbose\"><p><span class='", category, "'>", label, "</span> ",
-        totalTime, "ms (+", elapsedTime, ") ",
-        localTime, ": ",
-        "</p><p>",
-        sourceAndDetail,
-        ": </p><p>",
-        msg,
-        "</p></pre>"] :
-
-        ["<pre><p><span class='", category, "'>", label, "</span> ",
-        totalTime, "ms (+", elapsedTime, ") ",
-        localTime, ": ",
-        sourceAndDetail, ": ",
-        msg, "</p></pre>"];
-
-    return output.join("");
-};
-
-/**
- * Converts input chars "<", ">", and "&" to HTML entities.
- *
- * @method html2Text
- * @param sHtml {String} String to convert.
- * @private
- */
-YAHOO.widget.LogReader.prototype.html2Text = function(sHtml) {
-    if(sHtml) {
-        sHtml += "";
-        return sHtml.replace(/&/g, "&#38;").replace(/</g, "&#60;").replace(/>/g, "&#62;");
-    }
-    return "";
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Internal class member to index multiple LogReader instances.
- *
- * @property _memberName
- * @static
- * @type Number
- * @default 0
- * @private
- */
-YAHOO.widget.LogReader._index = 0;
-
-/**
- * Name of LogReader instance.
- *
- * @property _sName
- * @type String
- * @private
- */
-YAHOO.widget.LogReader.prototype._sName = null;
-
-//TODO: remove
-/**
- * A class member shared by all LogReaders if a container needs to be
- * created during instantiation. Will be null if a container element never needs to
- * be created on the fly, such as when the implementer passes in their own element.
- *
- * @property _elDefaultContainer
- * @type HTMLElement
- * @private
- */
-//YAHOO.widget.LogReader._elDefaultContainer = null;
-
-/**
- * Buffer of log message objects for batch output.
- *
- * @property _buffer
- * @type Object[]
- * @private
- */
-YAHOO.widget.LogReader.prototype._buffer = null;
-
-/**
- * Number of log messages output to console.
- *
- * @property _consoleMsgCount
- * @type Number
- * @default 0
- * @private
- */
-YAHOO.widget.LogReader.prototype._consoleMsgCount = 0;
-
-/**
- * Date of last output log message.
- *
- * @property _lastTime
- * @type Date
- * @private
- */
-YAHOO.widget.LogReader.prototype._lastTime = null;
-
-/**
- * Batched output timeout ID.
- *
- * @property _timeout
- * @type Number
- * @private
- */
-YAHOO.widget.LogReader.prototype._timeout = null;
-
-/**
- * Hash of filters and their related checkbox elements.
- *
- * @property _filterCheckboxes
- * @type Object
- * @private
- */
-YAHOO.widget.LogReader.prototype._filterCheckboxes = null;
-
-/**
- * Array of filters for log message categories.
- *
- * @property _categoryFilters
- * @type String[]
- * @private
- */
-YAHOO.widget.LogReader.prototype._categoryFilters = null;
-
-/**
- * Array of filters for log message sources.
- *
- * @property _sourceFilters
- * @type String[]
- * @private
- */
-YAHOO.widget.LogReader.prototype._sourceFilters = null;
-
-/**
- * LogReader container element.
- *
- * @property _elContainer
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.LogReader.prototype._elContainer = null;
-
-/**
- * LogReader header element.
- *
- * @property _elHd
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.LogReader.prototype._elHd = null;
-
-/**
- * LogReader collapse element.
- *
- * @property _elCollapse
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.LogReader.prototype._elCollapse = null;
-
-/**
- * LogReader collapse button element.
- *
- * @property _btnCollapse
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.LogReader.prototype._btnCollapse = null;
-
-/**
- * LogReader title header element.
- *
- * @property _title
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.LogReader.prototype._title = null;
-
-/**
- * LogReader console element.
- *
- * @property _elConsole
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.LogReader.prototype._elConsole = null;
-
-/**
- * LogReader footer element.
- *
- * @property _elFt
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.LogReader.prototype._elFt = null;
-
-/**
- * LogReader buttons container element.
- *
- * @property _elBtns
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.LogReader.prototype._elBtns = null;
-
-/**
- * Container element for LogReader category filter checkboxes.
- *
- * @property _elCategoryFilters
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.LogReader.prototype._elCategoryFilters = null;
-
-/**
- * Container element for LogReader source filter checkboxes.
- *
- * @property _elSourceFilters
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.LogReader.prototype._elSourceFilters = null;
-
-/**
- * LogReader pause button element.
- *
- * @property _btnPause
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.LogReader.prototype._btnPause = null;
-
-/**
- * Clear button element.
- *
- * @property _btnClear
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.LogReader.prototype._btnClear = null;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Initializes the primary container element.
- *
- * @method _initContainerEl
- * @param elContainer {HTMLElement} Container element by reference or string ID.
- * @private
- */
-YAHOO.widget.LogReader.prototype._initContainerEl = function(elContainer) {
-    // Validate container
-    elContainer = YAHOO.util.Dom.get(elContainer);
-    // Attach to existing container...
-    if(elContainer && elContainer.tagName && (elContainer.tagName.toLowerCase() == "div")) {
-        this._elContainer = elContainer;
-        YAHOO.util.Dom.addClass(this._elContainer,"yui-log");
-    }
-    // ...or create container from scratch
-    else {
-        this._elContainer = document.body.appendChild(document.createElement("div"));
-        //this._elContainer.id = "yui-log" + this._sName;
-        YAHOO.util.Dom.addClass(this._elContainer,"yui-log");
-        YAHOO.util.Dom.addClass(this._elContainer,"yui-log-container");
-
-        //YAHOO.widget.LogReader._elDefaultContainer = this._elContainer;
-
-        // If implementer has provided container values, trust and set those
-        var containerStyle = this._elContainer.style;
-        if(this.width) {
-            containerStyle.width = this.width;
-        }
-        if(this.right) {
-            containerStyle.right = this.right;
-        }
-        if(this.top) {
-            containerStyle.top = this.top;
-        }
-         if(this.left) {
-            containerStyle.left = this.left;
-            containerStyle.right = "auto";
-        }
-        if(this.bottom) {
-            containerStyle.bottom = this.bottom;
-            containerStyle.top = "auto";
-        }
-       if(this.fontSize) {
-            containerStyle.fontSize = this.fontSize;
-        }
-        // For Opera
-        if(navigator.userAgent.toLowerCase().indexOf("opera") != -1) {
-            document.body.style += '';
-        }
-    }
-};
-
-/**
- * Initializes the header element.
- *
- * @method _initHeaderEl
- * @private
- */
-YAHOO.widget.LogReader.prototype._initHeaderEl = function() {
-    var oSelf = this;
-
-    // Destroy header
-    if(this._elHd) {
-        // Unhook DOM events
-        YAHOO.util.Event.purgeElement(this._elHd, true);
-
-        // Remove DOM elements
-        this._elHd.innerHTML = "";
-    }
-    
-    // Create header
-    this._elHd = this._elContainer.appendChild(document.createElement("div"));
-    this._elHd.id = "yui-log-hd" + this._sName;
-    this._elHd.className = "yui-log-hd";
-
-    this._elCollapse = this._elHd.appendChild(document.createElement("div"));
-    this._elCollapse.className = "yui-log-btns";
-
-    this._btnCollapse = document.createElement("input");
-    this._btnCollapse.type = "button";
-    //this._btnCollapse.style.fontSize =
-    //    YAHOO.util.Dom.getStyle(this._elContainer,"fontSize");
-    this._btnCollapse.className = "yui-log-button";
-    this._btnCollapse.value = "Collapse";
-    this._btnCollapse = this._elCollapse.appendChild(this._btnCollapse);
-    YAHOO.util.Event.addListener(
-        oSelf._btnCollapse,'click',oSelf._onClickCollapseBtn,oSelf);
-
-    this._title = this._elHd.appendChild(document.createElement("h4"));
-    this._title.innerHTML = "Logger Console";
-};
-
-/**
- * Initializes the console element.
- *
- * @method _initConsoleEl
- * @private
- */
-YAHOO.widget.LogReader.prototype._initConsoleEl = function() {
-    // Destroy console
-    if(this._elConsole) {
-        // Unhook DOM events
-        YAHOO.util.Event.purgeElement(this._elConsole, true);
-
-        // Remove DOM elements
-        this._elConsole.innerHTML = "";
-    }
-
-    // Ceate console
-    this._elConsole = this._elContainer.appendChild(document.createElement("div"));
-    this._elConsole.className = "yui-log-bd";
-
-    // If implementer has provided console, trust and set those
-    if(this.height) {
-        this._elConsole.style.height = this.height;
-    }
-};
-
-/**
- * Initializes the footer element.
- *
- * @method _initFooterEl
- * @private
- */
-YAHOO.widget.LogReader.prototype._initFooterEl = function() {
-    var oSelf = this;
-
-    // Don't create footer elements if footer is disabled
-    if(this.footerEnabled) {
-        // Destroy console
-        if(this._elFt) {
-            // Unhook DOM events
-            YAHOO.util.Event.purgeElement(this._elFt, true);
-
-            // Remove DOM elements
-            this._elFt.innerHTML = "";
-        }
-
-        this._elFt = this._elContainer.appendChild(document.createElement("div"));
-        this._elFt.className = "yui-log-ft";
-
-        this._elBtns = this._elFt.appendChild(document.createElement("div"));
-        this._elBtns.className = "yui-log-btns";
-
-        this._btnPause = document.createElement("input");
-        this._btnPause.type = "button";
-        //this._btnPause.style.fontSize =
-        //    YAHOO.util.Dom.getStyle(this._elContainer,"fontSize");
-        this._btnPause.className = "yui-log-button";
-        this._btnPause.value = "Pause";
-        this._btnPause = this._elBtns.appendChild(this._btnPause);
-        YAHOO.util.Event.addListener(
-            oSelf._btnPause,'click',oSelf._onClickPauseBtn,oSelf);
-
-        this._btnClear = document.createElement("input");
-        this._btnClear.type = "button";
-        //this._btnClear.style.fontSize =
-        //    YAHOO.util.Dom.getStyle(this._elContainer,"fontSize");
-        this._btnClear.className = "yui-log-button";
-        this._btnClear.value = "Clear";
-        this._btnClear = this._elBtns.appendChild(this._btnClear);
-        YAHOO.util.Event.addListener(
-            oSelf._btnClear,'click',oSelf._onClickClearBtn,oSelf);
-
-        this._elCategoryFilters = this._elFt.appendChild(document.createElement("div"));
-        this._elCategoryFilters.className = "yui-log-categoryfilters";
-        this._elSourceFilters = this._elFt.appendChild(document.createElement("div"));
-        this._elSourceFilters.className = "yui-log-sourcefilters";
-    }
-};
-
-/**
- * Initializes Drag and Drop on the header element.
- *
- * @method _initDragDrop
- * @private
- */
-YAHOO.widget.LogReader.prototype._initDragDrop = function() {
-    // If Drag and Drop utility is available...
-    // ...and draggable is true...
-    // ...then make the header draggable
-    if(YAHOO.util.DD && this.draggable && this._elHd) {
-        var ylog_dd = new YAHOO.util.DD(this._elContainer);
-        ylog_dd.setHandleElId(this._elHd.id);
-        //TODO: use class name
-        this._elHd.style.cursor = "move";
-    }
-};
-
-/**
- * Initializes category filters.
- *
- * @method _initCategories
- * @private
- */
-YAHOO.widget.LogReader.prototype._initCategories = function() {
-    // Initialize category filters
-    this._categoryFilters = [];
-    var aInitialCategories = YAHOO.widget.Logger.categories;
-
-    for(var j=0; j < aInitialCategories.length; j++) {
-        var sCategory = aInitialCategories[j];
-
-        // Add category to the internal array of filters
-        this._categoryFilters.push(sCategory);
-
-        // Add checkbox element if UI is enabled
-        if(this._elCategoryFilters) {
-            this._createCategoryCheckbox(sCategory);
-        }
-    }
-};
-
-/**
- * Initializes source filters.
- *
- * @method _initSources
- * @private
- */
-YAHOO.widget.LogReader.prototype._initSources = function() {
-    // Initialize source filters
-    this._sourceFilters = [];
-    var aInitialSources = YAHOO.widget.Logger.sources;
-
-    for(var j=0; j < aInitialSources.length; j++) {
-        var sSource = aInitialSources[j];
-
-        // Add source to the internal array of filters
-        this._sourceFilters.push(sSource);
-
-        // Add checkbox element if UI is enabled
-        if(this._elSourceFilters) {
-            this._createSourceCheckbox(sSource);
-        }
-    }}
-;
-
-/**
- * Creates the UI for a category filter in the LogReader footer element.
- *
- * @method _createCategoryCheckbox
- * @param sCategory {String} Category name.
- * @private
- */
-YAHOO.widget.LogReader.prototype._createCategoryCheckbox = function(sCategory) {
-    var oSelf = this;
-
-    if(this._elFt) {
-        var elParent = this._elCategoryFilters;
-        var elFilter = elParent.appendChild(document.createElement("span"));
-        elFilter.className = "yui-log-filtergrp";
-        
-        // Append el at the end so IE 5.5 can set "type" attribute
-        // and THEN set checked property
-        var chkCategory = document.createElement("input");
-        chkCategory.id = "yui-log-filter-" + sCategory + this._sName;
-        chkCategory.className = "yui-log-filter-" + sCategory;
-        chkCategory.type = "checkbox";
-        chkCategory.category = sCategory;
-        chkCategory = elFilter.appendChild(chkCategory);
-        chkCategory.checked = true;
-
-        // Subscribe to the click event
-        YAHOO.util.Event.addListener(chkCategory,'click',oSelf._onCheckCategory,oSelf);
-
-        // Create and class the text label
-        var lblCategory = elFilter.appendChild(document.createElement("label"));
-        lblCategory.htmlFor = chkCategory.id;
-        lblCategory.className = sCategory;
-        lblCategory.innerHTML = sCategory;
-        
-        this._filterCheckboxes[sCategory] = chkCategory;
-    }
-};
-
-/**
- * Creates a checkbox in the LogReader footer element to filter by source.
- *
- * @method _createSourceCheckbox
- * @param sSource {String} Source name.
- * @private
- */
-YAHOO.widget.LogReader.prototype._createSourceCheckbox = function(sSource) {
-    var oSelf = this;
-
-    if(this._elFt) {
-        var elParent = this._elSourceFilters;
-        var elFilter = elParent.appendChild(document.createElement("span"));
-        elFilter.className = "yui-log-filtergrp";
-
-        // Append el at the end so IE 5.5 can set "type" attribute
-        // and THEN set checked property
-        var chkSource = document.createElement("input");
-        chkSource.id = "yui-log-filter" + sSource + this._sName;
-        chkSource.className = "yui-log-filter" + sSource;
-        chkSource.type = "checkbox";
-        chkSource.source = sSource;
-        chkSource = elFilter.appendChild(chkSource);
-        chkSource.checked = true;
-
-        // Subscribe to the click event
-        YAHOO.util.Event.addListener(chkSource,'click',oSelf._onCheckSource,oSelf);
-
-        // Create and class the text label
-        var lblSource = elFilter.appendChild(document.createElement("label"));
-        lblSource.htmlFor = chkSource.id;
-        lblSource.className = sSource;
-        lblSource.innerHTML = sSource;
-        
-        this._filterCheckboxes[sSource] = chkSource;
-    }
-};
-
-/**
- * Reprints all log messages in the stack through filters.
- *
- * @method _filterLogs
- * @private
- */
-YAHOO.widget.LogReader.prototype._filterLogs = function() {
-    // Reprint stack with new filters
-    if (this._elConsole !== null) {
-        this.clearConsole();
-        this._printToConsole(YAHOO.widget.Logger.getStack());
-    }
-};
-
-/**
- * Sends buffer of log messages to output and clears buffer.
- *
- * @method _printBuffer
- * @private
- */
-YAHOO.widget.LogReader.prototype._printBuffer = function() {
-    this._timeout = null;
-
-    if(this._elConsole !== null) {
-        var thresholdMax = this.thresholdMax;
-        thresholdMax = (thresholdMax && !isNaN(thresholdMax)) ? thresholdMax : 500;
-        if(this._consoleMsgCount < thresholdMax) {
-            var entries = [];
-            for (var i=0; i<this._buffer.length; i++) {
-                entries[i] = this._buffer[i];
-            }
-            this._buffer = [];
-            this._printToConsole(entries);
-        }
-        else {
-            this._filterLogs();
-        }
-        
-        if(!this.newestOnTop) {
-            this._elConsole.scrollTop = this._elConsole.scrollHeight;
-        }
-    }
-};
-
-/**
- * Cycles through an array of log messages, and outputs each one to the console
- * if its category has not been filtered out.
- *
- * @method _printToConsole
- * @param aEntries {Object[]} Array of LogMsg objects to output to console.
- * @private
- */
-YAHOO.widget.LogReader.prototype._printToConsole = function(aEntries) {
-    // Manage the number of messages displayed in the console
-    var entriesLen = aEntries.length;
-    var thresholdMin = this.thresholdMin;
-    if(isNaN(thresholdMin) || (thresholdMin > this.thresholdMax)) {
-        thresholdMin = 0;
-    }
-    var entriesStartIndex = (entriesLen > thresholdMin) ? (entriesLen - thresholdMin) : 0;
-    
-    // Iterate through all log entries 
-    var sourceFiltersLen = this._sourceFilters.length;
-    var categoryFiltersLen = this._categoryFilters.length;
-    for(var i=entriesStartIndex; i<entriesLen; i++) {
-        // Print only the ones that filter through
-        var okToPrint = false;
-        var okToFilterCats = false;
-
-        // Get log message details
-        var entry = aEntries[i];
-        var source = entry.source;
-        var category = entry.category;
-
-        for(var j=0; j<sourceFiltersLen; j++) {
-            if(source == this._sourceFilters[j]) {
-                okToFilterCats = true;
-                break;
-            }
-        }
-        if(okToFilterCats) {
-            for(var k=0; k<categoryFiltersLen; k++) {
-                if(category == this._categoryFilters[k]) {
-                    okToPrint = true;
-                    break;
-                }
-            }
-        }
-        if(okToPrint) {
-            var output = this.formatMsg(entry);
-            if(this.newestOnTop) {
-                this._elConsole.innerHTML = output + this._elConsole.innerHTML;
-            }
-            else {
-                this._elConsole.innerHTML += output;
-            }
-            this._consoleMsgCount++;
-            this._lastTime = entry.time.getTime();
-        }
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private event handlers
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Handles Logger's categoryCreateEvent.
- *
- * @method _onCategoryCreate
- * @param sType {String} The event.
- * @param aArgs {Object[]} Data passed from event firer.
- * @param oSelf {Object} The LogReader instance.
- * @private
- */
-YAHOO.widget.LogReader.prototype._onCategoryCreate = function(sType, aArgs, oSelf) {
-    var category = aArgs[0];
-    
-    // Add category to the internal array of filters
-    oSelf._categoryFilters.push(category);
-
-    if(oSelf._elFt) {
-        oSelf._createCategoryCheckbox(category);
-    }
-};
-
-/**
- * Handles Logger's sourceCreateEvent.
- *
- * @method _onSourceCreate
- * @param sType {String} The event.
- * @param aArgs {Object[]} Data passed from event firer.
- * @param oSelf {Object} The LogReader instance.
- * @private
- */
-YAHOO.widget.LogReader.prototype._onSourceCreate = function(sType, aArgs, oSelf) {
-    var source = aArgs[0];
-    
-    // Add source to the internal array of filters
-    oSelf._sourceFilters.push(source);
-
-    if(oSelf._elFt) {
-        oSelf._createSourceCheckbox(source);
-    }
-};
-
-/**
- * Handles check events on the category filter checkboxes.
- *
- * @method _onCheckCategory
- * @param v {HTMLEvent} The click event.
- * @param oSelf {Object} The LogReader instance.
- * @private
- */
-YAHOO.widget.LogReader.prototype._onCheckCategory = function(v, oSelf) {
-    var category = this.category;
-    if(!this.checked) {
-        oSelf.hideCategory(category);
-    }
-    else {
-        oSelf.showCategory(category);
-    }
-};
-
-/**
- * Handles check events on the category filter checkboxes.
- *
- * @method _onCheckSource
- * @param v {HTMLEvent} The click event.
- * @param oSelf {Object} The LogReader instance.
- * @private
- */
-YAHOO.widget.LogReader.prototype._onCheckSource = function(v, oSelf) {
-    var source = this.source;
-    if(!this.checked) {
-        oSelf.hideSource(source);
-    }
-    else {
-        oSelf.showSource(source);
-    }
-};
-
-/**
- * Handles click events on the collapse button.
- *
- * @method _onClickCollapseBtn
- * @param v {HTMLEvent} The click event.
- * @param oSelf {Object} The LogReader instance
- * @private
- */
-YAHOO.widget.LogReader.prototype._onClickCollapseBtn = function(v, oSelf) {
-    if(!oSelf.isCollapsed) {
-        oSelf.collapse();
-    }
-    else {
-        oSelf.expand();
-    }
-};
-
-/**
- * Handles click events on the pause button.
- *
- * @method _onClickPauseBtn
- * @param v {HTMLEvent} The click event.
- * @param oSelf {Object} The LogReader instance.
- * @private
- */
-YAHOO.widget.LogReader.prototype._onClickPauseBtn = function(v, oSelf) {
-    if(!oSelf.isPaused) {
-        oSelf.pause();
-    }
-    else {
-        oSelf.resume();
-    }
-};
-
-/**
- * Handles click events on the clear button.
- *
- * @method _onClickClearBtn
- * @param v {HTMLEvent} The click event.
- * @param oSelf {Object} The LogReader instance.
- * @private
- */
-YAHOO.widget.LogReader.prototype._onClickClearBtn = function(v, oSelf) {
-    oSelf.clearConsole();
-};
-
-/**
- * Handles Logger's newLogEvent.
- *
- * @method _onNewLog
- * @param sType {String} The event.
- * @param aArgs {Object[]} Data passed from event firer.
- * @param oSelf {Object} The LogReader instance.
- * @private
- */
-YAHOO.widget.LogReader.prototype._onNewLog = function(sType, aArgs, oSelf) {
-    var logEntry = aArgs[0];
-    oSelf._buffer.push(logEntry);
-
-    if (oSelf.logReaderEnabled === true && oSelf._timeout === null) {
-        oSelf._timeout = setTimeout(function(){oSelf._printBuffer();}, oSelf.outputBuffer);
-    }
-};
-
-/**
- * Handles Logger's resetEvent.
- *
- * @method _onReset
- * @param sType {String} The event.
- * @param aArgs {Object[]} Data passed from event firer.
- * @param oSelf {Object} The LogReader instance.
- * @private
- */
-YAHOO.widget.LogReader.prototype._onReset = function(sType, aArgs, oSelf) {
-    oSelf._filterLogs();
-};
-
- /**
- * The Logger widget provides a simple way to read or write log messages in
- * JavaScript code. Integration with the YUI Library's debug builds allow
- * implementers to access under-the-hood events, errors, and debugging messages.
- * Output may be read through a LogReader console and/or output to a browser
- * console.
- *
- * @module logger
- * @requires yahoo, event, dom
- * @optional dragdrop
- * @namespace YAHOO.widget
- * @title Logger Widget
- */
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-// Define once
-if(!YAHOO.widget.Logger) {
-    /**
-     * The singleton Logger class provides core log management functionality. Saves
-     * logs written through the global YAHOO.log function or written by a LogWriter
-     * instance. Provides access to logs for reading by a LogReader instance or
-     * native browser console such as the Firebug extension to Firefox or Safari's
-     * JavaScript console through integration with the console.log() method.
-     *
-     * @class Logger
-     * @static
-     */
-    YAHOO.widget.Logger = {
-        // Initialize properties
-        loggerEnabled: true,
-        _browserConsoleEnabled: false,
-        categories: ["info","warn","error","time","window"],
-        sources: ["global"],
-        _stack: [], // holds all log msgs
-        maxStackEntries: 2500,
-        _startTime: new Date().getTime(), // static start timestamp
-        _lastTime: null // timestamp of last logged message
-    };
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public properties
-    //
-    /////////////////////////////////////////////////////////////////////////////
-    /**
-     * True if Logger is enabled, false otherwise.
-     *
-     * @property loggerEnabled
-     * @type Boolean
-     * @static
-     * @default true
-     */
-
-    /**
-     * Array of categories.
-     *
-     * @property categories
-     * @type String[]
-     * @static
-     * @default ["info","warn","error","time","window"]
-     */
-
-    /**
-     * Array of sources.
-     *
-     * @property sources
-     * @type String[]
-     * @static
-     * @default ["global"]
-     */
-
-    /**
-     * Upper limit on size of internal stack.
-     *
-     * @property maxStackEntries
-     * @type Number
-     * @static
-     * @default 2500
-     */
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private properties
-    //
-    /////////////////////////////////////////////////////////////////////////////
-    /**
-     * Internal property to track whether output to browser console is enabled.
-     *
-     * @property _browserConsoleEnabled
-     * @type Boolean
-     * @static
-     * @default false
-     * @private
-     */
-
-    /**
-     * Array to hold all log messages.
-     *
-     * @property _stack
-     * @type Array
-     * @static
-     * @private
-     */
-    /**
-     * Static timestamp of Logger initialization.
-     *
-     * @property _startTime
-     * @type Date
-     * @static
-     * @private
-     */
-    /**
-     * Timestamp of last logged message.
-     *
-     * @property _lastTime
-     * @type Date
-     * @static
-     * @private
-     */
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-    /**
-     * Saves a log message to the stack and fires newLogEvent. If the log message is
-     * assigned to an unknown category, creates a new category. If the log message is
-     * from an unknown source, creates a new source.  If browser console is enabled,
-     * outputs the log message to browser console.
-     *
-     * @method log
-     * @param sMsg {String} The log message.
-     * @param sCategory {String} Category of log message, or null.
-     * @param sSource {String} Source of LogWriter, or null if global.
-     */
-    YAHOO.widget.Logger.log = function(sMsg, sCategory, sSource) {
-        if(this.loggerEnabled) {
-            if(!sCategory) {
-                sCategory = "info"; // default category
-            }
-            else {
-                sCategory = sCategory.toLocaleLowerCase();
-                if(this._isNewCategory(sCategory)) {
-                    this._createNewCategory(sCategory);
-                }
-            }
-            var sClass = "global"; // default source
-            var sDetail = null;
-            if(sSource) {
-                var spaceIndex = sSource.indexOf(" ");
-                if(spaceIndex > 0) {
-                    // Substring until first space
-                    sClass = sSource.substring(0,spaceIndex);
-                    // The rest of the source
-                    sDetail = sSource.substring(spaceIndex,sSource.length);
-                }
-                else {
-                    sClass = sSource;
-                }
-                if(this._isNewSource(sClass)) {
-                    this._createNewSource(sClass);
-                }
-            }
-
-            var timestamp = new Date();
-            var logEntry = new YAHOO.widget.LogMsg({
-                msg: sMsg,
-                time: timestamp,
-                category: sCategory,
-                source: sClass,
-                sourceDetail: sDetail
-            });
-
-            var stack = this._stack;
-            var maxStackEntries = this.maxStackEntries;
-            if(maxStackEntries && !isNaN(maxStackEntries) &&
-                (stack.length >= maxStackEntries)) {
-                stack.shift();
-            }
-            stack.push(logEntry);
-            this.newLogEvent.fire(logEntry);
-
-            if(this._browserConsoleEnabled) {
-                this._printToBrowserConsole(logEntry);
-            }
-            return true;
-        }
-        else {
-            return false;
-        }
-    };
-
-    /**
-     * Resets internal stack and startTime, enables Logger, and fires logResetEvent.
-     *
-     * @method reset
-     */
-    YAHOO.widget.Logger.reset = function() {
-        this._stack = [];
-        this._startTime = new Date().getTime();
-        this.loggerEnabled = true;
-        this.log("Logger reset");
-        this.logResetEvent.fire();
-    };
-
-    /**
-     * Public accessor to internal stack of log message objects.
-     *
-     * @method getStack
-     * @return {Object[]} Array of log message objects.
-     */
-    YAHOO.widget.Logger.getStack = function() {
-        return this._stack;
-    };
-
-    /**
-     * Public accessor to internal start time.
-     *
-     * @method getStartTime
-     * @return {Date} Internal date of when Logger singleton was initialized.
-     */
-    YAHOO.widget.Logger.getStartTime = function() {
-        return this._startTime;
-    };
-
-    /**
-     * Disables output to the browser's global console.log() function, which is used
-     * by the Firebug extension to Firefox as well as Safari.
-     *
-     * @method disableBrowserConsole
-     */
-    YAHOO.widget.Logger.disableBrowserConsole = function() {
-        YAHOO.log("Logger output to the function console.log() has been disabled.");
-        this._browserConsoleEnabled = false;
-    };
-
-    /**
-     * Enables output to the browser's global console.log() function, which is used
-     * by the Firebug extension to Firefox as well as Safari.
-     *
-     * @method enableBrowserConsole
-     */
-    YAHOO.widget.Logger.enableBrowserConsole = function() {
-        this._browserConsoleEnabled = true;
-        YAHOO.log("Logger output to the function console.log() has been enabled.");
-    };
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public events
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-     /**
-     * Fired when a new category has been created.
-     *
-     * @event categoryCreateEvent
-     * @param sCategory {String} Category name.
-     */
-    YAHOO.widget.Logger.categoryCreateEvent =
-        new YAHOO.util.CustomEvent("categoryCreate", this, true);
-
-     /**
-     * Fired when a new source has been named.
-     *
-     * @event sourceCreateEvent
-     * @param sSource {String} Source name.
-     */
-    YAHOO.widget.Logger.sourceCreateEvent =
-        new YAHOO.util.CustomEvent("sourceCreate", this, true);
-
-     /**
-     * Fired when a new log message has been created.
-     *
-     * @event newLogEvent
-     * @param sMsg {String} Log message.
-     */
-    YAHOO.widget.Logger.newLogEvent = new YAHOO.util.CustomEvent("newLog", this, true);
-
-    /**
-     * Fired when the Logger has been reset has been created.
-     *
-     * @event logResetEvent
-     */
-    YAHOO.widget.Logger.logResetEvent = new YAHOO.util.CustomEvent("logReset", this, true);
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Creates a new category of log messages and fires categoryCreateEvent.
-     *
-     * @method _createNewCategory
-     * @param sCategory {String} Category name.
-     * @private
-     */
-    YAHOO.widget.Logger._createNewCategory = function(sCategory) {
-        this.categories.push(sCategory);
-        this.categoryCreateEvent.fire(sCategory);
-    };
-
-    /**
-     * Checks to see if a category has already been created.
-     *
-     * @method _isNewCategory
-     * @param sCategory {String} Category name.
-     * @return {Boolean} Returns true if category is unknown, else returns false.
-     * @private
-     */
-    YAHOO.widget.Logger._isNewCategory = function(sCategory) {
-        for(var i=0; i < this.categories.length; i++) {
-            if(sCategory == this.categories[i]) {
-                return false;
-            }
-        }
-        return true;
-    };
-
-    /**
-     * Creates a new source of log messages and fires sourceCreateEvent.
-     *
-     * @method _createNewSource
-     * @param sSource {String} Source name.
-     * @private
-     */
-    YAHOO.widget.Logger._createNewSource = function(sSource) {
-        this.sources.push(sSource);
-        this.sourceCreateEvent.fire(sSource);
-    };
-
-    /**
-     * Checks to see if a source already exists.
-     *
-     * @method _isNewSource
-     * @param sSource {String} Source name.
-     * @return {Boolean} Returns true if source is unknown, else returns false.
-     * @private
-     */
-    YAHOO.widget.Logger._isNewSource = function(sSource) {
-        if(sSource) {
-            for(var i=0; i < this.sources.length; i++) {
-                if(sSource == this.sources[i]) {
-                    return false;
-                }
-            }
-            return true;
-        }
-    };
-
-    /**
-     * Outputs a log message to global console.log() function.
-     *
-     * @method _printToBrowserConsole
-     * @param oEntry {Object} Log entry object.
-     * @private
-     */
-    YAHOO.widget.Logger._printToBrowserConsole = function(oEntry) {
-        if(window.console && console.log) {
-            var category = oEntry.category;
-            var label = oEntry.category.substring(0,4).toUpperCase();
-
-            var time = oEntry.time;
-            if (time.toLocaleTimeString) {
-                var localTime  = time.toLocaleTimeString();
-            }
-            else {
-                localTime = time.toString();
-            }
-
-            var msecs = time.getTime();
-            var elapsedTime = (YAHOO.widget.Logger._lastTime) ?
-                (msecs - YAHOO.widget.Logger._lastTime) : 0;
-            YAHOO.widget.Logger._lastTime = msecs;
-
-            var output =
-                localTime + " (" +
-                elapsedTime + "ms): " +
-                oEntry.source + ": " +
-                oEntry.msg;
-
-            console.log(output);
-        }
-    };
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private event handlers
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Handles logging of messages due to window error events.
-     *
-     * @method _onWindowError
-     * @param sMsg {String} The error message.
-     * @param sUrl {String} URL of the error.
-     * @param sLine {String} Line number of the error.
-     * @private
-     */
-    YAHOO.widget.Logger._onWindowError = function(sMsg,sUrl,sLine) {
-        // Logger is not in scope of this event handler
-        try {
-            YAHOO.widget.Logger.log(sMsg+' ('+sUrl+', line '+sLine+')', "window");
-            if(YAHOO.widget.Logger._origOnWindowError) {
-                YAHOO.widget.Logger._origOnWindowError();
-            }
-        }
-        catch(e) {
-            return false;
-        }
-    };
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Enable handling of native JavaScript errors
-    // NB: Not all browsers support the window.onerror event
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    if(window.onerror) {
-        // Save any previously defined handler to call
-        YAHOO.widget.Logger._origOnWindowError = window.onerror;
-    }
-    window.onerror = YAHOO.widget.Logger._onWindowError;
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // First log
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    YAHOO.widget.Logger.log("Logger initialized");
-}
-
-
-YAHOO.register("logger", YAHOO.widget.Logger, {version: "2.3.1", build: "541"});
diff --git a/eclipse.org-common/yui/2.3.1/yahoo/yahoo.js b/eclipse.org-common/yui/2.3.1/yahoo/yahoo.js
deleted file mode 100644
index 0fa1263..0000000
--- a/eclipse.org-common/yui/2.3.1/yahoo/yahoo.js
+++ /dev/null
@@ -1,869 +0,0 @@
-/*
-Copyright (c) 2007, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.3.1
-*/
-/**
- * The YAHOO object is the single global object used by YUI Library.  It
- * contains utility function for setting up namespaces, inheritance, and
- * logging.  YAHOO.util, YAHOO.widget, and YAHOO.example are namespaces
- * created automatically for and used by the library.
- * @module yahoo
- * @title  YAHOO Global
- */
-
-/**
- * YAHOO_config is not included as part of the library.  Instead it is an 
- * object that can be defined by the implementer immediately before 
- * including the YUI library.  The properties included in this object
- * will be used to configure global properties needed as soon as the 
- * library begins to load.
- * @class YAHOO_config
- * @static
- */
-
-/**
- * A reference to a function that will be executed every time a YAHOO module
- * is loaded.  As parameter, this function will receive the version
- * information for the module. See <a href="YAHOO.env.html#getVersion">
- * YAHOO.env.getVersion</a> for the description of the version data structure.
- * @property listener
- * @type Function
- * @static
- * @default undefined
- */
-
-/**
- * Set to true if the library will be dynamically loaded after window.onload.
- * Defaults to false 
- * @property injecting
- * @type boolean
- * @static
- * @default undefined
- */
-
-/**
- * Instructs the yuiloader component to dynamically load yui components and
- * their dependencies.  See the yuiloader documentation for more information
- * about dynamic loading
- * @property load
- * @static
- * @default undefined
- * @see yuiloader
- */
-
-if (typeof YAHOO == "undefined") {
-    /**
-     * The YAHOO global namespace object.  If YAHOO is already defined, the
-     * existing YAHOO object will not be overwritten so that defined
-     * namespaces are preserved.
-     * @class YAHOO
-     * @static
-     */
-    var YAHOO = {};
-}
-
-/**
- * Returns the namespace specified and creates it if it doesn't exist
- * <pre>
- * YAHOO.namespace("property.package");
- * YAHOO.namespace("YAHOO.property.package");
- * </pre>
- * Either of the above would create YAHOO.property, then
- * YAHOO.property.package
- *
- * Be careful when naming packages. Reserved words may work in some browsers
- * and not others. For instance, the following will fail in Safari:
- * <pre>
- * YAHOO.namespace("really.long.nested.namespace");
- * </pre>
- * This fails because "long" is a future reserved word in ECMAScript
- *
- * @method namespace
- * @static
- * @param  {String*} arguments 1-n namespaces to create 
- * @return {Object}  A reference to the last namespace object created
- */
-YAHOO.namespace = function() {
-    var a=arguments, o=null, i, j, d;
-    for (i=0; i<a.length; i=i+1) {
-        d=a[i].split(".");
-        o=YAHOO;
-
-        // YAHOO is implied, so it is ignored if it is included
-        for (j=(d[0] == "YAHOO") ? 1 : 0; j<d.length; j=j+1) {
-            o[d[j]]=o[d[j]] || {};
-            o=o[d[j]];
-        }
-    }
-
-    return o;
-};
-
-/**
- * Uses YAHOO.widget.Logger to output a log message, if the widget is
- * available.
- *
- * @method log
- * @static
- * @param  {String}  msg  The message to log.
- * @param  {String}  cat  The log category for the message.  Default
- *                        categories are "info", "warn", "error", time".
- *                        Custom categories can be used as well. (opt)
- * @param  {String}  src  The source of the the message (opt)
- * @return {Boolean}      True if the log operation was successful.
- */
-YAHOO.log = function(msg, cat, src) {
-    var l=YAHOO.widget.Logger;
-    if(l && l.log) {
-        return l.log(msg, cat, src);
-    } else {
-        return false;
-    }
-};
-
-/**
- * Registers a module with the YAHOO object
- * @method register
- * @static
- * @param {String}   name    the name of the module (event, slider, etc)
- * @param {Function} mainClass a reference to class in the module.  This
- *                             class will be tagged with the version info
- *                             so that it will be possible to identify the
- *                             version that is in use when multiple versions
- *                             have loaded
- * @param {Object}   data      metadata object for the module.  Currently it
- *                             is expected to contain a "version" property
- *                             and a "build" property at minimum.
- */
-YAHOO.register = function(name, mainClass, data) {
-    var mods = YAHOO.env.modules;
-    if (!mods[name]) {
-        mods[name] = { versions:[], builds:[] };
-    }
-    var m=mods[name],v=data.version,b=data.build,ls=YAHOO.env.listeners;
-    m.name = name;
-    m.version = v;
-    m.build = b;
-    m.versions.push(v);
-    m.builds.push(b);
-    m.mainClass = mainClass;
-    // fire the module load listeners
-    for (var i=0;i<ls.length;i=i+1) {
-        ls[i](m);
-    }
-    // label the main class
-    if (mainClass) {
-        mainClass.VERSION = v;
-        mainClass.BUILD = b;
-    } else {
-        YAHOO.log("mainClass is undefined for module " + name, "warn");
-    }
-};
-
-/**
- * YAHOO.env is used to keep track of what is known about the YUI library and
- * the browsing environment
- * @class YAHOO.env
- * @static
- */
-YAHOO.env = YAHOO.env || {
-
-    /**
-     * Keeps the version info for all YUI modules that have reported themselves
-     * @property modules
-     * @type Object[]
-     */
-    modules: [],
-    
-    /**
-     * List of functions that should be executed every time a YUI module
-     * reports itself.
-     * @property listeners
-     * @type Function[]
-     */
-    listeners: []
-};
-
-/**
- * Returns the version data for the specified module:
- *      <dl>
- *      <dt>name:</dt>      <dd>The name of the module</dd>
- *      <dt>version:</dt>   <dd>The version in use</dd>
- *      <dt>build:</dt>     <dd>The build number in use</dd>
- *      <dt>versions:</dt>  <dd>All versions that were registered</dd>
- *      <dt>builds:</dt>    <dd>All builds that were registered.</dd>
- *      <dt>mainClass:</dt> <dd>An object that was was stamped with the
- *                 current version and build. If 
- *                 mainClass.VERSION != version or mainClass.BUILD != build,
- *                 multiple versions of pieces of the library have been
- *                 loaded, potentially causing issues.</dd>
- *       </dl>
- *
- * @method getVersion
- * @static
- * @param {String}  name the name of the module (event, slider, etc)
- * @return {Object} The version info
- */
-YAHOO.env.getVersion = function(name) {
-    return YAHOO.env.modules[name] || null;
-};
-
-/**
- * Do not fork for a browser if it can be avoided.  Use feature detection when
- * you can.  Use the user agent as a last resort.  YAHOO.env.ua stores a version
- * number for the browser engine, 0 otherwise.  This value may or may not map
- * to the version number of the browser using the engine.  The value is 
- * presented as a float so that it can easily be used for boolean evaluation 
- * as well as for looking for a particular range of versions.  Because of this, 
- * some of the granularity of the version info may be lost (e.g., Gecko 1.8.0.9 
- * reports 1.8).
- * @class YAHOO.env.ua
- * @static
- */
-YAHOO.env.ua = function() {
-    var o={
-
-        /**
-         * Internet Explorer version number or 0.  Example: 6
-         * @property ie
-         * @type float
-         */
-        ie:0,
-
-        /**
-         * Opera version number or 0.  Example: 9.2
-         * @property opera
-         * @type float
-         */
-        opera:0,
-
-        /**
-         * Gecko engine revision number.  Will evaluate to 1 if Gecko 
-         * is detected but the revision could not be found. Other browsers
-         * will be 0.  Example: 1.8
-         * <pre>
-         * Firefox 1.0.0.4: 1.7.8   <-- Reports 1.7
-         * Firefox 1.5.0.9: 1.8.0.9 <-- Reports 1.8
-         * Firefox 2.0.0.3: 1.8.1.3 <-- Reports 1.8
-         * Firefox 3 alpha: 1.9a4   <-- Reports 1.9
-         * </pre>
-         * @property gecko
-         * @type float
-         */
-        gecko:0,
-
-        /**
-         * AppleWebKit version.  KHTML browsers that are not WebKit browsers 
-         * will evaluate to 1, other browsers 0.  Example: 418.9.1
-         * <pre>
-         * Safari 1.3.2 (312.6): 312.8.1 <-- Reports 312.8 -- currently the 
-         *                                   latest available for Mac OSX 10.3.
-         * Safari 2.0.2:         416     <-- hasOwnProperty introduced
-         * Safari 2.0.4:         418     <-- preventDefault fixed
-         * Safari 2.0.4 (419.3): 418.9.1 <-- One version of Safari may run
-         *                                   different versions of webkit
-         * Safari 2.0.4 (419.3): 419     <-- Current Safari release
-         * Webkit 212 nightly:   522+    <-- Safari 3.0 (with native SVG) should
-         *                                   be higher than this
-         *                                   
-         * </pre>
-         * http://developer.apple.com/internet/safari/uamatrix.html
-         * @property webkit
-         * @type float
-         */
-        webkit:0
-    };
-
-    var ua=navigator.userAgent, m;
-
-    // Modern KHTML browsers should qualify as Safari X-Grade
-    if ((/KHTML/).test(ua)) {
-        o.webkit=1;
-    }
-    // Modern WebKit browsers are at least X-Grade
-    m=ua.match(/AppleWebKit\/([^\s]*)/);
-    if (m&&m[1]) {
-        o.webkit=parseFloat(m[1]);
-    }
-
-    if (!o.webkit) { // not webkit
-        // @todo check Opera/8.01 (J2ME/MIDP; Opera Mini/2.0.4509/1316; fi; U; ssr)
-        m=ua.match(/Opera[\s\/]([^\s]*)/);
-        if (m&&m[1]) {
-            o.opera=parseFloat(m[1]);
-        } else { // not opera or webkit
-            m=ua.match(/MSIE\s([^;]*)/);
-            if (m&&m[1]) {
-                o.ie=parseFloat(m[1]);
-            } else { // not opera, webkit, or ie
-                m=ua.match(/Gecko\/([^\s]*)/);
-                if (m) {
-                    o.gecko=1; // Gecko detected, look for revision
-                    m=ua.match(/rv:([^\s\)]*)/);
-                    if (m&&m[1]) {
-                        o.gecko=parseFloat(m[1]);
-                    }
-                }
-            }
-        }
-    }
-    
-    return o;
-}();
-
-/*
- * Initializes the global by creating the default namespaces and applying
- * any new configuration information that is detected.  This is the setup
- * for env.
- * @method init
- * @static
- * @private
- */
-(function() {
-    YAHOO.namespace("util", "widget", "example");
-    if ("undefined" !== typeof YAHOO_config) {
-        var l=YAHOO_config.listener,ls=YAHOO.env.listeners,unique=true,i;
-        if (l) {
-            // if YAHOO is loaded multiple times we need to check to see if
-            // this is a new config object.  If it is, add the new component
-            // load listener to the stack
-            for (i=0;i<ls.length;i=i+1) {
-                if (ls[i]==l) {
-                    unique=false;
-                    break;
-                }
-            }
-            if (unique) {
-                ls.push(l);
-            }
-        }
-    }
-})();
-/**
- * Provides the language utilites and extensions used by the library
- * @class YAHOO.lang
- */
-YAHOO.lang = {
-    /**
-     * Determines whether or not the provided object is an array.
-     * Testing typeof/instanceof/constructor of arrays across frame 
-     * boundaries isn't possible in Safari unless you have a reference
-     * to the other frame to test against its Array prototype.  To
-     * handle this case, we test well-known array properties instead.
-     * properties.
-     * @method isArray
-     * @param {any} o The object being testing
-     * @return Boolean
-     */
-    isArray: function(o) { 
-
-        if (o) {
-           var l = YAHOO.lang;
-           return l.isNumber(o.length) && l.isFunction(o.splice) && 
-                  !l.hasOwnProperty(o.length);
-        }
-        return false;
-    },
-
-    /**
-     * Determines whether or not the provided object is a boolean
-     * @method isBoolean
-     * @param {any} o The object being testing
-     * @return Boolean
-     */
-    isBoolean: function(o) {
-        return typeof o === 'boolean';
-    },
-    
-    /**
-     * Determines whether or not the provided object is a function
-     * @method isFunction
-     * @param {any} o The object being testing
-     * @return Boolean
-     */
-    isFunction: function(o) {
-        return typeof o === 'function';
-    },
-        
-    /**
-     * Determines whether or not the provided object is null
-     * @method isNull
-     * @param {any} o The object being testing
-     * @return Boolean
-     */
-    isNull: function(o) {
-        return o === null;
-    },
-        
-    /**
-     * Determines whether or not the provided object is a legal number
-     * @method isNumber
-     * @param {any} o The object being testing
-     * @return Boolean
-     */
-    isNumber: function(o) {
-        return typeof o === 'number' && isFinite(o);
-    },
-      
-    /**
-     * Determines whether or not the provided object is of type object
-     * or function
-     * @method isObject
-     * @param {any} o The object being testing
-     * @return Boolean
-     */  
-    isObject: function(o) {
-return (o && (typeof o === 'object' || YAHOO.lang.isFunction(o))) || false;
-    },
-        
-    /**
-     * Determines whether or not the provided object is a string
-     * @method isString
-     * @param {any} o The object being testing
-     * @return Boolean
-     */
-    isString: function(o) {
-        return typeof o === 'string';
-    },
-        
-    /**
-     * Determines whether or not the provided object is undefined
-     * @method isUndefined
-     * @param {any} o The object being testing
-     * @return Boolean
-     */
-    isUndefined: function(o) {
-        return typeof o === 'undefined';
-    },
-    
-    /**
-     * Determines whether or not the property was added
-     * to the object instance.  Returns false if the property is not present
-     * in the object, or was inherited from the prototype.
-     * This abstraction is provided to enable hasOwnProperty for Safari 1.3.x.
-     * There is a discrepancy between YAHOO.lang.hasOwnProperty and
-     * Object.prototype.hasOwnProperty when the property is a primitive added to
-     * both the instance AND prototype with the same value:
-     * <pre>
-     * var A = function() {};
-     * A.prototype.foo = 'foo';
-     * var a = new A();
-     * a.foo = 'foo';
-     * alert(a.hasOwnProperty('foo')); // true
-     * alert(YAHOO.lang.hasOwnProperty(a, 'foo')); // false when using fallback
-     * </pre>
-     * @method hasOwnProperty
-     * @param {any} o The object being testing
-     * @return Boolean
-     */
-    hasOwnProperty: function(o, prop) {
-        if (Object.prototype.hasOwnProperty) {
-            return o.hasOwnProperty(prop);
-        }
-        
-        return !YAHOO.lang.isUndefined(o[prop]) && 
-                o.constructor.prototype[prop] !== o[prop];
-    },
- 
-    /**
-     * IE will not enumerate native functions in a derived object even if the
-     * function was overridden.  This is a workaround for specific functions 
-     * we care about on the Object prototype. 
-     * @property _IEEnumFix
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @static
-     * @private
-     */
-    _IEEnumFix: function(r, s) {
-        if (YAHOO.env.ua.ie) {
-            var add=["toString", "valueOf"], i;
-            for (i=0;i<add.length;i=i+1) {
-                var fname=add[i],f=s[fname];
-                if (YAHOO.lang.isFunction(f) && f!=Object.prototype[fname]) {
-                    r[fname]=f;
-                }
-            }
-        }
-    },
-       
-    /**
-     * Utility to set up the prototype, constructor and superclass properties to
-     * support an inheritance strategy that can chain constructors and methods.
-     * Static members will not be inherited.
-     *
-     * @method extend
-     * @static
-     * @param {Function} subc   the object to modify
-     * @param {Function} superc the object to inherit
-     * @param {Object} overrides  additional properties/methods to add to the
-     *                              subclass prototype.  These will override the
-     *                              matching items obtained from the superclass 
-     *                              if present.
-     */
-    extend: function(subc, superc, overrides) {
-        if (!superc||!subc) {
-            throw new Error("YAHOO.lang.extend failed, please check that " +
-                            "all dependencies are included.");
-        }
-        var F = function() {};
-        F.prototype=superc.prototype;
-        subc.prototype=new F();
-        subc.prototype.constructor=subc;
-        subc.superclass=superc.prototype;
-        if (superc.prototype.constructor == Object.prototype.constructor) {
-            superc.prototype.constructor=superc;
-        }
-    
-        if (overrides) {
-            for (var i in overrides) {
-                subc.prototype[i]=overrides[i];
-            }
-
-            YAHOO.lang._IEEnumFix(subc.prototype, overrides);
-        }
-    },
-   
-    /**
-     * Applies all properties in the supplier to the receiver if the
-     * receiver does not have these properties yet.  Optionally, one or 
-     * more methods/properties can be specified (as additional 
-     * parameters).  This option will overwrite the property if receiver 
-     * has it already.  If true is passed as the third parameter, all 
-     * properties will be applied and _will_ overwrite properties in 
-     * the receiver.
-     *
-     * @method augmentObject
-     * @static
-     * @since 2.3.0
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @param {String*|boolean}  arguments zero or more properties methods 
-     *        to augment the receiver with.  If none specified, everything
-     *        in the supplier will be used unless it would
-     *        overwrite an existing property in the receiver. If true
-     *        is specified as the third parameter, all properties will
-     *        be applied and will overwrite an existing property in
-     *        the receiver
-     */
-    augmentObject: function(r, s) {
-        if (!s||!r) {
-            throw new Error("Absorb failed, verify dependencies.");
-        }
-        var a=arguments, i, p, override=a[2];
-        if (override && override!==true) { // only absorb the specified properties
-            for (i=2; i<a.length; i=i+1) {
-                r[a[i]] = s[a[i]];
-            }
-        } else { // take everything, overwriting only if the third parameter is true
-            for (p in s) { 
-                if (override || !r[p]) {
-                    r[p] = s[p];
-                }
-            }
-            
-            YAHOO.lang._IEEnumFix(r, s);
-        }
-    },
- 
-    /**
-     * Same as YAHOO.lang.augmentObject, except it only applies prototype properties
-     * @see YAHOO.lang.augmentObject
-     * @method augmentProto
-     * @static
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @param {String*|boolean}  arguments zero or more properties methods 
-     *        to augment the receiver with.  If none specified, everything 
-     *        in the supplier will be used unless it would overwrite an existing 
-     *        property in the receiver.  if true is specified as the third 
-     *        parameter, all properties will be applied and will overwrite an 
-     *        existing property in the receiver
-     */
-    augmentProto: function(r, s) {
-        if (!s||!r) {
-            throw new Error("Augment failed, verify dependencies.");
-        }
-        //var a=[].concat(arguments);
-        var a=[r.prototype,s.prototype];
-        for (var i=2;i<arguments.length;i=i+1) {
-            a.push(arguments[i]);
-        }
-        YAHOO.lang.augmentObject.apply(this, a);
-    },
-
-      
-    /**
-     * Returns a simple string representation of the object or array.
-     * Other types of objects will be returned unprocessed.  Arrays
-     * are expected to be indexed.  Use object notation for
-     * associative arrays.
-     * @method dump
-     * @since 2.3.0
-     * @param o {Object} The object to dump
-     * @param d {int} How deep to recurse child objects, default 3
-     * @return {String} the dump result
-     */
-    dump: function(o, d) {
-        var l=YAHOO.lang,i,len,s=[],OBJ="{...}",FUN="f(){...}",
-            COMMA=', ', ARROW=' => ';
-
-        // Cast non-objects to string
-        // Skip dates because the std toString is what we want
-        // Skip HTMLElement-like objects because trying to dump 
-        // an element will cause an unhandled exception in FF 2.x
-        if (!l.isObject(o)) {
-            return o + "";
-        } else if (o instanceof Date || ("nodeType" in o && "tagName" in o)) {
-            return o;
-        } else if  (l.isFunction(o)) {
-            return FUN;
-        }
-
-        // dig into child objects the depth specifed. Default 3
-        d = (l.isNumber(d)) ? d : 3;
-
-        // arrays [1, 2, 3]
-        if (l.isArray(o)) {
-            s.push("[");
-            for (i=0,len=o.length;i<len;i=i+1) {
-                if (l.isObject(o[i])) {
-                    s.push((d > 0) ? l.dump(o[i], d-1) : OBJ);
-                } else {
-                    s.push(o[i]);
-                }
-                s.push(COMMA);
-            }
-            if (s.length > 1) {
-                s.pop();
-            }
-            s.push("]");
-        // objects {k1 => v1, k2 => v2}
-        } else {
-            s.push("{");
-            for (i in o) {
-                if (l.hasOwnProperty(o, i)) {
-                    s.push(i + ARROW);
-                    if (l.isObject(o[i])) {
-                        s.push((d > 0) ? l.dump(o[i], d-1) : OBJ);
-                    } else {
-                        s.push(o[i]);
-                    }
-                    s.push(COMMA);
-                }
-            }
-            if (s.length > 1) {
-                s.pop();
-            }
-            s.push("}");
-        }
-
-        return s.join("");
-    },
-
-    /**
-     * Does variable substitution on a string. It scans through the string 
-     * looking for expressions enclosed in { } braces. If an expression 
-     * is found, it is used a key on the object.  If there is a space in
-     * the key, the first word is used for the key and the rest is provided
-     * to an optional function to be used to programatically determine the
-     * value (the extra information might be used for this decision). If 
-     * the value for the key in the object, or what is returned from the
-     * function has a string value, number value, or object value, it is 
-     * substituted for the bracket expression and it repeats.  If this
-     * value is an object, it uses the Object's toString() if this has
-     * been overridden, otherwise it does a shallow dump of the key/value
-     * pairs.
-     * @method substitute
-     * @since 2.3.0
-     * @param s {String} The string that will be modified.
-     * @param o {Object} An object containing the replacement values
-     * @param f {Function} An optional function that can be used to
-     *                     process each match.  It receives the key,
-     *                     value, and any extra metadata included with
-     *                     the key inside of the braces.
-     * @return {String} the substituted string
-     */
-    substitute: function (s, o, f) {
-        var i, j, k, key, v, meta, l=YAHOO.lang, saved=[], token, 
-            DUMP='dump', SPACE=' ', LBRACE='{', RBRACE='}';
-
-
-        for (;;) {
-            i = s.lastIndexOf(LBRACE);
-            if (i < 0) {
-                break;
-            }
-            j = s.indexOf(RBRACE, i);
-            if (i + 1 >= j) {
-                break;
-            }
-
-            //Extract key and meta info 
-            token = s.substring(i + 1, j);
-            key = token;
-            meta = null;
-            k = key.indexOf(SPACE);
-            if (k > -1) {
-                meta = key.substring(k + 1);
-                key = key.substring(0, k);
-            }
-
-            // lookup the value
-            v = o[key];
-
-            // if a substitution function was provided, execute it
-            if (f) {
-                v = f(key, v, meta);
-            }
-
-            if (l.isObject(v)) {
-                if (l.isArray(v)) {
-                    v = l.dump(v, parseInt(meta, 10));
-                } else {
-                    meta = meta || "";
-
-                    // look for the keyword 'dump', if found force obj dump
-                    var dump = meta.indexOf(DUMP);
-                    if (dump > -1) {
-                        meta = meta.substring(4);
-                    }
-
-                    // use the toString if it is not the Object toString 
-                    // and the 'dump' meta info was not found
-                    if (v.toString===Object.prototype.toString||dump>-1) {
-                        v = l.dump(v, parseInt(meta, 10));
-                    } else {
-                        v = v.toString();
-                    }
-                }
-            } else if (!l.isString(v) && !l.isNumber(v)) {
-                // This {block} has no replace string. Save it for later.
-                v = "~-" + saved.length + "-~";
-                saved[saved.length] = token;
-
-                // break;
-            }
-
-            s = s.substring(0, i) + v + s.substring(j + 1);
-
-
-        }
-
-        // restore saved {block}s
-        for (i=saved.length-1; i>=0; i=i-1) {
-            s = s.replace(new RegExp("~-" + i + "-~"), "{"  + saved[i] + "}", "g");
-        }
-
-        return s;
-    },
-
-
-    /**
-     * Returns a string without any leading or trailing whitespace.  If 
-     * the input is not a string, the input will be returned untouched.
-     * @method trim
-     * @since 2.3.0
-     * @param s {string} the string to trim
-     * @return {string} the trimmed string
-     */
-    trim: function(s){
-        try {
-            return s.replace(/^\s+|\s+$/g, "");
-        } catch(e) {
-            return s;
-        }
-    },
-
-    /**
-     * Returns a new object containing all of the properties of
-     * all the supplied objects.  The properties from later objects
-     * will overwrite those in earlier objects.
-     * @method merge
-     * @since 2.3.0
-     * @param arguments {Object*} the objects to merge
-     * @return the new merged object
-     */
-    merge: function() {
-        var o={}, a=arguments, i;
-        for (i=0; i<a.length; i=i+1) {
-            YAHOO.lang.augmentObject(o, a[i], true);
-            /*
-            for (var j in a[i]) {
-                o[j] = a[i][j];
-            }
-            */
-        }
-        return o;
-    },
-
-    /**
-     * A convenience method for detecting a legitimate non-null value.
-     * Returns false for null/undefined/NaN, true for other values, 
-     * including 0/false/''
-     * @method isValue
-     * @since 2.3.0
-     * @param o {any} the item to test
-     * @return {boolean} true if it is not null/undefined/NaN || false
-     */
-    isValue: function(o) {
-        // return (o || o === false || o === 0 || o === ''); // Infinity fails
-        var l = YAHOO.lang;
-return (l.isObject(o) || l.isString(o) || l.isNumber(o) || l.isBoolean(o));
-    }
-
-};
-
-/*
- * An alias for <a href="YAHOO.lang.html">YAHOO.lang</a>
- * @class YAHOO.util.Lang
- */
-YAHOO.util.Lang = YAHOO.lang;
- 
-/**
- * Same as YAHOO.lang.augmentObject, except it only applies prototype 
- * properties.  This is an alias for augmentProto.
- * @see YAHOO.lang.augmentObject
- * @method augment
- * @static
- * @param {Function} r  the object to receive the augmentation
- * @param {Function} s  the object that supplies the properties to augment
- * @param {String*|boolean}  arguments zero or more properties methods to 
- *        augment the receiver with.  If none specified, everything
- *        in the supplier will be used unless it would
- *        overwrite an existing property in the receiver.  if true
- *        is specified as the third parameter, all properties will
- *        be applied and will overwrite an existing property in
- *        the receiver
- */
-YAHOO.lang.augment = YAHOO.lang.augmentProto;
-
-/**
- * An alias for <a href="YAHOO.lang.html#augment">YAHOO.lang.augment</a>
- * @for YAHOO
- * @method augment
- * @static
- * @param {Function} r  the object to receive the augmentation
- * @param {Function} s  the object that supplies the properties to augment
- * @param {String*}  arguments zero or more properties methods to 
- *        augment the receiver with.  If none specified, everything
- *        in the supplier will be used unless it would
- *        overwrite an existing property in the receiver
- */
-YAHOO.augment = YAHOO.lang.augmentProto;
-       
-/**
- * An alias for <a href="YAHOO.lang.html#extend">YAHOO.lang.extend</a>
- * @method extend
- * @static
- * @param {Function} subc   the object to modify
- * @param {Function} superc the object to inherit
- * @param {Object} overrides  additional properties/methods to add to the
- *        subclass prototype.  These will override the
- *        matching items obtained from the superclass if present.
- */
-YAHOO.extend = YAHOO.lang.extend;
-
-YAHOO.register("yahoo", YAHOO, {version: "2.3.1", build: "541"});
diff --git a/eclipse.org-common/yui/2.6.0/assets/YUIexamples.js b/eclipse.org-common/yui/2.6.0/assets/YUIexamples.js
deleted file mode 100644
index 8ee8917..0000000
--- a/eclipse.org-common/yui/2.6.0/assets/YUIexamples.js
+++ /dev/null
@@ -1,32 +0,0 @@
-//Create namespace:
-YAHOO.namespace("yui.examples");
-
-//Only instantiate logger stuff if the page has loaded in logger mode:
-if((YAHOO.widget.LogReader)&&(YAHOO.util.Dom.get("loggerDiv"))) {
-	//Create Logger instance for example page:
-	YAHOO.yui.examples.exampleLogger = new YAHOO.widget.LogReader("loggerDiv");
-	
-	//Logger comes up a bit more cleanly if its container has an approximate
-	//height and is visibility:hidden intil after init;
-	YAHOO.yui.examples.loggerInit = function() {
-		YAHOO.util.Dom.setStyle("loggerDiv", "height", "auto");
-		YAHOO.util.Dom.setStyle("loggerDiv", "visibility", "visible");
-	}
-	YAHOO.util.Event.onDOMReady(YAHOO.yui.examples.loggerInit);
-}
-
-//instantiate buttons:
-YAHOO.yui.examples.onLinkButtonsMarkupReady = function() {
-	//if the logger is in use, enable its button:
-	if (YAHOO.util.Dom.get("loggerLink")) {
-		var loggerButton = new YAHOO.widget.Button("loggerLink");
-	}
-	
-	//if a new window button is present, initialize it:
-	if (YAHOO.util.Dom.get("newWindowLink")) {
-		var newWindowButton = new YAHOO.widget.Button("newWindowLink");
-	}
-}
-//wait until loggerDiv is present; the window buttons will have loaded
-//by then as well:
-YAHOO.util.Event.onDOMReady(YAHOO.yui.examples.onLinkButtonsMarkupReady);
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/assets/bg_hd.gif b/eclipse.org-common/yui/2.6.0/assets/bg_hd.gif
deleted file mode 100644
index c10acba..0000000
--- a/eclipse.org-common/yui/2.6.0/assets/bg_hd.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/assets/dpSyntaxHighlighter.css b/eclipse.org-common/yui/2.6.0/assets/dpSyntaxHighlighter.css
deleted file mode 100644
index 5fcbdf3..0000000
--- a/eclipse.org-common/yui/2.6.0/assets/dpSyntaxHighlighter.css
+++ /dev/null
@@ -1,190 +0,0 @@
-/* Give syntax-highlighting textareas some height for unsupported browsers */
-
-textarea.JScript, textarea.HTML, textarea.XML {height:10em;}
-
-/* Main style for the table */
-
-.dp-highlighter {
-	width: 100%;
-	overflow: auto;
-	line-height: 100% !important;
-	margin:0 0 1em 0;
-}
-
-.dp-highlighter table {
-	width:99% !important;
-	margin: 2px 0px 2px 0px !important;
-	border-collapse: collapse;
-	border-bottom: 2px solid #eee;
-	background-color: #fff;
-}
-
-.dp-highlighter tbody.hide { display: none; }
-.dp-highlighter tbody.show { display: table-row-group; _display: block; }
-
-.dp-highlighter td 
-{
-	font-family: Courier New;
-	font-size: 11px;
-}
-
-/* Styles for the tools */
-
-.dp-highlighter .tools-corner {
-	background-color: #eee;
-	font-size: 9px;
-}
-
-.dp-highlighter .tools {
-	background-color: #eee;
-	padding: 3px 8px 3px 10px;
-	border-bottom: 1px solid gray;
-	font: 9px Verdana, Geneva, Arial, Helvetica, sans-serif;
-	color: silver;
-}
-
-.dp-highlighter .tools-corner {
-	background-color: #eee;
-}
-
-.dp-highlighter .tools a {
-	font-size: 9px;
-	color: gray;
-	text-decoration: none;
-}
-
-.dp-highlighter .tools a:hover {
-	color: red;
-	text-decoration: underline;
-}
-
-/* Gutter with line number */
-
-.dp-highlighter .gutter {
-	padding-right: 5px; 
-	padding-left: 10px; 
-	width: 5px;
-	background-color: #eee; 
-	border-right: 1px solid gray; 
-	color: gray;
-	text-align: right;
-	vertical-align: top;
-}
-
-/* Single line style */
-
-.dp-highlighter .line1, .line2 {
-	padding-left: 10px;
-	/*border-bottom: 1px solid #F7F7F7;*/
-	white-space:nowrap;
-}
-
-.dp-highlighter .line2 {
-	/*background-color: #F7F7F7;*/
-}
-
-/* About dialog styles */
-
-.dp-about {
-	background-color: #fff;
-	margin: 0px;
-}
-
-.dp-about table {
-	width: 100%;
-	height: 100%;
-	font-size: 11px;
-	font-family: Tahoma, Verdana, Arial, sans-serif !important;
-}
-
-.dp-about td {
-	padding: 10px;
-	vertical-align: top;
-}
-
-.dp-about .copy {
-	border-bottom: 1px solid #ACA899;
-	height: 95%;
-}
-
-.dp-about .title {
-	color: red;
-	font-weight: bold;
-}
-
-.dp-about .para {
-	margin-bottom: 4px;
-}
-
-.dp-about .footer {
-	background-color: #ECEADB;
-	border-top: 1px solid #fff;
-	text-align: right;
-}
-
-.dp-about .close {
-	font-size: 11px;
-	font-family: Tahoma, Verdana, Arial, sans-serif !important;
-	background-color: #ECEADB;
-	width: 60px;
-	height: 22px;
-}
-
-/* Language specific styles */
-
-.dp-c {}
-.dp-c .comment { color: green; }
-.dp-c .string { color: blue; }
-.dp-c .preprocessor { color: gray; }
-.dp-c .keyword { color: blue; }
-.dp-c .vars { color: #d00; }
-/*
-.dp-vb {}
-.dp-vb .comment { color: green; }
-.dp-vb .string { color: blue; }
-.dp-vb .preprocessor { color: gray; }
-.dp-vb .keyword { color: blue; }
-
-.dp-sql {}
-.dp-sql .comment { color: green; }
-.dp-sql .string { color: red; }
-.dp-sql .keyword { color: blue; }
-.dp-sql .func { color: #ff1493; }
-.dp-sql .op { color: #808080; }
-*/
-.dp-xml {}
-.dp-xml .cdata { color: #ff1493; }
-.dp-xml .comments { color: green; }
-.dp-xml .tag { color: blue; }
-.dp-xml .tag-name { color: black; font-weight: bold; }
-.dp-xml .attribute { color: red; }
-.dp-xml .attribute-value { color: blue; }
-/*
-.dp-delphi {}
-.dp-delphi .comment { color: #008200; font-style: italic; }
-.dp-delphi .string { color: blue; }
-.dp-delphi .number { color: blue; }
-.dp-delphi .directive { color: #008284; }
-.dp-delphi .keyword { font-weight: bold; color: navy; }
-.dp-delphi .vars { color: #000; }
-
-.dp-py {}
-.dp-py .comment { color: green; }
-.dp-py .string { color: red; }
-.dp-py .docstring { color: brown; }
-.dp-py .keyword { color: blue; font-weight: bold;}
-.dp-py .builtins { color: #ff1493; }
-.dp-py .magicmethods { color: #808080; }
-.dp-py .exceptions { color: brown; }
-.dp-py .types { color: brown; font-style: italic; }
-.dp-py .commonlibs { color: #8A2BE2; font-style: italic; }*/
-
-
-.dp-css .keyword { color: red; }
-.dp-css .value { color: #ff1493; }
-.dp-css .comment { color: green; }
-.dp-css .string { color: blue; }
-.dp-css .preprocessor { color: gray; }
-.dp-css .keyword { color: blue; }
-.dp-css .vars { color: #d00; }
-.dp-css .colors { font-weight: bold; }
diff --git a/eclipse.org-common/yui/2.6.0/assets/dpSyntaxHighlighter.js b/eclipse.org-common/yui/2.6.0/assets/dpSyntaxHighlighter.js
deleted file mode 100644
index 66b0773..0000000
--- a/eclipse.org-common/yui/2.6.0/assets/dpSyntaxHighlighter.js
+++ /dev/null
@@ -1 +0,0 @@
-// dpSyntaxHighlighter.js has been removed due to Eclipse IP cleanliness policy 
diff --git a/eclipse.org-common/yui/2.6.0/assets/example-hd-bg.gif b/eclipse.org-common/yui/2.6.0/assets/example-hd-bg.gif
deleted file mode 100644
index 6ae7b4a..0000000
--- a/eclipse.org-common/yui/2.6.0/assets/example-hd-bg.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/assets/title_h_bg.gif b/eclipse.org-common/yui/2.6.0/assets/title_h_bg.gif
deleted file mode 100644
index 1378700..0000000
--- a/eclipse.org-common/yui/2.6.0/assets/title_h_bg.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/assets/yui-candy.jpg b/eclipse.org-common/yui/2.6.0/assets/yui-candy.jpg
deleted file mode 100644
index 6c61b95..0000000
--- a/eclipse.org-common/yui/2.6.0/assets/yui-candy.jpg
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/assets/yui.css b/eclipse.org-common/yui/2.6.0/assets/yui.css
deleted file mode 100644
index a727254..0000000
--- a/eclipse.org-common/yui/2.6.0/assets/yui.css
+++ /dev/null
@@ -1,322 +0,0 @@
-/*
-Copyright (c) 2007, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.4.0
-*/
-html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym {border:0;font-variant:normal;}sup {vertical-align:text-top;}sub {vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}legend{color:#000;}
-
-body {font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;}
-
-body{text-align:center;}#ft{clear:both;}#doc,#doc2,#doc3,#doc4,.yui-t1,.yui-t2,.yui-t3,.yui-t4,.yui-t5,.yui-t6,.yui-t7{margin:auto;text-align:left;width:57.69em;*width:56.301em;min-width:750px;}#doc2{width:73.074em;*width:71.313em;}#doc3{margin:auto 10px;width:auto;}#doc4{width:74.923em;*width:73.117em;}.yui-b{position:relative;}.yui-b{_position:static;}#yui-main .yui-b{position:static;}#yui-main{width:100%;}.yui-t1 #yui-main,.yui-t2 #yui-main,.yui-t3 #yui-main{float:right;margin-left:-25em;}.yui-t4 #yui-main,.yui-t5 #yui-main,.yui-t6 #yui-main{float:left;margin-right:-25em;}.yui-t1 .yui-b{float:left;width:12.3207em;*width:12.0106em;}.yui-t1 #yui-main .yui-b{margin-left:13.3207em;*margin-left:13.0106em;}.yui-t2 .yui-b{float:left;width:13.8456em;*width:13.512em;}.yui-t2 #yui-main .yui-b{margin-left:14.8456em;*margin-left:14.512em;}.yui-t3 .yui-b{float:left;width:23.0759em;*width:22.52em;}.yui-t3 #yui-main .yui-b{margin-left:24.0759em;*margin-left:23.52em;}.yui-t4 .yui-b{float:right;width:13.8456em;*width:13.512em;}.yui-t4 #yui-main .yui-b{margin-right:14.8456em;*margin-right:14.512em;}.yui-t5 .yui-b{float:right;width:18.4608em;*width:18.016em;}.yui-t5 #yui-main .yui-b{margin-right:19.4608em;*margin-right:19.016em;}.yui-t6 .yui-b{float:right;width:23.0759em;*width:22.52em;}.yui-t6 #yui-main .yui-b{margin-right:24.0759em;*margin-right:23.52em;}.yui-t7 #yui-main .yui-b{display:block;margin:0 0 1em 0;}#yui-main .yui-b{float:none;width:auto;}.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gb .yui-u,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{float:left;margin-left:2%;width:32%;}.yui-gb .yui-gb .yui-u,.yui-gb .yui-gc .yui-u{*margin-left:1.8%;_margin-left:4%;}.yui-g .yui-gb .yui-u{_margin-left:.8%;}.yui-gb .yui-u{float:right;}.yui-gb div.first{margin-left:0;float:left;}.yui-g .yui-gb div.first,.yui-gb .yui-gb div.first{*margin-right:0;*width:32%;_width:31.7%;}.yui-gb .yui-gc div.first,.yui-gb .yui-gd div.first{*margin-right:0;}.yui-gb .yui-gd .yui-u{*width:66%;_width:61.2%;}.yui-gb .yui-gd div.first{*width:31%;_width:29.5%;}.yui-g .yui-gc .yui-u,.yui-gb .yui-gc .yui-u{width:32%;_float:right;margin-right:0;_margin-left:0;}.yui-gb .yui-gc div.first{width:66%;*float:left;*margin-left:0;}.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf .yui-u{margin:0;}.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf,.yui-gc .yui-u,.yui-gd .yui-g,.yui-g .yui-gc .yui-u,.yui-ge .yui-u,.yui-ge .yui-g,.yui-gf .yui-g,.yui-gf .yui-u{float:right;}.yui-g .yui-gc div.first,.yui-g .yui-ge div.first,.yui-g div.first,.yui-gc div.first,.yui-gc div.first div.first,.yui-gd div.first,.yui-ge div.first,.yui-gf div.first{float:left;}.yui-g .yui-g .yui-u,.yui-gb .yui-g .yui-u,.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u,.yui-ge .yui-g .yui-u,.yui-gf .yui-g .yui-u{width:49%;*width:48.1%;*margin-left:0;}.yui-g .yui-g div.first{*margin:0;}.yui-gb .yui-g div.first{*margin-right:4%;_margin-right:1.3%;}.yui-gb .yui-gb .yui-u{_margin-left:.7%;}.yui-gb .yui-g div.first,.yui-gb .yui-gb div.first{*margin-left:0;}.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u{*width:48.1%;*margin-left:0;}.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf{width:49.1%;}.yui-g .yui-gb div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first{margin-left:0;}.yui-g .yui-gc div.first,.yui-gc div.first,.yui-gd .yui-g,.yui-gd .yui-u{width:66%;}.yui-gd div.first,.yui-gb .yui-gd div.first{width:32%;}.yui-g .yui-gd div.first{_width:29.9%;}.yui-ge .yui-u,.yui-ge .yui-g,.yui-gf div.first{width:24%;}.yui-gb .yui-ge div.yui-u,.yui-gb .yui-gf div.yui-u{float:right;}.yui-gb .yui-ge div.first,.yui-gb .yui-gf div.first {float:left;}.yui-ge div.first,.yui-gf .yui-g,.yui-gf .yui-u{width:74.2%;}.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf div.first{*width:24%;_width:20%;}.yui-gb .yui-ge div.first,.yui-gb .yui-gf .yui-u{*width:73.5%;_width:65.5%;}#bd:after,.yui-g:after,.yui-gb:after,.yui-gc:after,.yui-gd:after,.yui-ge:after,.yui-gf:after{content:".";display:block;height:0;clear:both;visibility:hidden;}#bd,.yui-g,.yui-gb,.yui-gc,.yui-gd,.yui-ge,.yui-gf{zoom:1;}.yui-gb .yui-u{float:left;}
-
-blockquote,ul,ol,dl {
-	margin:1em;
-}
-ol,ul,dl {
-	margin-left:2em;
-}
-ol li {
-	list-style: decimal outside;	
-}
-ul li {
-	list-style: disc outside;
-}
-
-/*
-AutoComplete Control CSS:
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-ac{position:relative;font-family:arial;font-size:100%;}.yui-skin-sam .yui-ac-input{position:absolute;width:100%;}.yui-skin-sam .yui-ac-container{position:absolute;top:1.6em;width:100%;}.yui-skin-sam .yui-ac-content{position:absolute;width:100%;border:1px solid #808080;background:#fff;overflow:hidden;z-index:9050;}.yui-skin-sam .yui-ac-shadow{position:absolute;margin:.3em;width:100%;background:#000;-moz-opacity:0.10;opacity:.10;filter:alpha(opacity=10);z-index:9049;}.yui-skin-sam .yui-ac iframe{opacity:0;filter:alpha(opacity=0);padding-right:.3em;padding-bottom:.3em;}.yui-skin-sam .yui-ac-content ul{margin:0;padding:0;width:100%;}.yui-skin-sam .yui-ac-content li{margin:0;padding:2px 5px;cursor:default;white-space:nowrap;list-style:none;zoom:1;}.yui-skin-sam .yui-ac-content li.yui-ac-prehighlight{background:#B3D4FF;}.yui-skin-sam .yui-ac-content li.yui-ac-highlight{background:#426FD9;color:#FFF;}
-
-/*begin YDN/YUI styles*/
-#bd {padding-top:1em;}
-.yui-gb:after{clear:none;}
-#doc3 {min-width:950px;}
-h1, h2, h3, h4, h5, h6 {font-weight:bold; color:#E76300;}
-h1, h2, h3, h4, h5, h6, p {line-height:1.2em; font-size:100%; margin:1em 0 0 0;}
-h1.first-content, h2.first-content, h3.first-content {margin-top:0; padding-top:0; border:none;} /*if an h is the first thing on the page or in a section, it should be flush with the top border of its content area; otherwise, its content area should be padded to create space.*/
-p { margin-bottom:1em }
-h1 { font-size: 136%; padding:0; padding-top:18px}
-.wiki h1 { font-size: 120%; padding:0; margin-bottom:1em}
-h2 { font-size: 110%; margin-top:1.5em; margin-bottom:.2em; padding:1em 0 0 0; border-top:1px dashed #C3D2DC;}
-h2.first { border-top:none; margin-top:0; margin-bottom:.2em;}
-#doc3 h2.first { float:none; /*float specified to resolve conflict on generic float declaration for .first in grids*/}
-h4 {margin-top:1em; color: #000;}
-ul, ol, dl, dd {margin-left:30px;}
-dt { font-weight:bold; }
-ul, ol {margin-bottom:.7em;}
-ul {list-style:disc;}
-ol {list-style:decimal;}
-strong {font-weight:bold;}
-em {font-style:italic;}
-
-a, a code {color:#0000de;} 
-a:visited, a:visited code {color:#639;}
-a:active, a:active code {color: #f00;}
-
-h1 a { color:#E76300; }
-h1 a:visited {color:#E76300}
-
-#logo_pane { display: none; }
-
-#ygma { margin:.5em auto 1em auto; }
-
-#bd ol {}
-#bd ol li p { margin-left:0}
-#bd ol li ol {list-style:lower-alpha}
-#bd ol li ol li {margin-bottom:1em}
-#bd ol li ol li ol{list-style:lower-roman}
-#bd ol li ol li ol li {margin-bottom:1em}
-
-#bd p.errormessage {background:url(http://us.i1.yimg.com/us.yimg.com/i/us/search/gr/alertbubble.gif) 0 0 no-repeat; padding-left:30px; margin:2em 2em 2em 1em; font-weight:bold}
-
-/*formerly #bd targeting*/
-ul {margin-top:2px; }
-ul.topspace { margin-top:1em }
-ul li { margin:0 17px 0 7px; }
-ul li ul { margin-top:0em }
-ul.plain {margin-top: 0; list-style: none;}
-ul.plain ul {margin-top: 0; list-style: none;}
-ul.jump {list-style: none; margin-top: 1em;}
-ul.jump li {margin-top: .5em;}
-
-/*#bd table { margin:10px 17px; width:720px; }*/
-/*#bd th { background:#B6CDE1; padding:2px; color:#fff; vertical-align:top}
-#bd td { padding:2px; vertical-align:top}
-#bd td.even { background:red; }*/
-
-h2.classname { border-top:none; margin-top:0; margin-bottom:.2em; font-size: 130%; color:#000000}
-h3.breadcrumb { border-top:none; margin-top:0; margin-bottom:.2em; font-size: 80%; color:#000000}
-h3.methods { border-top:none; margin-top:0; margin-bottom:.2em; font-size: 100%; color:#000000}
-
-.screenshot {border:thin solid #999999; margin:8px;}
-
-#toc {background-color:#ecf5fa; padding:0; border:1px solid #89d }
-#toc ul {margin:0; padding:0;}
-#toc ul li {list-style:none; padding:0; margin:0;  font-size:85%; }
-#toc ul li.selected { font-weight:bold; color:#fff; background:#f82; padding:0; }
-#toc ul li.selected a { color:#fff; }
-#toc ul li a { display:block; padding:2px 2px 2px 10px; text-decoration:none; }
-#toc ul li a:hover { color:#fff; background:#e60; }
-#toc ul li em { display:none; }
-#toc ul li.sect { font-weight:bold; color:#fff; background:#89d; padding:2px 0; text-indent:2px; margin-top:2px;}
-#toc ul li.first {margin-top:0;}
-
-#ft {  margin-top:4em }
-#ft p { padding-bottom:2em; margin:0; text-align:center; font-size:80%; line-height:1.4em}
-#ft p.first { padding:1em 0 0 0; margin:0; }
-
-#pagetitle {background: url(http://us.i1.yimg.com/us.yimg.com/i/ydn/bg_hd.gif) 0 0 repeat-x #B6CDE1; border: 1px solid #93B2CC; }
-#pagetitle h1 {text-indent:15px; padding:4px 0 2px 0; background: url(http://us.i1.yimg.com/us.yimg.com/i/ydn/title_h_bg.gif) 0 0 no-repeat;  margin:0; color:#000; font-size:120%; font-weight:bold; position:relative; left:-1px; top:-1px; margin-right:-2px;}
-#pagetitle h1 em {color:#FF9933; font-size:60%; font-weight:bold; font-style:normal; position:relative; top:-6px}
-
-#ygunav {background:#eee; border-bottom:2px solid #ccc; padding:0 10px;font-size:78%;text-align:right;margin-bottom:6px;height:2.5em;line-height:2.5em;}
-html>body #ygunav {overflow:hidden;}
-#ygunav strong {font-family:verdana;}
-#ygunav p {display:inline;margin:0;padding:0;}
-#ygunav p em {float:left;text-align:left;font-style:normal; padding-top:.7em}
-* html #ygunav p em {margin-top:1px;}
-#ygunav p em i {visibility:hidden;}
-#ygunav a {color:#000;}
-#ygunav form {display:inline;margin:0 0 0 1em;}
-#ygsp {width:8em;font-size:110%;padding:0;vertical-align:middle;}
-#ygunav .ygbt {background:#dcdcdc;font:110% verdana;position:relative;top:1px;}
-* html #ygunav .ygbt {top:4px;}
-* html>body #ygunav .ygbt {line-height:0;top:-4px;}
-#ygunav label {color:#666;font-family:tahoma;top:1px;}
-
-#bd ol.getstarted { margin:0; padding:0; }
-#bd ol.getstarted li { font-weight:bold; color:#668AA8; margin-bottom:1em; padding-left:20px; list-style-type:none;}
-#bd ol.getstarted li p { color:#000; font-weight:normal; margin:0 0 0 20px; padding:0 }
-
-/* removing
-#bd p {margin-bottom:8px;}
-*/
-
-#promo {zoom:1;border: 1px solid #B6CDE1; padding:1em; /*position:relative;*/  background-color:#FFF5DF;}
-/*#promo ul {margin-bottom:0;}*/
-#promo h1 {margin-top:0; padding-top:0}
-#promo h2 {line-height:1.2em; color:#668AA8; margin-top:0; padding-top:0; border:none; font-size:100%}
-#promo p {line-height:1.2em; font-weight:400;}
-#promo h1 em {float:right; top:0; right:0; font-style:normal; font-size:80%}
-#promo h4 { color:#E76300; }
-#promo.component div {width:48%; float:left;}
-#promo:after {content:'.';visibility:hidden;clear:left;height:0;display:block;}
-#promo p#api {margin-top:.2em;}
-#promo #download img {float:left; padding:0 0.5em 0.5em 0;}
-#promo #blog {clear:left;}
-
-
-code {font-family:"Courier New"; font-size: 100%; font-weight:bolder;}
-
-div.apisummary {height:auto; margin:10px 0; width:auto; zoom:1;}
-div.apisummary table {font-size:inherit;font:100%; border-collapse:separate; border:1px solid #666666; border-left:none;}
-#doc3 div.apisummary table td, #doc3 div.apisummary table th {padding:.35em; vertical-align:top;}
-div.apisummary table th { background:#B6CDE1; color:#fff; vertical-align:top; font-weight:bold;}
-div.apisummary table td { border-top:1px solid #666666;}
-div.apisummary table td, div.apisummary table th { border-left:1px solid #666666;}
-div.apisummary table tr { background-color:#ddd;}
-div.apisummary table tr.odd { background-color:#fff; }
-div.apisummary table tfoot tr { background-color:#fff; }
-
-dl#menuwidgets dt {font-weight:bold;}
-dl#menuwidgets {margin:0 0 0 1.5em;}
-img.example {clear:right;margin-bottom:10px;margin-left:10px;border:0;float:right;border:1px solid #999;}
-
-/*YUI theater box on main page top right corner*/
-#yui-theater {width:316px; overflow:hidden;}
-#yui-theater h3 {margin:0; padding:0; color:#E76300;  font-size:100%; font-weight:bold; font-stretch:expanded;}
-#yui-theater h2 {margin:0 0 10px 0; padding:0; border:none; color:#000;  font-size:122%; font-weight:bold;}
-#yui-theater p {margin:7px 0 0 0;}
-#yui-theater div {float:right; font-size:85%;}
-
-/*rss reader styles*/
-p.loading-content {background-image:url(http://us.i1.yimg.com/us.yimg.com/i/ydn/yuiweb/img/busy_arrow.gif); background-position:top left; background-repeat:no-repeat; height:20px;padding:4px 0 0 25px; margin:0;}
-#doc3 ul.yuirssreader {margin:0; padding:0;}
-#doc3 ul.yuirssreader li {list-style-type:none;padding:5px 0 0 12px; margin:0;}
-#doc3 ul.yuirssreader li p {margin:0; padding:0;}
-ul.yuirssreader cite {color:#666666; margin:0;}
-span.yuirssreader-date {font-size:77%; color:#E76300;}
-img.rssbadge {display:inline;border:none !important;}
-
-#index-secondary {width:316px;float:right;margin-left:10px;}
-#index-main {margin-right:331px;}
-#index-main #promo li {list-style-type:none;font-size:92%;margin-top:2px;}
-#index-main #promo ul {margin:0;}
-
-/*styles for right gutter on component pages*/
-#cheatsheet h3 {margin-top:0;}
-#cheatsheet img, #componentvideo img {margin:.5em 0 .2em 0; border:1px solid #999;}
-#cheatsheet p {margin:0; font-size:77%;}
-#cheatsheet h4, .example-container h4, #examples h4 {margin:0.2em 0 .1em 0; color:#668AA8; font-size:92%;}
-#examples ul, #morereading ul, #module ul {font-size:85%; list-style:circle; margin:0 0 1em 10px;}
-#examples p, #componentvideo p {font-size:85%; margin:0 0 .2em 0;}
-#examples li.selected {font-weight:bold;}
-
-/*styles for example pages*/
-.example .promo {background-color:#89d;border-color:#666666; padding:1em;}
-.example .promo h1, .example .promo h2, .example .promo  h3 {color:#FFCC66;}
-.example .promo h1 {font-size:159%; padding-top:0; margin-top:0;}
-.exampleIntro, .exampleIntro p, .exampleIntro a, .exampleIntro a code {color:#fff;}
-.example .promo p {margin-top:.7em;}
-
-.example cite.byline {display:block; padding:0.5em; background-color:#eee; border:1px solid #000;margin-bottom:5px}
-
-firstContent {margin-top:0; padding-top:0;}
-#logger {margin-top:1em;}
-.example-container {background-color:#F1F6F7;}
-
-.example-container .bd {padding:1em; position:relative; z-index:1; zoom:1;}
-.example-container .bd .bd {padding:0; position:static;}   /* Reset to defaults to ensure styles are only applied to the top-level .bd of .example-container */
-.example-container>.bd:after {content:'.';visibility:hidden;clear:left;height:0;display:block;}
-.example-container .exampleHd {background: url(example-hd-bg.gif) 0 0 repeat-x #4E4D4C; }
-.example-container h3 {margin:.2em 0 .4em 0;}
-.example .example-container h1, .example .example-container h2, .example .example-container h3, .example .example-container h4, .example .example-container h5, .example .example-container h6 {color:#E76300; font-weight:bold;} 
-.example-container a {color:#000;} 
-.example-container a:visited, .example-container a:visited code {color:#000;}
-.example-container a:active, .example-container a:active code {color: #000;}
-
-#loggerGloss {margin-top:.5em; font-size:85%;}
-#loggerDiv {font-size:77%;text-align:left;margin-top:.5em; visibility:hidden; height:280px; } /*gets turned on by script when loaded */
-#loggerDiv.yui-log {padding:.4em;width:96%;background-color:#FBE7D9;border:1px solid #666;font-family:monospace;z-index:9000;}
-#loggerDiv.yui-log p {margin:1px;padding:.1em;}
-#loggerDiv.yui-log .yui-log-hd {margin:0; padding:0; background-color:#CECCCC;}
-#loggerDiv.yui-log .yui-log-hd h4 {display:none;}
-#loggerDiv.yui-log .yui-log-bd {width:100%;height:20em;background-color:#FFF;border:1px solid #ECECEC;overflow-y:auto;overflow-x:hidden;}
-#loggerDiv.yui-log .yui-log-bd pre {border-top:1px solid #ECECEC;}
-#loggerDiv.yui-log .yui-log-bd code p {margin:1px 0;}
-#loggerDiv.yui-log .yui-log-ft .yui-log-categoryfilters {margin-top:.5em;clear:right;}
-#loggerDiv.yui-log .yui-log-ft .yui-log-sourcefilters {margin-top:.5em;border:none; clear:both;}
-#loggerDiv.yui-log .yui-log-btns {margin-top:.2em;padding:.2em;background: url(bg_hd.gif) 0 0 repeat-x #CECCCC; text-align:right; float:none; position:static;}
-#loggerDiv.yui-log .yui-log-filtergrp {margin-right:.3em; float:left; display:block}
-#loggerDiv.yui-log .yui-log-ft {margin-top:.3em;margin-bottom:.3em; font-family:verdana; zoom:1;}
-/*bug in Safari when this is applied to .yui-log-ft:*/
-#loggerDiv.yui-log:after {content:'.';visibility:hidden;clear:both;height:0;display:block;}
-.example-container.newWindow {text-align:center;}
-p.newWindowButton {text-align:right; margin-top:0; padding:.5em;}
-.bd p.newWindowButton {text-align:center;} /*when new window is required and button appears in middle of example body*/
-p.loggerButton {text-align:center;}
-#loggerLink a, #newWindowLink a {font-size:115%; font-weight:bold; color:#000099;}
-#newWindowLink a {font-size:107%;}
-#loggerModule {padding-bottom:.2em;}
-
-/*right column navigation on example rosters*/
-#exampleToc {background-color:#ecf5fa; padding:0; border:1px solid #89d; margin-top:.5em;}
-#exampleToc ul {margin:0; padding:0; font-size:85%; }
-#exampleToc ul li {list-style:none; padding:0; margin:0; }
-#exampleToc ul li.selected { font-weight:bold; color:#fff; background:#000099; padding:0; }
-#exampleToc ul li.selected a { color:#fff; }
-#exampleToc ul li a { display:block; padding:2px 2px 2px 10px; text-decoration:none; }
-#exampleToc ul li a:hover { color:#fff; background:#e60; }
-#exampleToc ul li.selected a code { color:#fff; }
-
-/*theater page styles*/
-.theater h1 {border-bottom:1px dashed #CCC; margin-bottom:1em;padding-bottom:.2em;}
-.theater img {border:1px solid #666;}
-.theater img.last {border:1px solid #666;}
-.theater p.details {font-size:77%; color:#666; margin:.2em 0 0 0; padding:0;}
-.theater p.description, #doc3 .theater ul li  {font-size:85%; margin:0; padding:0; color:#333;}
-
-#readmePanel .hd { font-weight:bold; font-size:129%; color:#fff; background:#89d; }
-#readmePanel .bd {text-align:left; overflow:auto;}
-#readmePanel .ft {text-align:right; background-color:#E7E7E7; font-size:85%;}
-/* Browser specific (not valid) styles to make preformatted text wrap */
-#readmePanel .bd pre {
- white-space: pre-wrap;       /* css-3 */
- white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
- white-space: -pre-wrap;      /* Opera 4-6 */
- white-space: -o-pre-wrap;    /* Opera 7 */
- word-wrap: break-word;       /* Internet Explorer 5.5+ */
- font-size: 100%;
- color:#000033;}
- 
-/*ed eliot's server-side delicious badge css*/ 
- #delicious-badge {margin-top:.6em; font: 85% Arial, sans-serif; border: 1px solid #b1b1b1; }
-#delicious-badge .bookmark { background: url(http://images.del.icio.us/static/img/delicious.small.gif) no-repeat left center; padding-left: 15px; font-weight: bold; }
-#delicious-badge p, #delicious-badge div { padding: 7px; margin: 0; text-align: center; }
-#delicious-badge a { color: #00f; text-decoration: none; }
-#delicious-badge div { background: #eee; }
-#delicious-badge div span { font-weight: bold; color: #000; }
-#delicious-badge ul, #delicious-badge li { display: inline; list-style: none; padding: 0; margin: 0; }
-#delicious-badge li { margin-left: 5px; }
-#delicious-badge li span { position: absolute; left: -999px; width: 999px; }
-#delicious-badge .saved-by { color: #999; }
-#delicious-badge .saved-by span { background: #00f; padding: 3px; color: #fff; }
-#delicious-badge .be-first { font-size: 85%; color: #999; }
-#delicious-badge .tag-size-1 { font-size: 100%; }
-#delicious-badge .tag-size-2 { font-size: 107%; }
-#delicious-badge .tag-size-3 { font-size: 114%; }
-#delicious-badge .tag-size-4 { font-size: 122%; }
-#delicious-badge .tag-size-5 { font-size: 129%; }
-
-/*faq page:*/
-.yui-ge .yui-g {width:98%;}
-.yui-ge .yui-g .yui-u {width:48.1%;}
-#questions {margin:1em 0 2em 0; padding:0.5em; border:1px solid #838383; background-color:#E6E6E6;}
-#questions ul {margin:0; list-style:none;}
-#yui-main #questions li {padding-bottom:.2em; font-size:85%; margin:0;}
-#questions li a {display:block; padding:.6em; text-decoration:none;}
-#questions li a:hover {background-color:#F6F6F6;}
-
-/*for notes on file includes*/
-#configuratorBadge {display:block; float:left; margin:0 .5em .5em 0;}
-.include-notice {clear:left; border:1px solid #6F7EA1; background:#eee; font:77% verdana; padding:.7em;}
-.include-notice p.firstP {margin-top:0;}
-.include-notice p.lastP {margin-bottom:0;}
-.include-notice strong {color:#990000;}
-.configurator-notice p {font-size:85%;}
-
-/*for site search suggest via autocomplete*/
-#ygunav {overflow:visible !important;}
-#sitesearch {float:right; width:40em; position:relative; text-align:right;}
-#searchinput {width:15em; font-size:11px; font-weight:bold; position:relative; top:2px;}
-#searchcontainer {text-align:left; width:40em; overflow:hidden; line-height:normal; position:absolute;}
-#searchcontainer .yui-ac-bd {font-size:10px; color:#666; background-color:#EAEFF2; text-align:left;}
-#searchcontainer li {overflow:hidden; text-overflow:ellipsis; -o-text-overflow:ellipsis; cursor:pointer; padding-top:2px; }
-#searchcontainer em {font-style:normal; font-weight:bold; color:#000033;}
-.yui-ac-ft {padding:3px; font-size:10px; text-align:right;}
-#searchcontainer .yui-ac-highlight {background-color:#87A4D6;}
diff --git a/eclipse.org-common/yui/2.6.0/assets/yui.gif b/eclipse.org-common/yui/2.6.0/assets/yui.gif
deleted file mode 100644
index 5033ff5..0000000
--- a/eclipse.org-common/yui/2.6.0/assets/yui.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/assets/yuiDistribution.css b/eclipse.org-common/yui/2.6.0/assets/yuiDistribution.css
deleted file mode 100644
index e69de29..0000000
--- a/eclipse.org-common/yui/2.6.0/assets/yuiDistribution.css
+++ /dev/null
diff --git a/eclipse.org-common/yui/2.6.0/assets/yuilib.jpg b/eclipse.org-common/yui/2.6.0/assets/yuilib.jpg
deleted file mode 100644
index 88b8255..0000000
--- a/eclipse.org-common/yui/2.6.0/assets/yuilib.jpg
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/animation/README b/eclipse.org-common/yui/2.6.0/build/animation/README
deleted file mode 100644
index 1139944..0000000
--- a/eclipse.org-common/yui/2.6.0/build/animation/README
+++ /dev/null
@@ -1,71 +0,0 @@
-Animation Release Notes
-
-*** version 2.6.0 ***
-* ColorAnim updated to use getAncestorBy 
-
-*** version 2.5.2 ***
-* no change
-
-*** version 2.5.1 ***
-* no change
-
-*** version 2.5.0 ***
-* replace toString overrides with static NAME property
-
-*** version 2.4.0 ***
-* calling stop() on an non-animated Anim no longer fires onComplete
-
-*** version 2.3.1 ***
-* no change
-
-*** version 2.3.0 ***
-
-* duration of zero now executes 1 frame animation
-* added setEl() method to enable reuse
-* fixed stop() for multiple animations
-
-*** version 2.3.0 ***
-* duration of zero now executes 1 frame animation
-* added setEl() method to enable reuse
-* fixed stop() for multiple animations
-
-*** version 2.2.2 ***
-* no change
-
-*** version 2.2.1 ***
-* no change
-
-*** version 2.2.0 ***
-* Fixed AnimMgr.stop() when called without tween
-
-*** version 0.12.2 ***
-* raised AnimMgr.fps to 1000
-
-*** version 0.12.1 ***
-* minified version no longer strips line breaks
-
-*** version 0.12.0 ***
-* added boolean finish argument to Anim.stop()
-
-*** version 0.11.3 ***
-* no changes
-
-*** version 0.11.1 ***
-* changed "prototype" shorthand to "proto" (workaround firefox < 1.5 scoping
-bug)
-
-*** version 0.11.0 ***
-* ColorAnim subclass added
-* Motion and Scroll now inherit from ColorAnim
-* getDefaultUnit method added
-* defaultUnit and defaultUnits deprecated
-* getDefault and setDefault methods deprecated
-
-*** version 0.10.0 ***
-* Scroll now handles relative ("by") animation correctly
-* Now converts "auto" values of "from" to appropriate initial values
-
-*** version 0.9.0 ***
-* Initial release
-
-
diff --git a/eclipse.org-common/yui/2.6.0/build/animation/animation-debug.js b/eclipse.org-common/yui/2.6.0/build/animation/animation-debug.js
deleted file mode 100644
index c85005d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/animation/animation-debug.js
+++ /dev/null
@@ -1,1385 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function() {
-
-var Y = YAHOO.util;
-
-/*
-Copyright (c) 2006, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-*/
-
-/**
- * The animation module provides allows effects to be added to HTMLElements.
- * @module animation
- * @requires yahoo, event, dom
- */
-
-/**
- *
- * Base animation class that provides the interface for building animated effects.
- * <p>Usage: var myAnim = new YAHOO.util.Anim(el, { width: { from: 10, to: 100 } }, 1, YAHOO.util.Easing.easeOut);</p>
- * @class Anim
- * @namespace YAHOO.util
- * @requires YAHOO.util.AnimMgr
- * @requires YAHOO.util.Easing
- * @requires YAHOO.util.Dom
- * @requires YAHOO.util.Event
- * @requires YAHOO.util.CustomEvent
- * @constructor
- * @param {String | HTMLElement} el Reference to the element that will be animated
- * @param {Object} attributes The attribute(s) to be animated.  
- * Each attribute is an object with at minimum a "to" or "by" member defined.  
- * Additional optional members are "from" (defaults to current value), "units" (defaults to "px").  
- * All attribute names use camelCase.
- * @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
- * @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
- */
-
-var Anim = function(el, attributes, duration, method) {
-    if (!el) {
-        YAHOO.log('element required to create Anim instance', 'error', 'Anim');
-    }
-    this.init(el, attributes, duration, method); 
-};
-
-Anim.NAME = 'Anim';
-
-Anim.prototype = {
-    /**
-     * Provides a readable name for the Anim instance.
-     * @method toString
-     * @return {String}
-     */
-    toString: function() {
-        var el = this.getEl() || {};
-        var id = el.id || el.tagName;
-        return (this.constructor.NAME + ': ' + id);
-    },
-    
-    patterns: { // cached for performance
-        noNegatives:        /width|height|opacity|padding/i, // keep at zero or above
-        offsetAttribute:  /^((width|height)|(top|left))$/, // use offsetValue as default
-        defaultUnit:        /width|height|top$|bottom$|left$|right$/i, // use 'px' by default
-        offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i // IE may return these, so convert these to offset
-    },
-    
-    /**
-     * Returns the value computed by the animation's "method".
-     * @method doMethod
-     * @param {String} attr The name of the attribute.
-     * @param {Number} start The value this attribute should start from for this animation.
-     * @param {Number} end  The value this attribute should end at for this animation.
-     * @return {Number} The Value to be applied to the attribute.
-     */
-    doMethod: function(attr, start, end) {
-        return this.method(this.currentFrame, start, end - start, this.totalFrames);
-    },
-    
-    /**
-     * Applies a value to an attribute.
-     * @method setAttribute
-     * @param {String} attr The name of the attribute.
-     * @param {Number} val The value to be applied to the attribute.
-     * @param {String} unit The unit ('px', '%', etc.) of the value.
-     */
-    setAttribute: function(attr, val, unit) {
-        if ( this.patterns.noNegatives.test(attr) ) {
-            val = (val > 0) ? val : 0;
-        }
-
-        Y.Dom.setStyle(this.getEl(), attr, val + unit);
-    },                        
-    
-    /**
-     * Returns current value of the attribute.
-     * @method getAttribute
-     * @param {String} attr The name of the attribute.
-     * @return {Number} val The current value of the attribute.
-     */
-    getAttribute: function(attr) {
-        var el = this.getEl();
-        var val = Y.Dom.getStyle(el, attr);
-
-        if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
-            return parseFloat(val);
-        }
-        
-        var a = this.patterns.offsetAttribute.exec(attr) || [];
-        var pos = !!( a[3] ); // top or left
-        var box = !!( a[2] ); // width or height
-        
-        // use offsets for width/height and abs pos top/left
-        if ( box || (Y.Dom.getStyle(el, 'position') == 'absolute' && pos) ) {
-            val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
-        } else { // default to zero for other 'auto'
-            val = 0;
-        }
-
-        return val;
-    },
-    
-    /**
-     * Returns the unit to use when none is supplied.
-     * @method getDefaultUnit
-     * @param {attr} attr The name of the attribute.
-     * @return {String} The default unit to be used.
-     */
-    getDefaultUnit: function(attr) {
-         if ( this.patterns.defaultUnit.test(attr) ) {
-            return 'px';
-         }
-         
-         return '';
-    },
-        
-    /**
-     * Sets the actual values to be used during the animation.  Should only be needed for subclass use.
-     * @method setRuntimeAttribute
-     * @param {Object} attr The attribute object
-     * @private 
-     */
-    setRuntimeAttribute: function(attr) {
-        var start;
-        var end;
-        var attributes = this.attributes;
-
-        this.runtimeAttributes[attr] = {};
-        
-        var isset = function(prop) {
-            return (typeof prop !== 'undefined');
-        };
-        
-        if ( !isset(attributes[attr]['to']) && !isset(attributes[attr]['by']) ) {
-            return false; // note return; nothing to animate to
-        }
-        
-        start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
-
-        // To beats by, per SMIL 2.1 spec
-        if ( isset(attributes[attr]['to']) ) {
-            end = attributes[attr]['to'];
-        } else if ( isset(attributes[attr]['by']) ) {
-            if (start.constructor == Array) {
-                end = [];
-                for (var i = 0, len = start.length; i < len; ++i) {
-                    end[i] = start[i] + attributes[attr]['by'][i] * 1; // times 1 to cast "by" 
-                }
-            } else {
-                end = start + attributes[attr]['by'] * 1;
-            }
-        }
-        
-        this.runtimeAttributes[attr].start = start;
-        this.runtimeAttributes[attr].end = end;
-
-        // set units if needed
-        this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ?
-                attributes[attr]['unit'] : this.getDefaultUnit(attr);
-        return true;
-    },
-
-    /**
-     * Constructor for Anim instance.
-     * @method init
-     * @param {String | HTMLElement} el Reference to the element that will be animated
-     * @param {Object} attributes The attribute(s) to be animated.  
-     * Each attribute is an object with at minimum a "to" or "by" member defined.  
-     * Additional optional members are "from" (defaults to current value), "units" (defaults to "px").  
-     * All attribute names use camelCase.
-     * @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
-     * @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
-     */ 
-    init: function(el, attributes, duration, method) {
-        /**
-         * Whether or not the animation is running.
-         * @property isAnimated
-         * @private
-         * @type Boolean
-         */
-        var isAnimated = false;
-        
-        /**
-         * A Date object that is created when the animation begins.
-         * @property startTime
-         * @private
-         * @type Date
-         */
-        var startTime = null;
-        
-        /**
-         * The number of frames this animation was able to execute.
-         * @property actualFrames
-         * @private
-         * @type Int
-         */
-        var actualFrames = 0; 
-
-        /**
-         * The element to be animated.
-         * @property el
-         * @private
-         * @type HTMLElement
-         */
-        el = Y.Dom.get(el);
-        
-        /**
-         * The collection of attributes to be animated.  
-         * Each attribute must have at least a "to" or "by" defined in order to animate.  
-         * If "to" is supplied, the animation will end with the attribute at that value.  
-         * If "by" is supplied, the animation will end at that value plus its starting value. 
-         * If both are supplied, "to" is used, and "by" is ignored. 
-         * Optional additional member include "from" (the value the attribute should start animating from, defaults to current value), and "unit" (the units to apply to the values).
-         * @property attributes
-         * @type Object
-         */
-        this.attributes = attributes || {};
-        
-        /**
-         * The length of the animation.  Defaults to "1" (second).
-         * @property duration
-         * @type Number
-         */
-        this.duration = !YAHOO.lang.isUndefined(duration) ? duration : 1;
-        
-        /**
-         * The method that will provide values to the attribute(s) during the animation. 
-         * Defaults to "YAHOO.util.Easing.easeNone".
-         * @property method
-         * @type Function
-         */
-        this.method = method || Y.Easing.easeNone;
-
-        /**
-         * Whether or not the duration should be treated as seconds.
-         * Defaults to true.
-         * @property useSeconds
-         * @type Boolean
-         */
-        this.useSeconds = true; // default to seconds
-        
-        /**
-         * The location of the current animation on the timeline.
-         * In time-based animations, this is used by AnimMgr to ensure the animation finishes on time.
-         * @property currentFrame
-         * @type Int
-         */
-        this.currentFrame = 0;
-        
-        /**
-         * The total number of frames to be executed.
-         * In time-based animations, this is used by AnimMgr to ensure the animation finishes on time.
-         * @property totalFrames
-         * @type Int
-         */
-        this.totalFrames = Y.AnimMgr.fps;
-        
-        /**
-         * Changes the animated element
-         * @method setEl
-         */
-        this.setEl = function(element) {
-            el = Y.Dom.get(element);
-        };
-        
-        /**
-         * Returns a reference to the animated element.
-         * @method getEl
-         * @return {HTMLElement}
-         */
-        this.getEl = function() { return el; };
-        
-        /**
-         * Checks whether the element is currently animated.
-         * @method isAnimated
-         * @return {Boolean} current value of isAnimated.     
-         */
-        this.isAnimated = function() {
-            return isAnimated;
-        };
-        
-        /**
-         * Returns the animation start time.
-         * @method getStartTime
-         * @return {Date} current value of startTime.      
-         */
-        this.getStartTime = function() {
-            return startTime;
-        };        
-        
-        this.runtimeAttributes = {};
-        
-        var logger = {};
-        logger.log = function() {YAHOO.log.apply(window, arguments)};
-        
-        logger.log('creating new instance of ' + this);
-        
-        /**
-         * Starts the animation by registering it with the animation manager. 
-         * @method animate  
-         */
-        this.animate = function() {
-            if ( this.isAnimated() ) {
-                return false;
-            }
-            
-            this.currentFrame = 0;
-            
-            this.totalFrames = ( this.useSeconds ) ? Math.ceil(Y.AnimMgr.fps * this.duration) : this.duration;
-    
-            if (this.duration === 0 && this.useSeconds) { // jump to last frame if zero second duration 
-                this.totalFrames = 1; 
-            }
-            Y.AnimMgr.registerElement(this);
-            return true;
-        };
-          
-        /**
-         * Stops the animation.  Normally called by AnimMgr when animation completes.
-         * @method stop
-         * @param {Boolean} finish (optional) If true, animation will jump to final frame.
-         */ 
-        this.stop = function(finish) {
-            if (!this.isAnimated()) { // nothing to stop
-                return false;
-            }
-
-            if (finish) {
-                 this.currentFrame = this.totalFrames;
-                 this._onTween.fire();
-            }
-            Y.AnimMgr.stop(this);
-        };
-        
-        var onStart = function() {            
-            this.onStart.fire();
-            
-            this.runtimeAttributes = {};
-            for (var attr in this.attributes) {
-                this.setRuntimeAttribute(attr);
-            }
-            
-            isAnimated = true;
-            actualFrames = 0;
-            startTime = new Date(); 
-        };
-        
-        /**
-         * Feeds the starting and ending values for each animated attribute to doMethod once per frame, then applies the resulting value to the attribute(s).
-         * @private
-         */
-         
-        var onTween = function() {
-            var data = {
-                duration: new Date() - this.getStartTime(),
-                currentFrame: this.currentFrame
-            };
-            
-            data.toString = function() {
-                return (
-                    'duration: ' + data.duration +
-                    ', currentFrame: ' + data.currentFrame
-                );
-            };
-            
-            this.onTween.fire(data);
-            
-            var runtimeAttributes = this.runtimeAttributes;
-            
-            for (var attr in runtimeAttributes) {
-                this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit); 
-            }
-            
-            actualFrames += 1;
-        };
-        
-        var onComplete = function() {
-            var actual_duration = (new Date() - startTime) / 1000 ;
-            
-            var data = {
-                duration: actual_duration,
-                frames: actualFrames,
-                fps: actualFrames / actual_duration
-            };
-            
-            data.toString = function() {
-                return (
-                    'duration: ' + data.duration +
-                    ', frames: ' + data.frames +
-                    ', fps: ' + data.fps
-                );
-            };
-            
-            isAnimated = false;
-            actualFrames = 0;
-            this.onComplete.fire(data);
-        };
-        
-        /**
-         * Custom event that fires after onStart, useful in subclassing
-         * @private
-         */    
-        this._onStart = new Y.CustomEvent('_start', this, true);
-
-        /**
-         * Custom event that fires when animation begins
-         * Listen via subscribe method (e.g. myAnim.onStart.subscribe(someFunction)
-         * @event onStart
-         */    
-        this.onStart = new Y.CustomEvent('start', this);
-        
-        /**
-         * Custom event that fires between each frame
-         * Listen via subscribe method (e.g. myAnim.onTween.subscribe(someFunction)
-         * @event onTween
-         */
-        this.onTween = new Y.CustomEvent('tween', this);
-        
-        /**
-         * Custom event that fires after onTween
-         * @private
-         */
-        this._onTween = new Y.CustomEvent('_tween', this, true);
-        
-        /**
-         * Custom event that fires when animation ends
-         * Listen via subscribe method (e.g. myAnim.onComplete.subscribe(someFunction)
-         * @event onComplete
-         */
-        this.onComplete = new Y.CustomEvent('complete', this);
-        /**
-         * Custom event that fires after onComplete
-         * @private
-         */
-        this._onComplete = new Y.CustomEvent('_complete', this, true);
-
-        this._onStart.subscribe(onStart);
-        this._onTween.subscribe(onTween);
-        this._onComplete.subscribe(onComplete);
-    }
-};
-
-    Y.Anim = Anim;
-})();
-/**
- * Handles animation queueing and threading.
- * Used by Anim and subclasses.
- * @class AnimMgr
- * @namespace YAHOO.util
- */
-YAHOO.util.AnimMgr = new function() {
-    /** 
-     * Reference to the animation Interval.
-     * @property thread
-     * @private
-     * @type Int
-     */
-    var thread = null;
-    
-    /** 
-     * The current queue of registered animation objects.
-     * @property queue
-     * @private
-     * @type Array
-     */    
-    var queue = [];
-
-    /** 
-     * The number of active animations.
-     * @property tweenCount
-     * @private
-     * @type Int
-     */        
-    var tweenCount = 0;
-
-    /** 
-     * Base frame rate (frames per second). 
-     * Arbitrarily high for better x-browser calibration (slower browsers drop more frames).
-     * @property fps
-     * @type Int
-     * 
-     */
-    this.fps = 1000;
-
-    /** 
-     * Interval delay in milliseconds, defaults to fastest possible.
-     * @property delay
-     * @type Int
-     * 
-     */
-    this.delay = 1;
-
-    /**
-     * Adds an animation instance to the animation queue.
-     * All animation instances must be registered in order to animate.
-     * @method registerElement
-     * @param {object} tween The Anim instance to be be registered
-     */
-    this.registerElement = function(tween) {
-        queue[queue.length] = tween;
-        tweenCount += 1;
-        tween._onStart.fire();
-        this.start();
-    };
-    
-    /**
-     * removes an animation instance from the animation queue.
-     * All animation instances must be registered in order to animate.
-     * @method unRegister
-     * @param {object} tween The Anim instance to be be registered
-     * @param {Int} index The index of the Anim instance
-     * @private
-     */
-    this.unRegister = function(tween, index) {
-        index = index || getIndex(tween);
-        if (!tween.isAnimated() || index == -1) {
-            return false;
-        }
-        
-        tween._onComplete.fire();
-        queue.splice(index, 1);
-
-        tweenCount -= 1;
-        if (tweenCount <= 0) {
-            this.stop();
-        }
-
-        return true;
-    };
-    
-    /**
-     * Starts the animation thread.
-	* Only one thread can run at a time.
-     * @method start
-     */    
-    this.start = function() {
-        if (thread === null) {
-            thread = setInterval(this.run, this.delay);
-        }
-    };
-
-    /**
-     * Stops the animation thread or a specific animation instance.
-     * @method stop
-     * @param {object} tween A specific Anim instance to stop (optional)
-     * If no instance given, Manager stops thread and all animations.
-     */    
-    this.stop = function(tween) {
-        if (!tween) {
-            clearInterval(thread);
-            
-            for (var i = 0, len = queue.length; i < len; ++i) {
-                this.unRegister(queue[0], 0);  
-            }
-
-            queue = [];
-            thread = null;
-            tweenCount = 0;
-        }
-        else {
-            this.unRegister(tween);
-        }
-    };
-    
-    /**
-     * Called per Interval to handle each animation frame.
-     * @method run
-     */    
-    this.run = function() {
-        for (var i = 0, len = queue.length; i < len; ++i) {
-            var tween = queue[i];
-            if ( !tween || !tween.isAnimated() ) { continue; }
-
-            if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
-            {
-                tween.currentFrame += 1;
-                
-                if (tween.useSeconds) {
-                    correctFrame(tween);
-                }
-                tween._onTween.fire();          
-            }
-            else { YAHOO.util.AnimMgr.stop(tween, i); }
-        }
-    };
-    
-    var getIndex = function(anim) {
-        for (var i = 0, len = queue.length; i < len; ++i) {
-            if (queue[i] == anim) {
-                return i; // note return;
-            }
-        }
-        return -1;
-    };
-    
-    /**
-     * On the fly frame correction to keep animation on time.
-     * @method correctFrame
-     * @private
-     * @param {Object} tween The Anim instance being corrected.
-     */
-    var correctFrame = function(tween) {
-        var frames = tween.totalFrames;
-        var frame = tween.currentFrame;
-        var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
-        var elapsed = (new Date() - tween.getStartTime());
-        var tweak = 0;
-        
-        if (elapsed < tween.duration * 1000) { // check if falling behind
-            tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
-        } else { // went over duration, so jump to end
-            tweak = frames - (frame + 1); 
-        }
-        if (tweak > 0 && isFinite(tweak)) { // adjust if needed
-            if (tween.currentFrame + tweak >= frames) {// dont go past last frame
-                tweak = frames - (frame + 1);
-            }
-            
-            tween.currentFrame += tweak;      
-        }
-    };
-};
-/**
- * Used to calculate Bezier splines for any number of control points.
- * @class Bezier
- * @namespace YAHOO.util
- *
- */
-YAHOO.util.Bezier = new function() {
-    /**
-     * Get the current position of the animated element based on t.
-     * Each point is an array of "x" and "y" values (0 = x, 1 = y)
-     * At least 2 points are required (start and end).
-     * First point is start. Last point is end.
-     * Additional control points are optional.     
-     * @method getPosition
-     * @param {Array} points An array containing Bezier points
-     * @param {Number} t A number between 0 and 1 which is the basis for determining current position
-     * @return {Array} An array containing int x and y member data
-     */
-    this.getPosition = function(points, t) {  
-        var n = points.length;
-        var tmp = [];
-
-        for (var i = 0; i < n; ++i){
-            tmp[i] = [points[i][0], points[i][1]]; // save input
-        }
-        
-        for (var j = 1; j < n; ++j) {
-            for (i = 0; i < n - j; ++i) {
-                tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
-                tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1]; 
-            }
-        }
-    
-        return [ tmp[0][0], tmp[0][1] ]; 
-    
-    };
-};
-(function() {
-/**
- * Anim subclass for color transitions.
- * <p>Usage: <code>var myAnim = new Y.ColorAnim(el, { backgroundColor: { from: '#FF0000', to: '#FFFFFF' } }, 1, Y.Easing.easeOut);</code> Color values can be specified with either 112233, #112233, 
- * [255,255,255], or rgb(255,255,255)</p>
- * @class ColorAnim
- * @namespace YAHOO.util
- * @requires YAHOO.util.Anim
- * @requires YAHOO.util.AnimMgr
- * @requires YAHOO.util.Easing
- * @requires YAHOO.util.Bezier
- * @requires YAHOO.util.Dom
- * @requires YAHOO.util.Event
- * @constructor
- * @extends YAHOO.util.Anim
- * @param {HTMLElement | String} el Reference to the element that will be animated
- * @param {Object} attributes The attribute(s) to be animated.
- * Each attribute is an object with at minimum a "to" or "by" member defined.
- * Additional optional members are "from" (defaults to current value), "units" (defaults to "px").
- * All attribute names use camelCase.
- * @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
- * @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
- */
-    var ColorAnim = function(el, attributes, duration,  method) {
-        ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
-    };
-    
-    ColorAnim.NAME = 'ColorAnim';
-
-    ColorAnim.DEFAULT_BGCOLOR = '#fff';
-    // shorthand
-    var Y = YAHOO.util;
-    YAHOO.extend(ColorAnim, Y.Anim);
-
-    var superclass = ColorAnim.superclass;
-    var proto = ColorAnim.prototype;
-    
-    proto.patterns.color = /color$/i;
-    proto.patterns.rgb            = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
-    proto.patterns.hex            = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
-    proto.patterns.hex3          = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
-    proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/; // need rgba for safari
-    
-    /**
-     * Attempts to parse the given string and return a 3-tuple.
-     * @method parseColor
-     * @param {String} s The string to parse.
-     * @return {Array} The 3-tuple of rgb values.
-     */
-    proto.parseColor = function(s) {
-        if (s.length == 3) { return s; }
-    
-        var c = this.patterns.hex.exec(s);
-        if (c && c.length == 4) {
-            return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
-        }
-    
-        c = this.patterns.rgb.exec(s);
-        if (c && c.length == 4) {
-            return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
-        }
-    
-        c = this.patterns.hex3.exec(s);
-        if (c && c.length == 4) {
-            return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
-        }
-        
-        return null;
-    };
-
-    proto.getAttribute = function(attr) {
-        var el = this.getEl();
-        if (this.patterns.color.test(attr) ) {
-            var val = YAHOO.util.Dom.getStyle(el, attr);
-            
-            var that = this;
-            if (this.patterns.transparent.test(val)) { // bgcolor default
-                var parent = YAHOO.util.Dom.getAncestorBy(el, function(node) {
-                    return !that.patterns.transparent.test(val);
-                });
-
-                if (parent) {
-                    val = Y.Dom.getStyle(parent, attr);
-                } else {
-                    val = ColorAnim.DEFAULT_BGCOLOR;
-                }
-            }
-        } else {
-            val = superclass.getAttribute.call(this, attr);
-        }
-
-        return val;
-    };
-    
-    proto.doMethod = function(attr, start, end) {
-        var val;
-    
-        if ( this.patterns.color.test(attr) ) {
-            val = [];
-            for (var i = 0, len = start.length; i < len; ++i) {
-                val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
-            }
-            
-            val = 'rgb('+Math.floor(val[0])+','+Math.floor(val[1])+','+Math.floor(val[2])+')';
-        }
-        else {
-            val = superclass.doMethod.call(this, attr, start, end);
-        }
-
-        return val;
-    };
-
-    proto.setRuntimeAttribute = function(attr) {
-        superclass.setRuntimeAttribute.call(this, attr);
-        
-        if ( this.patterns.color.test(attr) ) {
-            var attributes = this.attributes;
-            var start = this.parseColor(this.runtimeAttributes[attr].start);
-            var end = this.parseColor(this.runtimeAttributes[attr].end);
-            // fix colors if going "by"
-            if ( typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined' ) {
-                end = this.parseColor(attributes[attr].by);
-            
-                for (var i = 0, len = start.length; i < len; ++i) {
-                    end[i] = start[i] + end[i];
-                }
-            }
-            
-            this.runtimeAttributes[attr].start = start;
-            this.runtimeAttributes[attr].end = end;
-        }
-    };
-
-    Y.ColorAnim = ColorAnim;
-})();
-/*!
-TERMS OF USE - EASING EQUATIONS
-Open source under the BSD License.
-Copyright 2001 Robert Penner All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
- * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-*/
-
-/**
- * Singleton that determines how an animation proceeds from start to end.
- * @class Easing
- * @namespace YAHOO.util
-*/
-
-YAHOO.util.Easing = {
-
-    /**
-     * Uniform speed between points.
-     * @method easeNone
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    easeNone: function (t, b, c, d) {
-    	return c*t/d + b;
-    },
-    
-    /**
-     * Begins slowly and accelerates towards end.
-     * @method easeIn
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    easeIn: function (t, b, c, d) {
-    	return c*(t/=d)*t + b;
-    },
-
-    /**
-     * Begins quickly and decelerates towards end.
-     * @method easeOut
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    easeOut: function (t, b, c, d) {
-    	return -c *(t/=d)*(t-2) + b;
-    },
-    
-    /**
-     * Begins slowly and decelerates towards end.
-     * @method easeBoth
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    easeBoth: function (t, b, c, d) {
-    	if ((t/=d/2) < 1) {
-            return c/2*t*t + b;
-        }
-        
-    	return -c/2 * ((--t)*(t-2) - 1) + b;
-    },
-    
-    /**
-     * Begins slowly and accelerates towards end.
-     * @method easeInStrong
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    easeInStrong: function (t, b, c, d) {
-    	return c*(t/=d)*t*t*t + b;
-    },
-    
-    /**
-     * Begins quickly and decelerates towards end.
-     * @method easeOutStrong
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    easeOutStrong: function (t, b, c, d) {
-    	return -c * ((t=t/d-1)*t*t*t - 1) + b;
-    },
-    
-    /**
-     * Begins slowly and decelerates towards end.
-     * @method easeBothStrong
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    easeBothStrong: function (t, b, c, d) {
-    	if ((t/=d/2) < 1) {
-            return c/2*t*t*t*t + b;
-        }
-        
-    	return -c/2 * ((t-=2)*t*t*t - 2) + b;
-    },
-
-    /**
-     * Snap in elastic effect.
-     * @method elasticIn
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @param {Number} a Amplitude (optional)
-     * @param {Number} p Period (optional)
-     * @return {Number} The computed value for the current animation frame
-     */
-
-    elasticIn: function (t, b, c, d, a, p) {
-    	if (t == 0) {
-            return b;
-        }
-        if ( (t /= d) == 1 ) {
-            return b+c;
-        }
-        if (!p) {
-            p=d*.3;
-        }
-        
-    	if (!a || a < Math.abs(c)) {
-            a = c; 
-            var s = p/4;
-        }
-    	else {
-            var s = p/(2*Math.PI) * Math.asin (c/a);
-        }
-        
-    	return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
-    },
-
-    /**
-     * Snap out elastic effect.
-     * @method elasticOut
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @param {Number} a Amplitude (optional)
-     * @param {Number} p Period (optional)
-     * @return {Number} The computed value for the current animation frame
-     */
-    elasticOut: function (t, b, c, d, a, p) {
-    	if (t == 0) {
-            return b;
-        }
-        if ( (t /= d) == 1 ) {
-            return b+c;
-        }
-        if (!p) {
-            p=d*.3;
-        }
-        
-    	if (!a || a < Math.abs(c)) {
-            a = c;
-            var s = p / 4;
-        }
-    	else {
-            var s = p/(2*Math.PI) * Math.asin (c/a);
-        }
-        
-    	return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
-    },
-    
-    /**
-     * Snap both elastic effect.
-     * @method elasticBoth
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @param {Number} a Amplitude (optional)
-     * @param {Number} p Period (optional)
-     * @return {Number} The computed value for the current animation frame
-     */
-    elasticBoth: function (t, b, c, d, a, p) {
-    	if (t == 0) {
-            return b;
-        }
-        
-        if ( (t /= d/2) == 2 ) {
-            return b+c;
-        }
-        
-        if (!p) {
-            p = d*(.3*1.5);
-        }
-        
-    	if ( !a || a < Math.abs(c) ) {
-            a = c; 
-            var s = p/4;
-        }
-    	else {
-            var s = p/(2*Math.PI) * Math.asin (c/a);
-        }
-        
-    	if (t < 1) {
-            return -.5*(a*Math.pow(2,10*(t-=1)) * 
-                    Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
-        }
-    	return a*Math.pow(2,-10*(t-=1)) * 
-                Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
-    },
-
-
-    /**
-     * Backtracks slightly, then reverses direction and moves to end.
-     * @method backIn
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @param {Number} s Overshoot (optional)
-     * @return {Number} The computed value for the current animation frame
-     */
-    backIn: function (t, b, c, d, s) {
-    	if (typeof s == 'undefined') {
-            s = 1.70158;
-        }
-    	return c*(t/=d)*t*((s+1)*t - s) + b;
-    },
-
-    /**
-     * Overshoots end, then reverses and comes back to end.
-     * @method backOut
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @param {Number} s Overshoot (optional)
-     * @return {Number} The computed value for the current animation frame
-     */
-    backOut: function (t, b, c, d, s) {
-    	if (typeof s == 'undefined') {
-            s = 1.70158;
-        }
-    	return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
-    },
-    
-    /**
-     * Backtracks slightly, then reverses direction, overshoots end, 
-     * then reverses and comes back to end.
-     * @method backBoth
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @param {Number} s Overshoot (optional)
-     * @return {Number} The computed value for the current animation frame
-     */
-    backBoth: function (t, b, c, d, s) {
-    	if (typeof s == 'undefined') {
-            s = 1.70158; 
-        }
-        
-    	if ((t /= d/2 ) < 1) {
-            return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
-        }
-    	return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
-    },
-
-    /**
-     * Bounce off of start.
-     * @method bounceIn
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    bounceIn: function (t, b, c, d) {
-    	return c - YAHOO.util.Easing.bounceOut(d-t, 0, c, d) + b;
-    },
-    
-    /**
-     * Bounces off end.
-     * @method bounceOut
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    bounceOut: function (t, b, c, d) {
-    	if ((t/=d) < (1/2.75)) {
-    		return c*(7.5625*t*t) + b;
-    	} else if (t < (2/2.75)) {
-    		return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
-    	} else if (t < (2.5/2.75)) {
-    		return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
-    	}
-        return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
-    },
-    
-    /**
-     * Bounces off start and end.
-     * @method bounceBoth
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    bounceBoth: function (t, b, c, d) {
-    	if (t < d/2) {
-            return YAHOO.util.Easing.bounceIn(t*2, 0, c, d) * .5 + b;
-        }
-    	return YAHOO.util.Easing.bounceOut(t*2-d, 0, c, d) * .5 + c*.5 + b;
-    }
-};
-
-(function() {
-/**
- * Anim subclass for moving elements along a path defined by the "points" 
- * member of "attributes".  All "points" are arrays with x, y coordinates.
- * <p>Usage: <code>var myAnim = new YAHOO.util.Motion(el, { points: { to: [800, 800] } }, 1, YAHOO.util.Easing.easeOut);</code></p>
- * @class Motion
- * @namespace YAHOO.util
- * @requires YAHOO.util.Anim
- * @requires YAHOO.util.AnimMgr
- * @requires YAHOO.util.Easing
- * @requires YAHOO.util.Bezier
- * @requires YAHOO.util.Dom
- * @requires YAHOO.util.Event
- * @requires YAHOO.util.CustomEvent 
- * @constructor
- * @extends YAHOO.util.ColorAnim
- * @param {String | HTMLElement} el Reference to the element that will be animated
- * @param {Object} attributes The attribute(s) to be animated.  
- * Each attribute is an object with at minimum a "to" or "by" member defined.  
- * Additional optional members are "from" (defaults to current value), "units" (defaults to "px").  
- * All attribute names use camelCase.
- * @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
- * @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
- */
-    var Motion = function(el, attributes, duration,  method) {
-        if (el) { // dont break existing subclasses not using YAHOO.extend
-            Motion.superclass.constructor.call(this, el, attributes, duration, method);
-        }
-    };
-
-
-    Motion.NAME = 'Motion';
-
-    // shorthand
-    var Y = YAHOO.util;
-    YAHOO.extend(Motion, Y.ColorAnim);
-    
-    var superclass = Motion.superclass;
-    var proto = Motion.prototype;
-
-    proto.patterns.points = /^points$/i;
-    
-    proto.setAttribute = function(attr, val, unit) {
-        if (  this.patterns.points.test(attr) ) {
-            unit = unit || 'px';
-            superclass.setAttribute.call(this, 'left', val[0], unit);
-            superclass.setAttribute.call(this, 'top', val[1], unit);
-        } else {
-            superclass.setAttribute.call(this, attr, val, unit);
-        }
-    };
-
-    proto.getAttribute = function(attr) {
-        if (  this.patterns.points.test(attr) ) {
-            var val = [
-                superclass.getAttribute.call(this, 'left'),
-                superclass.getAttribute.call(this, 'top')
-            ];
-        } else {
-            val = superclass.getAttribute.call(this, attr);
-        }
-
-        return val;
-    };
-
-    proto.doMethod = function(attr, start, end) {
-        var val = null;
-
-        if ( this.patterns.points.test(attr) ) {
-            var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;				
-            val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
-        } else {
-            val = superclass.doMethod.call(this, attr, start, end);
-        }
-        return val;
-    };
-
-    proto.setRuntimeAttribute = function(attr) {
-        if ( this.patterns.points.test(attr) ) {
-            var el = this.getEl();
-            var attributes = this.attributes;
-            var start;
-            var control = attributes['points']['control'] || [];
-            var end;
-            var i, len;
-            
-            if (control.length > 0 && !(control[0] instanceof Array) ) { // could be single point or array of points
-                control = [control];
-            } else { // break reference to attributes.points.control
-                var tmp = []; 
-                for (i = 0, len = control.length; i< len; ++i) {
-                    tmp[i] = control[i];
-                }
-                control = tmp;
-            }
-
-            if (Y.Dom.getStyle(el, 'position') == 'static') { // default to relative
-                Y.Dom.setStyle(el, 'position', 'relative');
-            }
-    
-            if ( isset(attributes['points']['from']) ) {
-                Y.Dom.setXY(el, attributes['points']['from']); // set position to from point
-            } 
-            else { Y.Dom.setXY( el, Y.Dom.getXY(el) ); } // set it to current position
-            
-            start = this.getAttribute('points'); // get actual top & left
-            
-            // TO beats BY, per SMIL 2.1 spec
-            if ( isset(attributes['points']['to']) ) {
-                end = translateValues.call(this, attributes['points']['to'], start);
-                
-                var pageXY = Y.Dom.getXY(this.getEl());
-                for (i = 0, len = control.length; i < len; ++i) {
-                    control[i] = translateValues.call(this, control[i], start);
-                }
-
-                
-            } else if ( isset(attributes['points']['by']) ) {
-                end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
-                
-                for (i = 0, len = control.length; i < len; ++i) {
-                    control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
-                }
-            }
-
-            this.runtimeAttributes[attr] = [start];
-            
-            if (control.length > 0) {
-                this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control); 
-            }
-
-            this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
-        }
-        else {
-            superclass.setRuntimeAttribute.call(this, attr);
-        }
-    };
-    
-    var translateValues = function(val, start) {
-        var pageXY = Y.Dom.getXY(this.getEl());
-        val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
-
-        return val; 
-    };
-    
-    var isset = function(prop) {
-        return (typeof prop !== 'undefined');
-    };
-
-    Y.Motion = Motion;
-})();
-(function() {
-/**
- * Anim subclass for scrolling elements to a position defined by the "scroll"
- * member of "attributes".  All "scroll" members are arrays with x, y scroll positions.
- * <p>Usage: <code>var myAnim = new YAHOO.util.Scroll(el, { scroll: { to: [0, 800] } }, 1, YAHOO.util.Easing.easeOut);</code></p>
- * @class Scroll
- * @namespace YAHOO.util
- * @requires YAHOO.util.Anim
- * @requires YAHOO.util.AnimMgr
- * @requires YAHOO.util.Easing
- * @requires YAHOO.util.Bezier
- * @requires YAHOO.util.Dom
- * @requires YAHOO.util.Event
- * @requires YAHOO.util.CustomEvent 
- * @extends YAHOO.util.ColorAnim
- * @constructor
- * @param {String or HTMLElement} el Reference to the element that will be animated
- * @param {Object} attributes The attribute(s) to be animated.  
- * Each attribute is an object with at minimum a "to" or "by" member defined.  
- * Additional optional members are "from" (defaults to current value), "units" (defaults to "px").  
- * All attribute names use camelCase.
- * @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
- * @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
- */
-    var Scroll = function(el, attributes, duration,  method) {
-        if (el) { // dont break existing subclasses not using YAHOO.extend
-            Scroll.superclass.constructor.call(this, el, attributes, duration, method);
-        }
-    };
-
-    Scroll.NAME = 'Scroll';
-
-    // shorthand
-    var Y = YAHOO.util;
-    YAHOO.extend(Scroll, Y.ColorAnim);
-    
-    var superclass = Scroll.superclass;
-    var proto = Scroll.prototype;
-
-    proto.doMethod = function(attr, start, end) {
-        var val = null;
-    
-        if (attr == 'scroll') {
-            val = [
-                this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
-                this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
-            ];
-            
-        } else {
-            val = superclass.doMethod.call(this, attr, start, end);
-        }
-        return val;
-    };
-
-    proto.getAttribute = function(attr) {
-        var val = null;
-        var el = this.getEl();
-        
-        if (attr == 'scroll') {
-            val = [ el.scrollLeft, el.scrollTop ];
-        } else {
-            val = superclass.getAttribute.call(this, attr);
-        }
-        
-        return val;
-    };
-
-    proto.setAttribute = function(attr, val, unit) {
-        var el = this.getEl();
-        
-        if (attr == 'scroll') {
-            el.scrollLeft = val[0];
-            el.scrollTop = val[1];
-        } else {
-            superclass.setAttribute.call(this, attr, val, unit);
-        }
-    };
-
-    Y.Scroll = Scroll;
-})();
-YAHOO.register("animation", YAHOO.util.Anim, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/animation/animation-min.js b/eclipse.org-common/yui/2.6.0/build/animation/animation-min.js
deleted file mode 100644
index 47fa162..0000000
--- a/eclipse.org-common/yui/2.6.0/build/animation/animation-min.js
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){var B=YAHOO.util;var A=function(D,C,E,F){if(!D){}this.init(D,C,E,F);};A.NAME="Anim";A.prototype={toString:function(){var C=this.getEl()||{};var D=C.id||C.tagName;return(this.constructor.NAME+": "+D);},patterns:{noNegatives:/width|height|opacity|padding/i,offsetAttribute:/^((width|height)|(top|left))$/,defaultUnit:/width|height|top$|bottom$|left$|right$/i,offsetUnit:/\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i},doMethod:function(C,E,D){return this.method(this.currentFrame,E,D-E,this.totalFrames);},setAttribute:function(C,E,D){if(this.patterns.noNegatives.test(C)){E=(E>0)?E:0;}B.Dom.setStyle(this.getEl(),C,E+D);},getAttribute:function(C){var E=this.getEl();var G=B.Dom.getStyle(E,C);if(G!=="auto"&&!this.patterns.offsetUnit.test(G)){return parseFloat(G);}var D=this.patterns.offsetAttribute.exec(C)||[];var H=!!(D[3]);var F=!!(D[2]);if(F||(B.Dom.getStyle(E,"position")=="absolute"&&H)){G=E["offset"+D[0].charAt(0).toUpperCase()+D[0].substr(1)];}else{G=0;}return G;},getDefaultUnit:function(C){if(this.patterns.defaultUnit.test(C)){return"px";}return"";},setRuntimeAttribute:function(D){var I;var E;var F=this.attributes;this.runtimeAttributes[D]={};var H=function(J){return(typeof J!=="undefined");};if(!H(F[D]["to"])&&!H(F[D]["by"])){return false;}I=(H(F[D]["from"]))?F[D]["from"]:this.getAttribute(D);if(H(F[D]["to"])){E=F[D]["to"];}else{if(H(F[D]["by"])){if(I.constructor==Array){E=[];for(var G=0,C=I.length;G<C;++G){E[G]=I[G]+F[D]["by"][G]*1;}}else{E=I+F[D]["by"]*1;}}}this.runtimeAttributes[D].start=I;this.runtimeAttributes[D].end=E;this.runtimeAttributes[D].unit=(H(F[D].unit))?F[D]["unit"]:this.getDefaultUnit(D);return true;},init:function(E,J,I,C){var D=false;var F=null;var H=0;E=B.Dom.get(E);this.attributes=J||{};this.duration=!YAHOO.lang.isUndefined(I)?I:1;this.method=C||B.Easing.easeNone;this.useSeconds=true;this.currentFrame=0;this.totalFrames=B.AnimMgr.fps;this.setEl=function(M){E=B.Dom.get(M);};this.getEl=function(){return E;};this.isAnimated=function(){return D;};this.getStartTime=function(){return F;};this.runtimeAttributes={};this.animate=function(){if(this.isAnimated()){return false;}this.currentFrame=0;this.totalFrames=(this.useSeconds)?Math.ceil(B.AnimMgr.fps*this.duration):this.duration;if(this.duration===0&&this.useSeconds){this.totalFrames=1;}B.AnimMgr.registerElement(this);return true;};this.stop=function(M){if(!this.isAnimated()){return false;}if(M){this.currentFrame=this.totalFrames;this._onTween.fire();}B.AnimMgr.stop(this);};var L=function(){this.onStart.fire();this.runtimeAttributes={};for(var M in this.attributes){this.setRuntimeAttribute(M);}D=true;H=0;F=new Date();};var K=function(){var O={duration:new Date()-this.getStartTime(),currentFrame:this.currentFrame};O.toString=function(){return("duration: "+O.duration+", currentFrame: "+O.currentFrame);};this.onTween.fire(O);var N=this.runtimeAttributes;for(var M in N){this.setAttribute(M,this.doMethod(M,N[M].start,N[M].end),N[M].unit);}H+=1;};var G=function(){var M=(new Date()-F)/1000;var N={duration:M,frames:H,fps:H/M};N.toString=function(){return("duration: "+N.duration+", frames: "+N.frames+", fps: "+N.fps);};D=false;H=0;this.onComplete.fire(N);};this._onStart=new B.CustomEvent("_start",this,true);this.onStart=new B.CustomEvent("start",this);this.onTween=new B.CustomEvent("tween",this);this._onTween=new B.CustomEvent("_tween",this,true);this.onComplete=new B.CustomEvent("complete",this);this._onComplete=new B.CustomEvent("_complete",this,true);this._onStart.subscribe(L);this._onTween.subscribe(K);this._onComplete.subscribe(G);}};B.Anim=A;})();YAHOO.util.AnimMgr=new function(){var C=null;var B=[];var A=0;this.fps=1000;this.delay=1;this.registerElement=function(F){B[B.length]=F;A+=1;F._onStart.fire();this.start();};this.unRegister=function(G,F){F=F||E(G);if(!G.isAnimated()||F==-1){return false;}G._onComplete.fire();B.splice(F,1);A-=1;if(A<=0){this.stop();}return true;};this.start=function(){if(C===null){C=setInterval(this.run,this.delay);}};this.stop=function(H){if(!H){clearInterval(C);for(var G=0,F=B.length;G<F;++G){this.unRegister(B[0],0);}B=[];C=null;A=0;}else{this.unRegister(H);}};this.run=function(){for(var H=0,F=B.length;H<F;++H){var G=B[H];if(!G||!G.isAnimated()){continue;}if(G.currentFrame<G.totalFrames||G.totalFrames===null){G.currentFrame+=1;if(G.useSeconds){D(G);}G._onTween.fire();}else{YAHOO.util.AnimMgr.stop(G,H);}}};var E=function(H){for(var G=0,F=B.length;G<F;++G){if(B[G]==H){return G;}}return -1;};var D=function(G){var J=G.totalFrames;var I=G.currentFrame;var H=(G.currentFrame*G.duration*1000/G.totalFrames);var F=(new Date()-G.getStartTime());var K=0;if(F<G.duration*1000){K=Math.round((F/H-1)*G.currentFrame);}else{K=J-(I+1);}if(K>0&&isFinite(K)){if(G.currentFrame+K>=J){K=J-(I+1);}G.currentFrame+=K;}};};YAHOO.util.Bezier=new function(){this.getPosition=function(E,D){var F=E.length;var C=[];for(var B=0;B<F;++B){C[B]=[E[B][0],E[B][1]];}for(var A=1;A<F;++A){for(B=0;B<F-A;++B){C[B][0]=(1-D)*C[B][0]+D*C[parseInt(B+1,10)][0];C[B][1]=(1-D)*C[B][1]+D*C[parseInt(B+1,10)][1];}}return[C[0][0],C[0][1]];};};(function(){var A=function(F,E,G,H){A.superclass.constructor.call(this,F,E,G,H);};A.NAME="ColorAnim";A.DEFAULT_BGCOLOR="#fff";var C=YAHOO.util;YAHOO.extend(A,C.Anim);var D=A.superclass;var B=A.prototype;B.patterns.color=/color$/i;B.patterns.rgb=/^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;B.patterns.hex=/^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;B.patterns.hex3=/^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;B.patterns.transparent=/^transparent|rgba\(0, 0, 0, 0\)$/;B.parseColor=function(E){if(E.length==3){return E;}var F=this.patterns.hex.exec(E);if(F&&F.length==4){return[parseInt(F[1],16),parseInt(F[2],16),parseInt(F[3],16)];}F=this.patterns.rgb.exec(E);if(F&&F.length==4){return[parseInt(F[1],10),parseInt(F[2],10),parseInt(F[3],10)];}F=this.patterns.hex3.exec(E);if(F&&F.length==4){return[parseInt(F[1]+F[1],16),parseInt(F[2]+F[2],16),parseInt(F[3]+F[3],16)];}return null;};B.getAttribute=function(E){var G=this.getEl();
-if(this.patterns.color.test(E)){var I=YAHOO.util.Dom.getStyle(G,E);var H=this;if(this.patterns.transparent.test(I)){var F=YAHOO.util.Dom.getAncestorBy(G,function(J){return !H.patterns.transparent.test(I);});if(F){I=C.Dom.getStyle(F,E);}else{I=A.DEFAULT_BGCOLOR;}}}else{I=D.getAttribute.call(this,E);}return I;};B.doMethod=function(F,J,G){var I;if(this.patterns.color.test(F)){I=[];for(var H=0,E=J.length;H<E;++H){I[H]=D.doMethod.call(this,F,J[H],G[H]);}I="rgb("+Math.floor(I[0])+","+Math.floor(I[1])+","+Math.floor(I[2])+")";}else{I=D.doMethod.call(this,F,J,G);}return I;};B.setRuntimeAttribute=function(F){D.setRuntimeAttribute.call(this,F);if(this.patterns.color.test(F)){var H=this.attributes;var J=this.parseColor(this.runtimeAttributes[F].start);var G=this.parseColor(this.runtimeAttributes[F].end);if(typeof H[F]["to"]==="undefined"&&typeof H[F]["by"]!=="undefined"){G=this.parseColor(H[F].by);for(var I=0,E=J.length;I<E;++I){G[I]=J[I]+G[I];}}this.runtimeAttributes[F].start=J;this.runtimeAttributes[F].end=G;}};C.ColorAnim=A;})();
-/*
-TERMS OF USE - EASING EQUATIONS
-Open source under the BSD License.
-Copyright 2001 Robert Penner All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
- * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-*/
-YAHOO.util.Easing={easeNone:function(B,A,D,C){return D*B/C+A;},easeIn:function(B,A,D,C){return D*(B/=C)*B+A;},easeOut:function(B,A,D,C){return -D*(B/=C)*(B-2)+A;},easeBoth:function(B,A,D,C){if((B/=C/2)<1){return D/2*B*B+A;}return -D/2*((--B)*(B-2)-1)+A;},easeInStrong:function(B,A,D,C){return D*(B/=C)*B*B*B+A;},easeOutStrong:function(B,A,D,C){return -D*((B=B/C-1)*B*B*B-1)+A;},easeBothStrong:function(B,A,D,C){if((B/=C/2)<1){return D/2*B*B*B*B+A;}return -D/2*((B-=2)*B*B*B-2)+A;},elasticIn:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F)==1){return A+G;}if(!E){E=F*0.3;}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}return -(B*Math.pow(2,10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E))+A;},elasticOut:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F)==1){return A+G;}if(!E){E=F*0.3;}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}return B*Math.pow(2,-10*C)*Math.sin((C*F-D)*(2*Math.PI)/E)+G+A;},elasticBoth:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F/2)==2){return A+G;}if(!E){E=F*(0.3*1.5);}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}if(C<1){return -0.5*(B*Math.pow(2,10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E))+A;}return B*Math.pow(2,-10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E)*0.5+G+A;},backIn:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}return E*(B/=D)*B*((C+1)*B-C)+A;},backOut:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}return E*((B=B/D-1)*B*((C+1)*B+C)+1)+A;},backBoth:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}if((B/=D/2)<1){return E/2*(B*B*(((C*=(1.525))+1)*B-C))+A;}return E/2*((B-=2)*B*(((C*=(1.525))+1)*B+C)+2)+A;},bounceIn:function(B,A,D,C){return D-YAHOO.util.Easing.bounceOut(C-B,0,D,C)+A;},bounceOut:function(B,A,D,C){if((B/=C)<(1/2.75)){return D*(7.5625*B*B)+A;}else{if(B<(2/2.75)){return D*(7.5625*(B-=(1.5/2.75))*B+0.75)+A;}else{if(B<(2.5/2.75)){return D*(7.5625*(B-=(2.25/2.75))*B+0.9375)+A;}}}return D*(7.5625*(B-=(2.625/2.75))*B+0.984375)+A;},bounceBoth:function(B,A,D,C){if(B<C/2){return YAHOO.util.Easing.bounceIn(B*2,0,D,C)*0.5+A;}return YAHOO.util.Easing.bounceOut(B*2-C,0,D,C)*0.5+D*0.5+A;}};(function(){var A=function(H,G,I,J){if(H){A.superclass.constructor.call(this,H,G,I,J);}};A.NAME="Motion";var E=YAHOO.util;YAHOO.extend(A,E.ColorAnim);var F=A.superclass;var C=A.prototype;C.patterns.points=/^points$/i;C.setAttribute=function(G,I,H){if(this.patterns.points.test(G)){H=H||"px";F.setAttribute.call(this,"left",I[0],H);F.setAttribute.call(this,"top",I[1],H);}else{F.setAttribute.call(this,G,I,H);}};C.getAttribute=function(G){if(this.patterns.points.test(G)){var H=[F.getAttribute.call(this,"left"),F.getAttribute.call(this,"top")];}else{H=F.getAttribute.call(this,G);}return H;};C.doMethod=function(G,K,H){var J=null;if(this.patterns.points.test(G)){var I=this.method(this.currentFrame,0,100,this.totalFrames)/100;J=E.Bezier.getPosition(this.runtimeAttributes[G],I);}else{J=F.doMethod.call(this,G,K,H);}return J;};C.setRuntimeAttribute=function(P){if(this.patterns.points.test(P)){var H=this.getEl();var J=this.attributes;var G;var L=J["points"]["control"]||[];var I;var M,O;if(L.length>0&&!(L[0] instanceof Array)){L=[L];}else{var K=[];for(M=0,O=L.length;M<O;++M){K[M]=L[M];}L=K;}if(E.Dom.getStyle(H,"position")=="static"){E.Dom.setStyle(H,"position","relative");}if(D(J["points"]["from"])){E.Dom.setXY(H,J["points"]["from"]);}else{E.Dom.setXY(H,E.Dom.getXY(H));
-}G=this.getAttribute("points");if(D(J["points"]["to"])){I=B.call(this,J["points"]["to"],G);var N=E.Dom.getXY(this.getEl());for(M=0,O=L.length;M<O;++M){L[M]=B.call(this,L[M],G);}}else{if(D(J["points"]["by"])){I=[G[0]+J["points"]["by"][0],G[1]+J["points"]["by"][1]];for(M=0,O=L.length;M<O;++M){L[M]=[G[0]+L[M][0],G[1]+L[M][1]];}}}this.runtimeAttributes[P]=[G];if(L.length>0){this.runtimeAttributes[P]=this.runtimeAttributes[P].concat(L);}this.runtimeAttributes[P][this.runtimeAttributes[P].length]=I;}else{F.setRuntimeAttribute.call(this,P);}};var B=function(G,I){var H=E.Dom.getXY(this.getEl());G=[G[0]-H[0]+I[0],G[1]-H[1]+I[1]];return G;};var D=function(G){return(typeof G!=="undefined");};E.Motion=A;})();(function(){var D=function(F,E,G,H){if(F){D.superclass.constructor.call(this,F,E,G,H);}};D.NAME="Scroll";var B=YAHOO.util;YAHOO.extend(D,B.ColorAnim);var C=D.superclass;var A=D.prototype;A.doMethod=function(E,H,F){var G=null;if(E=="scroll"){G=[this.method(this.currentFrame,H[0],F[0]-H[0],this.totalFrames),this.method(this.currentFrame,H[1],F[1]-H[1],this.totalFrames)];}else{G=C.doMethod.call(this,E,H,F);}return G;};A.getAttribute=function(E){var G=null;var F=this.getEl();if(E=="scroll"){G=[F.scrollLeft,F.scrollTop];}else{G=C.getAttribute.call(this,E);}return G;};A.setAttribute=function(E,H,G){var F=this.getEl();if(E=="scroll"){F.scrollLeft=H[0];F.scrollTop=H[1];}else{C.setAttribute.call(this,E,H,G);}};B.Scroll=D;})();YAHOO.register("animation",YAHOO.util.Anim,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/animation/animation.js b/eclipse.org-common/yui/2.6.0/build/animation/animation.js
deleted file mode 100644
index a198559..0000000
--- a/eclipse.org-common/yui/2.6.0/build/animation/animation.js
+++ /dev/null
@@ -1,1381 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function() {
-
-var Y = YAHOO.util;
-
-/*
-Copyright (c) 2006, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-*/
-
-/**
- * The animation module provides allows effects to be added to HTMLElements.
- * @module animation
- * @requires yahoo, event, dom
- */
-
-/**
- *
- * Base animation class that provides the interface for building animated effects.
- * <p>Usage: var myAnim = new YAHOO.util.Anim(el, { width: { from: 10, to: 100 } }, 1, YAHOO.util.Easing.easeOut);</p>
- * @class Anim
- * @namespace YAHOO.util
- * @requires YAHOO.util.AnimMgr
- * @requires YAHOO.util.Easing
- * @requires YAHOO.util.Dom
- * @requires YAHOO.util.Event
- * @requires YAHOO.util.CustomEvent
- * @constructor
- * @param {String | HTMLElement} el Reference to the element that will be animated
- * @param {Object} attributes The attribute(s) to be animated.  
- * Each attribute is an object with at minimum a "to" or "by" member defined.  
- * Additional optional members are "from" (defaults to current value), "units" (defaults to "px").  
- * All attribute names use camelCase.
- * @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
- * @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
- */
-
-var Anim = function(el, attributes, duration, method) {
-    if (!el) {
-    }
-    this.init(el, attributes, duration, method); 
-};
-
-Anim.NAME = 'Anim';
-
-Anim.prototype = {
-    /**
-     * Provides a readable name for the Anim instance.
-     * @method toString
-     * @return {String}
-     */
-    toString: function() {
-        var el = this.getEl() || {};
-        var id = el.id || el.tagName;
-        return (this.constructor.NAME + ': ' + id);
-    },
-    
-    patterns: { // cached for performance
-        noNegatives:        /width|height|opacity|padding/i, // keep at zero or above
-        offsetAttribute:  /^((width|height)|(top|left))$/, // use offsetValue as default
-        defaultUnit:        /width|height|top$|bottom$|left$|right$/i, // use 'px' by default
-        offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i // IE may return these, so convert these to offset
-    },
-    
-    /**
-     * Returns the value computed by the animation's "method".
-     * @method doMethod
-     * @param {String} attr The name of the attribute.
-     * @param {Number} start The value this attribute should start from for this animation.
-     * @param {Number} end  The value this attribute should end at for this animation.
-     * @return {Number} The Value to be applied to the attribute.
-     */
-    doMethod: function(attr, start, end) {
-        return this.method(this.currentFrame, start, end - start, this.totalFrames);
-    },
-    
-    /**
-     * Applies a value to an attribute.
-     * @method setAttribute
-     * @param {String} attr The name of the attribute.
-     * @param {Number} val The value to be applied to the attribute.
-     * @param {String} unit The unit ('px', '%', etc.) of the value.
-     */
-    setAttribute: function(attr, val, unit) {
-        if ( this.patterns.noNegatives.test(attr) ) {
-            val = (val > 0) ? val : 0;
-        }
-
-        Y.Dom.setStyle(this.getEl(), attr, val + unit);
-    },                        
-    
-    /**
-     * Returns current value of the attribute.
-     * @method getAttribute
-     * @param {String} attr The name of the attribute.
-     * @return {Number} val The current value of the attribute.
-     */
-    getAttribute: function(attr) {
-        var el = this.getEl();
-        var val = Y.Dom.getStyle(el, attr);
-
-        if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
-            return parseFloat(val);
-        }
-        
-        var a = this.patterns.offsetAttribute.exec(attr) || [];
-        var pos = !!( a[3] ); // top or left
-        var box = !!( a[2] ); // width or height
-        
-        // use offsets for width/height and abs pos top/left
-        if ( box || (Y.Dom.getStyle(el, 'position') == 'absolute' && pos) ) {
-            val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
-        } else { // default to zero for other 'auto'
-            val = 0;
-        }
-
-        return val;
-    },
-    
-    /**
-     * Returns the unit to use when none is supplied.
-     * @method getDefaultUnit
-     * @param {attr} attr The name of the attribute.
-     * @return {String} The default unit to be used.
-     */
-    getDefaultUnit: function(attr) {
-         if ( this.patterns.defaultUnit.test(attr) ) {
-            return 'px';
-         }
-         
-         return '';
-    },
-        
-    /**
-     * Sets the actual values to be used during the animation.  Should only be needed for subclass use.
-     * @method setRuntimeAttribute
-     * @param {Object} attr The attribute object
-     * @private 
-     */
-    setRuntimeAttribute: function(attr) {
-        var start;
-        var end;
-        var attributes = this.attributes;
-
-        this.runtimeAttributes[attr] = {};
-        
-        var isset = function(prop) {
-            return (typeof prop !== 'undefined');
-        };
-        
-        if ( !isset(attributes[attr]['to']) && !isset(attributes[attr]['by']) ) {
-            return false; // note return; nothing to animate to
-        }
-        
-        start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
-
-        // To beats by, per SMIL 2.1 spec
-        if ( isset(attributes[attr]['to']) ) {
-            end = attributes[attr]['to'];
-        } else if ( isset(attributes[attr]['by']) ) {
-            if (start.constructor == Array) {
-                end = [];
-                for (var i = 0, len = start.length; i < len; ++i) {
-                    end[i] = start[i] + attributes[attr]['by'][i] * 1; // times 1 to cast "by" 
-                }
-            } else {
-                end = start + attributes[attr]['by'] * 1;
-            }
-        }
-        
-        this.runtimeAttributes[attr].start = start;
-        this.runtimeAttributes[attr].end = end;
-
-        // set units if needed
-        this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ?
-                attributes[attr]['unit'] : this.getDefaultUnit(attr);
-        return true;
-    },
-
-    /**
-     * Constructor for Anim instance.
-     * @method init
-     * @param {String | HTMLElement} el Reference to the element that will be animated
-     * @param {Object} attributes The attribute(s) to be animated.  
-     * Each attribute is an object with at minimum a "to" or "by" member defined.  
-     * Additional optional members are "from" (defaults to current value), "units" (defaults to "px").  
-     * All attribute names use camelCase.
-     * @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
-     * @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
-     */ 
-    init: function(el, attributes, duration, method) {
-        /**
-         * Whether or not the animation is running.
-         * @property isAnimated
-         * @private
-         * @type Boolean
-         */
-        var isAnimated = false;
-        
-        /**
-         * A Date object that is created when the animation begins.
-         * @property startTime
-         * @private
-         * @type Date
-         */
-        var startTime = null;
-        
-        /**
-         * The number of frames this animation was able to execute.
-         * @property actualFrames
-         * @private
-         * @type Int
-         */
-        var actualFrames = 0; 
-
-        /**
-         * The element to be animated.
-         * @property el
-         * @private
-         * @type HTMLElement
-         */
-        el = Y.Dom.get(el);
-        
-        /**
-         * The collection of attributes to be animated.  
-         * Each attribute must have at least a "to" or "by" defined in order to animate.  
-         * If "to" is supplied, the animation will end with the attribute at that value.  
-         * If "by" is supplied, the animation will end at that value plus its starting value. 
-         * If both are supplied, "to" is used, and "by" is ignored. 
-         * Optional additional member include "from" (the value the attribute should start animating from, defaults to current value), and "unit" (the units to apply to the values).
-         * @property attributes
-         * @type Object
-         */
-        this.attributes = attributes || {};
-        
-        /**
-         * The length of the animation.  Defaults to "1" (second).
-         * @property duration
-         * @type Number
-         */
-        this.duration = !YAHOO.lang.isUndefined(duration) ? duration : 1;
-        
-        /**
-         * The method that will provide values to the attribute(s) during the animation. 
-         * Defaults to "YAHOO.util.Easing.easeNone".
-         * @property method
-         * @type Function
-         */
-        this.method = method || Y.Easing.easeNone;
-
-        /**
-         * Whether or not the duration should be treated as seconds.
-         * Defaults to true.
-         * @property useSeconds
-         * @type Boolean
-         */
-        this.useSeconds = true; // default to seconds
-        
-        /**
-         * The location of the current animation on the timeline.
-         * In time-based animations, this is used by AnimMgr to ensure the animation finishes on time.
-         * @property currentFrame
-         * @type Int
-         */
-        this.currentFrame = 0;
-        
-        /**
-         * The total number of frames to be executed.
-         * In time-based animations, this is used by AnimMgr to ensure the animation finishes on time.
-         * @property totalFrames
-         * @type Int
-         */
-        this.totalFrames = Y.AnimMgr.fps;
-        
-        /**
-         * Changes the animated element
-         * @method setEl
-         */
-        this.setEl = function(element) {
-            el = Y.Dom.get(element);
-        };
-        
-        /**
-         * Returns a reference to the animated element.
-         * @method getEl
-         * @return {HTMLElement}
-         */
-        this.getEl = function() { return el; };
-        
-        /**
-         * Checks whether the element is currently animated.
-         * @method isAnimated
-         * @return {Boolean} current value of isAnimated.     
-         */
-        this.isAnimated = function() {
-            return isAnimated;
-        };
-        
-        /**
-         * Returns the animation start time.
-         * @method getStartTime
-         * @return {Date} current value of startTime.      
-         */
-        this.getStartTime = function() {
-            return startTime;
-        };        
-        
-        this.runtimeAttributes = {};
-        
-        
-        
-        /**
-         * Starts the animation by registering it with the animation manager. 
-         * @method animate  
-         */
-        this.animate = function() {
-            if ( this.isAnimated() ) {
-                return false;
-            }
-            
-            this.currentFrame = 0;
-            
-            this.totalFrames = ( this.useSeconds ) ? Math.ceil(Y.AnimMgr.fps * this.duration) : this.duration;
-    
-            if (this.duration === 0 && this.useSeconds) { // jump to last frame if zero second duration 
-                this.totalFrames = 1; 
-            }
-            Y.AnimMgr.registerElement(this);
-            return true;
-        };
-          
-        /**
-         * Stops the animation.  Normally called by AnimMgr when animation completes.
-         * @method stop
-         * @param {Boolean} finish (optional) If true, animation will jump to final frame.
-         */ 
-        this.stop = function(finish) {
-            if (!this.isAnimated()) { // nothing to stop
-                return false;
-            }
-
-            if (finish) {
-                 this.currentFrame = this.totalFrames;
-                 this._onTween.fire();
-            }
-            Y.AnimMgr.stop(this);
-        };
-        
-        var onStart = function() {            
-            this.onStart.fire();
-            
-            this.runtimeAttributes = {};
-            for (var attr in this.attributes) {
-                this.setRuntimeAttribute(attr);
-            }
-            
-            isAnimated = true;
-            actualFrames = 0;
-            startTime = new Date(); 
-        };
-        
-        /**
-         * Feeds the starting and ending values for each animated attribute to doMethod once per frame, then applies the resulting value to the attribute(s).
-         * @private
-         */
-         
-        var onTween = function() {
-            var data = {
-                duration: new Date() - this.getStartTime(),
-                currentFrame: this.currentFrame
-            };
-            
-            data.toString = function() {
-                return (
-                    'duration: ' + data.duration +
-                    ', currentFrame: ' + data.currentFrame
-                );
-            };
-            
-            this.onTween.fire(data);
-            
-            var runtimeAttributes = this.runtimeAttributes;
-            
-            for (var attr in runtimeAttributes) {
-                this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit); 
-            }
-            
-            actualFrames += 1;
-        };
-        
-        var onComplete = function() {
-            var actual_duration = (new Date() - startTime) / 1000 ;
-            
-            var data = {
-                duration: actual_duration,
-                frames: actualFrames,
-                fps: actualFrames / actual_duration
-            };
-            
-            data.toString = function() {
-                return (
-                    'duration: ' + data.duration +
-                    ', frames: ' + data.frames +
-                    ', fps: ' + data.fps
-                );
-            };
-            
-            isAnimated = false;
-            actualFrames = 0;
-            this.onComplete.fire(data);
-        };
-        
-        /**
-         * Custom event that fires after onStart, useful in subclassing
-         * @private
-         */    
-        this._onStart = new Y.CustomEvent('_start', this, true);
-
-        /**
-         * Custom event that fires when animation begins
-         * Listen via subscribe method (e.g. myAnim.onStart.subscribe(someFunction)
-         * @event onStart
-         */    
-        this.onStart = new Y.CustomEvent('start', this);
-        
-        /**
-         * Custom event that fires between each frame
-         * Listen via subscribe method (e.g. myAnim.onTween.subscribe(someFunction)
-         * @event onTween
-         */
-        this.onTween = new Y.CustomEvent('tween', this);
-        
-        /**
-         * Custom event that fires after onTween
-         * @private
-         */
-        this._onTween = new Y.CustomEvent('_tween', this, true);
-        
-        /**
-         * Custom event that fires when animation ends
-         * Listen via subscribe method (e.g. myAnim.onComplete.subscribe(someFunction)
-         * @event onComplete
-         */
-        this.onComplete = new Y.CustomEvent('complete', this);
-        /**
-         * Custom event that fires after onComplete
-         * @private
-         */
-        this._onComplete = new Y.CustomEvent('_complete', this, true);
-
-        this._onStart.subscribe(onStart);
-        this._onTween.subscribe(onTween);
-        this._onComplete.subscribe(onComplete);
-    }
-};
-
-    Y.Anim = Anim;
-})();
-/**
- * Handles animation queueing and threading.
- * Used by Anim and subclasses.
- * @class AnimMgr
- * @namespace YAHOO.util
- */
-YAHOO.util.AnimMgr = new function() {
-    /** 
-     * Reference to the animation Interval.
-     * @property thread
-     * @private
-     * @type Int
-     */
-    var thread = null;
-    
-    /** 
-     * The current queue of registered animation objects.
-     * @property queue
-     * @private
-     * @type Array
-     */    
-    var queue = [];
-
-    /** 
-     * The number of active animations.
-     * @property tweenCount
-     * @private
-     * @type Int
-     */        
-    var tweenCount = 0;
-
-    /** 
-     * Base frame rate (frames per second). 
-     * Arbitrarily high for better x-browser calibration (slower browsers drop more frames).
-     * @property fps
-     * @type Int
-     * 
-     */
-    this.fps = 1000;
-
-    /** 
-     * Interval delay in milliseconds, defaults to fastest possible.
-     * @property delay
-     * @type Int
-     * 
-     */
-    this.delay = 1;
-
-    /**
-     * Adds an animation instance to the animation queue.
-     * All animation instances must be registered in order to animate.
-     * @method registerElement
-     * @param {object} tween The Anim instance to be be registered
-     */
-    this.registerElement = function(tween) {
-        queue[queue.length] = tween;
-        tweenCount += 1;
-        tween._onStart.fire();
-        this.start();
-    };
-    
-    /**
-     * removes an animation instance from the animation queue.
-     * All animation instances must be registered in order to animate.
-     * @method unRegister
-     * @param {object} tween The Anim instance to be be registered
-     * @param {Int} index The index of the Anim instance
-     * @private
-     */
-    this.unRegister = function(tween, index) {
-        index = index || getIndex(tween);
-        if (!tween.isAnimated() || index == -1) {
-            return false;
-        }
-        
-        tween._onComplete.fire();
-        queue.splice(index, 1);
-
-        tweenCount -= 1;
-        if (tweenCount <= 0) {
-            this.stop();
-        }
-
-        return true;
-    };
-    
-    /**
-     * Starts the animation thread.
-	* Only one thread can run at a time.
-     * @method start
-     */    
-    this.start = function() {
-        if (thread === null) {
-            thread = setInterval(this.run, this.delay);
-        }
-    };
-
-    /**
-     * Stops the animation thread or a specific animation instance.
-     * @method stop
-     * @param {object} tween A specific Anim instance to stop (optional)
-     * If no instance given, Manager stops thread and all animations.
-     */    
-    this.stop = function(tween) {
-        if (!tween) {
-            clearInterval(thread);
-            
-            for (var i = 0, len = queue.length; i < len; ++i) {
-                this.unRegister(queue[0], 0);  
-            }
-
-            queue = [];
-            thread = null;
-            tweenCount = 0;
-        }
-        else {
-            this.unRegister(tween);
-        }
-    };
-    
-    /**
-     * Called per Interval to handle each animation frame.
-     * @method run
-     */    
-    this.run = function() {
-        for (var i = 0, len = queue.length; i < len; ++i) {
-            var tween = queue[i];
-            if ( !tween || !tween.isAnimated() ) { continue; }
-
-            if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
-            {
-                tween.currentFrame += 1;
-                
-                if (tween.useSeconds) {
-                    correctFrame(tween);
-                }
-                tween._onTween.fire();          
-            }
-            else { YAHOO.util.AnimMgr.stop(tween, i); }
-        }
-    };
-    
-    var getIndex = function(anim) {
-        for (var i = 0, len = queue.length; i < len; ++i) {
-            if (queue[i] == anim) {
-                return i; // note return;
-            }
-        }
-        return -1;
-    };
-    
-    /**
-     * On the fly frame correction to keep animation on time.
-     * @method correctFrame
-     * @private
-     * @param {Object} tween The Anim instance being corrected.
-     */
-    var correctFrame = function(tween) {
-        var frames = tween.totalFrames;
-        var frame = tween.currentFrame;
-        var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
-        var elapsed = (new Date() - tween.getStartTime());
-        var tweak = 0;
-        
-        if (elapsed < tween.duration * 1000) { // check if falling behind
-            tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
-        } else { // went over duration, so jump to end
-            tweak = frames - (frame + 1); 
-        }
-        if (tweak > 0 && isFinite(tweak)) { // adjust if needed
-            if (tween.currentFrame + tweak >= frames) {// dont go past last frame
-                tweak = frames - (frame + 1);
-            }
-            
-            tween.currentFrame += tweak;      
-        }
-    };
-};
-/**
- * Used to calculate Bezier splines for any number of control points.
- * @class Bezier
- * @namespace YAHOO.util
- *
- */
-YAHOO.util.Bezier = new function() {
-    /**
-     * Get the current position of the animated element based on t.
-     * Each point is an array of "x" and "y" values (0 = x, 1 = y)
-     * At least 2 points are required (start and end).
-     * First point is start. Last point is end.
-     * Additional control points are optional.     
-     * @method getPosition
-     * @param {Array} points An array containing Bezier points
-     * @param {Number} t A number between 0 and 1 which is the basis for determining current position
-     * @return {Array} An array containing int x and y member data
-     */
-    this.getPosition = function(points, t) {  
-        var n = points.length;
-        var tmp = [];
-
-        for (var i = 0; i < n; ++i){
-            tmp[i] = [points[i][0], points[i][1]]; // save input
-        }
-        
-        for (var j = 1; j < n; ++j) {
-            for (i = 0; i < n - j; ++i) {
-                tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
-                tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1]; 
-            }
-        }
-    
-        return [ tmp[0][0], tmp[0][1] ]; 
-    
-    };
-};
-(function() {
-/**
- * Anim subclass for color transitions.
- * <p>Usage: <code>var myAnim = new Y.ColorAnim(el, { backgroundColor: { from: '#FF0000', to: '#FFFFFF' } }, 1, Y.Easing.easeOut);</code> Color values can be specified with either 112233, #112233, 
- * [255,255,255], or rgb(255,255,255)</p>
- * @class ColorAnim
- * @namespace YAHOO.util
- * @requires YAHOO.util.Anim
- * @requires YAHOO.util.AnimMgr
- * @requires YAHOO.util.Easing
- * @requires YAHOO.util.Bezier
- * @requires YAHOO.util.Dom
- * @requires YAHOO.util.Event
- * @constructor
- * @extends YAHOO.util.Anim
- * @param {HTMLElement | String} el Reference to the element that will be animated
- * @param {Object} attributes The attribute(s) to be animated.
- * Each attribute is an object with at minimum a "to" or "by" member defined.
- * Additional optional members are "from" (defaults to current value), "units" (defaults to "px").
- * All attribute names use camelCase.
- * @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
- * @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
- */
-    var ColorAnim = function(el, attributes, duration,  method) {
-        ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
-    };
-    
-    ColorAnim.NAME = 'ColorAnim';
-
-    ColorAnim.DEFAULT_BGCOLOR = '#fff';
-    // shorthand
-    var Y = YAHOO.util;
-    YAHOO.extend(ColorAnim, Y.Anim);
-
-    var superclass = ColorAnim.superclass;
-    var proto = ColorAnim.prototype;
-    
-    proto.patterns.color = /color$/i;
-    proto.patterns.rgb            = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
-    proto.patterns.hex            = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
-    proto.patterns.hex3          = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
-    proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/; // need rgba for safari
-    
-    /**
-     * Attempts to parse the given string and return a 3-tuple.
-     * @method parseColor
-     * @param {String} s The string to parse.
-     * @return {Array} The 3-tuple of rgb values.
-     */
-    proto.parseColor = function(s) {
-        if (s.length == 3) { return s; }
-    
-        var c = this.patterns.hex.exec(s);
-        if (c && c.length == 4) {
-            return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
-        }
-    
-        c = this.patterns.rgb.exec(s);
-        if (c && c.length == 4) {
-            return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
-        }
-    
-        c = this.patterns.hex3.exec(s);
-        if (c && c.length == 4) {
-            return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
-        }
-        
-        return null;
-    };
-
-    proto.getAttribute = function(attr) {
-        var el = this.getEl();
-        if (this.patterns.color.test(attr) ) {
-            var val = YAHOO.util.Dom.getStyle(el, attr);
-            
-            var that = this;
-            if (this.patterns.transparent.test(val)) { // bgcolor default
-                var parent = YAHOO.util.Dom.getAncestorBy(el, function(node) {
-                    return !that.patterns.transparent.test(val);
-                });
-
-                if (parent) {
-                    val = Y.Dom.getStyle(parent, attr);
-                } else {
-                    val = ColorAnim.DEFAULT_BGCOLOR;
-                }
-            }
-        } else {
-            val = superclass.getAttribute.call(this, attr);
-        }
-
-        return val;
-    };
-    
-    proto.doMethod = function(attr, start, end) {
-        var val;
-    
-        if ( this.patterns.color.test(attr) ) {
-            val = [];
-            for (var i = 0, len = start.length; i < len; ++i) {
-                val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
-            }
-            
-            val = 'rgb('+Math.floor(val[0])+','+Math.floor(val[1])+','+Math.floor(val[2])+')';
-        }
-        else {
-            val = superclass.doMethod.call(this, attr, start, end);
-        }
-
-        return val;
-    };
-
-    proto.setRuntimeAttribute = function(attr) {
-        superclass.setRuntimeAttribute.call(this, attr);
-        
-        if ( this.patterns.color.test(attr) ) {
-            var attributes = this.attributes;
-            var start = this.parseColor(this.runtimeAttributes[attr].start);
-            var end = this.parseColor(this.runtimeAttributes[attr].end);
-            // fix colors if going "by"
-            if ( typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined' ) {
-                end = this.parseColor(attributes[attr].by);
-            
-                for (var i = 0, len = start.length; i < len; ++i) {
-                    end[i] = start[i] + end[i];
-                }
-            }
-            
-            this.runtimeAttributes[attr].start = start;
-            this.runtimeAttributes[attr].end = end;
-        }
-    };
-
-    Y.ColorAnim = ColorAnim;
-})();
-/*!
-TERMS OF USE - EASING EQUATIONS
-Open source under the BSD License.
-Copyright 2001 Robert Penner All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
- * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-*/
-
-/**
- * Singleton that determines how an animation proceeds from start to end.
- * @class Easing
- * @namespace YAHOO.util
-*/
-
-YAHOO.util.Easing = {
-
-    /**
-     * Uniform speed between points.
-     * @method easeNone
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    easeNone: function (t, b, c, d) {
-    	return c*t/d + b;
-    },
-    
-    /**
-     * Begins slowly and accelerates towards end.
-     * @method easeIn
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    easeIn: function (t, b, c, d) {
-    	return c*(t/=d)*t + b;
-    },
-
-    /**
-     * Begins quickly and decelerates towards end.
-     * @method easeOut
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    easeOut: function (t, b, c, d) {
-    	return -c *(t/=d)*(t-2) + b;
-    },
-    
-    /**
-     * Begins slowly and decelerates towards end.
-     * @method easeBoth
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    easeBoth: function (t, b, c, d) {
-    	if ((t/=d/2) < 1) {
-            return c/2*t*t + b;
-        }
-        
-    	return -c/2 * ((--t)*(t-2) - 1) + b;
-    },
-    
-    /**
-     * Begins slowly and accelerates towards end.
-     * @method easeInStrong
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    easeInStrong: function (t, b, c, d) {
-    	return c*(t/=d)*t*t*t + b;
-    },
-    
-    /**
-     * Begins quickly and decelerates towards end.
-     * @method easeOutStrong
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    easeOutStrong: function (t, b, c, d) {
-    	return -c * ((t=t/d-1)*t*t*t - 1) + b;
-    },
-    
-    /**
-     * Begins slowly and decelerates towards end.
-     * @method easeBothStrong
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    easeBothStrong: function (t, b, c, d) {
-    	if ((t/=d/2) < 1) {
-            return c/2*t*t*t*t + b;
-        }
-        
-    	return -c/2 * ((t-=2)*t*t*t - 2) + b;
-    },
-
-    /**
-     * Snap in elastic effect.
-     * @method elasticIn
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @param {Number} a Amplitude (optional)
-     * @param {Number} p Period (optional)
-     * @return {Number} The computed value for the current animation frame
-     */
-
-    elasticIn: function (t, b, c, d, a, p) {
-    	if (t == 0) {
-            return b;
-        }
-        if ( (t /= d) == 1 ) {
-            return b+c;
-        }
-        if (!p) {
-            p=d*.3;
-        }
-        
-    	if (!a || a < Math.abs(c)) {
-            a = c; 
-            var s = p/4;
-        }
-    	else {
-            var s = p/(2*Math.PI) * Math.asin (c/a);
-        }
-        
-    	return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
-    },
-
-    /**
-     * Snap out elastic effect.
-     * @method elasticOut
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @param {Number} a Amplitude (optional)
-     * @param {Number} p Period (optional)
-     * @return {Number} The computed value for the current animation frame
-     */
-    elasticOut: function (t, b, c, d, a, p) {
-    	if (t == 0) {
-            return b;
-        }
-        if ( (t /= d) == 1 ) {
-            return b+c;
-        }
-        if (!p) {
-            p=d*.3;
-        }
-        
-    	if (!a || a < Math.abs(c)) {
-            a = c;
-            var s = p / 4;
-        }
-    	else {
-            var s = p/(2*Math.PI) * Math.asin (c/a);
-        }
-        
-    	return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
-    },
-    
-    /**
-     * Snap both elastic effect.
-     * @method elasticBoth
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @param {Number} a Amplitude (optional)
-     * @param {Number} p Period (optional)
-     * @return {Number} The computed value for the current animation frame
-     */
-    elasticBoth: function (t, b, c, d, a, p) {
-    	if (t == 0) {
-            return b;
-        }
-        
-        if ( (t /= d/2) == 2 ) {
-            return b+c;
-        }
-        
-        if (!p) {
-            p = d*(.3*1.5);
-        }
-        
-    	if ( !a || a < Math.abs(c) ) {
-            a = c; 
-            var s = p/4;
-        }
-    	else {
-            var s = p/(2*Math.PI) * Math.asin (c/a);
-        }
-        
-    	if (t < 1) {
-            return -.5*(a*Math.pow(2,10*(t-=1)) * 
-                    Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
-        }
-    	return a*Math.pow(2,-10*(t-=1)) * 
-                Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
-    },
-
-
-    /**
-     * Backtracks slightly, then reverses direction and moves to end.
-     * @method backIn
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @param {Number} s Overshoot (optional)
-     * @return {Number} The computed value for the current animation frame
-     */
-    backIn: function (t, b, c, d, s) {
-    	if (typeof s == 'undefined') {
-            s = 1.70158;
-        }
-    	return c*(t/=d)*t*((s+1)*t - s) + b;
-    },
-
-    /**
-     * Overshoots end, then reverses and comes back to end.
-     * @method backOut
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @param {Number} s Overshoot (optional)
-     * @return {Number} The computed value for the current animation frame
-     */
-    backOut: function (t, b, c, d, s) {
-    	if (typeof s == 'undefined') {
-            s = 1.70158;
-        }
-    	return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
-    },
-    
-    /**
-     * Backtracks slightly, then reverses direction, overshoots end, 
-     * then reverses and comes back to end.
-     * @method backBoth
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @param {Number} s Overshoot (optional)
-     * @return {Number} The computed value for the current animation frame
-     */
-    backBoth: function (t, b, c, d, s) {
-    	if (typeof s == 'undefined') {
-            s = 1.70158; 
-        }
-        
-    	if ((t /= d/2 ) < 1) {
-            return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
-        }
-    	return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
-    },
-
-    /**
-     * Bounce off of start.
-     * @method bounceIn
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    bounceIn: function (t, b, c, d) {
-    	return c - YAHOO.util.Easing.bounceOut(d-t, 0, c, d) + b;
-    },
-    
-    /**
-     * Bounces off end.
-     * @method bounceOut
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    bounceOut: function (t, b, c, d) {
-    	if ((t/=d) < (1/2.75)) {
-    		return c*(7.5625*t*t) + b;
-    	} else if (t < (2/2.75)) {
-    		return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
-    	} else if (t < (2.5/2.75)) {
-    		return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
-    	}
-        return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
-    },
-    
-    /**
-     * Bounces off start and end.
-     * @method bounceBoth
-     * @param {Number} t Time value used to compute current value
-     * @param {Number} b Starting value
-     * @param {Number} c Delta between start and end values
-     * @param {Number} d Total length of animation
-     * @return {Number} The computed value for the current animation frame
-     */
-    bounceBoth: function (t, b, c, d) {
-    	if (t < d/2) {
-            return YAHOO.util.Easing.bounceIn(t*2, 0, c, d) * .5 + b;
-        }
-    	return YAHOO.util.Easing.bounceOut(t*2-d, 0, c, d) * .5 + c*.5 + b;
-    }
-};
-
-(function() {
-/**
- * Anim subclass for moving elements along a path defined by the "points" 
- * member of "attributes".  All "points" are arrays with x, y coordinates.
- * <p>Usage: <code>var myAnim = new YAHOO.util.Motion(el, { points: { to: [800, 800] } }, 1, YAHOO.util.Easing.easeOut);</code></p>
- * @class Motion
- * @namespace YAHOO.util
- * @requires YAHOO.util.Anim
- * @requires YAHOO.util.AnimMgr
- * @requires YAHOO.util.Easing
- * @requires YAHOO.util.Bezier
- * @requires YAHOO.util.Dom
- * @requires YAHOO.util.Event
- * @requires YAHOO.util.CustomEvent 
- * @constructor
- * @extends YAHOO.util.ColorAnim
- * @param {String | HTMLElement} el Reference to the element that will be animated
- * @param {Object} attributes The attribute(s) to be animated.  
- * Each attribute is an object with at minimum a "to" or "by" member defined.  
- * Additional optional members are "from" (defaults to current value), "units" (defaults to "px").  
- * All attribute names use camelCase.
- * @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
- * @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
- */
-    var Motion = function(el, attributes, duration,  method) {
-        if (el) { // dont break existing subclasses not using YAHOO.extend
-            Motion.superclass.constructor.call(this, el, attributes, duration, method);
-        }
-    };
-
-
-    Motion.NAME = 'Motion';
-
-    // shorthand
-    var Y = YAHOO.util;
-    YAHOO.extend(Motion, Y.ColorAnim);
-    
-    var superclass = Motion.superclass;
-    var proto = Motion.prototype;
-
-    proto.patterns.points = /^points$/i;
-    
-    proto.setAttribute = function(attr, val, unit) {
-        if (  this.patterns.points.test(attr) ) {
-            unit = unit || 'px';
-            superclass.setAttribute.call(this, 'left', val[0], unit);
-            superclass.setAttribute.call(this, 'top', val[1], unit);
-        } else {
-            superclass.setAttribute.call(this, attr, val, unit);
-        }
-    };
-
-    proto.getAttribute = function(attr) {
-        if (  this.patterns.points.test(attr) ) {
-            var val = [
-                superclass.getAttribute.call(this, 'left'),
-                superclass.getAttribute.call(this, 'top')
-            ];
-        } else {
-            val = superclass.getAttribute.call(this, attr);
-        }
-
-        return val;
-    };
-
-    proto.doMethod = function(attr, start, end) {
-        var val = null;
-
-        if ( this.patterns.points.test(attr) ) {
-            var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;				
-            val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
-        } else {
-            val = superclass.doMethod.call(this, attr, start, end);
-        }
-        return val;
-    };
-
-    proto.setRuntimeAttribute = function(attr) {
-        if ( this.patterns.points.test(attr) ) {
-            var el = this.getEl();
-            var attributes = this.attributes;
-            var start;
-            var control = attributes['points']['control'] || [];
-            var end;
-            var i, len;
-            
-            if (control.length > 0 && !(control[0] instanceof Array) ) { // could be single point or array of points
-                control = [control];
-            } else { // break reference to attributes.points.control
-                var tmp = []; 
-                for (i = 0, len = control.length; i< len; ++i) {
-                    tmp[i] = control[i];
-                }
-                control = tmp;
-            }
-
-            if (Y.Dom.getStyle(el, 'position') == 'static') { // default to relative
-                Y.Dom.setStyle(el, 'position', 'relative');
-            }
-    
-            if ( isset(attributes['points']['from']) ) {
-                Y.Dom.setXY(el, attributes['points']['from']); // set position to from point
-            } 
-            else { Y.Dom.setXY( el, Y.Dom.getXY(el) ); } // set it to current position
-            
-            start = this.getAttribute('points'); // get actual top & left
-            
-            // TO beats BY, per SMIL 2.1 spec
-            if ( isset(attributes['points']['to']) ) {
-                end = translateValues.call(this, attributes['points']['to'], start);
-                
-                var pageXY = Y.Dom.getXY(this.getEl());
-                for (i = 0, len = control.length; i < len; ++i) {
-                    control[i] = translateValues.call(this, control[i], start);
-                }
-
-                
-            } else if ( isset(attributes['points']['by']) ) {
-                end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
-                
-                for (i = 0, len = control.length; i < len; ++i) {
-                    control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
-                }
-            }
-
-            this.runtimeAttributes[attr] = [start];
-            
-            if (control.length > 0) {
-                this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control); 
-            }
-
-            this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
-        }
-        else {
-            superclass.setRuntimeAttribute.call(this, attr);
-        }
-    };
-    
-    var translateValues = function(val, start) {
-        var pageXY = Y.Dom.getXY(this.getEl());
-        val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
-
-        return val; 
-    };
-    
-    var isset = function(prop) {
-        return (typeof prop !== 'undefined');
-    };
-
-    Y.Motion = Motion;
-})();
-(function() {
-/**
- * Anim subclass for scrolling elements to a position defined by the "scroll"
- * member of "attributes".  All "scroll" members are arrays with x, y scroll positions.
- * <p>Usage: <code>var myAnim = new YAHOO.util.Scroll(el, { scroll: { to: [0, 800] } }, 1, YAHOO.util.Easing.easeOut);</code></p>
- * @class Scroll
- * @namespace YAHOO.util
- * @requires YAHOO.util.Anim
- * @requires YAHOO.util.AnimMgr
- * @requires YAHOO.util.Easing
- * @requires YAHOO.util.Bezier
- * @requires YAHOO.util.Dom
- * @requires YAHOO.util.Event
- * @requires YAHOO.util.CustomEvent 
- * @extends YAHOO.util.ColorAnim
- * @constructor
- * @param {String or HTMLElement} el Reference to the element that will be animated
- * @param {Object} attributes The attribute(s) to be animated.  
- * Each attribute is an object with at minimum a "to" or "by" member defined.  
- * Additional optional members are "from" (defaults to current value), "units" (defaults to "px").  
- * All attribute names use camelCase.
- * @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
- * @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
- */
-    var Scroll = function(el, attributes, duration,  method) {
-        if (el) { // dont break existing subclasses not using YAHOO.extend
-            Scroll.superclass.constructor.call(this, el, attributes, duration, method);
-        }
-    };
-
-    Scroll.NAME = 'Scroll';
-
-    // shorthand
-    var Y = YAHOO.util;
-    YAHOO.extend(Scroll, Y.ColorAnim);
-    
-    var superclass = Scroll.superclass;
-    var proto = Scroll.prototype;
-
-    proto.doMethod = function(attr, start, end) {
-        var val = null;
-    
-        if (attr == 'scroll') {
-            val = [
-                this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
-                this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
-            ];
-            
-        } else {
-            val = superclass.doMethod.call(this, attr, start, end);
-        }
-        return val;
-    };
-
-    proto.getAttribute = function(attr) {
-        var val = null;
-        var el = this.getEl();
-        
-        if (attr == 'scroll') {
-            val = [ el.scrollLeft, el.scrollTop ];
-        } else {
-            val = superclass.getAttribute.call(this, attr);
-        }
-        
-        return val;
-    };
-
-    proto.setAttribute = function(attr, val, unit) {
-        var el = this.getEl();
-        
-        if (attr == 'scroll') {
-            el.scrollLeft = val[0];
-            el.scrollTop = val[1];
-        } else {
-            superclass.setAttribute.call(this, attr, val, unit);
-        }
-    };
-
-    Y.Scroll = Scroll;
-})();
-YAHOO.register("animation", YAHOO.util.Anim, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/asc.gif b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/asc.gif
deleted file mode 100644
index a1fe738..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/asc.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/autocomplete.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/autocomplete.css
deleted file mode 100644
index 82cf7e5..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/autocomplete.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-ac{position:relative;font-family:arial;font-size:100%;}.yui-skin-sam .yui-ac-input{position:absolute;width:100%;}.yui-skin-sam .yui-ac-container{position:absolute;top:1.6em;width:100%;}.yui-skin-sam .yui-ac-content{position:absolute;width:100%;border:1px solid #808080;background:#fff;overflow:hidden;z-index:9050;}.yui-skin-sam .yui-ac-shadow{position:absolute;margin:.3em;width:100%;background:#000;-moz-opacity:0.10;opacity:.10;filter:alpha(opacity=10);z-index:9049;}.yui-skin-sam .yui-ac iframe{opacity:0;filter:alpha(opacity=0);padding-right:.3em;padding-bottom:.3em;}.yui-skin-sam .yui-ac-content ul{margin:0;padding:0;width:100%;}.yui-skin-sam .yui-ac-content li{margin:0;padding:2px 5px;cursor:default;white-space:nowrap;list-style:none;zoom:1;}.yui-skin-sam .yui-ac-content li.yui-ac-prehighlight{background:#B3D4FF;}.yui-skin-sam .yui-ac-content li.yui-ac-highlight{background:#426FD9;color:#FFF;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/blankimage.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/blankimage.png
deleted file mode 100644
index b87bb24..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/blankimage.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/button.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/button.css
deleted file mode 100644
index bfe8488..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/button.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-button{display:-moz-inline-box;display:inline-block;vertical-align:text-bottom;}.yui-button .first-child{display:block;*display:inline-block;}.yui-button button,.yui-button a{display:block;*display:inline-block;border:none;margin:0;}.yui-button button{background-color:transparent;*overflow:visible;cursor:pointer;}.yui-button a{text-decoration:none;}.yui-skin-sam .yui-button{border-width:1px 0;border-style:solid;border-color:#808080;background:url(sprite.png) repeat-x 0 0;margin:auto .25em;}.yui-skin-sam .yui-button .first-child{border-width:0 1px;border-style:solid;border-color:#808080;margin:0 -1px;*position:relative;*left:-1px;_margin:0;_position:static;}.yui-skin-sam .yui-button button,.yui-skin-sam .yui-button a{padding:0 10px;font-size:93%;line-height:2;*line-height:1.7;min-height:2em;*min-height:auto;color:#000;}.yui-skin-sam .yui-button a{*line-height:1.875;*padding-bottom:1px;}.yui-skin-sam .yui-split-button button,.yui-skin-sam .yui-menu-button button{padding-right:20px;background-position:right center;background-repeat:no-repeat;}.yui-skin-sam .yui-menu-button button{background-image:url(menu-button-arrow.png);}.yui-skin-sam .yui-split-button button{background-image:url(split-button-arrow.png);}.yui-skin-sam .yui-button-focus{border-color:#7D98B8;background-position:0 -1300px;}.yui-skin-sam .yui-button-focus .first-child{border-color:#7D98B8;}.yui-skin-sam .yui-button-focus button,.yui-skin-sam .yui-button-focus a{color:#000;}.yui-skin-sam .yui-split-button-focus button{background-image:url(split-button-arrow-focus.png);}.yui-skin-sam .yui-button-hover{border-color:#7D98B8;background-position:0 -1300px;}.yui-skin-sam .yui-button-hover .first-child{border-color:#7D98B8;}.yui-skin-sam .yui-button-hover button,.yui-skin-sam .yui-button-hover a{color:#000;}.yui-skin-sam .yui-split-button-hover button{background-image:url(split-button-arrow-hover.png);}.yui-skin-sam .yui-button-active{border-color:#7D98B8;background-position:0 -1700px;}.yui-skin-sam .yui-button-active .first-child{border-color:#7D98B8;}.yui-skin-sam .yui-button-active button,.yui-skin-sam .yui-button-active a{color:#000;}.yui-skin-sam .yui-split-button-activeoption{border-color:#808080;background-position:0 0;}.yui-skin-sam .yui-split-button-activeoption .first-child{border-color:#808080;}.yui-skin-sam .yui-split-button-activeoption button{background-image:url(split-button-arrow-active.png);}.yui-skin-sam .yui-radio-button-checked,.yui-skin-sam .yui-checkbox-button-checked{border-color:#304369;background-position:0 -1400px;}.yui-skin-sam .yui-radio-button-checked .first-child,.yui-skin-sam .yui-checkbox-button-checked .first-child{border-color:#304369;}.yui-skin-sam .yui-radio-button-checked button,.yui-skin-sam .yui-checkbox-button-checked button{color:#fff;}.yui-skin-sam .yui-button-disabled{border-color:#ccc;background-position:0 -1500px;}.yui-skin-sam .yui-button-disabled .first-child{border-color:#ccc;}.yui-skin-sam .yui-button-disabled button,.yui-skin-sam .yui-button-disabled a{color:#A6A6A6;cursor:default;}.yui-skin-sam .yui-menu-button-disabled button{background-image:url(menu-button-arrow-disabled.png);}.yui-skin-sam .yui-split-button-disabled button{background-image:url(split-button-arrow-disabled.png);}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/calendar.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/calendar.css
deleted file mode 100644
index aad1782..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/calendar.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-calcontainer{position:relative;float:left;_overflow:hidden;}.yui-calcontainer iframe{position:absolute;border:none;margin:0;padding:0;z-index:0;width:100%;height:100%;left:0px;top:0px;}.yui-calcontainer iframe.fixedsize{width:50em;height:50em;top:-1px;left:-1px;}.yui-calcontainer.multi .groupcal{z-index:1;float:left;position:relative;}.yui-calcontainer .title{position:relative;z-index:1;}.yui-calcontainer .close-icon{position:absolute;z-index:1;text-indent:-10000em;overflow:hidden;}.yui-calendar{position:relative;}.yui-calendar .calnavleft{position:absolute;z-index:1;text-indent:-10000em;overflow:hidden;}.yui-calendar .calnavright{position:absolute;z-index:1;text-indent:-10000em;overflow:hidden;}.yui-calendar .calheader{position:relative;width:100%;text-align:center;}.yui-calcontainer .yui-cal-nav-mask{position:absolute;z-index:2;margin:0;padding:0;width:100%;height:100%;_width:0;_height:0;left:0;top:0;display:none;}.yui-calcontainer .yui-cal-nav{position:absolute;z-index:3;top:0;display:none;}.yui-calcontainer .yui-cal-nav .yui-cal-nav-btn{display:-moz-inline-box;display:inline-block;}.yui-calcontainer .yui-cal-nav .yui-cal-nav-btn button{display:block;*display:inline-block;*overflow:visible;border:none;background-color:transparent;cursor:pointer;}.yui-calendar .calbody a:hover{background:inherit;}p#clear{clear:left;padding-top:10px;}.yui-skin-sam .yui-calcontainer{background-color:#f2f2f2;border:1px solid #808080;padding:10px;}.yui-skin-sam .yui-calcontainer.multi{padding:0 5px 0 5px;}.yui-skin-sam .yui-calcontainer.multi .groupcal{background-color:transparent;border:none;padding:10px 5px 10px 5px;margin:0;}.yui-skin-sam .yui-calcontainer .title{background:url(sprite.png) repeat-x 0 0;border-bottom:1px solid #cccccc;font:100% sans-serif;color:#000;font-weight:bold;height:auto;padding:.4em;margin:0 -10px 10px -10px;top:0;left:0;text-align:left;}.yui-skin-sam .yui-calcontainer.multi .title{margin:0 -5px 0 -5px;}.yui-skin-sam .yui-calcontainer.withtitle{padding-top:0;}.yui-skin-sam .yui-calcontainer .calclose{background:url(sprite.png) no-repeat 0 -300px;width:25px;height:15px;top:.4em;right:.4em;cursor:pointer;}.yui-skin-sam .yui-calendar{border-spacing:0;border-collapse:collapse;font:100% sans-serif;text-align:center;margin:0;}.yui-skin-sam .yui-calendar .calhead{background:transparent;border:none;vertical-align:middle;padding:0;}.yui-skin-sam .yui-calendar .calheader{background:transparent;font-weight:bold;padding:0 0 .6em 0;text-align:center;}.yui-skin-sam .yui-calendar .calheader img{border:none;}.yui-skin-sam .yui-calendar .calnavleft{background:url(sprite.png) no-repeat 0 -450px;width:25px;height:15px;top:0;bottom:0;left:-10px;margin-left:.4em;cursor:pointer;}.yui-skin-sam .yui-calendar .calnavright{background:url(sprite.png) no-repeat 0 -500px;width:25px;height:15px;top:0;bottom:0;right:-10px;margin-right:.4em;cursor:pointer;}.yui-skin-sam .yui-calendar .calweekdayrow{height:2em;}.yui-skin-sam .yui-calendar .calweekdayrow th{padding:0;border:none;}.yui-skin-sam .yui-calendar .calweekdaycell{color:#000;font-weight:bold;text-align:center;width:2em;}.yui-skin-sam .yui-calendar .calfoot{background-color:#f2f2f2;}.yui-skin-sam .yui-calendar .calrowhead,.yui-skin-sam .yui-calendar .calrowfoot{color:#a6a6a6;font-size:85%;font-style:normal;font-weight:normal;border:none;}.yui-skin-sam .yui-calendar .calrowhead{text-align:right;padding:0 2px 0 0;}.yui-skin-sam .yui-calendar .calrowfoot{text-align:left;padding:0 0 0 2px;}.yui-skin-sam .yui-calendar td.calcell{border:1px solid #cccccc;background:#fff;padding:1px;height:1.6em;line-height:1.6em;text-align:center;white-space:nowrap;}.yui-skin-sam .yui-calendar td.calcell a{color:#0066cc;display:block;height:100%;text-decoration:none;}.yui-skin-sam .yui-calendar td.calcell.today{background-color:#000;}.yui-skin-sam .yui-calendar td.calcell.today a{background-color:#fff;}.yui-skin-sam .yui-calendar td.calcell.oom{background-color:#cccccc;color:#a6a6a6;cursor:default;}.yui-skin-sam .yui-calendar td.calcell.selected{background-color:#fff;color:#000;}.yui-skin-sam .yui-calendar td.calcell.selected a{background-color:#b3d4ff;color:#000;}.yui-skin-sam .yui-calendar td.calcell.calcellhover{background-color:#426fd9;color:#fff;cursor:pointer;}.yui-skin-sam .yui-calendar td.calcell.calcellhover a{background-color:#426fd9;color:#fff;}.yui-skin-sam .yui-calendar td.calcell.previous{color:#e0e0e0;}.yui-skin-sam .yui-calendar td.calcell.restricted{text-decoration:line-through;}.yui-skin-sam .yui-calendar td.calcell.highlight1{background-color:#ccff99;}.yui-skin-sam .yui-calendar td.calcell.highlight2{background-color:#99ccff;}.yui-skin-sam .yui-calendar td.calcell.highlight3{background-color:#ffcccc;}.yui-skin-sam .yui-calendar td.calcell.highlight4{background-color:#ccff99;}.yui-skin-sam .yui-calendar a.calnav{border:1px solid #f2f2f2;padding:0 4px;text-decoration:none;color:#000;zoom:1;}.yui-skin-sam .yui-calendar a.calnav:hover{background:url(sprite.png) repeat-x 0 0;border-color:#A0A0A0;cursor:pointer;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-mask{background-color:#000;opacity:0.25;*filter:alpha(opacity=25);}.yui-skin-sam .yui-calcontainer .yui-cal-nav{font-family:arial,helvetica,clean,sans-serif;font-size:93%;border:1px solid #808080;left:50%;margin-left:-7em;width:14em;padding:0;top:2.5em;background-color:#f2f2f2;}.yui-skin-sam .yui-calcontainer.withtitle .yui-cal-nav{top:4.5em;}.yui-skin-sam .yui-calcontainer.multi .yui-cal-nav{width:16em;margin-left:-8em;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-y,.yui-skin-sam .yui-calcontainer .yui-cal-nav-m,.yui-skin-sam .yui-calcontainer .yui-cal-nav-b{padding:5px 10px 5px 10px;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-b{text-align:center;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-e{margin-top:5px;padding:5px;background-color:#EDF5FF;border-top:1px solid black;display:none;}.yui-skin-sam .yui-calcontainer .yui-cal-nav label{display:block;font-weight:bold;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-mc{width:100%;_width:auto;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-y input.yui-invalid{background-color:#FFEE69;border:1px solid #000;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-yc{width:4em;}.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn{border:1px solid #808080;background:url(sprite.png) repeat-x 0 0;background-color:#ccc;margin:auto .15em;}.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn button{padding:0 8px;font-size:93%;line-height:2;*line-height:1.7;min-height:2em;*min-height:auto;color:#000;}.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn.yui-default{border:1px solid #304369;background-color:#426fd9;background:url(sprite.png) repeat-x 0 -1400px;}.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn.yui-default button{color:#fff;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/carousel.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/carousel.css
deleted file mode 100644
index 9d85d72..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/carousel.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-carousel{visibility:hidden;overflow:hidden;position:relative;}.yui-carousel.yui-carousel-visible{visibility:visible;}.yui-carousel-content{overflow:hidden;position:relative;}.yui-carousel-element{margin:5px 0;overflow:hidden;padding:0;position:relative;width:32000px;z-index:1;}.yui-carousel-vertical .yui-carousel-element{margin:0 5px;}.yui-carousel-element li{border:1px solid #ccc;float:left;list-style:none;margin:1px;overflow:hidden;padding:0;text-align:center;*float:none;*display:inline-block;*zoom:1;*display:inline;}.yui-carousel .yui-carousel-item-selected{border:1px dashed #000;margin:1px;}.yui-carousel-vertical{height:32000px;margin:0 5px;width:auto;}.yui-carousel-vertical .yui-carousel-element li{display:block;float:none;}.yui-log .carousel{background:#f2e886;}.yui-carousel-nav{zoom:1;}.yui-carousel-nav:after{clear:both;content:"";display:block;}.yui-carousel-button-focus{outline:1px dotted #000;}.yui-skin-sam .yui-carousel,.yui-skin-sam .yui-carousel-vertical{border:1px solid #808080;}.yui-skin-sam .yui-carousel-nav{background:url(sprite.png) repeat-x 0 0;padding:3px;text-align:right;}.yui-skin-sam .yui-carousel-button{background:url(sprite.png) no-repeat 0 -600px;float:right;height:19px;margin:5px;overflow:hidden;width:40px;}.yui-skin-sam .yui-carousel-vertical .yui-carousel-button{background-position:0 -800px;}.yui-skin-sam .yui-carousel-button-disabled{background-position:0 -2000px;}.yui-skin-sam .yui-carousel-vertical .yui-carousel-button-disabled{background-position:0 -2100px;}.yui-skin-sam .yui-carousel-button input{background-color:transparent;border:0;cursor:pointer;display:block;height:44px;margin:-2px 0 0 -2px;padding:0 0 0 50px;}.yui-skin-sam span.yui-carousel-first-button{background-position:0px -550px;margin-left:-100px;margin-right:50px;*margin:5px 5px 5px -90px;}.yui-skin-sam .yui-carousel-vertical span.yui-carousel-first-button{background-position:0px -750px;}.yui-skin-sam span.yui-carousel-first-button-disabled{background-position:0 -1950px;}.yui-skin-sam .yui-carousel-vertical span.yui-carousel-first-button-disabled{background-position:0 -2050px;}.yui-skin-sam .yui-carousel-nav ul{float:right;margin:0;margin-left:-220px;margin-right:100px;*margin-left:-160px;*margin-right:0;padding:0;}.yui-skin-sam .yui-carousel-nav select{position:relative;*right:50px;top:4px;}.yui-skin-sam .yui-carousel-vertical .yui-carousel-nav ul,.yui-skin-sam .yui-carousel-vertical .yui-carousel-nav select{float:none;margin:0;*zoom:1;}.yui-skin-sam .yui-carousel-nav ul li{float:left;height:19px;list-style:none;}.yui-skin-sam .yui-carousel-nav ul:after{clear:both;content:"";display:block;}.yui-skin-sam .yui-carousel-nav ul li a{background:url(sprite.png) no-repeat 0 -650px;display:block;height:9px;margin:10px 0 0 5px;overflow:hidden;width:9px;}.yui-skin-sam .yui-carousel-nav ul li a em{left:-10000px;position:absolute;}.yui-skin-sam .yui-carousel-nav ul li.yui-carousel-nav-page-selected a{background-position:0 -700px;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/colorpicker.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/colorpicker.css
deleted file mode 100644
index 82c6cfd..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/colorpicker.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-picker-panel{background:#e3e3e3;border-color:#888;}.yui-picker-panel .hd{background-color:#ccc;font-size:100%;line-height:100%;border:1px solid #e3e3e3;font-weight:bold;overflow:hidden;padding:6px;color:#000;}.yui-picker-panel .bd{background:#e8e8e8;margin:1px;height:200px;}.yui-picker-panel .ft{background:#e8e8e8;margin:1px;padding:1px;}.yui-picker{position:relative;}.yui-picker-hue-thumb{cursor:default;width:18px;height:18px;top:-8px;left:-2px;z-index:9;position:absolute;}.yui-picker-hue-bg{-moz-outline:none;outline:0px none;position:absolute;left:200px;height:183px;width:14px;background:url(hue_bg.png) no-repeat;top:4px;}.yui-picker-bg{-moz-outline:none;outline:0px none;position:absolute;top:4px;left:4px;height:182px;width:182px;background-color:#F00;background-image:url(picker_mask.png);}*html .yui-picker-bg{background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../../build/colorpicker/assets/picker_mask.png',sizingMethod='scale');}.yui-picker-mask{position:absolute;z-index:1;top:0px;left:0px;}.yui-picker-thumb{cursor:default;width:11px;height:11px;z-index:9;position:absolute;top:-4px;left:-4px;}.yui-picker-swatch{position:absolute;left:240px;top:4px;height:60px;width:55px;border:1px solid #888;}.yui-picker-websafe-swatch{position:absolute;left:304px;top:4px;height:24px;width:24px;border:1px solid #888;}.yui-picker-controls{position:absolute;top:72px;left:226px;font:1em monospace;}.yui-picker-controls .hd{background:transparent;border-width:0px !important;}.yui-picker-controls .bd{height:100px;border-width:0px !important;}.yui-picker-controls ul{float:left;padding:0 2px 0 0;margin:0}.yui-picker-controls li{padding:2px;list-style:none;margin:0}.yui-picker-controls input{font-size:0.85em;width:2.4em;}.yui-picker-hex-controls{clear:both;padding:2px;}.yui-picker-hex-controls input{width:4.6em;}.yui-picker-controls a{font:1em arial,helvetica,clean,sans-serif;display:block;*display:inline-block;padding:0;color:#000;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/container.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/container.css
deleted file mode 100644
index 5023824..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/container.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-overlay,.yui-panel-container{visibility:hidden;position:absolute;z-index:2;}.yui-panel-container form{margin:0;}.mask{z-index:1;display:none;position:absolute;top:0;left:0;right:0;bottom:0;}.mask.block-scrollbars{overflow:auto;}.masked select,.drag select,.hide-select select{_visibility:hidden;}.yui-panel-container select{_visibility:inherit;}.hide-scrollbars,.hide-scrollbars *{overflow:hidden;}.hide-scrollbars select{display:none;}.show-scrollbars{overflow:auto;}.yui-panel-container.show-scrollbars,.yui-tt.show-scrollbars{overflow:visible;}.yui-panel-container.show-scrollbars .underlay,.yui-tt.show-scrollbars .yui-tt-shadow{overflow:auto;}.yui-panel-container.shadow .underlay.yui-force-redraw{padding-bottom:1px;}.yui-effect-fade .underlay{display:none;}.yui-tt-shadow{position:absolute;}.yui-override-padding{padding:0 !important;}.yui-panel-container .container-close{overflow:hidden;text-indent:-10000em;text-decoration:none;}.yui-skin-sam .mask{background-color:#000;opacity:.25;*filter:alpha(opacity=25);}.yui-skin-sam .yui-panel-container{padding:0 1px;*padding:2px;}.yui-skin-sam .yui-panel{position:relative;left:0;top:0;border-style:solid;border-width:1px 0;border-color:#808080;z-index:1;*border-width:1px;*zoom:1;_zoom:normal;}.yui-skin-sam .yui-panel .hd,.yui-skin-sam .yui-panel .bd,.yui-skin-sam .yui-panel .ft{border-style:solid;border-width:0 1px;border-color:#808080;margin:0 -1px;*margin:0;*border:0;}.yui-skin-sam .yui-panel .hd{border-bottom:solid 1px #ccc;}.yui-skin-sam .yui-panel .bd,.yui-skin-sam .yui-panel .ft{background-color:#F2F2F2;}.yui-skin-sam .yui-panel .hd{padding:0 10px;font-size:93%;line-height:2;*line-height:1.9;font-weight:bold;color:#000;background:url(sprite.png) repeat-x 0 -200px;}.yui-skin-sam .yui-panel .bd{padding:10px;}.yui-skin-sam .yui-panel .ft{border-top:solid 1px #808080;padding:5px 10px;font-size:77%;}.yui-skin-sam .yui-panel-container.focused .yui-panel .hd{}.yui-skin-sam .container-close{position:absolute;top:5px;right:6px;width:25px;height:15px;background:url(sprite.png) no-repeat 0 -300px;cursor:pointer;}.yui-skin-sam .yui-panel-container .underlay{right:-1px;left:-1px;}.yui-skin-sam .yui-panel-container.matte{padding:9px 10px;background-color:#fff;}.yui-skin-sam .yui-panel-container.shadow{_padding:2px 4px 0 2px;}.yui-skin-sam .yui-panel-container.shadow .underlay{position:absolute;top:2px;left:-3px;right:-3px;bottom:-3px;*top:4px;*left:-1px;*right:-1px;*bottom:-1px;_top:0;_left:0;_right:0;_bottom:0;_margin-top:3px;_margin-left:-1px;background-color:#000;opacity:.12;*filter:alpha(opacity=12);}.yui-skin-sam .yui-dialog .ft{border-top:none;padding:0 10px 10px 10px;font-size:100%;}.yui-skin-sam .yui-dialog .ft .button-group{display:block;text-align:right;}.yui-skin-sam .yui-dialog .ft button.default{font-weight:bold;}.yui-skin-sam .yui-dialog .ft span.default{border-color:#304369;background-position:0 -1400px;}.yui-skin-sam .yui-dialog .ft span.default .first-child{border-color:#304369;}.yui-skin-sam .yui-dialog .ft span.default button{color:#fff;}.yui-skin-sam .yui-dialog .ft span.yui-button-disabled{background-position:0pt -1500px;border-color:#ccc;}.yui-skin-sam .yui-dialog .ft span.yui-button-disabled .first-child{border-color:#ccc;}.yui-skin-sam .yui-dialog .ft span.yui-button-disabled button{color:#a6a6a6;}.yui-skin-sam .yui-simple-dialog .bd .yui-icon{background:url(sprite.png) no-repeat 0 0;width:16px;height:16px;margin-right:10px;float:left;}.yui-skin-sam .yui-simple-dialog .bd span.blckicon{background-position:0 -1100px;}.yui-skin-sam .yui-simple-dialog .bd span.alrticon{background-position:0 -1050px;}.yui-skin-sam .yui-simple-dialog .bd span.hlpicon{background-position:0 -1150px;}.yui-skin-sam .yui-simple-dialog .bd span.infoicon{background-position:0 -1200px;}.yui-skin-sam .yui-simple-dialog .bd span.warnicon{background-position:0 -1900px;}.yui-skin-sam .yui-simple-dialog .bd span.tipicon{background-position:0 -1250px;}.yui-skin-sam .yui-tt .bd{position:relative;top:0;left:0;z-index:1;color:#000;padding:2px 5px;border-color:#D4C237 #A6982B #A6982B #A6982B;border-width:1px;border-style:solid;background-color:#FFEE69;}.yui-skin-sam .yui-tt.show-scrollbars .bd{overflow:auto;}.yui-skin-sam .yui-tt-shadow{top:2px;right:-3px;left:-3px;bottom:-3px;background-color:#000;}.yui-skin-sam .yui-tt-shadow-visible{opacity:.12;*filter:alpha(opacity=12);}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/datatable.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/datatable.css
deleted file mode 100644
index 55dc58d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/datatable.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-dt-mask{position:absolute;z-index:9500;}.yui-dt-tmp{position:absolute;left:-9000px;}.yui-dt-scrollable .yui-dt-bd{overflow:auto;}.yui-dt-scrollable .yui-dt-hd{overflow:hidden;position:relative;}.yui-dt-scrollable .yui-dt-bd thead tr,.yui-dt-scrollable .yui-dt-bd thead th{position:absolute;left:-1500px;}.yui-dt-scrollable tbody{-moz-outline:none;}.yui-dt-draggable{cursor:move;}.yui-dt-coltarget{position:absolute;z-index:999;}.yui-dt-hd{zoom:1;}th.yui-dt-resizeable .yui-dt-resizerliner{position:relative;}.yui-dt-resizer{position:absolute;right:0;bottom:0;height:100%;cursor:e-resize;cursor:col-resize;background-color:#CCC;opacity:0;filter:alpha(opacity=0);}.yui-dt-resizerproxy{visibility:hidden;position:absolute;z-index:9000;}th.yui-dt-hidden .yui-dt-liner,td.yui-dt-hidden .yui-dt-liner,th.yui-dt-hidden .yui-dt-resizer{display:none;}.yui-dt-editor{position:absolute;z-index:9000;}.yui-skin-sam .yui-dt table{margin:0;padding:0;font-family:arial;font-size:inherit;border-collapse:separate;*border-collapse:collapse;border-spacing:0;border:1px solid #7F7F7F;}.yui-skin-sam .yui-dt thead{border-spacing:0;}.yui-skin-sam .yui-dt caption{color:#000000;font-size:85%;font-weight:normal;font-style:italic;line-height:1;padding:1em 0pt;text-align:center;}.yui-skin-sam .yui-dt th{background:#D8D8DA url(sprite.png) repeat-x 0 0;}.yui-skin-sam .yui-dt th,.yui-skin-sam .yui-dt th a{font-weight:normal;text-decoration:none;color:#000;vertical-align:bottom;}.yui-skin-sam .yui-dt th{margin:0;padding:0;border:none;border-right:1px solid #CBCBCB;}.yui-skin-sam .yui-dt tr.yui-dt-first td{border-top:1px solid #7F7F7F;}.yui-skin-sam .yui-dt th .yui-dt-liner{white-space:nowrap;}.yui-skin-sam .yui-dt-liner{margin:0;padding:0;padding:4px 10px 4px 10px;}.yui-skin-sam .yui-dt-coltarget{width:5px;background-color:red;}.yui-skin-sam .yui-dt td{margin:0;padding:0;border:none;border-right:1px solid #CBCBCB;text-align:left;}.yui-skin-sam .yui-dt-list td{border-right:none;}.yui-skin-sam .yui-dt-resizer{width:6px;}.yui-skin-sam .yui-dt-mask{background-color:#000;opacity:.25;*filter:alpha(opacity=25);}.yui-skin-sam .yui-dt-message{background-color:#FFF;}.yui-skin-sam .yui-dt-scrollable table{border:none;}.yui-skin-sam .yui-dt-scrollable .yui-dt-hd{border-left:1px solid #7F7F7F;border-top:1px solid #7F7F7F;border-right:1px solid #7F7F7F;}.yui-skin-sam .yui-dt-scrollable .yui-dt-bd{border-left:1px solid #7F7F7F;border-bottom:1px solid #7F7F7F;border-right:1px solid #7F7F7F;background-color:#FFF;}.yui-skin-sam .yui-dt-scrollable .yui-dt-data tr.yui-dt-last td{border-bottom:1px solid #7F7F7F;}.yui-skin-sam thead .yui-dt-sortable{cursor:pointer;}.yui-skin-sam th.yui-dt-asc,.yui-skin-sam th.yui-dt-desc{background:url(sprite.png) repeat-x 0 -100px;}.yui-skin-sam th.yui-dt-sortable .yui-dt-label{margin-right:10px;}.yui-skin-sam th.yui-dt-asc .yui-dt-liner{background:url(dt-arrow-up.png) no-repeat right;}.yui-skin-sam th.yui-dt-desc .yui-dt-liner{background:url(dt-arrow-dn.png) no-repeat right;}tbody .yui-dt-editable{cursor:pointer;}.yui-dt-editor{text-align:left;background-color:#F2F2F2;border:1px solid #808080;padding:6px;}.yui-dt-editor label{padding-left:4px;padding-right:6px;}.yui-dt-editor .yui-dt-button{padding-top:6px;text-align:right;}.yui-dt-editor .yui-dt-button button{background:url(sprite.png) repeat-x 0 0;border:1px solid #999;width:4em;height:1.8em;margin-left:6px;}.yui-dt-editor .yui-dt-button button.yui-dt-default{background:url(sprite.png) repeat-x 0 -1400px;background-color:#5584E0;border:1px solid #304369;color:#FFF}.yui-dt-editor .yui-dt-button button:hover{background:url(sprite.png) repeat-x 0 -1300px;color:#000;}.yui-dt-editor .yui-dt-button button:active{background:url(sprite.png) repeat-x 0 -1700px;color:#000;}.yui-skin-sam tr.yui-dt-even{background-color:#FFF;}.yui-skin-sam tr.yui-dt-odd{background-color:#EDF5FF;}.yui-skin-sam tr.yui-dt-even td.yui-dt-asc,.yui-skin-sam tr.yui-dt-even td.yui-dt-desc{background-color:#EDF5FF;}.yui-skin-sam tr.yui-dt-odd td.yui-dt-asc,.yui-skin-sam tr.yui-dt-odd td.yui-dt-desc{background-color:#DBEAFF;}.yui-skin-sam .yui-dt-list tr.yui-dt-even{background-color:#FFF;}.yui-skin-sam .yui-dt-list tr.yui-dt-odd{background-color:#FFF;}.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-asc,.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-desc{background-color:#EDF5FF;}.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-asc,.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-desc{background-color:#EDF5FF;}.yui-skin-sam th.yui-dt-highlighted,.yui-skin-sam th.yui-dt-highlighted a{background-color:#B2D2FF;}.yui-skin-sam tr.yui-dt-highlighted,.yui-skin-sam tr.yui-dt-highlighted td.yui-dt-asc,.yui-skin-sam tr.yui-dt-highlighted td.yui-dt-desc,.yui-skin-sam tr.yui-dt-even td.yui-dt-highlighted,.yui-skin-sam tr.yui-dt-odd td.yui-dt-highlighted{cursor:pointer;background-color:#B2D2FF;}.yui-skin-sam .yui-dt-list th.yui-dt-highlighted,.yui-skin-sam .yui-dt-list th.yui-dt-highlighted a{background-color:#B2D2FF;}.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted,.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted td.yui-dt-asc,.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted td.yui-dt-desc,.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-highlighted,.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-highlighted{cursor:pointer;background-color:#B2D2FF;}.yui-skin-sam th.yui-dt-selected,.yui-skin-sam th.yui-dt-selected a{background-color:#446CD7;}.yui-skin-sam tr.yui-dt-selected td,.yui-skin-sam tr.yui-dt-selected td.yui-dt-asc,.yui-skin-sam tr.yui-dt-selected td.yui-dt-desc{background-color:#426FD9;color:#FFF;}.yui-skin-sam tr.yui-dt-even td.yui-dt-selected,.yui-skin-sam tr.yui-dt-odd td.yui-dt-selected{background-color:#446CD7;color:#FFF;}.yui-skin-sam .yui-dt-list th.yui-dt-selected,.yui-skin-sam .yui-dt-list th.yui-dt-selected a{background-color:#446CD7;}.yui-skin-sam .yui-dt-list tr.yui-dt-selected td,.yui-skin-sam .yui-dt-list tr.yui-dt-selected td.yui-dt-asc,.yui-skin-sam .yui-dt-list tr.yui-dt-selected td.yui-dt-desc{background-color:#426FD9;color:#FFF;}.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-selected,.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-selected{background-color:#446CD7;color:#FFF;}.yui-skin-sam .yui-dt-paginator{display:block;margin:6px 0;white-space:nowrap;}.yui-skin-sam .yui-dt-paginator .yui-dt-first,.yui-skin-sam .yui-dt-paginator .yui-dt-last,.yui-skin-sam .yui-dt-paginator .yui-dt-selected{padding:2px 6px;}.yui-skin-sam .yui-dt-paginator a.yui-dt-first,.yui-skin-sam .yui-dt-paginator a.yui-dt-last{text-decoration:none;}.yui-skin-sam .yui-dt-paginator .yui-dt-previous,.yui-skin-sam .yui-dt-paginator .yui-dt-next{display:none;}.yui-skin-sam a.yui-dt-page{border:1px solid #CBCBCB;padding:2px 6px;text-decoration:none;background-color:#fff}.yui-skin-sam .yui-dt-selected{border:1px solid #fff;background-color:#fff;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/desc.gif b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/desc.gif
deleted file mode 100644
index c114f29..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/desc.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/dt-arrow-dn.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/dt-arrow-dn.png
deleted file mode 100644
index 85fda0b..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/dt-arrow-dn.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/dt-arrow-up.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/dt-arrow-up.png
deleted file mode 100644
index 1c67431..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/dt-arrow-up.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/editor-knob.gif b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/editor-knob.gif
deleted file mode 100644
index 03feab3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/editor-knob.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/editor-sprite-active.gif b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/editor-sprite-active.gif
deleted file mode 100644
index 3e9d420..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/editor-sprite-active.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/editor-sprite.gif b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/editor-sprite.gif
deleted file mode 100644
index 02042fa..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/editor-sprite.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/editor.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/editor.css
deleted file mode 100644
index 780c387..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/editor.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-busy{cursor:wait !important;}.yui-toolbar-container fieldset{padding:0;margin:0;border:0;}.yui-toolbar-container legend{display:none;}.yui-toolbar-container .yui-toolbar-subcont{padding:.25em 0;zoom:1;}.yui-toolbar-container-collapsed .yui-toolbar-subcont{display:none;}.yui-toolbar-container .yui-toolbar-subcont:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-container span.yui-toolbar-draghandle{cursor:move;border-left:1px solid #999;border-right:1px solid #999;overflow:hidden;text-indent:77777px;width:2px;height:20px;display:block;clear:none;float:left;margin:0 0 0 .2em;}.yui-toolbar-container .yui-toolbar-titlebar.draggable{cursor:move;}.yui-toolbar-container .yui-toolbar-titlebar{position:relative;}.yui-toolbar-container .yui-toolbar-titlebar h2{font-weight:bold;letter-spacing:0;border:none;color:#000;margin:0;padding:.2em;}.yui-toolbar-container .yui-toolbar-titlebar h2 a{text-decoration:none;color:#000;cursor:default;}.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-draghandle{height:40px;}.yui-toolbar-container .yui-toolbar-group{float:left;margin-right:.5em;zoom:1;}.yui-toolbar-container .yui-toolbar-group:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-container .yui-toolbar-group h3{font-size:75%;padding:0 0 0 .25em;margin:0;}.yui-toolbar-container span.yui-toolbar-separator{width:2px;padding:0;height:18px;margin:.2em 0 .2em .1em;display:none;float:left;}.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-separator{height:45px;*height:50px;}.yui-toolbar-container.yui-toolbar-grouped .yui-toolbar-group span.yui-toolbar-separator{height:18px;display:block;}.yui-toolbar-container ul li{margin:0;padding:0;list-style-type:none;}.yui-toolbar-container .yui-toolbar-nogrouplabels h3{display:none;}.yui-toolbar-container .yui-push-button,.yui-toolbar-container .yui-color-button,.yui-toolbar-container .yui-menu-button{position:relative;cursor:pointer;}.yui-toolbar-container .yui-button .first-child,.yui-toolbar-container .yui-button .first-child a{height:100%;width:100%;overflow:hidden;font-size:0px;}.yui-toolbar-container .yui-button-disabled{cursor:default;}.yui-toolbar-container .yui-button-disabled .yui-toolbar-icon{opacity:.5;filter:alpha(opacity=50);}.yui-toolbar-container .yui-button-disabled .up,.yui-toolbar-container .yui-button-disabled .down{opacity:.5;filter:alpha(opacity=50);}.yui-toolbar-container .yui-button a{overflow:hidden;}.yui-toolbar-container .yui-toolbar-select .first-child a{cursor:pointer;}.yui-toolbar-fontname-arial{font-family:Arial;}.yui-toolbar-fontname-arial-black{font-family:Arial Black;}.yui-toolbar-fontname-comic-sans-ms{font-family:Comic Sans MS;}.yui-toolbar-fontname-courier-new{font-family:Courier New;}.yui-toolbar-fontname-times-new-roman{font-family:Times New Roman;}.yui-toolbar-fontname-verdana{font-family:Verdana;}.yui-toolbar-fontname-impact{font-family:Impact;}.yui-toolbar-fontname-lucida-console{font-family:Lucida Console;}.yui-toolbar-fontname-tahoma{font-family:Tahoma;}.yui-toolbar-fontname-trebuchet-ms{font-family:Trebuchet MS;}.yui-toolbar-container .yui-toolbar-spinbutton{position:relative;}.yui-toolbar-container .yui-toolbar-spinbutton .first-child a{z-index:0;opacity:1;}.yui-toolbar-container .yui-toolbar-spinbutton a.up,.yui-toolbar-container .yui-toolbar-spinbutton a.down{position:absolute;display:block right:0;cursor:pointer;z-index:1;padding:0;margin:0;}.yui-toolbar-container .yui-overlay{position:absolute;}.yui-toolbar-container .yui-overlay ul li{margin:0;list-style-type:none;}.yui-toolbar-container{z-index:1;}.yui-editor-container .yui-editor-editable-container{position:relative;z-index:0;width:100%;}.yui-editor-container .yui-editor-masked{background-color:#CCC;}.yui-editor-container iframe{border:0px;padding:0;margin:0;zoom:1;display:block;}.yui-editor-container .yui-editor-editable{padding:0;margin:0;}.yui-editor-container .dompath{font-size:85%;}.yui-editor-panel .hd{text-align:left;position:relative;}.yui-editor-panel .hd h3{font-weight:bold;padding:0.25em 0pt 0.25em 0.25em;margin:0;}.yui-editor-panel .bd{width:100%;zoom:1;position:relative;}.yui-editor-panel .bd div.yui-editor-body-cont{padding:.25em .1em;zoom:1;}.yui-editor-panel .bd .gecko form{overflow:auto;}.yui-editor-panel .bd div.yui-editor-body-cont:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-editor-panel .ft{text-align:right;width:99%;float:left;clear:both;}.yui-editor-panel .ft span.tip{display:block;position:relative;padding:.5em .5em .5em 23px;text-align:left;zoom:1;}.yui-editor-panel label{clear:both;float:left;padding:0;width:100%;text-align:left;zoom:1;}.yui-editor-panel .gecko label{overflow:auto;}.yui-editor-panel label strong{float:left;width:6em;}.yui-editor-panel .removeLink{width:80%;text-align:right;}.yui-editor-panel label input{margin-left:.25em;float:left;}.yui-editor-panel .yui-toolbar-group{margin-bottom:0.75em;}.yui-editor-panel .yui-toolbar-group-padding{}.yui-editor-panel .yui-toolbar-group-border{}.yui-editor-panel .yui-toolbar-group-textflow{}.yui-editor-panel .height-width{float:left;}.yui-editor-panel .height-width h3{}.yui-editor-panel .height-width span{font-style:italic;display:block;float:left;overflow:visible;}.yui-editor-panel .height-width span.info{font-size:70%;margin-top:3px;}.yui-editor-panel .yui-toolbar-bordersize,.yui-editor-panel .yui-toolbar-bordertype{font-size:75%;}.yui-editor-panel .yui-toolbar-container span.yui-toolbar-separator{border:none;}.yui-editor-panel .yui-toolbar-bordersize span a span,.yui-editor-panel .yui-toolbar-bordertype span a span{display:block;height:8px;left:4px;position:absolute;top:3px;_top:-5px;width:24px;text-indent:52px;font-size:0%;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-solid{border-bottom:1px solid black;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dotted{border-bottom:1px dotted black;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dashed{border-bottom:1px dashed black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-0{*top:0px;text-indent:0px;font-size:75%;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-1{border-bottom:1px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-2{border-bottom:2px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-3{top:2px;*top:-5px;border-bottom:3px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-4{top:1px;*top:-5px;border-bottom:4px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-5{top:1px;*top:-5px;border-bottom:5px solid black;}.yui-toolbar-container .yui-toolbar-bordersize-menu,.yui-toolbar-container .yui-toolbar-bordertype-menu{width:95px !important;}.yui-toolbar-bordersize-menu .yuimenuitemlabel,.yui-toolbar-bordertype-menu .yuimenuitemlabel,.yui-toolbar-bordersize-menu .yuimenuitemlabel,.yui-toolbar-bordertype-menu .yuimenuitemlabel:hover{margin:0px 3px 7px 17px;}.yui-toolbar-bordersize-menu .yuimenuitemlabel .checkedindicator,.yui-toolbar-bordertype-menu .yuimenuitemlabel .checkedindicator{position:absolute;left:-12px;*top:14px;*left:0px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-1 a{border-bottom:1px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-2 a{border-bottom:2px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-3 a{border-bottom:3px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-4 a{border-bottom:4px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-5 a{border-bottom:5px solid black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-solid a{border-bottom:1px solid black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dashed a{border-bottom:1px dashed black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dotted a{border-bottom:1px dotted black;height:14px;}h2.yui-editor-skipheader,h3.yui-editor-skipheader{height:0;margin:0;padding:0;border:none;width:0;overflow:hidden;position:absolute;}.yui-toolbar-colors{width:133px;zoom:1;display:none;z-index:100;overflow:hidden;}.yui-toolbar-colors:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-colors a{height:9px;width:9px;float:left;display:block;overflow:hidden;text-indent:999px;margin:0;cursor:pointer;border:1px solid #F6F7EE;}.yui-toolbar-colors a:hover{border:1px solid black;}.yui-color-button-menu{overflow:visible;background-color:transparent;}.yui-toolbar-colors span{position:relative;display:block;padding:3px;overflow:hidden;float:left;width:100%;zoom:1;}.yui-toolbar-colors span:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-colors span em{height:35px;width:30px;float:left;display:block;overflow:hidden;text-indent:999px;margin:0.75px;border:1px solid black;}.yui-toolbar-colors span strong{font-weight:normal;padding-left:3px;display:block;font-size:85%;float:left;width:65%;}.yui-toolbar-group-undoredo h3,.yui-toolbar-group-insertitem h3,.yui-toolbar-group-indentlist h3{width:68px;}.yui-toolbar-group-indentlist2 h3{width:122px;}.yui-toolbar-group-alignment h3{width:130px;}.yui-skin-sam .yui-editor-container{border:1px solid #808080;}.yui-skin-sam .yui-toolbar-container{zoom:1;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar{background:url(sprite.png) repeat-x 0 -200px;position:relative;}.yui-skin-sam .yui-editor-container .draggable .yui-toolbar-titlebar{cursor:move;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar h2{color:#000000;font-weight:bold;margin:0;padding:0.3em 1em;font-size:100%;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-group h3{color:#808080;font-size:75%;margin:1em 0 0;padding-bottom:0;padding-left:0.25em;text-align:left;}.yui-toolbar-container span.yui-toolbar-separator{border:none;text-indent:33px;overflow:hidden;margin:0 .25em;}.yui-skin-sam .yui-toolbar-container{background-color:#F2F2F2;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-subcont{padding:0 1em 0.35em;border-bottom:1px solid #808080;}.yui-skin-sam .yui-toolbar-container-collapsed .yui-toolbar-titlebar{border-bottom:1px solid #808080;}.yui-skin-sam .yui-editor-container .visible .yui-menu-shadow,.yui-skin-sam .yui-editor-panel .visible .yui-menu-shadow{display:none;}.yui-skin-sam .yui-editor-container ul{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-editor-container ul li{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-toolbar-group ul li.yui-toolbar-groupitem{float:left;}.yui-skin-sam .yui-editor-container .dompath{background-color:#F2F2F2;border-top:1px solid #808080;color:#999;text-align:left;padding:0.25em;}.yui-skin-sam .yui-toolbar-container .collapse{background:url(sprite.png) no-repeat 0 -400px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar span.collapse{cursor:pointer;position:absolute;top:4px;right:2px;display:block;overflow:hidden;height:15px;width:15px;text-indent:9999px;}.yui-skin-sam .yui-toolbar-container .yui-push-button,.yui-skin-sam .yui-toolbar-container .yui-color-button,.yui-skin-sam .yui-toolbar-container .yui-menu-button{background:url(sprite.png) repeat-x 0 0;position:relative;display:block;height:22px;width:30px;_font-size:0;margin:0;border-color:#808080;color:#f2f2f2;border-style:solid;border-width:1px 0;zoom:1;}.yui-skin-sam .yui-toolbar-container .yui-push-button a,.yui-skin-sam .yui-toolbar-container .yui-color-button a,.yui-skin-sam .yui-toolbar-container .yui-menu-button a{padding-left:35px;height:20px;text-decoration:none;font-size:0px;line-height:2;display:block;color:#000;overflow:hidden;white-space:nowrap;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a,.yui-skin-sam .yui-toolbar-container .yui-toolbar-select a{font-size:12px;}.yui-skin-sam .yui-toolbar-container .yui-push-button .first-child,.yui-skin-sam .yui-toolbar-container .yui-color-button .first-child,.yui-skin-sam .yui-toolbar-container .yui-menu-button .first-child{border-color:#808080;border-style:solid;border-width:0 1px;margin:0 -1px;display:block;position:relative;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled .first-child,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled .first-child,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled .first-child{border-color:#ccc;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled a,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled a,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled a{color:#A6A6A6;cursor:default;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled{border-color:#ccc;}.yui-skin-sam .yui-toolbar-container .yui-button .first-child{*left:0px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-fontname{width:135px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-heading{width:92px;}.yui-skin-sam .yui-toolbar-container .yui-button-hover{background:url(sprite.png) repeat-x 0 -1300px;border-color:#808080;}.yui-skin-sam .yui-toolbar-container .yui-button-selected{background:url(sprite.png) repeat-x 0 -1700px;border-color:#808080;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels h3{display:none;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels .yui-toolbar-group{margin-top:.75em;}.yui-skin-sam .yui-toolbar-container .yui-push-button span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-color-button span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-menu-button span.yui-toolbar-icon{display:block;position:absolute;top:2px;height:18px;width:18px;overflow:hidden;background:url(editor-sprite.gif) no-repeat 30px 30px;}.yui-skin-sam .yui-toolbar-container .yui-button-selected span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-button-hover span.yui-toolbar-icon{background-image:url(editor-sprite-active.gif);}.yui-skin-sam .yui-toolbar-container .visible .yuimenuitemlabel{cursor:pointer;color:#000;*position:relative;}.yui-skin-sam .yui-toolbar-container .yui-button-menu{background-color:#fff;}.yui-skin-sam .yui-toolbar-container .yui-button-menu .yui-menu-body-scrolled{position:relative;}.yui-skin-sam div.yuimenu li.selected{background-color:#B3D4FF;}.yui-skin-sam div.yuimenu li.selected a.selected{color:#000;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-bold span.yui-toolbar-icon{background-position:0 0;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-strikethrough span.yui-toolbar-icon{background-position:0 -108px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-italic span.yui-toolbar-icon{background-position:0 -36px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-undo span.yui-toolbar-icon{background-position:0 -1326px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-redo span.yui-toolbar-icon{background-position:0 -1355px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-underline span.yui-toolbar-icon{background-position:0 -72px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-subscript span.yui-toolbar-icon{background-position:0 -180px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-superscript span.yui-toolbar-icon{background-position:0 -144px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-forecolor span.yui-toolbar-icon{background-position:0 -216px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-backcolor span.yui-toolbar-icon{background-position:0 -288px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyleft span.yui-toolbar-icon{background-position:0 -324px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifycenter span.yui-toolbar-icon{background-position:0 -360px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyright span.yui-toolbar-icon{background-position:0 -396px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyfull span.yui-toolbar-icon{background-position:0 -432px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-indent span.yui-toolbar-icon{background-position:0 -720px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-outdent span.yui-toolbar-icon{background-position:0 -684px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-createlink span.yui-toolbar-icon{background-position:0 -792px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertimage span.yui-toolbar-icon{background-position:1px -756px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-left span.yui-toolbar-icon{background-position:0 -972px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-right span.yui-toolbar-icon{background-position:0 -936px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-inline span.yui-toolbar-icon{background-position:0 -900px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-block span.yui-toolbar-icon{background-position:0 -864px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-bordercolor span.yui-toolbar-icon{background-position:0 -252px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-removeformat span.yui-toolbar-icon{background-position:0 -1080px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-hiddenelements span.yui-toolbar-icon{background-position:0 -1044px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertunorderedlist span.yui-toolbar-icon{background-position:0 -468px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertorderedlist span.yui-toolbar-icon{background-position:0 -504px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton,.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child{width:35px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child a{padding-left:2px;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton span.yui-toolbar-icon{display:none;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up,.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down{right:2px;background:url(editor-sprite.gif) no-repeat 0 -1222px;overflow:hidden;height:6px;width:7px;min-height:0;padding:0;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up{top:2px;background-position:0 -1222px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down{bottom:2px;background-position:0 -1187px;}.yui-skin-sam .yui-toolbar-container select{height:22px;border:1px solid #808080;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-select .first-child a{padding-left:5px;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-select span.yui-toolbar-icon{background:url( editor-sprite.gif ) no-repeat 0 -1144px;overflow:hidden;right:-2px;top:0px;height:20px;}.yui-skin-sam .yui-editor-panel .yui-color-button-menu .bd{background-color:transparent;border:none;width:135px;}.yui-skin-sam .yui-color-button-menu .yui-toolbar-colors{border:1px solid #808080;}.yui-skin-sam .yui-editor-panel{padding:0;margin:0;border:none;background-color:transparent;overflow:visible;position:absolute;}.yui-skin-sam .yui-editor-panel .hd{margin:10px 0 0;padding:0;border:none;}.yui-skin-sam .yui-editor-panel .hd h3{color:#000;border:1px solid #808080;background:url(sprite.png) repeat-x 0 -200px;width:99%;position:relative;margin:0;padding:3px 0 0 0;font-size:93%;text-indent:5px;height:20px;}.yui-skin-sam .yui-editor-panel .bd{background-color:#F2F2F2;border-left:1px solid #808080;border-right:1px solid #808080;width:99%;margin:0;padding:0;overflow:visible;}.yui-skin-sam .yui-editor-panel ul{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-editor-panel ul li{margin:0;padding:0;}.yui-skin-sam .yui-editor-panel .yuimenu{}.yui-skin-sam .yui-editor-panel .yui-toolbar-container .yui-toolbar-subcont{padding:0;border:none;margin-top:0.35em;}.yui-skin-sam .yui-editor-panel .yui-toolbar-bordersize,.yui-skin-sam .yui-editor-panel .yui-toolbar-bordertype{width:50px;}.yui-skin-sam .yui-editor-panel label{display:block;float:none;padding:4px 0;margin-bottom:7px;}.yui-skin-sam .yui-editor-panel label strong{font-weight:normal;font-size:93%;text-align:right;padding-top:2px;}.yui-skin-sam .yui-editor-panel label input{width:75%;}.yui-skin-sam .yui-editor-panel .createlink_target,.yui-skin-sam .yui-editor-panel .insertimage_target{width:auto;margin-right:5px;}.yui-skin-sam .yui-editor-panel .removeLink{width:98%;}.yui-skin-sam .yui-editor-panel label input.warning{background-color:#FFEE69;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group h3{color:#000;float:left;font-weight:normal;font-size:93%;margin:5px 0 0 0;padding:0 3px 0 0;text-align:right;}.yui-skin-sam .yui-editor-panel .height-width h3{margin:3px 0 0 10px;}.yui-skin-sam .yui-editor-panel .height-width{margin:3px 0 0 35px;*margin-left:14px;width:42%;*width:44%;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-border{width:190px;}.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-border{width:210px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding{width:203px;_width:198px;}.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-padding{width:172px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding h3{margin-left:25px;*margin-left:12px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-textflow{width:182px;}.yui-skin-sam .yui-editor-panel .hd{background:none;}.yui-skin-sam .yui-editor-panel .ft{background-color:#F2F2F2;border:1px solid #808080;border-top:none;padding:0;margin:0 0 2px 0;}.yui-skin-sam .yui-editor-panel .hd span.close{background:url(sprite.png) no-repeat 0 -300px;cursor:pointer;display:block;height:16px;overflow:hidden;position:absolute;right:5px;text-indent:500px;top:2px;width:26px;}.yui-skin-sam .yui-editor-panel .ft span.tip{background-color:#EDF5FF;border-top:1px solid #808080;font-size:85%;}.yui-skin-sam .yui-editor-panel .ft span.tip strong{display:block;float:left;margin:0 2px 8px 0;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon{background:url( editor-sprite.gif ) no-repeat 0 -1260px;display:block;height:20px;left:2px;position:absolute;top:8px;width:20px;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-info{background-position:2px -1260px;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-warn{background-position:2px -1296px;}.yui-skin-sam .yui-editor-panel .hd span.knob{position:absolute;height:10px;width:28px;top:-10px;left:25px;text-indent:9999px;overflow:hidden;background:url( editor-knob.gif ) no-repeat 0 0;}.yui-skin-sam .yui-editor-panel .yui-toolbar-container{float:left;width:100%;background-image:none;border:none;}.yui-skin-sam .yui-editor-panel .yui-toolbar-container .bd{background-color:#ffffff;}.yui-editor-blankimage{background-image:url( blankimage.png );}.yui-skin-sam .yui-editor-container .yui-resize-handle-br{height:11px;width:11px;background-position:-20px -60px;background-color:transparent;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/header_background.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/header_background.png
deleted file mode 100644
index 3ef7909..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/header_background.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/hue_bg.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/hue_bg.png
deleted file mode 100644
index d9bcdeb..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/hue_bg.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/imagecropper.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/imagecropper.css
deleted file mode 100644
index 73d3216..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/imagecropper.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-crop{position:relative;}.yui-crop .yui-crop-mask{position:absolute;top:0;left:0;height:100%;width:100%;}.yui-crop .yui-resize{position:absolute;top:10px;left:10px;border:0;}.yui-crop .yui-crop-resize-mask{position:absolute;top:0;left:0;height:100%;width:100%;background-position:-10px -10px;overflow:hidden;}.yui-skin-sam .yui-crop .yui-crop-mask{background-color:#000;opacity:.5;filter:alpha(opacity=50);}.yui-skin-sam .yui-crop .yui-resize{border:1px dashed #fff;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/layout.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/layout.css
deleted file mode 100644
index d4c1fe3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/layout.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-layout-loading{visibility:hidden;}body.yui-layout{overflow:hidden;position:relative;padding:0;margin:0;}.yui-layout-doc{position:relative;overflow:hidden;padding:0;margin:0;}.yui-layout-unit{height:50px;width:50px;padding:0;margin:0;float:none;z-index:0;}.yui-layout-unit-top{position:absolute;top:0;left:0;width:100%;}.yui-layout-unit-left{position:absolute;top:0;left:0;}.yui-layout-unit-right{position:absolute;top:0;right:0;}.yui-layout-unit-bottom{position:absolute;bottom:0;left:0;width:100%;}.yui-layout-unit-center{position:absolute;top:0;left:0;width:100%;}.yui-layout div.yui-layout-hd{position:absolute;top:0;left:0;zoom:1;width:100%;}.yui-layout div.yui-layout-bd{position:absolute;top:0;left:0;zoom:1;width:100%;}.yui-layout .yui-layout-noscroll div.yui-layout-bd{overflow:hidden;}.yui-layout .yui-layout-scroll div.yui-layout-bd{overflow:auto;}.yui-layout div.yui-layout-ft{position:absolute;bottom:0;left:0;width:100%;zoom:1;}.yui-layout .yui-layout-unit div.yui-layout-hd h2{text-align:left;}.yui-layout .yui-layout-unit div.yui-layout-hd .collapse{cursor:pointer;height:13px;position:absolute;right:2px;top:2px;width:17px;font-size:0;}.yui-layout .yui-layout-unit div.yui-layout-hd .close{cursor:pointer;height:13px;position:absolute;right:2px;top:2px;width:17px;font-size:0;}.yui-layout .yui-layout-unit div.yui-layout-hd .collapse-close{right:25px;}.yui-layout .yui-layout-clip{position:absolute;height:20px;background-color:#c0c0c0;display:none;}.yui-layout .yui-layout-clip .collapse{cursor:pointer;height:13px;position:absolute;right:2px;top:2px;width:17px;font-size:0px;}.yui-layout .yui-layout-wrap{height:100%;width:100%;position:absolute;left:0;}.yui-skin-sam .yui-layout .yui-resize-proxy{border:none;font-size:0;margin:0;padding:0;}.yui-skin-sam .yui-layout .yui-resize-resizing .yui-resize-handle{visibility:hidden;}.yui-skin-sam .yui-layout .yui-resize-proxy div{position:absolute;border:1px solid #808080;background-color:#EDF5FF;}.yui-skin-sam .yui-layout .yui-resize .yui-resize-handle-active{}.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-l{width:5px;height:100%;top:0;left:0;}.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-r{width:5px;top:0;right:0;height:100%;position:absolute;zoom:1;}.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-b{width:100%;bottom:0;left:0;height:5px;}.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-t{width:100%;top:0;left:0;height:5px;}.yui-skin-sam .yui-layout .yui-layout-unit-left div.yui-layout-hd .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -160px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip-left .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -140px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit-right div.yui-layout-hd .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -200px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip-right .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -120px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit-top div.yui-layout-hd .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -220px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip-top .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -240px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit-bottom div.yui-layout-hd .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -260px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip-bottom .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -180px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-hd .close{background:transparent url(layout_sprite.png) no-repeat -20px -100px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-hd{background:url(sprite.png) repeat-x 0 -1400px;border:1px solid #808080;}.yui-skin-sam .yui-layout{background-color:#EDF5FF;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-hd h2{font-weight:bold;color:#fff;padding:3px;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-bd{border:1px solid #808080;border-bottom:none;border-top:none;*border-bottom-width:0;*border-top-width:0;background-color:#f2f2f2;text-align:left;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-bd-noft{border-bottom:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-bd-nohd{border-top:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip{position:absolute;height:20px;background-color:#EDF5FF;display:none;border:1px solid #808080;}.yui-skin-sam .yui-layout div.yui-layout-ft{border:1px solid #808080;border-top:none;*border-top-width:0;background-color:#f2f2f2;}.yui-skin-sam .yui-layout-unit .yui-resize-handle{background-color:transparent;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-r{right:0;top:0;background-image:none;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-l{left:0;top:0;background-image:none;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-b{right:0;bottom:0;background-image:none;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-t{right:0;top:0;background-image:none;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-r .yui-layout-resize-knob,.yui-skin-sam .yui-layout-unit .yui-resize-handle-l .yui-layout-resize-knob{position:absolute;height:16px;width:6px;top:45%;left:0px;background:transparent url(layout_sprite.png) no-repeat 0 -5px;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-t .yui-layout-resize-knob,.yui-skin-sam .yui-layout-unit .yui-resize-handle-b .yui-layout-resize-knob{position:absolute;height:6px;width:16px;left:45%;background:transparent url(layout_sprite.png) no-repeat -20px 0;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/layout_sprite.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/layout_sprite.png
deleted file mode 100644
index d6fce3c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/layout_sprite.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/loading.gif b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/loading.gif
deleted file mode 100644
index 0bbf3bc..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/loading.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/logger.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/logger.css
deleted file mode 100644
index f145cf8..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/logger.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-log{padding:1em;width:31em;background-color:#AAA;color:#000;border:1px solid black;font-family:monospace;font-size:77%;text-align:left;z-index:9000;}.yui-skin-sam .yui-log-container{position:absolute;top:1em;right:1em;}.yui-skin-sam .yui-log input{margin:0;padding:0;font-family:arial;font-size:100%;font-weight:normal;}.yui-skin-sam .yui-log .yui-log-btns{position:relative;float:right;bottom:.25em;}.yui-skin-sam .yui-log .yui-log-hd{margin-top:1em;padding:.5em;background-color:#575757;}.yui-skin-sam .yui-log .yui-log-hd h4{margin:0;padding:0;font-size:108%;font-weight:bold;color:#FFF;}.yui-skin-sam .yui-log .yui-log-bd{width:100%;height:20em;background-color:#FFF;border:1px solid gray;overflow:auto;}.yui-skin-sam .yui-log p{margin:1px;padding:.1em;}.yui-skin-sam .yui-log pre{margin:0;padding:0;}.yui-skin-sam .yui-log pre.yui-log-verbose{white-space:pre-wrap;white-space:-moz-pre-wrap !important;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;}.yui-skin-sam .yui-log .yui-log-ft{margin-top:.5em;}.yui-skin-sam .yui-log .yui-log-ft .yui-log-categoryfilters{}.yui-skin-sam .yui-log .yui-log-ft .yui-log-sourcefilters{width:100%;border-top:1px solid #575757;margin-top:.75em;padding-top:.75em;}.yui-skin-sam .yui-log .yui-log-filtergrp{margin-right:.5em;}.yui-skin-sam .yui-log .info{background-color:#A7CC25;}.yui-skin-sam .yui-log .warn{background-color:#F58516;}.yui-skin-sam .yui-log .error{background-color:#E32F0B;}.yui-skin-sam .yui-log .time{background-color:#A6C9D7;}.yui-skin-sam .yui-log .window{background-color:#F2E886;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menu-button-arrow-disabled.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menu-button-arrow-disabled.png
deleted file mode 100644
index 8cef2ab..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menu-button-arrow-disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menu-button-arrow.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menu-button-arrow.png
deleted file mode 100644
index f03dfee..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menu-button-arrow.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menu.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menu.css
deleted file mode 100644
index ba0e8f3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menu.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yuimenu{top:-999em;left:-999em;}.yuimenubar{position:static;}.yuimenu .yuimenu,.yuimenubar .yuimenu{position:absolute;}.yuimenubar li,.yuimenu li{list-style-type:none;}.yuimenubar ul,.yuimenu ul,.yuimenubar li,.yuimenu li,.yuimenu h6,.yuimenubar h6{margin:0;padding:0;}.yuimenuitemlabel,.yuimenubaritemlabel{text-align:left;white-space:nowrap;}.yuimenubar ul{*zoom:1;}.yuimenubar .yuimenu ul{*zoom:normal;}.yuimenubar>.bd>ul:after{content:".";display:block;clear:both;visibility:hidden;height:0;line-height:0;}.yuimenubaritem{float:left;}.yuimenubaritemlabel,.yuimenuitemlabel{display:block;}.yuimenuitemlabel .helptext{font-style:normal;display:block;margin:-1em 0 0 10em;}.yui-menu-shadow{position:absolute;visibility:hidden;z-index:-1;}.yui-menu-shadow-visible{top:2px;right:-3px;left:-3px;bottom:-3px;visibility:visible;}.hide-scrollbars *{overflow:hidden;}.hide-scrollbars select{display:none;}.yuimenu.show-scrollbars,.yuimenubar.show-scrollbars{overflow:visible;}.yuimenu.hide-scrollbars .yui-menu-shadow,.yuimenubar.hide-scrollbars .yui-menu-shadow{overflow:hidden;}.yuimenu.show-scrollbars .yui-menu-shadow,.yuimenubar.show-scrollbars .yui-menu-shadow{overflow:auto;}.yui-skin-sam .yuimenubar{font-size:93%;line-height:2;*line-height:1.9;border:solid 1px #808080;background:url(sprite.png) repeat-x 0 0;}.yui-skin-sam .yuimenubarnav .yuimenubaritem{border-right:solid 1px #ccc;}.yui-skin-sam .yuimenubaritemlabel{padding:0 10px;color:#000;text-decoration:none;cursor:default;border-style:solid;border-color:#808080;border-width:1px 0;*position:relative;margin:-1px 0;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel{padding-right:20px;*display:inline-block;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu{background:url(menubaritem_submenuindicator.png) right center no-repeat;}.yui-skin-sam .yuimenubaritem-selected{background:url(sprite.png) repeat-x 0 -1700px;}.yui-skin-sam .yuimenubaritemlabel-selected{border-color:#7D98B8;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-selected{border-left-width:1px;margin-left:-1px;*left:-1px;}.yui-skin-sam .yuimenubaritemlabel-disabled{cursor:default;color:#A6A6A6;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu-disabled{background-image:url(menubaritem_submenuindicator_disabled.png);}.yui-skin-sam .yuimenu{font-size:93%;line-height:1.5;*line-height:1.45;}.yui-skin-sam .yuimenubar .yuimenu,.yui-skin-sam .yuimenu .yuimenu{font-size:100%;}.yui-skin-sam .yuimenu .bd{*zoom:1;_zoom:normal;border:solid 1px #808080;background-color:#fff;}.yui-skin-sam .yuimenu .yuimenu .bd{*zoom:normal;}.yui-skin-sam .yuimenu ul{padding:3px 0;border-width:1px 0 0 0;border-color:#ccc;border-style:solid;}.yui-skin-sam .yuimenu ul.first-of-type{border-width:0;}.yui-skin-sam .yuimenu h6{font-weight:bold;border-style:solid;border-color:#ccc;border-width:1px 0 0 0;color:#a4a4a4;padding:3px 10px 0 10px;}.yui-skin-sam .yuimenu ul.hastitle,.yui-skin-sam .yuimenu h6.first-of-type{border-width:0;}.yui-skin-sam .yuimenu .yui-menu-body-scrolled{border-color:#ccc #808080;overflow:hidden;}.yui-skin-sam .yuimenu .topscrollbar,.yui-skin-sam .yuimenu .bottomscrollbar{height:16px;border:solid 1px #808080;background:#fff url(sprite.png) no-repeat 0 0;}.yui-skin-sam .yuimenu .topscrollbar{border-bottom-width:0;background-position:center -950px;}.yui-skin-sam .yuimenu .topscrollbar_disabled{background-position:center -975px;}.yui-skin-sam .yuimenu .bottomscrollbar{border-top-width:0;background-position:center -850px;}.yui-skin-sam .yuimenu .bottomscrollbar_disabled{background-position:center -875px;}.yui-skin-sam .yuimenuitem{_border-bottom:solid 1px #fff;}.yui-skin-sam .yuimenuitemlabel{padding:0 20px;color:#000;text-decoration:none;cursor:default;}.yui-skin-sam .yuimenuitemlabel .helptext{margin-top:-1.5em;*margin-top:-1.45em;}.yui-skin-sam .yuimenuitem-hassubmenu{background-image:url(menuitem_submenuindicator.png);background-position:right center;background-repeat:no-repeat;}.yui-skin-sam .yuimenuitem-checked{background-image:url(menuitem_checkbox.png);background-position:left center;background-repeat:no-repeat;}.yui-skin-sam .yui-menu-shadow-visible{background-color:#000;opacity:.12;*filter:alpha(opacity=12);}.yui-skin-sam .yuimenuitem-selected{background-color:#B3D4FF;}.yui-skin-sam .yuimenuitemlabel-disabled{cursor:default;color:#A6A6A6;}.yui-skin-sam .yuimenuitem-hassubmenu-disabled{background-image:url(menuitem_submenuindicator_disabled.png);}.yui-skin-sam .yuimenuitem-checked-disabled{background-image:url(menuitem_checkbox_disabled.png);}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menubaritem_submenuindicator.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menubaritem_submenuindicator.png
deleted file mode 100644
index 030941c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menubaritem_submenuindicator.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menubaritem_submenuindicator_disabled.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menubaritem_submenuindicator_disabled.png
deleted file mode 100644
index 6c16122..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menubaritem_submenuindicator_disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menuitem_checkbox.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menuitem_checkbox.png
deleted file mode 100644
index 1437a4f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menuitem_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menuitem_checkbox_disabled.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menuitem_checkbox_disabled.png
deleted file mode 100644
index 5d5b998..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menuitem_checkbox_disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menuitem_submenuindicator.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menuitem_submenuindicator.png
deleted file mode 100644
index ea4f660..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menuitem_submenuindicator.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menuitem_submenuindicator_disabled.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menuitem_submenuindicator_disabled.png
deleted file mode 100644
index 427d60a..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/menuitem_submenuindicator_disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/paginator.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/paginator.css
deleted file mode 100644
index fab4258..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/paginator.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-pg-container{display:block;margin:6px 0;white-space:nowrap;}.yui-skin-sam .yui-pg-first,.yui-skin-sam .yui-pg-previous,.yui-skin-sam .yui-pg-next,.yui-skin-sam .yui-pg-last,.yui-skin-sam .yui-pg-current,.yui-skin-sam .yui-pg-pages,.yui-skin-sam .yui-pg-page{display:inline-block;font-family:arial,helvetica,clean,sans-serif;padding:3px 6px;zoom:1;}.yui-skin-sam .yui-pg-pages{padding:0;}.yui-skin-sam .yui-pg-current{padding:3px 0;}.yui-skin-sam a.yui-pg-first:link,.yui-skin-sam a.yui-pg-first:visited,.yui-skin-sam a.yui-pg-first:active,.yui-skin-sam a.yui-pg-first:hover,.yui-skin-sam a.yui-pg-previous:link,.yui-skin-sam a.yui-pg-previous:visited,.yui-skin-sam a.yui-pg-previous:active,.yui-skin-sam a.yui-pg-previous:hover,.yui-skin-sam a.yui-pg-next:link,.yui-skin-sam a.yui-pg-next:visited,.yui-skin-sam a.yui-pg-next:active,.yui-skin-sam a.yui-pg-next:hover,.yui-skin-sam a.yui-pg-last:link,.yui-skin-sam a.yui-pg-last:visited,.yui-skin-sam a.yui-pg-last:active,.yui-skin-sam a.yui-pg-last:hover,.yui-skin-sam a.yui-pg-page:link,.yui-skin-sam a.yui-pg-page:visited,.yui-skin-sam a.yui-pg-page:active,.yui-skin-sam a.yui-pg-page:hover{color:#06c;text-decoration:underline;outline:0;}.yui-skin-sam span.yui-pg-first,.yui-skin-sam span.yui-pg-previous,.yui-skin-sam span.yui-pg-next,.yui-skin-sam span.yui-pg-last{color:#a6a6a6;}.yui-skin-sam .yui-pg-page{background-color:#fff;border:1px solid #CBCBCB;padding:2px 6px;text-decoration:none;}.yui-skin-sam .yui-pg-current-page{background-color:transparent;border:none;font-weight:bold;padding:3px 6px;}.yui-skin-sam .yui-pg-page{margin-left:1px;margin-right:1px;}.yui-skin-sam .yui-pg-first,.yui-skin-sam .yui-pg-previous{padding-left:0;}.yui-skin-sam .yui-pg-next,.yui-skin-sam .yui-pg-last{padding-right:0;}.yui-skin-sam .yui-pg-current,.yui-skin-sam .yui-pg-rpp-options{margin-left:1em;margin-right:1em;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/picker_mask.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/picker_mask.png
deleted file mode 100644
index f8d9193..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/picker_mask.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/profilerviewer.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/profilerviewer.css
deleted file mode 100644
index 8305335..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/profilerviewer.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-pv{background-color:#4a4a4a;font:arial;position:relative;width:99%;z-index:1000;margin-bottom:1em;overflow:hidden;}.yui-skin-sam .yui-pv .hd{background:url(header_background.png) repeat-x;min-height:30px;overflow:hidden;zoom:1;padding:2px 0;}.yui-skin-sam .yui-pv .hd h4{padding:8px 10px;margin:0;font:bold 14px arial;color:#fff;}.yui-skin-sam .yui-pv .hd a{background:#3f6bc3;font:bold 11px arial;color:#fff;padding:4px;margin:3px 10px 0 0;border:1px solid #3f567d;cursor:pointer;display:block;float:right;}.yui-skin-sam .yui-pv .hd span{display:none;}.yui-skin-sam .yui-pv .hd span.yui-pv-busy{height:18px;width:18px;background:url(wait.gif) no-repeat;overflow:hidden;display:block;float:right;margin:4px 10px 0 0;}.yui-skin-sam .yui-pv .hd:after,.yui-pv .bd:after,.yui-skin-sam .yui-pv-chartlegend dl:after{content:'.';visibility:hidden;clear:left;height:0;display:block;}.yui-skin-sam .yui-pv .bd{position:relative;zoom:1;overflow-x:auto;overflow-y:hidden;}.yui-skin-sam .yui-pv .yui-pv-table{padding:0 10px;margin:5px 0 10px 0;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-bd td{color:#eeee5c;font:12px arial;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-odd{background:#929292;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-even{background:#58637a;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-even td.yui-dt-asc,.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-even td.yui-dt-desc{background:#384970;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-odd td.yui-dt-asc,.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-odd td.yui-dt-desc{background:#6F6E6E;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th{background-image:none;background:#2E2D2D;}.yui-skin-sam .yui-pv th.yui-dt-asc .yui-dt-liner{background:transparent url(asc.gif) no-repeat scroll right center;}.yui-skin-sam .yui-pv th.yui-dt-desc .yui-dt-liner{background:transparent url(desc.gif) no-repeat scroll right center;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th a{color:#fff;font:bold 12px arial;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th.yui-dt-asc,.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th.yui-dt-desc{background:#333;}.yui-skin-sam .yui-pv-chartcontainer{padding:0 10px;}.yui-skin-sam .yui-pv-chart{height:250px;clear:right;margin:5px 0 0 0;color:#fff;}.yui-skin-sam .yui-pv-chartlegend div{float:right;margin:0 0 0 10px;_width:250px;}.yui-skin-sam .yui-pv-chartlegend dl{border:1px solid #999;padding:.2em 0 .2em .5em;zoom:1;margin:5px 0;}.yui-skin-sam .yui-pv-chartlegend dt{float:left;display:block;height:.7em;width:.7em;padding:0;}.yui-skin-sam .yui-pv-chartlegend dd{float:left;display:block;color:#fff;margin:0 1em 0 .5em;padding:0;font:11px arial;}.yui-skin-sam .yui-pv-minimized{height:35px;}.yui-skin-sam .yui-pv-minimized .bd{top:-3000px;}.yui-skin-sam .yui-pv-minimized .hd a.yui-pv-refresh{display:none;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/resize.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/resize.css
deleted file mode 100644
index 01e7918..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/resize.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-resize{position:relative;zoom:1;z-index:0;}.yui-resize-wrap{zoom:1;}.yui-draggable{cursor:move;}.yui-resize .yui-resize-handle{position:absolute;z-index:1;font-size:0;margin:0;padding:0;zoom:1;height:1px;width:1px;}.yui-resize .yui-resize-handle-br{height:5px;width:5px;bottom:0;right:0;cursor:se-resize;z-index:2;zoom:1;}.yui-resize .yui-resize-handle-bl{height:5px;width:5px;bottom:0;left:0;cursor:sw-resize;z-index:2;zoom:1;}.yui-resize .yui-resize-handle-tl{height:5px;width:5px;top:0;left:0;cursor:nw-resize;z-index:2;zoom:1;}.yui-resize .yui-resize-handle-tr{height:5px;width:5px;top:0;right:0;cursor:ne-resize;z-index:2;zoom:1;}.yui-resize .yui-resize-handle-r{width:5px;height:100%;top:0;right:0;cursor:e-resize;zoom:1;}.yui-resize .yui-resize-handle-l{height:100%;width:5px;top:0;left:0;cursor:w-resize;zoom:1;}.yui-resize .yui-resize-handle-b{width:100%;height:5px;bottom:0;right:0;cursor:s-resize;zoom:1;}.yui-resize .yui-resize-handle-t{width:100%;height:5px;top:0;right:0;cursor:n-resize;zoom:1;}.yui-resize-proxy{position:absolute;border:1px dashed #000;visibility:hidden;z-index:1000;}.yui-resize-hover .yui-resize-handle,.yui-resize-hidden .yui-resize-handle{opacity:0;filter:alpha(opacity=0);}.yui-resize-ghost{opacity:.5;filter:alpha(opacity=50);}.yui-resize-knob .yui-resize-handle{height:6px;width:6px;}.yui-resize-knob .yui-resize-handle-tr{right:-3px;top:-3px;}.yui-resize-knob .yui-resize-handle-tl{left:-3px;top:-3px;}.yui-resize-knob .yui-resize-handle-bl{left:-3px;bottom:-3px;}.yui-resize-knob .yui-resize-handle-br{right:-3px;bottom:-3px;}.yui-resize-knob .yui-resize-handle-t{left:45%;top:-3px;}.yui-resize-knob .yui-resize-handle-r{right:-3px;top:45%;}.yui-resize-knob .yui-resize-handle-l{left:-3px;top:45%;}.yui-resize-knob .yui-resize-handle-b{left:45%;bottom:-3px;}.yui-resize-status{position:absolute;top:-999px;left:-999px;padding:2px;font-size:80%;display:none;zoom:1;z-index:9999;}.yui-resize-status strong,.yui-resize-status em{font-weight:normal;font-style:normal;padding:1px;zoom:1;}.yui-skin-sam .yui-resize .yui-resize-handle{background-color:#F2F2F2;}.yui-skin-sam .yui-resize .yui-resize-handle-active{background-color:#7D98B8;zoom:1;}.yui-skin-sam .yui-resize .yui-resize-handle-l,.yui-skin-sam .yui-resize .yui-resize-handle-r,.yui-skin-sam .yui-resize .yui-resize-handle-l-active,.yui-skin-sam .yui-resize .yui-resize-handle-r-active{height:100%;}.yui-skin-sam .yui-resize-knob .yui-resize-handle{border:1px solid #808080;}.yui-skin-sam .yui-resize-hover .yui-resize-handle-active{opacity:1;filter:alpha(opacity=100);}.yui-skin-sam .yui-resize-proxy{border:1px dashed #426FD9;}.yui-skin-sam .yui-resize-status{border:1px solid #A6982B;border-top:1px solid #D4C237;background-color:#FFEE69;color:#000;}.yui-skin-sam .yui-resize-status strong,.yui-skin-sam .yui-resize-status em{float:left;display:block;clear:both;padding:1px;text-align:center;}.yui-skin-sam .yui-resize .yui-resize-handle-inner-r,.yui-skin-sam .yui-resize .yui-resize-handle-inner-l{background:transparent url( layout_sprite.png) no-repeat 0 -5px;height:16px;width:5px;position:absolute;top:45%;}.yui-skin-sam .yui-resize .yui-resize-handle-inner-t,.yui-skin-sam .yui-resize .yui-resize-handle-inner-b{background:transparent url(layout_sprite.png) no-repeat -20px 0;height:5px;width:16px;position:absolute;left:50%;}.yui-skin-sam .yui-resize .yui-resize-handle-br{background-image:url( layout_sprite.png );background-repeat:no-repeat;background-position:-22px -62px;}.yui-skin-sam .yui-resize .yui-resize-handle-tr{background-image:url( layout_sprite.png );background-repeat:no-repeat;background-position:-22px -42px;}.yui-skin-sam .yui-resize .yui-resize-handle-tl{background-image:url( layout_sprite.png );background-repeat:no-repeat;background-position:-22px -82px;}.yui-skin-sam .yui-resize .yui-resize-handle-bl{background-image:url( layout_sprite.png );background-repeat:no-repeat;background-position:-22px -23px;}.yui-skin-sam .yui-resize-knob .yui-resize-handle-t,.yui-skin-sam .yui-resize-knob .yui-resize-handle-r,.yui-skin-sam .yui-resize-knob .yui-resize-handle-b,.yui-skin-sam .yui-resize-knob .yui-resize-handle-l,.yui-skin-sam .yui-resize-knob .yui-resize-handle-tl,.yui-skin-sam .yui-resize-knob .yui-resize-handle-tr,.yui-skin-sam .yui-resize-knob .yui-resize-handle-bl,.yui-skin-sam .yui-resize-knob .yui-resize-handle-br,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-t,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-r,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-b,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-l,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-tl,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-tr,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-bl,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-br{background-image:none;}.yui-skin-sam .yui-resize-knob .yui-resize-handle-l,.yui-skin-sam .yui-resize-knob .yui-resize-handle-r,.yui-skin-sam .yui-resize-knob .yui-resize-handle-l-active,.yui-skin-sam .yui-resize-knob .yui-resize-handle-r-active{height:6px;width:6px;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/simpleeditor.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/simpleeditor.css
deleted file mode 100644
index 780c387..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/simpleeditor.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-busy{cursor:wait !important;}.yui-toolbar-container fieldset{padding:0;margin:0;border:0;}.yui-toolbar-container legend{display:none;}.yui-toolbar-container .yui-toolbar-subcont{padding:.25em 0;zoom:1;}.yui-toolbar-container-collapsed .yui-toolbar-subcont{display:none;}.yui-toolbar-container .yui-toolbar-subcont:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-container span.yui-toolbar-draghandle{cursor:move;border-left:1px solid #999;border-right:1px solid #999;overflow:hidden;text-indent:77777px;width:2px;height:20px;display:block;clear:none;float:left;margin:0 0 0 .2em;}.yui-toolbar-container .yui-toolbar-titlebar.draggable{cursor:move;}.yui-toolbar-container .yui-toolbar-titlebar{position:relative;}.yui-toolbar-container .yui-toolbar-titlebar h2{font-weight:bold;letter-spacing:0;border:none;color:#000;margin:0;padding:.2em;}.yui-toolbar-container .yui-toolbar-titlebar h2 a{text-decoration:none;color:#000;cursor:default;}.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-draghandle{height:40px;}.yui-toolbar-container .yui-toolbar-group{float:left;margin-right:.5em;zoom:1;}.yui-toolbar-container .yui-toolbar-group:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-container .yui-toolbar-group h3{font-size:75%;padding:0 0 0 .25em;margin:0;}.yui-toolbar-container span.yui-toolbar-separator{width:2px;padding:0;height:18px;margin:.2em 0 .2em .1em;display:none;float:left;}.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-separator{height:45px;*height:50px;}.yui-toolbar-container.yui-toolbar-grouped .yui-toolbar-group span.yui-toolbar-separator{height:18px;display:block;}.yui-toolbar-container ul li{margin:0;padding:0;list-style-type:none;}.yui-toolbar-container .yui-toolbar-nogrouplabels h3{display:none;}.yui-toolbar-container .yui-push-button,.yui-toolbar-container .yui-color-button,.yui-toolbar-container .yui-menu-button{position:relative;cursor:pointer;}.yui-toolbar-container .yui-button .first-child,.yui-toolbar-container .yui-button .first-child a{height:100%;width:100%;overflow:hidden;font-size:0px;}.yui-toolbar-container .yui-button-disabled{cursor:default;}.yui-toolbar-container .yui-button-disabled .yui-toolbar-icon{opacity:.5;filter:alpha(opacity=50);}.yui-toolbar-container .yui-button-disabled .up,.yui-toolbar-container .yui-button-disabled .down{opacity:.5;filter:alpha(opacity=50);}.yui-toolbar-container .yui-button a{overflow:hidden;}.yui-toolbar-container .yui-toolbar-select .first-child a{cursor:pointer;}.yui-toolbar-fontname-arial{font-family:Arial;}.yui-toolbar-fontname-arial-black{font-family:Arial Black;}.yui-toolbar-fontname-comic-sans-ms{font-family:Comic Sans MS;}.yui-toolbar-fontname-courier-new{font-family:Courier New;}.yui-toolbar-fontname-times-new-roman{font-family:Times New Roman;}.yui-toolbar-fontname-verdana{font-family:Verdana;}.yui-toolbar-fontname-impact{font-family:Impact;}.yui-toolbar-fontname-lucida-console{font-family:Lucida Console;}.yui-toolbar-fontname-tahoma{font-family:Tahoma;}.yui-toolbar-fontname-trebuchet-ms{font-family:Trebuchet MS;}.yui-toolbar-container .yui-toolbar-spinbutton{position:relative;}.yui-toolbar-container .yui-toolbar-spinbutton .first-child a{z-index:0;opacity:1;}.yui-toolbar-container .yui-toolbar-spinbutton a.up,.yui-toolbar-container .yui-toolbar-spinbutton a.down{position:absolute;display:block right:0;cursor:pointer;z-index:1;padding:0;margin:0;}.yui-toolbar-container .yui-overlay{position:absolute;}.yui-toolbar-container .yui-overlay ul li{margin:0;list-style-type:none;}.yui-toolbar-container{z-index:1;}.yui-editor-container .yui-editor-editable-container{position:relative;z-index:0;width:100%;}.yui-editor-container .yui-editor-masked{background-color:#CCC;}.yui-editor-container iframe{border:0px;padding:0;margin:0;zoom:1;display:block;}.yui-editor-container .yui-editor-editable{padding:0;margin:0;}.yui-editor-container .dompath{font-size:85%;}.yui-editor-panel .hd{text-align:left;position:relative;}.yui-editor-panel .hd h3{font-weight:bold;padding:0.25em 0pt 0.25em 0.25em;margin:0;}.yui-editor-panel .bd{width:100%;zoom:1;position:relative;}.yui-editor-panel .bd div.yui-editor-body-cont{padding:.25em .1em;zoom:1;}.yui-editor-panel .bd .gecko form{overflow:auto;}.yui-editor-panel .bd div.yui-editor-body-cont:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-editor-panel .ft{text-align:right;width:99%;float:left;clear:both;}.yui-editor-panel .ft span.tip{display:block;position:relative;padding:.5em .5em .5em 23px;text-align:left;zoom:1;}.yui-editor-panel label{clear:both;float:left;padding:0;width:100%;text-align:left;zoom:1;}.yui-editor-panel .gecko label{overflow:auto;}.yui-editor-panel label strong{float:left;width:6em;}.yui-editor-panel .removeLink{width:80%;text-align:right;}.yui-editor-panel label input{margin-left:.25em;float:left;}.yui-editor-panel .yui-toolbar-group{margin-bottom:0.75em;}.yui-editor-panel .yui-toolbar-group-padding{}.yui-editor-panel .yui-toolbar-group-border{}.yui-editor-panel .yui-toolbar-group-textflow{}.yui-editor-panel .height-width{float:left;}.yui-editor-panel .height-width h3{}.yui-editor-panel .height-width span{font-style:italic;display:block;float:left;overflow:visible;}.yui-editor-panel .height-width span.info{font-size:70%;margin-top:3px;}.yui-editor-panel .yui-toolbar-bordersize,.yui-editor-panel .yui-toolbar-bordertype{font-size:75%;}.yui-editor-panel .yui-toolbar-container span.yui-toolbar-separator{border:none;}.yui-editor-panel .yui-toolbar-bordersize span a span,.yui-editor-panel .yui-toolbar-bordertype span a span{display:block;height:8px;left:4px;position:absolute;top:3px;_top:-5px;width:24px;text-indent:52px;font-size:0%;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-solid{border-bottom:1px solid black;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dotted{border-bottom:1px dotted black;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dashed{border-bottom:1px dashed black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-0{*top:0px;text-indent:0px;font-size:75%;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-1{border-bottom:1px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-2{border-bottom:2px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-3{top:2px;*top:-5px;border-bottom:3px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-4{top:1px;*top:-5px;border-bottom:4px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-5{top:1px;*top:-5px;border-bottom:5px solid black;}.yui-toolbar-container .yui-toolbar-bordersize-menu,.yui-toolbar-container .yui-toolbar-bordertype-menu{width:95px !important;}.yui-toolbar-bordersize-menu .yuimenuitemlabel,.yui-toolbar-bordertype-menu .yuimenuitemlabel,.yui-toolbar-bordersize-menu .yuimenuitemlabel,.yui-toolbar-bordertype-menu .yuimenuitemlabel:hover{margin:0px 3px 7px 17px;}.yui-toolbar-bordersize-menu .yuimenuitemlabel .checkedindicator,.yui-toolbar-bordertype-menu .yuimenuitemlabel .checkedindicator{position:absolute;left:-12px;*top:14px;*left:0px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-1 a{border-bottom:1px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-2 a{border-bottom:2px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-3 a{border-bottom:3px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-4 a{border-bottom:4px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-5 a{border-bottom:5px solid black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-solid a{border-bottom:1px solid black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dashed a{border-bottom:1px dashed black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dotted a{border-bottom:1px dotted black;height:14px;}h2.yui-editor-skipheader,h3.yui-editor-skipheader{height:0;margin:0;padding:0;border:none;width:0;overflow:hidden;position:absolute;}.yui-toolbar-colors{width:133px;zoom:1;display:none;z-index:100;overflow:hidden;}.yui-toolbar-colors:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-colors a{height:9px;width:9px;float:left;display:block;overflow:hidden;text-indent:999px;margin:0;cursor:pointer;border:1px solid #F6F7EE;}.yui-toolbar-colors a:hover{border:1px solid black;}.yui-color-button-menu{overflow:visible;background-color:transparent;}.yui-toolbar-colors span{position:relative;display:block;padding:3px;overflow:hidden;float:left;width:100%;zoom:1;}.yui-toolbar-colors span:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-colors span em{height:35px;width:30px;float:left;display:block;overflow:hidden;text-indent:999px;margin:0.75px;border:1px solid black;}.yui-toolbar-colors span strong{font-weight:normal;padding-left:3px;display:block;font-size:85%;float:left;width:65%;}.yui-toolbar-group-undoredo h3,.yui-toolbar-group-insertitem h3,.yui-toolbar-group-indentlist h3{width:68px;}.yui-toolbar-group-indentlist2 h3{width:122px;}.yui-toolbar-group-alignment h3{width:130px;}.yui-skin-sam .yui-editor-container{border:1px solid #808080;}.yui-skin-sam .yui-toolbar-container{zoom:1;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar{background:url(sprite.png) repeat-x 0 -200px;position:relative;}.yui-skin-sam .yui-editor-container .draggable .yui-toolbar-titlebar{cursor:move;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar h2{color:#000000;font-weight:bold;margin:0;padding:0.3em 1em;font-size:100%;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-group h3{color:#808080;font-size:75%;margin:1em 0 0;padding-bottom:0;padding-left:0.25em;text-align:left;}.yui-toolbar-container span.yui-toolbar-separator{border:none;text-indent:33px;overflow:hidden;margin:0 .25em;}.yui-skin-sam .yui-toolbar-container{background-color:#F2F2F2;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-subcont{padding:0 1em 0.35em;border-bottom:1px solid #808080;}.yui-skin-sam .yui-toolbar-container-collapsed .yui-toolbar-titlebar{border-bottom:1px solid #808080;}.yui-skin-sam .yui-editor-container .visible .yui-menu-shadow,.yui-skin-sam .yui-editor-panel .visible .yui-menu-shadow{display:none;}.yui-skin-sam .yui-editor-container ul{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-editor-container ul li{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-toolbar-group ul li.yui-toolbar-groupitem{float:left;}.yui-skin-sam .yui-editor-container .dompath{background-color:#F2F2F2;border-top:1px solid #808080;color:#999;text-align:left;padding:0.25em;}.yui-skin-sam .yui-toolbar-container .collapse{background:url(sprite.png) no-repeat 0 -400px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar span.collapse{cursor:pointer;position:absolute;top:4px;right:2px;display:block;overflow:hidden;height:15px;width:15px;text-indent:9999px;}.yui-skin-sam .yui-toolbar-container .yui-push-button,.yui-skin-sam .yui-toolbar-container .yui-color-button,.yui-skin-sam .yui-toolbar-container .yui-menu-button{background:url(sprite.png) repeat-x 0 0;position:relative;display:block;height:22px;width:30px;_font-size:0;margin:0;border-color:#808080;color:#f2f2f2;border-style:solid;border-width:1px 0;zoom:1;}.yui-skin-sam .yui-toolbar-container .yui-push-button a,.yui-skin-sam .yui-toolbar-container .yui-color-button a,.yui-skin-sam .yui-toolbar-container .yui-menu-button a{padding-left:35px;height:20px;text-decoration:none;font-size:0px;line-height:2;display:block;color:#000;overflow:hidden;white-space:nowrap;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a,.yui-skin-sam .yui-toolbar-container .yui-toolbar-select a{font-size:12px;}.yui-skin-sam .yui-toolbar-container .yui-push-button .first-child,.yui-skin-sam .yui-toolbar-container .yui-color-button .first-child,.yui-skin-sam .yui-toolbar-container .yui-menu-button .first-child{border-color:#808080;border-style:solid;border-width:0 1px;margin:0 -1px;display:block;position:relative;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled .first-child,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled .first-child,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled .first-child{border-color:#ccc;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled a,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled a,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled a{color:#A6A6A6;cursor:default;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled{border-color:#ccc;}.yui-skin-sam .yui-toolbar-container .yui-button .first-child{*left:0px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-fontname{width:135px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-heading{width:92px;}.yui-skin-sam .yui-toolbar-container .yui-button-hover{background:url(sprite.png) repeat-x 0 -1300px;border-color:#808080;}.yui-skin-sam .yui-toolbar-container .yui-button-selected{background:url(sprite.png) repeat-x 0 -1700px;border-color:#808080;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels h3{display:none;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels .yui-toolbar-group{margin-top:.75em;}.yui-skin-sam .yui-toolbar-container .yui-push-button span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-color-button span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-menu-button span.yui-toolbar-icon{display:block;position:absolute;top:2px;height:18px;width:18px;overflow:hidden;background:url(editor-sprite.gif) no-repeat 30px 30px;}.yui-skin-sam .yui-toolbar-container .yui-button-selected span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-button-hover span.yui-toolbar-icon{background-image:url(editor-sprite-active.gif);}.yui-skin-sam .yui-toolbar-container .visible .yuimenuitemlabel{cursor:pointer;color:#000;*position:relative;}.yui-skin-sam .yui-toolbar-container .yui-button-menu{background-color:#fff;}.yui-skin-sam .yui-toolbar-container .yui-button-menu .yui-menu-body-scrolled{position:relative;}.yui-skin-sam div.yuimenu li.selected{background-color:#B3D4FF;}.yui-skin-sam div.yuimenu li.selected a.selected{color:#000;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-bold span.yui-toolbar-icon{background-position:0 0;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-strikethrough span.yui-toolbar-icon{background-position:0 -108px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-italic span.yui-toolbar-icon{background-position:0 -36px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-undo span.yui-toolbar-icon{background-position:0 -1326px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-redo span.yui-toolbar-icon{background-position:0 -1355px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-underline span.yui-toolbar-icon{background-position:0 -72px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-subscript span.yui-toolbar-icon{background-position:0 -180px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-superscript span.yui-toolbar-icon{background-position:0 -144px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-forecolor span.yui-toolbar-icon{background-position:0 -216px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-backcolor span.yui-toolbar-icon{background-position:0 -288px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyleft span.yui-toolbar-icon{background-position:0 -324px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifycenter span.yui-toolbar-icon{background-position:0 -360px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyright span.yui-toolbar-icon{background-position:0 -396px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyfull span.yui-toolbar-icon{background-position:0 -432px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-indent span.yui-toolbar-icon{background-position:0 -720px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-outdent span.yui-toolbar-icon{background-position:0 -684px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-createlink span.yui-toolbar-icon{background-position:0 -792px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertimage span.yui-toolbar-icon{background-position:1px -756px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-left span.yui-toolbar-icon{background-position:0 -972px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-right span.yui-toolbar-icon{background-position:0 -936px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-inline span.yui-toolbar-icon{background-position:0 -900px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-block span.yui-toolbar-icon{background-position:0 -864px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-bordercolor span.yui-toolbar-icon{background-position:0 -252px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-removeformat span.yui-toolbar-icon{background-position:0 -1080px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-hiddenelements span.yui-toolbar-icon{background-position:0 -1044px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertunorderedlist span.yui-toolbar-icon{background-position:0 -468px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertorderedlist span.yui-toolbar-icon{background-position:0 -504px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton,.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child{width:35px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child a{padding-left:2px;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton span.yui-toolbar-icon{display:none;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up,.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down{right:2px;background:url(editor-sprite.gif) no-repeat 0 -1222px;overflow:hidden;height:6px;width:7px;min-height:0;padding:0;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up{top:2px;background-position:0 -1222px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down{bottom:2px;background-position:0 -1187px;}.yui-skin-sam .yui-toolbar-container select{height:22px;border:1px solid #808080;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-select .first-child a{padding-left:5px;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-select span.yui-toolbar-icon{background:url( editor-sprite.gif ) no-repeat 0 -1144px;overflow:hidden;right:-2px;top:0px;height:20px;}.yui-skin-sam .yui-editor-panel .yui-color-button-menu .bd{background-color:transparent;border:none;width:135px;}.yui-skin-sam .yui-color-button-menu .yui-toolbar-colors{border:1px solid #808080;}.yui-skin-sam .yui-editor-panel{padding:0;margin:0;border:none;background-color:transparent;overflow:visible;position:absolute;}.yui-skin-sam .yui-editor-panel .hd{margin:10px 0 0;padding:0;border:none;}.yui-skin-sam .yui-editor-panel .hd h3{color:#000;border:1px solid #808080;background:url(sprite.png) repeat-x 0 -200px;width:99%;position:relative;margin:0;padding:3px 0 0 0;font-size:93%;text-indent:5px;height:20px;}.yui-skin-sam .yui-editor-panel .bd{background-color:#F2F2F2;border-left:1px solid #808080;border-right:1px solid #808080;width:99%;margin:0;padding:0;overflow:visible;}.yui-skin-sam .yui-editor-panel ul{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-editor-panel ul li{margin:0;padding:0;}.yui-skin-sam .yui-editor-panel .yuimenu{}.yui-skin-sam .yui-editor-panel .yui-toolbar-container .yui-toolbar-subcont{padding:0;border:none;margin-top:0.35em;}.yui-skin-sam .yui-editor-panel .yui-toolbar-bordersize,.yui-skin-sam .yui-editor-panel .yui-toolbar-bordertype{width:50px;}.yui-skin-sam .yui-editor-panel label{display:block;float:none;padding:4px 0;margin-bottom:7px;}.yui-skin-sam .yui-editor-panel label strong{font-weight:normal;font-size:93%;text-align:right;padding-top:2px;}.yui-skin-sam .yui-editor-panel label input{width:75%;}.yui-skin-sam .yui-editor-panel .createlink_target,.yui-skin-sam .yui-editor-panel .insertimage_target{width:auto;margin-right:5px;}.yui-skin-sam .yui-editor-panel .removeLink{width:98%;}.yui-skin-sam .yui-editor-panel label input.warning{background-color:#FFEE69;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group h3{color:#000;float:left;font-weight:normal;font-size:93%;margin:5px 0 0 0;padding:0 3px 0 0;text-align:right;}.yui-skin-sam .yui-editor-panel .height-width h3{margin:3px 0 0 10px;}.yui-skin-sam .yui-editor-panel .height-width{margin:3px 0 0 35px;*margin-left:14px;width:42%;*width:44%;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-border{width:190px;}.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-border{width:210px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding{width:203px;_width:198px;}.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-padding{width:172px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding h3{margin-left:25px;*margin-left:12px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-textflow{width:182px;}.yui-skin-sam .yui-editor-panel .hd{background:none;}.yui-skin-sam .yui-editor-panel .ft{background-color:#F2F2F2;border:1px solid #808080;border-top:none;padding:0;margin:0 0 2px 0;}.yui-skin-sam .yui-editor-panel .hd span.close{background:url(sprite.png) no-repeat 0 -300px;cursor:pointer;display:block;height:16px;overflow:hidden;position:absolute;right:5px;text-indent:500px;top:2px;width:26px;}.yui-skin-sam .yui-editor-panel .ft span.tip{background-color:#EDF5FF;border-top:1px solid #808080;font-size:85%;}.yui-skin-sam .yui-editor-panel .ft span.tip strong{display:block;float:left;margin:0 2px 8px 0;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon{background:url( editor-sprite.gif ) no-repeat 0 -1260px;display:block;height:20px;left:2px;position:absolute;top:8px;width:20px;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-info{background-position:2px -1260px;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-warn{background-position:2px -1296px;}.yui-skin-sam .yui-editor-panel .hd span.knob{position:absolute;height:10px;width:28px;top:-10px;left:25px;text-indent:9999px;overflow:hidden;background:url( editor-knob.gif ) no-repeat 0 0;}.yui-skin-sam .yui-editor-panel .yui-toolbar-container{float:left;width:100%;background-image:none;border:none;}.yui-skin-sam .yui-editor-panel .yui-toolbar-container .bd{background-color:#ffffff;}.yui-editor-blankimage{background-image:url( blankimage.png );}.yui-skin-sam .yui-editor-container .yui-resize-handle-br{height:11px;width:11px;background-position:-20px -60px;background-color:transparent;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/skin.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/skin.css
deleted file mode 100644
index d1ac6d7..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/skin.css
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-ac{position:relative;font-family:arial;font-size:100%;}.yui-skin-sam .yui-ac-input{position:absolute;width:100%;}.yui-skin-sam .yui-ac-container{position:absolute;top:1.6em;width:100%;}.yui-skin-sam .yui-ac-content{position:absolute;width:100%;border:1px solid #808080;background:#fff;overflow:hidden;z-index:9050;}.yui-skin-sam .yui-ac-shadow{position:absolute;margin:.3em;width:100%;background:#000;-moz-opacity:0.10;opacity:.10;filter:alpha(opacity=10);z-index:9049;}.yui-skin-sam .yui-ac iframe{opacity:0;filter:alpha(opacity=0);padding-right:.3em;padding-bottom:.3em;}.yui-skin-sam .yui-ac-content ul{margin:0;padding:0;width:100%;}.yui-skin-sam .yui-ac-content li{margin:0;padding:2px 5px;cursor:default;white-space:nowrap;list-style:none;zoom:1;}.yui-skin-sam .yui-ac-content li.yui-ac-prehighlight{background:#B3D4FF;}.yui-skin-sam .yui-ac-content li.yui-ac-highlight{background:#426FD9;color:#FFF;}
-.yui-button{display:-moz-inline-box;display:inline-block;vertical-align:text-bottom;}.yui-button .first-child{display:block;*display:inline-block;}.yui-button button,.yui-button a{display:block;*display:inline-block;border:none;margin:0;}.yui-button button{background-color:transparent;*overflow:visible;cursor:pointer;}.yui-button a{text-decoration:none;}.yui-skin-sam .yui-button{border-width:1px 0;border-style:solid;border-color:#808080;background:url(sprite.png) repeat-x 0 0;margin:auto .25em;}.yui-skin-sam .yui-button .first-child{border-width:0 1px;border-style:solid;border-color:#808080;margin:0 -1px;*position:relative;*left:-1px;_margin:0;_position:static;}.yui-skin-sam .yui-button button,.yui-skin-sam .yui-button a{padding:0 10px;font-size:93%;line-height:2;*line-height:1.7;min-height:2em;*min-height:auto;color:#000;}.yui-skin-sam .yui-button a{*line-height:1.875;*padding-bottom:1px;}.yui-skin-sam .yui-split-button button,.yui-skin-sam .yui-menu-button button{padding-right:20px;background-position:right center;background-repeat:no-repeat;}.yui-skin-sam .yui-menu-button button{background-image:url(menu-button-arrow.png);}.yui-skin-sam .yui-split-button button{background-image:url(split-button-arrow.png);}.yui-skin-sam .yui-button-focus{border-color:#7D98B8;background-position:0 -1300px;}.yui-skin-sam .yui-button-focus .first-child{border-color:#7D98B8;}.yui-skin-sam .yui-button-focus button,.yui-skin-sam .yui-button-focus a{color:#000;}.yui-skin-sam .yui-split-button-focus button{background-image:url(split-button-arrow-focus.png);}.yui-skin-sam .yui-button-hover{border-color:#7D98B8;background-position:0 -1300px;}.yui-skin-sam .yui-button-hover .first-child{border-color:#7D98B8;}.yui-skin-sam .yui-button-hover button,.yui-skin-sam .yui-button-hover a{color:#000;}.yui-skin-sam .yui-split-button-hover button{background-image:url(split-button-arrow-hover.png);}.yui-skin-sam .yui-button-active{border-color:#7D98B8;background-position:0 -1700px;}.yui-skin-sam .yui-button-active .first-child{border-color:#7D98B8;}.yui-skin-sam .yui-button-active button,.yui-skin-sam .yui-button-active a{color:#000;}.yui-skin-sam .yui-split-button-activeoption{border-color:#808080;background-position:0 0;}.yui-skin-sam .yui-split-button-activeoption .first-child{border-color:#808080;}.yui-skin-sam .yui-split-button-activeoption button{background-image:url(split-button-arrow-active.png);}.yui-skin-sam .yui-radio-button-checked,.yui-skin-sam .yui-checkbox-button-checked{border-color:#304369;background-position:0 -1400px;}.yui-skin-sam .yui-radio-button-checked .first-child,.yui-skin-sam .yui-checkbox-button-checked .first-child{border-color:#304369;}.yui-skin-sam .yui-radio-button-checked button,.yui-skin-sam .yui-checkbox-button-checked button{color:#fff;}.yui-skin-sam .yui-button-disabled{border-color:#ccc;background-position:0 -1500px;}.yui-skin-sam .yui-button-disabled .first-child{border-color:#ccc;}.yui-skin-sam .yui-button-disabled button,.yui-skin-sam .yui-button-disabled a{color:#A6A6A6;cursor:default;}.yui-skin-sam .yui-menu-button-disabled button{background-image:url(menu-button-arrow-disabled.png);}.yui-skin-sam .yui-split-button-disabled button{background-image:url(split-button-arrow-disabled.png);}
-.yui-calcontainer{position:relative;float:left;_overflow:hidden;}.yui-calcontainer iframe{position:absolute;border:none;margin:0;padding:0;z-index:0;width:100%;height:100%;left:0px;top:0px;}.yui-calcontainer iframe.fixedsize{width:50em;height:50em;top:-1px;left:-1px;}.yui-calcontainer.multi .groupcal{z-index:1;float:left;position:relative;}.yui-calcontainer .title{position:relative;z-index:1;}.yui-calcontainer .close-icon{position:absolute;z-index:1;text-indent:-10000em;overflow:hidden;}.yui-calendar{position:relative;}.yui-calendar .calnavleft{position:absolute;z-index:1;text-indent:-10000em;overflow:hidden;}.yui-calendar .calnavright{position:absolute;z-index:1;text-indent:-10000em;overflow:hidden;}.yui-calendar .calheader{position:relative;width:100%;text-align:center;}.yui-calcontainer .yui-cal-nav-mask{position:absolute;z-index:2;margin:0;padding:0;width:100%;height:100%;_width:0;_height:0;left:0;top:0;display:none;}.yui-calcontainer .yui-cal-nav{position:absolute;z-index:3;top:0;display:none;}.yui-calcontainer .yui-cal-nav .yui-cal-nav-btn{display:-moz-inline-box;display:inline-block;}.yui-calcontainer .yui-cal-nav .yui-cal-nav-btn button{display:block;*display:inline-block;*overflow:visible;border:none;background-color:transparent;cursor:pointer;}.yui-calendar .calbody a:hover{background:inherit;}p#clear{clear:left;padding-top:10px;}.yui-skin-sam .yui-calcontainer{background-color:#f2f2f2;border:1px solid #808080;padding:10px;}.yui-skin-sam .yui-calcontainer.multi{padding:0 5px 0 5px;}.yui-skin-sam .yui-calcontainer.multi .groupcal{background-color:transparent;border:none;padding:10px 5px 10px 5px;margin:0;}.yui-skin-sam .yui-calcontainer .title{background:url(sprite.png) repeat-x 0 0;border-bottom:1px solid #cccccc;font:100% sans-serif;color:#000;font-weight:bold;height:auto;padding:.4em;margin:0 -10px 10px -10px;top:0;left:0;text-align:left;}.yui-skin-sam .yui-calcontainer.multi .title{margin:0 -5px 0 -5px;}.yui-skin-sam .yui-calcontainer.withtitle{padding-top:0;}.yui-skin-sam .yui-calcontainer .calclose{background:url(sprite.png) no-repeat 0 -300px;width:25px;height:15px;top:.4em;right:.4em;cursor:pointer;}.yui-skin-sam .yui-calendar{border-spacing:0;border-collapse:collapse;font:100% sans-serif;text-align:center;margin:0;}.yui-skin-sam .yui-calendar .calhead{background:transparent;border:none;vertical-align:middle;padding:0;}.yui-skin-sam .yui-calendar .calheader{background:transparent;font-weight:bold;padding:0 0 .6em 0;text-align:center;}.yui-skin-sam .yui-calendar .calheader img{border:none;}.yui-skin-sam .yui-calendar .calnavleft{background:url(sprite.png) no-repeat 0 -450px;width:25px;height:15px;top:0;bottom:0;left:-10px;margin-left:.4em;cursor:pointer;}.yui-skin-sam .yui-calendar .calnavright{background:url(sprite.png) no-repeat 0 -500px;width:25px;height:15px;top:0;bottom:0;right:-10px;margin-right:.4em;cursor:pointer;}.yui-skin-sam .yui-calendar .calweekdayrow{height:2em;}.yui-skin-sam .yui-calendar .calweekdayrow th{padding:0;border:none;}.yui-skin-sam .yui-calendar .calweekdaycell{color:#000;font-weight:bold;text-align:center;width:2em;}.yui-skin-sam .yui-calendar .calfoot{background-color:#f2f2f2;}.yui-skin-sam .yui-calendar .calrowhead,.yui-skin-sam .yui-calendar .calrowfoot{color:#a6a6a6;font-size:85%;font-style:normal;font-weight:normal;border:none;}.yui-skin-sam .yui-calendar .calrowhead{text-align:right;padding:0 2px 0 0;}.yui-skin-sam .yui-calendar .calrowfoot{text-align:left;padding:0 0 0 2px;}.yui-skin-sam .yui-calendar td.calcell{border:1px solid #cccccc;background:#fff;padding:1px;height:1.6em;line-height:1.6em;text-align:center;white-space:nowrap;}.yui-skin-sam .yui-calendar td.calcell a{color:#0066cc;display:block;height:100%;text-decoration:none;}.yui-skin-sam .yui-calendar td.calcell.today{background-color:#000;}.yui-skin-sam .yui-calendar td.calcell.today a{background-color:#fff;}.yui-skin-sam .yui-calendar td.calcell.oom{background-color:#cccccc;color:#a6a6a6;cursor:default;}.yui-skin-sam .yui-calendar td.calcell.selected{background-color:#fff;color:#000;}.yui-skin-sam .yui-calendar td.calcell.selected a{background-color:#b3d4ff;color:#000;}.yui-skin-sam .yui-calendar td.calcell.calcellhover{background-color:#426fd9;color:#fff;cursor:pointer;}.yui-skin-sam .yui-calendar td.calcell.calcellhover a{background-color:#426fd9;color:#fff;}.yui-skin-sam .yui-calendar td.calcell.previous{color:#e0e0e0;}.yui-skin-sam .yui-calendar td.calcell.restricted{text-decoration:line-through;}.yui-skin-sam .yui-calendar td.calcell.highlight1{background-color:#ccff99;}.yui-skin-sam .yui-calendar td.calcell.highlight2{background-color:#99ccff;}.yui-skin-sam .yui-calendar td.calcell.highlight3{background-color:#ffcccc;}.yui-skin-sam .yui-calendar td.calcell.highlight4{background-color:#ccff99;}.yui-skin-sam .yui-calendar a.calnav{border:1px solid #f2f2f2;padding:0 4px;text-decoration:none;color:#000;zoom:1;}.yui-skin-sam .yui-calendar a.calnav:hover{background:url(sprite.png) repeat-x 0 0;border-color:#A0A0A0;cursor:pointer;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-mask{background-color:#000;opacity:0.25;*filter:alpha(opacity=25);}.yui-skin-sam .yui-calcontainer .yui-cal-nav{font-family:arial,helvetica,clean,sans-serif;font-size:93%;border:1px solid #808080;left:50%;margin-left:-7em;width:14em;padding:0;top:2.5em;background-color:#f2f2f2;}.yui-skin-sam .yui-calcontainer.withtitle .yui-cal-nav{top:4.5em;}.yui-skin-sam .yui-calcontainer.multi .yui-cal-nav{width:16em;margin-left:-8em;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-y,.yui-skin-sam .yui-calcontainer .yui-cal-nav-m,.yui-skin-sam .yui-calcontainer .yui-cal-nav-b{padding:5px 10px 5px 10px;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-b{text-align:center;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-e{margin-top:5px;padding:5px;background-color:#EDF5FF;border-top:1px solid black;display:none;}.yui-skin-sam .yui-calcontainer .yui-cal-nav label{display:block;font-weight:bold;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-mc{width:100%;_width:auto;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-y input.yui-invalid{background-color:#FFEE69;border:1px solid #000;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-yc{width:4em;}.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn{border:1px solid #808080;background:url(sprite.png) repeat-x 0 0;background-color:#ccc;margin:auto .15em;}.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn button{padding:0 8px;font-size:93%;line-height:2;*line-height:1.7;min-height:2em;*min-height:auto;color:#000;}.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn.yui-default{border:1px solid #304369;background-color:#426fd9;background:url(sprite.png) repeat-x 0 -1400px;}.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn.yui-default button{color:#fff;}
-.yui-carousel{visibility:hidden;overflow:hidden;position:relative;}.yui-carousel.yui-carousel-visible{visibility:visible;}.yui-carousel-content{overflow:hidden;position:relative;}.yui-carousel-element{margin:5px 0;overflow:hidden;padding:0;position:relative;width:32000px;z-index:1;}.yui-carousel-vertical .yui-carousel-element{margin:0 5px;}.yui-carousel-element li{border:1px solid #ccc;float:left;list-style:none;margin:1px;overflow:hidden;padding:0;text-align:center;*float:none;*display:inline-block;*zoom:1;*display:inline;}.yui-carousel .yui-carousel-item-selected{border:1px dashed #000;margin:1px;}.yui-carousel-vertical{height:32000px;margin:0 5px;width:auto;}.yui-carousel-vertical .yui-carousel-element li{display:block;float:none;}.yui-log .carousel{background:#f2e886;}.yui-carousel-nav{zoom:1;}.yui-carousel-nav:after{clear:both;content:"";display:block;}.yui-carousel-button-focus{outline:1px dotted #000;}.yui-skin-sam .yui-carousel,.yui-skin-sam .yui-carousel-vertical{border:1px solid #808080;}.yui-skin-sam .yui-carousel-nav{background:url(sprite.png) repeat-x 0 0;padding:3px;text-align:right;}.yui-skin-sam .yui-carousel-button{background:url(sprite.png) no-repeat 0 -600px;float:right;height:19px;margin:5px;overflow:hidden;width:40px;}.yui-skin-sam .yui-carousel-vertical .yui-carousel-button{background-position:0 -800px;}.yui-skin-sam .yui-carousel-button-disabled{background-position:0 -2000px;}.yui-skin-sam .yui-carousel-vertical .yui-carousel-button-disabled{background-position:0 -2100px;}.yui-skin-sam .yui-carousel-button input{background-color:transparent;border:0;cursor:pointer;display:block;height:44px;margin:-2px 0 0 -2px;padding:0 0 0 50px;}.yui-skin-sam span.yui-carousel-first-button{background-position:0px -550px;margin-left:-100px;margin-right:50px;*margin:5px 5px 5px -90px;}.yui-skin-sam .yui-carousel-vertical span.yui-carousel-first-button{background-position:0px -750px;}.yui-skin-sam span.yui-carousel-first-button-disabled{background-position:0 -1950px;}.yui-skin-sam .yui-carousel-vertical span.yui-carousel-first-button-disabled{background-position:0 -2050px;}.yui-skin-sam .yui-carousel-nav ul{float:right;margin:0;margin-left:-220px;margin-right:100px;*margin-left:-160px;*margin-right:0;padding:0;}.yui-skin-sam .yui-carousel-nav select{position:relative;*right:50px;top:4px;}.yui-skin-sam .yui-carousel-vertical .yui-carousel-nav ul,.yui-skin-sam .yui-carousel-vertical .yui-carousel-nav select{float:none;margin:0;*zoom:1;}.yui-skin-sam .yui-carousel-nav ul li{float:left;height:19px;list-style:none;}.yui-skin-sam .yui-carousel-nav ul:after{clear:both;content:"";display:block;}.yui-skin-sam .yui-carousel-nav ul li a{background:url(sprite.png) no-repeat 0 -650px;display:block;height:9px;margin:10px 0 0 5px;overflow:hidden;width:9px;}.yui-skin-sam .yui-carousel-nav ul li a em{left:-10000px;position:absolute;}.yui-skin-sam .yui-carousel-nav ul li.yui-carousel-nav-page-selected a{background-position:0 -700px;}
-.yui-picker-panel{background:#e3e3e3;border-color:#888;}.yui-picker-panel .hd{background-color:#ccc;font-size:100%;line-height:100%;border:1px solid #e3e3e3;font-weight:bold;overflow:hidden;padding:6px;color:#000;}.yui-picker-panel .bd{background:#e8e8e8;margin:1px;height:200px;}.yui-picker-panel .ft{background:#e8e8e8;margin:1px;padding:1px;}.yui-picker{position:relative;}.yui-picker-hue-thumb{cursor:default;width:18px;height:18px;top:-8px;left:-2px;z-index:9;position:absolute;}.yui-picker-hue-bg{-moz-outline:none;outline:0px none;position:absolute;left:200px;height:183px;width:14px;background:url(hue_bg.png) no-repeat;top:4px;}.yui-picker-bg{-moz-outline:none;outline:0px none;position:absolute;top:4px;left:4px;height:182px;width:182px;background-color:#F00;background-image:url(picker_mask.png);}*html .yui-picker-bg{background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../../build/colorpicker/assets/picker_mask.png',sizingMethod='scale');}.yui-picker-mask{position:absolute;z-index:1;top:0px;left:0px;}.yui-picker-thumb{cursor:default;width:11px;height:11px;z-index:9;position:absolute;top:-4px;left:-4px;}.yui-picker-swatch{position:absolute;left:240px;top:4px;height:60px;width:55px;border:1px solid #888;}.yui-picker-websafe-swatch{position:absolute;left:304px;top:4px;height:24px;width:24px;border:1px solid #888;}.yui-picker-controls{position:absolute;top:72px;left:226px;font:1em monospace;}.yui-picker-controls .hd{background:transparent;border-width:0px !important;}.yui-picker-controls .bd{height:100px;border-width:0px !important;}.yui-picker-controls ul{float:left;padding:0 2px 0 0;margin:0}.yui-picker-controls li{padding:2px;list-style:none;margin:0}.yui-picker-controls input{font-size:0.85em;width:2.4em;}.yui-picker-hex-controls{clear:both;padding:2px;}.yui-picker-hex-controls input{width:4.6em;}.yui-picker-controls a{font:1em arial,helvetica,clean,sans-serif;display:block;*display:inline-block;padding:0;color:#000;}
-.yui-overlay,.yui-panel-container{visibility:hidden;position:absolute;z-index:2;}.yui-panel-container form{margin:0;}.mask{z-index:1;display:none;position:absolute;top:0;left:0;right:0;bottom:0;}.mask.block-scrollbars{overflow:auto;}.masked select,.drag select,.hide-select select{_visibility:hidden;}.yui-panel-container select{_visibility:inherit;}.hide-scrollbars,.hide-scrollbars *{overflow:hidden;}.hide-scrollbars select{display:none;}.show-scrollbars{overflow:auto;}.yui-panel-container.show-scrollbars,.yui-tt.show-scrollbars{overflow:visible;}.yui-panel-container.show-scrollbars .underlay,.yui-tt.show-scrollbars .yui-tt-shadow{overflow:auto;}.yui-panel-container.shadow .underlay.yui-force-redraw{padding-bottom:1px;}.yui-effect-fade .underlay{display:none;}.yui-tt-shadow{position:absolute;}.yui-override-padding{padding:0 !important;}.yui-panel-container .container-close{overflow:hidden;text-indent:-10000em;text-decoration:none;}.yui-skin-sam .mask{background-color:#000;opacity:.25;*filter:alpha(opacity=25);}.yui-skin-sam .yui-panel-container{padding:0 1px;*padding:2px;}.yui-skin-sam .yui-panel{position:relative;left:0;top:0;border-style:solid;border-width:1px 0;border-color:#808080;z-index:1;*border-width:1px;*zoom:1;_zoom:normal;}.yui-skin-sam .yui-panel .hd,.yui-skin-sam .yui-panel .bd,.yui-skin-sam .yui-panel .ft{border-style:solid;border-width:0 1px;border-color:#808080;margin:0 -1px;*margin:0;*border:0;}.yui-skin-sam .yui-panel .hd{border-bottom:solid 1px #ccc;}.yui-skin-sam .yui-panel .bd,.yui-skin-sam .yui-panel .ft{background-color:#F2F2F2;}.yui-skin-sam .yui-panel .hd{padding:0 10px;font-size:93%;line-height:2;*line-height:1.9;font-weight:bold;color:#000;background:url(sprite.png) repeat-x 0 -200px;}.yui-skin-sam .yui-panel .bd{padding:10px;}.yui-skin-sam .yui-panel .ft{border-top:solid 1px #808080;padding:5px 10px;font-size:77%;}.yui-skin-sam .yui-panel-container.focused .yui-panel .hd{}.yui-skin-sam .container-close{position:absolute;top:5px;right:6px;width:25px;height:15px;background:url(sprite.png) no-repeat 0 -300px;cursor:pointer;}.yui-skin-sam .yui-panel-container .underlay{right:-1px;left:-1px;}.yui-skin-sam .yui-panel-container.matte{padding:9px 10px;background-color:#fff;}.yui-skin-sam .yui-panel-container.shadow{_padding:2px 4px 0 2px;}.yui-skin-sam .yui-panel-container.shadow .underlay{position:absolute;top:2px;left:-3px;right:-3px;bottom:-3px;*top:4px;*left:-1px;*right:-1px;*bottom:-1px;_top:0;_left:0;_right:0;_bottom:0;_margin-top:3px;_margin-left:-1px;background-color:#000;opacity:.12;*filter:alpha(opacity=12);}.yui-skin-sam .yui-dialog .ft{border-top:none;padding:0 10px 10px 10px;font-size:100%;}.yui-skin-sam .yui-dialog .ft .button-group{display:block;text-align:right;}.yui-skin-sam .yui-dialog .ft button.default{font-weight:bold;}.yui-skin-sam .yui-dialog .ft span.default{border-color:#304369;background-position:0 -1400px;}.yui-skin-sam .yui-dialog .ft span.default .first-child{border-color:#304369;}.yui-skin-sam .yui-dialog .ft span.default button{color:#fff;}.yui-skin-sam .yui-dialog .ft span.yui-button-disabled{background-position:0pt -1500px;border-color:#ccc;}.yui-skin-sam .yui-dialog .ft span.yui-button-disabled .first-child{border-color:#ccc;}.yui-skin-sam .yui-dialog .ft span.yui-button-disabled button{color:#a6a6a6;}.yui-skin-sam .yui-simple-dialog .bd .yui-icon{background:url(sprite.png) no-repeat 0 0;width:16px;height:16px;margin-right:10px;float:left;}.yui-skin-sam .yui-simple-dialog .bd span.blckicon{background-position:0 -1100px;}.yui-skin-sam .yui-simple-dialog .bd span.alrticon{background-position:0 -1050px;}.yui-skin-sam .yui-simple-dialog .bd span.hlpicon{background-position:0 -1150px;}.yui-skin-sam .yui-simple-dialog .bd span.infoicon{background-position:0 -1200px;}.yui-skin-sam .yui-simple-dialog .bd span.warnicon{background-position:0 -1900px;}.yui-skin-sam .yui-simple-dialog .bd span.tipicon{background-position:0 -1250px;}.yui-skin-sam .yui-tt .bd{position:relative;top:0;left:0;z-index:1;color:#000;padding:2px 5px;border-color:#D4C237 #A6982B #A6982B #A6982B;border-width:1px;border-style:solid;background-color:#FFEE69;}.yui-skin-sam .yui-tt.show-scrollbars .bd{overflow:auto;}.yui-skin-sam .yui-tt-shadow{top:2px;right:-3px;left:-3px;bottom:-3px;background-color:#000;}.yui-skin-sam .yui-tt-shadow-visible{opacity:.12;*filter:alpha(opacity=12);}
-.yui-skin-sam .yui-dt-mask{position:absolute;z-index:9500;}.yui-dt-tmp{position:absolute;left:-9000px;}.yui-dt-scrollable .yui-dt-bd{overflow:auto;}.yui-dt-scrollable .yui-dt-hd{overflow:hidden;position:relative;}.yui-dt-scrollable .yui-dt-bd thead tr,.yui-dt-scrollable .yui-dt-bd thead th{position:absolute;left:-1500px;}.yui-dt-scrollable tbody{-moz-outline:none;}.yui-dt-draggable{cursor:move;}.yui-dt-coltarget{position:absolute;z-index:999;}.yui-dt-hd{zoom:1;}th.yui-dt-resizeable .yui-dt-resizerliner{position:relative;}.yui-dt-resizer{position:absolute;right:0;bottom:0;height:100%;cursor:e-resize;cursor:col-resize;background-color:#CCC;opacity:0;filter:alpha(opacity=0);}.yui-dt-resizerproxy{visibility:hidden;position:absolute;z-index:9000;}th.yui-dt-hidden .yui-dt-liner,td.yui-dt-hidden .yui-dt-liner,th.yui-dt-hidden .yui-dt-resizer{display:none;}.yui-dt-editor{position:absolute;z-index:9000;}.yui-skin-sam .yui-dt table{margin:0;padding:0;font-family:arial;font-size:inherit;border-collapse:separate;*border-collapse:collapse;border-spacing:0;border:1px solid #7F7F7F;}.yui-skin-sam .yui-dt thead{border-spacing:0;}.yui-skin-sam .yui-dt caption{color:#000000;font-size:85%;font-weight:normal;font-style:italic;line-height:1;padding:1em 0pt;text-align:center;}.yui-skin-sam .yui-dt th{background:#D8D8DA url(sprite.png) repeat-x 0 0;}.yui-skin-sam .yui-dt th,.yui-skin-sam .yui-dt th a{font-weight:normal;text-decoration:none;color:#000;vertical-align:bottom;}.yui-skin-sam .yui-dt th{margin:0;padding:0;border:none;border-right:1px solid #CBCBCB;}.yui-skin-sam .yui-dt tr.yui-dt-first td{border-top:1px solid #7F7F7F;}.yui-skin-sam .yui-dt th .yui-dt-liner{white-space:nowrap;}.yui-skin-sam .yui-dt-liner{margin:0;padding:0;padding:4px 10px 4px 10px;}.yui-skin-sam .yui-dt-coltarget{width:5px;background-color:red;}.yui-skin-sam .yui-dt td{margin:0;padding:0;border:none;border-right:1px solid #CBCBCB;text-align:left;}.yui-skin-sam .yui-dt-list td{border-right:none;}.yui-skin-sam .yui-dt-resizer{width:6px;}.yui-skin-sam .yui-dt-mask{background-color:#000;opacity:.25;*filter:alpha(opacity=25);}.yui-skin-sam .yui-dt-message{background-color:#FFF;}.yui-skin-sam .yui-dt-scrollable table{border:none;}.yui-skin-sam .yui-dt-scrollable .yui-dt-hd{border-left:1px solid #7F7F7F;border-top:1px solid #7F7F7F;border-right:1px solid #7F7F7F;}.yui-skin-sam .yui-dt-scrollable .yui-dt-bd{border-left:1px solid #7F7F7F;border-bottom:1px solid #7F7F7F;border-right:1px solid #7F7F7F;background-color:#FFF;}.yui-skin-sam .yui-dt-scrollable .yui-dt-data tr.yui-dt-last td{border-bottom:1px solid #7F7F7F;}.yui-skin-sam thead .yui-dt-sortable{cursor:pointer;}.yui-skin-sam th.yui-dt-asc,.yui-skin-sam th.yui-dt-desc{background:url(sprite.png) repeat-x 0 -100px;}.yui-skin-sam th.yui-dt-sortable .yui-dt-label{margin-right:10px;}.yui-skin-sam th.yui-dt-asc .yui-dt-liner{background:url(dt-arrow-up.png) no-repeat right;}.yui-skin-sam th.yui-dt-desc .yui-dt-liner{background:url(dt-arrow-dn.png) no-repeat right;}tbody .yui-dt-editable{cursor:pointer;}.yui-dt-editor{text-align:left;background-color:#F2F2F2;border:1px solid #808080;padding:6px;}.yui-dt-editor label{padding-left:4px;padding-right:6px;}.yui-dt-editor .yui-dt-button{padding-top:6px;text-align:right;}.yui-dt-editor .yui-dt-button button{background:url(sprite.png) repeat-x 0 0;border:1px solid #999;width:4em;height:1.8em;margin-left:6px;}.yui-dt-editor .yui-dt-button button.yui-dt-default{background:url(sprite.png) repeat-x 0 -1400px;background-color:#5584E0;border:1px solid #304369;color:#FFF}.yui-dt-editor .yui-dt-button button:hover{background:url(sprite.png) repeat-x 0 -1300px;color:#000;}.yui-dt-editor .yui-dt-button button:active{background:url(sprite.png) repeat-x 0 -1700px;color:#000;}.yui-skin-sam tr.yui-dt-even{background-color:#FFF;}.yui-skin-sam tr.yui-dt-odd{background-color:#EDF5FF;}.yui-skin-sam tr.yui-dt-even td.yui-dt-asc,.yui-skin-sam tr.yui-dt-even td.yui-dt-desc{background-color:#EDF5FF;}.yui-skin-sam tr.yui-dt-odd td.yui-dt-asc,.yui-skin-sam tr.yui-dt-odd td.yui-dt-desc{background-color:#DBEAFF;}.yui-skin-sam .yui-dt-list tr.yui-dt-even{background-color:#FFF;}.yui-skin-sam .yui-dt-list tr.yui-dt-odd{background-color:#FFF;}.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-asc,.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-desc{background-color:#EDF5FF;}.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-asc,.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-desc{background-color:#EDF5FF;}.yui-skin-sam th.yui-dt-highlighted,.yui-skin-sam th.yui-dt-highlighted a{background-color:#B2D2FF;}.yui-skin-sam tr.yui-dt-highlighted,.yui-skin-sam tr.yui-dt-highlighted td.yui-dt-asc,.yui-skin-sam tr.yui-dt-highlighted td.yui-dt-desc,.yui-skin-sam tr.yui-dt-even td.yui-dt-highlighted,.yui-skin-sam tr.yui-dt-odd td.yui-dt-highlighted{cursor:pointer;background-color:#B2D2FF;}.yui-skin-sam .yui-dt-list th.yui-dt-highlighted,.yui-skin-sam .yui-dt-list th.yui-dt-highlighted a{background-color:#B2D2FF;}.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted,.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted td.yui-dt-asc,.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted td.yui-dt-desc,.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-highlighted,.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-highlighted{cursor:pointer;background-color:#B2D2FF;}.yui-skin-sam th.yui-dt-selected,.yui-skin-sam th.yui-dt-selected a{background-color:#446CD7;}.yui-skin-sam tr.yui-dt-selected td,.yui-skin-sam tr.yui-dt-selected td.yui-dt-asc,.yui-skin-sam tr.yui-dt-selected td.yui-dt-desc{background-color:#426FD9;color:#FFF;}.yui-skin-sam tr.yui-dt-even td.yui-dt-selected,.yui-skin-sam tr.yui-dt-odd td.yui-dt-selected{background-color:#446CD7;color:#FFF;}.yui-skin-sam .yui-dt-list th.yui-dt-selected,.yui-skin-sam .yui-dt-list th.yui-dt-selected a{background-color:#446CD7;}.yui-skin-sam .yui-dt-list tr.yui-dt-selected td,.yui-skin-sam .yui-dt-list tr.yui-dt-selected td.yui-dt-asc,.yui-skin-sam .yui-dt-list tr.yui-dt-selected td.yui-dt-desc{background-color:#426FD9;color:#FFF;}.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-selected,.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-selected{background-color:#446CD7;color:#FFF;}.yui-skin-sam .yui-dt-paginator{display:block;margin:6px 0;white-space:nowrap;}.yui-skin-sam .yui-dt-paginator .yui-dt-first,.yui-skin-sam .yui-dt-paginator .yui-dt-last,.yui-skin-sam .yui-dt-paginator .yui-dt-selected{padding:2px 6px;}.yui-skin-sam .yui-dt-paginator a.yui-dt-first,.yui-skin-sam .yui-dt-paginator a.yui-dt-last{text-decoration:none;}.yui-skin-sam .yui-dt-paginator .yui-dt-previous,.yui-skin-sam .yui-dt-paginator .yui-dt-next{display:none;}.yui-skin-sam a.yui-dt-page{border:1px solid #CBCBCB;padding:2px 6px;text-decoration:none;background-color:#fff}.yui-skin-sam .yui-dt-selected{border:1px solid #fff;background-color:#fff;}
-.yui-busy{cursor:wait !important;}.yui-toolbar-container fieldset{padding:0;margin:0;border:0;}.yui-toolbar-container legend{display:none;}.yui-toolbar-container .yui-toolbar-subcont{padding:.25em 0;zoom:1;}.yui-toolbar-container-collapsed .yui-toolbar-subcont{display:none;}.yui-toolbar-container .yui-toolbar-subcont:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-container span.yui-toolbar-draghandle{cursor:move;border-left:1px solid #999;border-right:1px solid #999;overflow:hidden;text-indent:77777px;width:2px;height:20px;display:block;clear:none;float:left;margin:0 0 0 .2em;}.yui-toolbar-container .yui-toolbar-titlebar.draggable{cursor:move;}.yui-toolbar-container .yui-toolbar-titlebar{position:relative;}.yui-toolbar-container .yui-toolbar-titlebar h2{font-weight:bold;letter-spacing:0;border:none;color:#000;margin:0;padding:.2em;}.yui-toolbar-container .yui-toolbar-titlebar h2 a{text-decoration:none;color:#000;cursor:default;}.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-draghandle{height:40px;}.yui-toolbar-container .yui-toolbar-group{float:left;margin-right:.5em;zoom:1;}.yui-toolbar-container .yui-toolbar-group:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-container .yui-toolbar-group h3{font-size:75%;padding:0 0 0 .25em;margin:0;}.yui-toolbar-container span.yui-toolbar-separator{width:2px;padding:0;height:18px;margin:.2em 0 .2em .1em;display:none;float:left;}.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-separator{height:45px;*height:50px;}.yui-toolbar-container.yui-toolbar-grouped .yui-toolbar-group span.yui-toolbar-separator{height:18px;display:block;}.yui-toolbar-container ul li{margin:0;padding:0;list-style-type:none;}.yui-toolbar-container .yui-toolbar-nogrouplabels h3{display:none;}.yui-toolbar-container .yui-push-button,.yui-toolbar-container .yui-color-button,.yui-toolbar-container .yui-menu-button{position:relative;cursor:pointer;}.yui-toolbar-container .yui-button .first-child,.yui-toolbar-container .yui-button .first-child a{height:100%;width:100%;overflow:hidden;font-size:0px;}.yui-toolbar-container .yui-button-disabled{cursor:default;}.yui-toolbar-container .yui-button-disabled .yui-toolbar-icon{opacity:.5;filter:alpha(opacity=50);}.yui-toolbar-container .yui-button-disabled .up,.yui-toolbar-container .yui-button-disabled .down{opacity:.5;filter:alpha(opacity=50);}.yui-toolbar-container .yui-button a{overflow:hidden;}.yui-toolbar-container .yui-toolbar-select .first-child a{cursor:pointer;}.yui-toolbar-fontname-arial{font-family:Arial;}.yui-toolbar-fontname-arial-black{font-family:Arial Black;}.yui-toolbar-fontname-comic-sans-ms{font-family:Comic Sans MS;}.yui-toolbar-fontname-courier-new{font-family:Courier New;}.yui-toolbar-fontname-times-new-roman{font-family:Times New Roman;}.yui-toolbar-fontname-verdana{font-family:Verdana;}.yui-toolbar-fontname-impact{font-family:Impact;}.yui-toolbar-fontname-lucida-console{font-family:Lucida Console;}.yui-toolbar-fontname-tahoma{font-family:Tahoma;}.yui-toolbar-fontname-trebuchet-ms{font-family:Trebuchet MS;}.yui-toolbar-container .yui-toolbar-spinbutton{position:relative;}.yui-toolbar-container .yui-toolbar-spinbutton .first-child a{z-index:0;opacity:1;}.yui-toolbar-container .yui-toolbar-spinbutton a.up,.yui-toolbar-container .yui-toolbar-spinbutton a.down{position:absolute;display:block right:0;cursor:pointer;z-index:1;padding:0;margin:0;}.yui-toolbar-container .yui-overlay{position:absolute;}.yui-toolbar-container .yui-overlay ul li{margin:0;list-style-type:none;}.yui-toolbar-container{z-index:1;}.yui-editor-container .yui-editor-editable-container{position:relative;z-index:0;width:100%;}.yui-editor-container .yui-editor-masked{background-color:#CCC;}.yui-editor-container iframe{border:0px;padding:0;margin:0;zoom:1;display:block;}.yui-editor-container .yui-editor-editable{padding:0;margin:0;}.yui-editor-container .dompath{font-size:85%;}.yui-editor-panel .hd{text-align:left;position:relative;}.yui-editor-panel .hd h3{font-weight:bold;padding:0.25em 0pt 0.25em 0.25em;margin:0;}.yui-editor-panel .bd{width:100%;zoom:1;position:relative;}.yui-editor-panel .bd div.yui-editor-body-cont{padding:.25em .1em;zoom:1;}.yui-editor-panel .bd .gecko form{overflow:auto;}.yui-editor-panel .bd div.yui-editor-body-cont:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-editor-panel .ft{text-align:right;width:99%;float:left;clear:both;}.yui-editor-panel .ft span.tip{display:block;position:relative;padding:.5em .5em .5em 23px;text-align:left;zoom:1;}.yui-editor-panel label{clear:both;float:left;padding:0;width:100%;text-align:left;zoom:1;}.yui-editor-panel .gecko label{overflow:auto;}.yui-editor-panel label strong{float:left;width:6em;}.yui-editor-panel .removeLink{width:80%;text-align:right;}.yui-editor-panel label input{margin-left:.25em;float:left;}.yui-editor-panel .yui-toolbar-group{margin-bottom:0.75em;}.yui-editor-panel .yui-toolbar-group-padding{}.yui-editor-panel .yui-toolbar-group-border{}.yui-editor-panel .yui-toolbar-group-textflow{}.yui-editor-panel .height-width{float:left;}.yui-editor-panel .height-width h3{}.yui-editor-panel .height-width span{font-style:italic;display:block;float:left;overflow:visible;}.yui-editor-panel .height-width span.info{font-size:70%;margin-top:3px;}.yui-editor-panel .yui-toolbar-bordersize,.yui-editor-panel .yui-toolbar-bordertype{font-size:75%;}.yui-editor-panel .yui-toolbar-container span.yui-toolbar-separator{border:none;}.yui-editor-panel .yui-toolbar-bordersize span a span,.yui-editor-panel .yui-toolbar-bordertype span a span{display:block;height:8px;left:4px;position:absolute;top:3px;_top:-5px;width:24px;text-indent:52px;font-size:0%;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-solid{border-bottom:1px solid black;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dotted{border-bottom:1px dotted black;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dashed{border-bottom:1px dashed black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-0{*top:0px;text-indent:0px;font-size:75%;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-1{border-bottom:1px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-2{border-bottom:2px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-3{top:2px;*top:-5px;border-bottom:3px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-4{top:1px;*top:-5px;border-bottom:4px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-5{top:1px;*top:-5px;border-bottom:5px solid black;}.yui-toolbar-container .yui-toolbar-bordersize-menu,.yui-toolbar-container .yui-toolbar-bordertype-menu{width:95px !important;}.yui-toolbar-bordersize-menu .yuimenuitemlabel,.yui-toolbar-bordertype-menu .yuimenuitemlabel,.yui-toolbar-bordersize-menu .yuimenuitemlabel,.yui-toolbar-bordertype-menu .yuimenuitemlabel:hover{margin:0px 3px 7px 17px;}.yui-toolbar-bordersize-menu .yuimenuitemlabel .checkedindicator,.yui-toolbar-bordertype-menu .yuimenuitemlabel .checkedindicator{position:absolute;left:-12px;*top:14px;*left:0px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-1 a{border-bottom:1px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-2 a{border-bottom:2px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-3 a{border-bottom:3px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-4 a{border-bottom:4px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-5 a{border-bottom:5px solid black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-solid a{border-bottom:1px solid black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dashed a{border-bottom:1px dashed black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dotted a{border-bottom:1px dotted black;height:14px;}h2.yui-editor-skipheader,h3.yui-editor-skipheader{height:0;margin:0;padding:0;border:none;width:0;overflow:hidden;position:absolute;}.yui-toolbar-colors{width:133px;zoom:1;display:none;z-index:100;overflow:hidden;}.yui-toolbar-colors:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-colors a{height:9px;width:9px;float:left;display:block;overflow:hidden;text-indent:999px;margin:0;cursor:pointer;border:1px solid #F6F7EE;}.yui-toolbar-colors a:hover{border:1px solid black;}.yui-color-button-menu{overflow:visible;background-color:transparent;}.yui-toolbar-colors span{position:relative;display:block;padding:3px;overflow:hidden;float:left;width:100%;zoom:1;}.yui-toolbar-colors span:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-colors span em{height:35px;width:30px;float:left;display:block;overflow:hidden;text-indent:999px;margin:0.75px;border:1px solid black;}.yui-toolbar-colors span strong{font-weight:normal;padding-left:3px;display:block;font-size:85%;float:left;width:65%;}.yui-toolbar-group-undoredo h3,.yui-toolbar-group-insertitem h3,.yui-toolbar-group-indentlist h3{width:68px;}.yui-toolbar-group-indentlist2 h3{width:122px;}.yui-toolbar-group-alignment h3{width:130px;}.yui-skin-sam .yui-editor-container{border:1px solid #808080;}.yui-skin-sam .yui-toolbar-container{zoom:1;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar{background:url(sprite.png) repeat-x 0 -200px;position:relative;}.yui-skin-sam .yui-editor-container .draggable .yui-toolbar-titlebar{cursor:move;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar h2{color:#000000;font-weight:bold;margin:0;padding:0.3em 1em;font-size:100%;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-group h3{color:#808080;font-size:75%;margin:1em 0 0;padding-bottom:0;padding-left:0.25em;text-align:left;}.yui-toolbar-container span.yui-toolbar-separator{border:none;text-indent:33px;overflow:hidden;margin:0 .25em;}.yui-skin-sam .yui-toolbar-container{background-color:#F2F2F2;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-subcont{padding:0 1em 0.35em;border-bottom:1px solid #808080;}.yui-skin-sam .yui-toolbar-container-collapsed .yui-toolbar-titlebar{border-bottom:1px solid #808080;}.yui-skin-sam .yui-editor-container .visible .yui-menu-shadow,.yui-skin-sam .yui-editor-panel .visible .yui-menu-shadow{display:none;}.yui-skin-sam .yui-editor-container ul{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-editor-container ul li{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-toolbar-group ul li.yui-toolbar-groupitem{float:left;}.yui-skin-sam .yui-editor-container .dompath{background-color:#F2F2F2;border-top:1px solid #808080;color:#999;text-align:left;padding:0.25em;}.yui-skin-sam .yui-toolbar-container .collapse{background:url(sprite.png) no-repeat 0 -400px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar span.collapse{cursor:pointer;position:absolute;top:4px;right:2px;display:block;overflow:hidden;height:15px;width:15px;text-indent:9999px;}.yui-skin-sam .yui-toolbar-container .yui-push-button,.yui-skin-sam .yui-toolbar-container .yui-color-button,.yui-skin-sam .yui-toolbar-container .yui-menu-button{background:url(sprite.png) repeat-x 0 0;position:relative;display:block;height:22px;width:30px;_font-size:0;margin:0;border-color:#808080;color:#f2f2f2;border-style:solid;border-width:1px 0;zoom:1;}.yui-skin-sam .yui-toolbar-container .yui-push-button a,.yui-skin-sam .yui-toolbar-container .yui-color-button a,.yui-skin-sam .yui-toolbar-container .yui-menu-button a{padding-left:35px;height:20px;text-decoration:none;font-size:0px;line-height:2;display:block;color:#000;overflow:hidden;white-space:nowrap;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a,.yui-skin-sam .yui-toolbar-container .yui-toolbar-select a{font-size:12px;}.yui-skin-sam .yui-toolbar-container .yui-push-button .first-child,.yui-skin-sam .yui-toolbar-container .yui-color-button .first-child,.yui-skin-sam .yui-toolbar-container .yui-menu-button .first-child{border-color:#808080;border-style:solid;border-width:0 1px;margin:0 -1px;display:block;position:relative;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled .first-child,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled .first-child,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled .first-child{border-color:#ccc;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled a,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled a,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled a{color:#A6A6A6;cursor:default;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled{border-color:#ccc;}.yui-skin-sam .yui-toolbar-container .yui-button .first-child{*left:0px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-fontname{width:135px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-heading{width:92px;}.yui-skin-sam .yui-toolbar-container .yui-button-hover{background:url(sprite.png) repeat-x 0 -1300px;border-color:#808080;}.yui-skin-sam .yui-toolbar-container .yui-button-selected{background:url(sprite.png) repeat-x 0 -1700px;border-color:#808080;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels h3{display:none;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels .yui-toolbar-group{margin-top:.75em;}.yui-skin-sam .yui-toolbar-container .yui-push-button span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-color-button span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-menu-button span.yui-toolbar-icon{display:block;position:absolute;top:2px;height:18px;width:18px;overflow:hidden;background:url(editor-sprite.gif) no-repeat 30px 30px;}.yui-skin-sam .yui-toolbar-container .yui-button-selected span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-button-hover span.yui-toolbar-icon{background-image:url(editor-sprite-active.gif);}.yui-skin-sam .yui-toolbar-container .visible .yuimenuitemlabel{cursor:pointer;color:#000;*position:relative;}.yui-skin-sam .yui-toolbar-container .yui-button-menu{background-color:#fff;}.yui-skin-sam .yui-toolbar-container .yui-button-menu .yui-menu-body-scrolled{position:relative;}.yui-skin-sam div.yuimenu li.selected{background-color:#B3D4FF;}.yui-skin-sam div.yuimenu li.selected a.selected{color:#000;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-bold span.yui-toolbar-icon{background-position:0 0;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-strikethrough span.yui-toolbar-icon{background-position:0 -108px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-italic span.yui-toolbar-icon{background-position:0 -36px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-undo span.yui-toolbar-icon{background-position:0 -1326px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-redo span.yui-toolbar-icon{background-position:0 -1355px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-underline span.yui-toolbar-icon{background-position:0 -72px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-subscript span.yui-toolbar-icon{background-position:0 -180px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-superscript span.yui-toolbar-icon{background-position:0 -144px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-forecolor span.yui-toolbar-icon{background-position:0 -216px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-backcolor span.yui-toolbar-icon{background-position:0 -288px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyleft span.yui-toolbar-icon{background-position:0 -324px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifycenter span.yui-toolbar-icon{background-position:0 -360px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyright span.yui-toolbar-icon{background-position:0 -396px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyfull span.yui-toolbar-icon{background-position:0 -432px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-indent span.yui-toolbar-icon{background-position:0 -720px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-outdent span.yui-toolbar-icon{background-position:0 -684px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-createlink span.yui-toolbar-icon{background-position:0 -792px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertimage span.yui-toolbar-icon{background-position:1px -756px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-left span.yui-toolbar-icon{background-position:0 -972px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-right span.yui-toolbar-icon{background-position:0 -936px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-inline span.yui-toolbar-icon{background-position:0 -900px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-block span.yui-toolbar-icon{background-position:0 -864px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-bordercolor span.yui-toolbar-icon{background-position:0 -252px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-removeformat span.yui-toolbar-icon{background-position:0 -1080px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-hiddenelements span.yui-toolbar-icon{background-position:0 -1044px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertunorderedlist span.yui-toolbar-icon{background-position:0 -468px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertorderedlist span.yui-toolbar-icon{background-position:0 -504px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton,.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child{width:35px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child a{padding-left:2px;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton span.yui-toolbar-icon{display:none;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up,.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down{right:2px;background:url(editor-sprite.gif) no-repeat 0 -1222px;overflow:hidden;height:6px;width:7px;min-height:0;padding:0;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up{top:2px;background-position:0 -1222px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down{bottom:2px;background-position:0 -1187px;}.yui-skin-sam .yui-toolbar-container select{height:22px;border:1px solid #808080;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-select .first-child a{padding-left:5px;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-select span.yui-toolbar-icon{background:url( editor-sprite.gif ) no-repeat 0 -1144px;overflow:hidden;right:-2px;top:0px;height:20px;}.yui-skin-sam .yui-editor-panel .yui-color-button-menu .bd{background-color:transparent;border:none;width:135px;}.yui-skin-sam .yui-color-button-menu .yui-toolbar-colors{border:1px solid #808080;}.yui-skin-sam .yui-editor-panel{padding:0;margin:0;border:none;background-color:transparent;overflow:visible;position:absolute;}.yui-skin-sam .yui-editor-panel .hd{margin:10px 0 0;padding:0;border:none;}.yui-skin-sam .yui-editor-panel .hd h3{color:#000;border:1px solid #808080;background:url(sprite.png) repeat-x 0 -200px;width:99%;position:relative;margin:0;padding:3px 0 0 0;font-size:93%;text-indent:5px;height:20px;}.yui-skin-sam .yui-editor-panel .bd{background-color:#F2F2F2;border-left:1px solid #808080;border-right:1px solid #808080;width:99%;margin:0;padding:0;overflow:visible;}.yui-skin-sam .yui-editor-panel ul{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-editor-panel ul li{margin:0;padding:0;}.yui-skin-sam .yui-editor-panel .yuimenu{}.yui-skin-sam .yui-editor-panel .yui-toolbar-container .yui-toolbar-subcont{padding:0;border:none;margin-top:0.35em;}.yui-skin-sam .yui-editor-panel .yui-toolbar-bordersize,.yui-skin-sam .yui-editor-panel .yui-toolbar-bordertype{width:50px;}.yui-skin-sam .yui-editor-panel label{display:block;float:none;padding:4px 0;margin-bottom:7px;}.yui-skin-sam .yui-editor-panel label strong{font-weight:normal;font-size:93%;text-align:right;padding-top:2px;}.yui-skin-sam .yui-editor-panel label input{width:75%;}.yui-skin-sam .yui-editor-panel .createlink_target,.yui-skin-sam .yui-editor-panel .insertimage_target{width:auto;margin-right:5px;}.yui-skin-sam .yui-editor-panel .removeLink{width:98%;}.yui-skin-sam .yui-editor-panel label input.warning{background-color:#FFEE69;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group h3{color:#000;float:left;font-weight:normal;font-size:93%;margin:5px 0 0 0;padding:0 3px 0 0;text-align:right;}.yui-skin-sam .yui-editor-panel .height-width h3{margin:3px 0 0 10px;}.yui-skin-sam .yui-editor-panel .height-width{margin:3px 0 0 35px;*margin-left:14px;width:42%;*width:44%;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-border{width:190px;}.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-border{width:210px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding{width:203px;_width:198px;}.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-padding{width:172px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding h3{margin-left:25px;*margin-left:12px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-textflow{width:182px;}.yui-skin-sam .yui-editor-panel .hd{background:none;}.yui-skin-sam .yui-editor-panel .ft{background-color:#F2F2F2;border:1px solid #808080;border-top:none;padding:0;margin:0 0 2px 0;}.yui-skin-sam .yui-editor-panel .hd span.close{background:url(sprite.png) no-repeat 0 -300px;cursor:pointer;display:block;height:16px;overflow:hidden;position:absolute;right:5px;text-indent:500px;top:2px;width:26px;}.yui-skin-sam .yui-editor-panel .ft span.tip{background-color:#EDF5FF;border-top:1px solid #808080;font-size:85%;}.yui-skin-sam .yui-editor-panel .ft span.tip strong{display:block;float:left;margin:0 2px 8px 0;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon{background:url( editor-sprite.gif ) no-repeat 0 -1260px;display:block;height:20px;left:2px;position:absolute;top:8px;width:20px;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-info{background-position:2px -1260px;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-warn{background-position:2px -1296px;}.yui-skin-sam .yui-editor-panel .hd span.knob{position:absolute;height:10px;width:28px;top:-10px;left:25px;text-indent:9999px;overflow:hidden;background:url( editor-knob.gif ) no-repeat 0 0;}.yui-skin-sam .yui-editor-panel .yui-toolbar-container{float:left;width:100%;background-image:none;border:none;}.yui-skin-sam .yui-editor-panel .yui-toolbar-container .bd{background-color:#ffffff;}.yui-editor-blankimage{background-image:url( blankimage.png );}.yui-skin-sam .yui-editor-container .yui-resize-handle-br{height:11px;width:11px;background-position:-20px -60px;background-color:transparent;}
-.yui-crop{position:relative;}.yui-crop .yui-crop-mask{position:absolute;top:0;left:0;height:100%;width:100%;}.yui-crop .yui-resize{position:absolute;top:10px;left:10px;border:0;}.yui-crop .yui-crop-resize-mask{position:absolute;top:0;left:0;height:100%;width:100%;background-position:-10px -10px;overflow:hidden;}.yui-skin-sam .yui-crop .yui-crop-mask{background-color:#000;opacity:.5;filter:alpha(opacity=50);}.yui-skin-sam .yui-crop .yui-resize{border:1px dashed #fff;}
-.yui-layout-loading{visibility:hidden;}body.yui-layout{overflow:hidden;position:relative;padding:0;margin:0;}.yui-layout-doc{position:relative;overflow:hidden;padding:0;margin:0;}.yui-layout-unit{height:50px;width:50px;padding:0;margin:0;float:none;z-index:0;}.yui-layout-unit-top{position:absolute;top:0;left:0;width:100%;}.yui-layout-unit-left{position:absolute;top:0;left:0;}.yui-layout-unit-right{position:absolute;top:0;right:0;}.yui-layout-unit-bottom{position:absolute;bottom:0;left:0;width:100%;}.yui-layout-unit-center{position:absolute;top:0;left:0;width:100%;}.yui-layout div.yui-layout-hd{position:absolute;top:0;left:0;zoom:1;width:100%;}.yui-layout div.yui-layout-bd{position:absolute;top:0;left:0;zoom:1;width:100%;}.yui-layout .yui-layout-noscroll div.yui-layout-bd{overflow:hidden;}.yui-layout .yui-layout-scroll div.yui-layout-bd{overflow:auto;}.yui-layout div.yui-layout-ft{position:absolute;bottom:0;left:0;width:100%;zoom:1;}.yui-layout .yui-layout-unit div.yui-layout-hd h2{text-align:left;}.yui-layout .yui-layout-unit div.yui-layout-hd .collapse{cursor:pointer;height:13px;position:absolute;right:2px;top:2px;width:17px;font-size:0;}.yui-layout .yui-layout-unit div.yui-layout-hd .close{cursor:pointer;height:13px;position:absolute;right:2px;top:2px;width:17px;font-size:0;}.yui-layout .yui-layout-unit div.yui-layout-hd .collapse-close{right:25px;}.yui-layout .yui-layout-clip{position:absolute;height:20px;background-color:#c0c0c0;display:none;}.yui-layout .yui-layout-clip .collapse{cursor:pointer;height:13px;position:absolute;right:2px;top:2px;width:17px;font-size:0px;}.yui-layout .yui-layout-wrap{height:100%;width:100%;position:absolute;left:0;}.yui-skin-sam .yui-layout .yui-resize-proxy{border:none;font-size:0;margin:0;padding:0;}.yui-skin-sam .yui-layout .yui-resize-resizing .yui-resize-handle{visibility:hidden;}.yui-skin-sam .yui-layout .yui-resize-proxy div{position:absolute;border:1px solid #808080;background-color:#EDF5FF;}.yui-skin-sam .yui-layout .yui-resize .yui-resize-handle-active{}.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-l{width:5px;height:100%;top:0;left:0;}.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-r{width:5px;top:0;right:0;height:100%;position:absolute;zoom:1;}.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-b{width:100%;bottom:0;left:0;height:5px;}.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-t{width:100%;top:0;left:0;height:5px;}.yui-skin-sam .yui-layout .yui-layout-unit-left div.yui-layout-hd .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -160px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip-left .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -140px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit-right div.yui-layout-hd .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -200px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip-right .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -120px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit-top div.yui-layout-hd .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -220px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip-top .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -240px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit-bottom div.yui-layout-hd .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -260px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip-bottom .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -180px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-hd .close{background:transparent url(layout_sprite.png) no-repeat -20px -100px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-hd{background:url(sprite.png) repeat-x 0 -1400px;border:1px solid #808080;}.yui-skin-sam .yui-layout{background-color:#EDF5FF;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-hd h2{font-weight:bold;color:#fff;padding:3px;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-bd{border:1px solid #808080;border-bottom:none;border-top:none;*border-bottom-width:0;*border-top-width:0;background-color:#f2f2f2;text-align:left;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-bd-noft{border-bottom:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-bd-nohd{border-top:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip{position:absolute;height:20px;background-color:#EDF5FF;display:none;border:1px solid #808080;}.yui-skin-sam .yui-layout div.yui-layout-ft{border:1px solid #808080;border-top:none;*border-top-width:0;background-color:#f2f2f2;}.yui-skin-sam .yui-layout-unit .yui-resize-handle{background-color:transparent;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-r{right:0;top:0;background-image:none;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-l{left:0;top:0;background-image:none;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-b{right:0;bottom:0;background-image:none;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-t{right:0;top:0;background-image:none;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-r .yui-layout-resize-knob,.yui-skin-sam .yui-layout-unit .yui-resize-handle-l .yui-layout-resize-knob{position:absolute;height:16px;width:6px;top:45%;left:0px;background:transparent url(layout_sprite.png) no-repeat 0 -5px;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-t .yui-layout-resize-knob,.yui-skin-sam .yui-layout-unit .yui-resize-handle-b .yui-layout-resize-knob{position:absolute;height:6px;width:16px;left:45%;background:transparent url(layout_sprite.png) no-repeat -20px 0;}
-.yui-skin-sam .yui-log{padding:1em;width:31em;background-color:#AAA;color:#000;border:1px solid black;font-family:monospace;font-size:77%;text-align:left;z-index:9000;}.yui-skin-sam .yui-log-container{position:absolute;top:1em;right:1em;}.yui-skin-sam .yui-log input{margin:0;padding:0;font-family:arial;font-size:100%;font-weight:normal;}.yui-skin-sam .yui-log .yui-log-btns{position:relative;float:right;bottom:.25em;}.yui-skin-sam .yui-log .yui-log-hd{margin-top:1em;padding:.5em;background-color:#575757;}.yui-skin-sam .yui-log .yui-log-hd h4{margin:0;padding:0;font-size:108%;font-weight:bold;color:#FFF;}.yui-skin-sam .yui-log .yui-log-bd{width:100%;height:20em;background-color:#FFF;border:1px solid gray;overflow:auto;}.yui-skin-sam .yui-log p{margin:1px;padding:.1em;}.yui-skin-sam .yui-log pre{margin:0;padding:0;}.yui-skin-sam .yui-log pre.yui-log-verbose{white-space:pre-wrap;white-space:-moz-pre-wrap !important;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;}.yui-skin-sam .yui-log .yui-log-ft{margin-top:.5em;}.yui-skin-sam .yui-log .yui-log-ft .yui-log-categoryfilters{}.yui-skin-sam .yui-log .yui-log-ft .yui-log-sourcefilters{width:100%;border-top:1px solid #575757;margin-top:.75em;padding-top:.75em;}.yui-skin-sam .yui-log .yui-log-filtergrp{margin-right:.5em;}.yui-skin-sam .yui-log .info{background-color:#A7CC25;}.yui-skin-sam .yui-log .warn{background-color:#F58516;}.yui-skin-sam .yui-log .error{background-color:#E32F0B;}.yui-skin-sam .yui-log .time{background-color:#A6C9D7;}.yui-skin-sam .yui-log .window{background-color:#F2E886;}
-.yuimenu{top:-999em;left:-999em;}.yuimenubar{position:static;}.yuimenu .yuimenu,.yuimenubar .yuimenu{position:absolute;}.yuimenubar li,.yuimenu li{list-style-type:none;}.yuimenubar ul,.yuimenu ul,.yuimenubar li,.yuimenu li,.yuimenu h6,.yuimenubar h6{margin:0;padding:0;}.yuimenuitemlabel,.yuimenubaritemlabel{text-align:left;white-space:nowrap;}.yuimenubar ul{*zoom:1;}.yuimenubar .yuimenu ul{*zoom:normal;}.yuimenubar>.bd>ul:after{content:".";display:block;clear:both;visibility:hidden;height:0;line-height:0;}.yuimenubaritem{float:left;}.yuimenubaritemlabel,.yuimenuitemlabel{display:block;}.yuimenuitemlabel .helptext{font-style:normal;display:block;margin:-1em 0 0 10em;}.yui-menu-shadow{position:absolute;visibility:hidden;z-index:-1;}.yui-menu-shadow-visible{top:2px;right:-3px;left:-3px;bottom:-3px;visibility:visible;}.hide-scrollbars *{overflow:hidden;}.hide-scrollbars select{display:none;}.yuimenu.show-scrollbars,.yuimenubar.show-scrollbars{overflow:visible;}.yuimenu.hide-scrollbars .yui-menu-shadow,.yuimenubar.hide-scrollbars .yui-menu-shadow{overflow:hidden;}.yuimenu.show-scrollbars .yui-menu-shadow,.yuimenubar.show-scrollbars .yui-menu-shadow{overflow:auto;}.yui-skin-sam .yuimenubar{font-size:93%;line-height:2;*line-height:1.9;border:solid 1px #808080;background:url(sprite.png) repeat-x 0 0;}.yui-skin-sam .yuimenubarnav .yuimenubaritem{border-right:solid 1px #ccc;}.yui-skin-sam .yuimenubaritemlabel{padding:0 10px;color:#000;text-decoration:none;cursor:default;border-style:solid;border-color:#808080;border-width:1px 0;*position:relative;margin:-1px 0;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel{padding-right:20px;*display:inline-block;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu{background:url(menubaritem_submenuindicator.png) right center no-repeat;}.yui-skin-sam .yuimenubaritem-selected{background:url(sprite.png) repeat-x 0 -1700px;}.yui-skin-sam .yuimenubaritemlabel-selected{border-color:#7D98B8;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-selected{border-left-width:1px;margin-left:-1px;*left:-1px;}.yui-skin-sam .yuimenubaritemlabel-disabled{cursor:default;color:#A6A6A6;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu-disabled{background-image:url(menubaritem_submenuindicator_disabled.png);}.yui-skin-sam .yuimenu{font-size:93%;line-height:1.5;*line-height:1.45;}.yui-skin-sam .yuimenubar .yuimenu,.yui-skin-sam .yuimenu .yuimenu{font-size:100%;}.yui-skin-sam .yuimenu .bd{*zoom:1;_zoom:normal;border:solid 1px #808080;background-color:#fff;}.yui-skin-sam .yuimenu .yuimenu .bd{*zoom:normal;}.yui-skin-sam .yuimenu ul{padding:3px 0;border-width:1px 0 0 0;border-color:#ccc;border-style:solid;}.yui-skin-sam .yuimenu ul.first-of-type{border-width:0;}.yui-skin-sam .yuimenu h6{font-weight:bold;border-style:solid;border-color:#ccc;border-width:1px 0 0 0;color:#a4a4a4;padding:3px 10px 0 10px;}.yui-skin-sam .yuimenu ul.hastitle,.yui-skin-sam .yuimenu h6.first-of-type{border-width:0;}.yui-skin-sam .yuimenu .yui-menu-body-scrolled{border-color:#ccc #808080;overflow:hidden;}.yui-skin-sam .yuimenu .topscrollbar,.yui-skin-sam .yuimenu .bottomscrollbar{height:16px;border:solid 1px #808080;background:#fff url(sprite.png) no-repeat 0 0;}.yui-skin-sam .yuimenu .topscrollbar{border-bottom-width:0;background-position:center -950px;}.yui-skin-sam .yuimenu .topscrollbar_disabled{background-position:center -975px;}.yui-skin-sam .yuimenu .bottomscrollbar{border-top-width:0;background-position:center -850px;}.yui-skin-sam .yuimenu .bottomscrollbar_disabled{background-position:center -875px;}.yui-skin-sam .yuimenuitem{_border-bottom:solid 1px #fff;}.yui-skin-sam .yuimenuitemlabel{padding:0 20px;color:#000;text-decoration:none;cursor:default;}.yui-skin-sam .yuimenuitemlabel .helptext{margin-top:-1.5em;*margin-top:-1.45em;}.yui-skin-sam .yuimenuitem-hassubmenu{background-image:url(menuitem_submenuindicator.png);background-position:right center;background-repeat:no-repeat;}.yui-skin-sam .yuimenuitem-checked{background-image:url(menuitem_checkbox.png);background-position:left center;background-repeat:no-repeat;}.yui-skin-sam .yui-menu-shadow-visible{background-color:#000;opacity:.12;*filter:alpha(opacity=12);}.yui-skin-sam .yuimenuitem-selected{background-color:#B3D4FF;}.yui-skin-sam .yuimenuitemlabel-disabled{cursor:default;color:#A6A6A6;}.yui-skin-sam .yuimenuitem-hassubmenu-disabled{background-image:url(menuitem_submenuindicator_disabled.png);}.yui-skin-sam .yuimenuitem-checked-disabled{background-image:url(menuitem_checkbox_disabled.png);}
-.yui-skin-sam .yui-pg-container{display:block;margin:6px 0;white-space:nowrap;}.yui-skin-sam .yui-pg-first,.yui-skin-sam .yui-pg-previous,.yui-skin-sam .yui-pg-next,.yui-skin-sam .yui-pg-last,.yui-skin-sam .yui-pg-current,.yui-skin-sam .yui-pg-pages,.yui-skin-sam .yui-pg-page{display:inline-block;font-family:arial,helvetica,clean,sans-serif;padding:3px 6px;zoom:1;}.yui-skin-sam .yui-pg-pages{padding:0;}.yui-skin-sam .yui-pg-current{padding:3px 0;}.yui-skin-sam a.yui-pg-first:link,.yui-skin-sam a.yui-pg-first:visited,.yui-skin-sam a.yui-pg-first:active,.yui-skin-sam a.yui-pg-first:hover,.yui-skin-sam a.yui-pg-previous:link,.yui-skin-sam a.yui-pg-previous:visited,.yui-skin-sam a.yui-pg-previous:active,.yui-skin-sam a.yui-pg-previous:hover,.yui-skin-sam a.yui-pg-next:link,.yui-skin-sam a.yui-pg-next:visited,.yui-skin-sam a.yui-pg-next:active,.yui-skin-sam a.yui-pg-next:hover,.yui-skin-sam a.yui-pg-last:link,.yui-skin-sam a.yui-pg-last:visited,.yui-skin-sam a.yui-pg-last:active,.yui-skin-sam a.yui-pg-last:hover,.yui-skin-sam a.yui-pg-page:link,.yui-skin-sam a.yui-pg-page:visited,.yui-skin-sam a.yui-pg-page:active,.yui-skin-sam a.yui-pg-page:hover{color:#06c;text-decoration:underline;outline:0;}.yui-skin-sam span.yui-pg-first,.yui-skin-sam span.yui-pg-previous,.yui-skin-sam span.yui-pg-next,.yui-skin-sam span.yui-pg-last{color:#a6a6a6;}.yui-skin-sam .yui-pg-page{background-color:#fff;border:1px solid #CBCBCB;padding:2px 6px;text-decoration:none;}.yui-skin-sam .yui-pg-current-page{background-color:transparent;border:none;font-weight:bold;padding:3px 6px;}.yui-skin-sam .yui-pg-page{margin-left:1px;margin-right:1px;}.yui-skin-sam .yui-pg-first,.yui-skin-sam .yui-pg-previous{padding-left:0;}.yui-skin-sam .yui-pg-next,.yui-skin-sam .yui-pg-last{padding-right:0;}.yui-skin-sam .yui-pg-current,.yui-skin-sam .yui-pg-rpp-options{margin-left:1em;margin-right:1em;}
-.yui-skin-sam .yui-pv{background-color:#4a4a4a;font:arial;position:relative;width:99%;z-index:1000;margin-bottom:1em;overflow:hidden;}.yui-skin-sam .yui-pv .hd{background:url(header_background.png) repeat-x;min-height:30px;overflow:hidden;zoom:1;padding:2px 0;}.yui-skin-sam .yui-pv .hd h4{padding:8px 10px;margin:0;font:bold 14px arial;color:#fff;}.yui-skin-sam .yui-pv .hd a{background:#3f6bc3;font:bold 11px arial;color:#fff;padding:4px;margin:3px 10px 0 0;border:1px solid #3f567d;cursor:pointer;display:block;float:right;}.yui-skin-sam .yui-pv .hd span{display:none;}.yui-skin-sam .yui-pv .hd span.yui-pv-busy{height:18px;width:18px;background:url(wait.gif) no-repeat;overflow:hidden;display:block;float:right;margin:4px 10px 0 0;}.yui-skin-sam .yui-pv .hd:after,.yui-pv .bd:after,.yui-skin-sam .yui-pv-chartlegend dl:after{content:'.';visibility:hidden;clear:left;height:0;display:block;}.yui-skin-sam .yui-pv .bd{position:relative;zoom:1;overflow-x:auto;overflow-y:hidden;}.yui-skin-sam .yui-pv .yui-pv-table{padding:0 10px;margin:5px 0 10px 0;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-bd td{color:#eeee5c;font:12px arial;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-odd{background:#929292;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-even{background:#58637a;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-even td.yui-dt-asc,.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-even td.yui-dt-desc{background:#384970;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-odd td.yui-dt-asc,.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-odd td.yui-dt-desc{background:#6F6E6E;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th{background-image:none;background:#2E2D2D;}.yui-skin-sam .yui-pv th.yui-dt-asc .yui-dt-liner{background:transparent url(asc.gif) no-repeat scroll right center;}.yui-skin-sam .yui-pv th.yui-dt-desc .yui-dt-liner{background:transparent url(desc.gif) no-repeat scroll right center;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th a{color:#fff;font:bold 12px arial;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th.yui-dt-asc,.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th.yui-dt-desc{background:#333;}.yui-skin-sam .yui-pv-chartcontainer{padding:0 10px;}.yui-skin-sam .yui-pv-chart{height:250px;clear:right;margin:5px 0 0 0;color:#fff;}.yui-skin-sam .yui-pv-chartlegend div{float:right;margin:0 0 0 10px;_width:250px;}.yui-skin-sam .yui-pv-chartlegend dl{border:1px solid #999;padding:.2em 0 .2em .5em;zoom:1;margin:5px 0;}.yui-skin-sam .yui-pv-chartlegend dt{float:left;display:block;height:.7em;width:.7em;padding:0;}.yui-skin-sam .yui-pv-chartlegend dd{float:left;display:block;color:#fff;margin:0 1em 0 .5em;padding:0;font:11px arial;}.yui-skin-sam .yui-pv-minimized{height:35px;}.yui-skin-sam .yui-pv-minimized .bd{top:-3000px;}.yui-skin-sam .yui-pv-minimized .hd a.yui-pv-refresh{display:none;}
-.yui-resize{position:relative;zoom:1;z-index:0;}.yui-resize-wrap{zoom:1;}.yui-draggable{cursor:move;}.yui-resize .yui-resize-handle{position:absolute;z-index:1;font-size:0;margin:0;padding:0;zoom:1;height:1px;width:1px;}.yui-resize .yui-resize-handle-br{height:5px;width:5px;bottom:0;right:0;cursor:se-resize;z-index:2;zoom:1;}.yui-resize .yui-resize-handle-bl{height:5px;width:5px;bottom:0;left:0;cursor:sw-resize;z-index:2;zoom:1;}.yui-resize .yui-resize-handle-tl{height:5px;width:5px;top:0;left:0;cursor:nw-resize;z-index:2;zoom:1;}.yui-resize .yui-resize-handle-tr{height:5px;width:5px;top:0;right:0;cursor:ne-resize;z-index:2;zoom:1;}.yui-resize .yui-resize-handle-r{width:5px;height:100%;top:0;right:0;cursor:e-resize;zoom:1;}.yui-resize .yui-resize-handle-l{height:100%;width:5px;top:0;left:0;cursor:w-resize;zoom:1;}.yui-resize .yui-resize-handle-b{width:100%;height:5px;bottom:0;right:0;cursor:s-resize;zoom:1;}.yui-resize .yui-resize-handle-t{width:100%;height:5px;top:0;right:0;cursor:n-resize;zoom:1;}.yui-resize-proxy{position:absolute;border:1px dashed #000;visibility:hidden;z-index:1000;}.yui-resize-hover .yui-resize-handle,.yui-resize-hidden .yui-resize-handle{opacity:0;filter:alpha(opacity=0);}.yui-resize-ghost{opacity:.5;filter:alpha(opacity=50);}.yui-resize-knob .yui-resize-handle{height:6px;width:6px;}.yui-resize-knob .yui-resize-handle-tr{right:-3px;top:-3px;}.yui-resize-knob .yui-resize-handle-tl{left:-3px;top:-3px;}.yui-resize-knob .yui-resize-handle-bl{left:-3px;bottom:-3px;}.yui-resize-knob .yui-resize-handle-br{right:-3px;bottom:-3px;}.yui-resize-knob .yui-resize-handle-t{left:45%;top:-3px;}.yui-resize-knob .yui-resize-handle-r{right:-3px;top:45%;}.yui-resize-knob .yui-resize-handle-l{left:-3px;top:45%;}.yui-resize-knob .yui-resize-handle-b{left:45%;bottom:-3px;}.yui-resize-status{position:absolute;top:-999px;left:-999px;padding:2px;font-size:80%;display:none;zoom:1;z-index:9999;}.yui-resize-status strong,.yui-resize-status em{font-weight:normal;font-style:normal;padding:1px;zoom:1;}.yui-skin-sam .yui-resize .yui-resize-handle{background-color:#F2F2F2;}.yui-skin-sam .yui-resize .yui-resize-handle-active{background-color:#7D98B8;zoom:1;}.yui-skin-sam .yui-resize .yui-resize-handle-l,.yui-skin-sam .yui-resize .yui-resize-handle-r,.yui-skin-sam .yui-resize .yui-resize-handle-l-active,.yui-skin-sam .yui-resize .yui-resize-handle-r-active{height:100%;}.yui-skin-sam .yui-resize-knob .yui-resize-handle{border:1px solid #808080;}.yui-skin-sam .yui-resize-hover .yui-resize-handle-active{opacity:1;filter:alpha(opacity=100);}.yui-skin-sam .yui-resize-proxy{border:1px dashed #426FD9;}.yui-skin-sam .yui-resize-status{border:1px solid #A6982B;border-top:1px solid #D4C237;background-color:#FFEE69;color:#000;}.yui-skin-sam .yui-resize-status strong,.yui-skin-sam .yui-resize-status em{float:left;display:block;clear:both;padding:1px;text-align:center;}.yui-skin-sam .yui-resize .yui-resize-handle-inner-r,.yui-skin-sam .yui-resize .yui-resize-handle-inner-l{background:transparent url( layout_sprite.png) no-repeat 0 -5px;height:16px;width:5px;position:absolute;top:45%;}.yui-skin-sam .yui-resize .yui-resize-handle-inner-t,.yui-skin-sam .yui-resize .yui-resize-handle-inner-b{background:transparent url(layout_sprite.png) no-repeat -20px 0;height:5px;width:16px;position:absolute;left:50%;}.yui-skin-sam .yui-resize .yui-resize-handle-br{background-image:url( layout_sprite.png );background-repeat:no-repeat;background-position:-22px -62px;}.yui-skin-sam .yui-resize .yui-resize-handle-tr{background-image:url( layout_sprite.png );background-repeat:no-repeat;background-position:-22px -42px;}.yui-skin-sam .yui-resize .yui-resize-handle-tl{background-image:url( layout_sprite.png );background-repeat:no-repeat;background-position:-22px -82px;}.yui-skin-sam .yui-resize .yui-resize-handle-bl{background-image:url( layout_sprite.png );background-repeat:no-repeat;background-position:-22px -23px;}.yui-skin-sam .yui-resize-knob .yui-resize-handle-t,.yui-skin-sam .yui-resize-knob .yui-resize-handle-r,.yui-skin-sam .yui-resize-knob .yui-resize-handle-b,.yui-skin-sam .yui-resize-knob .yui-resize-handle-l,.yui-skin-sam .yui-resize-knob .yui-resize-handle-tl,.yui-skin-sam .yui-resize-knob .yui-resize-handle-tr,.yui-skin-sam .yui-resize-knob .yui-resize-handle-bl,.yui-skin-sam .yui-resize-knob .yui-resize-handle-br,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-t,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-r,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-b,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-l,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-tl,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-tr,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-bl,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-br{background-image:none;}.yui-skin-sam .yui-resize-knob .yui-resize-handle-l,.yui-skin-sam .yui-resize-knob .yui-resize-handle-r,.yui-skin-sam .yui-resize-knob .yui-resize-handle-l-active,.yui-skin-sam .yui-resize-knob .yui-resize-handle-r-active{height:6px;width:6px;}
-.yui-busy{cursor:wait !important;}.yui-toolbar-container fieldset{padding:0;margin:0;border:0;}.yui-toolbar-container legend{display:none;}.yui-toolbar-container .yui-toolbar-subcont{padding:.25em 0;zoom:1;}.yui-toolbar-container-collapsed .yui-toolbar-subcont{display:none;}.yui-toolbar-container .yui-toolbar-subcont:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-container span.yui-toolbar-draghandle{cursor:move;border-left:1px solid #999;border-right:1px solid #999;overflow:hidden;text-indent:77777px;width:2px;height:20px;display:block;clear:none;float:left;margin:0 0 0 .2em;}.yui-toolbar-container .yui-toolbar-titlebar.draggable{cursor:move;}.yui-toolbar-container .yui-toolbar-titlebar{position:relative;}.yui-toolbar-container .yui-toolbar-titlebar h2{font-weight:bold;letter-spacing:0;border:none;color:#000;margin:0;padding:.2em;}.yui-toolbar-container .yui-toolbar-titlebar h2 a{text-decoration:none;color:#000;cursor:default;}.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-draghandle{height:40px;}.yui-toolbar-container .yui-toolbar-group{float:left;margin-right:.5em;zoom:1;}.yui-toolbar-container .yui-toolbar-group:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-container .yui-toolbar-group h3{font-size:75%;padding:0 0 0 .25em;margin:0;}.yui-toolbar-container span.yui-toolbar-separator{width:2px;padding:0;height:18px;margin:.2em 0 .2em .1em;display:none;float:left;}.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-separator{height:45px;*height:50px;}.yui-toolbar-container.yui-toolbar-grouped .yui-toolbar-group span.yui-toolbar-separator{height:18px;display:block;}.yui-toolbar-container ul li{margin:0;padding:0;list-style-type:none;}.yui-toolbar-container .yui-toolbar-nogrouplabels h3{display:none;}.yui-toolbar-container .yui-push-button,.yui-toolbar-container .yui-color-button,.yui-toolbar-container .yui-menu-button{position:relative;cursor:pointer;}.yui-toolbar-container .yui-button .first-child,.yui-toolbar-container .yui-button .first-child a{height:100%;width:100%;overflow:hidden;font-size:0px;}.yui-toolbar-container .yui-button-disabled{cursor:default;}.yui-toolbar-container .yui-button-disabled .yui-toolbar-icon{opacity:.5;filter:alpha(opacity=50);}.yui-toolbar-container .yui-button-disabled .up,.yui-toolbar-container .yui-button-disabled .down{opacity:.5;filter:alpha(opacity=50);}.yui-toolbar-container .yui-button a{overflow:hidden;}.yui-toolbar-container .yui-toolbar-select .first-child a{cursor:pointer;}.yui-toolbar-fontname-arial{font-family:Arial;}.yui-toolbar-fontname-arial-black{font-family:Arial Black;}.yui-toolbar-fontname-comic-sans-ms{font-family:Comic Sans MS;}.yui-toolbar-fontname-courier-new{font-family:Courier New;}.yui-toolbar-fontname-times-new-roman{font-family:Times New Roman;}.yui-toolbar-fontname-verdana{font-family:Verdana;}.yui-toolbar-fontname-impact{font-family:Impact;}.yui-toolbar-fontname-lucida-console{font-family:Lucida Console;}.yui-toolbar-fontname-tahoma{font-family:Tahoma;}.yui-toolbar-fontname-trebuchet-ms{font-family:Trebuchet MS;}.yui-toolbar-container .yui-toolbar-spinbutton{position:relative;}.yui-toolbar-container .yui-toolbar-spinbutton .first-child a{z-index:0;opacity:1;}.yui-toolbar-container .yui-toolbar-spinbutton a.up,.yui-toolbar-container .yui-toolbar-spinbutton a.down{position:absolute;display:block right:0;cursor:pointer;z-index:1;padding:0;margin:0;}.yui-toolbar-container .yui-overlay{position:absolute;}.yui-toolbar-container .yui-overlay ul li{margin:0;list-style-type:none;}.yui-toolbar-container{z-index:1;}.yui-editor-container .yui-editor-editable-container{position:relative;z-index:0;width:100%;}.yui-editor-container .yui-editor-masked{background-color:#CCC;}.yui-editor-container iframe{border:0px;padding:0;margin:0;zoom:1;display:block;}.yui-editor-container .yui-editor-editable{padding:0;margin:0;}.yui-editor-container .dompath{font-size:85%;}.yui-editor-panel .hd{text-align:left;position:relative;}.yui-editor-panel .hd h3{font-weight:bold;padding:0.25em 0pt 0.25em 0.25em;margin:0;}.yui-editor-panel .bd{width:100%;zoom:1;position:relative;}.yui-editor-panel .bd div.yui-editor-body-cont{padding:.25em .1em;zoom:1;}.yui-editor-panel .bd .gecko form{overflow:auto;}.yui-editor-panel .bd div.yui-editor-body-cont:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-editor-panel .ft{text-align:right;width:99%;float:left;clear:both;}.yui-editor-panel .ft span.tip{display:block;position:relative;padding:.5em .5em .5em 23px;text-align:left;zoom:1;}.yui-editor-panel label{clear:both;float:left;padding:0;width:100%;text-align:left;zoom:1;}.yui-editor-panel .gecko label{overflow:auto;}.yui-editor-panel label strong{float:left;width:6em;}.yui-editor-panel .removeLink{width:80%;text-align:right;}.yui-editor-panel label input{margin-left:.25em;float:left;}.yui-editor-panel .yui-toolbar-group{margin-bottom:0.75em;}.yui-editor-panel .yui-toolbar-group-padding{}.yui-editor-panel .yui-toolbar-group-border{}.yui-editor-panel .yui-toolbar-group-textflow{}.yui-editor-panel .height-width{float:left;}.yui-editor-panel .height-width h3{}.yui-editor-panel .height-width span{font-style:italic;display:block;float:left;overflow:visible;}.yui-editor-panel .height-width span.info{font-size:70%;margin-top:3px;}.yui-editor-panel .yui-toolbar-bordersize,.yui-editor-panel .yui-toolbar-bordertype{font-size:75%;}.yui-editor-panel .yui-toolbar-container span.yui-toolbar-separator{border:none;}.yui-editor-panel .yui-toolbar-bordersize span a span,.yui-editor-panel .yui-toolbar-bordertype span a span{display:block;height:8px;left:4px;position:absolute;top:3px;_top:-5px;width:24px;text-indent:52px;font-size:0%;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-solid{border-bottom:1px solid black;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dotted{border-bottom:1px dotted black;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dashed{border-bottom:1px dashed black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-0{*top:0px;text-indent:0px;font-size:75%;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-1{border-bottom:1px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-2{border-bottom:2px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-3{top:2px;*top:-5px;border-bottom:3px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-4{top:1px;*top:-5px;border-bottom:4px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-5{top:1px;*top:-5px;border-bottom:5px solid black;}.yui-toolbar-container .yui-toolbar-bordersize-menu,.yui-toolbar-container .yui-toolbar-bordertype-menu{width:95px !important;}.yui-toolbar-bordersize-menu .yuimenuitemlabel,.yui-toolbar-bordertype-menu .yuimenuitemlabel,.yui-toolbar-bordersize-menu .yuimenuitemlabel,.yui-toolbar-bordertype-menu .yuimenuitemlabel:hover{margin:0px 3px 7px 17px;}.yui-toolbar-bordersize-menu .yuimenuitemlabel .checkedindicator,.yui-toolbar-bordertype-menu .yuimenuitemlabel .checkedindicator{position:absolute;left:-12px;*top:14px;*left:0px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-1 a{border-bottom:1px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-2 a{border-bottom:2px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-3 a{border-bottom:3px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-4 a{border-bottom:4px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-5 a{border-bottom:5px solid black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-solid a{border-bottom:1px solid black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dashed a{border-bottom:1px dashed black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dotted a{border-bottom:1px dotted black;height:14px;}h2.yui-editor-skipheader,h3.yui-editor-skipheader{height:0;margin:0;padding:0;border:none;width:0;overflow:hidden;position:absolute;}.yui-toolbar-colors{width:133px;zoom:1;display:none;z-index:100;overflow:hidden;}.yui-toolbar-colors:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-colors a{height:9px;width:9px;float:left;display:block;overflow:hidden;text-indent:999px;margin:0;cursor:pointer;border:1px solid #F6F7EE;}.yui-toolbar-colors a:hover{border:1px solid black;}.yui-color-button-menu{overflow:visible;background-color:transparent;}.yui-toolbar-colors span{position:relative;display:block;padding:3px;overflow:hidden;float:left;width:100%;zoom:1;}.yui-toolbar-colors span:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-colors span em{height:35px;width:30px;float:left;display:block;overflow:hidden;text-indent:999px;margin:0.75px;border:1px solid black;}.yui-toolbar-colors span strong{font-weight:normal;padding-left:3px;display:block;font-size:85%;float:left;width:65%;}.yui-toolbar-group-undoredo h3,.yui-toolbar-group-insertitem h3,.yui-toolbar-group-indentlist h3{width:68px;}.yui-toolbar-group-indentlist2 h3{width:122px;}.yui-toolbar-group-alignment h3{width:130px;}.yui-skin-sam .yui-editor-container{border:1px solid #808080;}.yui-skin-sam .yui-toolbar-container{zoom:1;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar{background:url(sprite.png) repeat-x 0 -200px;position:relative;}.yui-skin-sam .yui-editor-container .draggable .yui-toolbar-titlebar{cursor:move;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar h2{color:#000000;font-weight:bold;margin:0;padding:0.3em 1em;font-size:100%;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-group h3{color:#808080;font-size:75%;margin:1em 0 0;padding-bottom:0;padding-left:0.25em;text-align:left;}.yui-toolbar-container span.yui-toolbar-separator{border:none;text-indent:33px;overflow:hidden;margin:0 .25em;}.yui-skin-sam .yui-toolbar-container{background-color:#F2F2F2;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-subcont{padding:0 1em 0.35em;border-bottom:1px solid #808080;}.yui-skin-sam .yui-toolbar-container-collapsed .yui-toolbar-titlebar{border-bottom:1px solid #808080;}.yui-skin-sam .yui-editor-container .visible .yui-menu-shadow,.yui-skin-sam .yui-editor-panel .visible .yui-menu-shadow{display:none;}.yui-skin-sam .yui-editor-container ul{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-editor-container ul li{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-toolbar-group ul li.yui-toolbar-groupitem{float:left;}.yui-skin-sam .yui-editor-container .dompath{background-color:#F2F2F2;border-top:1px solid #808080;color:#999;text-align:left;padding:0.25em;}.yui-skin-sam .yui-toolbar-container .collapse{background:url(sprite.png) no-repeat 0 -400px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar span.collapse{cursor:pointer;position:absolute;top:4px;right:2px;display:block;overflow:hidden;height:15px;width:15px;text-indent:9999px;}.yui-skin-sam .yui-toolbar-container .yui-push-button,.yui-skin-sam .yui-toolbar-container .yui-color-button,.yui-skin-sam .yui-toolbar-container .yui-menu-button{background:url(sprite.png) repeat-x 0 0;position:relative;display:block;height:22px;width:30px;_font-size:0;margin:0;border-color:#808080;color:#f2f2f2;border-style:solid;border-width:1px 0;zoom:1;}.yui-skin-sam .yui-toolbar-container .yui-push-button a,.yui-skin-sam .yui-toolbar-container .yui-color-button a,.yui-skin-sam .yui-toolbar-container .yui-menu-button a{padding-left:35px;height:20px;text-decoration:none;font-size:0px;line-height:2;display:block;color:#000;overflow:hidden;white-space:nowrap;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a,.yui-skin-sam .yui-toolbar-container .yui-toolbar-select a{font-size:12px;}.yui-skin-sam .yui-toolbar-container .yui-push-button .first-child,.yui-skin-sam .yui-toolbar-container .yui-color-button .first-child,.yui-skin-sam .yui-toolbar-container .yui-menu-button .first-child{border-color:#808080;border-style:solid;border-width:0 1px;margin:0 -1px;display:block;position:relative;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled .first-child,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled .first-child,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled .first-child{border-color:#ccc;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled a,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled a,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled a{color:#A6A6A6;cursor:default;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled{border-color:#ccc;}.yui-skin-sam .yui-toolbar-container .yui-button .first-child{*left:0px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-fontname{width:135px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-heading{width:92px;}.yui-skin-sam .yui-toolbar-container .yui-button-hover{background:url(sprite.png) repeat-x 0 -1300px;border-color:#808080;}.yui-skin-sam .yui-toolbar-container .yui-button-selected{background:url(sprite.png) repeat-x 0 -1700px;border-color:#808080;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels h3{display:none;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels .yui-toolbar-group{margin-top:.75em;}.yui-skin-sam .yui-toolbar-container .yui-push-button span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-color-button span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-menu-button span.yui-toolbar-icon{display:block;position:absolute;top:2px;height:18px;width:18px;overflow:hidden;background:url(editor-sprite.gif) no-repeat 30px 30px;}.yui-skin-sam .yui-toolbar-container .yui-button-selected span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-button-hover span.yui-toolbar-icon{background-image:url(editor-sprite-active.gif);}.yui-skin-sam .yui-toolbar-container .visible .yuimenuitemlabel{cursor:pointer;color:#000;*position:relative;}.yui-skin-sam .yui-toolbar-container .yui-button-menu{background-color:#fff;}.yui-skin-sam .yui-toolbar-container .yui-button-menu .yui-menu-body-scrolled{position:relative;}.yui-skin-sam div.yuimenu li.selected{background-color:#B3D4FF;}.yui-skin-sam div.yuimenu li.selected a.selected{color:#000;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-bold span.yui-toolbar-icon{background-position:0 0;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-strikethrough span.yui-toolbar-icon{background-position:0 -108px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-italic span.yui-toolbar-icon{background-position:0 -36px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-undo span.yui-toolbar-icon{background-position:0 -1326px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-redo span.yui-toolbar-icon{background-position:0 -1355px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-underline span.yui-toolbar-icon{background-position:0 -72px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-subscript span.yui-toolbar-icon{background-position:0 -180px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-superscript span.yui-toolbar-icon{background-position:0 -144px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-forecolor span.yui-toolbar-icon{background-position:0 -216px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-backcolor span.yui-toolbar-icon{background-position:0 -288px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyleft span.yui-toolbar-icon{background-position:0 -324px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifycenter span.yui-toolbar-icon{background-position:0 -360px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyright span.yui-toolbar-icon{background-position:0 -396px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyfull span.yui-toolbar-icon{background-position:0 -432px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-indent span.yui-toolbar-icon{background-position:0 -720px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-outdent span.yui-toolbar-icon{background-position:0 -684px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-createlink span.yui-toolbar-icon{background-position:0 -792px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertimage span.yui-toolbar-icon{background-position:1px -756px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-left span.yui-toolbar-icon{background-position:0 -972px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-right span.yui-toolbar-icon{background-position:0 -936px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-inline span.yui-toolbar-icon{background-position:0 -900px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-block span.yui-toolbar-icon{background-position:0 -864px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-bordercolor span.yui-toolbar-icon{background-position:0 -252px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-removeformat span.yui-toolbar-icon{background-position:0 -1080px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-hiddenelements span.yui-toolbar-icon{background-position:0 -1044px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertunorderedlist span.yui-toolbar-icon{background-position:0 -468px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertorderedlist span.yui-toolbar-icon{background-position:0 -504px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton,.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child{width:35px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child a{padding-left:2px;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton span.yui-toolbar-icon{display:none;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up,.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down{right:2px;background:url(editor-sprite.gif) no-repeat 0 -1222px;overflow:hidden;height:6px;width:7px;min-height:0;padding:0;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up{top:2px;background-position:0 -1222px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down{bottom:2px;background-position:0 -1187px;}.yui-skin-sam .yui-toolbar-container select{height:22px;border:1px solid #808080;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-select .first-child a{padding-left:5px;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-select span.yui-toolbar-icon{background:url( editor-sprite.gif ) no-repeat 0 -1144px;overflow:hidden;right:-2px;top:0px;height:20px;}.yui-skin-sam .yui-editor-panel .yui-color-button-menu .bd{background-color:transparent;border:none;width:135px;}.yui-skin-sam .yui-color-button-menu .yui-toolbar-colors{border:1px solid #808080;}.yui-skin-sam .yui-editor-panel{padding:0;margin:0;border:none;background-color:transparent;overflow:visible;position:absolute;}.yui-skin-sam .yui-editor-panel .hd{margin:10px 0 0;padding:0;border:none;}.yui-skin-sam .yui-editor-panel .hd h3{color:#000;border:1px solid #808080;background:url(sprite.png) repeat-x 0 -200px;width:99%;position:relative;margin:0;padding:3px 0 0 0;font-size:93%;text-indent:5px;height:20px;}.yui-skin-sam .yui-editor-panel .bd{background-color:#F2F2F2;border-left:1px solid #808080;border-right:1px solid #808080;width:99%;margin:0;padding:0;overflow:visible;}.yui-skin-sam .yui-editor-panel ul{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-editor-panel ul li{margin:0;padding:0;}.yui-skin-sam .yui-editor-panel .yuimenu{}.yui-skin-sam .yui-editor-panel .yui-toolbar-container .yui-toolbar-subcont{padding:0;border:none;margin-top:0.35em;}.yui-skin-sam .yui-editor-panel .yui-toolbar-bordersize,.yui-skin-sam .yui-editor-panel .yui-toolbar-bordertype{width:50px;}.yui-skin-sam .yui-editor-panel label{display:block;float:none;padding:4px 0;margin-bottom:7px;}.yui-skin-sam .yui-editor-panel label strong{font-weight:normal;font-size:93%;text-align:right;padding-top:2px;}.yui-skin-sam .yui-editor-panel label input{width:75%;}.yui-skin-sam .yui-editor-panel .createlink_target,.yui-skin-sam .yui-editor-panel .insertimage_target{width:auto;margin-right:5px;}.yui-skin-sam .yui-editor-panel .removeLink{width:98%;}.yui-skin-sam .yui-editor-panel label input.warning{background-color:#FFEE69;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group h3{color:#000;float:left;font-weight:normal;font-size:93%;margin:5px 0 0 0;padding:0 3px 0 0;text-align:right;}.yui-skin-sam .yui-editor-panel .height-width h3{margin:3px 0 0 10px;}.yui-skin-sam .yui-editor-panel .height-width{margin:3px 0 0 35px;*margin-left:14px;width:42%;*width:44%;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-border{width:190px;}.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-border{width:210px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding{width:203px;_width:198px;}.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-padding{width:172px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding h3{margin-left:25px;*margin-left:12px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-textflow{width:182px;}.yui-skin-sam .yui-editor-panel .hd{background:none;}.yui-skin-sam .yui-editor-panel .ft{background-color:#F2F2F2;border:1px solid #808080;border-top:none;padding:0;margin:0 0 2px 0;}.yui-skin-sam .yui-editor-panel .hd span.close{background:url(sprite.png) no-repeat 0 -300px;cursor:pointer;display:block;height:16px;overflow:hidden;position:absolute;right:5px;text-indent:500px;top:2px;width:26px;}.yui-skin-sam .yui-editor-panel .ft span.tip{background-color:#EDF5FF;border-top:1px solid #808080;font-size:85%;}.yui-skin-sam .yui-editor-panel .ft span.tip strong{display:block;float:left;margin:0 2px 8px 0;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon{background:url( editor-sprite.gif ) no-repeat 0 -1260px;display:block;height:20px;left:2px;position:absolute;top:8px;width:20px;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-info{background-position:2px -1260px;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-warn{background-position:2px -1296px;}.yui-skin-sam .yui-editor-panel .hd span.knob{position:absolute;height:10px;width:28px;top:-10px;left:25px;text-indent:9999px;overflow:hidden;background:url( editor-knob.gif ) no-repeat 0 0;}.yui-skin-sam .yui-editor-panel .yui-toolbar-container{float:left;width:100%;background-image:none;border:none;}.yui-skin-sam .yui-editor-panel .yui-toolbar-container .bd{background-color:#ffffff;}.yui-editor-blankimage{background-image:url( blankimage.png );}.yui-skin-sam .yui-editor-container .yui-resize-handle-br{height:11px;width:11px;background-position:-20px -60px;background-color:transparent;}
-.yui-h-slider,.yui-v-slider{position:relative;}.yui-h-slider .yui-slider-thumb,.yui-v-slider .yui-slider-thumb{position:absolute;cursor:default;}.yui-skin-sam .yui-h-slider{background:url(../../bg-h.gif) no-repeat 5px 0;height:28px;width:228px;}.yui-skin-sam .yui-h-slider .yui-slider-thumb{top:4px;}.yui-skin-sam .yui-v-slider{background:url(../../bg-v.gif) no-repeat 12px 0;height:228px;width:48px;}
-.yui-navset .yui-nav li,.yui-navset .yui-navset-top .yui-nav li,.yui-navset .yui-navset-bottom .yui-nav li{margin:0 0.5em 0 0;}.yui-navset-left .yui-nav li,.yui-navset-right .yui-nav li{margin:0 0 0.5em;}.yui-navset .yui-content .yui-hidden{display:none;}.yui-navset .yui-navset-left .yui-nav,.yui-navset .yui-navset-right .yui-nav,.yui-navset-left .yui-nav,.yui-navset-right .yui-nav{width:6em;}.yui-navset-top .yui-nav,.yui-navset-bottom .yui-nav{width:auto;}.yui-navset .yui-navset-left,.yui-navset-left{padding:0 0 0 6em;}.yui-navset-right{padding:0 6em 0 0;}.yui-navset-top,.yui-navset-bottom{padding:auto;}.yui-nav,.yui-nav li{margin:0;padding:0;list-style:none;}.yui-navset li em{font-style:normal;}.yui-navset{position:relative;zoom:1;}.yui-navset .yui-content{zoom:1;}.yui-navset .yui-nav li,.yui-navset .yui-navset-top .yui-nav li,.yui-navset .yui-navset-bottom .yui-nav li{display:inline-block;display:-moz-inline-stack;*display:inline;vertical-align:bottom;cursor:pointer;zoom:1;}.yui-navset-left .yui-nav li,.yui-navset-right .yui-nav li{display:block;}.yui-navset .yui-nav a{position:relative;}.yui-navset .yui-nav li a,.yui-navset-top .yui-nav li a,.yui-navset-bottom .yui-nav li a{display:block;display:inline-block;vertical-align:bottom;zoom:1;}.yui-navset-left .yui-nav li a,.yui-navset-right .yui-nav li a{display:block;}.yui-navset-bottom .yui-nav li a{vertical-align:text-top;}.yui-navset .yui-nav li a em,.yui-navset-top .yui-nav li a em,.yui-navset-bottom .yui-nav li a em{display:block;}.yui-navset .yui-navset-left .yui-nav,.yui-navset .yui-navset-right .yui-nav,.yui-navset-left .yui-nav,.yui-navset-right .yui-nav{position:absolute;z-index:1;}.yui-navset-top .yui-nav,.yui-navset-bottom .yui-nav{position:static;}.yui-navset .yui-navset-left .yui-nav,.yui-navset-left .yui-nav{left:0;right:auto;}.yui-navset .yui-navset-right .yui-nav,.yui-navset-right .yui-nav{right:0;left:auto;}.yui-skin-sam .yui-navset .yui-nav,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav{border:solid #2647a0;border-width:0 0 5px;Xposition:relative;zoom:1;}.yui-skin-sam .yui-navset .yui-nav li,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav li{margin:0 0.16em 0 0;padding:1px 0 0;zoom:1;}.yui-skin-sam .yui-navset .yui-nav .selected,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav .selected{margin:0 0.16em -1px 0;}.yui-skin-sam .yui-navset .yui-nav a,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav a{background:#d8d8d8 url(sprite.png) repeat-x;border:solid #a3a3a3;border-width:0 1px;color:#000;position:relative;text-decoration:none;}.yui-skin-sam .yui-navset .yui-nav a em,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav a em{border:solid #a3a3a3;border-width:1px 0 0;cursor:hand;padding:0.25em .75em;left:0;right:0;bottom:0;top:-1px;position:relative;}.yui-skin-sam .yui-navset .yui-nav .selected a,.yui-skin-sam .yui-navset .yui-nav .selected a:focus,.yui-skin-sam .yui-navset .yui-nav .selected a:hover{background:#2647a0 url(sprite.png) repeat-x left -1400px;color:#fff;}.yui-skin-sam .yui-navset .yui-nav a:hover,.yui-skin-sam .yui-navset .yui-nav a:focus{background:#bfdaff url(sprite.png) repeat-x left -1300px;outline:0;}.yui-skin-sam .yui-navset .yui-nav .selected a em{padding:0.35em 0.75em;}.yui-skin-sam .yui-navset .yui-nav .selected a,.yui-skin-sam .yui-navset .yui-nav .selected a em{border-color:#243356;}.yui-skin-sam .yui-navset .yui-content{background:#edf5ff;}.yui-skin-sam .yui-navset .yui-content,.yui-skin-sam .yui-navset .yui-navset-top .yui-content{border:1px solid #808080;border-top-color:#243356;padding:0.25em 0.5em;}.yui-skin-sam .yui-navset-left .yui-nav,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav,.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav{border-width:0 5px 0 0;Xposition:absolute;top:0;bottom:0;}.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav{border-width:0 0 0 5px;}.yui-skin-sam .yui-navset-left .yui-nav li,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav li,.yui-skin-sam .yui-navset-right .yui-nav li{margin:0 0 0.16em;padding:0 0 0 1px;}.yui-skin-sam .yui-navset-right .yui-nav li{padding:0 1px 0 0;}.yui-skin-sam .yui-navset-left .yui-nav .selected,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav .selected{margin:0 -1px 0.16em 0;}.yui-skin-sam .yui-navset-right .yui-nav .selected{margin:0 0 0.16em -1px;}.yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav a{border-width:1px 0;}.yui-skin-sam .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset-right .yui-nav a em{border-width:0 0 0 1px;padding:0.2em .75em;top:auto;left:-1px;}.yui-skin-sam .yui-navset-right .yui-nav a em{border-width:0 1px 0 0;left:auto;right:-1px;}.yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-left .yui-nav .selected a,.yui-skin-sam .yui-navset-left .yui-nav a:hover,.yui-skin-sam .yui-navset-right .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav .selected a,.yui-skin-sam .yui-navset-right .yui-nav a:hover,.yui-skin-sam .yui-navset-bottom .yui-nav a,.yui-skin-sam .yui-navset-bottom .yui-nav .selected a,.yui-skin-sam .yui-navset-bottom .yui-nav a:hover{background-image:none;}.yui-skin-sam .yui-navset-left .yui-content{border:1px solid #808080;border-left-color:#243356;}.yui-skin-sam .yui-navset-bottom .yui-nav,.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav{border-width:5px 0 0;}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav .selected,.yui-skin-sam .yui-navset-bottom .yui-nav .selected{margin:-1px 0.16em 0 0;}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li,.yui-skin-sam .yui-navset-bottom .yui-nav li{padding:0 0 1px 0;vertical-align:top;}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li a,.yui-skin-sam .yui-navset-bottom .yui-nav li a{}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav a em,.yui-skin-sam .yui-navset-bottom .yui-nav a em{border-width:0 0 1px;top:auto;bottom:-1px;}.yui-skin-sam .yui-navset-bottom .yui-content,.yui-skin-sam .yui-navset .yui-navset-bottom .yui-content{border:1px solid #808080;border-bottom-color:#243356;}
-.ygtvitem{}.ygtvitem table{margin-bottom:0;border:none;}.ygtvrow td{border:none;padding:0;}.ygtvrow td a{text-decoration:none;}.ygtvtn{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -5600px no-repeat;}.ygtvtm{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -4000px no-repeat;}.ygtvtmh,.ygtvtmhh{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -4800px no-repeat;}.ygtvtp{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -6400px no-repeat;}.ygtvtph,.ygtvtphh{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -7200px no-repeat;}.ygtvln{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -1600px no-repeat;}.ygtvlm{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 0px no-repeat;}.ygtvlmh,.ygtvlmhh{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -800px no-repeat;}.ygtvlp{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -2400px no-repeat;}.ygtvlph,.ygtvlphh{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -3200px no-repeat;}.ygtvloading{width:18px;height:22px;background:url(treeview-loading.gif) 0 0 no-repeat;}.ygtvdepthcell{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -8000px no-repeat;}.ygtvblankdepthcell{width:18px;height:22px;}.ygtvchildren{}* html .ygtvchildren{height:2%;}.ygtvlabel,.ygtvlabel:link,.ygtvlabel:visited,.ygtvlabel:hover{margin-left:2px;text-decoration:none;background-color:white;cursor:pointer;}.ygtvcontent{cursor:default;}.ygtvspacer{height:22px;width:12px;}.ygtvfocus{background-color:#c0e0e0;border:none;}.ygtvfocus .ygtvlabel,.ygtvfocus .ygtvlabel:link,.ygtvfocus .ygtvlabel:visited,.ygtvfocus .ygtvlabel:hover{background-color:#c0e0e0;}.ygtvfocus a,.ygtvrow td a{outline-style:none;}.ygtvok{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -8800px no-repeat;}.ygtvok:hover{background:url(treeview-sprite.gif) 0 -8844px no-repeat;}.ygtvcancel{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -8822px no-repeat;}.ygtvcancel:hover{background:url(treeview-sprite.gif) 0 -8866px no-repeat;}.ygtv-label-editor{background-color:#f2f2f2;border:1px solid silver;position:absolute;display:none;overflow:hidden;margin:auto;z-index:9000;}.ygtv-edit-TextNode{width:190px;}.ygtv-edit-TextNode .ygtvcancel,.ygtv-edit-TextNode .ygtvok{border:none;}.ygtv-edit-TextNode .ygtv-button-container{float:right;}.ygtv-edit-TextNode .ygtv-input input{width:140px;}.ygtv-edit-DateNode .ygtvcancel{border:none;}.ygtv-edit-DateNode .ygtvok{display:none;}.ygtv-edit-DateNode .ygtv-button-container{text-align:right;margin:auto;}
-
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/slider.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/slider.css
deleted file mode 100644
index 073d43e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/slider.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-h-slider,.yui-v-slider{position:relative;}.yui-h-slider .yui-slider-thumb,.yui-v-slider .yui-slider-thumb{position:absolute;cursor:default;}.yui-skin-sam .yui-h-slider{background:url(../../bg-h.gif) no-repeat 5px 0;height:28px;width:228px;}.yui-skin-sam .yui-h-slider .yui-slider-thumb{top:4px;}.yui-skin-sam .yui-v-slider{background:url(../../bg-v.gif) no-repeat 12px 0;height:228px;width:48px;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow-active.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow-active.png
deleted file mode 100644
index fa58c50..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow-active.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow-disabled.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow-disabled.png
deleted file mode 100644
index 0a6a82c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow-disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow-focus.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow-focus.png
deleted file mode 100644
index 167d71e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow-focus.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow-hover.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow-hover.png
deleted file mode 100644
index 167d71e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow-hover.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow.png
deleted file mode 100644
index b33a93f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/split-button-arrow.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/sprite.png b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/sprite.png
deleted file mode 100644
index 73634d6..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/sprite.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/sprite.psd b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/sprite.psd
deleted file mode 100644
index fff2c34..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/sprite.psd
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/tabview.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/tabview.css
deleted file mode 100644
index ece4ebd..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/tabview.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-navset .yui-nav li,.yui-navset .yui-navset-top .yui-nav li,.yui-navset .yui-navset-bottom .yui-nav li{margin:0 0.5em 0 0;}.yui-navset-left .yui-nav li,.yui-navset-right .yui-nav li{margin:0 0 0.5em;}.yui-navset .yui-content .yui-hidden{display:none;}.yui-navset .yui-navset-left .yui-nav,.yui-navset .yui-navset-right .yui-nav,.yui-navset-left .yui-nav,.yui-navset-right .yui-nav{width:6em;}.yui-navset-top .yui-nav,.yui-navset-bottom .yui-nav{width:auto;}.yui-navset .yui-navset-left,.yui-navset-left{padding:0 0 0 6em;}.yui-navset-right{padding:0 6em 0 0;}.yui-navset-top,.yui-navset-bottom{padding:auto;}.yui-nav,.yui-nav li{margin:0;padding:0;list-style:none;}.yui-navset li em{font-style:normal;}.yui-navset{position:relative;zoom:1;}.yui-navset .yui-content{zoom:1;}.yui-navset .yui-nav li,.yui-navset .yui-navset-top .yui-nav li,.yui-navset .yui-navset-bottom .yui-nav li{display:inline-block;display:-moz-inline-stack;*display:inline;vertical-align:bottom;cursor:pointer;zoom:1;}.yui-navset-left .yui-nav li,.yui-navset-right .yui-nav li{display:block;}.yui-navset .yui-nav a{position:relative;}.yui-navset .yui-nav li a,.yui-navset-top .yui-nav li a,.yui-navset-bottom .yui-nav li a{display:block;display:inline-block;vertical-align:bottom;zoom:1;}.yui-navset-left .yui-nav li a,.yui-navset-right .yui-nav li a{display:block;}.yui-navset-bottom .yui-nav li a{vertical-align:text-top;}.yui-navset .yui-nav li a em,.yui-navset-top .yui-nav li a em,.yui-navset-bottom .yui-nav li a em{display:block;}.yui-navset .yui-navset-left .yui-nav,.yui-navset .yui-navset-right .yui-nav,.yui-navset-left .yui-nav,.yui-navset-right .yui-nav{position:absolute;z-index:1;}.yui-navset-top .yui-nav,.yui-navset-bottom .yui-nav{position:static;}.yui-navset .yui-navset-left .yui-nav,.yui-navset-left .yui-nav{left:0;right:auto;}.yui-navset .yui-navset-right .yui-nav,.yui-navset-right .yui-nav{right:0;left:auto;}.yui-skin-sam .yui-navset .yui-nav,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav{border:solid #2647a0;border-width:0 0 5px;Xposition:relative;zoom:1;}.yui-skin-sam .yui-navset .yui-nav li,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav li{margin:0 0.16em 0 0;padding:1px 0 0;zoom:1;}.yui-skin-sam .yui-navset .yui-nav .selected,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav .selected{margin:0 0.16em -1px 0;}.yui-skin-sam .yui-navset .yui-nav a,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav a{background:#d8d8d8 url(sprite.png) repeat-x;border:solid #a3a3a3;border-width:0 1px;color:#000;position:relative;text-decoration:none;}.yui-skin-sam .yui-navset .yui-nav a em,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav a em{border:solid #a3a3a3;border-width:1px 0 0;cursor:hand;padding:0.25em .75em;left:0;right:0;bottom:0;top:-1px;position:relative;}.yui-skin-sam .yui-navset .yui-nav .selected a,.yui-skin-sam .yui-navset .yui-nav .selected a:focus,.yui-skin-sam .yui-navset .yui-nav .selected a:hover{background:#2647a0 url(sprite.png) repeat-x left -1400px;color:#fff;}.yui-skin-sam .yui-navset .yui-nav a:hover,.yui-skin-sam .yui-navset .yui-nav a:focus{background:#bfdaff url(sprite.png) repeat-x left -1300px;outline:0;}.yui-skin-sam .yui-navset .yui-nav .selected a em{padding:0.35em 0.75em;}.yui-skin-sam .yui-navset .yui-nav .selected a,.yui-skin-sam .yui-navset .yui-nav .selected a em{border-color:#243356;}.yui-skin-sam .yui-navset .yui-content{background:#edf5ff;}.yui-skin-sam .yui-navset .yui-content,.yui-skin-sam .yui-navset .yui-navset-top .yui-content{border:1px solid #808080;border-top-color:#243356;padding:0.25em 0.5em;}.yui-skin-sam .yui-navset-left .yui-nav,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav,.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav{border-width:0 5px 0 0;Xposition:absolute;top:0;bottom:0;}.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav{border-width:0 0 0 5px;}.yui-skin-sam .yui-navset-left .yui-nav li,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav li,.yui-skin-sam .yui-navset-right .yui-nav li{margin:0 0 0.16em;padding:0 0 0 1px;}.yui-skin-sam .yui-navset-right .yui-nav li{padding:0 1px 0 0;}.yui-skin-sam .yui-navset-left .yui-nav .selected,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav .selected{margin:0 -1px 0.16em 0;}.yui-skin-sam .yui-navset-right .yui-nav .selected{margin:0 0 0.16em -1px;}.yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav a{border-width:1px 0;}.yui-skin-sam .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset-right .yui-nav a em{border-width:0 0 0 1px;padding:0.2em .75em;top:auto;left:-1px;}.yui-skin-sam .yui-navset-right .yui-nav a em{border-width:0 1px 0 0;left:auto;right:-1px;}.yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-left .yui-nav .selected a,.yui-skin-sam .yui-navset-left .yui-nav a:hover,.yui-skin-sam .yui-navset-right .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav .selected a,.yui-skin-sam .yui-navset-right .yui-nav a:hover,.yui-skin-sam .yui-navset-bottom .yui-nav a,.yui-skin-sam .yui-navset-bottom .yui-nav .selected a,.yui-skin-sam .yui-navset-bottom .yui-nav a:hover{background-image:none;}.yui-skin-sam .yui-navset-left .yui-content{border:1px solid #808080;border-left-color:#243356;}.yui-skin-sam .yui-navset-bottom .yui-nav,.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav{border-width:5px 0 0;}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav .selected,.yui-skin-sam .yui-navset-bottom .yui-nav .selected{margin:-1px 0.16em 0 0;}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li,.yui-skin-sam .yui-navset-bottom .yui-nav li{padding:0 0 1px 0;vertical-align:top;}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li a,.yui-skin-sam .yui-navset-bottom .yui-nav li a{}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav a em,.yui-skin-sam .yui-navset-bottom .yui-nav a em{border-width:0 0 1px;top:auto;bottom:-1px;}.yui-skin-sam .yui-navset-bottom .yui-content,.yui-skin-sam .yui-navset .yui-navset-bottom .yui-content{border:1px solid #808080;border-bottom-color:#243356;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/treeview-loading.gif b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/treeview-loading.gif
deleted file mode 100644
index 0bbf3bc..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/treeview-loading.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/treeview-sprite.gif b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/treeview-sprite.gif
deleted file mode 100644
index 8fb3f01..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/treeview-sprite.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/treeview.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/treeview.css
deleted file mode 100644
index 5798ff7..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/treeview.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.ygtvitem{}.ygtvitem table{margin-bottom:0;border:none;}.ygtvrow td{border:none;padding:0;}.ygtvrow td a{text-decoration:none;}.ygtvtn{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -5600px no-repeat;}.ygtvtm{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -4000px no-repeat;}.ygtvtmh,.ygtvtmhh{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -4800px no-repeat;}.ygtvtp{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -6400px no-repeat;}.ygtvtph,.ygtvtphh{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -7200px no-repeat;}.ygtvln{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -1600px no-repeat;}.ygtvlm{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 0px no-repeat;}.ygtvlmh,.ygtvlmhh{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -800px no-repeat;}.ygtvlp{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -2400px no-repeat;}.ygtvlph,.ygtvlphh{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -3200px no-repeat;}.ygtvloading{width:18px;height:22px;background:url(treeview-loading.gif) 0 0 no-repeat;}.ygtvdepthcell{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -8000px no-repeat;}.ygtvblankdepthcell{width:18px;height:22px;}.ygtvchildren{}* html .ygtvchildren{height:2%;}.ygtvlabel,.ygtvlabel:link,.ygtvlabel:visited,.ygtvlabel:hover{margin-left:2px;text-decoration:none;background-color:white;cursor:pointer;}.ygtvcontent{cursor:default;}.ygtvspacer{height:22px;width:12px;}.ygtvfocus{background-color:#c0e0e0;border:none;}.ygtvfocus .ygtvlabel,.ygtvfocus .ygtvlabel:link,.ygtvfocus .ygtvlabel:visited,.ygtvfocus .ygtvlabel:hover{background-color:#c0e0e0;}.ygtvfocus a,.ygtvrow td a{outline-style:none;}.ygtvok{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -8800px no-repeat;}.ygtvok:hover{background:url(treeview-sprite.gif) 0 -8844px no-repeat;}.ygtvcancel{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -8822px no-repeat;}.ygtvcancel:hover{background:url(treeview-sprite.gif) 0 -8866px no-repeat;}.ygtv-label-editor{background-color:#f2f2f2;border:1px solid silver;position:absolute;display:none;overflow:hidden;margin:auto;z-index:9000;}.ygtv-edit-TextNode{width:190px;}.ygtv-edit-TextNode .ygtvcancel,.ygtv-edit-TextNode .ygtvok{border:none;}.ygtv-edit-TextNode .ygtv-button-container{float:right;}.ygtv-edit-TextNode .ygtv-input input{width:140px;}.ygtv-edit-DateNode .ygtvcancel{border:none;}.ygtv-edit-DateNode .ygtvok{display:none;}.ygtv-edit-DateNode .ygtv-button-container{text-align:right;margin:auto;}
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/wait.gif b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/wait.gif
deleted file mode 100644
index 471c1a4..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/wait.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/yuitest.css b/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/yuitest.css
deleted file mode 100644
index 85d776e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/assets/skins/sam/yuitest.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-
diff --git a/eclipse.org-common/yui/2.6.0/build/autocomplete/README b/eclipse.org-common/yui/2.6.0/build/autocomplete/README
deleted file mode 100644
index e56bf80..0000000
--- a/eclipse.org-common/yui/2.6.0/build/autocomplete/README
+++ /dev/null
@@ -1,212 +0,0 @@
-AutoComplete Release Notes
-
-*** version 2.6.0 ***
-
-* AutoComplete has a new required dependency on YAHOO.util.DataSource,
-and the class YAHOO.widget.DataSource has been deprecated. As a result,
-the following YAHOO.widget.DataSource properties have been ported to YAHOO.widget.AutoComplete:
-   - queryMatchCase
-   - queryMatchContains
-   - queryMatchSubset
-
-* The following YAHOO.widget.DS_XHR properties have been deprecated in favor of
-the new customizeable YAHOO.widget.AutoComplete method generateRequest:
-   - scriptQueryParam
-   - scriptQueryAppend
-
-* The YAHOO.widget.DS_XHR property responseStripAfter has been deprecated in favor
-of the new customizeable YAHOO.util.DataSource method doBeforeParseData.
-
-* Now always fires either dataReturnEvent or dataErrorEvent upon a DataSource
-response, whether container opens or not due to instance losing focus. 
-
-* Added textboxChangeEvent and containerPopulateEvent Custom Events.
-
-* As a convenience, the formatResult() method now receives a third parameter which
-is the query matching string for the result.
-
-* In order to eliminate certain race conditions with the typeAhead feature, added
-typeAheadDelay of default 0.5.
-
-* Added new method filterResults() for an easily customizeable local string-
-matching algorithm.
-
-* The dataRequestEvent now passes along the request as well as the query string.
- 
-* The style list-style:none has been set in the default CSS.
-
-
-*** version 2.5.2 ***
-
-* Empty responses of TYPE_FLAT no longer open empty container.
-
-* Mac FF no longer submits form on enter-to-select suggestion.
-
-
-
-*** version 2.5.1 ***
-
-* No changes.
-
-
-
-*** version 2.5.0 ***
-
-* Fixed bug where Mac users were not able to input "&" or "(" characters.
-
-
-
-*** version 2.4.0 ***
-
-* Support for YUI JSON Utility.
-
-* The allowBrowserAutocomplete property now supports cases when the user navigates
-away from page via mean other than a form submission.
-
-* Added support for integration with the Get Utility, for proxyless data
-retrieval from dynamically loaded script nodes.
-
-* Typing 'Enter' to select item no longer causes automatic form submission on
-Mac browsers.
-
-
-
-*** version 2.3.1 ***
-
-* AutoComplete no longer throw a JavaScript error due to an invalid or
-non-existent parent container. While a wrapper DIV element is still expected in
-order to enable skinning (see 2.3.0 release note), a lack of such will not
-cause an error.
-
-* When suggestion container is collapsed, Mac users no longer need to type
-Enter twice to submit input.
-
-
-
-*** version 2.3.0 ***
-
-* Applied new skinning model. Please note that in order to enable skinning,
-AutoComplete now expects a wrapper DIV element around the INPUT element and the
-container DIV element, in this fashion:
-
-<div id="myAutoComplete">
-    <input type="text" id="myInput">
-    <div id="myContainer"></div>
-</div>
-
-* The default queryDelay value has been changed to 0.2. In low-latency
-implementations (e.g., when queryDelay is set to 0 against a local
-JavaScript DataSource), typeAhead functionality may experience a race condition
-when retrieving the value of the textbox. To avoid this problem, implementers
-are advised not to set the queryDelay value too low.
-
-* Fixed runtime property value validation.
-
-* Implemented new method doBeforeSendQuery().
-
-* Implemented new method destroy().
-
-* Added support for latest JSON lib http://www.json.org/json.js.
-
-* Fixed forceSelection issues with matched selections and multiple selections.
-
-* No longer create var oAnim in global scope.
-
-* The properties alwaysShowContainer and useShadow should not be enabled together.
-
-* There is a known issue in Firefox where the native browser autocomplete
-attribute cannot be disabled programmatically on input boxes that are in use.
-
-
-
-
-
-**** version 2.2.2 ***
-
-* No changes.
-
-
-
-*** version 2.2.1 ***
-
-* Fixed form submission in Safari bug.
-* Fixed broken DS_JSArray support for minQueryLength=0.
-* Improved type checking with YAHOO.lang.
-
-
-
-*** version 2.2.0 ***
-
-* No changes.
-
-
-
-*** version 0.12.2 ***
-
-* No changes.
-
-
-
-*** version 0.12.1 ***
-
-* No longer trigger typeAhead feature when user is backspacing on input text.
-
-
-
-*** version 0.12.0 ***
-
-* The following constants must be defined as static class properties and are no longer
-available as instance properties:
-
-YAHOO.widget.DataSource.ERROR_DATANULL
-YAHOO.widget.DataSource.ERROR_DATAPARSE
-YAHOO.widget.DS_XHR.TYPE_JSON
-YAHOO.widget.DS_XHR.TYPE_XML
-YAHOO.widget.DS_XHR.TYPE_FLAT
-YAHOO.widget.DS_XHR.ERROR_DATAXHR
-
-* The property minQueryLength now supports zero and negative number values for
-DS_JSFunction and DS_XHR objects, to enable null or empty string queries and to disable
-AutoComplete functionality altogether, respectively.
-
-* Enabling the alwaysShowContainer feature will no longer send containerExpandEvent or
-containerCollapseEvent.
-
-
-
-**** version 0.11.3 ***
-
-* The iFrameSrc property has been deprecated. Implementers no longer need to
-specify an https URL to avoid IE security warnings when working with sites over
-SSL.
-
-
-
-*** version 0.11.0 ***
-
-* The method getListIds() has been deprecated for getListItems(), which returns
-an array of DOM references.
-
-* All classnames have been prefixed with "yui-ac-".
-
-* Container elements should no longer have CSS property "display" set to "none".
-
-* The useIFrame property can now be set after instantiation.
-
-* On some browsers, the unmatchedItemSelectEvent may not be fired properly when
-delimiter characters are defined.
-
-* On some browsers, defining delimiter characters while enabling forceSelection
-may result in unexpected behavior.
-
-
-
-*** version 0.10.0 ***
-
-* Initial release
-
-* In order to enable the useIFrame property, it should be set in the
-constructor.
-
-* On some browsers, defining delimiter characters while enabling forceSelection
-may result in unexpected behavior.
diff --git a/eclipse.org-common/yui/2.6.0/build/autocomplete/assets/autocomplete-core.css b/eclipse.org-common/yui/2.6.0/build/autocomplete/assets/autocomplete-core.css
deleted file mode 100644
index 5ebab9a..0000000
--- a/eclipse.org-common/yui/2.6.0/build/autocomplete/assets/autocomplete-core.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* This file intentionally left blank */

diff --git a/eclipse.org-common/yui/2.6.0/build/autocomplete/assets/skins/sam/autocomplete-skin.css b/eclipse.org-common/yui/2.6.0/build/autocomplete/assets/skins/sam/autocomplete-skin.css
deleted file mode 100644
index c559bff..0000000
--- a/eclipse.org-common/yui/2.6.0/build/autocomplete/assets/skins/sam/autocomplete-skin.css
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* styles for entire widget */

-.yui-skin-sam .yui-ac {

-    position:relative;font-family:arial;font-size:100%;

-}

-

-/* styles for input field */

-.yui-skin-sam .yui-ac-input {

-    position:absolute;width:100%;

-}

-

-/* styles for results container */

-.yui-skin-sam .yui-ac-container {

-    position:absolute;top:1.6em;width:100%;

-}

-

-/* styles for header/body/footer wrapper within container */

-.yui-skin-sam .yui-ac-content {

-    position:absolute;width:100%;border:1px solid #808080;background:#fff;overflow:hidden;z-index:9050;

-}

-

-/* styles for container shadow */

-.yui-skin-sam .yui-ac-shadow {

-    position:absolute;margin:.3em;width:100%;background:#000;-moz-opacity: 0.10;opacity:.10;filter:alpha(opacity=10);z-index:9049;

-}

-

-/* styles for container iframe */

-.yui-skin-sam .yui-ac iframe {

-    opacity:0;filter: alpha(opacity=0);

-    padding-right:.3em; padding-bottom:.3em; /* Bug 2026798: extend iframe to shim the shadow */

-}

-

-/* styles for results list */

-.yui-skin-sam .yui-ac-content ul{

-    margin:0;padding:0;width:100%;

-}

-

-/* styles for result item */

-.yui-skin-sam .yui-ac-content li {

-    margin:0;padding:2px 5px;cursor:default;white-space:nowrap;list-style:none;

-    zoom:1; /* For IE to trigger mouse events on LI */

-}

-

-/* styles for prehighlighted result item */

-.yui-skin-sam .yui-ac-content li.yui-ac-prehighlight {

-    background:#B3D4FF;

-}

-

-/* styles for highlighted result item */

-.yui-skin-sam .yui-ac-content li.yui-ac-highlight {

-    background:#426FD9;color:#FFF;

-}

diff --git a/eclipse.org-common/yui/2.6.0/build/autocomplete/assets/skins/sam/autocomplete.css b/eclipse.org-common/yui/2.6.0/build/autocomplete/assets/skins/sam/autocomplete.css
deleted file mode 100644
index 82cf7e5..0000000
--- a/eclipse.org-common/yui/2.6.0/build/autocomplete/assets/skins/sam/autocomplete.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-ac{position:relative;font-family:arial;font-size:100%;}.yui-skin-sam .yui-ac-input{position:absolute;width:100%;}.yui-skin-sam .yui-ac-container{position:absolute;top:1.6em;width:100%;}.yui-skin-sam .yui-ac-content{position:absolute;width:100%;border:1px solid #808080;background:#fff;overflow:hidden;z-index:9050;}.yui-skin-sam .yui-ac-shadow{position:absolute;margin:.3em;width:100%;background:#000;-moz-opacity:0.10;opacity:.10;filter:alpha(opacity=10);z-index:9049;}.yui-skin-sam .yui-ac iframe{opacity:0;filter:alpha(opacity=0);padding-right:.3em;padding-bottom:.3em;}.yui-skin-sam .yui-ac-content ul{margin:0;padding:0;width:100%;}.yui-skin-sam .yui-ac-content li{margin:0;padding:2px 5px;cursor:default;white-space:nowrap;list-style:none;zoom:1;}.yui-skin-sam .yui-ac-content li.yui-ac-prehighlight{background:#B3D4FF;}.yui-skin-sam .yui-ac-content li.yui-ac-highlight{background:#426FD9;color:#FFF;}
diff --git a/eclipse.org-common/yui/2.6.0/build/autocomplete/autocomplete-debug.js b/eclipse.org-common/yui/2.6.0/build/autocomplete/autocomplete-debug.js
deleted file mode 100644
index 56e2ace..0000000
--- a/eclipse.org-common/yui/2.6.0/build/autocomplete/autocomplete-debug.js
+++ /dev/null
@@ -1,2917 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/////////////////////////////////////////////////////////////////////////////
-//
-// YAHOO.widget.DataSource Backwards Compatibility
-//
-/////////////////////////////////////////////////////////////////////////////
-
-YAHOO.widget.DS_JSArray = YAHOO.util.LocalDataSource;
-
-YAHOO.widget.DS_JSFunction = YAHOO.util.FunctionDataSource;
-
-YAHOO.widget.DS_XHR = function(sScriptURI, aSchema, oConfigs) {
-    var DS = new YAHOO.util.XHRDataSource(sScriptURI, oConfigs);
-    DS._aDeprecatedSchema = aSchema;
-    return DS;
-};
-
-YAHOO.widget.DS_ScriptNode = function(sScriptURI, aSchema, oConfigs) {
-    var DS = new YAHOO.util.ScriptNodeDataSource(sScriptURI, oConfigs);
-    DS._aDeprecatedSchema = aSchema;
-    return DS;
-};
-
-YAHOO.widget.DS_XHR.TYPE_JSON = YAHOO.util.DataSourceBase.TYPE_JSON;
-YAHOO.widget.DS_XHR.TYPE_XML = YAHOO.util.DataSourceBase.TYPE_XML;
-YAHOO.widget.DS_XHR.TYPE_FLAT = YAHOO.util.DataSourceBase.TYPE_TEXT;
-
-// TODO: widget.DS_ScriptNode.scriptCallbackParam
-
-
-
- /**
- * The AutoComplete control provides the front-end logic for text-entry suggestion and
- * completion functionality.
- *
- * @module autocomplete
- * @requires yahoo, dom, event, datasource
- * @optional animation
- * @namespace YAHOO.widget
- * @title AutoComplete Widget
- */
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The AutoComplete class provides the customizable functionality of a plug-and-play DHTML
- * auto completion widget.  Some key features:
- * <ul>
- * <li>Navigate with up/down arrow keys and/or mouse to pick a selection</li>
- * <li>The drop down container can "roll down" or "fly out" via configurable
- * animation</li>
- * <li>UI look-and-feel customizable through CSS, including container
- * attributes, borders, position, fonts, etc</li>
- * </ul>
- *
- * @class AutoComplete
- * @constructor
- * @param elInput {HTMLElement} DOM element reference of an input field.
- * @param elInput {String} String ID of an input field.
- * @param elContainer {HTMLElement} DOM element reference of an existing DIV.
- * @param elContainer {String} String ID of an existing DIV.
- * @param oDataSource {YAHOO.widget.DataSource} DataSource instance.
- * @param oConfigs {Object} (optional) Object literal of configuration params.
- */
-YAHOO.widget.AutoComplete = function(elInput,elContainer,oDataSource,oConfigs) {
-    if(elInput && elContainer && oDataSource) {
-        // Validate DataSource
-        if(oDataSource instanceof YAHOO.util.DataSourceBase) {
-            this.dataSource = oDataSource;
-        }
-        else {
-            YAHOO.log("Could not instantiate AutoComplete due to an invalid DataSource", "error", this.toString());
-            return;
-        }
-
-        // YAHOO.widget.DataSource schema backwards compatibility
-        // Converted deprecated schema into supported schema
-        // First assume key data is held in position 0 of results array
-        this.key = 0;
-        var schema = oDataSource.responseSchema;
-        // An old school schema has been defined in the deprecated DataSource constructor
-        if(oDataSource._aDeprecatedSchema) {
-            var aDeprecatedSchema = oDataSource._aDeprecatedSchema;
-            if(YAHOO.lang.isArray(aDeprecatedSchema)) {
-                
-                if((oDataSource.responseType === YAHOO.util.DataSourceBase.TYPE_JSON) || 
-                (oDataSource.responseType === YAHOO.util.DataSourceBase.TYPE_UNKNOWN)) { // Used to default to unknown
-                    // Store the resultsList
-                    schema.resultsList = aDeprecatedSchema[0];
-                    // Store the key
-                    this.key = aDeprecatedSchema[1];
-                    // Only resultsList and key are defined, so grab all the data
-                    schema.fields = (aDeprecatedSchema.length < 3) ? null : aDeprecatedSchema.slice(1);
-                }
-                else if(oDataSource.responseType === YAHOO.util.DataSourceBase.TYPE_XML) {
-                    schema.resultNode = aDeprecatedSchema[0];
-                    this.key = aDeprecatedSchema[1];
-                    schema.fields = aDeprecatedSchema.slice(1);
-                }                
-                else if(oDataSource.responseType === YAHOO.util.DataSourceBase.TYPE_TEXT) {
-                    schema.recordDelim = aDeprecatedSchema[0];
-                    schema.fieldDelim = aDeprecatedSchema[1];
-                }                
-                oDataSource.responseSchema = schema;
-            }
-        }
-        
-        // Validate input element
-        if(YAHOO.util.Dom.inDocument(elInput)) {
-            if(YAHOO.lang.isString(elInput)) {
-                    this._sName = "instance" + YAHOO.widget.AutoComplete._nIndex + " " + elInput;
-                    this._elTextbox = document.getElementById(elInput);
-            }
-            else {
-                this._sName = (elInput.id) ?
-                    "instance" + YAHOO.widget.AutoComplete._nIndex + " " + elInput.id:
-                    "instance" + YAHOO.widget.AutoComplete._nIndex;
-                this._elTextbox = elInput;
-            }
-            YAHOO.util.Dom.addClass(this._elTextbox, "yui-ac-input");
-        }
-        else {
-            YAHOO.log("Could not instantiate AutoComplete due to an invalid input element", "error", this.toString());
-            return;
-        }
-
-        // Validate container element
-        if(YAHOO.util.Dom.inDocument(elContainer)) {
-            if(YAHOO.lang.isString(elContainer)) {
-                    this._elContainer = document.getElementById(elContainer);
-            }
-            else {
-                this._elContainer = elContainer;
-            }
-            if(this._elContainer.style.display == "none") {
-                YAHOO.log("The container may not display properly if display is set to \"none\" in CSS", "warn", this.toString());
-            }
-            
-            // For skinning
-            var elParent = this._elContainer.parentNode;
-            var elTag = elParent.tagName.toLowerCase();
-            if(elTag == "div") {
-                YAHOO.util.Dom.addClass(elParent, "yui-ac");
-            }
-            else {
-                YAHOO.log("Could not find the wrapper element for skinning", "warn", this.toString());
-            }
-        }
-        else {
-            YAHOO.log("Could not instantiate AutoComplete due to an invalid container element", "error", this.toString());
-            return;
-        }
-
-        // Default applyLocalFilter setting is to enable for local sources
-        if(this.dataSource.dataType === YAHOO.util.DataSourceBase.TYPE_LOCAL) {
-            this.applyLocalFilter = true;
-        }
-        
-        // Set any config params passed in to override defaults
-        if(oConfigs && (oConfigs.constructor == Object)) {
-            for(var sConfig in oConfigs) {
-                if(sConfig) {
-                    this[sConfig] = oConfigs[sConfig];
-                }
-            }
-        }
-
-        // Initialization sequence
-        this._initContainerEl();
-        this._initProps();
-        this._initListEl();
-        this._initContainerHelperEls();
-
-        // Set up events
-        var oSelf = this;
-        var elTextbox = this._elTextbox;
-
-        // Dom events
-        YAHOO.util.Event.addListener(elTextbox,"keyup",oSelf._onTextboxKeyUp,oSelf);
-        YAHOO.util.Event.addListener(elTextbox,"keydown",oSelf._onTextboxKeyDown,oSelf);
-        YAHOO.util.Event.addListener(elTextbox,"focus",oSelf._onTextboxFocus,oSelf);
-        YAHOO.util.Event.addListener(elTextbox,"blur",oSelf._onTextboxBlur,oSelf);
-        YAHOO.util.Event.addListener(elContainer,"mouseover",oSelf._onContainerMouseover,oSelf);
-        YAHOO.util.Event.addListener(elContainer,"mouseout",oSelf._onContainerMouseout,oSelf);
-        YAHOO.util.Event.addListener(elContainer,"click",oSelf._onContainerClick,oSelf);
-        YAHOO.util.Event.addListener(elContainer,"scroll",oSelf._onContainerScroll,oSelf);
-        YAHOO.util.Event.addListener(elContainer,"resize",oSelf._onContainerResize,oSelf);
-        YAHOO.util.Event.addListener(elTextbox,"keypress",oSelf._onTextboxKeyPress,oSelf);
-        YAHOO.util.Event.addListener(window,"unload",oSelf._onWindowUnload,oSelf);
-
-        // Custom events
-        this.textboxFocusEvent = new YAHOO.util.CustomEvent("textboxFocus", this);
-        this.textboxKeyEvent = new YAHOO.util.CustomEvent("textboxKey", this);
-        this.dataRequestEvent = new YAHOO.util.CustomEvent("dataRequest", this);
-        this.dataReturnEvent = new YAHOO.util.CustomEvent("dataReturn", this);
-        this.dataErrorEvent = new YAHOO.util.CustomEvent("dataError", this);
-        this.containerPopulateEvent = new YAHOO.util.CustomEvent("containerPopulate", this);
-        this.containerExpandEvent = new YAHOO.util.CustomEvent("containerExpand", this);
-        this.typeAheadEvent = new YAHOO.util.CustomEvent("typeAhead", this);
-        this.itemMouseOverEvent = new YAHOO.util.CustomEvent("itemMouseOver", this);
-        this.itemMouseOutEvent = new YAHOO.util.CustomEvent("itemMouseOut", this);
-        this.itemArrowToEvent = new YAHOO.util.CustomEvent("itemArrowTo", this);
-        this.itemArrowFromEvent = new YAHOO.util.CustomEvent("itemArrowFrom", this);
-        this.itemSelectEvent = new YAHOO.util.CustomEvent("itemSelect", this);
-        this.unmatchedItemSelectEvent = new YAHOO.util.CustomEvent("unmatchedItemSelect", this);
-        this.selectionEnforceEvent = new YAHOO.util.CustomEvent("selectionEnforce", this);
-        this.containerCollapseEvent = new YAHOO.util.CustomEvent("containerCollapse", this);
-        this.textboxBlurEvent = new YAHOO.util.CustomEvent("textboxBlur", this);
-        this.textboxChangeEvent = new YAHOO.util.CustomEvent("textboxChange", this);
-        
-        // Finish up
-        elTextbox.setAttribute("autocomplete","off");
-        YAHOO.widget.AutoComplete._nIndex++;
-        YAHOO.log("AutoComplete initialized","info",this.toString());
-    }
-    // Required arguments were not found
-    else {
-        YAHOO.log("Could not instantiate AutoComplete due invalid arguments", "error", this.toString());
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * The DataSource object that encapsulates the data used for auto completion.
- * This object should be an inherited object from YAHOO.widget.DataSource.
- *
- * @property dataSource
- * @type YAHOO.widget.DataSource
- */
-YAHOO.widget.AutoComplete.prototype.dataSource = null;
-
-/**
- * By default, results from local DataSources will pass through the filterResults
- * method to apply a client-side matching algorithm. 
- * 
- * @property applyLocalFilter
- * @type Boolean
- * @default true for local arrays and json, otherwise false
- */
-YAHOO.widget.AutoComplete.prototype.applyLocalFilter = null;
-
-/**
- * When applyLocalFilter is true, the local filtering algorthim can have case sensitivity
- * enabled. 
- * 
- * @property queryMatchCase
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.queryMatchCase = false;
-
-/**
- * When applyLocalFilter is true, results can  be locally filtered to return
- * matching strings that "contain" the query string rather than simply "start with"
- * the query string.
- * 
- * @property queryMatchContains
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.queryMatchContains = false;
-
-/**
- * Enables query subset matching. When the DataSource's cache is enabled and queryMatchSubset is
- * true, substrings of queries will return matching cached results. For
- * instance, if the first query is for "abc" susequent queries that start with
- * "abc", like "abcd", will be queried against the cache, and not the live data
- * source. Recommended only for DataSources that return comprehensive results
- * for queries with very few characters.
- *
- * @property queryMatchSubset
- * @type Boolean
- * @default false
- *
- */
-YAHOO.widget.AutoComplete.prototype.queryMatchSubset = false;
-
-/**
- * Number of characters that must be entered before querying for results. A negative value
- * effectively turns off the widget. A value of 0 allows queries of null or empty string
- * values.
- *
- * @property minQueryLength
- * @type Number
- * @default 1
- */
-YAHOO.widget.AutoComplete.prototype.minQueryLength = 1;
-
-/**
- * Maximum number of results to display in results container.
- *
- * @property maxResultsDisplayed
- * @type Number
- * @default 10
- */
-YAHOO.widget.AutoComplete.prototype.maxResultsDisplayed = 10;
-
-/**
- * Number of seconds to delay before submitting a query request.  If a query
- * request is received before a previous one has completed its delay, the
- * previous request is cancelled and the new request is set to the delay. If 
- * typeAhead is also enabled, this value must always be less than the typeAheadDelay
- * in order to avoid certain race conditions. 
- *
- * @property queryDelay
- * @type Number
- * @default 0.2
- */
-YAHOO.widget.AutoComplete.prototype.queryDelay = 0.2;
-
-/**
- * If typeAhead is true, number of seconds to delay before updating input with
- * typeAhead value. In order to prevent certain race conditions, this value must
- * always be greater than the queryDelay.
- *
- * @property typeAheadDelay
- * @type Number
- * @default 0.5
- */
-YAHOO.widget.AutoComplete.prototype.typeAheadDelay = 0.5;
-
-/**
- * When IME usage is detected, AutoComplete will switch to querying the input
- * value at the given interval rather than per key event.
- *
- * @property queryInterval
- * @type Number
- * @default 500
- */
-YAHOO.widget.AutoComplete.prototype.queryInterval = 500;
-
-/**
- * Class name of a highlighted item within results container.
- *
- * @property highlightClassName
- * @type String
- * @default "yui-ac-highlight"
- */
-YAHOO.widget.AutoComplete.prototype.highlightClassName = "yui-ac-highlight";
-
-/**
- * Class name of a pre-highlighted item within results container.
- *
- * @property prehighlightClassName
- * @type String
- */
-YAHOO.widget.AutoComplete.prototype.prehighlightClassName = null;
-
-/**
- * Query delimiter. A single character separator for multiple delimited
- * selections. Multiple delimiter characteres may be defined as an array of
- * strings. A null value or empty string indicates that query results cannot
- * be delimited. This feature is not recommended if you need forceSelection to
- * be true.
- *
- * @property delimChar
- * @type String | String[]
- */
-YAHOO.widget.AutoComplete.prototype.delimChar = null;
-
-/**
- * Whether or not the first item in results container should be automatically highlighted
- * on expand.
- *
- * @property autoHighlight
- * @type Boolean
- * @default true
- */
-YAHOO.widget.AutoComplete.prototype.autoHighlight = true;
-
-/**
- * If autohighlight is enabled, whether or not the input field should be automatically updated
- * with the first query result as the user types, auto-selecting the substring portion
- * of the first result that the user has not yet typed.
- *
- * @property typeAhead
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.typeAhead = false;
-
-/**
- * Whether or not to animate the expansion/collapse of the results container in the
- * horizontal direction.
- *
- * @property animHoriz
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.animHoriz = false;
-
-/**
- * Whether or not to animate the expansion/collapse of the results container in the
- * vertical direction.
- *
- * @property animVert
- * @type Boolean
- * @default true
- */
-YAHOO.widget.AutoComplete.prototype.animVert = true;
-
-/**
- * Speed of container expand/collapse animation, in seconds..
- *
- * @property animSpeed
- * @type Number
- * @default 0.3
- */
-YAHOO.widget.AutoComplete.prototype.animSpeed = 0.3;
-
-/**
- * Whether or not to force the user's selection to match one of the query
- * results. Enabling this feature essentially transforms the input field into a
- * &lt;select&gt; field. This feature is not recommended with delimiter character(s)
- * defined.
- *
- * @property forceSelection
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.forceSelection = false;
-
-/**
- * Whether or not to allow browsers to cache user-typed input in the input
- * field. Disabling this feature will prevent the widget from setting the
- * autocomplete="off" on the input field. When autocomplete="off"
- * and users click the back button after form submission, user-typed input can
- * be prefilled by the browser from its cache. This caching of user input may
- * not be desired for sensitive data, such as credit card numbers, in which
- * case, implementers should consider setting allowBrowserAutocomplete to false.
- *
- * @property allowBrowserAutocomplete
- * @type Boolean
- * @default true
- */
-YAHOO.widget.AutoComplete.prototype.allowBrowserAutocomplete = true;
-
-/**
- * Enabling this feature prevents the toggling of the container to a collapsed state.
- * Setting to true does not automatically trigger the opening of the container.
- * Implementers are advised to pre-load the container with an explicit "sendQuery()" call.   
- *
- * @property alwaysShowContainer
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.alwaysShowContainer = false;
-
-/**
- * Whether or not to use an iFrame to layer over Windows form elements in
- * IE. Set to true only when the results container will be on top of a
- * &lt;select&gt; field in IE and thus exposed to the IE z-index bug (i.e.,
- * 5.5 < IE < 7).
- *
- * @property useIFrame
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.useIFrame = false;
-
-/**
- * Whether or not the results container should have a shadow.
- *
- * @property useShadow
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.useShadow = false;
-
-/**
- * Whether or not the input field should be updated with selections.
- *
- * @property supressInputUpdate
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.suppressInputUpdate = false;
-
-/**
- * For backward compatibility to pre-2.6.0 formatResults() signatures, setting
- * resultsTypeList to true will take each object literal result returned by
- * DataSource and flatten into an array.  
- *
- * @property resultTypeList
- * @type Boolean
- * @default true
- */
-YAHOO.widget.AutoComplete.prototype.resultTypeList = true;
-
-/**
- * For XHR DataSources, AutoComplete will automatically insert a "?" between the server URI and 
- * the "query" param/value pair. To prevent this behavior, implementers should
- * set this value to false. To more fully customize the query syntax, implementers
- * should override the generateRequest() method. 
- *
- * @property queryQuestionMark
- * @type Boolean
- * @default true
- */
-YAHOO.widget.AutoComplete.prototype.queryQuestionMark = true;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
- /**
- * Public accessor to the unique name of the AutoComplete instance.
- *
- * @method toString
- * @return {String} Unique name of the AutoComplete instance.
- */
-YAHOO.widget.AutoComplete.prototype.toString = function() {
-    return "AutoComplete " + this._sName;
-};
-
- /**
- * Returns DOM reference to input element.
- *
- * @method getInputEl
- * @return {HTMLELement} DOM reference to input element.
- */
-YAHOO.widget.AutoComplete.prototype.getInputEl = function() {
-    return this._elTextbox;
-};
-
- /**
- * Returns DOM reference to container element.
- *
- * @method getContainerEl
- * @return {HTMLELement} DOM reference to container element.
- */
-YAHOO.widget.AutoComplete.prototype.getContainerEl = function() {
-    return this._elContainer;
-};
-
- /**
- * Returns true if widget instance is currently focused.
- *
- * @method isFocused
- * @return {Boolean} Returns true if widget instance is currently focused.
- */
-YAHOO.widget.AutoComplete.prototype.isFocused = function() {
-    return (this._bFocused === null) ? false : this._bFocused;
-};
-
- /**
- * Returns true if container is in an expanded state, false otherwise.
- *
- * @method isContainerOpen
- * @return {Boolean} Returns true if container is in an expanded state, false otherwise.
- */
-YAHOO.widget.AutoComplete.prototype.isContainerOpen = function() {
-    return this._bContainerOpen;
-};
-
-/**
- * Public accessor to the &lt;ul&gt; element that displays query results within the results container.
- *
- * @method getListEl
- * @return {HTMLElement[]} Reference to &lt;ul&gt; element within the results container.
- */
-YAHOO.widget.AutoComplete.prototype.getListEl = function() {
-    return this._elList;
-};
-
-/**
- * Public accessor to the matching string associated with a given &lt;li&gt; result.
- *
- * @method getListItemMatch
- * @param elListItem {HTMLElement} Reference to &lt;LI&gt; element.
- * @return {String} Matching string.
- */
-YAHOO.widget.AutoComplete.prototype.getListItemMatch = function(elListItem) {
-    if(elListItem._sResultMatch) {
-        return elListItem._sResultMatch;
-    }
-    else {
-        return null;
-    }
-};
-
-/**
- * Public accessor to the result data associated with a given &lt;li&gt; result.
- *
- * @method getListItemData
- * @param elListItem {HTMLElement} Reference to &lt;LI&gt; element.
- * @return {Object} Result data.
- */
-YAHOO.widget.AutoComplete.prototype.getListItemData = function(elListItem) {
-    if(elListItem._oResultData) {
-        return elListItem._oResultData;
-    }
-    else {
-        return null;
-    }
-};
-
-/**
- * Public accessor to the index of the associated with a given &lt;li&gt; result.
- *
- * @method getListItemIndex
- * @param elListItem {HTMLElement} Reference to &lt;LI&gt; element.
- * @return {Number} Index.
- */
-YAHOO.widget.AutoComplete.prototype.getListItemIndex = function(elListItem) {
-    if(YAHOO.lang.isNumber(elListItem._nItemIndex)) {
-        return elListItem._nItemIndex;
-    }
-    else {
-        return null;
-    }
-};
-
-/**
- * Sets HTML markup for the results container header. This markup will be
- * inserted within a &lt;div&gt; tag with a class of "yui-ac-hd".
- *
- * @method setHeader
- * @param sHeader {String} HTML markup for results container header.
- */
-YAHOO.widget.AutoComplete.prototype.setHeader = function(sHeader) {
-    if(this._elHeader) {
-        var elHeader = this._elHeader;
-        if(sHeader) {
-            elHeader.innerHTML = sHeader;
-            elHeader.style.display = "block";
-        }
-        else {
-            elHeader.innerHTML = "";
-            elHeader.style.display = "none";
-        }
-    }
-};
-
-/**
- * Sets HTML markup for the results container footer. This markup will be
- * inserted within a &lt;div&gt; tag with a class of "yui-ac-ft".
- *
- * @method setFooter
- * @param sFooter {String} HTML markup for results container footer.
- */
-YAHOO.widget.AutoComplete.prototype.setFooter = function(sFooter) {
-    if(this._elFooter) {
-        var elFooter = this._elFooter;
-        if(sFooter) {
-                elFooter.innerHTML = sFooter;
-                elFooter.style.display = "block";
-        }
-        else {
-            elFooter.innerHTML = "";
-            elFooter.style.display = "none";
-        }
-    }
-};
-
-/**
- * Sets HTML markup for the results container body. This markup will be
- * inserted within a &lt;div&gt; tag with a class of "yui-ac-bd".
- *
- * @method setBody
- * @param sBody {String} HTML markup for results container body.
- */
-YAHOO.widget.AutoComplete.prototype.setBody = function(sBody) {
-    if(this._elBody) {
-        var elBody = this._elBody;
-        YAHOO.util.Event.purgeElement(elBody, true);
-        if(sBody) {
-            elBody.innerHTML = sBody;
-            elBody.style.display = "block";
-        }
-        else {
-            elBody.innerHTML = "";
-            elBody.style.display = "none";
-        }
-        this._elList = null;
-    }
-};
-
-/**
-* A function that converts an AutoComplete query into a request value which is then
-* passed to the DataSource's sendRequest method in order to retrieve data for 
-* the query. By default, returns a String with the syntax: "query={query}"
-* Implementers can customize this method for custom request syntaxes.
-* 
-* @method generateRequest
-* @param sQuery {String} Query string
-*/
-YAHOO.widget.AutoComplete.prototype.generateRequest = function(sQuery) {
-    var dataType = this.dataSource.dataType;
-    
-    // Transform query string in to a request for remote data
-    // By default, local data doesn't need a transformation, just passes along the query as is.
-    if(dataType === YAHOO.util.DataSourceBase.TYPE_XHR) {
-        // By default, XHR GET requests look like "{scriptURI}?{scriptQueryParam}={sQuery}&{scriptQueryAppend}"
-        if(!this.dataSource.connMethodPost) {
-            sQuery = (this.queryQuestionMark ? "?" : "") + (this.dataSource.scriptQueryParam || "query") + "=" + sQuery + 
-                (this.dataSource.scriptQueryAppend ? ("&" + this.dataSource.scriptQueryAppend) : "");        
-        }
-        // By default, XHR POST bodies are sent to the {scriptURI} like "{scriptQueryParam}={sQuery}&{scriptQueryAppend}"
-        else {
-            sQuery = (this.dataSource.scriptQueryParam || "query") + "=" + sQuery + 
-                (this.dataSource.scriptQueryAppend ? ("&" + this.dataSource.scriptQueryAppend) : "");
-        }
-    }
-    // By default, remote script node requests look like "{scriptURI}&{scriptCallbackParam}={callbackString}&{scriptQueryParam}={sQuery}&{scriptQueryAppend}"
-    else if(dataType === YAHOO.util.DataSourceBase.TYPE_SCRIPTNODE) {
-        sQuery = "&" + (this.dataSource.scriptQueryParam || "query") + "=" + sQuery + 
-            (this.dataSource.scriptQueryAppend ? ("&" + this.dataSource.scriptQueryAppend) : "");    
-    }
-    
-    return sQuery;
-};
-
-/**
- * Makes query request to the DataSource.
- *
- * @method sendQuery
- * @param sQuery {String} Query string.
- */
-YAHOO.widget.AutoComplete.prototype.sendQuery = function(sQuery) {
-    // Adjust programatically sent queries to look like they input by user
-    // when delimiters are enabled
-    var newQuery = (this.delimChar) ? this._elTextbox.value + sQuery : sQuery;
-    this._sendQuery(newQuery);
-};
-
-/**
- * Collapses container.
- *
- * @method collapseContainer
- */
-YAHOO.widget.AutoComplete.prototype.collapseContainer = function() {
-    this._toggleContainer(false);
-};
-
-/**
- * Handles subset matching for when queryMatchSubset is enabled.
- *
- * @method getSubsetMatches
- * @param sQuery {String} Query string.
- * @return {Object} oParsedResponse or null. 
- */
-YAHOO.widget.AutoComplete.prototype.getSubsetMatches = function(sQuery) {
-    var subQuery, oCachedResponse, subRequest;
-    // Loop through substrings of each cached element's query property...
-    for(var i = sQuery.length; i >= this.minQueryLength ; i--) {
-        subRequest = this.generateRequest(sQuery.substr(0,i));
-        this.dataRequestEvent.fire(this, subQuery, subRequest);
-        YAHOO.log("Searching for query subset \"" + subQuery + "\" in cache", "info", this.toString());
-        
-        // If a substring of the query is found in the cache
-        oCachedResponse = this.dataSource.getCachedResponse(subRequest);
-        if(oCachedResponse) {
-            YAHOO.log("Found match for query subset \"" + subQuery + "\": " + YAHOO.lang.dump(oCachedResponse), "info", this.toString());
-            return this.filterResults.apply(this.dataSource, [sQuery, oCachedResponse, oCachedResponse, {scope:this}]);
-        }
-    }
-    YAHOO.log("Did not find subset match for query subset \"" + sQuery + "\"" , "info", this.toString());
-    return null;
-};
-
-/**
- * Executed by DataSource (within DataSource scope via doBeforeParseData()) to
- * handle responseStripAfter cleanup.
- *
- * @method preparseRawResponse
- * @param sQuery {String} Query string.
- * @return {Object} oParsedResponse or null. 
- */
-YAHOO.widget.AutoComplete.prototype.preparseRawResponse = function(oRequest, oFullResponse, oCallback) {
-    var nEnd = ((this.responseStripAfter !== "") && (oFullResponse.indexOf)) ?
-        oFullResponse.indexOf(this.responseStripAfter) : -1;
-    if(nEnd != -1) {
-        oFullResponse = oFullResponse.substring(0,nEnd);
-    }
-    return oFullResponse;
-};
-
-/**
- * Executed by DataSource (within DataSource scope via doBeforeCallback()) to
- * filter results through a simple client-side matching algorithm. 
- *
- * @method filterResults
- * @param sQuery {String} Original request.
- * @param oFullResponse {Object} Full response object.
- * @param oParsedResponse {Object} Parsed response object.
- * @param oCallback {Object} Callback object. 
- * @return {Object} Filtered response object.
- */
-
-YAHOO.widget.AutoComplete.prototype.filterResults = function(sQuery, oFullResponse, oParsedResponse, oCallback) {
-    // Only if a query string is available to match against
-    if(sQuery && sQuery !== "") {
-        // First make a copy of the oParseResponse
-        oParsedResponse = YAHOO.widget.AutoComplete._cloneObject(oParsedResponse);
-        
-        var oAC = oCallback.scope,
-            oDS = this,
-            allResults = oParsedResponse.results, // the array of results
-            filteredResults = [], // container for filtered results
-            bMatchFound = false,
-            bMatchCase = (oDS.queryMatchCase || oAC.queryMatchCase), // backward compat
-            bMatchContains = (oDS.queryMatchContains || oAC.queryMatchContains); // backward compat
-            
-        // Loop through each result object...
-        for(var i = allResults.length-1; i >= 0; i--) {
-            var oResult = allResults[i];
-
-            // Grab the data to match against from the result object...
-            var sResult = null;
-            
-            // Result object is a simple string already
-            if(YAHOO.lang.isString(oResult)) {
-                sResult = oResult;
-            }
-            // Result object is an array of strings
-            else if(YAHOO.lang.isArray(oResult)) {
-                sResult = oResult[0];
-            
-            }
-            // Result object is an object literal of strings
-            else if(this.responseSchema.fields) {
-                var key = this.responseSchema.fields[0].key || this.responseSchema.fields[0];
-                sResult = oResult[key];
-            }
-            // Backwards compatibility
-            else if(this.key) {
-                sResult = oResult[this.key];
-            }
-            
-            if(YAHOO.lang.isString(sResult)) {
-                
-                var sKeyIndex = (bMatchCase) ?
-                sResult.indexOf(decodeURIComponent(sQuery)) :
-                sResult.toLowerCase().indexOf(decodeURIComponent(sQuery).toLowerCase());
-
-                // A STARTSWITH match is when the query is found at the beginning of the key string...
-                if((!bMatchContains && (sKeyIndex === 0)) ||
-                // A CONTAINS match is when the query is found anywhere within the key string...
-                (bMatchContains && (sKeyIndex > -1))) {
-                    // Stash the match
-                    filteredResults.unshift(oResult);
-                }
-            }
-        }
-        oParsedResponse.results = filteredResults;
-        YAHOO.log("Filtered " + filteredResults.length + " results against query \""  + sQuery + "\": " + YAHOO.lang.dump(filteredResults), "info", this.toString());
-    }
-    else {
-        YAHOO.log("Did not filter results against query", "info", this.toString());
-    }
-    
-    return oParsedResponse;
-};
-
-/**
- * Handles response for display. This is the callback function method passed to
- * YAHOO.util.DataSourceBase#sendRequest so results from the DataSource are
- * returned to the AutoComplete instance.
- *
- * @method handleResponse
- * @param sQuery {String} Original request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} (optional) Additional argument(s)
- */
-YAHOO.widget.AutoComplete.prototype.handleResponse = function(sQuery, oResponse, oPayload) {
-    if((this instanceof YAHOO.widget.AutoComplete) && this._sName) {
-        this._populateList(sQuery, oResponse, oPayload);
-    }
-};
-
-/**
- * Overridable method called before container is loaded with result data.
- *
- * @method doBeforeLoadData
- * @param sQuery {String} Original request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} (optional) Additional argument(s)
- * @return {Boolean} Return true to continue loading data, false to cancel.
- */
-YAHOO.widget.AutoComplete.prototype.doBeforeLoadData = function(sQuery, oResponse, oPayload) {
-    return true;
-};
-
-/**
- * Overridable method that returns HTML markup for one result to be populated
- * as innerHTML of an &lt;LI&gt; element. 
- *
- * @method formatResult
- * @param oResultData {Object} Result data object.
- * @param sQuery {String} The corresponding query string.
- * @param sResultMatch {HTMLElement} The current query string. 
- * @return {String} HTML markup of formatted result data.
- */
-YAHOO.widget.AutoComplete.prototype.formatResult = function(oResultData, sQuery, sResultMatch) {
-    var sMarkup = (sResultMatch) ? sResultMatch : "";
-    return sMarkup;
-};
-
-/**
- * Overridable method called before container expands allows implementers to access data
- * and DOM elements.
- *
- * @method doBeforeExpandContainer
- * @param elTextbox {HTMLElement} The text input box.
- * @param elContainer {HTMLElement} The container element.
- * @param sQuery {String} The query string.
- * @param aResults {Object[]}  An array of query results.
- * @return {Boolean} Return true to continue expanding container, false to cancel the expand.
- */
-YAHOO.widget.AutoComplete.prototype.doBeforeExpandContainer = function(elTextbox, elContainer, sQuery, aResults) {
-    return true;
-};
-
-
-/**
- * Nulls out the entire AutoComplete instance and related objects, removes attached
- * event listeners, and clears out DOM elements inside the container. After
- * calling this method, the instance reference should be expliclitly nulled by
- * implementer, as in myDataTable = null. Use with caution!
- *
- * @method destroy
- */
-YAHOO.widget.AutoComplete.prototype.destroy = function() {
-    var instanceName = this.toString();
-    var elInput = this._elTextbox;
-    var elContainer = this._elContainer;
-
-    // Unhook custom events
-    this.textboxFocusEvent.unsubscribeAll();
-    this.textboxKeyEvent.unsubscribeAll();
-    this.dataRequestEvent.unsubscribeAll();
-    this.dataReturnEvent.unsubscribeAll();
-    this.dataErrorEvent.unsubscribeAll();
-    this.containerPopulateEvent.unsubscribeAll();
-    this.containerExpandEvent.unsubscribeAll();
-    this.typeAheadEvent.unsubscribeAll();
-    this.itemMouseOverEvent.unsubscribeAll();
-    this.itemMouseOutEvent.unsubscribeAll();
-    this.itemArrowToEvent.unsubscribeAll();
-    this.itemArrowFromEvent.unsubscribeAll();
-    this.itemSelectEvent.unsubscribeAll();
-    this.unmatchedItemSelectEvent.unsubscribeAll();
-    this.selectionEnforceEvent.unsubscribeAll();
-    this.containerCollapseEvent.unsubscribeAll();
-    this.textboxBlurEvent.unsubscribeAll();
-    this.textboxChangeEvent.unsubscribeAll();
-
-    // Unhook DOM events
-    YAHOO.util.Event.purgeElement(elInput, true);
-    YAHOO.util.Event.purgeElement(elContainer, true);
-
-    // Remove DOM elements
-    elContainer.innerHTML = "";
-
-    // Null out objects
-    for(var key in this) {
-        if(YAHOO.lang.hasOwnProperty(this, key)) {
-            this[key] = null;
-        }
-    }
-
-    YAHOO.log("AutoComplete instance destroyed: " + instanceName);
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public events
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Fired when the input field receives focus.
- *
- * @event textboxFocusEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- */
-YAHOO.widget.AutoComplete.prototype.textboxFocusEvent = null;
-
-/**
- * Fired when the input field receives key input.
- *
- * @event textboxKeyEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param nKeycode {Number} The keycode number.
- */
-YAHOO.widget.AutoComplete.prototype.textboxKeyEvent = null;
-
-/**
- * Fired when the AutoComplete instance makes a request to the DataSource.
- * 
- * @event dataRequestEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param sQuery {String} The query string. 
- * @param oRequest {Object} The request.
- */
-YAHOO.widget.AutoComplete.prototype.dataRequestEvent = null;
-
-/**
- * Fired when the AutoComplete instance receives query results from the data
- * source.
- *
- * @event dataReturnEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param sQuery {String} The query string.
- * @param aResults {Object[]} Results array.
- */
-YAHOO.widget.AutoComplete.prototype.dataReturnEvent = null;
-
-/**
- * Fired when the AutoComplete instance does not receive query results from the
- * DataSource due to an error.
- *
- * @event dataErrorEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param sQuery {String} The query string.
- */
-YAHOO.widget.AutoComplete.prototype.dataErrorEvent = null;
-
-/**
- * Fired when the results container is populated.
- *
- * @event containerPopulateEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- */
-YAHOO.widget.AutoComplete.prototype.containerPopulateEvent = null;
-
-/**
- * Fired when the results container is expanded.
- *
- * @event containerExpandEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param sQuery {String} The query string.
- * @param aResults {Object[]} Results array.
- */
-YAHOO.widget.AutoComplete.prototype.containerExpandEvent = null;
-
-/**
- * Fired when the input field has been prefilled by the type-ahead
- * feature. 
- *
- * @event typeAheadEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param sQuery {String} The query string.
- * @param sPrefill {String} The prefill string.
- */
-YAHOO.widget.AutoComplete.prototype.typeAheadEvent = null;
-
-/**
- * Fired when result item has been moused over.
- *
- * @event itemMouseOverEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param elItem {HTMLElement} The &lt;li&gt element item moused to.
- */
-YAHOO.widget.AutoComplete.prototype.itemMouseOverEvent = null;
-
-/**
- * Fired when result item has been moused out.
- *
- * @event itemMouseOutEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param elItem {HTMLElement} The &lt;li&gt; element item moused from.
- */
-YAHOO.widget.AutoComplete.prototype.itemMouseOutEvent = null;
-
-/**
- * Fired when result item has been arrowed to. 
- *
- * @event itemArrowToEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param elItem {HTMLElement} The &lt;li&gt; element item arrowed to.
- */
-YAHOO.widget.AutoComplete.prototype.itemArrowToEvent = null;
-
-/**
- * Fired when result item has been arrowed away from.
- *
- * @event itemArrowFromEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param elItem {HTMLElement} The &lt;li&gt; element item arrowed from.
- */
-YAHOO.widget.AutoComplete.prototype.itemArrowFromEvent = null;
-
-/**
- * Fired when an item is selected via mouse click, ENTER key, or TAB key.
- *
- * @event itemSelectEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param elItem {HTMLElement} The selected &lt;li&gt; element item.
- * @param oData {Object} The data returned for the item, either as an object,
- * or mapped from the schema into an array.
- */
-YAHOO.widget.AutoComplete.prototype.itemSelectEvent = null;
-
-/**
- * Fired when a user selection does not match any of the displayed result items.
- *
- * @event unmatchedItemSelectEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param sSelection {String} The selected string.  
- */
-YAHOO.widget.AutoComplete.prototype.unmatchedItemSelectEvent = null;
-
-/**
- * Fired if forceSelection is enabled and the user's input has been cleared
- * because it did not match one of the returned query results.
- *
- * @event selectionEnforceEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- */
-YAHOO.widget.AutoComplete.prototype.selectionEnforceEvent = null;
-
-/**
- * Fired when the results container is collapsed.
- *
- * @event containerCollapseEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- */
-YAHOO.widget.AutoComplete.prototype.containerCollapseEvent = null;
-
-/**
- * Fired when the input field loses focus.
- *
- * @event textboxBlurEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- */
-YAHOO.widget.AutoComplete.prototype.textboxBlurEvent = null;
-
-/**
- * Fired when the input field value has changed when it loses focus.
- *
- * @event textboxChangeEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- */
-YAHOO.widget.AutoComplete.prototype.textboxChangeEvent = null;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Internal class variable to index multiple AutoComplete instances.
- *
- * @property _nIndex
- * @type Number
- * @default 0
- * @private
- */
-YAHOO.widget.AutoComplete._nIndex = 0;
-
-/**
- * Name of AutoComplete instance.
- *
- * @property _sName
- * @type String
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._sName = null;
-
-/**
- * Text input field DOM element.
- *
- * @property _elTextbox
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elTextbox = null;
-
-/**
- * Container DOM element.
- *
- * @property _elContainer
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elContainer = null;
-
-/**
- * Reference to content element within container element.
- *
- * @property _elContent
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elContent = null;
-
-/**
- * Reference to header element within content element.
- *
- * @property _elHeader
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elHeader = null;
-
-/**
- * Reference to body element within content element.
- *
- * @property _elBody
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elBody = null;
-
-/**
- * Reference to footer element within content element.
- *
- * @property _elFooter
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elFooter = null;
-
-/**
- * Reference to shadow element within container element.
- *
- * @property _elShadow
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elShadow = null;
-
-/**
- * Reference to iframe element within container element.
- *
- * @property _elIFrame
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elIFrame = null;
-
-/**
- * Whether or not the input field is currently in focus. If query results come back
- * but the user has already moved on, do not proceed with auto complete behavior.
- *
- * @property _bFocused
- * @type Boolean
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._bFocused = null;
-
-/**
- * Animation instance for container expand/collapse.
- *
- * @property _oAnim
- * @type Boolean
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._oAnim = null;
-
-/**
- * Whether or not the results container is currently open.
- *
- * @property _bContainerOpen
- * @type Boolean
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._bContainerOpen = false;
-
-/**
- * Whether or not the mouse is currently over the results
- * container. This is necessary in order to prevent clicks on container items
- * from being text input field blur events.
- *
- * @property _bOverContainer
- * @type Boolean
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._bOverContainer = false;
-
-/**
- * Internal reference to &lt;ul&gt; elements that contains query results within the
- * results container.
- *
- * @property _elList
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elList = null;
-
-/*
- * Array of &lt;li&gt; elements references that contain query results within the
- * results container.
- *
- * @property _aListItemEls
- * @type HTMLElement[]
- * @private
- */
-//YAHOO.widget.AutoComplete.prototype._aListItemEls = null;
-
-/**
- * Number of &lt;li&gt; elements currently displayed in results container.
- *
- * @property _nDisplayedItems
- * @type Number
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._nDisplayedItems = 0;
-
-/*
- * Internal count of &lt;li&gt; elements displayed and hidden in results container.
- *
- * @property _maxResultsDisplayed
- * @type Number
- * @private
- */
-//YAHOO.widget.AutoComplete.prototype._maxResultsDisplayed = 0;
-
-/**
- * Current query string
- *
- * @property _sCurQuery
- * @type String
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._sCurQuery = null;
-
-/**
- * Selections from previous queries (for saving delimited queries).
- *
- * @property _sPastSelections
- * @type String
- * @default "" 
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._sPastSelections = "";
-
-/**
- * Stores initial input value used to determine if textboxChangeEvent should be fired.
- *
- * @property _sInitInputValue
- * @type String
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._sInitInputValue = null;
-
-/**
- * Pointer to the currently highlighted &lt;li&gt; element in the container.
- *
- * @property _elCurListItem
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elCurListItem = null;
-
-/**
- * Whether or not an item has been selected since the container was populated
- * with results. Reset to false by _populateList, and set to true when item is
- * selected.
- *
- * @property _bItemSelected
- * @type Boolean
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._bItemSelected = false;
-
-/**
- * Key code of the last key pressed in textbox.
- *
- * @property _nKeyCode
- * @type Number
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._nKeyCode = null;
-
-/**
- * Delay timeout ID.
- *
- * @property _nDelayID
- * @type Number
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._nDelayID = -1;
-
-/**
- * TypeAhead delay timeout ID.
- *
- * @property _nTypeAheadDelayID
- * @type Number
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._nTypeAheadDelayID = -1;
-
-/**
- * Src to iFrame used when useIFrame = true. Supports implementations over SSL
- * as well.
- *
- * @property _iFrameSrc
- * @type String
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._iFrameSrc = "javascript:false;";
-
-/**
- * For users typing via certain IMEs, queries must be triggered by intervals,
- * since key events yet supported across all browsers for all IMEs.
- *
- * @property _queryInterval
- * @type Object
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._queryInterval = null;
-
-/**
- * Internal tracker to last known textbox value, used to determine whether or not
- * to trigger a query via interval for certain IME users.
- *
- * @event _sLastTextboxValue
- * @type String
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._sLastTextboxValue = null;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Updates and validates latest public config properties.
- *
- * @method __initProps
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._initProps = function() {
-    // Correct any invalid values
-    var minQueryLength = this.minQueryLength;
-    if(!YAHOO.lang.isNumber(minQueryLength)) {
-        this.minQueryLength = 1;
-    }
-    var maxResultsDisplayed = this.maxResultsDisplayed;
-    if(!YAHOO.lang.isNumber(maxResultsDisplayed) || (maxResultsDisplayed < 1)) {
-        this.maxResultsDisplayed = 10;
-    }
-    var queryDelay = this.queryDelay;
-    if(!YAHOO.lang.isNumber(queryDelay) || (queryDelay < 0)) {
-        this.queryDelay = 0.2;
-    }
-    var typeAheadDelay = this.typeAheadDelay;
-    if(!YAHOO.lang.isNumber(typeAheadDelay) || (typeAheadDelay < 0)) {
-        this.typeAheadDelay = 0.2;
-    }
-    var delimChar = this.delimChar;
-    if(YAHOO.lang.isString(delimChar) && (delimChar.length > 0)) {
-        this.delimChar = [delimChar];
-    }
-    else if(!YAHOO.lang.isArray(delimChar)) {
-        this.delimChar = null;
-    }
-    var animSpeed = this.animSpeed;
-    if((this.animHoriz || this.animVert) && YAHOO.util.Anim) {
-        if(!YAHOO.lang.isNumber(animSpeed) || (animSpeed < 0)) {
-            this.animSpeed = 0.3;
-        }
-        if(!this._oAnim ) {
-            this._oAnim = new YAHOO.util.Anim(this._elContent, {}, this.animSpeed);
-        }
-        else {
-            this._oAnim.duration = this.animSpeed;
-        }
-    }
-    if(this.forceSelection && delimChar) {
-        YAHOO.log("The forceSelection feature has been enabled with delimChar defined.","warn", this.toString());
-    }
-};
-
-/**
- * Initializes the results container helpers if they are enabled and do
- * not exist
- *
- * @method _initContainerHelperEls
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._initContainerHelperEls = function() {
-    if(this.useShadow && !this._elShadow) {
-        var elShadow = document.createElement("div");
-        elShadow.className = "yui-ac-shadow";
-        elShadow.style.width = 0;
-        elShadow.style.height = 0;
-        this._elShadow = this._elContainer.appendChild(elShadow);
-    }
-    if(this.useIFrame && !this._elIFrame) {
-        var elIFrame = document.createElement("iframe");
-        elIFrame.src = this._iFrameSrc;
-        elIFrame.frameBorder = 0;
-        elIFrame.scrolling = "no";
-        elIFrame.style.position = "absolute";
-        elIFrame.style.width = 0;
-        elIFrame.style.height = 0;
-        elIFrame.tabIndex = -1;
-        elIFrame.style.padding = 0;
-        this._elIFrame = this._elContainer.appendChild(elIFrame);
-    }
-};
-
-/**
- * Initializes the results container once at object creation
- *
- * @method _initContainerEl
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._initContainerEl = function() {
-    YAHOO.util.Dom.addClass(this._elContainer, "yui-ac-container");
-    
-    if(!this._elContent) {
-        // The elContent div is assigned DOM listeners and 
-        // helps size the iframe and shadow properly
-        var elContent = document.createElement("div");
-        elContent.className = "yui-ac-content";
-        elContent.style.display = "none";
-
-        this._elContent = this._elContainer.appendChild(elContent);
-
-        var elHeader = document.createElement("div");
-        elHeader.className = "yui-ac-hd";
-        elHeader.style.display = "none";
-        this._elHeader = this._elContent.appendChild(elHeader);
-
-        var elBody = document.createElement("div");
-        elBody.className = "yui-ac-bd";
-        this._elBody = this._elContent.appendChild(elBody);
-
-        var elFooter = document.createElement("div");
-        elFooter.className = "yui-ac-ft";
-        elFooter.style.display = "none";
-        this._elFooter = this._elContent.appendChild(elFooter);
-    }
-    else {
-        YAHOO.log("Could not initialize the container","warn",this.toString());
-    }
-};
-
-/**
- * Clears out contents of container body and creates up to
- * YAHOO.widget.AutoComplete#maxResultsDisplayed &lt;li&gt; elements in an
- * &lt;ul&gt; element.
- *
- * @method _initListEl
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._initListEl = function() {
-    var nListLength = this.maxResultsDisplayed;
-    
-    var elList = this._elList || document.createElement("ul");
-    var elListItem;
-    while(elList.childNodes.length < nListLength) {
-        elListItem = document.createElement("li");
-        elListItem.style.display = "none";
-        elListItem._nItemIndex = elList.childNodes.length;
-        elList.appendChild(elListItem);
-    }
-    if(!this._elList) {
-        var elBody = this._elBody;
-        YAHOO.util.Event.purgeElement(elBody, true);
-        elBody.innerHTML = "";
-        this._elList = elBody.appendChild(elList);
-    }
-    
-};
-
-/**
- * Enables interval detection for IME support.
- *
- * @method _enableIntervalDetection
- * @re 
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._enableIntervalDetection = function() {
-    var oSelf = this;
-    if(!oSelf._queryInterval && oSelf.queryInterval) {
-        oSelf._queryInterval = setInterval(function() { oSelf._onInterval(); }, oSelf.queryInterval);
-        YAHOO.log("Interval set", "info", this.toString());
-    }
-};
-
-/**
- * Enables query triggers based on text input detection by intervals (rather
- * than by key events).
- *
- * @method _onInterval
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onInterval = function() {
-    var currValue = this._elTextbox.value;
-    var lastValue = this._sLastTextboxValue;
-    if(currValue != lastValue) {
-        this._sLastTextboxValue = currValue;
-        this._sendQuery(currValue);
-    }
-};
-
-/**
- * Cancels text input detection by intervals.
- *
- * @method _clearInterval
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._clearInterval = function() {
-    if(this._queryInterval) {
-        clearInterval(this._queryInterval);
-        this._queryInterval = null;
-        YAHOO.log("Interval cleared", "info", this.toString());
-    }
-};
-
-/**
- * Whether or not key is functional or should be ignored. Note that the right
- * arrow key is NOT an ignored key since it triggers queries for certain intl
- * charsets.
- *
- * @method _isIgnoreKey
- * @param nKeycode {Number} Code of key pressed.
- * @return {Boolean} True if key should be ignored, false otherwise.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._isIgnoreKey = function(nKeyCode) {
-    if((nKeyCode == 9) || (nKeyCode == 13)  || // tab, enter
-            (nKeyCode == 16) || (nKeyCode == 17) || // shift, ctl
-            (nKeyCode >= 18 && nKeyCode <= 20) || // alt, pause/break,caps lock
-            (nKeyCode == 27) || // esc
-            (nKeyCode >= 33 && nKeyCode <= 35) || // page up,page down,end
-            /*(nKeyCode >= 36 && nKeyCode <= 38) || // home,left,up
-            (nKeyCode == 40) || // down*/
-            (nKeyCode >= 36 && nKeyCode <= 40) || // home,left,up, right, down
-            (nKeyCode >= 44 && nKeyCode <= 45) || // print screen,insert
-            (nKeyCode == 229) // Bug 2041973: Korean XP fires 2 keyup events, the key and 229
-        ) { 
-        return true;
-    }
-    return false;
-};
-
-/**
- * Makes query request to the DataSource.
- *
- * @method _sendQuery
- * @param sQuery {String} Query string.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._sendQuery = function(sQuery) {
-    // Widget has been effectively turned off
-    if(this.minQueryLength < 0) {
-        this._toggleContainer(false);
-        YAHOO.log("Property minQueryLength is less than 0", "info", this.toString());
-        return;
-    }
-    // Delimiter has been enabled
-    var aDelimChar = (this.delimChar) ? this.delimChar : null;
-    if(aDelimChar) {
-        // Loop through all possible delimiters and find the rightmost one in the query
-        // A " " may be a false positive if they are defined as delimiters AND
-        // are used to separate delimited queries
-        var nDelimIndex = -1;
-        for(var i = aDelimChar.length-1; i >= 0; i--) {
-            var nNewIndex = sQuery.lastIndexOf(aDelimChar[i]);
-            if(nNewIndex > nDelimIndex) {
-                nDelimIndex = nNewIndex;
-            }
-        }
-        // If we think the last delimiter is a space (" "), make sure it is NOT
-        // a false positive by also checking the char directly before it
-        if(aDelimChar[i] == " ") {
-            for (var j = aDelimChar.length-1; j >= 0; j--) {
-                if(sQuery[nDelimIndex - 1] == aDelimChar[j]) {
-                    nDelimIndex--;
-                    break;
-                }
-            }
-        }
-        // A delimiter has been found in the query so extract the latest query from past selections
-        if(nDelimIndex > -1) {
-            var nQueryStart = nDelimIndex + 1;
-            // Trim any white space from the beginning...
-            while(sQuery.charAt(nQueryStart) == " ") {
-                nQueryStart += 1;
-            }
-            // ...and save the rest of the string for later
-            this._sPastSelections = sQuery.substring(0,nQueryStart);
-            // Here is the query itself
-            sQuery = sQuery.substr(nQueryStart);
-        }
-        // No delimiter found in the query, so there are no selections from past queries
-        else {
-            this._sPastSelections = "";
-        }
-    }
-
-    // Don't search queries that are too short
-    if((sQuery && (sQuery.length < this.minQueryLength)) || (!sQuery && this.minQueryLength > 0)) {
-        if(this._nDelayID != -1) {
-            clearTimeout(this._nDelayID);
-        }
-        this._toggleContainer(false);
-        YAHOO.log("Query \"" + sQuery + "\" is too short", "info", this.toString());
-        return;
-    }
-
-    sQuery = encodeURIComponent(sQuery);
-    this._nDelayID = -1;    // Reset timeout ID because request is being made
-    
-    // Subset matching
-    if(this.dataSource.queryMatchSubset || this.queryMatchSubset) { // backward compat
-        var oResponse = this.getSubsetMatches(sQuery);
-        if(oResponse) {
-            this.handleResponse(sQuery, oResponse, {query: sQuery});
-            return;
-        }
-    }
-    
-    if(this.responseStripAfter) {
-        this.dataSource.doBeforeParseData = this.preparseRawResponse;
-    }
-    if(this.applyLocalFilter) {
-        this.dataSource.doBeforeCallback = this.filterResults;
-    }
-    
-    var sRequest = this.generateRequest(sQuery);
-    this.dataRequestEvent.fire(this, sQuery, sRequest);
-    YAHOO.log("Sending query \"" + sRequest + "\"", "info", this.toString());
-
-    this.dataSource.sendRequest(sRequest, {
-            success : this.handleResponse,
-            failure : this.handleResponse,
-            scope   : this,
-            argument: {
-                query: sQuery
-            }
-    });
-};
-
-/**
- * Populates the array of &lt;li&gt; elements in the container with query
- * results.
- *
- * @method _populateList
- * @param sQuery {String} Original request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} (optional) Additional argument(s)
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._populateList = function(sQuery, oResponse, oPayload) {
-    // Clear previous timeout
-    if(this._nTypeAheadDelayID != -1) {
-        clearTimeout(this._nTypeAheadDelayID);
-    }
-        
-    sQuery = (oPayload && oPayload.query) ? oPayload.query : sQuery;
-    
-    // Pass data through abstract method for any transformations
-    var ok = this.doBeforeLoadData(sQuery, oResponse, oPayload);
-
-    // Data is ok
-    if(ok && !oResponse.error) {
-        this.dataReturnEvent.fire(this, sQuery, oResponse.results);
-        
-        // Continue only if instance is still focused (i.e., user hasn't already moved on)
-        // Null indicates initialized state, which is ok too
-        if(this._bFocused || (this._bFocused === null)) {
-            
-            //TODO: is this still necessary?
-            /*var isOpera = (YAHOO.env.ua.opera);
-            var contentStyle = this._elContent.style;
-            contentStyle.width = (!isOpera) ? null : "";
-            contentStyle.height = (!isOpera) ? null : "";*/
-        
-            // Store state for this interaction
-            var sCurQuery = decodeURIComponent(sQuery);
-            this._sCurQuery = sCurQuery;
-            this._bItemSelected = false;
-        
-            var allResults = oResponse.results,
-                nItemsToShow = Math.min(allResults.length,this.maxResultsDisplayed),
-                sMatchKey = (this.dataSource.responseSchema.fields) ? 
-                    (this.dataSource.responseSchema.fields[0].key || this.dataSource.responseSchema.fields[0]) : 0;
-            
-            if(nItemsToShow > 0) {
-                // Make sure container and helpers are ready to go
-                if(!this._elList || (this._elList.childNodes.length < nItemsToShow)) {
-                    this._initListEl();
-                }
-                this._initContainerHelperEls();
-                
-                var allListItemEls = this._elList.childNodes;
-                // Fill items with data from the bottom up
-                for(var i = nItemsToShow-1; i >= 0; i--) {
-                    var elListItem = allListItemEls[i],
-                    oResult = allResults[i];
-                    
-                    // Backward compatibility
-                    if(this.resultTypeList) {
-                        // Results need to be converted back to an array
-                        var aResult = [];
-                        // Match key is first
-                        aResult[0] = (YAHOO.lang.isString(oResult)) ? oResult : oResult[sMatchKey] || oResult[this.key];
-                        // Add additional data to the result array
-                        var fields = this.dataSource.responseSchema.fields;
-                        if(YAHOO.lang.isArray(fields) && (fields.length > 1)) {
-                            for(var k=1, len=fields.length; k<len; k++) {
-                                aResult[aResult.length] = oResult[fields[k].key || fields[k]];
-                            }
-                        }
-                        // No specific fields defined, so pass along entire data object
-                        else {
-                            // Already an array
-                            if(YAHOO.lang.isArray(oResult)) {
-                                aResult = oResult;
-                            }
-                            // Simple string 
-                            else if(YAHOO.lang.isString(oResult)) {
-                                aResult = [oResult];
-                            }
-                            // Object
-                            else {
-                                aResult[1] = oResult;
-                            }
-                        }
-                        oResult = aResult;
-                    }
-
-                    // The matching value, including backward compatibility for array format and safety net
-                    elListItem._sResultMatch = (YAHOO.lang.isString(oResult)) ? oResult : (YAHOO.lang.isArray(oResult)) ? oResult[0] : (oResult[sMatchKey] || "");
-                    elListItem._oResultData = oResult; // Additional data
-                    elListItem.innerHTML = this.formatResult(oResult, sCurQuery, elListItem._sResultMatch);
-                    elListItem.style.display = "";
-                }
-        
-                // Clear out extraneous items
-                if(nItemsToShow < allListItemEls.length) {
-                    var extraListItem;
-                    for(var j = allListItemEls.length-1; j >= nItemsToShow; j--) {
-                        extraListItem = allListItemEls[j];
-                        extraListItem.style.display = "none";
-                    }
-                }
-                
-                this._nDisplayedItems = nItemsToShow;
-                
-                this.containerPopulateEvent.fire(this, sQuery, allResults);
-                
-                // Highlight the first item
-                if(this.autoHighlight) {
-                    var elFirstListItem = this._elList.firstChild;
-                    this._toggleHighlight(elFirstListItem,"to");
-                    this.itemArrowToEvent.fire(this, elFirstListItem);
-                    YAHOO.log("Arrowed to first item", "info", this.toString());
-                    this._typeAhead(elFirstListItem,sQuery);
-                }
-                // Unhighlight any previous time
-                else {
-                    this._toggleHighlight(this._elCurListItem,"from");
-                }
-        
-                // Expand the container
-                ok = this.doBeforeExpandContainer(this._elTextbox, this._elContainer, sQuery, allResults);
-                this._toggleContainer(ok);
-            }
-            else {
-                this._toggleContainer(false);
-            }
-
-            YAHOO.log("Container populated with " + nItemsToShow +  " list items", "info", this.toString());
-            return;
-        }
-    }
-    // Error
-    else {
-        this.dataErrorEvent.fire(this, sQuery);
-    }
-        
-    YAHOO.log("Could not populate list", "info", this.toString());    
-};
-
-/**
- * When forceSelection is true and the user attempts
- * leave the text input box without selecting an item from the query results,
- * the user selection is cleared.
- *
- * @method _clearSelection
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._clearSelection = function() {
-    var sValue = this._elTextbox.value;
-    //TODO: need to check against all delimChars?
-    var sChar = (this.delimChar) ? this.delimChar[0] : null;
-    var nIndex = (sChar) ? sValue.lastIndexOf(sChar, sValue.length-2) : -1;
-    if(nIndex > -1) {
-        this._elTextbox.value = sValue.substring(0,nIndex);
-    }
-    else {
-         this._elTextbox.value = "";
-    }
-    this._sPastSelections = this._elTextbox.value;
-
-    // Fire custom event
-    this.selectionEnforceEvent.fire(this);
-    YAHOO.log("Selection enforced", "info", this.toString());
-};
-
-/**
- * Whether or not user-typed value in the text input box matches any of the
- * query results.
- *
- * @method _textMatchesOption
- * @return {HTMLElement} Matching list item element if user-input text matches
- * a result, null otherwise.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._textMatchesOption = function() {
-    var elMatch = null;
-
-    for(var i = this._nDisplayedItems-1; i >= 0 ; i--) {
-        var elListItem = this._elList.childNodes[i];
-        var sMatch = ("" + elListItem._sResultMatch).toLowerCase();
-        if(sMatch == this._sCurQuery.toLowerCase()) {
-            elMatch = elListItem;
-            break;
-        }
-    }
-    return(elMatch);
-};
-
-/**
- * Updates in the text input box with the first query result as the user types,
- * selecting the substring that the user has not typed.
- *
- * @method _typeAhead
- * @param elListItem {HTMLElement} The &lt;li&gt; element item whose data populates the input field.
- * @param sQuery {String} Query string.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._typeAhead = function(elListItem, sQuery) {
-    // Don't typeAhead if turned off or is backspace
-    if(!this.typeAhead || (this._nKeyCode == 8)) {
-        return;
-    }
-
-    var oSelf = this,
-        elTextbox = this._elTextbox;
-        
-    // Only if text selection is supported
-    if(elTextbox.setSelectionRange || elTextbox.createTextRange) {
-        // Set and store timeout for this typeahead
-        this._nTypeAheadDelayID = setTimeout(function() {
-                // Select the portion of text that the user has not typed
-                var nStart = elTextbox.value.length; // any saved queries plus what user has typed
-                oSelf._updateValue(elListItem);
-                var nEnd = elTextbox.value.length;
-                oSelf._selectText(elTextbox,nStart,nEnd);
-                var sPrefill = elTextbox.value.substr(nStart,nEnd);
-                oSelf.typeAheadEvent.fire(oSelf,sQuery,sPrefill);
-                YAHOO.log("Typeahead occured with prefill string \"" + sPrefill + "\"", "info", oSelf.toString());
-            },(this.typeAheadDelay*1000));            
-    }
-};
-
-/**
- * Selects text in the input field.
- *
- * @method _selectText
- * @param elTextbox {HTMLElement} Text input box element in which to select text.
- * @param nStart {Number} Starting index of text string to select.
- * @param nEnd {Number} Ending index of text selection.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._selectText = function(elTextbox, nStart, nEnd) {
-    if(elTextbox.setSelectionRange) { // For Mozilla
-        elTextbox.setSelectionRange(nStart,nEnd);
-    }
-    else if(elTextbox.createTextRange) { // For IE
-        var oTextRange = elTextbox.createTextRange();
-        oTextRange.moveStart("character", nStart);
-        oTextRange.moveEnd("character", nEnd-elTextbox.value.length);
-        oTextRange.select();
-    }
-    else {
-        elTextbox.select();
-    }
-};
-
-/**
- * Syncs results container with its helpers.
- *
- * @method _toggleContainerHelpers
- * @param bShow {Boolean} True if container is expanded, false if collapsed
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._toggleContainerHelpers = function(bShow) {
-    var width = this._elContent.offsetWidth + "px";
-    var height = this._elContent.offsetHeight + "px";
-
-    if(this.useIFrame && this._elIFrame) {
-    var elIFrame = this._elIFrame;
-        if(bShow) {
-            elIFrame.style.width = width;
-            elIFrame.style.height = height;
-            elIFrame.style.padding = "";
-            YAHOO.log("Iframe expanded", "info", this.toString());
-        }
-        else {
-            elIFrame.style.width = 0;
-            elIFrame.style.height = 0;
-            elIFrame.style.padding = 0;
-            YAHOO.log("Iframe collapsed", "info", this.toString());
-        }
-    }
-    if(this.useShadow && this._elShadow) {
-    var elShadow = this._elShadow;
-        if(bShow) {
-            elShadow.style.width = width;
-            elShadow.style.height = height;
-            YAHOO.log("Shadow expanded", "info", this.toString());
-        }
-        else {
-            elShadow.style.width = 0;
-            elShadow.style.height = 0;
-            YAHOO.log("Shadow collapsed", "info", this.toString());
-        }
-    }
-};
-
-/**
- * Animates expansion or collapse of the container.
- *
- * @method _toggleContainer
- * @param bShow {Boolean} True if container should be expanded, false if container should be collapsed
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._toggleContainer = function(bShow) {
-    var elContainer = this._elContainer;
-
-    // If implementer has container always open and it's already open, don't mess with it
-    // Container is initialized with display "none" so it may need to be shown first time through
-    if(this.alwaysShowContainer && this._bContainerOpen) {
-        return;
-    }
-    
-    // Reset states
-    if(!bShow) {
-        this._toggleHighlight(this._elCurListItem,"from");
-        this._nDisplayedItems = 0;
-        this._sCurQuery = null;
-        
-        // Container is already closed, so don't bother with changing the UI
-        if(!this._bContainerOpen) {
-            this._elContent.style.display = "none";
-            return;
-        }
-    }
-
-    // If animation is enabled...
-    var oAnim = this._oAnim;
-    if(oAnim && oAnim.getEl() && (this.animHoriz || this.animVert)) {
-        if(oAnim.isAnimated()) {
-            oAnim.stop(true);
-        }
-
-        // Clone container to grab current size offscreen
-        var oClone = this._elContent.cloneNode(true);
-        elContainer.appendChild(oClone);
-        oClone.style.top = "-9000px";
-        oClone.style.width = "";
-        oClone.style.height = "";
-        oClone.style.display = "";
-
-        // Current size of the container is the EXPANDED size
-        var wExp = oClone.offsetWidth;
-        var hExp = oClone.offsetHeight;
-
-        // Calculate COLLAPSED sizes based on horiz and vert anim
-        var wColl = (this.animHoriz) ? 0 : wExp;
-        var hColl = (this.animVert) ? 0 : hExp;
-
-        // Set animation sizes
-        oAnim.attributes = (bShow) ?
-            {width: { to: wExp }, height: { to: hExp }} :
-            {width: { to: wColl}, height: { to: hColl }};
-
-        // If opening anew, set to a collapsed size...
-        if(bShow && !this._bContainerOpen) {
-            this._elContent.style.width = wColl+"px";
-            this._elContent.style.height = hColl+"px";
-        }
-        // Else, set it to its last known size.
-        else {
-            this._elContent.style.width = wExp+"px";
-            this._elContent.style.height = hExp+"px";
-        }
-
-        elContainer.removeChild(oClone);
-        oClone = null;
-
-    	var oSelf = this;
-    	var onAnimComplete = function() {
-            // Finish the collapse
-    		oAnim.onComplete.unsubscribeAll();
-
-            if(bShow) {
-                oSelf._toggleContainerHelpers(true);
-                oSelf._bContainerOpen = bShow;
-                oSelf.containerExpandEvent.fire(oSelf);
-                YAHOO.log("Container expanded", "info", oSelf.toString());
-            }
-            else {
-                oSelf._elContent.style.display = "none";
-                oSelf._bContainerOpen = bShow;
-                oSelf.containerCollapseEvent.fire(oSelf);
-                YAHOO.log("Container collapsed", "info", oSelf.toString());
-            }
-     	};
-
-        // Display container and animate it
-        this._toggleContainerHelpers(false); // Bug 1424486: Be early to hide, late to show;
-        this._elContent.style.display = "";
-        oAnim.onComplete.subscribe(onAnimComplete);
-        oAnim.animate();
-    }
-    // Else don't animate, just show or hide
-    else {
-        if(bShow) {
-            this._elContent.style.display = "";
-            this._toggleContainerHelpers(true);
-            this._bContainerOpen = bShow;
-            this.containerExpandEvent.fire(this);
-            YAHOO.log("Container expanded", "info", this.toString());
-        }
-        else {
-            this._toggleContainerHelpers(false);
-            this._elContent.style.display = "none";
-            this._bContainerOpen = bShow;
-            this.containerCollapseEvent.fire(this);
-            YAHOO.log("Container collapsed", "info", this.toString());
-        }
-   }
-
-};
-
-/**
- * Toggles the highlight on or off for an item in the container, and also cleans
- * up highlighting of any previous item.
- *
- * @method _toggleHighlight
- * @param elNewListItem {HTMLElement} The &lt;li&gt; element item to receive highlight behavior.
- * @param sType {String} Type "mouseover" will toggle highlight on, and "mouseout" will toggle highlight off.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._toggleHighlight = function(elNewListItem, sType) {
-    if(elNewListItem) {
-        var sHighlight = this.highlightClassName;
-        if(this._elCurListItem) {
-            // Remove highlight from old item
-            YAHOO.util.Dom.removeClass(this._elCurListItem, sHighlight);
-            this._elCurListItem = null;
-        }
-    
-        if((sType == "to") && sHighlight) {
-            // Apply highlight to new item
-            YAHOO.util.Dom.addClass(elNewListItem, sHighlight);
-            this._elCurListItem = elNewListItem;
-        }
-    }
-};
-
-/**
- * Toggles the pre-highlight on or off for an item in the container.
- *
- * @method _togglePrehighlight
- * @param elNewListItem {HTMLElement} The &lt;li&gt; element item to receive highlight behavior.
- * @param sType {String} Type "mouseover" will toggle highlight on, and "mouseout" will toggle highlight off.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._togglePrehighlight = function(elNewListItem, sType) {
-    if(elNewListItem == this._elCurListItem) {
-        return;
-    }
-
-    var sPrehighlight = this.prehighlightClassName;
-    if((sType == "mouseover") && sPrehighlight) {
-        // Apply prehighlight to new item
-        YAHOO.util.Dom.addClass(elNewListItem, sPrehighlight);
-    }
-    else {
-        // Remove prehighlight from old item
-        YAHOO.util.Dom.removeClass(elNewListItem, sPrehighlight);
-    }
-};
-
-/**
- * Updates the text input box value with selected query result. If a delimiter
- * has been defined, then the value gets appended with the delimiter.
- *
- * @method _updateValue
- * @param elListItem {HTMLElement} The &lt;li&gt; element item with which to update the value.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._updateValue = function(elListItem) {
-    if(!this.suppressInputUpdate) {    
-        var elTextbox = this._elTextbox;
-        var sDelimChar = (this.delimChar) ? (this.delimChar[0] || this.delimChar) : null;
-        var sResultMatch = elListItem._sResultMatch;
-    
-        // Calculate the new value
-        var sNewValue = "";
-        if(sDelimChar) {
-            // Preserve selections from past queries
-            sNewValue = this._sPastSelections;
-            // Add new selection plus delimiter
-            sNewValue += sResultMatch + sDelimChar;
-            if(sDelimChar != " ") {
-                sNewValue += " ";
-            }
-        }
-        else { 
-            sNewValue = sResultMatch;
-        }
-        
-        // Update input field
-        elTextbox.value = sNewValue;
-    
-        // Scroll to bottom of textarea if necessary
-        if(elTextbox.type == "textarea") {
-            elTextbox.scrollTop = elTextbox.scrollHeight;
-        }
-    
-        // Move cursor to end
-        var end = elTextbox.value.length;
-        this._selectText(elTextbox,end,end);
-    
-        this._elCurListItem = elListItem;
-    }
-};
-
-/**
- * Selects a result item from the container
- *
- * @method _selectItem
- * @param elListItem {HTMLElement} The selected &lt;li&gt; element item.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._selectItem = function(elListItem) {
-    this._bItemSelected = true;
-    this._updateValue(elListItem);
-    this._sPastSelections = this._elTextbox.value;
-    this._clearInterval();
-    this.itemSelectEvent.fire(this, elListItem, elListItem._oResultData);
-    YAHOO.log("Item selected: " + YAHOO.lang.dump(elListItem._oResultData), "info", this.toString());
-    this._toggleContainer(false);
-};
-
-/**
- * If an item is highlighted in the container, the right arrow key jumps to the
- * end of the textbox and selects the highlighted item, otherwise the container
- * is closed.
- *
- * @method _jumpSelection
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._jumpSelection = function() {
-    if(this._elCurListItem) {
-        this._selectItem(this._elCurListItem);
-    }
-    else {
-        this._toggleContainer(false);
-    }
-};
-
-/**
- * Triggered by up and down arrow keys, changes the current highlighted
- * &lt;li&gt; element item. Scrolls container if necessary.
- *
- * @method _moveSelection
- * @param nKeyCode {Number} Code of key pressed.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._moveSelection = function(nKeyCode) {
-    if(this._bContainerOpen) {
-        // Determine current item's id number
-        var elCurListItem = this._elCurListItem;
-        var nCurItemIndex = -1;
-
-        if(elCurListItem) {
-            nCurItemIndex = elCurListItem._nItemIndex;
-        }
-
-        var nNewItemIndex = (nKeyCode == 40) ?
-                (nCurItemIndex + 1) : (nCurItemIndex - 1);
-
-        // Out of bounds
-        if(nNewItemIndex < -2 || nNewItemIndex >= this._nDisplayedItems) {
-            return;
-        }
-
-        if(elCurListItem) {
-            // Unhighlight current item
-            this._toggleHighlight(elCurListItem, "from");
-            this.itemArrowFromEvent.fire(this, elCurListItem);
-            YAHOO.log("Item arrowed from: " + elCurListItem._nItemIndex, "info", this.toString());
-        }
-        if(nNewItemIndex == -1) {
-           // Go back to query (remove type-ahead string)
-            if(this.delimChar) {
-                this._elTextbox.value = this._sPastSelections + this._sCurQuery;
-            }
-            else {
-                this._elTextbox.value = this._sCurQuery;
-            }
-            return;
-        }
-        if(nNewItemIndex == -2) {
-            // Close container
-            this._toggleContainer(false);
-            return;
-        }
-        
-        var elNewListItem = this._elList.childNodes[nNewItemIndex];
-
-        // Scroll the container if necessary
-        var elContent = this._elContent;
-        var scrollOn = ((YAHOO.util.Dom.getStyle(elContent,"overflow") == "auto") ||
-            (YAHOO.util.Dom.getStyle(elContent,"overflowY") == "auto"));
-        if(scrollOn && (nNewItemIndex > -1) &&
-        (nNewItemIndex < this._nDisplayedItems)) {
-            // User is keying down
-            if(nKeyCode == 40) {
-                // Bottom of selected item is below scroll area...
-                if((elNewListItem.offsetTop+elNewListItem.offsetHeight) > (elContent.scrollTop + elContent.offsetHeight)) {
-                    // Set bottom of scroll area to bottom of selected item
-                    elContent.scrollTop = (elNewListItem.offsetTop+elNewListItem.offsetHeight) - elContent.offsetHeight;
-                }
-                // Bottom of selected item is above scroll area...
-                else if((elNewListItem.offsetTop+elNewListItem.offsetHeight) < elContent.scrollTop) {
-                    // Set top of selected item to top of scroll area
-                    elContent.scrollTop = elNewListItem.offsetTop;
-
-                }
-            }
-            // User is keying up
-            else {
-                // Top of selected item is above scroll area
-                if(elNewListItem.offsetTop < elContent.scrollTop) {
-                    // Set top of scroll area to top of selected item
-                    this._elContent.scrollTop = elNewListItem.offsetTop;
-                }
-                // Top of selected item is below scroll area
-                else if(elNewListItem.offsetTop > (elContent.scrollTop + elContent.offsetHeight)) {
-                    // Set bottom of selected item to bottom of scroll area
-                    this._elContent.scrollTop = (elNewListItem.offsetTop+elNewListItem.offsetHeight) - elContent.offsetHeight;
-                }
-            }
-        }
-
-        this._toggleHighlight(elNewListItem, "to");
-        this.itemArrowToEvent.fire(this, elNewListItem);
-        YAHOO.log("Item arrowed to " + elNewListItem._nItemIndex, "info", this.toString());
-        if(this.typeAhead) {
-            this._updateValue(elNewListItem);
-        }
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private event handlers
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Handles &lt;li&gt; element mouseover events in the container.
- *
- * @method _onItemMouseover
- * @param v {HTMLEvent} The mouseover event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-/*YAHOO.widget.AutoComplete.prototype._onItemMouseover = function(v,oSelf) {
-    if(oSelf.prehighlightClassName) {
-        oSelf._togglePrehighlight(this,"mouseover");
-    }
-    else {
-        oSelf._toggleHighlight(this,"to");
-    }
-
-    oSelf.itemMouseOverEvent.fire(oSelf, this);
-    YAHOO.log("Item moused over", "info", oSelf.toString());
-};*/
-
-/**
- * Handles &lt;li&gt; element mouseout events in the container.
- *
- * @method _onItemMouseout
- * @param v {HTMLEvent} The mouseout event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-/*YAHOO.widget.AutoComplete.prototype._onItemMouseout = function(v,oSelf) {
-    if(oSelf.prehighlightClassName) {
-        oSelf._togglePrehighlight(this,"mouseout");
-    }
-    else {
-        oSelf._toggleHighlight(this,"from");
-    }
-
-    oSelf.itemMouseOutEvent.fire(oSelf, this);
-    YAHOO.log("Item moused out", "info", oSelf.toString());
-};*/
-
-/**
- * Handles &lt;li&gt; element click events in the container.
- *
- * @method _onItemMouseclick
- * @param v {HTMLEvent} The click event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-/*YAHOO.widget.AutoComplete.prototype._onItemMouseclick = function(v,oSelf) {
-    // In case item has not been moused over
-    oSelf._toggleHighlight(this,"to");
-    oSelf._selectItem(this);
-};*/
-
-/**
- * Handles container mouseover events.
- *
- * @method _onContainerMouseover
- * @param v {HTMLEvent} The mouseover event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onContainerMouseover = function(v,oSelf) {
-    var elTarget = YAHOO.util.Event.getTarget(v);
-    var elTag = elTarget.nodeName.toLowerCase();
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "li":
-                if(oSelf.prehighlightClassName) {
-                    oSelf._togglePrehighlight(elTarget,"mouseover");
-                }
-                else {
-                    oSelf._toggleHighlight(elTarget,"to");
-                }
-            
-                oSelf.itemMouseOverEvent.fire(oSelf, elTarget);
-                YAHOO.log("Item moused over " + elTarget._nItemIndex, "info", oSelf.toString());
-                break;
-            case "div":
-                if(YAHOO.util.Dom.hasClass(elTarget,"yui-ac-container")) {
-                    oSelf._bOverContainer = true;
-                    return;
-                }
-                break;
-            default:
-                break;
-        }
-        
-        elTarget = elTarget.parentNode;
-        if(elTarget) {
-            elTag = elTarget.nodeName.toLowerCase();
-        }
-    }
-};
-
-/**
- * Handles container mouseout events.
- *
- * @method _onContainerMouseout
- * @param v {HTMLEvent} The mouseout event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onContainerMouseout = function(v,oSelf) {
-    var elTarget = YAHOO.util.Event.getTarget(v);
-    var elTag = elTarget.nodeName.toLowerCase();
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "li":
-                if(oSelf.prehighlightClassName) {
-                    oSelf._togglePrehighlight(elTarget,"mouseout");
-                }
-                else {
-                    oSelf._toggleHighlight(elTarget,"from");
-                }
-            
-                oSelf.itemMouseOutEvent.fire(oSelf, elTarget);
-                YAHOO.log("Item moused out " + elTarget._nItemIndex, "info", oSelf.toString());
-                break;
-            case "ul":
-                oSelf._toggleHighlight(oSelf._elCurListItem,"to");
-                break;
-            case "div":
-                if(YAHOO.util.Dom.hasClass(elTarget,"yui-ac-container")) {
-                    oSelf._bOverContainer = false;
-                    return;
-                }
-                break;
-            default:
-                break;
-        }
-
-        elTarget = elTarget.parentNode;
-        if(elTarget) {
-            elTag = elTarget.nodeName.toLowerCase();
-        }
-    }
-};
-
-/**
- * Handles container click events.
- *
- * @method _onContainerClick
- * @param v {HTMLEvent} The click event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onContainerClick = function(v,oSelf) {
-    var elTarget = YAHOO.util.Event.getTarget(v);
-    var elTag = elTarget.nodeName.toLowerCase();
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "li":
-                // In case item has not been moused over
-                oSelf._toggleHighlight(elTarget,"to");
-                oSelf._selectItem(elTarget);
-                return;
-            default:
-                break;
-        }
-
-        elTarget = elTarget.parentNode;
-        if(elTarget) {
-            elTag = elTarget.nodeName.toLowerCase();
-        }
-    }    
-};
-
-
-/**
- * Handles container scroll events.
- *
- * @method _onContainerScroll
- * @param v {HTMLEvent} The scroll event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onContainerScroll = function(v,oSelf) {
-    oSelf._elTextbox.focus();
-};
-
-/**
- * Handles container resize events.
- *
- * @method _onContainerResize
- * @param v {HTMLEvent} The resize event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onContainerResize = function(v,oSelf) {
-    oSelf._toggleContainerHelpers(oSelf._bContainerOpen);
-};
-
-
-/**
- * Handles textbox keydown events of functional keys, mainly for UI behavior.
- *
- * @method _onTextboxKeyDown
- * @param v {HTMLEvent} The keydown event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onTextboxKeyDown = function(v,oSelf) {
-    var nKeyCode = v.keyCode;
-
-    // Clear timeout
-    if(oSelf._nTypeAheadDelayID != -1) {
-        clearTimeout(oSelf._nTypeAheadDelayID);
-    }
-    
-    switch (nKeyCode) {
-        case 9: // tab
-            if(!YAHOO.env.ua.opera && (navigator.userAgent.toLowerCase().indexOf("mac") == -1) || (YAHOO.env.ua.webkit>420)) {
-                // select an item or clear out
-                if(oSelf._elCurListItem) {
-                    if(oSelf.delimChar && (oSelf._nKeyCode != nKeyCode)) {
-                        if(oSelf._bContainerOpen) {
-                            YAHOO.util.Event.stopEvent(v);
-                        }
-                    }
-                    oSelf._selectItem(oSelf._elCurListItem);
-                }
-                else {
-                    oSelf._toggleContainer(false);
-                }
-            }
-            break;
-        case 13: // enter
-            if(!YAHOO.env.ua.opera && (navigator.userAgent.toLowerCase().indexOf("mac") == -1) || (YAHOO.env.ua.webkit>420)) {
-                if(oSelf._elCurListItem) {
-                    if(oSelf._nKeyCode != nKeyCode) {
-                        if(oSelf._bContainerOpen) {
-                            YAHOO.util.Event.stopEvent(v);
-                        }
-                    }
-                    oSelf._selectItem(oSelf._elCurListItem);
-                }
-                else {
-                    oSelf._toggleContainer(false);
-                }
-            }
-            break;
-        case 27: // esc
-            oSelf._toggleContainer(false);
-            return;
-        case 39: // right
-            oSelf._jumpSelection();
-            break;
-        case 38: // up
-            if(oSelf._bContainerOpen) {
-                YAHOO.util.Event.stopEvent(v);
-                oSelf._moveSelection(nKeyCode);
-            }
-            break;
-        case 40: // down
-            if(oSelf._bContainerOpen) {
-                YAHOO.util.Event.stopEvent(v);
-                oSelf._moveSelection(nKeyCode);
-            }
-            break;
-        default: 
-            oSelf._bItemSelected = false;
-            oSelf._toggleHighlight(oSelf._elCurListItem, "from");
-
-            oSelf.textboxKeyEvent.fire(oSelf, nKeyCode);
-            YAHOO.log("Textbox keyed", "info", oSelf.toString());
-            break;
-    }
-
-    if(nKeyCode === 18){
-        oSelf._enableIntervalDetection();
-    }    
-    oSelf._nKeyCode = nKeyCode;
-};
-
-/**
- * Handles textbox keypress events.
- * @method _onTextboxKeyPress
- * @param v {HTMLEvent} The keypress event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onTextboxKeyPress = function(v,oSelf) {
-    var nKeyCode = v.keyCode;
-
-        // Expose only to non SF3 (bug 1978549) Mac browsers (bug 790337) and  Opera browsers (bug 583531),
-        // where stopEvent is ineffective on keydown events 
-        if(YAHOO.env.ua.opera || (navigator.userAgent.toLowerCase().indexOf("mac") != -1) && (YAHOO.env.ua.webkit < 420)) {
-            switch (nKeyCode) {
-            case 9: // tab
-                // select an item or clear out
-                if(oSelf._bContainerOpen) {
-                    if(oSelf.delimChar) {
-                        YAHOO.util.Event.stopEvent(v);
-                    }
-                    if(oSelf._elCurListItem) {
-                        oSelf._selectItem(oSelf._elCurListItem);
-                    }
-                    else {
-                        oSelf._toggleContainer(false);
-                    }
-                }
-                break;
-            case 13: // enter
-                if(oSelf._bContainerOpen) {
-                    YAHOO.util.Event.stopEvent(v);
-                    if(oSelf._elCurListItem) {
-                        oSelf._selectItem(oSelf._elCurListItem);
-                    }
-                    else {
-                        oSelf._toggleContainer(false);
-                    }
-                }
-                break;
-            default:
-                break;
-            }
-        }
-
-        //TODO: (?) limit only to non-IE, non-Mac-FF for Korean IME support (bug 811948)
-        // Korean IME detected
-        else if(nKeyCode == 229) {
-            oSelf._enableIntervalDetection();
-        }
-};
-
-/**
- * Handles textbox keyup events to trigger queries.
- *
- * @method _onTextboxKeyUp
- * @param v {HTMLEvent} The keyup event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onTextboxKeyUp = function(v,oSelf) {
-    var sText = this.value; //string in textbox
-    
-    // Check to see if any of the public properties have been updated
-    oSelf._initProps();
-
-    // Filter out chars that don't trigger queries
-    var nKeyCode = v.keyCode;
-    if(oSelf._isIgnoreKey(nKeyCode)) {
-        return;
-    }
-
-    // Clear previous timeout
-    /*if(oSelf._nTypeAheadDelayID != -1) {
-        clearTimeout(oSelf._nTypeAheadDelayID);
-    }*/
-    if(oSelf._nDelayID != -1) {
-        clearTimeout(oSelf._nDelayID);
-    }
-
-    // Set new timeout
-    oSelf._nDelayID = setTimeout(function(){
-            oSelf._sendQuery(sText);
-        },(oSelf.queryDelay * 1000));
-
-     //= nDelayID;
-    //else {
-        // No delay so send request immediately
-        //oSelf._sendQuery(sText);
-   //}
-};
-
-/**
- * Handles text input box receiving focus.
- *
- * @method _onTextboxFocus
- * @param v {HTMLEvent} The focus event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onTextboxFocus = function (v,oSelf) {
-    // Start of a new interaction
-    if(!oSelf._bFocused) {
-        oSelf._elTextbox.setAttribute("autocomplete","off");
-        oSelf._bFocused = true;
-        oSelf._sInitInputValue = oSelf._elTextbox.value;
-        oSelf.textboxFocusEvent.fire(oSelf);
-        YAHOO.log("Textbox focused", "info", oSelf.toString());
-    }
-};
-
-/**
- * Handles text input box losing focus.
- *
- * @method _onTextboxBlur
- * @param v {HTMLEvent} The focus event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onTextboxBlur = function (v,oSelf) {
-    // Don't treat as a blur if it was a selection via mouse click
-    if(!oSelf._bOverContainer || (oSelf._nKeyCode == 9)) {
-        // Current query needs to be validated as a selection
-        if(!oSelf._bItemSelected) {
-            var elMatchListItem = oSelf._textMatchesOption();
-            // Container is closed or current query doesn't match any result
-            if(!oSelf._bContainerOpen || (oSelf._bContainerOpen && (elMatchListItem === null))) {
-                // Force selection is enabled so clear the current query
-                if(oSelf.forceSelection) {
-                    oSelf._clearSelection();
-                }
-                // Treat current query as a valid selection
-                else {
-                    oSelf.unmatchedItemSelectEvent.fire(oSelf, oSelf._sCurQuery);
-                    YAHOO.log("Unmatched item selected: " + oSelf._sCurQuery, "info", oSelf.toString());
-                }
-            }
-            // Container is open and current query matches a result
-            else {
-                // Force a selection when textbox is blurred with a match
-                if(oSelf.forceSelection) {
-                    oSelf._selectItem(elMatchListItem);
-                }
-            }
-        }
-
-        if(oSelf._bContainerOpen) {
-            oSelf._toggleContainer(false);
-        }
-        oSelf._clearInterval();
-        oSelf._bFocused = false;
-        if(oSelf._sInitInputValue !== oSelf._elTextbox.value) {
-            oSelf.textboxChangeEvent.fire(oSelf);
-        }
-        oSelf.textboxBlurEvent.fire(oSelf);
-        YAHOO.log("Textbox blurred", "info", oSelf.toString());
-    }
-};
-
-/**
- * Handles window unload event.
- *
- * @method _onWindowUnload
- * @param v {HTMLEvent} The unload event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onWindowUnload = function(v,oSelf) {
-    if(oSelf && oSelf._elTextbox && oSelf.allowBrowserAutocomplete) {
-        oSelf._elTextbox.setAttribute("autocomplete","on");
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Deprecated for Backwards Compatibility
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * @method doBeforeSendQuery
- * @deprecated Use generateRequest.
- */
-YAHOO.widget.AutoComplete.prototype.doBeforeSendQuery = function(sQuery) {
-    return this.generateRequest(sQuery);
-};
-
-/**
- * @method getListItems
- * @deprecated Use getListEl().childNodes.
- */
-YAHOO.widget.AutoComplete.prototype.getListItems = function() {
-    var allListItemEls = [],
-        els = this._elList.childNodes;
-    for(var i=els.length-1; i>=0; i--) {
-        allListItemEls[i] = els[i];
-    }
-    return allListItemEls;
-};
-
-/////////////////////////////////////////////////////////////////////////
-//
-// Private static methods
-//
-/////////////////////////////////////////////////////////////////////////
-
-/**
- * Clones object literal or array of object literals.
- *
- * @method AutoComplete._cloneObject
- * @param o {Object} Object.
- * @private
- * @static     
- */
-YAHOO.widget.AutoComplete._cloneObject = function(o) {
-    if(!YAHOO.lang.isValue(o)) {
-        return o;
-    }
-    
-    var copy = {};
-    
-    if(YAHOO.lang.isFunction(o)) {
-        copy = o;
-    }
-    else if(YAHOO.lang.isArray(o)) {
-        var array = [];
-        for(var i=0,len=o.length;i<len;i++) {
-            array[i] = YAHOO.widget.AutoComplete._cloneObject(o[i]);
-        }
-        copy = array;
-    }
-    else if(YAHOO.lang.isObject(o)) { 
-        for (var x in o){
-            if(YAHOO.lang.hasOwnProperty(o, x)) {
-                if(YAHOO.lang.isValue(o[x]) && YAHOO.lang.isObject(o[x]) || YAHOO.lang.isArray(o[x])) {
-                    copy[x] = YAHOO.widget.AutoComplete._cloneObject(o[x]);
-                }
-                else {
-                    copy[x] = o[x];
-                }
-            }
-        }
-    }
-    else {
-        copy = o;
-    }
-
-    return copy;
-};
-
-
-
-
-YAHOO.register("autocomplete", YAHOO.widget.AutoComplete, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/autocomplete/autocomplete-min.js b/eclipse.org-common/yui/2.6.0/build/autocomplete/autocomplete-min.js
deleted file mode 100644
index 18595ea..0000000
--- a/eclipse.org-common/yui/2.6.0/build/autocomplete/autocomplete-min.js
+++ /dev/null
@@ -1,12 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.widget.DS_JSArray=YAHOO.util.LocalDataSource;YAHOO.widget.DS_JSFunction=YAHOO.util.FunctionDataSource;YAHOO.widget.DS_XHR=function(B,A,D){var C=new YAHOO.util.XHRDataSource(B,D);C._aDeprecatedSchema=A;return C;};YAHOO.widget.DS_ScriptNode=function(B,A,D){var C=new YAHOO.util.ScriptNodeDataSource(B,D);C._aDeprecatedSchema=A;return C;};YAHOO.widget.DS_XHR.TYPE_JSON=YAHOO.util.DataSourceBase.TYPE_JSON;YAHOO.widget.DS_XHR.TYPE_XML=YAHOO.util.DataSourceBase.TYPE_XML;YAHOO.widget.DS_XHR.TYPE_FLAT=YAHOO.util.DataSourceBase.TYPE_TEXT;YAHOO.widget.AutoComplete=function(G,B,J,C){if(G&&B&&J){if(J instanceof YAHOO.util.DataSourceBase){this.dataSource=J;}else{return ;}this.key=0;var D=J.responseSchema;if(J._aDeprecatedSchema){var K=J._aDeprecatedSchema;if(YAHOO.lang.isArray(K)){if((J.responseType===YAHOO.util.DataSourceBase.TYPE_JSON)||(J.responseType===YAHOO.util.DataSourceBase.TYPE_UNKNOWN)){D.resultsList=K[0];this.key=K[1];D.fields=(K.length<3)?null:K.slice(1);}else{if(J.responseType===YAHOO.util.DataSourceBase.TYPE_XML){D.resultNode=K[0];this.key=K[1];D.fields=K.slice(1);}else{if(J.responseType===YAHOO.util.DataSourceBase.TYPE_TEXT){D.recordDelim=K[0];D.fieldDelim=K[1];}}}J.responseSchema=D;}}if(YAHOO.util.Dom.inDocument(G)){if(YAHOO.lang.isString(G)){this._sName="instance"+YAHOO.widget.AutoComplete._nIndex+" "+G;this._elTextbox=document.getElementById(G);}else{this._sName=(G.id)?"instance"+YAHOO.widget.AutoComplete._nIndex+" "+G.id:"instance"+YAHOO.widget.AutoComplete._nIndex;this._elTextbox=G;}YAHOO.util.Dom.addClass(this._elTextbox,"yui-ac-input");}else{return ;}if(YAHOO.util.Dom.inDocument(B)){if(YAHOO.lang.isString(B)){this._elContainer=document.getElementById(B);}else{this._elContainer=B;}if(this._elContainer.style.display=="none"){}var E=this._elContainer.parentNode;var A=E.tagName.toLowerCase();if(A=="div"){YAHOO.util.Dom.addClass(E,"yui-ac");}else{}}else{return ;}if(this.dataSource.dataType===YAHOO.util.DataSourceBase.TYPE_LOCAL){this.applyLocalFilter=true;}if(C&&(C.constructor==Object)){for(var I in C){if(I){this[I]=C[I];}}}this._initContainerEl();this._initProps();this._initListEl();this._initContainerHelperEls();var H=this;var F=this._elTextbox;YAHOO.util.Event.addListener(F,"keyup",H._onTextboxKeyUp,H);YAHOO.util.Event.addListener(F,"keydown",H._onTextboxKeyDown,H);YAHOO.util.Event.addListener(F,"focus",H._onTextboxFocus,H);YAHOO.util.Event.addListener(F,"blur",H._onTextboxBlur,H);YAHOO.util.Event.addListener(B,"mouseover",H._onContainerMouseover,H);YAHOO.util.Event.addListener(B,"mouseout",H._onContainerMouseout,H);YAHOO.util.Event.addListener(B,"click",H._onContainerClick,H);YAHOO.util.Event.addListener(B,"scroll",H._onContainerScroll,H);YAHOO.util.Event.addListener(B,"resize",H._onContainerResize,H);YAHOO.util.Event.addListener(F,"keypress",H._onTextboxKeyPress,H);YAHOO.util.Event.addListener(window,"unload",H._onWindowUnload,H);this.textboxFocusEvent=new YAHOO.util.CustomEvent("textboxFocus",this);this.textboxKeyEvent=new YAHOO.util.CustomEvent("textboxKey",this);this.dataRequestEvent=new YAHOO.util.CustomEvent("dataRequest",this);this.dataReturnEvent=new YAHOO.util.CustomEvent("dataReturn",this);this.dataErrorEvent=new YAHOO.util.CustomEvent("dataError",this);this.containerPopulateEvent=new YAHOO.util.CustomEvent("containerPopulate",this);this.containerExpandEvent=new YAHOO.util.CustomEvent("containerExpand",this);this.typeAheadEvent=new YAHOO.util.CustomEvent("typeAhead",this);this.itemMouseOverEvent=new YAHOO.util.CustomEvent("itemMouseOver",this);this.itemMouseOutEvent=new YAHOO.util.CustomEvent("itemMouseOut",this);this.itemArrowToEvent=new YAHOO.util.CustomEvent("itemArrowTo",this);this.itemArrowFromEvent=new YAHOO.util.CustomEvent("itemArrowFrom",this);this.itemSelectEvent=new YAHOO.util.CustomEvent("itemSelect",this);this.unmatchedItemSelectEvent=new YAHOO.util.CustomEvent("unmatchedItemSelect",this);this.selectionEnforceEvent=new YAHOO.util.CustomEvent("selectionEnforce",this);this.containerCollapseEvent=new YAHOO.util.CustomEvent("containerCollapse",this);this.textboxBlurEvent=new YAHOO.util.CustomEvent("textboxBlur",this);this.textboxChangeEvent=new YAHOO.util.CustomEvent("textboxChange",this);F.setAttribute("autocomplete","off");YAHOO.widget.AutoComplete._nIndex++;}else{}};YAHOO.widget.AutoComplete.prototype.dataSource=null;YAHOO.widget.AutoComplete.prototype.applyLocalFilter=null;YAHOO.widget.AutoComplete.prototype.queryMatchCase=false;YAHOO.widget.AutoComplete.prototype.queryMatchContains=false;YAHOO.widget.AutoComplete.prototype.queryMatchSubset=false;YAHOO.widget.AutoComplete.prototype.minQueryLength=1;YAHOO.widget.AutoComplete.prototype.maxResultsDisplayed=10;YAHOO.widget.AutoComplete.prototype.queryDelay=0.2;YAHOO.widget.AutoComplete.prototype.typeAheadDelay=0.5;YAHOO.widget.AutoComplete.prototype.queryInterval=500;YAHOO.widget.AutoComplete.prototype.highlightClassName="yui-ac-highlight";YAHOO.widget.AutoComplete.prototype.prehighlightClassName=null;YAHOO.widget.AutoComplete.prototype.delimChar=null;YAHOO.widget.AutoComplete.prototype.autoHighlight=true;YAHOO.widget.AutoComplete.prototype.typeAhead=false;YAHOO.widget.AutoComplete.prototype.animHoriz=false;YAHOO.widget.AutoComplete.prototype.animVert=true;YAHOO.widget.AutoComplete.prototype.animSpeed=0.3;YAHOO.widget.AutoComplete.prototype.forceSelection=false;YAHOO.widget.AutoComplete.prototype.allowBrowserAutocomplete=true;YAHOO.widget.AutoComplete.prototype.alwaysShowContainer=false;YAHOO.widget.AutoComplete.prototype.useIFrame=false;YAHOO.widget.AutoComplete.prototype.useShadow=false;YAHOO.widget.AutoComplete.prototype.suppressInputUpdate=false;YAHOO.widget.AutoComplete.prototype.resultTypeList=true;YAHOO.widget.AutoComplete.prototype.queryQuestionMark=true;YAHOO.widget.AutoComplete.prototype.toString=function(){return"AutoComplete "+this._sName;};YAHOO.widget.AutoComplete.prototype.getInputEl=function(){return this._elTextbox;};YAHOO.widget.AutoComplete.prototype.getContainerEl=function(){return this._elContainer;
-};YAHOO.widget.AutoComplete.prototype.isFocused=function(){return(this._bFocused===null)?false:this._bFocused;};YAHOO.widget.AutoComplete.prototype.isContainerOpen=function(){return this._bContainerOpen;};YAHOO.widget.AutoComplete.prototype.getListEl=function(){return this._elList;};YAHOO.widget.AutoComplete.prototype.getListItemMatch=function(A){if(A._sResultMatch){return A._sResultMatch;}else{return null;}};YAHOO.widget.AutoComplete.prototype.getListItemData=function(A){if(A._oResultData){return A._oResultData;}else{return null;}};YAHOO.widget.AutoComplete.prototype.getListItemIndex=function(A){if(YAHOO.lang.isNumber(A._nItemIndex)){return A._nItemIndex;}else{return null;}};YAHOO.widget.AutoComplete.prototype.setHeader=function(B){if(this._elHeader){var A=this._elHeader;if(B){A.innerHTML=B;A.style.display="block";}else{A.innerHTML="";A.style.display="none";}}};YAHOO.widget.AutoComplete.prototype.setFooter=function(B){if(this._elFooter){var A=this._elFooter;if(B){A.innerHTML=B;A.style.display="block";}else{A.innerHTML="";A.style.display="none";}}};YAHOO.widget.AutoComplete.prototype.setBody=function(A){if(this._elBody){var B=this._elBody;YAHOO.util.Event.purgeElement(B,true);if(A){B.innerHTML=A;B.style.display="block";}else{B.innerHTML="";B.style.display="none";}this._elList=null;}};YAHOO.widget.AutoComplete.prototype.generateRequest=function(B){var A=this.dataSource.dataType;if(A===YAHOO.util.DataSourceBase.TYPE_XHR){if(!this.dataSource.connMethodPost){B=(this.queryQuestionMark?"?":"")+(this.dataSource.scriptQueryParam||"query")+"="+B+(this.dataSource.scriptQueryAppend?("&"+this.dataSource.scriptQueryAppend):"");}else{B=(this.dataSource.scriptQueryParam||"query")+"="+B+(this.dataSource.scriptQueryAppend?("&"+this.dataSource.scriptQueryAppend):"");}}else{if(A===YAHOO.util.DataSourceBase.TYPE_SCRIPTNODE){B="&"+(this.dataSource.scriptQueryParam||"query")+"="+B+(this.dataSource.scriptQueryAppend?("&"+this.dataSource.scriptQueryAppend):"");}}return B;};YAHOO.widget.AutoComplete.prototype.sendQuery=function(B){var A=(this.delimChar)?this._elTextbox.value+B:B;this._sendQuery(A);};YAHOO.widget.AutoComplete.prototype.collapseContainer=function(){this._toggleContainer(false);};YAHOO.widget.AutoComplete.prototype.getSubsetMatches=function(E){var D,C,A;for(var B=E.length;B>=this.minQueryLength;B--){A=this.generateRequest(E.substr(0,B));this.dataRequestEvent.fire(this,D,A);C=this.dataSource.getCachedResponse(A);if(C){return this.filterResults.apply(this.dataSource,[E,C,C,{scope:this}]);}}return null;};YAHOO.widget.AutoComplete.prototype.preparseRawResponse=function(C,B,A){var D=((this.responseStripAfter!=="")&&(B.indexOf))?B.indexOf(this.responseStripAfter):-1;if(D!=-1){B=B.substring(0,D);}return B;};YAHOO.widget.AutoComplete.prototype.filterResults=function(J,L,P,K){if(J&&J!==""){P=YAHOO.widget.AutoComplete._cloneObject(P);var H=K.scope,O=this,B=P.results,M=[],D=false,I=(O.queryMatchCase||H.queryMatchCase),A=(O.queryMatchContains||H.queryMatchContains);for(var C=B.length-1;C>=0;C--){var F=B[C];var E=null;if(YAHOO.lang.isString(F)){E=F;}else{if(YAHOO.lang.isArray(F)){E=F[0];}else{if(this.responseSchema.fields){var N=this.responseSchema.fields[0].key||this.responseSchema.fields[0];E=F[N];}else{if(this.key){E=F[this.key];}}}}if(YAHOO.lang.isString(E)){var G=(I)?E.indexOf(decodeURIComponent(J)):E.toLowerCase().indexOf(decodeURIComponent(J).toLowerCase());if((!A&&(G===0))||(A&&(G>-1))){M.unshift(F);}}}P.results=M;}else{}return P;};YAHOO.widget.AutoComplete.prototype.handleResponse=function(C,A,B){if((this instanceof YAHOO.widget.AutoComplete)&&this._sName){this._populateList(C,A,B);}};YAHOO.widget.AutoComplete.prototype.doBeforeLoadData=function(C,A,B){return true;};YAHOO.widget.AutoComplete.prototype.formatResult=function(B,D,A){var C=(A)?A:"";return C;};YAHOO.widget.AutoComplete.prototype.doBeforeExpandContainer=function(D,A,C,B){return true;};YAHOO.widget.AutoComplete.prototype.destroy=function(){var B=this.toString();var A=this._elTextbox;var D=this._elContainer;this.textboxFocusEvent.unsubscribeAll();this.textboxKeyEvent.unsubscribeAll();this.dataRequestEvent.unsubscribeAll();this.dataReturnEvent.unsubscribeAll();this.dataErrorEvent.unsubscribeAll();this.containerPopulateEvent.unsubscribeAll();this.containerExpandEvent.unsubscribeAll();this.typeAheadEvent.unsubscribeAll();this.itemMouseOverEvent.unsubscribeAll();this.itemMouseOutEvent.unsubscribeAll();this.itemArrowToEvent.unsubscribeAll();this.itemArrowFromEvent.unsubscribeAll();this.itemSelectEvent.unsubscribeAll();this.unmatchedItemSelectEvent.unsubscribeAll();this.selectionEnforceEvent.unsubscribeAll();this.containerCollapseEvent.unsubscribeAll();this.textboxBlurEvent.unsubscribeAll();this.textboxChangeEvent.unsubscribeAll();YAHOO.util.Event.purgeElement(A,true);YAHOO.util.Event.purgeElement(D,true);D.innerHTML="";for(var C in this){if(YAHOO.lang.hasOwnProperty(this,C)){this[C]=null;}}};YAHOO.widget.AutoComplete.prototype.textboxFocusEvent=null;YAHOO.widget.AutoComplete.prototype.textboxKeyEvent=null;YAHOO.widget.AutoComplete.prototype.dataRequestEvent=null;YAHOO.widget.AutoComplete.prototype.dataReturnEvent=null;YAHOO.widget.AutoComplete.prototype.dataErrorEvent=null;YAHOO.widget.AutoComplete.prototype.containerPopulateEvent=null;YAHOO.widget.AutoComplete.prototype.containerExpandEvent=null;YAHOO.widget.AutoComplete.prototype.typeAheadEvent=null;YAHOO.widget.AutoComplete.prototype.itemMouseOverEvent=null;YAHOO.widget.AutoComplete.prototype.itemMouseOutEvent=null;YAHOO.widget.AutoComplete.prototype.itemArrowToEvent=null;YAHOO.widget.AutoComplete.prototype.itemArrowFromEvent=null;YAHOO.widget.AutoComplete.prototype.itemSelectEvent=null;YAHOO.widget.AutoComplete.prototype.unmatchedItemSelectEvent=null;YAHOO.widget.AutoComplete.prototype.selectionEnforceEvent=null;YAHOO.widget.AutoComplete.prototype.containerCollapseEvent=null;YAHOO.widget.AutoComplete.prototype.textboxBlurEvent=null;YAHOO.widget.AutoComplete.prototype.textboxChangeEvent=null;YAHOO.widget.AutoComplete._nIndex=0;
-YAHOO.widget.AutoComplete.prototype._sName=null;YAHOO.widget.AutoComplete.prototype._elTextbox=null;YAHOO.widget.AutoComplete.prototype._elContainer=null;YAHOO.widget.AutoComplete.prototype._elContent=null;YAHOO.widget.AutoComplete.prototype._elHeader=null;YAHOO.widget.AutoComplete.prototype._elBody=null;YAHOO.widget.AutoComplete.prototype._elFooter=null;YAHOO.widget.AutoComplete.prototype._elShadow=null;YAHOO.widget.AutoComplete.prototype._elIFrame=null;YAHOO.widget.AutoComplete.prototype._bFocused=null;YAHOO.widget.AutoComplete.prototype._oAnim=null;YAHOO.widget.AutoComplete.prototype._bContainerOpen=false;YAHOO.widget.AutoComplete.prototype._bOverContainer=false;YAHOO.widget.AutoComplete.prototype._elList=null;YAHOO.widget.AutoComplete.prototype._nDisplayedItems=0;YAHOO.widget.AutoComplete.prototype._sCurQuery=null;YAHOO.widget.AutoComplete.prototype._sPastSelections="";YAHOO.widget.AutoComplete.prototype._sInitInputValue=null;YAHOO.widget.AutoComplete.prototype._elCurListItem=null;YAHOO.widget.AutoComplete.prototype._bItemSelected=false;YAHOO.widget.AutoComplete.prototype._nKeyCode=null;YAHOO.widget.AutoComplete.prototype._nDelayID=-1;YAHOO.widget.AutoComplete.prototype._nTypeAheadDelayID=-1;YAHOO.widget.AutoComplete.prototype._iFrameSrc="javascript:false;";YAHOO.widget.AutoComplete.prototype._queryInterval=null;YAHOO.widget.AutoComplete.prototype._sLastTextboxValue=null;YAHOO.widget.AutoComplete.prototype._initProps=function(){var B=this.minQueryLength;if(!YAHOO.lang.isNumber(B)){this.minQueryLength=1;}var E=this.maxResultsDisplayed;if(!YAHOO.lang.isNumber(E)||(E<1)){this.maxResultsDisplayed=10;}var F=this.queryDelay;if(!YAHOO.lang.isNumber(F)||(F<0)){this.queryDelay=0.2;}var C=this.typeAheadDelay;if(!YAHOO.lang.isNumber(C)||(C<0)){this.typeAheadDelay=0.2;}var A=this.delimChar;if(YAHOO.lang.isString(A)&&(A.length>0)){this.delimChar=[A];}else{if(!YAHOO.lang.isArray(A)){this.delimChar=null;}}var D=this.animSpeed;if((this.animHoriz||this.animVert)&&YAHOO.util.Anim){if(!YAHOO.lang.isNumber(D)||(D<0)){this.animSpeed=0.3;}if(!this._oAnim){this._oAnim=new YAHOO.util.Anim(this._elContent,{},this.animSpeed);}else{this._oAnim.duration=this.animSpeed;}}if(this.forceSelection&&A){}};YAHOO.widget.AutoComplete.prototype._initContainerHelperEls=function(){if(this.useShadow&&!this._elShadow){var A=document.createElement("div");A.className="yui-ac-shadow";A.style.width=0;A.style.height=0;this._elShadow=this._elContainer.appendChild(A);}if(this.useIFrame&&!this._elIFrame){var B=document.createElement("iframe");B.src=this._iFrameSrc;B.frameBorder=0;B.scrolling="no";B.style.position="absolute";B.style.width=0;B.style.height=0;B.tabIndex=-1;B.style.padding=0;this._elIFrame=this._elContainer.appendChild(B);}};YAHOO.widget.AutoComplete.prototype._initContainerEl=function(){YAHOO.util.Dom.addClass(this._elContainer,"yui-ac-container");if(!this._elContent){var C=document.createElement("div");C.className="yui-ac-content";C.style.display="none";this._elContent=this._elContainer.appendChild(C);var B=document.createElement("div");B.className="yui-ac-hd";B.style.display="none";this._elHeader=this._elContent.appendChild(B);var D=document.createElement("div");D.className="yui-ac-bd";this._elBody=this._elContent.appendChild(D);var A=document.createElement("div");A.className="yui-ac-ft";A.style.display="none";this._elFooter=this._elContent.appendChild(A);}else{}};YAHOO.widget.AutoComplete.prototype._initListEl=function(){var C=this.maxResultsDisplayed;var A=this._elList||document.createElement("ul");var B;while(A.childNodes.length<C){B=document.createElement("li");B.style.display="none";B._nItemIndex=A.childNodes.length;A.appendChild(B);}if(!this._elList){var D=this._elBody;YAHOO.util.Event.purgeElement(D,true);D.innerHTML="";this._elList=D.appendChild(A);}};YAHOO.widget.AutoComplete.prototype._enableIntervalDetection=function(){var A=this;if(!A._queryInterval&&A.queryInterval){A._queryInterval=setInterval(function(){A._onInterval();},A.queryInterval);}};YAHOO.widget.AutoComplete.prototype._onInterval=function(){var A=this._elTextbox.value;var B=this._sLastTextboxValue;if(A!=B){this._sLastTextboxValue=A;this._sendQuery(A);}};YAHOO.widget.AutoComplete.prototype._clearInterval=function(){if(this._queryInterval){clearInterval(this._queryInterval);this._queryInterval=null;}};YAHOO.widget.AutoComplete.prototype._isIgnoreKey=function(A){if((A==9)||(A==13)||(A==16)||(A==17)||(A>=18&&A<=20)||(A==27)||(A>=33&&A<=35)||(A>=36&&A<=40)||(A>=44&&A<=45)||(A==229)){return true;}return false;};YAHOO.widget.AutoComplete.prototype._sendQuery=function(G){if(this.minQueryLength<0){this._toggleContainer(false);return ;}var I=(this.delimChar)?this.delimChar:null;if(I){var B=-1;for(var F=I.length-1;F>=0;F--){var D=G.lastIndexOf(I[F]);if(D>B){B=D;}}if(I[F]==" "){for(var E=I.length-1;E>=0;E--){if(G[B-1]==I[E]){B--;break;}}}if(B>-1){var H=B+1;while(G.charAt(H)==" "){H+=1;}this._sPastSelections=G.substring(0,H);G=G.substr(H);}else{this._sPastSelections="";}}if((G&&(G.length<this.minQueryLength))||(!G&&this.minQueryLength>0)){if(this._nDelayID!=-1){clearTimeout(this._nDelayID);}this._toggleContainer(false);return ;}G=encodeURIComponent(G);this._nDelayID=-1;if(this.dataSource.queryMatchSubset||this.queryMatchSubset){var A=this.getSubsetMatches(G);if(A){this.handleResponse(G,A,{query:G});return ;}}if(this.responseStripAfter){this.dataSource.doBeforeParseData=this.preparseRawResponse;}if(this.applyLocalFilter){this.dataSource.doBeforeCallback=this.filterResults;}var C=this.generateRequest(G);this.dataRequestEvent.fire(this,G,C);this.dataSource.sendRequest(C,{success:this.handleResponse,failure:this.handleResponse,scope:this,argument:{query:G}});};YAHOO.widget.AutoComplete.prototype._populateList=function(K,F,C){if(this._nTypeAheadDelayID!=-1){clearTimeout(this._nTypeAheadDelayID);}K=(C&&C.query)?C.query:K;var H=this.doBeforeLoadData(K,F,C);if(H&&!F.error){this.dataReturnEvent.fire(this,K,F.results);if(this._bFocused||(this._bFocused===null)){var M=decodeURIComponent(K);
-this._sCurQuery=M;this._bItemSelected=false;var R=F.results,A=Math.min(R.length,this.maxResultsDisplayed),J=(this.dataSource.responseSchema.fields)?(this.dataSource.responseSchema.fields[0].key||this.dataSource.responseSchema.fields[0]):0;if(A>0){if(!this._elList||(this._elList.childNodes.length<A)){this._initListEl();}this._initContainerHelperEls();var I=this._elList.childNodes;for(var Q=A-1;Q>=0;Q--){var P=I[Q],E=R[Q];if(this.resultTypeList){var B=[];B[0]=(YAHOO.lang.isString(E))?E:E[J]||E[this.key];var L=this.dataSource.responseSchema.fields;if(YAHOO.lang.isArray(L)&&(L.length>1)){for(var N=1,S=L.length;N<S;N++){B[B.length]=E[L[N].key||L[N]];}}else{if(YAHOO.lang.isArray(E)){B=E;}else{if(YAHOO.lang.isString(E)){B=[E];}else{B[1]=E;}}}E=B;}P._sResultMatch=(YAHOO.lang.isString(E))?E:(YAHOO.lang.isArray(E))?E[0]:(E[J]||"");P._oResultData=E;P.innerHTML=this.formatResult(E,M,P._sResultMatch);P.style.display="";}if(A<I.length){var G;for(var O=I.length-1;O>=A;O--){G=I[O];G.style.display="none";}}this._nDisplayedItems=A;this.containerPopulateEvent.fire(this,K,R);if(this.autoHighlight){var D=this._elList.firstChild;this._toggleHighlight(D,"to");this.itemArrowToEvent.fire(this,D);this._typeAhead(D,K);}else{this._toggleHighlight(this._elCurListItem,"from");}H=this.doBeforeExpandContainer(this._elTextbox,this._elContainer,K,R);this._toggleContainer(H);}else{this._toggleContainer(false);}return ;}}else{this.dataErrorEvent.fire(this,K);}};YAHOO.widget.AutoComplete.prototype._clearSelection=function(){var C=this._elTextbox.value;var B=(this.delimChar)?this.delimChar[0]:null;var A=(B)?C.lastIndexOf(B,C.length-2):-1;if(A>-1){this._elTextbox.value=C.substring(0,A);}else{this._elTextbox.value="";}this._sPastSelections=this._elTextbox.value;this.selectionEnforceEvent.fire(this);};YAHOO.widget.AutoComplete.prototype._textMatchesOption=function(){var A=null;for(var B=this._nDisplayedItems-1;B>=0;B--){var C=this._elList.childNodes[B];var D=(""+C._sResultMatch).toLowerCase();if(D==this._sCurQuery.toLowerCase()){A=C;break;}}return(A);};YAHOO.widget.AutoComplete.prototype._typeAhead=function(B,D){if(!this.typeAhead||(this._nKeyCode==8)){return ;}var A=this,C=this._elTextbox;if(C.setSelectionRange||C.createTextRange){this._nTypeAheadDelayID=setTimeout(function(){var F=C.value.length;A._updateValue(B);var G=C.value.length;A._selectText(C,F,G);var E=C.value.substr(F,G);A.typeAheadEvent.fire(A,D,E);},(this.typeAheadDelay*1000));}};YAHOO.widget.AutoComplete.prototype._selectText=function(D,A,B){if(D.setSelectionRange){D.setSelectionRange(A,B);}else{if(D.createTextRange){var C=D.createTextRange();C.moveStart("character",A);C.moveEnd("character",B-D.value.length);C.select();}else{D.select();}}};YAHOO.widget.AutoComplete.prototype._toggleContainerHelpers=function(D){var E=this._elContent.offsetWidth+"px";var B=this._elContent.offsetHeight+"px";if(this.useIFrame&&this._elIFrame){var C=this._elIFrame;if(D){C.style.width=E;C.style.height=B;C.style.padding="";}else{C.style.width=0;C.style.height=0;C.style.padding=0;}}if(this.useShadow&&this._elShadow){var A=this._elShadow;if(D){A.style.width=E;A.style.height=B;}else{A.style.width=0;A.style.height=0;}}};YAHOO.widget.AutoComplete.prototype._toggleContainer=function(I){var D=this._elContainer;if(this.alwaysShowContainer&&this._bContainerOpen){return ;}if(!I){this._toggleHighlight(this._elCurListItem,"from");this._nDisplayedItems=0;this._sCurQuery=null;if(!this._bContainerOpen){this._elContent.style.display="none";return ;}}var A=this._oAnim;if(A&&A.getEl()&&(this.animHoriz||this.animVert)){if(A.isAnimated()){A.stop(true);}var G=this._elContent.cloneNode(true);D.appendChild(G);G.style.top="-9000px";G.style.width="";G.style.height="";G.style.display="";var F=G.offsetWidth;var C=G.offsetHeight;var B=(this.animHoriz)?0:F;var E=(this.animVert)?0:C;A.attributes=(I)?{width:{to:F},height:{to:C}}:{width:{to:B},height:{to:E}};if(I&&!this._bContainerOpen){this._elContent.style.width=B+"px";this._elContent.style.height=E+"px";}else{this._elContent.style.width=F+"px";this._elContent.style.height=C+"px";}D.removeChild(G);G=null;var H=this;var J=function(){A.onComplete.unsubscribeAll();if(I){H._toggleContainerHelpers(true);H._bContainerOpen=I;H.containerExpandEvent.fire(H);}else{H._elContent.style.display="none";H._bContainerOpen=I;H.containerCollapseEvent.fire(H);}};this._toggleContainerHelpers(false);this._elContent.style.display="";A.onComplete.subscribe(J);A.animate();}else{if(I){this._elContent.style.display="";this._toggleContainerHelpers(true);this._bContainerOpen=I;this.containerExpandEvent.fire(this);}else{this._toggleContainerHelpers(false);this._elContent.style.display="none";this._bContainerOpen=I;this.containerCollapseEvent.fire(this);}}};YAHOO.widget.AutoComplete.prototype._toggleHighlight=function(A,C){if(A){var B=this.highlightClassName;if(this._elCurListItem){YAHOO.util.Dom.removeClass(this._elCurListItem,B);this._elCurListItem=null;}if((C=="to")&&B){YAHOO.util.Dom.addClass(A,B);this._elCurListItem=A;}}};YAHOO.widget.AutoComplete.prototype._togglePrehighlight=function(B,C){if(B==this._elCurListItem){return ;}var A=this.prehighlightClassName;if((C=="mouseover")&&A){YAHOO.util.Dom.addClass(B,A);}else{YAHOO.util.Dom.removeClass(B,A);}};YAHOO.widget.AutoComplete.prototype._updateValue=function(C){if(!this.suppressInputUpdate){var F=this._elTextbox;var E=(this.delimChar)?(this.delimChar[0]||this.delimChar):null;var B=C._sResultMatch;var D="";if(E){D=this._sPastSelections;D+=B+E;if(E!=" "){D+=" ";}}else{D=B;}F.value=D;if(F.type=="textarea"){F.scrollTop=F.scrollHeight;}var A=F.value.length;this._selectText(F,A,A);this._elCurListItem=C;}};YAHOO.widget.AutoComplete.prototype._selectItem=function(A){this._bItemSelected=true;this._updateValue(A);this._sPastSelections=this._elTextbox.value;this._clearInterval();this.itemSelectEvent.fire(this,A,A._oResultData);this._toggleContainer(false);};YAHOO.widget.AutoComplete.prototype._jumpSelection=function(){if(this._elCurListItem){this._selectItem(this._elCurListItem);
-}else{this._toggleContainer(false);}};YAHOO.widget.AutoComplete.prototype._moveSelection=function(G){if(this._bContainerOpen){var F=this._elCurListItem;var E=-1;if(F){E=F._nItemIndex;}var C=(G==40)?(E+1):(E-1);if(C<-2||C>=this._nDisplayedItems){return ;}if(F){this._toggleHighlight(F,"from");this.itemArrowFromEvent.fire(this,F);}if(C==-1){if(this.delimChar){this._elTextbox.value=this._sPastSelections+this._sCurQuery;}else{this._elTextbox.value=this._sCurQuery;}return ;}if(C==-2){this._toggleContainer(false);return ;}var D=this._elList.childNodes[C];var A=this._elContent;var B=((YAHOO.util.Dom.getStyle(A,"overflow")=="auto")||(YAHOO.util.Dom.getStyle(A,"overflowY")=="auto"));if(B&&(C>-1)&&(C<this._nDisplayedItems)){if(G==40){if((D.offsetTop+D.offsetHeight)>(A.scrollTop+A.offsetHeight)){A.scrollTop=(D.offsetTop+D.offsetHeight)-A.offsetHeight;}else{if((D.offsetTop+D.offsetHeight)<A.scrollTop){A.scrollTop=D.offsetTop;}}}else{if(D.offsetTop<A.scrollTop){this._elContent.scrollTop=D.offsetTop;}else{if(D.offsetTop>(A.scrollTop+A.offsetHeight)){this._elContent.scrollTop=(D.offsetTop+D.offsetHeight)-A.offsetHeight;}}}}this._toggleHighlight(D,"to");this.itemArrowToEvent.fire(this,D);if(this.typeAhead){this._updateValue(D);}}};YAHOO.widget.AutoComplete.prototype._onContainerMouseover=function(A,C){var D=YAHOO.util.Event.getTarget(A);var B=D.nodeName.toLowerCase();while(D&&(B!="table")){switch(B){case"body":return ;case"li":if(C.prehighlightClassName){C._togglePrehighlight(D,"mouseover");}else{C._toggleHighlight(D,"to");}C.itemMouseOverEvent.fire(C,D);break;case"div":if(YAHOO.util.Dom.hasClass(D,"yui-ac-container")){C._bOverContainer=true;return ;}break;default:break;}D=D.parentNode;if(D){B=D.nodeName.toLowerCase();}}};YAHOO.widget.AutoComplete.prototype._onContainerMouseout=function(A,C){var D=YAHOO.util.Event.getTarget(A);var B=D.nodeName.toLowerCase();while(D&&(B!="table")){switch(B){case"body":return ;case"li":if(C.prehighlightClassName){C._togglePrehighlight(D,"mouseout");}else{C._toggleHighlight(D,"from");}C.itemMouseOutEvent.fire(C,D);break;case"ul":C._toggleHighlight(C._elCurListItem,"to");break;case"div":if(YAHOO.util.Dom.hasClass(D,"yui-ac-container")){C._bOverContainer=false;return ;}break;default:break;}D=D.parentNode;if(D){B=D.nodeName.toLowerCase();}}};YAHOO.widget.AutoComplete.prototype._onContainerClick=function(A,C){var D=YAHOO.util.Event.getTarget(A);var B=D.nodeName.toLowerCase();while(D&&(B!="table")){switch(B){case"body":return ;case"li":C._toggleHighlight(D,"to");C._selectItem(D);return ;default:break;}D=D.parentNode;if(D){B=D.nodeName.toLowerCase();}}};YAHOO.widget.AutoComplete.prototype._onContainerScroll=function(A,B){B._elTextbox.focus();};YAHOO.widget.AutoComplete.prototype._onContainerResize=function(A,B){B._toggleContainerHelpers(B._bContainerOpen);};YAHOO.widget.AutoComplete.prototype._onTextboxKeyDown=function(A,B){var C=A.keyCode;if(B._nTypeAheadDelayID!=-1){clearTimeout(B._nTypeAheadDelayID);}switch(C){case 9:if(!YAHOO.env.ua.opera&&(navigator.userAgent.toLowerCase().indexOf("mac")==-1)||(YAHOO.env.ua.webkit>420)){if(B._elCurListItem){if(B.delimChar&&(B._nKeyCode!=C)){if(B._bContainerOpen){YAHOO.util.Event.stopEvent(A);}}B._selectItem(B._elCurListItem);}else{B._toggleContainer(false);}}break;case 13:if(!YAHOO.env.ua.opera&&(navigator.userAgent.toLowerCase().indexOf("mac")==-1)||(YAHOO.env.ua.webkit>420)){if(B._elCurListItem){if(B._nKeyCode!=C){if(B._bContainerOpen){YAHOO.util.Event.stopEvent(A);}}B._selectItem(B._elCurListItem);}else{B._toggleContainer(false);}}break;case 27:B._toggleContainer(false);return ;case 39:B._jumpSelection();break;case 38:if(B._bContainerOpen){YAHOO.util.Event.stopEvent(A);B._moveSelection(C);}break;case 40:if(B._bContainerOpen){YAHOO.util.Event.stopEvent(A);B._moveSelection(C);}break;default:B._bItemSelected=false;B._toggleHighlight(B._elCurListItem,"from");B.textboxKeyEvent.fire(B,C);break;}if(C===18){B._enableIntervalDetection();}B._nKeyCode=C;};YAHOO.widget.AutoComplete.prototype._onTextboxKeyPress=function(A,B){var C=A.keyCode;if(YAHOO.env.ua.opera||(navigator.userAgent.toLowerCase().indexOf("mac")!=-1)&&(YAHOO.env.ua.webkit<420)){switch(C){case 9:if(B._bContainerOpen){if(B.delimChar){YAHOO.util.Event.stopEvent(A);}if(B._elCurListItem){B._selectItem(B._elCurListItem);}else{B._toggleContainer(false);}}break;case 13:if(B._bContainerOpen){YAHOO.util.Event.stopEvent(A);if(B._elCurListItem){B._selectItem(B._elCurListItem);}else{B._toggleContainer(false);}}break;default:break;}}else{if(C==229){B._enableIntervalDetection();}}};YAHOO.widget.AutoComplete.prototype._onTextboxKeyUp=function(A,C){var B=this.value;C._initProps();var D=A.keyCode;if(C._isIgnoreKey(D)){return ;}if(C._nDelayID!=-1){clearTimeout(C._nDelayID);}C._nDelayID=setTimeout(function(){C._sendQuery(B);},(C.queryDelay*1000));};YAHOO.widget.AutoComplete.prototype._onTextboxFocus=function(A,B){if(!B._bFocused){B._elTextbox.setAttribute("autocomplete","off");B._bFocused=true;B._sInitInputValue=B._elTextbox.value;B.textboxFocusEvent.fire(B);}};YAHOO.widget.AutoComplete.prototype._onTextboxBlur=function(A,C){if(!C._bOverContainer||(C._nKeyCode==9)){if(!C._bItemSelected){var B=C._textMatchesOption();if(!C._bContainerOpen||(C._bContainerOpen&&(B===null))){if(C.forceSelection){C._clearSelection();}else{C.unmatchedItemSelectEvent.fire(C,C._sCurQuery);}}else{if(C.forceSelection){C._selectItem(B);}}}if(C._bContainerOpen){C._toggleContainer(false);}C._clearInterval();C._bFocused=false;if(C._sInitInputValue!==C._elTextbox.value){C.textboxChangeEvent.fire(C);}C.textboxBlurEvent.fire(C);}};YAHOO.widget.AutoComplete.prototype._onWindowUnload=function(A,B){if(B&&B._elTextbox&&B.allowBrowserAutocomplete){B._elTextbox.setAttribute("autocomplete","on");}};YAHOO.widget.AutoComplete.prototype.doBeforeSendQuery=function(A){return this.generateRequest(A);};YAHOO.widget.AutoComplete.prototype.getListItems=function(){var C=[],B=this._elList.childNodes;for(var A=B.length-1;A>=0;A--){C[A]=B[A];}return C;};YAHOO.widget.AutoComplete._cloneObject=function(D){if(!YAHOO.lang.isValue(D)){return D;
-}var F={};if(YAHOO.lang.isFunction(D)){F=D;}else{if(YAHOO.lang.isArray(D)){var E=[];for(var C=0,B=D.length;C<B;C++){E[C]=YAHOO.widget.AutoComplete._cloneObject(D[C]);}F=E;}else{if(YAHOO.lang.isObject(D)){for(var A in D){if(YAHOO.lang.hasOwnProperty(D,A)){if(YAHOO.lang.isValue(D[A])&&YAHOO.lang.isObject(D[A])||YAHOO.lang.isArray(D[A])){F[A]=YAHOO.widget.AutoComplete._cloneObject(D[A]);}else{F[A]=D[A];}}}}else{F=D;}}}return F;};YAHOO.register("autocomplete",YAHOO.widget.AutoComplete,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/autocomplete/autocomplete.js b/eclipse.org-common/yui/2.6.0/build/autocomplete/autocomplete.js
deleted file mode 100644
index 90e4bb1..0000000
--- a/eclipse.org-common/yui/2.6.0/build/autocomplete/autocomplete.js
+++ /dev/null
@@ -1,2873 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/////////////////////////////////////////////////////////////////////////////
-//
-// YAHOO.widget.DataSource Backwards Compatibility
-//
-/////////////////////////////////////////////////////////////////////////////
-
-YAHOO.widget.DS_JSArray = YAHOO.util.LocalDataSource;
-
-YAHOO.widget.DS_JSFunction = YAHOO.util.FunctionDataSource;
-
-YAHOO.widget.DS_XHR = function(sScriptURI, aSchema, oConfigs) {
-    var DS = new YAHOO.util.XHRDataSource(sScriptURI, oConfigs);
-    DS._aDeprecatedSchema = aSchema;
-    return DS;
-};
-
-YAHOO.widget.DS_ScriptNode = function(sScriptURI, aSchema, oConfigs) {
-    var DS = new YAHOO.util.ScriptNodeDataSource(sScriptURI, oConfigs);
-    DS._aDeprecatedSchema = aSchema;
-    return DS;
-};
-
-YAHOO.widget.DS_XHR.TYPE_JSON = YAHOO.util.DataSourceBase.TYPE_JSON;
-YAHOO.widget.DS_XHR.TYPE_XML = YAHOO.util.DataSourceBase.TYPE_XML;
-YAHOO.widget.DS_XHR.TYPE_FLAT = YAHOO.util.DataSourceBase.TYPE_TEXT;
-
-// TODO: widget.DS_ScriptNode.scriptCallbackParam
-
-
-
- /**
- * The AutoComplete control provides the front-end logic for text-entry suggestion and
- * completion functionality.
- *
- * @module autocomplete
- * @requires yahoo, dom, event, datasource
- * @optional animation
- * @namespace YAHOO.widget
- * @title AutoComplete Widget
- */
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The AutoComplete class provides the customizable functionality of a plug-and-play DHTML
- * auto completion widget.  Some key features:
- * <ul>
- * <li>Navigate with up/down arrow keys and/or mouse to pick a selection</li>
- * <li>The drop down container can "roll down" or "fly out" via configurable
- * animation</li>
- * <li>UI look-and-feel customizable through CSS, including container
- * attributes, borders, position, fonts, etc</li>
- * </ul>
- *
- * @class AutoComplete
- * @constructor
- * @param elInput {HTMLElement} DOM element reference of an input field.
- * @param elInput {String} String ID of an input field.
- * @param elContainer {HTMLElement} DOM element reference of an existing DIV.
- * @param elContainer {String} String ID of an existing DIV.
- * @param oDataSource {YAHOO.widget.DataSource} DataSource instance.
- * @param oConfigs {Object} (optional) Object literal of configuration params.
- */
-YAHOO.widget.AutoComplete = function(elInput,elContainer,oDataSource,oConfigs) {
-    if(elInput && elContainer && oDataSource) {
-        // Validate DataSource
-        if(oDataSource instanceof YAHOO.util.DataSourceBase) {
-            this.dataSource = oDataSource;
-        }
-        else {
-            return;
-        }
-
-        // YAHOO.widget.DataSource schema backwards compatibility
-        // Converted deprecated schema into supported schema
-        // First assume key data is held in position 0 of results array
-        this.key = 0;
-        var schema = oDataSource.responseSchema;
-        // An old school schema has been defined in the deprecated DataSource constructor
-        if(oDataSource._aDeprecatedSchema) {
-            var aDeprecatedSchema = oDataSource._aDeprecatedSchema;
-            if(YAHOO.lang.isArray(aDeprecatedSchema)) {
-                
-                if((oDataSource.responseType === YAHOO.util.DataSourceBase.TYPE_JSON) || 
-                (oDataSource.responseType === YAHOO.util.DataSourceBase.TYPE_UNKNOWN)) { // Used to default to unknown
-                    // Store the resultsList
-                    schema.resultsList = aDeprecatedSchema[0];
-                    // Store the key
-                    this.key = aDeprecatedSchema[1];
-                    // Only resultsList and key are defined, so grab all the data
-                    schema.fields = (aDeprecatedSchema.length < 3) ? null : aDeprecatedSchema.slice(1);
-                }
-                else if(oDataSource.responseType === YAHOO.util.DataSourceBase.TYPE_XML) {
-                    schema.resultNode = aDeprecatedSchema[0];
-                    this.key = aDeprecatedSchema[1];
-                    schema.fields = aDeprecatedSchema.slice(1);
-                }                
-                else if(oDataSource.responseType === YAHOO.util.DataSourceBase.TYPE_TEXT) {
-                    schema.recordDelim = aDeprecatedSchema[0];
-                    schema.fieldDelim = aDeprecatedSchema[1];
-                }                
-                oDataSource.responseSchema = schema;
-            }
-        }
-        
-        // Validate input element
-        if(YAHOO.util.Dom.inDocument(elInput)) {
-            if(YAHOO.lang.isString(elInput)) {
-                    this._sName = "instance" + YAHOO.widget.AutoComplete._nIndex + " " + elInput;
-                    this._elTextbox = document.getElementById(elInput);
-            }
-            else {
-                this._sName = (elInput.id) ?
-                    "instance" + YAHOO.widget.AutoComplete._nIndex + " " + elInput.id:
-                    "instance" + YAHOO.widget.AutoComplete._nIndex;
-                this._elTextbox = elInput;
-            }
-            YAHOO.util.Dom.addClass(this._elTextbox, "yui-ac-input");
-        }
-        else {
-            return;
-        }
-
-        // Validate container element
-        if(YAHOO.util.Dom.inDocument(elContainer)) {
-            if(YAHOO.lang.isString(elContainer)) {
-                    this._elContainer = document.getElementById(elContainer);
-            }
-            else {
-                this._elContainer = elContainer;
-            }
-            if(this._elContainer.style.display == "none") {
-            }
-            
-            // For skinning
-            var elParent = this._elContainer.parentNode;
-            var elTag = elParent.tagName.toLowerCase();
-            if(elTag == "div") {
-                YAHOO.util.Dom.addClass(elParent, "yui-ac");
-            }
-            else {
-            }
-        }
-        else {
-            return;
-        }
-
-        // Default applyLocalFilter setting is to enable for local sources
-        if(this.dataSource.dataType === YAHOO.util.DataSourceBase.TYPE_LOCAL) {
-            this.applyLocalFilter = true;
-        }
-        
-        // Set any config params passed in to override defaults
-        if(oConfigs && (oConfigs.constructor == Object)) {
-            for(var sConfig in oConfigs) {
-                if(sConfig) {
-                    this[sConfig] = oConfigs[sConfig];
-                }
-            }
-        }
-
-        // Initialization sequence
-        this._initContainerEl();
-        this._initProps();
-        this._initListEl();
-        this._initContainerHelperEls();
-
-        // Set up events
-        var oSelf = this;
-        var elTextbox = this._elTextbox;
-
-        // Dom events
-        YAHOO.util.Event.addListener(elTextbox,"keyup",oSelf._onTextboxKeyUp,oSelf);
-        YAHOO.util.Event.addListener(elTextbox,"keydown",oSelf._onTextboxKeyDown,oSelf);
-        YAHOO.util.Event.addListener(elTextbox,"focus",oSelf._onTextboxFocus,oSelf);
-        YAHOO.util.Event.addListener(elTextbox,"blur",oSelf._onTextboxBlur,oSelf);
-        YAHOO.util.Event.addListener(elContainer,"mouseover",oSelf._onContainerMouseover,oSelf);
-        YAHOO.util.Event.addListener(elContainer,"mouseout",oSelf._onContainerMouseout,oSelf);
-        YAHOO.util.Event.addListener(elContainer,"click",oSelf._onContainerClick,oSelf);
-        YAHOO.util.Event.addListener(elContainer,"scroll",oSelf._onContainerScroll,oSelf);
-        YAHOO.util.Event.addListener(elContainer,"resize",oSelf._onContainerResize,oSelf);
-        YAHOO.util.Event.addListener(elTextbox,"keypress",oSelf._onTextboxKeyPress,oSelf);
-        YAHOO.util.Event.addListener(window,"unload",oSelf._onWindowUnload,oSelf);
-
-        // Custom events
-        this.textboxFocusEvent = new YAHOO.util.CustomEvent("textboxFocus", this);
-        this.textboxKeyEvent = new YAHOO.util.CustomEvent("textboxKey", this);
-        this.dataRequestEvent = new YAHOO.util.CustomEvent("dataRequest", this);
-        this.dataReturnEvent = new YAHOO.util.CustomEvent("dataReturn", this);
-        this.dataErrorEvent = new YAHOO.util.CustomEvent("dataError", this);
-        this.containerPopulateEvent = new YAHOO.util.CustomEvent("containerPopulate", this);
-        this.containerExpandEvent = new YAHOO.util.CustomEvent("containerExpand", this);
-        this.typeAheadEvent = new YAHOO.util.CustomEvent("typeAhead", this);
-        this.itemMouseOverEvent = new YAHOO.util.CustomEvent("itemMouseOver", this);
-        this.itemMouseOutEvent = new YAHOO.util.CustomEvent("itemMouseOut", this);
-        this.itemArrowToEvent = new YAHOO.util.CustomEvent("itemArrowTo", this);
-        this.itemArrowFromEvent = new YAHOO.util.CustomEvent("itemArrowFrom", this);
-        this.itemSelectEvent = new YAHOO.util.CustomEvent("itemSelect", this);
-        this.unmatchedItemSelectEvent = new YAHOO.util.CustomEvent("unmatchedItemSelect", this);
-        this.selectionEnforceEvent = new YAHOO.util.CustomEvent("selectionEnforce", this);
-        this.containerCollapseEvent = new YAHOO.util.CustomEvent("containerCollapse", this);
-        this.textboxBlurEvent = new YAHOO.util.CustomEvent("textboxBlur", this);
-        this.textboxChangeEvent = new YAHOO.util.CustomEvent("textboxChange", this);
-        
-        // Finish up
-        elTextbox.setAttribute("autocomplete","off");
-        YAHOO.widget.AutoComplete._nIndex++;
-    }
-    // Required arguments were not found
-    else {
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * The DataSource object that encapsulates the data used for auto completion.
- * This object should be an inherited object from YAHOO.widget.DataSource.
- *
- * @property dataSource
- * @type YAHOO.widget.DataSource
- */
-YAHOO.widget.AutoComplete.prototype.dataSource = null;
-
-/**
- * By default, results from local DataSources will pass through the filterResults
- * method to apply a client-side matching algorithm. 
- * 
- * @property applyLocalFilter
- * @type Boolean
- * @default true for local arrays and json, otherwise false
- */
-YAHOO.widget.AutoComplete.prototype.applyLocalFilter = null;
-
-/**
- * When applyLocalFilter is true, the local filtering algorthim can have case sensitivity
- * enabled. 
- * 
- * @property queryMatchCase
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.queryMatchCase = false;
-
-/**
- * When applyLocalFilter is true, results can  be locally filtered to return
- * matching strings that "contain" the query string rather than simply "start with"
- * the query string.
- * 
- * @property queryMatchContains
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.queryMatchContains = false;
-
-/**
- * Enables query subset matching. When the DataSource's cache is enabled and queryMatchSubset is
- * true, substrings of queries will return matching cached results. For
- * instance, if the first query is for "abc" susequent queries that start with
- * "abc", like "abcd", will be queried against the cache, and not the live data
- * source. Recommended only for DataSources that return comprehensive results
- * for queries with very few characters.
- *
- * @property queryMatchSubset
- * @type Boolean
- * @default false
- *
- */
-YAHOO.widget.AutoComplete.prototype.queryMatchSubset = false;
-
-/**
- * Number of characters that must be entered before querying for results. A negative value
- * effectively turns off the widget. A value of 0 allows queries of null or empty string
- * values.
- *
- * @property minQueryLength
- * @type Number
- * @default 1
- */
-YAHOO.widget.AutoComplete.prototype.minQueryLength = 1;
-
-/**
- * Maximum number of results to display in results container.
- *
- * @property maxResultsDisplayed
- * @type Number
- * @default 10
- */
-YAHOO.widget.AutoComplete.prototype.maxResultsDisplayed = 10;
-
-/**
- * Number of seconds to delay before submitting a query request.  If a query
- * request is received before a previous one has completed its delay, the
- * previous request is cancelled and the new request is set to the delay. If 
- * typeAhead is also enabled, this value must always be less than the typeAheadDelay
- * in order to avoid certain race conditions. 
- *
- * @property queryDelay
- * @type Number
- * @default 0.2
- */
-YAHOO.widget.AutoComplete.prototype.queryDelay = 0.2;
-
-/**
- * If typeAhead is true, number of seconds to delay before updating input with
- * typeAhead value. In order to prevent certain race conditions, this value must
- * always be greater than the queryDelay.
- *
- * @property typeAheadDelay
- * @type Number
- * @default 0.5
- */
-YAHOO.widget.AutoComplete.prototype.typeAheadDelay = 0.5;
-
-/**
- * When IME usage is detected, AutoComplete will switch to querying the input
- * value at the given interval rather than per key event.
- *
- * @property queryInterval
- * @type Number
- * @default 500
- */
-YAHOO.widget.AutoComplete.prototype.queryInterval = 500;
-
-/**
- * Class name of a highlighted item within results container.
- *
- * @property highlightClassName
- * @type String
- * @default "yui-ac-highlight"
- */
-YAHOO.widget.AutoComplete.prototype.highlightClassName = "yui-ac-highlight";
-
-/**
- * Class name of a pre-highlighted item within results container.
- *
- * @property prehighlightClassName
- * @type String
- */
-YAHOO.widget.AutoComplete.prototype.prehighlightClassName = null;
-
-/**
- * Query delimiter. A single character separator for multiple delimited
- * selections. Multiple delimiter characteres may be defined as an array of
- * strings. A null value or empty string indicates that query results cannot
- * be delimited. This feature is not recommended if you need forceSelection to
- * be true.
- *
- * @property delimChar
- * @type String | String[]
- */
-YAHOO.widget.AutoComplete.prototype.delimChar = null;
-
-/**
- * Whether or not the first item in results container should be automatically highlighted
- * on expand.
- *
- * @property autoHighlight
- * @type Boolean
- * @default true
- */
-YAHOO.widget.AutoComplete.prototype.autoHighlight = true;
-
-/**
- * If autohighlight is enabled, whether or not the input field should be automatically updated
- * with the first query result as the user types, auto-selecting the substring portion
- * of the first result that the user has not yet typed.
- *
- * @property typeAhead
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.typeAhead = false;
-
-/**
- * Whether or not to animate the expansion/collapse of the results container in the
- * horizontal direction.
- *
- * @property animHoriz
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.animHoriz = false;
-
-/**
- * Whether or not to animate the expansion/collapse of the results container in the
- * vertical direction.
- *
- * @property animVert
- * @type Boolean
- * @default true
- */
-YAHOO.widget.AutoComplete.prototype.animVert = true;
-
-/**
- * Speed of container expand/collapse animation, in seconds..
- *
- * @property animSpeed
- * @type Number
- * @default 0.3
- */
-YAHOO.widget.AutoComplete.prototype.animSpeed = 0.3;
-
-/**
- * Whether or not to force the user's selection to match one of the query
- * results. Enabling this feature essentially transforms the input field into a
- * &lt;select&gt; field. This feature is not recommended with delimiter character(s)
- * defined.
- *
- * @property forceSelection
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.forceSelection = false;
-
-/**
- * Whether or not to allow browsers to cache user-typed input in the input
- * field. Disabling this feature will prevent the widget from setting the
- * autocomplete="off" on the input field. When autocomplete="off"
- * and users click the back button after form submission, user-typed input can
- * be prefilled by the browser from its cache. This caching of user input may
- * not be desired for sensitive data, such as credit card numbers, in which
- * case, implementers should consider setting allowBrowserAutocomplete to false.
- *
- * @property allowBrowserAutocomplete
- * @type Boolean
- * @default true
- */
-YAHOO.widget.AutoComplete.prototype.allowBrowserAutocomplete = true;
-
-/**
- * Enabling this feature prevents the toggling of the container to a collapsed state.
- * Setting to true does not automatically trigger the opening of the container.
- * Implementers are advised to pre-load the container with an explicit "sendQuery()" call.   
- *
- * @property alwaysShowContainer
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.alwaysShowContainer = false;
-
-/**
- * Whether or not to use an iFrame to layer over Windows form elements in
- * IE. Set to true only when the results container will be on top of a
- * &lt;select&gt; field in IE and thus exposed to the IE z-index bug (i.e.,
- * 5.5 < IE < 7).
- *
- * @property useIFrame
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.useIFrame = false;
-
-/**
- * Whether or not the results container should have a shadow.
- *
- * @property useShadow
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.useShadow = false;
-
-/**
- * Whether or not the input field should be updated with selections.
- *
- * @property supressInputUpdate
- * @type Boolean
- * @default false
- */
-YAHOO.widget.AutoComplete.prototype.suppressInputUpdate = false;
-
-/**
- * For backward compatibility to pre-2.6.0 formatResults() signatures, setting
- * resultsTypeList to true will take each object literal result returned by
- * DataSource and flatten into an array.  
- *
- * @property resultTypeList
- * @type Boolean
- * @default true
- */
-YAHOO.widget.AutoComplete.prototype.resultTypeList = true;
-
-/**
- * For XHR DataSources, AutoComplete will automatically insert a "?" between the server URI and 
- * the "query" param/value pair. To prevent this behavior, implementers should
- * set this value to false. To more fully customize the query syntax, implementers
- * should override the generateRequest() method. 
- *
- * @property queryQuestionMark
- * @type Boolean
- * @default true
- */
-YAHOO.widget.AutoComplete.prototype.queryQuestionMark = true;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
- /**
- * Public accessor to the unique name of the AutoComplete instance.
- *
- * @method toString
- * @return {String} Unique name of the AutoComplete instance.
- */
-YAHOO.widget.AutoComplete.prototype.toString = function() {
-    return "AutoComplete " + this._sName;
-};
-
- /**
- * Returns DOM reference to input element.
- *
- * @method getInputEl
- * @return {HTMLELement} DOM reference to input element.
- */
-YAHOO.widget.AutoComplete.prototype.getInputEl = function() {
-    return this._elTextbox;
-};
-
- /**
- * Returns DOM reference to container element.
- *
- * @method getContainerEl
- * @return {HTMLELement} DOM reference to container element.
- */
-YAHOO.widget.AutoComplete.prototype.getContainerEl = function() {
-    return this._elContainer;
-};
-
- /**
- * Returns true if widget instance is currently focused.
- *
- * @method isFocused
- * @return {Boolean} Returns true if widget instance is currently focused.
- */
-YAHOO.widget.AutoComplete.prototype.isFocused = function() {
-    return (this._bFocused === null) ? false : this._bFocused;
-};
-
- /**
- * Returns true if container is in an expanded state, false otherwise.
- *
- * @method isContainerOpen
- * @return {Boolean} Returns true if container is in an expanded state, false otherwise.
- */
-YAHOO.widget.AutoComplete.prototype.isContainerOpen = function() {
-    return this._bContainerOpen;
-};
-
-/**
- * Public accessor to the &lt;ul&gt; element that displays query results within the results container.
- *
- * @method getListEl
- * @return {HTMLElement[]} Reference to &lt;ul&gt; element within the results container.
- */
-YAHOO.widget.AutoComplete.prototype.getListEl = function() {
-    return this._elList;
-};
-
-/**
- * Public accessor to the matching string associated with a given &lt;li&gt; result.
- *
- * @method getListItemMatch
- * @param elListItem {HTMLElement} Reference to &lt;LI&gt; element.
- * @return {String} Matching string.
- */
-YAHOO.widget.AutoComplete.prototype.getListItemMatch = function(elListItem) {
-    if(elListItem._sResultMatch) {
-        return elListItem._sResultMatch;
-    }
-    else {
-        return null;
-    }
-};
-
-/**
- * Public accessor to the result data associated with a given &lt;li&gt; result.
- *
- * @method getListItemData
- * @param elListItem {HTMLElement} Reference to &lt;LI&gt; element.
- * @return {Object} Result data.
- */
-YAHOO.widget.AutoComplete.prototype.getListItemData = function(elListItem) {
-    if(elListItem._oResultData) {
-        return elListItem._oResultData;
-    }
-    else {
-        return null;
-    }
-};
-
-/**
- * Public accessor to the index of the associated with a given &lt;li&gt; result.
- *
- * @method getListItemIndex
- * @param elListItem {HTMLElement} Reference to &lt;LI&gt; element.
- * @return {Number} Index.
- */
-YAHOO.widget.AutoComplete.prototype.getListItemIndex = function(elListItem) {
-    if(YAHOO.lang.isNumber(elListItem._nItemIndex)) {
-        return elListItem._nItemIndex;
-    }
-    else {
-        return null;
-    }
-};
-
-/**
- * Sets HTML markup for the results container header. This markup will be
- * inserted within a &lt;div&gt; tag with a class of "yui-ac-hd".
- *
- * @method setHeader
- * @param sHeader {String} HTML markup for results container header.
- */
-YAHOO.widget.AutoComplete.prototype.setHeader = function(sHeader) {
-    if(this._elHeader) {
-        var elHeader = this._elHeader;
-        if(sHeader) {
-            elHeader.innerHTML = sHeader;
-            elHeader.style.display = "block";
-        }
-        else {
-            elHeader.innerHTML = "";
-            elHeader.style.display = "none";
-        }
-    }
-};
-
-/**
- * Sets HTML markup for the results container footer. This markup will be
- * inserted within a &lt;div&gt; tag with a class of "yui-ac-ft".
- *
- * @method setFooter
- * @param sFooter {String} HTML markup for results container footer.
- */
-YAHOO.widget.AutoComplete.prototype.setFooter = function(sFooter) {
-    if(this._elFooter) {
-        var elFooter = this._elFooter;
-        if(sFooter) {
-                elFooter.innerHTML = sFooter;
-                elFooter.style.display = "block";
-        }
-        else {
-            elFooter.innerHTML = "";
-            elFooter.style.display = "none";
-        }
-    }
-};
-
-/**
- * Sets HTML markup for the results container body. This markup will be
- * inserted within a &lt;div&gt; tag with a class of "yui-ac-bd".
- *
- * @method setBody
- * @param sBody {String} HTML markup for results container body.
- */
-YAHOO.widget.AutoComplete.prototype.setBody = function(sBody) {
-    if(this._elBody) {
-        var elBody = this._elBody;
-        YAHOO.util.Event.purgeElement(elBody, true);
-        if(sBody) {
-            elBody.innerHTML = sBody;
-            elBody.style.display = "block";
-        }
-        else {
-            elBody.innerHTML = "";
-            elBody.style.display = "none";
-        }
-        this._elList = null;
-    }
-};
-
-/**
-* A function that converts an AutoComplete query into a request value which is then
-* passed to the DataSource's sendRequest method in order to retrieve data for 
-* the query. By default, returns a String with the syntax: "query={query}"
-* Implementers can customize this method for custom request syntaxes.
-* 
-* @method generateRequest
-* @param sQuery {String} Query string
-*/
-YAHOO.widget.AutoComplete.prototype.generateRequest = function(sQuery) {
-    var dataType = this.dataSource.dataType;
-    
-    // Transform query string in to a request for remote data
-    // By default, local data doesn't need a transformation, just passes along the query as is.
-    if(dataType === YAHOO.util.DataSourceBase.TYPE_XHR) {
-        // By default, XHR GET requests look like "{scriptURI}?{scriptQueryParam}={sQuery}&{scriptQueryAppend}"
-        if(!this.dataSource.connMethodPost) {
-            sQuery = (this.queryQuestionMark ? "?" : "") + (this.dataSource.scriptQueryParam || "query") + "=" + sQuery + 
-                (this.dataSource.scriptQueryAppend ? ("&" + this.dataSource.scriptQueryAppend) : "");        
-        }
-        // By default, XHR POST bodies are sent to the {scriptURI} like "{scriptQueryParam}={sQuery}&{scriptQueryAppend}"
-        else {
-            sQuery = (this.dataSource.scriptQueryParam || "query") + "=" + sQuery + 
-                (this.dataSource.scriptQueryAppend ? ("&" + this.dataSource.scriptQueryAppend) : "");
-        }
-    }
-    // By default, remote script node requests look like "{scriptURI}&{scriptCallbackParam}={callbackString}&{scriptQueryParam}={sQuery}&{scriptQueryAppend}"
-    else if(dataType === YAHOO.util.DataSourceBase.TYPE_SCRIPTNODE) {
-        sQuery = "&" + (this.dataSource.scriptQueryParam || "query") + "=" + sQuery + 
-            (this.dataSource.scriptQueryAppend ? ("&" + this.dataSource.scriptQueryAppend) : "");    
-    }
-    
-    return sQuery;
-};
-
-/**
- * Makes query request to the DataSource.
- *
- * @method sendQuery
- * @param sQuery {String} Query string.
- */
-YAHOO.widget.AutoComplete.prototype.sendQuery = function(sQuery) {
-    // Adjust programatically sent queries to look like they input by user
-    // when delimiters are enabled
-    var newQuery = (this.delimChar) ? this._elTextbox.value + sQuery : sQuery;
-    this._sendQuery(newQuery);
-};
-
-/**
- * Collapses container.
- *
- * @method collapseContainer
- */
-YAHOO.widget.AutoComplete.prototype.collapseContainer = function() {
-    this._toggleContainer(false);
-};
-
-/**
- * Handles subset matching for when queryMatchSubset is enabled.
- *
- * @method getSubsetMatches
- * @param sQuery {String} Query string.
- * @return {Object} oParsedResponse or null. 
- */
-YAHOO.widget.AutoComplete.prototype.getSubsetMatches = function(sQuery) {
-    var subQuery, oCachedResponse, subRequest;
-    // Loop through substrings of each cached element's query property...
-    for(var i = sQuery.length; i >= this.minQueryLength ; i--) {
-        subRequest = this.generateRequest(sQuery.substr(0,i));
-        this.dataRequestEvent.fire(this, subQuery, subRequest);
-        
-        // If a substring of the query is found in the cache
-        oCachedResponse = this.dataSource.getCachedResponse(subRequest);
-        if(oCachedResponse) {
-            return this.filterResults.apply(this.dataSource, [sQuery, oCachedResponse, oCachedResponse, {scope:this}]);
-        }
-    }
-    return null;
-};
-
-/**
- * Executed by DataSource (within DataSource scope via doBeforeParseData()) to
- * handle responseStripAfter cleanup.
- *
- * @method preparseRawResponse
- * @param sQuery {String} Query string.
- * @return {Object} oParsedResponse or null. 
- */
-YAHOO.widget.AutoComplete.prototype.preparseRawResponse = function(oRequest, oFullResponse, oCallback) {
-    var nEnd = ((this.responseStripAfter !== "") && (oFullResponse.indexOf)) ?
-        oFullResponse.indexOf(this.responseStripAfter) : -1;
-    if(nEnd != -1) {
-        oFullResponse = oFullResponse.substring(0,nEnd);
-    }
-    return oFullResponse;
-};
-
-/**
- * Executed by DataSource (within DataSource scope via doBeforeCallback()) to
- * filter results through a simple client-side matching algorithm. 
- *
- * @method filterResults
- * @param sQuery {String} Original request.
- * @param oFullResponse {Object} Full response object.
- * @param oParsedResponse {Object} Parsed response object.
- * @param oCallback {Object} Callback object. 
- * @return {Object} Filtered response object.
- */
-
-YAHOO.widget.AutoComplete.prototype.filterResults = function(sQuery, oFullResponse, oParsedResponse, oCallback) {
-    // Only if a query string is available to match against
-    if(sQuery && sQuery !== "") {
-        // First make a copy of the oParseResponse
-        oParsedResponse = YAHOO.widget.AutoComplete._cloneObject(oParsedResponse);
-        
-        var oAC = oCallback.scope,
-            oDS = this,
-            allResults = oParsedResponse.results, // the array of results
-            filteredResults = [], // container for filtered results
-            bMatchFound = false,
-            bMatchCase = (oDS.queryMatchCase || oAC.queryMatchCase), // backward compat
-            bMatchContains = (oDS.queryMatchContains || oAC.queryMatchContains); // backward compat
-            
-        // Loop through each result object...
-        for(var i = allResults.length-1; i >= 0; i--) {
-            var oResult = allResults[i];
-
-            // Grab the data to match against from the result object...
-            var sResult = null;
-            
-            // Result object is a simple string already
-            if(YAHOO.lang.isString(oResult)) {
-                sResult = oResult;
-            }
-            // Result object is an array of strings
-            else if(YAHOO.lang.isArray(oResult)) {
-                sResult = oResult[0];
-            
-            }
-            // Result object is an object literal of strings
-            else if(this.responseSchema.fields) {
-                var key = this.responseSchema.fields[0].key || this.responseSchema.fields[0];
-                sResult = oResult[key];
-            }
-            // Backwards compatibility
-            else if(this.key) {
-                sResult = oResult[this.key];
-            }
-            
-            if(YAHOO.lang.isString(sResult)) {
-                
-                var sKeyIndex = (bMatchCase) ?
-                sResult.indexOf(decodeURIComponent(sQuery)) :
-                sResult.toLowerCase().indexOf(decodeURIComponent(sQuery).toLowerCase());
-
-                // A STARTSWITH match is when the query is found at the beginning of the key string...
-                if((!bMatchContains && (sKeyIndex === 0)) ||
-                // A CONTAINS match is when the query is found anywhere within the key string...
-                (bMatchContains && (sKeyIndex > -1))) {
-                    // Stash the match
-                    filteredResults.unshift(oResult);
-                }
-            }
-        }
-        oParsedResponse.results = filteredResults;
-    }
-    else {
-    }
-    
-    return oParsedResponse;
-};
-
-/**
- * Handles response for display. This is the callback function method passed to
- * YAHOO.util.DataSourceBase#sendRequest so results from the DataSource are
- * returned to the AutoComplete instance.
- *
- * @method handleResponse
- * @param sQuery {String} Original request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} (optional) Additional argument(s)
- */
-YAHOO.widget.AutoComplete.prototype.handleResponse = function(sQuery, oResponse, oPayload) {
-    if((this instanceof YAHOO.widget.AutoComplete) && this._sName) {
-        this._populateList(sQuery, oResponse, oPayload);
-    }
-};
-
-/**
- * Overridable method called before container is loaded with result data.
- *
- * @method doBeforeLoadData
- * @param sQuery {String} Original request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} (optional) Additional argument(s)
- * @return {Boolean} Return true to continue loading data, false to cancel.
- */
-YAHOO.widget.AutoComplete.prototype.doBeforeLoadData = function(sQuery, oResponse, oPayload) {
-    return true;
-};
-
-/**
- * Overridable method that returns HTML markup for one result to be populated
- * as innerHTML of an &lt;LI&gt; element. 
- *
- * @method formatResult
- * @param oResultData {Object} Result data object.
- * @param sQuery {String} The corresponding query string.
- * @param sResultMatch {HTMLElement} The current query string. 
- * @return {String} HTML markup of formatted result data.
- */
-YAHOO.widget.AutoComplete.prototype.formatResult = function(oResultData, sQuery, sResultMatch) {
-    var sMarkup = (sResultMatch) ? sResultMatch : "";
-    return sMarkup;
-};
-
-/**
- * Overridable method called before container expands allows implementers to access data
- * and DOM elements.
- *
- * @method doBeforeExpandContainer
- * @param elTextbox {HTMLElement} The text input box.
- * @param elContainer {HTMLElement} The container element.
- * @param sQuery {String} The query string.
- * @param aResults {Object[]}  An array of query results.
- * @return {Boolean} Return true to continue expanding container, false to cancel the expand.
- */
-YAHOO.widget.AutoComplete.prototype.doBeforeExpandContainer = function(elTextbox, elContainer, sQuery, aResults) {
-    return true;
-};
-
-
-/**
- * Nulls out the entire AutoComplete instance and related objects, removes attached
- * event listeners, and clears out DOM elements inside the container. After
- * calling this method, the instance reference should be expliclitly nulled by
- * implementer, as in myDataTable = null. Use with caution!
- *
- * @method destroy
- */
-YAHOO.widget.AutoComplete.prototype.destroy = function() {
-    var instanceName = this.toString();
-    var elInput = this._elTextbox;
-    var elContainer = this._elContainer;
-
-    // Unhook custom events
-    this.textboxFocusEvent.unsubscribeAll();
-    this.textboxKeyEvent.unsubscribeAll();
-    this.dataRequestEvent.unsubscribeAll();
-    this.dataReturnEvent.unsubscribeAll();
-    this.dataErrorEvent.unsubscribeAll();
-    this.containerPopulateEvent.unsubscribeAll();
-    this.containerExpandEvent.unsubscribeAll();
-    this.typeAheadEvent.unsubscribeAll();
-    this.itemMouseOverEvent.unsubscribeAll();
-    this.itemMouseOutEvent.unsubscribeAll();
-    this.itemArrowToEvent.unsubscribeAll();
-    this.itemArrowFromEvent.unsubscribeAll();
-    this.itemSelectEvent.unsubscribeAll();
-    this.unmatchedItemSelectEvent.unsubscribeAll();
-    this.selectionEnforceEvent.unsubscribeAll();
-    this.containerCollapseEvent.unsubscribeAll();
-    this.textboxBlurEvent.unsubscribeAll();
-    this.textboxChangeEvent.unsubscribeAll();
-
-    // Unhook DOM events
-    YAHOO.util.Event.purgeElement(elInput, true);
-    YAHOO.util.Event.purgeElement(elContainer, true);
-
-    // Remove DOM elements
-    elContainer.innerHTML = "";
-
-    // Null out objects
-    for(var key in this) {
-        if(YAHOO.lang.hasOwnProperty(this, key)) {
-            this[key] = null;
-        }
-    }
-
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public events
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Fired when the input field receives focus.
- *
- * @event textboxFocusEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- */
-YAHOO.widget.AutoComplete.prototype.textboxFocusEvent = null;
-
-/**
- * Fired when the input field receives key input.
- *
- * @event textboxKeyEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param nKeycode {Number} The keycode number.
- */
-YAHOO.widget.AutoComplete.prototype.textboxKeyEvent = null;
-
-/**
- * Fired when the AutoComplete instance makes a request to the DataSource.
- * 
- * @event dataRequestEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param sQuery {String} The query string. 
- * @param oRequest {Object} The request.
- */
-YAHOO.widget.AutoComplete.prototype.dataRequestEvent = null;
-
-/**
- * Fired when the AutoComplete instance receives query results from the data
- * source.
- *
- * @event dataReturnEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param sQuery {String} The query string.
- * @param aResults {Object[]} Results array.
- */
-YAHOO.widget.AutoComplete.prototype.dataReturnEvent = null;
-
-/**
- * Fired when the AutoComplete instance does not receive query results from the
- * DataSource due to an error.
- *
- * @event dataErrorEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param sQuery {String} The query string.
- */
-YAHOO.widget.AutoComplete.prototype.dataErrorEvent = null;
-
-/**
- * Fired when the results container is populated.
- *
- * @event containerPopulateEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- */
-YAHOO.widget.AutoComplete.prototype.containerPopulateEvent = null;
-
-/**
- * Fired when the results container is expanded.
- *
- * @event containerExpandEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param sQuery {String} The query string.
- * @param aResults {Object[]} Results array.
- */
-YAHOO.widget.AutoComplete.prototype.containerExpandEvent = null;
-
-/**
- * Fired when the input field has been prefilled by the type-ahead
- * feature. 
- *
- * @event typeAheadEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param sQuery {String} The query string.
- * @param sPrefill {String} The prefill string.
- */
-YAHOO.widget.AutoComplete.prototype.typeAheadEvent = null;
-
-/**
- * Fired when result item has been moused over.
- *
- * @event itemMouseOverEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param elItem {HTMLElement} The &lt;li&gt element item moused to.
- */
-YAHOO.widget.AutoComplete.prototype.itemMouseOverEvent = null;
-
-/**
- * Fired when result item has been moused out.
- *
- * @event itemMouseOutEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param elItem {HTMLElement} The &lt;li&gt; element item moused from.
- */
-YAHOO.widget.AutoComplete.prototype.itemMouseOutEvent = null;
-
-/**
- * Fired when result item has been arrowed to. 
- *
- * @event itemArrowToEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param elItem {HTMLElement} The &lt;li&gt; element item arrowed to.
- */
-YAHOO.widget.AutoComplete.prototype.itemArrowToEvent = null;
-
-/**
- * Fired when result item has been arrowed away from.
- *
- * @event itemArrowFromEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param elItem {HTMLElement} The &lt;li&gt; element item arrowed from.
- */
-YAHOO.widget.AutoComplete.prototype.itemArrowFromEvent = null;
-
-/**
- * Fired when an item is selected via mouse click, ENTER key, or TAB key.
- *
- * @event itemSelectEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param elItem {HTMLElement} The selected &lt;li&gt; element item.
- * @param oData {Object} The data returned for the item, either as an object,
- * or mapped from the schema into an array.
- */
-YAHOO.widget.AutoComplete.prototype.itemSelectEvent = null;
-
-/**
- * Fired when a user selection does not match any of the displayed result items.
- *
- * @event unmatchedItemSelectEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @param sSelection {String} The selected string.  
- */
-YAHOO.widget.AutoComplete.prototype.unmatchedItemSelectEvent = null;
-
-/**
- * Fired if forceSelection is enabled and the user's input has been cleared
- * because it did not match one of the returned query results.
- *
- * @event selectionEnforceEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- */
-YAHOO.widget.AutoComplete.prototype.selectionEnforceEvent = null;
-
-/**
- * Fired when the results container is collapsed.
- *
- * @event containerCollapseEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- */
-YAHOO.widget.AutoComplete.prototype.containerCollapseEvent = null;
-
-/**
- * Fired when the input field loses focus.
- *
- * @event textboxBlurEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- */
-YAHOO.widget.AutoComplete.prototype.textboxBlurEvent = null;
-
-/**
- * Fired when the input field value has changed when it loses focus.
- *
- * @event textboxChangeEvent
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- */
-YAHOO.widget.AutoComplete.prototype.textboxChangeEvent = null;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Internal class variable to index multiple AutoComplete instances.
- *
- * @property _nIndex
- * @type Number
- * @default 0
- * @private
- */
-YAHOO.widget.AutoComplete._nIndex = 0;
-
-/**
- * Name of AutoComplete instance.
- *
- * @property _sName
- * @type String
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._sName = null;
-
-/**
- * Text input field DOM element.
- *
- * @property _elTextbox
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elTextbox = null;
-
-/**
- * Container DOM element.
- *
- * @property _elContainer
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elContainer = null;
-
-/**
- * Reference to content element within container element.
- *
- * @property _elContent
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elContent = null;
-
-/**
- * Reference to header element within content element.
- *
- * @property _elHeader
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elHeader = null;
-
-/**
- * Reference to body element within content element.
- *
- * @property _elBody
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elBody = null;
-
-/**
- * Reference to footer element within content element.
- *
- * @property _elFooter
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elFooter = null;
-
-/**
- * Reference to shadow element within container element.
- *
- * @property _elShadow
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elShadow = null;
-
-/**
- * Reference to iframe element within container element.
- *
- * @property _elIFrame
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elIFrame = null;
-
-/**
- * Whether or not the input field is currently in focus. If query results come back
- * but the user has already moved on, do not proceed with auto complete behavior.
- *
- * @property _bFocused
- * @type Boolean
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._bFocused = null;
-
-/**
- * Animation instance for container expand/collapse.
- *
- * @property _oAnim
- * @type Boolean
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._oAnim = null;
-
-/**
- * Whether or not the results container is currently open.
- *
- * @property _bContainerOpen
- * @type Boolean
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._bContainerOpen = false;
-
-/**
- * Whether or not the mouse is currently over the results
- * container. This is necessary in order to prevent clicks on container items
- * from being text input field blur events.
- *
- * @property _bOverContainer
- * @type Boolean
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._bOverContainer = false;
-
-/**
- * Internal reference to &lt;ul&gt; elements that contains query results within the
- * results container.
- *
- * @property _elList
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elList = null;
-
-/*
- * Array of &lt;li&gt; elements references that contain query results within the
- * results container.
- *
- * @property _aListItemEls
- * @type HTMLElement[]
- * @private
- */
-//YAHOO.widget.AutoComplete.prototype._aListItemEls = null;
-
-/**
- * Number of &lt;li&gt; elements currently displayed in results container.
- *
- * @property _nDisplayedItems
- * @type Number
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._nDisplayedItems = 0;
-
-/*
- * Internal count of &lt;li&gt; elements displayed and hidden in results container.
- *
- * @property _maxResultsDisplayed
- * @type Number
- * @private
- */
-//YAHOO.widget.AutoComplete.prototype._maxResultsDisplayed = 0;
-
-/**
- * Current query string
- *
- * @property _sCurQuery
- * @type String
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._sCurQuery = null;
-
-/**
- * Selections from previous queries (for saving delimited queries).
- *
- * @property _sPastSelections
- * @type String
- * @default "" 
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._sPastSelections = "";
-
-/**
- * Stores initial input value used to determine if textboxChangeEvent should be fired.
- *
- * @property _sInitInputValue
- * @type String
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._sInitInputValue = null;
-
-/**
- * Pointer to the currently highlighted &lt;li&gt; element in the container.
- *
- * @property _elCurListItem
- * @type HTMLElement
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._elCurListItem = null;
-
-/**
- * Whether or not an item has been selected since the container was populated
- * with results. Reset to false by _populateList, and set to true when item is
- * selected.
- *
- * @property _bItemSelected
- * @type Boolean
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._bItemSelected = false;
-
-/**
- * Key code of the last key pressed in textbox.
- *
- * @property _nKeyCode
- * @type Number
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._nKeyCode = null;
-
-/**
- * Delay timeout ID.
- *
- * @property _nDelayID
- * @type Number
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._nDelayID = -1;
-
-/**
- * TypeAhead delay timeout ID.
- *
- * @property _nTypeAheadDelayID
- * @type Number
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._nTypeAheadDelayID = -1;
-
-/**
- * Src to iFrame used when useIFrame = true. Supports implementations over SSL
- * as well.
- *
- * @property _iFrameSrc
- * @type String
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._iFrameSrc = "javascript:false;";
-
-/**
- * For users typing via certain IMEs, queries must be triggered by intervals,
- * since key events yet supported across all browsers for all IMEs.
- *
- * @property _queryInterval
- * @type Object
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._queryInterval = null;
-
-/**
- * Internal tracker to last known textbox value, used to determine whether or not
- * to trigger a query via interval for certain IME users.
- *
- * @event _sLastTextboxValue
- * @type String
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._sLastTextboxValue = null;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Updates and validates latest public config properties.
- *
- * @method __initProps
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._initProps = function() {
-    // Correct any invalid values
-    var minQueryLength = this.minQueryLength;
-    if(!YAHOO.lang.isNumber(minQueryLength)) {
-        this.minQueryLength = 1;
-    }
-    var maxResultsDisplayed = this.maxResultsDisplayed;
-    if(!YAHOO.lang.isNumber(maxResultsDisplayed) || (maxResultsDisplayed < 1)) {
-        this.maxResultsDisplayed = 10;
-    }
-    var queryDelay = this.queryDelay;
-    if(!YAHOO.lang.isNumber(queryDelay) || (queryDelay < 0)) {
-        this.queryDelay = 0.2;
-    }
-    var typeAheadDelay = this.typeAheadDelay;
-    if(!YAHOO.lang.isNumber(typeAheadDelay) || (typeAheadDelay < 0)) {
-        this.typeAheadDelay = 0.2;
-    }
-    var delimChar = this.delimChar;
-    if(YAHOO.lang.isString(delimChar) && (delimChar.length > 0)) {
-        this.delimChar = [delimChar];
-    }
-    else if(!YAHOO.lang.isArray(delimChar)) {
-        this.delimChar = null;
-    }
-    var animSpeed = this.animSpeed;
-    if((this.animHoriz || this.animVert) && YAHOO.util.Anim) {
-        if(!YAHOO.lang.isNumber(animSpeed) || (animSpeed < 0)) {
-            this.animSpeed = 0.3;
-        }
-        if(!this._oAnim ) {
-            this._oAnim = new YAHOO.util.Anim(this._elContent, {}, this.animSpeed);
-        }
-        else {
-            this._oAnim.duration = this.animSpeed;
-        }
-    }
-    if(this.forceSelection && delimChar) {
-    }
-};
-
-/**
- * Initializes the results container helpers if they are enabled and do
- * not exist
- *
- * @method _initContainerHelperEls
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._initContainerHelperEls = function() {
-    if(this.useShadow && !this._elShadow) {
-        var elShadow = document.createElement("div");
-        elShadow.className = "yui-ac-shadow";
-        elShadow.style.width = 0;
-        elShadow.style.height = 0;
-        this._elShadow = this._elContainer.appendChild(elShadow);
-    }
-    if(this.useIFrame && !this._elIFrame) {
-        var elIFrame = document.createElement("iframe");
-        elIFrame.src = this._iFrameSrc;
-        elIFrame.frameBorder = 0;
-        elIFrame.scrolling = "no";
-        elIFrame.style.position = "absolute";
-        elIFrame.style.width = 0;
-        elIFrame.style.height = 0;
-        elIFrame.tabIndex = -1;
-        elIFrame.style.padding = 0;
-        this._elIFrame = this._elContainer.appendChild(elIFrame);
-    }
-};
-
-/**
- * Initializes the results container once at object creation
- *
- * @method _initContainerEl
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._initContainerEl = function() {
-    YAHOO.util.Dom.addClass(this._elContainer, "yui-ac-container");
-    
-    if(!this._elContent) {
-        // The elContent div is assigned DOM listeners and 
-        // helps size the iframe and shadow properly
-        var elContent = document.createElement("div");
-        elContent.className = "yui-ac-content";
-        elContent.style.display = "none";
-
-        this._elContent = this._elContainer.appendChild(elContent);
-
-        var elHeader = document.createElement("div");
-        elHeader.className = "yui-ac-hd";
-        elHeader.style.display = "none";
-        this._elHeader = this._elContent.appendChild(elHeader);
-
-        var elBody = document.createElement("div");
-        elBody.className = "yui-ac-bd";
-        this._elBody = this._elContent.appendChild(elBody);
-
-        var elFooter = document.createElement("div");
-        elFooter.className = "yui-ac-ft";
-        elFooter.style.display = "none";
-        this._elFooter = this._elContent.appendChild(elFooter);
-    }
-    else {
-    }
-};
-
-/**
- * Clears out contents of container body and creates up to
- * YAHOO.widget.AutoComplete#maxResultsDisplayed &lt;li&gt; elements in an
- * &lt;ul&gt; element.
- *
- * @method _initListEl
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._initListEl = function() {
-    var nListLength = this.maxResultsDisplayed;
-    
-    var elList = this._elList || document.createElement("ul");
-    var elListItem;
-    while(elList.childNodes.length < nListLength) {
-        elListItem = document.createElement("li");
-        elListItem.style.display = "none";
-        elListItem._nItemIndex = elList.childNodes.length;
-        elList.appendChild(elListItem);
-    }
-    if(!this._elList) {
-        var elBody = this._elBody;
-        YAHOO.util.Event.purgeElement(elBody, true);
-        elBody.innerHTML = "";
-        this._elList = elBody.appendChild(elList);
-    }
-    
-};
-
-/**
- * Enables interval detection for IME support.
- *
- * @method _enableIntervalDetection
- * @re 
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._enableIntervalDetection = function() {
-    var oSelf = this;
-    if(!oSelf._queryInterval && oSelf.queryInterval) {
-        oSelf._queryInterval = setInterval(function() { oSelf._onInterval(); }, oSelf.queryInterval);
-    }
-};
-
-/**
- * Enables query triggers based on text input detection by intervals (rather
- * than by key events).
- *
- * @method _onInterval
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onInterval = function() {
-    var currValue = this._elTextbox.value;
-    var lastValue = this._sLastTextboxValue;
-    if(currValue != lastValue) {
-        this._sLastTextboxValue = currValue;
-        this._sendQuery(currValue);
-    }
-};
-
-/**
- * Cancels text input detection by intervals.
- *
- * @method _clearInterval
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._clearInterval = function() {
-    if(this._queryInterval) {
-        clearInterval(this._queryInterval);
-        this._queryInterval = null;
-    }
-};
-
-/**
- * Whether or not key is functional or should be ignored. Note that the right
- * arrow key is NOT an ignored key since it triggers queries for certain intl
- * charsets.
- *
- * @method _isIgnoreKey
- * @param nKeycode {Number} Code of key pressed.
- * @return {Boolean} True if key should be ignored, false otherwise.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._isIgnoreKey = function(nKeyCode) {
-    if((nKeyCode == 9) || (nKeyCode == 13)  || // tab, enter
-            (nKeyCode == 16) || (nKeyCode == 17) || // shift, ctl
-            (nKeyCode >= 18 && nKeyCode <= 20) || // alt, pause/break,caps lock
-            (nKeyCode == 27) || // esc
-            (nKeyCode >= 33 && nKeyCode <= 35) || // page up,page down,end
-            /*(nKeyCode >= 36 && nKeyCode <= 38) || // home,left,up
-            (nKeyCode == 40) || // down*/
-            (nKeyCode >= 36 && nKeyCode <= 40) || // home,left,up, right, down
-            (nKeyCode >= 44 && nKeyCode <= 45) || // print screen,insert
-            (nKeyCode == 229) // Bug 2041973: Korean XP fires 2 keyup events, the key and 229
-        ) { 
-        return true;
-    }
-    return false;
-};
-
-/**
- * Makes query request to the DataSource.
- *
- * @method _sendQuery
- * @param sQuery {String} Query string.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._sendQuery = function(sQuery) {
-    // Widget has been effectively turned off
-    if(this.minQueryLength < 0) {
-        this._toggleContainer(false);
-        return;
-    }
-    // Delimiter has been enabled
-    var aDelimChar = (this.delimChar) ? this.delimChar : null;
-    if(aDelimChar) {
-        // Loop through all possible delimiters and find the rightmost one in the query
-        // A " " may be a false positive if they are defined as delimiters AND
-        // are used to separate delimited queries
-        var nDelimIndex = -1;
-        for(var i = aDelimChar.length-1; i >= 0; i--) {
-            var nNewIndex = sQuery.lastIndexOf(aDelimChar[i]);
-            if(nNewIndex > nDelimIndex) {
-                nDelimIndex = nNewIndex;
-            }
-        }
-        // If we think the last delimiter is a space (" "), make sure it is NOT
-        // a false positive by also checking the char directly before it
-        if(aDelimChar[i] == " ") {
-            for (var j = aDelimChar.length-1; j >= 0; j--) {
-                if(sQuery[nDelimIndex - 1] == aDelimChar[j]) {
-                    nDelimIndex--;
-                    break;
-                }
-            }
-        }
-        // A delimiter has been found in the query so extract the latest query from past selections
-        if(nDelimIndex > -1) {
-            var nQueryStart = nDelimIndex + 1;
-            // Trim any white space from the beginning...
-            while(sQuery.charAt(nQueryStart) == " ") {
-                nQueryStart += 1;
-            }
-            // ...and save the rest of the string for later
-            this._sPastSelections = sQuery.substring(0,nQueryStart);
-            // Here is the query itself
-            sQuery = sQuery.substr(nQueryStart);
-        }
-        // No delimiter found in the query, so there are no selections from past queries
-        else {
-            this._sPastSelections = "";
-        }
-    }
-
-    // Don't search queries that are too short
-    if((sQuery && (sQuery.length < this.minQueryLength)) || (!sQuery && this.minQueryLength > 0)) {
-        if(this._nDelayID != -1) {
-            clearTimeout(this._nDelayID);
-        }
-        this._toggleContainer(false);
-        return;
-    }
-
-    sQuery = encodeURIComponent(sQuery);
-    this._nDelayID = -1;    // Reset timeout ID because request is being made
-    
-    // Subset matching
-    if(this.dataSource.queryMatchSubset || this.queryMatchSubset) { // backward compat
-        var oResponse = this.getSubsetMatches(sQuery);
-        if(oResponse) {
-            this.handleResponse(sQuery, oResponse, {query: sQuery});
-            return;
-        }
-    }
-    
-    if(this.responseStripAfter) {
-        this.dataSource.doBeforeParseData = this.preparseRawResponse;
-    }
-    if(this.applyLocalFilter) {
-        this.dataSource.doBeforeCallback = this.filterResults;
-    }
-    
-    var sRequest = this.generateRequest(sQuery);
-    this.dataRequestEvent.fire(this, sQuery, sRequest);
-
-    this.dataSource.sendRequest(sRequest, {
-            success : this.handleResponse,
-            failure : this.handleResponse,
-            scope   : this,
-            argument: {
-                query: sQuery
-            }
-    });
-};
-
-/**
- * Populates the array of &lt;li&gt; elements in the container with query
- * results.
- *
- * @method _populateList
- * @param sQuery {String} Original request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} (optional) Additional argument(s)
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._populateList = function(sQuery, oResponse, oPayload) {
-    // Clear previous timeout
-    if(this._nTypeAheadDelayID != -1) {
-        clearTimeout(this._nTypeAheadDelayID);
-    }
-        
-    sQuery = (oPayload && oPayload.query) ? oPayload.query : sQuery;
-    
-    // Pass data through abstract method for any transformations
-    var ok = this.doBeforeLoadData(sQuery, oResponse, oPayload);
-
-    // Data is ok
-    if(ok && !oResponse.error) {
-        this.dataReturnEvent.fire(this, sQuery, oResponse.results);
-        
-        // Continue only if instance is still focused (i.e., user hasn't already moved on)
-        // Null indicates initialized state, which is ok too
-        if(this._bFocused || (this._bFocused === null)) {
-            
-            //TODO: is this still necessary?
-            /*var isOpera = (YAHOO.env.ua.opera);
-            var contentStyle = this._elContent.style;
-            contentStyle.width = (!isOpera) ? null : "";
-            contentStyle.height = (!isOpera) ? null : "";*/
-        
-            // Store state for this interaction
-            var sCurQuery = decodeURIComponent(sQuery);
-            this._sCurQuery = sCurQuery;
-            this._bItemSelected = false;
-        
-            var allResults = oResponse.results,
-                nItemsToShow = Math.min(allResults.length,this.maxResultsDisplayed),
-                sMatchKey = (this.dataSource.responseSchema.fields) ? 
-                    (this.dataSource.responseSchema.fields[0].key || this.dataSource.responseSchema.fields[0]) : 0;
-            
-            if(nItemsToShow > 0) {
-                // Make sure container and helpers are ready to go
-                if(!this._elList || (this._elList.childNodes.length < nItemsToShow)) {
-                    this._initListEl();
-                }
-                this._initContainerHelperEls();
-                
-                var allListItemEls = this._elList.childNodes;
-                // Fill items with data from the bottom up
-                for(var i = nItemsToShow-1; i >= 0; i--) {
-                    var elListItem = allListItemEls[i],
-                    oResult = allResults[i];
-                    
-                    // Backward compatibility
-                    if(this.resultTypeList) {
-                        // Results need to be converted back to an array
-                        var aResult = [];
-                        // Match key is first
-                        aResult[0] = (YAHOO.lang.isString(oResult)) ? oResult : oResult[sMatchKey] || oResult[this.key];
-                        // Add additional data to the result array
-                        var fields = this.dataSource.responseSchema.fields;
-                        if(YAHOO.lang.isArray(fields) && (fields.length > 1)) {
-                            for(var k=1, len=fields.length; k<len; k++) {
-                                aResult[aResult.length] = oResult[fields[k].key || fields[k]];
-                            }
-                        }
-                        // No specific fields defined, so pass along entire data object
-                        else {
-                            // Already an array
-                            if(YAHOO.lang.isArray(oResult)) {
-                                aResult = oResult;
-                            }
-                            // Simple string 
-                            else if(YAHOO.lang.isString(oResult)) {
-                                aResult = [oResult];
-                            }
-                            // Object
-                            else {
-                                aResult[1] = oResult;
-                            }
-                        }
-                        oResult = aResult;
-                    }
-
-                    // The matching value, including backward compatibility for array format and safety net
-                    elListItem._sResultMatch = (YAHOO.lang.isString(oResult)) ? oResult : (YAHOO.lang.isArray(oResult)) ? oResult[0] : (oResult[sMatchKey] || "");
-                    elListItem._oResultData = oResult; // Additional data
-                    elListItem.innerHTML = this.formatResult(oResult, sCurQuery, elListItem._sResultMatch);
-                    elListItem.style.display = "";
-                }
-        
-                // Clear out extraneous items
-                if(nItemsToShow < allListItemEls.length) {
-                    var extraListItem;
-                    for(var j = allListItemEls.length-1; j >= nItemsToShow; j--) {
-                        extraListItem = allListItemEls[j];
-                        extraListItem.style.display = "none";
-                    }
-                }
-                
-                this._nDisplayedItems = nItemsToShow;
-                
-                this.containerPopulateEvent.fire(this, sQuery, allResults);
-                
-                // Highlight the first item
-                if(this.autoHighlight) {
-                    var elFirstListItem = this._elList.firstChild;
-                    this._toggleHighlight(elFirstListItem,"to");
-                    this.itemArrowToEvent.fire(this, elFirstListItem);
-                    this._typeAhead(elFirstListItem,sQuery);
-                }
-                // Unhighlight any previous time
-                else {
-                    this._toggleHighlight(this._elCurListItem,"from");
-                }
-        
-                // Expand the container
-                ok = this.doBeforeExpandContainer(this._elTextbox, this._elContainer, sQuery, allResults);
-                this._toggleContainer(ok);
-            }
-            else {
-                this._toggleContainer(false);
-            }
-
-            return;
-        }
-    }
-    // Error
-    else {
-        this.dataErrorEvent.fire(this, sQuery);
-    }
-        
-};
-
-/**
- * When forceSelection is true and the user attempts
- * leave the text input box without selecting an item from the query results,
- * the user selection is cleared.
- *
- * @method _clearSelection
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._clearSelection = function() {
-    var sValue = this._elTextbox.value;
-    //TODO: need to check against all delimChars?
-    var sChar = (this.delimChar) ? this.delimChar[0] : null;
-    var nIndex = (sChar) ? sValue.lastIndexOf(sChar, sValue.length-2) : -1;
-    if(nIndex > -1) {
-        this._elTextbox.value = sValue.substring(0,nIndex);
-    }
-    else {
-         this._elTextbox.value = "";
-    }
-    this._sPastSelections = this._elTextbox.value;
-
-    // Fire custom event
-    this.selectionEnforceEvent.fire(this);
-};
-
-/**
- * Whether or not user-typed value in the text input box matches any of the
- * query results.
- *
- * @method _textMatchesOption
- * @return {HTMLElement} Matching list item element if user-input text matches
- * a result, null otherwise.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._textMatchesOption = function() {
-    var elMatch = null;
-
-    for(var i = this._nDisplayedItems-1; i >= 0 ; i--) {
-        var elListItem = this._elList.childNodes[i];
-        var sMatch = ("" + elListItem._sResultMatch).toLowerCase();
-        if(sMatch == this._sCurQuery.toLowerCase()) {
-            elMatch = elListItem;
-            break;
-        }
-    }
-    return(elMatch);
-};
-
-/**
- * Updates in the text input box with the first query result as the user types,
- * selecting the substring that the user has not typed.
- *
- * @method _typeAhead
- * @param elListItem {HTMLElement} The &lt;li&gt; element item whose data populates the input field.
- * @param sQuery {String} Query string.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._typeAhead = function(elListItem, sQuery) {
-    // Don't typeAhead if turned off or is backspace
-    if(!this.typeAhead || (this._nKeyCode == 8)) {
-        return;
-    }
-
-    var oSelf = this,
-        elTextbox = this._elTextbox;
-        
-    // Only if text selection is supported
-    if(elTextbox.setSelectionRange || elTextbox.createTextRange) {
-        // Set and store timeout for this typeahead
-        this._nTypeAheadDelayID = setTimeout(function() {
-                // Select the portion of text that the user has not typed
-                var nStart = elTextbox.value.length; // any saved queries plus what user has typed
-                oSelf._updateValue(elListItem);
-                var nEnd = elTextbox.value.length;
-                oSelf._selectText(elTextbox,nStart,nEnd);
-                var sPrefill = elTextbox.value.substr(nStart,nEnd);
-                oSelf.typeAheadEvent.fire(oSelf,sQuery,sPrefill);
-            },(this.typeAheadDelay*1000));            
-    }
-};
-
-/**
- * Selects text in the input field.
- *
- * @method _selectText
- * @param elTextbox {HTMLElement} Text input box element in which to select text.
- * @param nStart {Number} Starting index of text string to select.
- * @param nEnd {Number} Ending index of text selection.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._selectText = function(elTextbox, nStart, nEnd) {
-    if(elTextbox.setSelectionRange) { // For Mozilla
-        elTextbox.setSelectionRange(nStart,nEnd);
-    }
-    else if(elTextbox.createTextRange) { // For IE
-        var oTextRange = elTextbox.createTextRange();
-        oTextRange.moveStart("character", nStart);
-        oTextRange.moveEnd("character", nEnd-elTextbox.value.length);
-        oTextRange.select();
-    }
-    else {
-        elTextbox.select();
-    }
-};
-
-/**
- * Syncs results container with its helpers.
- *
- * @method _toggleContainerHelpers
- * @param bShow {Boolean} True if container is expanded, false if collapsed
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._toggleContainerHelpers = function(bShow) {
-    var width = this._elContent.offsetWidth + "px";
-    var height = this._elContent.offsetHeight + "px";
-
-    if(this.useIFrame && this._elIFrame) {
-    var elIFrame = this._elIFrame;
-        if(bShow) {
-            elIFrame.style.width = width;
-            elIFrame.style.height = height;
-            elIFrame.style.padding = "";
-        }
-        else {
-            elIFrame.style.width = 0;
-            elIFrame.style.height = 0;
-            elIFrame.style.padding = 0;
-        }
-    }
-    if(this.useShadow && this._elShadow) {
-    var elShadow = this._elShadow;
-        if(bShow) {
-            elShadow.style.width = width;
-            elShadow.style.height = height;
-        }
-        else {
-            elShadow.style.width = 0;
-            elShadow.style.height = 0;
-        }
-    }
-};
-
-/**
- * Animates expansion or collapse of the container.
- *
- * @method _toggleContainer
- * @param bShow {Boolean} True if container should be expanded, false if container should be collapsed
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._toggleContainer = function(bShow) {
-    var elContainer = this._elContainer;
-
-    // If implementer has container always open and it's already open, don't mess with it
-    // Container is initialized with display "none" so it may need to be shown first time through
-    if(this.alwaysShowContainer && this._bContainerOpen) {
-        return;
-    }
-    
-    // Reset states
-    if(!bShow) {
-        this._toggleHighlight(this._elCurListItem,"from");
-        this._nDisplayedItems = 0;
-        this._sCurQuery = null;
-        
-        // Container is already closed, so don't bother with changing the UI
-        if(!this._bContainerOpen) {
-            this._elContent.style.display = "none";
-            return;
-        }
-    }
-
-    // If animation is enabled...
-    var oAnim = this._oAnim;
-    if(oAnim && oAnim.getEl() && (this.animHoriz || this.animVert)) {
-        if(oAnim.isAnimated()) {
-            oAnim.stop(true);
-        }
-
-        // Clone container to grab current size offscreen
-        var oClone = this._elContent.cloneNode(true);
-        elContainer.appendChild(oClone);
-        oClone.style.top = "-9000px";
-        oClone.style.width = "";
-        oClone.style.height = "";
-        oClone.style.display = "";
-
-        // Current size of the container is the EXPANDED size
-        var wExp = oClone.offsetWidth;
-        var hExp = oClone.offsetHeight;
-
-        // Calculate COLLAPSED sizes based on horiz and vert anim
-        var wColl = (this.animHoriz) ? 0 : wExp;
-        var hColl = (this.animVert) ? 0 : hExp;
-
-        // Set animation sizes
-        oAnim.attributes = (bShow) ?
-            {width: { to: wExp }, height: { to: hExp }} :
-            {width: { to: wColl}, height: { to: hColl }};
-
-        // If opening anew, set to a collapsed size...
-        if(bShow && !this._bContainerOpen) {
-            this._elContent.style.width = wColl+"px";
-            this._elContent.style.height = hColl+"px";
-        }
-        // Else, set it to its last known size.
-        else {
-            this._elContent.style.width = wExp+"px";
-            this._elContent.style.height = hExp+"px";
-        }
-
-        elContainer.removeChild(oClone);
-        oClone = null;
-
-    	var oSelf = this;
-    	var onAnimComplete = function() {
-            // Finish the collapse
-    		oAnim.onComplete.unsubscribeAll();
-
-            if(bShow) {
-                oSelf._toggleContainerHelpers(true);
-                oSelf._bContainerOpen = bShow;
-                oSelf.containerExpandEvent.fire(oSelf);
-            }
-            else {
-                oSelf._elContent.style.display = "none";
-                oSelf._bContainerOpen = bShow;
-                oSelf.containerCollapseEvent.fire(oSelf);
-            }
-     	};
-
-        // Display container and animate it
-        this._toggleContainerHelpers(false); // Bug 1424486: Be early to hide, late to show;
-        this._elContent.style.display = "";
-        oAnim.onComplete.subscribe(onAnimComplete);
-        oAnim.animate();
-    }
-    // Else don't animate, just show or hide
-    else {
-        if(bShow) {
-            this._elContent.style.display = "";
-            this._toggleContainerHelpers(true);
-            this._bContainerOpen = bShow;
-            this.containerExpandEvent.fire(this);
-        }
-        else {
-            this._toggleContainerHelpers(false);
-            this._elContent.style.display = "none";
-            this._bContainerOpen = bShow;
-            this.containerCollapseEvent.fire(this);
-        }
-   }
-
-};
-
-/**
- * Toggles the highlight on or off for an item in the container, and also cleans
- * up highlighting of any previous item.
- *
- * @method _toggleHighlight
- * @param elNewListItem {HTMLElement} The &lt;li&gt; element item to receive highlight behavior.
- * @param sType {String} Type "mouseover" will toggle highlight on, and "mouseout" will toggle highlight off.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._toggleHighlight = function(elNewListItem, sType) {
-    if(elNewListItem) {
-        var sHighlight = this.highlightClassName;
-        if(this._elCurListItem) {
-            // Remove highlight from old item
-            YAHOO.util.Dom.removeClass(this._elCurListItem, sHighlight);
-            this._elCurListItem = null;
-        }
-    
-        if((sType == "to") && sHighlight) {
-            // Apply highlight to new item
-            YAHOO.util.Dom.addClass(elNewListItem, sHighlight);
-            this._elCurListItem = elNewListItem;
-        }
-    }
-};
-
-/**
- * Toggles the pre-highlight on or off for an item in the container.
- *
- * @method _togglePrehighlight
- * @param elNewListItem {HTMLElement} The &lt;li&gt; element item to receive highlight behavior.
- * @param sType {String} Type "mouseover" will toggle highlight on, and "mouseout" will toggle highlight off.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._togglePrehighlight = function(elNewListItem, sType) {
-    if(elNewListItem == this._elCurListItem) {
-        return;
-    }
-
-    var sPrehighlight = this.prehighlightClassName;
-    if((sType == "mouseover") && sPrehighlight) {
-        // Apply prehighlight to new item
-        YAHOO.util.Dom.addClass(elNewListItem, sPrehighlight);
-    }
-    else {
-        // Remove prehighlight from old item
-        YAHOO.util.Dom.removeClass(elNewListItem, sPrehighlight);
-    }
-};
-
-/**
- * Updates the text input box value with selected query result. If a delimiter
- * has been defined, then the value gets appended with the delimiter.
- *
- * @method _updateValue
- * @param elListItem {HTMLElement} The &lt;li&gt; element item with which to update the value.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._updateValue = function(elListItem) {
-    if(!this.suppressInputUpdate) {    
-        var elTextbox = this._elTextbox;
-        var sDelimChar = (this.delimChar) ? (this.delimChar[0] || this.delimChar) : null;
-        var sResultMatch = elListItem._sResultMatch;
-    
-        // Calculate the new value
-        var sNewValue = "";
-        if(sDelimChar) {
-            // Preserve selections from past queries
-            sNewValue = this._sPastSelections;
-            // Add new selection plus delimiter
-            sNewValue += sResultMatch + sDelimChar;
-            if(sDelimChar != " ") {
-                sNewValue += " ";
-            }
-        }
-        else { 
-            sNewValue = sResultMatch;
-        }
-        
-        // Update input field
-        elTextbox.value = sNewValue;
-    
-        // Scroll to bottom of textarea if necessary
-        if(elTextbox.type == "textarea") {
-            elTextbox.scrollTop = elTextbox.scrollHeight;
-        }
-    
-        // Move cursor to end
-        var end = elTextbox.value.length;
-        this._selectText(elTextbox,end,end);
-    
-        this._elCurListItem = elListItem;
-    }
-};
-
-/**
- * Selects a result item from the container
- *
- * @method _selectItem
- * @param elListItem {HTMLElement} The selected &lt;li&gt; element item.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._selectItem = function(elListItem) {
-    this._bItemSelected = true;
-    this._updateValue(elListItem);
-    this._sPastSelections = this._elTextbox.value;
-    this._clearInterval();
-    this.itemSelectEvent.fire(this, elListItem, elListItem._oResultData);
-    this._toggleContainer(false);
-};
-
-/**
- * If an item is highlighted in the container, the right arrow key jumps to the
- * end of the textbox and selects the highlighted item, otherwise the container
- * is closed.
- *
- * @method _jumpSelection
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._jumpSelection = function() {
-    if(this._elCurListItem) {
-        this._selectItem(this._elCurListItem);
-    }
-    else {
-        this._toggleContainer(false);
-    }
-};
-
-/**
- * Triggered by up and down arrow keys, changes the current highlighted
- * &lt;li&gt; element item. Scrolls container if necessary.
- *
- * @method _moveSelection
- * @param nKeyCode {Number} Code of key pressed.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._moveSelection = function(nKeyCode) {
-    if(this._bContainerOpen) {
-        // Determine current item's id number
-        var elCurListItem = this._elCurListItem;
-        var nCurItemIndex = -1;
-
-        if(elCurListItem) {
-            nCurItemIndex = elCurListItem._nItemIndex;
-        }
-
-        var nNewItemIndex = (nKeyCode == 40) ?
-                (nCurItemIndex + 1) : (nCurItemIndex - 1);
-
-        // Out of bounds
-        if(nNewItemIndex < -2 || nNewItemIndex >= this._nDisplayedItems) {
-            return;
-        }
-
-        if(elCurListItem) {
-            // Unhighlight current item
-            this._toggleHighlight(elCurListItem, "from");
-            this.itemArrowFromEvent.fire(this, elCurListItem);
-        }
-        if(nNewItemIndex == -1) {
-           // Go back to query (remove type-ahead string)
-            if(this.delimChar) {
-                this._elTextbox.value = this._sPastSelections + this._sCurQuery;
-            }
-            else {
-                this._elTextbox.value = this._sCurQuery;
-            }
-            return;
-        }
-        if(nNewItemIndex == -2) {
-            // Close container
-            this._toggleContainer(false);
-            return;
-        }
-        
-        var elNewListItem = this._elList.childNodes[nNewItemIndex];
-
-        // Scroll the container if necessary
-        var elContent = this._elContent;
-        var scrollOn = ((YAHOO.util.Dom.getStyle(elContent,"overflow") == "auto") ||
-            (YAHOO.util.Dom.getStyle(elContent,"overflowY") == "auto"));
-        if(scrollOn && (nNewItemIndex > -1) &&
-        (nNewItemIndex < this._nDisplayedItems)) {
-            // User is keying down
-            if(nKeyCode == 40) {
-                // Bottom of selected item is below scroll area...
-                if((elNewListItem.offsetTop+elNewListItem.offsetHeight) > (elContent.scrollTop + elContent.offsetHeight)) {
-                    // Set bottom of scroll area to bottom of selected item
-                    elContent.scrollTop = (elNewListItem.offsetTop+elNewListItem.offsetHeight) - elContent.offsetHeight;
-                }
-                // Bottom of selected item is above scroll area...
-                else if((elNewListItem.offsetTop+elNewListItem.offsetHeight) < elContent.scrollTop) {
-                    // Set top of selected item to top of scroll area
-                    elContent.scrollTop = elNewListItem.offsetTop;
-
-                }
-            }
-            // User is keying up
-            else {
-                // Top of selected item is above scroll area
-                if(elNewListItem.offsetTop < elContent.scrollTop) {
-                    // Set top of scroll area to top of selected item
-                    this._elContent.scrollTop = elNewListItem.offsetTop;
-                }
-                // Top of selected item is below scroll area
-                else if(elNewListItem.offsetTop > (elContent.scrollTop + elContent.offsetHeight)) {
-                    // Set bottom of selected item to bottom of scroll area
-                    this._elContent.scrollTop = (elNewListItem.offsetTop+elNewListItem.offsetHeight) - elContent.offsetHeight;
-                }
-            }
-        }
-
-        this._toggleHighlight(elNewListItem, "to");
-        this.itemArrowToEvent.fire(this, elNewListItem);
-        if(this.typeAhead) {
-            this._updateValue(elNewListItem);
-        }
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private event handlers
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Handles &lt;li&gt; element mouseover events in the container.
- *
- * @method _onItemMouseover
- * @param v {HTMLEvent} The mouseover event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-/*YAHOO.widget.AutoComplete.prototype._onItemMouseover = function(v,oSelf) {
-    if(oSelf.prehighlightClassName) {
-        oSelf._togglePrehighlight(this,"mouseover");
-    }
-    else {
-        oSelf._toggleHighlight(this,"to");
-    }
-
-    oSelf.itemMouseOverEvent.fire(oSelf, this);
-};*/
-
-/**
- * Handles &lt;li&gt; element mouseout events in the container.
- *
- * @method _onItemMouseout
- * @param v {HTMLEvent} The mouseout event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-/*YAHOO.widget.AutoComplete.prototype._onItemMouseout = function(v,oSelf) {
-    if(oSelf.prehighlightClassName) {
-        oSelf._togglePrehighlight(this,"mouseout");
-    }
-    else {
-        oSelf._toggleHighlight(this,"from");
-    }
-
-    oSelf.itemMouseOutEvent.fire(oSelf, this);
-};*/
-
-/**
- * Handles &lt;li&gt; element click events in the container.
- *
- * @method _onItemMouseclick
- * @param v {HTMLEvent} The click event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-/*YAHOO.widget.AutoComplete.prototype._onItemMouseclick = function(v,oSelf) {
-    // In case item has not been moused over
-    oSelf._toggleHighlight(this,"to");
-    oSelf._selectItem(this);
-};*/
-
-/**
- * Handles container mouseover events.
- *
- * @method _onContainerMouseover
- * @param v {HTMLEvent} The mouseover event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onContainerMouseover = function(v,oSelf) {
-    var elTarget = YAHOO.util.Event.getTarget(v);
-    var elTag = elTarget.nodeName.toLowerCase();
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "li":
-                if(oSelf.prehighlightClassName) {
-                    oSelf._togglePrehighlight(elTarget,"mouseover");
-                }
-                else {
-                    oSelf._toggleHighlight(elTarget,"to");
-                }
-            
-                oSelf.itemMouseOverEvent.fire(oSelf, elTarget);
-                break;
-            case "div":
-                if(YAHOO.util.Dom.hasClass(elTarget,"yui-ac-container")) {
-                    oSelf._bOverContainer = true;
-                    return;
-                }
-                break;
-            default:
-                break;
-        }
-        
-        elTarget = elTarget.parentNode;
-        if(elTarget) {
-            elTag = elTarget.nodeName.toLowerCase();
-        }
-    }
-};
-
-/**
- * Handles container mouseout events.
- *
- * @method _onContainerMouseout
- * @param v {HTMLEvent} The mouseout event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onContainerMouseout = function(v,oSelf) {
-    var elTarget = YAHOO.util.Event.getTarget(v);
-    var elTag = elTarget.nodeName.toLowerCase();
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "li":
-                if(oSelf.prehighlightClassName) {
-                    oSelf._togglePrehighlight(elTarget,"mouseout");
-                }
-                else {
-                    oSelf._toggleHighlight(elTarget,"from");
-                }
-            
-                oSelf.itemMouseOutEvent.fire(oSelf, elTarget);
-                break;
-            case "ul":
-                oSelf._toggleHighlight(oSelf._elCurListItem,"to");
-                break;
-            case "div":
-                if(YAHOO.util.Dom.hasClass(elTarget,"yui-ac-container")) {
-                    oSelf._bOverContainer = false;
-                    return;
-                }
-                break;
-            default:
-                break;
-        }
-
-        elTarget = elTarget.parentNode;
-        if(elTarget) {
-            elTag = elTarget.nodeName.toLowerCase();
-        }
-    }
-};
-
-/**
- * Handles container click events.
- *
- * @method _onContainerClick
- * @param v {HTMLEvent} The click event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onContainerClick = function(v,oSelf) {
-    var elTarget = YAHOO.util.Event.getTarget(v);
-    var elTag = elTarget.nodeName.toLowerCase();
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "li":
-                // In case item has not been moused over
-                oSelf._toggleHighlight(elTarget,"to");
-                oSelf._selectItem(elTarget);
-                return;
-            default:
-                break;
-        }
-
-        elTarget = elTarget.parentNode;
-        if(elTarget) {
-            elTag = elTarget.nodeName.toLowerCase();
-        }
-    }    
-};
-
-
-/**
- * Handles container scroll events.
- *
- * @method _onContainerScroll
- * @param v {HTMLEvent} The scroll event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onContainerScroll = function(v,oSelf) {
-    oSelf._elTextbox.focus();
-};
-
-/**
- * Handles container resize events.
- *
- * @method _onContainerResize
- * @param v {HTMLEvent} The resize event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onContainerResize = function(v,oSelf) {
-    oSelf._toggleContainerHelpers(oSelf._bContainerOpen);
-};
-
-
-/**
- * Handles textbox keydown events of functional keys, mainly for UI behavior.
- *
- * @method _onTextboxKeyDown
- * @param v {HTMLEvent} The keydown event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onTextboxKeyDown = function(v,oSelf) {
-    var nKeyCode = v.keyCode;
-
-    // Clear timeout
-    if(oSelf._nTypeAheadDelayID != -1) {
-        clearTimeout(oSelf._nTypeAheadDelayID);
-    }
-    
-    switch (nKeyCode) {
-        case 9: // tab
-            if(!YAHOO.env.ua.opera && (navigator.userAgent.toLowerCase().indexOf("mac") == -1) || (YAHOO.env.ua.webkit>420)) {
-                // select an item or clear out
-                if(oSelf._elCurListItem) {
-                    if(oSelf.delimChar && (oSelf._nKeyCode != nKeyCode)) {
-                        if(oSelf._bContainerOpen) {
-                            YAHOO.util.Event.stopEvent(v);
-                        }
-                    }
-                    oSelf._selectItem(oSelf._elCurListItem);
-                }
-                else {
-                    oSelf._toggleContainer(false);
-                }
-            }
-            break;
-        case 13: // enter
-            if(!YAHOO.env.ua.opera && (navigator.userAgent.toLowerCase().indexOf("mac") == -1) || (YAHOO.env.ua.webkit>420)) {
-                if(oSelf._elCurListItem) {
-                    if(oSelf._nKeyCode != nKeyCode) {
-                        if(oSelf._bContainerOpen) {
-                            YAHOO.util.Event.stopEvent(v);
-                        }
-                    }
-                    oSelf._selectItem(oSelf._elCurListItem);
-                }
-                else {
-                    oSelf._toggleContainer(false);
-                }
-            }
-            break;
-        case 27: // esc
-            oSelf._toggleContainer(false);
-            return;
-        case 39: // right
-            oSelf._jumpSelection();
-            break;
-        case 38: // up
-            if(oSelf._bContainerOpen) {
-                YAHOO.util.Event.stopEvent(v);
-                oSelf._moveSelection(nKeyCode);
-            }
-            break;
-        case 40: // down
-            if(oSelf._bContainerOpen) {
-                YAHOO.util.Event.stopEvent(v);
-                oSelf._moveSelection(nKeyCode);
-            }
-            break;
-        default: 
-            oSelf._bItemSelected = false;
-            oSelf._toggleHighlight(oSelf._elCurListItem, "from");
-
-            oSelf.textboxKeyEvent.fire(oSelf, nKeyCode);
-            break;
-    }
-
-    if(nKeyCode === 18){
-        oSelf._enableIntervalDetection();
-    }    
-    oSelf._nKeyCode = nKeyCode;
-};
-
-/**
- * Handles textbox keypress events.
- * @method _onTextboxKeyPress
- * @param v {HTMLEvent} The keypress event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onTextboxKeyPress = function(v,oSelf) {
-    var nKeyCode = v.keyCode;
-
-        // Expose only to non SF3 (bug 1978549) Mac browsers (bug 790337) and  Opera browsers (bug 583531),
-        // where stopEvent is ineffective on keydown events 
-        if(YAHOO.env.ua.opera || (navigator.userAgent.toLowerCase().indexOf("mac") != -1) && (YAHOO.env.ua.webkit < 420)) {
-            switch (nKeyCode) {
-            case 9: // tab
-                // select an item or clear out
-                if(oSelf._bContainerOpen) {
-                    if(oSelf.delimChar) {
-                        YAHOO.util.Event.stopEvent(v);
-                    }
-                    if(oSelf._elCurListItem) {
-                        oSelf._selectItem(oSelf._elCurListItem);
-                    }
-                    else {
-                        oSelf._toggleContainer(false);
-                    }
-                }
-                break;
-            case 13: // enter
-                if(oSelf._bContainerOpen) {
-                    YAHOO.util.Event.stopEvent(v);
-                    if(oSelf._elCurListItem) {
-                        oSelf._selectItem(oSelf._elCurListItem);
-                    }
-                    else {
-                        oSelf._toggleContainer(false);
-                    }
-                }
-                break;
-            default:
-                break;
-            }
-        }
-
-        //TODO: (?) limit only to non-IE, non-Mac-FF for Korean IME support (bug 811948)
-        // Korean IME detected
-        else if(nKeyCode == 229) {
-            oSelf._enableIntervalDetection();
-        }
-};
-
-/**
- * Handles textbox keyup events to trigger queries.
- *
- * @method _onTextboxKeyUp
- * @param v {HTMLEvent} The keyup event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onTextboxKeyUp = function(v,oSelf) {
-    var sText = this.value; //string in textbox
-    
-    // Check to see if any of the public properties have been updated
-    oSelf._initProps();
-
-    // Filter out chars that don't trigger queries
-    var nKeyCode = v.keyCode;
-    if(oSelf._isIgnoreKey(nKeyCode)) {
-        return;
-    }
-
-    // Clear previous timeout
-    /*if(oSelf._nTypeAheadDelayID != -1) {
-        clearTimeout(oSelf._nTypeAheadDelayID);
-    }*/
-    if(oSelf._nDelayID != -1) {
-        clearTimeout(oSelf._nDelayID);
-    }
-
-    // Set new timeout
-    oSelf._nDelayID = setTimeout(function(){
-            oSelf._sendQuery(sText);
-        },(oSelf.queryDelay * 1000));
-
-     //= nDelayID;
-    //else {
-        // No delay so send request immediately
-        //oSelf._sendQuery(sText);
-   //}
-};
-
-/**
- * Handles text input box receiving focus.
- *
- * @method _onTextboxFocus
- * @param v {HTMLEvent} The focus event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onTextboxFocus = function (v,oSelf) {
-    // Start of a new interaction
-    if(!oSelf._bFocused) {
-        oSelf._elTextbox.setAttribute("autocomplete","off");
-        oSelf._bFocused = true;
-        oSelf._sInitInputValue = oSelf._elTextbox.value;
-        oSelf.textboxFocusEvent.fire(oSelf);
-    }
-};
-
-/**
- * Handles text input box losing focus.
- *
- * @method _onTextboxBlur
- * @param v {HTMLEvent} The focus event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onTextboxBlur = function (v,oSelf) {
-    // Don't treat as a blur if it was a selection via mouse click
-    if(!oSelf._bOverContainer || (oSelf._nKeyCode == 9)) {
-        // Current query needs to be validated as a selection
-        if(!oSelf._bItemSelected) {
-            var elMatchListItem = oSelf._textMatchesOption();
-            // Container is closed or current query doesn't match any result
-            if(!oSelf._bContainerOpen || (oSelf._bContainerOpen && (elMatchListItem === null))) {
-                // Force selection is enabled so clear the current query
-                if(oSelf.forceSelection) {
-                    oSelf._clearSelection();
-                }
-                // Treat current query as a valid selection
-                else {
-                    oSelf.unmatchedItemSelectEvent.fire(oSelf, oSelf._sCurQuery);
-                }
-            }
-            // Container is open and current query matches a result
-            else {
-                // Force a selection when textbox is blurred with a match
-                if(oSelf.forceSelection) {
-                    oSelf._selectItem(elMatchListItem);
-                }
-            }
-        }
-
-        if(oSelf._bContainerOpen) {
-            oSelf._toggleContainer(false);
-        }
-        oSelf._clearInterval();
-        oSelf._bFocused = false;
-        if(oSelf._sInitInputValue !== oSelf._elTextbox.value) {
-            oSelf.textboxChangeEvent.fire(oSelf);
-        }
-        oSelf.textboxBlurEvent.fire(oSelf);
-    }
-};
-
-/**
- * Handles window unload event.
- *
- * @method _onWindowUnload
- * @param v {HTMLEvent} The unload event.
- * @param oSelf {YAHOO.widget.AutoComplete} The AutoComplete instance.
- * @private
- */
-YAHOO.widget.AutoComplete.prototype._onWindowUnload = function(v,oSelf) {
-    if(oSelf && oSelf._elTextbox && oSelf.allowBrowserAutocomplete) {
-        oSelf._elTextbox.setAttribute("autocomplete","on");
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Deprecated for Backwards Compatibility
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * @method doBeforeSendQuery
- * @deprecated Use generateRequest.
- */
-YAHOO.widget.AutoComplete.prototype.doBeforeSendQuery = function(sQuery) {
-    return this.generateRequest(sQuery);
-};
-
-/**
- * @method getListItems
- * @deprecated Use getListEl().childNodes.
- */
-YAHOO.widget.AutoComplete.prototype.getListItems = function() {
-    var allListItemEls = [],
-        els = this._elList.childNodes;
-    for(var i=els.length-1; i>=0; i--) {
-        allListItemEls[i] = els[i];
-    }
-    return allListItemEls;
-};
-
-/////////////////////////////////////////////////////////////////////////
-//
-// Private static methods
-//
-/////////////////////////////////////////////////////////////////////////
-
-/**
- * Clones object literal or array of object literals.
- *
- * @method AutoComplete._cloneObject
- * @param o {Object} Object.
- * @private
- * @static     
- */
-YAHOO.widget.AutoComplete._cloneObject = function(o) {
-    if(!YAHOO.lang.isValue(o)) {
-        return o;
-    }
-    
-    var copy = {};
-    
-    if(YAHOO.lang.isFunction(o)) {
-        copy = o;
-    }
-    else if(YAHOO.lang.isArray(o)) {
-        var array = [];
-        for(var i=0,len=o.length;i<len;i++) {
-            array[i] = YAHOO.widget.AutoComplete._cloneObject(o[i]);
-        }
-        copy = array;
-    }
-    else if(YAHOO.lang.isObject(o)) { 
-        for (var x in o){
-            if(YAHOO.lang.hasOwnProperty(o, x)) {
-                if(YAHOO.lang.isValue(o[x]) && YAHOO.lang.isObject(o[x]) || YAHOO.lang.isArray(o[x])) {
-                    copy[x] = YAHOO.widget.AutoComplete._cloneObject(o[x]);
-                }
-                else {
-                    copy[x] = o[x];
-                }
-            }
-        }
-    }
-    else {
-        copy = o;
-    }
-
-    return copy;
-};
-
-
-
-
-YAHOO.register("autocomplete", YAHOO.widget.AutoComplete, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/base/README b/eclipse.org-common/yui/2.6.0/build/base/README
deleted file mode 100644
index 77e8e86..0000000
--- a/eclipse.org-common/yui/2.6.0/build/base/README
+++ /dev/null
@@ -1,29 +0,0 @@
-YUI Library - Base - Release Notes
-
-Version 2.6.0
-
-  * No changes.
-
-Version 2.5.2
-
-  * No changes.
-
-Version 2.5.1
-
-  * No changes.
-
-Version 2.5.0
-
-  * No changes.
-
-Version 2.4.0
-
-  * Fixed typo in comments.
-  * Added margin-bottom:1em; for PRE element to match P
-  * Added color:#000 for legend element, accomodation for IE
-  * Added set width (equivilant to 160px but set in EMs) for input's
-    width type = text or password, and for textareas. 
-  
-Version 2.3.0
-
-  * Initial release.
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/base/base-min.css b/eclipse.org-common/yui/2.6.0/build/base/base-min.css
deleted file mode 100644
index 0701432..0000000
--- a/eclipse.org-common/yui/2.6.0/build/base/base-min.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-h1{font-size:138.5%;}h2{font-size:123.1%;}h3{font-size:108%;}h1,h2,h3{margin:1em 0;}h1,h2,h3,h4,h5,h6,strong{font-weight:bold;}abbr,acronym{border-bottom:1px dotted #000;cursor:help;} em{font-style:italic;}blockquote,ul,ol,dl{margin:1em;}ol,ul,dl{margin-left:2em;}ol li{list-style:decimal outside;}ul li{list-style:disc outside;}dl dd{margin-left:1em;}th,td{border:1px solid #000;padding:.5em;}th{font-weight:bold;text-align:center;}caption{margin-bottom:.5em;text-align:center;}p,fieldset,table,pre{margin-bottom:1em;}input[type=text],input[type=password],textarea{width:12.25em;*width:11.9em;}
diff --git a/eclipse.org-common/yui/2.6.0/build/base/base.css b/eclipse.org-common/yui/2.6.0/build/base/base.css
deleted file mode 100644
index 3714534..0000000
--- a/eclipse.org-common/yui/2.6.0/build/base/base.css
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* base.css, part of YUI's CSS Foundation */
-h1 {
-	/*18px via YUI Fonts CSS foundation*/
-	font-size:138.5%;  
-}
-h2 {
-	/*16px via YUI Fonts CSS foundation*/
-	font-size:123.1%; 
-}
-h3 {
-	/*14px via YUI Fonts CSS foundation*/
-	font-size:108%;  
-}
-h1,h2,h3 {
-	/* top & bottom margin based on font size */
-	margin:1em 0;
-}
-h1,h2,h3,h4,h5,h6,strong {
-	/*bringing boldness back to headers and the strong element*/
-	font-weight:bold; 
-}
-abbr,acronym {
-	/*indicating to users that more info is available */
-	border-bottom:1px dotted #000;
-	cursor:help;
-} 
-em {
-	/*bringing italics back to the em element*/
-	font-style:italic;
-}
-del {
-	text-decoration:line-through;
-}
-blockquote,ul,ol,dl {
-	/*giving blockquotes and lists room to breath*/
-	margin:1em;
-}
-ol,ul,dl {
-	/*bringing lists on to the page with breathing room */
-	margin-left:2em;
-}
-ol li {
-	/*giving OL's LIs generated numbers*/
-	list-style: decimal outside;	
-}
-ul li {
-	/*giving UL's LIs generated disc markers*/
-	list-style: disc outside;
-}
-dl dd {
-	/*giving UL's LIs generated numbers*/
-	margin-left:1em;
-}
-th,td {
-	/*borders and padding to make the table readable*/
-	border:1px solid #000;
-	padding:.5em;
-}
-th {
-	/*distinguishing table headers from data cells*/
-	font-weight:bold;
-	text-align:center;
-}
-caption {
-	/*coordinated margin to match cell's padding*/
-	margin-bottom:.5em;
-	/*centered so it doesn't blend in to other content*/
-	text-align:center;
-}
-p,fieldset,table,pre {
-	/*so things don't run into each other*/
-	margin-bottom:1em;
-}
-/* setting a consistent width, 160px; 
-   control of type=file still not possible */
-input[type=text],input[type=password],textarea{width:12.25em;*width:11.9em;}
diff --git a/eclipse.org-common/yui/2.6.0/build/button/README b/eclipse.org-common/yui/2.6.0/build/button/README
deleted file mode 100644
index b93c085..0000000
--- a/eclipse.org-common/yui/2.6.0/build/button/README
+++ /dev/null
@@ -1,436 +0,0 @@
-*** version 2.6.0 ***
-
-Fixed the following bugs:
--------------------------
-
-+ Clicking on the option region of a Button of "type" split will fire the "option" event, but not
-  "mousedown," "mouseup," "click," or "dblclick".
-
-+ Buttons of type "radio" and "checkbox" will not override a value provided for the title attribute.
-
-+ Returning false in an inline "submit" event handler for a form will now prevent the form
-  from being submitted when the form contains Button instances.
-  
-+ Pressing the enter key to submit a form containing Button instances will no longer 
-  trigger a beep sound in Internet Explorer.
-
-+ The Button widget no longer logs errors when strict error reporting is enabled in FireFox.
-
-+ Button instances are now automatically clicked when their corresponding <label> is clicked.
-
-+ The name and value of selected MenuItems in submenus of a Button's Menu are now part of their
-  parent form's data when the form is submitted.
-
-+ For Button's of type "menu" and "split" created using an existing <SELECT> element: The name and 
-  value of the pre-selected MenuItem in a Button's Menu are now part of their parent form's data 
-  when the form is submitted.
-	
-+ The "appendTo" event now correctly fires when the "container" attribute is set to a 
-  node reference.
-
-+ Simple forms with two fields: a Button of type "submit" and a text field will no longer 
-  be submitted twice when the enter key is pressed.
-
-+ Submitting a form by pressing the enter key will now result in a Button's "click" event 
-  handlers getting called.
-
-+ Buttons of type "menu" and "split" now consistently display their Menus in Opera.
-
-+ Button no longer logs a warning when a Button is created without an id.
-  
-
-Added the following features:
------------------------------
-
-+ Added a new "menumaxheight" attribute used to set the "maxheight" configuration property of a 
-  Button's Menu.
-
-+ Added a new "menuminscrollheight" attribute used to set the "minscrollheight" configuration 
-  property of a Button's Menu.
-
-+ Added a "menualignment" attribute attribute used to control how a Menu is aligned to its 
-  corresponding Button.
-
-+ Added a "yui-split-button-hoveroption" CSS class that is applied when the user hovers the mouse 
-  over the "option" section of a split button.
-
-
-Changes:
---------
-
-+ Removed the rounded corners for IE 6 Quirks Mode and Strict Mode and IE 7 Quirks Mode.
-
-+ Changed the keyboard shortcut used to display the Menu for Button's of type "split" to the down
-  arrow key.
-
-+ Passing a DOM element reference to the "container" attribute will no longer result in the Button 
-  being appended to the container immediately.  Use the "appendTo" event to listen for when 
-  the Button will be appended to the element specified as its container.  To append a Button to
-  an element in the DOM immediately, use the "appendTo" method rather than the "container" 
-  attribute.
-
-
-*** Version 2.5.2 ***
-
-Fixed the following bugs:
--------------------------
-
-+ Button instances no longer flicker in Firefox 3 when their "label" attributed is updated.
-
-+ Scrolled Menus of Buttons whose type attribute is set to "menu" or "split" no longer appear 
-  on top of their corresponding Button instance.
-
-+ The keyboard shortcut responsible for triggering the display of the Menu for Button instances of
-  type "split" will no longer trigger the display of the browser's default context menu in Opera.
-
-
-
-*** Version 2.5.1 ***
-
-+ No changes.
-
-
-
-*** Version 2.5.0 ***
-
-+ Fixed issue where returning false inside the scope of a listener for attribute "before" 
-  events (i.e "beforeCheckedChange") would not cancel the attribute's default setter.
-
-
-
-*** Version 2.4.1 ***
-
-+ No changes.
-
-
-
-*** Version 2.4.0 ***
-
-Added the following features:
------------------------------
-
-+ Added a static method "YAHOO.widget.Button.getButton" that returns a Button 
-  instance with the specified HTML element id.
-
-
-Fixed the following bugs:
--------------------------
-
-+ Removed the ".yui-skin-sam" CSS class name from style rules in the core 
-  stylesheet so that it is now truly skin agnostic.
-
-+ Updated the default text for tooltips for Buttons of type "radio" so that 
-  they offer the correct instructional text.
-
-+ Menus with grouped YAHOO.widget.MenuItem instances will now highlight 
-  correctly when used with Button.
-
-+ Buttons of type "link" now have the same default height as other Button
-  types in Internet Explorer.
-
-+ Buttons of various types now line up correctly on the same line.
-
-+ Menu is now truly an optional dependancy of Button.
-
-+ Menus now render with the correct width when the "yui-skin-sam" CSS class 
-  name is applied to an element other than the <BODY>.
-
-
-
-*** Version 2.3.1 ***
-
-Fixed the following bugs:
--------------------------
-+ Purged the old 2.2.2 Button stylesheet and related image assets that was 
-  mistakenly included in the 2.3.0 build.
-
-+ Fixed an issue in Gecko where changing a Button instance's "label" attribute
-  after the Button had been created would not result in the Button redrawing at
-  a width to fit its content.
-  
-+ Fixed an issue where the singleton keypress event handler
-  (YAHOO.widget.Button.onFormKeyPress) registered for forms containing
-  Button instances of type "submit" was not removed from the form once all of 
-  its child Button instances are destroyed.
-
-+ Submitting a form by clicking on a MenuItem of a SplitButton's or MenuButton's
-  Menu will no longer result in a JavaScript error.
-  
-+ Modified how element tag names are compared to support XHTML applications.
-
-+ Added code to remove the CSS class names representing the "hover," "focus," 
-  and "active" states when a Button instance is disabled.
-
-
-*** Version 2.3 ***
-
-Added the following features:
------------------------------
-
-+ Added a "focusmenu" configuration attribute that controls whether or not a 
-  Button instance's menu will automatically be focused when made visible. 
-
-+ Added a "lazyloadmenu" configuration attribute that controls the value of 
-  the "lazyload" configuration property of a Button's menu.
-
-+ Added "menuclassname" configuration attribute that defines a CSS class name
-  to be applied to the root HTML element of a button's menu.
-
-
-Fixed the following bugs:
--------------------------
-
-+ Setting the "label" attribute of a Button of type "link" to a string with 
-  a "www." prefix will no longer result in the value of the "href" property 
-  being used for the "label" in IE.
-
-+ Disabling a Button when its menu is visible will now result in the menu 
-  being hidden.
-
-+ Hidden field(s) created by a Button instance are now removed if the 
-  submission of its parent form is cancelled.
-
-+ If a Button instance is preceeded by another enabled HTML submit button 
-  (<input type="submit" ...> or <button type="submit" ...>), it will no longer 
-  create a hidden field representing its name and value when its parent form 
-  is submitted.
-
-+ If an HTML form contains a mix of YUI Buttons of type "submit" and standard 
-  HTML submit buttons (<input type="submit" ...> or <button type="submit" ...>) 
-  its "submit" event will no longer fire twice when it is submitted by the user 
-  pressing the enter key while focus inside another HTML form control.
-
-+ If all Button instances in a form are disabled, the form will no longer be 
-  submitted when the user presses the enter key while focused inside another 
-  HTML form control.
-
-+ The first enabled Button instance in a form now correctly adds its name and 
-  value to the form's data set when the form is submitted by the user pressing 
-  the enter key while focused inside another form control.  
-
-+ Fixed typo in the source file for the ButtonGroup class that was causing the 
-  private variable "m_oButtons" to be declared as a global.
-
-+ Switched to use of the CSS display type "-moz-inline-box" from 
-  "-moz-inline-stack" for Gecko-based browsers so that the entire area of a 
-  Button instance is clickable when it is rendered inside another inline 
-  element.
-
-+ Added "yui-button" and "yui-[button type]-button" prefix to CSS classes to 
-  sandbox Button styles.
-
-
-Changes:
---------
-
-+ Default value of "type" configuration attribute now "push" (was "button").
-
-+ Type "menubutton" now "menu."
-
-+ Type "splitbuton" now "split."
-
-+ Added "addStateCSSClasses" method.
-
-+ Added "removeStateCSSClasses" method.
-
-+ Renamed protected property "_hiddenField" to "_hiddenFields."
-
-+ Removed protected "submit" event handler named "_onFormSubmit."
-
-+ Renamed public method "createHiddenField" to "createHiddenFields."
-
-+ Added new "removeHiddenFields" method.
-
-+ Renamed static method "YAHOO.widget.Button.onFormKeyDown" 
-  to "YAHOO.widget.Button.onFormKeyPress."
-
-+ Renamed "TAG_NAME" constant (YAHOO.widget.Button.prototype.TAG_NAME and 
-  YAHOO.widget.ButtonGroup.prototype.TAG_NAME) to 
-  "NODE_NAME" (YAHOO.widget.Button.prototype.NODE_NAME and 
-  YAHOO.widget.ButtonGroup.prototype.NODE_NAME).
-
-+ The "selectedMenuItem" configuration attribute now correctly gets/sets the 
-  index of the selected MenuItem instance of the button's menu, rather than a
-  MenuItem instance.
-
-+ The "container" configuration attribute is now writeonce
-
-+ The "menu" configuration attribute is now writeonce
-
-+ The root element of each button's menu now will have two CSS classes 
-  appended to it:
-    - The CSS class name specified by the "menuclassname" configuration 
-      attribute (by default is "yui-button-menu")
-    - A type-specific class name (either "yui-split-button-menu" 
-      or "yui-menu-button-menu")
-
-+ "menu" configuration attribute now supports creation or use of 
-  YAHOO.widget.Overlay in addition to previously supported 
-  YAHOO.widget.Menu:
-  
-	- To create a menu from existing markup using YAHOO.widget.Overlay, pass the
-	  id or node reference of the HTML element to be used to create the Overlay 
-	  as the value of the "menu" configuration attribute.
-
-    - YAHOO.widget.Overlay instances passed as a value for the "menu" 
-      configuration attribute need to be fully rendered.  
-
-	- To create a menu from existing markup using YAHOO.widget.Menu, pass the 
-	  id or node reference of the HTML element to be used to create the menu 
-	  as the value of the "menu" configuration attribute and give the 
-	  HTML element the same class name as specified by 
-	  YAHOO.widget.Menu.prototype.CSS_CLASS_NAME.
-	
-	- YAHOO.widget.Overlay instances used as a menu are by default not rendered 
-	  until they are are made visible for the first time.  This behavior 
-	  can be changed so that they are rendered immediately by setting the value 
-	  of the "lazyloadmenu" configuration attribute to "false."
-
-+ If you pass an element id for the value of the "menu" configuration 
-  attribute, that node is now accessed immediately via the "get" method of the 
-  Dom utility (YAHOO.util.Dom) as opposed to the "onContentReady" method of the
-  Event utility (YAHOO.util.Event).
-
-+ Modified code to support a more generic markup format.  Now any number of 
-  HTML elements can exist between a Button's root HTML element and its button 
-  node (be it an <A> or <BUTTON> element):
-
-    <ROOT_NODE> ... <BUTTON_NODE /> ... </ROOT_NODE>
-
-+ A Button can now be initialized using any of the following six HTML patterns:
-
-    - <A> TEXT/HTML </A>
-    - <BUTTON> TEXT/HTML </BUTTON>
-    - <INPUT />
-    - <ROOT_NODE> ... <A> TEXT/HTML </A> ... </ROOT_NODE>
-    - <ROOT_NODE> ... <BUTTON> TEXT/HTML </BUTTON> ... </ROOT_NODE>
-    - <ROOT_NODE> ... <INPUT /> ... </ROOT_NODE>
-
-+ The id of a Button instance can now match that of its source element.
-
-+ CSS changes:
-
-    1) All Buttons have a "yui-" prefix as opposed to "yui":
-    
-    2.2.2	    | 2.3
-    -------------------------
-    .yuibutton  | .yui-button
-    
-    
-    2) Each Button type has its own class name with a "yui-" prefix and 
-    "-button" suffix IN ADDITION TO the default "yui-button" class name:
-    
-    2.2.2			| 2.3
-    ------------------------------------------
-    .yuibutton.splitbutton	| .yui-split-button
-    .yuibutton.menubutton	| .yui-menu-button
-    
-    * Allows for the definition of generic styles that apply to all buttons, 
-    while providing a means for uniquely styling buttons of a specific type.
-    
-    
-    3) For states that are common to all Buttons, two classes are applied: a
-    generic class name (i.e. yui-button-[state]) and a type-specific state class
-    name (yui-[type]-button-[state]):
-    
-    2.2.2			| 2.3
-    -------------------------------------------
-    .yuibutton.focus	| .yui-button-focus
-    .yuibutton.radio.focus	| .yui-radio-button-focus
-    
-    * States common to all Button types are:
-        + focus
-        + hover
-        + active
-        + disabled
-    
-    ** Allows for the definition of generic styles that apply to all states of 
-    all buttons, while providing a means for uniquely styling states for 
-    buttons of a specific type.
-    
-    
-    4) Buttons of type "radio" and "checkbox" have two classes applied to 
-    represent their "checked" state: a generic class name 
-    (i.e. yui-button-checked) and a type-specific class 
-    name (yui-[type]-button-checked):
-    
-    2.2.2			    | 2.3
-    -------------------------------------------
-    .yuibutton.checked	    | .yui-button-checked
-    .yuibutton.radio.checked    | .yui-radio-button-checked
-    .yuibutton.checkbox.checked | .yui-checkbox-button-checked
-    
-    ** This allows for the definition of a universal style for all Buttons that
-    have a "checked" state or the ability to define a type-specific style for 
-    the "checked" state.
-    
-    
-    5) States that are specific to a particular type only get a type-specific 
-    state class name.  Currently this only applies to the "splitbutton" type:
-    
-    2.2.2			    | 2.3
-    -------------------------------------------
-    .yuibutton.activeoption     | .yui-split-button-activeoption
-    
-    
-    6) The "ie6" class name is removed.
-
-
-*** Version 2.2.2 ***
-
-+ No changes
-
-
-*** Version 2.2.1 ***
-
-Added the following features:
------------------------------
-
-+ Added "getHiddenField" method to YAHOO.widget.Button.
-
-
-Fixed the following bugs:
--------------------------
-
-+ Removed built-in use of the Event utility's "onAvailable" method from the
-  constructor of Button and ButtonGroup as it was preventing the addition of 
-  event listeners on instances created from existing markup.  Going forward 
-  Button and ButtonGroup instances created from existing markup can only be 
-  instantiated once their source HTML element is available in the DOM.  The 
-  Button examples illustrate how this can be accomplished.
-
-+ Modified code so that disabled Button instances no longer fire DOM events.
-
-+ Pressing the enter key while focused on a form field whose parent form 
-  contains a Button instance of type "submit" will now automatically submit 
-  the form using the first Button instance of type "submit".
-
-+ Clicking a Button instance of type="submit" will now cause the Button's 
-  parent form's "submit" event to fire.
-
-+ Modified Button CSS so that the filter used to apply alpha transparency to 
-  a Button's background PNG is only used by IE 6.  The previous code was 
-  enabling IE's Alpha image loader for IE 7 in Quirks mode. 
-
-+ Fixed documentation error for "getForm" method.  
-
-
-Changes:
---------
-
-+ Made the "submitForm" method of YAHOO.widget.Button public (was 
-  previously protected).  
-
-+ Removed "init" event and corresponding "oninit" configuration attribute
-  from YAHOO.widget.Button and YAHOO.widget.ButtonGroup.
-
-+ Added the CSS class "ie6" to button.css.  This classname is append to root 
-  DOM element of Button instances created with IE 6.  By default this class
-  is used to apply a filter that gives alpha transparency to a Button's 
-  background PNG.
-
-
-
-*** Version 2.2.0 ***
-
-* Button Control introduced
diff --git a/eclipse.org-common/yui/2.6.0/build/button/assets/button-core.css b/eclipse.org-common/yui/2.6.0/build/button/assets/button-core.css
deleted file mode 100644
index 1304886..0000000
--- a/eclipse.org-common/yui/2.6.0/build/button/assets/button-core.css
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-button  {
-
-    display: -moz-inline-box; /* Gecko */
-    display: inline-block; /* IE, Opera and Safari */
-    vertical-align: text-bottom;
-    
-}
-
-.yui-button .first-child {
-
-    display: block;
-    *display: inline-block; /* IE */
-
-}
-
-.yui-button button,
-.yui-button a {
-
-    display: block;
-    *display: inline-block; /* IE */
-    border: none;
-    margin: 0;
-
-}
-
-.yui-button button {
-
-    background-color: transparent;
-    *overflow: visible; /* Remove superfluous padding for IE */
-    cursor: pointer;
-
-}
-
-.yui-button a {
-
-    text-decoration: none;
-
-}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/button-skin.css b/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/button-skin.css
deleted file mode 100644
index 721d5ff..0000000
--- a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/button-skin.css
+++ /dev/null
@@ -1,240 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-button  {
-
-    border-width: 1px 0;
-    border-style: solid;
-    border-color: #808080;
-    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
-    margin: auto .25em;
-    
-}
-
-.yui-skin-sam .yui-button .first-child {
-
-    border-width: 0 1px;
-    border-style: solid;
-    border-color: #808080;
-    margin: 0 -1px;
-    *position: relative;    /* Necessary to get negative margins working in IE */
-    *left: -1px;
-    
-	/* 
-		Don't apply rounded corners for IE 6 (Quirks and Standards Mode) and IE 7 Quirks Mode 
-		since it causes more problems than its worth.
-	*/
-	_margin: 0;
-	_position: static;    
-
-}
-
-.yui-skin-sam .yui-button button,
-.yui-skin-sam .yui-button a {
-
-    padding: 0 10px;
-    font-size: 93%;  /* 12px */
-    line-height: 2;  /* ~24px */
-    *line-height: 1.7; /* For IE */
-    min-height: 2em; /* For Gecko */
-    *min-height: auto; /* For IE */
-    color: #000; 
-
-}
-
-.yui-skin-sam .yui-button a {
-
-    /*
-        Necessary to get Buttons of type "link" to be the correct 
-        height in IE.
-    */
-    *line-height: 1.875;
-	*padding-bottom: 1px;
-
-}
-
-.yui-skin-sam .yui-split-button button,
-.yui-skin-sam .yui-menu-button button {
-
-    padding-right: 20px;
-    background-position: right center;
-    background-repeat: no-repeat;
-    
-}
-
-.yui-skin-sam .yui-menu-button button {
-
-    background-image: url(menu-button-arrow.png);
-
-}
-
-.yui-skin-sam .yui-split-button button {
-
-    background-image: url(split-button-arrow.png);
-
-}
-
-
-/* Focus state */
-
-
-.yui-skin-sam .yui-button-focus {
-
-    border-color: #7D98B8;
-    background-position: 0 -1300px;
-
-}
-
-.yui-skin-sam .yui-button-focus .first-child {
-
-    border-color: #7D98B8;
-
-}
-
-.yui-skin-sam .yui-button-focus button, 
-.yui-skin-sam .yui-button-focus a {
-
-    color: #000;
-
-}
-
-.yui-skin-sam .yui-split-button-focus button {
-
-    background-image: url(split-button-arrow-focus.png);
-
-}
-
-
-/* Hover state */
-
-.yui-skin-sam .yui-button-hover {
-
-    border-color: #7D98B8;
-    background-position: 0 -1300px;
-
-}
-
-.yui-skin-sam .yui-button-hover .first-child {
-
-    border-color: #7D98B8;
-
-}
-
-.yui-skin-sam .yui-button-hover button, 
-.yui-skin-sam .yui-button-hover a {
-
-    color: #000;
-
-}
-
-.yui-skin-sam .yui-split-button-hover button {
-
-    background-image: url(split-button-arrow-hover.png);
-
-}
-
-
-/* Active state */
-
-.yui-skin-sam .yui-button-active {
-    
-    border-color: #7D98B8;
-    background-position: 0 -1700px;
-    
-}
-
-.yui-skin-sam .yui-button-active .first-child {
-
-    border-color: #7D98B8;
-
-}
-
-.yui-skin-sam .yui-button-active button, 
-.yui-skin-sam .yui-button-active a {
-
-    color: #000;
-
-}
-
-.yui-skin-sam .yui-split-button-activeoption {
-
-    border-color: #808080;
-    background-position: 0 0;
-
-}
-
-.yui-skin-sam .yui-split-button-activeoption .first-child {
-
-    border-color: #808080;
-
-}
-
-.yui-skin-sam .yui-split-button-activeoption button {
-
-    background-image: url(split-button-arrow-active.png);
-
-}
-
-
-/* Checked state */
-
-.yui-skin-sam .yui-radio-button-checked,
-.yui-skin-sam .yui-checkbox-button-checked {
-    
-    border-color: #304369;
-    background-position: 0 -1400px;
-    
-}
-
-.yui-skin-sam .yui-radio-button-checked .first-child,
-.yui-skin-sam .yui-checkbox-button-checked .first-child {
-
-    border-color: #304369;
-
-}
-
-.yui-skin-sam .yui-radio-button-checked button,
-.yui-skin-sam .yui-checkbox-button-checked button { 
-
-    color: #fff;
-
-}
-
-
-/* Disabled state */
-
-.yui-skin-sam .yui-button-disabled {
-    
-    border-color: #ccc;
-    background-position: 0 -1500px;
-    
-}
-
-.yui-skin-sam .yui-button-disabled .first-child {
-
-    border-color: #ccc;
-
-}
-
-.yui-skin-sam .yui-button-disabled button, 
-.yui-skin-sam .yui-button-disabled a {
-
-    color: #A6A6A6;
-    cursor: default;
-
-}
-
-.yui-skin-sam .yui-menu-button-disabled button {
-
-    background-image: url(menu-button-arrow-disabled.png);
-    
-}
-
-.yui-skin-sam .yui-split-button-disabled button {
-
-    background-image: url(split-button-arrow-disabled.png);
-    
-}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/button.css b/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/button.css
deleted file mode 100644
index 96033e2..0000000
--- a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/button.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-button{display:-moz-inline-box;display:inline-block;vertical-align:text-bottom;}.yui-button .first-child{display:block;*display:inline-block;}.yui-button button,.yui-button a{display:block;*display:inline-block;border:none;margin:0;}.yui-button button{background-color:transparent;*overflow:visible;cursor:pointer;}.yui-button a{text-decoration:none;}.yui-skin-sam .yui-button{border-width:1px 0;border-style:solid;border-color:#808080;background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;margin:auto .25em;}.yui-skin-sam .yui-button .first-child{border-width:0 1px;border-style:solid;border-color:#808080;margin:0 -1px;*position:relative;*left:-1px;_margin:0;_position:static;}.yui-skin-sam .yui-button button,.yui-skin-sam .yui-button a{padding:0 10px;font-size:93%;line-height:2;*line-height:1.7;min-height:2em;*min-height:auto;color:#000;}.yui-skin-sam .yui-button a{*line-height:1.875;*padding-bottom:1px;}.yui-skin-sam .yui-split-button button,.yui-skin-sam .yui-menu-button button{padding-right:20px;background-position:right center;background-repeat:no-repeat;}.yui-skin-sam .yui-menu-button button{background-image:url(menu-button-arrow.png);}.yui-skin-sam .yui-split-button button{background-image:url(split-button-arrow.png);}.yui-skin-sam .yui-button-focus{border-color:#7D98B8;background-position:0 -1300px;}.yui-skin-sam .yui-button-focus .first-child{border-color:#7D98B8;}.yui-skin-sam .yui-button-focus button,.yui-skin-sam .yui-button-focus a{color:#000;}.yui-skin-sam .yui-split-button-focus button{background-image:url(split-button-arrow-focus.png);}.yui-skin-sam .yui-button-hover{border-color:#7D98B8;background-position:0 -1300px;}.yui-skin-sam .yui-button-hover .first-child{border-color:#7D98B8;}.yui-skin-sam .yui-button-hover button,.yui-skin-sam .yui-button-hover a{color:#000;}.yui-skin-sam .yui-split-button-hover button{background-image:url(split-button-arrow-hover.png);}.yui-skin-sam .yui-button-active{border-color:#7D98B8;background-position:0 -1700px;}.yui-skin-sam .yui-button-active .first-child{border-color:#7D98B8;}.yui-skin-sam .yui-button-active button,.yui-skin-sam .yui-button-active a{color:#000;}.yui-skin-sam .yui-split-button-activeoption{border-color:#808080;background-position:0 0;}.yui-skin-sam .yui-split-button-activeoption .first-child{border-color:#808080;}.yui-skin-sam .yui-split-button-activeoption button{background-image:url(split-button-arrow-active.png);}.yui-skin-sam .yui-radio-button-checked,.yui-skin-sam .yui-checkbox-button-checked{border-color:#304369;background-position:0 -1400px;}.yui-skin-sam .yui-radio-button-checked .first-child,.yui-skin-sam .yui-checkbox-button-checked .first-child{border-color:#304369;}.yui-skin-sam .yui-radio-button-checked button,.yui-skin-sam .yui-checkbox-button-checked button{color:#fff;}.yui-skin-sam .yui-button-disabled{border-color:#ccc;background-position:0 -1500px;}.yui-skin-sam .yui-button-disabled .first-child{border-color:#ccc;}.yui-skin-sam .yui-button-disabled button,.yui-skin-sam .yui-button-disabled a{color:#A6A6A6;cursor:default;}.yui-skin-sam .yui-menu-button-disabled button{background-image:url(menu-button-arrow-disabled.png);}.yui-skin-sam .yui-split-button-disabled button{background-image:url(split-button-arrow-disabled.png);}
diff --git a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/menu-button-arrow-disabled.png b/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/menu-button-arrow-disabled.png
deleted file mode 100644
index 8cef2ab..0000000
--- a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/menu-button-arrow-disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/menu-button-arrow.png b/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/menu-button-arrow.png
deleted file mode 100644
index f03dfee..0000000
--- a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/menu-button-arrow.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow-active.png b/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow-active.png
deleted file mode 100644
index fa58c50..0000000
--- a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow-active.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow-disabled.png b/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow-disabled.png
deleted file mode 100644
index 0a6a82c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow-disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow-focus.png b/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow-focus.png
deleted file mode 100644
index 167d71e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow-focus.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow-hover.png b/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow-hover.png
deleted file mode 100644
index 167d71e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow-hover.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow.png b/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow.png
deleted file mode 100644
index b33a93f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/button/assets/skins/sam/split-button-arrow.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/button/button-debug.js b/eclipse.org-common/yui/2.6.0/build/button/button-debug.js
deleted file mode 100644
index d96ebb4..0000000
--- a/eclipse.org-common/yui/2.6.0/build/button/button-debug.js
+++ /dev/null
@@ -1,4859 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
-* @module button
-* @description <p>The Button Control enables the creation of rich, graphical 
-* buttons that function like traditional HTML form buttons.  <em>Unlike</em> 
-* tradition HTML form buttons, buttons created with the Button Control can have 
-* a label that is different from its value.  With the inclusion of the optional 
-* <a href="module_menu.html">Menu Control</a>, the Button Control can also be
-* used to create menu buttons and split buttons, controls that are not 
-* available natively in HTML.  The Button Control can also be thought of as a 
-* way to create more visually engaging implementations of the browser's 
-* default radio-button and check-box controls.</p>
-* <p>The Button Control supports the following types:</p>
-* <dl>
-* <dt>push</dt>
-* <dd>Basic push button that can execute a user-specified command when 
-* pressed.</dd>
-* <dt>link</dt>
-* <dd>Navigates to a specified url when pressed.</dd>
-* <dt>submit</dt>
-* <dd>Submits the parent form when pressed.</dd>
-* <dt>reset</dt>
-* <dd>Resets the parent form when pressed.</dd>
-* <dt>checkbox</dt>
-* <dd>Maintains a "checked" state that can be toggled on and off.</dd>
-* <dt>radio</dt>
-* <dd>Maintains a "checked" state that can be toggled on and off.  Use with 
-* the ButtonGroup class to create a set of controls that are mutually 
-* exclusive; checking one button in the set will uncheck all others in 
-* the group.</dd>
-* <dt>menu</dt>
-* <dd>When pressed will show/hide a menu.</dd>
-* <dt>split</dt>
-* <dd>Can execute a user-specified command or display a menu when pressed.</dd>
-* </dl>
-* @title Button
-* @namespace YAHOO.widget
-* @requires yahoo, dom, element, event
-* @optional container, menu
-*/
-
-
-(function () {
-
-
-    /**
-    * The Button class creates a rich, graphical button.
-    * @param {String} p_oElement String specifying the id attribute of the 
-    * <code>&#60;input&#62;</code>, <code>&#60;button&#62;</code>,
-    * <code>&#60;a&#62;</code>, or <code>&#60;span&#62;</code> element to 
-    * be used to create the button.
-    * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-6043025">HTMLInputElement</a>|<a href="http://www.w3.org
-    * /TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-34812697">
-    * HTMLButtonElement</a>|<a href="
-    * http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#
-    * ID-33759296">HTMLElement</a>} p_oElement Object reference for the 
-    * <code>&#60;input&#62;</code>, <code>&#60;button&#62;</code>, 
-    * <code>&#60;a&#62;</code>, or <code>&#60;span&#62;</code> element to be 
-    * used to create the button.
-    * @param {Object} p_oElement Object literal specifying a set of   
-    * configuration attributes used to create the button.
-    * @param {Object} p_oAttributes Optional. Object literal specifying a set  
-    * of configuration attributes used to create the button.
-    * @namespace YAHOO.widget
-    * @class Button
-    * @constructor
-    * @extends YAHOO.util.Element
-    */
-
-
-
-    // Shorthard for utilities
-
-    var Dom = YAHOO.util.Dom,
-        Event = YAHOO.util.Event,
-        Lang = YAHOO.lang,
-        UA = YAHOO.env.ua,
-        Overlay = YAHOO.widget.Overlay,
-        Menu = YAHOO.widget.Menu,
-    
-    
-        // Private member variables
-    
-        m_oButtons = {},    // Collection of all Button instances
-        m_oOverlayManager = null,   // YAHOO.widget.OverlayManager instance
-        m_oSubmitTrigger = null,    // The button that submitted the form 
-        m_oFocusedButton = null;    // The button that has focus
-
-
-
-    // Private methods
-
-    
-    
-    /**
-    * @method createInputElement
-    * @description Creates an <code>&#60;input&#62;</code> element of the 
-    * specified type.
-    * @private
-    * @param {String} p_sType String specifying the type of 
-    * <code>&#60;input&#62;</code> element to create.
-    * @param {String} p_sName String specifying the name of 
-    * <code>&#60;input&#62;</code> element to create.
-    * @param {String} p_sValue String specifying the value of 
-    * <code>&#60;input&#62;</code> element to create.
-    * @param {String} p_bChecked Boolean specifying if the  
-    * <code>&#60;input&#62;</code> element is to be checked.
-    * @return {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-6043025">HTMLInputElement</a>}
-    */
-    function createInputElement(p_sType, p_sName, p_sValue, p_bChecked) {
-    
-        var oInput,
-            sInput;
-    
-        if (Lang.isString(p_sType) && Lang.isString(p_sName)) {
-        
-            if (UA.ie) {
-        
-                /*
-                    For IE it is necessary to create the element with the 
-                    "type," "name," "value," and "checked" properties set all 
-                    at once.
-                */
-            
-                sInput = "<input type=\"" + p_sType + "\" name=\"" + 
-                    p_sName + "\"";
-        
-                if (p_bChecked) {
-        
-                    sInput += " checked";
-                
-                }
-                
-                sInput += ">";
-        
-                oInput = document.createElement(sInput);
-        
-            }
-            else {
-            
-                oInput = document.createElement("input");
-                oInput.name = p_sName;
-                oInput.type = p_sType;
-        
-                if (p_bChecked) {
-        
-                    oInput.checked = true;
-                
-                }
-        
-            }
-        
-            oInput.value = p_sValue;
-        
-        }
-
-		return oInput;
-    
-    }
-    
-    
-    /**
-    * @method setAttributesFromSrcElement
-    * @description Gets the values for all the attributes of the source element 
-    * (either <code>&#60;input&#62;</code> or <code>&#60;a&#62;</code>) that 
-    * map to Button configuration attributes and sets them into a collection 
-    * that is passed to the Button constructor.
-    * @private
-    * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-6043025">HTMLInputElement</a>|<a href="http://www.w3.org/
-    * TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-
-    * 48250443">HTMLAnchorElement</a>} p_oElement Object reference to the HTML 
-    * element (either <code>&#60;input&#62;</code> or <code>&#60;span&#62;
-    * </code>) used to create the button.
-    * @param {Object} p_oAttributes Object reference for the collection of 
-    * configuration attributes used to create the button.
-    */
-    function setAttributesFromSrcElement(p_oElement, p_oAttributes) {
-    
-        var sSrcElementNodeName = p_oElement.nodeName.toUpperCase(),
-            me = this,
-            oAttribute,
-            oRootNode,
-            sText;
-            
-    
-        /**
-        * @method setAttributeFromDOMAttribute
-        * @description Gets the value of the specified DOM attribute and sets it 
-        * into the collection of configuration attributes used to configure 
-        * the button.
-        * @private
-        * @param {String} p_sAttribute String representing the name of the 
-        * attribute to retrieve from the DOM element.
-        */
-        function setAttributeFromDOMAttribute(p_sAttribute) {
-    
-            if (!(p_sAttribute in p_oAttributes)) {
-    
-                /*
-                    Need to use "getAttributeNode" instead of "getAttribute" 
-                    because using "getAttribute," IE will return the innerText 
-                    of a <code>&#60;button&#62;</code> for the value attribute  
-                    rather than the value of the "value" attribute.
-                */
-        
-                oAttribute = p_oElement.getAttributeNode(p_sAttribute);
-        
-    
-                if (oAttribute && ("value" in oAttribute)) {
-    
-                    YAHOO.log("Setting attribute \"" + p_sAttribute + 
-                        "\" using source element's attribute value of \"" + 
-                        oAttribute.value + "\"", "info", me.toString());
-    
-                    p_oAttributes[p_sAttribute] = oAttribute.value;
-    
-                }
-    
-            }
-        
-        }
-    
-    
-        /**
-        * @method setFormElementProperties
-        * @description Gets the value of the attributes from the form element  
-        * and sets them into the collection of configuration attributes used to 
-        * configure the button.
-        * @private
-        */
-        function setFormElementProperties() {
-    
-            setAttributeFromDOMAttribute("type");
-    
-            if (p_oAttributes.type == "button") {
-            
-                p_oAttributes.type = "push";
-            
-            }
-    
-            if (!("disabled" in p_oAttributes)) {
-    
-                p_oAttributes.disabled = p_oElement.disabled;
-    
-            }
-    
-            setAttributeFromDOMAttribute("name");
-            setAttributeFromDOMAttribute("value");
-            setAttributeFromDOMAttribute("title");
-    
-        }
-
-    
-        switch (sSrcElementNodeName) {
-        
-        case "A":
-            
-            p_oAttributes.type = "link";
-            
-            setAttributeFromDOMAttribute("href");
-            setAttributeFromDOMAttribute("target");
-        
-            break;
-    
-        case "INPUT":
-
-            setFormElementProperties();
-
-            if (!("checked" in p_oAttributes)) {
-    
-                p_oAttributes.checked = p_oElement.checked;
-    
-            }
-
-            break;
-
-        case "BUTTON":
-
-            setFormElementProperties();
-
-            oRootNode = p_oElement.parentNode.parentNode;
-
-            if (Dom.hasClass(oRootNode, this.CSS_CLASS_NAME + "-checked")) {
-            
-                p_oAttributes.checked = true;
-            
-            }
-
-            if (Dom.hasClass(oRootNode, this.CSS_CLASS_NAME + "-disabled")) {
-
-                p_oAttributes.disabled = true;
-            
-            }
-
-            p_oElement.removeAttribute("value");
-
-            p_oElement.setAttribute("type", "button");
-
-            break;
-        
-        }
-
-        p_oElement.removeAttribute("id");
-        p_oElement.removeAttribute("name");
-        
-        if (!("tabindex" in p_oAttributes)) {
-
-            p_oAttributes.tabindex = p_oElement.tabIndex;
-
-        }
-    
-        if (!("label" in p_oAttributes)) {
-    
-            // Set the "label" property
-        
-            sText = sSrcElementNodeName == "INPUT" ? 
-                            p_oElement.value : p_oElement.innerHTML;
-        
-    
-            if (sText && sText.length > 0) {
-                
-                p_oAttributes.label = sText;
-                
-            } 
-    
-        }
-    
-    }
-    
-    
-    /**
-    * @method initConfig
-    * @description Initializes the set of configuration attributes that are 
-    * used to instantiate the button.
-    * @private
-    * @param {Object} Object representing the button's set of 
-    * configuration attributes.
-    */
-    function initConfig(p_oConfig) {
-    
-        var oAttributes = p_oConfig.attributes,
-            oSrcElement = oAttributes.srcelement,
-            sSrcElementNodeName = oSrcElement.nodeName.toUpperCase(),
-            me = this;
-    
-    
-        if (sSrcElementNodeName == this.NODE_NAME) {
-    
-            p_oConfig.element = oSrcElement;
-            p_oConfig.id = oSrcElement.id;
-
-            Dom.getElementsBy(function (p_oElement) {
-            
-                switch (p_oElement.nodeName.toUpperCase()) {
-                
-                case "BUTTON":
-                case "A":
-                case "INPUT":
-
-                    setAttributesFromSrcElement.call(me, p_oElement, 
-                        oAttributes);
-
-                    break;                        
-                
-                }
-            
-            }, "*", oSrcElement);
-        
-        }
-        else {
-    
-            switch (sSrcElementNodeName) {
-
-            case "BUTTON":
-            case "A":
-            case "INPUT":
-
-                setAttributesFromSrcElement.call(this, oSrcElement, 
-                    oAttributes);
-
-                break;
-
-            }
-        
-        }
-    
-    }
-
-
-
-    //  Constructor
-
-    YAHOO.widget.Button = function (p_oElement, p_oAttributes) {
-    
-		if (!Overlay && YAHOO.widget.Overlay) {
-		
-			Overlay = YAHOO.widget.Overlay;
-		
-		}
-
-
-		if (!Menu && YAHOO.widget.Menu) {
-		
-			Menu = YAHOO.widget.Menu;
-		
-		}
-
-
-        var fnSuperClass = YAHOO.widget.Button.superclass.constructor,
-            oConfig,
-            oElement;
-    
-
-        if (arguments.length == 1 && !Lang.isString(p_oElement) && !p_oElement.nodeName) {
-    
-            if (!p_oElement.id) {
-    
-                p_oElement.id = Dom.generateId();
-    
-                YAHOO.log("No value specified for the button's \"id\" " + 
-                    "attribute. Setting button id to \"" + p_oElement.id + 
-                    "\".", "info", this.toString());
-    
-            }
-    
-            YAHOO.log("No source HTML element.  Building the button " +
-                    "using the set of configuration attributes.", "info", this.toString());
-    
-            fnSuperClass.call(this, (this.createButtonElement(p_oElement.type)), p_oElement);
-    
-        }
-        else {
-    
-            oConfig = { element: null, attributes: (p_oAttributes || {}) };
-    
-    
-            if (Lang.isString(p_oElement)) {
-    
-                oElement = Dom.get(p_oElement);
-    
-                if (oElement) {
-
-                    if (!oConfig.attributes.id) {
-                    
-                        oConfig.attributes.id = p_oElement;
-                    
-                    }
-    
-                    YAHOO.log("Building the button using an existing " + 
-                            "HTML element as a source element.", "info", this.toString());
-                
-                
-                    oConfig.attributes.srcelement = oElement;
-                
-                    initConfig.call(this, oConfig);
-                
-                
-                    if (!oConfig.element) {
-                
-                        YAHOO.log("Source element could not be used " +
-                                "as is.  Creating a new HTML element for " + 
-                                "the button.", "info", this.toString());
-                
-                        oConfig.element = this.createButtonElement(oConfig.attributes.type);
-                
-                    }
-                
-                    fnSuperClass.call(this, oConfig.element, oConfig.attributes);
-    
-                }
-    
-            }
-            else if (p_oElement.nodeName) {
-    
-                if (!oConfig.attributes.id) {
-    
-                    if (p_oElement.id) {
-        
-                        oConfig.attributes.id = p_oElement.id;
-                    
-                    }
-                    else {
-        
-                        oConfig.attributes.id = Dom.generateId();
-        
-                        YAHOO.log("No value specified for the button's " +
-                            "\"id\" attribute. Setting button id to \"" + 
-                            oConfig.attributes.id + "\".", "info", this.toString());
-        
-                    }
-    
-                }
-    
-                YAHOO.log("Building the button using an existing HTML " + 
-                    "element as a source element.", "info", this.toString());
-    
-    
-                oConfig.attributes.srcelement = p_oElement;
-        
-                initConfig.call(this, oConfig);
-        
-        
-                if (!oConfig.element) {
-    
-                    YAHOO.log("Source element could not be used as is." +
-                            "  Creating a new HTML element for the button.", 
-                            "info", this.toString());
-            
-                    oConfig.element = this.createButtonElement(oConfig.attributes.type);
-            
-                }
-            
-                fnSuperClass.call(this, oConfig.element, oConfig.attributes);
-            
-            }
-    
-        }
-    
-    };
-
-
-
-    YAHOO.extend(YAHOO.widget.Button, YAHOO.util.Element, {
-    
-    
-        // Protected properties
-        
-        
-        /** 
-        * @property _button
-        * @description Object reference to the button's internal 
-        * <code>&#60;a&#62;</code> or <code>&#60;button&#62;</code> element.
-        * @default null
-        * @protected
-        * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-48250443">HTMLAnchorElement</a>|<a href="
-        * http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html
-        * #ID-34812697">HTMLButtonElement</a>
-        */
-        _button: null,
-        
-        
-        /** 
-        * @property _menu
-        * @description Object reference to the button's menu.
-        * @default null
-        * @protected
-        * @type {<a href="YAHOO.widget.Overlay.html">YAHOO.widget.Overlay</a>|
-        * <a href="YAHOO.widget.Menu.html">YAHOO.widget.Menu</a>}
-        */
-        _menu: null,
-        
-        
-        /** 
-        * @property _hiddenFields
-        * @description Object reference to the <code>&#60;input&#62;</code>  
-        * element, or array of HTML form elements used to represent the button
-        *  when its parent form is submitted.
-        * @default null
-        * @protected
-        * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-6043025">HTMLInputElement</a>|Array
-        */
-        _hiddenFields: null,
-        
-        
-        /** 
-        * @property _onclickAttributeValue
-        * @description Object reference to the button's current value for the 
-        * "onclick" configuration attribute.
-        * @default null
-        * @protected
-        * @type Object
-        */
-        _onclickAttributeValue: null,
-        
-        
-        /** 
-        * @property _activationKeyPressed
-        * @description Boolean indicating if the key(s) that toggle the button's 
-        * "active" state have been pressed.
-        * @default false
-        * @protected
-        * @type Boolean
-        */
-        _activationKeyPressed: false,
-        
-        
-        /** 
-        * @property _activationButtonPressed
-        * @description Boolean indicating if the mouse button that toggles 
-        * the button's "active" state has been pressed.
-        * @default false
-        * @protected
-        * @type Boolean
-        */
-        _activationButtonPressed: false,
-        
-        
-        /** 
-        * @property _hasKeyEventHandlers
-        * @description Boolean indicating if the button's "blur", "keydown" and 
-        * "keyup" event handlers are assigned
-        * @default false
-        * @protected
-        * @type Boolean
-        */
-        _hasKeyEventHandlers: false,
-        
-        
-        /** 
-        * @property _hasMouseEventHandlers
-        * @description Boolean indicating if the button's "mouseout," 
-        * "mousedown," and "mouseup" event handlers are assigned
-        * @default false
-        * @protected
-        * @type Boolean
-        */
-        _hasMouseEventHandlers: false,
-
-
-        /** 
-        * @property _nOptionRegionX
-        * @description Number representing the X coordinate of the leftmost edge of the Button's 
-        * option region.  Applies only to Buttons of type "split".
-        * @default 0
-        * @protected
-        * @type Number
-        */        
-        _nOptionRegionX: 0,
-        
-
-
-        // Constants
-        
-        
-        /**
-        * @property NODE_NAME
-        * @description The name of the node to be used for the button's 
-        * root element.
-        * @default "SPAN"
-        * @final
-        * @type String
-        */
-        NODE_NAME: "SPAN",
-        
-        
-        /**
-        * @property CHECK_ACTIVATION_KEYS
-        * @description Array of numbers representing keys that (when pressed) 
-        * toggle the button's "checked" attribute.
-        * @default [32]
-        * @final
-        * @type Array
-        */
-        CHECK_ACTIVATION_KEYS: [32],
-        
-        
-        /**
-        * @property ACTIVATION_KEYS
-        * @description Array of numbers representing keys that (when presed) 
-        * toggle the button's "active" state.
-        * @default [13, 32]
-        * @final
-        * @type Array
-        */
-        ACTIVATION_KEYS: [13, 32],
-        
-        
-        /**
-        * @property OPTION_AREA_WIDTH
-        * @description Width (in pixels) of the area of a split button that  
-        * when pressed will display a menu.
-        * @default 20
-        * @final
-        * @type Number
-        */
-        OPTION_AREA_WIDTH: 20,
-        
-        
-        /**
-        * @property CSS_CLASS_NAME
-        * @description String representing the CSS class(es) to be applied to  
-        * the button's root element.
-        * @default "yui-button"
-        * @final
-        * @type String
-        */
-        CSS_CLASS_NAME: "yui-button",
-        
-        
-        /**
-        * @property RADIO_DEFAULT_TITLE
-        * @description String representing the default title applied to buttons 
-        * of type "radio." 
-        * @default "Unchecked.  Click to check."
-        * @final
-        * @type String
-        */
-        RADIO_DEFAULT_TITLE: "Unchecked.  Click to check.",
-        
-        
-        /**
-        * @property RADIO_CHECKED_TITLE
-        * @description String representing the title applied to buttons of 
-        * type "radio" when checked.
-        * @default "Checked.  Click another button to uncheck"
-        * @final
-        * @type String
-        */
-        RADIO_CHECKED_TITLE: "Checked.  Click another button to uncheck",
-        
-        
-        /**
-        * @property CHECKBOX_DEFAULT_TITLE
-        * @description String representing the default title applied to 
-        * buttons of type "checkbox." 
-        * @default "Unchecked.  Click to check."
-        * @final
-        * @type String
-        */
-        CHECKBOX_DEFAULT_TITLE: "Unchecked.  Click to check.",
-        
-        
-        /**
-        * @property CHECKBOX_CHECKED_TITLE
-        * @description String representing the title applied to buttons of type 
-        * "checkbox" when checked.
-        * @default "Checked.  Click to uncheck."
-        * @final
-        * @type String
-        */
-        CHECKBOX_CHECKED_TITLE: "Checked.  Click to uncheck.",
-        
-        
-        /**
-        * @property MENUBUTTON_DEFAULT_TITLE
-        * @description String representing the default title applied to 
-        * buttons of type "menu." 
-        * @default "Menu collapsed.  Click to expand."
-        * @final
-        * @type String
-        */
-        MENUBUTTON_DEFAULT_TITLE: "Menu collapsed.  Click to expand.",
-        
-        
-        /**
-        * @property MENUBUTTON_MENU_VISIBLE_TITLE
-        * @description String representing the title applied to buttons of type 
-        * "menu" when the button's menu is visible. 
-        * @default "Menu expanded.  Click or press Esc to collapse."
-        * @final
-        * @type String
-        */
-        MENUBUTTON_MENU_VISIBLE_TITLE: 
-            "Menu expanded.  Click or press Esc to collapse.",
-        
-        
-        /**
-        * @property SPLITBUTTON_DEFAULT_TITLE
-        * @description  String representing the default title applied to 
-        * buttons of type "split." 
-        * @default "Menu collapsed.  Click inside option region or press 
-        * Ctrl + Shift + M to show the menu."
-        * @final
-        * @type String
-        */
-        SPLITBUTTON_DEFAULT_TITLE: ("Menu collapsed.  Click inside option " + 
-            "region or press down arrow key to show the menu."),
-        
-        
-        /**
-        * @property SPLITBUTTON_OPTION_VISIBLE_TITLE
-        * @description String representing the title applied to buttons of type 
-        * "split" when the button's menu is visible. 
-        * @default "Menu expanded.  Press Esc or Ctrl + Shift + M to hide 
-        * the menu."
-        * @final
-        * @type String
-        */
-        SPLITBUTTON_OPTION_VISIBLE_TITLE: 
-            "Menu expanded.  Press Esc to hide the menu.",
-        
-        
-        /**
-        * @property SUBMIT_TITLE
-        * @description String representing the title applied to buttons of 
-        * type "submit." 
-        * @default "Click to submit form."
-        * @final
-        * @type String
-        */
-        SUBMIT_TITLE: "Click to submit form.",
-        
-        
-        
-        // Protected attribute setter methods
-        
-        
-        /**
-        * @method _setType
-        * @description Sets the value of the button's "type" attribute.
-        * @protected
-        * @param {String} p_sType String indicating the value for the button's 
-        * "type" attribute.
-        */
-        _setType: function (p_sType) {
-        
-            if (p_sType == "split") {
-        
-                this.on("option", this._onOption);
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setLabel
-        * @description Sets the value of the button's "label" attribute.
-        * @protected
-        * @param {String} p_sLabel String indicating the value for the button's 
-        * "label" attribute.
-        */
-        _setLabel: function (p_sLabel) {
-
-            this._button.innerHTML = p_sLabel;
-
-            
-            /*
-                Remove and add the default class name from the root element
-                for Gecko to ensure that the button shrinkwraps to the label.
-                Without this the button will not be rendered at the correct 
-                width when the label changes.  The most likely cause for this 
-                bug is button's use of the Gecko-specific CSS display type of 
-                "-moz-inline-box" to simulate "inline-block" supported by IE, 
-                Safari and Opera.
-            */
-            
-            var sClass,
-                nGeckoVersion = UA.gecko;
-				
-            
-            if (nGeckoVersion && nGeckoVersion < 1.9 && Dom.inDocument(this.get("element"))) {
-            
-                sClass = this.CSS_CLASS_NAME;                
-
-                this.removeClass(sClass);
-                
-                Lang.later(0, this, this.addClass, sClass);
-
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setTabIndex
-        * @description Sets the value of the button's "tabindex" attribute.
-        * @protected
-        * @param {Number} p_nTabIndex Number indicating the value for the 
-        * button's "tabindex" attribute.
-        */
-        _setTabIndex: function (p_nTabIndex) {
-        
-            this._button.tabIndex = p_nTabIndex;
-        
-        },
-        
-        
-        /**
-        * @method _setTitle
-        * @description Sets the value of the button's "title" attribute.
-        * @protected
-        * @param {String} p_nTabIndex Number indicating the value for 
-        * the button's "title" attribute.
-        */
-        _setTitle: function (p_sTitle) {
-        
-            var sTitle = p_sTitle;
-        
-            if (this.get("type") != "link") {
-        
-                if (!sTitle) {
-        
-                    switch (this.get("type")) {
-        
-                    case "radio":
-    
-                        sTitle = this.RADIO_DEFAULT_TITLE;
-    
-                        break;
-    
-                    case "checkbox":
-    
-                        sTitle = this.CHECKBOX_DEFAULT_TITLE;
-    
-                        break;
-                    
-                    case "menu":
-    
-                        sTitle = this.MENUBUTTON_DEFAULT_TITLE;
-    
-                        break;
-    
-                    case "split":
-    
-                        sTitle = this.SPLITBUTTON_DEFAULT_TITLE;
-    
-                        break;
-    
-                    case "submit":
-    
-                        sTitle = this.SUBMIT_TITLE;
-    
-                        break;
-        
-                    }
-        
-                }
-        
-                this._button.title = sTitle;
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setDisabled
-        * @description Sets the value of the button's "disabled" attribute.
-        * @protected
-        * @param {Boolean} p_bDisabled Boolean indicating the value for 
-        * the button's "disabled" attribute.
-        */
-        _setDisabled: function (p_bDisabled) {
-        
-            if (this.get("type") != "link") {
-        
-                if (p_bDisabled) {
-        
-                    if (this._menu) {
-        
-                        this._menu.hide();
-        
-                    }
-        
-                    if (this.hasFocus()) {
-                    
-                        this.blur();
-                    
-                    }
-        
-                    this._button.setAttribute("disabled", "disabled");
-        
-                    this.addStateCSSClasses("disabled");
-
-                    this.removeStateCSSClasses("hover");
-                    this.removeStateCSSClasses("active");
-                    this.removeStateCSSClasses("focus");
-        
-                }
-                else {
-        
-                    this._button.removeAttribute("disabled");
-        
-                    this.removeStateCSSClasses("disabled");
-                
-                }
-        
-            }
-        
-        },
-
-        
-        /**
-        * @method _setHref
-        * @description Sets the value of the button's "href" attribute.
-        * @protected
-        * @param {String} p_sHref String indicating the value for the button's 
-        * "href" attribute.
-        */
-        _setHref: function (p_sHref) {
-        
-            if (this.get("type") == "link") {
-        
-                this._button.href = p_sHref;
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setTarget
-        * @description Sets the value of the button's "target" attribute.
-        * @protected
-        * @param {String} p_sTarget String indicating the value for the button's 
-        * "target" attribute.
-        */
-        _setTarget: function (p_sTarget) {
-        
-            if (this.get("type") == "link") {
-        
-                this._button.setAttribute("target", p_sTarget);
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setChecked
-        * @description Sets the value of the button's "target" attribute.
-        * @protected
-        * @param {Boolean} p_bChecked Boolean indicating the value for  
-        * the button's "checked" attribute.
-        */
-        _setChecked: function (p_bChecked) {
-        
-            var sType = this.get("type"),
-                sTitle;
-        
-            if (sType == "checkbox" || sType == "radio") {
-        
-                if (p_bChecked) {
-        
-                    this.addStateCSSClasses("checked");
-                    
-                    sTitle = (sType == "radio") ? 
-                                this.RADIO_CHECKED_TITLE : 
-                                this.CHECKBOX_CHECKED_TITLE;
-                
-                }
-                else {
-
-                    this.removeStateCSSClasses("checked");
-        
-                    sTitle = (sType == "radio") ? 
-                                this.RADIO_DEFAULT_TITLE : 
-                                this.CHECKBOX_DEFAULT_TITLE;
-                
-                }
-
-
-        		if (!this._hasDefaultTitle) {
-        
-                	this.set("title", sTitle);
-                
-                }
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setMenu
-        * @description Sets the value of the button's "menu" attribute.
-        * @protected
-        * @param {Object} p_oMenu Object indicating the value for the button's 
-        * "menu" attribute.
-        */
-        _setMenu: function (p_oMenu) {
-
-            var bLazyLoad = this.get("lazyloadmenu"),
-                oButtonElement = this.get("element"),
-                sMenuCSSClassName,
-        
-                /*
-                    Boolean indicating if the value of p_oMenu is an instance 
-                    of YAHOO.widget.Menu or YAHOO.widget.Overlay.
-                */
-        
-                bInstance = false,
-        
-
-                oMenu,
-                oMenuElement,
-                oSrcElement,
-                aItems,
-                nItems,
-                oItem,
-                i;
-        
-
-			function onAppendTo() {
-
-				oMenu.render(oButtonElement.parentNode);
-				
-				this.removeListener("appendTo", onAppendTo);
-			
-			}
-			
-			
-			function setMenuContainer() {
-
-				oMenu.cfg.queueProperty("container", oButtonElement.parentNode);
-				
-				this.removeListener("appendTo", setMenuContainer);
-			
-			}
-
-
-			function initMenu() {
-		
-				var oContainer;
-		
-				if (oMenu) {
-
-					Dom.addClass(oMenu.element, this.get("menuclassname"));
-					Dom.addClass(oMenu.element, "yui-" + this.get("type") + "-button-menu");
-
-					oMenu.showEvent.subscribe(this._onMenuShow, null, this);
-					oMenu.hideEvent.subscribe(this._onMenuHide, null, this);
-					oMenu.renderEvent.subscribe(this._onMenuRender, null, this);
-
-
-					if (Menu && oMenu instanceof Menu) {
-
-						if (bLazyLoad) {
-
-							oContainer = this.get("container");
-
-							if (oContainer) {
-
-								oMenu.cfg.queueProperty("container", oContainer);
-
-							}
-							else {
-
-								this.on("appendTo", setMenuContainer);
-
-							}
-
-						}
-
-						oMenu.cfg.queueProperty("clicktohide", false);
-
-						oMenu.keyDownEvent.subscribe(this._onMenuKeyDown, this, true);
-						oMenu.subscribe("click", this._onMenuClick, this, true);
-						oMenu.itemAddedEvent.subscribe(this._onMenuItemAdded, this, true);
-		
-						oSrcElement = oMenu.srcElement;
-		
-						if (oSrcElement && oSrcElement.nodeName.toUpperCase() == "SELECT") {
-				
-							oSrcElement.style.display = "none";
-							oSrcElement.parentNode.removeChild(oSrcElement);
-		
-						}
-		
-					}
-					else if (Overlay && oMenu instanceof Overlay) {
-		
-						if (!m_oOverlayManager) {
-		
-							m_oOverlayManager = new YAHOO.widget.OverlayManager();
-						
-						}
-						
-						m_oOverlayManager.register(oMenu);
-						
-					}
-		
-		
-					this._menu = oMenu;
-
-		
-					if (!bInstance && !bLazyLoad) {
-		
-						if (Dom.inDocument(oButtonElement)) {
-	
-							oMenu.render(oButtonElement.parentNode);
-						
-						}
-						else {
-		
-							this.on("appendTo", onAppendTo);
-						
-						}
-					
-					}
-		
-				}
-		
-			}
-
-        
-            if (Overlay) {
-        
-				if (Menu) {
-				
-					sMenuCSSClassName = Menu.prototype.CSS_CLASS_NAME;
-				
-				}
-			
-				if (p_oMenu && Menu && (p_oMenu instanceof Menu)) {
-			
-					oMenu = p_oMenu;
-					aItems = oMenu.getItems();
-					nItems = aItems.length;
-					bInstance = true;
-			
-			
-					if (nItems > 0) {
-			
-						i = nItems - 1;
-			
-						do {
-			
-							oItem = aItems[i];
-			
-							if (oItem) {
-			
-								oItem.cfg.subscribeToConfigEvent("selected", 
-									this._onMenuItemSelected, oItem, this);
-			
-							}
-			
-						}
-						while (i--);
-			
-					}
-			
-					initMenu.call(this);
-			
-				}
-				else if (Overlay && p_oMenu && (p_oMenu instanceof Overlay)) {
-			
-					oMenu = p_oMenu;
-					bInstance = true;
-			
-					oMenu.cfg.queueProperty("visible", false);
-			
-					initMenu.call(this);
-			
-				}
-				else if (Menu && Lang.isArray(p_oMenu)) {
-
-					oMenu = new Menu(Dom.generateId(), { lazyload: bLazyLoad, itemdata: p_oMenu });
-						
-					this._menu = oMenu;
-			
-					this.on("appendTo", initMenu);
-			
-				}
-				else if (Lang.isString(p_oMenu)) {
-			
-					oMenuElement = Dom.get(p_oMenu);
-			
-					if (oMenuElement) {
-			
-						if (Menu && Dom.hasClass(oMenuElement, sMenuCSSClassName) || 
-							oMenuElement.nodeName.toUpperCase() == "SELECT") {
-				
-							oMenu = new Menu(p_oMenu, { lazyload: bLazyLoad });
-				
-							initMenu.call(this);
-				
-						}
-						else if (Overlay) {
-			
-							oMenu = new Overlay(p_oMenu, { visible: false });
-				
-							initMenu.call(this);
-				
-						}
-			
-					}
-			
-				}
-				else if (p_oMenu && p_oMenu.nodeName) {
-			
-					if (Menu && Dom.hasClass(p_oMenu, sMenuCSSClassName) || 
-							p_oMenu.nodeName.toUpperCase() == "SELECT") {
-			
-						oMenu = new Menu(p_oMenu, { lazyload: bLazyLoad });
-					
-						initMenu.call(this);
-			
-					}
-					else if (Overlay) {
-			
-						if (!p_oMenu.id) {
-						
-							Dom.generateId(p_oMenu);
-						
-						}
-			
-						oMenu = new Overlay(p_oMenu, { visible: false });
-			
-						initMenu.call(this);
-					
-					}
-				
-				}
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setOnClick
-        * @description Sets the value of the button's "onclick" attribute.
-        * @protected
-        * @param {Object} p_oObject Object indicating the value for the button's 
-        * "onclick" attribute.
-        */
-        _setOnClick: function (p_oObject) {
-        
-            /*
-                Remove any existing listeners if a "click" event handler 
-                has already been specified.
-            */
-        
-            if (this._onclickAttributeValue && 
-                (this._onclickAttributeValue != p_oObject)) {
-        
-                this.removeListener("click", this._onclickAttributeValue.fn);
-        
-                this._onclickAttributeValue = null;
-        
-            }
-        
-        
-            if (!this._onclickAttributeValue && 
-                Lang.isObject(p_oObject) && 
-                Lang.isFunction(p_oObject.fn)) {
-        
-                this.on("click", p_oObject.fn, p_oObject.obj, p_oObject.scope);
-        
-                this._onclickAttributeValue = p_oObject;
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setSelectedMenuItem
-        * @description Sets the value of the button's 
-        * "selectedMenuItem" attribute.
-        * @protected
-        * @param {Number} p_nIndex Number representing the index of the item 
-        * in the button's menu that is currently selected.
-        */
-        _setSelectedMenuItem: function (p_nIndex) {
-
-            var oMenu = this._menu,
-                oMenuItem;
-
-
-            if (Menu && oMenu && oMenu instanceof Menu) {
-
-                oMenuItem = oMenu.getItem(p_nIndex);
-                
-
-                if (oMenuItem && !oMenuItem.cfg.getProperty("selected")) {
-                
-                    oMenuItem.cfg.setProperty("selected", true);
-                
-                }
-            
-            }
-
-        },
-        
-        
-        // Protected methods
-
-        
-        
-        /**
-        * @method _isActivationKey
-        * @description Determines if the specified keycode is one that toggles  
-        * the button's "active" state.
-        * @protected
-        * @param {Number} p_nKeyCode Number representing the keycode to 
-        * be evaluated.
-        * @return {Boolean}
-        */
-        _isActivationKey: function (p_nKeyCode) {
-        
-            var sType = this.get("type"),
-                aKeyCodes = (sType == "checkbox" || sType == "radio") ? 
-                    this.CHECK_ACTIVATION_KEYS : this.ACTIVATION_KEYS,
-        
-                nKeyCodes = aKeyCodes.length,
-                bReturnVal = false,
-                i;
-        
-
-            if (nKeyCodes > 0) {
-        
-                i = nKeyCodes - 1;
-        
-                do {
-        
-                    if (p_nKeyCode == aKeyCodes[i]) {
-        
-                        bReturnVal = true;
-                        break;
-        
-                    }
-        
-                }
-                while (i--);
-            
-            }
-            
-            return bReturnVal;
-        
-        },
-        
-        
-        /**
-        * @method _isSplitButtonOptionKey
-        * @description Determines if the specified keycode is one that toggles  
-        * the display of the split button's menu.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        * @return {Boolean}
-        */
-        _isSplitButtonOptionKey: function (p_oEvent) {
-
-			var bShowMenu = (Event.getCharCode(p_oEvent) == 40);
-
-
-			var onKeyPress = function (p_oEvent) {
-
-				Event.preventDefault(p_oEvent);
-
-				this.removeListener("keypress", onKeyPress);
-			
-			};
-
-
-			// Prevent the browser from scrolling the window
-			if (bShowMenu) {
-
-				if (UA.opera) {
-	
-					this.on("keypress", onKeyPress);
-	
-				}
-
-				Event.preventDefault(p_oEvent);
-			}
-
-            return bShowMenu;
-        
-        },
-        
-        
-        /**
-        * @method _addListenersToForm
-        * @description Adds event handlers to the button's form.
-        * @protected
-        */
-        _addListenersToForm: function () {
-        
-            var oForm = this.getForm(),
-                onFormKeyPress = YAHOO.widget.Button.onFormKeyPress,
-                bHasKeyPressListener,
-                oSrcElement,
-                aListeners,
-                nListeners,
-                i;
-        
-        
-            if (oForm) {
-        
-                Event.on(oForm, "reset", this._onFormReset, null, this);
-                Event.on(oForm, "submit", this._onFormSubmit, null, this);
-        
-                oSrcElement = this.get("srcelement");
-        
-        
-                if (this.get("type") == "submit" || 
-                    (oSrcElement && oSrcElement.type == "submit")) 
-                {
-                
-                    aListeners = Event.getListeners(oForm, "keypress");
-                    bHasKeyPressListener = false;
-            
-                    if (aListeners) {
-            
-                        nListeners = aListeners.length;
-        
-                        if (nListeners > 0) {
-            
-                            i = nListeners - 1;
-                            
-                            do {
-               
-                                if (aListeners[i].fn == onFormKeyPress) {
-                
-                                    bHasKeyPressListener = true;
-                                    break;
-                                
-                                }
-                
-                            }
-                            while (i--);
-                        
-                        }
-                    
-                    }
-            
-            
-                    if (!bHasKeyPressListener) {
-               
-                        Event.on(oForm, "keypress", onFormKeyPress);
-            
-                    }
-        
-                }
-            
-            }
-        
-        },
-        
-        
-        
-        /**
-        * @method _showMenu
-        * @description Shows the button's menu.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object 
-        * passed back by the event utility (YAHOO.util.Event) that triggered 
-        * the display of the menu.
-        */
-        _showMenu: function (p_oEvent) {
-
-            if (YAHOO.widget.MenuManager) {
-                YAHOO.widget.MenuManager.hideVisible();
-            }
-
-        
-            if (m_oOverlayManager) {
-                m_oOverlayManager.hideAll();
-            }
-
-
-            var oMenu = this._menu,
-            	aMenuAlignment = this.get("menualignment"),
-            	bFocusMenu = this.get("focusmenu"),
-				fnFocusMethod;
-
-
-			if (this._renderedMenu) {
-
-				oMenu.cfg.setProperty("context", 
-								[this.get("element"), aMenuAlignment[0], aMenuAlignment[1]]);
-	
-				oMenu.cfg.setProperty("preventcontextoverlap", true);
-				oMenu.cfg.setProperty("constraintoviewport", true);
-
-			}
-			else {
-
-				oMenu.cfg.queueProperty("context", 
-								[this.get("element"), aMenuAlignment[0], aMenuAlignment[1]]);
-	
-				oMenu.cfg.queueProperty("preventcontextoverlap", true);
-				oMenu.cfg.queueProperty("constraintoviewport", true);
-			
-			}
-
-
-			/*
-				 Refocus the Button before showing its Menu in case the call to 
-				 YAHOO.widget.MenuManager.hideVisible() resulted in another element in the 
-				 DOM being focused after another Menu was hidden.
-			*/
-			
-			this.focus();
-
-
-            if (Menu && oMenu && (oMenu instanceof Menu)) {
-
-				// Since Menus automatically focus themselves when made visible, temporarily 
-				// replace the Menu focus method so that the value of the Button's "focusmenu"
-				// attribute determines if the Menu should be focus when made visible.
-
-				fnFocusMethod = oMenu.focus;
-
-				oMenu.focus = function () {};
-
-				if (this._renderedMenu) {
-
-					oMenu.cfg.setProperty("minscrollheight", this.get("menuminscrollheight"));
-					oMenu.cfg.setProperty("maxheight", this.get("menumaxheight"));
-				
-				}
-				else {
-
-					oMenu.cfg.queueProperty("minscrollheight", this.get("menuminscrollheight"));
-					oMenu.cfg.queueProperty("maxheight", this.get("menumaxheight"));
-				
-				}
-
-
-                oMenu.show();
-
-        		oMenu.focus = fnFocusMethod;
-
-				oMenu.align();
-        
-
-                /*
-                    Stop the propagation of the event so that the MenuManager 
-                    doesn't blur the menu after it gets focus.
-                */
-        
-                if (p_oEvent.type == "mousedown") {
-                    Event.stopPropagation(p_oEvent);
-                }
-
-        
-                if (bFocusMenu) { 
-                    oMenu.focus();
-                }
-
-            }
-            else if (Overlay && oMenu && (oMenu instanceof Overlay)) {
-
-				if (!this._renderedMenu) {
-		            oMenu.render(this.get("element").parentNode);
-				}
-
-                oMenu.show();
-				oMenu.align();
-
-            }
-        
-        },
-        
-        
-        /**
-        * @method _hideMenu
-        * @description Hides the button's menu.
-        * @protected
-        */
-        _hideMenu: function () {
-        
-            var oMenu = this._menu;
-        
-            if (oMenu) {
-        
-                oMenu.hide();
-        
-            }
-        
-        },
-        
-        
-        
-        
-        // Protected event handlers
-        
-        
-        /**
-        * @method _onMouseOver
-        * @description "mouseover" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onMouseOver: function (p_oEvent) {
-        
-        	var sType = this.get("type"),
-        		oElement,
-				nOptionRegionX;
-
-
-			if (sType === "split") {
-
-				oElement = this.get("element");
-				nOptionRegionX = 
-					(Dom.getX(oElement) + (oElement.offsetWidth - this.OPTION_AREA_WIDTH));
-					
-				this._nOptionRegionX = nOptionRegionX;
-			
-			}
-        
-
-            if (!this._hasMouseEventHandlers) {
-        
-				if (sType === "split") {
-        
-	        		this.on("mousemove", this._onMouseMove);
-
-        		}
-
-                this.on("mouseout", this._onMouseOut);
-        
-                this._hasMouseEventHandlers = true;
-        
-            }
-        
-
-            this.addStateCSSClasses("hover");
-
-
-			if (sType === "split" && (Event.getPageX(p_oEvent) > nOptionRegionX)) {
-	
-				this.addStateCSSClasses("hoveroption");
-	
-			}
-
-        
-            if (this._activationButtonPressed) {
-        
-                this.addStateCSSClasses("active");
-        
-            }
-        
-        
-            if (this._bOptionPressed) {
-        
-                this.addStateCSSClasses("activeoption");
-            
-            }
-
-
-            if (this._activationButtonPressed || this._bOptionPressed) {
-        
-                Event.removeListener(document, "mouseup", this._onDocumentMouseUp);
-        
-            }
-
-        },
-
-
-        /**
-        * @method _onMouseMove
-        * @description "mousemove" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */        
-        _onMouseMove: function (p_oEvent) {
-        
-        	var nOptionRegionX = this._nOptionRegionX;
-        
-        	if (nOptionRegionX) {
-
-				if (Event.getPageX(p_oEvent) > nOptionRegionX) {
-					
-					this.addStateCSSClasses("hoveroption");
-	
-				}
-				else {
-
-					this.removeStateCSSClasses("hoveroption");
-				
-				}
-				
-        	}
-        
-        },
-        
-        /**
-        * @method _onMouseOut
-        * @description "mouseout" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onMouseOut: function (p_oEvent) {
-
-			var sType = this.get("type");
-        
-            this.removeStateCSSClasses("hover");
-        
-
-            if (sType != "menu") {
-        
-                this.removeStateCSSClasses("active");
-        
-            }
-        
-
-            if (this._activationButtonPressed || this._bOptionPressed) {
-        
-                Event.on(document, "mouseup", this._onDocumentMouseUp, null, this);
-        
-            }
-
-
-			if (sType === "split" && (Event.getPageX(p_oEvent) > this._nOptionRegionX)) {
-			
-				this.removeStateCSSClasses("hoveroption");
-	
-			}
-            
-        },
-        
-        
-        /**
-        * @method _onDocumentMouseUp
-        * @description "mouseup" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onDocumentMouseUp: function (p_oEvent) {
-        
-            this._activationButtonPressed = false;
-            this._bOptionPressed = false;
-        
-            var sType = this.get("type"),
-                oTarget,
-                oMenuElement;
-        
-            if (sType == "menu" || sType == "split") {
-
-                oTarget = Event.getTarget(p_oEvent);
-                oMenuElement = this._menu.element;
-        
-                if (oTarget != oMenuElement && 
-                    !Dom.isAncestor(oMenuElement, oTarget)) {
-
-                    this.removeStateCSSClasses((sType == "menu" ? 
-                        "active" : "activeoption"));
-            
-                    this._hideMenu();
-
-                }
-        
-            }
-        
-            Event.removeListener(document, "mouseup", this._onDocumentMouseUp);
-        
-        },
-        
-        
-        /**
-        * @method _onMouseDown
-        * @description "mousedown" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onMouseDown: function (p_oEvent) {
-        
-            var sType,
-            	bReturnVal = true;
-        
-        
-            function onMouseUp() {
-            
-                this._hideMenu();
-                this.removeListener("mouseup", onMouseUp);
-            
-            }
-        
-        
-            if ((p_oEvent.which || p_oEvent.button) == 1) {
-        
-        
-                if (!this.hasFocus()) {
-                
-                    this.focus();
-                
-                }
-        
-        
-                sType = this.get("type");
-        
-        
-                if (sType == "split") {
-                
-                    if (Event.getPageX(p_oEvent) > this._nOptionRegionX) {
-                        
-                        this.fireEvent("option", p_oEvent);
-						bReturnVal = false;
-        
-                    }
-                    else {
-        
-                        this.addStateCSSClasses("active");
-        
-                        this._activationButtonPressed = true;
-        
-                    }
-        
-                }
-                else if (sType == "menu") {
-        
-                    if (this.isActive()) {
-        
-                        this._hideMenu();
-        
-                        this._activationButtonPressed = false;
-        
-                    }
-                    else {
-        
-                        this._showMenu(p_oEvent);
-        
-                        this._activationButtonPressed = true;
-                    
-                    }
-        
-                }
-                else {
-        
-                    this.addStateCSSClasses("active");
-        
-                    this._activationButtonPressed = true;
-                
-                }
-        
-        
-        
-                if (sType == "split" || sType == "menu") {
-
-                    this._hideMenuTimer = Lang.later(250, this, this.on, ["mouseup", onMouseUp]);
-        
-                }
-        
-            }
-            
-            return bReturnVal;
-            
-        },
-        
-        
-        /**
-        * @method _onMouseUp
-        * @description "mouseup" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onMouseUp: function (p_oEvent) {
-        
-            var sType = this.get("type"),
-            	oHideMenuTimer = this._hideMenuTimer,
-            	bReturnVal = true;
-        
-        
-            if (oHideMenuTimer) {
-  
-  				oHideMenuTimer.cancel();
-        
-            }
-        
-        
-            if (sType == "checkbox" || sType == "radio") {
-        
-                this.set("checked", !(this.get("checked")));
-            
-            }
-        
-        
-            this._activationButtonPressed = false;
-            
-        
-            if (sType != "menu") {
-        
-                this.removeStateCSSClasses("active");
-            
-            }
-
-                
-			if (sType == "split" && Event.getPageX(p_oEvent) > this._nOptionRegionX) {
-				
-				bReturnVal = false;
-
-			}
-
-			return bReturnVal;
-            
-        },
-        
-        
-        /**
-        * @method _onFocus
-        * @description "focus" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onFocus: function (p_oEvent) {
-        
-            var oElement;
-        
-            this.addStateCSSClasses("focus");
-        
-            if (this._activationKeyPressed) {
-        
-                this.addStateCSSClasses("active");
-           
-            }
-        
-            m_oFocusedButton = this;
-        
-        
-            if (!this._hasKeyEventHandlers) {
-        
-                oElement = this._button;
-        
-                Event.on(oElement, "blur", this._onBlur, null, this);
-                Event.on(oElement, "keydown", this._onKeyDown, null, this);
-                Event.on(oElement, "keyup", this._onKeyUp, null, this);
-        
-                this._hasKeyEventHandlers = true;
-        
-            }
-        
-        
-            this.fireEvent("focus", p_oEvent);
-        
-        },
-        
-        
-        /**
-        * @method _onBlur
-        * @description "blur" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onBlur: function (p_oEvent) {
-        
-            this.removeStateCSSClasses("focus");
-        
-            if (this.get("type") != "menu") {
-        
-                this.removeStateCSSClasses("active");
-
-            }    
-        
-            if (this._activationKeyPressed) {
-        
-                Event.on(document, "keyup", this._onDocumentKeyUp, null, this);
-        
-            }
-        
-        
-            m_oFocusedButton = null;
-        
-            this.fireEvent("blur", p_oEvent);
-           
-        },
-        
-        
-        /**
-        * @method _onDocumentKeyUp
-        * @description "keyup" event handler for the document.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onDocumentKeyUp: function (p_oEvent) {
-        
-            if (this._isActivationKey(Event.getCharCode(p_oEvent))) {
-        
-                this._activationKeyPressed = false;
-                
-                Event.removeListener(document, "keyup", this._onDocumentKeyUp);
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onKeyDown
-        * @description "keydown" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onKeyDown: function (p_oEvent) {
-        
-            var oMenu = this._menu;
-        
-        
-            if (this.get("type") == "split" && 
-                this._isSplitButtonOptionKey(p_oEvent)) {
-        
-                this.fireEvent("option", p_oEvent);
-        
-            }
-            else if (this._isActivationKey(Event.getCharCode(p_oEvent))) {
-        
-                if (this.get("type") == "menu") {
-        
-                    this._showMenu(p_oEvent);
-        
-                }
-                else {
-        
-                    this._activationKeyPressed = true;
-                    
-                    this.addStateCSSClasses("active");
-                
-                }
-            
-            }
-        
-        
-            if (oMenu && oMenu.cfg.getProperty("visible") && 
-                Event.getCharCode(p_oEvent) == 27) {
-            
-                oMenu.hide();
-                this.focus();
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onKeyUp
-        * @description "keyup" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onKeyUp: function (p_oEvent) {
-        
-            var sType;
-        
-            if (this._isActivationKey(Event.getCharCode(p_oEvent))) {
-        
-                sType = this.get("type");
-        
-                if (sType == "checkbox" || sType == "radio") {
-        
-                    this.set("checked", !(this.get("checked")));
-                
-                }
-        
-                this._activationKeyPressed = false;
-        
-                if (this.get("type") != "menu") {
-        
-                    this.removeStateCSSClasses("active");
-        
-                }
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onClick
-        * @description "click" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onClick: function (p_oEvent) {
-        
-            var sType = this.get("type"),
-                sTitle,
-                oForm,
-                oSrcElement,
-                bReturnVal;
-        
-
-            switch (sType) {
-        
-            case "radio":
-            case "checkbox":
-
-				if (!this._hasDefaultTitle) {
-    
-					if (this.get("checked")) {
-						
-						sTitle = (sType == "radio") ? 
-									this.RADIO_CHECKED_TITLE : 
-									this.CHECKBOX_CHECKED_TITLE;
-					
-					}
-					else {
-					
-						sTitle = (sType == "radio") ? 
-									this.RADIO_DEFAULT_TITLE : 
-									this.CHECKBOX_DEFAULT_TITLE;
-					
-					}
-					
-					this.set("title", sTitle);
-                
-                }
-    
-                break;
-    
-            case "submit":
-
-				if (p_oEvent.returnValue !== false) {
-    
-                	this.submitForm();
-                
-                }
-            
-                break;
-    
-            case "reset":
-    
-                oForm = this.getForm();
-    
-                if (oForm) {
-    
-                    oForm.reset();
-                
-                }
-    
-                break;
-    
-            case "menu":
-    
-                sTitle = this._menu.cfg.getProperty("visible") ? 
-                                this.MENUBUTTON_MENU_VISIBLE_TITLE : 
-                                this.MENUBUTTON_DEFAULT_TITLE;
-    
-                this.set("title", sTitle);
-    
-                break;
-    
-            case "split":
-    
-                if (Event.getPageX(p_oEvent) > this._nOptionRegionX) {
-    
-                    bReturnVal = false;
-                
-                }
-                else {
-    
-                    this._hideMenu();
-        
-                    oSrcElement = this.get("srcelement");
-        
-                    if (oSrcElement && oSrcElement.type == "submit") {
-    
-                        this.submitForm();
-                    
-                    }
-                
-                }
-    
-                sTitle = this._menu.cfg.getProperty("visible") ? 
-                                this.SPLITBUTTON_OPTION_VISIBLE_TITLE : 
-                                this.SPLITBUTTON_DEFAULT_TITLE;
-    
-                this.set("title", sTitle);
-    
-                break;
-        
-            }
-        
-        	return bReturnVal;
-        
-        },
-        
-        
-        /**
-        * @method _onDblClick
-        * @description "dblclick" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onDblClick: function (p_oEvent) {
-        
-            var bReturnVal = true;
-    
-			if (this.get("type") == "split" && Event.getPageX(p_oEvent) > this._nOptionRegionX) {
-
-				bReturnVal = false;
-			
-			}
-        
-        	return bReturnVal;
-        
-        },        
-        
-        
-        /**
-        * @method _onAppendTo
-        * @description "appendTo" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onAppendTo: function (p_oEvent) {
-        
-            /*
-                It is necessary to call "_addListenersToForm" using 
-                "setTimeout" to make sure that the button's "form" property 
-                returns a node reference.  Sometimes, if you try to get the 
-                reference immediately after appending the field, it is null.
-            */
-        
-            Lang.later(0, this, this._addListenersToForm);
-        
-        },
-        
-        
-        /**
-        * @method _onFormReset
-        * @description "reset" event handler for the button's form.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event 
-        * object passed back by the event utility (YAHOO.util.Event).
-        */
-        _onFormReset: function (p_oEvent) {
-        
-            var sType = this.get("type"),
-                oMenu = this._menu;
-        
-            if (sType == "checkbox" || sType == "radio") {
-        
-                this.resetValue("checked");
-        
-            }
-        
-        
-            if (Menu && oMenu && (oMenu instanceof Menu)) {
-        
-                this.resetValue("selectedMenuItem");
-        
-            }
-        
-        },
-
-
-        /**
-        * @method _onFormSubmit
-        * @description "submit" event handler for the button's form.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event 
-        * object passed back by the event utility (YAHOO.util.Event).
-        */        
-        _onFormSubmit: function (p_oEvent) {
-        
-        	this.createHiddenFields();
-        
-        },
-        
-        
-        /**
-        * @method _onDocumentMouseDown
-        * @description "mousedown" event handler for the document.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onDocumentMouseDown: function (p_oEvent) {
-
-            var oTarget = Event.getTarget(p_oEvent),
-                oButtonElement = this.get("element"),
-                oMenuElement = this._menu.element;
-           
-        
-            if (oTarget != oButtonElement && 
-                !Dom.isAncestor(oButtonElement, oTarget) && 
-                oTarget != oMenuElement && 
-                !Dom.isAncestor(oMenuElement, oTarget)) {
-        
-                this._hideMenu();
-        
-                Event.removeListener(document, "mousedown", 
-                    this._onDocumentMouseDown);    
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onOption
-        * @description "option" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onOption: function (p_oEvent) {
-        
-            if (this.hasClass("yui-split-button-activeoption")) {
-        
-                this._hideMenu();
-        
-                this._bOptionPressed = false;
-        
-            }
-            else {
-        
-                this._showMenu(p_oEvent);    
-        
-                this._bOptionPressed = true;
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onMenuShow
-        * @description "show" event handler for the button's menu.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        */
-        _onMenuShow: function (p_sType) {
-        
-            Event.on(document, "mousedown", this._onDocumentMouseDown, 
-                null, this);
-        
-            var sTitle,
-                sState;
-            
-            if (this.get("type") == "split") {
-        
-                sTitle = this.SPLITBUTTON_OPTION_VISIBLE_TITLE;
-                sState = "activeoption";
-            
-            }
-            else {
-        
-                sTitle = this.MENUBUTTON_MENU_VISIBLE_TITLE;        
-                sState = "active";
-        
-            }
-        
-            this.addStateCSSClasses(sState);
-            this.set("title", sTitle);
-        
-        },
-        
-        
-        /**
-        * @method _onMenuHide
-        * @description "hide" event handler for the button's menu.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        */
-        _onMenuHide: function (p_sType) {
-            
-            var oMenu = this._menu,
-                sTitle,
-                sState;
-        
-            
-            if (this.get("type") == "split") {
-        
-                sTitle = this.SPLITBUTTON_DEFAULT_TITLE;
-                sState = "activeoption";
-        
-            }
-            else {
-        
-                sTitle = this.MENUBUTTON_DEFAULT_TITLE;        
-                sState = "active";
-            }
-        
-        
-            this.removeStateCSSClasses(sState);
-            this.set("title", sTitle);
-        
-        
-            if (this.get("type") == "split") {
-        
-                this._bOptionPressed = false;
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onMenuKeyDown
-        * @description "keydown" event handler for the button's menu.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        _onMenuKeyDown: function (p_sType, p_aArgs) {
-        
-            var oEvent = p_aArgs[0];
-        
-            if (Event.getCharCode(oEvent) == 27) {
-        
-                this.focus();
-        
-                if (this.get("type") == "split") {
-                
-                    this._bOptionPressed = false;
-                
-                }
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onMenuRender
-        * @description "render" event handler for the button's menu.
-        * @private
-        * @param {String} p_sType String representing the name of the  
-        * event thatwas fired.
-        */
-        _onMenuRender: function (p_sType) {
-        
-            var oButtonElement = this.get("element"),
-                oButtonParent = oButtonElement.parentNode,
-                oMenuElement = this._menu.element;
-        
-        
-            if (oButtonParent != oMenuElement.parentNode) {
-        
-                oButtonParent.appendChild(oMenuElement);
-            
-            }
-
-			this._renderedMenu = true;
-
-            this.set("selectedMenuItem", this.get("selectedMenuItem"));
-
-        },
-        
-        
-        /**
-        * @method _onMenuItemSelected
-        * @description "selectedchange" event handler for each item in the 
-        * button's menu.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {MenuItem} p_oItem Object representing the menu item that
-        * subscribed to the event.
-        */
-        _onMenuItemSelected: function (p_sType, p_aArgs, p_oItem) {
-
-            var bSelected = p_aArgs[0];
-
-            if (bSelected) {
-            
-                this.set("selectedMenuItem", p_oItem);
-
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onMenuItemAdded
-        * @description "itemadded" event handler for the button's menu.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event
-        * was fired.
-        * @param {<a href="YAHOO.widget.MenuItem.html">
-        * YAHOO.widget.MenuItem</a>} p_oItem Object representing the menu 
-        * item that subscribed to the event.
-        */
-        _onMenuItemAdded: function (p_sType, p_aArgs, p_oItem) {
-            
-            var oItem = p_aArgs[0];
-        
-           	oItem.cfg.subscribeToConfigEvent("selected", this._onMenuItemSelected, oItem, this);
-        
-        },
-        
-        
-        /**
-        * @method _onMenuClick
-        * @description "click" event handler for the button's menu.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        _onMenuClick: function (p_sType, p_aArgs) {
-
-            var oItem = p_aArgs[1],
-                oSrcElement;
-        
-            if (oItem) {
-        
-				this.set("selectedMenuItem", oItem);
-
-                oSrcElement = this.get("srcelement");
-            
-                if (oSrcElement && oSrcElement.type == "submit") {
-        
-                    this.submitForm();
-            
-                }
-            
-                this._hideMenu();
-            
-            }
-        
-        },
-        
-        
-        
-        // Public methods
-        
-        
-        /**
-        * @method createButtonElement
-        * @description Creates the button's HTML elements.
-        * @param {String} p_sType String indicating the type of element 
-        * to create.
-        * @return {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-58190037">HTMLElement</a>}
-        */
-        createButtonElement: function (p_sType) {
-        
-            var sNodeName = this.NODE_NAME,
-                oElement = document.createElement(sNodeName);
-        
-            oElement.innerHTML =  "<" + sNodeName + " class=\"first-child\">" + 
-                (p_sType == "link" ? "<a></a>" : 
-                "<button type=\"button\"></button>") + "</" + sNodeName + ">";
-        
-            return oElement;
-        
-        },
-
-        
-        /**
-        * @method addStateCSSClasses
-        * @description Appends state-specific CSS classes to the button's root 
-        * DOM element.
-        */
-        addStateCSSClasses: function (p_sState) {
-        
-            var sType = this.get("type");
-        
-            if (Lang.isString(p_sState)) {
-        
-                if (p_sState != "activeoption" && p_sState != "hoveroption") {
-        
-                    this.addClass(this.CSS_CLASS_NAME + ("-" + p_sState));
-        
-                }
-        
-                this.addClass("yui-" + sType + ("-button-" + p_sState));
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method removeStateCSSClasses
-        * @description Removes state-specific CSS classes to the button's root 
-        * DOM element.
-        */
-        removeStateCSSClasses: function (p_sState) {
-        
-            var sType = this.get("type");
-        
-            if (Lang.isString(p_sState)) {
-        
-                this.removeClass(this.CSS_CLASS_NAME + ("-" + p_sState));
-                this.removeClass("yui-" + sType + ("-button-" + p_sState));
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method createHiddenFields
-        * @description Creates the button's hidden form field and appends it 
-        * to its parent form.
-        * @return {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-6043025">HTMLInputElement</a>|Array}
-        */
-        createHiddenFields: function () {
-        
-            this.removeHiddenFields();
-        
-            var oForm = this.getForm(),
-                oButtonField,
-                sType,
-                bCheckable,
-                oMenu,
-                oMenuItem,
-                sButtonName,
-                oValue,
-                oMenuField,
-                oReturnVal,
-				sMenuFieldName,
-				oMenuSrcElement,
-				bMenuSrcElementIsSelect = false;
-        
-        
-            if (oForm && !this.get("disabled")) {
-        
-                sType = this.get("type");
-                bCheckable = (sType == "checkbox" || sType == "radio");
-        
-        
-                if ((bCheckable && this.get("checked")) || (m_oSubmitTrigger == this)) {
-                
-                    YAHOO.log("Creating hidden field.", "info", this.toString());
-        
-                    oButtonField = createInputElement((bCheckable ? sType : "hidden"),
-                                    this.get("name"), this.get("value"), this.get("checked"));
-            
-            
-                    if (oButtonField) {
-            
-                        if (bCheckable) {
-            
-                            oButtonField.style.display = "none";
-            
-                        }
-            
-                        oForm.appendChild(oButtonField);
-            
-                    }
-        
-                }
-                    
-        
-                oMenu = this._menu;
-            
-            
-                if (Menu && oMenu && (oMenu instanceof Menu)) {
-        
-                    YAHOO.log("Creating hidden field for menu.", "info", this.toString());
-        
-                    oMenuItem = this.get("selectedMenuItem");
-					oMenuSrcElement = oMenu.srcElement;
-					bMenuSrcElementIsSelect = (oMenuSrcElement && 
-												oMenuSrcElement.nodeName.toUpperCase() == "SELECT");
-
-                    if (oMenuItem) {
-
-						oValue = (oMenuItem.value === null || oMenuItem.value === "") ? 
-									oMenuItem.cfg.getProperty("text") : oMenuItem.value;
-
-						sButtonName = this.get("name");
-
-
-						if (bMenuSrcElementIsSelect) {
-						
-							sMenuFieldName = oMenuSrcElement.name;
-						
-						}
-						else if (sButtonName) {
-
-							sMenuFieldName = (sButtonName + "_options");
-						
-						}
-						
-
-						if (oValue && sMenuFieldName) {
-		
-							oMenuField = createInputElement("hidden", sMenuFieldName, oValue);
-							oForm.appendChild(oMenuField);
-		
-						}
-                    
-                    }
-                    else if (bMenuSrcElementIsSelect) {
-					
-						oForm.appendChild(oMenuSrcElement);
-                    
-                    }
-        
-                }
-            
-            
-                if (oButtonField && oMenuField) {
-        
-                    this._hiddenFields = [oButtonField, oMenuField];
-        
-                }
-                else if (!oButtonField && oMenuField) {
-        
-                    this._hiddenFields = oMenuField;
-                
-                }
-                else if (oButtonField && !oMenuField) {
-        
-                    this._hiddenFields = oButtonField;
-                
-                }
-        
-        		oReturnVal = this._hiddenFields;
-        
-            }
-
-			return oReturnVal;
-        
-        },
-        
-        
-        /**
-        * @method removeHiddenFields
-        * @description Removes the button's hidden form field(s) from its 
-        * parent form.
-        */
-        removeHiddenFields: function () {
-        
-            var oField = this._hiddenFields,
-                nFields,
-                i;
-        
-            function removeChild(p_oElement) {
-        
-                if (Dom.inDocument(p_oElement)) {
-        
-                    p_oElement.parentNode.removeChild(p_oElement);
-                
-                }
-                
-            }
-            
-        
-            if (oField) {
-        
-                if (Lang.isArray(oField)) {
-        
-                    nFields = oField.length;
-                    
-                    if (nFields > 0) {
-                    
-                        i = nFields - 1;
-                        
-                        do {
-        
-                            removeChild(oField[i]);
-        
-                        }
-                        while (i--);
-                    
-                    }
-                
-                }
-                else {
-        
-                    removeChild(oField);
-        
-                }
-        
-                this._hiddenFields = null;
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method submitForm
-        * @description Submits the form to which the button belongs.  Returns  
-        * true if the form was submitted successfully, false if the submission 
-        * was cancelled.
-        * @protected
-        * @return {Boolean}
-        */
-        submitForm: function () {
-        
-            var oForm = this.getForm(),
-        
-                oSrcElement = this.get("srcelement"),
-        
-                /*
-                    Boolean indicating if the event fired successfully 
-                    (was not cancelled by any handlers)
-                */
-        
-                bSubmitForm = false,
-                
-                oEvent;
-        
-        
-            if (oForm) {
-        
-                if (this.get("type") == "submit" || (oSrcElement && oSrcElement.type == "submit")) {
-        
-                    m_oSubmitTrigger = this;
-                    
-                }
-        
-        
-                if (UA.ie) {
-        
-                    bSubmitForm = oForm.fireEvent("onsubmit");
-        
-                }
-                else {  // Gecko, Opera, and Safari
-        
-                    oEvent = document.createEvent("HTMLEvents");
-                    oEvent.initEvent("submit", true, true);
-        
-                    bSubmitForm = oForm.dispatchEvent(oEvent);
-        
-                }
-        
-        
-                /*
-                    In IE and Safari, dispatching a "submit" event to a form 
-                    WILL cause the form's "submit" event to fire, but WILL NOT 
-                    submit the form.  Therefore, we need to call the "submit" 
-                    method as well.
-                */
-              
-                if ((UA.ie || UA.webkit) && bSubmitForm) {
-        
-                    oForm.submit();
-                
-                }
-            
-            }
-        
-            return bSubmitForm;
-            
-        },
-        
-        
-        /**
-        * @method init
-        * @description The Button class's initialization method.
-        * @param {String} p_oElement String specifying the id attribute of the 
-        * <code>&#60;input&#62;</code>, <code>&#60;button&#62;</code>,
-        * <code>&#60;a&#62;</code>, or <code>&#60;span&#62;</code> element to 
-        * be used to create the button.
-        * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-6043025">HTMLInputElement</a>|<a href="http://
-        * www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html
-        * #ID-34812697">HTMLButtonElement</a>|<a href="http://www.w3.org/TR
-        * /2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-33759296">
-        * HTMLElement</a>} p_oElement Object reference for the 
-        * <code>&#60;input&#62;</code>, <code>&#60;button&#62;</code>, 
-        * <code>&#60;a&#62;</code>, or <code>&#60;span&#62;</code> element to be 
-        * used to create the button.
-        * @param {Object} p_oElement Object literal specifying a set of 
-        * configuration attributes used to create the button.
-        * @param {Object} p_oAttributes Optional. Object literal specifying a 
-        * set of configuration attributes used to create the button.
-        */
-        init: function (p_oElement, p_oAttributes) {
-        
-            var sNodeName = p_oAttributes.type == "link" ? "a" : "button",
-                oSrcElement = p_oAttributes.srcelement,
-                oButton = p_oElement.getElementsByTagName(sNodeName)[0],
-                oInput;
-
-
-            if (!oButton) {
-
-                oInput = p_oElement.getElementsByTagName("input")[0];
-
-
-                if (oInput) {
-
-                    oButton = document.createElement("button");
-                    oButton.setAttribute("type", "button");
-
-                    oInput.parentNode.replaceChild(oButton, oInput);
-                
-                }
-
-            }
-
-            this._button = oButton;
-
-            /*
-				Capture if the button has a value for the title attribute.  If so, we won't 
-				override it for type of "checkbox" or "radio".
-            */
-            
-            this._hasDefaultTitle = (p_oAttributes.title && p_oAttributes.title.length > 0);
-
-            YAHOO.widget.Button.superclass.init.call(this, p_oElement, p_oAttributes);
-
-
-			var sId = this.get("id"),
-				sButtonId = sId + "-button";
-
-
-        	oButton.id = sButtonId;
-
-
-			var aLabels,
-				oLabel;
-
-
-        	var hasLabel = function (element) {
-        	
-				return (element.htmlFor === sId);
-
-        	};
-
-
-			var setLabel = function () {
-
-				oLabel.setAttribute((UA.ie ? "htmlFor" : "for"), sButtonId);
-			
-			};
-
-
-			if (oSrcElement && this.get("type") != "link") {
-
-				aLabels = Dom.getElementsBy(hasLabel, "label");
-
-				if (Lang.isArray(aLabels) && aLabels.length > 0) {
-				
-					oLabel = aLabels[0];
-				
-				}
-
-			}
-        
-
-            m_oButtons[sId] = this;
-        
-
-            this.addClass(this.CSS_CLASS_NAME);
-            this.addClass("yui-" + this.get("type") + "-button");
-        
-            Event.on(this._button, "focus", this._onFocus, null, this);
-            this.on("mouseover", this._onMouseOver);
-			this.on("mousedown", this._onMouseDown);
-			this.on("mouseup", this._onMouseUp);
-            this.on("click", this._onClick);
-            this.on("dblclick", this._onDblClick);
-
-            if (oLabel) {
-            
-				this.on("appendTo", setLabel);     
-            
-            }
-            
-            this.on("appendTo", this._onAppendTo);
-       
-        
-
-            var oContainer = this.get("container"),
-                oElement = this.get("element"),
-                bElInDoc = Dom.inDocument(oElement),
-                oParentNode;
-
-
-            if (oContainer) {
-        
-                if (oSrcElement && oSrcElement != oElement) {
-                
-                    oParentNode = oSrcElement.parentNode;
-
-                    if (oParentNode) {
-                    
-                        oParentNode.removeChild(oSrcElement);
-                    
-                    }
-
-                }
-        
-                if (Lang.isString(oContainer)) {
-        
-                    Event.onContentReady(oContainer, this.appendTo, oContainer, this);
-        
-                }
-                else {
-        
-        			this.on("init", function () {
-        			
-        				Lang.later(0, this, this.appendTo, oContainer);
-        			
-        			});
-        
-                }
-        
-            }
-            else if (!bElInDoc && oSrcElement && oSrcElement != oElement) {
-
-                oParentNode = oSrcElement.parentNode;
-        
-                if (oParentNode) {
-        
-                    this.fireEvent("beforeAppendTo", {
-                        type: "beforeAppendTo",
-                        target: oParentNode
-                    });
-            
-                    oParentNode.replaceChild(oElement, oSrcElement);
-            
-                    this.fireEvent("appendTo", {
-                        type: "appendTo",
-                        target: oParentNode
-                    });
-                
-                }
-        
-            }
-            else if (this.get("type") != "link" && bElInDoc && oSrcElement && 
-                oSrcElement == oElement) {
-        
-                this._addListenersToForm();
-        
-            }
-        
-            YAHOO.log("Initialization completed.", "info", this.toString());
-        
-
-			this.fireEvent("init", {
-				type: "init",
-				target: this
-			});        
-        
-        },
-        
-        
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to  
-        * create the button.
-        * @param {Object} p_oAttributes Object literal specifying a set of 
-        * configuration attributes used to create the button.
-        */
-        initAttributes: function (p_oAttributes) {
-        
-            var oAttributes = p_oAttributes || {};
-        
-            YAHOO.widget.Button.superclass.initAttributes.call(this, 
-                oAttributes);
-        
-        
-            /**
-            * @attribute type
-            * @description String specifying the button's type.  Possible 
-            * values are: "push," "link," "submit," "reset," "checkbox," 
-            * "radio," "menu," and "split."
-            * @default "push"
-            * @type String
-            */
-            this.setAttributeConfig("type", {
-        
-                value: (oAttributes.type || "push"),
-                validator: Lang.isString,
-                writeOnce: true,
-                method: this._setType
-        
-            });
-        
-        
-            /**
-            * @attribute label
-            * @description String specifying the button's text label 
-            * or innerHTML.
-            * @default null
-            * @type String
-            */
-            this.setAttributeConfig("label", {
-        
-                value: oAttributes.label,
-                validator: Lang.isString,
-                method: this._setLabel
-        
-            });
-        
-        
-            /**
-            * @attribute value
-            * @description Object specifying the value for the button.
-            * @default null
-            * @type Object
-            */
-            this.setAttributeConfig("value", {
-        
-                value: oAttributes.value
-        
-            });
-        
-        
-            /**
-            * @attribute name
-            * @description String specifying the name for the button.
-            * @default null
-            * @type String
-            */
-            this.setAttributeConfig("name", {
-        
-                value: oAttributes.name,
-                validator: Lang.isString
-        
-            });
-        
-        
-            /**
-            * @attribute tabindex
-            * @description Number specifying the tabindex for the button.
-            * @default null
-            * @type Number
-            */
-            this.setAttributeConfig("tabindex", {
-        
-                value: oAttributes.tabindex,
-                validator: Lang.isNumber,
-                method: this._setTabIndex
-        
-            });
-        
-        
-            /**
-            * @attribute title
-            * @description String specifying the title for the button.
-            * @default null
-            * @type String
-            */
-            this.configureAttribute("title", {
-        
-                value: oAttributes.title,
-                validator: Lang.isString,
-                method: this._setTitle
-        
-            });
-        
-        
-            /**
-            * @attribute disabled
-            * @description Boolean indicating if the button should be disabled.  
-            * (Disabled buttons are dimmed and will not respond to user input 
-            * or fire events.  Does not apply to button's of type "link.")
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig("disabled", {
-        
-                value: (oAttributes.disabled || false),
-                validator: Lang.isBoolean,
-                method: this._setDisabled
-        
-            });
-        
-        
-            /**
-            * @attribute href
-            * @description String specifying the href for the button.  Applies
-            * only to buttons of type "link."
-            * @type String
-            */
-            this.setAttributeConfig("href", {
-        
-                value: oAttributes.href,
-                validator: Lang.isString,
-                method: this._setHref
-        
-            });
-        
-        
-            /**
-            * @attribute target
-            * @description String specifying the target for the button.  
-            * Applies only to buttons of type "link."
-            * @type String
-            */
-            this.setAttributeConfig("target", {
-        
-                value: oAttributes.target,
-                validator: Lang.isString,
-                method: this._setTarget
-        
-            });
-        
-        
-            /**
-            * @attribute checked
-            * @description Boolean indicating if the button is checked. 
-            * Applies only to buttons of type "radio" and "checkbox."
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig("checked", {
-        
-                value: (oAttributes.checked || false),
-                validator: Lang.isBoolean,
-                method: this._setChecked
-        
-            });
-        
-        
-            /**
-            * @attribute container
-            * @description HTML element reference or string specifying the id 
-            * attribute of the HTML element that the button's markup should be 
-            * rendered into.
-            * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-            * level-one-html.html#ID-58190037">HTMLElement</a>|String
-            * @default null
-            */
-            this.setAttributeConfig("container", {
-        
-                value: oAttributes.container,
-                writeOnce: true
-        
-            });
-        
-        
-            /**
-            * @attribute srcelement
-            * @description Object reference to the HTML element (either 
-            * <code>&#60;input&#62;</code> or <code>&#60;span&#62;</code>) 
-            * used to create the button.
-            * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-            * level-one-html.html#ID-58190037">HTMLElement</a>|String
-            * @default null
-            */
-            this.setAttributeConfig("srcelement", {
-        
-                value: oAttributes.srcelement,
-                writeOnce: true
-        
-            });
-        
-        
-            /**
-            * @attribute menu
-            * @description Object specifying the menu for the button.  
-            * The value can be one of the following:
-            * <ul>
-            * <li>Object specifying a <a href="YAHOO.widget.Menu.html">
-            * YAHOO.widget.Menu</a> instance.</li>
-            * <li>Object specifying a <a href="YAHOO.widget.Overlay.html">
-            * YAHOO.widget.Overlay</a> instance.</li>
-            * <li>String specifying the id attribute of the <code>&#60;div&#62;
-            * </code> element used to create the menu.  By default the menu 
-            * will be created as an instance of 
-            * <a href="YAHOO.widget.Overlay.html">YAHOO.widget.Overlay</a>.  
-            * If the <a href="YAHOO.widget.Menu.html#CSS_CLASS_NAME">
-            * default CSS class name for YAHOO.widget.Menu</a> is applied to 
-            * the <code>&#60;div&#62;</code> element, it will be created as an
-            * instance of <a href="YAHOO.widget.Menu.html">YAHOO.widget.Menu
-            * </a>.</li><li>String specifying the id attribute of the 
-            * <code>&#60;select&#62;</code> element used to create the menu.
-            * </li><li>Object specifying the <code>&#60;div&#62;</code> element
-            * used to create the menu.</li>
-            * <li>Object specifying the <code>&#60;select&#62;</code> element
-            * used to create the menu.</li>
-            * <li>Array of object literals, each representing a set of 
-            * <a href="YAHOO.widget.MenuItem.html">YAHOO.widget.MenuItem</a> 
-            * configuration attributes.</li>
-            * <li>Array of strings representing the text labels for each menu 
-            * item in the menu.</li>
-            * </ul>
-            * @type <a href="YAHOO.widget.Menu.html">YAHOO.widget.Menu</a>|<a 
-            * href="YAHOO.widget.Overlay.html">YAHOO.widget.Overlay</a>|<a 
-            * href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-            * one-html.html#ID-58190037">HTMLElement</a>|String|Array
-            * @default null
-            */
-            this.setAttributeConfig("menu", {
-        
-                value: null,
-                method: this._setMenu,
-                writeOnce: true
-            
-            });
-        
-        
-            /**
-            * @attribute lazyloadmenu
-            * @description Boolean indicating the value to set for the 
-            * <a href="YAHOO.widget.Menu.html#lazyLoad">"lazyload"</a>
-            * configuration property of the button's menu.  Setting 
-            * "lazyloadmenu" to <code>true </code> will defer rendering of 
-            * the button's menu until the first time it is made visible.  
-            * If "lazyloadmenu" is set to <code>false</code>, the button's 
-            * menu will be rendered immediately if the button is in the 
-            * document, or in response to the button's "appendTo" event if 
-            * the button is not yet in the document.  In either case, the 
-            * menu is rendered into the button's parent HTML element.  
-            * <em>This attribute does not apply if a 
-            * <a href="YAHOO.widget.Menu.html">YAHOO.widget.Menu</a> or 
-            * <a href="YAHOO.widget.Overlay.html">YAHOO.widget.Overlay</a> 
-            * instance is passed as the value of the button's "menu" 
-            * configuration attribute. <a href="YAHOO.widget.Menu.html">
-            * YAHOO.widget.Menu</a> or <a href="YAHOO.widget.Overlay.html">
-            * YAHOO.widget.Overlay</a> instances should be rendered before 
-            * being set as the value for the "menu" configuration 
-            * attribute.</em>
-            * @default true
-            * @type Boolean
-            */
-            this.setAttributeConfig("lazyloadmenu", {
-        
-                value: (oAttributes.lazyloadmenu === false ? false : true),
-                validator: Lang.isBoolean,
-                writeOnce: true
-        
-            });
-
-
-            /**
-            * @attribute menuclassname
-            * @description String representing the CSS class name to be 
-            * applied to the root element of the button's menu.
-            * @type String
-            * @default "yui-button-menu"
-            */
-            this.setAttributeConfig("menuclassname", {
-        
-                value: (oAttributes.menuclassname || "yui-button-menu"),
-                validator: Lang.isString,
-                method: this._setMenuClassName,
-                writeOnce: true
-        
-            });        
-
-
-			/**
-			* @attribute menuminscrollheight
-			* @description Number defining the minimum threshold for the "menumaxheight" 
-			* configuration attribute.  When set this attribute is automatically applied 
-			* to all submenus.
-			* @default 90
-			* @type Number
-			*/
-            this.setAttributeConfig("menuminscrollheight", {
-        
-                value: (oAttributes.menuminscrollheight || 90),
-                validator: Lang.isNumber
-        
-            });
-
-
-            /**
-            * @attribute menumaxheight
-			* @description Number defining the maximum height (in pixels) for a menu's 
-			* body element (<code>&#60;div class="bd"&#60;</code>).  Once a menu's body 
-			* exceeds this height, the contents of the body are scrolled to maintain 
-			* this value.  This value cannot be set lower than the value of the 
-			* "minscrollheight" configuration property.
-            * @type Number
-            * @default 0
-            */
-            this.setAttributeConfig("menumaxheight", {
-        
-                value: (oAttributes.menumaxheight || 0),
-                validator: Lang.isNumber
-        
-            });
-
-
-            /**
-            * @attribute menualignment
-			* @description Array defining how the Button's Menu is aligned to the Button.  
-            * The default value of ["tl", "bl"] aligns the Menu's top left corner to the Button's 
-            * bottom left corner.
-            * @type Array
-            * @default ["tl", "bl"]
-            */
-            this.setAttributeConfig("menualignment", {
-        
-                value: (oAttributes.menualignment || ["tl", "bl"]),
-                validator: Lang.isArray
-        
-            });
-            
-
-            /**
-            * @attribute selectedMenuItem
-            * @description Object representing the item in the button's menu 
-            * that is currently selected.
-            * @type Number
-            * @default null
-            */
-            this.setAttributeConfig("selectedMenuItem", {
-        
-                value: null,
-                method: this._setSelectedMenuItem
-        
-            });
-        
-        
-            /**
-            * @attribute onclick
-            * @description Object literal representing the code to be executed  
-            * when the button is clicked.  Format:<br> <code> {<br> 
-            * <strong>fn:</strong> Function,   &#47;&#47; The handler to call 
-            * when the event fires.<br> <strong>obj:</strong> Object, 
-            * &#47;&#47; An object to pass back to the handler.<br> 
-            * <strong>scope:</strong> Object &#47;&#47;  The object to use 
-            * for the scope of the handler.<br> } </code>
-            * @type Object
-            * @default null
-            */
-            this.setAttributeConfig("onclick", {
-        
-                value: oAttributes.onclick,
-                method: this._setOnClick
-            
-            });
-
-
-            /**
-            * @attribute focusmenu
-            * @description Boolean indicating whether or not the button's menu 
-            * should be focused when it is made visible.
-            * @type Boolean
-            * @default true
-            */
-            this.setAttributeConfig("focusmenu", {
-        
-                value: (oAttributes.focusmenu === false ? false : true),
-                validator: Lang.isBoolean
-        
-            });
-
-        },
-        
-        
-        /**
-        * @method focus
-        * @description Causes the button to receive the focus and fires the 
-        * button's "focus" event.
-        */
-        focus: function () {
-        
-            if (!this.get("disabled")) {
-        
-                this._button.focus();
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method blur
-        * @description Causes the button to lose focus and fires the button's
-        * "blur" event.
-        */
-        blur: function () {
-        
-            if (!this.get("disabled")) {
-        
-                this._button.blur();
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method hasFocus
-        * @description Returns a boolean indicating whether or not the button 
-        * has focus.
-        * @return {Boolean}
-        */
-        hasFocus: function () {
-        
-            return (m_oFocusedButton == this);
-        
-        },
-        
-        
-        /**
-        * @method isActive
-        * @description Returns a boolean indicating whether or not the button 
-        * is active.
-        * @return {Boolean}
-        */
-        isActive: function () {
-        
-            return this.hasClass(this.CSS_CLASS_NAME + "-active");
-        
-        },
-        
-        
-        /**
-        * @method getMenu
-        * @description Returns a reference to the button's menu.
-        * @return {<a href="YAHOO.widget.Overlay.html">
-        * YAHOO.widget.Overlay</a>|<a 
-        * href="YAHOO.widget.Menu.html">YAHOO.widget.Menu</a>}
-        */
-        getMenu: function () {
-        
-            return this._menu;
-        
-        },
-        
-        
-        /**
-        * @method getForm
-        * @description Returns a reference to the button's parent form.
-        * @return {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-
-        * 20000929/level-one-html.html#ID-40002357">HTMLFormElement</a>}
-        */
-        getForm: function () {
-        
-        	var oButton = this._button,
-        		oForm;
-        
-            if (oButton) {
-            
-            	oForm = oButton.form;
-            
-            }
-        
-        	return oForm;
-        
-        },
-        
-        
-        /** 
-        * @method getHiddenFields
-        * @description Returns an <code>&#60;input&#62;</code> element or 
-        * array of form elements used to represent the button when its parent 
-        * form is submitted.  
-        * @return {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-6043025">HTMLInputElement</a>|Array}
-        */
-        getHiddenFields: function () {
-        
-            return this._hiddenFields;
-        
-        },
-        
-        
-        /**
-        * @method destroy
-        * @description Removes the button's element from its parent element and 
-        * removes all event handlers.
-        */
-        destroy: function () {
-        
-            YAHOO.log("Destroying ...", "info", this.toString());
-        
-            var oElement = this.get("element"),
-                oParentNode = oElement.parentNode,
-                oMenu = this._menu,
-                aButtons;
-        
-            if (oMenu) {
-        
-                YAHOO.log("Destroying menu.", "info", this.toString());
-
-                if (m_oOverlayManager && m_oOverlayManager.find(oMenu)) {
-
-                    m_oOverlayManager.remove(oMenu);
-
-                }
-        
-                oMenu.destroy();
-        
-            }
-        
-            YAHOO.log("Removing DOM event listeners.", "info", this.toString());
-        
-            Event.purgeElement(oElement);
-            Event.purgeElement(this._button);
-            Event.removeListener(document, "mouseup", this._onDocumentMouseUp);
-            Event.removeListener(document, "keyup", this._onDocumentKeyUp);
-            Event.removeListener(document, "mousedown", this._onDocumentMouseDown);
-        
-        
-            var oForm = this.getForm();
-            
-            if (oForm) {
-        
-                Event.removeListener(oForm, "reset", this._onFormReset);
-                Event.removeListener(oForm, "submit", this._onFormSubmit);
-        
-            }
-
-            YAHOO.log("Removing CustomEvent listeners.", "info", this.toString());
-
-            this.unsubscribeAll();
-
-            if (oParentNode) {
-
-                oParentNode.removeChild(oElement);
-            
-            }
-        
-            YAHOO.log("Removing from document.", "info", this.toString());
-        
-            delete m_oButtons[this.get("id")];
-
-            aButtons = Dom.getElementsByClassName(this.CSS_CLASS_NAME, 
-                                this.NODE_NAME, oForm); 
-
-            if (Lang.isArray(aButtons) && aButtons.length === 0) {
-
-                Event.removeListener(oForm, "keypress", 
-                        YAHOO.widget.Button.onFormKeyPress);
-
-            }
-
-            YAHOO.log("Destroyed.", "info", this.toString());
-        
-        },
-        
-        
-        fireEvent: function (p_sType , p_aArgs) {
-        
-			var sType = arguments[0];
-		
-			//  Disabled buttons should not respond to DOM events
-		
-			if (this.DOM_EVENTS[sType] && this.get("disabled")) {
-		
-				return false;
-		
-			}
-		
-			return YAHOO.widget.Button.superclass.fireEvent.apply(this, arguments);
-        
-        },
-        
-        
-        /**
-        * @method toString
-        * @description Returns a string representing the button.
-        * @return {String}
-        */
-        toString: function () {
-        
-            return ("Button " + this.get("id"));
-        
-        }
-    
-    });
-    
-    
-    /**
-    * @method YAHOO.widget.Button.onFormKeyPress
-    * @description "keypress" event handler for the button's form.
-    * @param {Event} p_oEvent Object representing the DOM event object passed 
-    * back by the event utility (YAHOO.util.Event).
-    */
-    YAHOO.widget.Button.onFormKeyPress = function (p_oEvent) {
-    
-        var oTarget = Event.getTarget(p_oEvent),
-            nCharCode = Event.getCharCode(p_oEvent),
-            sNodeName = oTarget.nodeName && oTarget.nodeName.toUpperCase(),
-            sType = oTarget.type,
-    
-            /*
-                Boolean indicating if the form contains any enabled or 
-                disabled YUI submit buttons
-            */
-    
-            bFormContainsYUIButtons = false,
-    
-            oButton,
-    
-            oYUISubmitButton,   // The form's first, enabled YUI submit button
-    
-            /*
-                 The form's first, enabled HTML submit button that precedes any 
-                 YUI submit button
-            */
-    
-            oPrecedingSubmitButton,
-            
-            oEvent; 
-    
-    
-        function isSubmitButton(p_oElement) {
-    
-            var sId,
-                oSrcElement;
-    
-            switch (p_oElement.nodeName.toUpperCase()) {
-    
-            case "INPUT":
-            case "BUTTON":
-            
-                if (p_oElement.type == "submit" && !p_oElement.disabled) {
-                    
-                    if (!bFormContainsYUIButtons && !oPrecedingSubmitButton) {
-
-                        oPrecedingSubmitButton = p_oElement;
-
-                    }
-                
-                }
-
-                break;
-            
-
-            default:
-            
-                sId = p_oElement.id;
-    
-                if (sId) {
-    
-                    oButton = m_oButtons[sId];
-        
-                    if (oButton) {
-
-                        bFormContainsYUIButtons = true;
-        
-                        if (!oButton.get("disabled")) {
-
-                            oSrcElement = oButton.get("srcelement");
-    
-                            if (!oYUISubmitButton && (oButton.get("type") == "submit" || 
-                                (oSrcElement && oSrcElement.type == "submit"))) {
-
-                                oYUISubmitButton = oButton;
-                            
-                            }
-                        
-                        }
-                        
-                    }
-                
-                }
-
-                break;
-    
-            }
-    
-        }
-    
-    
-        if (nCharCode == 13 && ((sNodeName == "INPUT" && (sType == "text" || 
-            sType == "password" || sType == "checkbox" || sType == "radio" || 
-            sType == "file")) || sNodeName == "SELECT")) {
-    
-            Dom.getElementsBy(isSubmitButton, "*", this);
-    
-    
-            if (oPrecedingSubmitButton) {
-    
-                /*
-                     Need to set focus to the first enabled submit button
-                     to make sure that IE includes its name and value 
-                     in the form's data set.
-                */
-    
-                oPrecedingSubmitButton.focus();
-            
-            }
-            else if (!oPrecedingSubmitButton && oYUISubmitButton) {
-    
-				/*
-					Need to call "preventDefault" to ensure that the form doesn't end up getting
-					submitted twice.
-				*/
-    
-    			Event.preventDefault(p_oEvent);
-
-
-				if (UA.ie) {
-				
-					oYUISubmitButton.get("element").fireEvent("onclick");
-				
-				}
-				else {
-
-					oEvent = document.createEvent("HTMLEvents");
-					oEvent.initEvent("click", true, true);
-			
-
-					if (UA.gecko < 1.9) {
-					
-						oYUISubmitButton.fireEvent("click", oEvent);
-					
-					}
-					else {
-
-						oYUISubmitButton.get("element").dispatchEvent(oEvent);
-					
-					}
-  
-                }
-
-            }
-            
-        }
-    
-    };
-    
-    
-    /**
-    * @method YAHOO.widget.Button.addHiddenFieldsToForm
-    * @description Searches the specified form and adds hidden fields for  
-    * instances of YAHOO.widget.Button that are of type "radio," "checkbox," 
-    * "menu," and "split."
-    * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-40002357">HTMLFormElement</a>} p_oForm Object reference 
-    * for the form to search.
-    */
-    YAHOO.widget.Button.addHiddenFieldsToForm = function (p_oForm) {
-    
-        var aButtons = Dom.getElementsByClassName(
-                            YAHOO.widget.Button.prototype.CSS_CLASS_NAME, 
-                            "*", 
-                            p_oForm),
-    
-            nButtons = aButtons.length,
-            oButton,
-            sId,
-            i;
-    
-        if (nButtons > 0) {
-    
-            YAHOO.log("Form contains " + nButtons + " YUI buttons.", "info", this.toString());
-    
-            for (i = 0; i < nButtons; i++) {
-    
-                sId = aButtons[i].id;
-    
-                if (sId) {
-    
-                    oButton = m_oButtons[sId];
-        
-                    if (oButton) {
-           
-                        oButton.createHiddenFields();
-                        
-                    }
-                
-                }
-            
-            }
-    
-        }
-    
-    };
-    
-
-    /**
-    * @method YAHOO.widget.Button.getButton
-    * @description Returns a button with the specified id.
-    * @param {String} p_sId String specifying the id of the root node of the 
-    * HTML element representing the button to be retrieved.
-    * @return {YAHOO.widget.Button}
-    */
-    YAHOO.widget.Button.getButton = function (p_sId) {
-
-		return m_oButtons[p_sId];
-
-    };
-    
-    
-    // Events
-    
-    
-    /**
-    * @event focus
-    * @description Fires when the menu item receives focus.  Passes back a  
-    * single object representing the original DOM event object passed back by 
-    * the event utility (YAHOO.util.Event) when the event was fired.  See 
-    * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> 
-    * for more information on listening for this event.
-    * @type YAHOO.util.CustomEvent
-    */
-    
-    
-    /**
-    * @event blur
-    * @description Fires when the menu item loses the input focus.  Passes back  
-    * a single object representing the original DOM event object passed back by 
-    * the event utility (YAHOO.util.Event) when the event was fired.  See 
-    * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for  
-    * more information on listening for this event.
-    * @type YAHOO.util.CustomEvent
-    */
-    
-    
-    /**
-    * @event option
-    * @description Fires when the user invokes the button's option.  Passes 
-    * back a single object representing the original DOM event (either 
-    * "mousedown" or "keydown") that caused the "option" event to fire.  See 
-    * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> 
-    * for more information on listening for this event.
-    * @type YAHOO.util.CustomEvent
-    */
-
-})();
-(function () {
-
-    // Shorthard for utilities
-    
-    var Dom = YAHOO.util.Dom,
-        Event = YAHOO.util.Event,
-        Lang = YAHOO.lang,
-        Button = YAHOO.widget.Button,  
-    
-        // Private collection of radio buttons
-    
-        m_oButtons = {};
-
-
-
-    /**
-    * The ButtonGroup class creates a set of buttons that are mutually 
-    * exclusive; checking one button in the set will uncheck all others in the 
-    * button group.
-    * @param {String} p_oElement String specifying the id attribute of the 
-    * <code>&#60;div&#62;</code> element of the button group.
-    * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-    * level-one-html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object 
-    * specifying the <code>&#60;div&#62;</code> element of the button group.
-    * @param {Object} p_oElement Object literal specifying a set of 
-    * configuration attributes used to create the button group.
-    * @param {Object} p_oAttributes Optional. Object literal specifying a set 
-    * of configuration attributes used to create the button group.
-    * @namespace YAHOO.widget
-    * @class ButtonGroup
-    * @constructor
-    * @extends YAHOO.util.Element
-    */
-    YAHOO.widget.ButtonGroup = function (p_oElement, p_oAttributes) {
-    
-        var fnSuperClass = YAHOO.widget.ButtonGroup.superclass.constructor,
-            sNodeName,
-            oElement,
-            sId;
-    
-        if (arguments.length == 1 && !Lang.isString(p_oElement) && 
-            !p_oElement.nodeName) {
-    
-            if (!p_oElement.id) {
-    
-                sId = Dom.generateId();
-    
-                p_oElement.id = sId;
-    
-                YAHOO.log("No value specified for the button group's \"id\"" +
-                    " attribute. Setting button group id to \"" + sId + "\".",
-                    "info");
-    
-            }
-    
-            this.logger = new YAHOO.widget.LogWriter("ButtonGroup " + sId);
-    
-            this.logger.log("No source HTML element.  Building the button " +
-                    "group using the set of configuration attributes.");
-    
-            fnSuperClass.call(this, (this._createGroupElement()), p_oElement);
-    
-        }
-        else if (Lang.isString(p_oElement)) {
-    
-            oElement = Dom.get(p_oElement);
-    
-            if (oElement) {
-            
-                if (oElement.nodeName.toUpperCase() == this.NODE_NAME) {
-    
-                    this.logger = 
-                        new YAHOO.widget.LogWriter("ButtonGroup " + p_oElement);
-            
-                    fnSuperClass.call(this, oElement, p_oAttributes);
-    
-                }
-    
-            }
-        
-        }
-        else {
-    
-            sNodeName = p_oElement.nodeName.toUpperCase();
-    
-            if (sNodeName && sNodeName == this.NODE_NAME) {
-        
-                if (!p_oElement.id) {
-        
-                    p_oElement.id = Dom.generateId();
-        
-                    YAHOO.log("No value specified for the button group's" +
-                        " \"id\" attribute. Setting button group id " +
-                        "to \"" + p_oElement.id + "\".", "warn");
-        
-                }
-        
-                this.logger = 
-                    new YAHOO.widget.LogWriter("ButtonGroup " + p_oElement.id);
-        
-                fnSuperClass.call(this, p_oElement, p_oAttributes);
-    
-            }
-    
-        }
-    
-    };
-    
-    
-    YAHOO.extend(YAHOO.widget.ButtonGroup, YAHOO.util.Element, {
-    
-    
-        // Protected properties
-        
-        
-        /** 
-        * @property _buttons
-        * @description Array of buttons in the button group.
-        * @default null
-        * @protected
-        * @type Array
-        */
-        _buttons: null,
-        
-        
-        
-        // Constants
-        
-        
-        /**
-        * @property NODE_NAME
-        * @description The name of the tag to be used for the button 
-        * group's element. 
-        * @default "DIV"
-        * @final
-        * @type String
-        */
-        NODE_NAME: "DIV",
-        
-        
-        /**
-        * @property CSS_CLASS_NAME
-        * @description String representing the CSS class(es) to be applied  
-        * to the button group's element.
-        * @default "yui-buttongroup"
-        * @final
-        * @type String
-        */
-        CSS_CLASS_NAME: "yui-buttongroup",
-    
-    
-    
-        // Protected methods
-        
-        
-        /**
-        * @method _createGroupElement
-        * @description Creates the button group's element.
-        * @protected
-        * @return {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-22445964">HTMLDivElement</a>}
-        */
-        _createGroupElement: function () {
-        
-            var oElement = document.createElement(this.NODE_NAME);
-        
-            return oElement;
-        
-        },
-        
-        
-        
-        // Protected attribute setter methods
-        
-        
-        /**
-        * @method _setDisabled
-        * @description Sets the value of the button groups's 
-        * "disabled" attribute.
-        * @protected
-        * @param {Boolean} p_bDisabled Boolean indicating the value for
-        * the button group's "disabled" attribute.
-        */
-        _setDisabled: function (p_bDisabled) {
-        
-            var nButtons = this.getCount(),
-                i;
-        
-            if (nButtons > 0) {
-        
-                i = nButtons - 1;
-                
-                do {
-        
-                    this._buttons[i].set("disabled", p_bDisabled);
-                
-                }
-                while (i--);
-        
-            }
-        
-        },
-        
-        
-        
-        // Protected event handlers
-        
-        
-        /**
-        * @method _onKeyDown
-        * @description "keydown" event handler for the button group.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onKeyDown: function (p_oEvent) {
-        
-            var oTarget = Event.getTarget(p_oEvent),
-                nCharCode = Event.getCharCode(p_oEvent),
-                sId = oTarget.parentNode.parentNode.id,
-                oButton = m_oButtons[sId],
-                nIndex = -1;
-        
-        
-            if (nCharCode == 37 || nCharCode == 38) {
-        
-                nIndex = (oButton.index === 0) ? 
-                            (this._buttons.length - 1) : (oButton.index - 1);
-            
-            }
-            else if (nCharCode == 39 || nCharCode == 40) {
-        
-                nIndex = (oButton.index === (this._buttons.length - 1)) ? 
-                            0 : (oButton.index + 1);
-        
-            }
-        
-        
-            if (nIndex > -1) {
-        
-                this.check(nIndex);
-                this.getButton(nIndex).focus();
-            
-            }        
-        
-        },
-        
-        
-        /**
-        * @method _onAppendTo
-        * @description "appendTo" event handler for the button group.
-        * @protected
-        * @param {Event} p_oEvent Object representing the event that was fired.
-        */
-        _onAppendTo: function (p_oEvent) {
-        
-            var aButtons = this._buttons,
-                nButtons = aButtons.length,
-                i;
-        
-            for (i = 0; i < nButtons; i++) {
-        
-                aButtons[i].appendTo(this.get("element"));
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onButtonCheckedChange
-        * @description "checkedChange" event handler for each button in the 
-        * button group.
-        * @protected
-        * @param {Event} p_oEvent Object representing the event that was fired.
-        * @param {<a href="YAHOO.widget.Button.html">YAHOO.widget.Button</a>}  
-        * p_oButton Object representing the button that fired the event.
-        */
-        _onButtonCheckedChange: function (p_oEvent, p_oButton) {
-        
-            var bChecked = p_oEvent.newValue,
-                oCheckedButton = this.get("checkedButton");
-        
-            if (bChecked && oCheckedButton != p_oButton) {
-        
-                if (oCheckedButton) {
-        
-                    oCheckedButton.set("checked", false, true);
-        
-                }
-        
-                this.set("checkedButton", p_oButton);
-                this.set("value", p_oButton.get("value"));
-        
-            }
-            else if (oCheckedButton && !oCheckedButton.set("checked")) {
-        
-                oCheckedButton.set("checked", true, true);
-        
-            }
-           
-        },
-        
-        
-        
-        // Public methods
-        
-        
-        /**
-        * @method init
-        * @description The ButtonGroup class's initialization method.
-        * @param {String} p_oElement String specifying the id attribute of the 
-        * <code>&#60;div&#62;</code> element of the button group.
-        * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object 
-        * specifying the <code>&#60;div&#62;</code> element of the button group.
-        * @param {Object} p_oElement Object literal specifying a set of  
-        * configuration attributes used to create the button group.
-        * @param {Object} p_oAttributes Optional. Object literal specifying a
-        * set of configuration attributes used to create the button group.
-        */
-        init: function (p_oElement, p_oAttributes) {
-        
-            this._buttons = [];
-        
-            YAHOO.widget.ButtonGroup.superclass.init.call(this, p_oElement, 
-                    p_oAttributes);
-        
-            this.addClass(this.CSS_CLASS_NAME);
-        
-            this.logger.log("Searching for child nodes with the class name " +
-                "\"yui-radio-button\" to add to the button group.");
-        
-            var aButtons = this.getElementsByClassName("yui-radio-button");
-        
-        
-            if (aButtons.length > 0) {
-        
-                this.logger.log("Found " + aButtons.length + 
-                    " child nodes with the class name \"yui-radio-button.\"" + 
-                    "  Attempting to add to button group.");
-        
-                this.addButtons(aButtons);
-        
-            }
-        
-        
-            this.logger.log("Searching for child nodes with the type of " +
-                " \"radio\" to add to the button group.");
-        
-            function isRadioButton(p_oElement) {
-        
-                return (p_oElement.type == "radio");
-        
-            }
-        
-            aButtons = 
-                Dom.getElementsBy(isRadioButton, "input", this.get("element"));
-        
-        
-            if (aButtons.length > 0) {
-        
-                this.logger.log("Found " + aButtons.length + " child nodes" +
-                    " with the type of \"radio.\"  Attempting to add to" +
-                    " button group.");
-        
-                this.addButtons(aButtons);
-        
-            }
-        
-            this.on("keydown", this._onKeyDown);
-            this.on("appendTo", this._onAppendTo);
-        
-
-            var oContainer = this.get("container");
-
-            if (oContainer) {
-        
-                if (Lang.isString(oContainer)) {
-        
-                    Event.onContentReady(oContainer, function () {
-        
-                        this.appendTo(oContainer);            
-                    
-                    }, null, this);
-        
-                }
-                else {
-        
-                    this.appendTo(oContainer);
-        
-                }
-        
-            }
-        
-        
-            this.logger.log("Initialization completed.");
-        
-        },
-        
-        
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to  
-        * create the button group.
-        * @param {Object} p_oAttributes Object literal specifying a set of 
-        * configuration attributes used to create the button group.
-        */
-        initAttributes: function (p_oAttributes) {
-        
-            var oAttributes = p_oAttributes || {};
-        
-            YAHOO.widget.ButtonGroup.superclass.initAttributes.call(
-                this, oAttributes);
-        
-        
-            /**
-            * @attribute name
-            * @description String specifying the name for the button group.  
-            * This name will be applied to each button in the button group.
-            * @default null
-            * @type String
-            */
-            this.setAttributeConfig("name", {
-        
-                value: oAttributes.name,
-                validator: Lang.isString
-        
-            });
-        
-        
-            /**
-            * @attribute disabled
-            * @description Boolean indicating if the button group should be 
-            * disabled.  Disabling the button group will disable each button 
-            * in the button group.  Disabled buttons are dimmed and will not 
-            * respond to user input or fire events.
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig("disabled", {
-        
-                value: (oAttributes.disabled || false),
-                validator: Lang.isBoolean,
-                method: this._setDisabled
-        
-            });
-        
-        
-            /**
-            * @attribute value
-            * @description Object specifying the value for the button group.
-            * @default null
-            * @type Object
-            */
-            this.setAttributeConfig("value", {
-        
-                value: oAttributes.value
-        
-            });
-        
-        
-            /**
-            * @attribute container
-            * @description HTML element reference or string specifying the id 
-            * attribute of the HTML element that the button group's markup
-            * should be rendered into.
-            * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-            * level-one-html.html#ID-58190037">HTMLElement</a>|String
-            * @default null
-            */
-            this.setAttributeConfig("container", {
-        
-                value: oAttributes.container,
-                writeOnce: true
-        
-            });
-        
-        
-            /**
-            * @attribute checkedButton
-            * @description Reference for the button in the button group that 
-            * is checked.
-            * @type {<a href="YAHOO.widget.Button.html">YAHOO.widget.Button</a>}
-            * @default null
-            */
-            this.setAttributeConfig("checkedButton", {
-        
-                value: null
-        
-            });
-        
-        },
-        
-        
-        /**
-        * @method addButton
-        * @description Adds the button to the button group.
-        * @param {<a href="YAHOO.widget.Button.html">YAHOO.widget.Button</a>}  
-        * p_oButton Object reference for the <a href="YAHOO.widget.Button.html">
-        * YAHOO.widget.Button</a> instance to be added to the button group.
-        * @param {String} p_oButton String specifying the id attribute of the 
-        * <code>&#60;input&#62;</code> or <code>&#60;span&#62;</code> element 
-        * to be used to create the button to be added to the button group.
-        * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-6043025">HTMLInputElement</a>|<a href="
-        * http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#
-        * ID-33759296">HTMLElement</a>} p_oButton Object reference for the 
-        * <code>&#60;input&#62;</code> or <code>&#60;span&#62;</code> element 
-        * to be used to create the button to be added to the button group.
-        * @param {Object} p_oButton Object literal specifying a set of 
-        * <a href="YAHOO.widget.Button.html">YAHOO.widget.Button</a> 
-        * configuration attributes used to configure the button to be added to 
-        * the button group.
-        * @return {<a href="YAHOO.widget.Button.html">YAHOO.widget.Button</a>} 
-        */
-        addButton: function (p_oButton) {
-        
-            var oButton,
-                oButtonElement,
-                oGroupElement,
-                nIndex,
-                sButtonName,
-                sGroupName;
-        
-        
-            if (p_oButton instanceof Button && 
-                p_oButton.get("type") == "radio") {
-        
-                oButton = p_oButton;
-        
-            }
-            else if (!Lang.isString(p_oButton) && !p_oButton.nodeName) {
-        
-                p_oButton.type = "radio";
-        
-                oButton = new Button(p_oButton);
-
-            }
-            else {
-        
-                oButton = new Button(p_oButton, { type: "radio" });
-        
-            }
-        
-        
-            if (oButton) {
-        
-                nIndex = this._buttons.length;
-                sButtonName = oButton.get("name");
-                sGroupName = this.get("name");
-        
-                oButton.index = nIndex;
-        
-                this._buttons[nIndex] = oButton;
-                m_oButtons[oButton.get("id")] = oButton;
-        
-        
-                if (sButtonName != sGroupName) {
-        
-                    oButton.set("name", sGroupName);
-                
-                }
-        
-        
-                if (this.get("disabled")) {
-        
-                    oButton.set("disabled", true);
-        
-                }
-        
-        
-                if (oButton.get("checked")) {
-        
-                    this.set("checkedButton", oButton);
-        
-                }
-
-                
-                oButtonElement = oButton.get("element");
-                oGroupElement = this.get("element");
-                
-                if (oButtonElement.parentNode != oGroupElement) {
-                
-                    oGroupElement.appendChild(oButtonElement);
-                
-                }
-        
-                
-                oButton.on("checkedChange", 
-                    this._onButtonCheckedChange, oButton, this);
-        
-                this.logger.log("Button " + oButton.get("id") + " added.");
-        
-            }
-
-			return oButton;
-        
-        },
-        
-        
-        /**
-        * @method addButtons
-        * @description Adds the array of buttons to the button group.
-        * @param {Array} p_aButtons Array of <a href="YAHOO.widget.Button.html">
-        * YAHOO.widget.Button</a> instances to be added 
-        * to the button group.
-        * @param {Array} p_aButtons Array of strings specifying the id 
-        * attribute of the <code>&#60;input&#62;</code> or <code>&#60;span&#62;
-        * </code> elements to be used to create the buttons to be added to the 
-        * button group.
-        * @param {Array} p_aButtons Array of object references for the 
-        * <code>&#60;input&#62;</code> or <code>&#60;span&#62;</code> elements 
-        * to be used to create the buttons to be added to the button group.
-        * @param {Array} p_aButtons Array of object literals, each containing
-        * a set of <a href="YAHOO.widget.Button.html">YAHOO.widget.Button</a>  
-        * configuration attributes used to configure each button to be added 
-        * to the button group.
-        * @return {Array}
-        */
-        addButtons: function (p_aButtons) {
-    
-            var nButtons,
-                oButton,
-                aButtons,
-                i;
-        
-            if (Lang.isArray(p_aButtons)) {
-            
-                nButtons = p_aButtons.length;
-                aButtons = [];
-        
-                if (nButtons > 0) {
-        
-                    for (i = 0; i < nButtons; i++) {
-        
-                        oButton = this.addButton(p_aButtons[i]);
-                        
-                        if (oButton) {
-        
-                            aButtons[aButtons.length] = oButton;
-        
-                        }
-                    
-                    }
-                
-                }
-        
-            }
-
-			return aButtons;
-        
-        },
-        
-        
-        /**
-        * @method removeButton
-        * @description Removes the button at the specified index from the 
-        * button group.
-        * @param {Number} p_nIndex Number specifying the index of the button 
-        * to be removed from the button group.
-        */
-        removeButton: function (p_nIndex) {
-        
-            var oButton = this.getButton(p_nIndex),
-                nButtons,
-                i;
-            
-            if (oButton) {
-        
-                this.logger.log("Removing button " + oButton.get("id") + ".");
-        
-                this._buttons.splice(p_nIndex, 1);
-                delete m_oButtons[oButton.get("id")];
-        
-                oButton.removeListener("checkedChange", 
-                    this._onButtonCheckedChange);
-
-                oButton.destroy();
-        
-        
-                nButtons = this._buttons.length;
-                
-                if (nButtons > 0) {
-        
-                    i = this._buttons.length - 1;
-                    
-                    do {
-        
-                        this._buttons[i].index = i;
-        
-                    }
-                    while (i--);
-                
-                }
-        
-                this.logger.log("Button " + oButton.get("id") + " removed.");
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method getButton
-        * @description Returns the button at the specified index.
-        * @param {Number} p_nIndex The index of the button to retrieve from the 
-        * button group.
-        * @return {<a href="YAHOO.widget.Button.html">YAHOO.widget.Button</a>}
-        */
-        getButton: function (p_nIndex) {
-        
-            return this._buttons[p_nIndex];
-        
-        },
-        
-        
-        /**
-        * @method getButtons
-        * @description Returns an array of the buttons in the button group.
-        * @return {Array}
-        */
-        getButtons: function () {
-        
-            return this._buttons;
-        
-        },
-        
-        
-        /**
-        * @method getCount
-        * @description Returns the number of buttons in the button group.
-        * @return {Number}
-        */
-        getCount: function () {
-        
-            return this._buttons.length;
-        
-        },
-        
-        
-        /**
-        * @method focus
-        * @description Sets focus to the button at the specified index.
-        * @param {Number} p_nIndex Number indicating the index of the button 
-        * to focus. 
-        */
-        focus: function (p_nIndex) {
-        
-            var oButton,
-                nButtons,
-                i;
-        
-            if (Lang.isNumber(p_nIndex)) {
-        
-                oButton = this._buttons[p_nIndex];
-                
-                if (oButton) {
-        
-                    oButton.focus();
-        
-                }
-            
-            }
-            else {
-        
-                nButtons = this.getCount();
-        
-                for (i = 0; i < nButtons; i++) {
-        
-                    oButton = this._buttons[i];
-        
-                    if (!oButton.get("disabled")) {
-        
-                        oButton.focus();
-                        break;
-        
-                    }
-        
-                }
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method check
-        * @description Checks the button at the specified index.
-        * @param {Number} p_nIndex Number indicating the index of the button 
-        * to check. 
-        */
-        check: function (p_nIndex) {
-        
-            var oButton = this.getButton(p_nIndex);
-            
-            if (oButton) {
-        
-                oButton.set("checked", true);
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method destroy
-        * @description Removes the button group's element from its parent 
-        * element and removes all event handlers.
-        */
-        destroy: function () {
-        
-            this.logger.log("Destroying...");
-        
-            var nButtons = this._buttons.length,
-                oElement = this.get("element"),
-                oParentNode = oElement.parentNode,
-                i;
-            
-            if (nButtons > 0) {
-        
-                i = this._buttons.length - 1;
-        
-                do {
-        
-                    this._buttons[i].destroy();
-        
-                }
-                while (i--);
-            
-            }
-        
-            this.logger.log("Removing DOM event handlers.");
-        
-            Event.purgeElement(oElement);
-            
-            this.logger.log("Removing from document.");
-        
-            oParentNode.removeChild(oElement);
-        
-        },
-        
-        
-        /**
-        * @method toString
-        * @description Returns a string representing the button group.
-        * @return {String}
-        */
-        toString: function () {
-        
-            return ("ButtonGroup " + this.get("id"));
-        
-        }
-    
-    });
-
-})();
-YAHOO.register("button", YAHOO.widget.Button, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/button/button-min.js b/eclipse.org-common/yui/2.6.0/build/button/button-min.js
deleted file mode 100644
index 84fb3fb..0000000
--- a/eclipse.org-common/yui/2.6.0/build/button/button-min.js
+++ /dev/null
@@ -1,11 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){var G=YAHOO.util.Dom,M=YAHOO.util.Event,I=YAHOO.lang,L=YAHOO.env.ua,B=YAHOO.widget.Overlay,J=YAHOO.widget.Menu,D={},K=null,E=null,C=null;function F(O,N,R,P){var S,Q;if(I.isString(O)&&I.isString(N)){if(L.ie){Q='<input type="'+O+'" name="'+N+'"';if(P){Q+=" checked";}Q+=">";S=document.createElement(Q);}else{S=document.createElement("input");S.name=N;S.type=O;if(P){S.checked=true;}}S.value=R;}return S;}function H(O,U){var N=O.nodeName.toUpperCase(),S=this,T,P,Q;function V(W){if(!(W in U)){T=O.getAttributeNode(W);if(T&&("value" in T)){U[W]=T.value;}}}function R(){V("type");if(U.type=="button"){U.type="push";}if(!("disabled" in U)){U.disabled=O.disabled;}V("name");V("value");V("title");}switch(N){case"A":U.type="link";V("href");V("target");break;case"INPUT":R();if(!("checked" in U)){U.checked=O.checked;}break;case"BUTTON":R();P=O.parentNode.parentNode;if(G.hasClass(P,this.CSS_CLASS_NAME+"-checked")){U.checked=true;}if(G.hasClass(P,this.CSS_CLASS_NAME+"-disabled")){U.disabled=true;}O.removeAttribute("value");O.setAttribute("type","button");break;}O.removeAttribute("id");O.removeAttribute("name");if(!("tabindex" in U)){U.tabindex=O.tabIndex;}if(!("label" in U)){Q=N=="INPUT"?O.value:O.innerHTML;if(Q&&Q.length>0){U.label=Q;}}}function A(P){var O=P.attributes,N=O.srcelement,R=N.nodeName.toUpperCase(),Q=this;if(R==this.NODE_NAME){P.element=N;P.id=N.id;G.getElementsBy(function(S){switch(S.nodeName.toUpperCase()){case"BUTTON":case"A":case"INPUT":H.call(Q,S,O);break;}},"*",N);}else{switch(R){case"BUTTON":case"A":case"INPUT":H.call(this,N,O);break;}}}YAHOO.widget.Button=function(R,O){if(!B&&YAHOO.widget.Overlay){B=YAHOO.widget.Overlay;}if(!J&&YAHOO.widget.Menu){J=YAHOO.widget.Menu;}var Q=YAHOO.widget.Button.superclass.constructor,P,N;if(arguments.length==1&&!I.isString(R)&&!R.nodeName){if(!R.id){R.id=G.generateId();}Q.call(this,(this.createButtonElement(R.type)),R);}else{P={element:null,attributes:(O||{})};if(I.isString(R)){N=G.get(R);if(N){if(!P.attributes.id){P.attributes.id=R;}P.attributes.srcelement=N;A.call(this,P);if(!P.element){P.element=this.createButtonElement(P.attributes.type);}Q.call(this,P.element,P.attributes);}}else{if(R.nodeName){if(!P.attributes.id){if(R.id){P.attributes.id=R.id;}else{P.attributes.id=G.generateId();}}P.attributes.srcelement=R;A.call(this,P);if(!P.element){P.element=this.createButtonElement(P.attributes.type);}Q.call(this,P.element,P.attributes);}}}};YAHOO.extend(YAHOO.widget.Button,YAHOO.util.Element,{_button:null,_menu:null,_hiddenFields:null,_onclickAttributeValue:null,_activationKeyPressed:false,_activationButtonPressed:false,_hasKeyEventHandlers:false,_hasMouseEventHandlers:false,_nOptionRegionX:0,NODE_NAME:"SPAN",CHECK_ACTIVATION_KEYS:[32],ACTIVATION_KEYS:[13,32],OPTION_AREA_WIDTH:20,CSS_CLASS_NAME:"yui-button",RADIO_DEFAULT_TITLE:"Unchecked.  Click to check.",RADIO_CHECKED_TITLE:"Checked.  Click another button to uncheck",CHECKBOX_DEFAULT_TITLE:"Unchecked.  Click to check.",CHECKBOX_CHECKED_TITLE:"Checked.  Click to uncheck.",MENUBUTTON_DEFAULT_TITLE:"Menu collapsed.  Click to expand.",MENUBUTTON_MENU_VISIBLE_TITLE:"Menu expanded.  Click or press Esc to collapse.",SPLITBUTTON_DEFAULT_TITLE:("Menu collapsed.  Click inside option "+"region or press down arrow key to show the menu."),SPLITBUTTON_OPTION_VISIBLE_TITLE:"Menu expanded.  Press Esc to hide the menu.",SUBMIT_TITLE:"Click to submit form.",_setType:function(N){if(N=="split"){this.on("option",this._onOption);}},_setLabel:function(O){this._button.innerHTML=O;var P,N=L.gecko;if(N&&N<1.9&&G.inDocument(this.get("element"))){P=this.CSS_CLASS_NAME;this.removeClass(P);I.later(0,this,this.addClass,P);}},_setTabIndex:function(N){this._button.tabIndex=N;},_setTitle:function(O){var N=O;if(this.get("type")!="link"){if(!N){switch(this.get("type")){case"radio":N=this.RADIO_DEFAULT_TITLE;break;case"checkbox":N=this.CHECKBOX_DEFAULT_TITLE;break;case"menu":N=this.MENUBUTTON_DEFAULT_TITLE;break;case"split":N=this.SPLITBUTTON_DEFAULT_TITLE;break;case"submit":N=this.SUBMIT_TITLE;break;}}this._button.title=N;}},_setDisabled:function(N){if(this.get("type")!="link"){if(N){if(this._menu){this._menu.hide();}if(this.hasFocus()){this.blur();}this._button.setAttribute("disabled","disabled");this.addStateCSSClasses("disabled");this.removeStateCSSClasses("hover");this.removeStateCSSClasses("active");this.removeStateCSSClasses("focus");}else{this._button.removeAttribute("disabled");this.removeStateCSSClasses("disabled");}}},_setHref:function(N){if(this.get("type")=="link"){this._button.href=N;}},_setTarget:function(N){if(this.get("type")=="link"){this._button.setAttribute("target",N);}},_setChecked:function(O){var P=this.get("type"),N;if(P=="checkbox"||P=="radio"){if(O){this.addStateCSSClasses("checked");N=(P=="radio")?this.RADIO_CHECKED_TITLE:this.CHECKBOX_CHECKED_TITLE;}else{this.removeStateCSSClasses("checked");N=(P=="radio")?this.RADIO_DEFAULT_TITLE:this.CHECKBOX_DEFAULT_TITLE;}if(!this._hasDefaultTitle){this.set("title",N);}}},_setMenu:function(Y){var R=this.get("lazyloadmenu"),U=this.get("element"),N,a=false,b,Q,T,P,O,X,S;function Z(){b.render(U.parentNode);this.removeListener("appendTo",Z);}function W(){b.cfg.queueProperty("container",U.parentNode);this.removeListener("appendTo",W);}function V(){var c;if(b){G.addClass(b.element,this.get("menuclassname"));G.addClass(b.element,"yui-"+this.get("type")+"-button-menu");b.showEvent.subscribe(this._onMenuShow,null,this);b.hideEvent.subscribe(this._onMenuHide,null,this);b.renderEvent.subscribe(this._onMenuRender,null,this);if(J&&b instanceof J){if(R){c=this.get("container");if(c){b.cfg.queueProperty("container",c);}else{this.on("appendTo",W);}}b.cfg.queueProperty("clicktohide",false);b.keyDownEvent.subscribe(this._onMenuKeyDown,this,true);b.subscribe("click",this._onMenuClick,this,true);b.itemAddedEvent.subscribe(this._onMenuItemAdded,this,true);T=b.srcElement;if(T&&T.nodeName.toUpperCase()=="SELECT"){T.style.display="none";T.parentNode.removeChild(T);}}else{if(B&&b instanceof B){if(!K){K=new YAHOO.widget.OverlayManager();
-}K.register(b);}}this._menu=b;if(!a&&!R){if(G.inDocument(U)){b.render(U.parentNode);}else{this.on("appendTo",Z);}}}}if(B){if(J){N=J.prototype.CSS_CLASS_NAME;}if(Y&&J&&(Y instanceof J)){b=Y;P=b.getItems();O=P.length;a=true;if(O>0){S=O-1;do{X=P[S];if(X){X.cfg.subscribeToConfigEvent("selected",this._onMenuItemSelected,X,this);}}while(S--);}V.call(this);}else{if(B&&Y&&(Y instanceof B)){b=Y;a=true;b.cfg.queueProperty("visible",false);V.call(this);}else{if(J&&I.isArray(Y)){b=new J(G.generateId(),{lazyload:R,itemdata:Y});this._menu=b;this.on("appendTo",V);}else{if(I.isString(Y)){Q=G.get(Y);if(Q){if(J&&G.hasClass(Q,N)||Q.nodeName.toUpperCase()=="SELECT"){b=new J(Y,{lazyload:R});V.call(this);}else{if(B){b=new B(Y,{visible:false});V.call(this);}}}}else{if(Y&&Y.nodeName){if(J&&G.hasClass(Y,N)||Y.nodeName.toUpperCase()=="SELECT"){b=new J(Y,{lazyload:R});V.call(this);}else{if(B){if(!Y.id){G.generateId(Y);}b=new B(Y,{visible:false});V.call(this);}}}}}}}}},_setOnClick:function(N){if(this._onclickAttributeValue&&(this._onclickAttributeValue!=N)){this.removeListener("click",this._onclickAttributeValue.fn);this._onclickAttributeValue=null;}if(!this._onclickAttributeValue&&I.isObject(N)&&I.isFunction(N.fn)){this.on("click",N.fn,N.obj,N.scope);this._onclickAttributeValue=N;}},_setSelectedMenuItem:function(O){var N=this._menu,P;if(J&&N&&N instanceof J){P=N.getItem(O);if(P&&!P.cfg.getProperty("selected")){P.cfg.setProperty("selected",true);}}},_isActivationKey:function(N){var S=this.get("type"),O=(S=="checkbox"||S=="radio")?this.CHECK_ACTIVATION_KEYS:this.ACTIVATION_KEYS,Q=O.length,R=false,P;if(Q>0){P=Q-1;do{if(N==O[P]){R=true;break;}}while(P--);}return R;},_isSplitButtonOptionKey:function(P){var O=(M.getCharCode(P)==40);var N=function(Q){M.preventDefault(Q);this.removeListener("keypress",N);};if(O){if(L.opera){this.on("keypress",N);}M.preventDefault(P);}return O;},_addListenersToForm:function(){var T=this.getForm(),S=YAHOO.widget.Button.onFormKeyPress,R,N,Q,P,O;if(T){M.on(T,"reset",this._onFormReset,null,this);M.on(T,"submit",this._onFormSubmit,null,this);N=this.get("srcelement");if(this.get("type")=="submit"||(N&&N.type=="submit")){Q=M.getListeners(T,"keypress");R=false;if(Q){P=Q.length;if(P>0){O=P-1;do{if(Q[O].fn==S){R=true;break;}}while(O--);}}if(!R){M.on(T,"keypress",S);}}}},_showMenu:function(R){if(YAHOO.widget.MenuManager){YAHOO.widget.MenuManager.hideVisible();}if(K){K.hideAll();}var N=this._menu,Q=this.get("menualignment"),P=this.get("focusmenu"),O;if(this._renderedMenu){N.cfg.setProperty("context",[this.get("element"),Q[0],Q[1]]);N.cfg.setProperty("preventcontextoverlap",true);N.cfg.setProperty("constraintoviewport",true);}else{N.cfg.queueProperty("context",[this.get("element"),Q[0],Q[1]]);N.cfg.queueProperty("preventcontextoverlap",true);N.cfg.queueProperty("constraintoviewport",true);}this.focus();if(J&&N&&(N instanceof J)){O=N.focus;N.focus=function(){};if(this._renderedMenu){N.cfg.setProperty("minscrollheight",this.get("menuminscrollheight"));N.cfg.setProperty("maxheight",this.get("menumaxheight"));}else{N.cfg.queueProperty("minscrollheight",this.get("menuminscrollheight"));N.cfg.queueProperty("maxheight",this.get("menumaxheight"));}N.show();N.focus=O;N.align();if(R.type=="mousedown"){M.stopPropagation(R);}if(P){N.focus();}}else{if(B&&N&&(N instanceof B)){if(!this._renderedMenu){N.render(this.get("element").parentNode);}N.show();N.align();}}},_hideMenu:function(){var N=this._menu;if(N){N.hide();}},_onMouseOver:function(O){var Q=this.get("type"),N,P;if(Q==="split"){N=this.get("element");P=(G.getX(N)+(N.offsetWidth-this.OPTION_AREA_WIDTH));this._nOptionRegionX=P;}if(!this._hasMouseEventHandlers){if(Q==="split"){this.on("mousemove",this._onMouseMove);}this.on("mouseout",this._onMouseOut);this._hasMouseEventHandlers=true;}this.addStateCSSClasses("hover");if(Q==="split"&&(M.getPageX(O)>P)){this.addStateCSSClasses("hoveroption");}if(this._activationButtonPressed){this.addStateCSSClasses("active");}if(this._bOptionPressed){this.addStateCSSClasses("activeoption");}if(this._activationButtonPressed||this._bOptionPressed){M.removeListener(document,"mouseup",this._onDocumentMouseUp);}},_onMouseMove:function(N){var O=this._nOptionRegionX;if(O){if(M.getPageX(N)>O){this.addStateCSSClasses("hoveroption");}else{this.removeStateCSSClasses("hoveroption");}}},_onMouseOut:function(N){var O=this.get("type");this.removeStateCSSClasses("hover");if(O!="menu"){this.removeStateCSSClasses("active");}if(this._activationButtonPressed||this._bOptionPressed){M.on(document,"mouseup",this._onDocumentMouseUp,null,this);}if(O==="split"&&(M.getPageX(N)>this._nOptionRegionX)){this.removeStateCSSClasses("hoveroption");}},_onDocumentMouseUp:function(P){this._activationButtonPressed=false;this._bOptionPressed=false;var Q=this.get("type"),N,O;if(Q=="menu"||Q=="split"){N=M.getTarget(P);O=this._menu.element;if(N!=O&&!G.isAncestor(O,N)){this.removeStateCSSClasses((Q=="menu"?"active":"activeoption"));this._hideMenu();}}M.removeListener(document,"mouseup",this._onDocumentMouseUp);},_onMouseDown:function(P){var Q,O=true;function N(){this._hideMenu();this.removeListener("mouseup",N);}if((P.which||P.button)==1){if(!this.hasFocus()){this.focus();}Q=this.get("type");if(Q=="split"){if(M.getPageX(P)>this._nOptionRegionX){this.fireEvent("option",P);O=false;}else{this.addStateCSSClasses("active");this._activationButtonPressed=true;}}else{if(Q=="menu"){if(this.isActive()){this._hideMenu();this._activationButtonPressed=false;}else{this._showMenu(P);this._activationButtonPressed=true;}}else{this.addStateCSSClasses("active");this._activationButtonPressed=true;}}if(Q=="split"||Q=="menu"){this._hideMenuTimer=I.later(250,this,this.on,["mouseup",N]);}}return O;},_onMouseUp:function(P){var Q=this.get("type"),N=this._hideMenuTimer,O=true;if(N){N.cancel();}if(Q=="checkbox"||Q=="radio"){this.set("checked",!(this.get("checked")));}this._activationButtonPressed=false;if(Q!="menu"){this.removeStateCSSClasses("active");}if(Q=="split"&&M.getPageX(P)>this._nOptionRegionX){O=false;
-}return O;},_onFocus:function(O){var N;this.addStateCSSClasses("focus");if(this._activationKeyPressed){this.addStateCSSClasses("active");}C=this;if(!this._hasKeyEventHandlers){N=this._button;M.on(N,"blur",this._onBlur,null,this);M.on(N,"keydown",this._onKeyDown,null,this);M.on(N,"keyup",this._onKeyUp,null,this);this._hasKeyEventHandlers=true;}this.fireEvent("focus",O);},_onBlur:function(N){this.removeStateCSSClasses("focus");if(this.get("type")!="menu"){this.removeStateCSSClasses("active");}if(this._activationKeyPressed){M.on(document,"keyup",this._onDocumentKeyUp,null,this);}C=null;this.fireEvent("blur",N);},_onDocumentKeyUp:function(N){if(this._isActivationKey(M.getCharCode(N))){this._activationKeyPressed=false;M.removeListener(document,"keyup",this._onDocumentKeyUp);}},_onKeyDown:function(O){var N=this._menu;if(this.get("type")=="split"&&this._isSplitButtonOptionKey(O)){this.fireEvent("option",O);}else{if(this._isActivationKey(M.getCharCode(O))){if(this.get("type")=="menu"){this._showMenu(O);}else{this._activationKeyPressed=true;this.addStateCSSClasses("active");}}}if(N&&N.cfg.getProperty("visible")&&M.getCharCode(O)==27){N.hide();this.focus();}},_onKeyUp:function(N){var O;if(this._isActivationKey(M.getCharCode(N))){O=this.get("type");if(O=="checkbox"||O=="radio"){this.set("checked",!(this.get("checked")));}this._activationKeyPressed=false;if(this.get("type")!="menu"){this.removeStateCSSClasses("active");}}},_onClick:function(Q){var S=this.get("type"),N,R,O,P;switch(S){case"radio":case"checkbox":if(!this._hasDefaultTitle){if(this.get("checked")){N=(S=="radio")?this.RADIO_CHECKED_TITLE:this.CHECKBOX_CHECKED_TITLE;}else{N=(S=="radio")?this.RADIO_DEFAULT_TITLE:this.CHECKBOX_DEFAULT_TITLE;}this.set("title",N);}break;case"submit":if(Q.returnValue!==false){this.submitForm();}break;case"reset":R=this.getForm();if(R){R.reset();}break;case"menu":N=this._menu.cfg.getProperty("visible")?this.MENUBUTTON_MENU_VISIBLE_TITLE:this.MENUBUTTON_DEFAULT_TITLE;this.set("title",N);break;case"split":if(M.getPageX(Q)>this._nOptionRegionX){P=false;}else{this._hideMenu();O=this.get("srcelement");if(O&&O.type=="submit"){this.submitForm();}}N=this._menu.cfg.getProperty("visible")?this.SPLITBUTTON_OPTION_VISIBLE_TITLE:this.SPLITBUTTON_DEFAULT_TITLE;this.set("title",N);break;}return P;},_onDblClick:function(O){var N=true;if(this.get("type")=="split"&&M.getPageX(O)>this._nOptionRegionX){N=false;}return N;},_onAppendTo:function(N){I.later(0,this,this._addListenersToForm);},_onFormReset:function(O){var P=this.get("type"),N=this._menu;if(P=="checkbox"||P=="radio"){this.resetValue("checked");}if(J&&N&&(N instanceof J)){this.resetValue("selectedMenuItem");}},_onFormSubmit:function(N){this.createHiddenFields();},_onDocumentMouseDown:function(Q){var N=M.getTarget(Q),P=this.get("element"),O=this._menu.element;if(N!=P&&!G.isAncestor(P,N)&&N!=O&&!G.isAncestor(O,N)){this._hideMenu();M.removeListener(document,"mousedown",this._onDocumentMouseDown);}},_onOption:function(N){if(this.hasClass("yui-split-button-activeoption")){this._hideMenu();this._bOptionPressed=false;}else{this._showMenu(N);this._bOptionPressed=true;}},_onMenuShow:function(O){M.on(document,"mousedown",this._onDocumentMouseDown,null,this);var N,P;if(this.get("type")=="split"){N=this.SPLITBUTTON_OPTION_VISIBLE_TITLE;P="activeoption";}else{N=this.MENUBUTTON_MENU_VISIBLE_TITLE;P="active";}this.addStateCSSClasses(P);this.set("title",N);},_onMenuHide:function(P){var O=this._menu,N,Q;if(this.get("type")=="split"){N=this.SPLITBUTTON_DEFAULT_TITLE;Q="activeoption";}else{N=this.MENUBUTTON_DEFAULT_TITLE;Q="active";}this.removeStateCSSClasses(Q);this.set("title",N);if(this.get("type")=="split"){this._bOptionPressed=false;}},_onMenuKeyDown:function(P,O){var N=O[0];if(M.getCharCode(N)==27){this.focus();if(this.get("type")=="split"){this._bOptionPressed=false;}}},_onMenuRender:function(O){var Q=this.get("element"),N=Q.parentNode,P=this._menu.element;if(N!=P.parentNode){N.appendChild(P);}this._renderedMenu=true;this.set("selectedMenuItem",this.get("selectedMenuItem"));},_onMenuItemSelected:function(P,O,N){var Q=O[0];if(Q){this.set("selectedMenuItem",N);}},_onMenuItemAdded:function(P,O,N){var Q=O[0];Q.cfg.subscribeToConfigEvent("selected",this._onMenuItemSelected,Q,this);},_onMenuClick:function(O,N){var Q=N[1],P;if(Q){this.set("selectedMenuItem",Q);P=this.get("srcelement");if(P&&P.type=="submit"){this.submitForm();}this._hideMenu();}},createButtonElement:function(N){var P=this.NODE_NAME,O=document.createElement(P);O.innerHTML="<"+P+' class="first-child">'+(N=="link"?"<a></a>":'<button type="button"></button>')+"</"+P+">";return O;},addStateCSSClasses:function(N){var O=this.get("type");if(I.isString(N)){if(N!="activeoption"&&N!="hoveroption"){this.addClass(this.CSS_CLASS_NAME+("-"+N));}this.addClass("yui-"+O+("-button-"+N));}},removeStateCSSClasses:function(N){var O=this.get("type");if(I.isString(N)){this.removeClass(this.CSS_CLASS_NAME+("-"+N));this.removeClass("yui-"+O+("-button-"+N));}},createHiddenFields:function(){this.removeHiddenFields();var V=this.getForm(),Z,O,S,X,Y,T,U,N,R,W,P,Q=false;if(V&&!this.get("disabled")){O=this.get("type");S=(O=="checkbox"||O=="radio");if((S&&this.get("checked"))||(E==this)){Z=F((S?O:"hidden"),this.get("name"),this.get("value"),this.get("checked"));if(Z){if(S){Z.style.display="none";}V.appendChild(Z);}}X=this._menu;if(J&&X&&(X instanceof J)){Y=this.get("selectedMenuItem");P=X.srcElement;Q=(P&&P.nodeName.toUpperCase()=="SELECT");if(Y){U=(Y.value===null||Y.value==="")?Y.cfg.getProperty("text"):Y.value;T=this.get("name");if(Q){W=P.name;}else{if(T){W=(T+"_options");}}if(U&&W){N=F("hidden",W,U);V.appendChild(N);}}else{if(Q){V.appendChild(P);}}}if(Z&&N){this._hiddenFields=[Z,N];}else{if(!Z&&N){this._hiddenFields=N;}else{if(Z&&!N){this._hiddenFields=Z;}}}R=this._hiddenFields;}return R;},removeHiddenFields:function(){var Q=this._hiddenFields,O,P;function N(R){if(G.inDocument(R)){R.parentNode.removeChild(R);}}if(Q){if(I.isArray(Q)){O=Q.length;if(O>0){P=O-1;
-do{N(Q[P]);}while(P--);}}else{N(Q);}this._hiddenFields=null;}},submitForm:function(){var Q=this.getForm(),P=this.get("srcelement"),O=false,N;if(Q){if(this.get("type")=="submit"||(P&&P.type=="submit")){E=this;}if(L.ie){O=Q.fireEvent("onsubmit");}else{N=document.createEvent("HTMLEvents");N.initEvent("submit",true,true);O=Q.dispatchEvent(N);}if((L.ie||L.webkit)&&O){Q.submit();}}return O;},init:function(O,Z){var Q=Z.type=="link"?"a":"button",V=Z.srcelement,Y=O.getElementsByTagName(Q)[0],X;if(!Y){X=O.getElementsByTagName("input")[0];if(X){Y=document.createElement("button");Y.setAttribute("type","button");X.parentNode.replaceChild(Y,X);}}this._button=Y;this._hasDefaultTitle=(Z.title&&Z.title.length>0);YAHOO.widget.Button.superclass.init.call(this,O,Z);var T=this.get("id"),N=T+"-button";Y.id=N;var U,W;var c=function(d){return(d.htmlFor===T);};var S=function(){W.setAttribute((L.ie?"htmlFor":"for"),N);};if(V&&this.get("type")!="link"){U=G.getElementsBy(c,"label");if(I.isArray(U)&&U.length>0){W=U[0];}}D[T]=this;this.addClass(this.CSS_CLASS_NAME);this.addClass("yui-"+this.get("type")+"-button");M.on(this._button,"focus",this._onFocus,null,this);this.on("mouseover",this._onMouseOver);this.on("mousedown",this._onMouseDown);this.on("mouseup",this._onMouseUp);this.on("click",this._onClick);this.on("dblclick",this._onDblClick);if(W){this.on("appendTo",S);}this.on("appendTo",this._onAppendTo);var b=this.get("container"),P=this.get("element"),a=G.inDocument(P),R;if(b){if(V&&V!=P){R=V.parentNode;if(R){R.removeChild(V);}}if(I.isString(b)){M.onContentReady(b,this.appendTo,b,this);}else{this.on("init",function(){I.later(0,this,this.appendTo,b);});}}else{if(!a&&V&&V!=P){R=V.parentNode;if(R){this.fireEvent("beforeAppendTo",{type:"beforeAppendTo",target:R});R.replaceChild(P,V);this.fireEvent("appendTo",{type:"appendTo",target:R});}}else{if(this.get("type")!="link"&&a&&V&&V==P){this._addListenersToForm();}}}this.fireEvent("init",{type:"init",target:this});},initAttributes:function(O){var N=O||{};YAHOO.widget.Button.superclass.initAttributes.call(this,N);this.setAttributeConfig("type",{value:(N.type||"push"),validator:I.isString,writeOnce:true,method:this._setType});this.setAttributeConfig("label",{value:N.label,validator:I.isString,method:this._setLabel});this.setAttributeConfig("value",{value:N.value});this.setAttributeConfig("name",{value:N.name,validator:I.isString});this.setAttributeConfig("tabindex",{value:N.tabindex,validator:I.isNumber,method:this._setTabIndex});this.configureAttribute("title",{value:N.title,validator:I.isString,method:this._setTitle});this.setAttributeConfig("disabled",{value:(N.disabled||false),validator:I.isBoolean,method:this._setDisabled});this.setAttributeConfig("href",{value:N.href,validator:I.isString,method:this._setHref});this.setAttributeConfig("target",{value:N.target,validator:I.isString,method:this._setTarget});this.setAttributeConfig("checked",{value:(N.checked||false),validator:I.isBoolean,method:this._setChecked});this.setAttributeConfig("container",{value:N.container,writeOnce:true});this.setAttributeConfig("srcelement",{value:N.srcelement,writeOnce:true});this.setAttributeConfig("menu",{value:null,method:this._setMenu,writeOnce:true});this.setAttributeConfig("lazyloadmenu",{value:(N.lazyloadmenu===false?false:true),validator:I.isBoolean,writeOnce:true});this.setAttributeConfig("menuclassname",{value:(N.menuclassname||"yui-button-menu"),validator:I.isString,method:this._setMenuClassName,writeOnce:true});this.setAttributeConfig("menuminscrollheight",{value:(N.menuminscrollheight||90),validator:I.isNumber});this.setAttributeConfig("menumaxheight",{value:(N.menumaxheight||0),validator:I.isNumber});this.setAttributeConfig("menualignment",{value:(N.menualignment||["tl","bl"]),validator:I.isArray});this.setAttributeConfig("selectedMenuItem",{value:null,method:this._setSelectedMenuItem});this.setAttributeConfig("onclick",{value:N.onclick,method:this._setOnClick});this.setAttributeConfig("focusmenu",{value:(N.focusmenu===false?false:true),validator:I.isBoolean});},focus:function(){if(!this.get("disabled")){this._button.focus();}},blur:function(){if(!this.get("disabled")){this._button.blur();}},hasFocus:function(){return(C==this);},isActive:function(){return this.hasClass(this.CSS_CLASS_NAME+"-active");},getMenu:function(){return this._menu;},getForm:function(){var N=this._button,O;if(N){O=N.form;}return O;},getHiddenFields:function(){return this._hiddenFields;},destroy:function(){var P=this.get("element"),O=P.parentNode,N=this._menu,R;if(N){if(K&&K.find(N)){K.remove(N);}N.destroy();}M.purgeElement(P);M.purgeElement(this._button);M.removeListener(document,"mouseup",this._onDocumentMouseUp);M.removeListener(document,"keyup",this._onDocumentKeyUp);M.removeListener(document,"mousedown",this._onDocumentMouseDown);var Q=this.getForm();if(Q){M.removeListener(Q,"reset",this._onFormReset);M.removeListener(Q,"submit",this._onFormSubmit);}this.unsubscribeAll();if(O){O.removeChild(P);}delete D[this.get("id")];R=G.getElementsByClassName(this.CSS_CLASS_NAME,this.NODE_NAME,Q);if(I.isArray(R)&&R.length===0){M.removeListener(Q,"keypress",YAHOO.widget.Button.onFormKeyPress);}},fireEvent:function(O,N){var P=arguments[0];if(this.DOM_EVENTS[P]&&this.get("disabled")){return false;}return YAHOO.widget.Button.superclass.fireEvent.apply(this,arguments);},toString:function(){return("Button "+this.get("id"));}});YAHOO.widget.Button.onFormKeyPress=function(R){var P=M.getTarget(R),S=M.getCharCode(R),Q=P.nodeName&&P.nodeName.toUpperCase(),N=P.type,T=false,V,X,O,W;function U(a){var Z,Y;switch(a.nodeName.toUpperCase()){case"INPUT":case"BUTTON":if(a.type=="submit"&&!a.disabled){if(!T&&!O){O=a;}}break;default:Z=a.id;if(Z){V=D[Z];if(V){T=true;if(!V.get("disabled")){Y=V.get("srcelement");if(!X&&(V.get("type")=="submit"||(Y&&Y.type=="submit"))){X=V;}}}}break;}}if(S==13&&((Q=="INPUT"&&(N=="text"||N=="password"||N=="checkbox"||N=="radio"||N=="file"))||Q=="SELECT")){G.getElementsBy(U,"*",this);if(O){O.focus();}else{if(!O&&X){M.preventDefault(R);
-if(L.ie){X.get("element").fireEvent("onclick");}else{W=document.createEvent("HTMLEvents");W.initEvent("click",true,true);if(L.gecko<1.9){X.fireEvent("click",W);}else{X.get("element").dispatchEvent(W);}}}}}};YAHOO.widget.Button.addHiddenFieldsToForm=function(N){var S=G.getElementsByClassName(YAHOO.widget.Button.prototype.CSS_CLASS_NAME,"*",N),Q=S.length,R,O,P;if(Q>0){for(P=0;P<Q;P++){O=S[P].id;if(O){R=D[O];if(R){R.createHiddenFields();}}}}};YAHOO.widget.Button.getButton=function(N){return D[N];};})();(function(){var C=YAHOO.util.Dom,B=YAHOO.util.Event,D=YAHOO.lang,A=YAHOO.widget.Button,E={};YAHOO.widget.ButtonGroup=function(J,H){var I=YAHOO.widget.ButtonGroup.superclass.constructor,K,G,F;if(arguments.length==1&&!D.isString(J)&&!J.nodeName){if(!J.id){F=C.generateId();J.id=F;}I.call(this,(this._createGroupElement()),J);}else{if(D.isString(J)){G=C.get(J);if(G){if(G.nodeName.toUpperCase()==this.NODE_NAME){I.call(this,G,H);}}}else{K=J.nodeName.toUpperCase();if(K&&K==this.NODE_NAME){if(!J.id){J.id=C.generateId();}I.call(this,J,H);}}}};YAHOO.extend(YAHOO.widget.ButtonGroup,YAHOO.util.Element,{_buttons:null,NODE_NAME:"DIV",CSS_CLASS_NAME:"yui-buttongroup",_createGroupElement:function(){var F=document.createElement(this.NODE_NAME);return F;},_setDisabled:function(G){var H=this.getCount(),F;if(H>0){F=H-1;do{this._buttons[F].set("disabled",G);}while(F--);}},_onKeyDown:function(K){var G=B.getTarget(K),I=B.getCharCode(K),H=G.parentNode.parentNode.id,J=E[H],F=-1;if(I==37||I==38){F=(J.index===0)?(this._buttons.length-1):(J.index-1);}else{if(I==39||I==40){F=(J.index===(this._buttons.length-1))?0:(J.index+1);}}if(F>-1){this.check(F);this.getButton(F).focus();}},_onAppendTo:function(H){var I=this._buttons,G=I.length,F;for(F=0;F<G;F++){I[F].appendTo(this.get("element"));}},_onButtonCheckedChange:function(G,F){var I=G.newValue,H=this.get("checkedButton");if(I&&H!=F){if(H){H.set("checked",false,true);}this.set("checkedButton",F);this.set("value",F.get("value"));}else{if(H&&!H.set("checked")){H.set("checked",true,true);}}},init:function(I,H){this._buttons=[];YAHOO.widget.ButtonGroup.superclass.init.call(this,I,H);this.addClass(this.CSS_CLASS_NAME);var J=this.getElementsByClassName("yui-radio-button");if(J.length>0){this.addButtons(J);}function F(K){return(K.type=="radio");}J=C.getElementsBy(F,"input",this.get("element"));if(J.length>0){this.addButtons(J);}this.on("keydown",this._onKeyDown);this.on("appendTo",this._onAppendTo);var G=this.get("container");if(G){if(D.isString(G)){B.onContentReady(G,function(){this.appendTo(G);},null,this);}else{this.appendTo(G);}}},initAttributes:function(G){var F=G||{};YAHOO.widget.ButtonGroup.superclass.initAttributes.call(this,F);this.setAttributeConfig("name",{value:F.name,validator:D.isString});this.setAttributeConfig("disabled",{value:(F.disabled||false),validator:D.isBoolean,method:this._setDisabled});this.setAttributeConfig("value",{value:F.value});this.setAttributeConfig("container",{value:F.container,writeOnce:true});this.setAttributeConfig("checkedButton",{value:null});},addButton:function(J){var L,K,G,F,H,I;if(J instanceof A&&J.get("type")=="radio"){L=J;}else{if(!D.isString(J)&&!J.nodeName){J.type="radio";L=new A(J);}else{L=new A(J,{type:"radio"});}}if(L){F=this._buttons.length;H=L.get("name");I=this.get("name");L.index=F;this._buttons[F]=L;E[L.get("id")]=L;if(H!=I){L.set("name",I);}if(this.get("disabled")){L.set("disabled",true);}if(L.get("checked")){this.set("checkedButton",L);}K=L.get("element");G=this.get("element");if(K.parentNode!=G){G.appendChild(K);}L.on("checkedChange",this._onButtonCheckedChange,L,this);}return L;},addButtons:function(G){var H,I,J,F;if(D.isArray(G)){H=G.length;J=[];if(H>0){for(F=0;F<H;F++){I=this.addButton(G[F]);if(I){J[J.length]=I;}}}}return J;},removeButton:function(H){var I=this.getButton(H),G,F;if(I){this._buttons.splice(H,1);delete E[I.get("id")];I.removeListener("checkedChange",this._onButtonCheckedChange);I.destroy();G=this._buttons.length;if(G>0){F=this._buttons.length-1;do{this._buttons[F].index=F;}while(F--);}}},getButton:function(F){return this._buttons[F];},getButtons:function(){return this._buttons;},getCount:function(){return this._buttons.length;},focus:function(H){var I,G,F;if(D.isNumber(H)){I=this._buttons[H];if(I){I.focus();}}else{G=this.getCount();for(F=0;F<G;F++){I=this._buttons[F];if(!I.get("disabled")){I.focus();break;}}}},check:function(F){var G=this.getButton(F);if(G){G.set("checked",true);}},destroy:function(){var I=this._buttons.length,H=this.get("element"),F=H.parentNode,G;if(I>0){G=this._buttons.length-1;do{this._buttons[G].destroy();}while(G--);}B.purgeElement(H);F.removeChild(H);},toString:function(){return("ButtonGroup "+this.get("id"));}});})();YAHOO.register("button",YAHOO.widget.Button,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/button/button.js b/eclipse.org-common/yui/2.6.0/build/button/button.js
deleted file mode 100644
index 544faa0..0000000
--- a/eclipse.org-common/yui/2.6.0/build/button/button.js
+++ /dev/null
@@ -1,4798 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
-* @module button
-* @description <p>The Button Control enables the creation of rich, graphical 
-* buttons that function like traditional HTML form buttons.  <em>Unlike</em> 
-* tradition HTML form buttons, buttons created with the Button Control can have 
-* a label that is different from its value.  With the inclusion of the optional 
-* <a href="module_menu.html">Menu Control</a>, the Button Control can also be
-* used to create menu buttons and split buttons, controls that are not 
-* available natively in HTML.  The Button Control can also be thought of as a 
-* way to create more visually engaging implementations of the browser's 
-* default radio-button and check-box controls.</p>
-* <p>The Button Control supports the following types:</p>
-* <dl>
-* <dt>push</dt>
-* <dd>Basic push button that can execute a user-specified command when 
-* pressed.</dd>
-* <dt>link</dt>
-* <dd>Navigates to a specified url when pressed.</dd>
-* <dt>submit</dt>
-* <dd>Submits the parent form when pressed.</dd>
-* <dt>reset</dt>
-* <dd>Resets the parent form when pressed.</dd>
-* <dt>checkbox</dt>
-* <dd>Maintains a "checked" state that can be toggled on and off.</dd>
-* <dt>radio</dt>
-* <dd>Maintains a "checked" state that can be toggled on and off.  Use with 
-* the ButtonGroup class to create a set of controls that are mutually 
-* exclusive; checking one button in the set will uncheck all others in 
-* the group.</dd>
-* <dt>menu</dt>
-* <dd>When pressed will show/hide a menu.</dd>
-* <dt>split</dt>
-* <dd>Can execute a user-specified command or display a menu when pressed.</dd>
-* </dl>
-* @title Button
-* @namespace YAHOO.widget
-* @requires yahoo, dom, element, event
-* @optional container, menu
-*/
-
-
-(function () {
-
-
-    /**
-    * The Button class creates a rich, graphical button.
-    * @param {String} p_oElement String specifying the id attribute of the 
-    * <code>&#60;input&#62;</code>, <code>&#60;button&#62;</code>,
-    * <code>&#60;a&#62;</code>, or <code>&#60;span&#62;</code> element to 
-    * be used to create the button.
-    * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-6043025">HTMLInputElement</a>|<a href="http://www.w3.org
-    * /TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-34812697">
-    * HTMLButtonElement</a>|<a href="
-    * http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#
-    * ID-33759296">HTMLElement</a>} p_oElement Object reference for the 
-    * <code>&#60;input&#62;</code>, <code>&#60;button&#62;</code>, 
-    * <code>&#60;a&#62;</code>, or <code>&#60;span&#62;</code> element to be 
-    * used to create the button.
-    * @param {Object} p_oElement Object literal specifying a set of   
-    * configuration attributes used to create the button.
-    * @param {Object} p_oAttributes Optional. Object literal specifying a set  
-    * of configuration attributes used to create the button.
-    * @namespace YAHOO.widget
-    * @class Button
-    * @constructor
-    * @extends YAHOO.util.Element
-    */
-
-
-
-    // Shorthard for utilities
-
-    var Dom = YAHOO.util.Dom,
-        Event = YAHOO.util.Event,
-        Lang = YAHOO.lang,
-        UA = YAHOO.env.ua,
-        Overlay = YAHOO.widget.Overlay,
-        Menu = YAHOO.widget.Menu,
-    
-    
-        // Private member variables
-    
-        m_oButtons = {},    // Collection of all Button instances
-        m_oOverlayManager = null,   // YAHOO.widget.OverlayManager instance
-        m_oSubmitTrigger = null,    // The button that submitted the form 
-        m_oFocusedButton = null;    // The button that has focus
-
-
-
-    // Private methods
-
-    
-    
-    /**
-    * @method createInputElement
-    * @description Creates an <code>&#60;input&#62;</code> element of the 
-    * specified type.
-    * @private
-    * @param {String} p_sType String specifying the type of 
-    * <code>&#60;input&#62;</code> element to create.
-    * @param {String} p_sName String specifying the name of 
-    * <code>&#60;input&#62;</code> element to create.
-    * @param {String} p_sValue String specifying the value of 
-    * <code>&#60;input&#62;</code> element to create.
-    * @param {String} p_bChecked Boolean specifying if the  
-    * <code>&#60;input&#62;</code> element is to be checked.
-    * @return {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-6043025">HTMLInputElement</a>}
-    */
-    function createInputElement(p_sType, p_sName, p_sValue, p_bChecked) {
-    
-        var oInput,
-            sInput;
-    
-        if (Lang.isString(p_sType) && Lang.isString(p_sName)) {
-        
-            if (UA.ie) {
-        
-                /*
-                    For IE it is necessary to create the element with the 
-                    "type," "name," "value," and "checked" properties set all 
-                    at once.
-                */
-            
-                sInput = "<input type=\"" + p_sType + "\" name=\"" + 
-                    p_sName + "\"";
-        
-                if (p_bChecked) {
-        
-                    sInput += " checked";
-                
-                }
-                
-                sInput += ">";
-        
-                oInput = document.createElement(sInput);
-        
-            }
-            else {
-            
-                oInput = document.createElement("input");
-                oInput.name = p_sName;
-                oInput.type = p_sType;
-        
-                if (p_bChecked) {
-        
-                    oInput.checked = true;
-                
-                }
-        
-            }
-        
-            oInput.value = p_sValue;
-        
-        }
-
-		return oInput;
-    
-    }
-    
-    
-    /**
-    * @method setAttributesFromSrcElement
-    * @description Gets the values for all the attributes of the source element 
-    * (either <code>&#60;input&#62;</code> or <code>&#60;a&#62;</code>) that 
-    * map to Button configuration attributes and sets them into a collection 
-    * that is passed to the Button constructor.
-    * @private
-    * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-6043025">HTMLInputElement</a>|<a href="http://www.w3.org/
-    * TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-
-    * 48250443">HTMLAnchorElement</a>} p_oElement Object reference to the HTML 
-    * element (either <code>&#60;input&#62;</code> or <code>&#60;span&#62;
-    * </code>) used to create the button.
-    * @param {Object} p_oAttributes Object reference for the collection of 
-    * configuration attributes used to create the button.
-    */
-    function setAttributesFromSrcElement(p_oElement, p_oAttributes) {
-    
-        var sSrcElementNodeName = p_oElement.nodeName.toUpperCase(),
-            me = this,
-            oAttribute,
-            oRootNode,
-            sText;
-            
-    
-        /**
-        * @method setAttributeFromDOMAttribute
-        * @description Gets the value of the specified DOM attribute and sets it 
-        * into the collection of configuration attributes used to configure 
-        * the button.
-        * @private
-        * @param {String} p_sAttribute String representing the name of the 
-        * attribute to retrieve from the DOM element.
-        */
-        function setAttributeFromDOMAttribute(p_sAttribute) {
-    
-            if (!(p_sAttribute in p_oAttributes)) {
-    
-                /*
-                    Need to use "getAttributeNode" instead of "getAttribute" 
-                    because using "getAttribute," IE will return the innerText 
-                    of a <code>&#60;button&#62;</code> for the value attribute  
-                    rather than the value of the "value" attribute.
-                */
-        
-                oAttribute = p_oElement.getAttributeNode(p_sAttribute);
-        
-    
-                if (oAttribute && ("value" in oAttribute)) {
-    
-    
-                    p_oAttributes[p_sAttribute] = oAttribute.value;
-    
-                }
-    
-            }
-        
-        }
-    
-    
-        /**
-        * @method setFormElementProperties
-        * @description Gets the value of the attributes from the form element  
-        * and sets them into the collection of configuration attributes used to 
-        * configure the button.
-        * @private
-        */
-        function setFormElementProperties() {
-    
-            setAttributeFromDOMAttribute("type");
-    
-            if (p_oAttributes.type == "button") {
-            
-                p_oAttributes.type = "push";
-            
-            }
-    
-            if (!("disabled" in p_oAttributes)) {
-    
-                p_oAttributes.disabled = p_oElement.disabled;
-    
-            }
-    
-            setAttributeFromDOMAttribute("name");
-            setAttributeFromDOMAttribute("value");
-            setAttributeFromDOMAttribute("title");
-    
-        }
-
-    
-        switch (sSrcElementNodeName) {
-        
-        case "A":
-            
-            p_oAttributes.type = "link";
-            
-            setAttributeFromDOMAttribute("href");
-            setAttributeFromDOMAttribute("target");
-        
-            break;
-    
-        case "INPUT":
-
-            setFormElementProperties();
-
-            if (!("checked" in p_oAttributes)) {
-    
-                p_oAttributes.checked = p_oElement.checked;
-    
-            }
-
-            break;
-
-        case "BUTTON":
-
-            setFormElementProperties();
-
-            oRootNode = p_oElement.parentNode.parentNode;
-
-            if (Dom.hasClass(oRootNode, this.CSS_CLASS_NAME + "-checked")) {
-            
-                p_oAttributes.checked = true;
-            
-            }
-
-            if (Dom.hasClass(oRootNode, this.CSS_CLASS_NAME + "-disabled")) {
-
-                p_oAttributes.disabled = true;
-            
-            }
-
-            p_oElement.removeAttribute("value");
-
-            p_oElement.setAttribute("type", "button");
-
-            break;
-        
-        }
-
-        p_oElement.removeAttribute("id");
-        p_oElement.removeAttribute("name");
-        
-        if (!("tabindex" in p_oAttributes)) {
-
-            p_oAttributes.tabindex = p_oElement.tabIndex;
-
-        }
-    
-        if (!("label" in p_oAttributes)) {
-    
-            // Set the "label" property
-        
-            sText = sSrcElementNodeName == "INPUT" ? 
-                            p_oElement.value : p_oElement.innerHTML;
-        
-    
-            if (sText && sText.length > 0) {
-                
-                p_oAttributes.label = sText;
-                
-            } 
-    
-        }
-    
-    }
-    
-    
-    /**
-    * @method initConfig
-    * @description Initializes the set of configuration attributes that are 
-    * used to instantiate the button.
-    * @private
-    * @param {Object} Object representing the button's set of 
-    * configuration attributes.
-    */
-    function initConfig(p_oConfig) {
-    
-        var oAttributes = p_oConfig.attributes,
-            oSrcElement = oAttributes.srcelement,
-            sSrcElementNodeName = oSrcElement.nodeName.toUpperCase(),
-            me = this;
-    
-    
-        if (sSrcElementNodeName == this.NODE_NAME) {
-    
-            p_oConfig.element = oSrcElement;
-            p_oConfig.id = oSrcElement.id;
-
-            Dom.getElementsBy(function (p_oElement) {
-            
-                switch (p_oElement.nodeName.toUpperCase()) {
-                
-                case "BUTTON":
-                case "A":
-                case "INPUT":
-
-                    setAttributesFromSrcElement.call(me, p_oElement, 
-                        oAttributes);
-
-                    break;                        
-                
-                }
-            
-            }, "*", oSrcElement);
-        
-        }
-        else {
-    
-            switch (sSrcElementNodeName) {
-
-            case "BUTTON":
-            case "A":
-            case "INPUT":
-
-                setAttributesFromSrcElement.call(this, oSrcElement, 
-                    oAttributes);
-
-                break;
-
-            }
-        
-        }
-    
-    }
-
-
-
-    //  Constructor
-
-    YAHOO.widget.Button = function (p_oElement, p_oAttributes) {
-    
-		if (!Overlay && YAHOO.widget.Overlay) {
-		
-			Overlay = YAHOO.widget.Overlay;
-		
-		}
-
-
-		if (!Menu && YAHOO.widget.Menu) {
-		
-			Menu = YAHOO.widget.Menu;
-		
-		}
-
-
-        var fnSuperClass = YAHOO.widget.Button.superclass.constructor,
-            oConfig,
-            oElement;
-    
-
-        if (arguments.length == 1 && !Lang.isString(p_oElement) && !p_oElement.nodeName) {
-    
-            if (!p_oElement.id) {
-    
-                p_oElement.id = Dom.generateId();
-    
-    
-            }
-    
-    
-            fnSuperClass.call(this, (this.createButtonElement(p_oElement.type)), p_oElement);
-    
-        }
-        else {
-    
-            oConfig = { element: null, attributes: (p_oAttributes || {}) };
-    
-    
-            if (Lang.isString(p_oElement)) {
-    
-                oElement = Dom.get(p_oElement);
-    
-                if (oElement) {
-
-                    if (!oConfig.attributes.id) {
-                    
-                        oConfig.attributes.id = p_oElement;
-                    
-                    }
-    
-                
-                
-                    oConfig.attributes.srcelement = oElement;
-                
-                    initConfig.call(this, oConfig);
-                
-                
-                    if (!oConfig.element) {
-                
-                
-                        oConfig.element = this.createButtonElement(oConfig.attributes.type);
-                
-                    }
-                
-                    fnSuperClass.call(this, oConfig.element, oConfig.attributes);
-    
-                }
-    
-            }
-            else if (p_oElement.nodeName) {
-    
-                if (!oConfig.attributes.id) {
-    
-                    if (p_oElement.id) {
-        
-                        oConfig.attributes.id = p_oElement.id;
-                    
-                    }
-                    else {
-        
-                        oConfig.attributes.id = Dom.generateId();
-        
-        
-                    }
-    
-                }
-    
-    
-    
-                oConfig.attributes.srcelement = p_oElement;
-        
-                initConfig.call(this, oConfig);
-        
-        
-                if (!oConfig.element) {
-    
-            
-                    oConfig.element = this.createButtonElement(oConfig.attributes.type);
-            
-                }
-            
-                fnSuperClass.call(this, oConfig.element, oConfig.attributes);
-            
-            }
-    
-        }
-    
-    };
-
-
-
-    YAHOO.extend(YAHOO.widget.Button, YAHOO.util.Element, {
-    
-    
-        // Protected properties
-        
-        
-        /** 
-        * @property _button
-        * @description Object reference to the button's internal 
-        * <code>&#60;a&#62;</code> or <code>&#60;button&#62;</code> element.
-        * @default null
-        * @protected
-        * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-48250443">HTMLAnchorElement</a>|<a href="
-        * http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html
-        * #ID-34812697">HTMLButtonElement</a>
-        */
-        _button: null,
-        
-        
-        /** 
-        * @property _menu
-        * @description Object reference to the button's menu.
-        * @default null
-        * @protected
-        * @type {<a href="YAHOO.widget.Overlay.html">YAHOO.widget.Overlay</a>|
-        * <a href="YAHOO.widget.Menu.html">YAHOO.widget.Menu</a>}
-        */
-        _menu: null,
-        
-        
-        /** 
-        * @property _hiddenFields
-        * @description Object reference to the <code>&#60;input&#62;</code>  
-        * element, or array of HTML form elements used to represent the button
-        *  when its parent form is submitted.
-        * @default null
-        * @protected
-        * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-6043025">HTMLInputElement</a>|Array
-        */
-        _hiddenFields: null,
-        
-        
-        /** 
-        * @property _onclickAttributeValue
-        * @description Object reference to the button's current value for the 
-        * "onclick" configuration attribute.
-        * @default null
-        * @protected
-        * @type Object
-        */
-        _onclickAttributeValue: null,
-        
-        
-        /** 
-        * @property _activationKeyPressed
-        * @description Boolean indicating if the key(s) that toggle the button's 
-        * "active" state have been pressed.
-        * @default false
-        * @protected
-        * @type Boolean
-        */
-        _activationKeyPressed: false,
-        
-        
-        /** 
-        * @property _activationButtonPressed
-        * @description Boolean indicating if the mouse button that toggles 
-        * the button's "active" state has been pressed.
-        * @default false
-        * @protected
-        * @type Boolean
-        */
-        _activationButtonPressed: false,
-        
-        
-        /** 
-        * @property _hasKeyEventHandlers
-        * @description Boolean indicating if the button's "blur", "keydown" and 
-        * "keyup" event handlers are assigned
-        * @default false
-        * @protected
-        * @type Boolean
-        */
-        _hasKeyEventHandlers: false,
-        
-        
-        /** 
-        * @property _hasMouseEventHandlers
-        * @description Boolean indicating if the button's "mouseout," 
-        * "mousedown," and "mouseup" event handlers are assigned
-        * @default false
-        * @protected
-        * @type Boolean
-        */
-        _hasMouseEventHandlers: false,
-
-
-        /** 
-        * @property _nOptionRegionX
-        * @description Number representing the X coordinate of the leftmost edge of the Button's 
-        * option region.  Applies only to Buttons of type "split".
-        * @default 0
-        * @protected
-        * @type Number
-        */        
-        _nOptionRegionX: 0,
-        
-
-
-        // Constants
-        
-        
-        /**
-        * @property NODE_NAME
-        * @description The name of the node to be used for the button's 
-        * root element.
-        * @default "SPAN"
-        * @final
-        * @type String
-        */
-        NODE_NAME: "SPAN",
-        
-        
-        /**
-        * @property CHECK_ACTIVATION_KEYS
-        * @description Array of numbers representing keys that (when pressed) 
-        * toggle the button's "checked" attribute.
-        * @default [32]
-        * @final
-        * @type Array
-        */
-        CHECK_ACTIVATION_KEYS: [32],
-        
-        
-        /**
-        * @property ACTIVATION_KEYS
-        * @description Array of numbers representing keys that (when presed) 
-        * toggle the button's "active" state.
-        * @default [13, 32]
-        * @final
-        * @type Array
-        */
-        ACTIVATION_KEYS: [13, 32],
-        
-        
-        /**
-        * @property OPTION_AREA_WIDTH
-        * @description Width (in pixels) of the area of a split button that  
-        * when pressed will display a menu.
-        * @default 20
-        * @final
-        * @type Number
-        */
-        OPTION_AREA_WIDTH: 20,
-        
-        
-        /**
-        * @property CSS_CLASS_NAME
-        * @description String representing the CSS class(es) to be applied to  
-        * the button's root element.
-        * @default "yui-button"
-        * @final
-        * @type String
-        */
-        CSS_CLASS_NAME: "yui-button",
-        
-        
-        /**
-        * @property RADIO_DEFAULT_TITLE
-        * @description String representing the default title applied to buttons 
-        * of type "radio." 
-        * @default "Unchecked.  Click to check."
-        * @final
-        * @type String
-        */
-        RADIO_DEFAULT_TITLE: "Unchecked.  Click to check.",
-        
-        
-        /**
-        * @property RADIO_CHECKED_TITLE
-        * @description String representing the title applied to buttons of 
-        * type "radio" when checked.
-        * @default "Checked.  Click another button to uncheck"
-        * @final
-        * @type String
-        */
-        RADIO_CHECKED_TITLE: "Checked.  Click another button to uncheck",
-        
-        
-        /**
-        * @property CHECKBOX_DEFAULT_TITLE
-        * @description String representing the default title applied to 
-        * buttons of type "checkbox." 
-        * @default "Unchecked.  Click to check."
-        * @final
-        * @type String
-        */
-        CHECKBOX_DEFAULT_TITLE: "Unchecked.  Click to check.",
-        
-        
-        /**
-        * @property CHECKBOX_CHECKED_TITLE
-        * @description String representing the title applied to buttons of type 
-        * "checkbox" when checked.
-        * @default "Checked.  Click to uncheck."
-        * @final
-        * @type String
-        */
-        CHECKBOX_CHECKED_TITLE: "Checked.  Click to uncheck.",
-        
-        
-        /**
-        * @property MENUBUTTON_DEFAULT_TITLE
-        * @description String representing the default title applied to 
-        * buttons of type "menu." 
-        * @default "Menu collapsed.  Click to expand."
-        * @final
-        * @type String
-        */
-        MENUBUTTON_DEFAULT_TITLE: "Menu collapsed.  Click to expand.",
-        
-        
-        /**
-        * @property MENUBUTTON_MENU_VISIBLE_TITLE
-        * @description String representing the title applied to buttons of type 
-        * "menu" when the button's menu is visible. 
-        * @default "Menu expanded.  Click or press Esc to collapse."
-        * @final
-        * @type String
-        */
-        MENUBUTTON_MENU_VISIBLE_TITLE: 
-            "Menu expanded.  Click or press Esc to collapse.",
-        
-        
-        /**
-        * @property SPLITBUTTON_DEFAULT_TITLE
-        * @description  String representing the default title applied to 
-        * buttons of type "split." 
-        * @default "Menu collapsed.  Click inside option region or press 
-        * Ctrl + Shift + M to show the menu."
-        * @final
-        * @type String
-        */
-        SPLITBUTTON_DEFAULT_TITLE: ("Menu collapsed.  Click inside option " + 
-            "region or press down arrow key to show the menu."),
-        
-        
-        /**
-        * @property SPLITBUTTON_OPTION_VISIBLE_TITLE
-        * @description String representing the title applied to buttons of type 
-        * "split" when the button's menu is visible. 
-        * @default "Menu expanded.  Press Esc or Ctrl + Shift + M to hide 
-        * the menu."
-        * @final
-        * @type String
-        */
-        SPLITBUTTON_OPTION_VISIBLE_TITLE: 
-            "Menu expanded.  Press Esc to hide the menu.",
-        
-        
-        /**
-        * @property SUBMIT_TITLE
-        * @description String representing the title applied to buttons of 
-        * type "submit." 
-        * @default "Click to submit form."
-        * @final
-        * @type String
-        */
-        SUBMIT_TITLE: "Click to submit form.",
-        
-        
-        
-        // Protected attribute setter methods
-        
-        
-        /**
-        * @method _setType
-        * @description Sets the value of the button's "type" attribute.
-        * @protected
-        * @param {String} p_sType String indicating the value for the button's 
-        * "type" attribute.
-        */
-        _setType: function (p_sType) {
-        
-            if (p_sType == "split") {
-        
-                this.on("option", this._onOption);
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setLabel
-        * @description Sets the value of the button's "label" attribute.
-        * @protected
-        * @param {String} p_sLabel String indicating the value for the button's 
-        * "label" attribute.
-        */
-        _setLabel: function (p_sLabel) {
-
-            this._button.innerHTML = p_sLabel;
-
-            
-            /*
-                Remove and add the default class name from the root element
-                for Gecko to ensure that the button shrinkwraps to the label.
-                Without this the button will not be rendered at the correct 
-                width when the label changes.  The most likely cause for this 
-                bug is button's use of the Gecko-specific CSS display type of 
-                "-moz-inline-box" to simulate "inline-block" supported by IE, 
-                Safari and Opera.
-            */
-            
-            var sClass,
-                nGeckoVersion = UA.gecko;
-				
-            
-            if (nGeckoVersion && nGeckoVersion < 1.9 && Dom.inDocument(this.get("element"))) {
-            
-                sClass = this.CSS_CLASS_NAME;                
-
-                this.removeClass(sClass);
-                
-                Lang.later(0, this, this.addClass, sClass);
-
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setTabIndex
-        * @description Sets the value of the button's "tabindex" attribute.
-        * @protected
-        * @param {Number} p_nTabIndex Number indicating the value for the 
-        * button's "tabindex" attribute.
-        */
-        _setTabIndex: function (p_nTabIndex) {
-        
-            this._button.tabIndex = p_nTabIndex;
-        
-        },
-        
-        
-        /**
-        * @method _setTitle
-        * @description Sets the value of the button's "title" attribute.
-        * @protected
-        * @param {String} p_nTabIndex Number indicating the value for 
-        * the button's "title" attribute.
-        */
-        _setTitle: function (p_sTitle) {
-        
-            var sTitle = p_sTitle;
-        
-            if (this.get("type") != "link") {
-        
-                if (!sTitle) {
-        
-                    switch (this.get("type")) {
-        
-                    case "radio":
-    
-                        sTitle = this.RADIO_DEFAULT_TITLE;
-    
-                        break;
-    
-                    case "checkbox":
-    
-                        sTitle = this.CHECKBOX_DEFAULT_TITLE;
-    
-                        break;
-                    
-                    case "menu":
-    
-                        sTitle = this.MENUBUTTON_DEFAULT_TITLE;
-    
-                        break;
-    
-                    case "split":
-    
-                        sTitle = this.SPLITBUTTON_DEFAULT_TITLE;
-    
-                        break;
-    
-                    case "submit":
-    
-                        sTitle = this.SUBMIT_TITLE;
-    
-                        break;
-        
-                    }
-        
-                }
-        
-                this._button.title = sTitle;
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setDisabled
-        * @description Sets the value of the button's "disabled" attribute.
-        * @protected
-        * @param {Boolean} p_bDisabled Boolean indicating the value for 
-        * the button's "disabled" attribute.
-        */
-        _setDisabled: function (p_bDisabled) {
-        
-            if (this.get("type") != "link") {
-        
-                if (p_bDisabled) {
-        
-                    if (this._menu) {
-        
-                        this._menu.hide();
-        
-                    }
-        
-                    if (this.hasFocus()) {
-                    
-                        this.blur();
-                    
-                    }
-        
-                    this._button.setAttribute("disabled", "disabled");
-        
-                    this.addStateCSSClasses("disabled");
-
-                    this.removeStateCSSClasses("hover");
-                    this.removeStateCSSClasses("active");
-                    this.removeStateCSSClasses("focus");
-        
-                }
-                else {
-        
-                    this._button.removeAttribute("disabled");
-        
-                    this.removeStateCSSClasses("disabled");
-                
-                }
-        
-            }
-        
-        },
-
-        
-        /**
-        * @method _setHref
-        * @description Sets the value of the button's "href" attribute.
-        * @protected
-        * @param {String} p_sHref String indicating the value for the button's 
-        * "href" attribute.
-        */
-        _setHref: function (p_sHref) {
-        
-            if (this.get("type") == "link") {
-        
-                this._button.href = p_sHref;
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setTarget
-        * @description Sets the value of the button's "target" attribute.
-        * @protected
-        * @param {String} p_sTarget String indicating the value for the button's 
-        * "target" attribute.
-        */
-        _setTarget: function (p_sTarget) {
-        
-            if (this.get("type") == "link") {
-        
-                this._button.setAttribute("target", p_sTarget);
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setChecked
-        * @description Sets the value of the button's "target" attribute.
-        * @protected
-        * @param {Boolean} p_bChecked Boolean indicating the value for  
-        * the button's "checked" attribute.
-        */
-        _setChecked: function (p_bChecked) {
-        
-            var sType = this.get("type"),
-                sTitle;
-        
-            if (sType == "checkbox" || sType == "radio") {
-        
-                if (p_bChecked) {
-        
-                    this.addStateCSSClasses("checked");
-                    
-                    sTitle = (sType == "radio") ? 
-                                this.RADIO_CHECKED_TITLE : 
-                                this.CHECKBOX_CHECKED_TITLE;
-                
-                }
-                else {
-
-                    this.removeStateCSSClasses("checked");
-        
-                    sTitle = (sType == "radio") ? 
-                                this.RADIO_DEFAULT_TITLE : 
-                                this.CHECKBOX_DEFAULT_TITLE;
-                
-                }
-
-
-        		if (!this._hasDefaultTitle) {
-        
-                	this.set("title", sTitle);
-                
-                }
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setMenu
-        * @description Sets the value of the button's "menu" attribute.
-        * @protected
-        * @param {Object} p_oMenu Object indicating the value for the button's 
-        * "menu" attribute.
-        */
-        _setMenu: function (p_oMenu) {
-
-            var bLazyLoad = this.get("lazyloadmenu"),
-                oButtonElement = this.get("element"),
-                sMenuCSSClassName,
-        
-                /*
-                    Boolean indicating if the value of p_oMenu is an instance 
-                    of YAHOO.widget.Menu or YAHOO.widget.Overlay.
-                */
-        
-                bInstance = false,
-        
-
-                oMenu,
-                oMenuElement,
-                oSrcElement,
-                aItems,
-                nItems,
-                oItem,
-                i;
-        
-
-			function onAppendTo() {
-
-				oMenu.render(oButtonElement.parentNode);
-				
-				this.removeListener("appendTo", onAppendTo);
-			
-			}
-			
-			
-			function setMenuContainer() {
-
-				oMenu.cfg.queueProperty("container", oButtonElement.parentNode);
-				
-				this.removeListener("appendTo", setMenuContainer);
-			
-			}
-
-
-			function initMenu() {
-		
-				var oContainer;
-		
-				if (oMenu) {
-
-					Dom.addClass(oMenu.element, this.get("menuclassname"));
-					Dom.addClass(oMenu.element, "yui-" + this.get("type") + "-button-menu");
-
-					oMenu.showEvent.subscribe(this._onMenuShow, null, this);
-					oMenu.hideEvent.subscribe(this._onMenuHide, null, this);
-					oMenu.renderEvent.subscribe(this._onMenuRender, null, this);
-
-
-					if (Menu && oMenu instanceof Menu) {
-
-						if (bLazyLoad) {
-
-							oContainer = this.get("container");
-
-							if (oContainer) {
-
-								oMenu.cfg.queueProperty("container", oContainer);
-
-							}
-							else {
-
-								this.on("appendTo", setMenuContainer);
-
-							}
-
-						}
-
-						oMenu.cfg.queueProperty("clicktohide", false);
-
-						oMenu.keyDownEvent.subscribe(this._onMenuKeyDown, this, true);
-						oMenu.subscribe("click", this._onMenuClick, this, true);
-						oMenu.itemAddedEvent.subscribe(this._onMenuItemAdded, this, true);
-		
-						oSrcElement = oMenu.srcElement;
-		
-						if (oSrcElement && oSrcElement.nodeName.toUpperCase() == "SELECT") {
-				
-							oSrcElement.style.display = "none";
-							oSrcElement.parentNode.removeChild(oSrcElement);
-		
-						}
-		
-					}
-					else if (Overlay && oMenu instanceof Overlay) {
-		
-						if (!m_oOverlayManager) {
-		
-							m_oOverlayManager = new YAHOO.widget.OverlayManager();
-						
-						}
-						
-						m_oOverlayManager.register(oMenu);
-						
-					}
-		
-		
-					this._menu = oMenu;
-
-		
-					if (!bInstance && !bLazyLoad) {
-		
-						if (Dom.inDocument(oButtonElement)) {
-	
-							oMenu.render(oButtonElement.parentNode);
-						
-						}
-						else {
-		
-							this.on("appendTo", onAppendTo);
-						
-						}
-					
-					}
-		
-				}
-		
-			}
-
-        
-            if (Overlay) {
-        
-				if (Menu) {
-				
-					sMenuCSSClassName = Menu.prototype.CSS_CLASS_NAME;
-				
-				}
-			
-				if (p_oMenu && Menu && (p_oMenu instanceof Menu)) {
-			
-					oMenu = p_oMenu;
-					aItems = oMenu.getItems();
-					nItems = aItems.length;
-					bInstance = true;
-			
-			
-					if (nItems > 0) {
-			
-						i = nItems - 1;
-			
-						do {
-			
-							oItem = aItems[i];
-			
-							if (oItem) {
-			
-								oItem.cfg.subscribeToConfigEvent("selected", 
-									this._onMenuItemSelected, oItem, this);
-			
-							}
-			
-						}
-						while (i--);
-			
-					}
-			
-					initMenu.call(this);
-			
-				}
-				else if (Overlay && p_oMenu && (p_oMenu instanceof Overlay)) {
-			
-					oMenu = p_oMenu;
-					bInstance = true;
-			
-					oMenu.cfg.queueProperty("visible", false);
-			
-					initMenu.call(this);
-			
-				}
-				else if (Menu && Lang.isArray(p_oMenu)) {
-
-					oMenu = new Menu(Dom.generateId(), { lazyload: bLazyLoad, itemdata: p_oMenu });
-						
-					this._menu = oMenu;
-			
-					this.on("appendTo", initMenu);
-			
-				}
-				else if (Lang.isString(p_oMenu)) {
-			
-					oMenuElement = Dom.get(p_oMenu);
-			
-					if (oMenuElement) {
-			
-						if (Menu && Dom.hasClass(oMenuElement, sMenuCSSClassName) || 
-							oMenuElement.nodeName.toUpperCase() == "SELECT") {
-				
-							oMenu = new Menu(p_oMenu, { lazyload: bLazyLoad });
-				
-							initMenu.call(this);
-				
-						}
-						else if (Overlay) {
-			
-							oMenu = new Overlay(p_oMenu, { visible: false });
-				
-							initMenu.call(this);
-				
-						}
-			
-					}
-			
-				}
-				else if (p_oMenu && p_oMenu.nodeName) {
-			
-					if (Menu && Dom.hasClass(p_oMenu, sMenuCSSClassName) || 
-							p_oMenu.nodeName.toUpperCase() == "SELECT") {
-			
-						oMenu = new Menu(p_oMenu, { lazyload: bLazyLoad });
-					
-						initMenu.call(this);
-			
-					}
-					else if (Overlay) {
-			
-						if (!p_oMenu.id) {
-						
-							Dom.generateId(p_oMenu);
-						
-						}
-			
-						oMenu = new Overlay(p_oMenu, { visible: false });
-			
-						initMenu.call(this);
-					
-					}
-				
-				}
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setOnClick
-        * @description Sets the value of the button's "onclick" attribute.
-        * @protected
-        * @param {Object} p_oObject Object indicating the value for the button's 
-        * "onclick" attribute.
-        */
-        _setOnClick: function (p_oObject) {
-        
-            /*
-                Remove any existing listeners if a "click" event handler 
-                has already been specified.
-            */
-        
-            if (this._onclickAttributeValue && 
-                (this._onclickAttributeValue != p_oObject)) {
-        
-                this.removeListener("click", this._onclickAttributeValue.fn);
-        
-                this._onclickAttributeValue = null;
-        
-            }
-        
-        
-            if (!this._onclickAttributeValue && 
-                Lang.isObject(p_oObject) && 
-                Lang.isFunction(p_oObject.fn)) {
-        
-                this.on("click", p_oObject.fn, p_oObject.obj, p_oObject.scope);
-        
-                this._onclickAttributeValue = p_oObject;
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _setSelectedMenuItem
-        * @description Sets the value of the button's 
-        * "selectedMenuItem" attribute.
-        * @protected
-        * @param {Number} p_nIndex Number representing the index of the item 
-        * in the button's menu that is currently selected.
-        */
-        _setSelectedMenuItem: function (p_nIndex) {
-
-            var oMenu = this._menu,
-                oMenuItem;
-
-
-            if (Menu && oMenu && oMenu instanceof Menu) {
-
-                oMenuItem = oMenu.getItem(p_nIndex);
-                
-
-                if (oMenuItem && !oMenuItem.cfg.getProperty("selected")) {
-                
-                    oMenuItem.cfg.setProperty("selected", true);
-                
-                }
-            
-            }
-
-        },
-        
-        
-        // Protected methods
-
-        
-        
-        /**
-        * @method _isActivationKey
-        * @description Determines if the specified keycode is one that toggles  
-        * the button's "active" state.
-        * @protected
-        * @param {Number} p_nKeyCode Number representing the keycode to 
-        * be evaluated.
-        * @return {Boolean}
-        */
-        _isActivationKey: function (p_nKeyCode) {
-        
-            var sType = this.get("type"),
-                aKeyCodes = (sType == "checkbox" || sType == "radio") ? 
-                    this.CHECK_ACTIVATION_KEYS : this.ACTIVATION_KEYS,
-        
-                nKeyCodes = aKeyCodes.length,
-                bReturnVal = false,
-                i;
-        
-
-            if (nKeyCodes > 0) {
-        
-                i = nKeyCodes - 1;
-        
-                do {
-        
-                    if (p_nKeyCode == aKeyCodes[i]) {
-        
-                        bReturnVal = true;
-                        break;
-        
-                    }
-        
-                }
-                while (i--);
-            
-            }
-            
-            return bReturnVal;
-        
-        },
-        
-        
-        /**
-        * @method _isSplitButtonOptionKey
-        * @description Determines if the specified keycode is one that toggles  
-        * the display of the split button's menu.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        * @return {Boolean}
-        */
-        _isSplitButtonOptionKey: function (p_oEvent) {
-
-			var bShowMenu = (Event.getCharCode(p_oEvent) == 40);
-
-
-			var onKeyPress = function (p_oEvent) {
-
-				Event.preventDefault(p_oEvent);
-
-				this.removeListener("keypress", onKeyPress);
-			
-			};
-
-
-			// Prevent the browser from scrolling the window
-			if (bShowMenu) {
-
-				if (UA.opera) {
-	
-					this.on("keypress", onKeyPress);
-	
-				}
-
-				Event.preventDefault(p_oEvent);
-			}
-
-            return bShowMenu;
-        
-        },
-        
-        
-        /**
-        * @method _addListenersToForm
-        * @description Adds event handlers to the button's form.
-        * @protected
-        */
-        _addListenersToForm: function () {
-        
-            var oForm = this.getForm(),
-                onFormKeyPress = YAHOO.widget.Button.onFormKeyPress,
-                bHasKeyPressListener,
-                oSrcElement,
-                aListeners,
-                nListeners,
-                i;
-        
-        
-            if (oForm) {
-        
-                Event.on(oForm, "reset", this._onFormReset, null, this);
-                Event.on(oForm, "submit", this._onFormSubmit, null, this);
-        
-                oSrcElement = this.get("srcelement");
-        
-        
-                if (this.get("type") == "submit" || 
-                    (oSrcElement && oSrcElement.type == "submit")) 
-                {
-                
-                    aListeners = Event.getListeners(oForm, "keypress");
-                    bHasKeyPressListener = false;
-            
-                    if (aListeners) {
-            
-                        nListeners = aListeners.length;
-        
-                        if (nListeners > 0) {
-            
-                            i = nListeners - 1;
-                            
-                            do {
-               
-                                if (aListeners[i].fn == onFormKeyPress) {
-                
-                                    bHasKeyPressListener = true;
-                                    break;
-                                
-                                }
-                
-                            }
-                            while (i--);
-                        
-                        }
-                    
-                    }
-            
-            
-                    if (!bHasKeyPressListener) {
-               
-                        Event.on(oForm, "keypress", onFormKeyPress);
-            
-                    }
-        
-                }
-            
-            }
-        
-        },
-        
-        
-        
-        /**
-        * @method _showMenu
-        * @description Shows the button's menu.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object 
-        * passed back by the event utility (YAHOO.util.Event) that triggered 
-        * the display of the menu.
-        */
-        _showMenu: function (p_oEvent) {
-
-            if (YAHOO.widget.MenuManager) {
-                YAHOO.widget.MenuManager.hideVisible();
-            }
-
-        
-            if (m_oOverlayManager) {
-                m_oOverlayManager.hideAll();
-            }
-
-
-            var oMenu = this._menu,
-            	aMenuAlignment = this.get("menualignment"),
-            	bFocusMenu = this.get("focusmenu"),
-				fnFocusMethod;
-
-
-			if (this._renderedMenu) {
-
-				oMenu.cfg.setProperty("context", 
-								[this.get("element"), aMenuAlignment[0], aMenuAlignment[1]]);
-	
-				oMenu.cfg.setProperty("preventcontextoverlap", true);
-				oMenu.cfg.setProperty("constraintoviewport", true);
-
-			}
-			else {
-
-				oMenu.cfg.queueProperty("context", 
-								[this.get("element"), aMenuAlignment[0], aMenuAlignment[1]]);
-	
-				oMenu.cfg.queueProperty("preventcontextoverlap", true);
-				oMenu.cfg.queueProperty("constraintoviewport", true);
-			
-			}
-
-
-			/*
-				 Refocus the Button before showing its Menu in case the call to 
-				 YAHOO.widget.MenuManager.hideVisible() resulted in another element in the 
-				 DOM being focused after another Menu was hidden.
-			*/
-			
-			this.focus();
-
-
-            if (Menu && oMenu && (oMenu instanceof Menu)) {
-
-				// Since Menus automatically focus themselves when made visible, temporarily 
-				// replace the Menu focus method so that the value of the Button's "focusmenu"
-				// attribute determines if the Menu should be focus when made visible.
-
-				fnFocusMethod = oMenu.focus;
-
-				oMenu.focus = function () {};
-
-				if (this._renderedMenu) {
-
-					oMenu.cfg.setProperty("minscrollheight", this.get("menuminscrollheight"));
-					oMenu.cfg.setProperty("maxheight", this.get("menumaxheight"));
-				
-				}
-				else {
-
-					oMenu.cfg.queueProperty("minscrollheight", this.get("menuminscrollheight"));
-					oMenu.cfg.queueProperty("maxheight", this.get("menumaxheight"));
-				
-				}
-
-
-                oMenu.show();
-
-        		oMenu.focus = fnFocusMethod;
-
-				oMenu.align();
-        
-
-                /*
-                    Stop the propagation of the event so that the MenuManager 
-                    doesn't blur the menu after it gets focus.
-                */
-        
-                if (p_oEvent.type == "mousedown") {
-                    Event.stopPropagation(p_oEvent);
-                }
-
-        
-                if (bFocusMenu) { 
-                    oMenu.focus();
-                }
-
-            }
-            else if (Overlay && oMenu && (oMenu instanceof Overlay)) {
-
-				if (!this._renderedMenu) {
-		            oMenu.render(this.get("element").parentNode);
-				}
-
-                oMenu.show();
-				oMenu.align();
-
-            }
-        
-        },
-        
-        
-        /**
-        * @method _hideMenu
-        * @description Hides the button's menu.
-        * @protected
-        */
-        _hideMenu: function () {
-        
-            var oMenu = this._menu;
-        
-            if (oMenu) {
-        
-                oMenu.hide();
-        
-            }
-        
-        },
-        
-        
-        
-        
-        // Protected event handlers
-        
-        
-        /**
-        * @method _onMouseOver
-        * @description "mouseover" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onMouseOver: function (p_oEvent) {
-        
-        	var sType = this.get("type"),
-        		oElement,
-				nOptionRegionX;
-
-
-			if (sType === "split") {
-
-				oElement = this.get("element");
-				nOptionRegionX = 
-					(Dom.getX(oElement) + (oElement.offsetWidth - this.OPTION_AREA_WIDTH));
-					
-				this._nOptionRegionX = nOptionRegionX;
-			
-			}
-        
-
-            if (!this._hasMouseEventHandlers) {
-        
-				if (sType === "split") {
-        
-	        		this.on("mousemove", this._onMouseMove);
-
-        		}
-
-                this.on("mouseout", this._onMouseOut);
-        
-                this._hasMouseEventHandlers = true;
-        
-            }
-        
-
-            this.addStateCSSClasses("hover");
-
-
-			if (sType === "split" && (Event.getPageX(p_oEvent) > nOptionRegionX)) {
-	
-				this.addStateCSSClasses("hoveroption");
-	
-			}
-
-        
-            if (this._activationButtonPressed) {
-        
-                this.addStateCSSClasses("active");
-        
-            }
-        
-        
-            if (this._bOptionPressed) {
-        
-                this.addStateCSSClasses("activeoption");
-            
-            }
-
-
-            if (this._activationButtonPressed || this._bOptionPressed) {
-        
-                Event.removeListener(document, "mouseup", this._onDocumentMouseUp);
-        
-            }
-
-        },
-
-
-        /**
-        * @method _onMouseMove
-        * @description "mousemove" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */        
-        _onMouseMove: function (p_oEvent) {
-        
-        	var nOptionRegionX = this._nOptionRegionX;
-        
-        	if (nOptionRegionX) {
-
-				if (Event.getPageX(p_oEvent) > nOptionRegionX) {
-					
-					this.addStateCSSClasses("hoveroption");
-	
-				}
-				else {
-
-					this.removeStateCSSClasses("hoveroption");
-				
-				}
-				
-        	}
-        
-        },
-        
-        /**
-        * @method _onMouseOut
-        * @description "mouseout" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onMouseOut: function (p_oEvent) {
-
-			var sType = this.get("type");
-        
-            this.removeStateCSSClasses("hover");
-        
-
-            if (sType != "menu") {
-        
-                this.removeStateCSSClasses("active");
-        
-            }
-        
-
-            if (this._activationButtonPressed || this._bOptionPressed) {
-        
-                Event.on(document, "mouseup", this._onDocumentMouseUp, null, this);
-        
-            }
-
-
-			if (sType === "split" && (Event.getPageX(p_oEvent) > this._nOptionRegionX)) {
-			
-				this.removeStateCSSClasses("hoveroption");
-	
-			}
-            
-        },
-        
-        
-        /**
-        * @method _onDocumentMouseUp
-        * @description "mouseup" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onDocumentMouseUp: function (p_oEvent) {
-        
-            this._activationButtonPressed = false;
-            this._bOptionPressed = false;
-        
-            var sType = this.get("type"),
-                oTarget,
-                oMenuElement;
-        
-            if (sType == "menu" || sType == "split") {
-
-                oTarget = Event.getTarget(p_oEvent);
-                oMenuElement = this._menu.element;
-        
-                if (oTarget != oMenuElement && 
-                    !Dom.isAncestor(oMenuElement, oTarget)) {
-
-                    this.removeStateCSSClasses((sType == "menu" ? 
-                        "active" : "activeoption"));
-            
-                    this._hideMenu();
-
-                }
-        
-            }
-        
-            Event.removeListener(document, "mouseup", this._onDocumentMouseUp);
-        
-        },
-        
-        
-        /**
-        * @method _onMouseDown
-        * @description "mousedown" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onMouseDown: function (p_oEvent) {
-        
-            var sType,
-            	bReturnVal = true;
-        
-        
-            function onMouseUp() {
-            
-                this._hideMenu();
-                this.removeListener("mouseup", onMouseUp);
-            
-            }
-        
-        
-            if ((p_oEvent.which || p_oEvent.button) == 1) {
-        
-        
-                if (!this.hasFocus()) {
-                
-                    this.focus();
-                
-                }
-        
-        
-                sType = this.get("type");
-        
-        
-                if (sType == "split") {
-                
-                    if (Event.getPageX(p_oEvent) > this._nOptionRegionX) {
-                        
-                        this.fireEvent("option", p_oEvent);
-						bReturnVal = false;
-        
-                    }
-                    else {
-        
-                        this.addStateCSSClasses("active");
-        
-                        this._activationButtonPressed = true;
-        
-                    }
-        
-                }
-                else if (sType == "menu") {
-        
-                    if (this.isActive()) {
-        
-                        this._hideMenu();
-        
-                        this._activationButtonPressed = false;
-        
-                    }
-                    else {
-        
-                        this._showMenu(p_oEvent);
-        
-                        this._activationButtonPressed = true;
-                    
-                    }
-        
-                }
-                else {
-        
-                    this.addStateCSSClasses("active");
-        
-                    this._activationButtonPressed = true;
-                
-                }
-        
-        
-        
-                if (sType == "split" || sType == "menu") {
-
-                    this._hideMenuTimer = Lang.later(250, this, this.on, ["mouseup", onMouseUp]);
-        
-                }
-        
-            }
-            
-            return bReturnVal;
-            
-        },
-        
-        
-        /**
-        * @method _onMouseUp
-        * @description "mouseup" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onMouseUp: function (p_oEvent) {
-        
-            var sType = this.get("type"),
-            	oHideMenuTimer = this._hideMenuTimer,
-            	bReturnVal = true;
-        
-        
-            if (oHideMenuTimer) {
-  
-  				oHideMenuTimer.cancel();
-        
-            }
-        
-        
-            if (sType == "checkbox" || sType == "radio") {
-        
-                this.set("checked", !(this.get("checked")));
-            
-            }
-        
-        
-            this._activationButtonPressed = false;
-            
-        
-            if (sType != "menu") {
-        
-                this.removeStateCSSClasses("active");
-            
-            }
-
-                
-			if (sType == "split" && Event.getPageX(p_oEvent) > this._nOptionRegionX) {
-				
-				bReturnVal = false;
-
-			}
-
-			return bReturnVal;
-            
-        },
-        
-        
-        /**
-        * @method _onFocus
-        * @description "focus" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onFocus: function (p_oEvent) {
-        
-            var oElement;
-        
-            this.addStateCSSClasses("focus");
-        
-            if (this._activationKeyPressed) {
-        
-                this.addStateCSSClasses("active");
-           
-            }
-        
-            m_oFocusedButton = this;
-        
-        
-            if (!this._hasKeyEventHandlers) {
-        
-                oElement = this._button;
-        
-                Event.on(oElement, "blur", this._onBlur, null, this);
-                Event.on(oElement, "keydown", this._onKeyDown, null, this);
-                Event.on(oElement, "keyup", this._onKeyUp, null, this);
-        
-                this._hasKeyEventHandlers = true;
-        
-            }
-        
-        
-            this.fireEvent("focus", p_oEvent);
-        
-        },
-        
-        
-        /**
-        * @method _onBlur
-        * @description "blur" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onBlur: function (p_oEvent) {
-        
-            this.removeStateCSSClasses("focus");
-        
-            if (this.get("type") != "menu") {
-        
-                this.removeStateCSSClasses("active");
-
-            }    
-        
-            if (this._activationKeyPressed) {
-        
-                Event.on(document, "keyup", this._onDocumentKeyUp, null, this);
-        
-            }
-        
-        
-            m_oFocusedButton = null;
-        
-            this.fireEvent("blur", p_oEvent);
-           
-        },
-        
-        
-        /**
-        * @method _onDocumentKeyUp
-        * @description "keyup" event handler for the document.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onDocumentKeyUp: function (p_oEvent) {
-        
-            if (this._isActivationKey(Event.getCharCode(p_oEvent))) {
-        
-                this._activationKeyPressed = false;
-                
-                Event.removeListener(document, "keyup", this._onDocumentKeyUp);
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onKeyDown
-        * @description "keydown" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onKeyDown: function (p_oEvent) {
-        
-            var oMenu = this._menu;
-        
-        
-            if (this.get("type") == "split" && 
-                this._isSplitButtonOptionKey(p_oEvent)) {
-        
-                this.fireEvent("option", p_oEvent);
-        
-            }
-            else if (this._isActivationKey(Event.getCharCode(p_oEvent))) {
-        
-                if (this.get("type") == "menu") {
-        
-                    this._showMenu(p_oEvent);
-        
-                }
-                else {
-        
-                    this._activationKeyPressed = true;
-                    
-                    this.addStateCSSClasses("active");
-                
-                }
-            
-            }
-        
-        
-            if (oMenu && oMenu.cfg.getProperty("visible") && 
-                Event.getCharCode(p_oEvent) == 27) {
-            
-                oMenu.hide();
-                this.focus();
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onKeyUp
-        * @description "keyup" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onKeyUp: function (p_oEvent) {
-        
-            var sType;
-        
-            if (this._isActivationKey(Event.getCharCode(p_oEvent))) {
-        
-                sType = this.get("type");
-        
-                if (sType == "checkbox" || sType == "radio") {
-        
-                    this.set("checked", !(this.get("checked")));
-                
-                }
-        
-                this._activationKeyPressed = false;
-        
-                if (this.get("type") != "menu") {
-        
-                    this.removeStateCSSClasses("active");
-        
-                }
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onClick
-        * @description "click" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onClick: function (p_oEvent) {
-        
-            var sType = this.get("type"),
-                sTitle,
-                oForm,
-                oSrcElement,
-                bReturnVal;
-        
-
-            switch (sType) {
-        
-            case "radio":
-            case "checkbox":
-
-				if (!this._hasDefaultTitle) {
-    
-					if (this.get("checked")) {
-						
-						sTitle = (sType == "radio") ? 
-									this.RADIO_CHECKED_TITLE : 
-									this.CHECKBOX_CHECKED_TITLE;
-					
-					}
-					else {
-					
-						sTitle = (sType == "radio") ? 
-									this.RADIO_DEFAULT_TITLE : 
-									this.CHECKBOX_DEFAULT_TITLE;
-					
-					}
-					
-					this.set("title", sTitle);
-                
-                }
-    
-                break;
-    
-            case "submit":
-
-				if (p_oEvent.returnValue !== false) {
-    
-                	this.submitForm();
-                
-                }
-            
-                break;
-    
-            case "reset":
-    
-                oForm = this.getForm();
-    
-                if (oForm) {
-    
-                    oForm.reset();
-                
-                }
-    
-                break;
-    
-            case "menu":
-    
-                sTitle = this._menu.cfg.getProperty("visible") ? 
-                                this.MENUBUTTON_MENU_VISIBLE_TITLE : 
-                                this.MENUBUTTON_DEFAULT_TITLE;
-    
-                this.set("title", sTitle);
-    
-                break;
-    
-            case "split":
-    
-                if (Event.getPageX(p_oEvent) > this._nOptionRegionX) {
-    
-                    bReturnVal = false;
-                
-                }
-                else {
-    
-                    this._hideMenu();
-        
-                    oSrcElement = this.get("srcelement");
-        
-                    if (oSrcElement && oSrcElement.type == "submit") {
-    
-                        this.submitForm();
-                    
-                    }
-                
-                }
-    
-                sTitle = this._menu.cfg.getProperty("visible") ? 
-                                this.SPLITBUTTON_OPTION_VISIBLE_TITLE : 
-                                this.SPLITBUTTON_DEFAULT_TITLE;
-    
-                this.set("title", sTitle);
-    
-                break;
-        
-            }
-        
-        	return bReturnVal;
-        
-        },
-        
-        
-        /**
-        * @method _onDblClick
-        * @description "dblclick" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onDblClick: function (p_oEvent) {
-        
-            var bReturnVal = true;
-    
-			if (this.get("type") == "split" && Event.getPageX(p_oEvent) > this._nOptionRegionX) {
-
-				bReturnVal = false;
-			
-			}
-        
-        	return bReturnVal;
-        
-        },        
-        
-        
-        /**
-        * @method _onAppendTo
-        * @description "appendTo" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onAppendTo: function (p_oEvent) {
-        
-            /*
-                It is necessary to call "_addListenersToForm" using 
-                "setTimeout" to make sure that the button's "form" property 
-                returns a node reference.  Sometimes, if you try to get the 
-                reference immediately after appending the field, it is null.
-            */
-        
-            Lang.later(0, this, this._addListenersToForm);
-        
-        },
-        
-        
-        /**
-        * @method _onFormReset
-        * @description "reset" event handler for the button's form.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event 
-        * object passed back by the event utility (YAHOO.util.Event).
-        */
-        _onFormReset: function (p_oEvent) {
-        
-            var sType = this.get("type"),
-                oMenu = this._menu;
-        
-            if (sType == "checkbox" || sType == "radio") {
-        
-                this.resetValue("checked");
-        
-            }
-        
-        
-            if (Menu && oMenu && (oMenu instanceof Menu)) {
-        
-                this.resetValue("selectedMenuItem");
-        
-            }
-        
-        },
-
-
-        /**
-        * @method _onFormSubmit
-        * @description "submit" event handler for the button's form.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event 
-        * object passed back by the event utility (YAHOO.util.Event).
-        */        
-        _onFormSubmit: function (p_oEvent) {
-        
-        	this.createHiddenFields();
-        
-        },
-        
-        
-        /**
-        * @method _onDocumentMouseDown
-        * @description "mousedown" event handler for the document.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onDocumentMouseDown: function (p_oEvent) {
-
-            var oTarget = Event.getTarget(p_oEvent),
-                oButtonElement = this.get("element"),
-                oMenuElement = this._menu.element;
-           
-        
-            if (oTarget != oButtonElement && 
-                !Dom.isAncestor(oButtonElement, oTarget) && 
-                oTarget != oMenuElement && 
-                !Dom.isAncestor(oMenuElement, oTarget)) {
-        
-                this._hideMenu();
-        
-                Event.removeListener(document, "mousedown", 
-                    this._onDocumentMouseDown);    
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onOption
-        * @description "option" event handler for the button.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onOption: function (p_oEvent) {
-        
-            if (this.hasClass("yui-split-button-activeoption")) {
-        
-                this._hideMenu();
-        
-                this._bOptionPressed = false;
-        
-            }
-            else {
-        
-                this._showMenu(p_oEvent);    
-        
-                this._bOptionPressed = true;
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onMenuShow
-        * @description "show" event handler for the button's menu.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        */
-        _onMenuShow: function (p_sType) {
-        
-            Event.on(document, "mousedown", this._onDocumentMouseDown, 
-                null, this);
-        
-            var sTitle,
-                sState;
-            
-            if (this.get("type") == "split") {
-        
-                sTitle = this.SPLITBUTTON_OPTION_VISIBLE_TITLE;
-                sState = "activeoption";
-            
-            }
-            else {
-        
-                sTitle = this.MENUBUTTON_MENU_VISIBLE_TITLE;        
-                sState = "active";
-        
-            }
-        
-            this.addStateCSSClasses(sState);
-            this.set("title", sTitle);
-        
-        },
-        
-        
-        /**
-        * @method _onMenuHide
-        * @description "hide" event handler for the button's menu.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        */
-        _onMenuHide: function (p_sType) {
-            
-            var oMenu = this._menu,
-                sTitle,
-                sState;
-        
-            
-            if (this.get("type") == "split") {
-        
-                sTitle = this.SPLITBUTTON_DEFAULT_TITLE;
-                sState = "activeoption";
-        
-            }
-            else {
-        
-                sTitle = this.MENUBUTTON_DEFAULT_TITLE;        
-                sState = "active";
-            }
-        
-        
-            this.removeStateCSSClasses(sState);
-            this.set("title", sTitle);
-        
-        
-            if (this.get("type") == "split") {
-        
-                this._bOptionPressed = false;
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onMenuKeyDown
-        * @description "keydown" event handler for the button's menu.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        _onMenuKeyDown: function (p_sType, p_aArgs) {
-        
-            var oEvent = p_aArgs[0];
-        
-            if (Event.getCharCode(oEvent) == 27) {
-        
-                this.focus();
-        
-                if (this.get("type") == "split") {
-                
-                    this._bOptionPressed = false;
-                
-                }
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onMenuRender
-        * @description "render" event handler for the button's menu.
-        * @private
-        * @param {String} p_sType String representing the name of the  
-        * event thatwas fired.
-        */
-        _onMenuRender: function (p_sType) {
-        
-            var oButtonElement = this.get("element"),
-                oButtonParent = oButtonElement.parentNode,
-                oMenuElement = this._menu.element;
-        
-        
-            if (oButtonParent != oMenuElement.parentNode) {
-        
-                oButtonParent.appendChild(oMenuElement);
-            
-            }
-
-			this._renderedMenu = true;
-
-            this.set("selectedMenuItem", this.get("selectedMenuItem"));
-
-        },
-        
-        
-        /**
-        * @method _onMenuItemSelected
-        * @description "selectedchange" event handler for each item in the 
-        * button's menu.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {MenuItem} p_oItem Object representing the menu item that
-        * subscribed to the event.
-        */
-        _onMenuItemSelected: function (p_sType, p_aArgs, p_oItem) {
-
-            var bSelected = p_aArgs[0];
-
-            if (bSelected) {
-            
-                this.set("selectedMenuItem", p_oItem);
-
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onMenuItemAdded
-        * @description "itemadded" event handler for the button's menu.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event
-        * was fired.
-        * @param {<a href="YAHOO.widget.MenuItem.html">
-        * YAHOO.widget.MenuItem</a>} p_oItem Object representing the menu 
-        * item that subscribed to the event.
-        */
-        _onMenuItemAdded: function (p_sType, p_aArgs, p_oItem) {
-            
-            var oItem = p_aArgs[0];
-        
-           	oItem.cfg.subscribeToConfigEvent("selected", this._onMenuItemSelected, oItem, this);
-        
-        },
-        
-        
-        /**
-        * @method _onMenuClick
-        * @description "click" event handler for the button's menu.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        _onMenuClick: function (p_sType, p_aArgs) {
-
-            var oItem = p_aArgs[1],
-                oSrcElement;
-        
-            if (oItem) {
-        
-				this.set("selectedMenuItem", oItem);
-
-                oSrcElement = this.get("srcelement");
-            
-                if (oSrcElement && oSrcElement.type == "submit") {
-        
-                    this.submitForm();
-            
-                }
-            
-                this._hideMenu();
-            
-            }
-        
-        },
-        
-        
-        
-        // Public methods
-        
-        
-        /**
-        * @method createButtonElement
-        * @description Creates the button's HTML elements.
-        * @param {String} p_sType String indicating the type of element 
-        * to create.
-        * @return {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-58190037">HTMLElement</a>}
-        */
-        createButtonElement: function (p_sType) {
-        
-            var sNodeName = this.NODE_NAME,
-                oElement = document.createElement(sNodeName);
-        
-            oElement.innerHTML =  "<" + sNodeName + " class=\"first-child\">" + 
-                (p_sType == "link" ? "<a></a>" : 
-                "<button type=\"button\"></button>") + "</" + sNodeName + ">";
-        
-            return oElement;
-        
-        },
-
-        
-        /**
-        * @method addStateCSSClasses
-        * @description Appends state-specific CSS classes to the button's root 
-        * DOM element.
-        */
-        addStateCSSClasses: function (p_sState) {
-        
-            var sType = this.get("type");
-        
-            if (Lang.isString(p_sState)) {
-        
-                if (p_sState != "activeoption" && p_sState != "hoveroption") {
-        
-                    this.addClass(this.CSS_CLASS_NAME + ("-" + p_sState));
-        
-                }
-        
-                this.addClass("yui-" + sType + ("-button-" + p_sState));
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method removeStateCSSClasses
-        * @description Removes state-specific CSS classes to the button's root 
-        * DOM element.
-        */
-        removeStateCSSClasses: function (p_sState) {
-        
-            var sType = this.get("type");
-        
-            if (Lang.isString(p_sState)) {
-        
-                this.removeClass(this.CSS_CLASS_NAME + ("-" + p_sState));
-                this.removeClass("yui-" + sType + ("-button-" + p_sState));
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method createHiddenFields
-        * @description Creates the button's hidden form field and appends it 
-        * to its parent form.
-        * @return {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-6043025">HTMLInputElement</a>|Array}
-        */
-        createHiddenFields: function () {
-        
-            this.removeHiddenFields();
-        
-            var oForm = this.getForm(),
-                oButtonField,
-                sType,
-                bCheckable,
-                oMenu,
-                oMenuItem,
-                sButtonName,
-                oValue,
-                oMenuField,
-                oReturnVal,
-				sMenuFieldName,
-				oMenuSrcElement,
-				bMenuSrcElementIsSelect = false;
-        
-        
-            if (oForm && !this.get("disabled")) {
-        
-                sType = this.get("type");
-                bCheckable = (sType == "checkbox" || sType == "radio");
-        
-        
-                if ((bCheckable && this.get("checked")) || (m_oSubmitTrigger == this)) {
-                
-        
-                    oButtonField = createInputElement((bCheckable ? sType : "hidden"),
-                                    this.get("name"), this.get("value"), this.get("checked"));
-            
-            
-                    if (oButtonField) {
-            
-                        if (bCheckable) {
-            
-                            oButtonField.style.display = "none";
-            
-                        }
-            
-                        oForm.appendChild(oButtonField);
-            
-                    }
-        
-                }
-                    
-        
-                oMenu = this._menu;
-            
-            
-                if (Menu && oMenu && (oMenu instanceof Menu)) {
-        
-        
-                    oMenuItem = this.get("selectedMenuItem");
-					oMenuSrcElement = oMenu.srcElement;
-					bMenuSrcElementIsSelect = (oMenuSrcElement && 
-												oMenuSrcElement.nodeName.toUpperCase() == "SELECT");
-
-                    if (oMenuItem) {
-
-						oValue = (oMenuItem.value === null || oMenuItem.value === "") ? 
-									oMenuItem.cfg.getProperty("text") : oMenuItem.value;
-
-						sButtonName = this.get("name");
-
-
-						if (bMenuSrcElementIsSelect) {
-						
-							sMenuFieldName = oMenuSrcElement.name;
-						
-						}
-						else if (sButtonName) {
-
-							sMenuFieldName = (sButtonName + "_options");
-						
-						}
-						
-
-						if (oValue && sMenuFieldName) {
-		
-							oMenuField = createInputElement("hidden", sMenuFieldName, oValue);
-							oForm.appendChild(oMenuField);
-		
-						}
-                    
-                    }
-                    else if (bMenuSrcElementIsSelect) {
-					
-						oForm.appendChild(oMenuSrcElement);
-                    
-                    }
-        
-                }
-            
-            
-                if (oButtonField && oMenuField) {
-        
-                    this._hiddenFields = [oButtonField, oMenuField];
-        
-                }
-                else if (!oButtonField && oMenuField) {
-        
-                    this._hiddenFields = oMenuField;
-                
-                }
-                else if (oButtonField && !oMenuField) {
-        
-                    this._hiddenFields = oButtonField;
-                
-                }
-        
-        		oReturnVal = this._hiddenFields;
-        
-            }
-
-			return oReturnVal;
-        
-        },
-        
-        
-        /**
-        * @method removeHiddenFields
-        * @description Removes the button's hidden form field(s) from its 
-        * parent form.
-        */
-        removeHiddenFields: function () {
-        
-            var oField = this._hiddenFields,
-                nFields,
-                i;
-        
-            function removeChild(p_oElement) {
-        
-                if (Dom.inDocument(p_oElement)) {
-        
-                    p_oElement.parentNode.removeChild(p_oElement);
-                
-                }
-                
-            }
-            
-        
-            if (oField) {
-        
-                if (Lang.isArray(oField)) {
-        
-                    nFields = oField.length;
-                    
-                    if (nFields > 0) {
-                    
-                        i = nFields - 1;
-                        
-                        do {
-        
-                            removeChild(oField[i]);
-        
-                        }
-                        while (i--);
-                    
-                    }
-                
-                }
-                else {
-        
-                    removeChild(oField);
-        
-                }
-        
-                this._hiddenFields = null;
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method submitForm
-        * @description Submits the form to which the button belongs.  Returns  
-        * true if the form was submitted successfully, false if the submission 
-        * was cancelled.
-        * @protected
-        * @return {Boolean}
-        */
-        submitForm: function () {
-        
-            var oForm = this.getForm(),
-        
-                oSrcElement = this.get("srcelement"),
-        
-                /*
-                    Boolean indicating if the event fired successfully 
-                    (was not cancelled by any handlers)
-                */
-        
-                bSubmitForm = false,
-                
-                oEvent;
-        
-        
-            if (oForm) {
-        
-                if (this.get("type") == "submit" || (oSrcElement && oSrcElement.type == "submit")) {
-        
-                    m_oSubmitTrigger = this;
-                    
-                }
-        
-        
-                if (UA.ie) {
-        
-                    bSubmitForm = oForm.fireEvent("onsubmit");
-        
-                }
-                else {  // Gecko, Opera, and Safari
-        
-                    oEvent = document.createEvent("HTMLEvents");
-                    oEvent.initEvent("submit", true, true);
-        
-                    bSubmitForm = oForm.dispatchEvent(oEvent);
-        
-                }
-        
-        
-                /*
-                    In IE and Safari, dispatching a "submit" event to a form 
-                    WILL cause the form's "submit" event to fire, but WILL NOT 
-                    submit the form.  Therefore, we need to call the "submit" 
-                    method as well.
-                */
-              
-                if ((UA.ie || UA.webkit) && bSubmitForm) {
-        
-                    oForm.submit();
-                
-                }
-            
-            }
-        
-            return bSubmitForm;
-            
-        },
-        
-        
-        /**
-        * @method init
-        * @description The Button class's initialization method.
-        * @param {String} p_oElement String specifying the id attribute of the 
-        * <code>&#60;input&#62;</code>, <code>&#60;button&#62;</code>,
-        * <code>&#60;a&#62;</code>, or <code>&#60;span&#62;</code> element to 
-        * be used to create the button.
-        * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-6043025">HTMLInputElement</a>|<a href="http://
-        * www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html
-        * #ID-34812697">HTMLButtonElement</a>|<a href="http://www.w3.org/TR
-        * /2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-33759296">
-        * HTMLElement</a>} p_oElement Object reference for the 
-        * <code>&#60;input&#62;</code>, <code>&#60;button&#62;</code>, 
-        * <code>&#60;a&#62;</code>, or <code>&#60;span&#62;</code> element to be 
-        * used to create the button.
-        * @param {Object} p_oElement Object literal specifying a set of 
-        * configuration attributes used to create the button.
-        * @param {Object} p_oAttributes Optional. Object literal specifying a 
-        * set of configuration attributes used to create the button.
-        */
-        init: function (p_oElement, p_oAttributes) {
-        
-            var sNodeName = p_oAttributes.type == "link" ? "a" : "button",
-                oSrcElement = p_oAttributes.srcelement,
-                oButton = p_oElement.getElementsByTagName(sNodeName)[0],
-                oInput;
-
-
-            if (!oButton) {
-
-                oInput = p_oElement.getElementsByTagName("input")[0];
-
-
-                if (oInput) {
-
-                    oButton = document.createElement("button");
-                    oButton.setAttribute("type", "button");
-
-                    oInput.parentNode.replaceChild(oButton, oInput);
-                
-                }
-
-            }
-
-            this._button = oButton;
-
-            /*
-				Capture if the button has a value for the title attribute.  If so, we won't 
-				override it for type of "checkbox" or "radio".
-            */
-            
-            this._hasDefaultTitle = (p_oAttributes.title && p_oAttributes.title.length > 0);
-
-            YAHOO.widget.Button.superclass.init.call(this, p_oElement, p_oAttributes);
-
-
-			var sId = this.get("id"),
-				sButtonId = sId + "-button";
-
-
-        	oButton.id = sButtonId;
-
-
-			var aLabels,
-				oLabel;
-
-
-        	var hasLabel = function (element) {
-        	
-				return (element.htmlFor === sId);
-
-        	};
-
-
-			var setLabel = function () {
-
-				oLabel.setAttribute((UA.ie ? "htmlFor" : "for"), sButtonId);
-			
-			};
-
-
-			if (oSrcElement && this.get("type") != "link") {
-
-				aLabels = Dom.getElementsBy(hasLabel, "label");
-
-				if (Lang.isArray(aLabels) && aLabels.length > 0) {
-				
-					oLabel = aLabels[0];
-				
-				}
-
-			}
-        
-
-            m_oButtons[sId] = this;
-        
-
-            this.addClass(this.CSS_CLASS_NAME);
-            this.addClass("yui-" + this.get("type") + "-button");
-        
-            Event.on(this._button, "focus", this._onFocus, null, this);
-            this.on("mouseover", this._onMouseOver);
-			this.on("mousedown", this._onMouseDown);
-			this.on("mouseup", this._onMouseUp);
-            this.on("click", this._onClick);
-            this.on("dblclick", this._onDblClick);
-
-            if (oLabel) {
-            
-				this.on("appendTo", setLabel);     
-            
-            }
-            
-            this.on("appendTo", this._onAppendTo);
-       
-        
-
-            var oContainer = this.get("container"),
-                oElement = this.get("element"),
-                bElInDoc = Dom.inDocument(oElement),
-                oParentNode;
-
-
-            if (oContainer) {
-        
-                if (oSrcElement && oSrcElement != oElement) {
-                
-                    oParentNode = oSrcElement.parentNode;
-
-                    if (oParentNode) {
-                    
-                        oParentNode.removeChild(oSrcElement);
-                    
-                    }
-
-                }
-        
-                if (Lang.isString(oContainer)) {
-        
-                    Event.onContentReady(oContainer, this.appendTo, oContainer, this);
-        
-                }
-                else {
-        
-        			this.on("init", function () {
-        			
-        				Lang.later(0, this, this.appendTo, oContainer);
-        			
-        			});
-        
-                }
-        
-            }
-            else if (!bElInDoc && oSrcElement && oSrcElement != oElement) {
-
-                oParentNode = oSrcElement.parentNode;
-        
-                if (oParentNode) {
-        
-                    this.fireEvent("beforeAppendTo", {
-                        type: "beforeAppendTo",
-                        target: oParentNode
-                    });
-            
-                    oParentNode.replaceChild(oElement, oSrcElement);
-            
-                    this.fireEvent("appendTo", {
-                        type: "appendTo",
-                        target: oParentNode
-                    });
-                
-                }
-        
-            }
-            else if (this.get("type") != "link" && bElInDoc && oSrcElement && 
-                oSrcElement == oElement) {
-        
-                this._addListenersToForm();
-        
-            }
-        
-        
-
-			this.fireEvent("init", {
-				type: "init",
-				target: this
-			});        
-        
-        },
-        
-        
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to  
-        * create the button.
-        * @param {Object} p_oAttributes Object literal specifying a set of 
-        * configuration attributes used to create the button.
-        */
-        initAttributes: function (p_oAttributes) {
-        
-            var oAttributes = p_oAttributes || {};
-        
-            YAHOO.widget.Button.superclass.initAttributes.call(this, 
-                oAttributes);
-        
-        
-            /**
-            * @attribute type
-            * @description String specifying the button's type.  Possible 
-            * values are: "push," "link," "submit," "reset," "checkbox," 
-            * "radio," "menu," and "split."
-            * @default "push"
-            * @type String
-            */
-            this.setAttributeConfig("type", {
-        
-                value: (oAttributes.type || "push"),
-                validator: Lang.isString,
-                writeOnce: true,
-                method: this._setType
-        
-            });
-        
-        
-            /**
-            * @attribute label
-            * @description String specifying the button's text label 
-            * or innerHTML.
-            * @default null
-            * @type String
-            */
-            this.setAttributeConfig("label", {
-        
-                value: oAttributes.label,
-                validator: Lang.isString,
-                method: this._setLabel
-        
-            });
-        
-        
-            /**
-            * @attribute value
-            * @description Object specifying the value for the button.
-            * @default null
-            * @type Object
-            */
-            this.setAttributeConfig("value", {
-        
-                value: oAttributes.value
-        
-            });
-        
-        
-            /**
-            * @attribute name
-            * @description String specifying the name for the button.
-            * @default null
-            * @type String
-            */
-            this.setAttributeConfig("name", {
-        
-                value: oAttributes.name,
-                validator: Lang.isString
-        
-            });
-        
-        
-            /**
-            * @attribute tabindex
-            * @description Number specifying the tabindex for the button.
-            * @default null
-            * @type Number
-            */
-            this.setAttributeConfig("tabindex", {
-        
-                value: oAttributes.tabindex,
-                validator: Lang.isNumber,
-                method: this._setTabIndex
-        
-            });
-        
-        
-            /**
-            * @attribute title
-            * @description String specifying the title for the button.
-            * @default null
-            * @type String
-            */
-            this.configureAttribute("title", {
-        
-                value: oAttributes.title,
-                validator: Lang.isString,
-                method: this._setTitle
-        
-            });
-        
-        
-            /**
-            * @attribute disabled
-            * @description Boolean indicating if the button should be disabled.  
-            * (Disabled buttons are dimmed and will not respond to user input 
-            * or fire events.  Does not apply to button's of type "link.")
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig("disabled", {
-        
-                value: (oAttributes.disabled || false),
-                validator: Lang.isBoolean,
-                method: this._setDisabled
-        
-            });
-        
-        
-            /**
-            * @attribute href
-            * @description String specifying the href for the button.  Applies
-            * only to buttons of type "link."
-            * @type String
-            */
-            this.setAttributeConfig("href", {
-        
-                value: oAttributes.href,
-                validator: Lang.isString,
-                method: this._setHref
-        
-            });
-        
-        
-            /**
-            * @attribute target
-            * @description String specifying the target for the button.  
-            * Applies only to buttons of type "link."
-            * @type String
-            */
-            this.setAttributeConfig("target", {
-        
-                value: oAttributes.target,
-                validator: Lang.isString,
-                method: this._setTarget
-        
-            });
-        
-        
-            /**
-            * @attribute checked
-            * @description Boolean indicating if the button is checked. 
-            * Applies only to buttons of type "radio" and "checkbox."
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig("checked", {
-        
-                value: (oAttributes.checked || false),
-                validator: Lang.isBoolean,
-                method: this._setChecked
-        
-            });
-        
-        
-            /**
-            * @attribute container
-            * @description HTML element reference or string specifying the id 
-            * attribute of the HTML element that the button's markup should be 
-            * rendered into.
-            * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-            * level-one-html.html#ID-58190037">HTMLElement</a>|String
-            * @default null
-            */
-            this.setAttributeConfig("container", {
-        
-                value: oAttributes.container,
-                writeOnce: true
-        
-            });
-        
-        
-            /**
-            * @attribute srcelement
-            * @description Object reference to the HTML element (either 
-            * <code>&#60;input&#62;</code> or <code>&#60;span&#62;</code>) 
-            * used to create the button.
-            * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-            * level-one-html.html#ID-58190037">HTMLElement</a>|String
-            * @default null
-            */
-            this.setAttributeConfig("srcelement", {
-        
-                value: oAttributes.srcelement,
-                writeOnce: true
-        
-            });
-        
-        
-            /**
-            * @attribute menu
-            * @description Object specifying the menu for the button.  
-            * The value can be one of the following:
-            * <ul>
-            * <li>Object specifying a <a href="YAHOO.widget.Menu.html">
-            * YAHOO.widget.Menu</a> instance.</li>
-            * <li>Object specifying a <a href="YAHOO.widget.Overlay.html">
-            * YAHOO.widget.Overlay</a> instance.</li>
-            * <li>String specifying the id attribute of the <code>&#60;div&#62;
-            * </code> element used to create the menu.  By default the menu 
-            * will be created as an instance of 
-            * <a href="YAHOO.widget.Overlay.html">YAHOO.widget.Overlay</a>.  
-            * If the <a href="YAHOO.widget.Menu.html#CSS_CLASS_NAME">
-            * default CSS class name for YAHOO.widget.Menu</a> is applied to 
-            * the <code>&#60;div&#62;</code> element, it will be created as an
-            * instance of <a href="YAHOO.widget.Menu.html">YAHOO.widget.Menu
-            * </a>.</li><li>String specifying the id attribute of the 
-            * <code>&#60;select&#62;</code> element used to create the menu.
-            * </li><li>Object specifying the <code>&#60;div&#62;</code> element
-            * used to create the menu.</li>
-            * <li>Object specifying the <code>&#60;select&#62;</code> element
-            * used to create the menu.</li>
-            * <li>Array of object literals, each representing a set of 
-            * <a href="YAHOO.widget.MenuItem.html">YAHOO.widget.MenuItem</a> 
-            * configuration attributes.</li>
-            * <li>Array of strings representing the text labels for each menu 
-            * item in the menu.</li>
-            * </ul>
-            * @type <a href="YAHOO.widget.Menu.html">YAHOO.widget.Menu</a>|<a 
-            * href="YAHOO.widget.Overlay.html">YAHOO.widget.Overlay</a>|<a 
-            * href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-            * one-html.html#ID-58190037">HTMLElement</a>|String|Array
-            * @default null
-            */
-            this.setAttributeConfig("menu", {
-        
-                value: null,
-                method: this._setMenu,
-                writeOnce: true
-            
-            });
-        
-        
-            /**
-            * @attribute lazyloadmenu
-            * @description Boolean indicating the value to set for the 
-            * <a href="YAHOO.widget.Menu.html#lazyLoad">"lazyload"</a>
-            * configuration property of the button's menu.  Setting 
-            * "lazyloadmenu" to <code>true </code> will defer rendering of 
-            * the button's menu until the first time it is made visible.  
-            * If "lazyloadmenu" is set to <code>false</code>, the button's 
-            * menu will be rendered immediately if the button is in the 
-            * document, or in response to the button's "appendTo" event if 
-            * the button is not yet in the document.  In either case, the 
-            * menu is rendered into the button's parent HTML element.  
-            * <em>This attribute does not apply if a 
-            * <a href="YAHOO.widget.Menu.html">YAHOO.widget.Menu</a> or 
-            * <a href="YAHOO.widget.Overlay.html">YAHOO.widget.Overlay</a> 
-            * instance is passed as the value of the button's "menu" 
-            * configuration attribute. <a href="YAHOO.widget.Menu.html">
-            * YAHOO.widget.Menu</a> or <a href="YAHOO.widget.Overlay.html">
-            * YAHOO.widget.Overlay</a> instances should be rendered before 
-            * being set as the value for the "menu" configuration 
-            * attribute.</em>
-            * @default true
-            * @type Boolean
-            */
-            this.setAttributeConfig("lazyloadmenu", {
-        
-                value: (oAttributes.lazyloadmenu === false ? false : true),
-                validator: Lang.isBoolean,
-                writeOnce: true
-        
-            });
-
-
-            /**
-            * @attribute menuclassname
-            * @description String representing the CSS class name to be 
-            * applied to the root element of the button's menu.
-            * @type String
-            * @default "yui-button-menu"
-            */
-            this.setAttributeConfig("menuclassname", {
-        
-                value: (oAttributes.menuclassname || "yui-button-menu"),
-                validator: Lang.isString,
-                method: this._setMenuClassName,
-                writeOnce: true
-        
-            });        
-
-
-			/**
-			* @attribute menuminscrollheight
-			* @description Number defining the minimum threshold for the "menumaxheight" 
-			* configuration attribute.  When set this attribute is automatically applied 
-			* to all submenus.
-			* @default 90
-			* @type Number
-			*/
-            this.setAttributeConfig("menuminscrollheight", {
-        
-                value: (oAttributes.menuminscrollheight || 90),
-                validator: Lang.isNumber
-        
-            });
-
-
-            /**
-            * @attribute menumaxheight
-			* @description Number defining the maximum height (in pixels) for a menu's 
-			* body element (<code>&#60;div class="bd"&#60;</code>).  Once a menu's body 
-			* exceeds this height, the contents of the body are scrolled to maintain 
-			* this value.  This value cannot be set lower than the value of the 
-			* "minscrollheight" configuration property.
-            * @type Number
-            * @default 0
-            */
-            this.setAttributeConfig("menumaxheight", {
-        
-                value: (oAttributes.menumaxheight || 0),
-                validator: Lang.isNumber
-        
-            });
-
-
-            /**
-            * @attribute menualignment
-			* @description Array defining how the Button's Menu is aligned to the Button.  
-            * The default value of ["tl", "bl"] aligns the Menu's top left corner to the Button's 
-            * bottom left corner.
-            * @type Array
-            * @default ["tl", "bl"]
-            */
-            this.setAttributeConfig("menualignment", {
-        
-                value: (oAttributes.menualignment || ["tl", "bl"]),
-                validator: Lang.isArray
-        
-            });
-            
-
-            /**
-            * @attribute selectedMenuItem
-            * @description Object representing the item in the button's menu 
-            * that is currently selected.
-            * @type Number
-            * @default null
-            */
-            this.setAttributeConfig("selectedMenuItem", {
-        
-                value: null,
-                method: this._setSelectedMenuItem
-        
-            });
-        
-        
-            /**
-            * @attribute onclick
-            * @description Object literal representing the code to be executed  
-            * when the button is clicked.  Format:<br> <code> {<br> 
-            * <strong>fn:</strong> Function,   &#47;&#47; The handler to call 
-            * when the event fires.<br> <strong>obj:</strong> Object, 
-            * &#47;&#47; An object to pass back to the handler.<br> 
-            * <strong>scope:</strong> Object &#47;&#47;  The object to use 
-            * for the scope of the handler.<br> } </code>
-            * @type Object
-            * @default null
-            */
-            this.setAttributeConfig("onclick", {
-        
-                value: oAttributes.onclick,
-                method: this._setOnClick
-            
-            });
-
-
-            /**
-            * @attribute focusmenu
-            * @description Boolean indicating whether or not the button's menu 
-            * should be focused when it is made visible.
-            * @type Boolean
-            * @default true
-            */
-            this.setAttributeConfig("focusmenu", {
-        
-                value: (oAttributes.focusmenu === false ? false : true),
-                validator: Lang.isBoolean
-        
-            });
-
-        },
-        
-        
-        /**
-        * @method focus
-        * @description Causes the button to receive the focus and fires the 
-        * button's "focus" event.
-        */
-        focus: function () {
-        
-            if (!this.get("disabled")) {
-        
-                this._button.focus();
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method blur
-        * @description Causes the button to lose focus and fires the button's
-        * "blur" event.
-        */
-        blur: function () {
-        
-            if (!this.get("disabled")) {
-        
-                this._button.blur();
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method hasFocus
-        * @description Returns a boolean indicating whether or not the button 
-        * has focus.
-        * @return {Boolean}
-        */
-        hasFocus: function () {
-        
-            return (m_oFocusedButton == this);
-        
-        },
-        
-        
-        /**
-        * @method isActive
-        * @description Returns a boolean indicating whether or not the button 
-        * is active.
-        * @return {Boolean}
-        */
-        isActive: function () {
-        
-            return this.hasClass(this.CSS_CLASS_NAME + "-active");
-        
-        },
-        
-        
-        /**
-        * @method getMenu
-        * @description Returns a reference to the button's menu.
-        * @return {<a href="YAHOO.widget.Overlay.html">
-        * YAHOO.widget.Overlay</a>|<a 
-        * href="YAHOO.widget.Menu.html">YAHOO.widget.Menu</a>}
-        */
-        getMenu: function () {
-        
-            return this._menu;
-        
-        },
-        
-        
-        /**
-        * @method getForm
-        * @description Returns a reference to the button's parent form.
-        * @return {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-
-        * 20000929/level-one-html.html#ID-40002357">HTMLFormElement</a>}
-        */
-        getForm: function () {
-        
-        	var oButton = this._button,
-        		oForm;
-        
-            if (oButton) {
-            
-            	oForm = oButton.form;
-            
-            }
-        
-        	return oForm;
-        
-        },
-        
-        
-        /** 
-        * @method getHiddenFields
-        * @description Returns an <code>&#60;input&#62;</code> element or 
-        * array of form elements used to represent the button when its parent 
-        * form is submitted.  
-        * @return {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-6043025">HTMLInputElement</a>|Array}
-        */
-        getHiddenFields: function () {
-        
-            return this._hiddenFields;
-        
-        },
-        
-        
-        /**
-        * @method destroy
-        * @description Removes the button's element from its parent element and 
-        * removes all event handlers.
-        */
-        destroy: function () {
-        
-        
-            var oElement = this.get("element"),
-                oParentNode = oElement.parentNode,
-                oMenu = this._menu,
-                aButtons;
-        
-            if (oMenu) {
-        
-
-                if (m_oOverlayManager && m_oOverlayManager.find(oMenu)) {
-
-                    m_oOverlayManager.remove(oMenu);
-
-                }
-        
-                oMenu.destroy();
-        
-            }
-        
-        
-            Event.purgeElement(oElement);
-            Event.purgeElement(this._button);
-            Event.removeListener(document, "mouseup", this._onDocumentMouseUp);
-            Event.removeListener(document, "keyup", this._onDocumentKeyUp);
-            Event.removeListener(document, "mousedown", this._onDocumentMouseDown);
-        
-        
-            var oForm = this.getForm();
-            
-            if (oForm) {
-        
-                Event.removeListener(oForm, "reset", this._onFormReset);
-                Event.removeListener(oForm, "submit", this._onFormSubmit);
-        
-            }
-
-
-            this.unsubscribeAll();
-
-            if (oParentNode) {
-
-                oParentNode.removeChild(oElement);
-            
-            }
-        
-        
-            delete m_oButtons[this.get("id")];
-
-            aButtons = Dom.getElementsByClassName(this.CSS_CLASS_NAME, 
-                                this.NODE_NAME, oForm); 
-
-            if (Lang.isArray(aButtons) && aButtons.length === 0) {
-
-                Event.removeListener(oForm, "keypress", 
-                        YAHOO.widget.Button.onFormKeyPress);
-
-            }
-
-        
-        },
-        
-        
-        fireEvent: function (p_sType , p_aArgs) {
-        
-			var sType = arguments[0];
-		
-			//  Disabled buttons should not respond to DOM events
-		
-			if (this.DOM_EVENTS[sType] && this.get("disabled")) {
-		
-				return false;
-		
-			}
-		
-			return YAHOO.widget.Button.superclass.fireEvent.apply(this, arguments);
-        
-        },
-        
-        
-        /**
-        * @method toString
-        * @description Returns a string representing the button.
-        * @return {String}
-        */
-        toString: function () {
-        
-            return ("Button " + this.get("id"));
-        
-        }
-    
-    });
-    
-    
-    /**
-    * @method YAHOO.widget.Button.onFormKeyPress
-    * @description "keypress" event handler for the button's form.
-    * @param {Event} p_oEvent Object representing the DOM event object passed 
-    * back by the event utility (YAHOO.util.Event).
-    */
-    YAHOO.widget.Button.onFormKeyPress = function (p_oEvent) {
-    
-        var oTarget = Event.getTarget(p_oEvent),
-            nCharCode = Event.getCharCode(p_oEvent),
-            sNodeName = oTarget.nodeName && oTarget.nodeName.toUpperCase(),
-            sType = oTarget.type,
-    
-            /*
-                Boolean indicating if the form contains any enabled or 
-                disabled YUI submit buttons
-            */
-    
-            bFormContainsYUIButtons = false,
-    
-            oButton,
-    
-            oYUISubmitButton,   // The form's first, enabled YUI submit button
-    
-            /*
-                 The form's first, enabled HTML submit button that precedes any 
-                 YUI submit button
-            */
-    
-            oPrecedingSubmitButton,
-            
-            oEvent; 
-    
-    
-        function isSubmitButton(p_oElement) {
-    
-            var sId,
-                oSrcElement;
-    
-            switch (p_oElement.nodeName.toUpperCase()) {
-    
-            case "INPUT":
-            case "BUTTON":
-            
-                if (p_oElement.type == "submit" && !p_oElement.disabled) {
-                    
-                    if (!bFormContainsYUIButtons && !oPrecedingSubmitButton) {
-
-                        oPrecedingSubmitButton = p_oElement;
-
-                    }
-                
-                }
-
-                break;
-            
-
-            default:
-            
-                sId = p_oElement.id;
-    
-                if (sId) {
-    
-                    oButton = m_oButtons[sId];
-        
-                    if (oButton) {
-
-                        bFormContainsYUIButtons = true;
-        
-                        if (!oButton.get("disabled")) {
-
-                            oSrcElement = oButton.get("srcelement");
-    
-                            if (!oYUISubmitButton && (oButton.get("type") == "submit" || 
-                                (oSrcElement && oSrcElement.type == "submit"))) {
-
-                                oYUISubmitButton = oButton;
-                            
-                            }
-                        
-                        }
-                        
-                    }
-                
-                }
-
-                break;
-    
-            }
-    
-        }
-    
-    
-        if (nCharCode == 13 && ((sNodeName == "INPUT" && (sType == "text" || 
-            sType == "password" || sType == "checkbox" || sType == "radio" || 
-            sType == "file")) || sNodeName == "SELECT")) {
-    
-            Dom.getElementsBy(isSubmitButton, "*", this);
-    
-    
-            if (oPrecedingSubmitButton) {
-    
-                /*
-                     Need to set focus to the first enabled submit button
-                     to make sure that IE includes its name and value 
-                     in the form's data set.
-                */
-    
-                oPrecedingSubmitButton.focus();
-            
-            }
-            else if (!oPrecedingSubmitButton && oYUISubmitButton) {
-    
-				/*
-					Need to call "preventDefault" to ensure that the form doesn't end up getting
-					submitted twice.
-				*/
-    
-    			Event.preventDefault(p_oEvent);
-
-
-				if (UA.ie) {
-				
-					oYUISubmitButton.get("element").fireEvent("onclick");
-				
-				}
-				else {
-
-					oEvent = document.createEvent("HTMLEvents");
-					oEvent.initEvent("click", true, true);
-			
-
-					if (UA.gecko < 1.9) {
-					
-						oYUISubmitButton.fireEvent("click", oEvent);
-					
-					}
-					else {
-
-						oYUISubmitButton.get("element").dispatchEvent(oEvent);
-					
-					}
-  
-                }
-
-            }
-            
-        }
-    
-    };
-    
-    
-    /**
-    * @method YAHOO.widget.Button.addHiddenFieldsToForm
-    * @description Searches the specified form and adds hidden fields for  
-    * instances of YAHOO.widget.Button that are of type "radio," "checkbox," 
-    * "menu," and "split."
-    * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-40002357">HTMLFormElement</a>} p_oForm Object reference 
-    * for the form to search.
-    */
-    YAHOO.widget.Button.addHiddenFieldsToForm = function (p_oForm) {
-    
-        var aButtons = Dom.getElementsByClassName(
-                            YAHOO.widget.Button.prototype.CSS_CLASS_NAME, 
-                            "*", 
-                            p_oForm),
-    
-            nButtons = aButtons.length,
-            oButton,
-            sId,
-            i;
-    
-        if (nButtons > 0) {
-    
-    
-            for (i = 0; i < nButtons; i++) {
-    
-                sId = aButtons[i].id;
-    
-                if (sId) {
-    
-                    oButton = m_oButtons[sId];
-        
-                    if (oButton) {
-           
-                        oButton.createHiddenFields();
-                        
-                    }
-                
-                }
-            
-            }
-    
-        }
-    
-    };
-    
-
-    /**
-    * @method YAHOO.widget.Button.getButton
-    * @description Returns a button with the specified id.
-    * @param {String} p_sId String specifying the id of the root node of the 
-    * HTML element representing the button to be retrieved.
-    * @return {YAHOO.widget.Button}
-    */
-    YAHOO.widget.Button.getButton = function (p_sId) {
-
-		return m_oButtons[p_sId];
-
-    };
-    
-    
-    // Events
-    
-    
-    /**
-    * @event focus
-    * @description Fires when the menu item receives focus.  Passes back a  
-    * single object representing the original DOM event object passed back by 
-    * the event utility (YAHOO.util.Event) when the event was fired.  See 
-    * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> 
-    * for more information on listening for this event.
-    * @type YAHOO.util.CustomEvent
-    */
-    
-    
-    /**
-    * @event blur
-    * @description Fires when the menu item loses the input focus.  Passes back  
-    * a single object representing the original DOM event object passed back by 
-    * the event utility (YAHOO.util.Event) when the event was fired.  See 
-    * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for  
-    * more information on listening for this event.
-    * @type YAHOO.util.CustomEvent
-    */
-    
-    
-    /**
-    * @event option
-    * @description Fires when the user invokes the button's option.  Passes 
-    * back a single object representing the original DOM event (either 
-    * "mousedown" or "keydown") that caused the "option" event to fire.  See 
-    * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> 
-    * for more information on listening for this event.
-    * @type YAHOO.util.CustomEvent
-    */
-
-})();
-(function () {
-
-    // Shorthard for utilities
-    
-    var Dom = YAHOO.util.Dom,
-        Event = YAHOO.util.Event,
-        Lang = YAHOO.lang,
-        Button = YAHOO.widget.Button,  
-    
-        // Private collection of radio buttons
-    
-        m_oButtons = {};
-
-
-
-    /**
-    * The ButtonGroup class creates a set of buttons that are mutually 
-    * exclusive; checking one button in the set will uncheck all others in the 
-    * button group.
-    * @param {String} p_oElement String specifying the id attribute of the 
-    * <code>&#60;div&#62;</code> element of the button group.
-    * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-    * level-one-html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object 
-    * specifying the <code>&#60;div&#62;</code> element of the button group.
-    * @param {Object} p_oElement Object literal specifying a set of 
-    * configuration attributes used to create the button group.
-    * @param {Object} p_oAttributes Optional. Object literal specifying a set 
-    * of configuration attributes used to create the button group.
-    * @namespace YAHOO.widget
-    * @class ButtonGroup
-    * @constructor
-    * @extends YAHOO.util.Element
-    */
-    YAHOO.widget.ButtonGroup = function (p_oElement, p_oAttributes) {
-    
-        var fnSuperClass = YAHOO.widget.ButtonGroup.superclass.constructor,
-            sNodeName,
-            oElement,
-            sId;
-    
-        if (arguments.length == 1 && !Lang.isString(p_oElement) && 
-            !p_oElement.nodeName) {
-    
-            if (!p_oElement.id) {
-    
-                sId = Dom.generateId();
-    
-                p_oElement.id = sId;
-    
-    
-            }
-    
-    
-    
-            fnSuperClass.call(this, (this._createGroupElement()), p_oElement);
-    
-        }
-        else if (Lang.isString(p_oElement)) {
-    
-            oElement = Dom.get(p_oElement);
-    
-            if (oElement) {
-            
-                if (oElement.nodeName.toUpperCase() == this.NODE_NAME) {
-    
-            
-                    fnSuperClass.call(this, oElement, p_oAttributes);
-    
-                }
-    
-            }
-        
-        }
-        else {
-    
-            sNodeName = p_oElement.nodeName.toUpperCase();
-    
-            if (sNodeName && sNodeName == this.NODE_NAME) {
-        
-                if (!p_oElement.id) {
-        
-                    p_oElement.id = Dom.generateId();
-        
-        
-                }
-        
-        
-                fnSuperClass.call(this, p_oElement, p_oAttributes);
-    
-            }
-    
-        }
-    
-    };
-    
-    
-    YAHOO.extend(YAHOO.widget.ButtonGroup, YAHOO.util.Element, {
-    
-    
-        // Protected properties
-        
-        
-        /** 
-        * @property _buttons
-        * @description Array of buttons in the button group.
-        * @default null
-        * @protected
-        * @type Array
-        */
-        _buttons: null,
-        
-        
-        
-        // Constants
-        
-        
-        /**
-        * @property NODE_NAME
-        * @description The name of the tag to be used for the button 
-        * group's element. 
-        * @default "DIV"
-        * @final
-        * @type String
-        */
-        NODE_NAME: "DIV",
-        
-        
-        /**
-        * @property CSS_CLASS_NAME
-        * @description String representing the CSS class(es) to be applied  
-        * to the button group's element.
-        * @default "yui-buttongroup"
-        * @final
-        * @type String
-        */
-        CSS_CLASS_NAME: "yui-buttongroup",
-    
-    
-    
-        // Protected methods
-        
-        
-        /**
-        * @method _createGroupElement
-        * @description Creates the button group's element.
-        * @protected
-        * @return {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-22445964">HTMLDivElement</a>}
-        */
-        _createGroupElement: function () {
-        
-            var oElement = document.createElement(this.NODE_NAME);
-        
-            return oElement;
-        
-        },
-        
-        
-        
-        // Protected attribute setter methods
-        
-        
-        /**
-        * @method _setDisabled
-        * @description Sets the value of the button groups's 
-        * "disabled" attribute.
-        * @protected
-        * @param {Boolean} p_bDisabled Boolean indicating the value for
-        * the button group's "disabled" attribute.
-        */
-        _setDisabled: function (p_bDisabled) {
-        
-            var nButtons = this.getCount(),
-                i;
-        
-            if (nButtons > 0) {
-        
-                i = nButtons - 1;
-                
-                do {
-        
-                    this._buttons[i].set("disabled", p_bDisabled);
-                
-                }
-                while (i--);
-        
-            }
-        
-        },
-        
-        
-        
-        // Protected event handlers
-        
-        
-        /**
-        * @method _onKeyDown
-        * @description "keydown" event handler for the button group.
-        * @protected
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        _onKeyDown: function (p_oEvent) {
-        
-            var oTarget = Event.getTarget(p_oEvent),
-                nCharCode = Event.getCharCode(p_oEvent),
-                sId = oTarget.parentNode.parentNode.id,
-                oButton = m_oButtons[sId],
-                nIndex = -1;
-        
-        
-            if (nCharCode == 37 || nCharCode == 38) {
-        
-                nIndex = (oButton.index === 0) ? 
-                            (this._buttons.length - 1) : (oButton.index - 1);
-            
-            }
-            else if (nCharCode == 39 || nCharCode == 40) {
-        
-                nIndex = (oButton.index === (this._buttons.length - 1)) ? 
-                            0 : (oButton.index + 1);
-        
-            }
-        
-        
-            if (nIndex > -1) {
-        
-                this.check(nIndex);
-                this.getButton(nIndex).focus();
-            
-            }        
-        
-        },
-        
-        
-        /**
-        * @method _onAppendTo
-        * @description "appendTo" event handler for the button group.
-        * @protected
-        * @param {Event} p_oEvent Object representing the event that was fired.
-        */
-        _onAppendTo: function (p_oEvent) {
-        
-            var aButtons = this._buttons,
-                nButtons = aButtons.length,
-                i;
-        
-            for (i = 0; i < nButtons; i++) {
-        
-                aButtons[i].appendTo(this.get("element"));
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method _onButtonCheckedChange
-        * @description "checkedChange" event handler for each button in the 
-        * button group.
-        * @protected
-        * @param {Event} p_oEvent Object representing the event that was fired.
-        * @param {<a href="YAHOO.widget.Button.html">YAHOO.widget.Button</a>}  
-        * p_oButton Object representing the button that fired the event.
-        */
-        _onButtonCheckedChange: function (p_oEvent, p_oButton) {
-        
-            var bChecked = p_oEvent.newValue,
-                oCheckedButton = this.get("checkedButton");
-        
-            if (bChecked && oCheckedButton != p_oButton) {
-        
-                if (oCheckedButton) {
-        
-                    oCheckedButton.set("checked", false, true);
-        
-                }
-        
-                this.set("checkedButton", p_oButton);
-                this.set("value", p_oButton.get("value"));
-        
-            }
-            else if (oCheckedButton && !oCheckedButton.set("checked")) {
-        
-                oCheckedButton.set("checked", true, true);
-        
-            }
-           
-        },
-        
-        
-        
-        // Public methods
-        
-        
-        /**
-        * @method init
-        * @description The ButtonGroup class's initialization method.
-        * @param {String} p_oElement String specifying the id attribute of the 
-        * <code>&#60;div&#62;</code> element of the button group.
-        * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object 
-        * specifying the <code>&#60;div&#62;</code> element of the button group.
-        * @param {Object} p_oElement Object literal specifying a set of  
-        * configuration attributes used to create the button group.
-        * @param {Object} p_oAttributes Optional. Object literal specifying a
-        * set of configuration attributes used to create the button group.
-        */
-        init: function (p_oElement, p_oAttributes) {
-        
-            this._buttons = [];
-        
-            YAHOO.widget.ButtonGroup.superclass.init.call(this, p_oElement, 
-                    p_oAttributes);
-        
-            this.addClass(this.CSS_CLASS_NAME);
-        
-        
-            var aButtons = this.getElementsByClassName("yui-radio-button");
-        
-        
-            if (aButtons.length > 0) {
-        
-        
-                this.addButtons(aButtons);
-        
-            }
-        
-        
-        
-            function isRadioButton(p_oElement) {
-        
-                return (p_oElement.type == "radio");
-        
-            }
-        
-            aButtons = 
-                Dom.getElementsBy(isRadioButton, "input", this.get("element"));
-        
-        
-            if (aButtons.length > 0) {
-        
-        
-                this.addButtons(aButtons);
-        
-            }
-        
-            this.on("keydown", this._onKeyDown);
-            this.on("appendTo", this._onAppendTo);
-        
-
-            var oContainer = this.get("container");
-
-            if (oContainer) {
-        
-                if (Lang.isString(oContainer)) {
-        
-                    Event.onContentReady(oContainer, function () {
-        
-                        this.appendTo(oContainer);            
-                    
-                    }, null, this);
-        
-                }
-                else {
-        
-                    this.appendTo(oContainer);
-        
-                }
-        
-            }
-        
-        
-        
-        },
-        
-        
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to  
-        * create the button group.
-        * @param {Object} p_oAttributes Object literal specifying a set of 
-        * configuration attributes used to create the button group.
-        */
-        initAttributes: function (p_oAttributes) {
-        
-            var oAttributes = p_oAttributes || {};
-        
-            YAHOO.widget.ButtonGroup.superclass.initAttributes.call(
-                this, oAttributes);
-        
-        
-            /**
-            * @attribute name
-            * @description String specifying the name for the button group.  
-            * This name will be applied to each button in the button group.
-            * @default null
-            * @type String
-            */
-            this.setAttributeConfig("name", {
-        
-                value: oAttributes.name,
-                validator: Lang.isString
-        
-            });
-        
-        
-            /**
-            * @attribute disabled
-            * @description Boolean indicating if the button group should be 
-            * disabled.  Disabling the button group will disable each button 
-            * in the button group.  Disabled buttons are dimmed and will not 
-            * respond to user input or fire events.
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig("disabled", {
-        
-                value: (oAttributes.disabled || false),
-                validator: Lang.isBoolean,
-                method: this._setDisabled
-        
-            });
-        
-        
-            /**
-            * @attribute value
-            * @description Object specifying the value for the button group.
-            * @default null
-            * @type Object
-            */
-            this.setAttributeConfig("value", {
-        
-                value: oAttributes.value
-        
-            });
-        
-        
-            /**
-            * @attribute container
-            * @description HTML element reference or string specifying the id 
-            * attribute of the HTML element that the button group's markup
-            * should be rendered into.
-            * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-            * level-one-html.html#ID-58190037">HTMLElement</a>|String
-            * @default null
-            */
-            this.setAttributeConfig("container", {
-        
-                value: oAttributes.container,
-                writeOnce: true
-        
-            });
-        
-        
-            /**
-            * @attribute checkedButton
-            * @description Reference for the button in the button group that 
-            * is checked.
-            * @type {<a href="YAHOO.widget.Button.html">YAHOO.widget.Button</a>}
-            * @default null
-            */
-            this.setAttributeConfig("checkedButton", {
-        
-                value: null
-        
-            });
-        
-        },
-        
-        
-        /**
-        * @method addButton
-        * @description Adds the button to the button group.
-        * @param {<a href="YAHOO.widget.Button.html">YAHOO.widget.Button</a>}  
-        * p_oButton Object reference for the <a href="YAHOO.widget.Button.html">
-        * YAHOO.widget.Button</a> instance to be added to the button group.
-        * @param {String} p_oButton String specifying the id attribute of the 
-        * <code>&#60;input&#62;</code> or <code>&#60;span&#62;</code> element 
-        * to be used to create the button to be added to the button group.
-        * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-6043025">HTMLInputElement</a>|<a href="
-        * http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#
-        * ID-33759296">HTMLElement</a>} p_oButton Object reference for the 
-        * <code>&#60;input&#62;</code> or <code>&#60;span&#62;</code> element 
-        * to be used to create the button to be added to the button group.
-        * @param {Object} p_oButton Object literal specifying a set of 
-        * <a href="YAHOO.widget.Button.html">YAHOO.widget.Button</a> 
-        * configuration attributes used to configure the button to be added to 
-        * the button group.
-        * @return {<a href="YAHOO.widget.Button.html">YAHOO.widget.Button</a>} 
-        */
-        addButton: function (p_oButton) {
-        
-            var oButton,
-                oButtonElement,
-                oGroupElement,
-                nIndex,
-                sButtonName,
-                sGroupName;
-        
-        
-            if (p_oButton instanceof Button && 
-                p_oButton.get("type") == "radio") {
-        
-                oButton = p_oButton;
-        
-            }
-            else if (!Lang.isString(p_oButton) && !p_oButton.nodeName) {
-        
-                p_oButton.type = "radio";
-        
-                oButton = new Button(p_oButton);
-
-            }
-            else {
-        
-                oButton = new Button(p_oButton, { type: "radio" });
-        
-            }
-        
-        
-            if (oButton) {
-        
-                nIndex = this._buttons.length;
-                sButtonName = oButton.get("name");
-                sGroupName = this.get("name");
-        
-                oButton.index = nIndex;
-        
-                this._buttons[nIndex] = oButton;
-                m_oButtons[oButton.get("id")] = oButton;
-        
-        
-                if (sButtonName != sGroupName) {
-        
-                    oButton.set("name", sGroupName);
-                
-                }
-        
-        
-                if (this.get("disabled")) {
-        
-                    oButton.set("disabled", true);
-        
-                }
-        
-        
-                if (oButton.get("checked")) {
-        
-                    this.set("checkedButton", oButton);
-        
-                }
-
-                
-                oButtonElement = oButton.get("element");
-                oGroupElement = this.get("element");
-                
-                if (oButtonElement.parentNode != oGroupElement) {
-                
-                    oGroupElement.appendChild(oButtonElement);
-                
-                }
-        
-                
-                oButton.on("checkedChange", 
-                    this._onButtonCheckedChange, oButton, this);
-        
-        
-            }
-
-			return oButton;
-        
-        },
-        
-        
-        /**
-        * @method addButtons
-        * @description Adds the array of buttons to the button group.
-        * @param {Array} p_aButtons Array of <a href="YAHOO.widget.Button.html">
-        * YAHOO.widget.Button</a> instances to be added 
-        * to the button group.
-        * @param {Array} p_aButtons Array of strings specifying the id 
-        * attribute of the <code>&#60;input&#62;</code> or <code>&#60;span&#62;
-        * </code> elements to be used to create the buttons to be added to the 
-        * button group.
-        * @param {Array} p_aButtons Array of object references for the 
-        * <code>&#60;input&#62;</code> or <code>&#60;span&#62;</code> elements 
-        * to be used to create the buttons to be added to the button group.
-        * @param {Array} p_aButtons Array of object literals, each containing
-        * a set of <a href="YAHOO.widget.Button.html">YAHOO.widget.Button</a>  
-        * configuration attributes used to configure each button to be added 
-        * to the button group.
-        * @return {Array}
-        */
-        addButtons: function (p_aButtons) {
-    
-            var nButtons,
-                oButton,
-                aButtons,
-                i;
-        
-            if (Lang.isArray(p_aButtons)) {
-            
-                nButtons = p_aButtons.length;
-                aButtons = [];
-        
-                if (nButtons > 0) {
-        
-                    for (i = 0; i < nButtons; i++) {
-        
-                        oButton = this.addButton(p_aButtons[i]);
-                        
-                        if (oButton) {
-        
-                            aButtons[aButtons.length] = oButton;
-        
-                        }
-                    
-                    }
-                
-                }
-        
-            }
-
-			return aButtons;
-        
-        },
-        
-        
-        /**
-        * @method removeButton
-        * @description Removes the button at the specified index from the 
-        * button group.
-        * @param {Number} p_nIndex Number specifying the index of the button 
-        * to be removed from the button group.
-        */
-        removeButton: function (p_nIndex) {
-        
-            var oButton = this.getButton(p_nIndex),
-                nButtons,
-                i;
-            
-            if (oButton) {
-        
-        
-                this._buttons.splice(p_nIndex, 1);
-                delete m_oButtons[oButton.get("id")];
-        
-                oButton.removeListener("checkedChange", 
-                    this._onButtonCheckedChange);
-
-                oButton.destroy();
-        
-        
-                nButtons = this._buttons.length;
-                
-                if (nButtons > 0) {
-        
-                    i = this._buttons.length - 1;
-                    
-                    do {
-        
-                        this._buttons[i].index = i;
-        
-                    }
-                    while (i--);
-                
-                }
-        
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method getButton
-        * @description Returns the button at the specified index.
-        * @param {Number} p_nIndex The index of the button to retrieve from the 
-        * button group.
-        * @return {<a href="YAHOO.widget.Button.html">YAHOO.widget.Button</a>}
-        */
-        getButton: function (p_nIndex) {
-        
-            return this._buttons[p_nIndex];
-        
-        },
-        
-        
-        /**
-        * @method getButtons
-        * @description Returns an array of the buttons in the button group.
-        * @return {Array}
-        */
-        getButtons: function () {
-        
-            return this._buttons;
-        
-        },
-        
-        
-        /**
-        * @method getCount
-        * @description Returns the number of buttons in the button group.
-        * @return {Number}
-        */
-        getCount: function () {
-        
-            return this._buttons.length;
-        
-        },
-        
-        
-        /**
-        * @method focus
-        * @description Sets focus to the button at the specified index.
-        * @param {Number} p_nIndex Number indicating the index of the button 
-        * to focus. 
-        */
-        focus: function (p_nIndex) {
-        
-            var oButton,
-                nButtons,
-                i;
-        
-            if (Lang.isNumber(p_nIndex)) {
-        
-                oButton = this._buttons[p_nIndex];
-                
-                if (oButton) {
-        
-                    oButton.focus();
-        
-                }
-            
-            }
-            else {
-        
-                nButtons = this.getCount();
-        
-                for (i = 0; i < nButtons; i++) {
-        
-                    oButton = this._buttons[i];
-        
-                    if (!oButton.get("disabled")) {
-        
-                        oButton.focus();
-                        break;
-        
-                    }
-        
-                }
-        
-            }
-        
-        },
-        
-        
-        /**
-        * @method check
-        * @description Checks the button at the specified index.
-        * @param {Number} p_nIndex Number indicating the index of the button 
-        * to check. 
-        */
-        check: function (p_nIndex) {
-        
-            var oButton = this.getButton(p_nIndex);
-            
-            if (oButton) {
-        
-                oButton.set("checked", true);
-            
-            }
-        
-        },
-        
-        
-        /**
-        * @method destroy
-        * @description Removes the button group's element from its parent 
-        * element and removes all event handlers.
-        */
-        destroy: function () {
-        
-        
-            var nButtons = this._buttons.length,
-                oElement = this.get("element"),
-                oParentNode = oElement.parentNode,
-                i;
-            
-            if (nButtons > 0) {
-        
-                i = this._buttons.length - 1;
-        
-                do {
-        
-                    this._buttons[i].destroy();
-        
-                }
-                while (i--);
-            
-            }
-        
-        
-            Event.purgeElement(oElement);
-            
-        
-            oParentNode.removeChild(oElement);
-        
-        },
-        
-        
-        /**
-        * @method toString
-        * @description Returns a string representing the button group.
-        * @return {String}
-        */
-        toString: function () {
-        
-            return ("ButtonGroup " + this.get("id"));
-        
-        }
-    
-    });
-
-})();
-YAHOO.register("button", YAHOO.widget.Button, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/calendar/README b/eclipse.org-common/yui/2.6.0/build/calendar/README
deleted file mode 100644
index da90268..0000000
--- a/eclipse.org-common/yui/2.6.0/build/calendar/README
+++ /dev/null
@@ -1,421 +0,0 @@
-Calendar Release Notes
-
-*** version 2.6.0 ***
-
-+ Fixed incorrect cell index parsing from cell id attribute, when
-  Calendar id contained "cell".
-  
-+ Added text to previous month, next month and close icons, to 
-  enhance accessibility for screen-readers.
-  
-+ Fixed issue with bubbled previous month, next month click events 
-  missing target information in certain browsers (due to replaced HTML), 
-  by delaying click event handling through a setTimeout.
-  
-+ Added destroy method to Calendar/CalendarGroup
-
-+ Fixed incorrect clear method behavior for CalendarGroup where all
-  pages would be set to the same month.
-  
-+ Refactored code to reduce minified Kweight.
-
-*** version 2.5.2 ***
-
-+ CalendarGroup toDate method no longer throws javascript exception
-
-*** version 2.5.1 *** 
-
-+ Fixed bug with mindate, maxdate being applied incorrectly if 
-  set to a day on which time change took place (DST, E.U Summertime) 
-  and the day is not the first day of the week.
-
-+ Fixed DateMath.getWeekNumber implementation to return correct 
-  week numbers. The older implementation would return Week 0 for 
-  certain weeks (e.g. the week starting Sun Dec 28th 2008)
-
-  To suppor the fix, DateMath.getWeekNumber has a signature 
-  change in 2.5.1 and can now support U.S Week calculations based 
-  on Jan 1st identifying the first week of the year, as well as 
-  ISO8601 week calculations based on Jan 4th identifying the first 
-  week of the year
-
-  The arguments which the method expected prior to 2.5.1 were not 
-  being used in calculating the week number. The new signature is:
-
-  DateMath.getWeekNumber(Date dt, Number firstDayOfWeek, Number janDate)
-
-  Where:
-
-    dt is the date for which week number is required
-
-    firstDayOfWeek is the day index identifying the first 
-    day of the week. Default is 0 (Sunday).
-
-    janDate is the date in the first week of January, which
-    identifies the first week of the year. 
-    Default is YAHOO.widget.DateMath.WEEK_ONE_JAN_DATE (1)
-
-  NOTE: Calendar instances themselves do not currently expose a 
-  configuration property to change the week numbering system 
-  used. A "janDate" value is not passed to the getWeekNumber 
-  method, when used by Calendar, resulting in it using the default value.
-
-  Therefore, ISO8601 week numbering can be generated for Calendars 
-  by setting the value of YAHOO.widget.DateMath.WEEK_ONE_JAN_DATE
-  to 4.
-
-*** version 2.5.0 *** 
-
-+ Prevent default event handling in CalendarNavigator enter key 
-  listener, to prevent automatic form submission when using Calendar
-  inside a form.
-
-+ Added workaround to DateMath.add and subtract for Safari 2 (webkit) 
-  bug in Date.setDate(n) which doesn't handle value of n less than -128 
-  or greater than 127 correctly.
-
-  See: http://brianary.blogspot.com/2006/03/safari-date-bug.html
-
-+ Added border, padding and margin rules to Calendar Sam Skin to 
-  protect Sam Skin's look and feel when Calendar is used with 
-  YUI base.css
-
-*** version 2.4.0 *** 
-
-+ Added CalendarNavigator (year selector) feature to allow the user to 
-  jump to a year/month directly without having to scroll through months
-  sequentially. 
-
-  The feature is enabled/configured using the "navigator" configuration
-  property.
-
-+ Added Custom Events: 
-
-    showNav/beforeShowNav
-    hideNav/beforeHideNav, 
-    renderNav/beforeRenderNav 
-
-  To Calendar/CalendarGroup, in support of the CalendarNavigator 
-  functionality. 
-
-+ Added Custom Events:
-
-    show/beforeShow
-    hide/beforeHide 
-
-  To Calendar and CalendarGroup. Returning false from a 
-  beforeShow/beforeHide listener can be used to prevent the Calendar 
-  from being shown/hidden respectively. 
-
-+ Added Public Methods: 
-
-    getCellIndex(date)    [ Calendar ]
-    getCalendarPage(date) [ CalendarGroup ]
-    toDate(dateArray)     [ Calendar/CalendarGroup ]
-    removeRenderers()     [ Calendar/CalendarGroup ]
-    
-+ The Calendar/CalendarGroup constructor is now more flexible: 
-
-    * It no longer requires an "id" argument. 
-
-      In it's simplest form, a Calendar/CalendarGroup can be 
-      constructed by simply providing a container id or reference.
-
-          var cal = new YAHOO.widget.Calendar("container"); 
-          -or-
-          var containerDiv = YAHOO.util.Dom.get("container");
-          var cal = new YAHOO.widget.Calendar(containerDiv); 
-
-      An id for the Calendar does not need to be provided, and will be 
-      generated from the container id by appending an "_t" suffix to the
-      container id if only the container is provided. 
-
-    * The container argument can be either a string, representing the 
-      id of the container, or an HTMLElement referring to the container 
-      element itself, as suggested in the example above. 
-
-    * If an HTMLElement is provided for the container argument and the 
-      element does not have an id, one will be generated for it using 
-      YAHOO.util.Dom.generateId(). 
-
-    * The older form of Calendar/CalendarGroup signature, expecting 
-      both an id and containerId is still supported and works as it did 
-      prior to 2.4.0. 
-
-+ Fixed performance issue, where the same custom renderer was being 
-  applied multiple times to the same cell.
-
-+ Added getDate(year, month, date) factory method to the DateMath utility, 
-  which can be used to create JavaScript Date instances for years less 
-  than 100.
-
-  The default Date(year, month, date) constructor implementations across 
-  browsers, assume that if year < 100, the caller is referring to the 
-  nineteen hundreds, and the year is set to 19xx instead of xx (as with
-  the deprecated setYear method). However Date.setFullYear(xx) can 
-  be used to set dates below 100. The above factory method provides a 
-  construction mechanism consistent with setFullYear.
-
-+ Changed Calendar/CalendarGroup/DateMath code to use the DateMath.getDate
-  method, so that 2 digit years are  not assumed to be in the 1900's. 
-
-  NOTE: Calendar's API already expects 4 digit date strings when referring 
-  to years after 999.
-
-*** version 2.3.1 *** 
-
-+ Changed Calendar/CalendarGroup to render an empty title bar element 
-  when "close" is set to true, but "title" has not been set, to allow Sam 
-  Skin to render a title bar correctly. 
-
-*** version 2.3.0 *** 
-
-+ Added checks to select, selectCell, deselect and deselectCell methods 
-  to ensure the Calendar/Calendar group was not set to an invalid state 
-  by programmatically selecting unselectable dates or cells.
-  
-+ Added new locale configuration properties for the Month/Year label 
-  used in the Calendar header (MY_LABEL_MONTH_POSITION, 
-  MY_LABEL_YEAR_POSITION, MY_LABEL_YEAR_SUFFIX, MY_LABEL_MONTH_SUFFIX). 
-  Japan is an example locale, where customization of the Month/Year 
-  label is required.
-  
-+ Changed "first", "last" class names to "first-of-type", "last-of-type", 
-  to avoid collision with YUI Grids' use of the "first" class name.
-  
-+ Added public isDateOOB method, to check if a given date is outside of 
-  the minimum/maximum configuration dates of the Calendar.
-  
-+ Deprecated YAHOO.widget.Calendar.browser, refactored to use 
-  YAHOO.env.ua instead. 
-  
-+ Removed overflow:hidden from default Calendar/CalendarGroup container 
-  for non-IE6 browsers to fix clipping issue with IE7 when CalendarGroup 
-  was inside a box with a specific width. overflow:hidden is still 
-  required for IE6 with an iframe shim.
-
-+ Added Opera container width calculation fix to CalendarGroup.show 
-  method, to fix incorrect wrapping when using a CalendarGroup which is 
-  initially rendered hidden (display:none). Previously this fix was 
-  only applied on render. 
-
-*** version 2.2.2 *** 
-
-+ Fixed problem with selected dates being shared across instances, when 
-  more than one Calendar/CalendarGroup was on the page 
-
-*** version 2.2.1 *** 
-
-+ Fixed problem with selectCell adding duplicate selected date entries 
-  for dates which were already selected
-
-+ Fixed problem with CalendarGroup iframe shim not covering the 
-  CalendarGroup title area
-  
-+ Removed javascript:void(null) from close button and cell links which 
-  was interrupting form submission and firing onbeforeunload in IE
-  
-+ Fixed problem with CalendarGroup getSelectedDates returning invalid 
-  results, when used in conjunction with the "selected" Config property 
-  (either passed in the constructor config argument or set seperately 
-  after construction)
-  
-+ Refactored Calendar and CalendarGroup to improve performance, 
-  especially when working with a large number of instances in 
-  IE6 
-
-*** version 2.2.0 *** 
-
-+ Image customization can now be done through CSS. Images for Close, 
-  Left and Right Arrows are now pulled in using CSS defined in 
-  calendar.css and by default use relative paths to the images in 
-  the same directory as calendar.css.
-  
-+ Deprecated Calendar.IMG_ROOT and NAV_ARROW_LEFT, NAV_ARROW_RIGHT 
-  configuration properties. Customizations based on older releases 
-  which set these properties will still function as expected.
-
-+ Deprecated CalendarGroup.CSS_2UPCLOSE. Calendar's Style.CSS_CLOSE 
-  property now represents the new default CSS class (calclose) for 
-  the close button. CSS_2UPCLOSE is still applied along with 
-  CSS_CLOSE to the new markup for the close button to support existing
-  customizations of the CSS_2UPCLOSE CSS class (close-icon)
-
-+ Fixed problem with Safari setting Calendar pages to incorrect dates 
-  if the pages spanned a year boundary in CalendarGroups with 3 or more 
-  pages, due to a bug in Safari's implementation of Date setMonth
-
-+ Fixed problem with CalendarGroup setMonth rendering Calendar pages 
-  with incorrect dates in all browsers if current pages spanned year 
-  boundary 
-
-+ Fixed incorrect CalendarGroup logging statement in calendar-debug.js
-
-+ Fixed domEventMap support for Safari versions prior to 2.0.2, 
-  caused by hasOwnProperty not being supported
-  
-+ Removed unused private property : _pageDate from Calendar class 
-
-*** version 0.12.2 *** 
-
-+ Corrected documentation for clearTime function to reflect the 
-  change from midnight to noon 
-
-*** version 0.12.1 *** 
-
-+ Calendar and CalendarGroup now automatically parse the argument 
-  passed to setMonth and setYear into an integer, eliminating 
-  potential concatenation bugs. 
-
-*** version 0.12 *** 
-
-+ New documentation format implemented
-
-+ Calendar2up and Calendar_Core are now deprecated. Now, Calendar alone
-  represents the single Calendar instance, and CalendarGroup represents 
-  an n-up instance, defaulting to 2up
-  
-+ Added semantic style classes to Calendar elements to allow for 
-  custom styling solely using CSS.
-  
-+ Remapped all configuration properties to use the Config object 
- (familiar to those who use the Container collection of controls). 
- Property names are the same as their previous counterparts, but 
- wrapped into Calendar.cfg, allowing for runtime reconfiguration of 
- most properties
- 
-+ Added "title" property for setting the Calendar title
-
-+ Added "close" property for enabling and disabling the close icon
-
-+ Added "iframe" property for enabling an iframe shim in Internet 
-  Explorer 6 and below to fix the select bleed-through bug
-  
-+ pageDate moved to property: "pagedate"
-
-+ selectedDates moved to property: "selected"
-
-+ minDate moved to property : "mindate", which accepts a JavaScript 
-  Date object like its predecessor, but also supports string dates
-  
-+ maxDate moved to property : "maxdate", which accepts a JavaScript 
-  Date object like its predecessor, but also supports string dates
-  
-+ Moved style declarations to initStyles function
-
-+ Optimized event handling in doSelectCell/doCellMouseOver/
-  doCellMouseOut by only attaching the listener to the outer 
-  Calendar container, and only reacting to events on cells with 
-  the "selectable" CSS class.
-  
-+ Added domEventMap field for applying DOM event listeners to cells 
-  containing specific class and tag combinations.
-  
-+ Moved all cell DOM event attachment to applyListeners function
-
-+ Added getDateByCellId / getDateFieldsByCellId helper functions
-
-+ Corrected DateMath.getWeekNumber to comply with ISO week number 
-  handling
-  
-+ Separated renderCellDefault style portions into styleCellDefault 
-  function for easy extension
-  
-+ Deprecated onBeforeSelect. Created beforeSelectEvent which 
-  automatically subscribes to its deprecated predecessor.
-  
-+ Deprecated onSelect. Created selectEvent, which automatically 
-  subscribes to its deprecated predecessor.
-  
-+ Deprecated onBeforeDeselect. Created beforeSelectEvent which 
-  automatically subscribes to its deprecated predecessor.
-  
-+ Deprecated onDeselect. Created beforeDeselectEvent, which 
-  automatically subscribes to its deprecated predecessor.
-  
-+ Deprecated onChangePage. Created changePageEvent, which automatically
-  subscribes to its deprecated predecessor.
-  
-+ Deprecated onRender. Created renderEvent, which automatically 
-  subscribes to its deprecated predecessor.
-  
-+ Deprecated onReset. Created resetEvent, which automatically 
-  subscribes to its deprecated predecessor.
-  
-+ Deprecated onClear. Created clearEvent, which automatically 
-  subscribes to its deprecated predecessor.
-  
-+ Corrected setMonth documentation to refer to 0-11 indexed months.
-
-+ Added show and hide methods to Calendar for setting the Calendar's 
-  display property.
-  
-+ Optimized internal render classes to use innerHTML and string buffers
- 
-+ Removed wireCustomEvents function
-
-+ Removed wireDefaultEvents function 
-
-+ Removed doNextMonth / doPreviousMonth
-
-+ Removed all buildShell (header, body, footer) functions, since 
-  the Calendar shell is now built dynamically on each render
-  
-+ Wired all CalendarGroup events and configuration properties to 
-  be properly delegated to Calendar
-  
-+ Augmented CalendarGroup with all built-in renderers, label functions, 
-  hide, show, and initStyles, creating API transparency between Calendar 
-  and CalendarGroup.
-  
-+ Made all tagName, createElement, and entity references XHTML compliant
-
-+ Fixed Daylight Saving Time bug for Brazilian time zone 
-
-*** version 0.11.3 *** 
-
-+ Calendar_Core: Added arguments for selected/deselected dates to 
-  onSelect/onDeselect
-  
-+ CalendarGroup: Fixed bug where selected dates passed to constructor 
-  were not represented in selectedDates
-  
-+ Calendar2up: Now displays correctly in Opera 9 
-
-*** version 0.11.0 *** 
-
-+ DateMath: DateMath.add now properly adds weeks
-
-+ DateMath: between() function added
-
-+ DateMath: getWeekNumber() fixed to take starting day of week into
-  account
-  
-+ All references to Calendar's built in CSS class handlers are 
-  removed, replaced with calls to Dom utility (addClass, removeClass)
-  
-+ Several CSS class constants now have clearer names
-
-+ All CSS classes are now properly namespaced to avoid CSS conflicts
-
-+ Fixed table:hover bug in CSS
-
-+ Calendar no longer requires the container ID and variable name to 
-  match in order for month navigation to function properly
-
-+ Calendar month navigation arrows are now represented as 
-  background images 
-
-*** version 0.10.0 *** 
-
-+ Major performance improvements from attaching DOM events to 
-  associated table cells only once, when the Calendar shell is built
-  
-+ DOM events for mouseover/mouseout are now fired for all browsers 
- (not just Internet Explorer)
- 
-+ Reset functionality bug fixed for 2-up Calendar view 
-
-*** version 0.9.0 *** 
-
-* Initial release
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/calendar/assets/calendar-core.css b/eclipse.org-common/yui/2.6.0/build/calendar/assets/calendar-core.css
deleted file mode 100644
index 2fb51e4..0000000
--- a/eclipse.org-common/yui/2.6.0/build/calendar/assets/calendar-core.css
+++ /dev/null
@@ -1,132 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * CORE
- *
- * This is the set of CSS rules required by Calendar to drive core functionality and structure.
- * Changes to these rules may result in the Calendar not functioning or rendering correctly.
- *
- * They should not be modified for skinning.
- **/
- 
-/* CALENDAR BOUNDING BOX */
-.yui-calcontainer {
-	position:relative;
-	float:left;
-	_overflow:hidden; /* IE6 only, to clip iframe shim */
-}
-
-/* IFRAME SHIM */
-.yui-calcontainer iframe {
-	position:absolute;
-	border:none;
-	margin:0;padding:0;
-	z-index:0;
-	width:100%;
-	height:100%;
-	left:0px;
-	top:0px;
-}
-
-/* IFRAME SHIM IE6 only */
-.yui-calcontainer iframe.fixedsize {
-	width:50em;
-	height:50em;
-	top:-1px;
-	left:-1px;
-}
-
-/* BOUNDING BOX FOR EACH CALENDAR GROUP PAGE */
-.yui-calcontainer.multi .groupcal {
-	z-index:1;
-	float:left;
-	position:relative;
-}
-
-/* TITLE BAR */
-.yui-calcontainer .title {
-	position:relative;
-	z-index:1;
-}
-
-/* CLOSE ICON CONTAINER */
-.yui-calcontainer .close-icon {
-	position:absolute;
-	z-index:1;
-	text-indent:-10000em;
-	overflow:hidden;
-}
-
-/* CALENDAR TABLE */
-.yui-calendar {
-	position:relative;
-}
-
-/* NAVBAR LEFT ARROW CONTAINER */
-.yui-calendar .calnavleft {
-	position:absolute;
-	z-index:1;
-	text-indent:-10000em;
-	overflow:hidden;
-}
-
-/* NAVBAR RIGHT ARROW CONTAINER */
-.yui-calendar .calnavright {
-	position:absolute;
-	z-index:1;
-	text-indent:-10000em;
-	overflow:hidden;
-}
-
-/* NAVBAR TEXT CONTAINER */
-.yui-calendar .calheader {
-	position:relative;
-	width:100%;
-	text-align:center;
-}
-
-/* CalendarNavigator */
-.yui-calcontainer .yui-cal-nav-mask {
-	position:absolute;
-	z-index:2;
-	margin:0;
-	padding:0;
-	width:100%;
-	height:100%;
-	_width:0;    /* IE6, IE7 quirks - width/height set programmatically to match container */
-	_height:0;
-	left:0;
-	top:0;
-	display:none;
-}
-
-/* NAVIGATOR BOUNDING BOX */
-.yui-calcontainer .yui-cal-nav {
-	position:absolute;
-	z-index:3;
-	top:0;
-	display:none;
-}
-
-/* NAVIGATOR BUTTONS (based on button-core.css) */
-.yui-calcontainer .yui-cal-nav .yui-cal-nav-btn  {
-	display: -moz-inline-box; /* Gecko */
-	display: inline-block; /* IE, Opera and Safari */
-}
-
-.yui-calcontainer .yui-cal-nav .yui-cal-nav-btn button {
-	display: block;
-	*display: inline-block; /* IE */
-	*overflow: visible; /* Remove superfluous padding for IE */
-	border: none;
-	background-color: transparent;
-	cursor: pointer;
-}
-
-/* Specific changes for calendar running under fonts/reset */
-.yui-calendar .calbody a:hover {background:inherit;}
-p#clear {clear:left; padding-top:10px;}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/calendar/assets/calendar.css b/eclipse.org-common/yui/2.6.0/build/calendar/assets/calendar.css
deleted file mode 100644
index f01446f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/calendar/assets/calendar.css
+++ /dev/null
@@ -1,320 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-calcontainer {
-	position:relative;
-	padding:5px;
-	background-color:#F7F9FB;
-	border:1px solid #7B9EBD;
-	float:left;
-	_overflow:hidden; /* IE6 only, to clip iframe shim */
-}
-
-.yui-calcontainer iframe {
-	position:absolute;
-	border:none;
-	margin:0;padding:0;
-	z-index:0;
-	width:100%;
-	height:100%;
-	left:0px;
-	top:0px;
-}
-
-/* IE6 only */
-.yui-calcontainer iframe.fixedsize {
-	width:50em;
-	height:50em;
-	top:-1px;
-	left:-1px;
-}
-
-.yui-calcontainer.multi {
-	padding:0;
-}
-
-.yui-calcontainer.multi .groupcal {
-	padding:5px;
-	background-color:transparent;
-	z-index:1;
-	float:left;
-	position:relative;
-	border:none;
-}
-
-.yui-calcontainer .title {
-	font:100% sans-serif;
-	color:#000;
-	font-weight:bold;
-	margin-bottom:5px;
-	height:25px;
-	position:absolute;
-	top:3px;left:5px;
-	z-index:1;
-}
-
-.yui-calcontainer .close-icon {
-	position:absolute;
-	overflow:hidden;
-	text-indent:-10000em;
-	right:3px;
-	top:3px;
-	border:none;
-	z-index:1;
-}
-
-.yui-calcontainer .calclose {
-	background: url("calx.gif") no-repeat;
-	width:17px;
-	height:13px;
-	cursor:pointer;	
-}
-
-/* Calendar element styles */
-
-.yui-calendar {
-	font:100% sans-serif;
-	text-align:center;
-	border-spacing:0;
-	border-collapse:separate;
-	position:relative;
-}
-
-.yui-calcontainer.withtitle {
-	padding-top:1.5em;
-}
-
-.yui-calendar .calnavleft {
-	position:absolute;
-	overflow:hidden;
-	text-indent:-10000em;
-	cursor:pointer;
-	top:2px;
-	bottom:0;
-	width:9px;
-	height:12px;
-	left:2px;
-	z-index:1;
-	background: url("callt.gif") no-repeat;
-}
-
-.yui-calendar .calnavright {
-	position:absolute;
-	overflow:hidden;
-	text-indent:-10000em;
-	cursor:pointer;
-	top:2px;
-	bottom:0;
-	width:9px;
-	height:12px;
-	right:2px;
-	z-index:1;
-	background: url("calrt.gif") no-repeat;
-}
-
-.yui-calendar td.calcell {
-	padding:.1em .2em;
-	border:1px solid #E0E0E0;
-	text-align:center;
-}
-
-.yui-calendar td.calcell a {
-	color:#003DB8;
-	text-decoration:none;
-}
-
-.yui-calendar td.calcell.today {
-	border:1px solid #000;
-}
-
-.yui-calendar td.calcell.oom {
-	cursor:default;
-	color:#999;
-	background-color:#EEE;
-	border:1px solid #E0E0E0;
-}
-
-.yui-calendar td.calcell.selected {
-	color:#003DB8;
-	background-color:#FFF19F;
-	border:1px solid #FF9900;
-}
-
-.yui-calendar td.calcell.calcellhover {
-	cursor:pointer;
-	color:#FFF;
-	background-color:#FF9900;
-	border:1px solid #FF9900;
-}
-
-.yui-calendar td.calcell.calcellhover a {
-	color:#FFF;
-}
-
-.yui-calendar td.calcell.restricted {
-	text-decoration:line-through;
-}
-
-.yui-calendar td.calcell.previous {
-	color:#CCC;
-}
-
-.yui-calendar td.calcell.highlight1 { background-color:#CCFF99; }
-.yui-calendar td.calcell.highlight2 { background-color:#99CCFF; }
-.yui-calendar td.calcell.highlight3 { background-color:#FFCCCC; }
-.yui-calendar td.calcell.highlight4 { background-color:#CCFF99; }
-
-.yui-calendar .calhead {
-	border:1px solid #E0E0E0;
-	vertical-align:middle;
-	background-color:#FFF;
-}
-
-.yui-calendar .calheader {
-	position:relative;
-	width:100%;
-	text-align:center;
-}
-
-.yui-calendar .calheader img {
-	border:none;
-}
-
-.yui-calendar .calweekdaycell {
-	color:#666;
-	font-weight:normal;
-	text-align:center;
-	width:1.5em;
-}
-
-.yui-calendar .calfoot {
-	background-color:#EEE;
-}
-
-.yui-calendar .calrowhead, .yui-calendar .calrowfoot {
-	color:#666;
-	font-size:9px;
-	font-style:italic;
-	font-weight:normal;
-	width:15px;
-}
-
-.yui-calendar .calrowhead {
-	border-right-width:2px;
-}
-
-/* CalendarNavigator */
-.yui-calendar a.calnav {
-	_position:relative;
-	padding-left:2px;
-	padding-right:2px;
-	text-decoration:none;
-	color:#000;
-}
-
-.yui-calendar a.calnav:hover {
-	border:1px solid #003366;
-	background-color:#6699cc;
-	background: url(calgrad.png) repeat-x;
-	color:#fff;
-	cursor:pointer;
-}
-
-.yui-calcontainer .yui-cal-nav-mask {
-	position:absolute;
-	z-index:2;
-	display:none;
-
-	margin:0;
-	padding:0;
-
-	left:0;
-	top:0;
-	width:100%;
-	height:100%;
-	_width:0;    /* IE6, IE7 Quirks - width/height set programmatically to match container */
-	_height:0;
-
-	background-color:#000;
-	opacity:0.25;
-	*filter:alpha(opacity=25);
-}
-
-.yui-calcontainer .yui-cal-nav {
-	position:absolute;
-	z-index:3;
-	display:none;
-
-	padding:0;
-	top:1.5em;
-	left:50%;
-	width:12em;
-	margin-left:-6em;
-
-	border:1px solid #7B9EBD;
-	background-color:#F7F9FB;
-	font-size:93%;
-}
-
-.yui-calcontainer.withtitle .yui-cal-nav {
-	top:3.5em;
-}
-
-.yui-calcontainer .yui-cal-nav-y,
-.yui-calcontainer .yui-cal-nav-m,
-.yui-calcontainer .yui-cal-nav-b {
-	padding:2px 5px 2px 5px;
-}
-
-.yui-calcontainer .yui-cal-nav-b {
-	text-align:center;
-}
-
-.yui-calcontainer .yui-cal-nav-e {
-	margin-top:2px;
-	padding:2px;
-	background-color:#EDF5FF;
-	border-top:1px solid black;
-	display:none;
-}
-
-.yui-calcontainer .yui-cal-nav label {
-	display:block;
-	font-weight:bold;
-}
-
-.yui-calcontainer .yui-cal-nav-mc {
-	width:100%;
-	_width:auto; /* IE6 doesn't like width 100% */
-}
-
-.yui-calcontainer .yui-cal-nav-y input.yui-invalid {
-	background-color:#FFEE69;
-	border: 1px solid #000;
-}
-
-.yui-calcontainer .yui-cal-nav-yc {
-	width:3em;
-}
-
-.yui-calcontainer .yui-cal-nav-b button {
-	font-size:93%;
-	text-decoration:none;
-	cursor: pointer;
-	background-color: #79b2ea;
-	border: 1px solid #003366;
-	border-top-color:#FFF;
-	border-left-color:#FFF;
-	margin:1px;
-}
-
-.yui-calcontainer .yui-cal-nav-b .yui-default button {
-	/* not implemented */
-}
-
-/* Specific changes for calendar running under fonts/reset */
-.yui-calendar .calbody a:hover {background:inherit;}
-p#clear {clear:left; padding-top:10px;}
diff --git a/eclipse.org-common/yui/2.6.0/build/calendar/assets/calgrad.png b/eclipse.org-common/yui/2.6.0/build/calendar/assets/calgrad.png
deleted file mode 100644
index 9be3d95..0000000
--- a/eclipse.org-common/yui/2.6.0/build/calendar/assets/calgrad.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/calendar/assets/callt.gif b/eclipse.org-common/yui/2.6.0/build/calendar/assets/callt.gif
deleted file mode 100644
index a6cc8da..0000000
--- a/eclipse.org-common/yui/2.6.0/build/calendar/assets/callt.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/calendar/assets/calrt.gif b/eclipse.org-common/yui/2.6.0/build/calendar/assets/calrt.gif
deleted file mode 100644
index ee137b2..0000000
--- a/eclipse.org-common/yui/2.6.0/build/calendar/assets/calrt.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/calendar/assets/calx.gif b/eclipse.org-common/yui/2.6.0/build/calendar/assets/calx.gif
deleted file mode 100644
index 27e7bc3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/calendar/assets/calx.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/calendar/assets/skins/sam/calendar-skin.css b/eclipse.org-common/yui/2.6.0/build/calendar/assets/skins/sam/calendar-skin.css
deleted file mode 100644
index d498919..0000000
--- a/eclipse.org-common/yui/2.6.0/build/calendar/assets/skins/sam/calendar-skin.css
+++ /dev/null
@@ -1,361 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * SAM
- *
- * Skin colors used:
- *
- * - Control Border : 808080
- * - Control Chrome : f2f2f2
- * - Cell Borders : cccccc
- * - Normal Cell BG : ffffff
- * - Date Links : 0066cc
- * - Selected Cells BG : b3d4ff
- * - Cell Hover BG : 426fd9
- * - Disabled BG : cccccc
- * - Disabled Text Color : a6a6a6
- **/
-
-/* CALENDAR BOUNDING BOX */
-.yui-skin-sam .yui-calcontainer {
-	background-color:#f2f2f2;
-	border:1px solid #808080;
-	padding:10px;
-}
-
-/* CALENDARGROUP BOUNDING BOX */
-.yui-skin-sam .yui-calcontainer.multi {
-	padding:0 5px 0 5px;
-}
-
-/* BOUNDING BOX FOR EACH CALENDAR GROUP PAGE */
-.yui-skin-sam .yui-calcontainer.multi .groupcal {
-	background-color:transparent;
-	border:none;
-	padding:10px 5px 10px 5px;
-	margin:0;
-}
-
-/* TITLE BAR */
-.yui-skin-sam .yui-calcontainer .title {
-	background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
-	border-bottom:1px solid #cccccc;
-	font:100% sans-serif;
-	color:#000;
-	font-weight:bold;
-	height:auto;
-	padding:.4em;
-	margin:0 -10px 10px -10px;
-	top:0;
-	left:0;
-	text-align:left;
-}
-
-.yui-skin-sam .yui-calcontainer.multi .title {
-	margin:0 -5px 0 -5px;
-}
-
-.yui-skin-sam .yui-calcontainer.withtitle {
-	padding-top:0;
-}
-
-/* CLOSE BUTTON */
-.yui-skin-sam .yui-calcontainer .calclose {
-	background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -300px;
-	width:25px;
-	height:15px;
-	top:.4em;
-	right:.4em;
-	cursor:pointer;
-}
-
-/* CALENDAR TABLE */
-.yui-skin-sam .yui-calendar {
-	border-spacing:0;
-	border-collapse:collapse;
-	font:100% sans-serif;
-	text-align:center;
-	margin:0;
-}
-
-/* NAVBAR BOUNDING BOX */
-.yui-skin-sam .yui-calendar .calhead {
-	background:transparent;
-	border:none;
-	vertical-align:middle;
-	padding:0;
-}
-
-/* NAVBAR TEXT CONTAINER */
-.yui-skin-sam .yui-calendar .calheader {
-	background:transparent;
-	font-weight:bold;
-	padding:0 0 .6em 0;
-	text-align:center;
-}
-
-.yui-skin-sam .yui-calendar .calheader img {
-	border:none;
-}
-
-/* NAVBAR LEFT ARROW */
-.yui-skin-sam .yui-calendar .calnavleft {
-	background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -450px;
-	width:25px;
-	height:15px;
-	top:0;
-	bottom:0;
-	left:-10px;
-	margin-left:.4em;
-	cursor:pointer;
-}
-
-/* NAVBAR RIGHT ARROW */
-.yui-skin-sam .yui-calendar .calnavright {
-	background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -500px;
-	width:25px;
-	height:15px;
-	top:0;
-	bottom:0;
-	right:-10px;
-	margin-right:.4em;
-	cursor:pointer;
-}
-
-/* WEEKDAY HEADER ROW */
-.yui-skin-sam .yui-calendar .calweekdayrow {
-	height:2em;
-}
-
-.yui-skin-sam .yui-calendar .calweekdayrow th {
-	padding:0;
-	border:none;
-}
-
-/* WEEKDAY (Su, Mo, Tu...) HEADER CELLS */
-.yui-skin-sam .yui-calendar .calweekdaycell {
-	color:#000;
-	font-weight:bold;
-	text-align:center;
-	width:2em;
-}
-
-/* CALENDAR FOOTER. NOT IMPLEMENTED BY DEFAULT */
-.yui-skin-sam .yui-calendar .calfoot {
-	background-color:#f2f2f2;
-}
-
-/* WEEK NUMBERS (ROW HEADERS/FOOTERS) */
-.yui-skin-sam .yui-calendar .calrowhead, .yui-skin-sam .yui-calendar .calrowfoot {
-	color:#a6a6a6;
-	font-size:85%;
-	font-style:normal;
-	font-weight:normal;
-	border:none;
-}
-
-.yui-skin-sam .yui-calendar .calrowhead {
-	text-align:right;
-	padding:0 2px 0 0;
-}
-
-.yui-skin-sam .yui-calendar .calrowfoot {
-	text-align:left;
-	padding:0 0 0 2px;
-}
-
-/* NORMAL CELLS */
-.yui-skin-sam .yui-calendar td.calcell {
-	border:1px solid #cccccc;
-	background:#fff;
-	padding:1px;
-	height:1.6em;
-	line-height:1.6em; /* set line height equal to cell height to center vertically */
-	text-align:center;
-	white-space:nowrap;
-}
-
-/* LINK INSIDE NORMAL CELLS */
-.yui-skin-sam .yui-calendar td.calcell a {
-	color:#0066cc;
-	display:block;
-	height:100%;
-	text-decoration:none;
-}
-
-/* TODAY'S DATE */
-.yui-skin-sam .yui-calendar td.calcell.today {
-	background-color:#000;
-}
-
-.yui-skin-sam .yui-calendar td.calcell.today a {
-	background-color:#fff;
-}
-
-/* OOM DATES */
-.yui-skin-sam .yui-calendar td.calcell.oom {
-	background-color:#cccccc;
-	color:#a6a6a6;
-	cursor:default;
-}
-
-/* SELECTED DATE */
-.yui-skin-sam .yui-calendar td.calcell.selected {
-	background-color:#fff;
-	color:#000;
-}
-
-.yui-skin-sam .yui-calendar td.calcell.selected a {
-	background-color:#b3d4ff;
-	color:#000;
-}
-
-/* HOVER DATE */
-.yui-skin-sam .yui-calendar td.calcell.calcellhover {
-	background-color:#426fd9;
-	color:#fff;
-	cursor:pointer;
-}
-
-.yui-skin-sam .yui-calendar td.calcell.calcellhover a {
-	background-color:#426fd9;
-	color:#fff;
-}
-
-/* DEFAULT OOB DATES */
-.yui-skin-sam .yui-calendar td.calcell.previous {
-	color:#e0e0e0;
-}
-
-/* CUSTOM RENDERERS */
-.yui-skin-sam .yui-calendar td.calcell.restricted { text-decoration:line-through; }
-.yui-skin-sam .yui-calendar td.calcell.highlight1 { background-color:#ccff99; }
-.yui-skin-sam .yui-calendar td.calcell.highlight2 { background-color:#99ccff; }
-.yui-skin-sam .yui-calendar td.calcell.highlight3 { background-color:#ffcccc; }
-.yui-skin-sam .yui-calendar td.calcell.highlight4 { background-color:#ccff99; }
-
-/* CalendarNavigator */
-
-/* MONTH/YEAR LABEL */
-.yui-skin-sam .yui-calendar a.calnav { 
-	border: 1px solid #f2f2f2;
-	padding:0 4px;
-	text-decoration:none;
-	color:#000;
-	zoom:1;
-}
-
-.yui-skin-sam .yui-calendar a.calnav:hover { 
-	background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
-	border-color:#A0A0A0;
-	cursor:pointer;
-}
-
-/* NAVIGATOR MASK */
-.yui-skin-sam .yui-calcontainer .yui-cal-nav-mask {
-	background-color:#000;
-	opacity:0.25;
-	*filter:alpha(opacity=25); /* IE */
-}
-
-/* NAVIGATOR BOUNDING BOX */
-.yui-skin-sam .yui-calcontainer .yui-cal-nav {
-	font-family:arial,helvetica,clean,sans-serif;
-	font-size:93%;
-	border:1px solid #808080;
-	left:50%;
-	margin-left:-7em;
-	width:14em;
-	padding:0;
-	top:2.5em;
-	background-color:#f2f2f2;
-}
-
-.yui-skin-sam .yui-calcontainer.withtitle .yui-cal-nav {
-	top:4.5em;
-}
-
-/* NAVIGATOR BOUNDING BOX */
-.yui-skin-sam .yui-calcontainer.multi .yui-cal-nav {
-	width:16em;
-	margin-left:-8em;
-}
-
-/* NAVIGATOR YEAR/MONTH/BUTTON/ERROR BOUNDING BLOCKS */
-.yui-skin-sam .yui-calcontainer .yui-cal-nav-y,
-.yui-skin-sam .yui-calcontainer .yui-cal-nav-m,
-.yui-skin-sam .yui-calcontainer .yui-cal-nav-b {
-	padding:5px 10px 5px 10px;
-}
-
-.yui-skin-sam .yui-calcontainer .yui-cal-nav-b {
-	text-align:center;
-}
-
-.yui-skin-sam .yui-calcontainer .yui-cal-nav-e {
-	margin-top:5px;
-	padding:5px;
-	background-color:#EDF5FF;
-	border-top:1px solid black;
-	display:none;
-}
-
-/* NAVIGATOR LABELS */
-.yui-skin-sam .yui-calcontainer .yui-cal-nav label {
-	display:block;
-	font-weight:bold;
-}
-
-/* NAVIGATOR MONTH CONTROL */
-.yui-skin-sam .yui-calcontainer .yui-cal-nav-mc {
-	width:100%;
-	_width:auto; /* IE6, IE7 Quirks don't handle 100% well */
-}
-
-/* NAVIGATOR MONTH CONTROL, VALIDATION ERROR */
-.yui-skin-sam .yui-calcontainer .yui-cal-nav-y input.yui-invalid {
-	background-color:#FFEE69;
-	border: 1px solid #000;
-}
-
-/* NAVIGATOR YEAR CONTROL */
-.yui-skin-sam .yui-calcontainer .yui-cal-nav-yc {
-	width:4em;
-}
-
-/* NAVIGATOR BUTTONS */
-
-/* BUTTON WRAPPER */
-.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn {
-	border:1px solid #808080;
-	background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
-	background-color:#ccc;
-	margin: auto .15em;
-}
-
-/* BUTTON (based on button-skin.css) */
-.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn button {
-	padding:0 8px;
-	font-size:93%;
-	line-height: 2;  /* ~24px */
-	*line-height: 1.7; /* For IE */
-	min-height: 2em; /* For Gecko */
-	*min-height: auto; /* For IE */
-	color: #000;
-}
-
-/* DEFAULT BUTTONS */
-/* NOTE: IE6 will only pickup the yui-default specifier from the multiple class specifier */
-.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn.yui-default {
-	border:1px solid #304369;
-	background-color: #426fd9;
-	background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1400px;
-}
-
-.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn.yui-default button {
-	color:#fff;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/calendar/assets/skins/sam/calendar.css b/eclipse.org-common/yui/2.6.0/build/calendar/assets/skins/sam/calendar.css
deleted file mode 100644
index 8da25a4..0000000
--- a/eclipse.org-common/yui/2.6.0/build/calendar/assets/skins/sam/calendar.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-calcontainer{position:relative;float:left;_overflow:hidden;}.yui-calcontainer iframe{position:absolute;border:none;margin:0;padding:0;z-index:0;width:100%;height:100%;left:0px;top:0px;}.yui-calcontainer iframe.fixedsize{width:50em;height:50em;top:-1px;left:-1px;}.yui-calcontainer.multi .groupcal{z-index:1;float:left;position:relative;}.yui-calcontainer .title{position:relative;z-index:1;}.yui-calcontainer .close-icon{position:absolute;z-index:1;text-indent:-10000em;overflow:hidden;}.yui-calendar{position:relative;}.yui-calendar .calnavleft{position:absolute;z-index:1;text-indent:-10000em;overflow:hidden;}.yui-calendar .calnavright{position:absolute;z-index:1;text-indent:-10000em;overflow:hidden;}.yui-calendar .calheader{position:relative;width:100%;text-align:center;}.yui-calcontainer .yui-cal-nav-mask{position:absolute;z-index:2;margin:0;padding:0;width:100%;height:100%;_width:0;_height:0;left:0;top:0;display:none;}.yui-calcontainer .yui-cal-nav{position:absolute;z-index:3;top:0;display:none;}.yui-calcontainer .yui-cal-nav .yui-cal-nav-btn{display:-moz-inline-box;display:inline-block;}.yui-calcontainer .yui-cal-nav .yui-cal-nav-btn button{display:block;*display:inline-block;*overflow:visible;border:none;background-color:transparent;cursor:pointer;}.yui-calendar .calbody a:hover{background:inherit;}p#clear{clear:left;padding-top:10px;}.yui-skin-sam .yui-calcontainer{background-color:#f2f2f2;border:1px solid #808080;padding:10px;}.yui-skin-sam .yui-calcontainer.multi{padding:0 5px 0 5px;}.yui-skin-sam .yui-calcontainer.multi .groupcal{background-color:transparent;border:none;padding:10px 5px 10px 5px;margin:0;}.yui-skin-sam .yui-calcontainer .title{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;border-bottom:1px solid #cccccc;font:100% sans-serif;color:#000;font-weight:bold;height:auto;padding:.4em;margin:0 -10px 10px -10px;top:0;left:0;text-align:left;}.yui-skin-sam .yui-calcontainer.multi .title{margin:0 -5px 0 -5px;}.yui-skin-sam .yui-calcontainer.withtitle{padding-top:0;}.yui-skin-sam .yui-calcontainer .calclose{background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -300px;width:25px;height:15px;top:.4em;right:.4em;cursor:pointer;}.yui-skin-sam .yui-calendar{border-spacing:0;border-collapse:collapse;font:100% sans-serif;text-align:center;margin:0;}.yui-skin-sam .yui-calendar .calhead{background:transparent;border:none;vertical-align:middle;padding:0;}.yui-skin-sam .yui-calendar .calheader{background:transparent;font-weight:bold;padding:0 0 .6em 0;text-align:center;}.yui-skin-sam .yui-calendar .calheader img{border:none;}.yui-skin-sam .yui-calendar .calnavleft{background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -450px;width:25px;height:15px;top:0;bottom:0;left:-10px;margin-left:.4em;cursor:pointer;}.yui-skin-sam .yui-calendar .calnavright{background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -500px;width:25px;height:15px;top:0;bottom:0;right:-10px;margin-right:.4em;cursor:pointer;}.yui-skin-sam .yui-calendar .calweekdayrow{height:2em;}.yui-skin-sam .yui-calendar .calweekdayrow th{padding:0;border:none;}.yui-skin-sam .yui-calendar .calweekdaycell{color:#000;font-weight:bold;text-align:center;width:2em;}.yui-skin-sam .yui-calendar .calfoot{background-color:#f2f2f2;}.yui-skin-sam .yui-calendar .calrowhead,.yui-skin-sam .yui-calendar .calrowfoot{color:#a6a6a6;font-size:85%;font-style:normal;font-weight:normal;border:none;}.yui-skin-sam .yui-calendar .calrowhead{text-align:right;padding:0 2px 0 0;}.yui-skin-sam .yui-calendar .calrowfoot{text-align:left;padding:0 0 0 2px;}.yui-skin-sam .yui-calendar td.calcell{border:1px solid #cccccc;background:#fff;padding:1px;height:1.6em;line-height:1.6em;text-align:center;white-space:nowrap;}.yui-skin-sam .yui-calendar td.calcell a{color:#0066cc;display:block;height:100%;text-decoration:none;}.yui-skin-sam .yui-calendar td.calcell.today{background-color:#000;}.yui-skin-sam .yui-calendar td.calcell.today a{background-color:#fff;}.yui-skin-sam .yui-calendar td.calcell.oom{background-color:#cccccc;color:#a6a6a6;cursor:default;}.yui-skin-sam .yui-calendar td.calcell.selected{background-color:#fff;color:#000;}.yui-skin-sam .yui-calendar td.calcell.selected a{background-color:#b3d4ff;color:#000;}.yui-skin-sam .yui-calendar td.calcell.calcellhover{background-color:#426fd9;color:#fff;cursor:pointer;}.yui-skin-sam .yui-calendar td.calcell.calcellhover a{background-color:#426fd9;color:#fff;}.yui-skin-sam .yui-calendar td.calcell.previous{color:#e0e0e0;}.yui-skin-sam .yui-calendar td.calcell.restricted{text-decoration:line-through;}.yui-skin-sam .yui-calendar td.calcell.highlight1{background-color:#ccff99;}.yui-skin-sam .yui-calendar td.calcell.highlight2{background-color:#99ccff;}.yui-skin-sam .yui-calendar td.calcell.highlight3{background-color:#ffcccc;}.yui-skin-sam .yui-calendar td.calcell.highlight4{background-color:#ccff99;}.yui-skin-sam .yui-calendar a.calnav{border:1px solid #f2f2f2;padding:0 4px;text-decoration:none;color:#000;zoom:1;}.yui-skin-sam .yui-calendar a.calnav:hover{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;border-color:#A0A0A0;cursor:pointer;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-mask{background-color:#000;opacity:0.25;*filter:alpha(opacity=25);}.yui-skin-sam .yui-calcontainer .yui-cal-nav{font-family:arial,helvetica,clean,sans-serif;font-size:93%;border:1px solid #808080;left:50%;margin-left:-7em;width:14em;padding:0;top:2.5em;background-color:#f2f2f2;}.yui-skin-sam .yui-calcontainer.withtitle .yui-cal-nav{top:4.5em;}.yui-skin-sam .yui-calcontainer.multi .yui-cal-nav{width:16em;margin-left:-8em;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-y,.yui-skin-sam .yui-calcontainer .yui-cal-nav-m,.yui-skin-sam .yui-calcontainer .yui-cal-nav-b{padding:5px 10px 5px 10px;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-b{text-align:center;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-e{margin-top:5px;padding:5px;background-color:#EDF5FF;border-top:1px solid black;display:none;}.yui-skin-sam .yui-calcontainer .yui-cal-nav label{display:block;font-weight:bold;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-mc{width:100%;_width:auto;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-y input.yui-invalid{background-color:#FFEE69;border:1px solid #000;}.yui-skin-sam .yui-calcontainer .yui-cal-nav-yc{width:4em;}.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn{border:1px solid #808080;background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;background-color:#ccc;margin:auto .15em;}.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn button{padding:0 8px;font-size:93%;line-height:2;*line-height:1.7;min-height:2em;*min-height:auto;color:#000;}.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn.yui-default{border:1px solid #304369;background-color:#426fd9;background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1400px;}.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn.yui-default button{color:#fff;}
diff --git a/eclipse.org-common/yui/2.6.0/build/calendar/calendar-debug.js b/eclipse.org-common/yui/2.6.0/build/calendar/calendar-debug.js
deleted file mode 100644
index 689843c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/calendar/calendar-debug.js
+++ /dev/null
@@ -1,7168 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function () {
-
-    /**
-    * Config is a utility used within an Object to allow the implementer to
-    * maintain a list of local configuration properties and listen for changes 
-    * to those properties dynamically using CustomEvent. The initial values are 
-    * also maintained so that the configuration can be reset at any given point 
-    * to its initial state.
-    * @namespace YAHOO.util
-    * @class Config
-    * @constructor
-    * @param {Object} owner The owner Object to which this Config Object belongs
-    */
-    YAHOO.util.Config = function (owner) {
-
-        if (owner) {
-            this.init(owner);
-        }
-
-        if (!owner) {  YAHOO.log("No owner specified for Config object", "error", "Config"); }
-
-    };
-
-
-    var Lang = YAHOO.lang,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Config = YAHOO.util.Config;
-
-
-    /**
-     * Constant representing the CustomEvent type for the config changed event.
-     * @property YAHOO.util.Config.CONFIG_CHANGED_EVENT
-     * @private
-     * @static
-     * @final
-     */
-    Config.CONFIG_CHANGED_EVENT = "configChanged";
-    
-    /**
-     * Constant representing the boolean type string
-     * @property YAHOO.util.Config.BOOLEAN_TYPE
-     * @private
-     * @static
-     * @final
-     */
-    Config.BOOLEAN_TYPE = "boolean";
-    
-    Config.prototype = {
-     
-        /**
-        * Object reference to the owner of this Config Object
-        * @property owner
-        * @type Object
-        */
-        owner: null,
-        
-        /**
-        * Boolean flag that specifies whether a queue is currently 
-        * being executed
-        * @property queueInProgress
-        * @type Boolean
-        */
-        queueInProgress: false,
-        
-        /**
-        * Maintains the local collection of configuration property objects and 
-        * their specified values
-        * @property config
-        * @private
-        * @type Object
-        */ 
-        config: null,
-        
-        /**
-        * Maintains the local collection of configuration property objects as 
-        * they were initially applied.
-        * This object is used when resetting a property.
-        * @property initialConfig
-        * @private
-        * @type Object
-        */ 
-        initialConfig: null,
-        
-        /**
-        * Maintains the local, normalized CustomEvent queue
-        * @property eventQueue
-        * @private
-        * @type Object
-        */ 
-        eventQueue: null,
-        
-        /**
-        * Custom Event, notifying subscribers when Config properties are set 
-        * (setProperty is called without the silent flag
-        * @event configChangedEvent
-        */
-        configChangedEvent: null,
-    
-        /**
-        * Initializes the configuration Object and all of its local members.
-        * @method init
-        * @param {Object} owner The owner Object to which this Config 
-        * Object belongs
-        */
-        init: function (owner) {
-    
-            this.owner = owner;
-    
-            this.configChangedEvent = 
-                this.createEvent(Config.CONFIG_CHANGED_EVENT);
-    
-            this.configChangedEvent.signature = CustomEvent.LIST;
-            this.queueInProgress = false;
-            this.config = {};
-            this.initialConfig = {};
-            this.eventQueue = [];
-        
-        },
-        
-        /**
-        * Validates that the value passed in is a Boolean.
-        * @method checkBoolean
-        * @param {Object} val The value to validate
-        * @return {Boolean} true, if the value is valid
-        */ 
-        checkBoolean: function (val) {
-            return (typeof val == Config.BOOLEAN_TYPE);
-        },
-        
-        /**
-        * Validates that the value passed in is a number.
-        * @method checkNumber
-        * @param {Object} val The value to validate
-        * @return {Boolean} true, if the value is valid
-        */
-        checkNumber: function (val) {
-            return (!isNaN(val));
-        },
-        
-        /**
-        * Fires a configuration property event using the specified value. 
-        * @method fireEvent
-        * @private
-        * @param {String} key The configuration property's name
-        * @param {value} Object The value of the correct type for the property
-        */ 
-        fireEvent: function ( key, value ) {
-            YAHOO.log("Firing Config event: " + key + "=" + value, "info", "Config");
-            var property = this.config[key];
-        
-            if (property && property.event) {
-                property.event.fire(value);
-            } 
-        },
-        
-        /**
-        * Adds a property to the Config Object's private config hash.
-        * @method addProperty
-        * @param {String} key The configuration property's name
-        * @param {Object} propertyObject The Object containing all of this 
-        * property's arguments
-        */
-        addProperty: function ( key, propertyObject ) {
-            key = key.toLowerCase();
-            YAHOO.log("Added property: " + key, "info", "Config");
-        
-            this.config[key] = propertyObject;
-        
-            propertyObject.event = this.createEvent(key, { scope: this.owner });
-            propertyObject.event.signature = CustomEvent.LIST;
-            
-            
-            propertyObject.key = key;
-        
-            if (propertyObject.handler) {
-                propertyObject.event.subscribe(propertyObject.handler, 
-                    this.owner);
-            }
-        
-            this.setProperty(key, propertyObject.value, true);
-            
-            if (! propertyObject.suppressEvent) {
-                this.queueProperty(key, propertyObject.value);
-            }
-            
-        },
-        
-        /**
-        * Returns a key-value configuration map of the values currently set in  
-        * the Config Object.
-        * @method getConfig
-        * @return {Object} The current config, represented in a key-value map
-        */
-        getConfig: function () {
-        
-            var cfg = {},
-                currCfg = this.config,
-                prop,
-                property;
-                
-            for (prop in currCfg) {
-                if (Lang.hasOwnProperty(currCfg, prop)) {
-                    property = currCfg[prop];
-                    if (property && property.event) {
-                        cfg[prop] = property.value;
-                    }
-                }
-            }
-
-            return cfg;
-        },
-        
-        /**
-        * Returns the value of specified property.
-        * @method getProperty
-        * @param {String} key The name of the property
-        * @return {Object}  The value of the specified property
-        */
-        getProperty: function (key) {
-            var property = this.config[key.toLowerCase()];
-            if (property && property.event) {
-                return property.value;
-            } else {
-                return undefined;
-            }
-        },
-        
-        /**
-        * Resets the specified property's value to its initial value.
-        * @method resetProperty
-        * @param {String} key The name of the property
-        * @return {Boolean} True is the property was reset, false if not
-        */
-        resetProperty: function (key) {
-    
-            key = key.toLowerCase();
-        
-            var property = this.config[key];
-    
-            if (property && property.event) {
-    
-                if (this.initialConfig[key] && 
-                    !Lang.isUndefined(this.initialConfig[key])) {
-    
-                    this.setProperty(key, this.initialConfig[key]);
-
-                    return true;
-    
-                }
-    
-            } else {
-    
-                return false;
-            }
-    
-        },
-        
-        /**
-        * Sets the value of a property. If the silent property is passed as 
-        * true, the property's event will not be fired.
-        * @method setProperty
-        * @param {String} key The name of the property
-        * @param {String} value The value to set the property to
-        * @param {Boolean} silent Whether the value should be set silently, 
-        * without firing the property event.
-        * @return {Boolean} True, if the set was successful, false if it failed.
-        */
-        setProperty: function (key, value, silent) {
-        
-            var property;
-        
-            key = key.toLowerCase();
-            YAHOO.log("setProperty: " + key + "=" + value, "info", "Config");
-        
-            if (this.queueInProgress && ! silent) {
-                // Currently running through a queue... 
-                this.queueProperty(key,value);
-                return true;
-    
-            } else {
-                property = this.config[key];
-                if (property && property.event) {
-                    if (property.validator && !property.validator(value)) {
-                        return false;
-                    } else {
-                        property.value = value;
-                        if (! silent) {
-                            this.fireEvent(key, value);
-                            this.configChangedEvent.fire([key, value]);
-                        }
-                        return true;
-                    }
-                } else {
-                    return false;
-                }
-            }
-        },
-        
-        /**
-        * Sets the value of a property and queues its event to execute. If the 
-        * event is already scheduled to execute, it is
-        * moved from its current position to the end of the queue.
-        * @method queueProperty
-        * @param {String} key The name of the property
-        * @param {String} value The value to set the property to
-        * @return {Boolean}  true, if the set was successful, false if 
-        * it failed.
-        */ 
-        queueProperty: function (key, value) {
-        
-            key = key.toLowerCase();
-            YAHOO.log("queueProperty: " + key + "=" + value, "info", "Config");
-        
-            var property = this.config[key],
-                foundDuplicate = false,
-                iLen,
-                queueItem,
-                queueItemKey,
-                queueItemValue,
-                sLen,
-                supercedesCheck,
-                qLen,
-                queueItemCheck,
-                queueItemCheckKey,
-                queueItemCheckValue,
-                i,
-                s,
-                q;
-                                
-            if (property && property.event) {
-    
-                if (!Lang.isUndefined(value) && property.validator && 
-                    !property.validator(value)) { // validator
-                    return false;
-                } else {
-        
-                    if (!Lang.isUndefined(value)) {
-                        property.value = value;
-                    } else {
-                        value = property.value;
-                    }
-        
-                    foundDuplicate = false;
-                    iLen = this.eventQueue.length;
-        
-                    for (i = 0; i < iLen; i++) {
-                        queueItem = this.eventQueue[i];
-        
-                        if (queueItem) {
-                            queueItemKey = queueItem[0];
-                            queueItemValue = queueItem[1];
-
-                            if (queueItemKey == key) {
-    
-                                /*
-                                    found a dupe... push to end of queue, null 
-                                    current item, and break
-                                */
-    
-                                this.eventQueue[i] = null;
-    
-                                this.eventQueue.push(
-                                    [key, (!Lang.isUndefined(value) ? 
-                                    value : queueItemValue)]);
-    
-                                foundDuplicate = true;
-                                break;
-                            }
-                        }
-                    }
-                    
-                    // this is a refire, or a new property in the queue
-    
-                    if (! foundDuplicate && !Lang.isUndefined(value)) { 
-                        this.eventQueue.push([key, value]);
-                    }
-                }
-        
-                if (property.supercedes) {
-
-                    sLen = property.supercedes.length;
-
-                    for (s = 0; s < sLen; s++) {
-
-                        supercedesCheck = property.supercedes[s];
-                        qLen = this.eventQueue.length;
-
-                        for (q = 0; q < qLen; q++) {
-                            queueItemCheck = this.eventQueue[q];
-
-                            if (queueItemCheck) {
-                                queueItemCheckKey = queueItemCheck[0];
-                                queueItemCheckValue = queueItemCheck[1];
-
-                                if (queueItemCheckKey == 
-                                    supercedesCheck.toLowerCase() ) {
-
-                                    this.eventQueue.push([queueItemCheckKey, 
-                                        queueItemCheckValue]);
-
-                                    this.eventQueue[q] = null;
-                                    break;
-
-                                }
-                            }
-                        }
-                    }
-                }
-
-                YAHOO.log("Config event queue: " + this.outputEventQueue(), "info", "Config");
-
-                return true;
-            } else {
-                return false;
-            }
-        },
-        
-        /**
-        * Fires the event for a property using the property's current value.
-        * @method refireEvent
-        * @param {String} key The name of the property
-        */
-        refireEvent: function (key) {
-    
-            key = key.toLowerCase();
-        
-            var property = this.config[key];
-    
-            if (property && property.event && 
-    
-                !Lang.isUndefined(property.value)) {
-    
-                if (this.queueInProgress) {
-    
-                    this.queueProperty(key);
-    
-                } else {
-    
-                    this.fireEvent(key, property.value);
-    
-                }
-    
-            }
-        },
-        
-        /**
-        * Applies a key-value Object literal to the configuration, replacing  
-        * any existing values, and queueing the property events.
-        * Although the values will be set, fireQueue() must be called for their 
-        * associated events to execute.
-        * @method applyConfig
-        * @param {Object} userConfig The configuration Object literal
-        * @param {Boolean} init  When set to true, the initialConfig will 
-        * be set to the userConfig passed in, so that calling a reset will 
-        * reset the properties to the passed values.
-        */
-        applyConfig: function (userConfig, init) {
-        
-            var sKey,
-                oConfig;
-
-            if (init) {
-                oConfig = {};
-                for (sKey in userConfig) {
-                    if (Lang.hasOwnProperty(userConfig, sKey)) {
-                        oConfig[sKey.toLowerCase()] = userConfig[sKey];
-                    }
-                }
-                this.initialConfig = oConfig;
-            }
-
-            for (sKey in userConfig) {
-                if (Lang.hasOwnProperty(userConfig, sKey)) {
-                    this.queueProperty(sKey, userConfig[sKey]);
-                }
-            }
-        },
-        
-        /**
-        * Refires the events for all configuration properties using their 
-        * current values.
-        * @method refresh
-        */
-        refresh: function () {
-
-            var prop;
-
-            for (prop in this.config) {
-                if (Lang.hasOwnProperty(this.config, prop)) {
-                    this.refireEvent(prop);
-                }
-            }
-        },
-        
-        /**
-        * Fires the normalized list of queued property change events
-        * @method fireQueue
-        */
-        fireQueue: function () {
-        
-            var i, 
-                queueItem,
-                key,
-                value,
-                property;
-        
-            this.queueInProgress = true;
-            for (i = 0;i < this.eventQueue.length; i++) {
-                queueItem = this.eventQueue[i];
-                if (queueItem) {
-        
-                    key = queueItem[0];
-                    value = queueItem[1];
-                    property = this.config[key];
-        
-                    property.value = value;
-        
-                    this.fireEvent(key,value);
-                }
-            }
-            
-            this.queueInProgress = false;
-            this.eventQueue = [];
-        },
-        
-        /**
-        * Subscribes an external handler to the change event for any 
-        * given property. 
-        * @method subscribeToConfigEvent
-        * @param {String} key The property name
-        * @param {Function} handler The handler function to use subscribe to 
-        * the property's event
-        * @param {Object} obj The Object to use for scoping the event handler 
-        * (see CustomEvent documentation)
-        * @param {Boolean} override Optional. If true, will override "this"  
-        * within the handler to map to the scope Object passed into the method.
-        * @return {Boolean} True, if the subscription was successful, 
-        * otherwise false.
-        */ 
-        subscribeToConfigEvent: function (key, handler, obj, override) {
-    
-            var property = this.config[key.toLowerCase()];
-    
-            if (property && property.event) {
-                if (!Config.alreadySubscribed(property.event, handler, obj)) {
-                    property.event.subscribe(handler, obj, override);
-                }
-                return true;
-            } else {
-                return false;
-            }
-    
-        },
-        
-        /**
-        * Unsubscribes an external handler from the change event for any 
-        * given property. 
-        * @method unsubscribeFromConfigEvent
-        * @param {String} key The property name
-        * @param {Function} handler The handler function to use subscribe to 
-        * the property's event
-        * @param {Object} obj The Object to use for scoping the event 
-        * handler (see CustomEvent documentation)
-        * @return {Boolean} True, if the unsubscription was successful, 
-        * otherwise false.
-        */
-        unsubscribeFromConfigEvent: function (key, handler, obj) {
-            var property = this.config[key.toLowerCase()];
-            if (property && property.event) {
-                return property.event.unsubscribe(handler, obj);
-            } else {
-                return false;
-            }
-        },
-        
-        /**
-        * Returns a string representation of the Config object
-        * @method toString
-        * @return {String} The Config object in string format.
-        */
-        toString: function () {
-            var output = "Config";
-            if (this.owner) {
-                output += " [" + this.owner.toString() + "]";
-            }
-            return output;
-        },
-        
-        /**
-        * Returns a string representation of the Config object's current 
-        * CustomEvent queue
-        * @method outputEventQueue
-        * @return {String} The string list of CustomEvents currently queued 
-        * for execution
-        */
-        outputEventQueue: function () {
-
-            var output = "",
-                queueItem,
-                q,
-                nQueue = this.eventQueue.length;
-              
-            for (q = 0; q < nQueue; q++) {
-                queueItem = this.eventQueue[q];
-                if (queueItem) {
-                    output += queueItem[0] + "=" + queueItem[1] + ", ";
-                }
-            }
-            return output;
-        },
-
-        /**
-        * Sets all properties to null, unsubscribes all listeners from each 
-        * property's change event and all listeners from the configChangedEvent.
-        * @method destroy
-        */
-        destroy: function () {
-
-            var oConfig = this.config,
-                sProperty,
-                oProperty;
-
-
-            for (sProperty in oConfig) {
-            
-                if (Lang.hasOwnProperty(oConfig, sProperty)) {
-
-                    oProperty = oConfig[sProperty];
-
-                    oProperty.event.unsubscribeAll();
-                    oProperty.event = null;
-
-                }
-            
-            }
-            
-            this.configChangedEvent.unsubscribeAll();
-            
-            this.configChangedEvent = null;
-            this.owner = null;
-            this.config = null;
-            this.initialConfig = null;
-            this.eventQueue = null;
-        
-        }
-
-    };
-    
-    
-    
-    /**
-    * Checks to determine if a particular function/Object pair are already 
-    * subscribed to the specified CustomEvent
-    * @method YAHOO.util.Config.alreadySubscribed
-    * @static
-    * @param {YAHOO.util.CustomEvent} evt The CustomEvent for which to check 
-    * the subscriptions
-    * @param {Function} fn The function to look for in the subscribers list
-    * @param {Object} obj The execution scope Object for the subscription
-    * @return {Boolean} true, if the function/Object pair is already subscribed 
-    * to the CustomEvent passed in
-    */
-    Config.alreadySubscribed = function (evt, fn, obj) {
-    
-        var nSubscribers = evt.subscribers.length,
-            subsc,
-            i;
-
-        if (nSubscribers > 0) {
-            i = nSubscribers - 1;
-            do {
-                subsc = evt.subscribers[i];
-                if (subsc && subsc.obj == obj && subsc.fn == fn) {
-                    return true;
-                }
-            }
-            while (i--);
-        }
-
-        return false;
-
-    };
-
-    YAHOO.lang.augmentProto(Config, YAHOO.util.EventProvider);
-
-}());
-
-/**
-* YAHOO.widget.DateMath is used for simple date manipulation. The class is a static utility
-* used for adding, subtracting, and comparing dates.
-* @namespace YAHOO.widget
-* @class DateMath
-*/
-YAHOO.widget.DateMath = {
-	/**
-	* Constant field representing Day
-	* @property DAY
-	* @static
-	* @final
-	* @type String
-	*/
-	DAY : "D",
-
-	/**
-	* Constant field representing Week
-	* @property WEEK
-	* @static
-	* @final
-	* @type String
-	*/
-	WEEK : "W",
-
-	/**
-	* Constant field representing Year
-	* @property YEAR
-	* @static
-	* @final
-	* @type String
-	*/
-	YEAR : "Y",
-
-	/**
-	* Constant field representing Month
-	* @property MONTH
-	* @static
-	* @final
-	* @type String
-	*/
-	MONTH : "M",
-
-	/**
-	* Constant field representing one day, in milliseconds
-	* @property ONE_DAY_MS
-	* @static
-	* @final
-	* @type Number
-	*/
-	ONE_DAY_MS : 1000*60*60*24,
-	
-	/**
-	 * Constant field representing the date in first week of January
-	 * which identifies the first week of the year.
-	 * <p>
-	 * In the U.S, Jan 1st is normally used based on a Sunday start of week.
-	 * ISO 8601, used widely throughout Europe, uses Jan 4th, based on a Monday start of week.
-	 * </p>
-	 * @property WEEK_ONE_JAN_DATE
-	 * @static
-	 * @type Number
-	 */
-	WEEK_ONE_JAN_DATE : 1,
-
-	/**
-	* Adds the specified amount of time to the this instance.
-	* @method add
-	* @param {Date} date	The JavaScript Date object to perform addition on
-	* @param {String} field	The field constant to be used for performing addition.
-	* @param {Number} amount	The number of units (measured in the field constant) to add to the date.
-	* @return {Date} The resulting Date object
-	*/
-	add : function(date, field, amount) {
-		var d = new Date(date.getTime());
-		switch (field) {
-			case this.MONTH:
-				var newMonth = date.getMonth() + amount;
-				var years = 0;
-
-				if (newMonth < 0) {
-					while (newMonth < 0) {
-						newMonth += 12;
-						years -= 1;
-					}
-				} else if (newMonth > 11) {
-					while (newMonth > 11) {
-						newMonth -= 12;
-						years += 1;
-					}
-				}
-
-				d.setMonth(newMonth);
-				d.setFullYear(date.getFullYear() + years);
-				break;
-			case this.DAY:
-				this._addDays(d, amount);
-				// d.setDate(date.getDate() + amount);
-				break;
-			case this.YEAR:
-				d.setFullYear(date.getFullYear() + amount);
-				break;
-			case this.WEEK:
-				this._addDays(d, (amount * 7));
-				// d.setDate(date.getDate() + (amount * 7));
-				break;
-		}
-		return d;
-	},
-
-	/**
-	 * Private helper method to account for bug in Safari 2 (webkit < 420)
-	 * when Date.setDate(n) is called with n less than -128 or greater than 127.
-	 * <p>
-	 * Fix approach and original findings are available here:
-	 * http://brianary.blogspot.com/2006/03/safari-date-bug.html
-	 * </p>
-	 * @method _addDays
-	 * @param {Date} d JavaScript date object
-	 * @param {Number} nDays The number of days to add to the date object (can be negative)
-	 * @private
-	 */
-	_addDays : function(d, nDays) {
-		if (YAHOO.env.ua.webkit && YAHOO.env.ua.webkit < 420) {
-			if (nDays < 0) {
-				// Ensure we don't go below -128 (getDate() is always 1 to 31, so we won't go above 127)
-				for(var min = -128; nDays < min; nDays -= min) {
-					d.setDate(d.getDate() + min);
-				}
-			} else {
-				// Ensure we don't go above 96 + 31 = 127
-				for(var max = 96; nDays > max; nDays -= max) {
-					d.setDate(d.getDate() + max);
-				}
-			}
-			// nDays should be remainder between -128 and 96
-		}
-		d.setDate(d.getDate() + nDays);
-	},
-
-	/**
-	* Subtracts the specified amount of time from the this instance.
-	* @method subtract
-	* @param {Date} date	The JavaScript Date object to perform subtraction on
-	* @param {Number} field	The this field constant to be used for performing subtraction.
-	* @param {Number} amount	The number of units (measured in the field constant) to subtract from the date.
-	* @return {Date} The resulting Date object
-	*/
-	subtract : function(date, field, amount) {
-		return this.add(date, field, (amount*-1));
-	},
-
-	/**
-	* Determines whether a given date is before another date on the calendar.
-	* @method before
-	* @param {Date} date		The Date object to compare with the compare argument
-	* @param {Date} compareTo	The Date object to use for the comparison
-	* @return {Boolean} true if the date occurs before the compared date; false if not.
-	*/
-	before : function(date, compareTo) {
-		var ms = compareTo.getTime();
-		if (date.getTime() < ms) {
-			return true;
-		} else {
-			return false;
-		}
-	},
-
-	/**
-	* Determines whether a given date is after another date on the calendar.
-	* @method after
-	* @param {Date} date		The Date object to compare with the compare argument
-	* @param {Date} compareTo	The Date object to use for the comparison
-	* @return {Boolean} true if the date occurs after the compared date; false if not.
-	*/
-	after : function(date, compareTo) {
-		var ms = compareTo.getTime();
-		if (date.getTime() > ms) {
-			return true;
-		} else {
-			return false;
-		}
-	},
-
-	/**
-	* Determines whether a given date is between two other dates on the calendar.
-	* @method between
-	* @param {Date} date		The date to check for
-	* @param {Date} dateBegin	The start of the range
-	* @param {Date} dateEnd		The end of the range
-	* @return {Boolean} true if the date occurs between the compared dates; false if not.
-	*/
-	between : function(date, dateBegin, dateEnd) {
-		if (this.after(date, dateBegin) && this.before(date, dateEnd)) {
-			return true;
-		} else {
-			return false;
-		}
-	},
-	
-	/**
-	* Retrieves a JavaScript Date object representing January 1 of any given year.
-	* @method getJan1
-	* @param {Number} calendarYear		The calendar year for which to retrieve January 1
-	* @return {Date}	January 1 of the calendar year specified.
-	*/
-	getJan1 : function(calendarYear) {
-		return this.getDate(calendarYear,0,1);
-	},
-
-	/**
-	* Calculates the number of days the specified date is from January 1 of the specified calendar year.
-	* Passing January 1 to this function would return an offset value of zero.
-	* @method getDayOffset
-	* @param {Date}	date	The JavaScript date for which to find the offset
-	* @param {Number} calendarYear	The calendar year to use for determining the offset
-	* @return {Number}	The number of days since January 1 of the given year
-	*/
-	getDayOffset : function(date, calendarYear) {
-		var beginYear = this.getJan1(calendarYear); // Find the start of the year. This will be in week 1.
-		
-		// Find the number of days the passed in date is away from the calendar year start
-		var dayOffset = Math.ceil((date.getTime()-beginYear.getTime()) / this.ONE_DAY_MS);
-		return dayOffset;
-	},
-
-	/**
-	* Calculates the week number for the given date. Can currently support standard
-	* U.S. week numbers, based on Jan 1st defining the 1st week of the year, and 
-	* ISO8601 week numbers, based on Jan 4th defining the 1st week of the year.
-	* 
-	* @method getWeekNumber
-	* @param {Date}	date The JavaScript date for which to find the week number
-	* @param {Number} firstDayOfWeek The index of the first day of the week (0 = Sun, 1 = Mon ... 6 = Sat).
-	* Defaults to 0
-	* @param {Number} janDate The date in the first week of January which defines week one for the year
-	* Defaults to the value of YAHOO.widget.DateMath.WEEK_ONE_JAN_DATE, which is 1 (Jan 1st). 
-	* For the U.S, this is normally Jan 1st. ISO8601 uses Jan 4th to define the first week of the year.
-	* 
-	* @return {Number} The number of the week containing the given date.
-	*/
-	getWeekNumber : function(date, firstDayOfWeek, janDate) {
-
-		// Setup Defaults
-		firstDayOfWeek = firstDayOfWeek || 0;
-		janDate = janDate || this.WEEK_ONE_JAN_DATE;
-
-		var targetDate = this.clearTime(date),
-			startOfWeek,
-			endOfWeek;
-
-		if (targetDate.getDay() === firstDayOfWeek) { 
-			startOfWeek = targetDate;
-		} else {
-			startOfWeek = this.getFirstDayOfWeek(targetDate, firstDayOfWeek);
-		}
-
-		var startYear = startOfWeek.getFullYear(),
-			startTime = startOfWeek.getTime();
-
-		// DST shouldn't be a problem here, math is quicker than setDate();
-		endOfWeek = new Date(startOfWeek.getTime() + 6*this.ONE_DAY_MS);
-
-		var weekNum;
-		if (startYear !== endOfWeek.getFullYear() && endOfWeek.getDate() >= janDate) {
-			// If years don't match, endOfWeek is in Jan. and if the 
-			// week has WEEK_ONE_JAN_DATE in it, it's week one by definition.
-			weekNum = 1;
-		} else {
-			// Get the 1st day of the 1st week, and 
-			// find how many days away we are from it.
-			var weekOne = this.clearTime(this.getDate(startYear, 0, janDate)),
-				weekOneDayOne = this.getFirstDayOfWeek(weekOne, firstDayOfWeek);
-
-			// Round days to smoothen out 1 hr DST diff
-			var daysDiff  = Math.round((targetDate.getTime() - weekOneDayOne.getTime())/this.ONE_DAY_MS);
-
-			// Calc. Full Weeks
-			var rem = daysDiff % 7;
-			var weeksDiff = (daysDiff - rem)/7;
-			weekNum = weeksDiff + 1;
-		}
-		return weekNum;
-	},
-
-	/**
-	 * Get the first day of the week, for the give date. 
-	 * @param {Date} dt The date in the week for which the first day is required.
-	 * @param {Number} startOfWeek The index for the first day of the week, 0 = Sun, 1 = Mon ... 6 = Sat (defaults to 0)
-	 * @return {Date} The first day of the week
-	 */
-	getFirstDayOfWeek : function (dt, startOfWeek) {
-		startOfWeek = startOfWeek || 0;
-		var dayOfWeekIndex = dt.getDay(),
-			dayOfWeek = (dayOfWeekIndex - startOfWeek + 7) % 7;
-
-		return this.subtract(dt, this.DAY, dayOfWeek);
-	},
-
-	/**
-	* Determines if a given week overlaps two different years.
-	* @method isYearOverlapWeek
-	* @param {Date}	weekBeginDate	The JavaScript Date representing the first day of the week.
-	* @return {Boolean}	true if the date overlaps two different years.
-	*/
-	isYearOverlapWeek : function(weekBeginDate) {
-		var overlaps = false;
-		var nextWeek = this.add(weekBeginDate, this.DAY, 6);
-		if (nextWeek.getFullYear() != weekBeginDate.getFullYear()) {
-			overlaps = true;
-		}
-		return overlaps;
-	},
-
-	/**
-	* Determines if a given week overlaps two different months.
-	* @method isMonthOverlapWeek
-	* @param {Date}	weekBeginDate	The JavaScript Date representing the first day of the week.
-	* @return {Boolean}	true if the date overlaps two different months.
-	*/
-	isMonthOverlapWeek : function(weekBeginDate) {
-		var overlaps = false;
-		var nextWeek = this.add(weekBeginDate, this.DAY, 6);
-		if (nextWeek.getMonth() != weekBeginDate.getMonth()) {
-			overlaps = true;
-		}
-		return overlaps;
-	},
-
-	/**
-	* Gets the first day of a month containing a given date.
-	* @method findMonthStart
-	* @param {Date}	date	The JavaScript Date used to calculate the month start
-	* @return {Date}		The JavaScript Date representing the first day of the month
-	*/
-	findMonthStart : function(date) {
-		var start = this.getDate(date.getFullYear(), date.getMonth(), 1);
-		return start;
-	},
-
-	/**
-	* Gets the last day of a month containing a given date.
-	* @method findMonthEnd
-	* @param {Date}	date	The JavaScript Date used to calculate the month end
-	* @return {Date}		The JavaScript Date representing the last day of the month
-	*/
-	findMonthEnd : function(date) {
-		var start = this.findMonthStart(date);
-		var nextMonth = this.add(start, this.MONTH, 1);
-		var end = this.subtract(nextMonth, this.DAY, 1);
-		return end;
-	},
-
-	/**
-	* Clears the time fields from a given date, effectively setting the time to 12 noon.
-	* @method clearTime
-	* @param {Date}	date	The JavaScript Date for which the time fields will be cleared
-	* @return {Date}		The JavaScript Date cleared of all time fields
-	*/
-	clearTime : function(date) {
-		date.setHours(12,0,0,0);
-		return date;
-	},
-
-	/**
-	 * Returns a new JavaScript Date object, representing the given year, month and date. Time fields (hr, min, sec, ms) on the new Date object
-	 * are set to 0. The method allows Date instances to be created with the a year less than 100. "new Date(year, month, date)" implementations 
-	 * set the year to 19xx if a year (xx) which is less than 100 is provided.
-	 * <p>
-	 * <em>NOTE:</em>Validation on argument values is not performed. It is the caller's responsibility to ensure
-	 * arguments are valid as per the ECMAScript-262 Date object specification for the new Date(year, month[, date]) constructor.
-	 * </p>
-	 * @method getDate
-	 * @param {Number} y Year.
-	 * @param {Number} m Month index from 0 (Jan) to 11 (Dec).
-	 * @param {Number} d (optional) Date from 1 to 31. If not provided, defaults to 1.
-	 * @return {Date} The JavaScript date object with year, month, date set as provided.
-	 */
-	getDate : function(y, m, d) {
-		var dt = null;
-		if (YAHOO.lang.isUndefined(d)) {
-			d = 1;
-		}
-		if (y >= 100) {
-			dt = new Date(y, m, d);
-		} else {
-			dt = new Date();
-			dt.setFullYear(y);
-			dt.setMonth(m);
-			dt.setDate(d);
-			dt.setHours(0,0,0,0);
-		}
-		return dt;
-	}
-};
-
-/**
-* The Calendar component is a UI control that enables users to choose one or more dates from a graphical calendar presented in a one-month or
-* multi-month interface. Calendars are generated entirely via script and can be navigated without any page refreshes.
-* @module    calendar
-* @title    Calendar
-* @namespace  YAHOO.widget
-* @requires  yahoo,dom,event
-*/
-(function(){
-
-	var Dom = YAHOO.util.Dom,
-		Event = YAHOO.util.Event,
-		Lang = YAHOO.lang,
-		DateMath = YAHOO.widget.DateMath;
-
-/**
-* Calendar is the base class for the Calendar widget. In its most basic
-* implementation, it has the ability to render a calendar widget on the page
-* that can be manipulated to select a single date, move back and forth between
-* months and years.
-* <p>To construct the placeholder for the calendar widget, the code is as
-* follows:
-*	<xmp>
-*		<div id="calContainer"></div>
-*	</xmp>
-* </p>
-* <p>
-* <strong>NOTE: As of 2.4.0, the constructor's ID argument is optional.</strong>
-* The Calendar can be constructed by simply providing a container ID string, 
-* or a reference to a container DIV HTMLElement (the element needs to exist 
-* in the document).
-* 
-* E.g.:
-*	<xmp>
-*		var c = new YAHOO.widget.Calendar("calContainer", configOptions);
-*	</xmp>
-* or:
-*   <xmp>
-*       var containerDiv = YAHOO.util.Dom.get("calContainer");
-*		var c = new YAHOO.widget.Calendar(containerDiv, configOptions);
-*	</xmp>
-* </p>
-* <p>
-* If not provided, the ID will be generated from the container DIV ID by adding an "_t" suffix.
-* For example if an ID is not provided, and the container's ID is "calContainer", the Calendar's ID will be set to "calContainer_t".
-* </p>
-* 
-* @namespace YAHOO.widget
-* @class Calendar
-* @constructor
-* @param {String} id optional The id of the table element that will represent the Calendar widget. As of 2.4.0, this argument is optional.
-* @param {String | HTMLElement} container The id of the container div element that will wrap the Calendar table, or a reference to a DIV element which exists in the document.
-* @param {Object} config optional The configuration object containing the initial configuration values for the Calendar.
-*/
-function Calendar(id, containerId, config) {
-	this.init.apply(this, arguments);
-}
-
-/**
-* The path to be used for images loaded for the Calendar
-* @property YAHOO.widget.Calendar.IMG_ROOT
-* @static
-* @deprecated	You can now customize images by overriding the calclose, calnavleft and calnavright default CSS classes for the close icon, left arrow and right arrow respectively
-* @type String
-*/
-Calendar.IMG_ROOT = null;
-
-/**
-* Type constant used for renderers to represent an individual date (M/D/Y)
-* @property YAHOO.widget.Calendar.DATE
-* @static
-* @final
-* @type String
-*/
-Calendar.DATE = "D";
-
-/**
-* Type constant used for renderers to represent an individual date across any year (M/D)
-* @property YAHOO.widget.Calendar.MONTH_DAY
-* @static
-* @final
-* @type String
-*/
-Calendar.MONTH_DAY = "MD";
-
-/**
-* Type constant used for renderers to represent a weekday
-* @property YAHOO.widget.Calendar.WEEKDAY
-* @static
-* @final
-* @type String
-*/
-Calendar.WEEKDAY = "WD";
-
-/**
-* Type constant used for renderers to represent a range of individual dates (M/D/Y-M/D/Y)
-* @property YAHOO.widget.Calendar.RANGE
-* @static
-* @final
-* @type String
-*/
-Calendar.RANGE = "R";
-
-/**
-* Type constant used for renderers to represent a month across any year
-* @property YAHOO.widget.Calendar.MONTH
-* @static
-* @final
-* @type String
-*/
-Calendar.MONTH = "M";
-
-/**
-* Constant that represents the total number of date cells that are displayed in a given month
-* @property YAHOO.widget.Calendar.DISPLAY_DAYS
-* @static
-* @final
-* @type Number
-*/
-Calendar.DISPLAY_DAYS = 42;
-
-/**
-* Constant used for halting the execution of the remainder of the render stack
-* @property YAHOO.widget.Calendar.STOP_RENDER
-* @static
-* @final
-* @type String
-*/
-Calendar.STOP_RENDER = "S";
-
-/**
-* Constant used to represent short date field string formats (e.g. Tu or Feb)
-* @property YAHOO.widget.Calendar.SHORT
-* @static
-* @final
-* @type String
-*/
-Calendar.SHORT = "short";
-
-/**
-* Constant used to represent long date field string formats (e.g. Monday or February)
-* @property YAHOO.widget.Calendar.LONG
-* @static
-* @final
-* @type String
-*/
-Calendar.LONG = "long";
-
-/**
-* Constant used to represent medium date field string formats (e.g. Mon)
-* @property YAHOO.widget.Calendar.MEDIUM
-* @static
-* @final
-* @type String
-*/
-Calendar.MEDIUM = "medium";
-
-/**
-* Constant used to represent single character date field string formats (e.g. M, T, W)
-* @property YAHOO.widget.Calendar.ONE_CHAR
-* @static
-* @final
-* @type String
-*/
-Calendar.ONE_CHAR = "1char";
-
-/**
-* The set of default Config property keys and values for the Calendar
-* @property YAHOO.widget.Calendar._DEFAULT_CONFIG
-* @final
-* @static
-* @private
-* @type Object
-*/
-Calendar._DEFAULT_CONFIG = {
-	// Default values for pagedate and selected are not class level constants - they are set during instance creation 
-	PAGEDATE : {key:"pagedate", value:null},
-	SELECTED : {key:"selected", value:null},
-	TITLE : {key:"title", value:""},
-	CLOSE : {key:"close", value:false},
-	IFRAME : {key:"iframe", value:(YAHOO.env.ua.ie && YAHOO.env.ua.ie <= 6) ? true : false},
-	MINDATE : {key:"mindate", value:null},
-	MAXDATE : {key:"maxdate", value:null},
-	MULTI_SELECT : {key:"multi_select", value:false},
-	START_WEEKDAY : {key:"start_weekday", value:0},
-	SHOW_WEEKDAYS : {key:"show_weekdays", value:true},
-	SHOW_WEEK_HEADER : {key:"show_week_header", value:false},
-	SHOW_WEEK_FOOTER : {key:"show_week_footer", value:false},
-	HIDE_BLANK_WEEKS : {key:"hide_blank_weeks", value:false},
-	NAV_ARROW_LEFT: {key:"nav_arrow_left", value:null} ,
-	NAV_ARROW_RIGHT : {key:"nav_arrow_right", value:null} ,
-	MONTHS_SHORT : {key:"months_short", value:["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]},
-	MONTHS_LONG: {key:"months_long", value:["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]},
-	WEEKDAYS_1CHAR: {key:"weekdays_1char", value:["S", "M", "T", "W", "T", "F", "S"]},
-	WEEKDAYS_SHORT: {key:"weekdays_short", value:["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"]},
-	WEEKDAYS_MEDIUM: {key:"weekdays_medium", value:["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]},
-	WEEKDAYS_LONG: {key:"weekdays_long", value:["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]},
-	LOCALE_MONTHS:{key:"locale_months", value:"long"},
-	LOCALE_WEEKDAYS:{key:"locale_weekdays", value:"short"},
-	DATE_DELIMITER:{key:"date_delimiter", value:","},
-	DATE_FIELD_DELIMITER:{key:"date_field_delimiter", value:"/"},
-	DATE_RANGE_DELIMITER:{key:"date_range_delimiter", value:"-"},
-	MY_MONTH_POSITION:{key:"my_month_position", value:1},
-	MY_YEAR_POSITION:{key:"my_year_position", value:2},
-	MD_MONTH_POSITION:{key:"md_month_position", value:1},
-	MD_DAY_POSITION:{key:"md_day_position", value:2},
-	MDY_MONTH_POSITION:{key:"mdy_month_position", value:1},
-	MDY_DAY_POSITION:{key:"mdy_day_position", value:2},
-	MDY_YEAR_POSITION:{key:"mdy_year_position", value:3},
-	MY_LABEL_MONTH_POSITION:{key:"my_label_month_position", value:1},
-	MY_LABEL_YEAR_POSITION:{key:"my_label_year_position", value:2},
-	MY_LABEL_MONTH_SUFFIX:{key:"my_label_month_suffix", value:" "},
-	MY_LABEL_YEAR_SUFFIX:{key:"my_label_year_suffix", value:""},
-	NAV: {key:"navigator", value: null},
-	STRINGS : { 
-		key:"strings",
-		value: {
-			previousMonth : "Previous Month",
-			nextMonth : "Next Month",
-			close: "Close"
-		},
-		supercedes : ["close", "title"]
-	}
-};
-
-var DEF_CFG = Calendar._DEFAULT_CONFIG;
-
-/**
-* The set of Custom Event types supported by the Calendar
-* @property YAHOO.widget.Calendar._EVENT_TYPES
-* @final
-* @static
-* @private
-* @type Object
-*/
-Calendar._EVENT_TYPES = {
-	BEFORE_SELECT : "beforeSelect", 
-	SELECT : "select",
-	BEFORE_DESELECT : "beforeDeselect",
-	DESELECT : "deselect",
-	CHANGE_PAGE : "changePage",
-	BEFORE_RENDER : "beforeRender",
-	RENDER : "render",
-	BEFORE_DESTROY : "beforeDestroy",
-	DESTROY : "destroy",
-	RESET : "reset",
-	CLEAR : "clear",
-	BEFORE_HIDE : "beforeHide",
-	HIDE : "hide",
-	BEFORE_SHOW : "beforeShow",
-	SHOW : "show",
-	BEFORE_HIDE_NAV : "beforeHideNav",
-	HIDE_NAV : "hideNav",
-	BEFORE_SHOW_NAV : "beforeShowNav",
-	SHOW_NAV : "showNav",
-	BEFORE_RENDER_NAV : "beforeRenderNav",
-	RENDER_NAV : "renderNav"
-};
-
-/**
-* The set of default style constants for the Calendar
-* @property YAHOO.widget.Calendar._STYLES
-* @final
-* @static
-* @private
-* @type Object
-*/
-Calendar._STYLES = {
-	CSS_ROW_HEADER: "calrowhead",
-	CSS_ROW_FOOTER: "calrowfoot",
-	CSS_CELL : "calcell",
-	CSS_CELL_SELECTOR : "selector",
-	CSS_CELL_SELECTED : "selected",
-	CSS_CELL_SELECTABLE : "selectable",
-	CSS_CELL_RESTRICTED : "restricted",
-	CSS_CELL_TODAY : "today",
-	CSS_CELL_OOM : "oom",
-	CSS_CELL_OOB : "previous",
-	CSS_HEADER : "calheader",
-	CSS_HEADER_TEXT : "calhead",
-	CSS_BODY : "calbody",
-	CSS_WEEKDAY_CELL : "calweekdaycell",
-	CSS_WEEKDAY_ROW : "calweekdayrow",
-	CSS_FOOTER : "calfoot",
-	CSS_CALENDAR : "yui-calendar",
-	CSS_SINGLE : "single",
-	CSS_CONTAINER : "yui-calcontainer",
-	CSS_NAV_LEFT : "calnavleft",
-	CSS_NAV_RIGHT : "calnavright",
-	CSS_NAV : "calnav",
-	CSS_CLOSE : "calclose",
-	CSS_CELL_TOP : "calcelltop",
-	CSS_CELL_LEFT : "calcellleft",
-	CSS_CELL_RIGHT : "calcellright",
-	CSS_CELL_BOTTOM : "calcellbottom",
-	CSS_CELL_HOVER : "calcellhover",
-	CSS_CELL_HIGHLIGHT1 : "highlight1",
-	CSS_CELL_HIGHLIGHT2 : "highlight2",
-	CSS_CELL_HIGHLIGHT3 : "highlight3",
-	CSS_CELL_HIGHLIGHT4 : "highlight4"
-};
-
-Calendar.prototype = {
-
-	/**
-	* The configuration object used to set up the calendars various locale and style options.
-	* @property Config
-	* @private
-	* @deprecated Configuration properties should be set by calling Calendar.cfg.setProperty.
-	* @type Object
-	*/
-	Config : null,
-
-	/**
-	* The parent CalendarGroup, only to be set explicitly by the parent group
-	* @property parent
-	* @type CalendarGroup
-	*/	
-	parent : null,
-
-	/**
-	* The index of this item in the parent group
-	* @property index
-	* @type Number
-	*/
-	index : -1,
-
-	/**
-	* The collection of calendar table cells
-	* @property cells
-	* @type HTMLTableCellElement[]
-	*/
-	cells : null,
-
-	/**
-	* The collection of calendar cell dates that is parallel to the cells collection. The array contains dates field arrays in the format of [YYYY, M, D].
-	* @property cellDates
-	* @type Array[](Number[])
-	*/
-	cellDates : null,
-
-	/**
-	* The id that uniquely identifies this Calendar.
-	* @property id
-	* @type String
-	*/
-	id : null,
-
-	/**
-	* The unique id associated with the Calendar's container
-	* @property containerId
-	* @type String
-	*/
-	containerId: null,
-
-	/**
-	* The DOM element reference that points to this calendar's container element. The calendar will be inserted into this element when the shell is rendered.
-	* @property oDomContainer
-	* @type HTMLElement
-	*/
-	oDomContainer : null,
-
-	/**
-	* A Date object representing today's date.
-	* @property today
-	* @type Date
-	*/
-	today : null,
-
-	/**
-	* The list of render functions, along with required parameters, used to render cells. 
-	* @property renderStack
-	* @type Array[]
-	*/
-	renderStack : null,
-
-	/**
-	* A copy of the initial render functions created before rendering.
-	* @property _renderStack
-	* @private
-	* @type Array
-	*/
-	_renderStack : null,
-
-	/**
-	* A reference to the CalendarNavigator instance created for this Calendar.
-	* Will be null if the "navigator" configuration property has not been set
-	* @property oNavigator
-	* @type CalendarNavigator
-	*/
-	oNavigator : null,
-
-	/**
-	* The private list of initially selected dates.
-	* @property _selectedDates
-	* @private
-	* @type Array
-	*/
-	_selectedDates : null,
-
-	/**
-	* A map of DOM event handlers to attach to cells associated with specific CSS class names
-	* @property domEventMap
-	* @type Object
-	*/
-	domEventMap : null,
-
-	/**
-	 * Protected helper used to parse Calendar constructor/init arguments.
-	 *
-	 * As of 2.4.0, Calendar supports a simpler constructor 
-	 * signature. This method reconciles arguments
-	 * received in the pre 2.4.0 and 2.4.0 formats.
-	 * 
-	 * @protected
-	 * @method _parseArgs
-	 * @param {Array} Function "arguments" array
-	 * @return {Object} Object with id, container, config properties containing
-	 * the reconciled argument values.
-	 **/
-	_parseArgs : function(args) {
-		/*
-		   2.4.0 Constructors signatures
-
-		   new Calendar(String)
-		   new Calendar(HTMLElement)
-		   new Calendar(String, ConfigObject)
-		   new Calendar(HTMLElement, ConfigObject)
-
-		   Pre 2.4.0 Constructor signatures
-
-		   new Calendar(String, String)
-		   new Calendar(String, HTMLElement)
-		   new Calendar(String, String, ConfigObject)
-		   new Calendar(String, HTMLElement, ConfigObject)
-		 */
-		var nArgs = {id:null, container:null, config:null};
-
-		if (args && args.length && args.length > 0) {
-			switch (args.length) {
-				case 1:
-					nArgs.id = null;
-					nArgs.container = args[0];
-					nArgs.config = null;
-					break;
-				case 2:
-					if (Lang.isObject(args[1]) && !args[1].tagName && !(args[1] instanceof String)) {
-						nArgs.id = null;
-						nArgs.container = args[0];
-						nArgs.config = args[1];
-					} else {
-						nArgs.id = args[0];
-						nArgs.container = args[1];
-						nArgs.config = null;
-					}
-					break;
-				default: // 3+
-					nArgs.id = args[0];
-					nArgs.container = args[1];
-					nArgs.config = args[2];
-					break;
-			}
-		} else {
-			this.logger.log("Invalid constructor/init arguments", "error");
-		}
-		return nArgs;
-	},
-
-	/**
-	* Initializes the Calendar widget.
-	* @method init
-	*
-	* @param {String} id optional The id of the table element that will represent the Calendar widget. As of 2.4.0, this argument is optional.
-	* @param {String | HTMLElement} container The id of the container div element that will wrap the Calendar table, or a reference to a DIV element which exists in the document.
-	* @param {Object} config optional The configuration object containing the initial configuration values for the Calendar.
-	*/
-	init : function(id, container, config) {
-		// Normalize 2.4.0, pre 2.4.0 args
-		var nArgs = this._parseArgs(arguments);
-
-		id = nArgs.id;
-		container = nArgs.container;
-		config = nArgs.config;
-
-		this.oDomContainer = Dom.get(container);
-		if (!this.oDomContainer) { this.logger.log("Container not found in document.", "error"); }
-
-		if (!this.oDomContainer.id) {
-			this.oDomContainer.id = Dom.generateId();
-		}
-		if (!id) {
-			id = this.oDomContainer.id + "_t";
-		}
-
-		this.id = id;
-		this.containerId = this.oDomContainer.id;
-
-		this.logger = new YAHOO.widget.LogWriter("Calendar " + this.id);
-		this.initEvents();
-
-		this.today = new Date();
-		DateMath.clearTime(this.today);
-
-		/**
-		* The Config object used to hold the configuration variables for the Calendar
-		* @property cfg
-		* @type YAHOO.util.Config
-		*/
-		this.cfg = new YAHOO.util.Config(this);
-
-		/**
-		* The local object which contains the Calendar's options
-		* @property Options
-		* @type Object
-		*/
-		this.Options = {};
-
-		/**
-		* The local object which contains the Calendar's locale settings
-		* @property Locale
-		* @type Object
-		*/
-		this.Locale = {};
-
-		this.initStyles();
-
-		Dom.addClass(this.oDomContainer, this.Style.CSS_CONTAINER);
-		Dom.addClass(this.oDomContainer, this.Style.CSS_SINGLE);
-
-		this.cellDates = [];
-		this.cells = [];
-		this.renderStack = [];
-		this._renderStack = [];
-
-		this.setupConfig();
-
-		if (config) {
-			this.cfg.applyConfig(config, true);
-		}
-
-		this.cfg.fireQueue();
-	},
-
-	/**
-	* Default Config listener for the iframe property. If the iframe config property is set to true, 
-	* renders the built-in IFRAME shim if the container is relatively or absolutely positioned.
-	* 
-	* @method configIframe
-	*/
-	configIframe : function(type, args, obj) {
-		var useIframe = args[0];
-	
-		if (!this.parent) {
-			if (Dom.inDocument(this.oDomContainer)) {
-				if (useIframe) {
-					var pos = Dom.getStyle(this.oDomContainer, "position");
-					
-					if (pos == "absolute" || pos == "relative") {
-						
-						if (!Dom.inDocument(this.iframe)) {
-							this.iframe = document.createElement("iframe");
-							this.iframe.src = "javascript:false;";
-	
-							Dom.setStyle(this.iframe, "opacity", "0");
-	
-							if (YAHOO.env.ua.ie && YAHOO.env.ua.ie <= 6) {
-								Dom.addClass(this.iframe, "fixedsize");
-							}
-	
-							this.oDomContainer.insertBefore(this.iframe, this.oDomContainer.firstChild);
-						}
-					}
-				} else {
-					if (this.iframe) {
-						if (this.iframe.parentNode) {
-							this.iframe.parentNode.removeChild(this.iframe);
-						}
-						this.iframe = null;
-					}
-				}
-			}
-		}
-	},
-
-	/**
-	* Default handler for the "title" property
-	* @method configTitle
-	*/
-	configTitle : function(type, args, obj) {
-		var title = args[0];
-
-		// "" disables title bar
-		if (title) {
-			this.createTitleBar(title);
-		} else {
-			var close = this.cfg.getProperty(DEF_CFG.CLOSE.key);
-			if (!close) {
-				this.removeTitleBar();
-			} else {
-				this.createTitleBar("&#160;");
-			}
-		}
-	},
-	
-	/**
-	* Default handler for the "close" property
-	* @method configClose
-	*/
-	configClose : function(type, args, obj) {
-		var close = args[0],
-			title = this.cfg.getProperty(DEF_CFG.TITLE.key);
-	
-		if (close) {
-			if (!title) {
-				this.createTitleBar("&#160;");
-			}
-			this.createCloseButton();
-		} else {
-			this.removeCloseButton();
-			if (!title) {
-				this.removeTitleBar();
-			}
-		}
-	},
-
-	/**
-	* Initializes Calendar's built-in CustomEvents
-	* @method initEvents
-	*/
-	initEvents : function() {
-
-		var defEvents = Calendar._EVENT_TYPES,
-			CE = YAHOO.util.CustomEvent,
-			cal = this; // To help with minification
-
-		/**
-		* Fired before a selection is made
-		* @event beforeSelectEvent
-		*/
-		cal.beforeSelectEvent = new CE(defEvents.BEFORE_SELECT); 
-
-		/**
-		* Fired when a selection is made
-		* @event selectEvent
-		* @param {Array}	Array of Date field arrays in the format [YYYY, MM, DD].
-		*/
-		cal.selectEvent = new CE(defEvents.SELECT);
-	
-		/**
-		* Fired before a selection is made
-		* @event beforeDeselectEvent
-		*/
-		cal.beforeDeselectEvent = new CE(defEvents.BEFORE_DESELECT);
-	
-		/**
-		* Fired when a selection is made
-		* @event deselectEvent
-		* @param {Array}	Array of Date field arrays in the format [YYYY, MM, DD].
-		*/
-		cal.deselectEvent = new CE(defEvents.DESELECT);
-	
-		/**
-		* Fired when the Calendar page is changed
-		* @event changePageEvent
-		*/
-		cal.changePageEvent = new CE(defEvents.CHANGE_PAGE);
-	
-		/**
-		* Fired before the Calendar is rendered
-		* @event beforeRenderEvent
-		*/
-		cal.beforeRenderEvent = new CE(defEvents.BEFORE_RENDER);
-	
-		/**
-		* Fired when the Calendar is rendered
-		* @event renderEvent
-		*/
-		cal.renderEvent = new CE(defEvents.RENDER);
-
-		/**
-		* Fired just before the Calendar is to be destroyed
-		* @event beforeDestroyEvent
-		*/
-		cal.beforeDestroyEvent = new CE(defEvents.BEFORE_DESTROY);
-
-		/**
-		* Fired after the Calendar is destroyed. This event should be used
-		* for notification only. When this event is fired, important Calendar instance
-		* properties, dom references and event listeners have already been 
-		* removed/dereferenced, and hence the Calendar instance is not in a usable 
-		* state.
-		*
-		* @event destroyEvent
-		*/
-		cal.destroyEvent = new CE(defEvents.DESTROY);
-
-		/**
-		* Fired when the Calendar is reset
-		* @event resetEvent
-		*/
-		cal.resetEvent = new CE(defEvents.RESET);
-
-		/**
-		* Fired when the Calendar is cleared
-		* @event clearEvent
-		*/
-		cal.clearEvent = new CE(defEvents.CLEAR);
-
-		/**
-		* Fired just before the Calendar is to be shown
-		* @event beforeShowEvent
-		*/
-		cal.beforeShowEvent = new CE(defEvents.BEFORE_SHOW);
-
-		/**
-		* Fired after the Calendar is shown
-		* @event showEvent
-		*/
-		cal.showEvent = new CE(defEvents.SHOW);
-
-		/**
-		* Fired just before the Calendar is to be hidden
-		* @event beforeHideEvent
-		*/
-		cal.beforeHideEvent = new CE(defEvents.BEFORE_HIDE);
-
-		/**
-		* Fired after the Calendar is hidden
-		* @event hideEvent
-		*/
-		cal.hideEvent = new CE(defEvents.HIDE);
-
-		/**
-		* Fired just before the CalendarNavigator is to be shown
-		* @event beforeShowNavEvent
-		*/
-		cal.beforeShowNavEvent = new CE(defEvents.BEFORE_SHOW_NAV);
-	
-		/**
-		* Fired after the CalendarNavigator is shown
-		* @event showNavEvent
-		*/
-		cal.showNavEvent = new CE(defEvents.SHOW_NAV);
-	
-		/**
-		* Fired just before the CalendarNavigator is to be hidden
-		* @event beforeHideNavEvent
-		*/
-		cal.beforeHideNavEvent = new CE(defEvents.BEFORE_HIDE_NAV);
-	
-		/**
-		* Fired after the CalendarNavigator is hidden
-		* @event hideNavEvent
-		*/
-		cal.hideNavEvent = new CE(defEvents.HIDE_NAV);
-
-		/**
-		* Fired just before the CalendarNavigator is to be rendered
-		* @event beforeRenderNavEvent
-		*/
-		cal.beforeRenderNavEvent = new CE(defEvents.BEFORE_RENDER_NAV);
-
-		/**
-		* Fired after the CalendarNavigator is rendered
-		* @event renderNavEvent
-		*/
-		cal.renderNavEvent = new CE(defEvents.RENDER_NAV);
-
-		cal.beforeSelectEvent.subscribe(cal.onBeforeSelect, this, true);
-		cal.selectEvent.subscribe(cal.onSelect, this, true);
-		cal.beforeDeselectEvent.subscribe(cal.onBeforeDeselect, this, true);
-		cal.deselectEvent.subscribe(cal.onDeselect, this, true);
-		cal.changePageEvent.subscribe(cal.onChangePage, this, true);
-		cal.renderEvent.subscribe(cal.onRender, this, true);
-		cal.resetEvent.subscribe(cal.onReset, this, true);
-		cal.clearEvent.subscribe(cal.onClear, this, true);
-	},
-
-	/**
-	* The default event handler for clicks on the "Previous Month" navigation UI
-	*
-	* @method doPreviousMonthNav
-	* @param {DOMEvent} e	The DOM event
-	* @param {Calendar} cal	A reference to the calendar
-	*/
-	doPreviousMonthNav : function(e, cal) {
-		Event.preventDefault(e);
-		// previousMonth invoked in a timeout, to allow
-		// event to bubble up, with correct target. Calling
-		// previousMonth, will call render which will remove 
-		// HTML which generated the event, resulting in an 
-		// invalid event target in certain browsers.
-		setTimeout(function() {
-			cal.previousMonth();
-			var navs = Dom.getElementsByClassName(cal.Style.CSS_NAV_LEFT, "a", cal.oDomContainer);
-			if (navs && navs[0]) {
-				try {
-					navs[0].focus();
-				} catch (e) {
-					// ignore
-				}
-			}
-		}, 0);
-	},
-
-	/**
-	 * The default event handler for clicks on the "Next Month" navigation UI
-	 *
-	 * @method doNextMonthNav
-	 * @param {DOMEvent} e	The DOM event
-	 * @param {Calendar} cal	A reference to the calendar
-	 */
-	doNextMonthNav : function(e, cal) {
-		Event.preventDefault(e);
-		setTimeout(function() {
-			cal.nextMonth();
-			var navs = Dom.getElementsByClassName(cal.Style.CSS_NAV_RIGHT, "a", cal.oDomContainer);
-			if (navs && navs[0]) {
-				try {
-					navs[0].focus();
-				} catch (e) {
-					// ignore
-				}
-			}
-		}, 0);
-	},
-
-	/**
-	* The default event handler for date cell selection. Currently attached to 
-	* the Calendar's bounding box, referenced by it's <a href="#property_oDomContainer">oDomContainer</a> property.
-	*
-	* @method doSelectCell
-	* @param {DOMEvent} e	The DOM event
-	* @param {Calendar} cal	A reference to the calendar
-	*/
-	doSelectCell : function(e, cal) {
-		var cell, d, date, index;
-
-		var target = Event.getTarget(e),
-			tagName = target.tagName.toLowerCase(),
-			defSelector = false;
-
-		while (tagName != "td" && !Dom.hasClass(target, cal.Style.CSS_CELL_SELECTABLE)) {
-
-			if (!defSelector && tagName == "a" && Dom.hasClass(target, cal.Style.CSS_CELL_SELECTOR)) {
-				defSelector = true;
-			}
-
-			target = target.parentNode;
-			tagName = target.tagName.toLowerCase();
-
-			if (target == this.oDomContainer || tagName == "html") {
-				return;
-			}
-		}
-
-		if (defSelector) {
-			// Stop link href navigation for default renderer
-			Event.preventDefault(e);
-		}
-	
-		cell = target;
-
-		if (Dom.hasClass(cell, cal.Style.CSS_CELL_SELECTABLE)) {
-			index = cal.getIndexFromId(cell.id);
-			if (index > -1) {
-				d = cal.cellDates[index];
-				if (d) {
-					date = DateMath.getDate(d[0],d[1]-1,d[2]);
-				
-					var link;
-
-					cal.logger.log("Selecting cell " + index + " via click", "info");
-					if (cal.Options.MULTI_SELECT) {
-						link = cell.getElementsByTagName("a")[0];
-						if (link) {
-							link.blur();
-						}
-
-						var cellDate = cal.cellDates[index];
-						var cellDateIndex = cal._indexOfSelectedFieldArray(cellDate);
-
-						if (cellDateIndex > -1) {	
-							cal.deselectCell(index);
-						} else {
-							cal.selectCell(index);
-						}	
-
-					} else {
-						link = cell.getElementsByTagName("a")[0];
-						if (link) {
-							link.blur();
-						}
-						cal.selectCell(index);
-					}
-				}
-			}
-		}
-	},
-
-	/**
-	* The event that is executed when the user hovers over a cell
-	* @method doCellMouseOver
-	* @param {DOMEvent} e	The event
-	* @param {Calendar} cal	A reference to the calendar passed by the Event utility
-	*/
-	doCellMouseOver : function(e, cal) {
-		var target;
-		if (e) {
-			target = Event.getTarget(e);
-		} else {
-			target = this;
-		}
-
-		while (target.tagName && target.tagName.toLowerCase() != "td") {
-			target = target.parentNode;
-			if (!target.tagName || target.tagName.toLowerCase() == "html") {
-				return;
-			}
-		}
-
-		if (Dom.hasClass(target, cal.Style.CSS_CELL_SELECTABLE)) {
-			Dom.addClass(target, cal.Style.CSS_CELL_HOVER);
-		}
-	},
-
-	/**
-	* The event that is executed when the user moves the mouse out of a cell
-	* @method doCellMouseOut
-	* @param {DOMEvent} e	The event
-	* @param {Calendar} cal	A reference to the calendar passed by the Event utility
-	*/
-	doCellMouseOut : function(e, cal) {
-		var target;
-		if (e) {
-			target = Event.getTarget(e);
-		} else {
-			target = this;
-		}
-
-		while (target.tagName && target.tagName.toLowerCase() != "td") {
-			target = target.parentNode;
-			if (!target.tagName || target.tagName.toLowerCase() == "html") {
-				return;
-			}
-		}
-
-		if (Dom.hasClass(target, cal.Style.CSS_CELL_SELECTABLE)) {
-			Dom.removeClass(target, cal.Style.CSS_CELL_HOVER);
-		}
-	},
-
-	setupConfig : function() {
-		var cfg = this.cfg;
-
-		/**
-		* The month/year representing the current visible Calendar date (mm/yyyy)
-		* @config pagedate
-		* @type String | Date
-		* @default today's date
-		*/
-		cfg.addProperty(DEF_CFG.PAGEDATE.key, { value:new Date(), handler:this.configPageDate } );
-
-		/**
-		* The date or range of dates representing the current Calendar selection
-		* @config selected
-		* @type String
-		* @default []
-		*/
-		cfg.addProperty(DEF_CFG.SELECTED.key, { value:[], handler:this.configSelected } );
-
-		/**
-		* The title to display above the Calendar's month header
-		* @config title
-		* @type String
-		* @default ""
-		*/
-		cfg.addProperty(DEF_CFG.TITLE.key, { value:DEF_CFG.TITLE.value, handler:this.configTitle } );
-
-		/**
-		* Whether or not a close button should be displayed for this Calendar
-		* @config close
-		* @type Boolean
-		* @default false
-		*/
-		cfg.addProperty(DEF_CFG.CLOSE.key, { value:DEF_CFG.CLOSE.value, handler:this.configClose } );
-
-		/**
-		* Whether or not an iframe shim should be placed under the Calendar to prevent select boxes from bleeding through in Internet Explorer 6 and below.
-		* This property is enabled by default for IE6 and below. It is disabled by default for other browsers for performance reasons, but can be 
-		* enabled if required.
-		* 
-		* @config iframe
-		* @type Boolean
-		* @default true for IE6 and below, false for all other browsers
-		*/
-		cfg.addProperty(DEF_CFG.IFRAME.key, { value:DEF_CFG.IFRAME.value, handler:this.configIframe, validator:cfg.checkBoolean } );
-
-		/**
-		* The minimum selectable date in the current Calendar (mm/dd/yyyy)
-		* @config mindate
-		* @type String | Date
-		* @default null
-		*/
-		cfg.addProperty(DEF_CFG.MINDATE.key, { value:DEF_CFG.MINDATE.value, handler:this.configMinDate } );
-
-		/**
-		* The maximum selectable date in the current Calendar (mm/dd/yyyy)
-		* @config maxdate
-		* @type String | Date
-		* @default null
-		*/
-		cfg.addProperty(DEF_CFG.MAXDATE.key, { value:DEF_CFG.MAXDATE.value, handler:this.configMaxDate } );
-	
-	
-		// Options properties
-	
-		/**
-		* True if the Calendar should allow multiple selections. False by default.
-		* @config MULTI_SELECT
-		* @type Boolean
-		* @default false
-		*/
-		cfg.addProperty(DEF_CFG.MULTI_SELECT.key,	{ value:DEF_CFG.MULTI_SELECT.value, handler:this.configOptions, validator:cfg.checkBoolean } );
-
-		/**
-		* The weekday the week begins on. Default is 0 (Sunday = 0, Monday = 1 ... Saturday = 6).
-		* @config START_WEEKDAY
-		* @type number
-		* @default 0
-		*/
-		cfg.addProperty(DEF_CFG.START_WEEKDAY.key,	{ value:DEF_CFG.START_WEEKDAY.value, handler:this.configOptions, validator:cfg.checkNumber  } );
-	
-		/**
-		* True if the Calendar should show weekday labels. True by default.
-		* @config SHOW_WEEKDAYS
-		* @type Boolean
-		* @default true
-		*/
-		cfg.addProperty(DEF_CFG.SHOW_WEEKDAYS.key,	{ value:DEF_CFG.SHOW_WEEKDAYS.value, handler:this.configOptions, validator:cfg.checkBoolean  } );
-	
-		/**
-		* True if the Calendar should show week row headers. False by default.
-		* @config SHOW_WEEK_HEADER
-		* @type Boolean
-		* @default false
-		*/
-		cfg.addProperty(DEF_CFG.SHOW_WEEK_HEADER.key, { value:DEF_CFG.SHOW_WEEK_HEADER.value, handler:this.configOptions, validator:cfg.checkBoolean } );
-	
-		/**
-		* True if the Calendar should show week row footers. False by default.
-		* @config SHOW_WEEK_FOOTER
-		* @type Boolean
-		* @default false
-		*/	
-		cfg.addProperty(DEF_CFG.SHOW_WEEK_FOOTER.key,{ value:DEF_CFG.SHOW_WEEK_FOOTER.value, handler:this.configOptions, validator:cfg.checkBoolean } );
-	
-		/**
-		* True if the Calendar should suppress weeks that are not a part of the current month. False by default.
-		* @config HIDE_BLANK_WEEKS
-		* @type Boolean
-		* @default false
-		*/	
-		cfg.addProperty(DEF_CFG.HIDE_BLANK_WEEKS.key, { value:DEF_CFG.HIDE_BLANK_WEEKS.value, handler:this.configOptions, validator:cfg.checkBoolean } );
-		
-		/**
-		* The image that should be used for the left navigation arrow.
-		* @config NAV_ARROW_LEFT
-		* @type String
-		* @deprecated	You can customize the image by overriding the default CSS class for the left arrow - "calnavleft"  
-		* @default null
-		*/	
-		cfg.addProperty(DEF_CFG.NAV_ARROW_LEFT.key,	{ value:DEF_CFG.NAV_ARROW_LEFT.value, handler:this.configOptions } );
-	
-		/**
-		* The image that should be used for the right navigation arrow.
-		* @config NAV_ARROW_RIGHT
-		* @type String
-		* @deprecated	You can customize the image by overriding the default CSS class for the right arrow - "calnavright"
-		* @default null
-		*/	
-		cfg.addProperty(DEF_CFG.NAV_ARROW_RIGHT.key, { value:DEF_CFG.NAV_ARROW_RIGHT.value, handler:this.configOptions } );
-	
-		// Locale properties
-	
-		/**
-		* The short month labels for the current locale.
-		* @config MONTHS_SHORT
-		* @type String[]
-		* @default ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
-		*/
-		cfg.addProperty(DEF_CFG.MONTHS_SHORT.key,	{ value:DEF_CFG.MONTHS_SHORT.value, handler:this.configLocale } );
-		
-		/**
-		* The long month labels for the current locale.
-		* @config MONTHS_LONG
-		* @type String[]
-		* @default ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"
-		*/	
-		cfg.addProperty(DEF_CFG.MONTHS_LONG.key,		{ value:DEF_CFG.MONTHS_LONG.value, handler:this.configLocale } );
-
-		/**
-		* The 1-character weekday labels for the current locale.
-		* @config WEEKDAYS_1CHAR
-		* @type String[]
-		* @default ["S", "M", "T", "W", "T", "F", "S"]
-		*/	
-		cfg.addProperty(DEF_CFG.WEEKDAYS_1CHAR.key,	{ value:DEF_CFG.WEEKDAYS_1CHAR.value, handler:this.configLocale } );
-		
-		/**
-		* The short weekday labels for the current locale.
-		* @config WEEKDAYS_SHORT
-		* @type String[]
-		* @default ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"]
-		*/	
-		cfg.addProperty(DEF_CFG.WEEKDAYS_SHORT.key,	{ value:DEF_CFG.WEEKDAYS_SHORT.value, handler:this.configLocale } );
-		
-		/**
-		* The medium weekday labels for the current locale.
-		* @config WEEKDAYS_MEDIUM
-		* @type String[]
-		* @default ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]
-		*/	
-		cfg.addProperty(DEF_CFG.WEEKDAYS_MEDIUM.key,	{ value:DEF_CFG.WEEKDAYS_MEDIUM.value, handler:this.configLocale } );
-		
-		/**
-		* The long weekday labels for the current locale.
-		* @config WEEKDAYS_LONG
-		* @type String[]
-		* @default ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]
-		*/	
-		cfg.addProperty(DEF_CFG.WEEKDAYS_LONG.key,	{ value:DEF_CFG.WEEKDAYS_LONG.value, handler:this.configLocale } );
-	
-		/**
-		* Refreshes the locale values used to build the Calendar.
-		* @method refreshLocale
-		* @private
-		*/
-		var refreshLocale = function() {
-			cfg.refireEvent(DEF_CFG.LOCALE_MONTHS.key);
-			cfg.refireEvent(DEF_CFG.LOCALE_WEEKDAYS.key);
-		};
-	
-		cfg.subscribeToConfigEvent(DEF_CFG.START_WEEKDAY.key, refreshLocale, this, true);
-		cfg.subscribeToConfigEvent(DEF_CFG.MONTHS_SHORT.key, refreshLocale, this, true);
-		cfg.subscribeToConfigEvent(DEF_CFG.MONTHS_LONG.key, refreshLocale, this, true);
-		cfg.subscribeToConfigEvent(DEF_CFG.WEEKDAYS_1CHAR.key, refreshLocale, this, true);
-		cfg.subscribeToConfigEvent(DEF_CFG.WEEKDAYS_SHORT.key, refreshLocale, this, true);
-		cfg.subscribeToConfigEvent(DEF_CFG.WEEKDAYS_MEDIUM.key, refreshLocale, this, true);
-		cfg.subscribeToConfigEvent(DEF_CFG.WEEKDAYS_LONG.key, refreshLocale, this, true);
-		
-		/**
-		* The setting that determines which length of month labels should be used. Possible values are "short" and "long".
-		* @config LOCALE_MONTHS
-		* @type String
-		* @default "long"
-		*/	
-		cfg.addProperty(DEF_CFG.LOCALE_MONTHS.key,	{ value:DEF_CFG.LOCALE_MONTHS.value, handler:this.configLocaleValues } );
-		
-		/**
-		* The setting that determines which length of weekday labels should be used. Possible values are "1char", "short", "medium", and "long".
-		* @config LOCALE_WEEKDAYS
-		* @type String
-		* @default "short"
-		*/	
-		cfg.addProperty(DEF_CFG.LOCALE_WEEKDAYS.key,	{ value:DEF_CFG.LOCALE_WEEKDAYS.value, handler:this.configLocaleValues } );
-	
-		/**
-		* The value used to delimit individual dates in a date string passed to various Calendar functions.
-		* @config DATE_DELIMITER
-		* @type String
-		* @default ","
-		*/	
-		cfg.addProperty(DEF_CFG.DATE_DELIMITER.key,		{ value:DEF_CFG.DATE_DELIMITER.value, handler:this.configLocale } );
-	
-		/**
-		* The value used to delimit date fields in a date string passed to various Calendar functions.
-		* @config DATE_FIELD_DELIMITER
-		* @type String
-		* @default "/"
-		*/	
-		cfg.addProperty(DEF_CFG.DATE_FIELD_DELIMITER.key, { value:DEF_CFG.DATE_FIELD_DELIMITER.value, handler:this.configLocale } );
-	
-		/**
-		* The value used to delimit date ranges in a date string passed to various Calendar functions.
-		* @config DATE_RANGE_DELIMITER
-		* @type String
-		* @default "-"
-		*/
-		cfg.addProperty(DEF_CFG.DATE_RANGE_DELIMITER.key, { value:DEF_CFG.DATE_RANGE_DELIMITER.value, handler:this.configLocale } );
-	
-		/**
-		* The position of the month in a month/year date string
-		* @config MY_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/
-		cfg.addProperty(DEF_CFG.MY_MONTH_POSITION.key,	{ value:DEF_CFG.MY_MONTH_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the year in a month/year date string
-		* @config MY_YEAR_POSITION
-		* @type Number
-		* @default 2
-		*/
-		cfg.addProperty(DEF_CFG.MY_YEAR_POSITION.key,	{ value:DEF_CFG.MY_YEAR_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the month in a month/day date string
-		* @config MD_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/
-		cfg.addProperty(DEF_CFG.MD_MONTH_POSITION.key,	{ value:DEF_CFG.MD_MONTH_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the day in a month/year date string
-		* @config MD_DAY_POSITION
-		* @type Number
-		* @default 2
-		*/
-		cfg.addProperty(DEF_CFG.MD_DAY_POSITION.key,		{ value:DEF_CFG.MD_DAY_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the month in a month/day/year date string
-		* @config MDY_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/
-		cfg.addProperty(DEF_CFG.MDY_MONTH_POSITION.key,	{ value:DEF_CFG.MDY_MONTH_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the day in a month/day/year date string
-		* @config MDY_DAY_POSITION
-		* @type Number
-		* @default 2
-		*/
-		cfg.addProperty(DEF_CFG.MDY_DAY_POSITION.key,	{ value:DEF_CFG.MDY_DAY_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the year in a month/day/year date string
-		* @config MDY_YEAR_POSITION
-		* @type Number
-		* @default 3
-		*/
-		cfg.addProperty(DEF_CFG.MDY_YEAR_POSITION.key,	{ value:DEF_CFG.MDY_YEAR_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-		
-		/**
-		* The position of the month in the month year label string used as the Calendar header
-		* @config MY_LABEL_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_MONTH_POSITION.key,	{ value:DEF_CFG.MY_LABEL_MONTH_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the year in the month year label string used as the Calendar header
-		* @config MY_LABEL_YEAR_POSITION
-		* @type Number
-		* @default 2
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_YEAR_POSITION.key,	{ value:DEF_CFG.MY_LABEL_YEAR_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-		
-		/**
-		* The suffix used after the month when rendering the Calendar header
-		* @config MY_LABEL_MONTH_SUFFIX
-		* @type String
-		* @default " "
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_MONTH_SUFFIX.key,	{ value:DEF_CFG.MY_LABEL_MONTH_SUFFIX.value, handler:this.configLocale } );
-		
-		/**
-		* The suffix used after the year when rendering the Calendar header
-		* @config MY_LABEL_YEAR_SUFFIX
-		* @type String
-		* @default ""
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_YEAR_SUFFIX.key, { value:DEF_CFG.MY_LABEL_YEAR_SUFFIX.value, handler:this.configLocale } );
-
-		/**
-		* Configuration for the Month/Year CalendarNavigator UI which allows the user to jump directly to a 
-		* specific Month/Year without having to scroll sequentially through months.
-		* <p>
-		* Setting this property to null (default value) or false, will disable the CalendarNavigator UI.
-		* </p>
-		* <p>
-		* Setting this property to true will enable the CalendarNavigatior UI with the default CalendarNavigator configuration values.
-		* </p>
-		* <p>
-		* This property can also be set to an object literal containing configuration properties for the CalendarNavigator UI.
-		* The configuration object expects the the following case-sensitive properties, with the "strings" property being a nested object.
-		* Any properties which are not provided will use the default values (defined in the CalendarNavigator class).
-		* </p>
-		* <dl>
-		* <dt>strings</dt>
-		* <dd><em>Object</em> :  An object with the properties shown below, defining the string labels to use in the Navigator's UI
-		*     <dl>
-		*         <dt>month</dt><dd><em>String</em> : The string to use for the month label. Defaults to "Month".</dd>
-		*         <dt>year</dt><dd><em>String</em> : The string to use for the year label. Defaults to "Year".</dd>
-		*         <dt>submit</dt><dd><em>String</em> : The string to use for the submit button label. Defaults to "Okay".</dd>
-		*         <dt>cancel</dt><dd><em>String</em> : The string to use for the cancel button label. Defaults to "Cancel".</dd>
-		*         <dt>invalidYear</dt><dd><em>String</em> : The string to use for invalid year values. Defaults to "Year needs to be a number".</dd>
-		*     </dl>
-		* </dd>
-		* <dt>monthFormat</dt><dd><em>String</em> : The month format to use. Either YAHOO.widget.Calendar.LONG, or YAHOO.widget.Calendar.SHORT. Defaults to YAHOO.widget.Calendar.LONG</dd>
-		* <dt>initialFocus</dt><dd><em>String</em> : Either "year" or "month" specifying which input control should get initial focus. Defaults to "year"</dd>
-		* </dl>
-		* <p>E.g.</p>
-		* <pre>
-		* var navConfig = {
-		*	  strings: {
-		*		  month:"Calendar Month",
-		*		  year:"Calendar Year",
-		*		  submit: "Submit",
-		*		  cancel: "Cancel",
-		*		  invalidYear: "Please enter a valid year"
-		*	  },
-		*	  monthFormat: YAHOO.widget.Calendar.SHORT,
-		*	  initialFocus: "month"
-		* }
-		* </pre>
-		* @config navigator
-		* @type {Object|Boolean}
-		* @default null
-		*/
-		cfg.addProperty(DEF_CFG.NAV.key, { value:DEF_CFG.NAV.value, handler:this.configNavigator } );
-
-		/**
-		 * The map of UI strings which the Calendar UI uses.
-		 *
-		 * @config strings
-		 * @type {Object}
-		 * @default An object with the properties shown below:
-		 *     <dl>
-		 *         <dt>previousMonth</dt><dd><em>String</em> : The string to use for the "Previous Month" navigation UI. Defaults to "Previous Month".</dd>
-		 *         <dt>nextMonth</dt><dd><em>String</em> : The string to use for the "Next Month" navigation UI. Defaults to "Next Month".</dd>
-		 *         <dt>close</dt><dd><em>String</em> : The string to use for the close button label. Defaults to "Close".</dd>
-		 *     </dl>
-		 */
-		cfg.addProperty(DEF_CFG.STRINGS.key, { 
-			value:DEF_CFG.STRINGS.value,
-			handler:this.configStrings,
-			validator: function(val) {
-				return Lang.isObject(val);
-			},
-			supercedes:DEF_CFG.STRINGS.supercedes
-		});
-	},
-
-	/**
-	* The default handler for the "strings" property
-	* @method configStrings
-	*/
-	configStrings : function(type, args, obj) {
-		var val = Lang.merge(DEF_CFG.STRINGS.value, args[0]);
-		this.cfg.setProperty(DEF_CFG.STRINGS.key, val, true);
-	},
-
-	/**
-	* The default handler for the "pagedate" property
-	* @method configPageDate
-	*/
-	configPageDate : function(type, args, obj) {
-		this.cfg.setProperty(DEF_CFG.PAGEDATE.key, this._parsePageDate(args[0]), true);
-	},
-
-	/**
-	* The default handler for the "mindate" property
-	* @method configMinDate
-	*/
-	configMinDate : function(type, args, obj) {
-		var val = args[0];
-		if (Lang.isString(val)) {
-			val = this._parseDate(val);
-			this.cfg.setProperty(DEF_CFG.MINDATE.key, DateMath.getDate(val[0],(val[1]-1),val[2]));
-		}
-	},
-
-	/**
-	* The default handler for the "maxdate" property
-	* @method configMaxDate
-	*/
-	configMaxDate : function(type, args, obj) {
-		var val = args[0];
-		if (Lang.isString(val)) {
-			val = this._parseDate(val);
-			this.cfg.setProperty(DEF_CFG.MAXDATE.key, DateMath.getDate(val[0],(val[1]-1),val[2]));
-		}
-	},
-
-	/**
-	* The default handler for the "selected" property
-	* @method configSelected
-	*/
-	configSelected : function(type, args, obj) {
-		var selected = args[0],
-			cfgSelected = DEF_CFG.SELECTED.key;
-		
-		if (selected) {
-			if (Lang.isString(selected)) {
-				this.cfg.setProperty(cfgSelected, this._parseDates(selected), true);
-			} 
-		}
-		if (! this._selectedDates) {
-			this._selectedDates = this.cfg.getProperty(cfgSelected);
-		}
-	},
-	
-	/**
-	* The default handler for all configuration options properties
-	* @method configOptions
-	*/
-	configOptions : function(type, args, obj) {
-		this.Options[type.toUpperCase()] = args[0];
-	},
-
-	/**
-	* The default handler for all configuration locale properties
-	* @method configLocale
-	*/
-	configLocale : function(type, args, obj) {
-		this.Locale[type.toUpperCase()] = args[0];
-
-		this.cfg.refireEvent(DEF_CFG.LOCALE_MONTHS.key);
-		this.cfg.refireEvent(DEF_CFG.LOCALE_WEEKDAYS.key);
-	},
-	
-	/**
-	* The default handler for all configuration locale field length properties
-	* @method configLocaleValues
-	*/
-	configLocaleValues : function(type, args, obj) {
-
-		type = type.toLowerCase();
-
-		var val = args[0],
-			cfg = this.cfg,
-			Locale = this.Locale;
-
-		switch (type) {
-			case DEF_CFG.LOCALE_MONTHS.key:
-				switch (val) {
-					case Calendar.SHORT:
-						Locale.LOCALE_MONTHS = cfg.getProperty(DEF_CFG.MONTHS_SHORT.key).concat();
-						break;
-					case Calendar.LONG:
-						Locale.LOCALE_MONTHS = cfg.getProperty(DEF_CFG.MONTHS_LONG.key).concat();
-						break;
-				}
-				break;
-			case DEF_CFG.LOCALE_WEEKDAYS.key:
-				switch (val) {
-					case Calendar.ONE_CHAR:
-						Locale.LOCALE_WEEKDAYS = cfg.getProperty(DEF_CFG.WEEKDAYS_1CHAR.key).concat();
-						break;
-					case Calendar.SHORT:
-						Locale.LOCALE_WEEKDAYS = cfg.getProperty(DEF_CFG.WEEKDAYS_SHORT.key).concat();
-						break;
-					case Calendar.MEDIUM:
-						Locale.LOCALE_WEEKDAYS = cfg.getProperty(DEF_CFG.WEEKDAYS_MEDIUM.key).concat();
-						break;
-					case Calendar.LONG:
-						Locale.LOCALE_WEEKDAYS = cfg.getProperty(DEF_CFG.WEEKDAYS_LONG.key).concat();
-						break;
-				}
-				
-				var START_WEEKDAY = cfg.getProperty(DEF_CFG.START_WEEKDAY.key);
-	
-				if (START_WEEKDAY > 0) {
-					for (var w=0; w < START_WEEKDAY; ++w) {
-						Locale.LOCALE_WEEKDAYS.push(Locale.LOCALE_WEEKDAYS.shift());
-					}
-				}
-				break;
-		}
-	},
-
-	/**
-	 * The default handler for the "navigator" property
-	 * @method configNavigator
-	 */
-	configNavigator : function(type, args, obj) {
-		var val = args[0];
-		if (YAHOO.widget.CalendarNavigator && (val === true || Lang.isObject(val))) {
-			if (!this.oNavigator) {
-				this.oNavigator = new YAHOO.widget.CalendarNavigator(this);
-				// Cleanup DOM Refs/Events before innerHTML is removed.
-				this.beforeRenderEvent.subscribe(function () {
-					if (!this.pages) {
-						this.oNavigator.erase();
-					}
-				}, this, true);
-			}
-		} else {
-			if (this.oNavigator) {
-				this.oNavigator.destroy();
-				this.oNavigator = null;
-			}
-		}
-	},
-
-	/**
-	* Defines the style constants for the Calendar
-	* @method initStyles
-	*/
-	initStyles : function() {
-
-		var defStyle = Calendar._STYLES;
-
-		this.Style = {
-			/**
-			* @property Style.CSS_ROW_HEADER
-			*/
-			CSS_ROW_HEADER: defStyle.CSS_ROW_HEADER,
-			/**
-			* @property Style.CSS_ROW_FOOTER
-			*/
-			CSS_ROW_FOOTER: defStyle.CSS_ROW_FOOTER,
-			/**
-			* @property Style.CSS_CELL
-			*/
-			CSS_CELL : defStyle.CSS_CELL,
-			/**
-			* @property Style.CSS_CELL_SELECTOR
-			*/
-			CSS_CELL_SELECTOR : defStyle.CSS_CELL_SELECTOR,
-			/**
-			* @property Style.CSS_CELL_SELECTED
-			*/
-			CSS_CELL_SELECTED : defStyle.CSS_CELL_SELECTED,
-			/**
-			* @property Style.CSS_CELL_SELECTABLE
-			*/
-			CSS_CELL_SELECTABLE : defStyle.CSS_CELL_SELECTABLE,
-			/**
-			* @property Style.CSS_CELL_RESTRICTED
-			*/
-			CSS_CELL_RESTRICTED : defStyle.CSS_CELL_RESTRICTED,
-			/**
-			* @property Style.CSS_CELL_TODAY
-			*/
-			CSS_CELL_TODAY : defStyle.CSS_CELL_TODAY,
-			/**
-			* @property Style.CSS_CELL_OOM
-			*/
-			CSS_CELL_OOM : defStyle.CSS_CELL_OOM,
-			/**
-			* @property Style.CSS_CELL_OOB
-			*/
-			CSS_CELL_OOB : defStyle.CSS_CELL_OOB,
-			/**
-			* @property Style.CSS_HEADER
-			*/
-			CSS_HEADER : defStyle.CSS_HEADER,
-			/**
-			* @property Style.CSS_HEADER_TEXT
-			*/
-			CSS_HEADER_TEXT : defStyle.CSS_HEADER_TEXT,
-			/**
-			* @property Style.CSS_BODY
-			*/
-			CSS_BODY : defStyle.CSS_BODY,
-			/**
-			* @property Style.CSS_WEEKDAY_CELL
-			*/
-			CSS_WEEKDAY_CELL : defStyle.CSS_WEEKDAY_CELL,
-			/**
-			* @property Style.CSS_WEEKDAY_ROW
-			*/
-			CSS_WEEKDAY_ROW : defStyle.CSS_WEEKDAY_ROW,
-			/**
-			* @property Style.CSS_FOOTER
-			*/
-			CSS_FOOTER : defStyle.CSS_FOOTER,
-			/**
-			* @property Style.CSS_CALENDAR
-			*/
-			CSS_CALENDAR : defStyle.CSS_CALENDAR,
-			/**
-			* @property Style.CSS_SINGLE
-			*/
-			CSS_SINGLE : defStyle.CSS_SINGLE,
-			/**
-			* @property Style.CSS_CONTAINER
-			*/
-			CSS_CONTAINER : defStyle.CSS_CONTAINER,
-			/**
-			* @property Style.CSS_NAV_LEFT
-			*/
-			CSS_NAV_LEFT : defStyle.CSS_NAV_LEFT,
-			/**
-			* @property Style.CSS_NAV_RIGHT
-			*/
-			CSS_NAV_RIGHT : defStyle.CSS_NAV_RIGHT,
-			/**
-			* @property Style.CSS_NAV
-			*/
-			CSS_NAV : defStyle.CSS_NAV,
-			/**
-			* @property Style.CSS_CLOSE
-			*/
-			CSS_CLOSE : defStyle.CSS_CLOSE,
-			/**
-			* @property Style.CSS_CELL_TOP
-			*/
-			CSS_CELL_TOP : defStyle.CSS_CELL_TOP,
-			/**
-			* @property Style.CSS_CELL_LEFT
-			*/
-			CSS_CELL_LEFT : defStyle.CSS_CELL_LEFT,
-			/**
-			* @property Style.CSS_CELL_RIGHT
-			*/
-			CSS_CELL_RIGHT : defStyle.CSS_CELL_RIGHT,
-			/**
-			* @property Style.CSS_CELL_BOTTOM
-			*/
-			CSS_CELL_BOTTOM : defStyle.CSS_CELL_BOTTOM,
-			/**
-			* @property Style.CSS_CELL_HOVER
-			*/
-			CSS_CELL_HOVER : defStyle.CSS_CELL_HOVER,
-			/**
-			* @property Style.CSS_CELL_HIGHLIGHT1
-			*/
-			CSS_CELL_HIGHLIGHT1 : defStyle.CSS_CELL_HIGHLIGHT1,
-			/**
-			* @property Style.CSS_CELL_HIGHLIGHT2
-			*/
-			CSS_CELL_HIGHLIGHT2 : defStyle.CSS_CELL_HIGHLIGHT2,
-			/**
-			* @property Style.CSS_CELL_HIGHLIGHT3
-			*/
-			CSS_CELL_HIGHLIGHT3 : defStyle.CSS_CELL_HIGHLIGHT3,
-			/**
-			* @property Style.CSS_CELL_HIGHLIGHT4
-			*/
-			CSS_CELL_HIGHLIGHT4 : defStyle.CSS_CELL_HIGHLIGHT4
-		};
-	},
-
-	/**
-	* Builds the date label that will be displayed in the calendar header or
-	* footer, depending on configuration.
-	* @method buildMonthLabel
-	* @return	{String}	The formatted calendar month label
-	*/
-	buildMonthLabel : function() {
-		return this._buildMonthLabel(this.cfg.getProperty(DEF_CFG.PAGEDATE.key));
-	},
-
-    /**
-     * Helper method, to format a Month Year string, given a JavaScript Date, based on the 
-     * Calendar localization settings
-     * 
-     * @method _buildMonthLabel
-     * @private
-     * @param {Date} date
-     * @return {String} Formated month, year string
-     */
-	_buildMonthLabel : function(date) {
-		var	monthLabel  = this.Locale.LOCALE_MONTHS[date.getMonth()] + this.Locale.MY_LABEL_MONTH_SUFFIX,
-			yearLabel = date.getFullYear() + this.Locale.MY_LABEL_YEAR_SUFFIX;
-
-		if (this.Locale.MY_LABEL_MONTH_POSITION == 2 || this.Locale.MY_LABEL_YEAR_POSITION == 1) {
-			return yearLabel + monthLabel;
-		} else {
-			return monthLabel + yearLabel;
-		}
-	},
-	
-	/**
-	* Builds the date digit that will be displayed in calendar cells
-	* @method buildDayLabel
-	* @param {Date}	workingDate	The current working date
-	* @return	{String}	The formatted day label
-	*/
-	buildDayLabel : function(workingDate) {
-		return workingDate.getDate();
-	},
-	
-	/**
-	 * Creates the title bar element and adds it to Calendar container DIV
-	 * 
-	 * @method createTitleBar
-	 * @param {String} strTitle The title to display in the title bar
-	 * @return The title bar element
-	 */
-	createTitleBar : function(strTitle) {
-		var tDiv = Dom.getElementsByClassName(YAHOO.widget.CalendarGroup.CSS_2UPTITLE, "div", this.oDomContainer)[0] || document.createElement("div");
-		tDiv.className = YAHOO.widget.CalendarGroup.CSS_2UPTITLE;
-		tDiv.innerHTML = strTitle;
-		this.oDomContainer.insertBefore(tDiv, this.oDomContainer.firstChild);
-	
-		Dom.addClass(this.oDomContainer, "withtitle");
-	
-		return tDiv;
-	},
-	
-	/**
-	 * Removes the title bar element from the DOM
-	 * 
-	 * @method removeTitleBar
-	 */
-	removeTitleBar : function() {
-		var tDiv = Dom.getElementsByClassName(YAHOO.widget.CalendarGroup.CSS_2UPTITLE, "div", this.oDomContainer)[0] || null;
-		if (tDiv) {
-			Event.purgeElement(tDiv);
-			this.oDomContainer.removeChild(tDiv);
-		}
-		Dom.removeClass(this.oDomContainer, "withtitle");
-	},
-	
-	/**
-	 * Creates the close button HTML element and adds it to Calendar container DIV
-	 * 
-	 * @method createCloseButton
-	 * @return The close HTML element created
-	 */
-	createCloseButton : function() {
-		var cssClose = YAHOO.widget.CalendarGroup.CSS_2UPCLOSE,
-			DEPR_CLOSE_PATH = "us/my/bn/x_d.gif",
-			lnk = Dom.getElementsByClassName("link-close", "a", this.oDomContainer)[0],
-			strings = this.cfg.getProperty(DEF_CFG.STRINGS.key),
-			closeStr = (strings && strings.close) ? strings.close : "";
-
-		if (!lnk) {
-			lnk = document.createElement("a");
-			Event.addListener(lnk, "click", function(e, cal) {
-				cal.hide(); 
-				Event.preventDefault(e);
-			}, this);
-		}
-
-		lnk.href = "#";
-		lnk.className = "link-close";
-
-		if (Calendar.IMG_ROOT !== null) {
-			var img = Dom.getElementsByClassName(cssClose, "img", lnk)[0] || document.createElement("img");
-			img.src = Calendar.IMG_ROOT + DEPR_CLOSE_PATH;
-			img.className = cssClose;
-			lnk.appendChild(img);
-		} else {
-			lnk.innerHTML = '<span class="' + cssClose + ' ' + this.Style.CSS_CLOSE + '">' + closeStr + '</span>';
-		}
-		this.oDomContainer.appendChild(lnk);
-
-		return lnk;
-	},
-	
-	/**
-	 * Removes the close button HTML element from the DOM
-	 * 
-	 * @method removeCloseButton
-	 */
-	removeCloseButton : function() {
-		var btn = Dom.getElementsByClassName("link-close", "a", this.oDomContainer)[0] || null;
-		if (btn) {
-			Event.purgeElement(btn);
-			this.oDomContainer.removeChild(btn);
-		}
-	},
-
-	/**
-	* Renders the calendar header.
-	* @method renderHeader
-	* @param {Array}	html	The current working HTML array
-	* @return {Array} The current working HTML array
-	*/
-	renderHeader : function(html) {
-
-		this.logger.log("Rendering header", "render");
-
-		var colSpan = 7,
-			DEPR_NAV_LEFT = "us/tr/callt.gif",
-			DEPR_NAV_RIGHT = "us/tr/calrt.gif",
-			cfg = this.cfg,
-			pageDate = cfg.getProperty(DEF_CFG.PAGEDATE.key),
-			strings= cfg.getProperty(DEF_CFG.STRINGS.key),
-			prevStr = (strings && strings.previousMonth) ?  strings.previousMonth : "",
-			nextStr = (strings && strings.nextMonth) ? strings.nextMonth : "",
-            monthLabel;
-
-		if (cfg.getProperty(DEF_CFG.SHOW_WEEK_HEADER.key)) {
-			colSpan += 1;
-		}
-	
-		if (cfg.getProperty(DEF_CFG.SHOW_WEEK_FOOTER.key)) {
-			colSpan += 1;
-		}
-
-		html[html.length] = "<thead>";
-		html[html.length] =		"<tr>";
-		html[html.length] =			'<th colspan="' + colSpan + '" class="' + this.Style.CSS_HEADER_TEXT + '">';
-		html[html.length] =				'<div class="' + this.Style.CSS_HEADER + '">';
-
-		var renderLeft, renderRight = false;
-
-		if (this.parent) {
-			if (this.index === 0) {
-				renderLeft = true;
-			}
-			if (this.index == (this.parent.cfg.getProperty("pages") -1)) {
-				renderRight = true;
-			}
-		} else {
-			renderLeft = true;
-			renderRight = true;
-		}
-
-		if (renderLeft) {
-			monthLabel  = this._buildMonthLabel(DateMath.subtract(pageDate, DateMath.MONTH, 1));
-
-			var leftArrow = cfg.getProperty(DEF_CFG.NAV_ARROW_LEFT.key);
-			// Check for deprecated customization - If someone set IMG_ROOT, but didn't set NAV_ARROW_LEFT, then set NAV_ARROW_LEFT to the old deprecated value
-			if (leftArrow === null && Calendar.IMG_ROOT !== null) {
-				leftArrow = Calendar.IMG_ROOT + DEPR_NAV_LEFT;
-			}
-			var leftStyle = (leftArrow === null) ? "" : ' style="background-image:url(' + leftArrow + ')"';
-			html[html.length] = '<a class="' + this.Style.CSS_NAV_LEFT + '"' + leftStyle + ' href="#">' + prevStr + ' (' + monthLabel + ')' + '</a>';
-		}
-
-		var lbl = this.buildMonthLabel();
-		var cal = this.parent || this;
-		if (cal.cfg.getProperty("navigator")) {
-			lbl = "<a class=\"" + this.Style.CSS_NAV + "\" href=\"#\">" + lbl + "</a>";
-		}
-		html[html.length] = lbl;
-
-		if (renderRight) {
-			monthLabel  = this._buildMonthLabel(DateMath.add(pageDate, DateMath.MONTH, 1));
-
-			var rightArrow = cfg.getProperty(DEF_CFG.NAV_ARROW_RIGHT.key);
-			if (rightArrow === null && Calendar.IMG_ROOT !== null) {
-				rightArrow = Calendar.IMG_ROOT + DEPR_NAV_RIGHT;
-			}
-			var rightStyle = (rightArrow === null) ? "" : ' style="background-image:url(' + rightArrow + ')"';
-			html[html.length] = '<a class="' + this.Style.CSS_NAV_RIGHT + '"' + rightStyle + ' href="#">' + nextStr + ' (' + monthLabel + ')' + '</a>';
-		}
-
-		html[html.length] =	'</div>\n</th>\n</tr>';
-
-		if (cfg.getProperty(DEF_CFG.SHOW_WEEKDAYS.key)) {
-			html = this.buildWeekdays(html);
-		}
-		
-		html[html.length] = '</thead>';
-	
-		return html;
-	},
-	
-	/**
-	* Renders the Calendar's weekday headers.
-	* @method buildWeekdays
-	* @param {Array}	html	The current working HTML array
-	* @return {Array} The current working HTML array
-	*/
-	buildWeekdays : function(html) {
-
-		html[html.length] = '<tr class="' + this.Style.CSS_WEEKDAY_ROW + '">';
-
-		if (this.cfg.getProperty(DEF_CFG.SHOW_WEEK_HEADER.key)) {
-			html[html.length] = '<th>&#160;</th>';
-		}
-
-		for(var i=0;i < this.Locale.LOCALE_WEEKDAYS.length; ++i) {
-			html[html.length] = '<th class="calweekdaycell">' + this.Locale.LOCALE_WEEKDAYS[i] + '</th>';
-		}
-
-		if (this.cfg.getProperty(DEF_CFG.SHOW_WEEK_FOOTER.key)) {
-			html[html.length] = '<th>&#160;</th>';
-		}
-
-		html[html.length] = '</tr>';
-
-		return html;
-	},
-	
-	/**
-	* Renders the calendar body.
-	* @method renderBody
-	* @param {Date}	workingDate	The current working Date being used for the render process
-	* @param {Array}	html	The current working HTML array
-	* @return {Array} The current working HTML array
-	*/
-	renderBody : function(workingDate, html) {
-		this.logger.log("Rendering body", "render");
-
-		var startDay = this.cfg.getProperty(DEF_CFG.START_WEEKDAY.key);
-
-		this.preMonthDays = workingDate.getDay();
-		if (startDay > 0) {
-			this.preMonthDays -= startDay;
-		}
-		if (this.preMonthDays < 0) {
-			this.preMonthDays += 7;
-		}
-
-		this.monthDays = DateMath.findMonthEnd(workingDate).getDate();
-		this.postMonthDays = Calendar.DISPLAY_DAYS-this.preMonthDays-this.monthDays;
-
-		this.logger.log(this.preMonthDays + " preciding out-of-month days", "render");
-		this.logger.log(this.monthDays + " month days", "render");
-		this.logger.log(this.postMonthDays + " post-month days", "render");
-
-		workingDate = DateMath.subtract(workingDate, DateMath.DAY, this.preMonthDays);
-		this.logger.log("Calendar page starts on " + workingDate, "render");
-	
-		var weekNum,
-			weekClass,
-			weekPrefix = "w",
-			cellPrefix = "_cell",
-			workingDayPrefix = "wd",
-			dayPrefix = "d",
-			cellRenderers,
-			renderer,
-			t = this.today,
-			cfg = this.cfg,
-			todayYear = t.getFullYear(),
-			todayMonth = t.getMonth(),
-			todayDate = t.getDate(),
-			useDate = cfg.getProperty(DEF_CFG.PAGEDATE.key),
-			hideBlankWeeks = cfg.getProperty(DEF_CFG.HIDE_BLANK_WEEKS.key),
-			showWeekFooter = cfg.getProperty(DEF_CFG.SHOW_WEEK_FOOTER.key),
-			showWeekHeader = cfg.getProperty(DEF_CFG.SHOW_WEEK_HEADER.key),
-			mindate = cfg.getProperty(DEF_CFG.MINDATE.key),
-			maxdate = cfg.getProperty(DEF_CFG.MAXDATE.key);
-
-		if (mindate) {
-			mindate = DateMath.clearTime(mindate);
-		}
-		if (maxdate) {
-			maxdate = DateMath.clearTime(maxdate);
-		}
-
-		html[html.length] = '<tbody class="m' + (useDate.getMonth()+1) + ' ' + this.Style.CSS_BODY + '">';
-
-		var i = 0,
-			tempDiv = document.createElement("div"),
-			cell = document.createElement("td");
-
-		tempDiv.appendChild(cell);
-
-		var cal = this.parent || this;
-
-		for (var r=0;r<6;r++) {
-			weekNum = DateMath.getWeekNumber(workingDate, startDay);
-			weekClass = weekPrefix + weekNum;
-
-			// Local OOM check for performance, since we already have pagedate
-			if (r !== 0 && hideBlankWeeks === true && workingDate.getMonth() != useDate.getMonth()) {
-				break;
-			} else {
-				html[html.length] = '<tr class="' + weekClass + '">';
-
-				if (showWeekHeader) { html = this.renderRowHeader(weekNum, html); }
-
-				for (var d=0; d < 7; d++){ // Render actual days
-
-					cellRenderers = [];
-
-					this.clearElement(cell);
-					cell.className = this.Style.CSS_CELL;
-					cell.id = this.id + cellPrefix + i;
-					this.logger.log("Rendering cell " + cell.id + " (" + workingDate.getFullYear() + "-" + (workingDate.getMonth()+1) + "-" + workingDate.getDate() + ")", "cellrender");
-
-					if (workingDate.getDate()		== todayDate && 
-						workingDate.getMonth()		== todayMonth &&
-						workingDate.getFullYear()	== todayYear) {
-						cellRenderers[cellRenderers.length]=cal.renderCellStyleToday;
-					}
-
-					var workingArray = [workingDate.getFullYear(),workingDate.getMonth()+1,workingDate.getDate()];
-					this.cellDates[this.cellDates.length] = workingArray; // Add this date to cellDates
-
-					// Local OOM check for performance, since we already have pagedate
-					if (workingDate.getMonth() != useDate.getMonth()) {
-						cellRenderers[cellRenderers.length]=cal.renderCellNotThisMonth;
-					} else {
-						Dom.addClass(cell, workingDayPrefix + workingDate.getDay());
-						Dom.addClass(cell, dayPrefix + workingDate.getDate());
-
-						for (var s=0;s<this.renderStack.length;++s) {
-
-							renderer = null;
-
-							var rArray = this.renderStack[s],
-								type = rArray[0],
-								month,
-								day,
-								year;
-
-							switch (type) {
-								case Calendar.DATE:
-									month = rArray[1][1];
-									day = rArray[1][2];
-									year = rArray[1][0];
-
-									if (workingDate.getMonth()+1 == month && workingDate.getDate() == day && workingDate.getFullYear() == year) {
-										renderer = rArray[2];
-										this.renderStack.splice(s,1);
-									}
-									break;
-								case Calendar.MONTH_DAY:
-									month = rArray[1][0];
-									day = rArray[1][1];
-
-									if (workingDate.getMonth()+1 == month && workingDate.getDate() == day) {
-										renderer = rArray[2];
-										this.renderStack.splice(s,1);
-									}
-									break;
-								case Calendar.RANGE:
-									var date1 = rArray[1][0],
-										date2 = rArray[1][1],
-										d1month = date1[1],
-										d1day = date1[2],
-										d1year = date1[0],
-										d1 = DateMath.getDate(d1year, d1month-1, d1day),
-										d2month = date2[1],
-										d2day = date2[2],
-										d2year = date2[0],
-										d2 = DateMath.getDate(d2year, d2month-1, d2day);
-
-									if (workingDate.getTime() >= d1.getTime() && workingDate.getTime() <= d2.getTime()) {
-										renderer = rArray[2];
-
-										if (workingDate.getTime()==d2.getTime()) { 
-											this.renderStack.splice(s,1);
-										}
-									}
-									break;
-								case Calendar.WEEKDAY:
-									var weekday = rArray[1][0];
-									if (workingDate.getDay()+1 == weekday) {
-										renderer = rArray[2];
-									}
-									break;
-								case Calendar.MONTH:
-									month = rArray[1][0];
-									if (workingDate.getMonth()+1 == month) {
-										renderer = rArray[2];
-									}
-									break;
-							}
-
-							if (renderer) {
-								cellRenderers[cellRenderers.length]=renderer;
-							}
-						}
-
-					}
-
-					if (this._indexOfSelectedFieldArray(workingArray) > -1) {
-						cellRenderers[cellRenderers.length]=cal.renderCellStyleSelected; 
-					}
-
-					if ((mindate && (workingDate.getTime() < mindate.getTime())) ||
-						(maxdate && (workingDate.getTime() > maxdate.getTime()))
-					) {
-						cellRenderers[cellRenderers.length]=cal.renderOutOfBoundsDate;
-					} else {
-						cellRenderers[cellRenderers.length]=cal.styleCellDefault;
-						cellRenderers[cellRenderers.length]=cal.renderCellDefault;	
-					}
-
-					for (var x=0; x < cellRenderers.length; ++x) {
-						this.logger.log("renderer[" + x + "] for (" + workingDate.getFullYear() + "-" + (workingDate.getMonth()+1) + "-" + workingDate.getDate() + ")", "cellrender");
-						if (cellRenderers[x].call(cal, workingDate, cell) == Calendar.STOP_RENDER) {
-							break;
-						}
-					}
-
-					workingDate.setTime(workingDate.getTime() + DateMath.ONE_DAY_MS);
-					// Just in case we crossed DST/Summertime boundaries
-					workingDate = DateMath.clearTime(workingDate);
-
-					if (i >= 0 && i <= 6) {
-						Dom.addClass(cell, this.Style.CSS_CELL_TOP);
-					}
-					if ((i % 7) === 0) {
-						Dom.addClass(cell, this.Style.CSS_CELL_LEFT);
-					}
-					if (((i+1) % 7) === 0) {
-						Dom.addClass(cell, this.Style.CSS_CELL_RIGHT);
-					}
-
-					var postDays = this.postMonthDays; 
-					if (hideBlankWeeks && postDays >= 7) {
-						var blankWeeks = Math.floor(postDays/7);
-						for (var p=0;p<blankWeeks;++p) {
-							postDays -= 7;
-						}
-					}
-					
-					if (i >= ((this.preMonthDays+postDays+this.monthDays)-7)) {
-						Dom.addClass(cell, this.Style.CSS_CELL_BOTTOM);
-					}
-	
-					html[html.length] = tempDiv.innerHTML;
-					i++;
-				}
-	
-				if (showWeekFooter) { html = this.renderRowFooter(weekNum, html); }
-	
-				html[html.length] = '</tr>';
-			}
-		}
-	
-		html[html.length] = '</tbody>';
-	
-		return html;
-	},
-	
-	/**
-	* Renders the calendar footer. In the default implementation, there is
-	* no footer.
-	* @method renderFooter
-	* @param {Array}	html	The current working HTML array
-	* @return {Array} The current working HTML array
-	*/
-	renderFooter : function(html) { return html; },
-	
-	/**
-	* Renders the calendar after it has been configured. The render() method has a specific call chain that will execute
-	* when the method is called: renderHeader, renderBody, renderFooter.
-	* Refer to the documentation for those methods for information on 
-	* individual render tasks.
-	* @method render
-	*/
-	render : function() {
-		this.beforeRenderEvent.fire();
-
-		// Find starting day of the current month
-		var workingDate = DateMath.findMonthStart(this.cfg.getProperty(DEF_CFG.PAGEDATE.key));
-
-		this.resetRenderers();
-		this.cellDates.length = 0;
-
-		Event.purgeElement(this.oDomContainer, true);
-
-		var html = [];
-
-		html[html.length] = '<table cellSpacing="0" class="' + this.Style.CSS_CALENDAR + ' y' + workingDate.getFullYear() + '" id="' + this.id + '">';
-		html = this.renderHeader(html);
-		html = this.renderBody(workingDate, html);
-		html = this.renderFooter(html);
-		html[html.length] = '</table>';
-
-		this.oDomContainer.innerHTML = html.join("\n");
-
-		this.applyListeners();
-		this.cells = this.oDomContainer.getElementsByTagName("td");
-	
-		this.cfg.refireEvent(DEF_CFG.TITLE.key);
-		this.cfg.refireEvent(DEF_CFG.CLOSE.key);
-		this.cfg.refireEvent(DEF_CFG.IFRAME.key);
-
-		this.renderEvent.fire();
-	},
-
-	/**
-	* Applies the Calendar's DOM listeners to applicable elements.
-	* @method applyListeners
-	*/
-	applyListeners : function() {
-		var root = this.oDomContainer,
-			cal = this.parent || this,
-			anchor = "a",
-			click = "click";
-
-		var linkLeft = Dom.getElementsByClassName(this.Style.CSS_NAV_LEFT, anchor, root),
-			linkRight = Dom.getElementsByClassName(this.Style.CSS_NAV_RIGHT, anchor, root);
-
-		if (linkLeft && linkLeft.length > 0) {
-			this.linkLeft = linkLeft[0];
-			Event.addListener(this.linkLeft, click, this.doPreviousMonthNav, cal, true);
-		}
-
-		if (linkRight && linkRight.length > 0) {
-			this.linkRight = linkRight[0];
-			Event.addListener(this.linkRight, click, this.doNextMonthNav, cal, true);
-		}
-
-		if (cal.cfg.getProperty("navigator") !== null) {
-			this.applyNavListeners();
-		}
-
-		if (this.domEventMap) {
-			var el,elements;
-			for (var cls in this.domEventMap) {	
-				if (Lang.hasOwnProperty(this.domEventMap, cls)) {
-					var items = this.domEventMap[cls];
-	
-					if (! (items instanceof Array)) {
-						items = [items];
-					}
-	
-					for (var i=0;i<items.length;i++)	{
-						var item = items[i];
-						elements = Dom.getElementsByClassName(cls, item.tag, this.oDomContainer);
-	
-						for (var c=0;c<elements.length;c++) {
-							el = elements[c];
-							 Event.addListener(el, item.event, item.handler, item.scope, item.correct );
-						}
-					}
-				}
-			}
-		}
-
-		Event.addListener(this.oDomContainer, "click", this.doSelectCell, this);
-		Event.addListener(this.oDomContainer, "mouseover", this.doCellMouseOver, this);
-		Event.addListener(this.oDomContainer, "mouseout", this.doCellMouseOut, this);
-	},
-
-	applyNavListeners : function() {
-		var calParent = this.parent || this,
-			cal = this,
-			navBtns = Dom.getElementsByClassName(this.Style.CSS_NAV, "a", this.oDomContainer);
-
-		if (navBtns.length > 0) {
-
-			Event.addListener(navBtns, "click", function (e, obj) {
-				var target = Event.getTarget(e);
-				// this == navBtn
-				if (this === target || Dom.isAncestor(this, target)) {
-					Event.preventDefault(e);
-				}
-				var navigator = calParent.oNavigator;
-				if (navigator) {
-					var pgdate = cal.cfg.getProperty("pagedate");
-					navigator.setYear(pgdate.getFullYear());
-					navigator.setMonth(pgdate.getMonth());
-					navigator.show();
-				}
-			});
-		}
-	},
-
-	/**
-	* Retrieves the Date object for the specified Calendar cell
-	* @method getDateByCellId
-	* @param {String}	id	The id of the cell
-	* @return {Date} The Date object for the specified Calendar cell
-	*/
-	getDateByCellId : function(id) {
-		var date = this.getDateFieldsByCellId(id);
-		return (date) ? DateMath.getDate(date[0],date[1]-1,date[2]) : null;
-	},
-	
-	/**
-	* Retrieves the Date object for the specified Calendar cell
-	* @method getDateFieldsByCellId
-	* @param {String}	id	The id of the cell
-	* @return {Array}	The array of Date fields for the specified Calendar cell
-	*/
-	getDateFieldsByCellId : function(id) {
-		id = this.getIndexFromId(id);
-		return (id > -1) ? this.cellDates[id] : null;
-	},
-
-	/**
-	 * Find the Calendar's cell index for a given date.
-	 * If the date is not found, the method returns -1.
-	 * <p>
-	 * The returned index can be used to lookup the cell HTMLElement  
-	 * using the Calendar's cells array or passed to selectCell to select 
-	 * cells by index. 
-	 * </p>
-	 *
-	 * See <a href="#cells">cells</a>, <a href="#selectCell">selectCell</a>.
-	 *
-	 * @method getCellIndex
-	 * @param {Date} date JavaScript Date object, for which to find a cell index.
-	 * @return {Number} The index of the date in Calendars cellDates/cells arrays, or -1 if the date 
-	 * is not on the curently rendered Calendar page.
-	 */
-	getCellIndex : function(date) {
-		var idx = -1;
-		if (date) {
-			var m = date.getMonth(),
-				y = date.getFullYear(),
-				d = date.getDate(),
-				dates = this.cellDates;
-
-			for (var i = 0; i < dates.length; ++i) {
-				var cellDate = dates[i];
-				if (cellDate[0] === y && cellDate[1] === m+1 && cellDate[2] === d) {
-					idx = i;
-					break;
-				}
-			}
-		}
-		return idx;
-	},
-
-	/**
-	 * Given the id used to mark each Calendar cell, this method
-	 * extracts the index number from the id.
-	 * 
-	 * @param {String} strId The cell id
-	 * @return {Number} The index of the cell, or -1 if id does not contain an index number
-	 */
-	getIndexFromId : function(strId) {
-		var idx = -1,
-			li = strId.lastIndexOf("_cell");
-
-		if (li > -1) {
-			idx = parseInt(strId.substring(li + 5), 10);
-		}
-
-		return idx;
-	},
-	
-	// BEGIN BUILT-IN TABLE CELL RENDERERS
-	
-	/**
-	* Renders a cell that falls before the minimum date or after the maximum date.
-	* widget class.
-	* @method renderOutOfBoundsDate
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	* @return {String} YAHOO.widget.Calendar.STOP_RENDER if rendering should stop with this style, null or nothing if rendering
-	*			should not be terminated
-	*/
-	renderOutOfBoundsDate : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_OOB);
-		cell.innerHTML = workingDate.getDate();
-		return Calendar.STOP_RENDER;
-	},
-	
-	/**
-	* Renders the row header for a week.
-	* @method renderRowHeader
-	* @param {Number}	weekNum	The week number of the current row
-	* @param {Array}	cell	The current working HTML array
-	*/
-	renderRowHeader : function(weekNum, html) {
-		html[html.length] = '<th class="calrowhead">' + weekNum + '</th>';
-		return html;
-	},
-	
-	/**
-	* Renders the row footer for a week.
-	* @method renderRowFooter
-	* @param {Number}	weekNum	The week number of the current row
-	* @param {Array}	cell	The current working HTML array
-	*/
-	renderRowFooter : function(weekNum, html) {
-		html[html.length] = '<th class="calrowfoot">' + weekNum + '</th>';
-		return html;
-	},
-	
-	/**
-	* Renders a single standard calendar cell in the calendar widget table.
-	* All logic for determining how a standard default cell will be rendered is 
-	* encapsulated in this method, and must be accounted for when extending the
-	* widget class.
-	* @method renderCellDefault
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	*/
-	renderCellDefault : function(workingDate, cell) {
-		cell.innerHTML = '<a href="#" class="' + this.Style.CSS_CELL_SELECTOR + '">' + this.buildDayLabel(workingDate) + "</a>";
-	},
-	
-	/**
-	* Styles a selectable cell.
-	* @method styleCellDefault
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	*/
-	styleCellDefault : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_SELECTABLE);
-	},
-	
-	
-	/**
-	* Renders a single standard calendar cell using the CSS hightlight1 style
-	* @method renderCellStyleHighlight1
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	*/
-	renderCellStyleHighlight1 : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_HIGHLIGHT1);
-	},
-	
-	/**
-	* Renders a single standard calendar cell using the CSS hightlight2 style
-	* @method renderCellStyleHighlight2
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	*/
-	renderCellStyleHighlight2 : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_HIGHLIGHT2);
-	},
-	
-	/**
-	* Renders a single standard calendar cell using the CSS hightlight3 style
-	* @method renderCellStyleHighlight3
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	*/
-	renderCellStyleHighlight3 : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_HIGHLIGHT3);
-	},
-	
-	/**
-	* Renders a single standard calendar cell using the CSS hightlight4 style
-	* @method renderCellStyleHighlight4
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	*/
-	renderCellStyleHighlight4 : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_HIGHLIGHT4);
-	},
-	
-	/**
-	* Applies the default style used for rendering today's date to the current calendar cell
-	* @method renderCellStyleToday
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	*/
-	renderCellStyleToday : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_TODAY);
-	},
-	
-	/**
-	* Applies the default style used for rendering selected dates to the current calendar cell
-	* @method renderCellStyleSelected
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	* @return {String} YAHOO.widget.Calendar.STOP_RENDER if rendering should stop with this style, null or nothing if rendering
-	*			should not be terminated
-	*/
-	renderCellStyleSelected : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_SELECTED);
-	},
-	
-	/**
-	* Applies the default style used for rendering dates that are not a part of the current
-	* month (preceding or trailing the cells for the current month)
-	* @method renderCellNotThisMonth
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	* @return {String} YAHOO.widget.Calendar.STOP_RENDER if rendering should stop with this style, null or nothing if rendering
-	*			should not be terminated
-	*/
-	renderCellNotThisMonth : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_OOM);
-		cell.innerHTML=workingDate.getDate();
-		return Calendar.STOP_RENDER;
-	},
-	
-	/**
-	* Renders the current calendar cell as a non-selectable "black-out" date using the default
-	* restricted style.
-	* @method renderBodyCellRestricted
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	* @return {String} YAHOO.widget.Calendar.STOP_RENDER if rendering should stop with this style, null or nothing if rendering
-	*			should not be terminated
-	*/
-	renderBodyCellRestricted : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL);
-		Dom.addClass(cell, this.Style.CSS_CELL_RESTRICTED);
-		cell.innerHTML=workingDate.getDate();
-		return Calendar.STOP_RENDER;
-	},
-	
-	// END BUILT-IN TABLE CELL RENDERERS
-	
-	// BEGIN MONTH NAVIGATION METHODS
-	
-	/**
-	* Adds the designated number of months to the current calendar month, and sets the current
-	* calendar page date to the new month.
-	* @method addMonths
-	* @param {Number}	count	The number of months to add to the current calendar
-	*/
-	addMonths : function(count) {
-		var cfgPageDate = DEF_CFG.PAGEDATE.key;
-		this.cfg.setProperty(cfgPageDate, DateMath.add(this.cfg.getProperty(cfgPageDate), DateMath.MONTH, count));
-		this.resetRenderers();
-		this.changePageEvent.fire();
-	},
-	
-	/**
-	* Subtracts the designated number of months from the current calendar month, and sets the current
-	* calendar page date to the new month.
-	* @method subtractMonths
-	* @param {Number}	count	The number of months to subtract from the current calendar
-	*/
-	subtractMonths : function(count) {
-		var cfgPageDate = DEF_CFG.PAGEDATE.key;
-		this.cfg.setProperty(cfgPageDate, DateMath.subtract(this.cfg.getProperty(cfgPageDate), DateMath.MONTH, count));
-		this.resetRenderers();
-		this.changePageEvent.fire();
-	},
-
-	/**
-	* Adds the designated number of years to the current calendar, and sets the current
-	* calendar page date to the new month.
-	* @method addYears
-	* @param {Number}	count	The number of years to add to the current calendar
-	*/
-	addYears : function(count) {
-		var cfgPageDate = DEF_CFG.PAGEDATE.key;
-		this.cfg.setProperty(cfgPageDate, DateMath.add(this.cfg.getProperty(cfgPageDate), DateMath.YEAR, count));
-		this.resetRenderers();
-		this.changePageEvent.fire();
-	},
-	
-	/**
-	* Subtcats the designated number of years from the current calendar, and sets the current
-	* calendar page date to the new month.
-	* @method subtractYears
-	* @param {Number}	count	The number of years to subtract from the current calendar
-	*/
-	subtractYears : function(count) {
-		var cfgPageDate = DEF_CFG.PAGEDATE.key;
-		this.cfg.setProperty(cfgPageDate, DateMath.subtract(this.cfg.getProperty(cfgPageDate), DateMath.YEAR, count));
-		this.resetRenderers();
-		this.changePageEvent.fire();
-	},
-	
-	/**
-	* Navigates to the next month page in the calendar widget.
-	* @method nextMonth
-	*/
-	nextMonth : function() {
-		this.addMonths(1);
-	},
-	
-	/**
-	* Navigates to the previous month page in the calendar widget.
-	* @method previousMonth
-	*/
-	previousMonth : function() {
-		this.subtractMonths(1);
-	},
-	
-	/**
-	* Navigates to the next year in the currently selected month in the calendar widget.
-	* @method nextYear
-	*/
-	nextYear : function() {
-		this.addYears(1);
-	},
-	
-	/**
-	* Navigates to the previous year in the currently selected month in the calendar widget.
-	* @method previousYear
-	*/
-	previousYear : function() {
-		this.subtractYears(1);
-	},
-	
-	// END MONTH NAVIGATION METHODS
-	
-	// BEGIN SELECTION METHODS
-	
-	/**
-	* Resets the calendar widget to the originally selected month and year, and 
-	* sets the calendar to the initial selection(s).
-	* @method reset
-	*/
-	reset : function() {
-		this.cfg.resetProperty(DEF_CFG.SELECTED.key);
-		this.cfg.resetProperty(DEF_CFG.PAGEDATE.key);
-		this.resetEvent.fire();
-	},
-	
-	/**
-	* Clears the selected dates in the current calendar widget and sets the calendar
-	* to the current month and year.
-	* @method clear
-	*/
-	clear : function() {
-		this.cfg.setProperty(DEF_CFG.SELECTED.key, []);
-		this.cfg.setProperty(DEF_CFG.PAGEDATE.key, new Date(this.today.getTime()));
-		this.clearEvent.fire();
-	},
-	
-	/**
-	* Selects a date or a collection of dates on the current calendar. This method, by default,
-	* does not call the render method explicitly. Once selection has completed, render must be 
-	* called for the changes to be reflected visually.
-	*
-	* Any dates which are OOB (out of bounds, not selectable) will not be selected and the array of 
-	* selected dates passed to the selectEvent will not contain OOB dates.
-	* 
-	* If all dates are OOB, the no state change will occur; beforeSelect and select events will not be fired.
-	*
-	* @method select
-	* @param	{String/Date/Date[]}	date	The date string of dates to select in the current calendar. Valid formats are
-	*								individual date(s) (12/24/2005,12/26/2005) or date range(s) (12/24/2005-1/1/2006).
-	*								Multiple comma-delimited dates can also be passed to this method (12/24/2005,12/11/2005-12/13/2005).
-	*								This method can also take a JavaScript Date object or an array of Date objects.
-	* @return	{Date[]}			Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	select : function(date) {
-		this.logger.log("Select: " + date, "info");
-
-		var aToBeSelected = this._toFieldArray(date),
-			validDates = [],
-			selected = [],
-			cfgSelected = DEF_CFG.SELECTED.key;
-
-		this.logger.log("Selection field array: " + aToBeSelected, "info");
-		
-		for (var a=0; a < aToBeSelected.length; ++a) {
-			var toSelect = aToBeSelected[a];
-
-			if (!this.isDateOOB(this._toDate(toSelect))) {
-
-				if (validDates.length === 0) {
-					this.beforeSelectEvent.fire();
-					selected = this.cfg.getProperty(cfgSelected);
-				}
-				validDates.push(toSelect);
-
-				if (this._indexOfSelectedFieldArray(toSelect) == -1) { 
-					selected[selected.length] = toSelect;
-				}
-			}
-		}
-
-		if (validDates.length === 0) { this.logger.log("All provided dates were OOB. beforeSelect and select events not fired", "info"); }
-
-		if (validDates.length > 0) {
-			if (this.parent) {
-				this.parent.cfg.setProperty(cfgSelected, selected);
-			} else {
-				this.cfg.setProperty(cfgSelected, selected);
-			}
-			this.selectEvent.fire(validDates);
-		}
-
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Selects a date on the current calendar by referencing the index of the cell that should be selected.
-	* This method is used to easily select a single cell (usually with a mouse click) without having to do
-	* a full render. The selected style is applied to the cell directly.
-	*
-	* If the cell is not marked with the CSS_CELL_SELECTABLE class (as is the case by default for out of month 
-	* or out of bounds cells), it will not be selected and in such a case beforeSelect and select events will not be fired.
-	* 
-	* @method selectCell
-	* @param	{Number}	cellIndex	The index of the cell to select in the current calendar. 
-	* @return	{Date[]}	Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	selectCell : function(cellIndex) {
-
-		var cell = this.cells[cellIndex],
-			cellDate = this.cellDates[cellIndex],
-			dCellDate = this._toDate(cellDate),
-			selectable = Dom.hasClass(cell, this.Style.CSS_CELL_SELECTABLE);
-
-		this.logger.log("Select: " + dCellDate, "info");
-		if (!selectable) {this.logger.log("The cell at cellIndex:" + cellIndex + " is not a selectable cell. beforeSelect, select events not fired", "info"); }
-
-		if (selectable) {
-	
-			this.beforeSelectEvent.fire();
-	
-			var cfgSelected = DEF_CFG.SELECTED.key;
-			var selected = this.cfg.getProperty(cfgSelected);
-	
-			var selectDate = cellDate.concat();
-	
-			if (this._indexOfSelectedFieldArray(selectDate) == -1) {
-				selected[selected.length] = selectDate;
-			}
-			if (this.parent) {
-				this.parent.cfg.setProperty(cfgSelected, selected);
-			} else {
-				this.cfg.setProperty(cfgSelected, selected);
-			}
-			this.renderCellStyleSelected(dCellDate,cell);
-			this.selectEvent.fire([selectDate]);
-	
-			this.doCellMouseOut.call(cell, null, this);		
-		}
-	
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Deselects a date or a collection of dates on the current calendar. This method, by default,
-	* does not call the render method explicitly. Once deselection has completed, render must be 
-	* called for the changes to be reflected visually.
-	* 
-	* The method will not attempt to deselect any dates which are OOB (out of bounds, and hence not selectable) 
-	* and the array of deselected dates passed to the deselectEvent will not contain any OOB dates.
-	* 
-	* If all dates are OOB, beforeDeselect and deselect events will not be fired.
-	* 
-	* @method deselect
-	* @param	{String/Date/Date[]}	date	The date string of dates to deselect in the current calendar. Valid formats are
-	*								individual date(s) (12/24/2005,12/26/2005) or date range(s) (12/24/2005-1/1/2006).
-	*								Multiple comma-delimited dates can also be passed to this method (12/24/2005,12/11/2005-12/13/2005).
-	*								This method can also take a JavaScript Date object or an array of Date objects.	
-	* @return	{Date[]}			Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	deselect : function(date) {
-		this.logger.log("Deselect: " + date, "info");
-
-		var aToBeDeselected = this._toFieldArray(date),
-			validDates = [],
-			selected = [],
-			cfgSelected = DEF_CFG.SELECTED.key;
-
-		this.logger.log("Deselection field array: " + aToBeDeselected, "info");
-
-		for (var a=0; a < aToBeDeselected.length; ++a) {
-			var toDeselect = aToBeDeselected[a];
-	
-			if (!this.isDateOOB(this._toDate(toDeselect))) {
-	
-				if (validDates.length === 0) {
-					this.beforeDeselectEvent.fire();
-					selected = this.cfg.getProperty(cfgSelected);
-				}
-	
-				validDates.push(toDeselect);
-	
-				var index = this._indexOfSelectedFieldArray(toDeselect);
-				if (index != -1) {	
-					selected.splice(index,1);
-				}
-			}
-		}
-	
-		if (validDates.length === 0) { this.logger.log("All provided dates were OOB. beforeDeselect and deselect events not fired");}
-	
-		if (validDates.length > 0) {
-			if (this.parent) {
-				this.parent.cfg.setProperty(cfgSelected, selected);
-			} else {
-				this.cfg.setProperty(cfgSelected, selected);
-			}
-			this.deselectEvent.fire(validDates);
-		}
-	
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Deselects a date on the current calendar by referencing the index of the cell that should be deselected.
-	* This method is used to easily deselect a single cell (usually with a mouse click) without having to do
-	* a full render. The selected style is removed from the cell directly.
-	* 
-	* If the cell is not marked with the CSS_CELL_SELECTABLE class (as is the case by default for out of month 
-	* or out of bounds cells), the method will not attempt to deselect it and in such a case, beforeDeselect and 
-	* deselect events will not be fired.
-	* 
-	* @method deselectCell
-	* @param	{Number}	cellIndex	The index of the cell to deselect in the current calendar. 
-	* @return	{Date[]}	Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	deselectCell : function(cellIndex) {
-		var cell = this.cells[cellIndex],
-			cellDate = this.cellDates[cellIndex],
-			cellDateIndex = this._indexOfSelectedFieldArray(cellDate);
-
-		var selectable = Dom.hasClass(cell, this.Style.CSS_CELL_SELECTABLE);
-		if (!selectable) { this.logger.log("The cell at cellIndex:" + cellIndex + " is not a selectable/deselectable cell", "info"); }
-
-		if (selectable) {
-
-			this.beforeDeselectEvent.fire();
-
-			var selected = this.cfg.getProperty(DEF_CFG.SELECTED.key),
-				dCellDate = this._toDate(cellDate),
-				selectDate = cellDate.concat();
-
-			if (cellDateIndex > -1) {
-				if (this.cfg.getProperty(DEF_CFG.PAGEDATE.key).getMonth() == dCellDate.getMonth() &&
-					this.cfg.getProperty(DEF_CFG.PAGEDATE.key).getFullYear() == dCellDate.getFullYear()) {
-					Dom.removeClass(cell, this.Style.CSS_CELL_SELECTED);
-				}
-				selected.splice(cellDateIndex, 1);
-			}
-	
-			if (this.parent) {
-				this.parent.cfg.setProperty(DEF_CFG.SELECTED.key, selected);
-			} else {
-				this.cfg.setProperty(DEF_CFG.SELECTED.key, selected);
-			}
-	
-			this.deselectEvent.fire(selectDate);
-		}
-	
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Deselects all dates on the current calendar.
-	* @method deselectAll
-	* @return {Date[]}		Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*						Assuming that this function executes properly, the return value should be an empty array.
-	*						However, the empty array is returned for the sake of being able to check the selection status
-	*						of the calendar.
-	*/
-	deselectAll : function() {
-		this.beforeDeselectEvent.fire();
-		
-		var cfgSelected = DEF_CFG.SELECTED.key,
-			selected = this.cfg.getProperty(cfgSelected),
-			count = selected.length,
-			sel = selected.concat();
-
-		if (this.parent) {
-			this.parent.cfg.setProperty(cfgSelected, []);
-		} else {
-			this.cfg.setProperty(cfgSelected, []);
-		}
-		
-		if (count > 0) {
-			this.deselectEvent.fire(sel);
-		}
-	
-		return this.getSelectedDates();
-	},
-	
-	// END SELECTION METHODS
-	
-	// BEGIN TYPE CONVERSION METHODS
-	
-	/**
-	* Converts a date (either a JavaScript Date object, or a date string) to the internal data structure
-	* used to represent dates: [[yyyy,mm,dd],[yyyy,mm,dd]].
-	* @method _toFieldArray
-	* @private
-	* @param	{String/Date/Date[]}	date	The date string of dates to deselect in the current calendar. Valid formats are
-	*								individual date(s) (12/24/2005,12/26/2005) or date range(s) (12/24/2005-1/1/2006).
-	*								Multiple comma-delimited dates can also be passed to this method (12/24/2005,12/11/2005-12/13/2005).
-	*								This method can also take a JavaScript Date object or an array of Date objects.	
-	* @return {Array[](Number[])}	Array of date field arrays
-	*/
-	_toFieldArray : function(date) {
-		var returnDate = [];
-	
-		if (date instanceof Date) {
-			returnDate = [[date.getFullYear(), date.getMonth()+1, date.getDate()]];
-		} else if (Lang.isString(date)) {
-			returnDate = this._parseDates(date);
-		} else if (Lang.isArray(date)) {
-			for (var i=0;i<date.length;++i) {
-				var d = date[i];
-				returnDate[returnDate.length] = [d.getFullYear(),d.getMonth()+1,d.getDate()];
-			}
-		}
-		
-		return returnDate;
-	},
-	
-	/**
-	* Converts a date field array [yyyy,mm,dd] to a JavaScript Date object. The date field array
-	* is the format in which dates are as provided as arguments to selectEvent and deselectEvent listeners.
-	* 
-	* @method toDate
-	* @param	{Number[]}	dateFieldArray	The date field array to convert to a JavaScript Date.
-	* @return	{Date}	JavaScript Date object representing the date field array.
-	*/
-	toDate : function(dateFieldArray) {
-		return this._toDate(dateFieldArray);
-	},
-	
-	/**
-	* Converts a date field array [yyyy,mm,dd] to a JavaScript Date object.
-	* @method _toDate
-	* @private
-	* @deprecated Made public, toDate 
-	* @param	{Number[]}		dateFieldArray	The date field array to convert to a JavaScript Date.
-	* @return	{Date}	JavaScript Date object representing the date field array
-	*/
-	_toDate : function(dateFieldArray) {
-		if (dateFieldArray instanceof Date) {
-			return dateFieldArray;
-		} else {
-			return DateMath.getDate(dateFieldArray[0],dateFieldArray[1]-1,dateFieldArray[2]);
-		}
-	},
-	
-	// END TYPE CONVERSION METHODS 
-	
-	// BEGIN UTILITY METHODS
-	
-	/**
-	* Converts a date field array [yyyy,mm,dd] to a JavaScript Date object.
-	* @method _fieldArraysAreEqual
-	* @private
-	* @param	{Number[]}	array1	The first date field array to compare
-	* @param	{Number[]}	array2	The first date field array to compare
-	* @return	{Boolean}	The boolean that represents the equality of the two arrays
-	*/
-	_fieldArraysAreEqual : function(array1, array2) {
-		var match = false;
-	
-		if (array1[0]==array2[0]&&array1[1]==array2[1]&&array1[2]==array2[2]) {
-			match=true;	
-		}
-	
-		return match;
-	},
-	
-	/**
-	* Gets the index of a date field array [yyyy,mm,dd] in the current list of selected dates.
-	* @method	_indexOfSelectedFieldArray
-	* @private
-	* @param	{Number[]}		find	The date field array to search for
-	* @return	{Number}			The index of the date field array within the collection of selected dates.
-	*								-1 will be returned if the date is not found.
-	*/
-	_indexOfSelectedFieldArray : function(find) {
-		var selected = -1,
-			seldates = this.cfg.getProperty(DEF_CFG.SELECTED.key);
-	
-		for (var s=0;s<seldates.length;++s) {
-			var sArray = seldates[s];
-			if (find[0]==sArray[0]&&find[1]==sArray[1]&&find[2]==sArray[2]) {
-				selected = s;
-				break;
-			}
-		}
-	
-		return selected;
-	},
-	
-	/**
-	* Determines whether a given date is OOM (out of month).
-	* @method	isDateOOM
-	* @param	{Date}	date	The JavaScript Date object for which to check the OOM status
-	* @return	{Boolean}	true if the date is OOM
-	*/
-	isDateOOM : function(date) {
-		return (date.getMonth() != this.cfg.getProperty(DEF_CFG.PAGEDATE.key).getMonth());
-	},
-	
-	/**
-	* Determines whether a given date is OOB (out of bounds - less than the mindate or more than the maxdate).
-	*
-	* @method	isDateOOB
-	* @param	{Date}	date	The JavaScript Date object for which to check the OOB status
-	* @return	{Boolean}	true if the date is OOB
-	*/
-	isDateOOB : function(date) {
-		var minDate = this.cfg.getProperty(DEF_CFG.MINDATE.key),
-			maxDate = this.cfg.getProperty(DEF_CFG.MAXDATE.key),
-			dm = DateMath;
-		
-		if (minDate) {
-			minDate = dm.clearTime(minDate);
-		} 
-		if (maxDate) {
-			maxDate = dm.clearTime(maxDate);
-		}
-	
-		var clearedDate = new Date(date.getTime());
-		clearedDate = dm.clearTime(clearedDate);
-	
-		return ((minDate && clearedDate.getTime() < minDate.getTime()) || (maxDate && clearedDate.getTime() > maxDate.getTime()));
-	},
-	
-	/**
-	 * Parses a pagedate configuration property value. The value can either be specified as a string of form "mm/yyyy" or a Date object 
-	 * and is parsed into a Date object normalized to the first day of the month. If no value is passed in, the month and year from today's date are used to create the Date object 
-	 * @method	_parsePageDate
-	 * @private
-	 * @param {Date|String}	date	Pagedate value which needs to be parsed
-	 * @return {Date}	The Date object representing the pagedate
-	 */
-	_parsePageDate : function(date) {
-		var parsedDate;
-
-		if (date) {
-			if (date instanceof Date) {
-				parsedDate = DateMath.findMonthStart(date);
-			} else {
-				var month, year, aMonthYear;
-				aMonthYear = date.split(this.cfg.getProperty(DEF_CFG.DATE_FIELD_DELIMITER.key));
-				month = parseInt(aMonthYear[this.cfg.getProperty(DEF_CFG.MY_MONTH_POSITION.key)-1], 10)-1;
-				year = parseInt(aMonthYear[this.cfg.getProperty(DEF_CFG.MY_YEAR_POSITION.key)-1], 10);
-
-				parsedDate = DateMath.getDate(year, month, 1);
-			}
-		} else {
-			parsedDate = DateMath.getDate(this.today.getFullYear(), this.today.getMonth(), 1);
-		}
-		return parsedDate;
-	},
-	
-	// END UTILITY METHODS
-	
-	// BEGIN EVENT HANDLERS
-	
-	/**
-	* Event executed before a date is selected in the calendar widget.
-	* @deprecated Event handlers for this event should be susbcribed to beforeSelectEvent.
-	*/
-	onBeforeSelect : function() {
-		if (this.cfg.getProperty(DEF_CFG.MULTI_SELECT.key) === false) {
-			if (this.parent) {
-				this.parent.callChildFunction("clearAllBodyCellStyles", this.Style.CSS_CELL_SELECTED);
-				this.parent.deselectAll();
-			} else {
-				this.clearAllBodyCellStyles(this.Style.CSS_CELL_SELECTED);
-				this.deselectAll();
-			}
-		}
-	},
-	
-	/**
-	* Event executed when a date is selected in the calendar widget.
-	* @param	{Array}	selected	An array of date field arrays representing which date or dates were selected. Example: [ [2006,8,6],[2006,8,7],[2006,8,8] ]
-	* @deprecated Event handlers for this event should be susbcribed to selectEvent.
-	*/
-	onSelect : function(selected) { },
-	
-	/**
-	* Event executed before a date is deselected in the calendar widget.
-	* @deprecated Event handlers for this event should be susbcribed to beforeDeselectEvent.
-	*/
-	onBeforeDeselect : function() { },
-	
-	/**
-	* Event executed when a date is deselected in the calendar widget.
-	* @param	{Array}	selected	An array of date field arrays representing which date or dates were deselected. Example: [ [2006,8,6],[2006,8,7],[2006,8,8] ]
-	* @deprecated Event handlers for this event should be susbcribed to deselectEvent.
-	*/
-	onDeselect : function(deselected) { },
-	
-	/**
-	* Event executed when the user navigates to a different calendar page.
-	* @deprecated Event handlers for this event should be susbcribed to changePageEvent.
-	*/
-	onChangePage : function() {
-		this.render();
-	},
-
-	/**
-	* Event executed when the calendar widget is rendered.
-	* @deprecated Event handlers for this event should be susbcribed to renderEvent.
-	*/
-	onRender : function() { },
-
-	/**
-	* Event executed when the calendar widget is reset to its original state.
-	* @deprecated Event handlers for this event should be susbcribed to resetEvemt.
-	*/
-	onReset : function() { this.render(); },
-
-	/**
-	* Event executed when the calendar widget is completely cleared to the current month with no selections.
-	* @deprecated Event handlers for this event should be susbcribed to clearEvent.
-	*/
-	onClear : function() { this.render(); },
-	
-	/**
-	* Validates the calendar widget. This method has no default implementation
-	* and must be extended by subclassing the widget.
-	* @return	Should return true if the widget validates, and false if
-	* it doesn't.
-	* @type Boolean
-	*/
-	validate : function() { return true; },
-	
-	// END EVENT HANDLERS
-	
-	// BEGIN DATE PARSE METHODS
-	
-	/**
-	* Converts a date string to a date field array
-	* @private
-	* @param	{String}	sDate			Date string. Valid formats are mm/dd and mm/dd/yyyy.
-	* @return				A date field array representing the string passed to the method
-	* @type Array[](Number[])
-	*/
-	_parseDate : function(sDate) {
-		var aDate = sDate.split(this.Locale.DATE_FIELD_DELIMITER),
-			rArray;
-	
-		if (aDate.length == 2) {
-			rArray = [aDate[this.Locale.MD_MONTH_POSITION-1],aDate[this.Locale.MD_DAY_POSITION-1]];
-			rArray.type = Calendar.MONTH_DAY;
-		} else {
-			rArray = [aDate[this.Locale.MDY_YEAR_POSITION-1],aDate[this.Locale.MDY_MONTH_POSITION-1],aDate[this.Locale.MDY_DAY_POSITION-1]];
-			rArray.type = Calendar.DATE;
-		}
-	
-		for (var i=0;i<rArray.length;i++) {
-			rArray[i] = parseInt(rArray[i], 10);
-		}
-	
-		return rArray;
-	},
-	
-	/**
-	* Converts a multi or single-date string to an array of date field arrays
-	* @private
-	* @param	{String}	sDates		Date string with one or more comma-delimited dates. Valid formats are mm/dd, mm/dd/yyyy, mm/dd/yyyy-mm/dd/yyyy
-	* @return							An array of date field arrays
-	* @type Array[](Number[])
-	*/
-	_parseDates : function(sDates) {
-		var aReturn = [],
-			aDates = sDates.split(this.Locale.DATE_DELIMITER);
-		
-		for (var d=0;d<aDates.length;++d) {
-			var sDate = aDates[d];
-	
-			if (sDate.indexOf(this.Locale.DATE_RANGE_DELIMITER) != -1) {
-				// This is a range
-				var aRange = sDate.split(this.Locale.DATE_RANGE_DELIMITER),
-					dateStart = this._parseDate(aRange[0]),
-					dateEnd = this._parseDate(aRange[1]),
-					fullRange = this._parseRange(dateStart, dateEnd);
-
-				aReturn = aReturn.concat(fullRange);
-			} else {
-				// This is not a range
-				var aDate = this._parseDate(sDate);
-				aReturn.push(aDate);
-			}
-		}
-		return aReturn;
-	},
-	
-	/**
-	* Converts a date range to the full list of included dates
-	* @private
-	* @param	{Number[]}	startDate	Date field array representing the first date in the range
-	* @param	{Number[]}	endDate		Date field array representing the last date in the range
-	* @return							An array of date field arrays
-	* @type Array[](Number[])
-	*/
-	_parseRange : function(startDate, endDate) {
-		var dCurrent = DateMath.add(DateMath.getDate(startDate[0],startDate[1]-1,startDate[2]),DateMath.DAY,1),
-			dEnd     = DateMath.getDate(endDate[0],  endDate[1]-1,  endDate[2]),
-			results = [];
-
-		results.push(startDate);
-		while (dCurrent.getTime() <= dEnd.getTime()) {
-			results.push([dCurrent.getFullYear(),dCurrent.getMonth()+1,dCurrent.getDate()]);
-			dCurrent = DateMath.add(dCurrent,DateMath.DAY,1);
-		}
-		return results;
-	},
-	
-	// END DATE PARSE METHODS
-	
-	// BEGIN RENDERER METHODS
-	
-	/**
-	* Resets the render stack of the current calendar to its original pre-render value.
-	*/
-	resetRenderers : function() {
-		this.renderStack = this._renderStack.concat();
-	},
-	
-	/**
-	 * Removes all custom renderers added to the Calendar through the addRenderer, addMonthRenderer and 
-	 * addWeekdayRenderer methods. Calendar's render method needs to be called after removing renderers 
-	 * to re-render the Calendar without custom renderers applied.
-	 */
-	removeRenderers : function() {
-		this._renderStack = [];
-		this.renderStack = [];
-	},
-
-	/**
-	* Clears the inner HTML, CSS class and style information from the specified cell.
-	* @method clearElement
-	* @param	{HTMLTableCellElement} cell The cell to clear
-	*/ 
-	clearElement : function(cell) {
-		cell.innerHTML = "&#160;";
-		cell.className="";
-	},
-	
-	/**
-	* Adds a renderer to the render stack. The function reference passed to this method will be executed
-	* when a date cell matches the conditions specified in the date string for this renderer.
-	* @method addRenderer
-	* @param	{String}	sDates		A date string to associate with the specified renderer. Valid formats
-	*									include date (12/24/2005), month/day (12/24), and range (12/1/2004-1/1/2005)
-	* @param	{Function}	fnRender	The function executed to render cells that match the render rules for this renderer.
-	*/
-	addRenderer : function(sDates, fnRender) {
-		var aDates = this._parseDates(sDates);
-		for (var i=0;i<aDates.length;++i) {
-			var aDate = aDates[i];
-		
-			if (aDate.length == 2) { // this is either a range or a month/day combo
-				if (aDate[0] instanceof Array) { // this is a range
-					this._addRenderer(Calendar.RANGE,aDate,fnRender);
-				} else { // this is a month/day combo
-					this._addRenderer(Calendar.MONTH_DAY,aDate,fnRender);
-				}
-			} else if (aDate.length == 3) {
-				this._addRenderer(Calendar.DATE,aDate,fnRender);
-			}
-		}
-	},
-	
-	/**
-	* The private method used for adding cell renderers to the local render stack.
-	* This method is called by other methods that set the renderer type prior to the method call.
-	* @method _addRenderer
-	* @private
-	* @param	{String}	type		The type string that indicates the type of date renderer being added.
-	*									Values are YAHOO.widget.Calendar.DATE, YAHOO.widget.Calendar.MONTH_DAY, YAHOO.widget.Calendar.WEEKDAY,
-	*									YAHOO.widget.Calendar.RANGE, YAHOO.widget.Calendar.MONTH
-	* @param	{Array}		aDates		An array of dates used to construct the renderer. The format varies based
-	*									on the renderer type
-	* @param	{Function}	fnRender	The function executed to render cells that match the render rules for this renderer.
-	*/
-	_addRenderer : function(type, aDates, fnRender) {
-		var add = [type,aDates,fnRender];
-		this.renderStack.unshift(add);	
-		this._renderStack = this.renderStack.concat();
-	},
-
-	/**
-	* Adds a month to the render stack. The function reference passed to this method will be executed
-	* when a date cell matches the month passed to this method.
-	* @method addMonthRenderer
-	* @param	{Number}	month		The month (1-12) to associate with this renderer
-	* @param	{Function}	fnRender	The function executed to render cells that match the render rules for this renderer.
-	*/
-	addMonthRenderer : function(month, fnRender) {
-		this._addRenderer(Calendar.MONTH,[month],fnRender);
-	},
-
-	/**
-	* Adds a weekday to the render stack. The function reference passed to this method will be executed
-	* when a date cell matches the weekday passed to this method.
-	* @method addWeekdayRenderer
-	* @param	{Number}	weekday		The weekday (Sunday = 1, Monday = 2 ... Saturday = 7) to associate with this renderer
-	* @param	{Function}	fnRender	The function executed to render cells that match the render rules for this renderer.
-	*/
-	addWeekdayRenderer : function(weekday, fnRender) {
-		this._addRenderer(Calendar.WEEKDAY,[weekday],fnRender);
-	},
-
-	// END RENDERER METHODS
-	
-	// BEGIN CSS METHODS
-	
-	/**
-	* Removes all styles from all body cells in the current calendar table.
-	* @method clearAllBodyCellStyles
-	* @param	{style}	style The CSS class name to remove from all calendar body cells
-	*/
-	clearAllBodyCellStyles : function(style) {
-		for (var c=0;c<this.cells.length;++c) {
-			Dom.removeClass(this.cells[c],style);
-		}
-	},
-	
-	// END CSS METHODS
-	
-	// BEGIN GETTER/SETTER METHODS
-	/**
-	* Sets the calendar's month explicitly
-	* @method setMonth
-	* @param {Number}	month		The numeric month, from 0 (January) to 11 (December)
-	*/
-	setMonth : function(month) {
-		var cfgPageDate = DEF_CFG.PAGEDATE.key,
-			current = this.cfg.getProperty(cfgPageDate);
-		current.setMonth(parseInt(month, 10));
-		this.cfg.setProperty(cfgPageDate, current);
-	},
-
-	/**
-	* Sets the calendar's year explicitly.
-	* @method setYear
-	* @param {Number}	year		The numeric 4-digit year
-	*/
-	setYear : function(year) {
-		var cfgPageDate = DEF_CFG.PAGEDATE.key,
-			current = this.cfg.getProperty(cfgPageDate);
-
-		current.setFullYear(parseInt(year, 10));
-		this.cfg.setProperty(cfgPageDate, current);
-	},
-
-	/**
-	* Gets the list of currently selected dates from the calendar.
-	* @method getSelectedDates
-	* @return {Date[]} An array of currently selected JavaScript Date objects.
-	*/
-	getSelectedDates : function() {
-		var returnDates = [],
-			selected = this.cfg.getProperty(DEF_CFG.SELECTED.key);
-
-		for (var d=0;d<selected.length;++d) {
-			var dateArray = selected[d];
-
-			var date = DateMath.getDate(dateArray[0],dateArray[1]-1,dateArray[2]);
-			returnDates.push(date);
-		}
-
-		returnDates.sort( function(a,b) { return a-b; } );
-		return returnDates;
-	},
-
-	/// END GETTER/SETTER METHODS ///
-	
-	/**
-	* Hides the Calendar's outer container from view.
-	* @method hide
-	*/
-	hide : function() {
-		if (this.beforeHideEvent.fire()) {
-			this.oDomContainer.style.display = "none";
-			this.hideEvent.fire();
-		}
-	},
-
-	/**
-	* Shows the Calendar's outer container.
-	* @method show
-	*/
-	show : function() {
-		if (this.beforeShowEvent.fire()) {
-			this.oDomContainer.style.display = "block";
-			this.showEvent.fire();
-		}
-	},
-
-	/**
-	* Returns a string representing the current browser.
-	* @deprecated As of 2.3.0, environment information is available in YAHOO.env.ua
-	* @see YAHOO.env.ua
-	* @property browser
-	* @type String
-	*/
-	browser : (function() {
-				var ua = navigator.userAgent.toLowerCase();
-					  if (ua.indexOf('opera')!=-1) { // Opera (check first in case of spoof)
-						 return 'opera';
-					  } else if (ua.indexOf('msie 7')!=-1) { // IE7
-						 return 'ie7';
-					  } else if (ua.indexOf('msie') !=-1) { // IE
-						 return 'ie';
-					  } else if (ua.indexOf('safari')!=-1) { // Safari (check before Gecko because it includes "like Gecko")
-						 return 'safari';
-					  } else if (ua.indexOf('gecko') != -1) { // Gecko
-						 return 'gecko';
-					  } else {
-						 return false;
-					  }
-				})(),
-	/**
-	* Returns a string representation of the object.
-	* @method toString
-	* @return {String}	A string representation of the Calendar object.
-	*/
-	toString : function() {
-		return "Calendar " + this.id;
-	},
-
-	/**
-	 * Destroys the Calendar instance. The method will remove references
-	 * to HTML elements, remove any event listeners added by the Calendar,
-	 * and destroy the Config and CalendarNavigator instances it has created.
-	 *
-	 * @method destroy
-	 */
-	destroy : function() {
-
-		if (this.beforeDestroyEvent.fire()) {
-			var cal = this;
-
-			// Child objects
-			if (cal.navigator) {
-				cal.navigator.destroy();
-			}
-
-			if (cal.cfg) {
-				cal.cfg.destroy();
-			}
-
-			// DOM event listeners
-			Event.purgeElement(cal.oDomContainer, true);
-
-			// Generated markup/DOM - Not removing the container DIV since we didn't create it.
-			Dom.removeClass(cal.oDomContainer, "withtitle");
-			Dom.removeClass(cal.oDomContainer, cal.Style.CSS_CONTAINER);
-			Dom.removeClass(cal.oDomContainer, cal.Style.CSS_SINGLE);
-			cal.oDomContainer.innerHTML = "";
-
-			// JS-to-DOM references
-			cal.oDomContainer = null;
-			cal.cells = null;
-
-			this.destroyEvent.fire();
-		}
-	}
-};
-
-YAHOO.widget.Calendar = Calendar;
-
-/**
-* @namespace YAHOO.widget
-* @class Calendar_Core
-* @extends YAHOO.widget.Calendar
-* @deprecated The old Calendar_Core class is no longer necessary.
-*/
-YAHOO.widget.Calendar_Core = YAHOO.widget.Calendar;
-
-YAHOO.widget.Cal_Core = YAHOO.widget.Calendar;
-
-})();
-
-(function() {
-
-	var Dom = YAHOO.util.Dom,
-		DateMath = YAHOO.widget.DateMath,
-		Event = YAHOO.util.Event,
-		Lang = YAHOO.lang,
-		Calendar = YAHOO.widget.Calendar;
-
-/**
-* YAHOO.widget.CalendarGroup is a special container class for YAHOO.widget.Calendar. This class facilitates
-* the ability to have multi-page calendar views that share a single dataset and are
-* dependent on each other.
-*
-* The calendar group instance will refer to each of its elements using a 0-based index.
-* For example, to construct the placeholder for a calendar group widget with id "cal1" and
-* containerId of "cal1Container", the markup would be as follows:
-*	<xmp>
-*		<div id="cal1Container_0"></div>
-*		<div id="cal1Container_1"></div>
-*	</xmp>
-* The tables for the calendars ("cal1_0" and "cal1_1") will be inserted into those containers.
-* 
-* <p>
-* <strong>NOTE: As of 2.4.0, the constructor's ID argument is optional.</strong>
-* The CalendarGroup can be constructed by simply providing a container ID string, 
-* or a reference to a container DIV HTMLElement (the element needs to exist 
-* in the document).
-* 
-* E.g.:
-*	<xmp>
-*		var c = new YAHOO.widget.CalendarGroup("calContainer", configOptions);
-*	</xmp>
-* or:
-*   <xmp>
-*       var containerDiv = YAHOO.util.Dom.get("calContainer");
-*		var c = new YAHOO.widget.CalendarGroup(containerDiv, configOptions);
-*	</xmp>
-* </p>
-* <p>
-* If not provided, the ID will be generated from the container DIV ID by adding an "_t" suffix.
-* For example if an ID is not provided, and the container's ID is "calContainer", the CalendarGroup's ID will be set to "calContainer_t".
-* </p>
-* 
-* @namespace YAHOO.widget
-* @class CalendarGroup
-* @constructor
-* @param {String} id optional The id of the table element that will represent the CalendarGroup widget. As of 2.4.0, this argument is optional.
-* @param {String | HTMLElement} container The id of the container div element that will wrap the CalendarGroup table, or a reference to a DIV element which exists in the document.
-* @param {Object} config optional The configuration object containing the initial configuration values for the CalendarGroup.
-*/
-function CalendarGroup(id, containerId, config) {
-	if (arguments.length > 0) {
-		this.init.apply(this, arguments);
-	}
-}
-
-/**
-* The set of default Config property keys and values for the CalendarGroup
-* @property YAHOO.widget.CalendarGroup._DEFAULT_CONFIG
-* @final
-* @static
-* @private
-* @type Object
-*/
-CalendarGroup._DEFAULT_CONFIG = Calendar._DEFAULT_CONFIG;
-CalendarGroup._DEFAULT_CONFIG.PAGES = {key:"pages", value:2};
-
-var DEF_CFG = CalendarGroup._DEFAULT_CONFIG;
-
-CalendarGroup.prototype = {
-
-	/**
-	* Initializes the calendar group. All subclasses must call this method in order for the
-	* group to be initialized properly.
-	* @method init
-	* @param {String} id optional The id of the table element that will represent the CalendarGroup widget. As of 2.4.0, this argument is optional.
-	* @param {String | HTMLElement} container The id of the container div element that will wrap the CalendarGroup table, or a reference to a DIV element which exists in the document.
-	* @param {Object} config optional The configuration object containing the initial configuration values for the CalendarGroup.
-	*/
-	init : function(id, container, config) {
-
-		// Normalize 2.4.0, pre 2.4.0 args
-		var nArgs = this._parseArgs(arguments);
-
-		id = nArgs.id;
-		container = nArgs.container;
-		config = nArgs.config;
-
-		this.oDomContainer = Dom.get(container);
-		if (!this.oDomContainer) { this.logger.log("Container not found in document.", "error"); }
-
-		if (!this.oDomContainer.id) {
-			this.oDomContainer.id = Dom.generateId();
-		}
-		if (!id) {
-			id = this.oDomContainer.id + "_t";
-		}
-
-		/**
-		* The unique id associated with the CalendarGroup
-		* @property id
-		* @type String
-		*/
-		this.id = id;
-
-		/**
-		* The unique id associated with the CalendarGroup container
-		* @property containerId
-		* @type String
-		*/
-		this.containerId = this.oDomContainer.id;
-
-		this.logger = new YAHOO.widget.LogWriter("CalendarGroup " + this.id);
-		this.initEvents();
-		this.initStyles();
-
-		/**
-		* The collection of Calendar pages contained within the CalendarGroup
-		* @property pages
-		* @type YAHOO.widget.Calendar[]
-		*/
-		this.pages = [];
-
-		Dom.addClass(this.oDomContainer, CalendarGroup.CSS_CONTAINER);
-		Dom.addClass(this.oDomContainer, CalendarGroup.CSS_MULTI_UP);
-
-		/**
-		* The Config object used to hold the configuration variables for the CalendarGroup
-		* @property cfg
-		* @type YAHOO.util.Config
-		*/
-		this.cfg = new YAHOO.util.Config(this);
-
-		/**
-		* The local object which contains the CalendarGroup's options
-		* @property Options
-		* @type Object
-		*/
-		this.Options = {};
-
-		/**
-		* The local object which contains the CalendarGroup's locale settings
-		* @property Locale
-		* @type Object
-		*/
-		this.Locale = {};
-
-		this.setupConfig();
-
-		if (config) {
-			this.cfg.applyConfig(config, true);
-		}
-
-		this.cfg.fireQueue();
-
-		// OPERA HACK FOR MISWRAPPED FLOATS
-		if (YAHOO.env.ua.opera){
-			this.renderEvent.subscribe(this._fixWidth, this, true);
-			this.showEvent.subscribe(this._fixWidth, this, true);
-		}
-
-		this.logger.log("Initialized " + this.pages.length + "-page CalendarGroup", "info");
-	},
-
-	setupConfig : function() {
-
-		var cfg = this.cfg;
-
-		/**
-		* The number of pages to include in the CalendarGroup. This value can only be set once, in the CalendarGroup's constructor arguments.
-		* @config pages
-		* @type Number
-		* @default 2
-		*/
-		cfg.addProperty(DEF_CFG.PAGES.key, { value:DEF_CFG.PAGES.value, validator:cfg.checkNumber, handler:this.configPages } );
-
-		/**
-		* The month/year representing the current visible Calendar date (mm/yyyy)
-		* @config pagedate
-		* @type String | Date
-		* @default today's date
-		*/
-		cfg.addProperty(DEF_CFG.PAGEDATE.key, { value:new Date(), handler:this.configPageDate } );
-
-		/**
-		* The date or range of dates representing the current Calendar selection
-		*
-		* @config selected
-		* @type String
-		* @default []
-		*/
-		cfg.addProperty(DEF_CFG.SELECTED.key, { value:[], handler:this.configSelected } );
-
-		/**
-		* The title to display above the CalendarGroup's month header
-		* @config title
-		* @type String
-		* @default ""
-		*/
-		cfg.addProperty(DEF_CFG.TITLE.key, { value:DEF_CFG.TITLE.value, handler:this.configTitle } );
-
-		/**
-		* Whether or not a close button should be displayed for this CalendarGroup
-		* @config close
-		* @type Boolean
-		* @default false
-		*/
-		cfg.addProperty(DEF_CFG.CLOSE.key, { value:DEF_CFG.CLOSE.value, handler:this.configClose } );
-
-		/**
-		* Whether or not an iframe shim should be placed under the Calendar to prevent select boxes from bleeding through in Internet Explorer 6 and below.
-		* This property is enabled by default for IE6 and below. It is disabled by default for other browsers for performance reasons, but can be 
-		* enabled if required.
-		* 
-		* @config iframe
-		* @type Boolean
-		* @default true for IE6 and below, false for all other browsers
-		*/
-		cfg.addProperty(DEF_CFG.IFRAME.key, { value:DEF_CFG.IFRAME.value, handler:this.configIframe, validator:cfg.checkBoolean } );
-	
-		/**
-		* The minimum selectable date in the current Calendar (mm/dd/yyyy)
-		* @config mindate
-		* @type String | Date
-		* @default null
-		*/
-		cfg.addProperty(DEF_CFG.MINDATE.key, { value:DEF_CFG.MINDATE.value, handler:this.delegateConfig } );
-	
-		/**
-		* The maximum selectable date in the current Calendar (mm/dd/yyyy)
-		* @config maxdate
-		* @type String | Date
-		* @default null
-		*/
-		cfg.addProperty(DEF_CFG.MAXDATE.key, { value:DEF_CFG.MAXDATE.value, handler:this.delegateConfig  } );
-	
-		// Options properties
-
-		/**
-		* True if the Calendar should allow multiple selections. False by default.
-		* @config MULTI_SELECT
-		* @type Boolean
-		* @default false
-		*/
-		cfg.addProperty(DEF_CFG.MULTI_SELECT.key,	{ value:DEF_CFG.MULTI_SELECT.value, handler:this.delegateConfig, validator:cfg.checkBoolean } );
-
-		/**
-		* The weekday the week begins on. Default is 0 (Sunday).
-		* @config START_WEEKDAY
-		* @type number
-		* @default 0
-		*/	
-		cfg.addProperty(DEF_CFG.START_WEEKDAY.key,	{ value:DEF_CFG.START_WEEKDAY.value, handler:this.delegateConfig, validator:cfg.checkNumber  } );
-		
-		/**
-		* True if the Calendar should show weekday labels. True by default.
-		* @config SHOW_WEEKDAYS
-		* @type Boolean
-		* @default true
-		*/	
-		cfg.addProperty(DEF_CFG.SHOW_WEEKDAYS.key,	{ value:DEF_CFG.SHOW_WEEKDAYS.value, handler:this.delegateConfig, validator:cfg.checkBoolean } );
-		
-		/**
-		* True if the Calendar should show week row headers. False by default.
-		* @config SHOW_WEEK_HEADER
-		* @type Boolean
-		* @default false
-		*/	
-		cfg.addProperty(DEF_CFG.SHOW_WEEK_HEADER.key,{ value:DEF_CFG.SHOW_WEEK_HEADER.value, handler:this.delegateConfig, validator:cfg.checkBoolean } );
-		
-		/**
-		* True if the Calendar should show week row footers. False by default.
-		* @config SHOW_WEEK_FOOTER
-		* @type Boolean
-		* @default false
-		*/
-		cfg.addProperty(DEF_CFG.SHOW_WEEK_FOOTER.key,{ value:DEF_CFG.SHOW_WEEK_FOOTER.value, handler:this.delegateConfig, validator:cfg.checkBoolean } );
-		
-		/**
-		* True if the Calendar should suppress weeks that are not a part of the current month. False by default.
-		* @config HIDE_BLANK_WEEKS
-		* @type Boolean
-		* @default false
-		*/		
-		cfg.addProperty(DEF_CFG.HIDE_BLANK_WEEKS.key,{ value:DEF_CFG.HIDE_BLANK_WEEKS.value, handler:this.delegateConfig, validator:cfg.checkBoolean } );
-		
-		/**
-		* The image that should be used for the left navigation arrow.
-		* @config NAV_ARROW_LEFT
-		* @type String
-		* @deprecated	You can customize the image by overriding the default CSS class for the left arrow - "calnavleft"
-		* @default null
-		*/		
-		cfg.addProperty(DEF_CFG.NAV_ARROW_LEFT.key,	{ value:DEF_CFG.NAV_ARROW_LEFT.value, handler:this.delegateConfig } );
-		
-		/**
-		* The image that should be used for the right navigation arrow.
-		* @config NAV_ARROW_RIGHT
-		* @type String
-		* @deprecated	You can customize the image by overriding the default CSS class for the right arrow - "calnavright"
-		* @default null
-		*/		
-		cfg.addProperty(DEF_CFG.NAV_ARROW_RIGHT.key,	{ value:DEF_CFG.NAV_ARROW_RIGHT.value, handler:this.delegateConfig } );
-	
-		// Locale properties
-		
-		/**
-		* The short month labels for the current locale.
-		* @config MONTHS_SHORT
-		* @type String[]
-		* @default ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
-		*/
-		cfg.addProperty(DEF_CFG.MONTHS_SHORT.key,	{ value:DEF_CFG.MONTHS_SHORT.value, handler:this.delegateConfig } );
-		
-		/**
-		* The long month labels for the current locale.
-		* @config MONTHS_LONG
-		* @type String[]
-		* @default ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"
-		*/		
-		cfg.addProperty(DEF_CFG.MONTHS_LONG.key,		{ value:DEF_CFG.MONTHS_LONG.value, handler:this.delegateConfig } );
-		
-		/**
-		* The 1-character weekday labels for the current locale.
-		* @config WEEKDAYS_1CHAR
-		* @type String[]
-		* @default ["S", "M", "T", "W", "T", "F", "S"]
-		*/		
-		cfg.addProperty(DEF_CFG.WEEKDAYS_1CHAR.key,	{ value:DEF_CFG.WEEKDAYS_1CHAR.value, handler:this.delegateConfig } );
-		
-		/**
-		* The short weekday labels for the current locale.
-		* @config WEEKDAYS_SHORT
-		* @type String[]
-		* @default ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"]
-		*/		
-		cfg.addProperty(DEF_CFG.WEEKDAYS_SHORT.key,	{ value:DEF_CFG.WEEKDAYS_SHORT.value, handler:this.delegateConfig } );
-		
-		/**
-		* The medium weekday labels for the current locale.
-		* @config WEEKDAYS_MEDIUM
-		* @type String[]
-		* @default ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]
-		*/		
-		cfg.addProperty(DEF_CFG.WEEKDAYS_MEDIUM.key,	{ value:DEF_CFG.WEEKDAYS_MEDIUM.value, handler:this.delegateConfig } );
-		
-		/**
-		* The long weekday labels for the current locale.
-		* @config WEEKDAYS_LONG
-		* @type String[]
-		* @default ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]
-		*/		
-		cfg.addProperty(DEF_CFG.WEEKDAYS_LONG.key,	{ value:DEF_CFG.WEEKDAYS_LONG.value, handler:this.delegateConfig } );
-	
-		/**
-		* The setting that determines which length of month labels should be used. Possible values are "short" and "long".
-		* @config LOCALE_MONTHS
-		* @type String
-		* @default "long"
-		*/
-		cfg.addProperty(DEF_CFG.LOCALE_MONTHS.key,	{ value:DEF_CFG.LOCALE_MONTHS.value, handler:this.delegateConfig } );
-	
-		/**
-		* The setting that determines which length of weekday labels should be used. Possible values are "1char", "short", "medium", and "long".
-		* @config LOCALE_WEEKDAYS
-		* @type String
-		* @default "short"
-		*/	
-		cfg.addProperty(DEF_CFG.LOCALE_WEEKDAYS.key,	{ value:DEF_CFG.LOCALE_WEEKDAYS.value, handler:this.delegateConfig } );
-	
-		/**
-		* The value used to delimit individual dates in a date string passed to various Calendar functions.
-		* @config DATE_DELIMITER
-		* @type String
-		* @default ","
-		*/
-		cfg.addProperty(DEF_CFG.DATE_DELIMITER.key,		{ value:DEF_CFG.DATE_DELIMITER.value, handler:this.delegateConfig } );
-	
-		/**
-		* The value used to delimit date fields in a date string passed to various Calendar functions.
-		* @config DATE_FIELD_DELIMITER
-		* @type String
-		* @default "/"
-		*/	
-		cfg.addProperty(DEF_CFG.DATE_FIELD_DELIMITER.key,{ value:DEF_CFG.DATE_FIELD_DELIMITER.value, handler:this.delegateConfig } );
-	
-		/**
-		* The value used to delimit date ranges in a date string passed to various Calendar functions.
-		* @config DATE_RANGE_DELIMITER
-		* @type String
-		* @default "-"
-		*/
-		cfg.addProperty(DEF_CFG.DATE_RANGE_DELIMITER.key,{ value:DEF_CFG.DATE_RANGE_DELIMITER.value, handler:this.delegateConfig } );
-	
-		/**
-		* The position of the month in a month/year date string
-		* @config MY_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/
-		cfg.addProperty(DEF_CFG.MY_MONTH_POSITION.key,	{ value:DEF_CFG.MY_MONTH_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-		
-		/**
-		* The position of the year in a month/year date string
-		* @config MY_YEAR_POSITION
-		* @type Number
-		* @default 2
-		*/	
-		cfg.addProperty(DEF_CFG.MY_YEAR_POSITION.key,	{ value:DEF_CFG.MY_YEAR_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-		
-		/**
-		* The position of the month in a month/day date string
-		* @config MD_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/	
-		cfg.addProperty(DEF_CFG.MD_MONTH_POSITION.key,	{ value:DEF_CFG.MD_MONTH_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-		
-		/**
-		* The position of the day in a month/year date string
-		* @config MD_DAY_POSITION
-		* @type Number
-		* @default 2
-		*/	
-		cfg.addProperty(DEF_CFG.MD_DAY_POSITION.key,		{ value:DEF_CFG.MD_DAY_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-		
-		/**
-		* The position of the month in a month/day/year date string
-		* @config MDY_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/	
-		cfg.addProperty(DEF_CFG.MDY_MONTH_POSITION.key,	{ value:DEF_CFG.MDY_MONTH_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-		
-		/**
-		* The position of the day in a month/day/year date string
-		* @config MDY_DAY_POSITION
-		* @type Number
-		* @default 2
-		*/	
-		cfg.addProperty(DEF_CFG.MDY_DAY_POSITION.key,	{ value:DEF_CFG.MDY_DAY_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-		
-		/**
-		* The position of the year in a month/day/year date string
-		* @config MDY_YEAR_POSITION
-		* @type Number
-		* @default 3
-		*/	
-		cfg.addProperty(DEF_CFG.MDY_YEAR_POSITION.key,	{ value:DEF_CFG.MDY_YEAR_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the month in the month year label string used as the Calendar header
-		* @config MY_LABEL_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_MONTH_POSITION.key,	{ value:DEF_CFG.MY_LABEL_MONTH_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the year in the month year label string used as the Calendar header
-		* @config MY_LABEL_YEAR_POSITION
-		* @type Number
-		* @default 2
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_YEAR_POSITION.key,	{ value:DEF_CFG.MY_LABEL_YEAR_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-
-		/**
-		* The suffix used after the month when rendering the Calendar header
-		* @config MY_LABEL_MONTH_SUFFIX
-		* @type String
-		* @default " "
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_MONTH_SUFFIX.key,	{ value:DEF_CFG.MY_LABEL_MONTH_SUFFIX.value, handler:this.delegateConfig } );
-		
-		/**
-		* The suffix used after the year when rendering the Calendar header
-		* @config MY_LABEL_YEAR_SUFFIX
-		* @type String
-		* @default ""
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_YEAR_SUFFIX.key, { value:DEF_CFG.MY_LABEL_YEAR_SUFFIX.value, handler:this.delegateConfig } );
-
-		/**
-		* Configuration for the Month Year Navigation UI. By default it is disabled
-		* @config NAV
-		* @type Object
-		* @default null
-		*/
-		cfg.addProperty(DEF_CFG.NAV.key, { value:DEF_CFG.NAV.value, handler:this.configNavigator } );
-
-		/**
-		 * The map of UI strings which the CalendarGroup UI uses.
-		 *
-		 * @config strings
-		 * @type {Object}
-		 * @default An object with the properties shown below:
-		 *     <dl>
-		 *         <dt>previousMonth</dt><dd><em>String</em> : The string to use for the "Previous Month" navigation UI. Defaults to "Previous Month".</dd>
-		 *         <dt>nextMonth</dt><dd><em>String</em> : The string to use for the "Next Month" navigation UI. Defaults to "Next Month".</dd>
-		 *         <dt>close</dt><dd><em>String</em> : The string to use for the close button label. Defaults to "Close".</dd>
-		 *     </dl>
-		 */
-		cfg.addProperty(DEF_CFG.STRINGS.key, { 
-			value:DEF_CFG.STRINGS.value, 
-			handler:this.configStrings, 
-			validator: function(val) {
-				return Lang.isObject(val);
-			},
-			supercedes: DEF_CFG.STRINGS.supercedes
-		});
-	},
-
-	/**
-	* Initializes CalendarGroup's built-in CustomEvents
-	* @method initEvents
-	*/
-	initEvents : function() {
-
-		var me = this,
-			strEvent = "Event",
-			CE = YAHOO.util.CustomEvent;
-
-		/**
-		* Proxy subscriber to subscribe to the CalendarGroup's child Calendars' CustomEvents
-		* @method sub
-		* @private
-		* @param {Function} fn	The function to subscribe to this CustomEvent
-		* @param {Object}	obj	The CustomEvent's scope object
-		* @param {Boolean}	bOverride	Whether or not to apply scope correction
-		*/
-		var sub = function(fn, obj, bOverride) {
-			for (var p=0;p<me.pages.length;++p) {
-				var cal = me.pages[p];
-				cal[this.type + strEvent].subscribe(fn, obj, bOverride);
-			}
-		};
-
-		/**
-		* Proxy unsubscriber to unsubscribe from the CalendarGroup's child Calendars' CustomEvents
-		* @method unsub
-		* @private
-		* @param {Function} fn	The function to subscribe to this CustomEvent
-		* @param {Object}	obj	The CustomEvent's scope object
-		*/
-		var unsub = function(fn, obj) {
-			for (var p=0;p<me.pages.length;++p) {
-				var cal = me.pages[p];
-				cal[this.type + strEvent].unsubscribe(fn, obj);
-			}
-		};
-		
-		var defEvents = Calendar._EVENT_TYPES;
-	
-		/**
-		* Fired before a selection is made
-		* @event beforeSelectEvent
-		*/
-		me.beforeSelectEvent = new CE(defEvents.BEFORE_SELECT);
-		me.beforeSelectEvent.subscribe = sub; me.beforeSelectEvent.unsubscribe = unsub;
-	
-		/**
-		* Fired when a selection is made
-		* @event selectEvent
-		* @param {Array}	Array of Date field arrays in the format [YYYY, MM, DD].
-		*/
-		me.selectEvent = new CE(defEvents.SELECT); 
-		me.selectEvent.subscribe = sub; me.selectEvent.unsubscribe = unsub;
-	
-		/**
-		* Fired before a selection is made
-		* @event beforeDeselectEvent
-		*/
-		me.beforeDeselectEvent = new CE(defEvents.BEFORE_DESELECT); 
-		me.beforeDeselectEvent.subscribe = sub; me.beforeDeselectEvent.unsubscribe = unsub;
-	
-		/**
-		* Fired when a selection is made
-		* @event deselectEvent
-		* @param {Array}	Array of Date field arrays in the format [YYYY, MM, DD].
-		*/
-		me.deselectEvent = new CE(defEvents.DESELECT); 
-		me.deselectEvent.subscribe = sub; me.deselectEvent.unsubscribe = unsub;
-		
-		/**
-		* Fired when the Calendar page is changed
-		* @event changePageEvent
-		*/
-		me.changePageEvent = new CE(defEvents.CHANGE_PAGE); 
-		me.changePageEvent.subscribe = sub; me.changePageEvent.unsubscribe = unsub;
-
-		/**
-		* Fired before the Calendar is rendered
-		* @event beforeRenderEvent
-		*/
-		me.beforeRenderEvent = new CE(defEvents.BEFORE_RENDER);
-		me.beforeRenderEvent.subscribe = sub; me.beforeRenderEvent.unsubscribe = unsub;
-	
-		/**
-		* Fired when the Calendar is rendered
-		* @event renderEvent
-		*/
-		me.renderEvent = new CE(defEvents.RENDER);
-		me.renderEvent.subscribe = sub; me.renderEvent.unsubscribe = unsub;
-	
-		/**
-		* Fired when the Calendar is reset
-		* @event resetEvent
-		*/
-		me.resetEvent = new CE(defEvents.RESET); 
-		me.resetEvent.subscribe = sub; me.resetEvent.unsubscribe = unsub;
-	
-		/**
-		* Fired when the Calendar is cleared
-		* @event clearEvent
-		*/
-		me.clearEvent = new CE(defEvents.CLEAR);
-		me.clearEvent.subscribe = sub; me.clearEvent.unsubscribe = unsub;
-
-		/**
-		* Fired just before the CalendarGroup is to be shown
-		* @event beforeShowEvent
-		*/
-		me.beforeShowEvent = new CE(defEvents.BEFORE_SHOW);
-	
-		/**
-		* Fired after the CalendarGroup is shown
-		* @event showEvent
-		*/
-		me.showEvent = new CE(defEvents.SHOW);
-	
-		/**
-		* Fired just before the CalendarGroup is to be hidden
-		* @event beforeHideEvent
-		*/
-		me.beforeHideEvent = new CE(defEvents.BEFORE_HIDE);
-	
-		/**
-		* Fired after the CalendarGroup is hidden
-		* @event hideEvent
-		*/
-		me.hideEvent = new CE(defEvents.HIDE);
-
-		/**
-		* Fired just before the CalendarNavigator is to be shown
-		* @event beforeShowNavEvent
-		*/
-		me.beforeShowNavEvent = new CE(defEvents.BEFORE_SHOW_NAV);
-	
-		/**
-		* Fired after the CalendarNavigator is shown
-		* @event showNavEvent
-		*/
-		me.showNavEvent = new CE(defEvents.SHOW_NAV);
-	
-		/**
-		* Fired just before the CalendarNavigator is to be hidden
-		* @event beforeHideNavEvent
-		*/
-		me.beforeHideNavEvent = new CE(defEvents.BEFORE_HIDE_NAV);
-
-		/**
-		* Fired after the CalendarNavigator is hidden
-		* @event hideNavEvent
-		*/
-		me.hideNavEvent = new CE(defEvents.HIDE_NAV);
-
-		/**
-		* Fired just before the CalendarNavigator is to be rendered
-		* @event beforeRenderNavEvent
-		*/
-		me.beforeRenderNavEvent = new CE(defEvents.BEFORE_RENDER_NAV);
-
-		/**
-		* Fired after the CalendarNavigator is rendered
-		* @event renderNavEvent
-		*/
-		me.renderNavEvent = new CE(defEvents.RENDER_NAV);
-
-		/**
-		* Fired just before the CalendarGroup is to be destroyed
-		* @event beforeDestroyEvent
-		*/
-		me.beforeDestroyEvent = new CE(defEvents.BEFORE_DESTROY);
-
-		/**
-		* Fired after the CalendarGroup is destroyed. This event should be used
-		* for notification only. When this event is fired, important CalendarGroup instance
-		* properties, dom references and event listeners have already been 
-		* removed/dereferenced, and hence the CalendarGroup instance is not in a usable 
-		* state.
-		*
-		* @event destroyEvent
-		*/
-		me.destroyEvent = new CE(defEvents.DESTROY);
-	},
-	
-	/**
-	* The default Config handler for the "pages" property
-	* @method configPages
-	* @param {String} type	The CustomEvent type (usually the property name)
-	* @param {Object[]}	args	The CustomEvent arguments. For configuration handlers, args[0] will equal the newly applied value for the property.
-	* @param {Object} obj	The scope object. For configuration handlers, this will usually equal the owner.
-	*/
-	configPages : function(type, args, obj) {
-		var pageCount = args[0],
-			cfgPageDate = DEF_CFG.PAGEDATE.key,
-			sep = "_",
-			groupCalClass = "groupcal",
-			firstClass = "first-of-type",
-			lastClass = "last-of-type";
-
-		for (var p=0;p<pageCount;++p) {
-			var calId = this.id + sep + p,
-				calContainerId = this.containerId + sep + p,
-				childConfig = this.cfg.getConfig();
-
-			childConfig.close = false;
-			childConfig.title = false;
-			childConfig.navigator = null;
-
-			var cal = this.constructChild(calId, calContainerId, childConfig);
-			var caldate = cal.cfg.getProperty(cfgPageDate);
-			this._setMonthOnDate(caldate, caldate.getMonth() + p);
-			cal.cfg.setProperty(cfgPageDate, caldate);
-
-			Dom.removeClass(cal.oDomContainer, this.Style.CSS_SINGLE);
-			Dom.addClass(cal.oDomContainer, groupCalClass);
-
-			if (p===0) {
-				Dom.addClass(cal.oDomContainer, firstClass);
-			}
-	
-			if (p==(pageCount-1)) {
-				Dom.addClass(cal.oDomContainer, lastClass);
-			}
-	
-			cal.parent = this;
-			cal.index = p; 
-	
-			this.pages[this.pages.length] = cal;
-		}
-	},
-	
-	/**
-	* The default Config handler for the "pagedate" property
-	* @method configPageDate
-	* @param {String} type	The CustomEvent type (usually the property name)
-	* @param {Object[]}	args	The CustomEvent arguments. For configuration handlers, args[0] will equal the newly applied value for the property.
-	* @param {Object} obj	The scope object. For configuration handlers, this will usually equal the owner.
-	*/
-	configPageDate : function(type, args, obj) {
-		var val = args[0],
-			firstPageDate;
-
-		var cfgPageDate = DEF_CFG.PAGEDATE.key;
-		
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			if (p === 0) {
-				firstPageDate = cal._parsePageDate(val);
-				cal.cfg.setProperty(cfgPageDate, firstPageDate);
-			} else {
-				var pageDate = new Date(firstPageDate);
-				this._setMonthOnDate(pageDate, pageDate.getMonth() + p);
-				cal.cfg.setProperty(cfgPageDate, pageDate);
-			}
-		}
-	},
-	
-	/**
-	* The default Config handler for the CalendarGroup "selected" property
-	* @method configSelected
-	* @param {String} type	The CustomEvent type (usually the property name)
-	* @param {Object[]}	args	The CustomEvent arguments. For configuration handlers, args[0] will equal the newly applied value for the property.
-	* @param {Object} obj	The scope object. For configuration handlers, this will usually equal the owner.
-	*/
-	configSelected : function(type, args, obj) {
-		var cfgSelected = DEF_CFG.SELECTED.key;
-		this.delegateConfig(type, args, obj);
-		var selected = (this.pages.length > 0) ? this.pages[0].cfg.getProperty(cfgSelected) : []; 
-		this.cfg.setProperty(cfgSelected, selected, true);
-	},
-
-	
-	/**
-	* Delegates a configuration property to the CustomEvents associated with the CalendarGroup's children
-	* @method delegateConfig
-	* @param {String} type	The CustomEvent type (usually the property name)
-	* @param {Object[]}	args	The CustomEvent arguments. For configuration handlers, args[0] will equal the newly applied value for the property.
-	* @param {Object} obj	The scope object. For configuration handlers, this will usually equal the owner.
-	*/
-	delegateConfig : function(type, args, obj) {
-		var val = args[0];
-		var cal;
-	
-		for (var p=0;p<this.pages.length;p++) {
-			cal = this.pages[p];
-			cal.cfg.setProperty(type, val);
-		}
-	},
-
-	/**
-	* Adds a function to all child Calendars within this CalendarGroup.
-	* @method setChildFunction
-	* @param {String}		fnName		The name of the function
-	* @param {Function}		fn			The function to apply to each Calendar page object
-	*/
-	setChildFunction : function(fnName, fn) {
-		var pageCount = this.cfg.getProperty(DEF_CFG.PAGES.key);
-	
-		for (var p=0;p<pageCount;++p) {
-			this.pages[p][fnName] = fn;
-		}
-	},
-
-	/**
-	* Calls a function within all child Calendars within this CalendarGroup.
-	* @method callChildFunction
-	* @param {String}		fnName		The name of the function
-	* @param {Array}		args		The arguments to pass to the function
-	*/
-	callChildFunction : function(fnName, args) {
-		var pageCount = this.cfg.getProperty(DEF_CFG.PAGES.key);
-	
-		for (var p=0;p<pageCount;++p) {
-			var page = this.pages[p];
-			if (page[fnName]) {
-				var fn = page[fnName];
-				fn.call(page, args);
-			}
-		}	
-	},
-
-	/**
-	* Constructs a child calendar. This method can be overridden if a subclassed version of the default
-	* calendar is to be used.
-	* @method constructChild
-	* @param {String}	id			The id of the table element that will represent the calendar widget
-	* @param {String}	containerId	The id of the container div element that will wrap the calendar table
-	* @param {Object}	config		The configuration object containing the Calendar's arguments
-	* @return {YAHOO.widget.Calendar}	The YAHOO.widget.Calendar instance that is constructed
-	*/
-	constructChild : function(id,containerId,config) {
-		var container = document.getElementById(containerId);
-		if (! container) {
-			container = document.createElement("div");
-			container.id = containerId;
-			this.oDomContainer.appendChild(container);
-		}
-		return new Calendar(id,containerId,config);
-	},
-	
-	/**
-	* Sets the calendar group's month explicitly. This month will be set into the first
-	* page of the multi-page calendar, and all other months will be iterated appropriately.
-	* @method setMonth
-	* @param {Number}	month		The numeric month, from 0 (January) to 11 (December)
-	*/
-	setMonth : function(month) {
-		month = parseInt(month, 10);
-		var currYear;
-
-		var cfgPageDate = DEF_CFG.PAGEDATE.key;
-
-		for (var p=0; p<this.pages.length; ++p) {
-			var cal = this.pages[p];
-			var pageDate = cal.cfg.getProperty(cfgPageDate);
-			if (p === 0) {
-				currYear = pageDate.getFullYear();
-			} else {
-				pageDate.setFullYear(currYear);
-			}
-			this._setMonthOnDate(pageDate, month+p); 
-			cal.cfg.setProperty(cfgPageDate, pageDate);
-		}
-	},
-
-	/**
-	* Sets the calendar group's year explicitly. This year will be set into the first
-	* page of the multi-page calendar, and all other months will be iterated appropriately.
-	* @method setYear
-	* @param {Number}	year		The numeric 4-digit year
-	*/
-	setYear : function(year) {
-	
-		var cfgPageDate = DEF_CFG.PAGEDATE.key;
-	
-		year = parseInt(year, 10);
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			var pageDate = cal.cfg.getProperty(cfgPageDate);
-	
-			if ((pageDate.getMonth()+1) == 1 && p>0) {
-				year+=1;
-			}
-			cal.setYear(year);
-		}
-	},
-
-	/**
-	* Calls the render function of all child calendars within the group.
-	* @method render
-	*/
-	render : function() {
-		this.renderHeader();
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.render();
-		}
-		this.renderFooter();
-	},
-
-	/**
-	* Selects a date or a collection of dates on the current calendar. This method, by default,
-	* does not call the render method explicitly. Once selection has completed, render must be 
-	* called for the changes to be reflected visually.
-	* @method select
-	* @param	{String/Date/Date[]}	date	The date string of dates to select in the current calendar. Valid formats are
-	*								individual date(s) (12/24/2005,12/26/2005) or date range(s) (12/24/2005-1/1/2006).
-	*								Multiple comma-delimited dates can also be passed to this method (12/24/2005,12/11/2005-12/13/2005).
-	*								This method can also take a JavaScript Date object or an array of Date objects.
-	* @return	{Date[]}			Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	select : function(date) {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.select(date);
-		}
-		return this.getSelectedDates();
-	},
-
-	/**
-	* Selects dates in the CalendarGroup based on the cell index provided. This method is used to select cells without having to do a full render. The selected style is applied to the cells directly.
-	* The value of the MULTI_SELECT Configuration attribute will determine the set of dates which get selected. 
-	* <ul>
-	*    <li>If MULTI_SELECT is false, selectCell will select the cell at the specified index for only the last displayed Calendar page.</li>
-	*    <li>If MULTI_SELECT is true, selectCell will select the cell at the specified index, on each displayed Calendar page.</li>
-	* </ul>
-	* @method selectCell
-	* @param	{Number}	cellIndex	The index of the cell to be selected. 
-	* @return	{Date[]}	Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	selectCell : function(cellIndex) {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.selectCell(cellIndex);
-		}
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Deselects a date or a collection of dates on the current calendar. This method, by default,
-	* does not call the render method explicitly. Once deselection has completed, render must be 
-	* called for the changes to be reflected visually.
-	* @method deselect
-	* @param	{String/Date/Date[]}	date	The date string of dates to deselect in the current calendar. Valid formats are
-	*								individual date(s) (12/24/2005,12/26/2005) or date range(s) (12/24/2005-1/1/2006).
-	*								Multiple comma-delimited dates can also be passed to this method (12/24/2005,12/11/2005-12/13/2005).
-	*								This method can also take a JavaScript Date object or an array of Date objects.	
-	* @return	{Date[]}			Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	deselect : function(date) {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.deselect(date);
-		}
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Deselects all dates on the current calendar.
-	* @method deselectAll
-	* @return {Date[]}		Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*						Assuming that this function executes properly, the return value should be an empty array.
-	*						However, the empty array is returned for the sake of being able to check the selection status
-	*						of the calendar.
-	*/
-	deselectAll : function() {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.deselectAll();
-		}
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Deselects dates in the CalendarGroup based on the cell index provided. This method is used to select cells without having to do a full render. The selected style is applied to the cells directly.
-	* deselectCell will deselect the cell at the specified index on each displayed Calendar page.
-	*
-	* @method deselectCell
-	* @param	{Number}	cellIndex	The index of the cell to deselect. 
-	* @return	{Date[]}	Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	deselectCell : function(cellIndex) {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.deselectCell(cellIndex);
-		}
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Resets the calendar widget to the originally selected month and year, and 
-	* sets the calendar to the initial selection(s).
-	* @method reset
-	*/
-	reset : function() {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.reset();
-		}
-	},
-
-	/**
-	* Clears the selected dates in the current calendar widget and sets the calendar
-	* to the current month and year.
-	* @method clear
-	*/
-	clear : function() {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.clear();
-		}
-
-		this.cfg.setProperty(DEF_CFG.SELECTED.key, []);
-		this.cfg.setProperty(DEF_CFG.PAGEDATE.key, new Date(this.pages[0].today.getTime()));
-		this.render();
-	},
-
-	/**
-	* Navigates to the next month page in the calendar widget.
-	* @method nextMonth
-	*/
-	nextMonth : function() {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.nextMonth();
-		}
-	},
-	
-	/**
-	* Navigates to the previous month page in the calendar widget.
-	* @method previousMonth
-	*/
-	previousMonth : function() {
-		for (var p=this.pages.length-1;p>=0;--p) {
-			var cal = this.pages[p];
-			cal.previousMonth();
-		}
-	},
-	
-	/**
-	* Navigates to the next year in the currently selected month in the calendar widget.
-	* @method nextYear
-	*/
-	nextYear : function() {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.nextYear();
-		}
-	},
-
-	/**
-	* Navigates to the previous year in the currently selected month in the calendar widget.
-	* @method previousYear
-	*/
-	previousYear : function() {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.previousYear();
-		}
-	},
-
-	/**
-	* Gets the list of currently selected dates from the calendar.
-	* @return			An array of currently selected JavaScript Date objects.
-	* @type Date[]
-	*/
-	getSelectedDates : function() { 
-		var returnDates = [];
-		var selected = this.cfg.getProperty(DEF_CFG.SELECTED.key);
-		for (var d=0;d<selected.length;++d) {
-			var dateArray = selected[d];
-
-			var date = DateMath.getDate(dateArray[0],dateArray[1]-1,dateArray[2]);
-			returnDates.push(date);
-		}
-
-		returnDates.sort( function(a,b) { return a-b; } );
-		return returnDates;
-	},
-
-	/**
-	* Adds a renderer to the render stack. The function reference passed to this method will be executed
-	* when a date cell matches the conditions specified in the date string for this renderer.
-	* @method addRenderer
-	* @param	{String}	sDates		A date string to associate with the specified renderer. Valid formats
-	*									include date (12/24/2005), month/day (12/24), and range (12/1/2004-1/1/2005)
-	* @param	{Function}	fnRender	The function executed to render cells that match the render rules for this renderer.
-	*/
-	addRenderer : function(sDates, fnRender) {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.addRenderer(sDates, fnRender);
-		}
-	},
-
-	/**
-	* Adds a month to the render stack. The function reference passed to this method will be executed
-	* when a date cell matches the month passed to this method.
-	* @method addMonthRenderer
-	* @param	{Number}	month		The month (1-12) to associate with this renderer
-	* @param	{Function}	fnRender	The function executed to render cells that match the render rules for this renderer.
-	*/
-	addMonthRenderer : function(month, fnRender) {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.addMonthRenderer(month, fnRender);
-		}
-	},
-
-	/**
-	* Adds a weekday to the render stack. The function reference passed to this method will be executed
-	* when a date cell matches the weekday passed to this method.
-	* @method addWeekdayRenderer
-	* @param	{Number}	weekday		The weekday (1-7) to associate with this renderer. 1=Sunday, 2=Monday etc.
-	* @param	{Function}	fnRender	The function executed to render cells that match the render rules for this renderer.
-	*/
-	addWeekdayRenderer : function(weekday, fnRender) {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.addWeekdayRenderer(weekday, fnRender);
-		}
-	},
-
-	/**
-	 * Removes all custom renderers added to the CalendarGroup through the addRenderer, addMonthRenderer and 
-	 * addWeekRenderer methods. CalendarGroup's render method needs to be called to after removing renderers 
-	 * to see the changes applied.
-	 * 
-	 * @method removeRenderers
-	 */
-	removeRenderers : function() {
-		this.callChildFunction("removeRenderers");
-	},
-
-	/**
-	* Renders the header for the CalendarGroup.
-	* @method renderHeader
-	*/
-	renderHeader : function() {
-		// EMPTY DEFAULT IMPL
-	},
-
-	/**
-	* Renders a footer for the 2-up calendar container. By default, this method is
-	* unimplemented.
-	* @method renderFooter
-	*/
-	renderFooter : function() {
-		// EMPTY DEFAULT IMPL
-	},
-
-	/**
-	* Adds the designated number of months to the current calendar month, and sets the current
-	* calendar page date to the new month.
-	* @method addMonths
-	* @param {Number}	count	The number of months to add to the current calendar
-	*/
-	addMonths : function(count) {
-		this.callChildFunction("addMonths", count);
-	},
-	
-	/**
-	* Subtracts the designated number of months from the current calendar month, and sets the current
-	* calendar page date to the new month.
-	* @method subtractMonths
-	* @param {Number}	count	The number of months to subtract from the current calendar
-	*/
-	subtractMonths : function(count) {
-		this.callChildFunction("subtractMonths", count);
-	},
-
-	/**
-	* Adds the designated number of years to the current calendar, and sets the current
-	* calendar page date to the new month.
-	* @method addYears
-	* @param {Number}	count	The number of years to add to the current calendar
-	*/
-	addYears : function(count) {
-		this.callChildFunction("addYears", count);
-	},
-
-	/**
-	* Subtcats the designated number of years from the current calendar, and sets the current
-	* calendar page date to the new month.
-	* @method subtractYears
-	* @param {Number}	count	The number of years to subtract from the current calendar
-	*/
-	subtractYears : function(count) {
-		this.callChildFunction("subtractYears", count);
-	},
-
-	/**
-	 * Returns the Calendar page instance which has a pagedate (month/year) matching the given date. 
-	 * Returns null if no match is found.
-	 * 
-	 * @method getCalendarPage
-	 * @param {Date} date The JavaScript Date object for which a Calendar page is to be found.
-	 * @return {Calendar} The Calendar page instance representing the month to which the date 
-	 * belongs.
-	 */
-	getCalendarPage : function(date) {
-		var cal = null;
-		if (date) {
-			var y = date.getFullYear(),
-				m = date.getMonth();
-
-			var pages = this.pages;
-			for (var i = 0; i < pages.length; ++i) {
-				var pageDate = pages[i].cfg.getProperty("pagedate");
-				if (pageDate.getFullYear() === y && pageDate.getMonth() === m) {
-					cal = pages[i];
-					break;
-				}
-			}
-		}
-		return cal;
-	},
-
-	/**
-	* Sets the month on a Date object, taking into account year rollover if the month is less than 0 or greater than 11.
-	* The Date object passed in is modified. It should be cloned before passing it into this method if the original value needs to be maintained
-	* @method	_setMonthOnDate
-	* @private
-	* @param	{Date}	date	The Date object on which to set the month index
-	* @param	{Number}	iMonth	The month index to set
-	*/
-	_setMonthOnDate : function(date, iMonth) {
-		// Bug in Safari 1.3, 2.0 (WebKit build < 420), Date.setMonth does not work consistently if iMonth is not 0-11
-		if (YAHOO.env.ua.webkit && YAHOO.env.ua.webkit < 420 && (iMonth < 0 || iMonth > 11)) {
-			var newDate = DateMath.add(date, DateMath.MONTH, iMonth-date.getMonth());
-			date.setTime(newDate.getTime());
-		} else {
-			date.setMonth(iMonth);
-		}
-	},
-	
-	/**
-	 * Fixes the width of the CalendarGroup container element, to account for miswrapped floats
-	 * @method _fixWidth
-	 * @private
-	 */
-	_fixWidth : function() {
-		var w = 0;
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			w += cal.oDomContainer.offsetWidth;
-		}
-		if (w > 0) {
-			this.oDomContainer.style.width = w + "px";
-		}
-	},
-	
-	/**
-	* Returns a string representation of the object.
-	* @method toString
-	* @return {String}	A string representation of the CalendarGroup object.
-	*/
-	toString : function() {
-		return "CalendarGroup " + this.id;
-	},
-
-	/**
-	 * Destroys the CalendarGroup instance. The method will remove references
-	 * to HTML elements, remove any event listeners added by the CalendarGroup.
-	 * 
-	 * It will also destroy the Config and CalendarNavigator instances created by the 
-	 * CalendarGroup and the individual Calendar instances created for each page.
-	 *
-	 * @method destroy
-	 */
-	destroy : function() {
-
-		if (this.beforeDestroyEvent.fire()) {
-
-			var cal = this;
-	
-			// Child objects
-			if (cal.navigator) {
-				cal.navigator.destroy();
-			}
-	
-			if (cal.cfg) {
-				cal.cfg.destroy();
-			}
-	
-			// DOM event listeners
-			Event.purgeElement(cal.oDomContainer, true);
-	
-			// Generated markup/DOM - Not removing the container DIV since we didn't create it.
-			Dom.removeClass(cal.oDomContainer, CalendarGroup.CSS_CONTAINER);
-			Dom.removeClass(cal.oDomContainer, CalendarGroup.CSS_MULTI_UP);
-			
-			for (var i = 0, l = cal.pages.length; i < l; i++) {
-				cal.pages[i].destroy();
-				cal.pages[i] = null;
-			}
-	
-			cal.oDomContainer.innerHTML = "";
-	
-			// JS-to-DOM references
-			cal.oDomContainer = null;
-	
-			this.destroyEvent.fire();
-		}
-	}
-};
-
-/**
-* CSS class representing the container for the calendar
-* @property YAHOO.widget.CalendarGroup.CSS_CONTAINER
-* @static
-* @final
-* @type String
-*/
-CalendarGroup.CSS_CONTAINER = "yui-calcontainer";
-
-/**
-* CSS class representing the container for the calendar
-* @property YAHOO.widget.CalendarGroup.CSS_MULTI_UP
-* @static
-* @final
-* @type String
-*/
-CalendarGroup.CSS_MULTI_UP = "multi";
-
-/**
-* CSS class representing the title for the 2-up calendar
-* @property YAHOO.widget.CalendarGroup.CSS_2UPTITLE
-* @static
-* @final
-* @type String
-*/
-CalendarGroup.CSS_2UPTITLE = "title";
-
-/**
-* CSS class representing the close icon for the 2-up calendar
-* @property YAHOO.widget.CalendarGroup.CSS_2UPCLOSE
-* @static
-* @final
-* @deprecated	Along with Calendar.IMG_ROOT and NAV_ARROW_LEFT, NAV_ARROW_RIGHT configuration properties.
-*					Calendar's <a href="YAHOO.widget.Calendar.html#Style.CSS_CLOSE">Style.CSS_CLOSE</a> property now represents the CSS class used to render the close icon
-* @type String
-*/
-CalendarGroup.CSS_2UPCLOSE = "close-icon";
-
-YAHOO.lang.augmentProto(CalendarGroup, Calendar, "buildDayLabel",
-												 "buildMonthLabel",
-												 "renderOutOfBoundsDate",
-												 "renderRowHeader",
-												 "renderRowFooter",
-												 "renderCellDefault",
-												 "styleCellDefault",
-												 "renderCellStyleHighlight1",
-												 "renderCellStyleHighlight2",
-												 "renderCellStyleHighlight3",
-												 "renderCellStyleHighlight4",
-												 "renderCellStyleToday",
-												 "renderCellStyleSelected",
-												 "renderCellNotThisMonth",
-												 "renderBodyCellRestricted",
-												 "initStyles",
-												 "configTitle",
-												 "configClose",
-												 "configIframe",
-												 "configStrings",
-												 "configNavigator",
-												 "createTitleBar",
-												 "createCloseButton",
-												 "removeTitleBar",
-												 "removeCloseButton",
-												 "hide",
-												 "show",
-												 "toDate",
-												 "_toDate",
-												 "_parseArgs",
-												 "browser");
-
-YAHOO.widget.CalGrp = CalendarGroup;
-YAHOO.widget.CalendarGroup = CalendarGroup;
-
-/**
-* @class YAHOO.widget.Calendar2up
-* @extends YAHOO.widget.CalendarGroup
-* @deprecated The old Calendar2up class is no longer necessary, since CalendarGroup renders in a 2up view by default.
-*/
-YAHOO.widget.Calendar2up = function(id, containerId, config) {
-	this.init(id, containerId, config);
-};
-
-YAHOO.extend(YAHOO.widget.Calendar2up, CalendarGroup);
-
-/**
-* @deprecated The old Calendar2up class is no longer necessary, since CalendarGroup renders in a 2up view by default.
-*/
-YAHOO.widget.Cal2up = YAHOO.widget.Calendar2up;
-
-})();
-
-/**
- * The CalendarNavigator is used along with a Calendar/CalendarGroup to 
- * provide a Month/Year popup navigation control, allowing the user to navigate 
- * to a specific month/year in the Calendar/CalendarGroup without having to 
- * scroll through months sequentially
- *
- * @namespace YAHOO.widget
- * @class CalendarNavigator
- * @constructor
- * @param {Calendar|CalendarGroup} cal The instance of the Calendar or CalendarGroup to which this CalendarNavigator should be attached.
- */
-YAHOO.widget.CalendarNavigator = function(cal) {
-	this.init(cal);
-};
-
-(function() {
-	// Setup static properties (inside anon fn, so that we can use shortcuts)
-	var CN = YAHOO.widget.CalendarNavigator;
-
-	/**
-	 * YAHOO.widget.CalendarNavigator.CLASSES contains constants
-	 * for the class values applied to the CalendarNaviatgator's 
-	 * DOM elements
-	 * @property YAHOO.widget.CalendarNavigator.CLASSES
-	 * @type Object
-	 * @static
-	 */
-	CN.CLASSES = {
-		/**
-		 * Class applied to the Calendar Navigator's bounding box
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.NAV
-		 * @type String
-		 * @static
-		 */
-		NAV :"yui-cal-nav",
-		/**
-		 * Class applied to the Calendar/CalendarGroup's bounding box to indicate
-		 * the Navigator is currently visible
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.NAV_VISIBLE
-		 * @type String
-		 * @static
-		 */
-		NAV_VISIBLE: "yui-cal-nav-visible",
-		/**
-		 * Class applied to the Navigator mask's bounding box
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.MASK
-		 * @type String
-		 * @static
-		 */
-		MASK : "yui-cal-nav-mask",
-		/**
-		 * Class applied to the year label/control bounding box
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.YEAR
-		 * @type String
-		 * @static
-		 */
-		YEAR : "yui-cal-nav-y",
-		/**
-		 * Class applied to the month label/control bounding box
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.MONTH
-		 * @type String
-		 * @static
-		 */
-		MONTH : "yui-cal-nav-m",
-		/**
-		 * Class applied to the submit/cancel button's bounding box
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.BUTTONS
-		 * @type String
-		 * @static
-		 */
-		BUTTONS : "yui-cal-nav-b",
-		/**
-		 * Class applied to buttons wrapping element
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.BUTTON
-		 * @type String
-		 * @static
-		 */
-		BUTTON : "yui-cal-nav-btn",
-		/**
-		 * Class applied to the validation error area's bounding box
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.ERROR
-		 * @type String
-		 * @static
-		 */
-		ERROR : "yui-cal-nav-e",
-		/**
-		 * Class applied to the year input control
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.YEAR_CTRL
-		 * @type String
-		 * @static
-		 */
-		YEAR_CTRL : "yui-cal-nav-yc",
-		/**
-		 * Class applied to the month input control
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.MONTH_CTRL
-		 * @type String
-		 * @static
-		 */
-		MONTH_CTRL : "yui-cal-nav-mc",
-		/**
-		 * Class applied to controls with invalid data (e.g. a year input field with invalid an year)
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.INVALID
-		 * @type String
-		 * @static
-		 */
-		INVALID : "yui-invalid",
-		/**
-		 * Class applied to default controls
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.DEFAULT
-		 * @type String
-		 * @static
-		 */
-		DEFAULT : "yui-default"
-	};
-
-	/**
-	 * Object literal containing the default configuration values for the CalendarNavigator
-	 * The configuration object is expected to follow the format below, with the properties being
-	 * case sensitive.
-	 * <dl>
-	 * <dt>strings</dt>
-	 * <dd><em>Object</em> :  An object with the properties shown below, defining the string labels to use in the Navigator's UI
-	 *     <dl>
-	 *         <dt>month</dt><dd><em>String</em> : The string to use for the month label. Defaults to "Month".</dd>
-	 *         <dt>year</dt><dd><em>String</em> : The string to use for the year label. Defaults to "Year".</dd>
-	 *         <dt>submit</dt><dd><em>String</em> : The string to use for the submit button label. Defaults to "Okay".</dd>
-	 *         <dt>cancel</dt><dd><em>String</em> : The string to use for the cancel button label. Defaults to "Cancel".</dd>
-	 *         <dt>invalidYear</dt><dd><em>String</em> : The string to use for invalid year values. Defaults to "Year needs to be a number".</dd>
-	 *     </dl>
-	 * </dd>
-	 * <dt>monthFormat</dt><dd><em>String</em> : The month format to use. Either YAHOO.widget.Calendar.LONG, or YAHOO.widget.Calendar.SHORT. Defaults to YAHOO.widget.Calendar.LONG</dd>
-	 * <dt>initialFocus</dt><dd><em>String</em> : Either "year" or "month" specifying which input control should get initial focus. Defaults to "year"</dd>
-	 * </dl>
-	 * @property _DEFAULT_CFG
-	 * @protected
-	 * @type Object
-	 * @static
-	 */
-	CN._DEFAULT_CFG = {
-		strings : {
-			month: "Month",
-			year: "Year",
-			submit: "Okay",
-			cancel: "Cancel",
-			invalidYear : "Year needs to be a number"
-		},
-		monthFormat: YAHOO.widget.Calendar.LONG,
-		initialFocus: "year"
-	};
-
-	/**
-	 * The suffix added to the Calendar/CalendarGroup's ID, to generate
-	 * a unique ID for the Navigator and it's bounding box.
-	 * @property YAHOO.widget.CalendarNavigator.ID_SUFFIX
-	 * @static
-	 * @type String
-	 * @final
-	 */
-	CN.ID_SUFFIX = "_nav";
-	/**
-	 * The suffix added to the Navigator's ID, to generate
-	 * a unique ID for the month control.
-	 * @property YAHOO.widget.CalendarNavigator.MONTH_SUFFIX
-	 * @static
-	 * @type String 
-	 * @final
-	 */
-	CN.MONTH_SUFFIX = "_month";
-	/**
-	 * The suffix added to the Navigator's ID, to generate
-	 * a unique ID for the year control.
-	 * @property YAHOO.widget.CalendarNavigator.YEAR_SUFFIX
-	 * @static
-	 * @type String
-	 * @final
-	 */
-	CN.YEAR_SUFFIX = "_year";
-	/**
-	 * The suffix added to the Navigator's ID, to generate
-	 * a unique ID for the error bounding box.
-	 * @property YAHOO.widget.CalendarNavigator.ERROR_SUFFIX
-	 * @static
-	 * @type String
-	 * @final
-	 */
-	CN.ERROR_SUFFIX = "_error";
-	/**
-	 * The suffix added to the Navigator's ID, to generate
-	 * a unique ID for the "Cancel" button.
-	 * @property YAHOO.widget.CalendarNavigator.CANCEL_SUFFIX
-	 * @static
-	 * @type String
-	 * @final
-	 */
-	CN.CANCEL_SUFFIX = "_cancel";
-	/**
-	 * The suffix added to the Navigator's ID, to generate
-	 * a unique ID for the "Submit" button.
-	 * @property YAHOO.widget.CalendarNavigator.SUBMIT_SUFFIX
-	 * @static
-	 * @type String
-	 * @final
-	 */
-	CN.SUBMIT_SUFFIX = "_submit";
-
-	/**
-	 * The number of digits to which the year input control is to be limited.
-	 * @property YAHOO.widget.CalendarNavigator.YR_MAX_DIGITS
-	 * @static
-	 * @type Number
-	 */
-	CN.YR_MAX_DIGITS = 4;
-
-	/**
-	 * The amount by which to increment the current year value,
-	 * when the arrow up/down key is pressed on the year control
-	 * @property YAHOO.widget.CalendarNavigator.YR_MINOR_INC
-	 * @static
-	 * @type Number
-	 */
-	CN.YR_MINOR_INC = 1;
-
-	/**
-	 * The amount by which to increment the current year value,
-	 * when the page up/down key is pressed on the year control
-	 * @property YAHOO.widget.CalendarNavigator.YR_MAJOR_INC
-	 * @static
-	 * @type Number
-	 */
-	CN.YR_MAJOR_INC = 10;
-
-	/**
-	 * Artificial delay (in ms) between the time the Navigator is hidden
-	 * and the Calendar/CalendarGroup state is updated. Allows the user
-	 * the see the Calendar/CalendarGroup page changing. If set to 0
-	 * the Calendar/CalendarGroup page will be updated instantly
-	 * @property YAHOO.widget.CalendarNavigator.UPDATE_DELAY
-	 * @static
-	 * @type Number
-	 */
-	CN.UPDATE_DELAY = 50;
-
-	/**
-	 * Regular expression used to validate the year input
-	 * @property YAHOO.widget.CalendarNavigator.YR_PATTERN
-	 * @static
-	 * @type RegExp
-	 */
-	CN.YR_PATTERN = /^\d+$/;
-	/**
-	 * Regular expression used to trim strings
-	 * @property YAHOO.widget.CalendarNavigator.TRIM
-	 * @static
-	 * @type RegExp
-	 */
-	CN.TRIM = /^\s*(.*?)\s*$/;
-})();
-
-YAHOO.widget.CalendarNavigator.prototype = {
-
-	/**
-	 * The unique ID for this CalendarNavigator instance
-	 * @property id
-	 * @type String
-	 */
-	id : null,
-
-	/**
-	 * The Calendar/CalendarGroup instance to which the navigator belongs
-	 * @property cal
-	 * @type {Calendar|CalendarGroup}
-	 */
-	cal : null,
-
-	/**
-	 * Reference to the HTMLElement used to render the navigator's bounding box
-	 * @property navEl
-	 * @type HTMLElement
-	 */
-	navEl : null,
-
-	/**
-	 * Reference to the HTMLElement used to render the navigator's mask
-	 * @property maskEl
-	 * @type HTMLElement
-	 */
-	maskEl : null,
-
-	/**
-	 * Reference to the HTMLElement used to input the year
-	 * @property yearEl
-	 * @type HTMLElement
-	 */
-	yearEl : null,
-
-	/**
-	 * Reference to the HTMLElement used to input the month
-	 * @property monthEl
-	 * @type HTMLElement
-	 */
-	monthEl : null,
-
-	/**
-	 * Reference to the HTMLElement used to display validation errors
-	 * @property errorEl
-	 * @type HTMLElement
-	 */
-	errorEl : null,
-
-	/**
-	 * Reference to the HTMLElement used to update the Calendar/Calendar group
-	 * with the month/year values
-	 * @property submitEl
-	 * @type HTMLElement
-	 */
-	submitEl : null,
-	
-	/**
-	 * Reference to the HTMLElement used to hide the navigator without updating the 
-	 * Calendar/Calendar group
-	 * @property cancelEl
-	 * @type HTMLElement
-	 */
-	cancelEl : null,
-
-	/** 
-	 * Reference to the first focusable control in the navigator (by default monthEl)
-	 * @property firstCtrl
-	 * @type HTMLElement
-	 */
-	firstCtrl : null,
-	
-	/** 
-	 * Reference to the last focusable control in the navigator (by default cancelEl)
-	 * @property lastCtrl
-	 * @type HTMLElement
-	 */
-	lastCtrl : null,
-
-	/**
-	 * The document containing the Calendar/Calendar group instance
-	 * @protected
-	 * @property _doc
-	 * @type HTMLDocument
-	 */
-	_doc : null,
-
-	/**
-	 * Internal state property for the current year displayed in the navigator
-	 * @protected
-	 * @property _year
-	 * @type Number
-	 */
-	_year: null,
-	
-	/**
-	 * Internal state property for the current month index displayed in the navigator
-	 * @protected
-	 * @property _month
-	 * @type Number
-	 */
-	_month: 0,
-
-	/**
-	 * Private internal state property which indicates whether or not the 
-	 * Navigator has been rendered.
-	 * @private
-	 * @property __rendered
-	 * @type Boolean
-	 */
-	__rendered: false,
-
-	/**
-	 * Init lifecycle method called as part of construction
-	 * 
-	 * @method init
-	 * @param {Calendar} cal The instance of the Calendar or CalendarGroup to which this CalendarNavigator should be attached
-	 */
-	init : function(cal) {
-		var calBox = cal.oDomContainer;
-
-		this.cal = cal;
-		this.id = calBox.id + YAHOO.widget.CalendarNavigator.ID_SUFFIX;
-		this._doc = calBox.ownerDocument;
-
-		/**
-		 * Private flag, to identify IE6/IE7 Quirks
-		 * @private
-		 * @property __isIEQuirks
-		 */
-		var ie = YAHOO.env.ua.ie;
-		this.__isIEQuirks = (ie && ((ie <= 6) || (ie === 7 && this._doc.compatMode == "BackCompat")));
-	},
-
-	/**
-	 * Displays the navigator and mask, updating the input controls to reflect the 
-	 * currently set month and year. The show method will invoke the render method
-	 * if the navigator has not been renderered already, allowing for lazy rendering
-	 * of the control.
-	 * 
-	 * The show method will fire the Calendar/CalendarGroup's beforeShowNav and showNav events
-	 * 
-	 * @method show
-	 */
-	show : function() {
-		var CLASSES = YAHOO.widget.CalendarNavigator.CLASSES;
-
-		if (this.cal.beforeShowNavEvent.fire()) {
-			if (!this.__rendered) {
-				this.render();
-			}
-			this.clearErrors();
-
-			this._updateMonthUI();
-			this._updateYearUI();
-			this._show(this.navEl, true);
-
-			this.setInitialFocus();
-			this.showMask();
-
-			YAHOO.util.Dom.addClass(this.cal.oDomContainer, CLASSES.NAV_VISIBLE);
-			this.cal.showNavEvent.fire();
-		}
-	},
-
-	/**
-	 * Hides the navigator and mask
-	 * 
-	 * The show method will fire the Calendar/CalendarGroup's beforeHideNav event and hideNav events
-	 * @method hide
-	 */
-	hide : function() {
-		var CLASSES = YAHOO.widget.CalendarNavigator.CLASSES;
-
-		if (this.cal.beforeHideNavEvent.fire()) {
-			this._show(this.navEl, false);
-			this.hideMask();
-			YAHOO.util.Dom.removeClass(this.cal.oDomContainer, CLASSES.NAV_VISIBLE);
-			this.cal.hideNavEvent.fire();
-		}
-	},
-	
-
-	/**
-	 * Displays the navigator's mask element
-	 * 
-	 * @method showMask
-	 */
-	showMask : function() {
-		this._show(this.maskEl, true);
-		if (this.__isIEQuirks) {
-			this._syncMask();
-		}
-	},
-
-	/**
-	 * Hides the navigator's mask element
-	 * 
-	 * @method hideMask
-	 */
-	hideMask : function() {
-		this._show(this.maskEl, false);
-	},
-
-	/**
-	 * Returns the current month set on the navigator
-	 * 
-	 * Note: This may not be the month set in the UI, if 
-	 * the UI contains an invalid value.
-	 * 
-	 * @method getMonth
-	 * @return {Number} The Navigator's current month index
-	 */
-	getMonth: function() {
-		return this._month;
-	},
-
-	/**
-	 * Returns the current year set on the navigator
-	 * 
-	 * Note: This may not be the year set in the UI, if 
-	 * the UI contains an invalid value.
-	 * 
-	 * @method getYear
-	 * @return {Number} The Navigator's current year value
-	 */
-	getYear: function() {
-		return this._year;
-	},
-
-	/**
-	 * Sets the current month on the Navigator, and updates the UI
-	 * 
-	 * @method setMonth
-	 * @param {Number} nMonth The month index, from 0 (Jan) through 11 (Dec).
-	 */
-	setMonth : function(nMonth) {
-		if (nMonth >= 0 && nMonth < 12) {
-			this._month = nMonth;
-		}
-		this._updateMonthUI();
-	},
-
-	/**
-	 * Sets the current year on the Navigator, and updates the UI. If the 
-	 * provided year is invalid, it will not be set.
-	 * 
-	 * @method setYear
-	 * @param {Number} nYear The full year value to set the Navigator to.
-	 */
-	setYear : function(nYear) {
-		var yrPattern = YAHOO.widget.CalendarNavigator.YR_PATTERN;
-		if (YAHOO.lang.isNumber(nYear) && yrPattern.test(nYear+"")) {
-			this._year = nYear;
-		}
-		this._updateYearUI();
-	},
-
-	/**
-	 * Renders the HTML for the navigator, adding it to the 
-	 * document and attaches event listeners if it has not 
-	 * already been rendered.
-	 * 
-	 * @method render
-	 */
-	render: function() {
-		this.cal.beforeRenderNavEvent.fire();
-		if (!this.__rendered) {
-			this.createNav();
-			this.createMask();
-			this.applyListeners();
-			this.__rendered = true;
-		}
-		this.cal.renderNavEvent.fire();
-	},
-
-	/**
-	 * Creates the navigator's containing HTMLElement, it's contents, and appends 
-	 * the containg element to the Calendar/CalendarGroup's container.
-	 * 
-	 * @method createNav
-	 */
-	createNav : function() {
-		var NAV = YAHOO.widget.CalendarNavigator;
-		var doc = this._doc;
-
-		var d = doc.createElement("div");
-		d.className = NAV.CLASSES.NAV;
-
-		var htmlBuf = this.renderNavContents([]);
-
-		d.innerHTML = htmlBuf.join('');
-		this.cal.oDomContainer.appendChild(d);
-
-		this.navEl = d;
-
-		this.yearEl = doc.getElementById(this.id + NAV.YEAR_SUFFIX);
-		this.monthEl = doc.getElementById(this.id + NAV.MONTH_SUFFIX);
-		this.errorEl = doc.getElementById(this.id + NAV.ERROR_SUFFIX);
-		this.submitEl = doc.getElementById(this.id + NAV.SUBMIT_SUFFIX);
-		this.cancelEl = doc.getElementById(this.id + NAV.CANCEL_SUFFIX);
-
-		if (YAHOO.env.ua.gecko && this.yearEl && this.yearEl.type == "text") {
-			// Avoid XUL error on focus, select [ https://bugzilla.mozilla.org/show_bug.cgi?id=236791, 
-			// supposedly fixed in 1.8.1, but there are reports of it still being around for methods other than blur ]
-			this.yearEl.setAttribute("autocomplete", "off");
-		}
-
-		this._setFirstLastElements();
-	},
-
-	/**
-	 * Creates the Mask HTMLElement and appends it to the Calendar/CalendarGroups
-	 * container.
-	 * 
-	 * @method createMask
-	 */
-	createMask : function() {
-		var C = YAHOO.widget.CalendarNavigator.CLASSES;
-
-		var d = this._doc.createElement("div");
-		d.className = C.MASK;
-
-		this.cal.oDomContainer.appendChild(d);
-		this.maskEl = d;
-	},
-
-	/**
-	 * Used to set the width/height of the mask in pixels to match the Calendar Container.
-	 * Currently only used for IE6 and IE7 quirks mode. The other A-Grade browser are handled using CSS (width/height 100%).
-	 * <p>
-	 * The method is also registered as an HTMLElement resize listener on the Calendars container element.
-	 * </p>
-	 * @protected
-	 * @method _syncMask
-	 */
-	_syncMask : function() {
-		var c = this.cal.oDomContainer;
-		if (c && this.maskEl) {
-			var r = YAHOO.util.Dom.getRegion(c);
-			YAHOO.util.Dom.setStyle(this.maskEl, "width", r.right - r.left + "px");
-			YAHOO.util.Dom.setStyle(this.maskEl, "height", r.bottom - r.top + "px");
-		}
-	},
-
-	/**
-	 * Renders the contents of the navigator
-	 * 
-	 * @method renderNavContents
-	 * 
-	 * @param {Array} html The HTML buffer to append the HTML to.
-	 * @return {Array} A reference to the buffer passed in.
-	 */
-	renderNavContents : function(html) {
-		var NAV = YAHOO.widget.CalendarNavigator,
-			C = NAV.CLASSES,
-			h = html; // just to use a shorter name
-
-		h[h.length] = '<div class="' + C.MONTH + '">';
-		this.renderMonth(h);
-		h[h.length] = '</div>';
-		h[h.length] = '<div class="' + C.YEAR + '">';
-		this.renderYear(h);
-		h[h.length] = '</div>';
-		h[h.length] = '<div class="' + C.BUTTONS + '">';
-		this.renderButtons(h);
-		h[h.length] = '</div>';
-		h[h.length] = '<div class="' + C.ERROR + '" id="' + this.id + NAV.ERROR_SUFFIX + '"></div>';
-
-		return h;
-	},
-
-	/**
-	 * Renders the month label and control for the navigator
-	 * 
-	 * @method renderNavContents
-	 * @param {Array} html The HTML buffer to append the HTML to.
-	 * @return {Array} A reference to the buffer passed in.
-	 */
-	renderMonth : function(html) {
-		var NAV = YAHOO.widget.CalendarNavigator,
-			C = NAV.CLASSES;
-
-		var id = this.id + NAV.MONTH_SUFFIX,
-			mf = this.__getCfg("monthFormat"),
-			months = this.cal.cfg.getProperty((mf == YAHOO.widget.Calendar.SHORT) ? "MONTHS_SHORT" : "MONTHS_LONG"),
-			h = html;
-
-		if (months && months.length > 0) {
-			h[h.length] = '<label for="' + id + '">';
-			h[h.length] = this.__getCfg("month", true);
-			h[h.length] = '</label>';
-			h[h.length] = '<select name="' + id + '" id="' + id + '" class="' + C.MONTH_CTRL + '">';
-			for (var i = 0; i < months.length; i++) {
-				h[h.length] = '<option value="' + i + '">';
-				h[h.length] = months[i];
-				h[h.length] = '</option>';
-			}
-			h[h.length] = '</select>';
-		}
-		return h;
-	},
-
-	/**
-	 * Renders the year label and control for the navigator
-	 * 
-	 * @method renderYear
-	 * @param {Array} html The HTML buffer to append the HTML to.
-	 * @return {Array} A reference to the buffer passed in.
-	 */
-	renderYear : function(html) {
-		var NAV = YAHOO.widget.CalendarNavigator,
-			C = NAV.CLASSES;
-
-		var id = this.id + NAV.YEAR_SUFFIX,
-			size = NAV.YR_MAX_DIGITS,
-			h = html;
-
-		h[h.length] = '<label for="' + id + '">';
-		h[h.length] = this.__getCfg("year", true);
-		h[h.length] = '</label>';
-		h[h.length] = '<input type="text" name="' + id + '" id="' + id + '" class="' + C.YEAR_CTRL + '" maxlength="' + size + '"/>';
-		return h;
-	},
-
-	/**
-	 * Renders the submit/cancel buttons for the navigator
-	 * 
-	 * @method renderButton
-	 * @return {String} The HTML created for the Button UI
-	 */
-	renderButtons : function(html) {
-		var C = YAHOO.widget.CalendarNavigator.CLASSES;
-		var h = html;
-
-		h[h.length] = '<span class="' + C.BUTTON + ' ' + C.DEFAULT + '">';
-		h[h.length] = '<button type="button" id="' + this.id + '_submit' + '">';
-		h[h.length] = this.__getCfg("submit", true);
-		h[h.length] = '</button>';
-		h[h.length] = '</span>';
-		h[h.length] = '<span class="' + C.BUTTON +'">';
-		h[h.length] = '<button type="button" id="' + this.id + '_cancel' + '">';
-		h[h.length] = this.__getCfg("cancel", true);
-		h[h.length] = '</button>';
-		h[h.length] = '</span>';
-
-		return h;
-	},
-
-	/**
-	 * Attaches DOM event listeners to the rendered elements
-	 * <p>
-	 * The method will call applyKeyListeners, to setup keyboard specific 
-	 * listeners
-	 * </p>
-	 * @method applyListeners
-	 */
-	applyListeners : function() {
-		var E = YAHOO.util.Event;
-
-		function yearUpdateHandler() {
-			if (this.validate()) {
-				this.setYear(this._getYearFromUI());
-			}
-		}
-
-		function monthUpdateHandler() {
-			this.setMonth(this._getMonthFromUI());
-		}
-
-		E.on(this.submitEl, "click", this.submit, this, true);
-		E.on(this.cancelEl, "click", this.cancel, this, true);
-		E.on(this.yearEl, "blur", yearUpdateHandler, this, true);
-		E.on(this.monthEl, "change", monthUpdateHandler, this, true);
-
-		if (this.__isIEQuirks) {
-			YAHOO.util.Event.on(this.cal.oDomContainer, "resize", this._syncMask, this, true);
-		}
-
-		this.applyKeyListeners();
-	},
-
-	/**
-	 * Removes/purges DOM event listeners from the rendered elements
-	 * 
-	 * @method purgeListeners
-	 */
-	purgeListeners : function() {
-		var E = YAHOO.util.Event;
-		E.removeListener(this.submitEl, "click", this.submit);
-		E.removeListener(this.cancelEl, "click", this.cancel);
-		E.removeListener(this.yearEl, "blur");
-		E.removeListener(this.monthEl, "change");
-		if (this.__isIEQuirks) {
-			E.removeListener(this.cal.oDomContainer, "resize", this._syncMask);
-		}
-
-		this.purgeKeyListeners();
-	},
-
-	/**
-	 * Attaches DOM listeners for keyboard support. 
-	 * Tab/Shift-Tab looping, Enter Key Submit on Year element,
-	 * Up/Down/PgUp/PgDown year increment on Year element
-	 * <p>
-	 * NOTE: MacOSX Safari 2.x doesn't let you tab to buttons and 
-	 * MacOSX Gecko does not let you tab to buttons or select controls,
-	 * so for these browsers, Tab/Shift-Tab looping is limited to the 
-	 * elements which can be reached using the tab key.
-	 * </p>
-	 * @method applyKeyListeners
-	 */
-	applyKeyListeners : function() {
-		var E = YAHOO.util.Event,
-			ua = YAHOO.env.ua;
-
-		// IE/Safari 3.1 doesn't fire keypress for arrow/pg keys (non-char keys)
-		var arrowEvt = (ua.ie || ua.webkit) ? "keydown" : "keypress";
-
-		// - IE/Safari 3.1 doesn't fire keypress for non-char keys
-		// - Opera doesn't allow us to cancel keydown or keypress for tab, but 
-		//   changes focus successfully on keydown (keypress is too late to change focus - opera's already moved on).
-		var tabEvt = (ua.ie || ua.opera || ua.webkit) ? "keydown" : "keypress";
-
-		// Everyone likes keypress for Enter (char keys) - whoo hoo!
-		E.on(this.yearEl, "keypress", this._handleEnterKey, this, true);
-
-		E.on(this.yearEl, arrowEvt, this._handleDirectionKeys, this, true);
-		E.on(this.lastCtrl, tabEvt, this._handleTabKey, this, true);
-		E.on(this.firstCtrl, tabEvt, this._handleShiftTabKey, this, true);
-	},
-
-	/**
-	 * Removes/purges DOM listeners for keyboard support
-	 *
-	 * @method purgeKeyListeners
-	 */
-	purgeKeyListeners : function() {
-		var E = YAHOO.util.Event,
-			ua = YAHOO.env.ua;
-
-		var arrowEvt = (ua.ie || ua.webkit) ? "keydown" : "keypress";
-		var tabEvt = (ua.ie || ua.opera || ua.webkit) ? "keydown" : "keypress";
-
-		E.removeListener(this.yearEl, "keypress", this._handleEnterKey);
-		E.removeListener(this.yearEl, arrowEvt, this._handleDirectionKeys);
-		E.removeListener(this.lastCtrl, tabEvt, this._handleTabKey);
-		E.removeListener(this.firstCtrl, tabEvt, this._handleShiftTabKey);
-	},
-
-	/**
-	 * Updates the Calendar/CalendarGroup's pagedate with the currently set month and year if valid.
-	 * <p>
-	 * If the currently set month/year is invalid, a validation error will be displayed and the 
-	 * Calendar/CalendarGroup's pagedate will not be updated.
-	 * </p>
-	 * @method submit
-	 */
-	submit : function() {
-		if (this.validate()) {
-			this.hide();
-
-			this.setMonth(this._getMonthFromUI());
-			this.setYear(this._getYearFromUI());
-
-			var cal = this.cal;
-
-			// Artificial delay, just to help the user see something changed
-			var delay = YAHOO.widget.CalendarNavigator.UPDATE_DELAY;
-			if (delay > 0) {
-				var nav = this;
-				window.setTimeout(function(){ nav._update(cal); }, delay);
-			} else {
-				this._update(cal);
-			}
-		}
-	},
-
-	/**
-	 * Updates the Calendar rendered state, based on the state of the CalendarNavigator
-	 * @method _update
-	 * @param cal The Calendar instance to update
-	 * @protected
-	 */
-	_update : function(cal) {
-		cal.setYear(this.getYear());
-		cal.setMonth(this.getMonth());
-		cal.render();
-	},
-
-	/**
-	 * Hides the navigator and mask, without updating the Calendar/CalendarGroup's state
-	 * 
-	 * @method cancel
-	 */
-	cancel : function() {
-		this.hide();
-	},
-
-	/**
-	 * Validates the current state of the UI controls
-	 * 
-	 * @method validate
-	 * @return {Boolean} true, if the current UI state contains valid values, false if not
-	 */
-	validate : function() {
-		if (this._getYearFromUI() !== null) {
-			this.clearErrors();
-			return true;
-		} else {
-			this.setYearError();
-			this.setError(this.__getCfg("invalidYear", true));
-			return false;
-		}
-	},
-
-	/**
-	 * Displays an error message in the Navigator's error panel
-	 * @method setError
-	 * @param {String} msg The error message to display
-	 */
-	setError : function(msg) {
-		if (this.errorEl) {
-			this.errorEl.innerHTML = msg;
-			this._show(this.errorEl, true);
-		}
-	},
-
-	/**
-	 * Clears the navigator's error message and hides the error panel
-	 * @method clearError 
-	 */
-	clearError : function() {
-		if (this.errorEl) {
-			this.errorEl.innerHTML = "";
-			this._show(this.errorEl, false);
-		}
-	},
-
-	/**
-	 * Displays the validation error UI for the year control
-	 * @method setYearError
-	 */
-	setYearError : function() {
-		YAHOO.util.Dom.addClass(this.yearEl, YAHOO.widget.CalendarNavigator.CLASSES.INVALID);
-	},
-
-	/**
-	 * Removes the validation error UI for the year control
-	 * @method clearYearError
-	 */
-	clearYearError : function() {
-		YAHOO.util.Dom.removeClass(this.yearEl, YAHOO.widget.CalendarNavigator.CLASSES.INVALID);
-	},
-
-	/**
-	 * Clears all validation and error messages in the UI
-	 * @method clearErrors
-	 */
-	clearErrors : function() {
-		this.clearError();
-		this.clearYearError();
-	},
-
-	/**
-	 * Sets the initial focus, based on the configured value
-	 * @method setInitialFocus
-	 */
-	setInitialFocus : function() {
-		var el = this.submitEl,
-			f = this.__getCfg("initialFocus");
-
-		if (f && f.toLowerCase) {
-			f = f.toLowerCase();
-			if (f == "year") {
-				el = this.yearEl;
-				try {
-					this.yearEl.select();
-				} catch (selErr) {
-					// Ignore;
-				}
-			} else if (f == "month") {
-				el = this.monthEl;
-			}
-		}
-
-		if (el && YAHOO.lang.isFunction(el.focus)) {
-			try {
-				el.focus();
-			} catch (focusErr) {
-				// TODO: Fall back if focus fails?
-			}
-		}
-	},
-
-	/**
-	 * Removes all renderered HTML elements for the Navigator from
-	 * the DOM, purges event listeners and clears (nulls) any property
-	 * references to HTML references
-	 * @method erase
-	 */
-	erase : function() {
-		if (this.__rendered) {
-			this.purgeListeners();
-
-			// Clear out innerHTML references
-			this.yearEl = null;
-			this.monthEl = null;
-			this.errorEl = null;
-			this.submitEl = null;
-			this.cancelEl = null;
-			this.firstCtrl = null;
-			this.lastCtrl = null;
-			if (this.navEl) {
-				this.navEl.innerHTML = "";
-			}
-
-			var p = this.navEl.parentNode;
-			if (p) {
-				p.removeChild(this.navEl);
-			}
-			this.navEl = null;
-
-			var pm = this.maskEl.parentNode;
-			if (pm) {
-				pm.removeChild(this.maskEl);
-			}
-			this.maskEl = null;
-			this.__rendered = false;
-		}
-	},
-
-	/**
-	 * Destroys the Navigator object and any HTML references
-	 * @method destroy
-	 */
-	destroy : function() {
-		this.erase();
-		this._doc = null;
-		this.cal = null;
-		this.id = null;
-	},
-
-	/**
-	 * Protected implementation to handle how UI elements are 
-	 * hidden/shown.
-	 *
-	 * @method _show
-	 * @protected
-	 */
-	_show : function(el, bShow) {
-		if (el) {
-			YAHOO.util.Dom.setStyle(el, "display", (bShow) ? "block" : "none");
-		}
-	},
-
-	/**
-	 * Returns the month value (index), from the month UI element
-	 * @protected
-	 * @method _getMonthFromUI
-	 * @return {Number} The month index, or 0 if a UI element for the month
-	 * is not found
-	 */
-	_getMonthFromUI : function() {
-		if (this.monthEl) {
-			return this.monthEl.selectedIndex;
-		} else {
-			return 0; // Default to Jan
-		}
-	},
-
-	/**
-	 * Returns the year value, from the Navitator's year UI element
-	 * @protected
-	 * @method _getYearFromUI
-	 * @return {Number} The year value set in the UI, if valid. null is returned if 
-	 * the UI does not contain a valid year value.
-	 */
-	_getYearFromUI : function() {
-		var NAV = YAHOO.widget.CalendarNavigator;
-
-		var yr = null;
-		if (this.yearEl) {
-			var value = this.yearEl.value;
-			value = value.replace(NAV.TRIM, "$1");
-
-			if (NAV.YR_PATTERN.test(value)) {
-				yr = parseInt(value, 10);
-			}
-		}
-		return yr;
-	},
-
-	/**
-	 * Updates the Navigator's year UI, based on the year value set on the Navigator object
-	 * @protected
-	 * @method _updateYearUI
-	 */
-	_updateYearUI : function() {
-		if (this.yearEl && this._year !== null) {
-			this.yearEl.value = this._year;
-		}
-	},
-
-	/**
-	 * Updates the Navigator's month UI, based on the month value set on the Navigator object
-	 * @protected
-	 * @method _updateMonthUI
-	 */
-	_updateMonthUI : function() {
-		if (this.monthEl) {
-			this.monthEl.selectedIndex = this._month;
-		}
-	},
-
-	/**
-	 * Sets up references to the first and last focusable element in the Navigator's UI
-	 * in terms of tab order (Naviagator's firstEl and lastEl properties). The references
-	 * are used to control modality by looping around from the first to the last control
-	 * and visa versa for tab/shift-tab navigation.
-	 * <p>
-	 * See <a href="#applyKeyListeners">applyKeyListeners</a>
-	 * </p>
-	 * @protected
-	 * @method _setFirstLastElements
-	 */
-	_setFirstLastElements : function() {
-		this.firstCtrl = this.monthEl;
-		this.lastCtrl = this.cancelEl;
-
-		// Special handling for MacOSX.
-		// - Safari 2.x can't focus on buttons
-		// - Gecko can't focus on select boxes or buttons
-		if (this.__isMac) {
-			if (YAHOO.env.ua.webkit && YAHOO.env.ua.webkit < 420){
-				this.firstCtrl = this.monthEl;
-				this.lastCtrl = this.yearEl;
-			}
-			if (YAHOO.env.ua.gecko) {
-				this.firstCtrl = this.yearEl;
-				this.lastCtrl = this.yearEl;
-			}
-		}
-	},
-
-	/**
-	 * Default Keyboard event handler to capture Enter 
-	 * on the Navigator's year control (yearEl)
-	 * 
-	 * @method _handleEnterKey
-	 * @protected
-	 * @param {Event} e The DOM event being handled
-	 */
-	_handleEnterKey : function(e) {
-		var KEYS = YAHOO.util.KeyListener.KEY;
-
-		if (YAHOO.util.Event.getCharCode(e) == KEYS.ENTER) {
-			YAHOO.util.Event.preventDefault(e);
-			this.submit();
-		}
-	},
-
-	/**
-	 * Default Keyboard event handler to capture up/down/pgup/pgdown
-	 * on the Navigator's year control (yearEl).
-	 * 
-	 * @method _handleDirectionKeys
-	 * @protected
-	 * @param {Event} e The DOM event being handled
-	 */
-	_handleDirectionKeys : function(e) {
-		var E = YAHOO.util.Event,
-			KEYS = YAHOO.util.KeyListener.KEY,
-			NAV = YAHOO.widget.CalendarNavigator;
-
-		var value = (this.yearEl.value) ? parseInt(this.yearEl.value, 10) : null;
-		if (isFinite(value)) {
-			var dir = false;
-			switch(E.getCharCode(e)) {
-				case KEYS.UP:
-					this.yearEl.value = value + NAV.YR_MINOR_INC;
-					dir = true;
-					break;
-				case KEYS.DOWN:
-					this.yearEl.value = Math.max(value - NAV.YR_MINOR_INC, 0);
-					dir = true;
-					break;
-				case KEYS.PAGE_UP:
-					this.yearEl.value = value + NAV.YR_MAJOR_INC;
-					dir = true;
-					break;
-				case KEYS.PAGE_DOWN:
-					this.yearEl.value = Math.max(value - NAV.YR_MAJOR_INC, 0);
-					dir = true;
-					break;
-				default:
-					break;
-			}
-			if (dir) {
-				E.preventDefault(e);
-				try {
-					this.yearEl.select();
-				} catch(err) {
-					// Ignore
-				}
-			}
-		}
-	},
-
-	/**
-	 * Default Keyboard event handler to capture Tab 
-	 * on the last control (lastCtrl) in the Navigator.
-	 * 
-	 * @method _handleTabKey
-	 * @protected
-	 * @param {Event} e The DOM event being handled
-	 */
-	_handleTabKey : function(e) {
-		var E = YAHOO.util.Event,
-			KEYS = YAHOO.util.KeyListener.KEY;
-
-		if (E.getCharCode(e) == KEYS.TAB && !e.shiftKey) {
-			try {
-				E.preventDefault(e);
-				this.firstCtrl.focus();
-			} catch (err) {
-				// Ignore - mainly for focus edge cases
-			}
-		}
-	},
-
-	/**
-	 * Default Keyboard event handler to capture Shift-Tab 
-	 * on the first control (firstCtrl) in the Navigator.
-	 * 
-	 * @method _handleShiftTabKey
-	 * @protected
-	 * @param {Event} e The DOM event being handled
-	 */
-	_handleShiftTabKey : function(e) {
-		var E = YAHOO.util.Event,
-			KEYS = YAHOO.util.KeyListener.KEY;
-
-		if (e.shiftKey && E.getCharCode(e) == KEYS.TAB) {
-			try {
-				E.preventDefault(e);
-				this.lastCtrl.focus();
-			} catch (err) {
-				// Ignore - mainly for focus edge cases
-			}
-		}
-	},
-
-	/**
-	 * Retrieve Navigator configuration values from 
-	 * the parent Calendar/CalendarGroup's config value.
-	 * <p>
-	 * If it has not been set in the user provided configuration, the method will 
-	 * return the default value of the configuration property, as set in _DEFAULT_CFG
-	 * </p>
-	 * @private
-	 * @method __getCfg
-	 * @param {String} Case sensitive property name.
-	 * @param {Boolean} true, if the property is a string property, false if not.
-	 * @return The value of the configuration property
-	 */
-	__getCfg : function(prop, bIsStr) {
-		var DEF_CFG = YAHOO.widget.CalendarNavigator._DEFAULT_CFG;
-		var cfg = this.cal.cfg.getProperty("navigator");
-
-		if (bIsStr) {
-			return (cfg !== true && cfg.strings && cfg.strings[prop]) ? cfg.strings[prop] : DEF_CFG.strings[prop];
-		} else {
-			return (cfg !== true && cfg[prop]) ? cfg[prop] : DEF_CFG[prop];
-		}
-	},
-
-	/**
-	 * Private flag, to identify MacOS
-	 * @private
-	 * @property __isMac
-	 */
-	__isMac : (navigator.userAgent.toLowerCase().indexOf("macintosh") != -1)
-
-};
-
-YAHOO.register("calendar", YAHOO.widget.Calendar, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/calendar/calendar-min.js b/eclipse.org-common/yui/2.6.0/build/calendar/calendar-min.js
deleted file mode 100644
index 005c7de..0000000
--- a/eclipse.org-common/yui/2.6.0/build/calendar/calendar-min.js
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){YAHOO.util.Config=function(D){if(D){this.init(D);}};var B=YAHOO.lang,C=YAHOO.util.CustomEvent,A=YAHOO.util.Config;A.CONFIG_CHANGED_EVENT="configChanged";A.BOOLEAN_TYPE="boolean";A.prototype={owner:null,queueInProgress:false,config:null,initialConfig:null,eventQueue:null,configChangedEvent:null,init:function(D){this.owner=D;this.configChangedEvent=this.createEvent(A.CONFIG_CHANGED_EVENT);this.configChangedEvent.signature=C.LIST;this.queueInProgress=false;this.config={};this.initialConfig={};this.eventQueue=[];},checkBoolean:function(D){return(typeof D==A.BOOLEAN_TYPE);},checkNumber:function(D){return(!isNaN(D));},fireEvent:function(D,F){var E=this.config[D];if(E&&E.event){E.event.fire(F);}},addProperty:function(E,D){E=E.toLowerCase();this.config[E]=D;D.event=this.createEvent(E,{scope:this.owner});D.event.signature=C.LIST;D.key=E;if(D.handler){D.event.subscribe(D.handler,this.owner);}this.setProperty(E,D.value,true);if(!D.suppressEvent){this.queueProperty(E,D.value);}},getConfig:function(){var D={},F=this.config,G,E;for(G in F){if(B.hasOwnProperty(F,G)){E=F[G];if(E&&E.event){D[G]=E.value;}}}return D;},getProperty:function(D){var E=this.config[D.toLowerCase()];if(E&&E.event){return E.value;}else{return undefined;}},resetProperty:function(D){D=D.toLowerCase();var E=this.config[D];if(E&&E.event){if(this.initialConfig[D]&&!B.isUndefined(this.initialConfig[D])){this.setProperty(D,this.initialConfig[D]);return true;}}else{return false;}},setProperty:function(E,G,D){var F;E=E.toLowerCase();if(this.queueInProgress&&!D){this.queueProperty(E,G);return true;}else{F=this.config[E];if(F&&F.event){if(F.validator&&!F.validator(G)){return false;}else{F.value=G;if(!D){this.fireEvent(E,G);this.configChangedEvent.fire([E,G]);}return true;}}else{return false;}}},queueProperty:function(S,P){S=S.toLowerCase();var R=this.config[S],K=false,J,G,H,I,O,Q,F,M,N,D,L,T,E;if(R&&R.event){if(!B.isUndefined(P)&&R.validator&&!R.validator(P)){return false;}else{if(!B.isUndefined(P)){R.value=P;}else{P=R.value;}K=false;J=this.eventQueue.length;for(L=0;L<J;L++){G=this.eventQueue[L];if(G){H=G[0];I=G[1];if(H==S){this.eventQueue[L]=null;this.eventQueue.push([S,(!B.isUndefined(P)?P:I)]);K=true;break;}}}if(!K&&!B.isUndefined(P)){this.eventQueue.push([S,P]);}}if(R.supercedes){O=R.supercedes.length;for(T=0;T<O;T++){Q=R.supercedes[T];F=this.eventQueue.length;for(E=0;E<F;E++){M=this.eventQueue[E];if(M){N=M[0];D=M[1];if(N==Q.toLowerCase()){this.eventQueue.push([N,D]);this.eventQueue[E]=null;break;}}}}}return true;}else{return false;}},refireEvent:function(D){D=D.toLowerCase();var E=this.config[D];if(E&&E.event&&!B.isUndefined(E.value)){if(this.queueInProgress){this.queueProperty(D);}else{this.fireEvent(D,E.value);}}},applyConfig:function(D,G){var F,E;if(G){E={};for(F in D){if(B.hasOwnProperty(D,F)){E[F.toLowerCase()]=D[F];}}this.initialConfig=E;}for(F in D){if(B.hasOwnProperty(D,F)){this.queueProperty(F,D[F]);}}},refresh:function(){var D;for(D in this.config){if(B.hasOwnProperty(this.config,D)){this.refireEvent(D);}}},fireQueue:function(){var E,H,D,G,F;this.queueInProgress=true;for(E=0;E<this.eventQueue.length;E++){H=this.eventQueue[E];if(H){D=H[0];G=H[1];F=this.config[D];F.value=G;this.fireEvent(D,G);}}this.queueInProgress=false;this.eventQueue=[];},subscribeToConfigEvent:function(E,F,H,D){var G=this.config[E.toLowerCase()];if(G&&G.event){if(!A.alreadySubscribed(G.event,F,H)){G.event.subscribe(F,H,D);}return true;}else{return false;}},unsubscribeFromConfigEvent:function(D,E,G){var F=this.config[D.toLowerCase()];if(F&&F.event){return F.event.unsubscribe(E,G);}else{return false;}},toString:function(){var D="Config";if(this.owner){D+=" ["+this.owner.toString()+"]";}return D;},outputEventQueue:function(){var D="",G,E,F=this.eventQueue.length;for(E=0;E<F;E++){G=this.eventQueue[E];if(G){D+=G[0]+"="+G[1]+", ";}}return D;},destroy:function(){var E=this.config,D,F;for(D in E){if(B.hasOwnProperty(E,D)){F=E[D];F.event.unsubscribeAll();F.event=null;}}this.configChangedEvent.unsubscribeAll();this.configChangedEvent=null;this.owner=null;this.config=null;this.initialConfig=null;this.eventQueue=null;}};A.alreadySubscribed=function(E,H,I){var F=E.subscribers.length,D,G;if(F>0){G=F-1;do{D=E.subscribers[G];if(D&&D.obj==I&&D.fn==H){return true;}}while(G--);}return false;};YAHOO.lang.augmentProto(A,YAHOO.util.EventProvider);}());YAHOO.widget.DateMath={DAY:"D",WEEK:"W",YEAR:"Y",MONTH:"M",ONE_DAY_MS:1000*60*60*24,WEEK_ONE_JAN_DATE:1,add:function(A,D,C){var F=new Date(A.getTime());switch(D){case this.MONTH:var E=A.getMonth()+C;var B=0;if(E<0){while(E<0){E+=12;B-=1;}}else{if(E>11){while(E>11){E-=12;B+=1;}}}F.setMonth(E);F.setFullYear(A.getFullYear()+B);break;case this.DAY:this._addDays(F,C);break;case this.YEAR:F.setFullYear(A.getFullYear()+C);break;case this.WEEK:this._addDays(F,(C*7));break;}return F;},_addDays:function(D,C){if(YAHOO.env.ua.webkit&&YAHOO.env.ua.webkit<420){if(C<0){for(var B=-128;C<B;C-=B){D.setDate(D.getDate()+B);}}else{for(var A=96;C>A;C-=A){D.setDate(D.getDate()+A);}}}D.setDate(D.getDate()+C);},subtract:function(A,C,B){return this.add(A,C,(B*-1));},before:function(C,B){var A=B.getTime();if(C.getTime()<A){return true;}else{return false;}},after:function(C,B){var A=B.getTime();if(C.getTime()>A){return true;}else{return false;}},between:function(B,A,C){if(this.after(B,A)&&this.before(B,C)){return true;}else{return false;}},getJan1:function(A){return this.getDate(A,0,1);},getDayOffset:function(B,D){var C=this.getJan1(D);var A=Math.ceil((B.getTime()-C.getTime())/this.ONE_DAY_MS);return A;},getWeekNumber:function(E,B,H){B=B||0;H=H||this.WEEK_ONE_JAN_DATE;var I=this.clearTime(E),M,N;if(I.getDay()===B){M=I;}else{M=this.getFirstDayOfWeek(I,B);}var J=M.getFullYear(),C=M.getTime();N=new Date(M.getTime()+6*this.ONE_DAY_MS);var G;if(J!==N.getFullYear()&&N.getDate()>=H){G=1;}else{var F=this.clearTime(this.getDate(J,0,H)),A=this.getFirstDayOfWeek(F,B);var K=Math.round((I.getTime()-A.getTime())/this.ONE_DAY_MS);var L=K%7;var D=(K-L)/7;G=D+1;}return G;
-},getFirstDayOfWeek:function(D,A){A=A||0;var B=D.getDay(),C=(B-A+7)%7;return this.subtract(D,this.DAY,C);},isYearOverlapWeek:function(A){var C=false;var B=this.add(A,this.DAY,6);if(B.getFullYear()!=A.getFullYear()){C=true;}return C;},isMonthOverlapWeek:function(A){var C=false;var B=this.add(A,this.DAY,6);if(B.getMonth()!=A.getMonth()){C=true;}return C;},findMonthStart:function(A){var B=this.getDate(A.getFullYear(),A.getMonth(),1);return B;},findMonthEnd:function(B){var D=this.findMonthStart(B);var C=this.add(D,this.MONTH,1);var A=this.subtract(C,this.DAY,1);return A;},clearTime:function(A){A.setHours(12,0,0,0);return A;},getDate:function(D,A,C){var B=null;if(YAHOO.lang.isUndefined(C)){C=1;}if(D>=100){B=new Date(D,A,C);}else{B=new Date();B.setFullYear(D);B.setMonth(A);B.setDate(C);B.setHours(0,0,0,0);}return B;}};(function(){var C=YAHOO.util.Dom,A=YAHOO.util.Event,E=YAHOO.lang,D=YAHOO.widget.DateMath;function F(I,G,H){this.init.apply(this,arguments);}F.IMG_ROOT=null;F.DATE="D";F.MONTH_DAY="MD";F.WEEKDAY="WD";F.RANGE="R";F.MONTH="M";F.DISPLAY_DAYS=42;F.STOP_RENDER="S";F.SHORT="short";F.LONG="long";F.MEDIUM="medium";F.ONE_CHAR="1char";F._DEFAULT_CONFIG={PAGEDATE:{key:"pagedate",value:null},SELECTED:{key:"selected",value:null},TITLE:{key:"title",value:""},CLOSE:{key:"close",value:false},IFRAME:{key:"iframe",value:(YAHOO.env.ua.ie&&YAHOO.env.ua.ie<=6)?true:false},MINDATE:{key:"mindate",value:null},MAXDATE:{key:"maxdate",value:null},MULTI_SELECT:{key:"multi_select",value:false},START_WEEKDAY:{key:"start_weekday",value:0},SHOW_WEEKDAYS:{key:"show_weekdays",value:true},SHOW_WEEK_HEADER:{key:"show_week_header",value:false},SHOW_WEEK_FOOTER:{key:"show_week_footer",value:false},HIDE_BLANK_WEEKS:{key:"hide_blank_weeks",value:false},NAV_ARROW_LEFT:{key:"nav_arrow_left",value:null},NAV_ARROW_RIGHT:{key:"nav_arrow_right",value:null},MONTHS_SHORT:{key:"months_short",value:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]},MONTHS_LONG:{key:"months_long",value:["January","February","March","April","May","June","July","August","September","October","November","December"]},WEEKDAYS_1CHAR:{key:"weekdays_1char",value:["S","M","T","W","T","F","S"]},WEEKDAYS_SHORT:{key:"weekdays_short",value:["Su","Mo","Tu","We","Th","Fr","Sa"]},WEEKDAYS_MEDIUM:{key:"weekdays_medium",value:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]},WEEKDAYS_LONG:{key:"weekdays_long",value:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},LOCALE_MONTHS:{key:"locale_months",value:"long"},LOCALE_WEEKDAYS:{key:"locale_weekdays",value:"short"},DATE_DELIMITER:{key:"date_delimiter",value:","},DATE_FIELD_DELIMITER:{key:"date_field_delimiter",value:"/"},DATE_RANGE_DELIMITER:{key:"date_range_delimiter",value:"-"},MY_MONTH_POSITION:{key:"my_month_position",value:1},MY_YEAR_POSITION:{key:"my_year_position",value:2},MD_MONTH_POSITION:{key:"md_month_position",value:1},MD_DAY_POSITION:{key:"md_day_position",value:2},MDY_MONTH_POSITION:{key:"mdy_month_position",value:1},MDY_DAY_POSITION:{key:"mdy_day_position",value:2},MDY_YEAR_POSITION:{key:"mdy_year_position",value:3},MY_LABEL_MONTH_POSITION:{key:"my_label_month_position",value:1},MY_LABEL_YEAR_POSITION:{key:"my_label_year_position",value:2},MY_LABEL_MONTH_SUFFIX:{key:"my_label_month_suffix",value:" "},MY_LABEL_YEAR_SUFFIX:{key:"my_label_year_suffix",value:""},NAV:{key:"navigator",value:null},STRINGS:{key:"strings",value:{previousMonth:"Previous Month",nextMonth:"Next Month",close:"Close"},supercedes:["close","title"]}};var B=F._DEFAULT_CONFIG;F._EVENT_TYPES={BEFORE_SELECT:"beforeSelect",SELECT:"select",BEFORE_DESELECT:"beforeDeselect",DESELECT:"deselect",CHANGE_PAGE:"changePage",BEFORE_RENDER:"beforeRender",RENDER:"render",BEFORE_DESTROY:"beforeDestroy",DESTROY:"destroy",RESET:"reset",CLEAR:"clear",BEFORE_HIDE:"beforeHide",HIDE:"hide",BEFORE_SHOW:"beforeShow",SHOW:"show",BEFORE_HIDE_NAV:"beforeHideNav",HIDE_NAV:"hideNav",BEFORE_SHOW_NAV:"beforeShowNav",SHOW_NAV:"showNav",BEFORE_RENDER_NAV:"beforeRenderNav",RENDER_NAV:"renderNav"};F._STYLES={CSS_ROW_HEADER:"calrowhead",CSS_ROW_FOOTER:"calrowfoot",CSS_CELL:"calcell",CSS_CELL_SELECTOR:"selector",CSS_CELL_SELECTED:"selected",CSS_CELL_SELECTABLE:"selectable",CSS_CELL_RESTRICTED:"restricted",CSS_CELL_TODAY:"today",CSS_CELL_OOM:"oom",CSS_CELL_OOB:"previous",CSS_HEADER:"calheader",CSS_HEADER_TEXT:"calhead",CSS_BODY:"calbody",CSS_WEEKDAY_CELL:"calweekdaycell",CSS_WEEKDAY_ROW:"calweekdayrow",CSS_FOOTER:"calfoot",CSS_CALENDAR:"yui-calendar",CSS_SINGLE:"single",CSS_CONTAINER:"yui-calcontainer",CSS_NAV_LEFT:"calnavleft",CSS_NAV_RIGHT:"calnavright",CSS_NAV:"calnav",CSS_CLOSE:"calclose",CSS_CELL_TOP:"calcelltop",CSS_CELL_LEFT:"calcellleft",CSS_CELL_RIGHT:"calcellright",CSS_CELL_BOTTOM:"calcellbottom",CSS_CELL_HOVER:"calcellhover",CSS_CELL_HIGHLIGHT1:"highlight1",CSS_CELL_HIGHLIGHT2:"highlight2",CSS_CELL_HIGHLIGHT3:"highlight3",CSS_CELL_HIGHLIGHT4:"highlight4"};F.prototype={Config:null,parent:null,index:-1,cells:null,cellDates:null,id:null,containerId:null,oDomContainer:null,today:null,renderStack:null,_renderStack:null,oNavigator:null,_selectedDates:null,domEventMap:null,_parseArgs:function(H){var G={id:null,container:null,config:null};if(H&&H.length&&H.length>0){switch(H.length){case 1:G.id=null;G.container=H[0];G.config=null;break;case 2:if(E.isObject(H[1])&&!H[1].tagName&&!(H[1] instanceof String)){G.id=null;G.container=H[0];G.config=H[1];}else{G.id=H[0];G.container=H[1];G.config=null;}break;default:G.id=H[0];G.container=H[1];G.config=H[2];break;}}else{}return G;},init:function(J,H,I){var G=this._parseArgs(arguments);J=G.id;H=G.container;I=G.config;this.oDomContainer=C.get(H);if(!this.oDomContainer.id){this.oDomContainer.id=C.generateId();}if(!J){J=this.oDomContainer.id+"_t";}this.id=J;this.containerId=this.oDomContainer.id;this.initEvents();this.today=new Date();D.clearTime(this.today);this.cfg=new YAHOO.util.Config(this);this.Options={};this.Locale={};this.initStyles();C.addClass(this.oDomContainer,this.Style.CSS_CONTAINER);
-C.addClass(this.oDomContainer,this.Style.CSS_SINGLE);this.cellDates=[];this.cells=[];this.renderStack=[];this._renderStack=[];this.setupConfig();if(I){this.cfg.applyConfig(I,true);}this.cfg.fireQueue();},configIframe:function(I,H,J){var G=H[0];if(!this.parent){if(C.inDocument(this.oDomContainer)){if(G){var K=C.getStyle(this.oDomContainer,"position");if(K=="absolute"||K=="relative"){if(!C.inDocument(this.iframe)){this.iframe=document.createElement("iframe");this.iframe.src="javascript:false;";C.setStyle(this.iframe,"opacity","0");if(YAHOO.env.ua.ie&&YAHOO.env.ua.ie<=6){C.addClass(this.iframe,"fixedsize");}this.oDomContainer.insertBefore(this.iframe,this.oDomContainer.firstChild);}}}else{if(this.iframe){if(this.iframe.parentNode){this.iframe.parentNode.removeChild(this.iframe);}this.iframe=null;}}}}},configTitle:function(H,G,I){var K=G[0];if(K){this.createTitleBar(K);}else{var J=this.cfg.getProperty(B.CLOSE.key);if(!J){this.removeTitleBar();}else{this.createTitleBar("&#160;");}}},configClose:function(H,G,I){var K=G[0],J=this.cfg.getProperty(B.TITLE.key);if(K){if(!J){this.createTitleBar("&#160;");}this.createCloseButton();}else{this.removeCloseButton();if(!J){this.removeTitleBar();}}},initEvents:function(){var G=F._EVENT_TYPES,I=YAHOO.util.CustomEvent,H=this;H.beforeSelectEvent=new I(G.BEFORE_SELECT);H.selectEvent=new I(G.SELECT);H.beforeDeselectEvent=new I(G.BEFORE_DESELECT);H.deselectEvent=new I(G.DESELECT);H.changePageEvent=new I(G.CHANGE_PAGE);H.beforeRenderEvent=new I(G.BEFORE_RENDER);H.renderEvent=new I(G.RENDER);H.beforeDestroyEvent=new I(G.BEFORE_DESTROY);H.destroyEvent=new I(G.DESTROY);H.resetEvent=new I(G.RESET);H.clearEvent=new I(G.CLEAR);H.beforeShowEvent=new I(G.BEFORE_SHOW);H.showEvent=new I(G.SHOW);H.beforeHideEvent=new I(G.BEFORE_HIDE);H.hideEvent=new I(G.HIDE);H.beforeShowNavEvent=new I(G.BEFORE_SHOW_NAV);H.showNavEvent=new I(G.SHOW_NAV);H.beforeHideNavEvent=new I(G.BEFORE_HIDE_NAV);H.hideNavEvent=new I(G.HIDE_NAV);H.beforeRenderNavEvent=new I(G.BEFORE_RENDER_NAV);H.renderNavEvent=new I(G.RENDER_NAV);H.beforeSelectEvent.subscribe(H.onBeforeSelect,this,true);H.selectEvent.subscribe(H.onSelect,this,true);H.beforeDeselectEvent.subscribe(H.onBeforeDeselect,this,true);H.deselectEvent.subscribe(H.onDeselect,this,true);H.changePageEvent.subscribe(H.onChangePage,this,true);H.renderEvent.subscribe(H.onRender,this,true);H.resetEvent.subscribe(H.onReset,this,true);H.clearEvent.subscribe(H.onClear,this,true);},doPreviousMonthNav:function(H,G){A.preventDefault(H);setTimeout(function(){G.previousMonth();var I=C.getElementsByClassName(G.Style.CSS_NAV_LEFT,"a",G.oDomContainer);if(I&&I[0]){try{I[0].focus();}catch(J){}}},0);},doNextMonthNav:function(H,G){A.preventDefault(H);setTimeout(function(){G.nextMonth();var I=C.getElementsByClassName(G.Style.CSS_NAV_RIGHT,"a",G.oDomContainer);if(I&&I[0]){try{I[0].focus();}catch(J){}}},0);},doSelectCell:function(M,G){var R,O,I,L;var N=A.getTarget(M),H=N.tagName.toLowerCase(),K=false;while(H!="td"&&!C.hasClass(N,G.Style.CSS_CELL_SELECTABLE)){if(!K&&H=="a"&&C.hasClass(N,G.Style.CSS_CELL_SELECTOR)){K=true;}N=N.parentNode;H=N.tagName.toLowerCase();if(N==this.oDomContainer||H=="html"){return ;}}if(K){A.preventDefault(M);}R=N;if(C.hasClass(R,G.Style.CSS_CELL_SELECTABLE)){L=G.getIndexFromId(R.id);if(L>-1){O=G.cellDates[L];if(O){I=D.getDate(O[0],O[1]-1,O[2]);var Q;if(G.Options.MULTI_SELECT){Q=R.getElementsByTagName("a")[0];if(Q){Q.blur();}var J=G.cellDates[L];var P=G._indexOfSelectedFieldArray(J);if(P>-1){G.deselectCell(L);}else{G.selectCell(L);}}else{Q=R.getElementsByTagName("a")[0];if(Q){Q.blur();}G.selectCell(L);}}}}},doCellMouseOver:function(I,H){var G;if(I){G=A.getTarget(I);}else{G=this;}while(G.tagName&&G.tagName.toLowerCase()!="td"){G=G.parentNode;if(!G.tagName||G.tagName.toLowerCase()=="html"){return ;}}if(C.hasClass(G,H.Style.CSS_CELL_SELECTABLE)){C.addClass(G,H.Style.CSS_CELL_HOVER);}},doCellMouseOut:function(I,H){var G;if(I){G=A.getTarget(I);}else{G=this;}while(G.tagName&&G.tagName.toLowerCase()!="td"){G=G.parentNode;if(!G.tagName||G.tagName.toLowerCase()=="html"){return ;}}if(C.hasClass(G,H.Style.CSS_CELL_SELECTABLE)){C.removeClass(G,H.Style.CSS_CELL_HOVER);}},setupConfig:function(){var G=this.cfg;G.addProperty(B.PAGEDATE.key,{value:new Date(),handler:this.configPageDate});G.addProperty(B.SELECTED.key,{value:[],handler:this.configSelected});G.addProperty(B.TITLE.key,{value:B.TITLE.value,handler:this.configTitle});G.addProperty(B.CLOSE.key,{value:B.CLOSE.value,handler:this.configClose});G.addProperty(B.IFRAME.key,{value:B.IFRAME.value,handler:this.configIframe,validator:G.checkBoolean});G.addProperty(B.MINDATE.key,{value:B.MINDATE.value,handler:this.configMinDate});G.addProperty(B.MAXDATE.key,{value:B.MAXDATE.value,handler:this.configMaxDate});G.addProperty(B.MULTI_SELECT.key,{value:B.MULTI_SELECT.value,handler:this.configOptions,validator:G.checkBoolean});G.addProperty(B.START_WEEKDAY.key,{value:B.START_WEEKDAY.value,handler:this.configOptions,validator:G.checkNumber});G.addProperty(B.SHOW_WEEKDAYS.key,{value:B.SHOW_WEEKDAYS.value,handler:this.configOptions,validator:G.checkBoolean});G.addProperty(B.SHOW_WEEK_HEADER.key,{value:B.SHOW_WEEK_HEADER.value,handler:this.configOptions,validator:G.checkBoolean});G.addProperty(B.SHOW_WEEK_FOOTER.key,{value:B.SHOW_WEEK_FOOTER.value,handler:this.configOptions,validator:G.checkBoolean});G.addProperty(B.HIDE_BLANK_WEEKS.key,{value:B.HIDE_BLANK_WEEKS.value,handler:this.configOptions,validator:G.checkBoolean});G.addProperty(B.NAV_ARROW_LEFT.key,{value:B.NAV_ARROW_LEFT.value,handler:this.configOptions});G.addProperty(B.NAV_ARROW_RIGHT.key,{value:B.NAV_ARROW_RIGHT.value,handler:this.configOptions});G.addProperty(B.MONTHS_SHORT.key,{value:B.MONTHS_SHORT.value,handler:this.configLocale});G.addProperty(B.MONTHS_LONG.key,{value:B.MONTHS_LONG.value,handler:this.configLocale});G.addProperty(B.WEEKDAYS_1CHAR.key,{value:B.WEEKDAYS_1CHAR.value,handler:this.configLocale});G.addProperty(B.WEEKDAYS_SHORT.key,{value:B.WEEKDAYS_SHORT.value,handler:this.configLocale});
-G.addProperty(B.WEEKDAYS_MEDIUM.key,{value:B.WEEKDAYS_MEDIUM.value,handler:this.configLocale});G.addProperty(B.WEEKDAYS_LONG.key,{value:B.WEEKDAYS_LONG.value,handler:this.configLocale});var H=function(){G.refireEvent(B.LOCALE_MONTHS.key);G.refireEvent(B.LOCALE_WEEKDAYS.key);};G.subscribeToConfigEvent(B.START_WEEKDAY.key,H,this,true);G.subscribeToConfigEvent(B.MONTHS_SHORT.key,H,this,true);G.subscribeToConfigEvent(B.MONTHS_LONG.key,H,this,true);G.subscribeToConfigEvent(B.WEEKDAYS_1CHAR.key,H,this,true);G.subscribeToConfigEvent(B.WEEKDAYS_SHORT.key,H,this,true);G.subscribeToConfigEvent(B.WEEKDAYS_MEDIUM.key,H,this,true);G.subscribeToConfigEvent(B.WEEKDAYS_LONG.key,H,this,true);G.addProperty(B.LOCALE_MONTHS.key,{value:B.LOCALE_MONTHS.value,handler:this.configLocaleValues});G.addProperty(B.LOCALE_WEEKDAYS.key,{value:B.LOCALE_WEEKDAYS.value,handler:this.configLocaleValues});G.addProperty(B.DATE_DELIMITER.key,{value:B.DATE_DELIMITER.value,handler:this.configLocale});G.addProperty(B.DATE_FIELD_DELIMITER.key,{value:B.DATE_FIELD_DELIMITER.value,handler:this.configLocale});G.addProperty(B.DATE_RANGE_DELIMITER.key,{value:B.DATE_RANGE_DELIMITER.value,handler:this.configLocale});G.addProperty(B.MY_MONTH_POSITION.key,{value:B.MY_MONTH_POSITION.value,handler:this.configLocale,validator:G.checkNumber});G.addProperty(B.MY_YEAR_POSITION.key,{value:B.MY_YEAR_POSITION.value,handler:this.configLocale,validator:G.checkNumber});G.addProperty(B.MD_MONTH_POSITION.key,{value:B.MD_MONTH_POSITION.value,handler:this.configLocale,validator:G.checkNumber});G.addProperty(B.MD_DAY_POSITION.key,{value:B.MD_DAY_POSITION.value,handler:this.configLocale,validator:G.checkNumber});G.addProperty(B.MDY_MONTH_POSITION.key,{value:B.MDY_MONTH_POSITION.value,handler:this.configLocale,validator:G.checkNumber});G.addProperty(B.MDY_DAY_POSITION.key,{value:B.MDY_DAY_POSITION.value,handler:this.configLocale,validator:G.checkNumber});G.addProperty(B.MDY_YEAR_POSITION.key,{value:B.MDY_YEAR_POSITION.value,handler:this.configLocale,validator:G.checkNumber});G.addProperty(B.MY_LABEL_MONTH_POSITION.key,{value:B.MY_LABEL_MONTH_POSITION.value,handler:this.configLocale,validator:G.checkNumber});G.addProperty(B.MY_LABEL_YEAR_POSITION.key,{value:B.MY_LABEL_YEAR_POSITION.value,handler:this.configLocale,validator:G.checkNumber});G.addProperty(B.MY_LABEL_MONTH_SUFFIX.key,{value:B.MY_LABEL_MONTH_SUFFIX.value,handler:this.configLocale});G.addProperty(B.MY_LABEL_YEAR_SUFFIX.key,{value:B.MY_LABEL_YEAR_SUFFIX.value,handler:this.configLocale});G.addProperty(B.NAV.key,{value:B.NAV.value,handler:this.configNavigator});G.addProperty(B.STRINGS.key,{value:B.STRINGS.value,handler:this.configStrings,validator:function(I){return E.isObject(I);},supercedes:B.STRINGS.supercedes});},configStrings:function(H,G,I){var J=E.merge(B.STRINGS.value,G[0]);this.cfg.setProperty(B.STRINGS.key,J,true);},configPageDate:function(H,G,I){this.cfg.setProperty(B.PAGEDATE.key,this._parsePageDate(G[0]),true);},configMinDate:function(H,G,I){var J=G[0];if(E.isString(J)){J=this._parseDate(J);this.cfg.setProperty(B.MINDATE.key,D.getDate(J[0],(J[1]-1),J[2]));}},configMaxDate:function(H,G,I){var J=G[0];if(E.isString(J)){J=this._parseDate(J);this.cfg.setProperty(B.MAXDATE.key,D.getDate(J[0],(J[1]-1),J[2]));}},configSelected:function(I,G,K){var H=G[0],J=B.SELECTED.key;if(H){if(E.isString(H)){this.cfg.setProperty(J,this._parseDates(H),true);}}if(!this._selectedDates){this._selectedDates=this.cfg.getProperty(J);}},configOptions:function(H,G,I){this.Options[H.toUpperCase()]=G[0];},configLocale:function(H,G,I){this.Locale[H.toUpperCase()]=G[0];this.cfg.refireEvent(B.LOCALE_MONTHS.key);this.cfg.refireEvent(B.LOCALE_WEEKDAYS.key);},configLocaleValues:function(J,I,K){J=J.toLowerCase();var M=I[0],H=this.cfg,N=this.Locale;switch(J){case B.LOCALE_MONTHS.key:switch(M){case F.SHORT:N.LOCALE_MONTHS=H.getProperty(B.MONTHS_SHORT.key).concat();break;case F.LONG:N.LOCALE_MONTHS=H.getProperty(B.MONTHS_LONG.key).concat();break;}break;case B.LOCALE_WEEKDAYS.key:switch(M){case F.ONE_CHAR:N.LOCALE_WEEKDAYS=H.getProperty(B.WEEKDAYS_1CHAR.key).concat();break;case F.SHORT:N.LOCALE_WEEKDAYS=H.getProperty(B.WEEKDAYS_SHORT.key).concat();break;case F.MEDIUM:N.LOCALE_WEEKDAYS=H.getProperty(B.WEEKDAYS_MEDIUM.key).concat();break;case F.LONG:N.LOCALE_WEEKDAYS=H.getProperty(B.WEEKDAYS_LONG.key).concat();break;}var L=H.getProperty(B.START_WEEKDAY.key);if(L>0){for(var G=0;G<L;++G){N.LOCALE_WEEKDAYS.push(N.LOCALE_WEEKDAYS.shift());}}break;}},configNavigator:function(H,G,I){var J=G[0];if(YAHOO.widget.CalendarNavigator&&(J===true||E.isObject(J))){if(!this.oNavigator){this.oNavigator=new YAHOO.widget.CalendarNavigator(this);this.beforeRenderEvent.subscribe(function(){if(!this.pages){this.oNavigator.erase();}},this,true);}}else{if(this.oNavigator){this.oNavigator.destroy();this.oNavigator=null;}}},initStyles:function(){var G=F._STYLES;this.Style={CSS_ROW_HEADER:G.CSS_ROW_HEADER,CSS_ROW_FOOTER:G.CSS_ROW_FOOTER,CSS_CELL:G.CSS_CELL,CSS_CELL_SELECTOR:G.CSS_CELL_SELECTOR,CSS_CELL_SELECTED:G.CSS_CELL_SELECTED,CSS_CELL_SELECTABLE:G.CSS_CELL_SELECTABLE,CSS_CELL_RESTRICTED:G.CSS_CELL_RESTRICTED,CSS_CELL_TODAY:G.CSS_CELL_TODAY,CSS_CELL_OOM:G.CSS_CELL_OOM,CSS_CELL_OOB:G.CSS_CELL_OOB,CSS_HEADER:G.CSS_HEADER,CSS_HEADER_TEXT:G.CSS_HEADER_TEXT,CSS_BODY:G.CSS_BODY,CSS_WEEKDAY_CELL:G.CSS_WEEKDAY_CELL,CSS_WEEKDAY_ROW:G.CSS_WEEKDAY_ROW,CSS_FOOTER:G.CSS_FOOTER,CSS_CALENDAR:G.CSS_CALENDAR,CSS_SINGLE:G.CSS_SINGLE,CSS_CONTAINER:G.CSS_CONTAINER,CSS_NAV_LEFT:G.CSS_NAV_LEFT,CSS_NAV_RIGHT:G.CSS_NAV_RIGHT,CSS_NAV:G.CSS_NAV,CSS_CLOSE:G.CSS_CLOSE,CSS_CELL_TOP:G.CSS_CELL_TOP,CSS_CELL_LEFT:G.CSS_CELL_LEFT,CSS_CELL_RIGHT:G.CSS_CELL_RIGHT,CSS_CELL_BOTTOM:G.CSS_CELL_BOTTOM,CSS_CELL_HOVER:G.CSS_CELL_HOVER,CSS_CELL_HIGHLIGHT1:G.CSS_CELL_HIGHLIGHT1,CSS_CELL_HIGHLIGHT2:G.CSS_CELL_HIGHLIGHT2,CSS_CELL_HIGHLIGHT3:G.CSS_CELL_HIGHLIGHT3,CSS_CELL_HIGHLIGHT4:G.CSS_CELL_HIGHLIGHT4};},buildMonthLabel:function(){return this._buildMonthLabel(this.cfg.getProperty(B.PAGEDATE.key));},_buildMonthLabel:function(G){var I=this.Locale.LOCALE_MONTHS[G.getMonth()]+this.Locale.MY_LABEL_MONTH_SUFFIX,H=G.getFullYear()+this.Locale.MY_LABEL_YEAR_SUFFIX;
-if(this.Locale.MY_LABEL_MONTH_POSITION==2||this.Locale.MY_LABEL_YEAR_POSITION==1){return H+I;}else{return I+H;}},buildDayLabel:function(G){return G.getDate();},createTitleBar:function(G){var H=C.getElementsByClassName(YAHOO.widget.CalendarGroup.CSS_2UPTITLE,"div",this.oDomContainer)[0]||document.createElement("div");H.className=YAHOO.widget.CalendarGroup.CSS_2UPTITLE;H.innerHTML=G;this.oDomContainer.insertBefore(H,this.oDomContainer.firstChild);C.addClass(this.oDomContainer,"withtitle");return H;},removeTitleBar:function(){var G=C.getElementsByClassName(YAHOO.widget.CalendarGroup.CSS_2UPTITLE,"div",this.oDomContainer)[0]||null;if(G){A.purgeElement(G);this.oDomContainer.removeChild(G);}C.removeClass(this.oDomContainer,"withtitle");},createCloseButton:function(){var J=YAHOO.widget.CalendarGroup.CSS_2UPCLOSE,L="us/my/bn/x_d.gif",K=C.getElementsByClassName("link-close","a",this.oDomContainer)[0],G=this.cfg.getProperty(B.STRINGS.key),H=(G&&G.close)?G.close:"";if(!K){K=document.createElement("a");A.addListener(K,"click",function(N,M){M.hide();A.preventDefault(N);},this);}K.href="#";K.className="link-close";if(F.IMG_ROOT!==null){var I=C.getElementsByClassName(J,"img",K)[0]||document.createElement("img");I.src=F.IMG_ROOT+L;I.className=J;K.appendChild(I);}else{K.innerHTML='<span class="'+J+" "+this.Style.CSS_CLOSE+'">'+H+"</span>";}this.oDomContainer.appendChild(K);return K;},removeCloseButton:function(){var G=C.getElementsByClassName("link-close","a",this.oDomContainer)[0]||null;if(G){A.purgeElement(G);this.oDomContainer.removeChild(G);}},renderHeader:function(Q){var P=7,O="us/tr/callt.gif",G="us/tr/calrt.gif",N=this.cfg,K=N.getProperty(B.PAGEDATE.key),L=N.getProperty(B.STRINGS.key),V=(L&&L.previousMonth)?L.previousMonth:"",H=(L&&L.nextMonth)?L.nextMonth:"",M;if(N.getProperty(B.SHOW_WEEK_HEADER.key)){P+=1;}if(N.getProperty(B.SHOW_WEEK_FOOTER.key)){P+=1;}Q[Q.length]="<thead>";Q[Q.length]="<tr>";Q[Q.length]='<th colspan="'+P+'" class="'+this.Style.CSS_HEADER_TEXT+'">';Q[Q.length]='<div class="'+this.Style.CSS_HEADER+'">';var X,U=false;if(this.parent){if(this.index===0){X=true;}if(this.index==(this.parent.cfg.getProperty("pages")-1)){U=true;}}else{X=true;U=true;}if(X){M=this._buildMonthLabel(D.subtract(K,D.MONTH,1));var R=N.getProperty(B.NAV_ARROW_LEFT.key);if(R===null&&F.IMG_ROOT!==null){R=F.IMG_ROOT+O;}var I=(R===null)?"":' style="background-image:url('+R+')"';Q[Q.length]='<a class="'+this.Style.CSS_NAV_LEFT+'"'+I+' href="#">'+V+" ("+M+")"+"</a>";}var W=this.buildMonthLabel();var S=this.parent||this;if(S.cfg.getProperty("navigator")){W='<a class="'+this.Style.CSS_NAV+'" href="#">'+W+"</a>";}Q[Q.length]=W;if(U){M=this._buildMonthLabel(D.add(K,D.MONTH,1));var T=N.getProperty(B.NAV_ARROW_RIGHT.key);if(T===null&&F.IMG_ROOT!==null){T=F.IMG_ROOT+G;}var J=(T===null)?"":' style="background-image:url('+T+')"';Q[Q.length]='<a class="'+this.Style.CSS_NAV_RIGHT+'"'+J+' href="#">'+H+" ("+M+")"+"</a>";}Q[Q.length]="</div>\n</th>\n</tr>";if(N.getProperty(B.SHOW_WEEKDAYS.key)){Q=this.buildWeekdays(Q);}Q[Q.length]="</thead>";return Q;},buildWeekdays:function(H){H[H.length]='<tr class="'+this.Style.CSS_WEEKDAY_ROW+'">';if(this.cfg.getProperty(B.SHOW_WEEK_HEADER.key)){H[H.length]="<th>&#160;</th>";}for(var G=0;G<this.Locale.LOCALE_WEEKDAYS.length;++G){H[H.length]='<th class="calweekdaycell">'+this.Locale.LOCALE_WEEKDAYS[G]+"</th>";}if(this.cfg.getProperty(B.SHOW_WEEK_FOOTER.key)){H[H.length]="<th>&#160;</th>";}H[H.length]="</tr>";return H;},renderBody:function(l,j){var AJ=this.cfg.getProperty(B.START_WEEKDAY.key);this.preMonthDays=l.getDay();if(AJ>0){this.preMonthDays-=AJ;}if(this.preMonthDays<0){this.preMonthDays+=7;}this.monthDays=D.findMonthEnd(l).getDate();this.postMonthDays=F.DISPLAY_DAYS-this.preMonthDays-this.monthDays;l=D.subtract(l,D.DAY,this.preMonthDays);var X,N,M="w",e="_cell",b="wd",v="d",P,q,AB=this.today,O=this.cfg,V=AB.getFullYear(),u=AB.getMonth(),J=AB.getDate(),AA=O.getProperty(B.PAGEDATE.key),I=O.getProperty(B.HIDE_BLANK_WEEKS.key),h=O.getProperty(B.SHOW_WEEK_FOOTER.key),a=O.getProperty(B.SHOW_WEEK_HEADER.key),T=O.getProperty(B.MINDATE.key),Z=O.getProperty(B.MAXDATE.key);if(T){T=D.clearTime(T);}if(Z){Z=D.clearTime(Z);}j[j.length]='<tbody class="m'+(AA.getMonth()+1)+" "+this.Style.CSS_BODY+'">';var AH=0,Q=document.createElement("div"),k=document.createElement("td");Q.appendChild(k);var z=this.parent||this;for(var AD=0;AD<6;AD++){X=D.getWeekNumber(l,AJ);N=M+X;if(AD!==0&&I===true&&l.getMonth()!=AA.getMonth()){break;}else{j[j.length]='<tr class="'+N+'">';if(a){j=this.renderRowHeader(X,j);}for(var AI=0;AI<7;AI++){P=[];this.clearElement(k);k.className=this.Style.CSS_CELL;k.id=this.id+e+AH;if(l.getDate()==J&&l.getMonth()==u&&l.getFullYear()==V){P[P.length]=z.renderCellStyleToday;}var Y=[l.getFullYear(),l.getMonth()+1,l.getDate()];this.cellDates[this.cellDates.length]=Y;if(l.getMonth()!=AA.getMonth()){P[P.length]=z.renderCellNotThisMonth;}else{C.addClass(k,b+l.getDay());C.addClass(k,v+l.getDate());for(var AC=0;AC<this.renderStack.length;++AC){q=null;var w=this.renderStack[AC],AK=w[0],H,c,L;switch(AK){case F.DATE:H=w[1][1];c=w[1][2];L=w[1][0];if(l.getMonth()+1==H&&l.getDate()==c&&l.getFullYear()==L){q=w[2];this.renderStack.splice(AC,1);}break;case F.MONTH_DAY:H=w[1][0];c=w[1][1];if(l.getMonth()+1==H&&l.getDate()==c){q=w[2];this.renderStack.splice(AC,1);}break;case F.RANGE:var g=w[1][0],f=w[1][1],m=g[1],S=g[2],W=g[0],AG=D.getDate(W,m-1,S),K=f[1],o=f[2],G=f[0],AF=D.getDate(G,K-1,o);if(l.getTime()>=AG.getTime()&&l.getTime()<=AF.getTime()){q=w[2];if(l.getTime()==AF.getTime()){this.renderStack.splice(AC,1);}}break;case F.WEEKDAY:var R=w[1][0];if(l.getDay()+1==R){q=w[2];}break;case F.MONTH:H=w[1][0];if(l.getMonth()+1==H){q=w[2];}break;}if(q){P[P.length]=q;}}}if(this._indexOfSelectedFieldArray(Y)>-1){P[P.length]=z.renderCellStyleSelected;}if((T&&(l.getTime()<T.getTime()))||(Z&&(l.getTime()>Z.getTime()))){P[P.length]=z.renderOutOfBoundsDate;}else{P[P.length]=z.styleCellDefault;P[P.length]=z.renderCellDefault;}for(var y=0;
-y<P.length;++y){if(P[y].call(z,l,k)==F.STOP_RENDER){break;}}l.setTime(l.getTime()+D.ONE_DAY_MS);l=D.clearTime(l);if(AH>=0&&AH<=6){C.addClass(k,this.Style.CSS_CELL_TOP);}if((AH%7)===0){C.addClass(k,this.Style.CSS_CELL_LEFT);}if(((AH+1)%7)===0){C.addClass(k,this.Style.CSS_CELL_RIGHT);}var n=this.postMonthDays;if(I&&n>=7){var U=Math.floor(n/7);for(var AE=0;AE<U;++AE){n-=7;}}if(AH>=((this.preMonthDays+n+this.monthDays)-7)){C.addClass(k,this.Style.CSS_CELL_BOTTOM);}j[j.length]=Q.innerHTML;AH++;}if(h){j=this.renderRowFooter(X,j);}j[j.length]="</tr>";}}j[j.length]="</tbody>";return j;},renderFooter:function(G){return G;},render:function(){this.beforeRenderEvent.fire();var H=D.findMonthStart(this.cfg.getProperty(B.PAGEDATE.key));this.resetRenderers();this.cellDates.length=0;A.purgeElement(this.oDomContainer,true);var G=[];G[G.length]='<table cellSpacing="0" class="'+this.Style.CSS_CALENDAR+" y"+H.getFullYear()+'" id="'+this.id+'">';G=this.renderHeader(G);G=this.renderBody(H,G);G=this.renderFooter(G);G[G.length]="</table>";this.oDomContainer.innerHTML=G.join("\n");this.applyListeners();this.cells=this.oDomContainer.getElementsByTagName("td");this.cfg.refireEvent(B.TITLE.key);this.cfg.refireEvent(B.CLOSE.key);this.cfg.refireEvent(B.IFRAME.key);this.renderEvent.fire();},applyListeners:function(){var P=this.oDomContainer,H=this.parent||this,L="a",S="click";var M=C.getElementsByClassName(this.Style.CSS_NAV_LEFT,L,P),I=C.getElementsByClassName(this.Style.CSS_NAV_RIGHT,L,P);if(M&&M.length>0){this.linkLeft=M[0];A.addListener(this.linkLeft,S,this.doPreviousMonthNav,H,true);}if(I&&I.length>0){this.linkRight=I[0];A.addListener(this.linkRight,S,this.doNextMonthNav,H,true);}if(H.cfg.getProperty("navigator")!==null){this.applyNavListeners();}if(this.domEventMap){var J,G;for(var R in this.domEventMap){if(E.hasOwnProperty(this.domEventMap,R)){var N=this.domEventMap[R];if(!(N instanceof Array)){N=[N];}for(var K=0;K<N.length;K++){var Q=N[K];G=C.getElementsByClassName(R,Q.tag,this.oDomContainer);for(var O=0;O<G.length;O++){J=G[O];A.addListener(J,Q.event,Q.handler,Q.scope,Q.correct);}}}}}A.addListener(this.oDomContainer,"click",this.doSelectCell,this);A.addListener(this.oDomContainer,"mouseover",this.doCellMouseOver,this);A.addListener(this.oDomContainer,"mouseout",this.doCellMouseOut,this);},applyNavListeners:function(){var H=this.parent||this,I=this,G=C.getElementsByClassName(this.Style.CSS_NAV,"a",this.oDomContainer);if(G.length>0){A.addListener(G,"click",function(N,M){var L=A.getTarget(N);if(this===L||C.isAncestor(this,L)){A.preventDefault(N);}var J=H.oNavigator;if(J){var K=I.cfg.getProperty("pagedate");J.setYear(K.getFullYear());J.setMonth(K.getMonth());J.show();}});}},getDateByCellId:function(H){var G=this.getDateFieldsByCellId(H);return(G)?D.getDate(G[0],G[1]-1,G[2]):null;},getDateFieldsByCellId:function(G){G=this.getIndexFromId(G);return(G>-1)?this.cellDates[G]:null;},getCellIndex:function(I){var H=-1;if(I){var G=I.getMonth(),N=I.getFullYear(),M=I.getDate(),K=this.cellDates;for(var J=0;J<K.length;++J){var L=K[J];if(L[0]===N&&L[1]===G+1&&L[2]===M){H=J;break;}}}return H;},getIndexFromId:function(I){var H=-1,G=I.lastIndexOf("_cell");if(G>-1){H=parseInt(I.substring(G+5),10);}return H;},renderOutOfBoundsDate:function(H,G){C.addClass(G,this.Style.CSS_CELL_OOB);G.innerHTML=H.getDate();return F.STOP_RENDER;},renderRowHeader:function(H,G){G[G.length]='<th class="calrowhead">'+H+"</th>";return G;},renderRowFooter:function(H,G){G[G.length]='<th class="calrowfoot">'+H+"</th>";return G;},renderCellDefault:function(H,G){G.innerHTML='<a href="#" class="'+this.Style.CSS_CELL_SELECTOR+'">'+this.buildDayLabel(H)+"</a>";},styleCellDefault:function(H,G){C.addClass(G,this.Style.CSS_CELL_SELECTABLE);},renderCellStyleHighlight1:function(H,G){C.addClass(G,this.Style.CSS_CELL_HIGHLIGHT1);},renderCellStyleHighlight2:function(H,G){C.addClass(G,this.Style.CSS_CELL_HIGHLIGHT2);},renderCellStyleHighlight3:function(H,G){C.addClass(G,this.Style.CSS_CELL_HIGHLIGHT3);},renderCellStyleHighlight4:function(H,G){C.addClass(G,this.Style.CSS_CELL_HIGHLIGHT4);},renderCellStyleToday:function(H,G){C.addClass(G,this.Style.CSS_CELL_TODAY);},renderCellStyleSelected:function(H,G){C.addClass(G,this.Style.CSS_CELL_SELECTED);},renderCellNotThisMonth:function(H,G){C.addClass(G,this.Style.CSS_CELL_OOM);G.innerHTML=H.getDate();return F.STOP_RENDER;},renderBodyCellRestricted:function(H,G){C.addClass(G,this.Style.CSS_CELL);C.addClass(G,this.Style.CSS_CELL_RESTRICTED);G.innerHTML=H.getDate();return F.STOP_RENDER;},addMonths:function(H){var G=B.PAGEDATE.key;this.cfg.setProperty(G,D.add(this.cfg.getProperty(G),D.MONTH,H));this.resetRenderers();this.changePageEvent.fire();},subtractMonths:function(H){var G=B.PAGEDATE.key;this.cfg.setProperty(G,D.subtract(this.cfg.getProperty(G),D.MONTH,H));this.resetRenderers();this.changePageEvent.fire();},addYears:function(H){var G=B.PAGEDATE.key;this.cfg.setProperty(G,D.add(this.cfg.getProperty(G),D.YEAR,H));this.resetRenderers();this.changePageEvent.fire();},subtractYears:function(H){var G=B.PAGEDATE.key;this.cfg.setProperty(G,D.subtract(this.cfg.getProperty(G),D.YEAR,H));this.resetRenderers();this.changePageEvent.fire();},nextMonth:function(){this.addMonths(1);},previousMonth:function(){this.subtractMonths(1);},nextYear:function(){this.addYears(1);},previousYear:function(){this.subtractYears(1);},reset:function(){this.cfg.resetProperty(B.SELECTED.key);this.cfg.resetProperty(B.PAGEDATE.key);this.resetEvent.fire();},clear:function(){this.cfg.setProperty(B.SELECTED.key,[]);this.cfg.setProperty(B.PAGEDATE.key,new Date(this.today.getTime()));this.clearEvent.fire();},select:function(I){var L=this._toFieldArray(I),H=[],K=[],M=B.SELECTED.key;for(var G=0;G<L.length;++G){var J=L[G];if(!this.isDateOOB(this._toDate(J))){if(H.length===0){this.beforeSelectEvent.fire();K=this.cfg.getProperty(M);}H.push(J);if(this._indexOfSelectedFieldArray(J)==-1){K[K.length]=J;}}}if(H.length>0){if(this.parent){this.parent.cfg.setProperty(M,K);}else{this.cfg.setProperty(M,K);
-}this.selectEvent.fire(H);}return this.getSelectedDates();},selectCell:function(J){var H=this.cells[J],N=this.cellDates[J],M=this._toDate(N),I=C.hasClass(H,this.Style.CSS_CELL_SELECTABLE);if(I){this.beforeSelectEvent.fire();var L=B.SELECTED.key;var K=this.cfg.getProperty(L);var G=N.concat();if(this._indexOfSelectedFieldArray(G)==-1){K[K.length]=G;}if(this.parent){this.parent.cfg.setProperty(L,K);}else{this.cfg.setProperty(L,K);}this.renderCellStyleSelected(M,H);this.selectEvent.fire([G]);this.doCellMouseOut.call(H,null,this);}return this.getSelectedDates();},deselect:function(K){var G=this._toFieldArray(K),J=[],M=[],N=B.SELECTED.key;for(var H=0;H<G.length;++H){var L=G[H];if(!this.isDateOOB(this._toDate(L))){if(J.length===0){this.beforeDeselectEvent.fire();M=this.cfg.getProperty(N);}J.push(L);var I=this._indexOfSelectedFieldArray(L);if(I!=-1){M.splice(I,1);}}}if(J.length>0){if(this.parent){this.parent.cfg.setProperty(N,M);}else{this.cfg.setProperty(N,M);}this.deselectEvent.fire(J);}return this.getSelectedDates();},deselectCell:function(K){var H=this.cells[K],N=this.cellDates[K],I=this._indexOfSelectedFieldArray(N);var J=C.hasClass(H,this.Style.CSS_CELL_SELECTABLE);if(J){this.beforeDeselectEvent.fire();var L=this.cfg.getProperty(B.SELECTED.key),M=this._toDate(N),G=N.concat();if(I>-1){if(this.cfg.getProperty(B.PAGEDATE.key).getMonth()==M.getMonth()&&this.cfg.getProperty(B.PAGEDATE.key).getFullYear()==M.getFullYear()){C.removeClass(H,this.Style.CSS_CELL_SELECTED);}L.splice(I,1);}if(this.parent){this.parent.cfg.setProperty(B.SELECTED.key,L);}else{this.cfg.setProperty(B.SELECTED.key,L);}this.deselectEvent.fire(G);}return this.getSelectedDates();},deselectAll:function(){this.beforeDeselectEvent.fire();var J=B.SELECTED.key,G=this.cfg.getProperty(J),H=G.length,I=G.concat();if(this.parent){this.parent.cfg.setProperty(J,[]);}else{this.cfg.setProperty(J,[]);}if(H>0){this.deselectEvent.fire(I);}return this.getSelectedDates();},_toFieldArray:function(H){var G=[];if(H instanceof Date){G=[[H.getFullYear(),H.getMonth()+1,H.getDate()]];}else{if(E.isString(H)){G=this._parseDates(H);}else{if(E.isArray(H)){for(var I=0;I<H.length;++I){var J=H[I];G[G.length]=[J.getFullYear(),J.getMonth()+1,J.getDate()];}}}}return G;},toDate:function(G){return this._toDate(G);},_toDate:function(G){if(G instanceof Date){return G;}else{return D.getDate(G[0],G[1]-1,G[2]);}},_fieldArraysAreEqual:function(I,H){var G=false;if(I[0]==H[0]&&I[1]==H[1]&&I[2]==H[2]){G=true;}return G;},_indexOfSelectedFieldArray:function(K){var J=-1,G=this.cfg.getProperty(B.SELECTED.key);for(var I=0;I<G.length;++I){var H=G[I];if(K[0]==H[0]&&K[1]==H[1]&&K[2]==H[2]){J=I;break;}}return J;},isDateOOM:function(G){return(G.getMonth()!=this.cfg.getProperty(B.PAGEDATE.key).getMonth());},isDateOOB:function(I){var J=this.cfg.getProperty(B.MINDATE.key),K=this.cfg.getProperty(B.MAXDATE.key),H=D;if(J){J=H.clearTime(J);}if(K){K=H.clearTime(K);}var G=new Date(I.getTime());G=H.clearTime(G);return((J&&G.getTime()<J.getTime())||(K&&G.getTime()>K.getTime()));},_parsePageDate:function(G){var J;if(G){if(G instanceof Date){J=D.findMonthStart(G);}else{var K,I,H;H=G.split(this.cfg.getProperty(B.DATE_FIELD_DELIMITER.key));K=parseInt(H[this.cfg.getProperty(B.MY_MONTH_POSITION.key)-1],10)-1;I=parseInt(H[this.cfg.getProperty(B.MY_YEAR_POSITION.key)-1],10);J=D.getDate(I,K,1);}}else{J=D.getDate(this.today.getFullYear(),this.today.getMonth(),1);}return J;},onBeforeSelect:function(){if(this.cfg.getProperty(B.MULTI_SELECT.key)===false){if(this.parent){this.parent.callChildFunction("clearAllBodyCellStyles",this.Style.CSS_CELL_SELECTED);this.parent.deselectAll();}else{this.clearAllBodyCellStyles(this.Style.CSS_CELL_SELECTED);this.deselectAll();}}},onSelect:function(G){},onBeforeDeselect:function(){},onDeselect:function(G){},onChangePage:function(){this.render();},onRender:function(){},onReset:function(){this.render();},onClear:function(){this.render();},validate:function(){return true;},_parseDate:function(I){var J=I.split(this.Locale.DATE_FIELD_DELIMITER),G;if(J.length==2){G=[J[this.Locale.MD_MONTH_POSITION-1],J[this.Locale.MD_DAY_POSITION-1]];G.type=F.MONTH_DAY;}else{G=[J[this.Locale.MDY_YEAR_POSITION-1],J[this.Locale.MDY_MONTH_POSITION-1],J[this.Locale.MDY_DAY_POSITION-1]];G.type=F.DATE;}for(var H=0;H<G.length;H++){G[H]=parseInt(G[H],10);}return G;},_parseDates:function(H){var O=[],N=H.split(this.Locale.DATE_DELIMITER);for(var M=0;M<N.length;++M){var L=N[M];if(L.indexOf(this.Locale.DATE_RANGE_DELIMITER)!=-1){var G=L.split(this.Locale.DATE_RANGE_DELIMITER),K=this._parseDate(G[0]),P=this._parseDate(G[1]),J=this._parseRange(K,P);O=O.concat(J);}else{var I=this._parseDate(L);O.push(I);}}return O;},_parseRange:function(G,K){var H=D.add(D.getDate(G[0],G[1]-1,G[2]),D.DAY,1),J=D.getDate(K[0],K[1]-1,K[2]),I=[];I.push(G);while(H.getTime()<=J.getTime()){I.push([H.getFullYear(),H.getMonth()+1,H.getDate()]);H=D.add(H,D.DAY,1);}return I;},resetRenderers:function(){this.renderStack=this._renderStack.concat();},removeRenderers:function(){this._renderStack=[];this.renderStack=[];},clearElement:function(G){G.innerHTML="&#160;";G.className="";},addRenderer:function(G,H){var J=this._parseDates(G);for(var I=0;I<J.length;++I){var K=J[I];if(K.length==2){if(K[0] instanceof Array){this._addRenderer(F.RANGE,K,H);}else{this._addRenderer(F.MONTH_DAY,K,H);}}else{if(K.length==3){this._addRenderer(F.DATE,K,H);}}}},_addRenderer:function(H,I,G){var J=[H,I,G];this.renderStack.unshift(J);this._renderStack=this.renderStack.concat();},addMonthRenderer:function(H,G){this._addRenderer(F.MONTH,[H],G);},addWeekdayRenderer:function(H,G){this._addRenderer(F.WEEKDAY,[H],G);},clearAllBodyCellStyles:function(G){for(var H=0;H<this.cells.length;++H){C.removeClass(this.cells[H],G);}},setMonth:function(I){var G=B.PAGEDATE.key,H=this.cfg.getProperty(G);H.setMonth(parseInt(I,10));this.cfg.setProperty(G,H);},setYear:function(H){var G=B.PAGEDATE.key,I=this.cfg.getProperty(G);I.setFullYear(parseInt(H,10));this.cfg.setProperty(G,I);},getSelectedDates:function(){var I=[],H=this.cfg.getProperty(B.SELECTED.key);
-for(var K=0;K<H.length;++K){var J=H[K];var G=D.getDate(J[0],J[1]-1,J[2]);I.push(G);}I.sort(function(M,L){return M-L;});return I;},hide:function(){if(this.beforeHideEvent.fire()){this.oDomContainer.style.display="none";this.hideEvent.fire();}},show:function(){if(this.beforeShowEvent.fire()){this.oDomContainer.style.display="block";this.showEvent.fire();}},browser:(function(){var G=navigator.userAgent.toLowerCase();if(G.indexOf("opera")!=-1){return"opera";}else{if(G.indexOf("msie 7")!=-1){return"ie7";}else{if(G.indexOf("msie")!=-1){return"ie";}else{if(G.indexOf("safari")!=-1){return"safari";}else{if(G.indexOf("gecko")!=-1){return"gecko";}else{return false;}}}}}})(),toString:function(){return"Calendar "+this.id;},destroy:function(){if(this.beforeDestroyEvent.fire()){var G=this;if(G.navigator){G.navigator.destroy();}if(G.cfg){G.cfg.destroy();}A.purgeElement(G.oDomContainer,true);C.removeClass(G.oDomContainer,"withtitle");C.removeClass(G.oDomContainer,G.Style.CSS_CONTAINER);C.removeClass(G.oDomContainer,G.Style.CSS_SINGLE);G.oDomContainer.innerHTML="";G.oDomContainer=null;G.cells=null;this.destroyEvent.fire();}}};YAHOO.widget.Calendar=F;YAHOO.widget.Calendar_Core=YAHOO.widget.Calendar;YAHOO.widget.Cal_Core=YAHOO.widget.Calendar;})();(function(){var D=YAHOO.util.Dom,F=YAHOO.widget.DateMath,A=YAHOO.util.Event,E=YAHOO.lang,G=YAHOO.widget.Calendar;function B(J,H,I){if(arguments.length>0){this.init.apply(this,arguments);}}B._DEFAULT_CONFIG=G._DEFAULT_CONFIG;B._DEFAULT_CONFIG.PAGES={key:"pages",value:2};var C=B._DEFAULT_CONFIG;B.prototype={init:function(K,I,J){var H=this._parseArgs(arguments);K=H.id;I=H.container;J=H.config;this.oDomContainer=D.get(I);if(!this.oDomContainer.id){this.oDomContainer.id=D.generateId();}if(!K){K=this.oDomContainer.id+"_t";}this.id=K;this.containerId=this.oDomContainer.id;this.initEvents();this.initStyles();this.pages=[];D.addClass(this.oDomContainer,B.CSS_CONTAINER);D.addClass(this.oDomContainer,B.CSS_MULTI_UP);this.cfg=new YAHOO.util.Config(this);this.Options={};this.Locale={};this.setupConfig();if(J){this.cfg.applyConfig(J,true);}this.cfg.fireQueue();if(YAHOO.env.ua.opera){this.renderEvent.subscribe(this._fixWidth,this,true);this.showEvent.subscribe(this._fixWidth,this,true);}},setupConfig:function(){var H=this.cfg;H.addProperty(C.PAGES.key,{value:C.PAGES.value,validator:H.checkNumber,handler:this.configPages});H.addProperty(C.PAGEDATE.key,{value:new Date(),handler:this.configPageDate});H.addProperty(C.SELECTED.key,{value:[],handler:this.configSelected});H.addProperty(C.TITLE.key,{value:C.TITLE.value,handler:this.configTitle});H.addProperty(C.CLOSE.key,{value:C.CLOSE.value,handler:this.configClose});H.addProperty(C.IFRAME.key,{value:C.IFRAME.value,handler:this.configIframe,validator:H.checkBoolean});H.addProperty(C.MINDATE.key,{value:C.MINDATE.value,handler:this.delegateConfig});H.addProperty(C.MAXDATE.key,{value:C.MAXDATE.value,handler:this.delegateConfig});H.addProperty(C.MULTI_SELECT.key,{value:C.MULTI_SELECT.value,handler:this.delegateConfig,validator:H.checkBoolean});H.addProperty(C.START_WEEKDAY.key,{value:C.START_WEEKDAY.value,handler:this.delegateConfig,validator:H.checkNumber});H.addProperty(C.SHOW_WEEKDAYS.key,{value:C.SHOW_WEEKDAYS.value,handler:this.delegateConfig,validator:H.checkBoolean});H.addProperty(C.SHOW_WEEK_HEADER.key,{value:C.SHOW_WEEK_HEADER.value,handler:this.delegateConfig,validator:H.checkBoolean});H.addProperty(C.SHOW_WEEK_FOOTER.key,{value:C.SHOW_WEEK_FOOTER.value,handler:this.delegateConfig,validator:H.checkBoolean});H.addProperty(C.HIDE_BLANK_WEEKS.key,{value:C.HIDE_BLANK_WEEKS.value,handler:this.delegateConfig,validator:H.checkBoolean});H.addProperty(C.NAV_ARROW_LEFT.key,{value:C.NAV_ARROW_LEFT.value,handler:this.delegateConfig});H.addProperty(C.NAV_ARROW_RIGHT.key,{value:C.NAV_ARROW_RIGHT.value,handler:this.delegateConfig});H.addProperty(C.MONTHS_SHORT.key,{value:C.MONTHS_SHORT.value,handler:this.delegateConfig});H.addProperty(C.MONTHS_LONG.key,{value:C.MONTHS_LONG.value,handler:this.delegateConfig});H.addProperty(C.WEEKDAYS_1CHAR.key,{value:C.WEEKDAYS_1CHAR.value,handler:this.delegateConfig});H.addProperty(C.WEEKDAYS_SHORT.key,{value:C.WEEKDAYS_SHORT.value,handler:this.delegateConfig});H.addProperty(C.WEEKDAYS_MEDIUM.key,{value:C.WEEKDAYS_MEDIUM.value,handler:this.delegateConfig});H.addProperty(C.WEEKDAYS_LONG.key,{value:C.WEEKDAYS_LONG.value,handler:this.delegateConfig});H.addProperty(C.LOCALE_MONTHS.key,{value:C.LOCALE_MONTHS.value,handler:this.delegateConfig});H.addProperty(C.LOCALE_WEEKDAYS.key,{value:C.LOCALE_WEEKDAYS.value,handler:this.delegateConfig});H.addProperty(C.DATE_DELIMITER.key,{value:C.DATE_DELIMITER.value,handler:this.delegateConfig});H.addProperty(C.DATE_FIELD_DELIMITER.key,{value:C.DATE_FIELD_DELIMITER.value,handler:this.delegateConfig});H.addProperty(C.DATE_RANGE_DELIMITER.key,{value:C.DATE_RANGE_DELIMITER.value,handler:this.delegateConfig});H.addProperty(C.MY_MONTH_POSITION.key,{value:C.MY_MONTH_POSITION.value,handler:this.delegateConfig,validator:H.checkNumber});H.addProperty(C.MY_YEAR_POSITION.key,{value:C.MY_YEAR_POSITION.value,handler:this.delegateConfig,validator:H.checkNumber});H.addProperty(C.MD_MONTH_POSITION.key,{value:C.MD_MONTH_POSITION.value,handler:this.delegateConfig,validator:H.checkNumber});H.addProperty(C.MD_DAY_POSITION.key,{value:C.MD_DAY_POSITION.value,handler:this.delegateConfig,validator:H.checkNumber});H.addProperty(C.MDY_MONTH_POSITION.key,{value:C.MDY_MONTH_POSITION.value,handler:this.delegateConfig,validator:H.checkNumber});H.addProperty(C.MDY_DAY_POSITION.key,{value:C.MDY_DAY_POSITION.value,handler:this.delegateConfig,validator:H.checkNumber});H.addProperty(C.MDY_YEAR_POSITION.key,{value:C.MDY_YEAR_POSITION.value,handler:this.delegateConfig,validator:H.checkNumber});H.addProperty(C.MY_LABEL_MONTH_POSITION.key,{value:C.MY_LABEL_MONTH_POSITION.value,handler:this.delegateConfig,validator:H.checkNumber});H.addProperty(C.MY_LABEL_YEAR_POSITION.key,{value:C.MY_LABEL_YEAR_POSITION.value,handler:this.delegateConfig,validator:H.checkNumber});
-H.addProperty(C.MY_LABEL_MONTH_SUFFIX.key,{value:C.MY_LABEL_MONTH_SUFFIX.value,handler:this.delegateConfig});H.addProperty(C.MY_LABEL_YEAR_SUFFIX.key,{value:C.MY_LABEL_YEAR_SUFFIX.value,handler:this.delegateConfig});H.addProperty(C.NAV.key,{value:C.NAV.value,handler:this.configNavigator});H.addProperty(C.STRINGS.key,{value:C.STRINGS.value,handler:this.configStrings,validator:function(I){return E.isObject(I);},supercedes:C.STRINGS.supercedes});},initEvents:function(){var J=this,L="Event",M=YAHOO.util.CustomEvent;var I=function(O,R,N){for(var Q=0;Q<J.pages.length;++Q){var P=J.pages[Q];P[this.type+L].subscribe(O,R,N);}};var H=function(N,Q){for(var P=0;P<J.pages.length;++P){var O=J.pages[P];O[this.type+L].unsubscribe(N,Q);}};var K=G._EVENT_TYPES;J.beforeSelectEvent=new M(K.BEFORE_SELECT);J.beforeSelectEvent.subscribe=I;J.beforeSelectEvent.unsubscribe=H;J.selectEvent=new M(K.SELECT);J.selectEvent.subscribe=I;J.selectEvent.unsubscribe=H;J.beforeDeselectEvent=new M(K.BEFORE_DESELECT);J.beforeDeselectEvent.subscribe=I;J.beforeDeselectEvent.unsubscribe=H;J.deselectEvent=new M(K.DESELECT);J.deselectEvent.subscribe=I;J.deselectEvent.unsubscribe=H;J.changePageEvent=new M(K.CHANGE_PAGE);J.changePageEvent.subscribe=I;J.changePageEvent.unsubscribe=H;J.beforeRenderEvent=new M(K.BEFORE_RENDER);J.beforeRenderEvent.subscribe=I;J.beforeRenderEvent.unsubscribe=H;J.renderEvent=new M(K.RENDER);J.renderEvent.subscribe=I;J.renderEvent.unsubscribe=H;J.resetEvent=new M(K.RESET);J.resetEvent.subscribe=I;J.resetEvent.unsubscribe=H;J.clearEvent=new M(K.CLEAR);J.clearEvent.subscribe=I;J.clearEvent.unsubscribe=H;J.beforeShowEvent=new M(K.BEFORE_SHOW);J.showEvent=new M(K.SHOW);J.beforeHideEvent=new M(K.BEFORE_HIDE);J.hideEvent=new M(K.HIDE);J.beforeShowNavEvent=new M(K.BEFORE_SHOW_NAV);J.showNavEvent=new M(K.SHOW_NAV);J.beforeHideNavEvent=new M(K.BEFORE_HIDE_NAV);J.hideNavEvent=new M(K.HIDE_NAV);J.beforeRenderNavEvent=new M(K.BEFORE_RENDER_NAV);J.renderNavEvent=new M(K.RENDER_NAV);J.beforeDestroyEvent=new M(K.BEFORE_DESTROY);J.destroyEvent=new M(K.DESTROY);},configPages:function(R,Q,N){var L=Q[0],J=C.PAGEDATE.key,V="_",S="groupcal",U="first-of-type",K="last-of-type";for(var I=0;I<L;++I){var T=this.id+V+I,P=this.containerId+V+I,O=this.cfg.getConfig();O.close=false;O.title=false;O.navigator=null;var H=this.constructChild(T,P,O);var M=H.cfg.getProperty(J);this._setMonthOnDate(M,M.getMonth()+I);H.cfg.setProperty(J,M);D.removeClass(H.oDomContainer,this.Style.CSS_SINGLE);D.addClass(H.oDomContainer,S);if(I===0){D.addClass(H.oDomContainer,U);}if(I==(L-1)){D.addClass(H.oDomContainer,K);}H.parent=this;H.index=I;this.pages[this.pages.length]=H;}},configPageDate:function(O,N,L){var J=N[0],M;var K=C.PAGEDATE.key;for(var I=0;I<this.pages.length;++I){var H=this.pages[I];if(I===0){M=H._parsePageDate(J);H.cfg.setProperty(K,M);}else{var P=new Date(M);this._setMonthOnDate(P,P.getMonth()+I);H.cfg.setProperty(K,P);}}},configSelected:function(J,H,L){var K=C.SELECTED.key;this.delegateConfig(J,H,L);var I=(this.pages.length>0)?this.pages[0].cfg.getProperty(K):[];this.cfg.setProperty(K,I,true);},delegateConfig:function(I,H,L){var M=H[0];var K;for(var J=0;J<this.pages.length;J++){K=this.pages[J];K.cfg.setProperty(I,M);}},setChildFunction:function(K,I){var H=this.cfg.getProperty(C.PAGES.key);for(var J=0;J<H;++J){this.pages[J][K]=I;}},callChildFunction:function(M,I){var H=this.cfg.getProperty(C.PAGES.key);for(var L=0;L<H;++L){var K=this.pages[L];if(K[M]){var J=K[M];J.call(K,I);}}},constructChild:function(K,I,J){var H=document.getElementById(I);if(!H){H=document.createElement("div");H.id=I;this.oDomContainer.appendChild(H);}return new G(K,I,J);},setMonth:function(L){L=parseInt(L,10);var M;var I=C.PAGEDATE.key;for(var K=0;K<this.pages.length;++K){var J=this.pages[K];var H=J.cfg.getProperty(I);if(K===0){M=H.getFullYear();}else{H.setFullYear(M);}this._setMonthOnDate(H,L+K);J.cfg.setProperty(I,H);}},setYear:function(J){var I=C.PAGEDATE.key;J=parseInt(J,10);for(var L=0;L<this.pages.length;++L){var K=this.pages[L];var H=K.cfg.getProperty(I);if((H.getMonth()+1)==1&&L>0){J+=1;}K.setYear(J);}},render:function(){this.renderHeader();for(var I=0;I<this.pages.length;++I){var H=this.pages[I];H.render();}this.renderFooter();},select:function(H){for(var J=0;J<this.pages.length;++J){var I=this.pages[J];I.select(H);}return this.getSelectedDates();},selectCell:function(H){for(var J=0;J<this.pages.length;++J){var I=this.pages[J];I.selectCell(H);}return this.getSelectedDates();},deselect:function(H){for(var J=0;J<this.pages.length;++J){var I=this.pages[J];I.deselect(H);}return this.getSelectedDates();},deselectAll:function(){for(var I=0;I<this.pages.length;++I){var H=this.pages[I];H.deselectAll();}return this.getSelectedDates();},deselectCell:function(H){for(var J=0;J<this.pages.length;++J){var I=this.pages[J];I.deselectCell(H);}return this.getSelectedDates();},reset:function(){for(var I=0;I<this.pages.length;++I){var H=this.pages[I];H.reset();}},clear:function(){for(var I=0;I<this.pages.length;++I){var H=this.pages[I];H.clear();}this.cfg.setProperty(C.SELECTED.key,[]);this.cfg.setProperty(C.PAGEDATE.key,new Date(this.pages[0].today.getTime()));this.render();},nextMonth:function(){for(var I=0;I<this.pages.length;++I){var H=this.pages[I];H.nextMonth();}},previousMonth:function(){for(var I=this.pages.length-1;I>=0;--I){var H=this.pages[I];H.previousMonth();}},nextYear:function(){for(var I=0;I<this.pages.length;++I){var H=this.pages[I];H.nextYear();}},previousYear:function(){for(var I=0;I<this.pages.length;++I){var H=this.pages[I];H.previousYear();}},getSelectedDates:function(){var J=[];var I=this.cfg.getProperty(C.SELECTED.key);for(var L=0;L<I.length;++L){var K=I[L];var H=F.getDate(K[0],K[1]-1,K[2]);J.push(H);}J.sort(function(N,M){return N-M;});return J;},addRenderer:function(H,I){for(var K=0;K<this.pages.length;++K){var J=this.pages[K];J.addRenderer(H,I);}},addMonthRenderer:function(K,H){for(var J=0;J<this.pages.length;++J){var I=this.pages[J];I.addMonthRenderer(K,H);}},addWeekdayRenderer:function(I,H){for(var K=0;
-K<this.pages.length;++K){var J=this.pages[K];J.addWeekdayRenderer(I,H);}},removeRenderers:function(){this.callChildFunction("removeRenderers");},renderHeader:function(){},renderFooter:function(){},addMonths:function(H){this.callChildFunction("addMonths",H);},subtractMonths:function(H){this.callChildFunction("subtractMonths",H);},addYears:function(H){this.callChildFunction("addYears",H);},subtractYears:function(H){this.callChildFunction("subtractYears",H);},getCalendarPage:function(K){var M=null;if(K){var N=K.getFullYear(),J=K.getMonth();var I=this.pages;for(var L=0;L<I.length;++L){var H=I[L].cfg.getProperty("pagedate");if(H.getFullYear()===N&&H.getMonth()===J){M=I[L];break;}}}return M;},_setMonthOnDate:function(I,J){if(YAHOO.env.ua.webkit&&YAHOO.env.ua.webkit<420&&(J<0||J>11)){var H=F.add(I,F.MONTH,J-I.getMonth());I.setTime(H.getTime());}else{I.setMonth(J);}},_fixWidth:function(){var H=0;for(var J=0;J<this.pages.length;++J){var I=this.pages[J];H+=I.oDomContainer.offsetWidth;}if(H>0){this.oDomContainer.style.width=H+"px";}},toString:function(){return"CalendarGroup "+this.id;},destroy:function(){if(this.beforeDestroyEvent.fire()){var J=this;if(J.navigator){J.navigator.destroy();}if(J.cfg){J.cfg.destroy();}A.purgeElement(J.oDomContainer,true);D.removeClass(J.oDomContainer,B.CSS_CONTAINER);D.removeClass(J.oDomContainer,B.CSS_MULTI_UP);for(var I=0,H=J.pages.length;I<H;I++){J.pages[I].destroy();J.pages[I]=null;}J.oDomContainer.innerHTML="";J.oDomContainer=null;this.destroyEvent.fire();}}};B.CSS_CONTAINER="yui-calcontainer";B.CSS_MULTI_UP="multi";B.CSS_2UPTITLE="title";B.CSS_2UPCLOSE="close-icon";YAHOO.lang.augmentProto(B,G,"buildDayLabel","buildMonthLabel","renderOutOfBoundsDate","renderRowHeader","renderRowFooter","renderCellDefault","styleCellDefault","renderCellStyleHighlight1","renderCellStyleHighlight2","renderCellStyleHighlight3","renderCellStyleHighlight4","renderCellStyleToday","renderCellStyleSelected","renderCellNotThisMonth","renderBodyCellRestricted","initStyles","configTitle","configClose","configIframe","configStrings","configNavigator","createTitleBar","createCloseButton","removeTitleBar","removeCloseButton","hide","show","toDate","_toDate","_parseArgs","browser");YAHOO.widget.CalGrp=B;YAHOO.widget.CalendarGroup=B;YAHOO.widget.Calendar2up=function(J,H,I){this.init(J,H,I);};YAHOO.extend(YAHOO.widget.Calendar2up,B);YAHOO.widget.Cal2up=YAHOO.widget.Calendar2up;})();YAHOO.widget.CalendarNavigator=function(A){this.init(A);};(function(){var A=YAHOO.widget.CalendarNavigator;A.CLASSES={NAV:"yui-cal-nav",NAV_VISIBLE:"yui-cal-nav-visible",MASK:"yui-cal-nav-mask",YEAR:"yui-cal-nav-y",MONTH:"yui-cal-nav-m",BUTTONS:"yui-cal-nav-b",BUTTON:"yui-cal-nav-btn",ERROR:"yui-cal-nav-e",YEAR_CTRL:"yui-cal-nav-yc",MONTH_CTRL:"yui-cal-nav-mc",INVALID:"yui-invalid",DEFAULT:"yui-default"};A._DEFAULT_CFG={strings:{month:"Month",year:"Year",submit:"Okay",cancel:"Cancel",invalidYear:"Year needs to be a number"},monthFormat:YAHOO.widget.Calendar.LONG,initialFocus:"year"};A.ID_SUFFIX="_nav";A.MONTH_SUFFIX="_month";A.YEAR_SUFFIX="_year";A.ERROR_SUFFIX="_error";A.CANCEL_SUFFIX="_cancel";A.SUBMIT_SUFFIX="_submit";A.YR_MAX_DIGITS=4;A.YR_MINOR_INC=1;A.YR_MAJOR_INC=10;A.UPDATE_DELAY=50;A.YR_PATTERN=/^\d+$/;A.TRIM=/^\s*(.*?)\s*$/;})();YAHOO.widget.CalendarNavigator.prototype={id:null,cal:null,navEl:null,maskEl:null,yearEl:null,monthEl:null,errorEl:null,submitEl:null,cancelEl:null,firstCtrl:null,lastCtrl:null,_doc:null,_year:null,_month:0,__rendered:false,init:function(A){var C=A.oDomContainer;this.cal=A;this.id=C.id+YAHOO.widget.CalendarNavigator.ID_SUFFIX;this._doc=C.ownerDocument;var B=YAHOO.env.ua.ie;this.__isIEQuirks=(B&&((B<=6)||(B===7&&this._doc.compatMode=="BackCompat")));},show:function(){var A=YAHOO.widget.CalendarNavigator.CLASSES;if(this.cal.beforeShowNavEvent.fire()){if(!this.__rendered){this.render();}this.clearErrors();this._updateMonthUI();this._updateYearUI();this._show(this.navEl,true);this.setInitialFocus();this.showMask();YAHOO.util.Dom.addClass(this.cal.oDomContainer,A.NAV_VISIBLE);this.cal.showNavEvent.fire();}},hide:function(){var A=YAHOO.widget.CalendarNavigator.CLASSES;if(this.cal.beforeHideNavEvent.fire()){this._show(this.navEl,false);this.hideMask();YAHOO.util.Dom.removeClass(this.cal.oDomContainer,A.NAV_VISIBLE);this.cal.hideNavEvent.fire();}},showMask:function(){this._show(this.maskEl,true);if(this.__isIEQuirks){this._syncMask();}},hideMask:function(){this._show(this.maskEl,false);},getMonth:function(){return this._month;},getYear:function(){return this._year;},setMonth:function(A){if(A>=0&&A<12){this._month=A;}this._updateMonthUI();},setYear:function(B){var A=YAHOO.widget.CalendarNavigator.YR_PATTERN;if(YAHOO.lang.isNumber(B)&&A.test(B+"")){this._year=B;}this._updateYearUI();},render:function(){this.cal.beforeRenderNavEvent.fire();if(!this.__rendered){this.createNav();this.createMask();this.applyListeners();this.__rendered=true;}this.cal.renderNavEvent.fire();},createNav:function(){var B=YAHOO.widget.CalendarNavigator;var C=this._doc;var D=C.createElement("div");D.className=B.CLASSES.NAV;var A=this.renderNavContents([]);D.innerHTML=A.join("");this.cal.oDomContainer.appendChild(D);this.navEl=D;this.yearEl=C.getElementById(this.id+B.YEAR_SUFFIX);this.monthEl=C.getElementById(this.id+B.MONTH_SUFFIX);this.errorEl=C.getElementById(this.id+B.ERROR_SUFFIX);this.submitEl=C.getElementById(this.id+B.SUBMIT_SUFFIX);this.cancelEl=C.getElementById(this.id+B.CANCEL_SUFFIX);if(YAHOO.env.ua.gecko&&this.yearEl&&this.yearEl.type=="text"){this.yearEl.setAttribute("autocomplete","off");}this._setFirstLastElements();},createMask:function(){var B=YAHOO.widget.CalendarNavigator.CLASSES;var A=this._doc.createElement("div");A.className=B.MASK;this.cal.oDomContainer.appendChild(A);this.maskEl=A;},_syncMask:function(){var B=this.cal.oDomContainer;if(B&&this.maskEl){var A=YAHOO.util.Dom.getRegion(B);YAHOO.util.Dom.setStyle(this.maskEl,"width",A.right-A.left+"px");YAHOO.util.Dom.setStyle(this.maskEl,"height",A.bottom-A.top+"px");
-}},renderNavContents:function(A){var D=YAHOO.widget.CalendarNavigator,E=D.CLASSES,B=A;B[B.length]='<div class="'+E.MONTH+'">';this.renderMonth(B);B[B.length]="</div>";B[B.length]='<div class="'+E.YEAR+'">';this.renderYear(B);B[B.length]="</div>";B[B.length]='<div class="'+E.BUTTONS+'">';this.renderButtons(B);B[B.length]="</div>";B[B.length]='<div class="'+E.ERROR+'" id="'+this.id+D.ERROR_SUFFIX+'"></div>';return B;},renderMonth:function(D){var G=YAHOO.widget.CalendarNavigator,H=G.CLASSES;var I=this.id+G.MONTH_SUFFIX,F=this.__getCfg("monthFormat"),A=this.cal.cfg.getProperty((F==YAHOO.widget.Calendar.SHORT)?"MONTHS_SHORT":"MONTHS_LONG"),E=D;if(A&&A.length>0){E[E.length]='<label for="'+I+'">';E[E.length]=this.__getCfg("month",true);E[E.length]="</label>";E[E.length]='<select name="'+I+'" id="'+I+'" class="'+H.MONTH_CTRL+'">';for(var B=0;B<A.length;B++){E[E.length]='<option value="'+B+'">';E[E.length]=A[B];E[E.length]="</option>";}E[E.length]="</select>";}return E;},renderYear:function(B){var E=YAHOO.widget.CalendarNavigator,F=E.CLASSES;var G=this.id+E.YEAR_SUFFIX,A=E.YR_MAX_DIGITS,D=B;D[D.length]='<label for="'+G+'">';D[D.length]=this.__getCfg("year",true);D[D.length]="</label>";D[D.length]='<input type="text" name="'+G+'" id="'+G+'" class="'+F.YEAR_CTRL+'" maxlength="'+A+'"/>';return D;},renderButtons:function(A){var D=YAHOO.widget.CalendarNavigator.CLASSES;var B=A;B[B.length]='<span class="'+D.BUTTON+" "+D.DEFAULT+'">';B[B.length]='<button type="button" id="'+this.id+"_submit"+'">';B[B.length]=this.__getCfg("submit",true);B[B.length]="</button>";B[B.length]="</span>";B[B.length]='<span class="'+D.BUTTON+'">';B[B.length]='<button type="button" id="'+this.id+"_cancel"+'">';B[B.length]=this.__getCfg("cancel",true);B[B.length]="</button>";B[B.length]="</span>";return B;},applyListeners:function(){var B=YAHOO.util.Event;function A(){if(this.validate()){this.setYear(this._getYearFromUI());}}function C(){this.setMonth(this._getMonthFromUI());}B.on(this.submitEl,"click",this.submit,this,true);B.on(this.cancelEl,"click",this.cancel,this,true);B.on(this.yearEl,"blur",A,this,true);B.on(this.monthEl,"change",C,this,true);if(this.__isIEQuirks){YAHOO.util.Event.on(this.cal.oDomContainer,"resize",this._syncMask,this,true);}this.applyKeyListeners();},purgeListeners:function(){var A=YAHOO.util.Event;A.removeListener(this.submitEl,"click",this.submit);A.removeListener(this.cancelEl,"click",this.cancel);A.removeListener(this.yearEl,"blur");A.removeListener(this.monthEl,"change");if(this.__isIEQuirks){A.removeListener(this.cal.oDomContainer,"resize",this._syncMask);}this.purgeKeyListeners();},applyKeyListeners:function(){var D=YAHOO.util.Event,A=YAHOO.env.ua;var C=(A.ie||A.webkit)?"keydown":"keypress";var B=(A.ie||A.opera||A.webkit)?"keydown":"keypress";D.on(this.yearEl,"keypress",this._handleEnterKey,this,true);D.on(this.yearEl,C,this._handleDirectionKeys,this,true);D.on(this.lastCtrl,B,this._handleTabKey,this,true);D.on(this.firstCtrl,B,this._handleShiftTabKey,this,true);},purgeKeyListeners:function(){var D=YAHOO.util.Event,A=YAHOO.env.ua;var C=(A.ie||A.webkit)?"keydown":"keypress";var B=(A.ie||A.opera||A.webkit)?"keydown":"keypress";D.removeListener(this.yearEl,"keypress",this._handleEnterKey);D.removeListener(this.yearEl,C,this._handleDirectionKeys);D.removeListener(this.lastCtrl,B,this._handleTabKey);D.removeListener(this.firstCtrl,B,this._handleShiftTabKey);},submit:function(){if(this.validate()){this.hide();this.setMonth(this._getMonthFromUI());this.setYear(this._getYearFromUI());var B=this.cal;var A=YAHOO.widget.CalendarNavigator.UPDATE_DELAY;if(A>0){var C=this;window.setTimeout(function(){C._update(B);},A);}else{this._update(B);}}},_update:function(A){A.setYear(this.getYear());A.setMonth(this.getMonth());A.render();},cancel:function(){this.hide();},validate:function(){if(this._getYearFromUI()!==null){this.clearErrors();return true;}else{this.setYearError();this.setError(this.__getCfg("invalidYear",true));return false;}},setError:function(A){if(this.errorEl){this.errorEl.innerHTML=A;this._show(this.errorEl,true);}},clearError:function(){if(this.errorEl){this.errorEl.innerHTML="";this._show(this.errorEl,false);}},setYearError:function(){YAHOO.util.Dom.addClass(this.yearEl,YAHOO.widget.CalendarNavigator.CLASSES.INVALID);},clearYearError:function(){YAHOO.util.Dom.removeClass(this.yearEl,YAHOO.widget.CalendarNavigator.CLASSES.INVALID);},clearErrors:function(){this.clearError();this.clearYearError();},setInitialFocus:function(){var A=this.submitEl,C=this.__getCfg("initialFocus");if(C&&C.toLowerCase){C=C.toLowerCase();if(C=="year"){A=this.yearEl;try{this.yearEl.select();}catch(B){}}else{if(C=="month"){A=this.monthEl;}}}if(A&&YAHOO.lang.isFunction(A.focus)){try{A.focus();}catch(D){}}},erase:function(){if(this.__rendered){this.purgeListeners();this.yearEl=null;this.monthEl=null;this.errorEl=null;this.submitEl=null;this.cancelEl=null;this.firstCtrl=null;this.lastCtrl=null;if(this.navEl){this.navEl.innerHTML="";}var B=this.navEl.parentNode;if(B){B.removeChild(this.navEl);}this.navEl=null;var A=this.maskEl.parentNode;if(A){A.removeChild(this.maskEl);}this.maskEl=null;this.__rendered=false;}},destroy:function(){this.erase();this._doc=null;this.cal=null;this.id=null;},_show:function(B,A){if(B){YAHOO.util.Dom.setStyle(B,"display",(A)?"block":"none");}},_getMonthFromUI:function(){if(this.monthEl){return this.monthEl.selectedIndex;}else{return 0;}},_getYearFromUI:function(){var B=YAHOO.widget.CalendarNavigator;var A=null;if(this.yearEl){var C=this.yearEl.value;C=C.replace(B.TRIM,"$1");if(B.YR_PATTERN.test(C)){A=parseInt(C,10);}}return A;},_updateYearUI:function(){if(this.yearEl&&this._year!==null){this.yearEl.value=this._year;}},_updateMonthUI:function(){if(this.monthEl){this.monthEl.selectedIndex=this._month;}},_setFirstLastElements:function(){this.firstCtrl=this.monthEl;this.lastCtrl=this.cancelEl;if(this.__isMac){if(YAHOO.env.ua.webkit&&YAHOO.env.ua.webkit<420){this.firstCtrl=this.monthEl;this.lastCtrl=this.yearEl;
-}if(YAHOO.env.ua.gecko){this.firstCtrl=this.yearEl;this.lastCtrl=this.yearEl;}}},_handleEnterKey:function(B){var A=YAHOO.util.KeyListener.KEY;if(YAHOO.util.Event.getCharCode(B)==A.ENTER){YAHOO.util.Event.preventDefault(B);this.submit();}},_handleDirectionKeys:function(H){var G=YAHOO.util.Event,A=YAHOO.util.KeyListener.KEY,D=YAHOO.widget.CalendarNavigator;var F=(this.yearEl.value)?parseInt(this.yearEl.value,10):null;if(isFinite(F)){var B=false;switch(G.getCharCode(H)){case A.UP:this.yearEl.value=F+D.YR_MINOR_INC;B=true;break;case A.DOWN:this.yearEl.value=Math.max(F-D.YR_MINOR_INC,0);B=true;break;case A.PAGE_UP:this.yearEl.value=F+D.YR_MAJOR_INC;B=true;break;case A.PAGE_DOWN:this.yearEl.value=Math.max(F-D.YR_MAJOR_INC,0);B=true;break;default:break;}if(B){G.preventDefault(H);try{this.yearEl.select();}catch(C){}}}},_handleTabKey:function(D){var C=YAHOO.util.Event,A=YAHOO.util.KeyListener.KEY;if(C.getCharCode(D)==A.TAB&&!D.shiftKey){try{C.preventDefault(D);this.firstCtrl.focus();}catch(B){}}},_handleShiftTabKey:function(D){var C=YAHOO.util.Event,A=YAHOO.util.KeyListener.KEY;if(D.shiftKey&&C.getCharCode(D)==A.TAB){try{C.preventDefault(D);this.lastCtrl.focus();}catch(B){}}},__getCfg:function(D,B){var C=YAHOO.widget.CalendarNavigator._DEFAULT_CFG;var A=this.cal.cfg.getProperty("navigator");if(B){return(A!==true&&A.strings&&A.strings[D])?A.strings[D]:C.strings[D];}else{return(A!==true&&A[D])?A[D]:C[D];}},__isMac:(navigator.userAgent.toLowerCase().indexOf("macintosh")!=-1)};YAHOO.register("calendar",YAHOO.widget.Calendar,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/calendar/calendar.js b/eclipse.org-common/yui/2.6.0/build/calendar/calendar.js
deleted file mode 100644
index 69ddc19..0000000
--- a/eclipse.org-common/yui/2.6.0/build/calendar/calendar.js
+++ /dev/null
@@ -1,7138 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function () {
-
-    /**
-    * Config is a utility used within an Object to allow the implementer to
-    * maintain a list of local configuration properties and listen for changes 
-    * to those properties dynamically using CustomEvent. The initial values are 
-    * also maintained so that the configuration can be reset at any given point 
-    * to its initial state.
-    * @namespace YAHOO.util
-    * @class Config
-    * @constructor
-    * @param {Object} owner The owner Object to which this Config Object belongs
-    */
-    YAHOO.util.Config = function (owner) {
-
-        if (owner) {
-            this.init(owner);
-        }
-
-
-    };
-
-
-    var Lang = YAHOO.lang,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Config = YAHOO.util.Config;
-
-
-    /**
-     * Constant representing the CustomEvent type for the config changed event.
-     * @property YAHOO.util.Config.CONFIG_CHANGED_EVENT
-     * @private
-     * @static
-     * @final
-     */
-    Config.CONFIG_CHANGED_EVENT = "configChanged";
-    
-    /**
-     * Constant representing the boolean type string
-     * @property YAHOO.util.Config.BOOLEAN_TYPE
-     * @private
-     * @static
-     * @final
-     */
-    Config.BOOLEAN_TYPE = "boolean";
-    
-    Config.prototype = {
-     
-        /**
-        * Object reference to the owner of this Config Object
-        * @property owner
-        * @type Object
-        */
-        owner: null,
-        
-        /**
-        * Boolean flag that specifies whether a queue is currently 
-        * being executed
-        * @property queueInProgress
-        * @type Boolean
-        */
-        queueInProgress: false,
-        
-        /**
-        * Maintains the local collection of configuration property objects and 
-        * their specified values
-        * @property config
-        * @private
-        * @type Object
-        */ 
-        config: null,
-        
-        /**
-        * Maintains the local collection of configuration property objects as 
-        * they were initially applied.
-        * This object is used when resetting a property.
-        * @property initialConfig
-        * @private
-        * @type Object
-        */ 
-        initialConfig: null,
-        
-        /**
-        * Maintains the local, normalized CustomEvent queue
-        * @property eventQueue
-        * @private
-        * @type Object
-        */ 
-        eventQueue: null,
-        
-        /**
-        * Custom Event, notifying subscribers when Config properties are set 
-        * (setProperty is called without the silent flag
-        * @event configChangedEvent
-        */
-        configChangedEvent: null,
-    
-        /**
-        * Initializes the configuration Object and all of its local members.
-        * @method init
-        * @param {Object} owner The owner Object to which this Config 
-        * Object belongs
-        */
-        init: function (owner) {
-    
-            this.owner = owner;
-    
-            this.configChangedEvent = 
-                this.createEvent(Config.CONFIG_CHANGED_EVENT);
-    
-            this.configChangedEvent.signature = CustomEvent.LIST;
-            this.queueInProgress = false;
-            this.config = {};
-            this.initialConfig = {};
-            this.eventQueue = [];
-        
-        },
-        
-        /**
-        * Validates that the value passed in is a Boolean.
-        * @method checkBoolean
-        * @param {Object} val The value to validate
-        * @return {Boolean} true, if the value is valid
-        */ 
-        checkBoolean: function (val) {
-            return (typeof val == Config.BOOLEAN_TYPE);
-        },
-        
-        /**
-        * Validates that the value passed in is a number.
-        * @method checkNumber
-        * @param {Object} val The value to validate
-        * @return {Boolean} true, if the value is valid
-        */
-        checkNumber: function (val) {
-            return (!isNaN(val));
-        },
-        
-        /**
-        * Fires a configuration property event using the specified value. 
-        * @method fireEvent
-        * @private
-        * @param {String} key The configuration property's name
-        * @param {value} Object The value of the correct type for the property
-        */ 
-        fireEvent: function ( key, value ) {
-            var property = this.config[key];
-        
-            if (property && property.event) {
-                property.event.fire(value);
-            } 
-        },
-        
-        /**
-        * Adds a property to the Config Object's private config hash.
-        * @method addProperty
-        * @param {String} key The configuration property's name
-        * @param {Object} propertyObject The Object containing all of this 
-        * property's arguments
-        */
-        addProperty: function ( key, propertyObject ) {
-            key = key.toLowerCase();
-        
-            this.config[key] = propertyObject;
-        
-            propertyObject.event = this.createEvent(key, { scope: this.owner });
-            propertyObject.event.signature = CustomEvent.LIST;
-            
-            
-            propertyObject.key = key;
-        
-            if (propertyObject.handler) {
-                propertyObject.event.subscribe(propertyObject.handler, 
-                    this.owner);
-            }
-        
-            this.setProperty(key, propertyObject.value, true);
-            
-            if (! propertyObject.suppressEvent) {
-                this.queueProperty(key, propertyObject.value);
-            }
-            
-        },
-        
-        /**
-        * Returns a key-value configuration map of the values currently set in  
-        * the Config Object.
-        * @method getConfig
-        * @return {Object} The current config, represented in a key-value map
-        */
-        getConfig: function () {
-        
-            var cfg = {},
-                currCfg = this.config,
-                prop,
-                property;
-                
-            for (prop in currCfg) {
-                if (Lang.hasOwnProperty(currCfg, prop)) {
-                    property = currCfg[prop];
-                    if (property && property.event) {
-                        cfg[prop] = property.value;
-                    }
-                }
-            }
-
-            return cfg;
-        },
-        
-        /**
-        * Returns the value of specified property.
-        * @method getProperty
-        * @param {String} key The name of the property
-        * @return {Object}  The value of the specified property
-        */
-        getProperty: function (key) {
-            var property = this.config[key.toLowerCase()];
-            if (property && property.event) {
-                return property.value;
-            } else {
-                return undefined;
-            }
-        },
-        
-        /**
-        * Resets the specified property's value to its initial value.
-        * @method resetProperty
-        * @param {String} key The name of the property
-        * @return {Boolean} True is the property was reset, false if not
-        */
-        resetProperty: function (key) {
-    
-            key = key.toLowerCase();
-        
-            var property = this.config[key];
-    
-            if (property && property.event) {
-    
-                if (this.initialConfig[key] && 
-                    !Lang.isUndefined(this.initialConfig[key])) {
-    
-                    this.setProperty(key, this.initialConfig[key]);
-
-                    return true;
-    
-                }
-    
-            } else {
-    
-                return false;
-            }
-    
-        },
-        
-        /**
-        * Sets the value of a property. If the silent property is passed as 
-        * true, the property's event will not be fired.
-        * @method setProperty
-        * @param {String} key The name of the property
-        * @param {String} value The value to set the property to
-        * @param {Boolean} silent Whether the value should be set silently, 
-        * without firing the property event.
-        * @return {Boolean} True, if the set was successful, false if it failed.
-        */
-        setProperty: function (key, value, silent) {
-        
-            var property;
-        
-            key = key.toLowerCase();
-        
-            if (this.queueInProgress && ! silent) {
-                // Currently running through a queue... 
-                this.queueProperty(key,value);
-                return true;
-    
-            } else {
-                property = this.config[key];
-                if (property && property.event) {
-                    if (property.validator && !property.validator(value)) {
-                        return false;
-                    } else {
-                        property.value = value;
-                        if (! silent) {
-                            this.fireEvent(key, value);
-                            this.configChangedEvent.fire([key, value]);
-                        }
-                        return true;
-                    }
-                } else {
-                    return false;
-                }
-            }
-        },
-        
-        /**
-        * Sets the value of a property and queues its event to execute. If the 
-        * event is already scheduled to execute, it is
-        * moved from its current position to the end of the queue.
-        * @method queueProperty
-        * @param {String} key The name of the property
-        * @param {String} value The value to set the property to
-        * @return {Boolean}  true, if the set was successful, false if 
-        * it failed.
-        */ 
-        queueProperty: function (key, value) {
-        
-            key = key.toLowerCase();
-        
-            var property = this.config[key],
-                foundDuplicate = false,
-                iLen,
-                queueItem,
-                queueItemKey,
-                queueItemValue,
-                sLen,
-                supercedesCheck,
-                qLen,
-                queueItemCheck,
-                queueItemCheckKey,
-                queueItemCheckValue,
-                i,
-                s,
-                q;
-                                
-            if (property && property.event) {
-    
-                if (!Lang.isUndefined(value) && property.validator && 
-                    !property.validator(value)) { // validator
-                    return false;
-                } else {
-        
-                    if (!Lang.isUndefined(value)) {
-                        property.value = value;
-                    } else {
-                        value = property.value;
-                    }
-        
-                    foundDuplicate = false;
-                    iLen = this.eventQueue.length;
-        
-                    for (i = 0; i < iLen; i++) {
-                        queueItem = this.eventQueue[i];
-        
-                        if (queueItem) {
-                            queueItemKey = queueItem[0];
-                            queueItemValue = queueItem[1];
-
-                            if (queueItemKey == key) {
-    
-                                /*
-                                    found a dupe... push to end of queue, null 
-                                    current item, and break
-                                */
-    
-                                this.eventQueue[i] = null;
-    
-                                this.eventQueue.push(
-                                    [key, (!Lang.isUndefined(value) ? 
-                                    value : queueItemValue)]);
-    
-                                foundDuplicate = true;
-                                break;
-                            }
-                        }
-                    }
-                    
-                    // this is a refire, or a new property in the queue
-    
-                    if (! foundDuplicate && !Lang.isUndefined(value)) { 
-                        this.eventQueue.push([key, value]);
-                    }
-                }
-        
-                if (property.supercedes) {
-
-                    sLen = property.supercedes.length;
-
-                    for (s = 0; s < sLen; s++) {
-
-                        supercedesCheck = property.supercedes[s];
-                        qLen = this.eventQueue.length;
-
-                        for (q = 0; q < qLen; q++) {
-                            queueItemCheck = this.eventQueue[q];
-
-                            if (queueItemCheck) {
-                                queueItemCheckKey = queueItemCheck[0];
-                                queueItemCheckValue = queueItemCheck[1];
-
-                                if (queueItemCheckKey == 
-                                    supercedesCheck.toLowerCase() ) {
-
-                                    this.eventQueue.push([queueItemCheckKey, 
-                                        queueItemCheckValue]);
-
-                                    this.eventQueue[q] = null;
-                                    break;
-
-                                }
-                            }
-                        }
-                    }
-                }
-
-
-                return true;
-            } else {
-                return false;
-            }
-        },
-        
-        /**
-        * Fires the event for a property using the property's current value.
-        * @method refireEvent
-        * @param {String} key The name of the property
-        */
-        refireEvent: function (key) {
-    
-            key = key.toLowerCase();
-        
-            var property = this.config[key];
-    
-            if (property && property.event && 
-    
-                !Lang.isUndefined(property.value)) {
-    
-                if (this.queueInProgress) {
-    
-                    this.queueProperty(key);
-    
-                } else {
-    
-                    this.fireEvent(key, property.value);
-    
-                }
-    
-            }
-        },
-        
-        /**
-        * Applies a key-value Object literal to the configuration, replacing  
-        * any existing values, and queueing the property events.
-        * Although the values will be set, fireQueue() must be called for their 
-        * associated events to execute.
-        * @method applyConfig
-        * @param {Object} userConfig The configuration Object literal
-        * @param {Boolean} init  When set to true, the initialConfig will 
-        * be set to the userConfig passed in, so that calling a reset will 
-        * reset the properties to the passed values.
-        */
-        applyConfig: function (userConfig, init) {
-        
-            var sKey,
-                oConfig;
-
-            if (init) {
-                oConfig = {};
-                for (sKey in userConfig) {
-                    if (Lang.hasOwnProperty(userConfig, sKey)) {
-                        oConfig[sKey.toLowerCase()] = userConfig[sKey];
-                    }
-                }
-                this.initialConfig = oConfig;
-            }
-
-            for (sKey in userConfig) {
-                if (Lang.hasOwnProperty(userConfig, sKey)) {
-                    this.queueProperty(sKey, userConfig[sKey]);
-                }
-            }
-        },
-        
-        /**
-        * Refires the events for all configuration properties using their 
-        * current values.
-        * @method refresh
-        */
-        refresh: function () {
-
-            var prop;
-
-            for (prop in this.config) {
-                if (Lang.hasOwnProperty(this.config, prop)) {
-                    this.refireEvent(prop);
-                }
-            }
-        },
-        
-        /**
-        * Fires the normalized list of queued property change events
-        * @method fireQueue
-        */
-        fireQueue: function () {
-        
-            var i, 
-                queueItem,
-                key,
-                value,
-                property;
-        
-            this.queueInProgress = true;
-            for (i = 0;i < this.eventQueue.length; i++) {
-                queueItem = this.eventQueue[i];
-                if (queueItem) {
-        
-                    key = queueItem[0];
-                    value = queueItem[1];
-                    property = this.config[key];
-        
-                    property.value = value;
-        
-                    this.fireEvent(key,value);
-                }
-            }
-            
-            this.queueInProgress = false;
-            this.eventQueue = [];
-        },
-        
-        /**
-        * Subscribes an external handler to the change event for any 
-        * given property. 
-        * @method subscribeToConfigEvent
-        * @param {String} key The property name
-        * @param {Function} handler The handler function to use subscribe to 
-        * the property's event
-        * @param {Object} obj The Object to use for scoping the event handler 
-        * (see CustomEvent documentation)
-        * @param {Boolean} override Optional. If true, will override "this"  
-        * within the handler to map to the scope Object passed into the method.
-        * @return {Boolean} True, if the subscription was successful, 
-        * otherwise false.
-        */ 
-        subscribeToConfigEvent: function (key, handler, obj, override) {
-    
-            var property = this.config[key.toLowerCase()];
-    
-            if (property && property.event) {
-                if (!Config.alreadySubscribed(property.event, handler, obj)) {
-                    property.event.subscribe(handler, obj, override);
-                }
-                return true;
-            } else {
-                return false;
-            }
-    
-        },
-        
-        /**
-        * Unsubscribes an external handler from the change event for any 
-        * given property. 
-        * @method unsubscribeFromConfigEvent
-        * @param {String} key The property name
-        * @param {Function} handler The handler function to use subscribe to 
-        * the property's event
-        * @param {Object} obj The Object to use for scoping the event 
-        * handler (see CustomEvent documentation)
-        * @return {Boolean} True, if the unsubscription was successful, 
-        * otherwise false.
-        */
-        unsubscribeFromConfigEvent: function (key, handler, obj) {
-            var property = this.config[key.toLowerCase()];
-            if (property && property.event) {
-                return property.event.unsubscribe(handler, obj);
-            } else {
-                return false;
-            }
-        },
-        
-        /**
-        * Returns a string representation of the Config object
-        * @method toString
-        * @return {String} The Config object in string format.
-        */
-        toString: function () {
-            var output = "Config";
-            if (this.owner) {
-                output += " [" + this.owner.toString() + "]";
-            }
-            return output;
-        },
-        
-        /**
-        * Returns a string representation of the Config object's current 
-        * CustomEvent queue
-        * @method outputEventQueue
-        * @return {String} The string list of CustomEvents currently queued 
-        * for execution
-        */
-        outputEventQueue: function () {
-
-            var output = "",
-                queueItem,
-                q,
-                nQueue = this.eventQueue.length;
-              
-            for (q = 0; q < nQueue; q++) {
-                queueItem = this.eventQueue[q];
-                if (queueItem) {
-                    output += queueItem[0] + "=" + queueItem[1] + ", ";
-                }
-            }
-            return output;
-        },
-
-        /**
-        * Sets all properties to null, unsubscribes all listeners from each 
-        * property's change event and all listeners from the configChangedEvent.
-        * @method destroy
-        */
-        destroy: function () {
-
-            var oConfig = this.config,
-                sProperty,
-                oProperty;
-
-
-            for (sProperty in oConfig) {
-            
-                if (Lang.hasOwnProperty(oConfig, sProperty)) {
-
-                    oProperty = oConfig[sProperty];
-
-                    oProperty.event.unsubscribeAll();
-                    oProperty.event = null;
-
-                }
-            
-            }
-            
-            this.configChangedEvent.unsubscribeAll();
-            
-            this.configChangedEvent = null;
-            this.owner = null;
-            this.config = null;
-            this.initialConfig = null;
-            this.eventQueue = null;
-        
-        }
-
-    };
-    
-    
-    
-    /**
-    * Checks to determine if a particular function/Object pair are already 
-    * subscribed to the specified CustomEvent
-    * @method YAHOO.util.Config.alreadySubscribed
-    * @static
-    * @param {YAHOO.util.CustomEvent} evt The CustomEvent for which to check 
-    * the subscriptions
-    * @param {Function} fn The function to look for in the subscribers list
-    * @param {Object} obj The execution scope Object for the subscription
-    * @return {Boolean} true, if the function/Object pair is already subscribed 
-    * to the CustomEvent passed in
-    */
-    Config.alreadySubscribed = function (evt, fn, obj) {
-    
-        var nSubscribers = evt.subscribers.length,
-            subsc,
-            i;
-
-        if (nSubscribers > 0) {
-            i = nSubscribers - 1;
-            do {
-                subsc = evt.subscribers[i];
-                if (subsc && subsc.obj == obj && subsc.fn == fn) {
-                    return true;
-                }
-            }
-            while (i--);
-        }
-
-        return false;
-
-    };
-
-    YAHOO.lang.augmentProto(Config, YAHOO.util.EventProvider);
-
-}());
-
-/**
-* YAHOO.widget.DateMath is used for simple date manipulation. The class is a static utility
-* used for adding, subtracting, and comparing dates.
-* @namespace YAHOO.widget
-* @class DateMath
-*/
-YAHOO.widget.DateMath = {
-	/**
-	* Constant field representing Day
-	* @property DAY
-	* @static
-	* @final
-	* @type String
-	*/
-	DAY : "D",
-
-	/**
-	* Constant field representing Week
-	* @property WEEK
-	* @static
-	* @final
-	* @type String
-	*/
-	WEEK : "W",
-
-	/**
-	* Constant field representing Year
-	* @property YEAR
-	* @static
-	* @final
-	* @type String
-	*/
-	YEAR : "Y",
-
-	/**
-	* Constant field representing Month
-	* @property MONTH
-	* @static
-	* @final
-	* @type String
-	*/
-	MONTH : "M",
-
-	/**
-	* Constant field representing one day, in milliseconds
-	* @property ONE_DAY_MS
-	* @static
-	* @final
-	* @type Number
-	*/
-	ONE_DAY_MS : 1000*60*60*24,
-	
-	/**
-	 * Constant field representing the date in first week of January
-	 * which identifies the first week of the year.
-	 * <p>
-	 * In the U.S, Jan 1st is normally used based on a Sunday start of week.
-	 * ISO 8601, used widely throughout Europe, uses Jan 4th, based on a Monday start of week.
-	 * </p>
-	 * @property WEEK_ONE_JAN_DATE
-	 * @static
-	 * @type Number
-	 */
-	WEEK_ONE_JAN_DATE : 1,
-
-	/**
-	* Adds the specified amount of time to the this instance.
-	* @method add
-	* @param {Date} date	The JavaScript Date object to perform addition on
-	* @param {String} field	The field constant to be used for performing addition.
-	* @param {Number} amount	The number of units (measured in the field constant) to add to the date.
-	* @return {Date} The resulting Date object
-	*/
-	add : function(date, field, amount) {
-		var d = new Date(date.getTime());
-		switch (field) {
-			case this.MONTH:
-				var newMonth = date.getMonth() + amount;
-				var years = 0;
-
-				if (newMonth < 0) {
-					while (newMonth < 0) {
-						newMonth += 12;
-						years -= 1;
-					}
-				} else if (newMonth > 11) {
-					while (newMonth > 11) {
-						newMonth -= 12;
-						years += 1;
-					}
-				}
-
-				d.setMonth(newMonth);
-				d.setFullYear(date.getFullYear() + years);
-				break;
-			case this.DAY:
-				this._addDays(d, amount);
-				// d.setDate(date.getDate() + amount);
-				break;
-			case this.YEAR:
-				d.setFullYear(date.getFullYear() + amount);
-				break;
-			case this.WEEK:
-				this._addDays(d, (amount * 7));
-				// d.setDate(date.getDate() + (amount * 7));
-				break;
-		}
-		return d;
-	},
-
-	/**
-	 * Private helper method to account for bug in Safari 2 (webkit < 420)
-	 * when Date.setDate(n) is called with n less than -128 or greater than 127.
-	 * <p>
-	 * Fix approach and original findings are available here:
-	 * http://brianary.blogspot.com/2006/03/safari-date-bug.html
-	 * </p>
-	 * @method _addDays
-	 * @param {Date} d JavaScript date object
-	 * @param {Number} nDays The number of days to add to the date object (can be negative)
-	 * @private
-	 */
-	_addDays : function(d, nDays) {
-		if (YAHOO.env.ua.webkit && YAHOO.env.ua.webkit < 420) {
-			if (nDays < 0) {
-				// Ensure we don't go below -128 (getDate() is always 1 to 31, so we won't go above 127)
-				for(var min = -128; nDays < min; nDays -= min) {
-					d.setDate(d.getDate() + min);
-				}
-			} else {
-				// Ensure we don't go above 96 + 31 = 127
-				for(var max = 96; nDays > max; nDays -= max) {
-					d.setDate(d.getDate() + max);
-				}
-			}
-			// nDays should be remainder between -128 and 96
-		}
-		d.setDate(d.getDate() + nDays);
-	},
-
-	/**
-	* Subtracts the specified amount of time from the this instance.
-	* @method subtract
-	* @param {Date} date	The JavaScript Date object to perform subtraction on
-	* @param {Number} field	The this field constant to be used for performing subtraction.
-	* @param {Number} amount	The number of units (measured in the field constant) to subtract from the date.
-	* @return {Date} The resulting Date object
-	*/
-	subtract : function(date, field, amount) {
-		return this.add(date, field, (amount*-1));
-	},
-
-	/**
-	* Determines whether a given date is before another date on the calendar.
-	* @method before
-	* @param {Date} date		The Date object to compare with the compare argument
-	* @param {Date} compareTo	The Date object to use for the comparison
-	* @return {Boolean} true if the date occurs before the compared date; false if not.
-	*/
-	before : function(date, compareTo) {
-		var ms = compareTo.getTime();
-		if (date.getTime() < ms) {
-			return true;
-		} else {
-			return false;
-		}
-	},
-
-	/**
-	* Determines whether a given date is after another date on the calendar.
-	* @method after
-	* @param {Date} date		The Date object to compare with the compare argument
-	* @param {Date} compareTo	The Date object to use for the comparison
-	* @return {Boolean} true if the date occurs after the compared date; false if not.
-	*/
-	after : function(date, compareTo) {
-		var ms = compareTo.getTime();
-		if (date.getTime() > ms) {
-			return true;
-		} else {
-			return false;
-		}
-	},
-
-	/**
-	* Determines whether a given date is between two other dates on the calendar.
-	* @method between
-	* @param {Date} date		The date to check for
-	* @param {Date} dateBegin	The start of the range
-	* @param {Date} dateEnd		The end of the range
-	* @return {Boolean} true if the date occurs between the compared dates; false if not.
-	*/
-	between : function(date, dateBegin, dateEnd) {
-		if (this.after(date, dateBegin) && this.before(date, dateEnd)) {
-			return true;
-		} else {
-			return false;
-		}
-	},
-	
-	/**
-	* Retrieves a JavaScript Date object representing January 1 of any given year.
-	* @method getJan1
-	* @param {Number} calendarYear		The calendar year for which to retrieve January 1
-	* @return {Date}	January 1 of the calendar year specified.
-	*/
-	getJan1 : function(calendarYear) {
-		return this.getDate(calendarYear,0,1);
-	},
-
-	/**
-	* Calculates the number of days the specified date is from January 1 of the specified calendar year.
-	* Passing January 1 to this function would return an offset value of zero.
-	* @method getDayOffset
-	* @param {Date}	date	The JavaScript date for which to find the offset
-	* @param {Number} calendarYear	The calendar year to use for determining the offset
-	* @return {Number}	The number of days since January 1 of the given year
-	*/
-	getDayOffset : function(date, calendarYear) {
-		var beginYear = this.getJan1(calendarYear); // Find the start of the year. This will be in week 1.
-		
-		// Find the number of days the passed in date is away from the calendar year start
-		var dayOffset = Math.ceil((date.getTime()-beginYear.getTime()) / this.ONE_DAY_MS);
-		return dayOffset;
-	},
-
-	/**
-	* Calculates the week number for the given date. Can currently support standard
-	* U.S. week numbers, based on Jan 1st defining the 1st week of the year, and 
-	* ISO8601 week numbers, based on Jan 4th defining the 1st week of the year.
-	* 
-	* @method getWeekNumber
-	* @param {Date}	date The JavaScript date for which to find the week number
-	* @param {Number} firstDayOfWeek The index of the first day of the week (0 = Sun, 1 = Mon ... 6 = Sat).
-	* Defaults to 0
-	* @param {Number} janDate The date in the first week of January which defines week one for the year
-	* Defaults to the value of YAHOO.widget.DateMath.WEEK_ONE_JAN_DATE, which is 1 (Jan 1st). 
-	* For the U.S, this is normally Jan 1st. ISO8601 uses Jan 4th to define the first week of the year.
-	* 
-	* @return {Number} The number of the week containing the given date.
-	*/
-	getWeekNumber : function(date, firstDayOfWeek, janDate) {
-
-		// Setup Defaults
-		firstDayOfWeek = firstDayOfWeek || 0;
-		janDate = janDate || this.WEEK_ONE_JAN_DATE;
-
-		var targetDate = this.clearTime(date),
-			startOfWeek,
-			endOfWeek;
-
-		if (targetDate.getDay() === firstDayOfWeek) { 
-			startOfWeek = targetDate;
-		} else {
-			startOfWeek = this.getFirstDayOfWeek(targetDate, firstDayOfWeek);
-		}
-
-		var startYear = startOfWeek.getFullYear(),
-			startTime = startOfWeek.getTime();
-
-		// DST shouldn't be a problem here, math is quicker than setDate();
-		endOfWeek = new Date(startOfWeek.getTime() + 6*this.ONE_DAY_MS);
-
-		var weekNum;
-		if (startYear !== endOfWeek.getFullYear() && endOfWeek.getDate() >= janDate) {
-			// If years don't match, endOfWeek is in Jan. and if the 
-			// week has WEEK_ONE_JAN_DATE in it, it's week one by definition.
-			weekNum = 1;
-		} else {
-			// Get the 1st day of the 1st week, and 
-			// find how many days away we are from it.
-			var weekOne = this.clearTime(this.getDate(startYear, 0, janDate)),
-				weekOneDayOne = this.getFirstDayOfWeek(weekOne, firstDayOfWeek);
-
-			// Round days to smoothen out 1 hr DST diff
-			var daysDiff  = Math.round((targetDate.getTime() - weekOneDayOne.getTime())/this.ONE_DAY_MS);
-
-			// Calc. Full Weeks
-			var rem = daysDiff % 7;
-			var weeksDiff = (daysDiff - rem)/7;
-			weekNum = weeksDiff + 1;
-		}
-		return weekNum;
-	},
-
-	/**
-	 * Get the first day of the week, for the give date. 
-	 * @param {Date} dt The date in the week for which the first day is required.
-	 * @param {Number} startOfWeek The index for the first day of the week, 0 = Sun, 1 = Mon ... 6 = Sat (defaults to 0)
-	 * @return {Date} The first day of the week
-	 */
-	getFirstDayOfWeek : function (dt, startOfWeek) {
-		startOfWeek = startOfWeek || 0;
-		var dayOfWeekIndex = dt.getDay(),
-			dayOfWeek = (dayOfWeekIndex - startOfWeek + 7) % 7;
-
-		return this.subtract(dt, this.DAY, dayOfWeek);
-	},
-
-	/**
-	* Determines if a given week overlaps two different years.
-	* @method isYearOverlapWeek
-	* @param {Date}	weekBeginDate	The JavaScript Date representing the first day of the week.
-	* @return {Boolean}	true if the date overlaps two different years.
-	*/
-	isYearOverlapWeek : function(weekBeginDate) {
-		var overlaps = false;
-		var nextWeek = this.add(weekBeginDate, this.DAY, 6);
-		if (nextWeek.getFullYear() != weekBeginDate.getFullYear()) {
-			overlaps = true;
-		}
-		return overlaps;
-	},
-
-	/**
-	* Determines if a given week overlaps two different months.
-	* @method isMonthOverlapWeek
-	* @param {Date}	weekBeginDate	The JavaScript Date representing the first day of the week.
-	* @return {Boolean}	true if the date overlaps two different months.
-	*/
-	isMonthOverlapWeek : function(weekBeginDate) {
-		var overlaps = false;
-		var nextWeek = this.add(weekBeginDate, this.DAY, 6);
-		if (nextWeek.getMonth() != weekBeginDate.getMonth()) {
-			overlaps = true;
-		}
-		return overlaps;
-	},
-
-	/**
-	* Gets the first day of a month containing a given date.
-	* @method findMonthStart
-	* @param {Date}	date	The JavaScript Date used to calculate the month start
-	* @return {Date}		The JavaScript Date representing the first day of the month
-	*/
-	findMonthStart : function(date) {
-		var start = this.getDate(date.getFullYear(), date.getMonth(), 1);
-		return start;
-	},
-
-	/**
-	* Gets the last day of a month containing a given date.
-	* @method findMonthEnd
-	* @param {Date}	date	The JavaScript Date used to calculate the month end
-	* @return {Date}		The JavaScript Date representing the last day of the month
-	*/
-	findMonthEnd : function(date) {
-		var start = this.findMonthStart(date);
-		var nextMonth = this.add(start, this.MONTH, 1);
-		var end = this.subtract(nextMonth, this.DAY, 1);
-		return end;
-	},
-
-	/**
-	* Clears the time fields from a given date, effectively setting the time to 12 noon.
-	* @method clearTime
-	* @param {Date}	date	The JavaScript Date for which the time fields will be cleared
-	* @return {Date}		The JavaScript Date cleared of all time fields
-	*/
-	clearTime : function(date) {
-		date.setHours(12,0,0,0);
-		return date;
-	},
-
-	/**
-	 * Returns a new JavaScript Date object, representing the given year, month and date. Time fields (hr, min, sec, ms) on the new Date object
-	 * are set to 0. The method allows Date instances to be created with the a year less than 100. "new Date(year, month, date)" implementations 
-	 * set the year to 19xx if a year (xx) which is less than 100 is provided.
-	 * <p>
-	 * <em>NOTE:</em>Validation on argument values is not performed. It is the caller's responsibility to ensure
-	 * arguments are valid as per the ECMAScript-262 Date object specification for the new Date(year, month[, date]) constructor.
-	 * </p>
-	 * @method getDate
-	 * @param {Number} y Year.
-	 * @param {Number} m Month index from 0 (Jan) to 11 (Dec).
-	 * @param {Number} d (optional) Date from 1 to 31. If not provided, defaults to 1.
-	 * @return {Date} The JavaScript date object with year, month, date set as provided.
-	 */
-	getDate : function(y, m, d) {
-		var dt = null;
-		if (YAHOO.lang.isUndefined(d)) {
-			d = 1;
-		}
-		if (y >= 100) {
-			dt = new Date(y, m, d);
-		} else {
-			dt = new Date();
-			dt.setFullYear(y);
-			dt.setMonth(m);
-			dt.setDate(d);
-			dt.setHours(0,0,0,0);
-		}
-		return dt;
-	}
-};
-
-/**
-* The Calendar component is a UI control that enables users to choose one or more dates from a graphical calendar presented in a one-month or
-* multi-month interface. Calendars are generated entirely via script and can be navigated without any page refreshes.
-* @module    calendar
-* @title    Calendar
-* @namespace  YAHOO.widget
-* @requires  yahoo,dom,event
-*/
-(function(){
-
-	var Dom = YAHOO.util.Dom,
-		Event = YAHOO.util.Event,
-		Lang = YAHOO.lang,
-		DateMath = YAHOO.widget.DateMath;
-
-/**
-* Calendar is the base class for the Calendar widget. In its most basic
-* implementation, it has the ability to render a calendar widget on the page
-* that can be manipulated to select a single date, move back and forth between
-* months and years.
-* <p>To construct the placeholder for the calendar widget, the code is as
-* follows:
-*	<xmp>
-*		<div id="calContainer"></div>
-*	</xmp>
-* </p>
-* <p>
-* <strong>NOTE: As of 2.4.0, the constructor's ID argument is optional.</strong>
-* The Calendar can be constructed by simply providing a container ID string, 
-* or a reference to a container DIV HTMLElement (the element needs to exist 
-* in the document).
-* 
-* E.g.:
-*	<xmp>
-*		var c = new YAHOO.widget.Calendar("calContainer", configOptions);
-*	</xmp>
-* or:
-*   <xmp>
-*       var containerDiv = YAHOO.util.Dom.get("calContainer");
-*		var c = new YAHOO.widget.Calendar(containerDiv, configOptions);
-*	</xmp>
-* </p>
-* <p>
-* If not provided, the ID will be generated from the container DIV ID by adding an "_t" suffix.
-* For example if an ID is not provided, and the container's ID is "calContainer", the Calendar's ID will be set to "calContainer_t".
-* </p>
-* 
-* @namespace YAHOO.widget
-* @class Calendar
-* @constructor
-* @param {String} id optional The id of the table element that will represent the Calendar widget. As of 2.4.0, this argument is optional.
-* @param {String | HTMLElement} container The id of the container div element that will wrap the Calendar table, or a reference to a DIV element which exists in the document.
-* @param {Object} config optional The configuration object containing the initial configuration values for the Calendar.
-*/
-function Calendar(id, containerId, config) {
-	this.init.apply(this, arguments);
-}
-
-/**
-* The path to be used for images loaded for the Calendar
-* @property YAHOO.widget.Calendar.IMG_ROOT
-* @static
-* @deprecated	You can now customize images by overriding the calclose, calnavleft and calnavright default CSS classes for the close icon, left arrow and right arrow respectively
-* @type String
-*/
-Calendar.IMG_ROOT = null;
-
-/**
-* Type constant used for renderers to represent an individual date (M/D/Y)
-* @property YAHOO.widget.Calendar.DATE
-* @static
-* @final
-* @type String
-*/
-Calendar.DATE = "D";
-
-/**
-* Type constant used for renderers to represent an individual date across any year (M/D)
-* @property YAHOO.widget.Calendar.MONTH_DAY
-* @static
-* @final
-* @type String
-*/
-Calendar.MONTH_DAY = "MD";
-
-/**
-* Type constant used for renderers to represent a weekday
-* @property YAHOO.widget.Calendar.WEEKDAY
-* @static
-* @final
-* @type String
-*/
-Calendar.WEEKDAY = "WD";
-
-/**
-* Type constant used for renderers to represent a range of individual dates (M/D/Y-M/D/Y)
-* @property YAHOO.widget.Calendar.RANGE
-* @static
-* @final
-* @type String
-*/
-Calendar.RANGE = "R";
-
-/**
-* Type constant used for renderers to represent a month across any year
-* @property YAHOO.widget.Calendar.MONTH
-* @static
-* @final
-* @type String
-*/
-Calendar.MONTH = "M";
-
-/**
-* Constant that represents the total number of date cells that are displayed in a given month
-* @property YAHOO.widget.Calendar.DISPLAY_DAYS
-* @static
-* @final
-* @type Number
-*/
-Calendar.DISPLAY_DAYS = 42;
-
-/**
-* Constant used for halting the execution of the remainder of the render stack
-* @property YAHOO.widget.Calendar.STOP_RENDER
-* @static
-* @final
-* @type String
-*/
-Calendar.STOP_RENDER = "S";
-
-/**
-* Constant used to represent short date field string formats (e.g. Tu or Feb)
-* @property YAHOO.widget.Calendar.SHORT
-* @static
-* @final
-* @type String
-*/
-Calendar.SHORT = "short";
-
-/**
-* Constant used to represent long date field string formats (e.g. Monday or February)
-* @property YAHOO.widget.Calendar.LONG
-* @static
-* @final
-* @type String
-*/
-Calendar.LONG = "long";
-
-/**
-* Constant used to represent medium date field string formats (e.g. Mon)
-* @property YAHOO.widget.Calendar.MEDIUM
-* @static
-* @final
-* @type String
-*/
-Calendar.MEDIUM = "medium";
-
-/**
-* Constant used to represent single character date field string formats (e.g. M, T, W)
-* @property YAHOO.widget.Calendar.ONE_CHAR
-* @static
-* @final
-* @type String
-*/
-Calendar.ONE_CHAR = "1char";
-
-/**
-* The set of default Config property keys and values for the Calendar
-* @property YAHOO.widget.Calendar._DEFAULT_CONFIG
-* @final
-* @static
-* @private
-* @type Object
-*/
-Calendar._DEFAULT_CONFIG = {
-	// Default values for pagedate and selected are not class level constants - they are set during instance creation 
-	PAGEDATE : {key:"pagedate", value:null},
-	SELECTED : {key:"selected", value:null},
-	TITLE : {key:"title", value:""},
-	CLOSE : {key:"close", value:false},
-	IFRAME : {key:"iframe", value:(YAHOO.env.ua.ie && YAHOO.env.ua.ie <= 6) ? true : false},
-	MINDATE : {key:"mindate", value:null},
-	MAXDATE : {key:"maxdate", value:null},
-	MULTI_SELECT : {key:"multi_select", value:false},
-	START_WEEKDAY : {key:"start_weekday", value:0},
-	SHOW_WEEKDAYS : {key:"show_weekdays", value:true},
-	SHOW_WEEK_HEADER : {key:"show_week_header", value:false},
-	SHOW_WEEK_FOOTER : {key:"show_week_footer", value:false},
-	HIDE_BLANK_WEEKS : {key:"hide_blank_weeks", value:false},
-	NAV_ARROW_LEFT: {key:"nav_arrow_left", value:null} ,
-	NAV_ARROW_RIGHT : {key:"nav_arrow_right", value:null} ,
-	MONTHS_SHORT : {key:"months_short", value:["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]},
-	MONTHS_LONG: {key:"months_long", value:["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]},
-	WEEKDAYS_1CHAR: {key:"weekdays_1char", value:["S", "M", "T", "W", "T", "F", "S"]},
-	WEEKDAYS_SHORT: {key:"weekdays_short", value:["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"]},
-	WEEKDAYS_MEDIUM: {key:"weekdays_medium", value:["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]},
-	WEEKDAYS_LONG: {key:"weekdays_long", value:["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]},
-	LOCALE_MONTHS:{key:"locale_months", value:"long"},
-	LOCALE_WEEKDAYS:{key:"locale_weekdays", value:"short"},
-	DATE_DELIMITER:{key:"date_delimiter", value:","},
-	DATE_FIELD_DELIMITER:{key:"date_field_delimiter", value:"/"},
-	DATE_RANGE_DELIMITER:{key:"date_range_delimiter", value:"-"},
-	MY_MONTH_POSITION:{key:"my_month_position", value:1},
-	MY_YEAR_POSITION:{key:"my_year_position", value:2},
-	MD_MONTH_POSITION:{key:"md_month_position", value:1},
-	MD_DAY_POSITION:{key:"md_day_position", value:2},
-	MDY_MONTH_POSITION:{key:"mdy_month_position", value:1},
-	MDY_DAY_POSITION:{key:"mdy_day_position", value:2},
-	MDY_YEAR_POSITION:{key:"mdy_year_position", value:3},
-	MY_LABEL_MONTH_POSITION:{key:"my_label_month_position", value:1},
-	MY_LABEL_YEAR_POSITION:{key:"my_label_year_position", value:2},
-	MY_LABEL_MONTH_SUFFIX:{key:"my_label_month_suffix", value:" "},
-	MY_LABEL_YEAR_SUFFIX:{key:"my_label_year_suffix", value:""},
-	NAV: {key:"navigator", value: null},
-	STRINGS : { 
-		key:"strings",
-		value: {
-			previousMonth : "Previous Month",
-			nextMonth : "Next Month",
-			close: "Close"
-		},
-		supercedes : ["close", "title"]
-	}
-};
-
-var DEF_CFG = Calendar._DEFAULT_CONFIG;
-
-/**
-* The set of Custom Event types supported by the Calendar
-* @property YAHOO.widget.Calendar._EVENT_TYPES
-* @final
-* @static
-* @private
-* @type Object
-*/
-Calendar._EVENT_TYPES = {
-	BEFORE_SELECT : "beforeSelect", 
-	SELECT : "select",
-	BEFORE_DESELECT : "beforeDeselect",
-	DESELECT : "deselect",
-	CHANGE_PAGE : "changePage",
-	BEFORE_RENDER : "beforeRender",
-	RENDER : "render",
-	BEFORE_DESTROY : "beforeDestroy",
-	DESTROY : "destroy",
-	RESET : "reset",
-	CLEAR : "clear",
-	BEFORE_HIDE : "beforeHide",
-	HIDE : "hide",
-	BEFORE_SHOW : "beforeShow",
-	SHOW : "show",
-	BEFORE_HIDE_NAV : "beforeHideNav",
-	HIDE_NAV : "hideNav",
-	BEFORE_SHOW_NAV : "beforeShowNav",
-	SHOW_NAV : "showNav",
-	BEFORE_RENDER_NAV : "beforeRenderNav",
-	RENDER_NAV : "renderNav"
-};
-
-/**
-* The set of default style constants for the Calendar
-* @property YAHOO.widget.Calendar._STYLES
-* @final
-* @static
-* @private
-* @type Object
-*/
-Calendar._STYLES = {
-	CSS_ROW_HEADER: "calrowhead",
-	CSS_ROW_FOOTER: "calrowfoot",
-	CSS_CELL : "calcell",
-	CSS_CELL_SELECTOR : "selector",
-	CSS_CELL_SELECTED : "selected",
-	CSS_CELL_SELECTABLE : "selectable",
-	CSS_CELL_RESTRICTED : "restricted",
-	CSS_CELL_TODAY : "today",
-	CSS_CELL_OOM : "oom",
-	CSS_CELL_OOB : "previous",
-	CSS_HEADER : "calheader",
-	CSS_HEADER_TEXT : "calhead",
-	CSS_BODY : "calbody",
-	CSS_WEEKDAY_CELL : "calweekdaycell",
-	CSS_WEEKDAY_ROW : "calweekdayrow",
-	CSS_FOOTER : "calfoot",
-	CSS_CALENDAR : "yui-calendar",
-	CSS_SINGLE : "single",
-	CSS_CONTAINER : "yui-calcontainer",
-	CSS_NAV_LEFT : "calnavleft",
-	CSS_NAV_RIGHT : "calnavright",
-	CSS_NAV : "calnav",
-	CSS_CLOSE : "calclose",
-	CSS_CELL_TOP : "calcelltop",
-	CSS_CELL_LEFT : "calcellleft",
-	CSS_CELL_RIGHT : "calcellright",
-	CSS_CELL_BOTTOM : "calcellbottom",
-	CSS_CELL_HOVER : "calcellhover",
-	CSS_CELL_HIGHLIGHT1 : "highlight1",
-	CSS_CELL_HIGHLIGHT2 : "highlight2",
-	CSS_CELL_HIGHLIGHT3 : "highlight3",
-	CSS_CELL_HIGHLIGHT4 : "highlight4"
-};
-
-Calendar.prototype = {
-
-	/**
-	* The configuration object used to set up the calendars various locale and style options.
-	* @property Config
-	* @private
-	* @deprecated Configuration properties should be set by calling Calendar.cfg.setProperty.
-	* @type Object
-	*/
-	Config : null,
-
-	/**
-	* The parent CalendarGroup, only to be set explicitly by the parent group
-	* @property parent
-	* @type CalendarGroup
-	*/	
-	parent : null,
-
-	/**
-	* The index of this item in the parent group
-	* @property index
-	* @type Number
-	*/
-	index : -1,
-
-	/**
-	* The collection of calendar table cells
-	* @property cells
-	* @type HTMLTableCellElement[]
-	*/
-	cells : null,
-
-	/**
-	* The collection of calendar cell dates that is parallel to the cells collection. The array contains dates field arrays in the format of [YYYY, M, D].
-	* @property cellDates
-	* @type Array[](Number[])
-	*/
-	cellDates : null,
-
-	/**
-	* The id that uniquely identifies this Calendar.
-	* @property id
-	* @type String
-	*/
-	id : null,
-
-	/**
-	* The unique id associated with the Calendar's container
-	* @property containerId
-	* @type String
-	*/
-	containerId: null,
-
-	/**
-	* The DOM element reference that points to this calendar's container element. The calendar will be inserted into this element when the shell is rendered.
-	* @property oDomContainer
-	* @type HTMLElement
-	*/
-	oDomContainer : null,
-
-	/**
-	* A Date object representing today's date.
-	* @property today
-	* @type Date
-	*/
-	today : null,
-
-	/**
-	* The list of render functions, along with required parameters, used to render cells. 
-	* @property renderStack
-	* @type Array[]
-	*/
-	renderStack : null,
-
-	/**
-	* A copy of the initial render functions created before rendering.
-	* @property _renderStack
-	* @private
-	* @type Array
-	*/
-	_renderStack : null,
-
-	/**
-	* A reference to the CalendarNavigator instance created for this Calendar.
-	* Will be null if the "navigator" configuration property has not been set
-	* @property oNavigator
-	* @type CalendarNavigator
-	*/
-	oNavigator : null,
-
-	/**
-	* The private list of initially selected dates.
-	* @property _selectedDates
-	* @private
-	* @type Array
-	*/
-	_selectedDates : null,
-
-	/**
-	* A map of DOM event handlers to attach to cells associated with specific CSS class names
-	* @property domEventMap
-	* @type Object
-	*/
-	domEventMap : null,
-
-	/**
-	 * Protected helper used to parse Calendar constructor/init arguments.
-	 *
-	 * As of 2.4.0, Calendar supports a simpler constructor 
-	 * signature. This method reconciles arguments
-	 * received in the pre 2.4.0 and 2.4.0 formats.
-	 * 
-	 * @protected
-	 * @method _parseArgs
-	 * @param {Array} Function "arguments" array
-	 * @return {Object} Object with id, container, config properties containing
-	 * the reconciled argument values.
-	 **/
-	_parseArgs : function(args) {
-		/*
-		   2.4.0 Constructors signatures
-
-		   new Calendar(String)
-		   new Calendar(HTMLElement)
-		   new Calendar(String, ConfigObject)
-		   new Calendar(HTMLElement, ConfigObject)
-
-		   Pre 2.4.0 Constructor signatures
-
-		   new Calendar(String, String)
-		   new Calendar(String, HTMLElement)
-		   new Calendar(String, String, ConfigObject)
-		   new Calendar(String, HTMLElement, ConfigObject)
-		 */
-		var nArgs = {id:null, container:null, config:null};
-
-		if (args && args.length && args.length > 0) {
-			switch (args.length) {
-				case 1:
-					nArgs.id = null;
-					nArgs.container = args[0];
-					nArgs.config = null;
-					break;
-				case 2:
-					if (Lang.isObject(args[1]) && !args[1].tagName && !(args[1] instanceof String)) {
-						nArgs.id = null;
-						nArgs.container = args[0];
-						nArgs.config = args[1];
-					} else {
-						nArgs.id = args[0];
-						nArgs.container = args[1];
-						nArgs.config = null;
-					}
-					break;
-				default: // 3+
-					nArgs.id = args[0];
-					nArgs.container = args[1];
-					nArgs.config = args[2];
-					break;
-			}
-		} else {
-		}
-		return nArgs;
-	},
-
-	/**
-	* Initializes the Calendar widget.
-	* @method init
-	*
-	* @param {String} id optional The id of the table element that will represent the Calendar widget. As of 2.4.0, this argument is optional.
-	* @param {String | HTMLElement} container The id of the container div element that will wrap the Calendar table, or a reference to a DIV element which exists in the document.
-	* @param {Object} config optional The configuration object containing the initial configuration values for the Calendar.
-	*/
-	init : function(id, container, config) {
-		// Normalize 2.4.0, pre 2.4.0 args
-		var nArgs = this._parseArgs(arguments);
-
-		id = nArgs.id;
-		container = nArgs.container;
-		config = nArgs.config;
-
-		this.oDomContainer = Dom.get(container);
-
-		if (!this.oDomContainer.id) {
-			this.oDomContainer.id = Dom.generateId();
-		}
-		if (!id) {
-			id = this.oDomContainer.id + "_t";
-		}
-
-		this.id = id;
-		this.containerId = this.oDomContainer.id;
-
-		this.initEvents();
-
-		this.today = new Date();
-		DateMath.clearTime(this.today);
-
-		/**
-		* The Config object used to hold the configuration variables for the Calendar
-		* @property cfg
-		* @type YAHOO.util.Config
-		*/
-		this.cfg = new YAHOO.util.Config(this);
-
-		/**
-		* The local object which contains the Calendar's options
-		* @property Options
-		* @type Object
-		*/
-		this.Options = {};
-
-		/**
-		* The local object which contains the Calendar's locale settings
-		* @property Locale
-		* @type Object
-		*/
-		this.Locale = {};
-
-		this.initStyles();
-
-		Dom.addClass(this.oDomContainer, this.Style.CSS_CONTAINER);
-		Dom.addClass(this.oDomContainer, this.Style.CSS_SINGLE);
-
-		this.cellDates = [];
-		this.cells = [];
-		this.renderStack = [];
-		this._renderStack = [];
-
-		this.setupConfig();
-
-		if (config) {
-			this.cfg.applyConfig(config, true);
-		}
-
-		this.cfg.fireQueue();
-	},
-
-	/**
-	* Default Config listener for the iframe property. If the iframe config property is set to true, 
-	* renders the built-in IFRAME shim if the container is relatively or absolutely positioned.
-	* 
-	* @method configIframe
-	*/
-	configIframe : function(type, args, obj) {
-		var useIframe = args[0];
-	
-		if (!this.parent) {
-			if (Dom.inDocument(this.oDomContainer)) {
-				if (useIframe) {
-					var pos = Dom.getStyle(this.oDomContainer, "position");
-					
-					if (pos == "absolute" || pos == "relative") {
-						
-						if (!Dom.inDocument(this.iframe)) {
-							this.iframe = document.createElement("iframe");
-							this.iframe.src = "javascript:false;";
-	
-							Dom.setStyle(this.iframe, "opacity", "0");
-	
-							if (YAHOO.env.ua.ie && YAHOO.env.ua.ie <= 6) {
-								Dom.addClass(this.iframe, "fixedsize");
-							}
-	
-							this.oDomContainer.insertBefore(this.iframe, this.oDomContainer.firstChild);
-						}
-					}
-				} else {
-					if (this.iframe) {
-						if (this.iframe.parentNode) {
-							this.iframe.parentNode.removeChild(this.iframe);
-						}
-						this.iframe = null;
-					}
-				}
-			}
-		}
-	},
-
-	/**
-	* Default handler for the "title" property
-	* @method configTitle
-	*/
-	configTitle : function(type, args, obj) {
-		var title = args[0];
-
-		// "" disables title bar
-		if (title) {
-			this.createTitleBar(title);
-		} else {
-			var close = this.cfg.getProperty(DEF_CFG.CLOSE.key);
-			if (!close) {
-				this.removeTitleBar();
-			} else {
-				this.createTitleBar("&#160;");
-			}
-		}
-	},
-	
-	/**
-	* Default handler for the "close" property
-	* @method configClose
-	*/
-	configClose : function(type, args, obj) {
-		var close = args[0],
-			title = this.cfg.getProperty(DEF_CFG.TITLE.key);
-	
-		if (close) {
-			if (!title) {
-				this.createTitleBar("&#160;");
-			}
-			this.createCloseButton();
-		} else {
-			this.removeCloseButton();
-			if (!title) {
-				this.removeTitleBar();
-			}
-		}
-	},
-
-	/**
-	* Initializes Calendar's built-in CustomEvents
-	* @method initEvents
-	*/
-	initEvents : function() {
-
-		var defEvents = Calendar._EVENT_TYPES,
-			CE = YAHOO.util.CustomEvent,
-			cal = this; // To help with minification
-
-		/**
-		* Fired before a selection is made
-		* @event beforeSelectEvent
-		*/
-		cal.beforeSelectEvent = new CE(defEvents.BEFORE_SELECT); 
-
-		/**
-		* Fired when a selection is made
-		* @event selectEvent
-		* @param {Array}	Array of Date field arrays in the format [YYYY, MM, DD].
-		*/
-		cal.selectEvent = new CE(defEvents.SELECT);
-	
-		/**
-		* Fired before a selection is made
-		* @event beforeDeselectEvent
-		*/
-		cal.beforeDeselectEvent = new CE(defEvents.BEFORE_DESELECT);
-	
-		/**
-		* Fired when a selection is made
-		* @event deselectEvent
-		* @param {Array}	Array of Date field arrays in the format [YYYY, MM, DD].
-		*/
-		cal.deselectEvent = new CE(defEvents.DESELECT);
-	
-		/**
-		* Fired when the Calendar page is changed
-		* @event changePageEvent
-		*/
-		cal.changePageEvent = new CE(defEvents.CHANGE_PAGE);
-	
-		/**
-		* Fired before the Calendar is rendered
-		* @event beforeRenderEvent
-		*/
-		cal.beforeRenderEvent = new CE(defEvents.BEFORE_RENDER);
-	
-		/**
-		* Fired when the Calendar is rendered
-		* @event renderEvent
-		*/
-		cal.renderEvent = new CE(defEvents.RENDER);
-
-		/**
-		* Fired just before the Calendar is to be destroyed
-		* @event beforeDestroyEvent
-		*/
-		cal.beforeDestroyEvent = new CE(defEvents.BEFORE_DESTROY);
-
-		/**
-		* Fired after the Calendar is destroyed. This event should be used
-		* for notification only. When this event is fired, important Calendar instance
-		* properties, dom references and event listeners have already been 
-		* removed/dereferenced, and hence the Calendar instance is not in a usable 
-		* state.
-		*
-		* @event destroyEvent
-		*/
-		cal.destroyEvent = new CE(defEvents.DESTROY);
-
-		/**
-		* Fired when the Calendar is reset
-		* @event resetEvent
-		*/
-		cal.resetEvent = new CE(defEvents.RESET);
-
-		/**
-		* Fired when the Calendar is cleared
-		* @event clearEvent
-		*/
-		cal.clearEvent = new CE(defEvents.CLEAR);
-
-		/**
-		* Fired just before the Calendar is to be shown
-		* @event beforeShowEvent
-		*/
-		cal.beforeShowEvent = new CE(defEvents.BEFORE_SHOW);
-
-		/**
-		* Fired after the Calendar is shown
-		* @event showEvent
-		*/
-		cal.showEvent = new CE(defEvents.SHOW);
-
-		/**
-		* Fired just before the Calendar is to be hidden
-		* @event beforeHideEvent
-		*/
-		cal.beforeHideEvent = new CE(defEvents.BEFORE_HIDE);
-
-		/**
-		* Fired after the Calendar is hidden
-		* @event hideEvent
-		*/
-		cal.hideEvent = new CE(defEvents.HIDE);
-
-		/**
-		* Fired just before the CalendarNavigator is to be shown
-		* @event beforeShowNavEvent
-		*/
-		cal.beforeShowNavEvent = new CE(defEvents.BEFORE_SHOW_NAV);
-	
-		/**
-		* Fired after the CalendarNavigator is shown
-		* @event showNavEvent
-		*/
-		cal.showNavEvent = new CE(defEvents.SHOW_NAV);
-	
-		/**
-		* Fired just before the CalendarNavigator is to be hidden
-		* @event beforeHideNavEvent
-		*/
-		cal.beforeHideNavEvent = new CE(defEvents.BEFORE_HIDE_NAV);
-	
-		/**
-		* Fired after the CalendarNavigator is hidden
-		* @event hideNavEvent
-		*/
-		cal.hideNavEvent = new CE(defEvents.HIDE_NAV);
-
-		/**
-		* Fired just before the CalendarNavigator is to be rendered
-		* @event beforeRenderNavEvent
-		*/
-		cal.beforeRenderNavEvent = new CE(defEvents.BEFORE_RENDER_NAV);
-
-		/**
-		* Fired after the CalendarNavigator is rendered
-		* @event renderNavEvent
-		*/
-		cal.renderNavEvent = new CE(defEvents.RENDER_NAV);
-
-		cal.beforeSelectEvent.subscribe(cal.onBeforeSelect, this, true);
-		cal.selectEvent.subscribe(cal.onSelect, this, true);
-		cal.beforeDeselectEvent.subscribe(cal.onBeforeDeselect, this, true);
-		cal.deselectEvent.subscribe(cal.onDeselect, this, true);
-		cal.changePageEvent.subscribe(cal.onChangePage, this, true);
-		cal.renderEvent.subscribe(cal.onRender, this, true);
-		cal.resetEvent.subscribe(cal.onReset, this, true);
-		cal.clearEvent.subscribe(cal.onClear, this, true);
-	},
-
-	/**
-	* The default event handler for clicks on the "Previous Month" navigation UI
-	*
-	* @method doPreviousMonthNav
-	* @param {DOMEvent} e	The DOM event
-	* @param {Calendar} cal	A reference to the calendar
-	*/
-	doPreviousMonthNav : function(e, cal) {
-		Event.preventDefault(e);
-		// previousMonth invoked in a timeout, to allow
-		// event to bubble up, with correct target. Calling
-		// previousMonth, will call render which will remove 
-		// HTML which generated the event, resulting in an 
-		// invalid event target in certain browsers.
-		setTimeout(function() {
-			cal.previousMonth();
-			var navs = Dom.getElementsByClassName(cal.Style.CSS_NAV_LEFT, "a", cal.oDomContainer);
-			if (navs && navs[0]) {
-				try {
-					navs[0].focus();
-				} catch (e) {
-					// ignore
-				}
-			}
-		}, 0);
-	},
-
-	/**
-	 * The default event handler for clicks on the "Next Month" navigation UI
-	 *
-	 * @method doNextMonthNav
-	 * @param {DOMEvent} e	The DOM event
-	 * @param {Calendar} cal	A reference to the calendar
-	 */
-	doNextMonthNav : function(e, cal) {
-		Event.preventDefault(e);
-		setTimeout(function() {
-			cal.nextMonth();
-			var navs = Dom.getElementsByClassName(cal.Style.CSS_NAV_RIGHT, "a", cal.oDomContainer);
-			if (navs && navs[0]) {
-				try {
-					navs[0].focus();
-				} catch (e) {
-					// ignore
-				}
-			}
-		}, 0);
-	},
-
-	/**
-	* The default event handler for date cell selection. Currently attached to 
-	* the Calendar's bounding box, referenced by it's <a href="#property_oDomContainer">oDomContainer</a> property.
-	*
-	* @method doSelectCell
-	* @param {DOMEvent} e	The DOM event
-	* @param {Calendar} cal	A reference to the calendar
-	*/
-	doSelectCell : function(e, cal) {
-		var cell, d, date, index;
-
-		var target = Event.getTarget(e),
-			tagName = target.tagName.toLowerCase(),
-			defSelector = false;
-
-		while (tagName != "td" && !Dom.hasClass(target, cal.Style.CSS_CELL_SELECTABLE)) {
-
-			if (!defSelector && tagName == "a" && Dom.hasClass(target, cal.Style.CSS_CELL_SELECTOR)) {
-				defSelector = true;
-			}
-
-			target = target.parentNode;
-			tagName = target.tagName.toLowerCase();
-
-			if (target == this.oDomContainer || tagName == "html") {
-				return;
-			}
-		}
-
-		if (defSelector) {
-			// Stop link href navigation for default renderer
-			Event.preventDefault(e);
-		}
-	
-		cell = target;
-
-		if (Dom.hasClass(cell, cal.Style.CSS_CELL_SELECTABLE)) {
-			index = cal.getIndexFromId(cell.id);
-			if (index > -1) {
-				d = cal.cellDates[index];
-				if (d) {
-					date = DateMath.getDate(d[0],d[1]-1,d[2]);
-				
-					var link;
-
-					if (cal.Options.MULTI_SELECT) {
-						link = cell.getElementsByTagName("a")[0];
-						if (link) {
-							link.blur();
-						}
-
-						var cellDate = cal.cellDates[index];
-						var cellDateIndex = cal._indexOfSelectedFieldArray(cellDate);
-
-						if (cellDateIndex > -1) {	
-							cal.deselectCell(index);
-						} else {
-							cal.selectCell(index);
-						}	
-
-					} else {
-						link = cell.getElementsByTagName("a")[0];
-						if (link) {
-							link.blur();
-						}
-						cal.selectCell(index);
-					}
-				}
-			}
-		}
-	},
-
-	/**
-	* The event that is executed when the user hovers over a cell
-	* @method doCellMouseOver
-	* @param {DOMEvent} e	The event
-	* @param {Calendar} cal	A reference to the calendar passed by the Event utility
-	*/
-	doCellMouseOver : function(e, cal) {
-		var target;
-		if (e) {
-			target = Event.getTarget(e);
-		} else {
-			target = this;
-		}
-
-		while (target.tagName && target.tagName.toLowerCase() != "td") {
-			target = target.parentNode;
-			if (!target.tagName || target.tagName.toLowerCase() == "html") {
-				return;
-			}
-		}
-
-		if (Dom.hasClass(target, cal.Style.CSS_CELL_SELECTABLE)) {
-			Dom.addClass(target, cal.Style.CSS_CELL_HOVER);
-		}
-	},
-
-	/**
-	* The event that is executed when the user moves the mouse out of a cell
-	* @method doCellMouseOut
-	* @param {DOMEvent} e	The event
-	* @param {Calendar} cal	A reference to the calendar passed by the Event utility
-	*/
-	doCellMouseOut : function(e, cal) {
-		var target;
-		if (e) {
-			target = Event.getTarget(e);
-		} else {
-			target = this;
-		}
-
-		while (target.tagName && target.tagName.toLowerCase() != "td") {
-			target = target.parentNode;
-			if (!target.tagName || target.tagName.toLowerCase() == "html") {
-				return;
-			}
-		}
-
-		if (Dom.hasClass(target, cal.Style.CSS_CELL_SELECTABLE)) {
-			Dom.removeClass(target, cal.Style.CSS_CELL_HOVER);
-		}
-	},
-
-	setupConfig : function() {
-		var cfg = this.cfg;
-
-		/**
-		* The month/year representing the current visible Calendar date (mm/yyyy)
-		* @config pagedate
-		* @type String | Date
-		* @default today's date
-		*/
-		cfg.addProperty(DEF_CFG.PAGEDATE.key, { value:new Date(), handler:this.configPageDate } );
-
-		/**
-		* The date or range of dates representing the current Calendar selection
-		* @config selected
-		* @type String
-		* @default []
-		*/
-		cfg.addProperty(DEF_CFG.SELECTED.key, { value:[], handler:this.configSelected } );
-
-		/**
-		* The title to display above the Calendar's month header
-		* @config title
-		* @type String
-		* @default ""
-		*/
-		cfg.addProperty(DEF_CFG.TITLE.key, { value:DEF_CFG.TITLE.value, handler:this.configTitle } );
-
-		/**
-		* Whether or not a close button should be displayed for this Calendar
-		* @config close
-		* @type Boolean
-		* @default false
-		*/
-		cfg.addProperty(DEF_CFG.CLOSE.key, { value:DEF_CFG.CLOSE.value, handler:this.configClose } );
-
-		/**
-		* Whether or not an iframe shim should be placed under the Calendar to prevent select boxes from bleeding through in Internet Explorer 6 and below.
-		* This property is enabled by default for IE6 and below. It is disabled by default for other browsers for performance reasons, but can be 
-		* enabled if required.
-		* 
-		* @config iframe
-		* @type Boolean
-		* @default true for IE6 and below, false for all other browsers
-		*/
-		cfg.addProperty(DEF_CFG.IFRAME.key, { value:DEF_CFG.IFRAME.value, handler:this.configIframe, validator:cfg.checkBoolean } );
-
-		/**
-		* The minimum selectable date in the current Calendar (mm/dd/yyyy)
-		* @config mindate
-		* @type String | Date
-		* @default null
-		*/
-		cfg.addProperty(DEF_CFG.MINDATE.key, { value:DEF_CFG.MINDATE.value, handler:this.configMinDate } );
-
-		/**
-		* The maximum selectable date in the current Calendar (mm/dd/yyyy)
-		* @config maxdate
-		* @type String | Date
-		* @default null
-		*/
-		cfg.addProperty(DEF_CFG.MAXDATE.key, { value:DEF_CFG.MAXDATE.value, handler:this.configMaxDate } );
-	
-	
-		// Options properties
-	
-		/**
-		* True if the Calendar should allow multiple selections. False by default.
-		* @config MULTI_SELECT
-		* @type Boolean
-		* @default false
-		*/
-		cfg.addProperty(DEF_CFG.MULTI_SELECT.key,	{ value:DEF_CFG.MULTI_SELECT.value, handler:this.configOptions, validator:cfg.checkBoolean } );
-
-		/**
-		* The weekday the week begins on. Default is 0 (Sunday = 0, Monday = 1 ... Saturday = 6).
-		* @config START_WEEKDAY
-		* @type number
-		* @default 0
-		*/
-		cfg.addProperty(DEF_CFG.START_WEEKDAY.key,	{ value:DEF_CFG.START_WEEKDAY.value, handler:this.configOptions, validator:cfg.checkNumber  } );
-	
-		/**
-		* True if the Calendar should show weekday labels. True by default.
-		* @config SHOW_WEEKDAYS
-		* @type Boolean
-		* @default true
-		*/
-		cfg.addProperty(DEF_CFG.SHOW_WEEKDAYS.key,	{ value:DEF_CFG.SHOW_WEEKDAYS.value, handler:this.configOptions, validator:cfg.checkBoolean  } );
-	
-		/**
-		* True if the Calendar should show week row headers. False by default.
-		* @config SHOW_WEEK_HEADER
-		* @type Boolean
-		* @default false
-		*/
-		cfg.addProperty(DEF_CFG.SHOW_WEEK_HEADER.key, { value:DEF_CFG.SHOW_WEEK_HEADER.value, handler:this.configOptions, validator:cfg.checkBoolean } );
-	
-		/**
-		* True if the Calendar should show week row footers. False by default.
-		* @config SHOW_WEEK_FOOTER
-		* @type Boolean
-		* @default false
-		*/	
-		cfg.addProperty(DEF_CFG.SHOW_WEEK_FOOTER.key,{ value:DEF_CFG.SHOW_WEEK_FOOTER.value, handler:this.configOptions, validator:cfg.checkBoolean } );
-	
-		/**
-		* True if the Calendar should suppress weeks that are not a part of the current month. False by default.
-		* @config HIDE_BLANK_WEEKS
-		* @type Boolean
-		* @default false
-		*/	
-		cfg.addProperty(DEF_CFG.HIDE_BLANK_WEEKS.key, { value:DEF_CFG.HIDE_BLANK_WEEKS.value, handler:this.configOptions, validator:cfg.checkBoolean } );
-		
-		/**
-		* The image that should be used for the left navigation arrow.
-		* @config NAV_ARROW_LEFT
-		* @type String
-		* @deprecated	You can customize the image by overriding the default CSS class for the left arrow - "calnavleft"  
-		* @default null
-		*/	
-		cfg.addProperty(DEF_CFG.NAV_ARROW_LEFT.key,	{ value:DEF_CFG.NAV_ARROW_LEFT.value, handler:this.configOptions } );
-	
-		/**
-		* The image that should be used for the right navigation arrow.
-		* @config NAV_ARROW_RIGHT
-		* @type String
-		* @deprecated	You can customize the image by overriding the default CSS class for the right arrow - "calnavright"
-		* @default null
-		*/	
-		cfg.addProperty(DEF_CFG.NAV_ARROW_RIGHT.key, { value:DEF_CFG.NAV_ARROW_RIGHT.value, handler:this.configOptions } );
-	
-		// Locale properties
-	
-		/**
-		* The short month labels for the current locale.
-		* @config MONTHS_SHORT
-		* @type String[]
-		* @default ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
-		*/
-		cfg.addProperty(DEF_CFG.MONTHS_SHORT.key,	{ value:DEF_CFG.MONTHS_SHORT.value, handler:this.configLocale } );
-		
-		/**
-		* The long month labels for the current locale.
-		* @config MONTHS_LONG
-		* @type String[]
-		* @default ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"
-		*/	
-		cfg.addProperty(DEF_CFG.MONTHS_LONG.key,		{ value:DEF_CFG.MONTHS_LONG.value, handler:this.configLocale } );
-
-		/**
-		* The 1-character weekday labels for the current locale.
-		* @config WEEKDAYS_1CHAR
-		* @type String[]
-		* @default ["S", "M", "T", "W", "T", "F", "S"]
-		*/	
-		cfg.addProperty(DEF_CFG.WEEKDAYS_1CHAR.key,	{ value:DEF_CFG.WEEKDAYS_1CHAR.value, handler:this.configLocale } );
-		
-		/**
-		* The short weekday labels for the current locale.
-		* @config WEEKDAYS_SHORT
-		* @type String[]
-		* @default ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"]
-		*/	
-		cfg.addProperty(DEF_CFG.WEEKDAYS_SHORT.key,	{ value:DEF_CFG.WEEKDAYS_SHORT.value, handler:this.configLocale } );
-		
-		/**
-		* The medium weekday labels for the current locale.
-		* @config WEEKDAYS_MEDIUM
-		* @type String[]
-		* @default ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]
-		*/	
-		cfg.addProperty(DEF_CFG.WEEKDAYS_MEDIUM.key,	{ value:DEF_CFG.WEEKDAYS_MEDIUM.value, handler:this.configLocale } );
-		
-		/**
-		* The long weekday labels for the current locale.
-		* @config WEEKDAYS_LONG
-		* @type String[]
-		* @default ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]
-		*/	
-		cfg.addProperty(DEF_CFG.WEEKDAYS_LONG.key,	{ value:DEF_CFG.WEEKDAYS_LONG.value, handler:this.configLocale } );
-	
-		/**
-		* Refreshes the locale values used to build the Calendar.
-		* @method refreshLocale
-		* @private
-		*/
-		var refreshLocale = function() {
-			cfg.refireEvent(DEF_CFG.LOCALE_MONTHS.key);
-			cfg.refireEvent(DEF_CFG.LOCALE_WEEKDAYS.key);
-		};
-	
-		cfg.subscribeToConfigEvent(DEF_CFG.START_WEEKDAY.key, refreshLocale, this, true);
-		cfg.subscribeToConfigEvent(DEF_CFG.MONTHS_SHORT.key, refreshLocale, this, true);
-		cfg.subscribeToConfigEvent(DEF_CFG.MONTHS_LONG.key, refreshLocale, this, true);
-		cfg.subscribeToConfigEvent(DEF_CFG.WEEKDAYS_1CHAR.key, refreshLocale, this, true);
-		cfg.subscribeToConfigEvent(DEF_CFG.WEEKDAYS_SHORT.key, refreshLocale, this, true);
-		cfg.subscribeToConfigEvent(DEF_CFG.WEEKDAYS_MEDIUM.key, refreshLocale, this, true);
-		cfg.subscribeToConfigEvent(DEF_CFG.WEEKDAYS_LONG.key, refreshLocale, this, true);
-		
-		/**
-		* The setting that determines which length of month labels should be used. Possible values are "short" and "long".
-		* @config LOCALE_MONTHS
-		* @type String
-		* @default "long"
-		*/	
-		cfg.addProperty(DEF_CFG.LOCALE_MONTHS.key,	{ value:DEF_CFG.LOCALE_MONTHS.value, handler:this.configLocaleValues } );
-		
-		/**
-		* The setting that determines which length of weekday labels should be used. Possible values are "1char", "short", "medium", and "long".
-		* @config LOCALE_WEEKDAYS
-		* @type String
-		* @default "short"
-		*/	
-		cfg.addProperty(DEF_CFG.LOCALE_WEEKDAYS.key,	{ value:DEF_CFG.LOCALE_WEEKDAYS.value, handler:this.configLocaleValues } );
-	
-		/**
-		* The value used to delimit individual dates in a date string passed to various Calendar functions.
-		* @config DATE_DELIMITER
-		* @type String
-		* @default ","
-		*/	
-		cfg.addProperty(DEF_CFG.DATE_DELIMITER.key,		{ value:DEF_CFG.DATE_DELIMITER.value, handler:this.configLocale } );
-	
-		/**
-		* The value used to delimit date fields in a date string passed to various Calendar functions.
-		* @config DATE_FIELD_DELIMITER
-		* @type String
-		* @default "/"
-		*/	
-		cfg.addProperty(DEF_CFG.DATE_FIELD_DELIMITER.key, { value:DEF_CFG.DATE_FIELD_DELIMITER.value, handler:this.configLocale } );
-	
-		/**
-		* The value used to delimit date ranges in a date string passed to various Calendar functions.
-		* @config DATE_RANGE_DELIMITER
-		* @type String
-		* @default "-"
-		*/
-		cfg.addProperty(DEF_CFG.DATE_RANGE_DELIMITER.key, { value:DEF_CFG.DATE_RANGE_DELIMITER.value, handler:this.configLocale } );
-	
-		/**
-		* The position of the month in a month/year date string
-		* @config MY_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/
-		cfg.addProperty(DEF_CFG.MY_MONTH_POSITION.key,	{ value:DEF_CFG.MY_MONTH_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the year in a month/year date string
-		* @config MY_YEAR_POSITION
-		* @type Number
-		* @default 2
-		*/
-		cfg.addProperty(DEF_CFG.MY_YEAR_POSITION.key,	{ value:DEF_CFG.MY_YEAR_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the month in a month/day date string
-		* @config MD_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/
-		cfg.addProperty(DEF_CFG.MD_MONTH_POSITION.key,	{ value:DEF_CFG.MD_MONTH_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the day in a month/year date string
-		* @config MD_DAY_POSITION
-		* @type Number
-		* @default 2
-		*/
-		cfg.addProperty(DEF_CFG.MD_DAY_POSITION.key,		{ value:DEF_CFG.MD_DAY_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the month in a month/day/year date string
-		* @config MDY_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/
-		cfg.addProperty(DEF_CFG.MDY_MONTH_POSITION.key,	{ value:DEF_CFG.MDY_MONTH_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the day in a month/day/year date string
-		* @config MDY_DAY_POSITION
-		* @type Number
-		* @default 2
-		*/
-		cfg.addProperty(DEF_CFG.MDY_DAY_POSITION.key,	{ value:DEF_CFG.MDY_DAY_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the year in a month/day/year date string
-		* @config MDY_YEAR_POSITION
-		* @type Number
-		* @default 3
-		*/
-		cfg.addProperty(DEF_CFG.MDY_YEAR_POSITION.key,	{ value:DEF_CFG.MDY_YEAR_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-		
-		/**
-		* The position of the month in the month year label string used as the Calendar header
-		* @config MY_LABEL_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_MONTH_POSITION.key,	{ value:DEF_CFG.MY_LABEL_MONTH_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the year in the month year label string used as the Calendar header
-		* @config MY_LABEL_YEAR_POSITION
-		* @type Number
-		* @default 2
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_YEAR_POSITION.key,	{ value:DEF_CFG.MY_LABEL_YEAR_POSITION.value, handler:this.configLocale, validator:cfg.checkNumber } );
-		
-		/**
-		* The suffix used after the month when rendering the Calendar header
-		* @config MY_LABEL_MONTH_SUFFIX
-		* @type String
-		* @default " "
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_MONTH_SUFFIX.key,	{ value:DEF_CFG.MY_LABEL_MONTH_SUFFIX.value, handler:this.configLocale } );
-		
-		/**
-		* The suffix used after the year when rendering the Calendar header
-		* @config MY_LABEL_YEAR_SUFFIX
-		* @type String
-		* @default ""
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_YEAR_SUFFIX.key, { value:DEF_CFG.MY_LABEL_YEAR_SUFFIX.value, handler:this.configLocale } );
-
-		/**
-		* Configuration for the Month/Year CalendarNavigator UI which allows the user to jump directly to a 
-		* specific Month/Year without having to scroll sequentially through months.
-		* <p>
-		* Setting this property to null (default value) or false, will disable the CalendarNavigator UI.
-		* </p>
-		* <p>
-		* Setting this property to true will enable the CalendarNavigatior UI with the default CalendarNavigator configuration values.
-		* </p>
-		* <p>
-		* This property can also be set to an object literal containing configuration properties for the CalendarNavigator UI.
-		* The configuration object expects the the following case-sensitive properties, with the "strings" property being a nested object.
-		* Any properties which are not provided will use the default values (defined in the CalendarNavigator class).
-		* </p>
-		* <dl>
-		* <dt>strings</dt>
-		* <dd><em>Object</em> :  An object with the properties shown below, defining the string labels to use in the Navigator's UI
-		*     <dl>
-		*         <dt>month</dt><dd><em>String</em> : The string to use for the month label. Defaults to "Month".</dd>
-		*         <dt>year</dt><dd><em>String</em> : The string to use for the year label. Defaults to "Year".</dd>
-		*         <dt>submit</dt><dd><em>String</em> : The string to use for the submit button label. Defaults to "Okay".</dd>
-		*         <dt>cancel</dt><dd><em>String</em> : The string to use for the cancel button label. Defaults to "Cancel".</dd>
-		*         <dt>invalidYear</dt><dd><em>String</em> : The string to use for invalid year values. Defaults to "Year needs to be a number".</dd>
-		*     </dl>
-		* </dd>
-		* <dt>monthFormat</dt><dd><em>String</em> : The month format to use. Either YAHOO.widget.Calendar.LONG, or YAHOO.widget.Calendar.SHORT. Defaults to YAHOO.widget.Calendar.LONG</dd>
-		* <dt>initialFocus</dt><dd><em>String</em> : Either "year" or "month" specifying which input control should get initial focus. Defaults to "year"</dd>
-		* </dl>
-		* <p>E.g.</p>
-		* <pre>
-		* var navConfig = {
-		*	  strings: {
-		*		  month:"Calendar Month",
-		*		  year:"Calendar Year",
-		*		  submit: "Submit",
-		*		  cancel: "Cancel",
-		*		  invalidYear: "Please enter a valid year"
-		*	  },
-		*	  monthFormat: YAHOO.widget.Calendar.SHORT,
-		*	  initialFocus: "month"
-		* }
-		* </pre>
-		* @config navigator
-		* @type {Object|Boolean}
-		* @default null
-		*/
-		cfg.addProperty(DEF_CFG.NAV.key, { value:DEF_CFG.NAV.value, handler:this.configNavigator } );
-
-		/**
-		 * The map of UI strings which the Calendar UI uses.
-		 *
-		 * @config strings
-		 * @type {Object}
-		 * @default An object with the properties shown below:
-		 *     <dl>
-		 *         <dt>previousMonth</dt><dd><em>String</em> : The string to use for the "Previous Month" navigation UI. Defaults to "Previous Month".</dd>
-		 *         <dt>nextMonth</dt><dd><em>String</em> : The string to use for the "Next Month" navigation UI. Defaults to "Next Month".</dd>
-		 *         <dt>close</dt><dd><em>String</em> : The string to use for the close button label. Defaults to "Close".</dd>
-		 *     </dl>
-		 */
-		cfg.addProperty(DEF_CFG.STRINGS.key, { 
-			value:DEF_CFG.STRINGS.value,
-			handler:this.configStrings,
-			validator: function(val) {
-				return Lang.isObject(val);
-			},
-			supercedes:DEF_CFG.STRINGS.supercedes
-		});
-	},
-
-	/**
-	* The default handler for the "strings" property
-	* @method configStrings
-	*/
-	configStrings : function(type, args, obj) {
-		var val = Lang.merge(DEF_CFG.STRINGS.value, args[0]);
-		this.cfg.setProperty(DEF_CFG.STRINGS.key, val, true);
-	},
-
-	/**
-	* The default handler for the "pagedate" property
-	* @method configPageDate
-	*/
-	configPageDate : function(type, args, obj) {
-		this.cfg.setProperty(DEF_CFG.PAGEDATE.key, this._parsePageDate(args[0]), true);
-	},
-
-	/**
-	* The default handler for the "mindate" property
-	* @method configMinDate
-	*/
-	configMinDate : function(type, args, obj) {
-		var val = args[0];
-		if (Lang.isString(val)) {
-			val = this._parseDate(val);
-			this.cfg.setProperty(DEF_CFG.MINDATE.key, DateMath.getDate(val[0],(val[1]-1),val[2]));
-		}
-	},
-
-	/**
-	* The default handler for the "maxdate" property
-	* @method configMaxDate
-	*/
-	configMaxDate : function(type, args, obj) {
-		var val = args[0];
-		if (Lang.isString(val)) {
-			val = this._parseDate(val);
-			this.cfg.setProperty(DEF_CFG.MAXDATE.key, DateMath.getDate(val[0],(val[1]-1),val[2]));
-		}
-	},
-
-	/**
-	* The default handler for the "selected" property
-	* @method configSelected
-	*/
-	configSelected : function(type, args, obj) {
-		var selected = args[0],
-			cfgSelected = DEF_CFG.SELECTED.key;
-		
-		if (selected) {
-			if (Lang.isString(selected)) {
-				this.cfg.setProperty(cfgSelected, this._parseDates(selected), true);
-			} 
-		}
-		if (! this._selectedDates) {
-			this._selectedDates = this.cfg.getProperty(cfgSelected);
-		}
-	},
-	
-	/**
-	* The default handler for all configuration options properties
-	* @method configOptions
-	*/
-	configOptions : function(type, args, obj) {
-		this.Options[type.toUpperCase()] = args[0];
-	},
-
-	/**
-	* The default handler for all configuration locale properties
-	* @method configLocale
-	*/
-	configLocale : function(type, args, obj) {
-		this.Locale[type.toUpperCase()] = args[0];
-
-		this.cfg.refireEvent(DEF_CFG.LOCALE_MONTHS.key);
-		this.cfg.refireEvent(DEF_CFG.LOCALE_WEEKDAYS.key);
-	},
-	
-	/**
-	* The default handler for all configuration locale field length properties
-	* @method configLocaleValues
-	*/
-	configLocaleValues : function(type, args, obj) {
-
-		type = type.toLowerCase();
-
-		var val = args[0],
-			cfg = this.cfg,
-			Locale = this.Locale;
-
-		switch (type) {
-			case DEF_CFG.LOCALE_MONTHS.key:
-				switch (val) {
-					case Calendar.SHORT:
-						Locale.LOCALE_MONTHS = cfg.getProperty(DEF_CFG.MONTHS_SHORT.key).concat();
-						break;
-					case Calendar.LONG:
-						Locale.LOCALE_MONTHS = cfg.getProperty(DEF_CFG.MONTHS_LONG.key).concat();
-						break;
-				}
-				break;
-			case DEF_CFG.LOCALE_WEEKDAYS.key:
-				switch (val) {
-					case Calendar.ONE_CHAR:
-						Locale.LOCALE_WEEKDAYS = cfg.getProperty(DEF_CFG.WEEKDAYS_1CHAR.key).concat();
-						break;
-					case Calendar.SHORT:
-						Locale.LOCALE_WEEKDAYS = cfg.getProperty(DEF_CFG.WEEKDAYS_SHORT.key).concat();
-						break;
-					case Calendar.MEDIUM:
-						Locale.LOCALE_WEEKDAYS = cfg.getProperty(DEF_CFG.WEEKDAYS_MEDIUM.key).concat();
-						break;
-					case Calendar.LONG:
-						Locale.LOCALE_WEEKDAYS = cfg.getProperty(DEF_CFG.WEEKDAYS_LONG.key).concat();
-						break;
-				}
-				
-				var START_WEEKDAY = cfg.getProperty(DEF_CFG.START_WEEKDAY.key);
-	
-				if (START_WEEKDAY > 0) {
-					for (var w=0; w < START_WEEKDAY; ++w) {
-						Locale.LOCALE_WEEKDAYS.push(Locale.LOCALE_WEEKDAYS.shift());
-					}
-				}
-				break;
-		}
-	},
-
-	/**
-	 * The default handler for the "navigator" property
-	 * @method configNavigator
-	 */
-	configNavigator : function(type, args, obj) {
-		var val = args[0];
-		if (YAHOO.widget.CalendarNavigator && (val === true || Lang.isObject(val))) {
-			if (!this.oNavigator) {
-				this.oNavigator = new YAHOO.widget.CalendarNavigator(this);
-				// Cleanup DOM Refs/Events before innerHTML is removed.
-				this.beforeRenderEvent.subscribe(function () {
-					if (!this.pages) {
-						this.oNavigator.erase();
-					}
-				}, this, true);
-			}
-		} else {
-			if (this.oNavigator) {
-				this.oNavigator.destroy();
-				this.oNavigator = null;
-			}
-		}
-	},
-
-	/**
-	* Defines the style constants for the Calendar
-	* @method initStyles
-	*/
-	initStyles : function() {
-
-		var defStyle = Calendar._STYLES;
-
-		this.Style = {
-			/**
-			* @property Style.CSS_ROW_HEADER
-			*/
-			CSS_ROW_HEADER: defStyle.CSS_ROW_HEADER,
-			/**
-			* @property Style.CSS_ROW_FOOTER
-			*/
-			CSS_ROW_FOOTER: defStyle.CSS_ROW_FOOTER,
-			/**
-			* @property Style.CSS_CELL
-			*/
-			CSS_CELL : defStyle.CSS_CELL,
-			/**
-			* @property Style.CSS_CELL_SELECTOR
-			*/
-			CSS_CELL_SELECTOR : defStyle.CSS_CELL_SELECTOR,
-			/**
-			* @property Style.CSS_CELL_SELECTED
-			*/
-			CSS_CELL_SELECTED : defStyle.CSS_CELL_SELECTED,
-			/**
-			* @property Style.CSS_CELL_SELECTABLE
-			*/
-			CSS_CELL_SELECTABLE : defStyle.CSS_CELL_SELECTABLE,
-			/**
-			* @property Style.CSS_CELL_RESTRICTED
-			*/
-			CSS_CELL_RESTRICTED : defStyle.CSS_CELL_RESTRICTED,
-			/**
-			* @property Style.CSS_CELL_TODAY
-			*/
-			CSS_CELL_TODAY : defStyle.CSS_CELL_TODAY,
-			/**
-			* @property Style.CSS_CELL_OOM
-			*/
-			CSS_CELL_OOM : defStyle.CSS_CELL_OOM,
-			/**
-			* @property Style.CSS_CELL_OOB
-			*/
-			CSS_CELL_OOB : defStyle.CSS_CELL_OOB,
-			/**
-			* @property Style.CSS_HEADER
-			*/
-			CSS_HEADER : defStyle.CSS_HEADER,
-			/**
-			* @property Style.CSS_HEADER_TEXT
-			*/
-			CSS_HEADER_TEXT : defStyle.CSS_HEADER_TEXT,
-			/**
-			* @property Style.CSS_BODY
-			*/
-			CSS_BODY : defStyle.CSS_BODY,
-			/**
-			* @property Style.CSS_WEEKDAY_CELL
-			*/
-			CSS_WEEKDAY_CELL : defStyle.CSS_WEEKDAY_CELL,
-			/**
-			* @property Style.CSS_WEEKDAY_ROW
-			*/
-			CSS_WEEKDAY_ROW : defStyle.CSS_WEEKDAY_ROW,
-			/**
-			* @property Style.CSS_FOOTER
-			*/
-			CSS_FOOTER : defStyle.CSS_FOOTER,
-			/**
-			* @property Style.CSS_CALENDAR
-			*/
-			CSS_CALENDAR : defStyle.CSS_CALENDAR,
-			/**
-			* @property Style.CSS_SINGLE
-			*/
-			CSS_SINGLE : defStyle.CSS_SINGLE,
-			/**
-			* @property Style.CSS_CONTAINER
-			*/
-			CSS_CONTAINER : defStyle.CSS_CONTAINER,
-			/**
-			* @property Style.CSS_NAV_LEFT
-			*/
-			CSS_NAV_LEFT : defStyle.CSS_NAV_LEFT,
-			/**
-			* @property Style.CSS_NAV_RIGHT
-			*/
-			CSS_NAV_RIGHT : defStyle.CSS_NAV_RIGHT,
-			/**
-			* @property Style.CSS_NAV
-			*/
-			CSS_NAV : defStyle.CSS_NAV,
-			/**
-			* @property Style.CSS_CLOSE
-			*/
-			CSS_CLOSE : defStyle.CSS_CLOSE,
-			/**
-			* @property Style.CSS_CELL_TOP
-			*/
-			CSS_CELL_TOP : defStyle.CSS_CELL_TOP,
-			/**
-			* @property Style.CSS_CELL_LEFT
-			*/
-			CSS_CELL_LEFT : defStyle.CSS_CELL_LEFT,
-			/**
-			* @property Style.CSS_CELL_RIGHT
-			*/
-			CSS_CELL_RIGHT : defStyle.CSS_CELL_RIGHT,
-			/**
-			* @property Style.CSS_CELL_BOTTOM
-			*/
-			CSS_CELL_BOTTOM : defStyle.CSS_CELL_BOTTOM,
-			/**
-			* @property Style.CSS_CELL_HOVER
-			*/
-			CSS_CELL_HOVER : defStyle.CSS_CELL_HOVER,
-			/**
-			* @property Style.CSS_CELL_HIGHLIGHT1
-			*/
-			CSS_CELL_HIGHLIGHT1 : defStyle.CSS_CELL_HIGHLIGHT1,
-			/**
-			* @property Style.CSS_CELL_HIGHLIGHT2
-			*/
-			CSS_CELL_HIGHLIGHT2 : defStyle.CSS_CELL_HIGHLIGHT2,
-			/**
-			* @property Style.CSS_CELL_HIGHLIGHT3
-			*/
-			CSS_CELL_HIGHLIGHT3 : defStyle.CSS_CELL_HIGHLIGHT3,
-			/**
-			* @property Style.CSS_CELL_HIGHLIGHT4
-			*/
-			CSS_CELL_HIGHLIGHT4 : defStyle.CSS_CELL_HIGHLIGHT4
-		};
-	},
-
-	/**
-	* Builds the date label that will be displayed in the calendar header or
-	* footer, depending on configuration.
-	* @method buildMonthLabel
-	* @return	{String}	The formatted calendar month label
-	*/
-	buildMonthLabel : function() {
-		return this._buildMonthLabel(this.cfg.getProperty(DEF_CFG.PAGEDATE.key));
-	},
-
-    /**
-     * Helper method, to format a Month Year string, given a JavaScript Date, based on the 
-     * Calendar localization settings
-     * 
-     * @method _buildMonthLabel
-     * @private
-     * @param {Date} date
-     * @return {String} Formated month, year string
-     */
-	_buildMonthLabel : function(date) {
-		var	monthLabel  = this.Locale.LOCALE_MONTHS[date.getMonth()] + this.Locale.MY_LABEL_MONTH_SUFFIX,
-			yearLabel = date.getFullYear() + this.Locale.MY_LABEL_YEAR_SUFFIX;
-
-		if (this.Locale.MY_LABEL_MONTH_POSITION == 2 || this.Locale.MY_LABEL_YEAR_POSITION == 1) {
-			return yearLabel + monthLabel;
-		} else {
-			return monthLabel + yearLabel;
-		}
-	},
-	
-	/**
-	* Builds the date digit that will be displayed in calendar cells
-	* @method buildDayLabel
-	* @param {Date}	workingDate	The current working date
-	* @return	{String}	The formatted day label
-	*/
-	buildDayLabel : function(workingDate) {
-		return workingDate.getDate();
-	},
-	
-	/**
-	 * Creates the title bar element and adds it to Calendar container DIV
-	 * 
-	 * @method createTitleBar
-	 * @param {String} strTitle The title to display in the title bar
-	 * @return The title bar element
-	 */
-	createTitleBar : function(strTitle) {
-		var tDiv = Dom.getElementsByClassName(YAHOO.widget.CalendarGroup.CSS_2UPTITLE, "div", this.oDomContainer)[0] || document.createElement("div");
-		tDiv.className = YAHOO.widget.CalendarGroup.CSS_2UPTITLE;
-		tDiv.innerHTML = strTitle;
-		this.oDomContainer.insertBefore(tDiv, this.oDomContainer.firstChild);
-	
-		Dom.addClass(this.oDomContainer, "withtitle");
-	
-		return tDiv;
-	},
-	
-	/**
-	 * Removes the title bar element from the DOM
-	 * 
-	 * @method removeTitleBar
-	 */
-	removeTitleBar : function() {
-		var tDiv = Dom.getElementsByClassName(YAHOO.widget.CalendarGroup.CSS_2UPTITLE, "div", this.oDomContainer)[0] || null;
-		if (tDiv) {
-			Event.purgeElement(tDiv);
-			this.oDomContainer.removeChild(tDiv);
-		}
-		Dom.removeClass(this.oDomContainer, "withtitle");
-	},
-	
-	/**
-	 * Creates the close button HTML element and adds it to Calendar container DIV
-	 * 
-	 * @method createCloseButton
-	 * @return The close HTML element created
-	 */
-	createCloseButton : function() {
-		var cssClose = YAHOO.widget.CalendarGroup.CSS_2UPCLOSE,
-			DEPR_CLOSE_PATH = "us/my/bn/x_d.gif",
-			lnk = Dom.getElementsByClassName("link-close", "a", this.oDomContainer)[0],
-			strings = this.cfg.getProperty(DEF_CFG.STRINGS.key),
-			closeStr = (strings && strings.close) ? strings.close : "";
-
-		if (!lnk) {
-			lnk = document.createElement("a");
-			Event.addListener(lnk, "click", function(e, cal) {
-				cal.hide(); 
-				Event.preventDefault(e);
-			}, this);
-		}
-
-		lnk.href = "#";
-		lnk.className = "link-close";
-
-		if (Calendar.IMG_ROOT !== null) {
-			var img = Dom.getElementsByClassName(cssClose, "img", lnk)[0] || document.createElement("img");
-			img.src = Calendar.IMG_ROOT + DEPR_CLOSE_PATH;
-			img.className = cssClose;
-			lnk.appendChild(img);
-		} else {
-			lnk.innerHTML = '<span class="' + cssClose + ' ' + this.Style.CSS_CLOSE + '">' + closeStr + '</span>';
-		}
-		this.oDomContainer.appendChild(lnk);
-
-		return lnk;
-	},
-	
-	/**
-	 * Removes the close button HTML element from the DOM
-	 * 
-	 * @method removeCloseButton
-	 */
-	removeCloseButton : function() {
-		var btn = Dom.getElementsByClassName("link-close", "a", this.oDomContainer)[0] || null;
-		if (btn) {
-			Event.purgeElement(btn);
-			this.oDomContainer.removeChild(btn);
-		}
-	},
-
-	/**
-	* Renders the calendar header.
-	* @method renderHeader
-	* @param {Array}	html	The current working HTML array
-	* @return {Array} The current working HTML array
-	*/
-	renderHeader : function(html) {
-
-
-		var colSpan = 7,
-			DEPR_NAV_LEFT = "us/tr/callt.gif",
-			DEPR_NAV_RIGHT = "us/tr/calrt.gif",
-			cfg = this.cfg,
-			pageDate = cfg.getProperty(DEF_CFG.PAGEDATE.key),
-			strings= cfg.getProperty(DEF_CFG.STRINGS.key),
-			prevStr = (strings && strings.previousMonth) ?  strings.previousMonth : "",
-			nextStr = (strings && strings.nextMonth) ? strings.nextMonth : "",
-            monthLabel;
-
-		if (cfg.getProperty(DEF_CFG.SHOW_WEEK_HEADER.key)) {
-			colSpan += 1;
-		}
-	
-		if (cfg.getProperty(DEF_CFG.SHOW_WEEK_FOOTER.key)) {
-			colSpan += 1;
-		}
-
-		html[html.length] = "<thead>";
-		html[html.length] =		"<tr>";
-		html[html.length] =			'<th colspan="' + colSpan + '" class="' + this.Style.CSS_HEADER_TEXT + '">';
-		html[html.length] =				'<div class="' + this.Style.CSS_HEADER + '">';
-
-		var renderLeft, renderRight = false;
-
-		if (this.parent) {
-			if (this.index === 0) {
-				renderLeft = true;
-			}
-			if (this.index == (this.parent.cfg.getProperty("pages") -1)) {
-				renderRight = true;
-			}
-		} else {
-			renderLeft = true;
-			renderRight = true;
-		}
-
-		if (renderLeft) {
-			monthLabel  = this._buildMonthLabel(DateMath.subtract(pageDate, DateMath.MONTH, 1));
-
-			var leftArrow = cfg.getProperty(DEF_CFG.NAV_ARROW_LEFT.key);
-			// Check for deprecated customization - If someone set IMG_ROOT, but didn't set NAV_ARROW_LEFT, then set NAV_ARROW_LEFT to the old deprecated value
-			if (leftArrow === null && Calendar.IMG_ROOT !== null) {
-				leftArrow = Calendar.IMG_ROOT + DEPR_NAV_LEFT;
-			}
-			var leftStyle = (leftArrow === null) ? "" : ' style="background-image:url(' + leftArrow + ')"';
-			html[html.length] = '<a class="' + this.Style.CSS_NAV_LEFT + '"' + leftStyle + ' href="#">' + prevStr + ' (' + monthLabel + ')' + '</a>';
-		}
-
-		var lbl = this.buildMonthLabel();
-		var cal = this.parent || this;
-		if (cal.cfg.getProperty("navigator")) {
-			lbl = "<a class=\"" + this.Style.CSS_NAV + "\" href=\"#\">" + lbl + "</a>";
-		}
-		html[html.length] = lbl;
-
-		if (renderRight) {
-			monthLabel  = this._buildMonthLabel(DateMath.add(pageDate, DateMath.MONTH, 1));
-
-			var rightArrow = cfg.getProperty(DEF_CFG.NAV_ARROW_RIGHT.key);
-			if (rightArrow === null && Calendar.IMG_ROOT !== null) {
-				rightArrow = Calendar.IMG_ROOT + DEPR_NAV_RIGHT;
-			}
-			var rightStyle = (rightArrow === null) ? "" : ' style="background-image:url(' + rightArrow + ')"';
-			html[html.length] = '<a class="' + this.Style.CSS_NAV_RIGHT + '"' + rightStyle + ' href="#">' + nextStr + ' (' + monthLabel + ')' + '</a>';
-		}
-
-		html[html.length] =	'</div>\n</th>\n</tr>';
-
-		if (cfg.getProperty(DEF_CFG.SHOW_WEEKDAYS.key)) {
-			html = this.buildWeekdays(html);
-		}
-		
-		html[html.length] = '</thead>';
-	
-		return html;
-	},
-	
-	/**
-	* Renders the Calendar's weekday headers.
-	* @method buildWeekdays
-	* @param {Array}	html	The current working HTML array
-	* @return {Array} The current working HTML array
-	*/
-	buildWeekdays : function(html) {
-
-		html[html.length] = '<tr class="' + this.Style.CSS_WEEKDAY_ROW + '">';
-
-		if (this.cfg.getProperty(DEF_CFG.SHOW_WEEK_HEADER.key)) {
-			html[html.length] = '<th>&#160;</th>';
-		}
-
-		for(var i=0;i < this.Locale.LOCALE_WEEKDAYS.length; ++i) {
-			html[html.length] = '<th class="calweekdaycell">' + this.Locale.LOCALE_WEEKDAYS[i] + '</th>';
-		}
-
-		if (this.cfg.getProperty(DEF_CFG.SHOW_WEEK_FOOTER.key)) {
-			html[html.length] = '<th>&#160;</th>';
-		}
-
-		html[html.length] = '</tr>';
-
-		return html;
-	},
-	
-	/**
-	* Renders the calendar body.
-	* @method renderBody
-	* @param {Date}	workingDate	The current working Date being used for the render process
-	* @param {Array}	html	The current working HTML array
-	* @return {Array} The current working HTML array
-	*/
-	renderBody : function(workingDate, html) {
-
-		var startDay = this.cfg.getProperty(DEF_CFG.START_WEEKDAY.key);
-
-		this.preMonthDays = workingDate.getDay();
-		if (startDay > 0) {
-			this.preMonthDays -= startDay;
-		}
-		if (this.preMonthDays < 0) {
-			this.preMonthDays += 7;
-		}
-
-		this.monthDays = DateMath.findMonthEnd(workingDate).getDate();
-		this.postMonthDays = Calendar.DISPLAY_DAYS-this.preMonthDays-this.monthDays;
-
-
-		workingDate = DateMath.subtract(workingDate, DateMath.DAY, this.preMonthDays);
-	
-		var weekNum,
-			weekClass,
-			weekPrefix = "w",
-			cellPrefix = "_cell",
-			workingDayPrefix = "wd",
-			dayPrefix = "d",
-			cellRenderers,
-			renderer,
-			t = this.today,
-			cfg = this.cfg,
-			todayYear = t.getFullYear(),
-			todayMonth = t.getMonth(),
-			todayDate = t.getDate(),
-			useDate = cfg.getProperty(DEF_CFG.PAGEDATE.key),
-			hideBlankWeeks = cfg.getProperty(DEF_CFG.HIDE_BLANK_WEEKS.key),
-			showWeekFooter = cfg.getProperty(DEF_CFG.SHOW_WEEK_FOOTER.key),
-			showWeekHeader = cfg.getProperty(DEF_CFG.SHOW_WEEK_HEADER.key),
-			mindate = cfg.getProperty(DEF_CFG.MINDATE.key),
-			maxdate = cfg.getProperty(DEF_CFG.MAXDATE.key);
-
-		if (mindate) {
-			mindate = DateMath.clearTime(mindate);
-		}
-		if (maxdate) {
-			maxdate = DateMath.clearTime(maxdate);
-		}
-
-		html[html.length] = '<tbody class="m' + (useDate.getMonth()+1) + ' ' + this.Style.CSS_BODY + '">';
-
-		var i = 0,
-			tempDiv = document.createElement("div"),
-			cell = document.createElement("td");
-
-		tempDiv.appendChild(cell);
-
-		var cal = this.parent || this;
-
-		for (var r=0;r<6;r++) {
-			weekNum = DateMath.getWeekNumber(workingDate, startDay);
-			weekClass = weekPrefix + weekNum;
-
-			// Local OOM check for performance, since we already have pagedate
-			if (r !== 0 && hideBlankWeeks === true && workingDate.getMonth() != useDate.getMonth()) {
-				break;
-			} else {
-				html[html.length] = '<tr class="' + weekClass + '">';
-
-				if (showWeekHeader) { html = this.renderRowHeader(weekNum, html); }
-
-				for (var d=0; d < 7; d++){ // Render actual days
-
-					cellRenderers = [];
-
-					this.clearElement(cell);
-					cell.className = this.Style.CSS_CELL;
-					cell.id = this.id + cellPrefix + i;
-
-					if (workingDate.getDate()		== todayDate && 
-						workingDate.getMonth()		== todayMonth &&
-						workingDate.getFullYear()	== todayYear) {
-						cellRenderers[cellRenderers.length]=cal.renderCellStyleToday;
-					}
-
-					var workingArray = [workingDate.getFullYear(),workingDate.getMonth()+1,workingDate.getDate()];
-					this.cellDates[this.cellDates.length] = workingArray; // Add this date to cellDates
-
-					// Local OOM check for performance, since we already have pagedate
-					if (workingDate.getMonth() != useDate.getMonth()) {
-						cellRenderers[cellRenderers.length]=cal.renderCellNotThisMonth;
-					} else {
-						Dom.addClass(cell, workingDayPrefix + workingDate.getDay());
-						Dom.addClass(cell, dayPrefix + workingDate.getDate());
-
-						for (var s=0;s<this.renderStack.length;++s) {
-
-							renderer = null;
-
-							var rArray = this.renderStack[s],
-								type = rArray[0],
-								month,
-								day,
-								year;
-
-							switch (type) {
-								case Calendar.DATE:
-									month = rArray[1][1];
-									day = rArray[1][2];
-									year = rArray[1][0];
-
-									if (workingDate.getMonth()+1 == month && workingDate.getDate() == day && workingDate.getFullYear() == year) {
-										renderer = rArray[2];
-										this.renderStack.splice(s,1);
-									}
-									break;
-								case Calendar.MONTH_DAY:
-									month = rArray[1][0];
-									day = rArray[1][1];
-
-									if (workingDate.getMonth()+1 == month && workingDate.getDate() == day) {
-										renderer = rArray[2];
-										this.renderStack.splice(s,1);
-									}
-									break;
-								case Calendar.RANGE:
-									var date1 = rArray[1][0],
-										date2 = rArray[1][1],
-										d1month = date1[1],
-										d1day = date1[2],
-										d1year = date1[0],
-										d1 = DateMath.getDate(d1year, d1month-1, d1day),
-										d2month = date2[1],
-										d2day = date2[2],
-										d2year = date2[0],
-										d2 = DateMath.getDate(d2year, d2month-1, d2day);
-
-									if (workingDate.getTime() >= d1.getTime() && workingDate.getTime() <= d2.getTime()) {
-										renderer = rArray[2];
-
-										if (workingDate.getTime()==d2.getTime()) { 
-											this.renderStack.splice(s,1);
-										}
-									}
-									break;
-								case Calendar.WEEKDAY:
-									var weekday = rArray[1][0];
-									if (workingDate.getDay()+1 == weekday) {
-										renderer = rArray[2];
-									}
-									break;
-								case Calendar.MONTH:
-									month = rArray[1][0];
-									if (workingDate.getMonth()+1 == month) {
-										renderer = rArray[2];
-									}
-									break;
-							}
-
-							if (renderer) {
-								cellRenderers[cellRenderers.length]=renderer;
-							}
-						}
-
-					}
-
-					if (this._indexOfSelectedFieldArray(workingArray) > -1) {
-						cellRenderers[cellRenderers.length]=cal.renderCellStyleSelected; 
-					}
-
-					if ((mindate && (workingDate.getTime() < mindate.getTime())) ||
-						(maxdate && (workingDate.getTime() > maxdate.getTime()))
-					) {
-						cellRenderers[cellRenderers.length]=cal.renderOutOfBoundsDate;
-					} else {
-						cellRenderers[cellRenderers.length]=cal.styleCellDefault;
-						cellRenderers[cellRenderers.length]=cal.renderCellDefault;	
-					}
-
-					for (var x=0; x < cellRenderers.length; ++x) {
-						if (cellRenderers[x].call(cal, workingDate, cell) == Calendar.STOP_RENDER) {
-							break;
-						}
-					}
-
-					workingDate.setTime(workingDate.getTime() + DateMath.ONE_DAY_MS);
-					// Just in case we crossed DST/Summertime boundaries
-					workingDate = DateMath.clearTime(workingDate);
-
-					if (i >= 0 && i <= 6) {
-						Dom.addClass(cell, this.Style.CSS_CELL_TOP);
-					}
-					if ((i % 7) === 0) {
-						Dom.addClass(cell, this.Style.CSS_CELL_LEFT);
-					}
-					if (((i+1) % 7) === 0) {
-						Dom.addClass(cell, this.Style.CSS_CELL_RIGHT);
-					}
-
-					var postDays = this.postMonthDays; 
-					if (hideBlankWeeks && postDays >= 7) {
-						var blankWeeks = Math.floor(postDays/7);
-						for (var p=0;p<blankWeeks;++p) {
-							postDays -= 7;
-						}
-					}
-					
-					if (i >= ((this.preMonthDays+postDays+this.monthDays)-7)) {
-						Dom.addClass(cell, this.Style.CSS_CELL_BOTTOM);
-					}
-	
-					html[html.length] = tempDiv.innerHTML;
-					i++;
-				}
-	
-				if (showWeekFooter) { html = this.renderRowFooter(weekNum, html); }
-	
-				html[html.length] = '</tr>';
-			}
-		}
-	
-		html[html.length] = '</tbody>';
-	
-		return html;
-	},
-	
-	/**
-	* Renders the calendar footer. In the default implementation, there is
-	* no footer.
-	* @method renderFooter
-	* @param {Array}	html	The current working HTML array
-	* @return {Array} The current working HTML array
-	*/
-	renderFooter : function(html) { return html; },
-	
-	/**
-	* Renders the calendar after it has been configured. The render() method has a specific call chain that will execute
-	* when the method is called: renderHeader, renderBody, renderFooter.
-	* Refer to the documentation for those methods for information on 
-	* individual render tasks.
-	* @method render
-	*/
-	render : function() {
-		this.beforeRenderEvent.fire();
-
-		// Find starting day of the current month
-		var workingDate = DateMath.findMonthStart(this.cfg.getProperty(DEF_CFG.PAGEDATE.key));
-
-		this.resetRenderers();
-		this.cellDates.length = 0;
-
-		Event.purgeElement(this.oDomContainer, true);
-
-		var html = [];
-
-		html[html.length] = '<table cellSpacing="0" class="' + this.Style.CSS_CALENDAR + ' y' + workingDate.getFullYear() + '" id="' + this.id + '">';
-		html = this.renderHeader(html);
-		html = this.renderBody(workingDate, html);
-		html = this.renderFooter(html);
-		html[html.length] = '</table>';
-
-		this.oDomContainer.innerHTML = html.join("\n");
-
-		this.applyListeners();
-		this.cells = this.oDomContainer.getElementsByTagName("td");
-	
-		this.cfg.refireEvent(DEF_CFG.TITLE.key);
-		this.cfg.refireEvent(DEF_CFG.CLOSE.key);
-		this.cfg.refireEvent(DEF_CFG.IFRAME.key);
-
-		this.renderEvent.fire();
-	},
-
-	/**
-	* Applies the Calendar's DOM listeners to applicable elements.
-	* @method applyListeners
-	*/
-	applyListeners : function() {
-		var root = this.oDomContainer,
-			cal = this.parent || this,
-			anchor = "a",
-			click = "click";
-
-		var linkLeft = Dom.getElementsByClassName(this.Style.CSS_NAV_LEFT, anchor, root),
-			linkRight = Dom.getElementsByClassName(this.Style.CSS_NAV_RIGHT, anchor, root);
-
-		if (linkLeft && linkLeft.length > 0) {
-			this.linkLeft = linkLeft[0];
-			Event.addListener(this.linkLeft, click, this.doPreviousMonthNav, cal, true);
-		}
-
-		if (linkRight && linkRight.length > 0) {
-			this.linkRight = linkRight[0];
-			Event.addListener(this.linkRight, click, this.doNextMonthNav, cal, true);
-		}
-
-		if (cal.cfg.getProperty("navigator") !== null) {
-			this.applyNavListeners();
-		}
-
-		if (this.domEventMap) {
-			var el,elements;
-			for (var cls in this.domEventMap) {	
-				if (Lang.hasOwnProperty(this.domEventMap, cls)) {
-					var items = this.domEventMap[cls];
-	
-					if (! (items instanceof Array)) {
-						items = [items];
-					}
-	
-					for (var i=0;i<items.length;i++)	{
-						var item = items[i];
-						elements = Dom.getElementsByClassName(cls, item.tag, this.oDomContainer);
-	
-						for (var c=0;c<elements.length;c++) {
-							el = elements[c];
-							 Event.addListener(el, item.event, item.handler, item.scope, item.correct );
-						}
-					}
-				}
-			}
-		}
-
-		Event.addListener(this.oDomContainer, "click", this.doSelectCell, this);
-		Event.addListener(this.oDomContainer, "mouseover", this.doCellMouseOver, this);
-		Event.addListener(this.oDomContainer, "mouseout", this.doCellMouseOut, this);
-	},
-
-	applyNavListeners : function() {
-		var calParent = this.parent || this,
-			cal = this,
-			navBtns = Dom.getElementsByClassName(this.Style.CSS_NAV, "a", this.oDomContainer);
-
-		if (navBtns.length > 0) {
-
-			Event.addListener(navBtns, "click", function (e, obj) {
-				var target = Event.getTarget(e);
-				// this == navBtn
-				if (this === target || Dom.isAncestor(this, target)) {
-					Event.preventDefault(e);
-				}
-				var navigator = calParent.oNavigator;
-				if (navigator) {
-					var pgdate = cal.cfg.getProperty("pagedate");
-					navigator.setYear(pgdate.getFullYear());
-					navigator.setMonth(pgdate.getMonth());
-					navigator.show();
-				}
-			});
-		}
-	},
-
-	/**
-	* Retrieves the Date object for the specified Calendar cell
-	* @method getDateByCellId
-	* @param {String}	id	The id of the cell
-	* @return {Date} The Date object for the specified Calendar cell
-	*/
-	getDateByCellId : function(id) {
-		var date = this.getDateFieldsByCellId(id);
-		return (date) ? DateMath.getDate(date[0],date[1]-1,date[2]) : null;
-	},
-	
-	/**
-	* Retrieves the Date object for the specified Calendar cell
-	* @method getDateFieldsByCellId
-	* @param {String}	id	The id of the cell
-	* @return {Array}	The array of Date fields for the specified Calendar cell
-	*/
-	getDateFieldsByCellId : function(id) {
-		id = this.getIndexFromId(id);
-		return (id > -1) ? this.cellDates[id] : null;
-	},
-
-	/**
-	 * Find the Calendar's cell index for a given date.
-	 * If the date is not found, the method returns -1.
-	 * <p>
-	 * The returned index can be used to lookup the cell HTMLElement  
-	 * using the Calendar's cells array or passed to selectCell to select 
-	 * cells by index. 
-	 * </p>
-	 *
-	 * See <a href="#cells">cells</a>, <a href="#selectCell">selectCell</a>.
-	 *
-	 * @method getCellIndex
-	 * @param {Date} date JavaScript Date object, for which to find a cell index.
-	 * @return {Number} The index of the date in Calendars cellDates/cells arrays, or -1 if the date 
-	 * is not on the curently rendered Calendar page.
-	 */
-	getCellIndex : function(date) {
-		var idx = -1;
-		if (date) {
-			var m = date.getMonth(),
-				y = date.getFullYear(),
-				d = date.getDate(),
-				dates = this.cellDates;
-
-			for (var i = 0; i < dates.length; ++i) {
-				var cellDate = dates[i];
-				if (cellDate[0] === y && cellDate[1] === m+1 && cellDate[2] === d) {
-					idx = i;
-					break;
-				}
-			}
-		}
-		return idx;
-	},
-
-	/**
-	 * Given the id used to mark each Calendar cell, this method
-	 * extracts the index number from the id.
-	 * 
-	 * @param {String} strId The cell id
-	 * @return {Number} The index of the cell, or -1 if id does not contain an index number
-	 */
-	getIndexFromId : function(strId) {
-		var idx = -1,
-			li = strId.lastIndexOf("_cell");
-
-		if (li > -1) {
-			idx = parseInt(strId.substring(li + 5), 10);
-		}
-
-		return idx;
-	},
-	
-	// BEGIN BUILT-IN TABLE CELL RENDERERS
-	
-	/**
-	* Renders a cell that falls before the minimum date or after the maximum date.
-	* widget class.
-	* @method renderOutOfBoundsDate
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	* @return {String} YAHOO.widget.Calendar.STOP_RENDER if rendering should stop with this style, null or nothing if rendering
-	*			should not be terminated
-	*/
-	renderOutOfBoundsDate : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_OOB);
-		cell.innerHTML = workingDate.getDate();
-		return Calendar.STOP_RENDER;
-	},
-	
-	/**
-	* Renders the row header for a week.
-	* @method renderRowHeader
-	* @param {Number}	weekNum	The week number of the current row
-	* @param {Array}	cell	The current working HTML array
-	*/
-	renderRowHeader : function(weekNum, html) {
-		html[html.length] = '<th class="calrowhead">' + weekNum + '</th>';
-		return html;
-	},
-	
-	/**
-	* Renders the row footer for a week.
-	* @method renderRowFooter
-	* @param {Number}	weekNum	The week number of the current row
-	* @param {Array}	cell	The current working HTML array
-	*/
-	renderRowFooter : function(weekNum, html) {
-		html[html.length] = '<th class="calrowfoot">' + weekNum + '</th>';
-		return html;
-	},
-	
-	/**
-	* Renders a single standard calendar cell in the calendar widget table.
-	* All logic for determining how a standard default cell will be rendered is 
-	* encapsulated in this method, and must be accounted for when extending the
-	* widget class.
-	* @method renderCellDefault
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	*/
-	renderCellDefault : function(workingDate, cell) {
-		cell.innerHTML = '<a href="#" class="' + this.Style.CSS_CELL_SELECTOR + '">' + this.buildDayLabel(workingDate) + "</a>";
-	},
-	
-	/**
-	* Styles a selectable cell.
-	* @method styleCellDefault
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	*/
-	styleCellDefault : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_SELECTABLE);
-	},
-	
-	
-	/**
-	* Renders a single standard calendar cell using the CSS hightlight1 style
-	* @method renderCellStyleHighlight1
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	*/
-	renderCellStyleHighlight1 : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_HIGHLIGHT1);
-	},
-	
-	/**
-	* Renders a single standard calendar cell using the CSS hightlight2 style
-	* @method renderCellStyleHighlight2
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	*/
-	renderCellStyleHighlight2 : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_HIGHLIGHT2);
-	},
-	
-	/**
-	* Renders a single standard calendar cell using the CSS hightlight3 style
-	* @method renderCellStyleHighlight3
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	*/
-	renderCellStyleHighlight3 : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_HIGHLIGHT3);
-	},
-	
-	/**
-	* Renders a single standard calendar cell using the CSS hightlight4 style
-	* @method renderCellStyleHighlight4
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	*/
-	renderCellStyleHighlight4 : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_HIGHLIGHT4);
-	},
-	
-	/**
-	* Applies the default style used for rendering today's date to the current calendar cell
-	* @method renderCellStyleToday
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	*/
-	renderCellStyleToday : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_TODAY);
-	},
-	
-	/**
-	* Applies the default style used for rendering selected dates to the current calendar cell
-	* @method renderCellStyleSelected
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	* @return {String} YAHOO.widget.Calendar.STOP_RENDER if rendering should stop with this style, null or nothing if rendering
-	*			should not be terminated
-	*/
-	renderCellStyleSelected : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_SELECTED);
-	},
-	
-	/**
-	* Applies the default style used for rendering dates that are not a part of the current
-	* month (preceding or trailing the cells for the current month)
-	* @method renderCellNotThisMonth
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	* @return {String} YAHOO.widget.Calendar.STOP_RENDER if rendering should stop with this style, null or nothing if rendering
-	*			should not be terminated
-	*/
-	renderCellNotThisMonth : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL_OOM);
-		cell.innerHTML=workingDate.getDate();
-		return Calendar.STOP_RENDER;
-	},
-	
-	/**
-	* Renders the current calendar cell as a non-selectable "black-out" date using the default
-	* restricted style.
-	* @method renderBodyCellRestricted
-	* @param {Date}					workingDate		The current working Date object being used to generate the calendar
-	* @param {HTMLTableCellElement}	cell			The current working cell in the calendar
-	* @return {String} YAHOO.widget.Calendar.STOP_RENDER if rendering should stop with this style, null or nothing if rendering
-	*			should not be terminated
-	*/
-	renderBodyCellRestricted : function(workingDate, cell) {
-		Dom.addClass(cell, this.Style.CSS_CELL);
-		Dom.addClass(cell, this.Style.CSS_CELL_RESTRICTED);
-		cell.innerHTML=workingDate.getDate();
-		return Calendar.STOP_RENDER;
-	},
-	
-	// END BUILT-IN TABLE CELL RENDERERS
-	
-	// BEGIN MONTH NAVIGATION METHODS
-	
-	/**
-	* Adds the designated number of months to the current calendar month, and sets the current
-	* calendar page date to the new month.
-	* @method addMonths
-	* @param {Number}	count	The number of months to add to the current calendar
-	*/
-	addMonths : function(count) {
-		var cfgPageDate = DEF_CFG.PAGEDATE.key;
-		this.cfg.setProperty(cfgPageDate, DateMath.add(this.cfg.getProperty(cfgPageDate), DateMath.MONTH, count));
-		this.resetRenderers();
-		this.changePageEvent.fire();
-	},
-	
-	/**
-	* Subtracts the designated number of months from the current calendar month, and sets the current
-	* calendar page date to the new month.
-	* @method subtractMonths
-	* @param {Number}	count	The number of months to subtract from the current calendar
-	*/
-	subtractMonths : function(count) {
-		var cfgPageDate = DEF_CFG.PAGEDATE.key;
-		this.cfg.setProperty(cfgPageDate, DateMath.subtract(this.cfg.getProperty(cfgPageDate), DateMath.MONTH, count));
-		this.resetRenderers();
-		this.changePageEvent.fire();
-	},
-
-	/**
-	* Adds the designated number of years to the current calendar, and sets the current
-	* calendar page date to the new month.
-	* @method addYears
-	* @param {Number}	count	The number of years to add to the current calendar
-	*/
-	addYears : function(count) {
-		var cfgPageDate = DEF_CFG.PAGEDATE.key;
-		this.cfg.setProperty(cfgPageDate, DateMath.add(this.cfg.getProperty(cfgPageDate), DateMath.YEAR, count));
-		this.resetRenderers();
-		this.changePageEvent.fire();
-	},
-	
-	/**
-	* Subtcats the designated number of years from the current calendar, and sets the current
-	* calendar page date to the new month.
-	* @method subtractYears
-	* @param {Number}	count	The number of years to subtract from the current calendar
-	*/
-	subtractYears : function(count) {
-		var cfgPageDate = DEF_CFG.PAGEDATE.key;
-		this.cfg.setProperty(cfgPageDate, DateMath.subtract(this.cfg.getProperty(cfgPageDate), DateMath.YEAR, count));
-		this.resetRenderers();
-		this.changePageEvent.fire();
-	},
-	
-	/**
-	* Navigates to the next month page in the calendar widget.
-	* @method nextMonth
-	*/
-	nextMonth : function() {
-		this.addMonths(1);
-	},
-	
-	/**
-	* Navigates to the previous month page in the calendar widget.
-	* @method previousMonth
-	*/
-	previousMonth : function() {
-		this.subtractMonths(1);
-	},
-	
-	/**
-	* Navigates to the next year in the currently selected month in the calendar widget.
-	* @method nextYear
-	*/
-	nextYear : function() {
-		this.addYears(1);
-	},
-	
-	/**
-	* Navigates to the previous year in the currently selected month in the calendar widget.
-	* @method previousYear
-	*/
-	previousYear : function() {
-		this.subtractYears(1);
-	},
-	
-	// END MONTH NAVIGATION METHODS
-	
-	// BEGIN SELECTION METHODS
-	
-	/**
-	* Resets the calendar widget to the originally selected month and year, and 
-	* sets the calendar to the initial selection(s).
-	* @method reset
-	*/
-	reset : function() {
-		this.cfg.resetProperty(DEF_CFG.SELECTED.key);
-		this.cfg.resetProperty(DEF_CFG.PAGEDATE.key);
-		this.resetEvent.fire();
-	},
-	
-	/**
-	* Clears the selected dates in the current calendar widget and sets the calendar
-	* to the current month and year.
-	* @method clear
-	*/
-	clear : function() {
-		this.cfg.setProperty(DEF_CFG.SELECTED.key, []);
-		this.cfg.setProperty(DEF_CFG.PAGEDATE.key, new Date(this.today.getTime()));
-		this.clearEvent.fire();
-	},
-	
-	/**
-	* Selects a date or a collection of dates on the current calendar. This method, by default,
-	* does not call the render method explicitly. Once selection has completed, render must be 
-	* called for the changes to be reflected visually.
-	*
-	* Any dates which are OOB (out of bounds, not selectable) will not be selected and the array of 
-	* selected dates passed to the selectEvent will not contain OOB dates.
-	* 
-	* If all dates are OOB, the no state change will occur; beforeSelect and select events will not be fired.
-	*
-	* @method select
-	* @param	{String/Date/Date[]}	date	The date string of dates to select in the current calendar. Valid formats are
-	*								individual date(s) (12/24/2005,12/26/2005) or date range(s) (12/24/2005-1/1/2006).
-	*								Multiple comma-delimited dates can also be passed to this method (12/24/2005,12/11/2005-12/13/2005).
-	*								This method can also take a JavaScript Date object or an array of Date objects.
-	* @return	{Date[]}			Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	select : function(date) {
-
-		var aToBeSelected = this._toFieldArray(date),
-			validDates = [],
-			selected = [],
-			cfgSelected = DEF_CFG.SELECTED.key;
-
-		
-		for (var a=0; a < aToBeSelected.length; ++a) {
-			var toSelect = aToBeSelected[a];
-
-			if (!this.isDateOOB(this._toDate(toSelect))) {
-
-				if (validDates.length === 0) {
-					this.beforeSelectEvent.fire();
-					selected = this.cfg.getProperty(cfgSelected);
-				}
-				validDates.push(toSelect);
-
-				if (this._indexOfSelectedFieldArray(toSelect) == -1) { 
-					selected[selected.length] = toSelect;
-				}
-			}
-		}
-
-
-		if (validDates.length > 0) {
-			if (this.parent) {
-				this.parent.cfg.setProperty(cfgSelected, selected);
-			} else {
-				this.cfg.setProperty(cfgSelected, selected);
-			}
-			this.selectEvent.fire(validDates);
-		}
-
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Selects a date on the current calendar by referencing the index of the cell that should be selected.
-	* This method is used to easily select a single cell (usually with a mouse click) without having to do
-	* a full render. The selected style is applied to the cell directly.
-	*
-	* If the cell is not marked with the CSS_CELL_SELECTABLE class (as is the case by default for out of month 
-	* or out of bounds cells), it will not be selected and in such a case beforeSelect and select events will not be fired.
-	* 
-	* @method selectCell
-	* @param	{Number}	cellIndex	The index of the cell to select in the current calendar. 
-	* @return	{Date[]}	Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	selectCell : function(cellIndex) {
-
-		var cell = this.cells[cellIndex],
-			cellDate = this.cellDates[cellIndex],
-			dCellDate = this._toDate(cellDate),
-			selectable = Dom.hasClass(cell, this.Style.CSS_CELL_SELECTABLE);
-
-
-		if (selectable) {
-	
-			this.beforeSelectEvent.fire();
-	
-			var cfgSelected = DEF_CFG.SELECTED.key;
-			var selected = this.cfg.getProperty(cfgSelected);
-	
-			var selectDate = cellDate.concat();
-	
-			if (this._indexOfSelectedFieldArray(selectDate) == -1) {
-				selected[selected.length] = selectDate;
-			}
-			if (this.parent) {
-				this.parent.cfg.setProperty(cfgSelected, selected);
-			} else {
-				this.cfg.setProperty(cfgSelected, selected);
-			}
-			this.renderCellStyleSelected(dCellDate,cell);
-			this.selectEvent.fire([selectDate]);
-	
-			this.doCellMouseOut.call(cell, null, this);		
-		}
-	
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Deselects a date or a collection of dates on the current calendar. This method, by default,
-	* does not call the render method explicitly. Once deselection has completed, render must be 
-	* called for the changes to be reflected visually.
-	* 
-	* The method will not attempt to deselect any dates which are OOB (out of bounds, and hence not selectable) 
-	* and the array of deselected dates passed to the deselectEvent will not contain any OOB dates.
-	* 
-	* If all dates are OOB, beforeDeselect and deselect events will not be fired.
-	* 
-	* @method deselect
-	* @param	{String/Date/Date[]}	date	The date string of dates to deselect in the current calendar. Valid formats are
-	*								individual date(s) (12/24/2005,12/26/2005) or date range(s) (12/24/2005-1/1/2006).
-	*								Multiple comma-delimited dates can also be passed to this method (12/24/2005,12/11/2005-12/13/2005).
-	*								This method can also take a JavaScript Date object or an array of Date objects.	
-	* @return	{Date[]}			Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	deselect : function(date) {
-
-		var aToBeDeselected = this._toFieldArray(date),
-			validDates = [],
-			selected = [],
-			cfgSelected = DEF_CFG.SELECTED.key;
-
-
-		for (var a=0; a < aToBeDeselected.length; ++a) {
-			var toDeselect = aToBeDeselected[a];
-	
-			if (!this.isDateOOB(this._toDate(toDeselect))) {
-	
-				if (validDates.length === 0) {
-					this.beforeDeselectEvent.fire();
-					selected = this.cfg.getProperty(cfgSelected);
-				}
-	
-				validDates.push(toDeselect);
-	
-				var index = this._indexOfSelectedFieldArray(toDeselect);
-				if (index != -1) {	
-					selected.splice(index,1);
-				}
-			}
-		}
-	
-	
-		if (validDates.length > 0) {
-			if (this.parent) {
-				this.parent.cfg.setProperty(cfgSelected, selected);
-			} else {
-				this.cfg.setProperty(cfgSelected, selected);
-			}
-			this.deselectEvent.fire(validDates);
-		}
-	
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Deselects a date on the current calendar by referencing the index of the cell that should be deselected.
-	* This method is used to easily deselect a single cell (usually with a mouse click) without having to do
-	* a full render. The selected style is removed from the cell directly.
-	* 
-	* If the cell is not marked with the CSS_CELL_SELECTABLE class (as is the case by default for out of month 
-	* or out of bounds cells), the method will not attempt to deselect it and in such a case, beforeDeselect and 
-	* deselect events will not be fired.
-	* 
-	* @method deselectCell
-	* @param	{Number}	cellIndex	The index of the cell to deselect in the current calendar. 
-	* @return	{Date[]}	Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	deselectCell : function(cellIndex) {
-		var cell = this.cells[cellIndex],
-			cellDate = this.cellDates[cellIndex],
-			cellDateIndex = this._indexOfSelectedFieldArray(cellDate);
-
-		var selectable = Dom.hasClass(cell, this.Style.CSS_CELL_SELECTABLE);
-
-		if (selectable) {
-
-			this.beforeDeselectEvent.fire();
-
-			var selected = this.cfg.getProperty(DEF_CFG.SELECTED.key),
-				dCellDate = this._toDate(cellDate),
-				selectDate = cellDate.concat();
-
-			if (cellDateIndex > -1) {
-				if (this.cfg.getProperty(DEF_CFG.PAGEDATE.key).getMonth() == dCellDate.getMonth() &&
-					this.cfg.getProperty(DEF_CFG.PAGEDATE.key).getFullYear() == dCellDate.getFullYear()) {
-					Dom.removeClass(cell, this.Style.CSS_CELL_SELECTED);
-				}
-				selected.splice(cellDateIndex, 1);
-			}
-	
-			if (this.parent) {
-				this.parent.cfg.setProperty(DEF_CFG.SELECTED.key, selected);
-			} else {
-				this.cfg.setProperty(DEF_CFG.SELECTED.key, selected);
-			}
-	
-			this.deselectEvent.fire(selectDate);
-		}
-	
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Deselects all dates on the current calendar.
-	* @method deselectAll
-	* @return {Date[]}		Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*						Assuming that this function executes properly, the return value should be an empty array.
-	*						However, the empty array is returned for the sake of being able to check the selection status
-	*						of the calendar.
-	*/
-	deselectAll : function() {
-		this.beforeDeselectEvent.fire();
-		
-		var cfgSelected = DEF_CFG.SELECTED.key,
-			selected = this.cfg.getProperty(cfgSelected),
-			count = selected.length,
-			sel = selected.concat();
-
-		if (this.parent) {
-			this.parent.cfg.setProperty(cfgSelected, []);
-		} else {
-			this.cfg.setProperty(cfgSelected, []);
-		}
-		
-		if (count > 0) {
-			this.deselectEvent.fire(sel);
-		}
-	
-		return this.getSelectedDates();
-	},
-	
-	// END SELECTION METHODS
-	
-	// BEGIN TYPE CONVERSION METHODS
-	
-	/**
-	* Converts a date (either a JavaScript Date object, or a date string) to the internal data structure
-	* used to represent dates: [[yyyy,mm,dd],[yyyy,mm,dd]].
-	* @method _toFieldArray
-	* @private
-	* @param	{String/Date/Date[]}	date	The date string of dates to deselect in the current calendar. Valid formats are
-	*								individual date(s) (12/24/2005,12/26/2005) or date range(s) (12/24/2005-1/1/2006).
-	*								Multiple comma-delimited dates can also be passed to this method (12/24/2005,12/11/2005-12/13/2005).
-	*								This method can also take a JavaScript Date object or an array of Date objects.	
-	* @return {Array[](Number[])}	Array of date field arrays
-	*/
-	_toFieldArray : function(date) {
-		var returnDate = [];
-	
-		if (date instanceof Date) {
-			returnDate = [[date.getFullYear(), date.getMonth()+1, date.getDate()]];
-		} else if (Lang.isString(date)) {
-			returnDate = this._parseDates(date);
-		} else if (Lang.isArray(date)) {
-			for (var i=0;i<date.length;++i) {
-				var d = date[i];
-				returnDate[returnDate.length] = [d.getFullYear(),d.getMonth()+1,d.getDate()];
-			}
-		}
-		
-		return returnDate;
-	},
-	
-	/**
-	* Converts a date field array [yyyy,mm,dd] to a JavaScript Date object. The date field array
-	* is the format in which dates are as provided as arguments to selectEvent and deselectEvent listeners.
-	* 
-	* @method toDate
-	* @param	{Number[]}	dateFieldArray	The date field array to convert to a JavaScript Date.
-	* @return	{Date}	JavaScript Date object representing the date field array.
-	*/
-	toDate : function(dateFieldArray) {
-		return this._toDate(dateFieldArray);
-	},
-	
-	/**
-	* Converts a date field array [yyyy,mm,dd] to a JavaScript Date object.
-	* @method _toDate
-	* @private
-	* @deprecated Made public, toDate 
-	* @param	{Number[]}		dateFieldArray	The date field array to convert to a JavaScript Date.
-	* @return	{Date}	JavaScript Date object representing the date field array
-	*/
-	_toDate : function(dateFieldArray) {
-		if (dateFieldArray instanceof Date) {
-			return dateFieldArray;
-		} else {
-			return DateMath.getDate(dateFieldArray[0],dateFieldArray[1]-1,dateFieldArray[2]);
-		}
-	},
-	
-	// END TYPE CONVERSION METHODS 
-	
-	// BEGIN UTILITY METHODS
-	
-	/**
-	* Converts a date field array [yyyy,mm,dd] to a JavaScript Date object.
-	* @method _fieldArraysAreEqual
-	* @private
-	* @param	{Number[]}	array1	The first date field array to compare
-	* @param	{Number[]}	array2	The first date field array to compare
-	* @return	{Boolean}	The boolean that represents the equality of the two arrays
-	*/
-	_fieldArraysAreEqual : function(array1, array2) {
-		var match = false;
-	
-		if (array1[0]==array2[0]&&array1[1]==array2[1]&&array1[2]==array2[2]) {
-			match=true;	
-		}
-	
-		return match;
-	},
-	
-	/**
-	* Gets the index of a date field array [yyyy,mm,dd] in the current list of selected dates.
-	* @method	_indexOfSelectedFieldArray
-	* @private
-	* @param	{Number[]}		find	The date field array to search for
-	* @return	{Number}			The index of the date field array within the collection of selected dates.
-	*								-1 will be returned if the date is not found.
-	*/
-	_indexOfSelectedFieldArray : function(find) {
-		var selected = -1,
-			seldates = this.cfg.getProperty(DEF_CFG.SELECTED.key);
-	
-		for (var s=0;s<seldates.length;++s) {
-			var sArray = seldates[s];
-			if (find[0]==sArray[0]&&find[1]==sArray[1]&&find[2]==sArray[2]) {
-				selected = s;
-				break;
-			}
-		}
-	
-		return selected;
-	},
-	
-	/**
-	* Determines whether a given date is OOM (out of month).
-	* @method	isDateOOM
-	* @param	{Date}	date	The JavaScript Date object for which to check the OOM status
-	* @return	{Boolean}	true if the date is OOM
-	*/
-	isDateOOM : function(date) {
-		return (date.getMonth() != this.cfg.getProperty(DEF_CFG.PAGEDATE.key).getMonth());
-	},
-	
-	/**
-	* Determines whether a given date is OOB (out of bounds - less than the mindate or more than the maxdate).
-	*
-	* @method	isDateOOB
-	* @param	{Date}	date	The JavaScript Date object for which to check the OOB status
-	* @return	{Boolean}	true if the date is OOB
-	*/
-	isDateOOB : function(date) {
-		var minDate = this.cfg.getProperty(DEF_CFG.MINDATE.key),
-			maxDate = this.cfg.getProperty(DEF_CFG.MAXDATE.key),
-			dm = DateMath;
-		
-		if (minDate) {
-			minDate = dm.clearTime(minDate);
-		} 
-		if (maxDate) {
-			maxDate = dm.clearTime(maxDate);
-		}
-	
-		var clearedDate = new Date(date.getTime());
-		clearedDate = dm.clearTime(clearedDate);
-	
-		return ((minDate && clearedDate.getTime() < minDate.getTime()) || (maxDate && clearedDate.getTime() > maxDate.getTime()));
-	},
-	
-	/**
-	 * Parses a pagedate configuration property value. The value can either be specified as a string of form "mm/yyyy" or a Date object 
-	 * and is parsed into a Date object normalized to the first day of the month. If no value is passed in, the month and year from today's date are used to create the Date object 
-	 * @method	_parsePageDate
-	 * @private
-	 * @param {Date|String}	date	Pagedate value which needs to be parsed
-	 * @return {Date}	The Date object representing the pagedate
-	 */
-	_parsePageDate : function(date) {
-		var parsedDate;
-
-		if (date) {
-			if (date instanceof Date) {
-				parsedDate = DateMath.findMonthStart(date);
-			} else {
-				var month, year, aMonthYear;
-				aMonthYear = date.split(this.cfg.getProperty(DEF_CFG.DATE_FIELD_DELIMITER.key));
-				month = parseInt(aMonthYear[this.cfg.getProperty(DEF_CFG.MY_MONTH_POSITION.key)-1], 10)-1;
-				year = parseInt(aMonthYear[this.cfg.getProperty(DEF_CFG.MY_YEAR_POSITION.key)-1], 10);
-
-				parsedDate = DateMath.getDate(year, month, 1);
-			}
-		} else {
-			parsedDate = DateMath.getDate(this.today.getFullYear(), this.today.getMonth(), 1);
-		}
-		return parsedDate;
-	},
-	
-	// END UTILITY METHODS
-	
-	// BEGIN EVENT HANDLERS
-	
-	/**
-	* Event executed before a date is selected in the calendar widget.
-	* @deprecated Event handlers for this event should be susbcribed to beforeSelectEvent.
-	*/
-	onBeforeSelect : function() {
-		if (this.cfg.getProperty(DEF_CFG.MULTI_SELECT.key) === false) {
-			if (this.parent) {
-				this.parent.callChildFunction("clearAllBodyCellStyles", this.Style.CSS_CELL_SELECTED);
-				this.parent.deselectAll();
-			} else {
-				this.clearAllBodyCellStyles(this.Style.CSS_CELL_SELECTED);
-				this.deselectAll();
-			}
-		}
-	},
-	
-	/**
-	* Event executed when a date is selected in the calendar widget.
-	* @param	{Array}	selected	An array of date field arrays representing which date or dates were selected. Example: [ [2006,8,6],[2006,8,7],[2006,8,8] ]
-	* @deprecated Event handlers for this event should be susbcribed to selectEvent.
-	*/
-	onSelect : function(selected) { },
-	
-	/**
-	* Event executed before a date is deselected in the calendar widget.
-	* @deprecated Event handlers for this event should be susbcribed to beforeDeselectEvent.
-	*/
-	onBeforeDeselect : function() { },
-	
-	/**
-	* Event executed when a date is deselected in the calendar widget.
-	* @param	{Array}	selected	An array of date field arrays representing which date or dates were deselected. Example: [ [2006,8,6],[2006,8,7],[2006,8,8] ]
-	* @deprecated Event handlers for this event should be susbcribed to deselectEvent.
-	*/
-	onDeselect : function(deselected) { },
-	
-	/**
-	* Event executed when the user navigates to a different calendar page.
-	* @deprecated Event handlers for this event should be susbcribed to changePageEvent.
-	*/
-	onChangePage : function() {
-		this.render();
-	},
-
-	/**
-	* Event executed when the calendar widget is rendered.
-	* @deprecated Event handlers for this event should be susbcribed to renderEvent.
-	*/
-	onRender : function() { },
-
-	/**
-	* Event executed when the calendar widget is reset to its original state.
-	* @deprecated Event handlers for this event should be susbcribed to resetEvemt.
-	*/
-	onReset : function() { this.render(); },
-
-	/**
-	* Event executed when the calendar widget is completely cleared to the current month with no selections.
-	* @deprecated Event handlers for this event should be susbcribed to clearEvent.
-	*/
-	onClear : function() { this.render(); },
-	
-	/**
-	* Validates the calendar widget. This method has no default implementation
-	* and must be extended by subclassing the widget.
-	* @return	Should return true if the widget validates, and false if
-	* it doesn't.
-	* @type Boolean
-	*/
-	validate : function() { return true; },
-	
-	// END EVENT HANDLERS
-	
-	// BEGIN DATE PARSE METHODS
-	
-	/**
-	* Converts a date string to a date field array
-	* @private
-	* @param	{String}	sDate			Date string. Valid formats are mm/dd and mm/dd/yyyy.
-	* @return				A date field array representing the string passed to the method
-	* @type Array[](Number[])
-	*/
-	_parseDate : function(sDate) {
-		var aDate = sDate.split(this.Locale.DATE_FIELD_DELIMITER),
-			rArray;
-	
-		if (aDate.length == 2) {
-			rArray = [aDate[this.Locale.MD_MONTH_POSITION-1],aDate[this.Locale.MD_DAY_POSITION-1]];
-			rArray.type = Calendar.MONTH_DAY;
-		} else {
-			rArray = [aDate[this.Locale.MDY_YEAR_POSITION-1],aDate[this.Locale.MDY_MONTH_POSITION-1],aDate[this.Locale.MDY_DAY_POSITION-1]];
-			rArray.type = Calendar.DATE;
-		}
-	
-		for (var i=0;i<rArray.length;i++) {
-			rArray[i] = parseInt(rArray[i], 10);
-		}
-	
-		return rArray;
-	},
-	
-	/**
-	* Converts a multi or single-date string to an array of date field arrays
-	* @private
-	* @param	{String}	sDates		Date string with one or more comma-delimited dates. Valid formats are mm/dd, mm/dd/yyyy, mm/dd/yyyy-mm/dd/yyyy
-	* @return							An array of date field arrays
-	* @type Array[](Number[])
-	*/
-	_parseDates : function(sDates) {
-		var aReturn = [],
-			aDates = sDates.split(this.Locale.DATE_DELIMITER);
-		
-		for (var d=0;d<aDates.length;++d) {
-			var sDate = aDates[d];
-	
-			if (sDate.indexOf(this.Locale.DATE_RANGE_DELIMITER) != -1) {
-				// This is a range
-				var aRange = sDate.split(this.Locale.DATE_RANGE_DELIMITER),
-					dateStart = this._parseDate(aRange[0]),
-					dateEnd = this._parseDate(aRange[1]),
-					fullRange = this._parseRange(dateStart, dateEnd);
-
-				aReturn = aReturn.concat(fullRange);
-			} else {
-				// This is not a range
-				var aDate = this._parseDate(sDate);
-				aReturn.push(aDate);
-			}
-		}
-		return aReturn;
-	},
-	
-	/**
-	* Converts a date range to the full list of included dates
-	* @private
-	* @param	{Number[]}	startDate	Date field array representing the first date in the range
-	* @param	{Number[]}	endDate		Date field array representing the last date in the range
-	* @return							An array of date field arrays
-	* @type Array[](Number[])
-	*/
-	_parseRange : function(startDate, endDate) {
-		var dCurrent = DateMath.add(DateMath.getDate(startDate[0],startDate[1]-1,startDate[2]),DateMath.DAY,1),
-			dEnd     = DateMath.getDate(endDate[0],  endDate[1]-1,  endDate[2]),
-			results = [];
-
-		results.push(startDate);
-		while (dCurrent.getTime() <= dEnd.getTime()) {
-			results.push([dCurrent.getFullYear(),dCurrent.getMonth()+1,dCurrent.getDate()]);
-			dCurrent = DateMath.add(dCurrent,DateMath.DAY,1);
-		}
-		return results;
-	},
-	
-	// END DATE PARSE METHODS
-	
-	// BEGIN RENDERER METHODS
-	
-	/**
-	* Resets the render stack of the current calendar to its original pre-render value.
-	*/
-	resetRenderers : function() {
-		this.renderStack = this._renderStack.concat();
-	},
-	
-	/**
-	 * Removes all custom renderers added to the Calendar through the addRenderer, addMonthRenderer and 
-	 * addWeekdayRenderer methods. Calendar's render method needs to be called after removing renderers 
-	 * to re-render the Calendar without custom renderers applied.
-	 */
-	removeRenderers : function() {
-		this._renderStack = [];
-		this.renderStack = [];
-	},
-
-	/**
-	* Clears the inner HTML, CSS class and style information from the specified cell.
-	* @method clearElement
-	* @param	{HTMLTableCellElement} cell The cell to clear
-	*/ 
-	clearElement : function(cell) {
-		cell.innerHTML = "&#160;";
-		cell.className="";
-	},
-	
-	/**
-	* Adds a renderer to the render stack. The function reference passed to this method will be executed
-	* when a date cell matches the conditions specified in the date string for this renderer.
-	* @method addRenderer
-	* @param	{String}	sDates		A date string to associate with the specified renderer. Valid formats
-	*									include date (12/24/2005), month/day (12/24), and range (12/1/2004-1/1/2005)
-	* @param	{Function}	fnRender	The function executed to render cells that match the render rules for this renderer.
-	*/
-	addRenderer : function(sDates, fnRender) {
-		var aDates = this._parseDates(sDates);
-		for (var i=0;i<aDates.length;++i) {
-			var aDate = aDates[i];
-		
-			if (aDate.length == 2) { // this is either a range or a month/day combo
-				if (aDate[0] instanceof Array) { // this is a range
-					this._addRenderer(Calendar.RANGE,aDate,fnRender);
-				} else { // this is a month/day combo
-					this._addRenderer(Calendar.MONTH_DAY,aDate,fnRender);
-				}
-			} else if (aDate.length == 3) {
-				this._addRenderer(Calendar.DATE,aDate,fnRender);
-			}
-		}
-	},
-	
-	/**
-	* The private method used for adding cell renderers to the local render stack.
-	* This method is called by other methods that set the renderer type prior to the method call.
-	* @method _addRenderer
-	* @private
-	* @param	{String}	type		The type string that indicates the type of date renderer being added.
-	*									Values are YAHOO.widget.Calendar.DATE, YAHOO.widget.Calendar.MONTH_DAY, YAHOO.widget.Calendar.WEEKDAY,
-	*									YAHOO.widget.Calendar.RANGE, YAHOO.widget.Calendar.MONTH
-	* @param	{Array}		aDates		An array of dates used to construct the renderer. The format varies based
-	*									on the renderer type
-	* @param	{Function}	fnRender	The function executed to render cells that match the render rules for this renderer.
-	*/
-	_addRenderer : function(type, aDates, fnRender) {
-		var add = [type,aDates,fnRender];
-		this.renderStack.unshift(add);	
-		this._renderStack = this.renderStack.concat();
-	},
-
-	/**
-	* Adds a month to the render stack. The function reference passed to this method will be executed
-	* when a date cell matches the month passed to this method.
-	* @method addMonthRenderer
-	* @param	{Number}	month		The month (1-12) to associate with this renderer
-	* @param	{Function}	fnRender	The function executed to render cells that match the render rules for this renderer.
-	*/
-	addMonthRenderer : function(month, fnRender) {
-		this._addRenderer(Calendar.MONTH,[month],fnRender);
-	},
-
-	/**
-	* Adds a weekday to the render stack. The function reference passed to this method will be executed
-	* when a date cell matches the weekday passed to this method.
-	* @method addWeekdayRenderer
-	* @param	{Number}	weekday		The weekday (Sunday = 1, Monday = 2 ... Saturday = 7) to associate with this renderer
-	* @param	{Function}	fnRender	The function executed to render cells that match the render rules for this renderer.
-	*/
-	addWeekdayRenderer : function(weekday, fnRender) {
-		this._addRenderer(Calendar.WEEKDAY,[weekday],fnRender);
-	},
-
-	// END RENDERER METHODS
-	
-	// BEGIN CSS METHODS
-	
-	/**
-	* Removes all styles from all body cells in the current calendar table.
-	* @method clearAllBodyCellStyles
-	* @param	{style}	style The CSS class name to remove from all calendar body cells
-	*/
-	clearAllBodyCellStyles : function(style) {
-		for (var c=0;c<this.cells.length;++c) {
-			Dom.removeClass(this.cells[c],style);
-		}
-	},
-	
-	// END CSS METHODS
-	
-	// BEGIN GETTER/SETTER METHODS
-	/**
-	* Sets the calendar's month explicitly
-	* @method setMonth
-	* @param {Number}	month		The numeric month, from 0 (January) to 11 (December)
-	*/
-	setMonth : function(month) {
-		var cfgPageDate = DEF_CFG.PAGEDATE.key,
-			current = this.cfg.getProperty(cfgPageDate);
-		current.setMonth(parseInt(month, 10));
-		this.cfg.setProperty(cfgPageDate, current);
-	},
-
-	/**
-	* Sets the calendar's year explicitly.
-	* @method setYear
-	* @param {Number}	year		The numeric 4-digit year
-	*/
-	setYear : function(year) {
-		var cfgPageDate = DEF_CFG.PAGEDATE.key,
-			current = this.cfg.getProperty(cfgPageDate);
-
-		current.setFullYear(parseInt(year, 10));
-		this.cfg.setProperty(cfgPageDate, current);
-	},
-
-	/**
-	* Gets the list of currently selected dates from the calendar.
-	* @method getSelectedDates
-	* @return {Date[]} An array of currently selected JavaScript Date objects.
-	*/
-	getSelectedDates : function() {
-		var returnDates = [],
-			selected = this.cfg.getProperty(DEF_CFG.SELECTED.key);
-
-		for (var d=0;d<selected.length;++d) {
-			var dateArray = selected[d];
-
-			var date = DateMath.getDate(dateArray[0],dateArray[1]-1,dateArray[2]);
-			returnDates.push(date);
-		}
-
-		returnDates.sort( function(a,b) { return a-b; } );
-		return returnDates;
-	},
-
-	/// END GETTER/SETTER METHODS ///
-	
-	/**
-	* Hides the Calendar's outer container from view.
-	* @method hide
-	*/
-	hide : function() {
-		if (this.beforeHideEvent.fire()) {
-			this.oDomContainer.style.display = "none";
-			this.hideEvent.fire();
-		}
-	},
-
-	/**
-	* Shows the Calendar's outer container.
-	* @method show
-	*/
-	show : function() {
-		if (this.beforeShowEvent.fire()) {
-			this.oDomContainer.style.display = "block";
-			this.showEvent.fire();
-		}
-	},
-
-	/**
-	* Returns a string representing the current browser.
-	* @deprecated As of 2.3.0, environment information is available in YAHOO.env.ua
-	* @see YAHOO.env.ua
-	* @property browser
-	* @type String
-	*/
-	browser : (function() {
-				var ua = navigator.userAgent.toLowerCase();
-					  if (ua.indexOf('opera')!=-1) { // Opera (check first in case of spoof)
-						 return 'opera';
-					  } else if (ua.indexOf('msie 7')!=-1) { // IE7
-						 return 'ie7';
-					  } else if (ua.indexOf('msie') !=-1) { // IE
-						 return 'ie';
-					  } else if (ua.indexOf('safari')!=-1) { // Safari (check before Gecko because it includes "like Gecko")
-						 return 'safari';
-					  } else if (ua.indexOf('gecko') != -1) { // Gecko
-						 return 'gecko';
-					  } else {
-						 return false;
-					  }
-				})(),
-	/**
-	* Returns a string representation of the object.
-	* @method toString
-	* @return {String}	A string representation of the Calendar object.
-	*/
-	toString : function() {
-		return "Calendar " + this.id;
-	},
-
-	/**
-	 * Destroys the Calendar instance. The method will remove references
-	 * to HTML elements, remove any event listeners added by the Calendar,
-	 * and destroy the Config and CalendarNavigator instances it has created.
-	 *
-	 * @method destroy
-	 */
-	destroy : function() {
-
-		if (this.beforeDestroyEvent.fire()) {
-			var cal = this;
-
-			// Child objects
-			if (cal.navigator) {
-				cal.navigator.destroy();
-			}
-
-			if (cal.cfg) {
-				cal.cfg.destroy();
-			}
-
-			// DOM event listeners
-			Event.purgeElement(cal.oDomContainer, true);
-
-			// Generated markup/DOM - Not removing the container DIV since we didn't create it.
-			Dom.removeClass(cal.oDomContainer, "withtitle");
-			Dom.removeClass(cal.oDomContainer, cal.Style.CSS_CONTAINER);
-			Dom.removeClass(cal.oDomContainer, cal.Style.CSS_SINGLE);
-			cal.oDomContainer.innerHTML = "";
-
-			// JS-to-DOM references
-			cal.oDomContainer = null;
-			cal.cells = null;
-
-			this.destroyEvent.fire();
-		}
-	}
-};
-
-YAHOO.widget.Calendar = Calendar;
-
-/**
-* @namespace YAHOO.widget
-* @class Calendar_Core
-* @extends YAHOO.widget.Calendar
-* @deprecated The old Calendar_Core class is no longer necessary.
-*/
-YAHOO.widget.Calendar_Core = YAHOO.widget.Calendar;
-
-YAHOO.widget.Cal_Core = YAHOO.widget.Calendar;
-
-})();
-
-(function() {
-
-	var Dom = YAHOO.util.Dom,
-		DateMath = YAHOO.widget.DateMath,
-		Event = YAHOO.util.Event,
-		Lang = YAHOO.lang,
-		Calendar = YAHOO.widget.Calendar;
-
-/**
-* YAHOO.widget.CalendarGroup is a special container class for YAHOO.widget.Calendar. This class facilitates
-* the ability to have multi-page calendar views that share a single dataset and are
-* dependent on each other.
-*
-* The calendar group instance will refer to each of its elements using a 0-based index.
-* For example, to construct the placeholder for a calendar group widget with id "cal1" and
-* containerId of "cal1Container", the markup would be as follows:
-*	<xmp>
-*		<div id="cal1Container_0"></div>
-*		<div id="cal1Container_1"></div>
-*	</xmp>
-* The tables for the calendars ("cal1_0" and "cal1_1") will be inserted into those containers.
-* 
-* <p>
-* <strong>NOTE: As of 2.4.0, the constructor's ID argument is optional.</strong>
-* The CalendarGroup can be constructed by simply providing a container ID string, 
-* or a reference to a container DIV HTMLElement (the element needs to exist 
-* in the document).
-* 
-* E.g.:
-*	<xmp>
-*		var c = new YAHOO.widget.CalendarGroup("calContainer", configOptions);
-*	</xmp>
-* or:
-*   <xmp>
-*       var containerDiv = YAHOO.util.Dom.get("calContainer");
-*		var c = new YAHOO.widget.CalendarGroup(containerDiv, configOptions);
-*	</xmp>
-* </p>
-* <p>
-* If not provided, the ID will be generated from the container DIV ID by adding an "_t" suffix.
-* For example if an ID is not provided, and the container's ID is "calContainer", the CalendarGroup's ID will be set to "calContainer_t".
-* </p>
-* 
-* @namespace YAHOO.widget
-* @class CalendarGroup
-* @constructor
-* @param {String} id optional The id of the table element that will represent the CalendarGroup widget. As of 2.4.0, this argument is optional.
-* @param {String | HTMLElement} container The id of the container div element that will wrap the CalendarGroup table, or a reference to a DIV element which exists in the document.
-* @param {Object} config optional The configuration object containing the initial configuration values for the CalendarGroup.
-*/
-function CalendarGroup(id, containerId, config) {
-	if (arguments.length > 0) {
-		this.init.apply(this, arguments);
-	}
-}
-
-/**
-* The set of default Config property keys and values for the CalendarGroup
-* @property YAHOO.widget.CalendarGroup._DEFAULT_CONFIG
-* @final
-* @static
-* @private
-* @type Object
-*/
-CalendarGroup._DEFAULT_CONFIG = Calendar._DEFAULT_CONFIG;
-CalendarGroup._DEFAULT_CONFIG.PAGES = {key:"pages", value:2};
-
-var DEF_CFG = CalendarGroup._DEFAULT_CONFIG;
-
-CalendarGroup.prototype = {
-
-	/**
-	* Initializes the calendar group. All subclasses must call this method in order for the
-	* group to be initialized properly.
-	* @method init
-	* @param {String} id optional The id of the table element that will represent the CalendarGroup widget. As of 2.4.0, this argument is optional.
-	* @param {String | HTMLElement} container The id of the container div element that will wrap the CalendarGroup table, or a reference to a DIV element which exists in the document.
-	* @param {Object} config optional The configuration object containing the initial configuration values for the CalendarGroup.
-	*/
-	init : function(id, container, config) {
-
-		// Normalize 2.4.0, pre 2.4.0 args
-		var nArgs = this._parseArgs(arguments);
-
-		id = nArgs.id;
-		container = nArgs.container;
-		config = nArgs.config;
-
-		this.oDomContainer = Dom.get(container);
-
-		if (!this.oDomContainer.id) {
-			this.oDomContainer.id = Dom.generateId();
-		}
-		if (!id) {
-			id = this.oDomContainer.id + "_t";
-		}
-
-		/**
-		* The unique id associated with the CalendarGroup
-		* @property id
-		* @type String
-		*/
-		this.id = id;
-
-		/**
-		* The unique id associated with the CalendarGroup container
-		* @property containerId
-		* @type String
-		*/
-		this.containerId = this.oDomContainer.id;
-
-		this.initEvents();
-		this.initStyles();
-
-		/**
-		* The collection of Calendar pages contained within the CalendarGroup
-		* @property pages
-		* @type YAHOO.widget.Calendar[]
-		*/
-		this.pages = [];
-
-		Dom.addClass(this.oDomContainer, CalendarGroup.CSS_CONTAINER);
-		Dom.addClass(this.oDomContainer, CalendarGroup.CSS_MULTI_UP);
-
-		/**
-		* The Config object used to hold the configuration variables for the CalendarGroup
-		* @property cfg
-		* @type YAHOO.util.Config
-		*/
-		this.cfg = new YAHOO.util.Config(this);
-
-		/**
-		* The local object which contains the CalendarGroup's options
-		* @property Options
-		* @type Object
-		*/
-		this.Options = {};
-
-		/**
-		* The local object which contains the CalendarGroup's locale settings
-		* @property Locale
-		* @type Object
-		*/
-		this.Locale = {};
-
-		this.setupConfig();
-
-		if (config) {
-			this.cfg.applyConfig(config, true);
-		}
-
-		this.cfg.fireQueue();
-
-		// OPERA HACK FOR MISWRAPPED FLOATS
-		if (YAHOO.env.ua.opera){
-			this.renderEvent.subscribe(this._fixWidth, this, true);
-			this.showEvent.subscribe(this._fixWidth, this, true);
-		}
-
-	},
-
-	setupConfig : function() {
-
-		var cfg = this.cfg;
-
-		/**
-		* The number of pages to include in the CalendarGroup. This value can only be set once, in the CalendarGroup's constructor arguments.
-		* @config pages
-		* @type Number
-		* @default 2
-		*/
-		cfg.addProperty(DEF_CFG.PAGES.key, { value:DEF_CFG.PAGES.value, validator:cfg.checkNumber, handler:this.configPages } );
-
-		/**
-		* The month/year representing the current visible Calendar date (mm/yyyy)
-		* @config pagedate
-		* @type String | Date
-		* @default today's date
-		*/
-		cfg.addProperty(DEF_CFG.PAGEDATE.key, { value:new Date(), handler:this.configPageDate } );
-
-		/**
-		* The date or range of dates representing the current Calendar selection
-		*
-		* @config selected
-		* @type String
-		* @default []
-		*/
-		cfg.addProperty(DEF_CFG.SELECTED.key, { value:[], handler:this.configSelected } );
-
-		/**
-		* The title to display above the CalendarGroup's month header
-		* @config title
-		* @type String
-		* @default ""
-		*/
-		cfg.addProperty(DEF_CFG.TITLE.key, { value:DEF_CFG.TITLE.value, handler:this.configTitle } );
-
-		/**
-		* Whether or not a close button should be displayed for this CalendarGroup
-		* @config close
-		* @type Boolean
-		* @default false
-		*/
-		cfg.addProperty(DEF_CFG.CLOSE.key, { value:DEF_CFG.CLOSE.value, handler:this.configClose } );
-
-		/**
-		* Whether or not an iframe shim should be placed under the Calendar to prevent select boxes from bleeding through in Internet Explorer 6 and below.
-		* This property is enabled by default for IE6 and below. It is disabled by default for other browsers for performance reasons, but can be 
-		* enabled if required.
-		* 
-		* @config iframe
-		* @type Boolean
-		* @default true for IE6 and below, false for all other browsers
-		*/
-		cfg.addProperty(DEF_CFG.IFRAME.key, { value:DEF_CFG.IFRAME.value, handler:this.configIframe, validator:cfg.checkBoolean } );
-	
-		/**
-		* The minimum selectable date in the current Calendar (mm/dd/yyyy)
-		* @config mindate
-		* @type String | Date
-		* @default null
-		*/
-		cfg.addProperty(DEF_CFG.MINDATE.key, { value:DEF_CFG.MINDATE.value, handler:this.delegateConfig } );
-	
-		/**
-		* The maximum selectable date in the current Calendar (mm/dd/yyyy)
-		* @config maxdate
-		* @type String | Date
-		* @default null
-		*/
-		cfg.addProperty(DEF_CFG.MAXDATE.key, { value:DEF_CFG.MAXDATE.value, handler:this.delegateConfig  } );
-	
-		// Options properties
-
-		/**
-		* True if the Calendar should allow multiple selections. False by default.
-		* @config MULTI_SELECT
-		* @type Boolean
-		* @default false
-		*/
-		cfg.addProperty(DEF_CFG.MULTI_SELECT.key,	{ value:DEF_CFG.MULTI_SELECT.value, handler:this.delegateConfig, validator:cfg.checkBoolean } );
-
-		/**
-		* The weekday the week begins on. Default is 0 (Sunday).
-		* @config START_WEEKDAY
-		* @type number
-		* @default 0
-		*/	
-		cfg.addProperty(DEF_CFG.START_WEEKDAY.key,	{ value:DEF_CFG.START_WEEKDAY.value, handler:this.delegateConfig, validator:cfg.checkNumber  } );
-		
-		/**
-		* True if the Calendar should show weekday labels. True by default.
-		* @config SHOW_WEEKDAYS
-		* @type Boolean
-		* @default true
-		*/	
-		cfg.addProperty(DEF_CFG.SHOW_WEEKDAYS.key,	{ value:DEF_CFG.SHOW_WEEKDAYS.value, handler:this.delegateConfig, validator:cfg.checkBoolean } );
-		
-		/**
-		* True if the Calendar should show week row headers. False by default.
-		* @config SHOW_WEEK_HEADER
-		* @type Boolean
-		* @default false
-		*/	
-		cfg.addProperty(DEF_CFG.SHOW_WEEK_HEADER.key,{ value:DEF_CFG.SHOW_WEEK_HEADER.value, handler:this.delegateConfig, validator:cfg.checkBoolean } );
-		
-		/**
-		* True if the Calendar should show week row footers. False by default.
-		* @config SHOW_WEEK_FOOTER
-		* @type Boolean
-		* @default false
-		*/
-		cfg.addProperty(DEF_CFG.SHOW_WEEK_FOOTER.key,{ value:DEF_CFG.SHOW_WEEK_FOOTER.value, handler:this.delegateConfig, validator:cfg.checkBoolean } );
-		
-		/**
-		* True if the Calendar should suppress weeks that are not a part of the current month. False by default.
-		* @config HIDE_BLANK_WEEKS
-		* @type Boolean
-		* @default false
-		*/		
-		cfg.addProperty(DEF_CFG.HIDE_BLANK_WEEKS.key,{ value:DEF_CFG.HIDE_BLANK_WEEKS.value, handler:this.delegateConfig, validator:cfg.checkBoolean } );
-		
-		/**
-		* The image that should be used for the left navigation arrow.
-		* @config NAV_ARROW_LEFT
-		* @type String
-		* @deprecated	You can customize the image by overriding the default CSS class for the left arrow - "calnavleft"
-		* @default null
-		*/		
-		cfg.addProperty(DEF_CFG.NAV_ARROW_LEFT.key,	{ value:DEF_CFG.NAV_ARROW_LEFT.value, handler:this.delegateConfig } );
-		
-		/**
-		* The image that should be used for the right navigation arrow.
-		* @config NAV_ARROW_RIGHT
-		* @type String
-		* @deprecated	You can customize the image by overriding the default CSS class for the right arrow - "calnavright"
-		* @default null
-		*/		
-		cfg.addProperty(DEF_CFG.NAV_ARROW_RIGHT.key,	{ value:DEF_CFG.NAV_ARROW_RIGHT.value, handler:this.delegateConfig } );
-	
-		// Locale properties
-		
-		/**
-		* The short month labels for the current locale.
-		* @config MONTHS_SHORT
-		* @type String[]
-		* @default ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
-		*/
-		cfg.addProperty(DEF_CFG.MONTHS_SHORT.key,	{ value:DEF_CFG.MONTHS_SHORT.value, handler:this.delegateConfig } );
-		
-		/**
-		* The long month labels for the current locale.
-		* @config MONTHS_LONG
-		* @type String[]
-		* @default ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"
-		*/		
-		cfg.addProperty(DEF_CFG.MONTHS_LONG.key,		{ value:DEF_CFG.MONTHS_LONG.value, handler:this.delegateConfig } );
-		
-		/**
-		* The 1-character weekday labels for the current locale.
-		* @config WEEKDAYS_1CHAR
-		* @type String[]
-		* @default ["S", "M", "T", "W", "T", "F", "S"]
-		*/		
-		cfg.addProperty(DEF_CFG.WEEKDAYS_1CHAR.key,	{ value:DEF_CFG.WEEKDAYS_1CHAR.value, handler:this.delegateConfig } );
-		
-		/**
-		* The short weekday labels for the current locale.
-		* @config WEEKDAYS_SHORT
-		* @type String[]
-		* @default ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"]
-		*/		
-		cfg.addProperty(DEF_CFG.WEEKDAYS_SHORT.key,	{ value:DEF_CFG.WEEKDAYS_SHORT.value, handler:this.delegateConfig } );
-		
-		/**
-		* The medium weekday labels for the current locale.
-		* @config WEEKDAYS_MEDIUM
-		* @type String[]
-		* @default ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]
-		*/		
-		cfg.addProperty(DEF_CFG.WEEKDAYS_MEDIUM.key,	{ value:DEF_CFG.WEEKDAYS_MEDIUM.value, handler:this.delegateConfig } );
-		
-		/**
-		* The long weekday labels for the current locale.
-		* @config WEEKDAYS_LONG
-		* @type String[]
-		* @default ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]
-		*/		
-		cfg.addProperty(DEF_CFG.WEEKDAYS_LONG.key,	{ value:DEF_CFG.WEEKDAYS_LONG.value, handler:this.delegateConfig } );
-	
-		/**
-		* The setting that determines which length of month labels should be used. Possible values are "short" and "long".
-		* @config LOCALE_MONTHS
-		* @type String
-		* @default "long"
-		*/
-		cfg.addProperty(DEF_CFG.LOCALE_MONTHS.key,	{ value:DEF_CFG.LOCALE_MONTHS.value, handler:this.delegateConfig } );
-	
-		/**
-		* The setting that determines which length of weekday labels should be used. Possible values are "1char", "short", "medium", and "long".
-		* @config LOCALE_WEEKDAYS
-		* @type String
-		* @default "short"
-		*/	
-		cfg.addProperty(DEF_CFG.LOCALE_WEEKDAYS.key,	{ value:DEF_CFG.LOCALE_WEEKDAYS.value, handler:this.delegateConfig } );
-	
-		/**
-		* The value used to delimit individual dates in a date string passed to various Calendar functions.
-		* @config DATE_DELIMITER
-		* @type String
-		* @default ","
-		*/
-		cfg.addProperty(DEF_CFG.DATE_DELIMITER.key,		{ value:DEF_CFG.DATE_DELIMITER.value, handler:this.delegateConfig } );
-	
-		/**
-		* The value used to delimit date fields in a date string passed to various Calendar functions.
-		* @config DATE_FIELD_DELIMITER
-		* @type String
-		* @default "/"
-		*/	
-		cfg.addProperty(DEF_CFG.DATE_FIELD_DELIMITER.key,{ value:DEF_CFG.DATE_FIELD_DELIMITER.value, handler:this.delegateConfig } );
-	
-		/**
-		* The value used to delimit date ranges in a date string passed to various Calendar functions.
-		* @config DATE_RANGE_DELIMITER
-		* @type String
-		* @default "-"
-		*/
-		cfg.addProperty(DEF_CFG.DATE_RANGE_DELIMITER.key,{ value:DEF_CFG.DATE_RANGE_DELIMITER.value, handler:this.delegateConfig } );
-	
-		/**
-		* The position of the month in a month/year date string
-		* @config MY_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/
-		cfg.addProperty(DEF_CFG.MY_MONTH_POSITION.key,	{ value:DEF_CFG.MY_MONTH_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-		
-		/**
-		* The position of the year in a month/year date string
-		* @config MY_YEAR_POSITION
-		* @type Number
-		* @default 2
-		*/	
-		cfg.addProperty(DEF_CFG.MY_YEAR_POSITION.key,	{ value:DEF_CFG.MY_YEAR_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-		
-		/**
-		* The position of the month in a month/day date string
-		* @config MD_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/	
-		cfg.addProperty(DEF_CFG.MD_MONTH_POSITION.key,	{ value:DEF_CFG.MD_MONTH_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-		
-		/**
-		* The position of the day in a month/year date string
-		* @config MD_DAY_POSITION
-		* @type Number
-		* @default 2
-		*/	
-		cfg.addProperty(DEF_CFG.MD_DAY_POSITION.key,		{ value:DEF_CFG.MD_DAY_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-		
-		/**
-		* The position of the month in a month/day/year date string
-		* @config MDY_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/	
-		cfg.addProperty(DEF_CFG.MDY_MONTH_POSITION.key,	{ value:DEF_CFG.MDY_MONTH_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-		
-		/**
-		* The position of the day in a month/day/year date string
-		* @config MDY_DAY_POSITION
-		* @type Number
-		* @default 2
-		*/	
-		cfg.addProperty(DEF_CFG.MDY_DAY_POSITION.key,	{ value:DEF_CFG.MDY_DAY_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-		
-		/**
-		* The position of the year in a month/day/year date string
-		* @config MDY_YEAR_POSITION
-		* @type Number
-		* @default 3
-		*/	
-		cfg.addProperty(DEF_CFG.MDY_YEAR_POSITION.key,	{ value:DEF_CFG.MDY_YEAR_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the month in the month year label string used as the Calendar header
-		* @config MY_LABEL_MONTH_POSITION
-		* @type Number
-		* @default 1
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_MONTH_POSITION.key,	{ value:DEF_CFG.MY_LABEL_MONTH_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-	
-		/**
-		* The position of the year in the month year label string used as the Calendar header
-		* @config MY_LABEL_YEAR_POSITION
-		* @type Number
-		* @default 2
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_YEAR_POSITION.key,	{ value:DEF_CFG.MY_LABEL_YEAR_POSITION.value, handler:this.delegateConfig, validator:cfg.checkNumber } );
-
-		/**
-		* The suffix used after the month when rendering the Calendar header
-		* @config MY_LABEL_MONTH_SUFFIX
-		* @type String
-		* @default " "
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_MONTH_SUFFIX.key,	{ value:DEF_CFG.MY_LABEL_MONTH_SUFFIX.value, handler:this.delegateConfig } );
-		
-		/**
-		* The suffix used after the year when rendering the Calendar header
-		* @config MY_LABEL_YEAR_SUFFIX
-		* @type String
-		* @default ""
-		*/
-		cfg.addProperty(DEF_CFG.MY_LABEL_YEAR_SUFFIX.key, { value:DEF_CFG.MY_LABEL_YEAR_SUFFIX.value, handler:this.delegateConfig } );
-
-		/**
-		* Configuration for the Month Year Navigation UI. By default it is disabled
-		* @config NAV
-		* @type Object
-		* @default null
-		*/
-		cfg.addProperty(DEF_CFG.NAV.key, { value:DEF_CFG.NAV.value, handler:this.configNavigator } );
-
-		/**
-		 * The map of UI strings which the CalendarGroup UI uses.
-		 *
-		 * @config strings
-		 * @type {Object}
-		 * @default An object with the properties shown below:
-		 *     <dl>
-		 *         <dt>previousMonth</dt><dd><em>String</em> : The string to use for the "Previous Month" navigation UI. Defaults to "Previous Month".</dd>
-		 *         <dt>nextMonth</dt><dd><em>String</em> : The string to use for the "Next Month" navigation UI. Defaults to "Next Month".</dd>
-		 *         <dt>close</dt><dd><em>String</em> : The string to use for the close button label. Defaults to "Close".</dd>
-		 *     </dl>
-		 */
-		cfg.addProperty(DEF_CFG.STRINGS.key, { 
-			value:DEF_CFG.STRINGS.value, 
-			handler:this.configStrings, 
-			validator: function(val) {
-				return Lang.isObject(val);
-			},
-			supercedes: DEF_CFG.STRINGS.supercedes
-		});
-	},
-
-	/**
-	* Initializes CalendarGroup's built-in CustomEvents
-	* @method initEvents
-	*/
-	initEvents : function() {
-
-		var me = this,
-			strEvent = "Event",
-			CE = YAHOO.util.CustomEvent;
-
-		/**
-		* Proxy subscriber to subscribe to the CalendarGroup's child Calendars' CustomEvents
-		* @method sub
-		* @private
-		* @param {Function} fn	The function to subscribe to this CustomEvent
-		* @param {Object}	obj	The CustomEvent's scope object
-		* @param {Boolean}	bOverride	Whether or not to apply scope correction
-		*/
-		var sub = function(fn, obj, bOverride) {
-			for (var p=0;p<me.pages.length;++p) {
-				var cal = me.pages[p];
-				cal[this.type + strEvent].subscribe(fn, obj, bOverride);
-			}
-		};
-
-		/**
-		* Proxy unsubscriber to unsubscribe from the CalendarGroup's child Calendars' CustomEvents
-		* @method unsub
-		* @private
-		* @param {Function} fn	The function to subscribe to this CustomEvent
-		* @param {Object}	obj	The CustomEvent's scope object
-		*/
-		var unsub = function(fn, obj) {
-			for (var p=0;p<me.pages.length;++p) {
-				var cal = me.pages[p];
-				cal[this.type + strEvent].unsubscribe(fn, obj);
-			}
-		};
-		
-		var defEvents = Calendar._EVENT_TYPES;
-	
-		/**
-		* Fired before a selection is made
-		* @event beforeSelectEvent
-		*/
-		me.beforeSelectEvent = new CE(defEvents.BEFORE_SELECT);
-		me.beforeSelectEvent.subscribe = sub; me.beforeSelectEvent.unsubscribe = unsub;
-	
-		/**
-		* Fired when a selection is made
-		* @event selectEvent
-		* @param {Array}	Array of Date field arrays in the format [YYYY, MM, DD].
-		*/
-		me.selectEvent = new CE(defEvents.SELECT); 
-		me.selectEvent.subscribe = sub; me.selectEvent.unsubscribe = unsub;
-	
-		/**
-		* Fired before a selection is made
-		* @event beforeDeselectEvent
-		*/
-		me.beforeDeselectEvent = new CE(defEvents.BEFORE_DESELECT); 
-		me.beforeDeselectEvent.subscribe = sub; me.beforeDeselectEvent.unsubscribe = unsub;
-	
-		/**
-		* Fired when a selection is made
-		* @event deselectEvent
-		* @param {Array}	Array of Date field arrays in the format [YYYY, MM, DD].
-		*/
-		me.deselectEvent = new CE(defEvents.DESELECT); 
-		me.deselectEvent.subscribe = sub; me.deselectEvent.unsubscribe = unsub;
-		
-		/**
-		* Fired when the Calendar page is changed
-		* @event changePageEvent
-		*/
-		me.changePageEvent = new CE(defEvents.CHANGE_PAGE); 
-		me.changePageEvent.subscribe = sub; me.changePageEvent.unsubscribe = unsub;
-
-		/**
-		* Fired before the Calendar is rendered
-		* @event beforeRenderEvent
-		*/
-		me.beforeRenderEvent = new CE(defEvents.BEFORE_RENDER);
-		me.beforeRenderEvent.subscribe = sub; me.beforeRenderEvent.unsubscribe = unsub;
-	
-		/**
-		* Fired when the Calendar is rendered
-		* @event renderEvent
-		*/
-		me.renderEvent = new CE(defEvents.RENDER);
-		me.renderEvent.subscribe = sub; me.renderEvent.unsubscribe = unsub;
-	
-		/**
-		* Fired when the Calendar is reset
-		* @event resetEvent
-		*/
-		me.resetEvent = new CE(defEvents.RESET); 
-		me.resetEvent.subscribe = sub; me.resetEvent.unsubscribe = unsub;
-	
-		/**
-		* Fired when the Calendar is cleared
-		* @event clearEvent
-		*/
-		me.clearEvent = new CE(defEvents.CLEAR);
-		me.clearEvent.subscribe = sub; me.clearEvent.unsubscribe = unsub;
-
-		/**
-		* Fired just before the CalendarGroup is to be shown
-		* @event beforeShowEvent
-		*/
-		me.beforeShowEvent = new CE(defEvents.BEFORE_SHOW);
-	
-		/**
-		* Fired after the CalendarGroup is shown
-		* @event showEvent
-		*/
-		me.showEvent = new CE(defEvents.SHOW);
-	
-		/**
-		* Fired just before the CalendarGroup is to be hidden
-		* @event beforeHideEvent
-		*/
-		me.beforeHideEvent = new CE(defEvents.BEFORE_HIDE);
-	
-		/**
-		* Fired after the CalendarGroup is hidden
-		* @event hideEvent
-		*/
-		me.hideEvent = new CE(defEvents.HIDE);
-
-		/**
-		* Fired just before the CalendarNavigator is to be shown
-		* @event beforeShowNavEvent
-		*/
-		me.beforeShowNavEvent = new CE(defEvents.BEFORE_SHOW_NAV);
-	
-		/**
-		* Fired after the CalendarNavigator is shown
-		* @event showNavEvent
-		*/
-		me.showNavEvent = new CE(defEvents.SHOW_NAV);
-	
-		/**
-		* Fired just before the CalendarNavigator is to be hidden
-		* @event beforeHideNavEvent
-		*/
-		me.beforeHideNavEvent = new CE(defEvents.BEFORE_HIDE_NAV);
-
-		/**
-		* Fired after the CalendarNavigator is hidden
-		* @event hideNavEvent
-		*/
-		me.hideNavEvent = new CE(defEvents.HIDE_NAV);
-
-		/**
-		* Fired just before the CalendarNavigator is to be rendered
-		* @event beforeRenderNavEvent
-		*/
-		me.beforeRenderNavEvent = new CE(defEvents.BEFORE_RENDER_NAV);
-
-		/**
-		* Fired after the CalendarNavigator is rendered
-		* @event renderNavEvent
-		*/
-		me.renderNavEvent = new CE(defEvents.RENDER_NAV);
-
-		/**
-		* Fired just before the CalendarGroup is to be destroyed
-		* @event beforeDestroyEvent
-		*/
-		me.beforeDestroyEvent = new CE(defEvents.BEFORE_DESTROY);
-
-		/**
-		* Fired after the CalendarGroup is destroyed. This event should be used
-		* for notification only. When this event is fired, important CalendarGroup instance
-		* properties, dom references and event listeners have already been 
-		* removed/dereferenced, and hence the CalendarGroup instance is not in a usable 
-		* state.
-		*
-		* @event destroyEvent
-		*/
-		me.destroyEvent = new CE(defEvents.DESTROY);
-	},
-	
-	/**
-	* The default Config handler for the "pages" property
-	* @method configPages
-	* @param {String} type	The CustomEvent type (usually the property name)
-	* @param {Object[]}	args	The CustomEvent arguments. For configuration handlers, args[0] will equal the newly applied value for the property.
-	* @param {Object} obj	The scope object. For configuration handlers, this will usually equal the owner.
-	*/
-	configPages : function(type, args, obj) {
-		var pageCount = args[0],
-			cfgPageDate = DEF_CFG.PAGEDATE.key,
-			sep = "_",
-			groupCalClass = "groupcal",
-			firstClass = "first-of-type",
-			lastClass = "last-of-type";
-
-		for (var p=0;p<pageCount;++p) {
-			var calId = this.id + sep + p,
-				calContainerId = this.containerId + sep + p,
-				childConfig = this.cfg.getConfig();
-
-			childConfig.close = false;
-			childConfig.title = false;
-			childConfig.navigator = null;
-
-			var cal = this.constructChild(calId, calContainerId, childConfig);
-			var caldate = cal.cfg.getProperty(cfgPageDate);
-			this._setMonthOnDate(caldate, caldate.getMonth() + p);
-			cal.cfg.setProperty(cfgPageDate, caldate);
-
-			Dom.removeClass(cal.oDomContainer, this.Style.CSS_SINGLE);
-			Dom.addClass(cal.oDomContainer, groupCalClass);
-
-			if (p===0) {
-				Dom.addClass(cal.oDomContainer, firstClass);
-			}
-	
-			if (p==(pageCount-1)) {
-				Dom.addClass(cal.oDomContainer, lastClass);
-			}
-	
-			cal.parent = this;
-			cal.index = p; 
-	
-			this.pages[this.pages.length] = cal;
-		}
-	},
-	
-	/**
-	* The default Config handler for the "pagedate" property
-	* @method configPageDate
-	* @param {String} type	The CustomEvent type (usually the property name)
-	* @param {Object[]}	args	The CustomEvent arguments. For configuration handlers, args[0] will equal the newly applied value for the property.
-	* @param {Object} obj	The scope object. For configuration handlers, this will usually equal the owner.
-	*/
-	configPageDate : function(type, args, obj) {
-		var val = args[0],
-			firstPageDate;
-
-		var cfgPageDate = DEF_CFG.PAGEDATE.key;
-		
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			if (p === 0) {
-				firstPageDate = cal._parsePageDate(val);
-				cal.cfg.setProperty(cfgPageDate, firstPageDate);
-			} else {
-				var pageDate = new Date(firstPageDate);
-				this._setMonthOnDate(pageDate, pageDate.getMonth() + p);
-				cal.cfg.setProperty(cfgPageDate, pageDate);
-			}
-		}
-	},
-	
-	/**
-	* The default Config handler for the CalendarGroup "selected" property
-	* @method configSelected
-	* @param {String} type	The CustomEvent type (usually the property name)
-	* @param {Object[]}	args	The CustomEvent arguments. For configuration handlers, args[0] will equal the newly applied value for the property.
-	* @param {Object} obj	The scope object. For configuration handlers, this will usually equal the owner.
-	*/
-	configSelected : function(type, args, obj) {
-		var cfgSelected = DEF_CFG.SELECTED.key;
-		this.delegateConfig(type, args, obj);
-		var selected = (this.pages.length > 0) ? this.pages[0].cfg.getProperty(cfgSelected) : []; 
-		this.cfg.setProperty(cfgSelected, selected, true);
-	},
-
-	
-	/**
-	* Delegates a configuration property to the CustomEvents associated with the CalendarGroup's children
-	* @method delegateConfig
-	* @param {String} type	The CustomEvent type (usually the property name)
-	* @param {Object[]}	args	The CustomEvent arguments. For configuration handlers, args[0] will equal the newly applied value for the property.
-	* @param {Object} obj	The scope object. For configuration handlers, this will usually equal the owner.
-	*/
-	delegateConfig : function(type, args, obj) {
-		var val = args[0];
-		var cal;
-	
-		for (var p=0;p<this.pages.length;p++) {
-			cal = this.pages[p];
-			cal.cfg.setProperty(type, val);
-		}
-	},
-
-	/**
-	* Adds a function to all child Calendars within this CalendarGroup.
-	* @method setChildFunction
-	* @param {String}		fnName		The name of the function
-	* @param {Function}		fn			The function to apply to each Calendar page object
-	*/
-	setChildFunction : function(fnName, fn) {
-		var pageCount = this.cfg.getProperty(DEF_CFG.PAGES.key);
-	
-		for (var p=0;p<pageCount;++p) {
-			this.pages[p][fnName] = fn;
-		}
-	},
-
-	/**
-	* Calls a function within all child Calendars within this CalendarGroup.
-	* @method callChildFunction
-	* @param {String}		fnName		The name of the function
-	* @param {Array}		args		The arguments to pass to the function
-	*/
-	callChildFunction : function(fnName, args) {
-		var pageCount = this.cfg.getProperty(DEF_CFG.PAGES.key);
-	
-		for (var p=0;p<pageCount;++p) {
-			var page = this.pages[p];
-			if (page[fnName]) {
-				var fn = page[fnName];
-				fn.call(page, args);
-			}
-		}	
-	},
-
-	/**
-	* Constructs a child calendar. This method can be overridden if a subclassed version of the default
-	* calendar is to be used.
-	* @method constructChild
-	* @param {String}	id			The id of the table element that will represent the calendar widget
-	* @param {String}	containerId	The id of the container div element that will wrap the calendar table
-	* @param {Object}	config		The configuration object containing the Calendar's arguments
-	* @return {YAHOO.widget.Calendar}	The YAHOO.widget.Calendar instance that is constructed
-	*/
-	constructChild : function(id,containerId,config) {
-		var container = document.getElementById(containerId);
-		if (! container) {
-			container = document.createElement("div");
-			container.id = containerId;
-			this.oDomContainer.appendChild(container);
-		}
-		return new Calendar(id,containerId,config);
-	},
-	
-	/**
-	* Sets the calendar group's month explicitly. This month will be set into the first
-	* page of the multi-page calendar, and all other months will be iterated appropriately.
-	* @method setMonth
-	* @param {Number}	month		The numeric month, from 0 (January) to 11 (December)
-	*/
-	setMonth : function(month) {
-		month = parseInt(month, 10);
-		var currYear;
-
-		var cfgPageDate = DEF_CFG.PAGEDATE.key;
-
-		for (var p=0; p<this.pages.length; ++p) {
-			var cal = this.pages[p];
-			var pageDate = cal.cfg.getProperty(cfgPageDate);
-			if (p === 0) {
-				currYear = pageDate.getFullYear();
-			} else {
-				pageDate.setFullYear(currYear);
-			}
-			this._setMonthOnDate(pageDate, month+p); 
-			cal.cfg.setProperty(cfgPageDate, pageDate);
-		}
-	},
-
-	/**
-	* Sets the calendar group's year explicitly. This year will be set into the first
-	* page of the multi-page calendar, and all other months will be iterated appropriately.
-	* @method setYear
-	* @param {Number}	year		The numeric 4-digit year
-	*/
-	setYear : function(year) {
-	
-		var cfgPageDate = DEF_CFG.PAGEDATE.key;
-	
-		year = parseInt(year, 10);
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			var pageDate = cal.cfg.getProperty(cfgPageDate);
-	
-			if ((pageDate.getMonth()+1) == 1 && p>0) {
-				year+=1;
-			}
-			cal.setYear(year);
-		}
-	},
-
-	/**
-	* Calls the render function of all child calendars within the group.
-	* @method render
-	*/
-	render : function() {
-		this.renderHeader();
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.render();
-		}
-		this.renderFooter();
-	},
-
-	/**
-	* Selects a date or a collection of dates on the current calendar. This method, by default,
-	* does not call the render method explicitly. Once selection has completed, render must be 
-	* called for the changes to be reflected visually.
-	* @method select
-	* @param	{String/Date/Date[]}	date	The date string of dates to select in the current calendar. Valid formats are
-	*								individual date(s) (12/24/2005,12/26/2005) or date range(s) (12/24/2005-1/1/2006).
-	*								Multiple comma-delimited dates can also be passed to this method (12/24/2005,12/11/2005-12/13/2005).
-	*								This method can also take a JavaScript Date object or an array of Date objects.
-	* @return	{Date[]}			Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	select : function(date) {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.select(date);
-		}
-		return this.getSelectedDates();
-	},
-
-	/**
-	* Selects dates in the CalendarGroup based on the cell index provided. This method is used to select cells without having to do a full render. The selected style is applied to the cells directly.
-	* The value of the MULTI_SELECT Configuration attribute will determine the set of dates which get selected. 
-	* <ul>
-	*    <li>If MULTI_SELECT is false, selectCell will select the cell at the specified index for only the last displayed Calendar page.</li>
-	*    <li>If MULTI_SELECT is true, selectCell will select the cell at the specified index, on each displayed Calendar page.</li>
-	* </ul>
-	* @method selectCell
-	* @param	{Number}	cellIndex	The index of the cell to be selected. 
-	* @return	{Date[]}	Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	selectCell : function(cellIndex) {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.selectCell(cellIndex);
-		}
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Deselects a date or a collection of dates on the current calendar. This method, by default,
-	* does not call the render method explicitly. Once deselection has completed, render must be 
-	* called for the changes to be reflected visually.
-	* @method deselect
-	* @param	{String/Date/Date[]}	date	The date string of dates to deselect in the current calendar. Valid formats are
-	*								individual date(s) (12/24/2005,12/26/2005) or date range(s) (12/24/2005-1/1/2006).
-	*								Multiple comma-delimited dates can also be passed to this method (12/24/2005,12/11/2005-12/13/2005).
-	*								This method can also take a JavaScript Date object or an array of Date objects.	
-	* @return	{Date[]}			Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	deselect : function(date) {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.deselect(date);
-		}
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Deselects all dates on the current calendar.
-	* @method deselectAll
-	* @return {Date[]}		Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*						Assuming that this function executes properly, the return value should be an empty array.
-	*						However, the empty array is returned for the sake of being able to check the selection status
-	*						of the calendar.
-	*/
-	deselectAll : function() {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.deselectAll();
-		}
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Deselects dates in the CalendarGroup based on the cell index provided. This method is used to select cells without having to do a full render. The selected style is applied to the cells directly.
-	* deselectCell will deselect the cell at the specified index on each displayed Calendar page.
-	*
-	* @method deselectCell
-	* @param	{Number}	cellIndex	The index of the cell to deselect. 
-	* @return	{Date[]}	Array of JavaScript Date objects representing all individual dates that are currently selected.
-	*/
-	deselectCell : function(cellIndex) {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.deselectCell(cellIndex);
-		}
-		return this.getSelectedDates();
-	},
-	
-	/**
-	* Resets the calendar widget to the originally selected month and year, and 
-	* sets the calendar to the initial selection(s).
-	* @method reset
-	*/
-	reset : function() {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.reset();
-		}
-	},
-
-	/**
-	* Clears the selected dates in the current calendar widget and sets the calendar
-	* to the current month and year.
-	* @method clear
-	*/
-	clear : function() {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.clear();
-		}
-
-		this.cfg.setProperty(DEF_CFG.SELECTED.key, []);
-		this.cfg.setProperty(DEF_CFG.PAGEDATE.key, new Date(this.pages[0].today.getTime()));
-		this.render();
-	},
-
-	/**
-	* Navigates to the next month page in the calendar widget.
-	* @method nextMonth
-	*/
-	nextMonth : function() {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.nextMonth();
-		}
-	},
-	
-	/**
-	* Navigates to the previous month page in the calendar widget.
-	* @method previousMonth
-	*/
-	previousMonth : function() {
-		for (var p=this.pages.length-1;p>=0;--p) {
-			var cal = this.pages[p];
-			cal.previousMonth();
-		}
-	},
-	
-	/**
-	* Navigates to the next year in the currently selected month in the calendar widget.
-	* @method nextYear
-	*/
-	nextYear : function() {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.nextYear();
-		}
-	},
-
-	/**
-	* Navigates to the previous year in the currently selected month in the calendar widget.
-	* @method previousYear
-	*/
-	previousYear : function() {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.previousYear();
-		}
-	},
-
-	/**
-	* Gets the list of currently selected dates from the calendar.
-	* @return			An array of currently selected JavaScript Date objects.
-	* @type Date[]
-	*/
-	getSelectedDates : function() { 
-		var returnDates = [];
-		var selected = this.cfg.getProperty(DEF_CFG.SELECTED.key);
-		for (var d=0;d<selected.length;++d) {
-			var dateArray = selected[d];
-
-			var date = DateMath.getDate(dateArray[0],dateArray[1]-1,dateArray[2]);
-			returnDates.push(date);
-		}
-
-		returnDates.sort( function(a,b) { return a-b; } );
-		return returnDates;
-	},
-
-	/**
-	* Adds a renderer to the render stack. The function reference passed to this method will be executed
-	* when a date cell matches the conditions specified in the date string for this renderer.
-	* @method addRenderer
-	* @param	{String}	sDates		A date string to associate with the specified renderer. Valid formats
-	*									include date (12/24/2005), month/day (12/24), and range (12/1/2004-1/1/2005)
-	* @param	{Function}	fnRender	The function executed to render cells that match the render rules for this renderer.
-	*/
-	addRenderer : function(sDates, fnRender) {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.addRenderer(sDates, fnRender);
-		}
-	},
-
-	/**
-	* Adds a month to the render stack. The function reference passed to this method will be executed
-	* when a date cell matches the month passed to this method.
-	* @method addMonthRenderer
-	* @param	{Number}	month		The month (1-12) to associate with this renderer
-	* @param	{Function}	fnRender	The function executed to render cells that match the render rules for this renderer.
-	*/
-	addMonthRenderer : function(month, fnRender) {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.addMonthRenderer(month, fnRender);
-		}
-	},
-
-	/**
-	* Adds a weekday to the render stack. The function reference passed to this method will be executed
-	* when a date cell matches the weekday passed to this method.
-	* @method addWeekdayRenderer
-	* @param	{Number}	weekday		The weekday (1-7) to associate with this renderer. 1=Sunday, 2=Monday etc.
-	* @param	{Function}	fnRender	The function executed to render cells that match the render rules for this renderer.
-	*/
-	addWeekdayRenderer : function(weekday, fnRender) {
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			cal.addWeekdayRenderer(weekday, fnRender);
-		}
-	},
-
-	/**
-	 * Removes all custom renderers added to the CalendarGroup through the addRenderer, addMonthRenderer and 
-	 * addWeekRenderer methods. CalendarGroup's render method needs to be called to after removing renderers 
-	 * to see the changes applied.
-	 * 
-	 * @method removeRenderers
-	 */
-	removeRenderers : function() {
-		this.callChildFunction("removeRenderers");
-	},
-
-	/**
-	* Renders the header for the CalendarGroup.
-	* @method renderHeader
-	*/
-	renderHeader : function() {
-		// EMPTY DEFAULT IMPL
-	},
-
-	/**
-	* Renders a footer for the 2-up calendar container. By default, this method is
-	* unimplemented.
-	* @method renderFooter
-	*/
-	renderFooter : function() {
-		// EMPTY DEFAULT IMPL
-	},
-
-	/**
-	* Adds the designated number of months to the current calendar month, and sets the current
-	* calendar page date to the new month.
-	* @method addMonths
-	* @param {Number}	count	The number of months to add to the current calendar
-	*/
-	addMonths : function(count) {
-		this.callChildFunction("addMonths", count);
-	},
-	
-	/**
-	* Subtracts the designated number of months from the current calendar month, and sets the current
-	* calendar page date to the new month.
-	* @method subtractMonths
-	* @param {Number}	count	The number of months to subtract from the current calendar
-	*/
-	subtractMonths : function(count) {
-		this.callChildFunction("subtractMonths", count);
-	},
-
-	/**
-	* Adds the designated number of years to the current calendar, and sets the current
-	* calendar page date to the new month.
-	* @method addYears
-	* @param {Number}	count	The number of years to add to the current calendar
-	*/
-	addYears : function(count) {
-		this.callChildFunction("addYears", count);
-	},
-
-	/**
-	* Subtcats the designated number of years from the current calendar, and sets the current
-	* calendar page date to the new month.
-	* @method subtractYears
-	* @param {Number}	count	The number of years to subtract from the current calendar
-	*/
-	subtractYears : function(count) {
-		this.callChildFunction("subtractYears", count);
-	},
-
-	/**
-	 * Returns the Calendar page instance which has a pagedate (month/year) matching the given date. 
-	 * Returns null if no match is found.
-	 * 
-	 * @method getCalendarPage
-	 * @param {Date} date The JavaScript Date object for which a Calendar page is to be found.
-	 * @return {Calendar} The Calendar page instance representing the month to which the date 
-	 * belongs.
-	 */
-	getCalendarPage : function(date) {
-		var cal = null;
-		if (date) {
-			var y = date.getFullYear(),
-				m = date.getMonth();
-
-			var pages = this.pages;
-			for (var i = 0; i < pages.length; ++i) {
-				var pageDate = pages[i].cfg.getProperty("pagedate");
-				if (pageDate.getFullYear() === y && pageDate.getMonth() === m) {
-					cal = pages[i];
-					break;
-				}
-			}
-		}
-		return cal;
-	},
-
-	/**
-	* Sets the month on a Date object, taking into account year rollover if the month is less than 0 or greater than 11.
-	* The Date object passed in is modified. It should be cloned before passing it into this method if the original value needs to be maintained
-	* @method	_setMonthOnDate
-	* @private
-	* @param	{Date}	date	The Date object on which to set the month index
-	* @param	{Number}	iMonth	The month index to set
-	*/
-	_setMonthOnDate : function(date, iMonth) {
-		// Bug in Safari 1.3, 2.0 (WebKit build < 420), Date.setMonth does not work consistently if iMonth is not 0-11
-		if (YAHOO.env.ua.webkit && YAHOO.env.ua.webkit < 420 && (iMonth < 0 || iMonth > 11)) {
-			var newDate = DateMath.add(date, DateMath.MONTH, iMonth-date.getMonth());
-			date.setTime(newDate.getTime());
-		} else {
-			date.setMonth(iMonth);
-		}
-	},
-	
-	/**
-	 * Fixes the width of the CalendarGroup container element, to account for miswrapped floats
-	 * @method _fixWidth
-	 * @private
-	 */
-	_fixWidth : function() {
-		var w = 0;
-		for (var p=0;p<this.pages.length;++p) {
-			var cal = this.pages[p];
-			w += cal.oDomContainer.offsetWidth;
-		}
-		if (w > 0) {
-			this.oDomContainer.style.width = w + "px";
-		}
-	},
-	
-	/**
-	* Returns a string representation of the object.
-	* @method toString
-	* @return {String}	A string representation of the CalendarGroup object.
-	*/
-	toString : function() {
-		return "CalendarGroup " + this.id;
-	},
-
-	/**
-	 * Destroys the CalendarGroup instance. The method will remove references
-	 * to HTML elements, remove any event listeners added by the CalendarGroup.
-	 * 
-	 * It will also destroy the Config and CalendarNavigator instances created by the 
-	 * CalendarGroup and the individual Calendar instances created for each page.
-	 *
-	 * @method destroy
-	 */
-	destroy : function() {
-
-		if (this.beforeDestroyEvent.fire()) {
-
-			var cal = this;
-	
-			// Child objects
-			if (cal.navigator) {
-				cal.navigator.destroy();
-			}
-	
-			if (cal.cfg) {
-				cal.cfg.destroy();
-			}
-	
-			// DOM event listeners
-			Event.purgeElement(cal.oDomContainer, true);
-	
-			// Generated markup/DOM - Not removing the container DIV since we didn't create it.
-			Dom.removeClass(cal.oDomContainer, CalendarGroup.CSS_CONTAINER);
-			Dom.removeClass(cal.oDomContainer, CalendarGroup.CSS_MULTI_UP);
-			
-			for (var i = 0, l = cal.pages.length; i < l; i++) {
-				cal.pages[i].destroy();
-				cal.pages[i] = null;
-			}
-	
-			cal.oDomContainer.innerHTML = "";
-	
-			// JS-to-DOM references
-			cal.oDomContainer = null;
-	
-			this.destroyEvent.fire();
-		}
-	}
-};
-
-/**
-* CSS class representing the container for the calendar
-* @property YAHOO.widget.CalendarGroup.CSS_CONTAINER
-* @static
-* @final
-* @type String
-*/
-CalendarGroup.CSS_CONTAINER = "yui-calcontainer";
-
-/**
-* CSS class representing the container for the calendar
-* @property YAHOO.widget.CalendarGroup.CSS_MULTI_UP
-* @static
-* @final
-* @type String
-*/
-CalendarGroup.CSS_MULTI_UP = "multi";
-
-/**
-* CSS class representing the title for the 2-up calendar
-* @property YAHOO.widget.CalendarGroup.CSS_2UPTITLE
-* @static
-* @final
-* @type String
-*/
-CalendarGroup.CSS_2UPTITLE = "title";
-
-/**
-* CSS class representing the close icon for the 2-up calendar
-* @property YAHOO.widget.CalendarGroup.CSS_2UPCLOSE
-* @static
-* @final
-* @deprecated	Along with Calendar.IMG_ROOT and NAV_ARROW_LEFT, NAV_ARROW_RIGHT configuration properties.
-*					Calendar's <a href="YAHOO.widget.Calendar.html#Style.CSS_CLOSE">Style.CSS_CLOSE</a> property now represents the CSS class used to render the close icon
-* @type String
-*/
-CalendarGroup.CSS_2UPCLOSE = "close-icon";
-
-YAHOO.lang.augmentProto(CalendarGroup, Calendar, "buildDayLabel",
-												 "buildMonthLabel",
-												 "renderOutOfBoundsDate",
-												 "renderRowHeader",
-												 "renderRowFooter",
-												 "renderCellDefault",
-												 "styleCellDefault",
-												 "renderCellStyleHighlight1",
-												 "renderCellStyleHighlight2",
-												 "renderCellStyleHighlight3",
-												 "renderCellStyleHighlight4",
-												 "renderCellStyleToday",
-												 "renderCellStyleSelected",
-												 "renderCellNotThisMonth",
-												 "renderBodyCellRestricted",
-												 "initStyles",
-												 "configTitle",
-												 "configClose",
-												 "configIframe",
-												 "configStrings",
-												 "configNavigator",
-												 "createTitleBar",
-												 "createCloseButton",
-												 "removeTitleBar",
-												 "removeCloseButton",
-												 "hide",
-												 "show",
-												 "toDate",
-												 "_toDate",
-												 "_parseArgs",
-												 "browser");
-
-YAHOO.widget.CalGrp = CalendarGroup;
-YAHOO.widget.CalendarGroup = CalendarGroup;
-
-/**
-* @class YAHOO.widget.Calendar2up
-* @extends YAHOO.widget.CalendarGroup
-* @deprecated The old Calendar2up class is no longer necessary, since CalendarGroup renders in a 2up view by default.
-*/
-YAHOO.widget.Calendar2up = function(id, containerId, config) {
-	this.init(id, containerId, config);
-};
-
-YAHOO.extend(YAHOO.widget.Calendar2up, CalendarGroup);
-
-/**
-* @deprecated The old Calendar2up class is no longer necessary, since CalendarGroup renders in a 2up view by default.
-*/
-YAHOO.widget.Cal2up = YAHOO.widget.Calendar2up;
-
-})();
-
-/**
- * The CalendarNavigator is used along with a Calendar/CalendarGroup to 
- * provide a Month/Year popup navigation control, allowing the user to navigate 
- * to a specific month/year in the Calendar/CalendarGroup without having to 
- * scroll through months sequentially
- *
- * @namespace YAHOO.widget
- * @class CalendarNavigator
- * @constructor
- * @param {Calendar|CalendarGroup} cal The instance of the Calendar or CalendarGroup to which this CalendarNavigator should be attached.
- */
-YAHOO.widget.CalendarNavigator = function(cal) {
-	this.init(cal);
-};
-
-(function() {
-	// Setup static properties (inside anon fn, so that we can use shortcuts)
-	var CN = YAHOO.widget.CalendarNavigator;
-
-	/**
-	 * YAHOO.widget.CalendarNavigator.CLASSES contains constants
-	 * for the class values applied to the CalendarNaviatgator's 
-	 * DOM elements
-	 * @property YAHOO.widget.CalendarNavigator.CLASSES
-	 * @type Object
-	 * @static
-	 */
-	CN.CLASSES = {
-		/**
-		 * Class applied to the Calendar Navigator's bounding box
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.NAV
-		 * @type String
-		 * @static
-		 */
-		NAV :"yui-cal-nav",
-		/**
-		 * Class applied to the Calendar/CalendarGroup's bounding box to indicate
-		 * the Navigator is currently visible
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.NAV_VISIBLE
-		 * @type String
-		 * @static
-		 */
-		NAV_VISIBLE: "yui-cal-nav-visible",
-		/**
-		 * Class applied to the Navigator mask's bounding box
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.MASK
-		 * @type String
-		 * @static
-		 */
-		MASK : "yui-cal-nav-mask",
-		/**
-		 * Class applied to the year label/control bounding box
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.YEAR
-		 * @type String
-		 * @static
-		 */
-		YEAR : "yui-cal-nav-y",
-		/**
-		 * Class applied to the month label/control bounding box
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.MONTH
-		 * @type String
-		 * @static
-		 */
-		MONTH : "yui-cal-nav-m",
-		/**
-		 * Class applied to the submit/cancel button's bounding box
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.BUTTONS
-		 * @type String
-		 * @static
-		 */
-		BUTTONS : "yui-cal-nav-b",
-		/**
-		 * Class applied to buttons wrapping element
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.BUTTON
-		 * @type String
-		 * @static
-		 */
-		BUTTON : "yui-cal-nav-btn",
-		/**
-		 * Class applied to the validation error area's bounding box
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.ERROR
-		 * @type String
-		 * @static
-		 */
-		ERROR : "yui-cal-nav-e",
-		/**
-		 * Class applied to the year input control
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.YEAR_CTRL
-		 * @type String
-		 * @static
-		 */
-		YEAR_CTRL : "yui-cal-nav-yc",
-		/**
-		 * Class applied to the month input control
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.MONTH_CTRL
-		 * @type String
-		 * @static
-		 */
-		MONTH_CTRL : "yui-cal-nav-mc",
-		/**
-		 * Class applied to controls with invalid data (e.g. a year input field with invalid an year)
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.INVALID
-		 * @type String
-		 * @static
-		 */
-		INVALID : "yui-invalid",
-		/**
-		 * Class applied to default controls
-		 * @property YAHOO.widget.CalendarNavigator.CLASSES.DEFAULT
-		 * @type String
-		 * @static
-		 */
-		DEFAULT : "yui-default"
-	};
-
-	/**
-	 * Object literal containing the default configuration values for the CalendarNavigator
-	 * The configuration object is expected to follow the format below, with the properties being
-	 * case sensitive.
-	 * <dl>
-	 * <dt>strings</dt>
-	 * <dd><em>Object</em> :  An object with the properties shown below, defining the string labels to use in the Navigator's UI
-	 *     <dl>
-	 *         <dt>month</dt><dd><em>String</em> : The string to use for the month label. Defaults to "Month".</dd>
-	 *         <dt>year</dt><dd><em>String</em> : The string to use for the year label. Defaults to "Year".</dd>
-	 *         <dt>submit</dt><dd><em>String</em> : The string to use for the submit button label. Defaults to "Okay".</dd>
-	 *         <dt>cancel</dt><dd><em>String</em> : The string to use for the cancel button label. Defaults to "Cancel".</dd>
-	 *         <dt>invalidYear</dt><dd><em>String</em> : The string to use for invalid year values. Defaults to "Year needs to be a number".</dd>
-	 *     </dl>
-	 * </dd>
-	 * <dt>monthFormat</dt><dd><em>String</em> : The month format to use. Either YAHOO.widget.Calendar.LONG, or YAHOO.widget.Calendar.SHORT. Defaults to YAHOO.widget.Calendar.LONG</dd>
-	 * <dt>initialFocus</dt><dd><em>String</em> : Either "year" or "month" specifying which input control should get initial focus. Defaults to "year"</dd>
-	 * </dl>
-	 * @property _DEFAULT_CFG
-	 * @protected
-	 * @type Object
-	 * @static
-	 */
-	CN._DEFAULT_CFG = {
-		strings : {
-			month: "Month",
-			year: "Year",
-			submit: "Okay",
-			cancel: "Cancel",
-			invalidYear : "Year needs to be a number"
-		},
-		monthFormat: YAHOO.widget.Calendar.LONG,
-		initialFocus: "year"
-	};
-
-	/**
-	 * The suffix added to the Calendar/CalendarGroup's ID, to generate
-	 * a unique ID for the Navigator and it's bounding box.
-	 * @property YAHOO.widget.CalendarNavigator.ID_SUFFIX
-	 * @static
-	 * @type String
-	 * @final
-	 */
-	CN.ID_SUFFIX = "_nav";
-	/**
-	 * The suffix added to the Navigator's ID, to generate
-	 * a unique ID for the month control.
-	 * @property YAHOO.widget.CalendarNavigator.MONTH_SUFFIX
-	 * @static
-	 * @type String 
-	 * @final
-	 */
-	CN.MONTH_SUFFIX = "_month";
-	/**
-	 * The suffix added to the Navigator's ID, to generate
-	 * a unique ID for the year control.
-	 * @property YAHOO.widget.CalendarNavigator.YEAR_SUFFIX
-	 * @static
-	 * @type String
-	 * @final
-	 */
-	CN.YEAR_SUFFIX = "_year";
-	/**
-	 * The suffix added to the Navigator's ID, to generate
-	 * a unique ID for the error bounding box.
-	 * @property YAHOO.widget.CalendarNavigator.ERROR_SUFFIX
-	 * @static
-	 * @type String
-	 * @final
-	 */
-	CN.ERROR_SUFFIX = "_error";
-	/**
-	 * The suffix added to the Navigator's ID, to generate
-	 * a unique ID for the "Cancel" button.
-	 * @property YAHOO.widget.CalendarNavigator.CANCEL_SUFFIX
-	 * @static
-	 * @type String
-	 * @final
-	 */
-	CN.CANCEL_SUFFIX = "_cancel";
-	/**
-	 * The suffix added to the Navigator's ID, to generate
-	 * a unique ID for the "Submit" button.
-	 * @property YAHOO.widget.CalendarNavigator.SUBMIT_SUFFIX
-	 * @static
-	 * @type String
-	 * @final
-	 */
-	CN.SUBMIT_SUFFIX = "_submit";
-
-	/**
-	 * The number of digits to which the year input control is to be limited.
-	 * @property YAHOO.widget.CalendarNavigator.YR_MAX_DIGITS
-	 * @static
-	 * @type Number
-	 */
-	CN.YR_MAX_DIGITS = 4;
-
-	/**
-	 * The amount by which to increment the current year value,
-	 * when the arrow up/down key is pressed on the year control
-	 * @property YAHOO.widget.CalendarNavigator.YR_MINOR_INC
-	 * @static
-	 * @type Number
-	 */
-	CN.YR_MINOR_INC = 1;
-
-	/**
-	 * The amount by which to increment the current year value,
-	 * when the page up/down key is pressed on the year control
-	 * @property YAHOO.widget.CalendarNavigator.YR_MAJOR_INC
-	 * @static
-	 * @type Number
-	 */
-	CN.YR_MAJOR_INC = 10;
-
-	/**
-	 * Artificial delay (in ms) between the time the Navigator is hidden
-	 * and the Calendar/CalendarGroup state is updated. Allows the user
-	 * the see the Calendar/CalendarGroup page changing. If set to 0
-	 * the Calendar/CalendarGroup page will be updated instantly
-	 * @property YAHOO.widget.CalendarNavigator.UPDATE_DELAY
-	 * @static
-	 * @type Number
-	 */
-	CN.UPDATE_DELAY = 50;
-
-	/**
-	 * Regular expression used to validate the year input
-	 * @property YAHOO.widget.CalendarNavigator.YR_PATTERN
-	 * @static
-	 * @type RegExp
-	 */
-	CN.YR_PATTERN = /^\d+$/;
-	/**
-	 * Regular expression used to trim strings
-	 * @property YAHOO.widget.CalendarNavigator.TRIM
-	 * @static
-	 * @type RegExp
-	 */
-	CN.TRIM = /^\s*(.*?)\s*$/;
-})();
-
-YAHOO.widget.CalendarNavigator.prototype = {
-
-	/**
-	 * The unique ID for this CalendarNavigator instance
-	 * @property id
-	 * @type String
-	 */
-	id : null,
-
-	/**
-	 * The Calendar/CalendarGroup instance to which the navigator belongs
-	 * @property cal
-	 * @type {Calendar|CalendarGroup}
-	 */
-	cal : null,
-
-	/**
-	 * Reference to the HTMLElement used to render the navigator's bounding box
-	 * @property navEl
-	 * @type HTMLElement
-	 */
-	navEl : null,
-
-	/**
-	 * Reference to the HTMLElement used to render the navigator's mask
-	 * @property maskEl
-	 * @type HTMLElement
-	 */
-	maskEl : null,
-
-	/**
-	 * Reference to the HTMLElement used to input the year
-	 * @property yearEl
-	 * @type HTMLElement
-	 */
-	yearEl : null,
-
-	/**
-	 * Reference to the HTMLElement used to input the month
-	 * @property monthEl
-	 * @type HTMLElement
-	 */
-	monthEl : null,
-
-	/**
-	 * Reference to the HTMLElement used to display validation errors
-	 * @property errorEl
-	 * @type HTMLElement
-	 */
-	errorEl : null,
-
-	/**
-	 * Reference to the HTMLElement used to update the Calendar/Calendar group
-	 * with the month/year values
-	 * @property submitEl
-	 * @type HTMLElement
-	 */
-	submitEl : null,
-	
-	/**
-	 * Reference to the HTMLElement used to hide the navigator without updating the 
-	 * Calendar/Calendar group
-	 * @property cancelEl
-	 * @type HTMLElement
-	 */
-	cancelEl : null,
-
-	/** 
-	 * Reference to the first focusable control in the navigator (by default monthEl)
-	 * @property firstCtrl
-	 * @type HTMLElement
-	 */
-	firstCtrl : null,
-	
-	/** 
-	 * Reference to the last focusable control in the navigator (by default cancelEl)
-	 * @property lastCtrl
-	 * @type HTMLElement
-	 */
-	lastCtrl : null,
-
-	/**
-	 * The document containing the Calendar/Calendar group instance
-	 * @protected
-	 * @property _doc
-	 * @type HTMLDocument
-	 */
-	_doc : null,
-
-	/**
-	 * Internal state property for the current year displayed in the navigator
-	 * @protected
-	 * @property _year
-	 * @type Number
-	 */
-	_year: null,
-	
-	/**
-	 * Internal state property for the current month index displayed in the navigator
-	 * @protected
-	 * @property _month
-	 * @type Number
-	 */
-	_month: 0,
-
-	/**
-	 * Private internal state property which indicates whether or not the 
-	 * Navigator has been rendered.
-	 * @private
-	 * @property __rendered
-	 * @type Boolean
-	 */
-	__rendered: false,
-
-	/**
-	 * Init lifecycle method called as part of construction
-	 * 
-	 * @method init
-	 * @param {Calendar} cal The instance of the Calendar or CalendarGroup to which this CalendarNavigator should be attached
-	 */
-	init : function(cal) {
-		var calBox = cal.oDomContainer;
-
-		this.cal = cal;
-		this.id = calBox.id + YAHOO.widget.CalendarNavigator.ID_SUFFIX;
-		this._doc = calBox.ownerDocument;
-
-		/**
-		 * Private flag, to identify IE6/IE7 Quirks
-		 * @private
-		 * @property __isIEQuirks
-		 */
-		var ie = YAHOO.env.ua.ie;
-		this.__isIEQuirks = (ie && ((ie <= 6) || (ie === 7 && this._doc.compatMode == "BackCompat")));
-	},
-
-	/**
-	 * Displays the navigator and mask, updating the input controls to reflect the 
-	 * currently set month and year. The show method will invoke the render method
-	 * if the navigator has not been renderered already, allowing for lazy rendering
-	 * of the control.
-	 * 
-	 * The show method will fire the Calendar/CalendarGroup's beforeShowNav and showNav events
-	 * 
-	 * @method show
-	 */
-	show : function() {
-		var CLASSES = YAHOO.widget.CalendarNavigator.CLASSES;
-
-		if (this.cal.beforeShowNavEvent.fire()) {
-			if (!this.__rendered) {
-				this.render();
-			}
-			this.clearErrors();
-
-			this._updateMonthUI();
-			this._updateYearUI();
-			this._show(this.navEl, true);
-
-			this.setInitialFocus();
-			this.showMask();
-
-			YAHOO.util.Dom.addClass(this.cal.oDomContainer, CLASSES.NAV_VISIBLE);
-			this.cal.showNavEvent.fire();
-		}
-	},
-
-	/**
-	 * Hides the navigator and mask
-	 * 
-	 * The show method will fire the Calendar/CalendarGroup's beforeHideNav event and hideNav events
-	 * @method hide
-	 */
-	hide : function() {
-		var CLASSES = YAHOO.widget.CalendarNavigator.CLASSES;
-
-		if (this.cal.beforeHideNavEvent.fire()) {
-			this._show(this.navEl, false);
-			this.hideMask();
-			YAHOO.util.Dom.removeClass(this.cal.oDomContainer, CLASSES.NAV_VISIBLE);
-			this.cal.hideNavEvent.fire();
-		}
-	},
-	
-
-	/**
-	 * Displays the navigator's mask element
-	 * 
-	 * @method showMask
-	 */
-	showMask : function() {
-		this._show(this.maskEl, true);
-		if (this.__isIEQuirks) {
-			this._syncMask();
-		}
-	},
-
-	/**
-	 * Hides the navigator's mask element
-	 * 
-	 * @method hideMask
-	 */
-	hideMask : function() {
-		this._show(this.maskEl, false);
-	},
-
-	/**
-	 * Returns the current month set on the navigator
-	 * 
-	 * Note: This may not be the month set in the UI, if 
-	 * the UI contains an invalid value.
-	 * 
-	 * @method getMonth
-	 * @return {Number} The Navigator's current month index
-	 */
-	getMonth: function() {
-		return this._month;
-	},
-
-	/**
-	 * Returns the current year set on the navigator
-	 * 
-	 * Note: This may not be the year set in the UI, if 
-	 * the UI contains an invalid value.
-	 * 
-	 * @method getYear
-	 * @return {Number} The Navigator's current year value
-	 */
-	getYear: function() {
-		return this._year;
-	},
-
-	/**
-	 * Sets the current month on the Navigator, and updates the UI
-	 * 
-	 * @method setMonth
-	 * @param {Number} nMonth The month index, from 0 (Jan) through 11 (Dec).
-	 */
-	setMonth : function(nMonth) {
-		if (nMonth >= 0 && nMonth < 12) {
-			this._month = nMonth;
-		}
-		this._updateMonthUI();
-	},
-
-	/**
-	 * Sets the current year on the Navigator, and updates the UI. If the 
-	 * provided year is invalid, it will not be set.
-	 * 
-	 * @method setYear
-	 * @param {Number} nYear The full year value to set the Navigator to.
-	 */
-	setYear : function(nYear) {
-		var yrPattern = YAHOO.widget.CalendarNavigator.YR_PATTERN;
-		if (YAHOO.lang.isNumber(nYear) && yrPattern.test(nYear+"")) {
-			this._year = nYear;
-		}
-		this._updateYearUI();
-	},
-
-	/**
-	 * Renders the HTML for the navigator, adding it to the 
-	 * document and attaches event listeners if it has not 
-	 * already been rendered.
-	 * 
-	 * @method render
-	 */
-	render: function() {
-		this.cal.beforeRenderNavEvent.fire();
-		if (!this.__rendered) {
-			this.createNav();
-			this.createMask();
-			this.applyListeners();
-			this.__rendered = true;
-		}
-		this.cal.renderNavEvent.fire();
-	},
-
-	/**
-	 * Creates the navigator's containing HTMLElement, it's contents, and appends 
-	 * the containg element to the Calendar/CalendarGroup's container.
-	 * 
-	 * @method createNav
-	 */
-	createNav : function() {
-		var NAV = YAHOO.widget.CalendarNavigator;
-		var doc = this._doc;
-
-		var d = doc.createElement("div");
-		d.className = NAV.CLASSES.NAV;
-
-		var htmlBuf = this.renderNavContents([]);
-
-		d.innerHTML = htmlBuf.join('');
-		this.cal.oDomContainer.appendChild(d);
-
-		this.navEl = d;
-
-		this.yearEl = doc.getElementById(this.id + NAV.YEAR_SUFFIX);
-		this.monthEl = doc.getElementById(this.id + NAV.MONTH_SUFFIX);
-		this.errorEl = doc.getElementById(this.id + NAV.ERROR_SUFFIX);
-		this.submitEl = doc.getElementById(this.id + NAV.SUBMIT_SUFFIX);
-		this.cancelEl = doc.getElementById(this.id + NAV.CANCEL_SUFFIX);
-
-		if (YAHOO.env.ua.gecko && this.yearEl && this.yearEl.type == "text") {
-			// Avoid XUL error on focus, select [ https://bugzilla.mozilla.org/show_bug.cgi?id=236791, 
-			// supposedly fixed in 1.8.1, but there are reports of it still being around for methods other than blur ]
-			this.yearEl.setAttribute("autocomplete", "off");
-		}
-
-		this._setFirstLastElements();
-	},
-
-	/**
-	 * Creates the Mask HTMLElement and appends it to the Calendar/CalendarGroups
-	 * container.
-	 * 
-	 * @method createMask
-	 */
-	createMask : function() {
-		var C = YAHOO.widget.CalendarNavigator.CLASSES;
-
-		var d = this._doc.createElement("div");
-		d.className = C.MASK;
-
-		this.cal.oDomContainer.appendChild(d);
-		this.maskEl = d;
-	},
-
-	/**
-	 * Used to set the width/height of the mask in pixels to match the Calendar Container.
-	 * Currently only used for IE6 and IE7 quirks mode. The other A-Grade browser are handled using CSS (width/height 100%).
-	 * <p>
-	 * The method is also registered as an HTMLElement resize listener on the Calendars container element.
-	 * </p>
-	 * @protected
-	 * @method _syncMask
-	 */
-	_syncMask : function() {
-		var c = this.cal.oDomContainer;
-		if (c && this.maskEl) {
-			var r = YAHOO.util.Dom.getRegion(c);
-			YAHOO.util.Dom.setStyle(this.maskEl, "width", r.right - r.left + "px");
-			YAHOO.util.Dom.setStyle(this.maskEl, "height", r.bottom - r.top + "px");
-		}
-	},
-
-	/**
-	 * Renders the contents of the navigator
-	 * 
-	 * @method renderNavContents
-	 * 
-	 * @param {Array} html The HTML buffer to append the HTML to.
-	 * @return {Array} A reference to the buffer passed in.
-	 */
-	renderNavContents : function(html) {
-		var NAV = YAHOO.widget.CalendarNavigator,
-			C = NAV.CLASSES,
-			h = html; // just to use a shorter name
-
-		h[h.length] = '<div class="' + C.MONTH + '">';
-		this.renderMonth(h);
-		h[h.length] = '</div>';
-		h[h.length] = '<div class="' + C.YEAR + '">';
-		this.renderYear(h);
-		h[h.length] = '</div>';
-		h[h.length] = '<div class="' + C.BUTTONS + '">';
-		this.renderButtons(h);
-		h[h.length] = '</div>';
-		h[h.length] = '<div class="' + C.ERROR + '" id="' + this.id + NAV.ERROR_SUFFIX + '"></div>';
-
-		return h;
-	},
-
-	/**
-	 * Renders the month label and control for the navigator
-	 * 
-	 * @method renderNavContents
-	 * @param {Array} html The HTML buffer to append the HTML to.
-	 * @return {Array} A reference to the buffer passed in.
-	 */
-	renderMonth : function(html) {
-		var NAV = YAHOO.widget.CalendarNavigator,
-			C = NAV.CLASSES;
-
-		var id = this.id + NAV.MONTH_SUFFIX,
-			mf = this.__getCfg("monthFormat"),
-			months = this.cal.cfg.getProperty((mf == YAHOO.widget.Calendar.SHORT) ? "MONTHS_SHORT" : "MONTHS_LONG"),
-			h = html;
-
-		if (months && months.length > 0) {
-			h[h.length] = '<label for="' + id + '">';
-			h[h.length] = this.__getCfg("month", true);
-			h[h.length] = '</label>';
-			h[h.length] = '<select name="' + id + '" id="' + id + '" class="' + C.MONTH_CTRL + '">';
-			for (var i = 0; i < months.length; i++) {
-				h[h.length] = '<option value="' + i + '">';
-				h[h.length] = months[i];
-				h[h.length] = '</option>';
-			}
-			h[h.length] = '</select>';
-		}
-		return h;
-	},
-
-	/**
-	 * Renders the year label and control for the navigator
-	 * 
-	 * @method renderYear
-	 * @param {Array} html The HTML buffer to append the HTML to.
-	 * @return {Array} A reference to the buffer passed in.
-	 */
-	renderYear : function(html) {
-		var NAV = YAHOO.widget.CalendarNavigator,
-			C = NAV.CLASSES;
-
-		var id = this.id + NAV.YEAR_SUFFIX,
-			size = NAV.YR_MAX_DIGITS,
-			h = html;
-
-		h[h.length] = '<label for="' + id + '">';
-		h[h.length] = this.__getCfg("year", true);
-		h[h.length] = '</label>';
-		h[h.length] = '<input type="text" name="' + id + '" id="' + id + '" class="' + C.YEAR_CTRL + '" maxlength="' + size + '"/>';
-		return h;
-	},
-
-	/**
-	 * Renders the submit/cancel buttons for the navigator
-	 * 
-	 * @method renderButton
-	 * @return {String} The HTML created for the Button UI
-	 */
-	renderButtons : function(html) {
-		var C = YAHOO.widget.CalendarNavigator.CLASSES;
-		var h = html;
-
-		h[h.length] = '<span class="' + C.BUTTON + ' ' + C.DEFAULT + '">';
-		h[h.length] = '<button type="button" id="' + this.id + '_submit' + '">';
-		h[h.length] = this.__getCfg("submit", true);
-		h[h.length] = '</button>';
-		h[h.length] = '</span>';
-		h[h.length] = '<span class="' + C.BUTTON +'">';
-		h[h.length] = '<button type="button" id="' + this.id + '_cancel' + '">';
-		h[h.length] = this.__getCfg("cancel", true);
-		h[h.length] = '</button>';
-		h[h.length] = '</span>';
-
-		return h;
-	},
-
-	/**
-	 * Attaches DOM event listeners to the rendered elements
-	 * <p>
-	 * The method will call applyKeyListeners, to setup keyboard specific 
-	 * listeners
-	 * </p>
-	 * @method applyListeners
-	 */
-	applyListeners : function() {
-		var E = YAHOO.util.Event;
-
-		function yearUpdateHandler() {
-			if (this.validate()) {
-				this.setYear(this._getYearFromUI());
-			}
-		}
-
-		function monthUpdateHandler() {
-			this.setMonth(this._getMonthFromUI());
-		}
-
-		E.on(this.submitEl, "click", this.submit, this, true);
-		E.on(this.cancelEl, "click", this.cancel, this, true);
-		E.on(this.yearEl, "blur", yearUpdateHandler, this, true);
-		E.on(this.monthEl, "change", monthUpdateHandler, this, true);
-
-		if (this.__isIEQuirks) {
-			YAHOO.util.Event.on(this.cal.oDomContainer, "resize", this._syncMask, this, true);
-		}
-
-		this.applyKeyListeners();
-	},
-
-	/**
-	 * Removes/purges DOM event listeners from the rendered elements
-	 * 
-	 * @method purgeListeners
-	 */
-	purgeListeners : function() {
-		var E = YAHOO.util.Event;
-		E.removeListener(this.submitEl, "click", this.submit);
-		E.removeListener(this.cancelEl, "click", this.cancel);
-		E.removeListener(this.yearEl, "blur");
-		E.removeListener(this.monthEl, "change");
-		if (this.__isIEQuirks) {
-			E.removeListener(this.cal.oDomContainer, "resize", this._syncMask);
-		}
-
-		this.purgeKeyListeners();
-	},
-
-	/**
-	 * Attaches DOM listeners for keyboard support. 
-	 * Tab/Shift-Tab looping, Enter Key Submit on Year element,
-	 * Up/Down/PgUp/PgDown year increment on Year element
-	 * <p>
-	 * NOTE: MacOSX Safari 2.x doesn't let you tab to buttons and 
-	 * MacOSX Gecko does not let you tab to buttons or select controls,
-	 * so for these browsers, Tab/Shift-Tab looping is limited to the 
-	 * elements which can be reached using the tab key.
-	 * </p>
-	 * @method applyKeyListeners
-	 */
-	applyKeyListeners : function() {
-		var E = YAHOO.util.Event,
-			ua = YAHOO.env.ua;
-
-		// IE/Safari 3.1 doesn't fire keypress for arrow/pg keys (non-char keys)
-		var arrowEvt = (ua.ie || ua.webkit) ? "keydown" : "keypress";
-
-		// - IE/Safari 3.1 doesn't fire keypress for non-char keys
-		// - Opera doesn't allow us to cancel keydown or keypress for tab, but 
-		//   changes focus successfully on keydown (keypress is too late to change focus - opera's already moved on).
-		var tabEvt = (ua.ie || ua.opera || ua.webkit) ? "keydown" : "keypress";
-
-		// Everyone likes keypress for Enter (char keys) - whoo hoo!
-		E.on(this.yearEl, "keypress", this._handleEnterKey, this, true);
-
-		E.on(this.yearEl, arrowEvt, this._handleDirectionKeys, this, true);
-		E.on(this.lastCtrl, tabEvt, this._handleTabKey, this, true);
-		E.on(this.firstCtrl, tabEvt, this._handleShiftTabKey, this, true);
-	},
-
-	/**
-	 * Removes/purges DOM listeners for keyboard support
-	 *
-	 * @method purgeKeyListeners
-	 */
-	purgeKeyListeners : function() {
-		var E = YAHOO.util.Event,
-			ua = YAHOO.env.ua;
-
-		var arrowEvt = (ua.ie || ua.webkit) ? "keydown" : "keypress";
-		var tabEvt = (ua.ie || ua.opera || ua.webkit) ? "keydown" : "keypress";
-
-		E.removeListener(this.yearEl, "keypress", this._handleEnterKey);
-		E.removeListener(this.yearEl, arrowEvt, this._handleDirectionKeys);
-		E.removeListener(this.lastCtrl, tabEvt, this._handleTabKey);
-		E.removeListener(this.firstCtrl, tabEvt, this._handleShiftTabKey);
-	},
-
-	/**
-	 * Updates the Calendar/CalendarGroup's pagedate with the currently set month and year if valid.
-	 * <p>
-	 * If the currently set month/year is invalid, a validation error will be displayed and the 
-	 * Calendar/CalendarGroup's pagedate will not be updated.
-	 * </p>
-	 * @method submit
-	 */
-	submit : function() {
-		if (this.validate()) {
-			this.hide();
-
-			this.setMonth(this._getMonthFromUI());
-			this.setYear(this._getYearFromUI());
-
-			var cal = this.cal;
-
-			// Artificial delay, just to help the user see something changed
-			var delay = YAHOO.widget.CalendarNavigator.UPDATE_DELAY;
-			if (delay > 0) {
-				var nav = this;
-				window.setTimeout(function(){ nav._update(cal); }, delay);
-			} else {
-				this._update(cal);
-			}
-		}
-	},
-
-	/**
-	 * Updates the Calendar rendered state, based on the state of the CalendarNavigator
-	 * @method _update
-	 * @param cal The Calendar instance to update
-	 * @protected
-	 */
-	_update : function(cal) {
-		cal.setYear(this.getYear());
-		cal.setMonth(this.getMonth());
-		cal.render();
-	},
-
-	/**
-	 * Hides the navigator and mask, without updating the Calendar/CalendarGroup's state
-	 * 
-	 * @method cancel
-	 */
-	cancel : function() {
-		this.hide();
-	},
-
-	/**
-	 * Validates the current state of the UI controls
-	 * 
-	 * @method validate
-	 * @return {Boolean} true, if the current UI state contains valid values, false if not
-	 */
-	validate : function() {
-		if (this._getYearFromUI() !== null) {
-			this.clearErrors();
-			return true;
-		} else {
-			this.setYearError();
-			this.setError(this.__getCfg("invalidYear", true));
-			return false;
-		}
-	},
-
-	/**
-	 * Displays an error message in the Navigator's error panel
-	 * @method setError
-	 * @param {String} msg The error message to display
-	 */
-	setError : function(msg) {
-		if (this.errorEl) {
-			this.errorEl.innerHTML = msg;
-			this._show(this.errorEl, true);
-		}
-	},
-
-	/**
-	 * Clears the navigator's error message and hides the error panel
-	 * @method clearError 
-	 */
-	clearError : function() {
-		if (this.errorEl) {
-			this.errorEl.innerHTML = "";
-			this._show(this.errorEl, false);
-		}
-	},
-
-	/**
-	 * Displays the validation error UI for the year control
-	 * @method setYearError
-	 */
-	setYearError : function() {
-		YAHOO.util.Dom.addClass(this.yearEl, YAHOO.widget.CalendarNavigator.CLASSES.INVALID);
-	},
-
-	/**
-	 * Removes the validation error UI for the year control
-	 * @method clearYearError
-	 */
-	clearYearError : function() {
-		YAHOO.util.Dom.removeClass(this.yearEl, YAHOO.widget.CalendarNavigator.CLASSES.INVALID);
-	},
-
-	/**
-	 * Clears all validation and error messages in the UI
-	 * @method clearErrors
-	 */
-	clearErrors : function() {
-		this.clearError();
-		this.clearYearError();
-	},
-
-	/**
-	 * Sets the initial focus, based on the configured value
-	 * @method setInitialFocus
-	 */
-	setInitialFocus : function() {
-		var el = this.submitEl,
-			f = this.__getCfg("initialFocus");
-
-		if (f && f.toLowerCase) {
-			f = f.toLowerCase();
-			if (f == "year") {
-				el = this.yearEl;
-				try {
-					this.yearEl.select();
-				} catch (selErr) {
-					// Ignore;
-				}
-			} else if (f == "month") {
-				el = this.monthEl;
-			}
-		}
-
-		if (el && YAHOO.lang.isFunction(el.focus)) {
-			try {
-				el.focus();
-			} catch (focusErr) {
-				// TODO: Fall back if focus fails?
-			}
-		}
-	},
-
-	/**
-	 * Removes all renderered HTML elements for the Navigator from
-	 * the DOM, purges event listeners and clears (nulls) any property
-	 * references to HTML references
-	 * @method erase
-	 */
-	erase : function() {
-		if (this.__rendered) {
-			this.purgeListeners();
-
-			// Clear out innerHTML references
-			this.yearEl = null;
-			this.monthEl = null;
-			this.errorEl = null;
-			this.submitEl = null;
-			this.cancelEl = null;
-			this.firstCtrl = null;
-			this.lastCtrl = null;
-			if (this.navEl) {
-				this.navEl.innerHTML = "";
-			}
-
-			var p = this.navEl.parentNode;
-			if (p) {
-				p.removeChild(this.navEl);
-			}
-			this.navEl = null;
-
-			var pm = this.maskEl.parentNode;
-			if (pm) {
-				pm.removeChild(this.maskEl);
-			}
-			this.maskEl = null;
-			this.__rendered = false;
-		}
-	},
-
-	/**
-	 * Destroys the Navigator object and any HTML references
-	 * @method destroy
-	 */
-	destroy : function() {
-		this.erase();
-		this._doc = null;
-		this.cal = null;
-		this.id = null;
-	},
-
-	/**
-	 * Protected implementation to handle how UI elements are 
-	 * hidden/shown.
-	 *
-	 * @method _show
-	 * @protected
-	 */
-	_show : function(el, bShow) {
-		if (el) {
-			YAHOO.util.Dom.setStyle(el, "display", (bShow) ? "block" : "none");
-		}
-	},
-
-	/**
-	 * Returns the month value (index), from the month UI element
-	 * @protected
-	 * @method _getMonthFromUI
-	 * @return {Number} The month index, or 0 if a UI element for the month
-	 * is not found
-	 */
-	_getMonthFromUI : function() {
-		if (this.monthEl) {
-			return this.monthEl.selectedIndex;
-		} else {
-			return 0; // Default to Jan
-		}
-	},
-
-	/**
-	 * Returns the year value, from the Navitator's year UI element
-	 * @protected
-	 * @method _getYearFromUI
-	 * @return {Number} The year value set in the UI, if valid. null is returned if 
-	 * the UI does not contain a valid year value.
-	 */
-	_getYearFromUI : function() {
-		var NAV = YAHOO.widget.CalendarNavigator;
-
-		var yr = null;
-		if (this.yearEl) {
-			var value = this.yearEl.value;
-			value = value.replace(NAV.TRIM, "$1");
-
-			if (NAV.YR_PATTERN.test(value)) {
-				yr = parseInt(value, 10);
-			}
-		}
-		return yr;
-	},
-
-	/**
-	 * Updates the Navigator's year UI, based on the year value set on the Navigator object
-	 * @protected
-	 * @method _updateYearUI
-	 */
-	_updateYearUI : function() {
-		if (this.yearEl && this._year !== null) {
-			this.yearEl.value = this._year;
-		}
-	},
-
-	/**
-	 * Updates the Navigator's month UI, based on the month value set on the Navigator object
-	 * @protected
-	 * @method _updateMonthUI
-	 */
-	_updateMonthUI : function() {
-		if (this.monthEl) {
-			this.monthEl.selectedIndex = this._month;
-		}
-	},
-
-	/**
-	 * Sets up references to the first and last focusable element in the Navigator's UI
-	 * in terms of tab order (Naviagator's firstEl and lastEl properties). The references
-	 * are used to control modality by looping around from the first to the last control
-	 * and visa versa for tab/shift-tab navigation.
-	 * <p>
-	 * See <a href="#applyKeyListeners">applyKeyListeners</a>
-	 * </p>
-	 * @protected
-	 * @method _setFirstLastElements
-	 */
-	_setFirstLastElements : function() {
-		this.firstCtrl = this.monthEl;
-		this.lastCtrl = this.cancelEl;
-
-		// Special handling for MacOSX.
-		// - Safari 2.x can't focus on buttons
-		// - Gecko can't focus on select boxes or buttons
-		if (this.__isMac) {
-			if (YAHOO.env.ua.webkit && YAHOO.env.ua.webkit < 420){
-				this.firstCtrl = this.monthEl;
-				this.lastCtrl = this.yearEl;
-			}
-			if (YAHOO.env.ua.gecko) {
-				this.firstCtrl = this.yearEl;
-				this.lastCtrl = this.yearEl;
-			}
-		}
-	},
-
-	/**
-	 * Default Keyboard event handler to capture Enter 
-	 * on the Navigator's year control (yearEl)
-	 * 
-	 * @method _handleEnterKey
-	 * @protected
-	 * @param {Event} e The DOM event being handled
-	 */
-	_handleEnterKey : function(e) {
-		var KEYS = YAHOO.util.KeyListener.KEY;
-
-		if (YAHOO.util.Event.getCharCode(e) == KEYS.ENTER) {
-			YAHOO.util.Event.preventDefault(e);
-			this.submit();
-		}
-	},
-
-	/**
-	 * Default Keyboard event handler to capture up/down/pgup/pgdown
-	 * on the Navigator's year control (yearEl).
-	 * 
-	 * @method _handleDirectionKeys
-	 * @protected
-	 * @param {Event} e The DOM event being handled
-	 */
-	_handleDirectionKeys : function(e) {
-		var E = YAHOO.util.Event,
-			KEYS = YAHOO.util.KeyListener.KEY,
-			NAV = YAHOO.widget.CalendarNavigator;
-
-		var value = (this.yearEl.value) ? parseInt(this.yearEl.value, 10) : null;
-		if (isFinite(value)) {
-			var dir = false;
-			switch(E.getCharCode(e)) {
-				case KEYS.UP:
-					this.yearEl.value = value + NAV.YR_MINOR_INC;
-					dir = true;
-					break;
-				case KEYS.DOWN:
-					this.yearEl.value = Math.max(value - NAV.YR_MINOR_INC, 0);
-					dir = true;
-					break;
-				case KEYS.PAGE_UP:
-					this.yearEl.value = value + NAV.YR_MAJOR_INC;
-					dir = true;
-					break;
-				case KEYS.PAGE_DOWN:
-					this.yearEl.value = Math.max(value - NAV.YR_MAJOR_INC, 0);
-					dir = true;
-					break;
-				default:
-					break;
-			}
-			if (dir) {
-				E.preventDefault(e);
-				try {
-					this.yearEl.select();
-				} catch(err) {
-					// Ignore
-				}
-			}
-		}
-	},
-
-	/**
-	 * Default Keyboard event handler to capture Tab 
-	 * on the last control (lastCtrl) in the Navigator.
-	 * 
-	 * @method _handleTabKey
-	 * @protected
-	 * @param {Event} e The DOM event being handled
-	 */
-	_handleTabKey : function(e) {
-		var E = YAHOO.util.Event,
-			KEYS = YAHOO.util.KeyListener.KEY;
-
-		if (E.getCharCode(e) == KEYS.TAB && !e.shiftKey) {
-			try {
-				E.preventDefault(e);
-				this.firstCtrl.focus();
-			} catch (err) {
-				// Ignore - mainly for focus edge cases
-			}
-		}
-	},
-
-	/**
-	 * Default Keyboard event handler to capture Shift-Tab 
-	 * on the first control (firstCtrl) in the Navigator.
-	 * 
-	 * @method _handleShiftTabKey
-	 * @protected
-	 * @param {Event} e The DOM event being handled
-	 */
-	_handleShiftTabKey : function(e) {
-		var E = YAHOO.util.Event,
-			KEYS = YAHOO.util.KeyListener.KEY;
-
-		if (e.shiftKey && E.getCharCode(e) == KEYS.TAB) {
-			try {
-				E.preventDefault(e);
-				this.lastCtrl.focus();
-			} catch (err) {
-				// Ignore - mainly for focus edge cases
-			}
-		}
-	},
-
-	/**
-	 * Retrieve Navigator configuration values from 
-	 * the parent Calendar/CalendarGroup's config value.
-	 * <p>
-	 * If it has not been set in the user provided configuration, the method will 
-	 * return the default value of the configuration property, as set in _DEFAULT_CFG
-	 * </p>
-	 * @private
-	 * @method __getCfg
-	 * @param {String} Case sensitive property name.
-	 * @param {Boolean} true, if the property is a string property, false if not.
-	 * @return The value of the configuration property
-	 */
-	__getCfg : function(prop, bIsStr) {
-		var DEF_CFG = YAHOO.widget.CalendarNavigator._DEFAULT_CFG;
-		var cfg = this.cal.cfg.getProperty("navigator");
-
-		if (bIsStr) {
-			return (cfg !== true && cfg.strings && cfg.strings[prop]) ? cfg.strings[prop] : DEF_CFG.strings[prop];
-		} else {
-			return (cfg !== true && cfg[prop]) ? cfg[prop] : DEF_CFG[prop];
-		}
-	},
-
-	/**
-	 * Private flag, to identify MacOS
-	 * @private
-	 * @property __isMac
-	 */
-	__isMac : (navigator.userAgent.toLowerCase().indexOf("macintosh") != -1)
-
-};
-
-YAHOO.register("calendar", YAHOO.widget.Calendar, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/carousel/README b/eclipse.org-common/yui/2.6.0/build/carousel/README
deleted file mode 100644
index 5096af2..0000000
--- a/eclipse.org-common/yui/2.6.0/build/carousel/README
+++ /dev/null
@@ -1,5 +0,0 @@
-Carousel Release Notes
-
-*** version 2.6.0 ***
-
-* Initial release.
diff --git a/eclipse.org-common/yui/2.6.0/build/carousel/assets/ajax-loader.gif b/eclipse.org-common/yui/2.6.0/build/carousel/assets/ajax-loader.gif
deleted file mode 100644
index fe2cd23..0000000
--- a/eclipse.org-common/yui/2.6.0/build/carousel/assets/ajax-loader.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/carousel/assets/carousel-core.css b/eclipse.org-common/yui/2.6.0/build/carousel/assets/carousel-core.css
deleted file mode 100644
index bc1ff8e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/carousel/assets/carousel-core.css
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-carousel {
-    visibility: hidden;
-    overflow: hidden;
-    position: relative;
-}
-
-.yui-carousel.yui-carousel-visible {
-    visibility: visible;
-}
-
-.yui-carousel-content {
-    overflow: hidden;
-    position: relative;
-}
-
-.yui-carousel-element {
-    margin: 5px 0;
-    overflow: hidden;
-    padding: 0;
-    position: relative;
-    width: 32000px;
-    z-index: 1;
-}
-
-.yui-carousel-vertical .yui-carousel-element {
-    margin: 0 5px;
-}
-
-.yui-carousel-element li {
-    border: 1px solid #ccc;
-    float: left;
-    list-style: none;
-    margin: 1px;
-    overflow: hidden;
-    padding: 0;
-    text-align: center;
-    /* IE 6 & 7 fix - prevent DOM scroll for focussed elements. */
-   *float: none;
-   *display: inline-block;
-   *zoom: 1;
-   *display: inline;
-}
-
-.yui-carousel .yui-carousel-item-selected {
-    border: 1px dashed #000;
-    margin: 1px;
-}
-
-.yui-carousel-vertical {
-    height: 32000px;
-    margin: 0 5px;
-    width: auto;
-}
-
-.yui-carousel-vertical .yui-carousel-element li {
-    display: block;
-    float: none;
-}
-
-.yui-log .carousel {
-    background: #f2e886;
-}
-
-.yui-carousel-nav {
-    zoom: 1;
-}
-
-.yui-carousel-nav:after {
-    clear: both;
-    content: "";
-    display: block;
-}
-
-.yui-carousel-button-focus {
-    outline: 1px dotted #000;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/carousel/assets/skins/sam/carousel-skin.css b/eclipse.org-common/yui/2.6.0/build/carousel/assets/skins/sam/carousel-skin.css
deleted file mode 100644
index c095eec..0000000
--- a/eclipse.org-common/yui/2.6.0/build/carousel/assets/skins/sam/carousel-skin.css
+++ /dev/null
@@ -1,119 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-carousel,
-.yui-skin-sam .yui-carousel-vertical {
-    border: 1px solid #808080;
-}
-
-.yui-skin-sam .yui-carousel-nav {
-    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
-    padding: 3px;
-    text-align: right;
-}
-
-.yui-skin-sam .yui-carousel-button {
-    background: url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -600px;
-    float: right;
-    height: 19px;
-    margin: 5px;
-    overflow: hidden;
-    width: 40px;
-}
-
-.yui-skin-sam .yui-carousel-vertical .yui-carousel-button {
-    background-position: 0 -800px;
-}
-
-.yui-skin-sam .yui-carousel-button-disabled {
-    background-position: 0 -2000px;
-}
-
-.yui-skin-sam .yui-carousel-vertical .yui-carousel-button-disabled {
-    background-position: 0 -2100px;
-}
-
-.yui-skin-sam .yui-carousel-button input {
-    background-color: transparent;
-    border: 0;
-    cursor: pointer;
-    display: block;
-    height: 44px;
-    margin: -2px 0 0 -2px;
-    padding: 0 0 0 50px;
-}
-
-.yui-skin-sam span.yui-carousel-first-button {
-    background-position: 0px -550px;
-    margin-left: -100px;
-    margin-right: 50px;
-   *margin: 5px 5px 5px -90px;
-}
-
-.yui-skin-sam .yui-carousel-vertical span.yui-carousel-first-button {
-    background-position: 0px -750px;
-}
-
-.yui-skin-sam span.yui-carousel-first-button-disabled {
-    background-position: 0 -1950px;
-}
-
-.yui-skin-sam .yui-carousel-vertical span.yui-carousel-first-button-disabled {
-    background-position: 0 -2050px;
-}
-
-.yui-skin-sam .yui-carousel-nav ul {
-    float: right;
-    margin: 0;
-    margin-left: -220px;
-    margin-right: 100px;
-   *margin-left: -160px;
-   *margin-right: 0;
-    padding: 0;
-}
-
-.yui-skin-sam .yui-carousel-nav select {
-    position: relative;
-   *right: 50px;
-    top: 4px;
-}
-
-.yui-skin-sam .yui-carousel-vertical .yui-carousel-nav ul,
-.yui-skin-sam .yui-carousel-vertical .yui-carousel-nav select {
-    float: none;
-    margin: 0;
-   *zoom: 1;
-}
-
-.yui-skin-sam .yui-carousel-nav ul li {
-    float: left;
-    height: 19px;
-    list-style: none;
-}
-
-.yui-skin-sam .yui-carousel-nav ul:after {
-    clear: both;
-    content: "";
-    display: block;
-}
-
-.yui-skin-sam .yui-carousel-nav ul li a {
-    background: url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -650px;
-    display: block;
-    height: 9px;
-    margin: 10px 0 0 5px;
-    overflow: hidden;
-    width: 9px;
-}
-
-.yui-skin-sam .yui-carousel-nav ul li a em {
-    left: -10000px;
-    position: absolute;
-}
-
-.yui-skin-sam .yui-carousel-nav ul li.yui-carousel-nav-page-selected a {
-    background-position: 0 -700px;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/carousel/assets/skins/sam/carousel.css b/eclipse.org-common/yui/2.6.0/build/carousel/assets/skins/sam/carousel.css
deleted file mode 100644
index 30004b6..0000000
--- a/eclipse.org-common/yui/2.6.0/build/carousel/assets/skins/sam/carousel.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-carousel{visibility:hidden;overflow:hidden;position:relative;}.yui-carousel.yui-carousel-visible{visibility:visible;}.yui-carousel-content{overflow:hidden;position:relative;}.yui-carousel-element{margin:5px 0;overflow:hidden;padding:0;position:relative;width:32000px;z-index:1;}.yui-carousel-vertical .yui-carousel-element{margin:0 5px;}.yui-carousel-element li{border:1px solid #ccc;float:left;list-style:none;margin:1px;overflow:hidden;padding:0;text-align:center;*float:none;*display:inline-block;*zoom:1;*display:inline;}.yui-carousel .yui-carousel-item-selected{border:1px dashed #000;margin:1px;}.yui-carousel-vertical{height:32000px;margin:0 5px;width:auto;}.yui-carousel-vertical .yui-carousel-element li{display:block;float:none;}.yui-log .carousel{background:#f2e886;}.yui-carousel-nav{zoom:1;}.yui-carousel-nav:after{clear:both;content:"";display:block;}.yui-carousel-button-focus{outline:1px dotted #000;}.yui-skin-sam .yui-carousel,.yui-skin-sam .yui-carousel-vertical{border:1px solid #808080;}.yui-skin-sam .yui-carousel-nav{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;padding:3px;text-align:right;}.yui-skin-sam .yui-carousel-button{background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -600px;float:right;height:19px;margin:5px;overflow:hidden;width:40px;}.yui-skin-sam .yui-carousel-vertical .yui-carousel-button{background-position:0 -800px;}.yui-skin-sam .yui-carousel-button-disabled{background-position:0 -2000px;}.yui-skin-sam .yui-carousel-vertical .yui-carousel-button-disabled{background-position:0 -2100px;}.yui-skin-sam .yui-carousel-button input{background-color:transparent;border:0;cursor:pointer;display:block;height:44px;margin:-2px 0 0 -2px;padding:0 0 0 50px;}.yui-skin-sam span.yui-carousel-first-button{background-position:0px -550px;margin-left:-100px;margin-right:50px;*margin:5px 5px 5px -90px;}.yui-skin-sam .yui-carousel-vertical span.yui-carousel-first-button{background-position:0px -750px;}.yui-skin-sam span.yui-carousel-first-button-disabled{background-position:0 -1950px;}.yui-skin-sam .yui-carousel-vertical span.yui-carousel-first-button-disabled{background-position:0 -2050px;}.yui-skin-sam .yui-carousel-nav ul{float:right;margin:0;margin-left:-220px;margin-right:100px;*margin-left:-160px;*margin-right:0;padding:0;}.yui-skin-sam .yui-carousel-nav select{position:relative;*right:50px;top:4px;}.yui-skin-sam .yui-carousel-vertical .yui-carousel-nav ul,.yui-skin-sam .yui-carousel-vertical .yui-carousel-nav select{float:none;margin:0;*zoom:1;}.yui-skin-sam .yui-carousel-nav ul li{float:left;height:19px;list-style:none;}.yui-skin-sam .yui-carousel-nav ul:after{clear:both;content:"";display:block;}.yui-skin-sam .yui-carousel-nav ul li a{background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -650px;display:block;height:9px;margin:10px 0 0 5px;overflow:hidden;width:9px;}.yui-skin-sam .yui-carousel-nav ul li a em{left:-10000px;position:absolute;}.yui-skin-sam .yui-carousel-nav ul li.yui-carousel-nav-page-selected a{background-position:0 -700px;}
diff --git a/eclipse.org-common/yui/2.6.0/build/carousel/carousel-beta-debug.js b/eclipse.org-common/yui/2.6.0/build/carousel/carousel-beta-debug.js
deleted file mode 100644
index 4113b94..0000000
--- a/eclipse.org-common/yui/2.6.0/build/carousel/carousel-beta-debug.js
+++ /dev/null
@@ -1,2945 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The Carousel module provides a widget for browsing among a set of like
- * objects represented pictorially.
- *
- * @module carousel
- * @requires yahoo, dom, event, element
- * @optional animation
- * @namespace YAHOO.widget
- * @title Carousel Widget
- */
-(function () {
-
-    var WidgetName;             // forward declaration
-
-    /**
-     * The Carousel widget.
-     *
-     * @class Carousel
-     * @extends YAHOO.util.Element
-     * @constructor
-     * @param el {HTMLElement | String} The HTML element that represents the
-     * the container that houses the Carousel.
-     * @param cfg {Object} (optional) The configuration values
-     */
-    YAHOO.widget.Carousel = function (el, cfg) {
-        YAHOO.log("Component creation", WidgetName);
-
-        this._navBtns = {};
-        this._pages = {};
-
-        YAHOO.widget.Carousel.superclass.constructor.call(this, el, cfg);
-    };
-
-    /*
-     * Private variables of the Carousel component
-     */
-
-    /* Some abbreviations to avoid lengthy typing and lookups. */
-    var Carousel    = YAHOO.widget.Carousel,
-        Dom         = YAHOO.util.Dom,
-        Event       = YAHOO.util.Event,
-        JS          = YAHOO.lang;
-
-    /**
-     * The widget name.
-     * @private
-     * @static
-     */
-    WidgetName = "Carousel";
-
-    /**
-     * The internal table of Carousel instances.
-     * @private
-     * @static
-     */
-    var instances = {};
-
-    /*
-     * Custom events of the Carousel component
-     */
-
-    /**
-     * @event afterScroll
-     * @description Fires when the Carousel has scrolled to the previous or
-     * next page.  Passes back the index of the first and last visible items in
-     * the Carousel.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var afterScrollEvent = "afterScroll";
-
-    /**
-     * @event beforeHide
-     * @description Fires before the Carousel is hidden.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var beforeHideEvent = "beforeHide";
-
-    /**
-     * @event beforePageChange
-     * @description Fires when the Carousel is about to scroll to the previous
-     * or next page.  Passes back the page number of the current page.  Note
-     * that the first page number is zero.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var beforePageChangeEvent = "beforePageChange";
-
-    /**
-     * @event beforeScroll
-     * @description Fires when the Carousel is about to scroll to the previous
-     * or next page.  Passes back the index of the first and last visible items
-     * in the Carousel and the direction (backward/forward) of the scroll.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var beforeScrollEvent = "beforeScroll";
-
-    /**
-     * @event beforeShow
-     * @description Fires when the Carousel is about to be shown.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var beforeShowEvent = "beforeShow";
-
-    /**
-     * @event blur
-     * @description Fires when the Carousel loses focus.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var blurEvent = "blur";
-
-    /**
-     * @event focus
-     * @description Fires when the Carousel gains focus.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var focusEvent = "focus";
-
-    /**
-     * @event hide
-     * @description Fires when the Carousel is hidden.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var hideEvent = "hide";
-
-    /**
-     * @event itemAdded
-     * @description Fires when an item has been added to the Carousel.  Passes
-     * back the content of the item that would be added, the index at which the
-     * item would be added, and the event itself.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var itemAddedEvent = "itemAdded";
-
-    /**
-     * @event itemRemoved
-     * @description Fires when an item has been removed from the Carousel.
-     * Passes back the content of the item that would be removed, the index
-     * from which the item would be removed, and the event itself.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var itemRemovedEvent = "itemRemoved";
-
-    /**
-     * @event itemSelected
-     * @description Fires when an item has been selected in the Carousel.
-     * Passes back the index of the selected item in the Carousel.  Note, that
-     * the index begins from zero.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var itemSelectedEvent = "itemSelected";
-
-    /**
-     * @event loadItems
-     * @description Fires when the Carousel needs more items to be loaded for
-     * displaying them.  Passes back the first and last visible items in the
-     * Carousel, and the number of items needed to be loaded.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var loadItemsEvent = "loadItems";
-
-    /**
-     * @event navigationStateChange
-     * @description Fires when the state of either one of the navigation
-     * buttons are changed from enabled to disabled or vice versa.  Passes back
-     * the state (true/false) of the previous and next buttons.  The value true
-     * signifies the button is enabled, false signifies disabled.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var navigationStateChangeEvent = "navigationStateChange";
-
-    /**
-     * @event pageChange
-     * @description Fires after the Carousel has scrolled to the previous or
-     * next page.  Passes back the page number of the current page.  Note
-     * that the first page number is zero.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var pageChangeEvent = "pageChange";
-
-    /**
-     * @event render
-     * @description Fires when the Carousel is rendered.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var renderEvent = "render";
-
-    /**
-     * @event show
-     * @description Fires when the Carousel is shown.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var showEvent = "show";
-
-    /**
-     * @event startAutoPlay
-     * @description Fires when the auto play has started in the Carousel.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var startAutoPlayEvent = "startAutoPlay";
-
-    /**
-     * @event stopAutoPlay
-     * @description Fires when the auto play has been stopped in the Carousel.
-     * See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var stopAutoPlayEvent = "stopAutoPlay";
-
-    /*
-     * Private helper functions used by the Carousel component
-     */
-
-    /**
-     * Automatically scroll the contents of the Carousel.
-     * @method autoScroll
-     * @private
-     */
-    function autoScroll() {
-        var currIndex = this._firstItem,
-            index;
-
-        if (currIndex >= this.get("numItems") - 1) {
-            if (this.get("isCircular")) {
-                index = 0;
-            } else {
-                this.stopAutoPlay();
-            }
-        } else {
-            index = currIndex + this.get("numVisible");
-        }
-        this.scrollTo.call(this, index);
-    }
-
-    /**
-     * Create an element, set its class name and optionally install the element
-     * to its parent.
-     * @method createElement
-     * @param el {String} The element to be created
-     * @param attrs {Object} Configuration of parent, class and id attributes.
-     * If the content is specified, it is inserted after creation of the
-     * element. The content can also be an HTML element in which case it would
-     * be appended as a child node of the created element.
-     * @private
-     */
-    function createElement(el, attrs) {
-        var newEl = document.createElement(el);
-
-        attrs = attrs || {};
-        if (attrs.className) {
-            Dom.addClass(newEl, attrs.className);
-        }
-
-        if (attrs.parent) {
-            attrs.parent.appendChild(newEl);
-        }
-
-        if (attrs.id) {
-            newEl.setAttribute("id", attrs.id);
-        }
-
-        if (attrs.content) {
-            if (attrs.content.nodeName) {
-                newEl.appendChild(attrs.content);
-            } else {
-                newEl.innerHTML = attrs.content;
-            }
-        }
-
-        return newEl;
-    }
-
-    /**
-     * Get the computed style of an element.
-     *
-     * @method getStyle
-     * @param el {HTMLElement} The element for which the style needs to be
-     * returned.
-     * @param style {String} The style attribute
-     * @param type {String} "int", "float", etc. (defaults to int)
-     * @private
-     */
-    function getStyle(el, style, type) {
-        var value;
-
-        function getStyleIntVal(el, style) {
-            var val;
-
-            val = parseInt(Dom.getStyle(el, style), 10);
-            return JS.isNumber(val) ? val : 0;
-        }
-
-        function getStyleFloatVal(el, style) {
-            var val;
-
-            val = parseFloat(Dom.getStyle(el, style));
-            return JS.isNumber(val) ? val : 0;
-        }
-
-        if (typeof type == "undefined") {
-            type = "int";
-        }
-
-        switch (style) {
-        case "height":
-            value = el.offsetHeight;
-            if (value > 0) {
-                value += getStyleIntVal(el, "marginTop")        +
-                        getStyleIntVal(el, "marginBottom");
-            } else {
-                value = getStyleFloatVal(el, "height")          +
-                        getStyleIntVal(el, "marginTop")         +
-                        getStyleIntVal(el, "marginBottom")      +
-                        getStyleIntVal(el, "borderTopWidth")    +
-                        getStyleIntVal(el, "borderBottomWidth") +
-                        getStyleIntVal(el, "paddingTop")        +
-                        getStyleIntVal(el, "paddingBottom");
-            }
-            break;
-        case "width":
-            value = el.offsetWidth;
-            if (value > 0) {
-                value += getStyleIntVal(el, "marginLeft")       +
-                        getStyleIntVal(el, "marginRight");
-            } else {
-                value = getStyleFloatVal(el, "width")           +
-                        getStyleIntVal(el, "marginLeft")        +
-                        getStyleIntVal(el, "marginRight")       +
-                        getStyleIntVal(el, "borderLeftWidth")   +
-                        getStyleIntVal(el, "borderRightWidth")  +
-                        getStyleIntVal(el, "paddingLeft")       +
-                        getStyleIntVal(el, "paddingRight");
-            }
-            break;
-        default:
-            if (type == "int") {
-                value = getStyleIntVal(el, style);
-                // XXX: Safari calculates incorrect marginRight for an element
-                // which has its parent element style set to overflow: hidden
-                // https://bugs.webkit.org/show_bug.cgi?id=13343
-                // Let us assume marginLeft == marginRight
-                if (style == "marginRight" && YAHOO.env.ua.webkit) {
-                    value = getStyleIntVal(el, "marginLeft");
-                }
-            } else if (type == "float") {
-                value = getStyleFloatVal(el, style);
-            } else {
-                value = Dom.getStyle(el, style);
-            }
-            break;
-        }
-
-        return value;
-    }
-
-    /**
-     * Compute and return the height or width of a single Carousel item
-     * depending upon the orientation.
-     *
-     * @method getCarouselItemSize
-     * @param which {String} "height" or "width" to be returned.  If this is
-     * passed explicitly, the calculated size is not cached.
-     * @private
-     */
-    function getCarouselItemSize(which) {
-        var child,
-            size     = 0,
-            vertical = false;
-
-        if (this._itemsTable.numItems === 0) {
-            return 0;
-        }
-
-        if (typeof which == "undefined") {
-            if (this._itemsTable.size > 0) {
-                return this._itemsTable.size;
-            }
-        }
-
-        if (JS.isUndefined(this._itemsTable.items[0])) {
-            return 0;
-        }
-
-        child = Dom.get(this._itemsTable.items[0].id);
-
-        if (typeof which == "undefined") {
-            vertical = this.get("isVertical");
-        } else {
-            vertical = which == "height";
-        }
-
-        if (vertical) {
-            size = getStyle(child, "height");
-        } else {
-            size = getStyle(child, "width");
-        }
-
-        if (typeof which == "undefined") {
-            this._itemsTable.size = size; // save the size for later
-        }
-
-        return size;
-    }
-
-    /**
-     * Return the scrolling offset size given the number of elements to
-     * scroll.
-     *
-     * @method getScrollOffset
-     * @param delta {Number} The delta number of elements to scroll by.
-     * @private
-     */
-    function getScrollOffset(delta) {
-        var itemSize = 0,
-            size     = 0;
-
-        itemSize = getCarouselItemSize.call(this);
-        size     = itemSize * delta;
-
-        // XXX: really, when the orientation is vertical, the scrolling
-        // is not exactly the number of elements into element size.
-        if (this.get("isVertical")) {
-            size -= delta;
-        }
-
-        return size;
-    }
-
-    /**
-     * The load the required set of items that are needed for display.
-     *
-     * @method loadItems
-     * @private
-     */
-    function loadItems() {
-        var first      = this.get("firstVisible"),
-            last       = 0,
-            numItems   = this.get("numItems"),
-            numVisible = this.get("numVisible"),
-            reveal     = this.get("revealAmount");
-
-        last = first + numVisible - 1 + (reveal ? 1 : 0);
-        last = last > numItems - 1 ? numItems - 1 : last;
-
-        if (!this.getItem(first) || !this.getItem(last)) {
-            this.fireEvent(loadItemsEvent, {
-                    ev: loadItemsEvent,
-                    first: first, last: last,
-                    num: last - first
-            });
-        }
-    }
-
-    /**
-     * Scroll the Carousel by a page backward.
-     *
-     * @method scrollPageBackward
-     * @param {Event} ev The event object
-     * @param {Object} obj The context object
-     * @private
-     */
-    function scrollPageBackward(ev, obj) {
-        obj.scrollPageBackward();
-        Event.preventDefault(ev);
-    }
-
-    /**
-     * Scroll the Carousel by a page forward.
-     *
-     * @method scrollPageForward
-     * @param {Event} ev The event object
-     * @param {Object} obj The context object
-     * @private
-     */
-    function scrollPageForward(ev, obj) {
-        obj.scrollPageForward();
-        Event.preventDefault(ev);
-    }
-
-    /**
-     * Set the selected item.
-     *
-     * @method setItemSelection
-     * @param {Number} newposition The index of the new position
-     * @param {Number} oldposition The index of the previous position
-     * @private
-     */
-     function setItemSelection(newposition, oldposition) {
-        var backwards,
-            cssClass   = this.CLASSES,
-            el,
-            firstItem  = this._firstItem,
-            isCircular = this.get("isCircular"),
-            numItems   = this.get("numItems"),
-            numVisible = this.get("numVisible"),
-            position   = oldposition,
-            sentinel   = firstItem + numVisible - 1;
-
-        backwards = numVisible > 1 && !isCircular && position > newposition;
-
-        if (position >= 0 && position < numItems) {
-            if (!JS.isUndefined(this._itemsTable.items[position])) {
-                el = Dom.get(this._itemsTable.items[position].id);
-                if (el) {
-                    Dom.removeClass(el, cssClass.SELECTED_ITEM);
-                }
-            }
-        }
-
-        if (JS.isNumber(newposition)) {
-            newposition = parseInt(newposition, 10);
-            newposition = JS.isNumber(newposition) ? newposition : 0;
-        } else {
-            newposition = firstItem;
-        }
-
-        if (JS.isUndefined(this._itemsTable.items[newposition])) {
-            this.scrollTo(newposition); // still loading the item
-        }
-
-        if (!JS.isUndefined(this._itemsTable.items[newposition])) {
-            el = Dom.get(this._itemsTable.items[newposition].id);
-            if (el) {
-                Dom.addClass(el, cssClass.SELECTED_ITEM);
-            }
-        }
-
-        if (newposition < firstItem || newposition > sentinel) {
-            // out of focus
-            if (backwards) {
-                this.scrollTo(firstItem - numVisible, true);
-            } else {
-                this.scrollTo(newposition);
-            }
-        }
-    }
-
-    /**
-     * Fire custom events for enabling/disabling navigation elements.
-     *
-     * @method syncNavigation
-     * @private
-     */
-    function syncNavigation() {
-        var attach   = false,
-            cssClass = this.CLASSES,
-            i,
-            navigation,
-            sentinel;
-
-        navigation = this.get("navigation");
-        sentinel   = this._firstItem + this.get("numVisible");
-
-        if (navigation.prev) {
-            if (this._firstItem === 0) {
-                if (!this.get("isCircular")) {
-                    Event.removeListener(navigation.prev, "click",
-                            scrollPageBackward);
-                    Dom.addClass(navigation.prev, cssClass.FIRST_NAV_DISABLED);
-                    for (i = 0; i < this._navBtns.prev.length; i++) {
-                        this._navBtns.prev[i].setAttribute("disabled", "true");
-                    }
-                    this._prevEnabled = false;
-                } else {
-                    attach = !this._prevEnabled;
-                }
-            } else {
-                attach = !this._prevEnabled;
-            }
-
-            if (attach) {
-                Event.on(navigation.prev, "click", scrollPageBackward, this);
-                Dom.removeClass(navigation.prev, cssClass.FIRST_NAV_DISABLED);
-                for (i = 0; i < this._navBtns.prev.length; i++) {
-                    this._navBtns.prev[i].removeAttribute("disabled");
-                }
-                this._prevEnabled = true;
-            }
-        }
-
-        attach = false;
-        if (navigation.next) {
-            if (sentinel >= this.get("numItems")) {
-                if (!this.get("isCircular")) {
-                    Event.removeListener(navigation.next, "click",
-                            scrollPageForward);
-                    Dom.addClass(navigation.next, cssClass.DISABLED);
-                    for (i = 0; i < this._navBtns.next.length; i++) {
-                        this._navBtns.next[i].setAttribute("disabled", "true");
-                    }
-                    this._nextEnabled = false;
-                } else {
-                    attach = !this._nextEnabled;
-                }
-            } else {
-                attach = !this._nextEnabled;
-            }
-
-            if (attach) {
-                Event.on(navigation.next, "click", scrollPageForward, this);
-                Dom.removeClass(navigation.next, cssClass.DISABLED);
-                for (i = 0; i < this._navBtns.next.length; i++) {
-                    this._navBtns.next[i].removeAttribute("disabled");
-                }
-                this._nextEnabled = true;
-            }
-        }
-
-        this.fireEvent(navigationStateChangeEvent,
-                { next: this._nextEnabled, prev: this._prevEnabled });
-    }
-
-    /**
-     * Fire custom events for synchronizing the DOM.
-     *
-     * @method syncUI
-     * @param {Object} o The item that needs to be added or removed
-     * @private
-     */
-    function syncUI(o) {
-        var el, i, item, num, oel, pos, sibling;
-
-        if (!JS.isObject(o)) {
-            return;
-        }
-
-        switch (o.ev) {
-        case itemAddedEvent:
-            pos  = JS.isUndefined(o.pos) ? this._itemsTable.numItems-1 : o.pos;
-            if (!JS.isUndefined(this._itemsTable.items[pos])) {
-                item = this._itemsTable.items[pos];
-                if (item && !JS.isUndefined(item.id)) {
-                    oel  = Dom.get(item.id);
-                }
-            }
-            if (!oel) {
-                el = this._createCarouselItem({
-                        className : item.className,
-                        content   : item.item,
-                        id        : item.id
-                });
-                if (JS.isUndefined(o.pos)) {
-                    if (!JS.isUndefined(this._itemsTable.loading[pos])) {
-                        oel = this._itemsTable.loading[pos];
-                    }
-                    if (oel) {
-                        this._carouselEl.replaceChild(el, oel);
-                    } else {
-                        this._carouselEl.appendChild(el);
-                    }
-                } else {
-                    if (!JS.isUndefined(this._itemsTable.items[o.pos + 1])) {
-                        sibling = Dom.get(this._itemsTable.items[o.pos + 1].id);
-                    }
-                    if (sibling) {
-                        this._carouselEl.insertBefore(el, sibling);
-                    } else {
-                        YAHOO.log("Unable to find sibling","error",WidgetName);
-                    }
-                }
-            } else {
-                if (JS.isUndefined(o.pos)) {
-                    if (!Dom.isAncestor(this._carouselEl, oel)) {
-                        this._carouselEl.appendChild(oel);
-                    }
-                } else {
-                    if (!Dom.isAncestor(this._carouselEl, oel)) {
-                        if (!JS.isUndefined(this._itemsTable.items[o.pos+1])) {
-                            this._carouselEl.insertBefore(oel, Dom.get(
-                                    this._itemsTable.items[o.pos+1].id));
-                        }
-                    }
-                }
-            }
-
-            if (this._recomputeSize) {
-                this._setClipContainerSize();
-            }
-            break;
-        case itemRemovedEvent:
-            num  = this.get("numItems");
-            item = o.item;
-            pos  = o.pos;
-
-            if (item && (el = Dom.get(item.id))) {
-                if (el && Dom.isAncestor(this._carouselEl, el)) {
-                    Event.purgeElement(el, true);
-                    this._carouselEl.removeChild(el);
-                }
-
-                if (this.get("selectedItem") == pos) {
-                    pos = pos >= num ? num - 1 : pos;
-                    this.set("selectedItem", pos);
-                }
-            } else {
-                YAHOO.log("Unable to find item", "warn", WidgetName);
-            }
-            break;
-        case loadItemsEvent:
-            for (i = o.first; i <= o.last; i++) {
-                el = this._createCarouselItem({
-                        content : this.CONFIG.ITEM_LOADING,
-                        id      : Dom.generateId()
-                });
-                if (el) {
-                    if (!JS.isUndefined(this._itemsTable.items[o.last + 1])) {
-                        sibling = Dom.get(this._itemsTable.items[o.last+1].id);
-                        if (sibling) {
-                            this._carouselEl.insertBefore(el, sibling);
-                        } else {
-                            YAHOO.log("Unable to find sibling", "error",
-                                    WidgetName);
-                        }
-                    } else {
-                        this._carouselEl.appendChild(el);
-                    }
-                }
-                this._itemsTable.loading[i] = el;
-            }
-            break;
-        }
-    }
-
-    /*
-     * Static members and methods of the Carousel component
-     */
-
-    /**
-     * Return the appropriate Carousel object based on the id associated with
-     * the Carousel element or false if none match.
-     * @method getById
-     * @public
-     * @static
-     */
-    Carousel.getById = function (id) {
-        return instances[id] ? instances[id] : false;
-    };
-
-    YAHOO.extend(Carousel, YAHOO.util.Element, {
-
-        /*
-         * Internal variables used within the Carousel component
-         */
-
-        /**
-         * The Carousel element.
-         *
-         * @property _carouselEl
-         * @private
-         */
-        _carouselEl: null,
-
-        /**
-         * The Carousel clipping container element.
-         *
-         * @property _clipEl
-         * @private
-         */
-        _clipEl: null,
-
-        /**
-         * The current first index of the Carousel.
-         *
-         * @property _firstItem
-         * @private
-         */
-        _firstItem: 0,
-
-        /**
-         * Is the animation still in progress?
-         *
-         * @property _isAnimationInProgress
-         * @private
-         */
-        _isAnimationInProgress: false,
-
-        /**
-         * The table of items in the Carousel.
-         * The numItems is the number of items in the Carousel, items being the
-         * array of items in the Carousel.  The size is the size of a single
-         * item in the Carousel.  It is cached here for efficiency (to avoid
-         * computing the size multiple times).
-         *
-         * @property _itemsTable
-         * @private
-         */
-        _itemsTable: null,
-
-        /**
-         * The Carousel navigation buttons.
-         *
-         * @property _navBtns
-         * @private
-         */
-        _navBtns: null,
-
-        /**
-         * The Carousel navigation.
-         *
-         * @property _navEl
-         * @private
-         */
-        _navEl: null,
-
-        /**
-         * Status of the next navigation item.
-         *
-         * @property _nextEnabled
-         * @private
-         */
-        _nextEnabled: true,
-
-        /**
-         * The Carousel pages structure.
-         * This is an object of the total number of pages and the current page.
-         *
-         * @property _pages
-         * @private
-         */
-        _pages: null,
-
-        /**
-         * Status of the previous navigation item.
-         *
-         * @property _prevEnabled
-         * @private
-         */
-        _prevEnabled: true,
-
-        /**
-         * Whether the Carousel size needs to be recomputed or not?
-         *
-         * @property _recomputeSize
-         * @private
-         */
-        _recomputeSize: true,
-
-        /*
-         * CSS classes used by the Carousel component
-         */
-
-        CLASSES: {
-
-            /**
-             * The class name of the Carousel navigation buttons.
-             *
-             * @property BUTTON
-             * @default "yui-carousel-button"
-             */
-            BUTTON: "yui-carousel-button",
-
-            /**
-             * The class name of the Carousel element.
-             *
-             * @property CAROUSEL
-             * @default "yui-carousel"
-             */
-            CAROUSEL: "yui-carousel",
-
-            /**
-             * The class name of the container of the items in the Carousel.
-             *
-             * @property CAROUSEL_EL
-             * @default "yui-carousel-element"
-             */
-            CAROUSEL_EL: "yui-carousel-element",
-
-            /**
-             * The class name of the Carousel's container element.
-             *
-             * @property CONTAINER
-             * @default "yui-carousel-container"
-             */
-            CONTAINER: "yui-carousel-container",
-
-            /**
-             * The class name of the Carousel's container element.
-             *
-             * @property CONTENT
-             * @default "yui-carousel-content"
-             */
-            CONTENT: "yui-carousel-content",
-
-            /**
-             * The class name of a disabled navigation button.
-             *
-             * @property DISABLED
-             * @default "yui-carousel-button-disabled"
-             */
-            DISABLED: "yui-carousel-button-disabled",
-
-            /**
-             * The class name of the first Carousel navigation button.
-             *
-             * @property FIRST_NAV
-             * @default " yui-carousel-first-button"
-             */
-            FIRST_NAV: " yui-carousel-first-button",
-
-            /**
-             * The class name of a first disabled navigation button.
-             *
-             * @property FIRST_NAV_DISABLED
-             * @default "yui-carousel-first-button-disabled"
-             */
-            FIRST_NAV_DISABLED: "yui-carousel-first-button-disabled",
-
-            /**
-             * The class name of a first page element.
-             *
-             * @property FIRST_PAGE
-             * @default "yui-carousel-nav-first-page"
-             */
-            FIRST_PAGE: "yui-carousel-nav-first-page",
-
-            /**
-             * The class name of the Carousel navigation button that has focus.
-             *
-             * @property FOCUSSED_BUTTON
-             * @default "yui-carousel-button-focus"
-             */
-            FOCUSSED_BUTTON: "yui-carousel-button-focus",
-
-            /**
-             * The class name of a horizontally oriented Carousel.
-             *
-             * @property HORIZONTAL
-             * @default "yui-carousel-horizontal"
-             */
-            HORIZONTAL: "yui-carousel-horizontal",
-
-            /**
-             * The navigation element container class name.
-             *
-             * @property NAVIGATION
-             * @default "yui-carousel-nav"
-             */
-            NAVIGATION: "yui-carousel-nav",
-
-            /**
-             * The class name of the next navigation link. This variable is not
-             * only used for styling, but also for identifying the link within
-             * the Carousel container.
-             *
-             * @property NEXT_PAGE
-             * @default "yui-carousel-next"
-             */
-            NEXT_PAGE: "yui-carousel-next",
-
-            /**
-             * The class name for the navigation container for prev/next.
-             *
-             * @property NAV_CONTAINER
-             * @default "yui-carousel-buttons"
-             */
-            NAV_CONTAINER: "yui-carousel-buttons",
-
-            /**
-             * The class name of the previous navigation link. This variable
-             * is not only used for styling, but also for identifying the link
-             * within the Carousel container.
-             *
-             * @property PREV_PAGE
-             * @default "yui-carousel-prev"
-             */
-            PREV_PAGE: "yui-carousel-prev",
-
-            /**
-             * The class name of the selected item.
-             *
-             * @property SELECTED_ITEM
-             * @default "yui-carousel-item-selected"
-             */
-            SELECTED_ITEM: "yui-carousel-item-selected",
-
-            /**
-             * The class name of the selected paging navigation.
-             *
-             * @property SELECTED_NAV
-             * @default "yui-carousel-nav-page-selected"
-             */
-            SELECTED_NAV: "yui-carousel-nav-page-selected",
-
-            /**
-             * The class name of a vertically oriented Carousel.
-             *
-             * @property VERTICAL
-             * @default "yui-carousel-vertical"
-             */
-            VERTICAL: "yui-carousel-vertical",
-
-            /**
-             * The class name of the (vertical) Carousel's container element.
-             *
-             * @property VERTICAL_CONTAINER
-             * @default "yui-carousel-vertical-container"
-             */
-            VERTICAL_CONTAINER: "yui-carousel-vertical-container",
-
-            /**
-             * The class name of a visible Carousel.
-             *
-             * @property VISIBLE
-             * @default "yui-carousel-visible"
-             */
-            VISIBLE: "yui-carousel-visible"
-
-        },
-
-        /*
-         * Configuration attributes for configuring the Carousel component
-         */
-
-        CONFIG: {
-
-            /**
-             * The offset of the first visible item in the Carousel.
-             *
-             * @property FIRST_VISIBLE
-             * @default 0
-             */
-            FIRST_VISIBLE: 0,
-
-            /**
-             * The element to be used as the progress indicator when the item
-             * is still being loaded.
-             *
-             * @property ITEM_LOADING
-             * @default The progress indicator (spinner) image
-             */
-            ITEM_LOADING: "<img " +
-                    "src=\"../../build/carousel/assets/ajax-loader.gif\" " +
-                    "alt=\"Loading\" " +
-                    "style=\"margin-top:-32px;position:relative;top:50%;\">",
-
-            /**
-             * The tag name of the Carousel item.
-             *
-             * @property ITEM_TAG_NAME
-             * @default "LI"
-             */
-            ITEM_TAG_NAME: "LI",
-
-            /**
-             * The maximum number of pager buttons allowed beyond which the UI
-             * of the pager would be a drop-down of pages instead of buttons.
-             *
-             * @property MAX_PAGER_BUTTONS
-             * @default 5
-             */
-            MAX_PAGER_BUTTONS: 5,
-
-            /**
-             * The minimum width of the Carousel container to support the
-             * navigation buttons.
-             *
-             * @property MIN_WIDTH
-             * @default 99
-             */
-            MIN_WIDTH: 99,
-
-            /**
-             * The number of visible items in the Carousel.
-             *
-             * @property NUM_VISIBLE
-             * @default 3
-             */
-            NUM_VISIBLE: 3,
-
-            /**
-             * The tag name of the Carousel.
-             *
-             * @property TAG_NAME
-             * @default "OL"
-             */
-            TAG_NAME: "OL"
-
-        },
-
-        /*
-         * Internationalizable strings in the Carousel component
-         */
-
-        STRINGS: {
-
-            /**
-             * The next navigation button name/text.
-             *
-             * @property NEXT_BUTTON_TEXT
-             * @default "Next Page"
-             */
-            NEXT_BUTTON_TEXT: "Next Page",
-
-            /**
-             * The prefix text for the pager in case the UI is a drop-down.
-             *
-             * @property PAGER_PREFIX_TEXT
-             * @default "Go to page "
-             */
-            PAGER_PREFIX_TEXT: "Go to page ",
-
-            /**
-             * The previous navigation button name/text.
-             *
-             * @property PREVIOUS_BUTTON_TEXT
-             * @default "Previous Page"
-             */
-            PREVIOUS_BUTTON_TEXT: "Previous Page"
-
-        },
-
-        /*
-         * Public methods of the Carousel component
-         */
-
-        /**
-         * Insert or append an item to the Carousel.
-         *
-         * @method addItem
-         * @public
-         * @param item {String | Object | HTMLElement} The item to be appended
-         * to the Carousel. If the parameter is a string, it is assumed to be
-         * the content of the newly created item. If the parameter is an
-         * object, it is assumed to supply the content and an optional class
-         * and an optional id of the newly created item.
-         * @param index {Number} optional The position to where in the list
-         * (starts from zero).
-         * @return {Boolean} Return true on success, false otherwise
-         */
-        addItem: function (item, index) {
-            var className, content, el, elId, numItems = this.get("numItems");
-
-            if (!item) {
-                return false;
-            }
-
-            if (JS.isString(item) || item.nodeName) {
-                content = item.nodeName ? item.innerHTML : item;
-            } else if (JS.isObject(item)) {
-                content = item.content;
-            } else {
-                YAHOO.log("Invalid argument to addItem", "error", WidgetName);
-                return false;
-            }
-
-            className = item.className || "";
-            elId      = item.id ? item.id : Dom.generateId();
-
-            if (JS.isUndefined(index)) {
-                this._itemsTable.items.push({
-                        item      : content,
-                        className : className,
-                        id        : elId
-                });
-            } else {
-                if (index < 0 || index >= numItems) {
-                    YAHOO.log("Index out of bounds", "error", WidgetName);
-                    return false;
-                }
-                this._itemsTable.items.splice(index, 0, {
-                        item      : content,
-                        className : className,
-                        id        : elId
-                });
-            }
-            this._itemsTable.numItems++;
-
-            if (numItems < this._itemsTable.items.length) {
-                this.set("numItems", this._itemsTable.items.length);
-            }
-
-            this.fireEvent(itemAddedEvent, { pos: index, ev: itemAddedEvent });
-
-            return true;
-        },
-
-        /**
-         * Insert or append multiple items to the Carousel.
-         *
-         * @method addItems
-         * @public
-         * @param items {Array} An array of items to be added with each item
-         * representing an item, index pair [{item, index}, ...]
-         * @return {Boolean} Return true on success, false otherwise
-         */
-        addItems: function (items) {
-            var i, n, rv = true;
-
-            if (!JS.isArray(items)) {
-                return false;
-            }
-
-            for (i = 0, n = items.length; i < n; i++) {
-                if (this.addItem(items[i][0], items[i][1]) === false) {
-                    rv = false;
-                }
-            }
-
-            return rv;
-        },
-
-        /**
-         * Remove focus from the Carousel.
-         *
-         * @method blur
-         * @public
-         */
-        blur: function () {
-            this._carouselEl.blur();
-            this.fireEvent(blurEvent);
-        },
-
-        /**
-         * Clears the items from Carousel.
-         *
-         * @method clearItems
-         * public
-         */
-        clearItems: function () {
-            var n = this.get("numItems");
-
-            while (n > 0) {
-                this.removeItem(0);
-                n--;
-            }
-        },
-
-        /**
-         * Set focus on the Carousel.
-         *
-         * @method focus
-         * @public
-         */
-        focus: function () {
-            var selItem,
-                numVisible,
-                selectOnScroll,
-                selected,
-                first,
-                last,
-                isSelectionInvisible,
-                focusEl,
-                itemsTable;
-
-            if (this._isAnimationInProgress) {
-                // this messes up real bad!
-                return;
-            }
-
-            selItem              = this.get("selectedItem");
-            numVisible           = this.get("numVisible");
-            selectOnScroll       = this.get("selectOnScroll");
-            selected             = this.getItem(selItem);
-            first                = this.get("firstVisible");
-            last                 = first + numVisible - 1;
-            isSelectionInvisible = (selItem < first || selItem > last);
-            focusEl              = (selected && selected.id) ?
-                                   Dom.get(selected.id) : null;
-            itemsTable           = this._itemsTable;
-
-            if (!selectOnScroll && isSelectionInvisible) {
-                focusEl = (itemsTable && itemsTable.items &&
-                           itemsTable.items[first]) ?
-                        Dom.get(itemsTable.items[first].id) : null;
-            }
-
-            if (focusEl) {
-                try {
-                    focusEl.focus();
-                } catch (ex) {
-                    // ignore focus errors
-                }
-            }
-
-            this.fireEvent(focusEvent);
-        },
-
-        /**
-         * Hide the Carousel.
-         *
-         * @method hide
-         * @public
-         */
-        hide: function () {
-            if (this.fireEvent(beforeHideEvent) !== false) {
-                this.removeClass(this.CLASSES.VISIBLE);
-                this.fireEvent(hideEvent);
-            }
-        },
-
-        /**
-         * Initialize the Carousel.
-         *
-         * @method init
-         * @public
-         * @param el {HTMLElement | String} The html element that represents
-         * the Carousel container.
-         * @param attrs {Object} The set of configuration attributes for
-         * creating the Carousel.
-         */
-        init: function (el, attrs) {
-            var elId  = el,     // save for a rainy day
-                parse = false;
-
-            if (!el) {
-                YAHOO.log(el + " is neither an HTML element, nor a string",
-                        "error", WidgetName);
-                return;
-            }
-
-            this._itemsTable = { loading: {}, numItems: 0, items: [], size: 0 };
-            YAHOO.log("Component initialization", WidgetName);
-
-            if (JS.isString(el)) {
-                el = Dom.get(el);
-            } else if (!el.nodeName) {
-                YAHOO.log(el + " is neither an HTML element, nor a string",
-                        "error", WidgetName);
-                return;
-            }
-
-            if (el) {
-                if (!el.id) {   // in case the HTML element is passed
-                    el.setAttribute("id", Dom.generateId());
-                }
-                this._parseCarousel(el);
-                parse = true;
-            } else {
-                el = this._createCarousel(elId);
-            }
-            elId = el.id;
-
-            Carousel.superclass.init.call(this, el, attrs);
-
-            this.initEvents();
-
-            if (parse) {
-                this._parseCarouselItems();
-            }
-
-            if (!attrs || typeof attrs.isVertical == "undefined") {
-                this.set("isVertical", false);
-            }
-
-            this._parseCarouselNavigation(el);
-            this._navEl = this._setupCarouselNavigation();
-
-            instances[elId] = this;
-
-            loadItems.call(this);
-        },
-
-        /**
-         * Initialize the configuration attributes used to create the Carousel.
-         *
-         * @method initAttributes
-         * @public
-         * @param attrs {Object} The set of configuration attributes for
-         * creating the Carousel.
-         */
-        initAttributes: function (attrs) {
-            attrs = attrs || {};
-            Carousel.superclass.initAttributes.call(this, attrs);
-
-            /**
-             * @attribute currentPage
-             * @description The current page number (read-only.)
-             * @type Number
-             */
-            this.setAttributeConfig("currentPage", {
-                    readOnly : true,
-                    value    : 0
-            });
-
-            /**
-             * @attribute firstVisible
-             * @description The index to start the Carousel from (indexes begin
-             * from zero)
-             * @default 0
-             * @type Number
-             */
-            this.setAttributeConfig("firstVisible", {
-                    method    : this._setFirstVisible,
-                    validator : this._validateFirstVisible,
-                    value     : attrs.firstVisible || this.CONFIG.FIRST_VISIBLE
-            });
-
-            /**
-             * @attribute selectOnScroll
-             * @description Set this to true to automatically set focus to
-             * follow scrolling in the Carousel.
-             * @default true
-             * @type Boolean
-             */
-            this.setAttributeConfig("selectOnScroll", {
-                    validator : JS.isBoolean,
-                    value     : attrs.selectOnScroll || true
-            });
-
-            /**
-             * @attribute numVisible
-             * @description The number of visible items in the Carousel's
-             * viewport.
-             * @default 3
-             * @type Number
-             */
-            this.setAttributeConfig("numVisible", {
-                    method    : this._setNumVisible,
-                    validator : this._validateNumVisible,
-                    value     : attrs.numVisible || this.CONFIG.NUM_VISIBLE
-            });
-
-            /**
-             * @attribute numItems
-             * @description The number of items in the Carousel.
-             * @type Number
-             */
-            this.setAttributeConfig("numItems", {
-                    method    : this._setNumItems,
-                    validator : this._validateNumItems,
-                    value     : this._itemsTable.numItems
-            });
-
-            /**
-             * @attribute scrollIncrement
-             * @description The number of items to scroll by for arrow keys.
-             * @default 1
-             * @type Number
-             */
-            this.setAttributeConfig("scrollIncrement", {
-                    validator : this._validateScrollIncrement,
-                    value     : attrs.scrollIncrement || 1
-            });
-
-            /**
-             * @attribute selectedItem
-             * @description The index of the selected item.
-             * @type Number
-             */
-            this.setAttributeConfig("selectedItem", {
-                    method    : this._setSelectedItem,
-                    validator : JS.isNumber,
-                    value     : 0
-            });
-
-            /**
-             * @attribute revealAmount
-             * @description The percentage of the item to be revealed on each
-             * side of the Carousel (before and after the first and last item
-             * in the Carousel's viewport.)
-             * @default 0
-             * @type Number
-             */
-            this.setAttributeConfig("revealAmount", {
-                    method    : this._setRevealAmount,
-                    validator : this._validateRevealAmount,
-                    value     : attrs.revealAmount || 0
-            });
-
-            /**
-             * @attribute isCircular
-             * @description Set this to true to wrap scrolling of the contents
-             * in the Carousel.
-             * @default false
-             * @type Boolean
-             */
-            this.setAttributeConfig("isCircular", {
-                    validator : JS.isBoolean,
-                    value     : attrs.isCircular || false
-            });
-
-            /**
-             * @attribute isVertical
-             * @description True if the orientation of the Carousel is vertical
-             * @default false
-             * @type Boolean
-             */
-            this.setAttributeConfig("isVertical", {
-                    method    : this._setOrientation,
-                    validator : JS.isBoolean,
-                    value     : attrs.isVertical || false
-            });
-
-            /**
-             * @attribute navigation
-             * @description The set of navigation controls for Carousel
-             * @default <br>
-             * { prev: null, // the previous navigation element<br>
-             *   next: null } // the next navigation element
-             * @type Object
-             */
-            this.setAttributeConfig("navigation", {
-                    method    : this._setNavigation,
-                    validator : this._validateNavigation,
-                    value     : attrs.navigation || {
-                                        prev: null, next: null, page: null }
-            });
-
-            /**
-             * @attribute animation
-             * @description The optional animation attributes for the Carousel.
-             * @default <br>
-             * { speed: 0, // the animation speed (in seconds)<br>
-             *   effect: null } // the animation effect (like
-             *   YAHOO.util.Easing.easeOut)
-             * @type Object
-             */
-            this.setAttributeConfig("animation", {
-                    validator : this._validateAnimation,
-                    value     : attrs.animation || { speed: 0, effect: null }
-            });
-
-            /**
-             * @attribute autoPlay
-             * @description Set this to time in milli-seconds to have the
-             * Carousel automatically scroll the contents.
-             * @type Number
-             */
-            this.setAttributeConfig("autoPlay", {
-                    validator : JS.isNumber,
-                    value     : attrs.autoPlay || 0
-            });
-        },
-
-        /**
-         * Initialize and bind the event handlers.
-         *
-         * @method initEvents
-         * @public
-         */
-        initEvents: function () {
-            var cssClass = this.CLASSES;
-
-            this.on("keydown", this._keyboardEventHandler);
-
-            this.subscribe(afterScrollEvent, syncNavigation);
-            this.on(afterScrollEvent, this.focus);
-
-            this.subscribe(itemAddedEvent, syncUI);
-            this.subscribe(itemAddedEvent, syncNavigation);
-
-            this.subscribe(itemRemovedEvent, syncUI);
-            this.subscribe(itemRemovedEvent, syncNavigation);
-
-            this.on(itemSelectedEvent, this.focus);
-
-            this.subscribe(loadItemsEvent, syncUI);
-
-            this.subscribe(pageChangeEvent, this._syncPagerUI);
-
-            this.subscribe(renderEvent, syncNavigation);
-            this.subscribe(renderEvent, this._syncPagerUI);
-
-            this.on("selectedItemChange", function (ev) {
-                setItemSelection.call(this, ev.newValue, ev.prevValue);
-                this._updateTabIndex(this.getElementForItem(ev.newValue));
-                this.fireEvent(itemSelectedEvent, ev.newValue);
-            });
-
-            this.on("firstVisibleChange", function (ev) {
-                if (!this.get("selectOnScroll")) {
-                    this._updateTabIndex(this.getElementForItem(ev.newValue));
-                }
-            });
-
-            // Handle item selection on mouse click
-            this.on("click", this._itemClickHandler);
-
-            // Handle page navigation
-            this.on("click", this._pagerClickHandler);
-
-            // Restore the focus on the navigation buttons
-            Event.onFocus(this.get("element"), function (ev, obj) {
-                obj._updateNavButtons(Event.getTarget(ev), true);
-            }, this);
-
-            Event.onBlur(this.get("element"), function (ev, obj) {
-                obj._updateNavButtons(Event.getTarget(ev), false);
-            }, this);
-
-        },
-
-        /**
-         * Return the ITEM_TAG_NAME at index or null if the index is not found.
-         *
-         * @method getElementForItem
-         * @param index {Number} The index of the item to be returned
-         * @return {Element} Return the item at index or null if not found
-         * @public
-         */
-        getElementForItem: function (index) {
-            if (index < 0 || index >= this.get("numItems")) {
-                YAHOO.log("Index out of bounds", "error", WidgetName);
-                return null;
-            }
-
-            // TODO: may be cache the item
-            if (this._itemsTable.numItems > index) {
-                if (!JS.isUndefined(this._itemsTable.items[index])) {
-                    return Dom.get(this._itemsTable.items[index].id);
-                }
-            }
-
-            return null;
-        },
-
-        /**
-         * Return the ITEM_TAG_NAME for all items in the Carousel.
-         *
-         * @method getElementForItems
-         * @return {Array} Return all the items
-         * @public
-         */
-        getElementForItems: function () {
-            var els = [], i;
-
-            for (i = 0; i < this._itemsTable.numItems; i++) {
-                els.push(this.getElementForItem(i));
-            }
-
-            return els;
-        },
-
-        /**
-         * Return the item at index or null if the index is not found.
-         *
-         * @method getItem
-         * @param index {Number} The index of the item to be returned
-         * @return {Object} Return the item at index or null if not found
-         * @public
-         */
-        getItem: function (index) {
-            if (index < 0 || index >= this.get("numItems")) {
-                YAHOO.log("Index out of bounds", "error", WidgetName);
-                return null;
-            }
-
-            if (this._itemsTable.numItems > index) {
-                if (!JS.isUndefined(this._itemsTable.items[index])) {
-                    return this._itemsTable.items[index];
-                }
-            }
-
-            return null;
-        },
-
-        /**
-         * Return all items as an array.
-         *
-         * @method getItems
-         * @return {Array} Return all items in the Carousel
-         * @public
-         */
-        getItems: function (index) {
-            return this._itemsTable.items;
-        },
-
-        /**
-         * Return the position of the Carousel item that has the id "id", or -1
-         * if the id is not found.
-         *
-         * @method getItemPositionById
-         * @param index {Number} The index of the item to be returned
-         * @public
-         */
-        getItemPositionById: function (id) {
-            var i = 0, n = this._itemsTable.numItems;
-
-            while (i < n) {
-                if (!JS.isUndefined(this._itemsTable.items[i])) {
-                    if (this._itemsTable.items[i].id == id) {
-                        return i;
-                    }
-                }
-                i++;
-            }
-
-            return -1;
-        },
-
-        /**
-         * Remove an item at index from the Carousel.
-         *
-         * @method removeItem
-         * @public
-         * @param index {Number} The position to where in the list (starts from
-         * zero).
-         * @return {Boolean} Return true on success, false otherwise
-         */
-        removeItem: function (index) {
-            var item, num = this.get("numItems");
-
-            if (index < 0 || index >= num) {
-                YAHOO.log("Index out of bounds", "error", WidgetName);
-                return false;
-            }
-
-            item = this._itemsTable.items.splice(index, 1);
-            if (item && item.length == 1) {
-                this.set("numItems", num - 1);
-
-                this.fireEvent(itemRemovedEvent,
-                        { item: item[0], pos: index, ev: itemRemovedEvent });
-                return true;
-            }
-
-            return false;
-        },
-
-        /**
-         * Render the Carousel.
-         *
-         * @method render
-         * @public
-         * @param appendTo {HTMLElement | String} The element to which the
-         * Carousel should be appended prior to rendering.
-         * @return {Boolean} Status of the operation
-         */
-        render: function (appendTo) {
-            var config = this.CONFIG,
-                cssClass = this.CLASSES,
-                size;
-
-            this.addClass(cssClass.CAROUSEL);
-
-            if (!this._clipEl) {
-                this._clipEl = this._createCarouselClip();
-                this._clipEl.appendChild(this._carouselEl);
-            }
-
-            if (appendTo) {
-                this.appendChild(this._clipEl);
-                this.appendTo(appendTo);
-                this._setClipContainerSize();
-            } else {
-                if (!Dom.inDocument(this.get("element"))) {
-                    YAHOO.log("Nothing to render. The container should be " +
-                            "within the document if appendTo is not "       +
-                            "specified", "error", WidgetName);
-                    return false;
-                }
-                this.appendChild(this._clipEl);
-            }
-
-            if (this.get("isVertical")) {
-                size = getCarouselItemSize.call(this);
-                size = size < config.MIN_WIDTH ? config.MIN_WIDTH : size;
-                this.setStyle("width",  size + "px");
-                this.addClass(cssClass.VERTICAL);
-            } else {
-                this.addClass(cssClass.HORIZONTAL);
-            }
-
-            if (this.get("numItems") < 1) {
-                YAHOO.log("No items in the Carousel to render", "warn",
-                        WidgetName);
-                return false;
-            }
-
-            // Make sure at least one item is selected
-            this.set("selectedItem", this.get("firstVisible"));
-
-            this.fireEvent(renderEvent);
-
-            // By now, the navigation would have been rendered, so calculate
-            // the container height now.
-            this._setContainerSize();
-
-            return true;
-        },
-
-        /**
-         * Scroll the Carousel by an item backward.
-         *
-         * @method scrollBackward
-         * @public
-         */
-        scrollBackward: function () {
-            this.scrollTo(this._firstItem - this.get("scrollIncrement"));
-        },
-
-        /**
-         * Scroll the Carousel by an item forward.
-         *
-         * @method scrollForward
-         * @public
-         */
-        scrollForward: function () {
-            this.scrollTo(this._firstItem + this.get("scrollIncrement"));
-        },
-
-        /**
-         * Scroll the Carousel by a page backward.
-         *
-         * @method scrollPageBackward
-         * @public
-         */
-        scrollPageBackward: function () {
-            this.scrollTo(this._firstItem - this.get("numVisible"));
-        },
-
-        /**
-         * Scroll the Carousel by a page forward.
-         *
-         * @method scrollPageForward
-         * @public
-         */
-        scrollPageForward: function () {
-            this.scrollTo(this._firstItem + this.get("numVisible"));
-        },
-
-        /**
-         * Scroll the Carousel to make the item the first visible item.
-         *
-         * @method scrollTo
-         * @public
-         * @param item Number The index of the element to position at.
-         * @param dontSelect Boolean True if select should be avoided
-         */
-        scrollTo: function (item, dontSelect) {
-            var anim,
-                animate,
-                animAttrs,
-                animCfg    = this.get("animation"),
-                isCircular = this.get("isCircular"),
-                delta,
-                direction,
-                firstItem  = this._firstItem,
-                newPage,
-                numItems   = this.get("numItems"),
-                numPerPage = this.get("numVisible"),
-                offset,
-                page       = this.get("currentPage"),
-                rv,
-                sentinel,
-                which;
-
-            if (item == firstItem) {
-                return;         // nothing to do!
-            }
-
-            if (this._isAnimationInProgress) {
-                return;         // let it take its own sweet time to complete
-            }
-
-            if (item < 0) {
-                if (isCircular) {
-                    item = numItems + item;
-                } else {
-                    return;
-                }
-            } else if (item > numItems - 1) {
-                if (this.get("isCircular")) {
-                    item = numItems - item;
-                } else {
-                    return;
-                }
-            }
-
-            direction = (this._firstItem > item) ? "backward" : "forward";
-
-            sentinel  = firstItem + numPerPage;
-            sentinel  = (sentinel > numItems - 1) ? numItems - 1 : sentinel;
-            rv = this.fireEvent(beforeScrollEvent,
-                    { dir: direction, first: firstItem, last: sentinel });
-            if (rv === false) { // scrolling is prevented
-                return;
-            }
-
-            this.fireEvent(beforePageChangeEvent, { page: page });
-
-            delta = firstItem - item; // yes, the delta is reverse
-            this._firstItem = item;
-            this.set("firstVisible", item);
-
-            YAHOO.log("Scrolling to " + item + " delta = " + delta, WidgetName);
-
-            loadItems.call(this); // do we have all the items to display?
-
-            sentinel  = item + numPerPage;
-            sentinel  = (sentinel > numItems - 1) ? numItems - 1 : sentinel;
-
-            which     = this.get("isVertical") ? "top" : "left";
-            offset    = getScrollOffset.call(this, delta);
-            YAHOO.log("Scroll offset = " + offset, WidgetName);
-
-            animate   = animCfg.speed > 0;
-
-            if (animate) {
-                this._isAnimationInProgress = true;
-                if (this.get("isVertical")) {
-                    animAttrs = { points: { by: [0, offset] } };
-                } else {
-                    animAttrs = { points: { by: [offset, 0] } };
-                }
-                anim = new YAHOO.util.Motion(this._carouselEl, animAttrs,
-                        animCfg.speed, animCfg.effect);
-                anim.onComplete.subscribe(function (ev) {
-                    var first = this.get("firstVisible");
-
-                    this._isAnimationInProgress = false;
-                    this.fireEvent(afterScrollEvent,
-                            { first: first, last: sentinel });
-                }, null, this);
-                anim.animate();
-                anim = null;
-            } else {
-                offset += getStyle(this._carouselEl, which);
-                Dom.setStyle(this._carouselEl, which, offset + "px");
-            }
-
-            newPage = parseInt(this._firstItem / numPerPage, 10);
-            if (newPage != page) {
-                this.setAttributeConfig("currentPage", { value: newPage });
-                this.fireEvent(pageChangeEvent, newPage);
-            }
-
-            if (!dontSelect) {
-                if (this.get("selectOnScroll")) {
-                    if (item != this._selectedItem) { // out of sync
-                        this.set("selectedItem", this._getSelectedItem(item));
-                    }
-                }
-            }
-
-            delete this._autoPlayTimer;
-            if (this.get("autoPlay") > 0) {
-                this.startAutoPlay();
-            }
-
-            if (!animate) {
-                this.fireEvent(afterScrollEvent,
-                        { first: item, last: sentinel });
-            }
-        },
-
-        /**
-         * Display the Carousel.
-         *
-         * @method show
-         * @public
-         */
-        show: function () {
-            var cssClass = this.CLASSES;
-
-            if (this.fireEvent(beforeShowEvent) !== false) {
-                this.addClass(cssClass.VISIBLE);
-                this.fireEvent(showEvent);
-            }
-        },
-
-        /**
-         * Start auto-playing the Carousel.
-         *
-         * @method startAutoPlay
-         * @public
-         */
-        startAutoPlay: function () {
-            var self  = this,
-                timer = this.get("autoPlay");
-
-            if (timer > 0) {
-                if (!JS.isUndefined(this._autoPlayTimer)) {
-                    return;
-                }
-                this.fireEvent(startAutoPlayEvent);
-                this._autoPlayTimer = setTimeout(function () {
-                    autoScroll.call(self); }, timer);
-            }
-        },
-
-        /**
-         * Stop auto-playing the Carousel.
-         *
-         * @method stopAutoPlay
-         * @public
-         */
-        stopAutoPlay: function () {
-            if (!JS.isUndefined(this._autoPlayTimer)) {
-                clearTimeout(this._autoPlayTimer);
-                delete this._autoPlayTimer;
-                this.set("autoPlay", 0);
-                this.fireEvent(stopAutoPlayEvent);
-            }
-        },
-
-        /**
-         * Return the string representation of the Carousel.
-         *
-         * @method toString
-         * @public
-         * @return {String}
-         */
-        toString: function () {
-            return WidgetName + (this.get ? " (#" + this.get("id") + ")" : "");
-        },
-
-        /*
-         * Protected methods of the Carousel component
-         */
-
-        /**
-         * Create the Carousel.
-         *
-         * @method createCarousel
-         * @param elId {String} The id of the element to be created
-         * @protected
-         */
-        _createCarousel: function (elId) {
-            var cssClass = this.CLASSES;
-
-            var el = createElement("DIV", {
-                    className : cssClass.CAROUSEL,
-                    id        : elId
-            });
-
-            if (!this._carouselEl) {
-                this._carouselEl = createElement(this.CONFIG.TAG_NAME,
-                        { className: cssClass.CAROUSEL_EL });
-            }
-
-            return el;
-        },
-
-        /**
-         * Create the Carousel clip container.
-         *
-         * @method createCarouselClip
-         * @protected
-         */
-        _createCarouselClip: function () {
-            var el = createElement("DIV", { className: this.CLASSES.CONTENT });
-            this._setClipContainerSize(el);
-
-            return el;
-        },
-
-        /**
-         * Create the Carousel item.
-         *
-         * @method createCarouselItem
-         * @param obj {Object} The attributes of the element to be created
-         * @protected
-         */
-        _createCarouselItem: function (obj) {
-            return createElement(this.CONFIG.ITEM_TAG_NAME, {
-                    className : obj.className,
-                    content   : obj.content,
-                    id        : obj.id
-            });
-        },
-
-        /**
-         * Get the value for the selected item.
-         *
-         * @method _getSelectedItem
-         * @param val {Number} The new value for "selected" item
-         * @return {Number} The new value that would be set
-         * @protected
-         */
-        _getSelectedItem: function (val) {
-            var isCircular = this.get("isCircular"),
-                numItems   = this.get("numItems"),
-                sentinel   = numItems - 1;
-
-            if (val < 0) {
-                if (isCircular) {
-                    val = numItems + val;
-                } else {
-                    val = this.get("selectedItem");
-                }
-            } else if (val > sentinel) {
-                if (isCircular) {
-                    val = val - numItems;
-                } else {
-                    val = this.get("selectedItem");
-                }
-            }
-
-            return val;
-        },
-
-        /**
-         * The "click" handler for the item.
-         *
-         * @method _itemClickHandler
-         * @param {Event} ev The event object
-         * @protected
-         */
-        _itemClickHandler: function (ev) {
-            var container = this.get("element"),
-                el,
-                item,
-                target = YAHOO.util.Event.getTarget(ev);
-
-            while (target && target != container &&
-                   target.id != this._carouselEl) {
-                el = target.nodeName;
-                if (el.toUpperCase() == this.CONFIG.ITEM_TAG_NAME) {
-                    break;
-                }
-                target = target.parentNode;
-            }
-
-            if ((item = this.getItemPositionById(target.id)) >= 0) {
-                YAHOO.log("Setting selection to " + item, WidgetName);
-                this.set("selectedItem", this._getSelectedItem(item));
-            }
-        },
-
-        /**
-         * The keyboard event handler for Carousel.
-         *
-         * @method _keyboardEventHandler
-         * @param ev {Event} The event that is being handled.
-         * @protected
-         */
-        _keyboardEventHandler: function (ev) {
-            var key      = Event.getCharCode(ev),
-                prevent  = false,
-                position = 0,
-                selItem;
-
-            if (this._isAnimationInProgress) {
-                return;         // do not mess while animation is in progress
-            }
-
-            switch (key) {
-            case 0x25:          // left arrow
-            case 0x26:          // up arrow
-                selItem = this.get("selectedItem");
-                if (selItem == this._firstItem) {
-                    position = selItem - this.get("numVisible");
-                    this.scrollTo(position);
-                    this.set("selectedItem", this._getSelectedItem(selItem-1));
-                } else {
-                    position = this.get("selectedItem") -
-                            this.get("scrollIncrement");
-                    this.set("selectedItem", this._getSelectedItem(position));
-                }
-                prevent = true;
-                break;
-            case 0x27:          // right arrow
-            case 0x28:          // down arrow
-                position = this.get("selectedItem")+this.get("scrollIncrement");
-                this.set("selectedItem", this._getSelectedItem(position));
-                prevent = true;
-                break;
-            case 0x21:          // page-up
-                this.scrollPageBackward();
-                prevent = true;
-                break;
-            case 0x22:          // page-down
-                this.scrollPageForward();
-                prevent = true;
-                break;
-            }
-
-            if (prevent) {
-                Event.preventDefault(ev);
-            }
-        },
-
-        /**
-         * The "click" handler for the pager navigation.
-         *
-         * @method _pagerClickHandler
-         * @param {Event} ev The event object
-         * @protected
-         */
-        _pagerClickHandler: function (ev) {
-            var pos, target, val;
-
-            target = Event.getTarget(ev);
-            val = target.href || target.value;
-            if (JS.isString(val) && val) {
-                pos = val.lastIndexOf("#");
-                if (pos != -1) {
-                    val = this.getItemPositionById(val.substring(pos + 1));
-                    this.scrollTo(val);
-                    Event.preventDefault(ev);
-                }
-            }
-        },
-
-        /**
-         * Find the Carousel within a container. The Carousel is identified by
-         * the first element that matches the carousel element tag or the
-         * element that has the Carousel class.
-         *
-         * @method parseCarousel
-         * @param parent {HTMLElement} The parent element to look under
-         * @return {Boolean} True if Carousel is found, false otherwise
-         * @protected
-         */
-        _parseCarousel: function (parent) {
-            var child, cssClass, found, node;
-
-            cssClass = this.CLASSES;
-            found    = false;
-
-            for (child = parent.firstChild; child; child = child.nextSibling) {
-                if (child.nodeType == 1) {
-                    node = child.nodeName;
-                    if (node.toUpperCase() == this.CONFIG.TAG_NAME) {
-                        this._carouselEl = child;
-                        Dom.addClass(this._carouselEl,this.CLASSES.CAROUSEL_EL);
-                        YAHOO.log("Found Carousel - " + node +
-                                (child.id ? " (#" + child.id + ")" : ""),
-                                WidgetName);
-                        found = true;
-                    }
-                }
-            }
-
-            return found;
-        },
-
-        /**
-         * Find the items within the Carousel and add them to the items table.
-         * A Carousel item is identified by elements that matches the carousel
-         * item element tag.
-         *
-         * @method parseCarouselItems
-         * @protected
-         */
-        _parseCarouselItems: function () {
-            var child,
-                elId,
-                node,
-                parent = this._carouselEl;
-
-            for (child = parent.firstChild; child; child = child.nextSibling) {
-                if (child.nodeType == 1) {
-                    node = child.nodeName;
-                    if (node.toUpperCase() == this.CONFIG.ITEM_TAG_NAME) {
-                        if (child.id) {
-                            elId = child.id;
-                        } else {
-                            elId = Dom.generateId();
-                            child.setAttribute("id", elId);
-                        }
-                        this.addItem(child);
-                    }
-                }
-            }
-        },
-
-        /**
-         * Find the Carousel navigation within a container. The navigation
-         * elements need to match the carousel navigation class names.
-         *
-         * @method parseCarouselNavigation
-         * @param parent {HTMLElement} The parent element to look under
-         * @return {Boolean} True if at least one is found, false otherwise
-         * @protected
-         */
-        _parseCarouselNavigation: function (parent) {
-            var cfg, cssClass = this.CLASSES, el, i, j, nav, rv = false;
-
-            nav = Dom.getElementsByClassName(cssClass.PREV_PAGE, "*", parent);
-            if (nav.length > 0) {
-                for (i in nav) {
-                    if (nav.hasOwnProperty(i)) {
-                        el = nav[i];
-                        YAHOO.log("Found Carousel previous page navigation - " +
-                                el + (el.id ? " (#" + el.id + ")" : ""),
-                                WidgetName);
-                        if (el.nodeName == "INPUT" ||
-                            el.nodeName == "BUTTON") {
-                            if (typeof this._navBtns.prev == "undefined") {
-                                this._navBtns.prev = [];
-                            }
-                            this._navBtns.prev.push(el);
-                        } else {
-                            j = el.getElementsByTagName("INPUT");
-                            if (JS.isArray(j) && j.length > 0) {
-                                this._navBtns.prev.push(j[0]);
-                            } else {
-                                j = el.getElementsByTagName("BUTTON");
-                                if (JS.isArray(j) && j.length > 0) {
-                                    this._navBtns.prev.push(j[0]);
-                                }
-                            }
-                        }
-                    }
-                }
-                cfg = { prev: nav };
-            }
-
-            nav = Dom.getElementsByClassName(cssClass.NEXT_PAGE, "*", parent);
-            if (nav.length > 0) {
-                for (i in nav) {
-                    if (nav.hasOwnProperty(i)) {
-                        el = nav[i];
-                        YAHOO.log("Found Carousel next page navigation - " +
-                                el + (el.id ? " (#" + el.id + ")" : ""),
-                                WidgetName);
-                        if (el.nodeName == "INPUT" ||
-                            el.nodeName == "BUTTON") {
-                            if (typeof this._navBtns.next == "undefined") {
-                                this._navBtns.next = [];
-                            }
-                            this._navBtns.next.push(el);
-                        } else {
-                            j = el.getElementsByTagName("INPUT");
-                            if (JS.isArray(j) && j.length > 0) {
-                                this._navBtns.next.push(j[0]);
-                            } else {
-                                j = el.getElementsByTagName("BUTTON");
-                                if (JS.isArray(j) && j.length > 0) {
-                                    this._navBtns.next.push(j[0]);
-                                }
-                            }
-                        }
-                    }
-                }
-                if (cfg) {
-                    cfg.next = nav;
-                } else {
-                    cfg = { next: nav };
-                }
-            }
-
-            if (cfg) {
-                this.set("navigation", cfg);
-                rv = true;
-            }
-
-            return rv;
-        },
-
-        /**
-         * Setup/Create the Carousel navigation element (if needed).
-         *
-         * @method _setupCarouselNavigation
-         * @protected
-         */
-        _setupCarouselNavigation: function () {
-            var btn, cfg, cssClass, nav, navContainer, nextButton, pageEl,
-                prevButton;
-
-            cssClass = this.CLASSES;
-
-            navContainer = Dom.getElementsByClassName(cssClass.NAVIGATION,
-                    "DIV", this.get("element"));
-
-            if (navContainer.length === 0) {
-                navContainer = createElement("DIV",
-                        { className: cssClass.NAVIGATION });
-                this.insertBefore(navContainer,
-                        Dom.getFirstChild(this.get("element")));
-            } else {
-                navContainer = navContainer[0];
-            }
-
-            this._pages.el = createElement("UL");
-            navContainer.appendChild(this._pages.el);
-
-            nav = this.get("navigation");
-            if (nav.prev && nav.prev.length > 0) {
-                navContainer.appendChild(nav.prev[0]);
-            } else {
-                // TODO: separate method for creating a navigation button
-                prevButton = createElement("SPAN",
-                        { className: cssClass.BUTTON + cssClass.FIRST_NAV });
-                // XXX: for IE 6.x
-                Dom.setStyle(prevButton, "visibility", "visible");
-                btn = Dom.generateId();
-                prevButton.innerHTML = "<input type=\"button\" " +
-                        "id=\"" + btn + "\" " +
-                        "value=\"" + this.STRINGS.PREVIOUS_BUTTON_TEXT + "\" " +
-                        "name=\"" + this.STRINGS.PREVIOUS_BUTTON_TEXT + "\">";
-                navContainer.appendChild(prevButton);
-                btn = Dom.get(btn);
-                this._navBtns.prev = [btn];
-                cfg = { prev: [prevButton] };
-            }
-
-            if (nav.next && nav.next.length > 0) {
-                navContainer.appendChild(nav.next[0]);
-            } else {
-                // TODO: separate method for creating a navigation button
-                nextButton = createElement("SPAN",
-                        { className: cssClass.BUTTON });
-                // XXX: for IE 6.x
-                Dom.setStyle(nextButton, "visibility", "visible");
-                btn = Dom.generateId();
-                nextButton.innerHTML = "<input type=\"button\" " +
-                        "id=\"" + btn + "\" " +
-                        "value=\"" + this.STRINGS.NEXT_BUTTON_TEXT + "\" " +
-                        "name=\"" + this.STRINGS.NEXT_BUTTON_TEXT + "\">";
-                navContainer.appendChild(nextButton);
-                btn = Dom.get(btn);
-                this._navBtns.next = [btn];
-                if (cfg) {
-                    cfg.next = [nextButton];
-                } else {
-                    cfg = { next: [nextButton] };
-                }
-            }
-
-            if (cfg) {
-                this.set("navigation", cfg);
-            }
-
-            return navContainer;
-        },
-
-        /**
-         * Set the clip container size (based on the new numVisible value).
-         *
-         * @method _setClipContainerSize
-         * @param clip {HTMLElement} The clip container element.
-         * @param num {Number} optional The number of items per page.
-         * @protected
-         */
-        _setClipContainerSize: function (clip, num) {
-            var attr, currVal, isVertical, itemSize, reveal, size, which;
-
-            isVertical = this.get("isVertical");
-            reveal     = this.get("revealAmount");
-            which      = isVertical ? "height" : "width";
-            attr       = isVertical ? "top" : "left";
-
-            clip       = clip || this._clipEl;
-            if (!clip) {
-                return;
-            }
-
-            num        = num  || this.get("numVisible");
-            itemSize   = getCarouselItemSize.call(this, which);
-            size       = itemSize * num;
-
-            this._recomputeSize = (size === 0); // bleh!
-            if (this._recomputeSize) {
-                return;             // no use going further, bail out!
-            }
-
-            if (reveal > 0) {
-                reveal = itemSize * (reveal / 100) * 2;
-                size += reveal;
-                // TODO: set the Carousel's initial offset somwehere
-                currVal = parseFloat(Dom.getStyle(this._carouselEl, attr));
-                currVal = JS.isNumber(currVal) ? currVal : 0;
-                Dom.setStyle(this._carouselEl, attr, currVal+(reveal/2)+"px");
-            }
-
-            if (isVertical) {
-                size += getStyle(this._carouselEl, "marginTop")     +
-                        getStyle(this._carouselEl, "marginBottom")  +
-                        getStyle(this._carouselEl, "paddingTop")    +
-                        getStyle(this._carouselEl, "paddingBottom") +
-                        getStyle(this._carouselEl, "borderTop")     +
-                        getStyle(this._carouselEl, "borderBottom");
-                // XXX: for vertical Carousel
-                Dom.setStyle(clip, which, (size - (num - 1)) + "px");
-            } else {
-                size += getStyle(this._carouselEl, "marginLeft")    +
-                        getStyle(this._carouselEl, "marginRight")   +
-                        getStyle(this._carouselEl, "paddingLeft")   +
-                        getStyle(this._carouselEl, "paddingRight")  +
-                        getStyle(this._carouselEl, "borderLeft")    +
-                        getStyle(this._carouselEl, "borderRight");
-                Dom.setStyle(clip, which, size + "px");
-            }
-
-            this._setContainerSize(clip); // adjust the container size too
-        },
-
-        /**
-         * Set the container size.
-         *
-         * @method _setContainerSize
-         * @param clip {HTMLElement} The clip container element.
-         * @param attr {String} Either set the height or width.
-         * @protected
-         */
-        _setContainerSize: function (clip, attr) {
-            var isVertical, size;
-
-            isVertical = this.get("isVertical");
-            clip       = clip || this._clipEl;
-            attr       = attr || (isVertical ? "height" : "width");
-            size       = parseFloat(Dom.getStyle(clip, attr), 10);
-
-            size = JS.isNumber(size) ? size : 0;
-
-            size += getStyle(clip, "marginLeft")   +
-                    getStyle(clip, "marginRight")  +
-                    getStyle(clip, "paddingLeft")  +
-                    getStyle(clip, "paddingRight") +
-                    getStyle(clip, "borderLeft")   +
-                    getStyle(clip, "borderRight");
-
-            if (isVertical) {
-                size += getStyle(this._navEl, "height");
-            }
-
-            this.setStyle(attr, size + "px");
-        },
-
-        /**
-         * Set the value for the Carousel's first visible item.
-         *
-         * @method _setFirstVisible
-         * @param val {Number} The new value for firstVisible
-         * @return {Number} The new value that would be set
-         * @protected
-         */
-        _setFirstVisible: function (val) {
-            if (val >= 0 && val < this.get("numItems")) {
-                this.scrollTo(val);
-            } else {
-                val = this.get("firstVisible");
-            }
-            return val;
-        },
-
-        /**
-         * Set the value for the Carousel's navigation.
-         *
-         * @method _setNavigation
-         * @param cfg {Object} The navigation configuration
-         * @return {Object} The new value that would be set
-         * @protected
-         */
-        _setNavigation: function (cfg) {
-            if (cfg.prev) {
-                Event.on(cfg.prev, "click", scrollPageBackward, this);
-            }
-            if (cfg.next) {
-                Event.on(cfg.next, "click", scrollPageForward, this);
-            }
-        },
-
-        /**
-         * Set the value for the number of visible items in the Carousel.
-         *
-         * @method _setNumVisible
-         * @param val {Number} The new value for numVisible
-         * @return {Number} The new value that would be set
-         * @protected
-         */
-        _setNumVisible: function (val) {
-            if (val > 1 && val < this.get("numItems")) {
-                this._setClipContainerSize(this._clipEl, val);
-            } else {
-                val = this.get("numVisible");
-            }
-            return val;
-        },
-
-        /**
-         * Set the number of items in the Carousel.
-         * Warning: Setting this to a lower number than the current removes
-         * items from the end.
-         *
-         * @method _setNumItems
-         * @param val {Number} The new value for numItems
-         * @return {Number} The new value that would be set
-         * @protected
-         */
-        _setNumItems: function (val) {
-            var num = this._itemsTable.numItems;
-
-            if (JS.isArray(this._itemsTable.items)) {
-                if (this._itemsTable.items.length != num) { // out of sync
-                    num = this._itemsTable.items.length;
-                    this._itemsTable.numItems = num;
-                }
-            }
-
-            if (val < num) {
-                while (num > val) {
-                    this.removeItem(num - 1);
-                    num--;
-                }
-            }
-
-            return val;
-        },
-
-        /**
-         * Set the orientation of the Carousel.
-         *
-         * @method _setOrientation
-         * @param val {Boolean} The new value for isVertical
-         * @return {Boolean} The new value that would be set
-         * @protected
-         */
-        _setOrientation: function (val) {
-            var cssClass = this.CLASSES;
-
-            if (val) {
-                this.replaceClass(cssClass.HORIZONTAL, cssClass.VERTICAL);
-            } else {
-                this.replaceClass(cssClass.VERTICAL, cssClass.HORIZONTAL);
-            }
-            this._itemsTable.size = 0; // invalidate our size computation cache
-            return val;
-        },
-
-        /**
-         * Set the value for the reveal amount percentage in the Carousel.
-         *
-         * @method _setRevealAmount
-         * @param val {Number} The new value for revealAmount
-         * @return {Number} The new value that would be set
-         * @protected
-         */
-        _setRevealAmount: function (val) {
-            if (val >= 0 && val <= 100) {
-                val = parseInt(val, 10);
-                val = JS.isNumber(val) ? val : 0;
-                this._setClipContainerSize();
-            } else {
-                val = this.get("revealAmount");
-            }
-            return val;
-        },
-
-        /**
-         * Set the value for the selected item.
-         *
-         * @method _setSelectedItem
-         * @param val {Number} The new value for "selected" item
-         * @protected
-         */
-        _setSelectedItem: function (val) {
-            this._selectedItem = val;
-        },
-
-        /**
-         * Synchronize and redraw the Pager UI if necessary.
-         *
-         * @method _syncPagerUI
-         * @protected
-         */
-        _syncPagerUI: function (page) {
-            var a,
-                cssClass = this.CLASSES,
-                i,
-                markup     = "",
-                numPages,
-                numVisible = this.get("numVisible");
-
-            page     = page || 0;
-            numPages = Math.ceil(this.get("numItems") / numVisible);
-
-            this._pages.num = numPages;
-            this._pages.cur = page;
-
-            if (numPages > this.CONFIG.MAX_PAGER_BUTTONS) {
-                markup = "<form><select>";
-            } else {
-                markup = "";
-            }
-
-            for (i = 0; i < numPages; i++) {
-                if (JS.isUndefined(this._itemsTable.items[i * numVisible])) {
-                    break;
-                }
-                a = this._itemsTable.items[i * numVisible].id;
-                if (numPages > this.CONFIG.MAX_PAGER_BUTTONS) {
-                    markup += "<option value=\"#" + a + "\" "            +
-                            (i == page ? " selected" : "") + ">"         +
-                            this.STRINGS.PAGER_PREFIX_TEXT + " " + (i+1) +
-                            "</option>";
-                } else {
-                    markup += "<li class=\""                                   +
-                            (i === 0 ? cssClass.FIRST_PAGE : "")               +
-                            (i == page ? " " + cssClass.SELECTED_NAV : "")     +
-                            "\"><a href=\"#" + a + "\" tabindex=\"0\"><em>"    +
-                            this.STRINGS.PAGER_PREFIX_TEXT + " " + (i+1)       +
-                            "</em></a></li>";
-                }
-            }
-
-            if (numPages > this.CONFIG.MAX_PAGER_BUTTONS) {
-                markup += "</select></form>";
-            }
-
-            this._pages.el.innerHTML = markup;
-            markup = null;
-        },
-
-        /**
-         * Set the correct class for the navigation buttons.
-         *
-         * @method _updateNavButtons
-         * @param el {Object} The target button
-         * @param setFocus {Boolean} True to set focus ring, false otherwise.
-         * @protected
-         */
-        _updateNavButtons: function (el, setFocus) {
-            var children,
-                cssClass = this.CLASSES,
-                grandParent,
-                parent   = el.parentNode;
-
-            if (!parent) {
-                return;
-            }
-            grandParent = parent.parentNode;
-
-            if (el.nodeName.toUpperCase() == "INPUT" &&
-                Dom.hasClass(parent, cssClass.BUTTON)) {
-                if (setFocus) {
-                    if (grandParent) {
-                        children = Dom.getChildren(grandParent);
-                        if (children) {
-                            Dom.removeClass(children, cssClass.FOCUSSED_BUTTON);
-                        }
-                    }
-                    Dom.addClass(parent, cssClass.FOCUSSED_BUTTON);
-                } else {
-                    Dom.removeClass(parent, cssClass.FOCUSSED_BUTTON);
-                }
-            }
-        },
-
-        /**
-         * Set the correct tab index for the Carousel items.
-         *
-         * @method _updateTabIndex
-         * @param el {Object} The element to be focussed
-         * @protected
-         */
-        _updateTabIndex: function (el) {
-            if (el) {
-                if (this._focusableItemEl) {
-                    this._focusableItemEl.tabIndex = -1;
-                }
-                this._focusableItemEl = el;
-                el.tabIndex = 0;
-            }
-        },
-
-        /**
-         * Validate animation parameters.
-         *
-         * @method _validateAnimation
-         * @param cfg {Object} The animation configuration
-         * @return {Boolean} The status of the validation
-         * @protected
-         */
-        _validateAnimation: function (cfg) {
-            var rv = true;
-
-            if (JS.isObject(cfg)) {
-                if (cfg.speed) {
-                    rv = rv && JS.isNumber(cfg.speed);
-                }
-                if (cfg.effect) {
-                    rv = rv && JS.isFunction(cfg.effect);
-                } else if (!JS.isUndefined(YAHOO.util.Easing)) {
-                    cfg.effect = YAHOO.util.Easing.easeOut;
-                }
-            } else {
-                rv = false;
-            }
-
-            return rv;
-        },
-
-        /**
-         * Validate the firstVisible value.
-         *
-         * @method _validateFirstVisible
-         * @param val {Number} The first visible value
-         * @return {Boolean} The status of the validation
-         * @protected
-         */
-        _validateFirstVisible: function (val) {
-            var rv = false;
-
-            if (JS.isNumber(val)) {
-                rv = (val >= 0 && val < this.get("numItems"));
-            }
-
-            return rv;
-        },
-
-        /**
-         * Validate and navigation parameters.
-         *
-         * @method _validateNavigation
-         * @param cfg {Object} The navigation configuration
-         * @return {Boolean} The status of the validation
-         * @protected
-         */
-        _validateNavigation : function (cfg) {
-            var i;
-
-            if (!JS.isObject(cfg)) {
-                return false;
-            }
-
-            if (cfg.prev) {
-                if (!JS.isArray(cfg.prev)) {
-                    return false;
-                }
-                for (i in cfg.prev) {
-                    if (cfg.prev.hasOwnProperty(i)) {
-                        if (!JS.isString(cfg.prev[i].nodeName)) {
-                            return false;
-                        }
-                    }
-                }
-            }
-
-            if (cfg.next) {
-                if (!JS.isArray(cfg.next)) {
-                    return false;
-                }
-                for (i in cfg.next) {
-                    if (cfg.next.hasOwnProperty(i)) {
-                        if (!JS.isString(cfg.next[i].nodeName)) {
-                            return false;
-                        }
-                    }
-                }
-            }
-
-            return true;
-        },
-
-        /**
-         * Validate the numItems value.
-         *
-         * @method _validateNumItems
-         * @param val {Number} The numItems value
-         * @return {Boolean} The status of the validation
-         * @protected
-         */
-        _validateNumItems: function (val) {
-            var rv = false;
-
-            if (JS.isNumber(val)) {
-                rv = val > 0;
-            }
-
-            return rv;
-        },
-
-        /**
-         * Validate the numVisible value.
-         *
-         * @method _validateNumVisible
-         * @param val {Number} The numVisible value
-         * @return {Boolean} The status of the validation
-         * @protected
-         */
-        _validateNumVisible: function (val) {
-            var rv = false;
-
-            if (JS.isNumber(val)) {
-                rv = val > 0 && val < this.get("numItems");
-            }
-
-            return rv;
-        },
-
-        /**
-         * Validate the revealAmount value.
-         *
-         * @method _validateRevealAmount
-         * @param val {Number} The revealAmount value
-         * @return {Boolean} The status of the validation
-         * @protected
-         */
-        _validateRevealAmount: function (val) {
-            var rv = false;
-
-            if (JS.isNumber(val)) {
-                rv = val >= 0 && val < 100;
-            }
-
-            return rv;
-        },
-
-        /**
-         * Validate the scrollIncrement value.
-         *
-         * @method _validateScrollIncrement
-         * @param val {Number} The scrollIncrement value
-         * @return {Boolean} The status of the validation
-         * @protected
-         */
-        _validateScrollIncrement: function (val) {
-            var rv = false;
-
-            if (JS.isNumber(val)) {
-                rv = (val > 0 && val < this.get("numItems"));
-            }
-
-            return rv;
-        }
-
-    });
-
-})();
-
-YAHOO.register("carousel", YAHOO.widget.Carousel, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/carousel/carousel-beta-min.js b/eclipse.org-common/yui/2.6.0/build/carousel/carousel-beta-min.js
deleted file mode 100644
index 375ad2b..0000000
--- a/eclipse.org-common/yui/2.6.0/build/carousel/carousel-beta-min.js
+++ /dev/null
@@ -1,11 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){var W;YAHOO.widget.Carousel=function(k,j){this._navBtns={};this._pages={};YAHOO.widget.Carousel.superclass.constructor.call(this,k,j);};var e=YAHOO.widget.Carousel,C=YAHOO.util.Dom,i=YAHOO.util.Event,R=YAHOO.lang;W="Carousel";var G={};var h="afterScroll";var F="beforeHide";var f="beforePageChange";var b="beforeScroll";var A="beforeShow";var V="blur";var D="focus";var O="hide";var Q="itemAdded";var J="itemRemoved";var d="itemSelected";var B="loadItems";var E="navigationStateChange";var U="pageChange";var T="render";var I="show";var c="startAutoPlay";var g="stopAutoPlay";function L(){var k=this._firstItem,j;if(k>=this.get("numItems")-1){if(this.get("isCircular")){j=0;}else{this.stopAutoPlay();}}else{j=k+this.get("numVisible");}this.scrollTo.call(this,j);}function a(k,j){var l=document.createElement(k);j=j||{};if(j.className){C.addClass(l,j.className);}if(j.parent){j.parent.appendChild(l);}if(j.id){l.setAttribute("id",j.id);}if(j.content){if(j.content.nodeName){l.appendChild(j.content);}else{l.innerHTML=j.content;}}return l;}function K(l,k,j){var n;function m(q,p){var r;r=parseInt(C.getStyle(q,p),10);return R.isNumber(r)?r:0;}function o(q,p){var r;r=parseFloat(C.getStyle(q,p));return R.isNumber(r)?r:0;}if(typeof j=="undefined"){j="int";}switch(k){case"height":n=l.offsetHeight;if(n>0){n+=m(l,"marginTop")+m(l,"marginBottom");}else{n=o(l,"height")+m(l,"marginTop")+m(l,"marginBottom")+m(l,"borderTopWidth")+m(l,"borderBottomWidth")+m(l,"paddingTop")+m(l,"paddingBottom");}break;case"width":n=l.offsetWidth;if(n>0){n+=m(l,"marginLeft")+m(l,"marginRight");}else{n=o(l,"width")+m(l,"marginLeft")+m(l,"marginRight")+m(l,"borderLeftWidth")+m(l,"borderRightWidth")+m(l,"paddingLeft")+m(l,"paddingRight");}break;default:if(j=="int"){n=m(l,k);if(k=="marginRight"&&YAHOO.env.ua.webkit){n=m(l,"marginLeft");}}else{if(j=="float"){n=o(l,k);}else{n=C.getStyle(l,k);}}break;}return n;}function Y(l){var m,k=0,j=false;if(this._itemsTable.numItems===0){return 0;}if(typeof l=="undefined"){if(this._itemsTable.size>0){return this._itemsTable.size;}}if(R.isUndefined(this._itemsTable.items[0])){return 0;}m=C.get(this._itemsTable.items[0].id);if(typeof l=="undefined"){j=this.get("isVertical");}else{j=l=="height";}if(j){k=K(m,"height");}else{k=K(m,"width");}if(typeof l=="undefined"){this._itemsTable.size=k;}return k;}function S(l){var k=0,j=0;k=Y.call(this);j=k*l;if(this.get("isVertical")){j-=l;}return j;}function H(){var n=this.get("firstVisible"),k=0,j=this.get("numItems"),l=this.get("numVisible"),m=this.get("revealAmount");k=n+l-1+(m?1:0);k=k>j-1?j-1:k;if(!this.getItem(n)||!this.getItem(k)){this.fireEvent(B,{ev:B,first:n,last:k,num:k-n});}}function N(j,k){k.scrollPageBackward();i.preventDefault(j);}function X(j,k){k.scrollPageForward();i.preventDefault(j);}function P(o,j){var r,t=this.CLASSES,k,q=this._firstItem,l=this.get("isCircular"),p=this.get("numItems"),s=this.get("numVisible"),n=j,m=q+s-1;r=s>1&&!l&&n>o;if(n>=0&&n<p){if(!R.isUndefined(this._itemsTable.items[n])){k=C.get(this._itemsTable.items[n].id);if(k){C.removeClass(k,t.SELECTED_ITEM);}}}if(R.isNumber(o)){o=parseInt(o,10);o=R.isNumber(o)?o:0;}else{o=q;}if(R.isUndefined(this._itemsTable.items[o])){this.scrollTo(o);}if(!R.isUndefined(this._itemsTable.items[o])){k=C.get(this._itemsTable.items[o].id);if(k){C.addClass(k,t.SELECTED_ITEM);}}if(o<q||o>m){if(r){this.scrollTo(q-s,true);}else{this.scrollTo(o);}}}function Z(){var l=false,k=this.CLASSES,n,j,m;j=this.get("navigation");m=this._firstItem+this.get("numVisible");if(j.prev){if(this._firstItem===0){if(!this.get("isCircular")){i.removeListener(j.prev,"click",N);C.addClass(j.prev,k.FIRST_NAV_DISABLED);for(n=0;n<this._navBtns.prev.length;n++){this._navBtns.prev[n].setAttribute("disabled","true");}this._prevEnabled=false;}else{l=!this._prevEnabled;}}else{l=!this._prevEnabled;}if(l){i.on(j.prev,"click",N,this);C.removeClass(j.prev,k.FIRST_NAV_DISABLED);for(n=0;n<this._navBtns.prev.length;n++){this._navBtns.prev[n].removeAttribute("disabled");}this._prevEnabled=true;}}l=false;if(j.next){if(m>=this.get("numItems")){if(!this.get("isCircular")){i.removeListener(j.next,"click",X);C.addClass(j.next,k.DISABLED);for(n=0;n<this._navBtns.next.length;n++){this._navBtns.next[n].setAttribute("disabled","true");}this._nextEnabled=false;}else{l=!this._nextEnabled;}}else{l=!this._nextEnabled;}if(l){i.on(j.next,"click",X,this);C.removeClass(j.next,k.DISABLED);for(n=0;n<this._navBtns.next.length;n++){this._navBtns.next[n].removeAttribute("disabled");}this._nextEnabled=true;}}this.fireEvent(E,{next:this._nextEnabled,prev:this._prevEnabled});}function M(q){var n,l,p,k,j,r,m;if(!R.isObject(q)){return ;}switch(q.ev){case Q:r=R.isUndefined(q.pos)?this._itemsTable.numItems-1:q.pos;if(!R.isUndefined(this._itemsTable.items[r])){p=this._itemsTable.items[r];if(p&&!R.isUndefined(p.id)){j=C.get(p.id);}}if(!j){n=this._createCarouselItem({className:p.className,content:p.item,id:p.id});if(R.isUndefined(q.pos)){if(!R.isUndefined(this._itemsTable.loading[r])){j=this._itemsTable.loading[r];}if(j){this._carouselEl.replaceChild(n,j);}else{this._carouselEl.appendChild(n);}}else{if(!R.isUndefined(this._itemsTable.items[q.pos+1])){m=C.get(this._itemsTable.items[q.pos+1].id);}if(m){this._carouselEl.insertBefore(n,m);}else{}}}else{if(R.isUndefined(q.pos)){if(!C.isAncestor(this._carouselEl,j)){this._carouselEl.appendChild(j);}}else{if(!C.isAncestor(this._carouselEl,j)){if(!R.isUndefined(this._itemsTable.items[q.pos+1])){this._carouselEl.insertBefore(j,C.get(this._itemsTable.items[q.pos+1].id));}}}}if(this._recomputeSize){this._setClipContainerSize();}break;case J:k=this.get("numItems");p=q.item;r=q.pos;if(p&&(n=C.get(p.id))){if(n&&C.isAncestor(this._carouselEl,n)){i.purgeElement(n,true);this._carouselEl.removeChild(n);}if(this.get("selectedItem")==r){r=r>=k?k-1:r;this.set("selectedItem",r);}}else{}break;case B:for(l=q.first;l<=q.last;l++){n=this._createCarouselItem({content:this.CONFIG.ITEM_LOADING,id:C.generateId()});if(n){if(!R.isUndefined(this._itemsTable.items[q.last+1])){m=C.get(this._itemsTable.items[q.last+1].id);
-if(m){this._carouselEl.insertBefore(n,m);}else{}}else{this._carouselEl.appendChild(n);}}this._itemsTable.loading[l]=n;}break;}}e.getById=function(j){return G[j]?G[j]:false;};YAHOO.extend(e,YAHOO.util.Element,{_carouselEl:null,_clipEl:null,_firstItem:0,_isAnimationInProgress:false,_itemsTable:null,_navBtns:null,_navEl:null,_nextEnabled:true,_pages:null,_prevEnabled:true,_recomputeSize:true,CLASSES:{BUTTON:"yui-carousel-button",CAROUSEL:"yui-carousel",CAROUSEL_EL:"yui-carousel-element",CONTAINER:"yui-carousel-container",CONTENT:"yui-carousel-content",DISABLED:"yui-carousel-button-disabled",FIRST_NAV:" yui-carousel-first-button",FIRST_NAV_DISABLED:"yui-carousel-first-button-disabled",FIRST_PAGE:"yui-carousel-nav-first-page",FOCUSSED_BUTTON:"yui-carousel-button-focus",HORIZONTAL:"yui-carousel-horizontal",NAVIGATION:"yui-carousel-nav",NEXT_PAGE:"yui-carousel-next",NAV_CONTAINER:"yui-carousel-buttons",PREV_PAGE:"yui-carousel-prev",SELECTED_ITEM:"yui-carousel-item-selected",SELECTED_NAV:"yui-carousel-nav-page-selected",VERTICAL:"yui-carousel-vertical",VERTICAL_CONTAINER:"yui-carousel-vertical-container",VISIBLE:"yui-carousel-visible"},CONFIG:{FIRST_VISIBLE:0,ITEM_LOADING:"<img "+'src="../../build/carousel/assets/ajax-loader.gif" '+'alt="Loading" '+'style="margin-top:-32px;position:relative;top:50%;">',ITEM_TAG_NAME:"LI",MAX_PAGER_BUTTONS:5,MIN_WIDTH:99,NUM_VISIBLE:3,TAG_NAME:"OL"},STRINGS:{NEXT_BUTTON_TEXT:"Next Page",PAGER_PREFIX_TEXT:"Go to page ",PREVIOUS_BUTTON_TEXT:"Previous Page"},addItem:function(p,k){var n,o,m,j,l=this.get("numItems");if(!p){return false;}if(R.isString(p)||p.nodeName){o=p.nodeName?p.innerHTML:p;}else{if(R.isObject(p)){o=p.content;}else{return false;}}n=p.className||"";j=p.id?p.id:C.generateId();if(R.isUndefined(k)){this._itemsTable.items.push({item:o,className:n,id:j});}else{if(k<0||k>=l){return false;}this._itemsTable.items.splice(k,0,{item:o,className:n,id:j});}this._itemsTable.numItems++;if(l<this._itemsTable.items.length){this.set("numItems",this._itemsTable.items.length);}this.fireEvent(Q,{pos:k,ev:Q});return true;},addItems:function(j){var k,m,l=true;if(!R.isArray(j)){return false;}for(k=0,m=j.length;k<m;k++){if(this.addItem(j[k][0],j[k][1])===false){l=false;}}return l;},blur:function(){this._carouselEl.blur();this.fireEvent(V);},clearItems:function(){var j=this.get("numItems");while(j>0){this.removeItem(0);j--;}},focus:function(){var j,s,k,m,n,r,p,o,l;if(this._isAnimationInProgress){return ;}j=this.get("selectedItem");s=this.get("numVisible");k=this.get("selectOnScroll");m=this.getItem(j);n=this.get("firstVisible");r=n+s-1;p=(j<n||j>r);o=(m&&m.id)?C.get(m.id):null;l=this._itemsTable;if(!k&&p){o=(l&&l.items&&l.items[n])?C.get(l.items[n].id):null;}if(o){try{o.focus();}catch(q){}}this.fireEvent(D);},hide:function(){if(this.fireEvent(F)!==false){this.removeClass(this.CLASSES.VISIBLE);this.fireEvent(O);}},init:function(l,k){var j=l,m=false;if(!l){return ;}this._itemsTable={loading:{},numItems:0,items:[],size:0};if(R.isString(l)){l=C.get(l);}else{if(!l.nodeName){return ;}}if(l){if(!l.id){l.setAttribute("id",C.generateId());}this._parseCarousel(l);m=true;}else{l=this._createCarousel(j);}j=l.id;e.superclass.init.call(this,l,k);this.initEvents();if(m){this._parseCarouselItems();}if(!k||typeof k.isVertical=="undefined"){this.set("isVertical",false);}this._parseCarouselNavigation(l);this._navEl=this._setupCarouselNavigation();G[j]=this;H.call(this);},initAttributes:function(j){j=j||{};e.superclass.initAttributes.call(this,j);this.setAttributeConfig("currentPage",{readOnly:true,value:0});this.setAttributeConfig("firstVisible",{method:this._setFirstVisible,validator:this._validateFirstVisible,value:j.firstVisible||this.CONFIG.FIRST_VISIBLE});this.setAttributeConfig("selectOnScroll",{validator:R.isBoolean,value:j.selectOnScroll||true});this.setAttributeConfig("numVisible",{method:this._setNumVisible,validator:this._validateNumVisible,value:j.numVisible||this.CONFIG.NUM_VISIBLE});this.setAttributeConfig("numItems",{method:this._setNumItems,validator:this._validateNumItems,value:this._itemsTable.numItems});this.setAttributeConfig("scrollIncrement",{validator:this._validateScrollIncrement,value:j.scrollIncrement||1});this.setAttributeConfig("selectedItem",{method:this._setSelectedItem,validator:R.isNumber,value:0});this.setAttributeConfig("revealAmount",{method:this._setRevealAmount,validator:this._validateRevealAmount,value:j.revealAmount||0});this.setAttributeConfig("isCircular",{validator:R.isBoolean,value:j.isCircular||false});this.setAttributeConfig("isVertical",{method:this._setOrientation,validator:R.isBoolean,value:j.isVertical||false});this.setAttributeConfig("navigation",{method:this._setNavigation,validator:this._validateNavigation,value:j.navigation||{prev:null,next:null,page:null}});this.setAttributeConfig("animation",{validator:this._validateAnimation,value:j.animation||{speed:0,effect:null}});this.setAttributeConfig("autoPlay",{validator:R.isNumber,value:j.autoPlay||0});},initEvents:function(){var j=this.CLASSES;this.on("keydown",this._keyboardEventHandler);this.subscribe(h,Z);this.on(h,this.focus);this.subscribe(Q,M);this.subscribe(Q,Z);this.subscribe(J,M);this.subscribe(J,Z);this.on(d,this.focus);this.subscribe(B,M);this.subscribe(U,this._syncPagerUI);this.subscribe(T,Z);this.subscribe(T,this._syncPagerUI);this.on("selectedItemChange",function(k){P.call(this,k.newValue,k.prevValue);this._updateTabIndex(this.getElementForItem(k.newValue));this.fireEvent(d,k.newValue);});this.on("firstVisibleChange",function(k){if(!this.get("selectOnScroll")){this._updateTabIndex(this.getElementForItem(k.newValue));}});this.on("click",this._itemClickHandler);this.on("click",this._pagerClickHandler);i.onFocus(this.get("element"),function(k,l){l._updateNavButtons(i.getTarget(k),true);},this);i.onBlur(this.get("element"),function(k,l){l._updateNavButtons(i.getTarget(k),false);},this);},getElementForItem:function(j){if(j<0||j>=this.get("numItems")){return null;}if(this._itemsTable.numItems>j){if(!R.isUndefined(this._itemsTable.items[j])){return C.get(this._itemsTable.items[j].id);
-}}return null;},getElementForItems:function(){var k=[],j;for(j=0;j<this._itemsTable.numItems;j++){k.push(this.getElementForItem(j));}return k;},getItem:function(j){if(j<0||j>=this.get("numItems")){return null;}if(this._itemsTable.numItems>j){if(!R.isUndefined(this._itemsTable.items[j])){return this._itemsTable.items[j];}}return null;},getItems:function(j){return this._itemsTable.items;},getItemPositionById:function(l){var j=0,k=this._itemsTable.numItems;while(j<k){if(!R.isUndefined(this._itemsTable.items[j])){if(this._itemsTable.items[j].id==l){return j;}}j++;}return -1;},removeItem:function(k){var l,j=this.get("numItems");if(k<0||k>=j){return false;}l=this._itemsTable.items.splice(k,1);if(l&&l.length==1){this.set("numItems",j-1);this.fireEvent(J,{item:l[0],pos:k,ev:J});return true;}return false;},render:function(l){var k=this.CONFIG,j=this.CLASSES,m;this.addClass(j.CAROUSEL);if(!this._clipEl){this._clipEl=this._createCarouselClip();this._clipEl.appendChild(this._carouselEl);}if(l){this.appendChild(this._clipEl);this.appendTo(l);this._setClipContainerSize();}else{if(!C.inDocument(this.get("element"))){return false;}this.appendChild(this._clipEl);}if(this.get("isVertical")){m=Y.call(this);m=m<k.MIN_WIDTH?k.MIN_WIDTH:m;this.setStyle("width",m+"px");this.addClass(j.VERTICAL);}else{this.addClass(j.HORIZONTAL);}if(this.get("numItems")<1){return false;}this.set("selectedItem",this.get("firstVisible"));this.fireEvent(T);this._setContainerSize();return true;},scrollBackward:function(){this.scrollTo(this._firstItem-this.get("scrollIncrement"));},scrollForward:function(){this.scrollTo(this._firstItem+this.get("scrollIncrement"));},scrollPageBackward:function(){this.scrollTo(this._firstItem-this.get("numVisible"));},scrollPageForward:function(){this.scrollTo(this._firstItem+this.get("numVisible"));},scrollTo:function(x,v){var u,m,j,w=this.get("animation"),p=this.get("isCircular"),y,z,AA=this._firstItem,t,s=this.get("numItems"),k=this.get("numVisible"),n,l=this.get("currentPage"),o,r,q;if(x==AA){return ;}if(this._isAnimationInProgress){return ;}if(x<0){if(p){x=s+x;}else{return ;}}else{if(x>s-1){if(this.get("isCircular")){x=s-x;}else{return ;}}}z=(this._firstItem>x)?"backward":"forward";r=AA+k;r=(r>s-1)?s-1:r;o=this.fireEvent(b,{dir:z,first:AA,last:r});if(o===false){return ;}this.fireEvent(f,{page:l});y=AA-x;this._firstItem=x;this.set("firstVisible",x);H.call(this);r=x+k;r=(r>s-1)?s-1:r;q=this.get("isVertical")?"top":"left";n=S.call(this,y);m=w.speed>0;if(m){this._isAnimationInProgress=true;if(this.get("isVertical")){j={points:{by:[0,n]}};}else{j={points:{by:[n,0]}};}u=new YAHOO.util.Motion(this._carouselEl,j,w.speed,w.effect);u.onComplete.subscribe(function(AB){var AC=this.get("firstVisible");this._isAnimationInProgress=false;this.fireEvent(h,{first:AC,last:r});},null,this);u.animate();u=null;}else{n+=K(this._carouselEl,q);C.setStyle(this._carouselEl,q,n+"px");}t=parseInt(this._firstItem/k,10);if(t!=l){this.setAttributeConfig("currentPage",{value:t});this.fireEvent(U,t);}if(!v){if(this.get("selectOnScroll")){if(x!=this._selectedItem){this.set("selectedItem",this._getSelectedItem(x));}}}delete this._autoPlayTimer;if(this.get("autoPlay")>0){this.startAutoPlay();}if(!m){this.fireEvent(h,{first:x,last:r});}},show:function(){var j=this.CLASSES;if(this.fireEvent(A)!==false){this.addClass(j.VISIBLE);this.fireEvent(I);}},startAutoPlay:function(){var j=this,k=this.get("autoPlay");if(k>0){if(!R.isUndefined(this._autoPlayTimer)){return ;}this.fireEvent(c);this._autoPlayTimer=setTimeout(function(){L.call(j);},k);}},stopAutoPlay:function(){if(!R.isUndefined(this._autoPlayTimer)){clearTimeout(this._autoPlayTimer);delete this._autoPlayTimer;this.set("autoPlay",0);this.fireEvent(g);}},toString:function(){return W+(this.get?" (#"+this.get("id")+")":"");},_createCarousel:function(k){var j=this.CLASSES;var l=a("DIV",{className:j.CAROUSEL,id:k});if(!this._carouselEl){this._carouselEl=a(this.CONFIG.TAG_NAME,{className:j.CAROUSEL_EL});}return l;},_createCarouselClip:function(){var j=a("DIV",{className:this.CLASSES.CONTENT});this._setClipContainerSize(j);return j;},_createCarouselItem:function(j){return a(this.CONFIG.ITEM_TAG_NAME,{className:j.className,content:j.content,id:j.id});},_getSelectedItem:function(m){var j=this.get("isCircular"),l=this.get("numItems"),k=l-1;if(m<0){if(j){m=l+m;}else{m=this.get("selectedItem");}}else{if(m>k){if(j){m=m-l;}else{m=this.get("selectedItem");}}}return m;},_itemClickHandler:function(m){var j=this.get("element"),k,l,n=YAHOO.util.Event.getTarget(m);while(n&&n!=j&&n.id!=this._carouselEl){k=n.nodeName;if(k.toUpperCase()==this.CONFIG.ITEM_TAG_NAME){break;}n=n.parentNode;}if((l=this.getItemPositionById(n.id))>=0){this.set("selectedItem",this._getSelectedItem(l));}},_keyboardEventHandler:function(m){var l=i.getCharCode(m),k=false,j=0,n;if(this._isAnimationInProgress){return ;}switch(l){case 37:case 38:n=this.get("selectedItem");if(n==this._firstItem){j=n-this.get("numVisible");this.scrollTo(j);this.set("selectedItem",this._getSelectedItem(n-1));}else{j=this.get("selectedItem")-this.get("scrollIncrement");this.set("selectedItem",this._getSelectedItem(j));}k=true;break;case 39:case 40:j=this.get("selectedItem")+this.get("scrollIncrement");this.set("selectedItem",this._getSelectedItem(j));k=true;break;case 33:this.scrollPageBackward();k=true;break;case 34:this.scrollPageForward();k=true;break;}if(k){i.preventDefault(m);}},_pagerClickHandler:function(j){var m,k,l;k=i.getTarget(j);l=k.href||k.value;if(R.isString(l)&&l){m=l.lastIndexOf("#");if(m!=-1){l=this.getItemPositionById(l.substring(m+1));this.scrollTo(l);i.preventDefault(j);}}},_parseCarousel:function(k){var n,j,m,l;j=this.CLASSES;m=false;for(n=k.firstChild;n;n=n.nextSibling){if(n.nodeType==1){l=n.nodeName;if(l.toUpperCase()==this.CONFIG.TAG_NAME){this._carouselEl=n;C.addClass(this._carouselEl,this.CLASSES.CAROUSEL_EL);m=true;}}}return m;},_parseCarouselItems:function(){var m,j,l,k=this._carouselEl;for(m=k.firstChild;m;m=m.nextSibling){if(m.nodeType==1){l=m.nodeName;
-if(l.toUpperCase()==this.CONFIG.ITEM_TAG_NAME){if(m.id){j=m.id;}else{j=C.generateId();m.setAttribute("id",j);}this.addItem(m);}}}},_parseCarouselNavigation:function(p){var l,k=this.CLASSES,o,n,m,q,r=false;q=C.getElementsByClassName(k.PREV_PAGE,"*",p);if(q.length>0){for(n in q){if(q.hasOwnProperty(n)){o=q[n];if(o.nodeName=="INPUT"||o.nodeName=="BUTTON"){if(typeof this._navBtns.prev=="undefined"){this._navBtns.prev=[];}this._navBtns.prev.push(o);}else{m=o.getElementsByTagName("INPUT");if(R.isArray(m)&&m.length>0){this._navBtns.prev.push(m[0]);}else{m=o.getElementsByTagName("BUTTON");if(R.isArray(m)&&m.length>0){this._navBtns.prev.push(m[0]);}}}}}l={prev:q};}q=C.getElementsByClassName(k.NEXT_PAGE,"*",p);if(q.length>0){for(n in q){if(q.hasOwnProperty(n)){o=q[n];if(o.nodeName=="INPUT"||o.nodeName=="BUTTON"){if(typeof this._navBtns.next=="undefined"){this._navBtns.next=[];}this._navBtns.next.push(o);}else{m=o.getElementsByTagName("INPUT");if(R.isArray(m)&&m.length>0){this._navBtns.next.push(m[0]);}else{m=o.getElementsByTagName("BUTTON");if(R.isArray(m)&&m.length>0){this._navBtns.next.push(m[0]);}}}}}if(l){l.next=q;}else{l={next:q};}}if(l){this.set("navigation",l);r=true;}return r;},_setupCarouselNavigation:function(){var m,k,j,q,n,p,o,l;j=this.CLASSES;n=C.getElementsByClassName(j.NAVIGATION,"DIV",this.get("element"));if(n.length===0){n=a("DIV",{className:j.NAVIGATION});this.insertBefore(n,C.getFirstChild(this.get("element")));}else{n=n[0];}this._pages.el=a("UL");n.appendChild(this._pages.el);q=this.get("navigation");if(q.prev&&q.prev.length>0){n.appendChild(q.prev[0]);}else{l=a("SPAN",{className:j.BUTTON+j.FIRST_NAV});C.setStyle(l,"visibility","visible");m=C.generateId();l.innerHTML='<input type="button" '+'id="'+m+'" '+'value="'+this.STRINGS.PREVIOUS_BUTTON_TEXT+'" '+'name="'+this.STRINGS.PREVIOUS_BUTTON_TEXT+'">';n.appendChild(l);m=C.get(m);this._navBtns.prev=[m];k={prev:[l]};}if(q.next&&q.next.length>0){n.appendChild(q.next[0]);}else{p=a("SPAN",{className:j.BUTTON});C.setStyle(p,"visibility","visible");m=C.generateId();p.innerHTML='<input type="button" '+'id="'+m+'" '+'value="'+this.STRINGS.NEXT_BUTTON_TEXT+'" '+'name="'+this.STRINGS.NEXT_BUTTON_TEXT+'">';n.appendChild(p);m=C.get(m);this._navBtns.next=[m];if(k){k.next=[p];}else{k={next:[p]};}}if(k){this.set("navigation",k);}return n;},_setClipContainerSize:function(k,m){var n,j,o,p,q,r,l;o=this.get("isVertical");q=this.get("revealAmount");l=o?"height":"width";n=o?"top":"left";k=k||this._clipEl;if(!k){return ;}m=m||this.get("numVisible");p=Y.call(this,l);r=p*m;this._recomputeSize=(r===0);if(this._recomputeSize){return ;}if(q>0){q=p*(q/100)*2;r+=q;j=parseFloat(C.getStyle(this._carouselEl,n));j=R.isNumber(j)?j:0;C.setStyle(this._carouselEl,n,j+(q/2)+"px");}if(o){r+=K(this._carouselEl,"marginTop")+K(this._carouselEl,"marginBottom")+K(this._carouselEl,"paddingTop")+K(this._carouselEl,"paddingBottom")+K(this._carouselEl,"borderTop")+K(this._carouselEl,"borderBottom");C.setStyle(k,l,(r-(m-1))+"px");}else{r+=K(this._carouselEl,"marginLeft")+K(this._carouselEl,"marginRight")+K(this._carouselEl,"paddingLeft")+K(this._carouselEl,"paddingRight")+K(this._carouselEl,"borderLeft")+K(this._carouselEl,"borderRight");C.setStyle(k,l,r+"px");}this._setContainerSize(k);},_setContainerSize:function(l,j){var m,k;m=this.get("isVertical");l=l||this._clipEl;j=j||(m?"height":"width");k=parseFloat(C.getStyle(l,j),10);k=R.isNumber(k)?k:0;k+=K(l,"marginLeft")+K(l,"marginRight")+K(l,"paddingLeft")+K(l,"paddingRight")+K(l,"borderLeft")+K(l,"borderRight");if(m){k+=K(this._navEl,"height");}this.setStyle(j,k+"px");},_setFirstVisible:function(j){if(j>=0&&j<this.get("numItems")){this.scrollTo(j);}else{j=this.get("firstVisible");}return j;},_setNavigation:function(j){if(j.prev){i.on(j.prev,"click",N,this);}if(j.next){i.on(j.next,"click",X,this);}},_setNumVisible:function(j){if(j>1&&j<this.get("numItems")){this._setClipContainerSize(this._clipEl,j);}else{j=this.get("numVisible");}return j;},_setNumItems:function(k){var j=this._itemsTable.numItems;if(R.isArray(this._itemsTable.items)){if(this._itemsTable.items.length!=j){j=this._itemsTable.items.length;this._itemsTable.numItems=j;}}if(k<j){while(j>k){this.removeItem(j-1);j--;}}return k;},_setOrientation:function(k){var j=this.CLASSES;if(k){this.replaceClass(j.HORIZONTAL,j.VERTICAL);}else{this.replaceClass(j.VERTICAL,j.HORIZONTAL);}this._itemsTable.size=0;return k;},_setRevealAmount:function(j){if(j>=0&&j<=100){j=parseInt(j,10);j=R.isNumber(j)?j:0;this._setClipContainerSize();}else{j=this.get("revealAmount");}return j;},_setSelectedItem:function(j){this._selectedItem=j;},_syncPagerUI:function(p){var k,j=this.CLASSES,n,m="",l,o=this.get("numVisible");p=p||0;l=Math.ceil(this.get("numItems")/o);this._pages.num=l;this._pages.cur=p;if(l>this.CONFIG.MAX_PAGER_BUTTONS){m="<form><select>";}else{m="";}for(n=0;n<l;n++){if(R.isUndefined(this._itemsTable.items[n*o])){break;}k=this._itemsTable.items[n*o].id;if(l>this.CONFIG.MAX_PAGER_BUTTONS){m+='<option value="#'+k+'" '+(n==p?" selected":"")+">"+this.STRINGS.PAGER_PREFIX_TEXT+" "+(n+1)+"</option>";}else{m+='<li class="'+(n===0?j.FIRST_PAGE:"")+(n==p?" "+j.SELECTED_NAV:"")+'"><a href="#'+k+'" tabindex="0"><em>'+this.STRINGS.PAGER_PREFIX_TEXT+" "+(n+1)+"</em></a></li>";}}if(l>this.CONFIG.MAX_PAGER_BUTTONS){m+="</select></form>";}this._pages.el.innerHTML=m;m=null;},_updateNavButtons:function(n,k){var l,j=this.CLASSES,o,m=n.parentNode;if(!m){return ;}o=m.parentNode;if(n.nodeName.toUpperCase()=="INPUT"&&C.hasClass(m,j.BUTTON)){if(k){if(o){l=C.getChildren(o);if(l){C.removeClass(l,j.FOCUSSED_BUTTON);}}C.addClass(m,j.FOCUSSED_BUTTON);}else{C.removeClass(m,j.FOCUSSED_BUTTON);}}},_updateTabIndex:function(j){if(j){if(this._focusableItemEl){this._focusableItemEl.tabIndex=-1;}this._focusableItemEl=j;j.tabIndex=0;}},_validateAnimation:function(j){var k=true;if(R.isObject(j)){if(j.speed){k=k&&R.isNumber(j.speed);}if(j.effect){k=k&&R.isFunction(j.effect);}else{if(!R.isUndefined(YAHOO.util.Easing)){j.effect=YAHOO.util.Easing.easeOut;
-}}}else{k=false;}return k;},_validateFirstVisible:function(j){var k=false;if(R.isNumber(j)){k=(j>=0&&j<this.get("numItems"));}return k;},_validateNavigation:function(j){var k;if(!R.isObject(j)){return false;}if(j.prev){if(!R.isArray(j.prev)){return false;}for(k in j.prev){if(j.prev.hasOwnProperty(k)){if(!R.isString(j.prev[k].nodeName)){return false;}}}}if(j.next){if(!R.isArray(j.next)){return false;}for(k in j.next){if(j.next.hasOwnProperty(k)){if(!R.isString(j.next[k].nodeName)){return false;}}}}return true;},_validateNumItems:function(j){var k=false;if(R.isNumber(j)){k=j>0;}return k;},_validateNumVisible:function(j){var k=false;if(R.isNumber(j)){k=j>0&&j<this.get("numItems");}return k;},_validateRevealAmount:function(j){var k=false;if(R.isNumber(j)){k=j>=0&&j<100;}return k;},_validateScrollIncrement:function(j){var k=false;if(R.isNumber(j)){k=(j>0&&j<this.get("numItems"));}return k;}});})();YAHOO.register("carousel",YAHOO.widget.Carousel,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/carousel/carousel-beta.js b/eclipse.org-common/yui/2.6.0/build/carousel/carousel-beta.js
deleted file mode 100644
index 7c3bb8d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/carousel/carousel-beta.js
+++ /dev/null
@@ -1,2913 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The Carousel module provides a widget for browsing among a set of like
- * objects represented pictorially.
- *
- * @module carousel
- * @requires yahoo, dom, event, element
- * @optional animation
- * @namespace YAHOO.widget
- * @title Carousel Widget
- */
-(function () {
-
-    var WidgetName;             // forward declaration
-
-    /**
-     * The Carousel widget.
-     *
-     * @class Carousel
-     * @extends YAHOO.util.Element
-     * @constructor
-     * @param el {HTMLElement | String} The HTML element that represents the
-     * the container that houses the Carousel.
-     * @param cfg {Object} (optional) The configuration values
-     */
-    YAHOO.widget.Carousel = function (el, cfg) {
-
-        this._navBtns = {};
-        this._pages = {};
-
-        YAHOO.widget.Carousel.superclass.constructor.call(this, el, cfg);
-    };
-
-    /*
-     * Private variables of the Carousel component
-     */
-
-    /* Some abbreviations to avoid lengthy typing and lookups. */
-    var Carousel    = YAHOO.widget.Carousel,
-        Dom         = YAHOO.util.Dom,
-        Event       = YAHOO.util.Event,
-        JS          = YAHOO.lang;
-
-    /**
-     * The widget name.
-     * @private
-     * @static
-     */
-    WidgetName = "Carousel";
-
-    /**
-     * The internal table of Carousel instances.
-     * @private
-     * @static
-     */
-    var instances = {};
-
-    /*
-     * Custom events of the Carousel component
-     */
-
-    /**
-     * @event afterScroll
-     * @description Fires when the Carousel has scrolled to the previous or
-     * next page.  Passes back the index of the first and last visible items in
-     * the Carousel.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var afterScrollEvent = "afterScroll";
-
-    /**
-     * @event beforeHide
-     * @description Fires before the Carousel is hidden.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var beforeHideEvent = "beforeHide";
-
-    /**
-     * @event beforePageChange
-     * @description Fires when the Carousel is about to scroll to the previous
-     * or next page.  Passes back the page number of the current page.  Note
-     * that the first page number is zero.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var beforePageChangeEvent = "beforePageChange";
-
-    /**
-     * @event beforeScroll
-     * @description Fires when the Carousel is about to scroll to the previous
-     * or next page.  Passes back the index of the first and last visible items
-     * in the Carousel and the direction (backward/forward) of the scroll.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var beforeScrollEvent = "beforeScroll";
-
-    /**
-     * @event beforeShow
-     * @description Fires when the Carousel is about to be shown.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var beforeShowEvent = "beforeShow";
-
-    /**
-     * @event blur
-     * @description Fires when the Carousel loses focus.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var blurEvent = "blur";
-
-    /**
-     * @event focus
-     * @description Fires when the Carousel gains focus.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var focusEvent = "focus";
-
-    /**
-     * @event hide
-     * @description Fires when the Carousel is hidden.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var hideEvent = "hide";
-
-    /**
-     * @event itemAdded
-     * @description Fires when an item has been added to the Carousel.  Passes
-     * back the content of the item that would be added, the index at which the
-     * item would be added, and the event itself.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var itemAddedEvent = "itemAdded";
-
-    /**
-     * @event itemRemoved
-     * @description Fires when an item has been removed from the Carousel.
-     * Passes back the content of the item that would be removed, the index
-     * from which the item would be removed, and the event itself.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var itemRemovedEvent = "itemRemoved";
-
-    /**
-     * @event itemSelected
-     * @description Fires when an item has been selected in the Carousel.
-     * Passes back the index of the selected item in the Carousel.  Note, that
-     * the index begins from zero.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var itemSelectedEvent = "itemSelected";
-
-    /**
-     * @event loadItems
-     * @description Fires when the Carousel needs more items to be loaded for
-     * displaying them.  Passes back the first and last visible items in the
-     * Carousel, and the number of items needed to be loaded.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var loadItemsEvent = "loadItems";
-
-    /**
-     * @event navigationStateChange
-     * @description Fires when the state of either one of the navigation
-     * buttons are changed from enabled to disabled or vice versa.  Passes back
-     * the state (true/false) of the previous and next buttons.  The value true
-     * signifies the button is enabled, false signifies disabled.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var navigationStateChangeEvent = "navigationStateChange";
-
-    /**
-     * @event pageChange
-     * @description Fires after the Carousel has scrolled to the previous or
-     * next page.  Passes back the page number of the current page.  Note
-     * that the first page number is zero.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var pageChangeEvent = "pageChange";
-
-    /**
-     * @event render
-     * @description Fires when the Carousel is rendered.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var renderEvent = "render";
-
-    /**
-     * @event show
-     * @description Fires when the Carousel is shown.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var showEvent = "show";
-
-    /**
-     * @event startAutoPlay
-     * @description Fires when the auto play has started in the Carousel.  See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var startAutoPlayEvent = "startAutoPlay";
-
-    /**
-     * @event stopAutoPlay
-     * @description Fires when the auto play has been stopped in the Carousel.
-     * See
-     * <a href="YAHOO.util.Element.html#addListener">Element.addListener</a>
-     * for more information on listening for this event.
-     * @type YAHOO.util.CustomEvent
-     */
-    var stopAutoPlayEvent = "stopAutoPlay";
-
-    /*
-     * Private helper functions used by the Carousel component
-     */
-
-    /**
-     * Automatically scroll the contents of the Carousel.
-     * @method autoScroll
-     * @private
-     */
-    function autoScroll() {
-        var currIndex = this._firstItem,
-            index;
-
-        if (currIndex >= this.get("numItems") - 1) {
-            if (this.get("isCircular")) {
-                index = 0;
-            } else {
-                this.stopAutoPlay();
-            }
-        } else {
-            index = currIndex + this.get("numVisible");
-        }
-        this.scrollTo.call(this, index);
-    }
-
-    /**
-     * Create an element, set its class name and optionally install the element
-     * to its parent.
-     * @method createElement
-     * @param el {String} The element to be created
-     * @param attrs {Object} Configuration of parent, class and id attributes.
-     * If the content is specified, it is inserted after creation of the
-     * element. The content can also be an HTML element in which case it would
-     * be appended as a child node of the created element.
-     * @private
-     */
-    function createElement(el, attrs) {
-        var newEl = document.createElement(el);
-
-        attrs = attrs || {};
-        if (attrs.className) {
-            Dom.addClass(newEl, attrs.className);
-        }
-
-        if (attrs.parent) {
-            attrs.parent.appendChild(newEl);
-        }
-
-        if (attrs.id) {
-            newEl.setAttribute("id", attrs.id);
-        }
-
-        if (attrs.content) {
-            if (attrs.content.nodeName) {
-                newEl.appendChild(attrs.content);
-            } else {
-                newEl.innerHTML = attrs.content;
-            }
-        }
-
-        return newEl;
-    }
-
-    /**
-     * Get the computed style of an element.
-     *
-     * @method getStyle
-     * @param el {HTMLElement} The element for which the style needs to be
-     * returned.
-     * @param style {String} The style attribute
-     * @param type {String} "int", "float", etc. (defaults to int)
-     * @private
-     */
-    function getStyle(el, style, type) {
-        var value;
-
-        function getStyleIntVal(el, style) {
-            var val;
-
-            val = parseInt(Dom.getStyle(el, style), 10);
-            return JS.isNumber(val) ? val : 0;
-        }
-
-        function getStyleFloatVal(el, style) {
-            var val;
-
-            val = parseFloat(Dom.getStyle(el, style));
-            return JS.isNumber(val) ? val : 0;
-        }
-
-        if (typeof type == "undefined") {
-            type = "int";
-        }
-
-        switch (style) {
-        case "height":
-            value = el.offsetHeight;
-            if (value > 0) {
-                value += getStyleIntVal(el, "marginTop")        +
-                        getStyleIntVal(el, "marginBottom");
-            } else {
-                value = getStyleFloatVal(el, "height")          +
-                        getStyleIntVal(el, "marginTop")         +
-                        getStyleIntVal(el, "marginBottom")      +
-                        getStyleIntVal(el, "borderTopWidth")    +
-                        getStyleIntVal(el, "borderBottomWidth") +
-                        getStyleIntVal(el, "paddingTop")        +
-                        getStyleIntVal(el, "paddingBottom");
-            }
-            break;
-        case "width":
-            value = el.offsetWidth;
-            if (value > 0) {
-                value += getStyleIntVal(el, "marginLeft")       +
-                        getStyleIntVal(el, "marginRight");
-            } else {
-                value = getStyleFloatVal(el, "width")           +
-                        getStyleIntVal(el, "marginLeft")        +
-                        getStyleIntVal(el, "marginRight")       +
-                        getStyleIntVal(el, "borderLeftWidth")   +
-                        getStyleIntVal(el, "borderRightWidth")  +
-                        getStyleIntVal(el, "paddingLeft")       +
-                        getStyleIntVal(el, "paddingRight");
-            }
-            break;
-        default:
-            if (type == "int") {
-                value = getStyleIntVal(el, style);
-                // XXX: Safari calculates incorrect marginRight for an element
-                // which has its parent element style set to overflow: hidden
-                // https://bugs.webkit.org/show_bug.cgi?id=13343
-                // Let us assume marginLeft == marginRight
-                if (style == "marginRight" && YAHOO.env.ua.webkit) {
-                    value = getStyleIntVal(el, "marginLeft");
-                }
-            } else if (type == "float") {
-                value = getStyleFloatVal(el, style);
-            } else {
-                value = Dom.getStyle(el, style);
-            }
-            break;
-        }
-
-        return value;
-    }
-
-    /**
-     * Compute and return the height or width of a single Carousel item
-     * depending upon the orientation.
-     *
-     * @method getCarouselItemSize
-     * @param which {String} "height" or "width" to be returned.  If this is
-     * passed explicitly, the calculated size is not cached.
-     * @private
-     */
-    function getCarouselItemSize(which) {
-        var child,
-            size     = 0,
-            vertical = false;
-
-        if (this._itemsTable.numItems === 0) {
-            return 0;
-        }
-
-        if (typeof which == "undefined") {
-            if (this._itemsTable.size > 0) {
-                return this._itemsTable.size;
-            }
-        }
-
-        if (JS.isUndefined(this._itemsTable.items[0])) {
-            return 0;
-        }
-
-        child = Dom.get(this._itemsTable.items[0].id);
-
-        if (typeof which == "undefined") {
-            vertical = this.get("isVertical");
-        } else {
-            vertical = which == "height";
-        }
-
-        if (vertical) {
-            size = getStyle(child, "height");
-        } else {
-            size = getStyle(child, "width");
-        }
-
-        if (typeof which == "undefined") {
-            this._itemsTable.size = size; // save the size for later
-        }
-
-        return size;
-    }
-
-    /**
-     * Return the scrolling offset size given the number of elements to
-     * scroll.
-     *
-     * @method getScrollOffset
-     * @param delta {Number} The delta number of elements to scroll by.
-     * @private
-     */
-    function getScrollOffset(delta) {
-        var itemSize = 0,
-            size     = 0;
-
-        itemSize = getCarouselItemSize.call(this);
-        size     = itemSize * delta;
-
-        // XXX: really, when the orientation is vertical, the scrolling
-        // is not exactly the number of elements into element size.
-        if (this.get("isVertical")) {
-            size -= delta;
-        }
-
-        return size;
-    }
-
-    /**
-     * The load the required set of items that are needed for display.
-     *
-     * @method loadItems
-     * @private
-     */
-    function loadItems() {
-        var first      = this.get("firstVisible"),
-            last       = 0,
-            numItems   = this.get("numItems"),
-            numVisible = this.get("numVisible"),
-            reveal     = this.get("revealAmount");
-
-        last = first + numVisible - 1 + (reveal ? 1 : 0);
-        last = last > numItems - 1 ? numItems - 1 : last;
-
-        if (!this.getItem(first) || !this.getItem(last)) {
-            this.fireEvent(loadItemsEvent, {
-                    ev: loadItemsEvent,
-                    first: first, last: last,
-                    num: last - first
-            });
-        }
-    }
-
-    /**
-     * Scroll the Carousel by a page backward.
-     *
-     * @method scrollPageBackward
-     * @param {Event} ev The event object
-     * @param {Object} obj The context object
-     * @private
-     */
-    function scrollPageBackward(ev, obj) {
-        obj.scrollPageBackward();
-        Event.preventDefault(ev);
-    }
-
-    /**
-     * Scroll the Carousel by a page forward.
-     *
-     * @method scrollPageForward
-     * @param {Event} ev The event object
-     * @param {Object} obj The context object
-     * @private
-     */
-    function scrollPageForward(ev, obj) {
-        obj.scrollPageForward();
-        Event.preventDefault(ev);
-    }
-
-    /**
-     * Set the selected item.
-     *
-     * @method setItemSelection
-     * @param {Number} newposition The index of the new position
-     * @param {Number} oldposition The index of the previous position
-     * @private
-     */
-     function setItemSelection(newposition, oldposition) {
-        var backwards,
-            cssClass   = this.CLASSES,
-            el,
-            firstItem  = this._firstItem,
-            isCircular = this.get("isCircular"),
-            numItems   = this.get("numItems"),
-            numVisible = this.get("numVisible"),
-            position   = oldposition,
-            sentinel   = firstItem + numVisible - 1;
-
-        backwards = numVisible > 1 && !isCircular && position > newposition;
-
-        if (position >= 0 && position < numItems) {
-            if (!JS.isUndefined(this._itemsTable.items[position])) {
-                el = Dom.get(this._itemsTable.items[position].id);
-                if (el) {
-                    Dom.removeClass(el, cssClass.SELECTED_ITEM);
-                }
-            }
-        }
-
-        if (JS.isNumber(newposition)) {
-            newposition = parseInt(newposition, 10);
-            newposition = JS.isNumber(newposition) ? newposition : 0;
-        } else {
-            newposition = firstItem;
-        }
-
-        if (JS.isUndefined(this._itemsTable.items[newposition])) {
-            this.scrollTo(newposition); // still loading the item
-        }
-
-        if (!JS.isUndefined(this._itemsTable.items[newposition])) {
-            el = Dom.get(this._itemsTable.items[newposition].id);
-            if (el) {
-                Dom.addClass(el, cssClass.SELECTED_ITEM);
-            }
-        }
-
-        if (newposition < firstItem || newposition > sentinel) {
-            // out of focus
-            if (backwards) {
-                this.scrollTo(firstItem - numVisible, true);
-            } else {
-                this.scrollTo(newposition);
-            }
-        }
-    }
-
-    /**
-     * Fire custom events for enabling/disabling navigation elements.
-     *
-     * @method syncNavigation
-     * @private
-     */
-    function syncNavigation() {
-        var attach   = false,
-            cssClass = this.CLASSES,
-            i,
-            navigation,
-            sentinel;
-
-        navigation = this.get("navigation");
-        sentinel   = this._firstItem + this.get("numVisible");
-
-        if (navigation.prev) {
-            if (this._firstItem === 0) {
-                if (!this.get("isCircular")) {
-                    Event.removeListener(navigation.prev, "click",
-                            scrollPageBackward);
-                    Dom.addClass(navigation.prev, cssClass.FIRST_NAV_DISABLED);
-                    for (i = 0; i < this._navBtns.prev.length; i++) {
-                        this._navBtns.prev[i].setAttribute("disabled", "true");
-                    }
-                    this._prevEnabled = false;
-                } else {
-                    attach = !this._prevEnabled;
-                }
-            } else {
-                attach = !this._prevEnabled;
-            }
-
-            if (attach) {
-                Event.on(navigation.prev, "click", scrollPageBackward, this);
-                Dom.removeClass(navigation.prev, cssClass.FIRST_NAV_DISABLED);
-                for (i = 0; i < this._navBtns.prev.length; i++) {
-                    this._navBtns.prev[i].removeAttribute("disabled");
-                }
-                this._prevEnabled = true;
-            }
-        }
-
-        attach = false;
-        if (navigation.next) {
-            if (sentinel >= this.get("numItems")) {
-                if (!this.get("isCircular")) {
-                    Event.removeListener(navigation.next, "click",
-                            scrollPageForward);
-                    Dom.addClass(navigation.next, cssClass.DISABLED);
-                    for (i = 0; i < this._navBtns.next.length; i++) {
-                        this._navBtns.next[i].setAttribute("disabled", "true");
-                    }
-                    this._nextEnabled = false;
-                } else {
-                    attach = !this._nextEnabled;
-                }
-            } else {
-                attach = !this._nextEnabled;
-            }
-
-            if (attach) {
-                Event.on(navigation.next, "click", scrollPageForward, this);
-                Dom.removeClass(navigation.next, cssClass.DISABLED);
-                for (i = 0; i < this._navBtns.next.length; i++) {
-                    this._navBtns.next[i].removeAttribute("disabled");
-                }
-                this._nextEnabled = true;
-            }
-        }
-
-        this.fireEvent(navigationStateChangeEvent,
-                { next: this._nextEnabled, prev: this._prevEnabled });
-    }
-
-    /**
-     * Fire custom events for synchronizing the DOM.
-     *
-     * @method syncUI
-     * @param {Object} o The item that needs to be added or removed
-     * @private
-     */
-    function syncUI(o) {
-        var el, i, item, num, oel, pos, sibling;
-
-        if (!JS.isObject(o)) {
-            return;
-        }
-
-        switch (o.ev) {
-        case itemAddedEvent:
-            pos  = JS.isUndefined(o.pos) ? this._itemsTable.numItems-1 : o.pos;
-            if (!JS.isUndefined(this._itemsTable.items[pos])) {
-                item = this._itemsTable.items[pos];
-                if (item && !JS.isUndefined(item.id)) {
-                    oel  = Dom.get(item.id);
-                }
-            }
-            if (!oel) {
-                el = this._createCarouselItem({
-                        className : item.className,
-                        content   : item.item,
-                        id        : item.id
-                });
-                if (JS.isUndefined(o.pos)) {
-                    if (!JS.isUndefined(this._itemsTable.loading[pos])) {
-                        oel = this._itemsTable.loading[pos];
-                    }
-                    if (oel) {
-                        this._carouselEl.replaceChild(el, oel);
-                    } else {
-                        this._carouselEl.appendChild(el);
-                    }
-                } else {
-                    if (!JS.isUndefined(this._itemsTable.items[o.pos + 1])) {
-                        sibling = Dom.get(this._itemsTable.items[o.pos + 1].id);
-                    }
-                    if (sibling) {
-                        this._carouselEl.insertBefore(el, sibling);
-                    } else {
-                    }
-                }
-            } else {
-                if (JS.isUndefined(o.pos)) {
-                    if (!Dom.isAncestor(this._carouselEl, oel)) {
-                        this._carouselEl.appendChild(oel);
-                    }
-                } else {
-                    if (!Dom.isAncestor(this._carouselEl, oel)) {
-                        if (!JS.isUndefined(this._itemsTable.items[o.pos+1])) {
-                            this._carouselEl.insertBefore(oel, Dom.get(
-                                    this._itemsTable.items[o.pos+1].id));
-                        }
-                    }
-                }
-            }
-
-            if (this._recomputeSize) {
-                this._setClipContainerSize();
-            }
-            break;
-        case itemRemovedEvent:
-            num  = this.get("numItems");
-            item = o.item;
-            pos  = o.pos;
-
-            if (item && (el = Dom.get(item.id))) {
-                if (el && Dom.isAncestor(this._carouselEl, el)) {
-                    Event.purgeElement(el, true);
-                    this._carouselEl.removeChild(el);
-                }
-
-                if (this.get("selectedItem") == pos) {
-                    pos = pos >= num ? num - 1 : pos;
-                    this.set("selectedItem", pos);
-                }
-            } else {
-            }
-            break;
-        case loadItemsEvent:
-            for (i = o.first; i <= o.last; i++) {
-                el = this._createCarouselItem({
-                        content : this.CONFIG.ITEM_LOADING,
-                        id      : Dom.generateId()
-                });
-                if (el) {
-                    if (!JS.isUndefined(this._itemsTable.items[o.last + 1])) {
-                        sibling = Dom.get(this._itemsTable.items[o.last+1].id);
-                        if (sibling) {
-                            this._carouselEl.insertBefore(el, sibling);
-                        } else {
-                        }
-                    } else {
-                        this._carouselEl.appendChild(el);
-                    }
-                }
-                this._itemsTable.loading[i] = el;
-            }
-            break;
-        }
-    }
-
-    /*
-     * Static members and methods of the Carousel component
-     */
-
-    /**
-     * Return the appropriate Carousel object based on the id associated with
-     * the Carousel element or false if none match.
-     * @method getById
-     * @public
-     * @static
-     */
-    Carousel.getById = function (id) {
-        return instances[id] ? instances[id] : false;
-    };
-
-    YAHOO.extend(Carousel, YAHOO.util.Element, {
-
-        /*
-         * Internal variables used within the Carousel component
-         */
-
-        /**
-         * The Carousel element.
-         *
-         * @property _carouselEl
-         * @private
-         */
-        _carouselEl: null,
-
-        /**
-         * The Carousel clipping container element.
-         *
-         * @property _clipEl
-         * @private
-         */
-        _clipEl: null,
-
-        /**
-         * The current first index of the Carousel.
-         *
-         * @property _firstItem
-         * @private
-         */
-        _firstItem: 0,
-
-        /**
-         * Is the animation still in progress?
-         *
-         * @property _isAnimationInProgress
-         * @private
-         */
-        _isAnimationInProgress: false,
-
-        /**
-         * The table of items in the Carousel.
-         * The numItems is the number of items in the Carousel, items being the
-         * array of items in the Carousel.  The size is the size of a single
-         * item in the Carousel.  It is cached here for efficiency (to avoid
-         * computing the size multiple times).
-         *
-         * @property _itemsTable
-         * @private
-         */
-        _itemsTable: null,
-
-        /**
-         * The Carousel navigation buttons.
-         *
-         * @property _navBtns
-         * @private
-         */
-        _navBtns: null,
-
-        /**
-         * The Carousel navigation.
-         *
-         * @property _navEl
-         * @private
-         */
-        _navEl: null,
-
-        /**
-         * Status of the next navigation item.
-         *
-         * @property _nextEnabled
-         * @private
-         */
-        _nextEnabled: true,
-
-        /**
-         * The Carousel pages structure.
-         * This is an object of the total number of pages and the current page.
-         *
-         * @property _pages
-         * @private
-         */
-        _pages: null,
-
-        /**
-         * Status of the previous navigation item.
-         *
-         * @property _prevEnabled
-         * @private
-         */
-        _prevEnabled: true,
-
-        /**
-         * Whether the Carousel size needs to be recomputed or not?
-         *
-         * @property _recomputeSize
-         * @private
-         */
-        _recomputeSize: true,
-
-        /*
-         * CSS classes used by the Carousel component
-         */
-
-        CLASSES: {
-
-            /**
-             * The class name of the Carousel navigation buttons.
-             *
-             * @property BUTTON
-             * @default "yui-carousel-button"
-             */
-            BUTTON: "yui-carousel-button",
-
-            /**
-             * The class name of the Carousel element.
-             *
-             * @property CAROUSEL
-             * @default "yui-carousel"
-             */
-            CAROUSEL: "yui-carousel",
-
-            /**
-             * The class name of the container of the items in the Carousel.
-             *
-             * @property CAROUSEL_EL
-             * @default "yui-carousel-element"
-             */
-            CAROUSEL_EL: "yui-carousel-element",
-
-            /**
-             * The class name of the Carousel's container element.
-             *
-             * @property CONTAINER
-             * @default "yui-carousel-container"
-             */
-            CONTAINER: "yui-carousel-container",
-
-            /**
-             * The class name of the Carousel's container element.
-             *
-             * @property CONTENT
-             * @default "yui-carousel-content"
-             */
-            CONTENT: "yui-carousel-content",
-
-            /**
-             * The class name of a disabled navigation button.
-             *
-             * @property DISABLED
-             * @default "yui-carousel-button-disabled"
-             */
-            DISABLED: "yui-carousel-button-disabled",
-
-            /**
-             * The class name of the first Carousel navigation button.
-             *
-             * @property FIRST_NAV
-             * @default " yui-carousel-first-button"
-             */
-            FIRST_NAV: " yui-carousel-first-button",
-
-            /**
-             * The class name of a first disabled navigation button.
-             *
-             * @property FIRST_NAV_DISABLED
-             * @default "yui-carousel-first-button-disabled"
-             */
-            FIRST_NAV_DISABLED: "yui-carousel-first-button-disabled",
-
-            /**
-             * The class name of a first page element.
-             *
-             * @property FIRST_PAGE
-             * @default "yui-carousel-nav-first-page"
-             */
-            FIRST_PAGE: "yui-carousel-nav-first-page",
-
-            /**
-             * The class name of the Carousel navigation button that has focus.
-             *
-             * @property FOCUSSED_BUTTON
-             * @default "yui-carousel-button-focus"
-             */
-            FOCUSSED_BUTTON: "yui-carousel-button-focus",
-
-            /**
-             * The class name of a horizontally oriented Carousel.
-             *
-             * @property HORIZONTAL
-             * @default "yui-carousel-horizontal"
-             */
-            HORIZONTAL: "yui-carousel-horizontal",
-
-            /**
-             * The navigation element container class name.
-             *
-             * @property NAVIGATION
-             * @default "yui-carousel-nav"
-             */
-            NAVIGATION: "yui-carousel-nav",
-
-            /**
-             * The class name of the next navigation link. This variable is not
-             * only used for styling, but also for identifying the link within
-             * the Carousel container.
-             *
-             * @property NEXT_PAGE
-             * @default "yui-carousel-next"
-             */
-            NEXT_PAGE: "yui-carousel-next",
-
-            /**
-             * The class name for the navigation container for prev/next.
-             *
-             * @property NAV_CONTAINER
-             * @default "yui-carousel-buttons"
-             */
-            NAV_CONTAINER: "yui-carousel-buttons",
-
-            /**
-             * The class name of the previous navigation link. This variable
-             * is not only used for styling, but also for identifying the link
-             * within the Carousel container.
-             *
-             * @property PREV_PAGE
-             * @default "yui-carousel-prev"
-             */
-            PREV_PAGE: "yui-carousel-prev",
-
-            /**
-             * The class name of the selected item.
-             *
-             * @property SELECTED_ITEM
-             * @default "yui-carousel-item-selected"
-             */
-            SELECTED_ITEM: "yui-carousel-item-selected",
-
-            /**
-             * The class name of the selected paging navigation.
-             *
-             * @property SELECTED_NAV
-             * @default "yui-carousel-nav-page-selected"
-             */
-            SELECTED_NAV: "yui-carousel-nav-page-selected",
-
-            /**
-             * The class name of a vertically oriented Carousel.
-             *
-             * @property VERTICAL
-             * @default "yui-carousel-vertical"
-             */
-            VERTICAL: "yui-carousel-vertical",
-
-            /**
-             * The class name of the (vertical) Carousel's container element.
-             *
-             * @property VERTICAL_CONTAINER
-             * @default "yui-carousel-vertical-container"
-             */
-            VERTICAL_CONTAINER: "yui-carousel-vertical-container",
-
-            /**
-             * The class name of a visible Carousel.
-             *
-             * @property VISIBLE
-             * @default "yui-carousel-visible"
-             */
-            VISIBLE: "yui-carousel-visible"
-
-        },
-
-        /*
-         * Configuration attributes for configuring the Carousel component
-         */
-
-        CONFIG: {
-
-            /**
-             * The offset of the first visible item in the Carousel.
-             *
-             * @property FIRST_VISIBLE
-             * @default 0
-             */
-            FIRST_VISIBLE: 0,
-
-            /**
-             * The element to be used as the progress indicator when the item
-             * is still being loaded.
-             *
-             * @property ITEM_LOADING
-             * @default The progress indicator (spinner) image
-             */
-            ITEM_LOADING: "<img " +
-                    "src=\"../../build/carousel/assets/ajax-loader.gif\" " +
-                    "alt=\"Loading\" " +
-                    "style=\"margin-top:-32px;position:relative;top:50%;\">",
-
-            /**
-             * The tag name of the Carousel item.
-             *
-             * @property ITEM_TAG_NAME
-             * @default "LI"
-             */
-            ITEM_TAG_NAME: "LI",
-
-            /**
-             * The maximum number of pager buttons allowed beyond which the UI
-             * of the pager would be a drop-down of pages instead of buttons.
-             *
-             * @property MAX_PAGER_BUTTONS
-             * @default 5
-             */
-            MAX_PAGER_BUTTONS: 5,
-
-            /**
-             * The minimum width of the Carousel container to support the
-             * navigation buttons.
-             *
-             * @property MIN_WIDTH
-             * @default 99
-             */
-            MIN_WIDTH: 99,
-
-            /**
-             * The number of visible items in the Carousel.
-             *
-             * @property NUM_VISIBLE
-             * @default 3
-             */
-            NUM_VISIBLE: 3,
-
-            /**
-             * The tag name of the Carousel.
-             *
-             * @property TAG_NAME
-             * @default "OL"
-             */
-            TAG_NAME: "OL"
-
-        },
-
-        /*
-         * Internationalizable strings in the Carousel component
-         */
-
-        STRINGS: {
-
-            /**
-             * The next navigation button name/text.
-             *
-             * @property NEXT_BUTTON_TEXT
-             * @default "Next Page"
-             */
-            NEXT_BUTTON_TEXT: "Next Page",
-
-            /**
-             * The prefix text for the pager in case the UI is a drop-down.
-             *
-             * @property PAGER_PREFIX_TEXT
-             * @default "Go to page "
-             */
-            PAGER_PREFIX_TEXT: "Go to page ",
-
-            /**
-             * The previous navigation button name/text.
-             *
-             * @property PREVIOUS_BUTTON_TEXT
-             * @default "Previous Page"
-             */
-            PREVIOUS_BUTTON_TEXT: "Previous Page"
-
-        },
-
-        /*
-         * Public methods of the Carousel component
-         */
-
-        /**
-         * Insert or append an item to the Carousel.
-         *
-         * @method addItem
-         * @public
-         * @param item {String | Object | HTMLElement} The item to be appended
-         * to the Carousel. If the parameter is a string, it is assumed to be
-         * the content of the newly created item. If the parameter is an
-         * object, it is assumed to supply the content and an optional class
-         * and an optional id of the newly created item.
-         * @param index {Number} optional The position to where in the list
-         * (starts from zero).
-         * @return {Boolean} Return true on success, false otherwise
-         */
-        addItem: function (item, index) {
-            var className, content, el, elId, numItems = this.get("numItems");
-
-            if (!item) {
-                return false;
-            }
-
-            if (JS.isString(item) || item.nodeName) {
-                content = item.nodeName ? item.innerHTML : item;
-            } else if (JS.isObject(item)) {
-                content = item.content;
-            } else {
-                return false;
-            }
-
-            className = item.className || "";
-            elId      = item.id ? item.id : Dom.generateId();
-
-            if (JS.isUndefined(index)) {
-                this._itemsTable.items.push({
-                        item      : content,
-                        className : className,
-                        id        : elId
-                });
-            } else {
-                if (index < 0 || index >= numItems) {
-                    return false;
-                }
-                this._itemsTable.items.splice(index, 0, {
-                        item      : content,
-                        className : className,
-                        id        : elId
-                });
-            }
-            this._itemsTable.numItems++;
-
-            if (numItems < this._itemsTable.items.length) {
-                this.set("numItems", this._itemsTable.items.length);
-            }
-
-            this.fireEvent(itemAddedEvent, { pos: index, ev: itemAddedEvent });
-
-            return true;
-        },
-
-        /**
-         * Insert or append multiple items to the Carousel.
-         *
-         * @method addItems
-         * @public
-         * @param items {Array} An array of items to be added with each item
-         * representing an item, index pair [{item, index}, ...]
-         * @return {Boolean} Return true on success, false otherwise
-         */
-        addItems: function (items) {
-            var i, n, rv = true;
-
-            if (!JS.isArray(items)) {
-                return false;
-            }
-
-            for (i = 0, n = items.length; i < n; i++) {
-                if (this.addItem(items[i][0], items[i][1]) === false) {
-                    rv = false;
-                }
-            }
-
-            return rv;
-        },
-
-        /**
-         * Remove focus from the Carousel.
-         *
-         * @method blur
-         * @public
-         */
-        blur: function () {
-            this._carouselEl.blur();
-            this.fireEvent(blurEvent);
-        },
-
-        /**
-         * Clears the items from Carousel.
-         *
-         * @method clearItems
-         * public
-         */
-        clearItems: function () {
-            var n = this.get("numItems");
-
-            while (n > 0) {
-                this.removeItem(0);
-                n--;
-            }
-        },
-
-        /**
-         * Set focus on the Carousel.
-         *
-         * @method focus
-         * @public
-         */
-        focus: function () {
-            var selItem,
-                numVisible,
-                selectOnScroll,
-                selected,
-                first,
-                last,
-                isSelectionInvisible,
-                focusEl,
-                itemsTable;
-
-            if (this._isAnimationInProgress) {
-                // this messes up real bad!
-                return;
-            }
-
-            selItem              = this.get("selectedItem");
-            numVisible           = this.get("numVisible");
-            selectOnScroll       = this.get("selectOnScroll");
-            selected             = this.getItem(selItem);
-            first                = this.get("firstVisible");
-            last                 = first + numVisible - 1;
-            isSelectionInvisible = (selItem < first || selItem > last);
-            focusEl              = (selected && selected.id) ?
-                                   Dom.get(selected.id) : null;
-            itemsTable           = this._itemsTable;
-
-            if (!selectOnScroll && isSelectionInvisible) {
-                focusEl = (itemsTable && itemsTable.items &&
-                           itemsTable.items[first]) ?
-                        Dom.get(itemsTable.items[first].id) : null;
-            }
-
-            if (focusEl) {
-                try {
-                    focusEl.focus();
-                } catch (ex) {
-                    // ignore focus errors
-                }
-            }
-
-            this.fireEvent(focusEvent);
-        },
-
-        /**
-         * Hide the Carousel.
-         *
-         * @method hide
-         * @public
-         */
-        hide: function () {
-            if (this.fireEvent(beforeHideEvent) !== false) {
-                this.removeClass(this.CLASSES.VISIBLE);
-                this.fireEvent(hideEvent);
-            }
-        },
-
-        /**
-         * Initialize the Carousel.
-         *
-         * @method init
-         * @public
-         * @param el {HTMLElement | String} The html element that represents
-         * the Carousel container.
-         * @param attrs {Object} The set of configuration attributes for
-         * creating the Carousel.
-         */
-        init: function (el, attrs) {
-            var elId  = el,     // save for a rainy day
-                parse = false;
-
-            if (!el) {
-                return;
-            }
-
-            this._itemsTable = { loading: {}, numItems: 0, items: [], size: 0 };
-
-            if (JS.isString(el)) {
-                el = Dom.get(el);
-            } else if (!el.nodeName) {
-                return;
-            }
-
-            if (el) {
-                if (!el.id) {   // in case the HTML element is passed
-                    el.setAttribute("id", Dom.generateId());
-                }
-                this._parseCarousel(el);
-                parse = true;
-            } else {
-                el = this._createCarousel(elId);
-            }
-            elId = el.id;
-
-            Carousel.superclass.init.call(this, el, attrs);
-
-            this.initEvents();
-
-            if (parse) {
-                this._parseCarouselItems();
-            }
-
-            if (!attrs || typeof attrs.isVertical == "undefined") {
-                this.set("isVertical", false);
-            }
-
-            this._parseCarouselNavigation(el);
-            this._navEl = this._setupCarouselNavigation();
-
-            instances[elId] = this;
-
-            loadItems.call(this);
-        },
-
-        /**
-         * Initialize the configuration attributes used to create the Carousel.
-         *
-         * @method initAttributes
-         * @public
-         * @param attrs {Object} The set of configuration attributes for
-         * creating the Carousel.
-         */
-        initAttributes: function (attrs) {
-            attrs = attrs || {};
-            Carousel.superclass.initAttributes.call(this, attrs);
-
-            /**
-             * @attribute currentPage
-             * @description The current page number (read-only.)
-             * @type Number
-             */
-            this.setAttributeConfig("currentPage", {
-                    readOnly : true,
-                    value    : 0
-            });
-
-            /**
-             * @attribute firstVisible
-             * @description The index to start the Carousel from (indexes begin
-             * from zero)
-             * @default 0
-             * @type Number
-             */
-            this.setAttributeConfig("firstVisible", {
-                    method    : this._setFirstVisible,
-                    validator : this._validateFirstVisible,
-                    value     : attrs.firstVisible || this.CONFIG.FIRST_VISIBLE
-            });
-
-            /**
-             * @attribute selectOnScroll
-             * @description Set this to true to automatically set focus to
-             * follow scrolling in the Carousel.
-             * @default true
-             * @type Boolean
-             */
-            this.setAttributeConfig("selectOnScroll", {
-                    validator : JS.isBoolean,
-                    value     : attrs.selectOnScroll || true
-            });
-
-            /**
-             * @attribute numVisible
-             * @description The number of visible items in the Carousel's
-             * viewport.
-             * @default 3
-             * @type Number
-             */
-            this.setAttributeConfig("numVisible", {
-                    method    : this._setNumVisible,
-                    validator : this._validateNumVisible,
-                    value     : attrs.numVisible || this.CONFIG.NUM_VISIBLE
-            });
-
-            /**
-             * @attribute numItems
-             * @description The number of items in the Carousel.
-             * @type Number
-             */
-            this.setAttributeConfig("numItems", {
-                    method    : this._setNumItems,
-                    validator : this._validateNumItems,
-                    value     : this._itemsTable.numItems
-            });
-
-            /**
-             * @attribute scrollIncrement
-             * @description The number of items to scroll by for arrow keys.
-             * @default 1
-             * @type Number
-             */
-            this.setAttributeConfig("scrollIncrement", {
-                    validator : this._validateScrollIncrement,
-                    value     : attrs.scrollIncrement || 1
-            });
-
-            /**
-             * @attribute selectedItem
-             * @description The index of the selected item.
-             * @type Number
-             */
-            this.setAttributeConfig("selectedItem", {
-                    method    : this._setSelectedItem,
-                    validator : JS.isNumber,
-                    value     : 0
-            });
-
-            /**
-             * @attribute revealAmount
-             * @description The percentage of the item to be revealed on each
-             * side of the Carousel (before and after the first and last item
-             * in the Carousel's viewport.)
-             * @default 0
-             * @type Number
-             */
-            this.setAttributeConfig("revealAmount", {
-                    method    : this._setRevealAmount,
-                    validator : this._validateRevealAmount,
-                    value     : attrs.revealAmount || 0
-            });
-
-            /**
-             * @attribute isCircular
-             * @description Set this to true to wrap scrolling of the contents
-             * in the Carousel.
-             * @default false
-             * @type Boolean
-             */
-            this.setAttributeConfig("isCircular", {
-                    validator : JS.isBoolean,
-                    value     : attrs.isCircular || false
-            });
-
-            /**
-             * @attribute isVertical
-             * @description True if the orientation of the Carousel is vertical
-             * @default false
-             * @type Boolean
-             */
-            this.setAttributeConfig("isVertical", {
-                    method    : this._setOrientation,
-                    validator : JS.isBoolean,
-                    value     : attrs.isVertical || false
-            });
-
-            /**
-             * @attribute navigation
-             * @description The set of navigation controls for Carousel
-             * @default <br>
-             * { prev: null, // the previous navigation element<br>
-             *   next: null } // the next navigation element
-             * @type Object
-             */
-            this.setAttributeConfig("navigation", {
-                    method    : this._setNavigation,
-                    validator : this._validateNavigation,
-                    value     : attrs.navigation || {
-                                        prev: null, next: null, page: null }
-            });
-
-            /**
-             * @attribute animation
-             * @description The optional animation attributes for the Carousel.
-             * @default <br>
-             * { speed: 0, // the animation speed (in seconds)<br>
-             *   effect: null } // the animation effect (like
-             *   YAHOO.util.Easing.easeOut)
-             * @type Object
-             */
-            this.setAttributeConfig("animation", {
-                    validator : this._validateAnimation,
-                    value     : attrs.animation || { speed: 0, effect: null }
-            });
-
-            /**
-             * @attribute autoPlay
-             * @description Set this to time in milli-seconds to have the
-             * Carousel automatically scroll the contents.
-             * @type Number
-             */
-            this.setAttributeConfig("autoPlay", {
-                    validator : JS.isNumber,
-                    value     : attrs.autoPlay || 0
-            });
-        },
-
-        /**
-         * Initialize and bind the event handlers.
-         *
-         * @method initEvents
-         * @public
-         */
-        initEvents: function () {
-            var cssClass = this.CLASSES;
-
-            this.on("keydown", this._keyboardEventHandler);
-
-            this.subscribe(afterScrollEvent, syncNavigation);
-            this.on(afterScrollEvent, this.focus);
-
-            this.subscribe(itemAddedEvent, syncUI);
-            this.subscribe(itemAddedEvent, syncNavigation);
-
-            this.subscribe(itemRemovedEvent, syncUI);
-            this.subscribe(itemRemovedEvent, syncNavigation);
-
-            this.on(itemSelectedEvent, this.focus);
-
-            this.subscribe(loadItemsEvent, syncUI);
-
-            this.subscribe(pageChangeEvent, this._syncPagerUI);
-
-            this.subscribe(renderEvent, syncNavigation);
-            this.subscribe(renderEvent, this._syncPagerUI);
-
-            this.on("selectedItemChange", function (ev) {
-                setItemSelection.call(this, ev.newValue, ev.prevValue);
-                this._updateTabIndex(this.getElementForItem(ev.newValue));
-                this.fireEvent(itemSelectedEvent, ev.newValue);
-            });
-
-            this.on("firstVisibleChange", function (ev) {
-                if (!this.get("selectOnScroll")) {
-                    this._updateTabIndex(this.getElementForItem(ev.newValue));
-                }
-            });
-
-            // Handle item selection on mouse click
-            this.on("click", this._itemClickHandler);
-
-            // Handle page navigation
-            this.on("click", this._pagerClickHandler);
-
-            // Restore the focus on the navigation buttons
-            Event.onFocus(this.get("element"), function (ev, obj) {
-                obj._updateNavButtons(Event.getTarget(ev), true);
-            }, this);
-
-            Event.onBlur(this.get("element"), function (ev, obj) {
-                obj._updateNavButtons(Event.getTarget(ev), false);
-            }, this);
-
-        },
-
-        /**
-         * Return the ITEM_TAG_NAME at index or null if the index is not found.
-         *
-         * @method getElementForItem
-         * @param index {Number} The index of the item to be returned
-         * @return {Element} Return the item at index or null if not found
-         * @public
-         */
-        getElementForItem: function (index) {
-            if (index < 0 || index >= this.get("numItems")) {
-                return null;
-            }
-
-            // TODO: may be cache the item
-            if (this._itemsTable.numItems > index) {
-                if (!JS.isUndefined(this._itemsTable.items[index])) {
-                    return Dom.get(this._itemsTable.items[index].id);
-                }
-            }
-
-            return null;
-        },
-
-        /**
-         * Return the ITEM_TAG_NAME for all items in the Carousel.
-         *
-         * @method getElementForItems
-         * @return {Array} Return all the items
-         * @public
-         */
-        getElementForItems: function () {
-            var els = [], i;
-
-            for (i = 0; i < this._itemsTable.numItems; i++) {
-                els.push(this.getElementForItem(i));
-            }
-
-            return els;
-        },
-
-        /**
-         * Return the item at index or null if the index is not found.
-         *
-         * @method getItem
-         * @param index {Number} The index of the item to be returned
-         * @return {Object} Return the item at index or null if not found
-         * @public
-         */
-        getItem: function (index) {
-            if (index < 0 || index >= this.get("numItems")) {
-                return null;
-            }
-
-            if (this._itemsTable.numItems > index) {
-                if (!JS.isUndefined(this._itemsTable.items[index])) {
-                    return this._itemsTable.items[index];
-                }
-            }
-
-            return null;
-        },
-
-        /**
-         * Return all items as an array.
-         *
-         * @method getItems
-         * @return {Array} Return all items in the Carousel
-         * @public
-         */
-        getItems: function (index) {
-            return this._itemsTable.items;
-        },
-
-        /**
-         * Return the position of the Carousel item that has the id "id", or -1
-         * if the id is not found.
-         *
-         * @method getItemPositionById
-         * @param index {Number} The index of the item to be returned
-         * @public
-         */
-        getItemPositionById: function (id) {
-            var i = 0, n = this._itemsTable.numItems;
-
-            while (i < n) {
-                if (!JS.isUndefined(this._itemsTable.items[i])) {
-                    if (this._itemsTable.items[i].id == id) {
-                        return i;
-                    }
-                }
-                i++;
-            }
-
-            return -1;
-        },
-
-        /**
-         * Remove an item at index from the Carousel.
-         *
-         * @method removeItem
-         * @public
-         * @param index {Number} The position to where in the list (starts from
-         * zero).
-         * @return {Boolean} Return true on success, false otherwise
-         */
-        removeItem: function (index) {
-            var item, num = this.get("numItems");
-
-            if (index < 0 || index >= num) {
-                return false;
-            }
-
-            item = this._itemsTable.items.splice(index, 1);
-            if (item && item.length == 1) {
-                this.set("numItems", num - 1);
-
-                this.fireEvent(itemRemovedEvent,
-                        { item: item[0], pos: index, ev: itemRemovedEvent });
-                return true;
-            }
-
-            return false;
-        },
-
-        /**
-         * Render the Carousel.
-         *
-         * @method render
-         * @public
-         * @param appendTo {HTMLElement | String} The element to which the
-         * Carousel should be appended prior to rendering.
-         * @return {Boolean} Status of the operation
-         */
-        render: function (appendTo) {
-            var config = this.CONFIG,
-                cssClass = this.CLASSES,
-                size;
-
-            this.addClass(cssClass.CAROUSEL);
-
-            if (!this._clipEl) {
-                this._clipEl = this._createCarouselClip();
-                this._clipEl.appendChild(this._carouselEl);
-            }
-
-            if (appendTo) {
-                this.appendChild(this._clipEl);
-                this.appendTo(appendTo);
-                this._setClipContainerSize();
-            } else {
-                if (!Dom.inDocument(this.get("element"))) {
-                    return false;
-                }
-                this.appendChild(this._clipEl);
-            }
-
-            if (this.get("isVertical")) {
-                size = getCarouselItemSize.call(this);
-                size = size < config.MIN_WIDTH ? config.MIN_WIDTH : size;
-                this.setStyle("width",  size + "px");
-                this.addClass(cssClass.VERTICAL);
-            } else {
-                this.addClass(cssClass.HORIZONTAL);
-            }
-
-            if (this.get("numItems") < 1) {
-                return false;
-            }
-
-            // Make sure at least one item is selected
-            this.set("selectedItem", this.get("firstVisible"));
-
-            this.fireEvent(renderEvent);
-
-            // By now, the navigation would have been rendered, so calculate
-            // the container height now.
-            this._setContainerSize();
-
-            return true;
-        },
-
-        /**
-         * Scroll the Carousel by an item backward.
-         *
-         * @method scrollBackward
-         * @public
-         */
-        scrollBackward: function () {
-            this.scrollTo(this._firstItem - this.get("scrollIncrement"));
-        },
-
-        /**
-         * Scroll the Carousel by an item forward.
-         *
-         * @method scrollForward
-         * @public
-         */
-        scrollForward: function () {
-            this.scrollTo(this._firstItem + this.get("scrollIncrement"));
-        },
-
-        /**
-         * Scroll the Carousel by a page backward.
-         *
-         * @method scrollPageBackward
-         * @public
-         */
-        scrollPageBackward: function () {
-            this.scrollTo(this._firstItem - this.get("numVisible"));
-        },
-
-        /**
-         * Scroll the Carousel by a page forward.
-         *
-         * @method scrollPageForward
-         * @public
-         */
-        scrollPageForward: function () {
-            this.scrollTo(this._firstItem + this.get("numVisible"));
-        },
-
-        /**
-         * Scroll the Carousel to make the item the first visible item.
-         *
-         * @method scrollTo
-         * @public
-         * @param item Number The index of the element to position at.
-         * @param dontSelect Boolean True if select should be avoided
-         */
-        scrollTo: function (item, dontSelect) {
-            var anim,
-                animate,
-                animAttrs,
-                animCfg    = this.get("animation"),
-                isCircular = this.get("isCircular"),
-                delta,
-                direction,
-                firstItem  = this._firstItem,
-                newPage,
-                numItems   = this.get("numItems"),
-                numPerPage = this.get("numVisible"),
-                offset,
-                page       = this.get("currentPage"),
-                rv,
-                sentinel,
-                which;
-
-            if (item == firstItem) {
-                return;         // nothing to do!
-            }
-
-            if (this._isAnimationInProgress) {
-                return;         // let it take its own sweet time to complete
-            }
-
-            if (item < 0) {
-                if (isCircular) {
-                    item = numItems + item;
-                } else {
-                    return;
-                }
-            } else if (item > numItems - 1) {
-                if (this.get("isCircular")) {
-                    item = numItems - item;
-                } else {
-                    return;
-                }
-            }
-
-            direction = (this._firstItem > item) ? "backward" : "forward";
-
-            sentinel  = firstItem + numPerPage;
-            sentinel  = (sentinel > numItems - 1) ? numItems - 1 : sentinel;
-            rv = this.fireEvent(beforeScrollEvent,
-                    { dir: direction, first: firstItem, last: sentinel });
-            if (rv === false) { // scrolling is prevented
-                return;
-            }
-
-            this.fireEvent(beforePageChangeEvent, { page: page });
-
-            delta = firstItem - item; // yes, the delta is reverse
-            this._firstItem = item;
-            this.set("firstVisible", item);
-
-
-            loadItems.call(this); // do we have all the items to display?
-
-            sentinel  = item + numPerPage;
-            sentinel  = (sentinel > numItems - 1) ? numItems - 1 : sentinel;
-
-            which     = this.get("isVertical") ? "top" : "left";
-            offset    = getScrollOffset.call(this, delta);
-
-            animate   = animCfg.speed > 0;
-
-            if (animate) {
-                this._isAnimationInProgress = true;
-                if (this.get("isVertical")) {
-                    animAttrs = { points: { by: [0, offset] } };
-                } else {
-                    animAttrs = { points: { by: [offset, 0] } };
-                }
-                anim = new YAHOO.util.Motion(this._carouselEl, animAttrs,
-                        animCfg.speed, animCfg.effect);
-                anim.onComplete.subscribe(function (ev) {
-                    var first = this.get("firstVisible");
-
-                    this._isAnimationInProgress = false;
-                    this.fireEvent(afterScrollEvent,
-                            { first: first, last: sentinel });
-                }, null, this);
-                anim.animate();
-                anim = null;
-            } else {
-                offset += getStyle(this._carouselEl, which);
-                Dom.setStyle(this._carouselEl, which, offset + "px");
-            }
-
-            newPage = parseInt(this._firstItem / numPerPage, 10);
-            if (newPage != page) {
-                this.setAttributeConfig("currentPage", { value: newPage });
-                this.fireEvent(pageChangeEvent, newPage);
-            }
-
-            if (!dontSelect) {
-                if (this.get("selectOnScroll")) {
-                    if (item != this._selectedItem) { // out of sync
-                        this.set("selectedItem", this._getSelectedItem(item));
-                    }
-                }
-            }
-
-            delete this._autoPlayTimer;
-            if (this.get("autoPlay") > 0) {
-                this.startAutoPlay();
-            }
-
-            if (!animate) {
-                this.fireEvent(afterScrollEvent,
-                        { first: item, last: sentinel });
-            }
-        },
-
-        /**
-         * Display the Carousel.
-         *
-         * @method show
-         * @public
-         */
-        show: function () {
-            var cssClass = this.CLASSES;
-
-            if (this.fireEvent(beforeShowEvent) !== false) {
-                this.addClass(cssClass.VISIBLE);
-                this.fireEvent(showEvent);
-            }
-        },
-
-        /**
-         * Start auto-playing the Carousel.
-         *
-         * @method startAutoPlay
-         * @public
-         */
-        startAutoPlay: function () {
-            var self  = this,
-                timer = this.get("autoPlay");
-
-            if (timer > 0) {
-                if (!JS.isUndefined(this._autoPlayTimer)) {
-                    return;
-                }
-                this.fireEvent(startAutoPlayEvent);
-                this._autoPlayTimer = setTimeout(function () {
-                    autoScroll.call(self); }, timer);
-            }
-        },
-
-        /**
-         * Stop auto-playing the Carousel.
-         *
-         * @method stopAutoPlay
-         * @public
-         */
-        stopAutoPlay: function () {
-            if (!JS.isUndefined(this._autoPlayTimer)) {
-                clearTimeout(this._autoPlayTimer);
-                delete this._autoPlayTimer;
-                this.set("autoPlay", 0);
-                this.fireEvent(stopAutoPlayEvent);
-            }
-        },
-
-        /**
-         * Return the string representation of the Carousel.
-         *
-         * @method toString
-         * @public
-         * @return {String}
-         */
-        toString: function () {
-            return WidgetName + (this.get ? " (#" + this.get("id") + ")" : "");
-        },
-
-        /*
-         * Protected methods of the Carousel component
-         */
-
-        /**
-         * Create the Carousel.
-         *
-         * @method createCarousel
-         * @param elId {String} The id of the element to be created
-         * @protected
-         */
-        _createCarousel: function (elId) {
-            var cssClass = this.CLASSES;
-
-            var el = createElement("DIV", {
-                    className : cssClass.CAROUSEL,
-                    id        : elId
-            });
-
-            if (!this._carouselEl) {
-                this._carouselEl = createElement(this.CONFIG.TAG_NAME,
-                        { className: cssClass.CAROUSEL_EL });
-            }
-
-            return el;
-        },
-
-        /**
-         * Create the Carousel clip container.
-         *
-         * @method createCarouselClip
-         * @protected
-         */
-        _createCarouselClip: function () {
-            var el = createElement("DIV", { className: this.CLASSES.CONTENT });
-            this._setClipContainerSize(el);
-
-            return el;
-        },
-
-        /**
-         * Create the Carousel item.
-         *
-         * @method createCarouselItem
-         * @param obj {Object} The attributes of the element to be created
-         * @protected
-         */
-        _createCarouselItem: function (obj) {
-            return createElement(this.CONFIG.ITEM_TAG_NAME, {
-                    className : obj.className,
-                    content   : obj.content,
-                    id        : obj.id
-            });
-        },
-
-        /**
-         * Get the value for the selected item.
-         *
-         * @method _getSelectedItem
-         * @param val {Number} The new value for "selected" item
-         * @return {Number} The new value that would be set
-         * @protected
-         */
-        _getSelectedItem: function (val) {
-            var isCircular = this.get("isCircular"),
-                numItems   = this.get("numItems"),
-                sentinel   = numItems - 1;
-
-            if (val < 0) {
-                if (isCircular) {
-                    val = numItems + val;
-                } else {
-                    val = this.get("selectedItem");
-                }
-            } else if (val > sentinel) {
-                if (isCircular) {
-                    val = val - numItems;
-                } else {
-                    val = this.get("selectedItem");
-                }
-            }
-
-            return val;
-        },
-
-        /**
-         * The "click" handler for the item.
-         *
-         * @method _itemClickHandler
-         * @param {Event} ev The event object
-         * @protected
-         */
-        _itemClickHandler: function (ev) {
-            var container = this.get("element"),
-                el,
-                item,
-                target = YAHOO.util.Event.getTarget(ev);
-
-            while (target && target != container &&
-                   target.id != this._carouselEl) {
-                el = target.nodeName;
-                if (el.toUpperCase() == this.CONFIG.ITEM_TAG_NAME) {
-                    break;
-                }
-                target = target.parentNode;
-            }
-
-            if ((item = this.getItemPositionById(target.id)) >= 0) {
-                this.set("selectedItem", this._getSelectedItem(item));
-            }
-        },
-
-        /**
-         * The keyboard event handler for Carousel.
-         *
-         * @method _keyboardEventHandler
-         * @param ev {Event} The event that is being handled.
-         * @protected
-         */
-        _keyboardEventHandler: function (ev) {
-            var key      = Event.getCharCode(ev),
-                prevent  = false,
-                position = 0,
-                selItem;
-
-            if (this._isAnimationInProgress) {
-                return;         // do not mess while animation is in progress
-            }
-
-            switch (key) {
-            case 0x25:          // left arrow
-            case 0x26:          // up arrow
-                selItem = this.get("selectedItem");
-                if (selItem == this._firstItem) {
-                    position = selItem - this.get("numVisible");
-                    this.scrollTo(position);
-                    this.set("selectedItem", this._getSelectedItem(selItem-1));
-                } else {
-                    position = this.get("selectedItem") -
-                            this.get("scrollIncrement");
-                    this.set("selectedItem", this._getSelectedItem(position));
-                }
-                prevent = true;
-                break;
-            case 0x27:          // right arrow
-            case 0x28:          // down arrow
-                position = this.get("selectedItem")+this.get("scrollIncrement");
-                this.set("selectedItem", this._getSelectedItem(position));
-                prevent = true;
-                break;
-            case 0x21:          // page-up
-                this.scrollPageBackward();
-                prevent = true;
-                break;
-            case 0x22:          // page-down
-                this.scrollPageForward();
-                prevent = true;
-                break;
-            }
-
-            if (prevent) {
-                Event.preventDefault(ev);
-            }
-        },
-
-        /**
-         * The "click" handler for the pager navigation.
-         *
-         * @method _pagerClickHandler
-         * @param {Event} ev The event object
-         * @protected
-         */
-        _pagerClickHandler: function (ev) {
-            var pos, target, val;
-
-            target = Event.getTarget(ev);
-            val = target.href || target.value;
-            if (JS.isString(val) && val) {
-                pos = val.lastIndexOf("#");
-                if (pos != -1) {
-                    val = this.getItemPositionById(val.substring(pos + 1));
-                    this.scrollTo(val);
-                    Event.preventDefault(ev);
-                }
-            }
-        },
-
-        /**
-         * Find the Carousel within a container. The Carousel is identified by
-         * the first element that matches the carousel element tag or the
-         * element that has the Carousel class.
-         *
-         * @method parseCarousel
-         * @param parent {HTMLElement} The parent element to look under
-         * @return {Boolean} True if Carousel is found, false otherwise
-         * @protected
-         */
-        _parseCarousel: function (parent) {
-            var child, cssClass, found, node;
-
-            cssClass = this.CLASSES;
-            found    = false;
-
-            for (child = parent.firstChild; child; child = child.nextSibling) {
-                if (child.nodeType == 1) {
-                    node = child.nodeName;
-                    if (node.toUpperCase() == this.CONFIG.TAG_NAME) {
-                        this._carouselEl = child;
-                        Dom.addClass(this._carouselEl,this.CLASSES.CAROUSEL_EL);
-                        found = true;
-                    }
-                }
-            }
-
-            return found;
-        },
-
-        /**
-         * Find the items within the Carousel and add them to the items table.
-         * A Carousel item is identified by elements that matches the carousel
-         * item element tag.
-         *
-         * @method parseCarouselItems
-         * @protected
-         */
-        _parseCarouselItems: function () {
-            var child,
-                elId,
-                node,
-                parent = this._carouselEl;
-
-            for (child = parent.firstChild; child; child = child.nextSibling) {
-                if (child.nodeType == 1) {
-                    node = child.nodeName;
-                    if (node.toUpperCase() == this.CONFIG.ITEM_TAG_NAME) {
-                        if (child.id) {
-                            elId = child.id;
-                        } else {
-                            elId = Dom.generateId();
-                            child.setAttribute("id", elId);
-                        }
-                        this.addItem(child);
-                    }
-                }
-            }
-        },
-
-        /**
-         * Find the Carousel navigation within a container. The navigation
-         * elements need to match the carousel navigation class names.
-         *
-         * @method parseCarouselNavigation
-         * @param parent {HTMLElement} The parent element to look under
-         * @return {Boolean} True if at least one is found, false otherwise
-         * @protected
-         */
-        _parseCarouselNavigation: function (parent) {
-            var cfg, cssClass = this.CLASSES, el, i, j, nav, rv = false;
-
-            nav = Dom.getElementsByClassName(cssClass.PREV_PAGE, "*", parent);
-            if (nav.length > 0) {
-                for (i in nav) {
-                    if (nav.hasOwnProperty(i)) {
-                        el = nav[i];
-                        if (el.nodeName == "INPUT" ||
-                            el.nodeName == "BUTTON") {
-                            if (typeof this._navBtns.prev == "undefined") {
-                                this._navBtns.prev = [];
-                            }
-                            this._navBtns.prev.push(el);
-                        } else {
-                            j = el.getElementsByTagName("INPUT");
-                            if (JS.isArray(j) && j.length > 0) {
-                                this._navBtns.prev.push(j[0]);
-                            } else {
-                                j = el.getElementsByTagName("BUTTON");
-                                if (JS.isArray(j) && j.length > 0) {
-                                    this._navBtns.prev.push(j[0]);
-                                }
-                            }
-                        }
-                    }
-                }
-                cfg = { prev: nav };
-            }
-
-            nav = Dom.getElementsByClassName(cssClass.NEXT_PAGE, "*", parent);
-            if (nav.length > 0) {
-                for (i in nav) {
-                    if (nav.hasOwnProperty(i)) {
-                        el = nav[i];
-                        if (el.nodeName == "INPUT" ||
-                            el.nodeName == "BUTTON") {
-                            if (typeof this._navBtns.next == "undefined") {
-                                this._navBtns.next = [];
-                            }
-                            this._navBtns.next.push(el);
-                        } else {
-                            j = el.getElementsByTagName("INPUT");
-                            if (JS.isArray(j) && j.length > 0) {
-                                this._navBtns.next.push(j[0]);
-                            } else {
-                                j = el.getElementsByTagName("BUTTON");
-                                if (JS.isArray(j) && j.length > 0) {
-                                    this._navBtns.next.push(j[0]);
-                                }
-                            }
-                        }
-                    }
-                }
-                if (cfg) {
-                    cfg.next = nav;
-                } else {
-                    cfg = { next: nav };
-                }
-            }
-
-            if (cfg) {
-                this.set("navigation", cfg);
-                rv = true;
-            }
-
-            return rv;
-        },
-
-        /**
-         * Setup/Create the Carousel navigation element (if needed).
-         *
-         * @method _setupCarouselNavigation
-         * @protected
-         */
-        _setupCarouselNavigation: function () {
-            var btn, cfg, cssClass, nav, navContainer, nextButton, pageEl,
-                prevButton;
-
-            cssClass = this.CLASSES;
-
-            navContainer = Dom.getElementsByClassName(cssClass.NAVIGATION,
-                    "DIV", this.get("element"));
-
-            if (navContainer.length === 0) {
-                navContainer = createElement("DIV",
-                        { className: cssClass.NAVIGATION });
-                this.insertBefore(navContainer,
-                        Dom.getFirstChild(this.get("element")));
-            } else {
-                navContainer = navContainer[0];
-            }
-
-            this._pages.el = createElement("UL");
-            navContainer.appendChild(this._pages.el);
-
-            nav = this.get("navigation");
-            if (nav.prev && nav.prev.length > 0) {
-                navContainer.appendChild(nav.prev[0]);
-            } else {
-                // TODO: separate method for creating a navigation button
-                prevButton = createElement("SPAN",
-                        { className: cssClass.BUTTON + cssClass.FIRST_NAV });
-                // XXX: for IE 6.x
-                Dom.setStyle(prevButton, "visibility", "visible");
-                btn = Dom.generateId();
-                prevButton.innerHTML = "<input type=\"button\" " +
-                        "id=\"" + btn + "\" " +
-                        "value=\"" + this.STRINGS.PREVIOUS_BUTTON_TEXT + "\" " +
-                        "name=\"" + this.STRINGS.PREVIOUS_BUTTON_TEXT + "\">";
-                navContainer.appendChild(prevButton);
-                btn = Dom.get(btn);
-                this._navBtns.prev = [btn];
-                cfg = { prev: [prevButton] };
-            }
-
-            if (nav.next && nav.next.length > 0) {
-                navContainer.appendChild(nav.next[0]);
-            } else {
-                // TODO: separate method for creating a navigation button
-                nextButton = createElement("SPAN",
-                        { className: cssClass.BUTTON });
-                // XXX: for IE 6.x
-                Dom.setStyle(nextButton, "visibility", "visible");
-                btn = Dom.generateId();
-                nextButton.innerHTML = "<input type=\"button\" " +
-                        "id=\"" + btn + "\" " +
-                        "value=\"" + this.STRINGS.NEXT_BUTTON_TEXT + "\" " +
-                        "name=\"" + this.STRINGS.NEXT_BUTTON_TEXT + "\">";
-                navContainer.appendChild(nextButton);
-                btn = Dom.get(btn);
-                this._navBtns.next = [btn];
-                if (cfg) {
-                    cfg.next = [nextButton];
-                } else {
-                    cfg = { next: [nextButton] };
-                }
-            }
-
-            if (cfg) {
-                this.set("navigation", cfg);
-            }
-
-            return navContainer;
-        },
-
-        /**
-         * Set the clip container size (based on the new numVisible value).
-         *
-         * @method _setClipContainerSize
-         * @param clip {HTMLElement} The clip container element.
-         * @param num {Number} optional The number of items per page.
-         * @protected
-         */
-        _setClipContainerSize: function (clip, num) {
-            var attr, currVal, isVertical, itemSize, reveal, size, which;
-
-            isVertical = this.get("isVertical");
-            reveal     = this.get("revealAmount");
-            which      = isVertical ? "height" : "width";
-            attr       = isVertical ? "top" : "left";
-
-            clip       = clip || this._clipEl;
-            if (!clip) {
-                return;
-            }
-
-            num        = num  || this.get("numVisible");
-            itemSize   = getCarouselItemSize.call(this, which);
-            size       = itemSize * num;
-
-            this._recomputeSize = (size === 0); // bleh!
-            if (this._recomputeSize) {
-                return;             // no use going further, bail out!
-            }
-
-            if (reveal > 0) {
-                reveal = itemSize * (reveal / 100) * 2;
-                size += reveal;
-                // TODO: set the Carousel's initial offset somwehere
-                currVal = parseFloat(Dom.getStyle(this._carouselEl, attr));
-                currVal = JS.isNumber(currVal) ? currVal : 0;
-                Dom.setStyle(this._carouselEl, attr, currVal+(reveal/2)+"px");
-            }
-
-            if (isVertical) {
-                size += getStyle(this._carouselEl, "marginTop")     +
-                        getStyle(this._carouselEl, "marginBottom")  +
-                        getStyle(this._carouselEl, "paddingTop")    +
-                        getStyle(this._carouselEl, "paddingBottom") +
-                        getStyle(this._carouselEl, "borderTop")     +
-                        getStyle(this._carouselEl, "borderBottom");
-                // XXX: for vertical Carousel
-                Dom.setStyle(clip, which, (size - (num - 1)) + "px");
-            } else {
-                size += getStyle(this._carouselEl, "marginLeft")    +
-                        getStyle(this._carouselEl, "marginRight")   +
-                        getStyle(this._carouselEl, "paddingLeft")   +
-                        getStyle(this._carouselEl, "paddingRight")  +
-                        getStyle(this._carouselEl, "borderLeft")    +
-                        getStyle(this._carouselEl, "borderRight");
-                Dom.setStyle(clip, which, size + "px");
-            }
-
-            this._setContainerSize(clip); // adjust the container size too
-        },
-
-        /**
-         * Set the container size.
-         *
-         * @method _setContainerSize
-         * @param clip {HTMLElement} The clip container element.
-         * @param attr {String} Either set the height or width.
-         * @protected
-         */
-        _setContainerSize: function (clip, attr) {
-            var isVertical, size;
-
-            isVertical = this.get("isVertical");
-            clip       = clip || this._clipEl;
-            attr       = attr || (isVertical ? "height" : "width");
-            size       = parseFloat(Dom.getStyle(clip, attr), 10);
-
-            size = JS.isNumber(size) ? size : 0;
-
-            size += getStyle(clip, "marginLeft")   +
-                    getStyle(clip, "marginRight")  +
-                    getStyle(clip, "paddingLeft")  +
-                    getStyle(clip, "paddingRight") +
-                    getStyle(clip, "borderLeft")   +
-                    getStyle(clip, "borderRight");
-
-            if (isVertical) {
-                size += getStyle(this._navEl, "height");
-            }
-
-            this.setStyle(attr, size + "px");
-        },
-
-        /**
-         * Set the value for the Carousel's first visible item.
-         *
-         * @method _setFirstVisible
-         * @param val {Number} The new value for firstVisible
-         * @return {Number} The new value that would be set
-         * @protected
-         */
-        _setFirstVisible: function (val) {
-            if (val >= 0 && val < this.get("numItems")) {
-                this.scrollTo(val);
-            } else {
-                val = this.get("firstVisible");
-            }
-            return val;
-        },
-
-        /**
-         * Set the value for the Carousel's navigation.
-         *
-         * @method _setNavigation
-         * @param cfg {Object} The navigation configuration
-         * @return {Object} The new value that would be set
-         * @protected
-         */
-        _setNavigation: function (cfg) {
-            if (cfg.prev) {
-                Event.on(cfg.prev, "click", scrollPageBackward, this);
-            }
-            if (cfg.next) {
-                Event.on(cfg.next, "click", scrollPageForward, this);
-            }
-        },
-
-        /**
-         * Set the value for the number of visible items in the Carousel.
-         *
-         * @method _setNumVisible
-         * @param val {Number} The new value for numVisible
-         * @return {Number} The new value that would be set
-         * @protected
-         */
-        _setNumVisible: function (val) {
-            if (val > 1 && val < this.get("numItems")) {
-                this._setClipContainerSize(this._clipEl, val);
-            } else {
-                val = this.get("numVisible");
-            }
-            return val;
-        },
-
-        /**
-         * Set the number of items in the Carousel.
-         * Warning: Setting this to a lower number than the current removes
-         * items from the end.
-         *
-         * @method _setNumItems
-         * @param val {Number} The new value for numItems
-         * @return {Number} The new value that would be set
-         * @protected
-         */
-        _setNumItems: function (val) {
-            var num = this._itemsTable.numItems;
-
-            if (JS.isArray(this._itemsTable.items)) {
-                if (this._itemsTable.items.length != num) { // out of sync
-                    num = this._itemsTable.items.length;
-                    this._itemsTable.numItems = num;
-                }
-            }
-
-            if (val < num) {
-                while (num > val) {
-                    this.removeItem(num - 1);
-                    num--;
-                }
-            }
-
-            return val;
-        },
-
-        /**
-         * Set the orientation of the Carousel.
-         *
-         * @method _setOrientation
-         * @param val {Boolean} The new value for isVertical
-         * @return {Boolean} The new value that would be set
-         * @protected
-         */
-        _setOrientation: function (val) {
-            var cssClass = this.CLASSES;
-
-            if (val) {
-                this.replaceClass(cssClass.HORIZONTAL, cssClass.VERTICAL);
-            } else {
-                this.replaceClass(cssClass.VERTICAL, cssClass.HORIZONTAL);
-            }
-            this._itemsTable.size = 0; // invalidate our size computation cache
-            return val;
-        },
-
-        /**
-         * Set the value for the reveal amount percentage in the Carousel.
-         *
-         * @method _setRevealAmount
-         * @param val {Number} The new value for revealAmount
-         * @return {Number} The new value that would be set
-         * @protected
-         */
-        _setRevealAmount: function (val) {
-            if (val >= 0 && val <= 100) {
-                val = parseInt(val, 10);
-                val = JS.isNumber(val) ? val : 0;
-                this._setClipContainerSize();
-            } else {
-                val = this.get("revealAmount");
-            }
-            return val;
-        },
-
-        /**
-         * Set the value for the selected item.
-         *
-         * @method _setSelectedItem
-         * @param val {Number} The new value for "selected" item
-         * @protected
-         */
-        _setSelectedItem: function (val) {
-            this._selectedItem = val;
-        },
-
-        /**
-         * Synchronize and redraw the Pager UI if necessary.
-         *
-         * @method _syncPagerUI
-         * @protected
-         */
-        _syncPagerUI: function (page) {
-            var a,
-                cssClass = this.CLASSES,
-                i,
-                markup     = "",
-                numPages,
-                numVisible = this.get("numVisible");
-
-            page     = page || 0;
-            numPages = Math.ceil(this.get("numItems") / numVisible);
-
-            this._pages.num = numPages;
-            this._pages.cur = page;
-
-            if (numPages > this.CONFIG.MAX_PAGER_BUTTONS) {
-                markup = "<form><select>";
-            } else {
-                markup = "";
-            }
-
-            for (i = 0; i < numPages; i++) {
-                if (JS.isUndefined(this._itemsTable.items[i * numVisible])) {
-                    break;
-                }
-                a = this._itemsTable.items[i * numVisible].id;
-                if (numPages > this.CONFIG.MAX_PAGER_BUTTONS) {
-                    markup += "<option value=\"#" + a + "\" "            +
-                            (i == page ? " selected" : "") + ">"         +
-                            this.STRINGS.PAGER_PREFIX_TEXT + " " + (i+1) +
-                            "</option>";
-                } else {
-                    markup += "<li class=\""                                   +
-                            (i === 0 ? cssClass.FIRST_PAGE : "")               +
-                            (i == page ? " " + cssClass.SELECTED_NAV : "")     +
-                            "\"><a href=\"#" + a + "\" tabindex=\"0\"><em>"    +
-                            this.STRINGS.PAGER_PREFIX_TEXT + " " + (i+1)       +
-                            "</em></a></li>";
-                }
-            }
-
-            if (numPages > this.CONFIG.MAX_PAGER_BUTTONS) {
-                markup += "</select></form>";
-            }
-
-            this._pages.el.innerHTML = markup;
-            markup = null;
-        },
-
-        /**
-         * Set the correct class for the navigation buttons.
-         *
-         * @method _updateNavButtons
-         * @param el {Object} The target button
-         * @param setFocus {Boolean} True to set focus ring, false otherwise.
-         * @protected
-         */
-        _updateNavButtons: function (el, setFocus) {
-            var children,
-                cssClass = this.CLASSES,
-                grandParent,
-                parent   = el.parentNode;
-
-            if (!parent) {
-                return;
-            }
-            grandParent = parent.parentNode;
-
-            if (el.nodeName.toUpperCase() == "INPUT" &&
-                Dom.hasClass(parent, cssClass.BUTTON)) {
-                if (setFocus) {
-                    if (grandParent) {
-                        children = Dom.getChildren(grandParent);
-                        if (children) {
-                            Dom.removeClass(children, cssClass.FOCUSSED_BUTTON);
-                        }
-                    }
-                    Dom.addClass(parent, cssClass.FOCUSSED_BUTTON);
-                } else {
-                    Dom.removeClass(parent, cssClass.FOCUSSED_BUTTON);
-                }
-            }
-        },
-
-        /**
-         * Set the correct tab index for the Carousel items.
-         *
-         * @method _updateTabIndex
-         * @param el {Object} The element to be focussed
-         * @protected
-         */
-        _updateTabIndex: function (el) {
-            if (el) {
-                if (this._focusableItemEl) {
-                    this._focusableItemEl.tabIndex = -1;
-                }
-                this._focusableItemEl = el;
-                el.tabIndex = 0;
-            }
-        },
-
-        /**
-         * Validate animation parameters.
-         *
-         * @method _validateAnimation
-         * @param cfg {Object} The animation configuration
-         * @return {Boolean} The status of the validation
-         * @protected
-         */
-        _validateAnimation: function (cfg) {
-            var rv = true;
-
-            if (JS.isObject(cfg)) {
-                if (cfg.speed) {
-                    rv = rv && JS.isNumber(cfg.speed);
-                }
-                if (cfg.effect) {
-                    rv = rv && JS.isFunction(cfg.effect);
-                } else if (!JS.isUndefined(YAHOO.util.Easing)) {
-                    cfg.effect = YAHOO.util.Easing.easeOut;
-                }
-            } else {
-                rv = false;
-            }
-
-            return rv;
-        },
-
-        /**
-         * Validate the firstVisible value.
-         *
-         * @method _validateFirstVisible
-         * @param val {Number} The first visible value
-         * @return {Boolean} The status of the validation
-         * @protected
-         */
-        _validateFirstVisible: function (val) {
-            var rv = false;
-
-            if (JS.isNumber(val)) {
-                rv = (val >= 0 && val < this.get("numItems"));
-            }
-
-            return rv;
-        },
-
-        /**
-         * Validate and navigation parameters.
-         *
-         * @method _validateNavigation
-         * @param cfg {Object} The navigation configuration
-         * @return {Boolean} The status of the validation
-         * @protected
-         */
-        _validateNavigation : function (cfg) {
-            var i;
-
-            if (!JS.isObject(cfg)) {
-                return false;
-            }
-
-            if (cfg.prev) {
-                if (!JS.isArray(cfg.prev)) {
-                    return false;
-                }
-                for (i in cfg.prev) {
-                    if (cfg.prev.hasOwnProperty(i)) {
-                        if (!JS.isString(cfg.prev[i].nodeName)) {
-                            return false;
-                        }
-                    }
-                }
-            }
-
-            if (cfg.next) {
-                if (!JS.isArray(cfg.next)) {
-                    return false;
-                }
-                for (i in cfg.next) {
-                    if (cfg.next.hasOwnProperty(i)) {
-                        if (!JS.isString(cfg.next[i].nodeName)) {
-                            return false;
-                        }
-                    }
-                }
-            }
-
-            return true;
-        },
-
-        /**
-         * Validate the numItems value.
-         *
-         * @method _validateNumItems
-         * @param val {Number} The numItems value
-         * @return {Boolean} The status of the validation
-         * @protected
-         */
-        _validateNumItems: function (val) {
-            var rv = false;
-
-            if (JS.isNumber(val)) {
-                rv = val > 0;
-            }
-
-            return rv;
-        },
-
-        /**
-         * Validate the numVisible value.
-         *
-         * @method _validateNumVisible
-         * @param val {Number} The numVisible value
-         * @return {Boolean} The status of the validation
-         * @protected
-         */
-        _validateNumVisible: function (val) {
-            var rv = false;
-
-            if (JS.isNumber(val)) {
-                rv = val > 0 && val < this.get("numItems");
-            }
-
-            return rv;
-        },
-
-        /**
-         * Validate the revealAmount value.
-         *
-         * @method _validateRevealAmount
-         * @param val {Number} The revealAmount value
-         * @return {Boolean} The status of the validation
-         * @protected
-         */
-        _validateRevealAmount: function (val) {
-            var rv = false;
-
-            if (JS.isNumber(val)) {
-                rv = val >= 0 && val < 100;
-            }
-
-            return rv;
-        },
-
-        /**
-         * Validate the scrollIncrement value.
-         *
-         * @method _validateScrollIncrement
-         * @param val {Number} The scrollIncrement value
-         * @return {Boolean} The status of the validation
-         * @protected
-         */
-        _validateScrollIncrement: function (val) {
-            var rv = false;
-
-            if (JS.isNumber(val)) {
-                rv = (val > 0 && val < this.get("numItems"));
-            }
-
-            return rv;
-        }
-
-    });
-
-})();
-
-YAHOO.register("carousel", YAHOO.widget.Carousel, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/charts/README b/eclipse.org-common/yui/2.6.0/build/charts/README
deleted file mode 100644
index a20a4cf..0000000
--- a/eclipse.org-common/yui/2.6.0/build/charts/README
+++ /dev/null
@@ -1,38 +0,0 @@
-YUI Library - Charts - Release Notes
-2.6.0
-  * Fixed bug in which an empty series definition caused charts to ignore styles.
-  * Fixed bug in which additions to Object.prototype cause SWFObject embed to fail
-  * refreshData is now a public method
-  * Fixed bug in which TimeAxis bounds calculation fails when polling. 
-  * Added new optional altText attribute.
-  * Moved _initialized flag from Charts to FlashAdapter.
-  * Fixed bug in which changes in the dom (e.g. display property of chart) would cause the chart to erase. New known issue added. (see known issues section)
-  * Added support for marker labels on PieSeries. Default is percentage values. May be customized with labelFunction property.
-  * New Chart Types: StackedColumnChart and StackedBarChart.
-  * Fixed bug in which charts delivered in an iframe from a different domain failed to render in Firefox.
-  * contentReady event now fires after the dataSource is available. In some rare cases it may not be backwards compatible. If you need the event to fire earlier, you can revert back to the previous code. (see version 2.5.2)
-  
-2.5.2
-  * Support for legends
-  * New series styles connectPoints, connectDiscontinuousPoints, and discontinuousDashLength
-  * dataTipFunction, xAxisLabelFunction, and yAxisLabelFunction attributes now support function references
-  * Added destroy() function.
-  * Changed majorTicks and minorTicks substyle "position" to "display". New option "none" will hide ticks.
-  * When polling is enabled, the chart now makes an immediate request instead of waiting for the first interval.
-  * Includes ActionScript source files and sample Ant build file.
-
-2.5.1
-  * No changes
-
-2.5.0
-  * Added lineSize style to series styles
-  * Added showLabels substyle to xAxis and yAxis styles
-  * Added more descriptive local content warning for ExternalInterface failure
-  * Improved minor unit calculation
-  * Fixed animation and marker positioning bugs
-  * Fixed bug that caused series definition update to fail
-  * Fixed bug that caused setting hex color values with # symbol to fail
-  * Added initialization flag to ensure DataSource doesn't receive multiple requests during initialization.
-
-2.4.0
-  * Experimental release
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/charts/assets/charts.swf b/eclipse.org-common/yui/2.6.0/build/charts/assets/charts.swf
deleted file mode 100644
index fba8c8e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/charts/assets/charts.swf
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/charts/charts-experimental-debug.js b/eclipse.org-common/yui/2.6.0/build/charts/charts-experimental-debug.js
deleted file mode 100644
index dfa288a..0000000
--- a/eclipse.org-common/yui/2.6.0/build/charts/charts-experimental-debug.js
+++ /dev/null
@@ -1,2291 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/*extern ActiveXObject, __flash_unloadHandler, __flash_savedUnloadHandler */
-/*!
- * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
- *
- * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
- * http://www.opensource.org/licenses/mit-license.php
- */
-var deconcept = deconcept || {};
-
-if(typeof deconcept.util == "undefined" || !deconcept.util)
-{
-	deconcept.util = {};
-}
-
-if(typeof deconcept.SWFObjectUtil == "undefined" || !deconcept.SWFObjectUtil)
-{
-	deconcept.SWFObjectUtil = {};
-}
-
-deconcept.SWFObject = function(swf, id, w, h, ver, c, quality, xiRedirectUrl, redirectUrl, detectKey)
-{
-	if(!document.getElementById) { return; }
-	this.DETECT_KEY = detectKey ? detectKey : 'detectflash';
-	this.skipDetect = deconcept.util.getRequestParameter(this.DETECT_KEY);
-	this.params = {};
-	this.variables = {};
-	this.attributes = [];
-	if(swf) { this.setAttribute('swf', swf); }
-	if(id) { this.setAttribute('id', id); }
-	if(w) { this.setAttribute('width', w); }
-	if(h) { this.setAttribute('height', h); }
-	if(ver) { this.setAttribute('version', new deconcept.PlayerVersion(ver.toString().split("."))); }
-	this.installedVer = deconcept.SWFObjectUtil.getPlayerVersion();
-	if (!window.opera && document.all && this.installedVer.major > 7)
-	{
-		// only add the onunload cleanup if the Flash Player version supports External Interface and we are in IE
-		deconcept.SWFObject.doPrepUnload = true;
-	}
-	if(c)
-	{
-		this.addParam('bgcolor', c);
-	}
-	var q = quality ? quality : 'high';
-	this.addParam('quality', q);
-	this.setAttribute('useExpressInstall', false);
-	this.setAttribute('doExpressInstall', false);
-	var xir = (xiRedirectUrl) ? xiRedirectUrl : window.location;
-	this.setAttribute('xiRedirectUrl', xir);
-	this.setAttribute('redirectUrl', '');
-	if(redirectUrl)
-	{
-		this.setAttribute('redirectUrl', redirectUrl);
-	}
-};
-
-deconcept.SWFObject.prototype =
-{
-	useExpressInstall: function(path)
-	{
-		this.xiSWFPath = !path ? "expressinstall.swf" : path;
-		this.setAttribute('useExpressInstall', true);
-	},
-	setAttribute: function(name, value){
-		this.attributes[name] = value;
-	},
-	getAttribute: function(name){
-		return this.attributes[name];
-	},
-	addParam: function(name, value){
-		this.params[name] = value;
-	},
-	getParams: function(){
-		return this.params;
-	},
-	addVariable: function(name, value){
-		this.variables[name] = value;
-	},
-	getVariable: function(name){
-		return this.variables[name];
-	},
-	getVariables: function(){
-		return this.variables;
-	},
-	getVariablePairs: function(){
-		var variablePairs = [];
-		var key;
-		var variables = this.getVariables();
-		for(key in variables)
-		{
-			if(variables.hasOwnProperty(key))
-			{
-				variablePairs[variablePairs.length] = key +"="+ variables[key];
-			}
-		}
-		return variablePairs;
-	},
-	getSWFHTML: function() {
-		var swfNode = "";
-		var params = {};
-		var key = "";
-		var pairs = "";
-		if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { // netscape plugin architecture
-			if (this.getAttribute("doExpressInstall")) {
-				this.addVariable("MMplayerType", "PlugIn");
-				this.setAttribute('swf', this.xiSWFPath);
-			}
-			swfNode = '<embed type="application/x-shockwave-flash" src="'+ this.getAttribute('swf') +'" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" style="'+ this.getAttribute('style') +'"';
-			swfNode += ' id="'+ this.getAttribute('id') +'" name="'+ this.getAttribute('id') +'" ';
-			params = this.getParams();
-			for(key in params)
-			{
-				if(params.hasOwnProperty(key))
-				{
-					swfNode += [key] +'="'+ params[key] +'" ';
-				}
-			}
-			pairs = this.getVariablePairs().join("&");
-			if (pairs.length > 0){ swfNode += 'flashvars="'+ pairs +'"'; }
-			swfNode += '/>';
-		} else { // PC IE
-			if (this.getAttribute("doExpressInstall")) {
-				this.addVariable("MMplayerType", "ActiveX");
-				this.setAttribute('swf', this.xiSWFPath);
-			}
-			swfNode = '<object id="'+ this.getAttribute('id') +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" style="'+ this.getAttribute('style') +'">';
-			swfNode += '<param name="movie" value="'+ this.getAttribute('swf') +'" />';
-			params = this.getParams();
-			for(key in params)
-			{
-				if(params.hasOwnProperty(key))
-				{
-					swfNode += '<param name="'+ key +'" value="'+ params[key] +'" />';
-				}
-			}
-			pairs = this.getVariablePairs().join("&");
-			if(pairs.length > 0) {swfNode += '<param name="flashvars" value="'+ pairs +'" />';}
-			swfNode += "</object>";
-		}
-		return swfNode;
-	},
-	write: function(elementId)
-	{
-		if(this.getAttribute('useExpressInstall')) {
-			// check to see if we need to do an express install
-			var expressInstallReqVer = new deconcept.PlayerVersion([6,0,65]);
-			if (this.installedVer.versionIsValid(expressInstallReqVer) && !this.installedVer.versionIsValid(this.getAttribute('version'))) {
-				this.setAttribute('doExpressInstall', true);
-				this.addVariable("MMredirectURL", escape(this.getAttribute('xiRedirectUrl')));
-				document.title = document.title.slice(0, 47) + " - Flash Player Installation";
-				this.addVariable("MMdoctitle", document.title);
-			}
-		}
-		if(this.skipDetect || this.getAttribute('doExpressInstall') || this.installedVer.versionIsValid(this.getAttribute('version')))
-		{
-			var n = (typeof elementId == 'string') ? document.getElementById(elementId) : elementId;
-			n.innerHTML = this.getSWFHTML();
-			return true;
-		}
-		else
-		{
-			if(this.getAttribute('redirectUrl') !== "")
-			{
-				document.location.replace(this.getAttribute('redirectUrl'));
-			}
-		}
-		return false;
-	}
-};
-
-/* ---- detection functions ---- */
-deconcept.SWFObjectUtil.getPlayerVersion = function()
-{
-	var axo = null;
-	var PlayerVersion = new deconcept.PlayerVersion([0,0,0]);
-	if(navigator.plugins && navigator.mimeTypes.length)
-	{
-		var x = navigator.plugins["Shockwave Flash"];
-		if(x && x.description)
-		{
-			PlayerVersion = new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split("."));
-		}
-	}
-	else if (navigator.userAgent && navigator.userAgent.indexOf("Windows CE") >= 0)
-	{ // if Windows CE
-		var counter = 3;
-		while(axo)
-		{
-			try
-			{
-				counter++;
-				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+ counter);
-//				document.write("player v: "+ counter);
-				PlayerVersion = new deconcept.PlayerVersion([counter,0,0]);
-			}
-			catch(e)
-			{
-				axo = null;
-			}
-		}
-	}
-	else
-	{ // Win IE (non mobile)
-		// do minor version lookup in IE, but avoid fp6 crashing issues
-		// see http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/
-		try
-		{
-			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
-		}
-		catch(e)
-		{
-			try
-			{
-				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
-				PlayerVersion = new deconcept.PlayerVersion([6,0,21]);
-				axo.AllowScriptAccess = "always"; // error if player version < 6.0.47 (thanks to Michael Williams @ Adobe for this code)
-			}
-			catch(e)
-			{
-				if(PlayerVersion.major == 6)
-				{
-					return PlayerVersion;
-				}
-			}
-			try
-			{
-				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
-			}
-			catch(e) {}
-		}
-		
-		if(axo !== null)
-		{
-			PlayerVersion = new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
-		}
-	}
-	return PlayerVersion;
-};
-
-deconcept.PlayerVersion = function(arrVersion)
-{
-	this.major = arrVersion[0] !== null ? parseInt(arrVersion[0], 0) : 0;
-	this.minor = arrVersion[1] !== null ? parseInt(arrVersion[1], 0) : 0;
-	this.rev = arrVersion[2] !== null ? parseInt(arrVersion[2], 0) : 0;
-};
-
-deconcept.PlayerVersion.prototype.versionIsValid = function(fv)
-{
-	if(this.major < fv.major)
-	{
-		return false;
-	}
-	if(this.major > fv.major)
-	{
-		return true;
-	}
-	if(this.minor < fv.minor)
-	{
-		return false;
-	}
-	if(this.minor > fv.minor)
-	{
-		return true;
-	}
-	if(this.rev < fv.rev)
-	{
-		return false;
-	}
-	return true;
-};
-
-/* ---- get value of query string param ---- */
-deconcept.util =
-{
-	getRequestParameter: function(param)
-	{
-		var q = document.location.search || document.location.hash;
-		if(param === null) { return q; }
-		if(q)
-		{
-			var pairs = q.substring(1).split("&");
-			for(var i=0; i < pairs.length; i++)
-			{
-				if (pairs[i].substring(0, pairs[i].indexOf("=")) == param)
-				{
-					return pairs[i].substring((pairs[i].indexOf("=") + 1));
-				}
-			}
-		}
-		return "";
-	}
-};
-
-/* fix for video streaming bug */
-deconcept.SWFObjectUtil.cleanupSWFs = function()
-{
-	var objects = document.getElementsByTagName("OBJECT");
-	for(var i = objects.length - 1; i >= 0; i--)
-	{
-		objects[i].style.display = 'none';
-		for(var x in objects[i])
-		{
-			if(typeof objects[i][x] == 'function')
-			{
-				objects[i][x] = function(){};
-			}
-		}
-	}
-};
-
-// fixes bug in some fp9 versions see http://blog.deconcept.com/2006/07/28/swfobject-143-released/
-if(deconcept.SWFObject.doPrepUnload)
-{
-	if(!deconcept.unloadSet)
-	{
-		deconcept.SWFObjectUtil.prepUnload = function()
-		{
-			__flash_unloadHandler = function(){};
-			__flash_savedUnloadHandler = function(){};
-			window.attachEvent("onunload", deconcept.SWFObjectUtil.cleanupSWFs);
-		};
-		window.attachEvent("onbeforeunload", deconcept.SWFObjectUtil.prepUnload);
-		deconcept.unloadSet = true;
-	}
-}
-
-/* add document.getElementById if needed (mobile IE < 5) */
-if(!document.getElementById && document.all)
-{
-	document.getElementById = function(id) { return document.all[id]; };
-}
-
-/* add some aliases for ease of use/backwards compatibility */
-var getQueryParamValue = deconcept.util.getRequestParameter;
-var FlashObject = deconcept.SWFObject; // for legacy support
-var SWFObject = deconcept.SWFObject;
-
-/**
- * Wraps Flash embedding functionality and allows communication with SWF through
- * attributes.
- *
- * @namespace YAHOO.widget
- * @class FlashAdapter
- * @uses YAHOO.util.AttributeProvider
- */
-YAHOO.widget.FlashAdapter = function(swfURL, containerID, attributes)
-{
-	// set up the initial events and attributes stuff
-	this._queue = this._queue || [];
-	this._events = this._events || {};
-	this._configs = this._configs || {};
-	attributes = attributes || {};
-	
-	//the Flash Player external interface code from Adobe doesn't play nicely
-	//with the default value, yui-gen, in IE
-	this._id = attributes.id = attributes.id || YAHOO.util.Dom.generateId(null, "yuigen");
-	attributes.version = attributes.version || "9.0.45";
-	attributes.backgroundColor = attributes.backgroundColor || "#ffffff";
-	
-	//we can't use the initial attributes right away
-	//so save them for once the SWF finishes loading
-	this._attributes = attributes;
-	
-	this._swfURL = swfURL;
-	this._containerID = containerID;
-	
-	//embed the SWF file in the page
-	this._embedSWF(this._swfURL, this._containerID, attributes.id, attributes.version,
-		attributes.backgroundColor, attributes.expressInstall, attributes.wmode);
-	
-	/**
-	 * Fires when the SWF is initialized and communication is possible.
-	 * @event contentReady
-	 */
-	//Fix for iframe cross-domain issue with FF2x 
-	try
-	{
-		this.createEvent("contentReady");
-	}
-	catch(e){}
-};
-
-YAHOO.extend(YAHOO.widget.FlashAdapter, YAHOO.util.AttributeProvider,
-{
-	/**
-	 * The URL of the SWF file.
-	 * @property _swfURL
-	 * @type String
-	 * @private
-	 */
-	_swfURL: null,
-
-	/**
-	 * The ID of the containing DIV.
-	 * @property _containerID
-	 * @type String
-	 * @private
-	 */
-	_containerID: null,
-
-	/**
-	 * A reference to the embedded SWF file.
-	 * @property _swf
-	 * @private
-	 */
-	_swf: null,
-
-	/**
-	 * The id of this instance.
-	 * @property _id
-	 * @type String
-	 * @private
-	 */
-	_id: null,
-
-	/**
-	 * Indicates whether the SWF has been initialized and is ready
-	 * to communicate with JavaScript
-	 * @property _initialized
-	 * @type Boolean
-	 * @private
-	 */
-	_initialized: false,
-	
-	/**
-	 * The initializing attributes are stored here until the SWF is ready.
-	 * @property _attributes
-	 * @type Object
-	 * @private
-	 */
-	_attributes: null, //the intializing attributes
-
-	/**
-	 * Public accessor to the unique name of the FlashAdapter instance.
-	 *
-	 * @method toString
-	 * @return {String} Unique name of the FlashAdapter instance.
-	 */
-	toString: function()
-	{
-		return "FlashAdapter " + this._id;
-	},
-
-	/**
-	 * Nulls out the entire FlashAdapter instance and related objects and removes attached
-	 * event listeners and clears out DOM elements inside the container. After calling
-	 * this method, the instance reference should be expliclitly nulled by implementer,
-	 * as in myChart = null. Use with caution!
-	 *
-	 * @method destroy
-	 */
-	destroy: function()
-	{
-		//kill the Flash Player instance
-		if(this._swf)
-		{
-			var container = YAHOO.util.Dom.get(this._containerID);
-			container.removeChild(this._swf);
-		}
-		
-		var instanceName = this._id;
-		
-		//null out properties
-		for(var prop in this)
-		{
-			if(YAHOO.lang.hasOwnProperty(this, prop))
-			{
-				this[prop] = null;
-			}
-		}
-		
-		YAHOO.log("FlashAdapter instance destroyed: " + instanceName);
-	},
-
-	/**
-	 * Embeds the SWF in the page and associates it with this instance.
-	 *
-	 * @method _embedSWF
-	 * @private
-	 */
-	_embedSWF: function(swfURL, containerID, swfID, version, backgroundColor, expressInstall, wmode)
-	{
-		//standard SWFObject embed
-		var swfObj = new deconcept.SWFObject(swfURL, swfID, "100%", "100%", version, backgroundColor);
-
-		if(expressInstall)
-		{
-			swfObj.useExpressInstall(expressInstall);
-		}
-
-		//make sure we can communicate with ExternalInterface
-		swfObj.addParam("allowScriptAccess", "always");
-		
-		if(wmode)
-		{
-			swfObj.addParam("wmode", wmode);
-		}
-		
-		//again, a useful ExternalInterface trick
-		swfObj.addVariable("allowedDomain", document.location.hostname);
-
-		//tell the SWF which HTML element it is in
-		swfObj.addVariable("elementID", swfID);
-
-		// set the name of the function to call when the swf has an event
-		swfObj.addVariable("eventHandler", "YAHOO.widget.FlashAdapter.eventHandler");
-
-		var container = YAHOO.util.Dom.get(containerID);
-		var result = swfObj.write(container);
-		if(result)
-		{
-			this._swf = YAHOO.util.Dom.get(swfID);
-			//if successful, let's add an owner property to the SWF reference
-			//this will allow the event handler to communicate with a YAHOO.widget.FlashAdapter
-			this._swf.owner = this;
-		}
-		else
-		{
-			YAHOO.log("Unable to load SWF " + swfURL);
-		}
-	},
-
-	/**
-	 * Handles or re-dispatches events received from the SWF.
-	 *
-	 * @method _eventHandler
-	 * @private
-	 */
-	_eventHandler: function(event)
-	{
-		var type = event.type;
-		switch(type)
-		{
-			case "swfReady":
-   				this._loadHandler();
-   				this.fireEvent("contentReady");
-				return;
-			case "log":
-				YAHOO.log(event.message, event.category, this.toString());
-				return;
-		}
-		
-		//be sure to return after your case or the event will automatically fire!
-		this.fireEvent(type, event);
-	},
-
-	/**
-	 * Called when the SWF has been initialized.
-	 *
-	 * @method _loadHandler
-	 * @private
-	 */
-	_loadHandler: function()
-	{
-		this._initialized = false;
-		this._initAttributes(this._attributes);
-		this.setAttributes(this._attributes, true);
-		
-		this._initialized = true;
-	},
-	
-	set: function(name, value)
-	{
-		//save all the attributes in case the swf reloads
-		//so that we can pass them in again
-		this._attributes[name] = value;
-		YAHOO.widget.FlashAdapter.superclass.set.call(this, name, value);
-	},
-	
-	/**
-	 * Initializes the attributes.
-	 *
-	 * @method _initAttributes
-	 * @private
-	 */
-	_initAttributes: function(attributes)
-	{
-		//should be overridden if other attributes need to be set up
-
-		/**
-		 * @attribute wmode
-		 * @description Sets the window mode of the Flash Player control. May be
-		 *		"window", "opaque", or "transparent". Only available in the constructor
-		 *		because it may not be set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-		 
-		/**
-		 * @attribute expressInstall
-		 * @description URL pointing to a SWF file that handles Flash Player's express
-		 *		install feature. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-
-		/**
-		 * @attribute version
-		 * @description Minimum required version for the SWF file. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-
-		/**
-		 * @attribute backgroundColor
-		 * @description The background color of the SWF. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-		 
-		/**
-		 * @attribute altText
-		 * @description The alternative text to provide for screen readers and other assistive technology.
-		 * @type String
-		 */
-		this.getAttributeConfig("altText",
-		{
-			method: this._getAltText
-		});
-		this.setAttributeConfig("altText",
-		{
-			method: this._setAltText
-		});
-		
-		/**
-		 * @attribute swfURL
-		 * @description Absolute or relative URL to the SWF displayed by the FlashAdapter. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-		this.getAttributeConfig("swfURL",
-		{
-			method: this._getSWFURL
-		});
-	},
-	
-	/**
-	 * Getter for swfURL attribute.
-	 *
-	 * @method _getSWFURL
-	 * @private
-	 */
-	_getSWFURL: function()
-	{
-		return this._swfURL;
-	},
-	
-	/**
-	 * Getter for altText attribute.
-	 *
-	 * @method _getAltText
-	 * @private
-	 */
-	_getAltText: function()
-	{
-		return this._swf.getAltText();
-	},
-
-	/**
-	 * Setter for altText attribute.
-	 *
-	 * @method _setAltText
-	 * @private
-	 */
-	_setAltText: function(value)
-	{
-		return this._swf.setAltText(value);
-	}
-});
-
-/**
- * Receives event messages from SWF and passes them to the correct instance
- * of FlashAdapter.
- *
- * @method YAHOO.widget.FlashAdapter.eventHandler
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.eventHandler = function(elementID, event)
-{
-	var loadedSWF = YAHOO.util.Dom.get(elementID);
-	if(!loadedSWF.owner)
-	{
-		//fix for ie: if owner doesn't exist yet, try again in a moment
-		setTimeout(function() { YAHOO.widget.FlashAdapter.eventHandler( elementID, event ); }, 0);
-	}
-	else
-	{
-		loadedSWF.owner._eventHandler(event);
-	}
-};
-
-/**
- * The number of proxy functions that have been created.
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.proxyFunctionCount = 0;
-
-/**
- * Creates a globally accessible function that wraps a function reference.
- * Returns the proxy function's name as a string for use by the SWF through
- * ExternalInterface.
- *
- * @method YAHOO.widget.FlashAdapter.createProxyFunction
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.createProxyFunction = function(func)
-{
-	var index = YAHOO.widget.FlashAdapter.proxyFunctionCount;
-	YAHOO.widget.FlashAdapter["proxyFunction" + index] = function()
-	{
-		return func.apply(null, arguments);
-	};
-	YAHOO.widget.FlashAdapter.proxyFunctionCount++;
-	return "YAHOO.widget.FlashAdapter.proxyFunction" + index.toString();
-};
-
-/**
- * Removes a function created with createProxyFunction()
- * 
- * @method YAHOO.widget.FlashAdapter.removeProxyFunction
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.removeProxyFunction = function(funcName)
-{
-	//quick error check
-	if(!funcName || funcName.indexOf("YAHOO.widget.FlashAdapter.proxyFunction") < 0)
-	{
-		return;
-	}
-	
-	funcName = funcName.substr(26);
-	YAHOO.widget.FlashAdapter[funcName] = null;
-};
-
-/**
- * The Charts widget provides a Flash control for displaying data
- * graphically by series across A-grade browsers with Flash Player installed.
- *
- * @module charts
- * @requires yahoo, dom, event, datasource
- * @title Charts Widget
- * @experimental
- */
- 
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * Chart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class Chart
- * @uses YAHOO.widget.FlashAdapter
- * @constructor
- * @param type {String} The char type. May be "line", "column", "bar", or "pie"
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.Chart = function(type, containerId, dataSource, attributes)
-{
-	YAHOO.widget.Chart.superclass.constructor.call(this, YAHOO.widget.Chart.SWFURL, containerId, attributes);
-	
-	this._type = type;
-	this._dataSource = dataSource;
-	
-	/**
-	 * Fires when the user moves the mouse over the bounds of an item renderer in the chart.
-	 *
-	 * @event itemMouseOverEvent
-	 * @param event.type {String} The event type
-	 * @param event.item {Object} The data displayed by the renderer
-	 * @param event.index {Number} The position within the series that the item appears.
-	 * @param event.seriesIndex {Number} The position within the series definition that the series appears.
-	 * @param event.x {Number} The horizontal position of the mouse, relative to the SWF.
-	 * @param event.y {Number} The vertical position of the mouse, relative to the SWF.
-	 */
-	this.createEvent("itemMouseOverEvent");
-	
-	/**
-	 * Fires when the user moves the mouse out of the bounds of an item renderer in the chart.
-	 *
-	 * @event itemMouseOutEvent
-	 * @param event.type {String} The event type
-	 * @param event.item {Object} The data displayed by the renderer
-	 * @param event.index {Number} The position within the series that the item appears.
-	 * @param event.seriesIndex {Number} The position within the series definition that the series appears.
-	 * @param event.x {Number} The horizontal position of the mouse, relative to the SWF.
-	 * @param event.y {Number} The vertical position of the mouse, relative to the SWF.
-	 */
-	this.createEvent("itemMouseOutEvent");
-	
-	/**
-	 * Fires when the user clicks an item renderer in the chart with the mouse.
-	 *
-	 * @event itemClickEvent
-	 * @param event.type {String} The event type
-	 * @param event.item {Object} The data displayed by the renderer
-	 * @param event.index {Number} The position within the series that the item appears.
-	 * @param event.seriesIndex {Number} The position within the series definition that the series appears.
-	 * @param event.x {Number} The horizontal position of the mouse, relative to the SWF.
-	 * @param event.y {Number} The vertical position of the mouse, relative to the SWF.
-	 */
-	this.createEvent("itemClickEvent");
-	
-	/**
-	 * Fires when the user double-clicks an item renderer in the chart with the mouse.
-	 *
-	 * @event itemDoubleClickEvent
-	 * @param event.type {String} The event type
-	 * @param event.item {Object} The data displayed by the renderer
-	 * @param event.index {Number} The position within the series that the item appears.
-	 * @param event.seriesIndex {Number} The position within the series definition that the series appears.
-	 * @param event.x {Number} The horizontal position of the mouse, relative to the SWF.
-	 * @param event.y {Number} The vertical position of the mouse, relative to the SWF.
-	 */
-	this.createEvent("itemDoubleClickEvent");
-	
-	/**
-	 * Fires when the user presses the mouse down on an item to initiate a drag action.
-	 *
-	 * @event itemDragStartEvent
-	 * @param event.type {String} The event type
-	 * @param event.item {Object} The data displayed by the renderer
-	 * @param event.index {Number} The position within the series that the item appears.
-	 * @param event.seriesIndex {Number} The position within the series definition that the series appears.
-	 * @param event.x {Number} The horizontal position of the mouse, relative to the SWF.
-	 * @param event.y {Number} The vertical position of the mouse, relative to the SWF.
-	 */
-	this.createEvent("itemDragStartEvent");
-	
-	/**
-	 * Fires when the user moves the mouse during a drag action.
-	 *
-	 * @event itemDragEvent
-	 * @param event.type {String} The event type
-	 * @param event.item {Object} The data displayed by the renderer
-	 * @param event.index {Number} The position within the series that the item appears.
-	 * @param event.seriesIndex {Number} The position within the series definition that the series appears.
-	 * @param event.x {Number} The horizontal position of the mouse, relative to the SWF.
-	 * @param event.y {Number} The vertical position of the mouse, relative to the SWF.
-	 */
-	this.createEvent("itemDragEvent");
-
-	/**
-	 * Fires when the user releases the mouse during a drag action.
-	 *
-	 * @event itemDragEndEvent
-	 * @param event.type {String} The event type
-	 * @param event.item {Object} The data displayed by the renderer
-	 * @param event.index {Number} The position within the series that the item appears.
-	 * @param event.seriesIndex {Number} The position within the series definition that the series appears.
-	 * @param event.x {Number} The horizontal position of the mouse, relative to the SWF.
-	 * @param event.y {Number} The vertical position of the mouse, relative to the SWF.
-	 */
-	this.createEvent("itemDragEndEvent");
-};
-
-YAHOO.extend(YAHOO.widget.Chart, YAHOO.widget.FlashAdapter,
-{
-	/**
-	 * The type of this chart instance.
-	 * @property _type
-	 * @type String
-	 * @private
-	 */
-	_type: null,
-
-	/**
-	 * The id returned from the DataSource's setInterval function.
-	 * @property _pollingID
-	 * @type Number
-	 * @private
-	 */
-	_pollingID: null,
-
-	/**
-	 * The time, in ms, between requests for data.
-	 * @property _pollingInterval
-	 * @type Number
-	 * @private
-	 */
-	_pollingInterval: null,
-
-	/**
-	 * Stores a reference to the dataTipFunction created by
-	 * YAHOO.widget.FlashAdapter.createProxyFunction()
-	 * @property _dataTipFunction
-	 * @type String
-	 * @private
-	 */
-	_dataTipFunction: null,
-	
-	/**
-	 * Stores references to series labelFunction values created by
-	 * YAHOO.widget.FlashAdapter.createProxyFunction()
-	 * @property _seriesLabelFunctions
-	 * @type Array
-	 * @private
-	 */
-	_seriesLabelFunctions: null,
-
-	/**
-	 * Public accessor to the unique name of the Chart instance.
-	 *
-	 * @method toString
-	 * @return {String} Unique name of the Chart instance.
-	 */
-	toString: function()
-	{
-		return "Chart " + this._id;
-	},
-	
-	/**
-	 * Sets a single style value on the Chart instance.
-	 *
-	 * @method setStyle
-	 * @param name {String} Name of the Chart style value to change.
-	 * @param value {Object} New value to pass to the Chart style.
-	 */
-	setStyle: function(name, value)
-	{
-		//we must jsonify this because Flash Player versions below 9.0.60 don't handle
-		//complex ExternalInterface parsing correctly
-		value = YAHOO.lang.JSON.stringify(value);
-		this._swf.setStyle(name, value);
-	},
-	
-	/**
-	 * Resets all styles on the Chart instance.
-	 *
-	 * @method setStyles
-	 * @param styles {Object} Initializer for all Chart styles.
-	 */
-	setStyles: function(styles)
-	{
-		//we must jsonify this because Flash Player versions below 9.0.60 don't handle
-		//complex ExternalInterface parsing correctly
-		styles = YAHOO.lang.JSON.stringify(styles);
-		this._swf.setStyles(styles);
-	},
-	
-	/**
-	 * Sets the styles on all series in the Chart.
-	 *
-	 * @method setSeriesStyles
-	 * @param styles {Array} Initializer for all Chart series styles.
-	 */
-	setSeriesStyles: function(styles)
-	{
-		//we must jsonify this because Flash Player versions below 9.0.60 don't handle
-		//complex ExternalInterface parsing correctly
-		for(var i = 0; i < styles.length; i++)
-		{
-			styles[i] = YAHOO.lang.JSON.stringify(styles[i]);	
-		}
-		this._swf.setSeriesStyles(styles);
-	},
-	
-	destroy: function()
-	{
-		//stop polling if needed
-		if(this._dataSource !== null)
-		{
-			if(this._pollingID !== null)
-			{
-				this._dataSource.clearInterval(this._pollingID);
-				this._pollingID = null;
-			}
-		}
-		
-		//remove proxy functions
-		if(this._dataTipFunction)
-		{
-			YAHOO.widget.FlashAdapter.removeProxyFunction(this._dataTipFunction);
-		}
-		
-		//call last
-		YAHOO.widget.Chart.superclass.destroy.call(this);
-	},
-	
-	/**
-	 * Initializes the attributes.
-	 *
-	 * @method _initAttributes
-	 * @private
-	 */
-	_initAttributes: function(attributes)
-	{
-		YAHOO.widget.Chart.superclass._initAttributes.call(this, attributes);
-
-		/**
-		 * @attribute request
-		 * @description Request to be sent to the Chart's DataSource.
-		 * @type String
-		 */
-		this.getAttributeConfig("request",
-		{
-			method: this._getRequest
-		});
-		
-		this.setAttributeConfig("request",
-		{
-			method: this._setRequest
-		});
-		
-		/**
-		 * @attribute dataSource
-		 * @description The DataSource instance to display in the Chart.
-		 * @type DataSource
-		 */
-		this.getAttributeConfig("dataSource",
-		{
-			method: this._getDataSource
-		});
-		
-		this.setAttributeConfig("dataSource",
-		{
-			method: this._setDataSource
-		});
-		
-		/**
-		 * @attribute series
-		 * @description Defines the series to be displayed by the Chart.
-		 * @type Array
-		 */
-		this.getAttributeConfig("series",
-		{
-			method: this._getSeriesDefs
-		});
-		
-		this.setAttributeConfig("series",
-		{
-			method: this._setSeriesDefs
-		});
-		
-		/**
-		 * @attribute categoryNames
-		 * @description Defines the names of the categories to be displayed in the Chart..
-		 * @type Array
-		 */
-		this.getAttributeConfig("categoryNames",
-		{
-			method: this._getCategoryNames
-		});
-		
-		this.setAttributeConfig("categoryNames",
-		{
-			validator: YAHOO.lang.isArray,
-			method: this._setCategoryNames
-		});
-		
-		/**
-		 * @attribute dataTipFunction
-		 * @description The string representation of a globally-accessible function
-		 * that may be called by the SWF to generate the datatip text for a Chart's item.
-		 * @type String
-		 */
-		this.getAttributeConfig("dataTipFunction",
-		{
-			method: this._getDataTipFunction
-		});
-		
-		this.setAttributeConfig("dataTipFunction",
-		{
-			method: this._setDataTipFunction
-		});
-
-		/**
-		 * @attribute polling
-		 * @description A numeric value indicating the number of milliseconds between
-		 * polling requests to the DataSource.
-		 * @type Number
-		 */
-		this.getAttributeConfig("polling",
-		{
-			method: this._getPolling
-		});
-
-		this.setAttributeConfig("polling",
-		{
-			method: this._setPolling
-		});
-	},
-	
-	/**
-	 * Called when the SWF is ready for communication. Sets the type, initializes
-	 * the styles, and sets the DataSource.
-	 *
-	 * @method _loadHandler
-	 * @private
-	 */
-	_loadHandler: function()
-	{
-		//the type is set separately because it must be first!
-		this._swf.setType(this._type);
-		
-		//set initial styles
-		if(this._attributes.style)
-		{
-			var style = this._attributes.style;
-			this.setStyles(style);		
-		}
-		
-		YAHOO.widget.Chart.superclass._loadHandler.call(this);
-		
-		if(this._dataSource)
-		{
-			this.set("dataSource", this._dataSource);
-		}
-	},
-
-	/**
-	 * Sends (or resends) the request to the DataSource.
-	 *
-	 * @method refreshData
-	 */
-	refreshData: function()
-	{
-		if(!this._initialized)
-		{
-			return;
-		}
-		
-		if(this._dataSource !== null)
-		{
-			if(this._pollingID !== null)
-			{
-				this._dataSource.clearInterval(this._pollingID);
-				this._pollingID = null;
-			}
-			
-			if(this._pollingInterval > 0)
-			{
-				this._pollingID = this._dataSource.setInterval(this._pollingInterval, this._request, this._loadDataHandler, this);
-			}
-			this._dataSource.sendRequest(this._request, this._loadDataHandler, this);
-		}
-	},
-
-	/**
-	 * Called when the DataSource receives new data. The series definitions are used
-	 * to build a data provider for the SWF chart.
-	 *
-	 * @method _loadDataHandler
-	 * @private
-	 */
-	_loadDataHandler: function(request, response, error)
-	{
-		if(this._swf)
-		{
-			if(error)
-			{
-				YAHOO.log("Unable to load data.", "error");
-			}
-			else
-			{
-				var i;
-				if(this._seriesLabelFunctions)
-				{
-					var count = this._seriesLabelFunctions.length;
-					for(i = 0; i < count; i++)
-					{
-						YAHOO.widget.FlashAdapter.removeProxyFunction(this._seriesLabelFunctions[i]);
-					}
-					this._seriesLabelFunction = null;
-				}
-				this._seriesLabelFunctions = [];
-
-				//make a copy of the series definitions so that we aren't
-				//editing them directly.
-				var dataProvider = [];	
-				var seriesCount = 0;
-				var currentSeries = null;
-				if(this._seriesDefs !== null)
-				{
-					seriesCount = this._seriesDefs.length;
-					for(i = 0; i < seriesCount; i++)
-					{
-						currentSeries = this._seriesDefs[i];
-						var clonedSeries = {};
-						for(var prop in currentSeries)
-						{
-							if(YAHOO.lang.hasOwnProperty(currentSeries, prop))
-							{
-								if(prop == "style")
-								{
-									if(currentSeries.style !== null)
-									{
-										clonedSeries.style = YAHOO.lang.JSON.stringify(currentSeries.style);
-									}
-								}
-
-								else if(prop == "labelFunction")
-								{
-									if(currentSeries.labelFunction !== null &&
-										typeof currentSeries.labelFunction == "function")
-									{
-										clonedSeries.labelFunction = YAHOO.widget.FlashAdapter.createProxyFunction(currentSeries.labelFunction);
-										this._seriesLabelFunctions.push(clonedSeries.labelFunction);
-									}
-								}
-
-								else
-								{
-									clonedSeries[prop] = currentSeries[prop];
-								}
-							}
-						}
-						dataProvider.push(clonedSeries);
-					}
-				}
-
-				if(seriesCount > 0)
-				{
-					for(i = 0; i < seriesCount; i++)
-					{
-						currentSeries = dataProvider[i];
-						if(!currentSeries.type)
-						{
-							currentSeries.type = this._type;
-						}
-						currentSeries.dataProvider = response.results;
-					}
-				}
-				else
-				{
-					var series = {type: this._type, dataProvider: response.results};
-					dataProvider.push(series);
-				}
-				this._swf.setDataProvider(dataProvider);
-			}
-		}
-	},
-
-	/**
-	 * Storage for the request attribute.
-	 * 
-	 * @property _request
-	 * @private
-	 */
-	_request: "",
-	
-	/**
-	 * Getter for the request attribute.
-	 *
-	 * @method _getRequest
-	 * @private
-	 */
-	_getRequest: function()
-	{
-		return this._request;
-	},
-	
-	/**
-	 * Setter for the request attribute.
-	 *
-	 * @method _setRequest
-	 * @private
-	 */
-	_setRequest: function(value)
-	{
-		this._request = value;
-		this.refreshData();
-	},
-
-	/**
-	 * Storage for the dataSource attribute.
-	 * 
-	 * @property _dataSource
-	 * @private
-	 */
-	_dataSource: null,
-	
-	/**
-	 * Getter for the dataSource attribute.
-	 *
-	 * @method _getDataSource
-	 * @private
-	 */
-	_getDataSource: function()
-	{
-		return this._dataSource;
-	},
-
-	/**
-	 * Setter for the dataSource attribute.
-	 *
-	 * @method _setDataSource
-	 * @private
-	 */
-	_setDataSource: function(value)
-	{	
-		this._dataSource = value;
-		this.refreshData();
-	},
-	
-	/**
-	 * Storage for the series attribute.
-	 * 
-	 * @property _seriesDefs
-	 * @private
-	 */
-	_seriesDefs: null,
-	
-	/**
-	 * Getter for the series attribute.
-	 *
-	 * @method _getSeriesDefs
-	 * @private
-	 */
-	_getSeriesDefs: function()
-	{
-		return this._seriesDefs;
-	},
-	
-	/**
-	 * Setter for the series attribute.
-	 *
-	 * @method _setSeriesDefs
-	 * @private
-	 */
-	_setSeriesDefs: function(value)
-	{
-		this._seriesDefs = value;
-		this.refreshData();
-	},
-
-	/**
-	 * Getter for the categoryNames attribute.
-	 *
-	 * @method _getCategoryNames
-	 * @private
-	 */
-	_getCategoryNames: function()
-	{
-		this._swf.getCategoryNames();
-	},
-
-	/**
-	 * Setter for the categoryNames attribute.
-	 *
-	 * @method _setCategoryNames
-	 * @private
-	 */
-	_setCategoryNames: function(value)
-	{
-		this._swf.setCategoryNames(value);
-	},
-	
-	/**
-	 * Setter for the dataTipFunction attribute.
-	 *
-	 * @method _setDataTipFunction
-	 * @private
-	 */
-	_setDataTipFunction: function(value)
-	{
-		if(this._dataTipFunction)
-		{
-			YAHOO.widget.FlashAdapter.removeProxyFunction(this._dataTipFunction);
-		}
-		
-		if(value && typeof value == "function")
-		{
-			value = YAHOO.widget.FlashAdapter.createProxyFunction(value);
-			this._dataTipFunction = value;
-		}
-		this._swf.setDataTipFunction(value);
-	},
-
-	/**
-	 * Getter for the polling attribute.
-	 *
-	 * @method _getPolling
-	 * @private
-	 */
-	_getPolling: function()
-	{
-		return this._pollingInterval;
-	},
-
-	/**
-	 * Setter for the polling attribute.
-	 *
-	 * @method _setPolling
-	 * @private
-	 */
-	_setPolling: function(value)
-	{
-		this._pollingInterval = value;
-		this.refreshData();
-	}
-});
-
-/**
- * Storage for the dataTipFunction attribute.
- *
- * @property Chart.SWFURL
- * @private
- * @static
- * @final
- * @default "assets/charts.swf"
- */
-YAHOO.widget.Chart.SWFURL = "assets/charts.swf";
-
-/**
- * PieChart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class PieChart
- * @uses YAHOO.widget.Chart
- * @constructor
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.PieChart = function(containerId, dataSource, attributes)
-{
-	YAHOO.widget.PieChart.superclass.constructor.call(this, "pie", containerId, dataSource, attributes);
-};
-
-YAHOO.lang.extend(YAHOO.widget.PieChart, YAHOO.widget.Chart,
-{
-	/**
-	 * Initializes the attributes.
-	 *
-	 * @method _initAttributes
-	 * @private
-	 */
-	_initAttributes: function(attributes)
-	{	
-		YAHOO.widget.PieChart.superclass._initAttributes.call(this, attributes);
-		
-		/**
-		 * @attribute dataField
-		 * @description The field in each item that corresponds to the data value.
-		 * @type String
-		 */
-		this.getAttributeConfig("dataField",
-		{
-			method: this._getDataField
-		});
-   
-		this.setAttributeConfig("dataField",
-		{
-			validator: YAHOO.lang.isString,
-			method: this._setDataField
-		});
-   
-		/**
-		 * @attribute categoryField
-		 * @description The field in each item that corresponds to the category value.
-		 * @type String
-		 */
-		this.getAttributeConfig("categoryField",
-		{
-			method: this._getCategoryField
-		});
-   
-		this.setAttributeConfig("categoryField",
-		{
-			validator: YAHOO.lang.isString,
-			method: this._setCategoryField
-		});
-	},
-
-	/**
-	 * Getter for the dataField attribute.
-	 *
-	 * @method _getDataField
-	 * @private
-	 */
-	_getDataField: function()
-	{
-		return this._swf.getDataField();
-	},
-
-	/**
-	 * Setter for the dataField attribute.
-	 *
-	 * @method _setDataField
-	 * @private
-	 */
-	_setDataField: function(value)
-	{
-		this._swf.setDataField(value);
-	},
-
-	/**
-	 * Getter for the categoryField attribute.
-	 *
-	 * @method _getCategoryField
-	 * @private
-	 */
-	_getCategoryField: function()
-	{
-		return this._swf.getCategoryField();
-	},
-
-	/**
-	 * Setter for the categoryField attribute.
-	 *
-	 * @method _setCategoryField
-	 * @private
-	 */
-	_setCategoryField: function(value)
-	{
-		this._swf.setCategoryField(value);
-	}
-});
-
-/**
- * CartesianChart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class CartesianChart
- * @uses YAHOO.widget.Chart
- * @constructor
- * @param type {String} The char type. May be "line", "column", or "bar"
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
- YAHOO.widget.CartesianChart = function(type, containerId, dataSource, attributes)
-{
-	YAHOO.widget.CartesianChart.superclass.constructor.call(this, type, containerId, dataSource, attributes);
-};
-
-YAHOO.lang.extend(YAHOO.widget.CartesianChart, YAHOO.widget.Chart,
-{
-	/**
-	 * Stores a reference to the xAxis labelFunction created by
-	 * YAHOO.widget.FlashAdapter.createProxyFunction()
-	 * @property _xAxisLabelFunction
-	 * @type String
-	 * @private
-	 */
-	_xAxisLabelFunction: null,
-	
-	/**
-	 * Stores a reference to the yAxis labelFunction created by
-	 * YAHOO.widget.FlashAdapter.createProxyFunction()
-	 * @property _yAxisLabelFunction
-	 * @type String
-	 * @private
-	 */
-	_yAxisLabelFunction: null,
-	
-	destroy: function()
-	{
-		//remove proxy functions
-		if(this._xAxisLabelFunction)
-		{
-			YAHOO.widget.FlashAdapter.removeProxyFunction(this._xAxisLabelFunction);
-			this._xAxisLabelFunction = null;
-		}
-		
-		if(this._yAxisLabelFunction)
-		{
-			YAHOO.widget.FlashAdapter.removeProxyFunction(this._yAxisLabelFunction);
-			this._yAxisLabelFunction = null;
-		}
-	
-		//call last
-		YAHOO.widget.CartesianChart.superclass.destroy.call(this);
-	},
-	
-	/**
-	 * Initializes the attributes.
-	 *
-	 * @method _initAttributes
-	 * @private
-	 */
-	_initAttributes: function(attributes)
-	{	
-		YAHOO.widget.CartesianChart.superclass._initAttributes.call(this, attributes);
-
-		/**
-		 * @attribute xField
-		 * @description The field in each item that corresponds to a value on the x axis.
-		 * @type String
-		 */
-		this.getAttributeConfig("xField",
-		{
-			method: this._getXField
-		});
-
-		this.setAttributeConfig("xField",
-		{
-			validator: YAHOO.lang.isString,
-			method: this._setXField
-		});
-
-		/**
-		 * @attribute yField
-		 * @description The field in each item that corresponds to a value on the x axis.
-		 * @type String
-		 */
-		this.getAttributeConfig("yField",
-		{
-			method: this._getYField
-		});
-
-		this.setAttributeConfig("yField",
-		{
-			validator: YAHOO.lang.isString,
-			method: this._setYField
-		});
-
-		/**
-		 * @attribute xAxis
-		 * @description A custom configuration for the horizontal x axis.
-		 * @type Axis
-		 */
-		this.setAttributeConfig("xAxis",
-		{
-			method: this._setXAxis
-		});
-
-		/**
-		 * @attribute yAxis
-		 * @description A custom configuration for the vertical y axis.
-		 * @type Axis
-		 */
-		this.setAttributeConfig("yAxis",
-		{
-			method: this._setYAxis
-		});
-	},
-
-	/**
-	 * Getter for the xField attribute.
-	 *
-	 * @method _getXField
-	 * @private
-	 */
-	_getXField: function()
-	{
-		return this._swf.getHorizontalField();
-	},
-
-	/**
-	 * Setter for the xField attribute.
-	 *
-	 * @method _setXField
-	 * @private
-	 */
-	_setXField: function(value)
-	{
-		this._swf.setHorizontalField(value);
-	},
-
-	/**
-	 * Getter for the yField attribute.
-	 *
-	 * @method _getYField
-	 * @private
-	 */
-	_getYField: function()
-	{
-		return this._swf.getVerticalField();
-	},
-
-	/**
-	 * Setter for the yField attribute.
-	 *
-	 * @method _setYField
-	 * @private
-	 */
-	_setYField: function(value)
-	{
-		this._swf.setVerticalField(value);
-	},
-	
-	/**
-	 * Setter for the xAxis attribute.
-	 *
-	 * @method _setXAxis
-	 * @private
-	 */
-	_setXAxis: function(value)
-	{
-		if(this._xAxisLabelFunction !== null)
-		{
-			YAHOO.widget.FlashAdapter.removeProxyFunction(this._xAxisLabelFunction);
-			this._xAxisLabelFunction = null;
-		}
-		
-		var clonedXAxis = {};
-		for(var prop in value)
-		{
-			if(prop == "labelFunction")
-			{
-				if(value.labelFunction !== null)
-				{
-					if(typeof value.labelFunction == "function")
-					{
-						clonedXAxis.labelFunction = YAHOO.widget.FlashAdapter.createProxyFunction(value.labelFunction);
-					}
-					else
-					{
-						clonedXAxis.labelFunction = value.labelFunction;
-					}
-					this._xAxisLabelFunction = clonedXAxis.labelFunction;
-				}
-			}
-			else
-			{
-				clonedXAxis[prop] = value[prop];
-			}
-		}
-		this._swf.setHorizontalAxis(clonedXAxis);
-	},
-
-	/**
-	 * Getter for the yAxis attribute.
-	 *
-	 * @method _setYAxis
-	 * @private
-	 */
-	_setYAxis: function(value)
-	{
-		if(this._yAxisLabelFunction !== null)
-		{
-			YAHOO.widget.FlashAdapter.removeProxyFunction(this._yAxisLabelFunction);
-			this._yAxisLabelFunction = null;
-		}
-
-		var clonedYAxis = {};
-		for(var prop in value)
-		{
-			if(prop == "labelFunction")
-			{
-				if(value.labelFunction !== null)
-				{
-					if(typeof value.labelFunction == "function")
-					{
-						clonedYAxis.labelFunction = YAHOO.widget.FlashAdapter.createProxyFunction(value.labelFunction);
-					}
-					else
-					{
-						clonedYAxis.labelFunction = value.labelFunction;
-					}
-					this._yAxisLabelFunction = clonedYAxis.labelFunction;
-				}
-			}
-			else
-			{
-				clonedYAxis[prop] = value[prop];
-			}
-		}
-		this._swf.setVerticalAxis(clonedYAxis);
-	}
-});
-
-/**
- * LineChart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class LineChart
- * @uses YAHOO.widget.CartesianChart
- * @constructor
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.LineChart = function(containerId, dataSource, attributes)
-{
-	YAHOO.widget.LineChart.superclass.constructor.call(this, "line", containerId, dataSource, attributes);
-};
-
-YAHOO.lang.extend(YAHOO.widget.LineChart, YAHOO.widget.CartesianChart);
-
-/**
- * ColumnChart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class ColumnChart
- * @uses YAHOO.widget.CartesianChart
- * @constructor
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.ColumnChart = function(containerId, dataSource, attributes)
-{
-	YAHOO.widget.ColumnChart.superclass.constructor.call(this, "column", containerId, dataSource, attributes);
-};
-
-YAHOO.lang.extend(YAHOO.widget.ColumnChart, YAHOO.widget.CartesianChart);
-
-/**
- * BarChart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class BarChart
- * @uses YAHOO.widget.CartesianChart
- * @constructor
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.BarChart = function(containerId, dataSource, attributes)
-{
-	YAHOO.widget.BarChart.superclass.constructor.call(this, "bar", containerId, dataSource, attributes);
-};
-
-YAHOO.lang.extend(YAHOO.widget.BarChart, YAHOO.widget.CartesianChart);
-
-/**
- * StackedColumnChart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class StackedColumnChart
- * @uses YAHOO.widget.CartesianChart
- * @constructor
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.StackedColumnChart = function(containerId, dataSource, attributes)
-{
-	YAHOO.widget.StackedColumnChart.superclass.constructor.call(this, "stackcolumn", containerId, dataSource, attributes);
-};
-
-YAHOO.lang.extend(YAHOO.widget.StackedColumnChart, YAHOO.widget.CartesianChart);
-
-/**
- * StackedBarChart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class StackedBarChart
- * @uses YAHOO.widget.CartesianChart
- * @constructor
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.StackedBarChart = function(containerId, dataSource, attributes)
-{
-	YAHOO.widget.StackedBarChart.superclass.constructor.call(this, "stackbar", containerId, dataSource, attributes);
-};
-
-YAHOO.lang.extend(YAHOO.widget.StackedBarChart, YAHOO.widget.CartesianChart);
-
-/**
- * Defines a CartesianChart's vertical or horizontal axis.
- *
- * @namespace YAHOO.widget
- * @class Axis
- * @constructor
- */
-YAHOO.widget.Axis = function()
-{
-};
-
-YAHOO.widget.Axis.prototype = 
-{
-	/**
-	 * The type of axis.
-	 *
-	 * @property type
-	 * @type String
-	 */
-	type: null,
-	
-	/**
-	 * If true, the items on the axis will be drawn in opposite direction.
-	 *
-	 * @property reverse
-	 * @type Boolean
-	 */
-	reverse: false,
-	
-	/**
-	 * A string reference to the globally-accessible function that may be called to
-	 * determine each of the label values for this axis. Also accepts function references.
-	 *
-	 * @property labelFunction
-	 * @type String
-	 */
-	labelFunction: null
-};
-
-/**
- * A type of axis whose units are measured in numeric values.
- *
- * @namespace YAHOO.widget
- * @class NumericAxis
- * @constructor
- */
-YAHOO.widget.NumericAxis = function()
-{
-	YAHOO.widget.NumericAxis.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.NumericAxis, YAHOO.widget.Axis,
-{
-	type: "numeric",
-	
-	/**
-	 * The minimum value drawn by the axis. If not set explicitly, the axis minimum
-	 * will be calculated automatically.
-	 *
-	 * @property minimum
-	 * @type Number
-	 */
-	minimum: NaN,
-	
-	/**
-	 * The maximum value drawn by the axis. If not set explicitly, the axis maximum
-	 * will be calculated automatically.
-	 *
-	 * @property maximum
-	 * @type Number
-	 */
-	maximum: NaN,
-	
-	/**
-	 * The spacing between major intervals on this axis.
-	 *
-	 * @property majorUnit
-	 * @type Number
-	 */
-	majorUnit: NaN,
-
-	/**
-	 * The spacing between minor intervals on this axis.
-	 *
-	 * @property minorUnit
-	 * @type Number
-	 */
-	minorUnit: NaN,
-	
-	/**
-	 * If true, the labels, ticks, gridlines, and other objects will snap to
-	 * the nearest major or minor unit. If false, their position will be based
-	 * on the minimum value.
-	 *
-	 * @property snapToUnits
-	 * @type Boolean
-	 */
-	snapToUnits: true,
-	
-	/**
-	 * Series that are stackable will only stack when this value is set to true.
-	 *
-	 * @property stackingEnabled
-	 * @type Boolean
-	 */
-	stackingEnabled: false,
-
-	/**
-	 * If true, and the bounds are calculated automatically, either the minimum or
-	 * maximum will be set to zero.
-	 *
-	 * @property alwaysShowZero
-	 * @type Boolean
-	 */
-	alwaysShowZero: true,
-
-	/**
-	 * The scaling algorithm to use on this axis. May be "linear" or "logarithmic".
-	 *
-	 * @property scale
-	 * @type String
-	 */
-	scale: "linear"
-});
-
-/**
- * A type of axis whose units are measured in time-based values.
- *
- * @namespace YAHOO.widget
- * @class TimeAxis
- * @constructor
- */
-YAHOO.widget.TimeAxis = function()
-{
-	YAHOO.widget.TimeAxis.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.TimeAxis, YAHOO.widget.Axis,
-{
-	type: "time",
-	
-	/**
-	 * The minimum value drawn by the axis. If not set explicitly, the axis minimum
-	 * will be calculated automatically.
-	 *
-	 * @property minimum
-	 * @type Date
-	 */
-	minimum: null,
-
-	/**
-	 * The maximum value drawn by the axis. If not set explicitly, the axis maximum
-	 * will be calculated automatically.
-	 *
-	 * @property maximum
-	 * @type Number
-	 */
-	maximum: null,
-	
-	/**
-	 * The spacing between major intervals on this axis.
-	 *
-	 * @property majorUnit
-	 * @type Number
-	 */
-	majorUnit: NaN,
-	
-	/**
-	 * The time unit used by the majorUnit.
-	 *
-	 * @property majorTimeUnit
-	 * @type String
-	 */
-	majorTimeUnit: null,
-	
-	/**
-	 * The spacing between minor intervals on this axis.
-	 *
-	 * @property majorUnit
-	 * @type Number
-	 */
-	minorUnit: NaN,
-	
-	/**
-	 * The time unit used by the minorUnit.
-	 *
-	 * @property majorTimeUnit
-	 * @type String
-	 */
-	minorTimeUnit: null,
-
-	/**
-	 * If true, the labels, ticks, gridlines, and other objects will snap to
-	 * the nearest major or minor unit. If false, their position will be based
-	 * on the minimum value.
-	 *
-	 * @property snapToUnits
-	 * @type Boolean
-	 */
-	snapToUnits: true,
-
-	/**
-	 * Series that are stackable will only stack when this value is set to true.
-	 *
-	 * @property stackingEnabled
-	 * @type Boolean
-	 */
-	stackingEnabled: false
-});
-
-/**
- * A type of axis that displays items in categories.
- *
- * @namespace YAHOO.widget
- * @class CategoryAxis
- * @constructor
- */
-YAHOO.widget.CategoryAxis = function()
-{
-	YAHOO.widget.CategoryAxis.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.CategoryAxis, YAHOO.widget.Axis,
-{
-	type: "category",
-	
-	/**
-	 * A list of category names to display along this axis.
-	 *
-	 * @property categoryNames
-	 * @type Array
-	 */
-	categoryNames: null
-});
-
-/**
- * Functionality common to most series. Generally, a <code>Series</code> 
- * object shouldn't be instantiated directly. Instead, a subclass with a 
- * concrete implementation should be used.
- *
- * @namespace YAHOO.widget
- * @class Series
- * @constructor
- */
-YAHOO.widget.Series = function() {};
-
-YAHOO.widget.Series.prototype = 
-{
-	/**
-	 * The type of series.
-	 *
-	 * @property type
-	 * @type String
-	 */
-	type: null,
-	
-	/**
-	 * The human-readable name of the series.
-	 *
-	 * @property displayName
-	 * @type String
-	 */
-	displayName: null
-};
-
-/**
- * Functionality common to most series appearing in cartesian charts.
- * Generally, a <code>CartesianSeries</code> object shouldn't be
- * instantiated directly. Instead, a subclass with a concrete implementation
- * should be used.
- *
- * @namespace YAHOO.widget
- * @class CartesianSeries
- * @uses YAHOO.widget.Series
- * @constructor
- */
-YAHOO.widget.CartesianSeries = function() 
-{
-	YAHOO.widget.CartesianSeries.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.CartesianSeries, YAHOO.widget.Series,
-{
-	/**
-	 * The field used to access the x-axis value from the items from the data source.
-	 *
-	 * @property xField
-	 * @type String
-	 */
-	xField: null,
-	
-	/**
-	 * The field used to access the y-axis value from the items from the data source.
-	 *
-	 * @property yField
-	 * @type String
-	 */
-	yField: null
-});
-
-/**
- * ColumnSeries class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class ColumnSeries
- * @uses YAHOO.widget.CartesianSeries
- * @constructor
- */
-YAHOO.widget.ColumnSeries = function() 
-{
-	YAHOO.widget.ColumnSeries.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.ColumnSeries, YAHOO.widget.CartesianSeries,
-{
-	type: "column"
-});
-
-/**
- * LineSeries class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class LineSeries
- * @uses YAHOO.widget.CartesianSeries
- * @constructor
- */
-YAHOO.widget.LineSeries = function() 
-{
-	YAHOO.widget.LineSeries.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.LineSeries, YAHOO.widget.CartesianSeries,
-{
-	type: "line"
-});
-
-
-/**
- * BarSeries class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class BarSeries
- * @uses YAHOO.widget.CartesianSeries
- * @constructor
- */
-YAHOO.widget.BarSeries = function() 
-{
-	YAHOO.widget.BarSeries.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.BarSeries, YAHOO.widget.CartesianSeries,
-{
-	type: "bar"
-});
-
-
-/**
- * PieSeries class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class PieSeries
- * @uses YAHOO.widget.Series
- * @constructor
- */
-YAHOO.widget.PieSeries = function() 
-{
-	YAHOO.widget.PieSeries.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.PieSeries, YAHOO.widget.Series,
-{
-	type: "pie",
-	
-	/**
-	 * The field used to access the data value from the items from the data source.
-	 *
-	 * @property dataField
-	 * @type String
-	 */
-	dataField: null,
-	
-	/**
-	 * The field used to access the category value from the items from the data source.
-	 *
-	 * @property categoryField
-	 * @type String
-	 */
-	categoryField: null,
-
-	/**
-	 * A string reference to the globally-accessible function that may be called to
-	 * determine each of the label values for this series. Also accepts function references.
-	 *
-	 * @property labelFunction
-	 * @type String
-	 */
-	labelFunction: null
-});
-
-/**
- * StackedBarSeries class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class StackedBarSeries
- * @uses YAHOO.widget.CartesianSeries
- * @constructor
- */
-YAHOO.widget.StackedBarSeries = function() 
-{
-	YAHOO.widget.StackedBarSeries.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.StackedBarSeries, YAHOO.widget.CartesianSeries,
-{
-	type: "stackbar"
-});
-
-/**
- * StackedColumnSeries class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class StackedColumnSeries
- * @uses YAHOO.widget.CartesianSeries
- * @constructor
- */
-YAHOO.widget.StackedColumnSeries = function() 
-{
-	YAHOO.widget.StackedColumnSeries.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.StackedColumnSeries, YAHOO.widget.CartesianSeries,
-{
-	type: "stackcolumn"
-});
-
-YAHOO.register("charts", YAHOO.widget.Chart, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/charts/charts-experimental-min.js b/eclipse.org-common/yui/2.6.0/build/charts/charts-experimental-min.js
deleted file mode 100644
index 0e70044..0000000
--- a/eclipse.org-common/yui/2.6.0/build/charts/charts-experimental-min.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/*
- * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
- *
- * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
- * http://www.opensource.org/licenses/mit-license.php
- */
-var deconcept=deconcept||{};if(typeof deconcept.util=="undefined"||!deconcept.util){deconcept.util={};}if(typeof deconcept.SWFObjectUtil=="undefined"||!deconcept.SWFObjectUtil){deconcept.SWFObjectUtil={};}deconcept.SWFObject=function(E,C,K,F,H,J,L,G,A,D){if(!document.getElementById){return ;}this.DETECT_KEY=D?D:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params={};this.variables={};this.attributes=[];if(E){this.setAttribute("swf",E);}if(C){this.setAttribute("id",C);}if(K){this.setAttribute("width",K);}if(F){this.setAttribute("height",F);}if(H){this.setAttribute("version",new deconcept.PlayerVersion(H.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(J){this.addParam("bgcolor",J);}var B=L?L:"high";this.addParam("quality",B);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var I=(G)?G:window.location;this.setAttribute("xiRedirectUrl",I);this.setAttribute("redirectUrl","");if(A){this.setAttribute("redirectUrl",A);}};deconcept.SWFObject.prototype={useExpressInstall:function(A){this.xiSWFPath=!A?"expressinstall.swf":A;this.setAttribute("useExpressInstall",true);},setAttribute:function(A,B){this.attributes[A]=B;},getAttribute:function(A){return this.attributes[A];},addParam:function(A,B){this.params[A]=B;},getParams:function(){return this.params;},addVariable:function(A,B){this.variables[A]=B;},getVariable:function(A){return this.variables[A];},getVariables:function(){return this.variables;},getVariablePairs:function(){var A=[];var B;var C=this.getVariables();for(B in C){if(C.hasOwnProperty(B)){A[A.length]=B+"="+C[B];}}return A;},getSWFHTML:function(){var D="";var C={};var A="";var B="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}D='<embed type="application/x-shockwave-flash" src="'+this.getAttribute("swf")+'" width="'+this.getAttribute("width")+'" height="'+this.getAttribute("height")+'" style="'+this.getAttribute("style")+'"';D+=' id="'+this.getAttribute("id")+'" name="'+this.getAttribute("id")+'" ';C=this.getParams();for(A in C){if(C.hasOwnProperty(A)){D+=[A]+'="'+C[A]+'" ';}}B=this.getVariablePairs().join("&");if(B.length>0){D+='flashvars="'+B+'"';}D+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}D='<object id="'+this.getAttribute("id")+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+this.getAttribute("width")+'" height="'+this.getAttribute("height")+'" style="'+this.getAttribute("style")+'">';D+='<param name="movie" value="'+this.getAttribute("swf")+'" />';C=this.getParams();for(A in C){if(C.hasOwnProperty(A)){D+='<param name="'+A+'" value="'+C[A]+'" />';}}B=this.getVariablePairs().join("&");if(B.length>0){D+='<param name="flashvars" value="'+B+'" />';}D+="</object>";}return D;},write:function(A){if(this.getAttribute("useExpressInstall")){var B=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(B)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var C=(typeof A=="string")?document.getElementById(A):A;C.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!==""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var D=null;var C=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var A=navigator.plugins["Shockwave Flash"];if(A&&A.description){C=new deconcept.PlayerVersion(A.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var B=3;while(D){try{B++;D=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+B);C=new deconcept.PlayerVersion([B,0,0]);}catch(E){D=null;}}}else{try{D=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(E){try{D=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");C=new deconcept.PlayerVersion([6,0,21]);D.AllowScriptAccess="always";}catch(E){if(C.major==6){return C;}}try{D=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(E){}}if(D!==null){C=new deconcept.PlayerVersion(D.GetVariable("$version").split(" ")[1].split(","));}}}return C;};deconcept.PlayerVersion=function(A){this.major=A[0]!==null?parseInt(A[0],0):0;this.minor=A[1]!==null?parseInt(A[1],0):0;this.rev=A[2]!==null?parseInt(A[2],0):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(A){if(this.major<A.major){return false;}if(this.major>A.major){return true;}if(this.minor<A.minor){return false;}if(this.minor>A.minor){return true;}if(this.rev<A.rev){return false;}return true;};deconcept.util={getRequestParameter:function(D){var C=document.location.search||document.location.hash;if(D===null){return C;}if(C){var B=C.substring(1).split("&");for(var A=0;A<B.length;A++){if(B[A].substring(0,B[A].indexOf("="))==D){return B[A].substring((B[A].indexOf("=")+1));}}}return"";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var C=document.getElementsByTagName("OBJECT");for(var B=C.length-1;B>=0;B--){C[B].style.display="none";for(var A in C[B]){if(typeof C[B][A]=="function"){C[B][A]=function(){};
-}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(A){return document.all[A];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;YAHOO.widget.FlashAdapter=function(D,A,B){this._queue=this._queue||[];this._events=this._events||{};this._configs=this._configs||{};B=B||{};this._id=B.id=B.id||YAHOO.util.Dom.generateId(null,"yuigen");B.version=B.version||"9.0.45";B.backgroundColor=B.backgroundColor||"#ffffff";this._attributes=B;this._swfURL=D;this._containerID=A;this._embedSWF(this._swfURL,this._containerID,B.id,B.version,B.backgroundColor,B.expressInstall,B.wmode);try{this.createEvent("contentReady");}catch(C){}};YAHOO.extend(YAHOO.widget.FlashAdapter,YAHOO.util.AttributeProvider,{_swfURL:null,_containerID:null,_swf:null,_id:null,_initialized:false,_attributes:null,toString:function(){return"FlashAdapter "+this._id;},destroy:function(){if(this._swf){var B=YAHOO.util.Dom.get(this._containerID);B.removeChild(this._swf);}var A=this._id;for(var C in this){if(YAHOO.lang.hasOwnProperty(this,C)){this[C]=null;}}},_embedSWF:function(I,H,D,C,F,G,B){var E=new deconcept.SWFObject(I,D,"100%","100%",C,F);if(G){E.useExpressInstall(G);}E.addParam("allowScriptAccess","always");if(B){E.addParam("wmode",B);}E.addVariable("allowedDomain",document.location.hostname);E.addVariable("elementID",D);E.addVariable("eventHandler","YAHOO.widget.FlashAdapter.eventHandler");var A=YAHOO.util.Dom.get(H);var J=E.write(A);if(J){this._swf=YAHOO.util.Dom.get(D);this._swf.owner=this;}else{}},_eventHandler:function(B){var A=B.type;switch(A){case"swfReady":this._loadHandler();this.fireEvent("contentReady");return ;case"log":return ;}this.fireEvent(A,B);},_loadHandler:function(){this._initialized=false;this._initAttributes(this._attributes);this.setAttributes(this._attributes,true);this._initialized=true;},set:function(A,B){this._attributes[A]=B;YAHOO.widget.FlashAdapter.superclass.set.call(this,A,B);},_initAttributes:function(A){this.getAttributeConfig("altText",{method:this._getAltText});this.setAttributeConfig("altText",{method:this._setAltText});this.getAttributeConfig("swfURL",{method:this._getSWFURL});},_getSWFURL:function(){return this._swfURL;},_getAltText:function(){return this._swf.getAltText();},_setAltText:function(A){return this._swf.setAltText(A);}});YAHOO.widget.FlashAdapter.eventHandler=function(A,C){var B=YAHOO.util.Dom.get(A);if(!B.owner){setTimeout(function(){YAHOO.widget.FlashAdapter.eventHandler(A,C);},0);}else{B.owner._eventHandler(C);}};YAHOO.widget.FlashAdapter.proxyFunctionCount=0;YAHOO.widget.FlashAdapter.createProxyFunction=function(B){var A=YAHOO.widget.FlashAdapter.proxyFunctionCount;YAHOO.widget.FlashAdapter["proxyFunction"+A]=function(){return B.apply(null,arguments);};YAHOO.widget.FlashAdapter.proxyFunctionCount++;return"YAHOO.widget.FlashAdapter.proxyFunction"+A.toString();};YAHOO.widget.FlashAdapter.removeProxyFunction=function(A){if(!A||A.indexOf("YAHOO.widget.FlashAdapter.proxyFunction")<0){return ;}A=A.substr(26);YAHOO.widget.FlashAdapter[A]=null;};YAHOO.widget.Chart=function(C,A,D,B){YAHOO.widget.Chart.superclass.constructor.call(this,YAHOO.widget.Chart.SWFURL,A,B);this._type=C;this._dataSource=D;this.createEvent("itemMouseOverEvent");this.createEvent("itemMouseOutEvent");this.createEvent("itemClickEvent");this.createEvent("itemDoubleClickEvent");this.createEvent("itemDragStartEvent");this.createEvent("itemDragEvent");this.createEvent("itemDragEndEvent");};YAHOO.extend(YAHOO.widget.Chart,YAHOO.widget.FlashAdapter,{_type:null,_pollingID:null,_pollingInterval:null,_dataTipFunction:null,_seriesLabelFunctions:null,toString:function(){return"Chart "+this._id;},setStyle:function(A,B){B=YAHOO.lang.JSON.stringify(B);this._swf.setStyle(A,B);},setStyles:function(A){A=YAHOO.lang.JSON.stringify(A);this._swf.setStyles(A);},setSeriesStyles:function(B){for(var A=0;A<B.length;A++){B[A]=YAHOO.lang.JSON.stringify(B[A]);}this._swf.setSeriesStyles(B);},destroy:function(){if(this._dataSource!==null){if(this._pollingID!==null){this._dataSource.clearInterval(this._pollingID);this._pollingID=null;}}if(this._dataTipFunction){YAHOO.widget.FlashAdapter.removeProxyFunction(this._dataTipFunction);}YAHOO.widget.Chart.superclass.destroy.call(this);},_initAttributes:function(A){YAHOO.widget.Chart.superclass._initAttributes.call(this,A);this.getAttributeConfig("request",{method:this._getRequest});this.setAttributeConfig("request",{method:this._setRequest});this.getAttributeConfig("dataSource",{method:this._getDataSource});this.setAttributeConfig("dataSource",{method:this._setDataSource});this.getAttributeConfig("series",{method:this._getSeriesDefs});this.setAttributeConfig("series",{method:this._setSeriesDefs});this.getAttributeConfig("categoryNames",{method:this._getCategoryNames});this.setAttributeConfig("categoryNames",{validator:YAHOO.lang.isArray,method:this._setCategoryNames});this.getAttributeConfig("dataTipFunction",{method:this._getDataTipFunction});this.setAttributeConfig("dataTipFunction",{method:this._setDataTipFunction});this.getAttributeConfig("polling",{method:this._getPolling});this.setAttributeConfig("polling",{method:this._setPolling});},_loadHandler:function(){this._swf.setType(this._type);if(this._attributes.style){var A=this._attributes.style;this.setStyles(A);}YAHOO.widget.Chart.superclass._loadHandler.call(this);if(this._dataSource){this.set("dataSource",this._dataSource);}},refreshData:function(){if(!this._initialized){return ;}if(this._dataSource!==null){if(this._pollingID!==null){this._dataSource.clearInterval(this._pollingID);this._pollingID=null;}if(this._pollingInterval>0){this._pollingID=this._dataSource.setInterval(this._pollingInterval,this._request,this._loadDataHandler,this);
-}this._dataSource.sendRequest(this._request,this._loadDataHandler,this);}},_loadDataHandler:function(D,C,J){if(this._swf){if(J){}else{var H;if(this._seriesLabelFunctions){var I=this._seriesLabelFunctions.length;for(H=0;H<I;H++){YAHOO.widget.FlashAdapter.removeProxyFunction(this._seriesLabelFunctions[H]);}this._seriesLabelFunction=null;}this._seriesLabelFunctions=[];var F=[];var E=0;var K=null;if(this._seriesDefs!==null){E=this._seriesDefs.length;for(H=0;H<E;H++){K=this._seriesDefs[H];var B={};for(var A in K){if(YAHOO.lang.hasOwnProperty(K,A)){if(A=="style"){if(K.style!==null){B.style=YAHOO.lang.JSON.stringify(K.style);}}else{if(A=="labelFunction"){if(K.labelFunction!==null&&typeof K.labelFunction=="function"){B.labelFunction=YAHOO.widget.FlashAdapter.createProxyFunction(K.labelFunction);this._seriesLabelFunctions.push(B.labelFunction);}}else{B[A]=K[A];}}}}F.push(B);}}if(E>0){for(H=0;H<E;H++){K=F[H];if(!K.type){K.type=this._type;}K.dataProvider=C.results;}}else{var G={type:this._type,dataProvider:C.results};F.push(G);}this._swf.setDataProvider(F);}}},_request:"",_getRequest:function(){return this._request;},_setRequest:function(A){this._request=A;this.refreshData();},_dataSource:null,_getDataSource:function(){return this._dataSource;},_setDataSource:function(A){this._dataSource=A;this.refreshData();},_seriesDefs:null,_getSeriesDefs:function(){return this._seriesDefs;},_setSeriesDefs:function(A){this._seriesDefs=A;this.refreshData();},_getCategoryNames:function(){this._swf.getCategoryNames();},_setCategoryNames:function(A){this._swf.setCategoryNames(A);},_setDataTipFunction:function(A){if(this._dataTipFunction){YAHOO.widget.FlashAdapter.removeProxyFunction(this._dataTipFunction);}if(A&&typeof A=="function"){A=YAHOO.widget.FlashAdapter.createProxyFunction(A);this._dataTipFunction=A;}this._swf.setDataTipFunction(A);},_getPolling:function(){return this._pollingInterval;},_setPolling:function(A){this._pollingInterval=A;this.refreshData();}});YAHOO.widget.Chart.SWFURL="assets/charts.swf";YAHOO.widget.PieChart=function(A,C,B){YAHOO.widget.PieChart.superclass.constructor.call(this,"pie",A,C,B);};YAHOO.lang.extend(YAHOO.widget.PieChart,YAHOO.widget.Chart,{_initAttributes:function(A){YAHOO.widget.PieChart.superclass._initAttributes.call(this,A);this.getAttributeConfig("dataField",{method:this._getDataField});this.setAttributeConfig("dataField",{validator:YAHOO.lang.isString,method:this._setDataField});this.getAttributeConfig("categoryField",{method:this._getCategoryField});this.setAttributeConfig("categoryField",{validator:YAHOO.lang.isString,method:this._setCategoryField});},_getDataField:function(){return this._swf.getDataField();},_setDataField:function(A){this._swf.setDataField(A);},_getCategoryField:function(){return this._swf.getCategoryField();},_setCategoryField:function(A){this._swf.setCategoryField(A);}});YAHOO.widget.CartesianChart=function(C,A,D,B){YAHOO.widget.CartesianChart.superclass.constructor.call(this,C,A,D,B);};YAHOO.lang.extend(YAHOO.widget.CartesianChart,YAHOO.widget.Chart,{_xAxisLabelFunction:null,_yAxisLabelFunction:null,destroy:function(){if(this._xAxisLabelFunction){YAHOO.widget.FlashAdapter.removeProxyFunction(this._xAxisLabelFunction);this._xAxisLabelFunction=null;}if(this._yAxisLabelFunction){YAHOO.widget.FlashAdapter.removeProxyFunction(this._yAxisLabelFunction);this._yAxisLabelFunction=null;}YAHOO.widget.CartesianChart.superclass.destroy.call(this);},_initAttributes:function(A){YAHOO.widget.CartesianChart.superclass._initAttributes.call(this,A);this.getAttributeConfig("xField",{method:this._getXField});this.setAttributeConfig("xField",{validator:YAHOO.lang.isString,method:this._setXField});this.getAttributeConfig("yField",{method:this._getYField});this.setAttributeConfig("yField",{validator:YAHOO.lang.isString,method:this._setYField});this.setAttributeConfig("xAxis",{method:this._setXAxis});this.setAttributeConfig("yAxis",{method:this._setYAxis});},_getXField:function(){return this._swf.getHorizontalField();},_setXField:function(A){this._swf.setHorizontalField(A);},_getYField:function(){return this._swf.getVerticalField();},_setYField:function(A){this._swf.setVerticalField(A);},_setXAxis:function(B){if(this._xAxisLabelFunction!==null){YAHOO.widget.FlashAdapter.removeProxyFunction(this._xAxisLabelFunction);this._xAxisLabelFunction=null;}var A={};for(var C in B){if(C=="labelFunction"){if(B.labelFunction!==null){if(typeof B.labelFunction=="function"){A.labelFunction=YAHOO.widget.FlashAdapter.createProxyFunction(B.labelFunction);}else{A.labelFunction=B.labelFunction;}this._xAxisLabelFunction=A.labelFunction;}}else{A[C]=B[C];}}this._swf.setHorizontalAxis(A);},_setYAxis:function(B){if(this._yAxisLabelFunction!==null){YAHOO.widget.FlashAdapter.removeProxyFunction(this._yAxisLabelFunction);this._yAxisLabelFunction=null;}var A={};for(var C in B){if(C=="labelFunction"){if(B.labelFunction!==null){if(typeof B.labelFunction=="function"){A.labelFunction=YAHOO.widget.FlashAdapter.createProxyFunction(B.labelFunction);}else{A.labelFunction=B.labelFunction;}this._yAxisLabelFunction=A.labelFunction;}}else{A[C]=B[C];}}this._swf.setVerticalAxis(A);}});YAHOO.widget.LineChart=function(A,C,B){YAHOO.widget.LineChart.superclass.constructor.call(this,"line",A,C,B);};YAHOO.lang.extend(YAHOO.widget.LineChart,YAHOO.widget.CartesianChart);YAHOO.widget.ColumnChart=function(A,C,B){YAHOO.widget.ColumnChart.superclass.constructor.call(this,"column",A,C,B);};YAHOO.lang.extend(YAHOO.widget.ColumnChart,YAHOO.widget.CartesianChart);YAHOO.widget.BarChart=function(A,C,B){YAHOO.widget.BarChart.superclass.constructor.call(this,"bar",A,C,B);};YAHOO.lang.extend(YAHOO.widget.BarChart,YAHOO.widget.CartesianChart);YAHOO.widget.StackedColumnChart=function(A,C,B){YAHOO.widget.StackedColumnChart.superclass.constructor.call(this,"stackcolumn",A,C,B);};YAHOO.lang.extend(YAHOO.widget.StackedColumnChart,YAHOO.widget.CartesianChart);YAHOO.widget.StackedBarChart=function(A,C,B){YAHOO.widget.StackedBarChart.superclass.constructor.call(this,"stackbar",A,C,B);
-};YAHOO.lang.extend(YAHOO.widget.StackedBarChart,YAHOO.widget.CartesianChart);YAHOO.widget.Axis=function(){};YAHOO.widget.Axis.prototype={type:null,reverse:false,labelFunction:null};YAHOO.widget.NumericAxis=function(){YAHOO.widget.NumericAxis.superclass.constructor.call(this);};YAHOO.lang.extend(YAHOO.widget.NumericAxis,YAHOO.widget.Axis,{type:"numeric",minimum:NaN,maximum:NaN,majorUnit:NaN,minorUnit:NaN,snapToUnits:true,stackingEnabled:false,alwaysShowZero:true,scale:"linear"});YAHOO.widget.TimeAxis=function(){YAHOO.widget.TimeAxis.superclass.constructor.call(this);};YAHOO.lang.extend(YAHOO.widget.TimeAxis,YAHOO.widget.Axis,{type:"time",minimum:null,maximum:null,majorUnit:NaN,majorTimeUnit:null,minorUnit:NaN,minorTimeUnit:null,snapToUnits:true,stackingEnabled:false});YAHOO.widget.CategoryAxis=function(){YAHOO.widget.CategoryAxis.superclass.constructor.call(this);};YAHOO.lang.extend(YAHOO.widget.CategoryAxis,YAHOO.widget.Axis,{type:"category",categoryNames:null});YAHOO.widget.Series=function(){};YAHOO.widget.Series.prototype={type:null,displayName:null};YAHOO.widget.CartesianSeries=function(){YAHOO.widget.CartesianSeries.superclass.constructor.call(this);};YAHOO.lang.extend(YAHOO.widget.CartesianSeries,YAHOO.widget.Series,{xField:null,yField:null});YAHOO.widget.ColumnSeries=function(){YAHOO.widget.ColumnSeries.superclass.constructor.call(this);};YAHOO.lang.extend(YAHOO.widget.ColumnSeries,YAHOO.widget.CartesianSeries,{type:"column"});YAHOO.widget.LineSeries=function(){YAHOO.widget.LineSeries.superclass.constructor.call(this);};YAHOO.lang.extend(YAHOO.widget.LineSeries,YAHOO.widget.CartesianSeries,{type:"line"});YAHOO.widget.BarSeries=function(){YAHOO.widget.BarSeries.superclass.constructor.call(this);};YAHOO.lang.extend(YAHOO.widget.BarSeries,YAHOO.widget.CartesianSeries,{type:"bar"});YAHOO.widget.PieSeries=function(){YAHOO.widget.PieSeries.superclass.constructor.call(this);};YAHOO.lang.extend(YAHOO.widget.PieSeries,YAHOO.widget.Series,{type:"pie",dataField:null,categoryField:null,labelFunction:null});YAHOO.widget.StackedBarSeries=function(){YAHOO.widget.StackedBarSeries.superclass.constructor.call(this);};YAHOO.lang.extend(YAHOO.widget.StackedBarSeries,YAHOO.widget.CartesianSeries,{type:"stackbar"});YAHOO.widget.StackedColumnSeries=function(){YAHOO.widget.StackedColumnSeries.superclass.constructor.call(this);};YAHOO.lang.extend(YAHOO.widget.StackedColumnSeries,YAHOO.widget.CartesianSeries,{type:"stackcolumn"});YAHOO.register("charts",YAHOO.widget.Chart,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/charts/charts-experimental.js b/eclipse.org-common/yui/2.6.0/build/charts/charts-experimental.js
deleted file mode 100644
index d387345..0000000
--- a/eclipse.org-common/yui/2.6.0/build/charts/charts-experimental.js
+++ /dev/null
@@ -1,2287 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/*extern ActiveXObject, __flash_unloadHandler, __flash_savedUnloadHandler */
-/*!
- * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
- *
- * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
- * http://www.opensource.org/licenses/mit-license.php
- */
-var deconcept = deconcept || {};
-
-if(typeof deconcept.util == "undefined" || !deconcept.util)
-{
-	deconcept.util = {};
-}
-
-if(typeof deconcept.SWFObjectUtil == "undefined" || !deconcept.SWFObjectUtil)
-{
-	deconcept.SWFObjectUtil = {};
-}
-
-deconcept.SWFObject = function(swf, id, w, h, ver, c, quality, xiRedirectUrl, redirectUrl, detectKey)
-{
-	if(!document.getElementById) { return; }
-	this.DETECT_KEY = detectKey ? detectKey : 'detectflash';
-	this.skipDetect = deconcept.util.getRequestParameter(this.DETECT_KEY);
-	this.params = {};
-	this.variables = {};
-	this.attributes = [];
-	if(swf) { this.setAttribute('swf', swf); }
-	if(id) { this.setAttribute('id', id); }
-	if(w) { this.setAttribute('width', w); }
-	if(h) { this.setAttribute('height', h); }
-	if(ver) { this.setAttribute('version', new deconcept.PlayerVersion(ver.toString().split("."))); }
-	this.installedVer = deconcept.SWFObjectUtil.getPlayerVersion();
-	if (!window.opera && document.all && this.installedVer.major > 7)
-	{
-		// only add the onunload cleanup if the Flash Player version supports External Interface and we are in IE
-		deconcept.SWFObject.doPrepUnload = true;
-	}
-	if(c)
-	{
-		this.addParam('bgcolor', c);
-	}
-	var q = quality ? quality : 'high';
-	this.addParam('quality', q);
-	this.setAttribute('useExpressInstall', false);
-	this.setAttribute('doExpressInstall', false);
-	var xir = (xiRedirectUrl) ? xiRedirectUrl : window.location;
-	this.setAttribute('xiRedirectUrl', xir);
-	this.setAttribute('redirectUrl', '');
-	if(redirectUrl)
-	{
-		this.setAttribute('redirectUrl', redirectUrl);
-	}
-};
-
-deconcept.SWFObject.prototype =
-{
-	useExpressInstall: function(path)
-	{
-		this.xiSWFPath = !path ? "expressinstall.swf" : path;
-		this.setAttribute('useExpressInstall', true);
-	},
-	setAttribute: function(name, value){
-		this.attributes[name] = value;
-	},
-	getAttribute: function(name){
-		return this.attributes[name];
-	},
-	addParam: function(name, value){
-		this.params[name] = value;
-	},
-	getParams: function(){
-		return this.params;
-	},
-	addVariable: function(name, value){
-		this.variables[name] = value;
-	},
-	getVariable: function(name){
-		return this.variables[name];
-	},
-	getVariables: function(){
-		return this.variables;
-	},
-	getVariablePairs: function(){
-		var variablePairs = [];
-		var key;
-		var variables = this.getVariables();
-		for(key in variables)
-		{
-			if(variables.hasOwnProperty(key))
-			{
-				variablePairs[variablePairs.length] = key +"="+ variables[key];
-			}
-		}
-		return variablePairs;
-	},
-	getSWFHTML: function() {
-		var swfNode = "";
-		var params = {};
-		var key = "";
-		var pairs = "";
-		if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { // netscape plugin architecture
-			if (this.getAttribute("doExpressInstall")) {
-				this.addVariable("MMplayerType", "PlugIn");
-				this.setAttribute('swf', this.xiSWFPath);
-			}
-			swfNode = '<embed type="application/x-shockwave-flash" src="'+ this.getAttribute('swf') +'" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" style="'+ this.getAttribute('style') +'"';
-			swfNode += ' id="'+ this.getAttribute('id') +'" name="'+ this.getAttribute('id') +'" ';
-			params = this.getParams();
-			for(key in params)
-			{
-				if(params.hasOwnProperty(key))
-				{
-					swfNode += [key] +'="'+ params[key] +'" ';
-				}
-			}
-			pairs = this.getVariablePairs().join("&");
-			if (pairs.length > 0){ swfNode += 'flashvars="'+ pairs +'"'; }
-			swfNode += '/>';
-		} else { // PC IE
-			if (this.getAttribute("doExpressInstall")) {
-				this.addVariable("MMplayerType", "ActiveX");
-				this.setAttribute('swf', this.xiSWFPath);
-			}
-			swfNode = '<object id="'+ this.getAttribute('id') +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" style="'+ this.getAttribute('style') +'">';
-			swfNode += '<param name="movie" value="'+ this.getAttribute('swf') +'" />';
-			params = this.getParams();
-			for(key in params)
-			{
-				if(params.hasOwnProperty(key))
-				{
-					swfNode += '<param name="'+ key +'" value="'+ params[key] +'" />';
-				}
-			}
-			pairs = this.getVariablePairs().join("&");
-			if(pairs.length > 0) {swfNode += '<param name="flashvars" value="'+ pairs +'" />';}
-			swfNode += "</object>";
-		}
-		return swfNode;
-	},
-	write: function(elementId)
-	{
-		if(this.getAttribute('useExpressInstall')) {
-			// check to see if we need to do an express install
-			var expressInstallReqVer = new deconcept.PlayerVersion([6,0,65]);
-			if (this.installedVer.versionIsValid(expressInstallReqVer) && !this.installedVer.versionIsValid(this.getAttribute('version'))) {
-				this.setAttribute('doExpressInstall', true);
-				this.addVariable("MMredirectURL", escape(this.getAttribute('xiRedirectUrl')));
-				document.title = document.title.slice(0, 47) + " - Flash Player Installation";
-				this.addVariable("MMdoctitle", document.title);
-			}
-		}
-		if(this.skipDetect || this.getAttribute('doExpressInstall') || this.installedVer.versionIsValid(this.getAttribute('version')))
-		{
-			var n = (typeof elementId == 'string') ? document.getElementById(elementId) : elementId;
-			n.innerHTML = this.getSWFHTML();
-			return true;
-		}
-		else
-		{
-			if(this.getAttribute('redirectUrl') !== "")
-			{
-				document.location.replace(this.getAttribute('redirectUrl'));
-			}
-		}
-		return false;
-	}
-};
-
-/* ---- detection functions ---- */
-deconcept.SWFObjectUtil.getPlayerVersion = function()
-{
-	var axo = null;
-	var PlayerVersion = new deconcept.PlayerVersion([0,0,0]);
-	if(navigator.plugins && navigator.mimeTypes.length)
-	{
-		var x = navigator.plugins["Shockwave Flash"];
-		if(x && x.description)
-		{
-			PlayerVersion = new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split("."));
-		}
-	}
-	else if (navigator.userAgent && navigator.userAgent.indexOf("Windows CE") >= 0)
-	{ // if Windows CE
-		var counter = 3;
-		while(axo)
-		{
-			try
-			{
-				counter++;
-				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+ counter);
-//				document.write("player v: "+ counter);
-				PlayerVersion = new deconcept.PlayerVersion([counter,0,0]);
-			}
-			catch(e)
-			{
-				axo = null;
-			}
-		}
-	}
-	else
-	{ // Win IE (non mobile)
-		// do minor version lookup in IE, but avoid fp6 crashing issues
-		// see http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/
-		try
-		{
-			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
-		}
-		catch(e)
-		{
-			try
-			{
-				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
-				PlayerVersion = new deconcept.PlayerVersion([6,0,21]);
-				axo.AllowScriptAccess = "always"; // error if player version < 6.0.47 (thanks to Michael Williams @ Adobe for this code)
-			}
-			catch(e)
-			{
-				if(PlayerVersion.major == 6)
-				{
-					return PlayerVersion;
-				}
-			}
-			try
-			{
-				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
-			}
-			catch(e) {}
-		}
-		
-		if(axo !== null)
-		{
-			PlayerVersion = new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
-		}
-	}
-	return PlayerVersion;
-};
-
-deconcept.PlayerVersion = function(arrVersion)
-{
-	this.major = arrVersion[0] !== null ? parseInt(arrVersion[0], 0) : 0;
-	this.minor = arrVersion[1] !== null ? parseInt(arrVersion[1], 0) : 0;
-	this.rev = arrVersion[2] !== null ? parseInt(arrVersion[2], 0) : 0;
-};
-
-deconcept.PlayerVersion.prototype.versionIsValid = function(fv)
-{
-	if(this.major < fv.major)
-	{
-		return false;
-	}
-	if(this.major > fv.major)
-	{
-		return true;
-	}
-	if(this.minor < fv.minor)
-	{
-		return false;
-	}
-	if(this.minor > fv.minor)
-	{
-		return true;
-	}
-	if(this.rev < fv.rev)
-	{
-		return false;
-	}
-	return true;
-};
-
-/* ---- get value of query string param ---- */
-deconcept.util =
-{
-	getRequestParameter: function(param)
-	{
-		var q = document.location.search || document.location.hash;
-		if(param === null) { return q; }
-		if(q)
-		{
-			var pairs = q.substring(1).split("&");
-			for(var i=0; i < pairs.length; i++)
-			{
-				if (pairs[i].substring(0, pairs[i].indexOf("=")) == param)
-				{
-					return pairs[i].substring((pairs[i].indexOf("=") + 1));
-				}
-			}
-		}
-		return "";
-	}
-};
-
-/* fix for video streaming bug */
-deconcept.SWFObjectUtil.cleanupSWFs = function()
-{
-	var objects = document.getElementsByTagName("OBJECT");
-	for(var i = objects.length - 1; i >= 0; i--)
-	{
-		objects[i].style.display = 'none';
-		for(var x in objects[i])
-		{
-			if(typeof objects[i][x] == 'function')
-			{
-				objects[i][x] = function(){};
-			}
-		}
-	}
-};
-
-// fixes bug in some fp9 versions see http://blog.deconcept.com/2006/07/28/swfobject-143-released/
-if(deconcept.SWFObject.doPrepUnload)
-{
-	if(!deconcept.unloadSet)
-	{
-		deconcept.SWFObjectUtil.prepUnload = function()
-		{
-			__flash_unloadHandler = function(){};
-			__flash_savedUnloadHandler = function(){};
-			window.attachEvent("onunload", deconcept.SWFObjectUtil.cleanupSWFs);
-		};
-		window.attachEvent("onbeforeunload", deconcept.SWFObjectUtil.prepUnload);
-		deconcept.unloadSet = true;
-	}
-}
-
-/* add document.getElementById if needed (mobile IE < 5) */
-if(!document.getElementById && document.all)
-{
-	document.getElementById = function(id) { return document.all[id]; };
-}
-
-/* add some aliases for ease of use/backwards compatibility */
-var getQueryParamValue = deconcept.util.getRequestParameter;
-var FlashObject = deconcept.SWFObject; // for legacy support
-var SWFObject = deconcept.SWFObject;
-
-/**
- * Wraps Flash embedding functionality and allows communication with SWF through
- * attributes.
- *
- * @namespace YAHOO.widget
- * @class FlashAdapter
- * @uses YAHOO.util.AttributeProvider
- */
-YAHOO.widget.FlashAdapter = function(swfURL, containerID, attributes)
-{
-	// set up the initial events and attributes stuff
-	this._queue = this._queue || [];
-	this._events = this._events || {};
-	this._configs = this._configs || {};
-	attributes = attributes || {};
-	
-	//the Flash Player external interface code from Adobe doesn't play nicely
-	//with the default value, yui-gen, in IE
-	this._id = attributes.id = attributes.id || YAHOO.util.Dom.generateId(null, "yuigen");
-	attributes.version = attributes.version || "9.0.45";
-	attributes.backgroundColor = attributes.backgroundColor || "#ffffff";
-	
-	//we can't use the initial attributes right away
-	//so save them for once the SWF finishes loading
-	this._attributes = attributes;
-	
-	this._swfURL = swfURL;
-	this._containerID = containerID;
-	
-	//embed the SWF file in the page
-	this._embedSWF(this._swfURL, this._containerID, attributes.id, attributes.version,
-		attributes.backgroundColor, attributes.expressInstall, attributes.wmode);
-	
-	/**
-	 * Fires when the SWF is initialized and communication is possible.
-	 * @event contentReady
-	 */
-	//Fix for iframe cross-domain issue with FF2x 
-	try
-	{
-		this.createEvent("contentReady");
-	}
-	catch(e){}
-};
-
-YAHOO.extend(YAHOO.widget.FlashAdapter, YAHOO.util.AttributeProvider,
-{
-	/**
-	 * The URL of the SWF file.
-	 * @property _swfURL
-	 * @type String
-	 * @private
-	 */
-	_swfURL: null,
-
-	/**
-	 * The ID of the containing DIV.
-	 * @property _containerID
-	 * @type String
-	 * @private
-	 */
-	_containerID: null,
-
-	/**
-	 * A reference to the embedded SWF file.
-	 * @property _swf
-	 * @private
-	 */
-	_swf: null,
-
-	/**
-	 * The id of this instance.
-	 * @property _id
-	 * @type String
-	 * @private
-	 */
-	_id: null,
-
-	/**
-	 * Indicates whether the SWF has been initialized and is ready
-	 * to communicate with JavaScript
-	 * @property _initialized
-	 * @type Boolean
-	 * @private
-	 */
-	_initialized: false,
-	
-	/**
-	 * The initializing attributes are stored here until the SWF is ready.
-	 * @property _attributes
-	 * @type Object
-	 * @private
-	 */
-	_attributes: null, //the intializing attributes
-
-	/**
-	 * Public accessor to the unique name of the FlashAdapter instance.
-	 *
-	 * @method toString
-	 * @return {String} Unique name of the FlashAdapter instance.
-	 */
-	toString: function()
-	{
-		return "FlashAdapter " + this._id;
-	},
-
-	/**
-	 * Nulls out the entire FlashAdapter instance and related objects and removes attached
-	 * event listeners and clears out DOM elements inside the container. After calling
-	 * this method, the instance reference should be expliclitly nulled by implementer,
-	 * as in myChart = null. Use with caution!
-	 *
-	 * @method destroy
-	 */
-	destroy: function()
-	{
-		//kill the Flash Player instance
-		if(this._swf)
-		{
-			var container = YAHOO.util.Dom.get(this._containerID);
-			container.removeChild(this._swf);
-		}
-		
-		var instanceName = this._id;
-		
-		//null out properties
-		for(var prop in this)
-		{
-			if(YAHOO.lang.hasOwnProperty(this, prop))
-			{
-				this[prop] = null;
-			}
-		}
-		
-	},
-
-	/**
-	 * Embeds the SWF in the page and associates it with this instance.
-	 *
-	 * @method _embedSWF
-	 * @private
-	 */
-	_embedSWF: function(swfURL, containerID, swfID, version, backgroundColor, expressInstall, wmode)
-	{
-		//standard SWFObject embed
-		var swfObj = new deconcept.SWFObject(swfURL, swfID, "100%", "100%", version, backgroundColor);
-
-		if(expressInstall)
-		{
-			swfObj.useExpressInstall(expressInstall);
-		}
-
-		//make sure we can communicate with ExternalInterface
-		swfObj.addParam("allowScriptAccess", "always");
-		
-		if(wmode)
-		{
-			swfObj.addParam("wmode", wmode);
-		}
-		
-		//again, a useful ExternalInterface trick
-		swfObj.addVariable("allowedDomain", document.location.hostname);
-
-		//tell the SWF which HTML element it is in
-		swfObj.addVariable("elementID", swfID);
-
-		// set the name of the function to call when the swf has an event
-		swfObj.addVariable("eventHandler", "YAHOO.widget.FlashAdapter.eventHandler");
-
-		var container = YAHOO.util.Dom.get(containerID);
-		var result = swfObj.write(container);
-		if(result)
-		{
-			this._swf = YAHOO.util.Dom.get(swfID);
-			//if successful, let's add an owner property to the SWF reference
-			//this will allow the event handler to communicate with a YAHOO.widget.FlashAdapter
-			this._swf.owner = this;
-		}
-		else
-		{
-		}
-	},
-
-	/**
-	 * Handles or re-dispatches events received from the SWF.
-	 *
-	 * @method _eventHandler
-	 * @private
-	 */
-	_eventHandler: function(event)
-	{
-		var type = event.type;
-		switch(type)
-		{
-			case "swfReady":
-   				this._loadHandler();
-   				this.fireEvent("contentReady");
-				return;
-			case "log":
-				return;
-		}
-		
-		//be sure to return after your case or the event will automatically fire!
-		this.fireEvent(type, event);
-	},
-
-	/**
-	 * Called when the SWF has been initialized.
-	 *
-	 * @method _loadHandler
-	 * @private
-	 */
-	_loadHandler: function()
-	{
-		this._initialized = false;
-		this._initAttributes(this._attributes);
-		this.setAttributes(this._attributes, true);
-		
-		this._initialized = true;
-	},
-	
-	set: function(name, value)
-	{
-		//save all the attributes in case the swf reloads
-		//so that we can pass them in again
-		this._attributes[name] = value;
-		YAHOO.widget.FlashAdapter.superclass.set.call(this, name, value);
-	},
-	
-	/**
-	 * Initializes the attributes.
-	 *
-	 * @method _initAttributes
-	 * @private
-	 */
-	_initAttributes: function(attributes)
-	{
-		//should be overridden if other attributes need to be set up
-
-		/**
-		 * @attribute wmode
-		 * @description Sets the window mode of the Flash Player control. May be
-		 *		"window", "opaque", or "transparent". Only available in the constructor
-		 *		because it may not be set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-		 
-		/**
-		 * @attribute expressInstall
-		 * @description URL pointing to a SWF file that handles Flash Player's express
-		 *		install feature. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-
-		/**
-		 * @attribute version
-		 * @description Minimum required version for the SWF file. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-
-		/**
-		 * @attribute backgroundColor
-		 * @description The background color of the SWF. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-		 
-		/**
-		 * @attribute altText
-		 * @description The alternative text to provide for screen readers and other assistive technology.
-		 * @type String
-		 */
-		this.getAttributeConfig("altText",
-		{
-			method: this._getAltText
-		});
-		this.setAttributeConfig("altText",
-		{
-			method: this._setAltText
-		});
-		
-		/**
-		 * @attribute swfURL
-		 * @description Absolute or relative URL to the SWF displayed by the FlashAdapter. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-		this.getAttributeConfig("swfURL",
-		{
-			method: this._getSWFURL
-		});
-	},
-	
-	/**
-	 * Getter for swfURL attribute.
-	 *
-	 * @method _getSWFURL
-	 * @private
-	 */
-	_getSWFURL: function()
-	{
-		return this._swfURL;
-	},
-	
-	/**
-	 * Getter for altText attribute.
-	 *
-	 * @method _getAltText
-	 * @private
-	 */
-	_getAltText: function()
-	{
-		return this._swf.getAltText();
-	},
-
-	/**
-	 * Setter for altText attribute.
-	 *
-	 * @method _setAltText
-	 * @private
-	 */
-	_setAltText: function(value)
-	{
-		return this._swf.setAltText(value);
-	}
-});
-
-/**
- * Receives event messages from SWF and passes them to the correct instance
- * of FlashAdapter.
- *
- * @method YAHOO.widget.FlashAdapter.eventHandler
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.eventHandler = function(elementID, event)
-{
-	var loadedSWF = YAHOO.util.Dom.get(elementID);
-	if(!loadedSWF.owner)
-	{
-		//fix for ie: if owner doesn't exist yet, try again in a moment
-		setTimeout(function() { YAHOO.widget.FlashAdapter.eventHandler( elementID, event ); }, 0);
-	}
-	else
-	{
-		loadedSWF.owner._eventHandler(event);
-	}
-};
-
-/**
- * The number of proxy functions that have been created.
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.proxyFunctionCount = 0;
-
-/**
- * Creates a globally accessible function that wraps a function reference.
- * Returns the proxy function's name as a string for use by the SWF through
- * ExternalInterface.
- *
- * @method YAHOO.widget.FlashAdapter.createProxyFunction
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.createProxyFunction = function(func)
-{
-	var index = YAHOO.widget.FlashAdapter.proxyFunctionCount;
-	YAHOO.widget.FlashAdapter["proxyFunction" + index] = function()
-	{
-		return func.apply(null, arguments);
-	};
-	YAHOO.widget.FlashAdapter.proxyFunctionCount++;
-	return "YAHOO.widget.FlashAdapter.proxyFunction" + index.toString();
-};
-
-/**
- * Removes a function created with createProxyFunction()
- * 
- * @method YAHOO.widget.FlashAdapter.removeProxyFunction
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.removeProxyFunction = function(funcName)
-{
-	//quick error check
-	if(!funcName || funcName.indexOf("YAHOO.widget.FlashAdapter.proxyFunction") < 0)
-	{
-		return;
-	}
-	
-	funcName = funcName.substr(26);
-	YAHOO.widget.FlashAdapter[funcName] = null;
-};
-
-/**
- * The Charts widget provides a Flash control for displaying data
- * graphically by series across A-grade browsers with Flash Player installed.
- *
- * @module charts
- * @requires yahoo, dom, event, datasource
- * @title Charts Widget
- * @experimental
- */
- 
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * Chart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class Chart
- * @uses YAHOO.widget.FlashAdapter
- * @constructor
- * @param type {String} The char type. May be "line", "column", "bar", or "pie"
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.Chart = function(type, containerId, dataSource, attributes)
-{
-	YAHOO.widget.Chart.superclass.constructor.call(this, YAHOO.widget.Chart.SWFURL, containerId, attributes);
-	
-	this._type = type;
-	this._dataSource = dataSource;
-	
-	/**
-	 * Fires when the user moves the mouse over the bounds of an item renderer in the chart.
-	 *
-	 * @event itemMouseOverEvent
-	 * @param event.type {String} The event type
-	 * @param event.item {Object} The data displayed by the renderer
-	 * @param event.index {Number} The position within the series that the item appears.
-	 * @param event.seriesIndex {Number} The position within the series definition that the series appears.
-	 * @param event.x {Number} The horizontal position of the mouse, relative to the SWF.
-	 * @param event.y {Number} The vertical position of the mouse, relative to the SWF.
-	 */
-	this.createEvent("itemMouseOverEvent");
-	
-	/**
-	 * Fires when the user moves the mouse out of the bounds of an item renderer in the chart.
-	 *
-	 * @event itemMouseOutEvent
-	 * @param event.type {String} The event type
-	 * @param event.item {Object} The data displayed by the renderer
-	 * @param event.index {Number} The position within the series that the item appears.
-	 * @param event.seriesIndex {Number} The position within the series definition that the series appears.
-	 * @param event.x {Number} The horizontal position of the mouse, relative to the SWF.
-	 * @param event.y {Number} The vertical position of the mouse, relative to the SWF.
-	 */
-	this.createEvent("itemMouseOutEvent");
-	
-	/**
-	 * Fires when the user clicks an item renderer in the chart with the mouse.
-	 *
-	 * @event itemClickEvent
-	 * @param event.type {String} The event type
-	 * @param event.item {Object} The data displayed by the renderer
-	 * @param event.index {Number} The position within the series that the item appears.
-	 * @param event.seriesIndex {Number} The position within the series definition that the series appears.
-	 * @param event.x {Number} The horizontal position of the mouse, relative to the SWF.
-	 * @param event.y {Number} The vertical position of the mouse, relative to the SWF.
-	 */
-	this.createEvent("itemClickEvent");
-	
-	/**
-	 * Fires when the user double-clicks an item renderer in the chart with the mouse.
-	 *
-	 * @event itemDoubleClickEvent
-	 * @param event.type {String} The event type
-	 * @param event.item {Object} The data displayed by the renderer
-	 * @param event.index {Number} The position within the series that the item appears.
-	 * @param event.seriesIndex {Number} The position within the series definition that the series appears.
-	 * @param event.x {Number} The horizontal position of the mouse, relative to the SWF.
-	 * @param event.y {Number} The vertical position of the mouse, relative to the SWF.
-	 */
-	this.createEvent("itemDoubleClickEvent");
-	
-	/**
-	 * Fires when the user presses the mouse down on an item to initiate a drag action.
-	 *
-	 * @event itemDragStartEvent
-	 * @param event.type {String} The event type
-	 * @param event.item {Object} The data displayed by the renderer
-	 * @param event.index {Number} The position within the series that the item appears.
-	 * @param event.seriesIndex {Number} The position within the series definition that the series appears.
-	 * @param event.x {Number} The horizontal position of the mouse, relative to the SWF.
-	 * @param event.y {Number} The vertical position of the mouse, relative to the SWF.
-	 */
-	this.createEvent("itemDragStartEvent");
-	
-	/**
-	 * Fires when the user moves the mouse during a drag action.
-	 *
-	 * @event itemDragEvent
-	 * @param event.type {String} The event type
-	 * @param event.item {Object} The data displayed by the renderer
-	 * @param event.index {Number} The position within the series that the item appears.
-	 * @param event.seriesIndex {Number} The position within the series definition that the series appears.
-	 * @param event.x {Number} The horizontal position of the mouse, relative to the SWF.
-	 * @param event.y {Number} The vertical position of the mouse, relative to the SWF.
-	 */
-	this.createEvent("itemDragEvent");
-
-	/**
-	 * Fires when the user releases the mouse during a drag action.
-	 *
-	 * @event itemDragEndEvent
-	 * @param event.type {String} The event type
-	 * @param event.item {Object} The data displayed by the renderer
-	 * @param event.index {Number} The position within the series that the item appears.
-	 * @param event.seriesIndex {Number} The position within the series definition that the series appears.
-	 * @param event.x {Number} The horizontal position of the mouse, relative to the SWF.
-	 * @param event.y {Number} The vertical position of the mouse, relative to the SWF.
-	 */
-	this.createEvent("itemDragEndEvent");
-};
-
-YAHOO.extend(YAHOO.widget.Chart, YAHOO.widget.FlashAdapter,
-{
-	/**
-	 * The type of this chart instance.
-	 * @property _type
-	 * @type String
-	 * @private
-	 */
-	_type: null,
-
-	/**
-	 * The id returned from the DataSource's setInterval function.
-	 * @property _pollingID
-	 * @type Number
-	 * @private
-	 */
-	_pollingID: null,
-
-	/**
-	 * The time, in ms, between requests for data.
-	 * @property _pollingInterval
-	 * @type Number
-	 * @private
-	 */
-	_pollingInterval: null,
-
-	/**
-	 * Stores a reference to the dataTipFunction created by
-	 * YAHOO.widget.FlashAdapter.createProxyFunction()
-	 * @property _dataTipFunction
-	 * @type String
-	 * @private
-	 */
-	_dataTipFunction: null,
-	
-	/**
-	 * Stores references to series labelFunction values created by
-	 * YAHOO.widget.FlashAdapter.createProxyFunction()
-	 * @property _seriesLabelFunctions
-	 * @type Array
-	 * @private
-	 */
-	_seriesLabelFunctions: null,
-
-	/**
-	 * Public accessor to the unique name of the Chart instance.
-	 *
-	 * @method toString
-	 * @return {String} Unique name of the Chart instance.
-	 */
-	toString: function()
-	{
-		return "Chart " + this._id;
-	},
-	
-	/**
-	 * Sets a single style value on the Chart instance.
-	 *
-	 * @method setStyle
-	 * @param name {String} Name of the Chart style value to change.
-	 * @param value {Object} New value to pass to the Chart style.
-	 */
-	setStyle: function(name, value)
-	{
-		//we must jsonify this because Flash Player versions below 9.0.60 don't handle
-		//complex ExternalInterface parsing correctly
-		value = YAHOO.lang.JSON.stringify(value);
-		this._swf.setStyle(name, value);
-	},
-	
-	/**
-	 * Resets all styles on the Chart instance.
-	 *
-	 * @method setStyles
-	 * @param styles {Object} Initializer for all Chart styles.
-	 */
-	setStyles: function(styles)
-	{
-		//we must jsonify this because Flash Player versions below 9.0.60 don't handle
-		//complex ExternalInterface parsing correctly
-		styles = YAHOO.lang.JSON.stringify(styles);
-		this._swf.setStyles(styles);
-	},
-	
-	/**
-	 * Sets the styles on all series in the Chart.
-	 *
-	 * @method setSeriesStyles
-	 * @param styles {Array} Initializer for all Chart series styles.
-	 */
-	setSeriesStyles: function(styles)
-	{
-		//we must jsonify this because Flash Player versions below 9.0.60 don't handle
-		//complex ExternalInterface parsing correctly
-		for(var i = 0; i < styles.length; i++)
-		{
-			styles[i] = YAHOO.lang.JSON.stringify(styles[i]);	
-		}
-		this._swf.setSeriesStyles(styles);
-	},
-	
-	destroy: function()
-	{
-		//stop polling if needed
-		if(this._dataSource !== null)
-		{
-			if(this._pollingID !== null)
-			{
-				this._dataSource.clearInterval(this._pollingID);
-				this._pollingID = null;
-			}
-		}
-		
-		//remove proxy functions
-		if(this._dataTipFunction)
-		{
-			YAHOO.widget.FlashAdapter.removeProxyFunction(this._dataTipFunction);
-		}
-		
-		//call last
-		YAHOO.widget.Chart.superclass.destroy.call(this);
-	},
-	
-	/**
-	 * Initializes the attributes.
-	 *
-	 * @method _initAttributes
-	 * @private
-	 */
-	_initAttributes: function(attributes)
-	{
-		YAHOO.widget.Chart.superclass._initAttributes.call(this, attributes);
-
-		/**
-		 * @attribute request
-		 * @description Request to be sent to the Chart's DataSource.
-		 * @type String
-		 */
-		this.getAttributeConfig("request",
-		{
-			method: this._getRequest
-		});
-		
-		this.setAttributeConfig("request",
-		{
-			method: this._setRequest
-		});
-		
-		/**
-		 * @attribute dataSource
-		 * @description The DataSource instance to display in the Chart.
-		 * @type DataSource
-		 */
-		this.getAttributeConfig("dataSource",
-		{
-			method: this._getDataSource
-		});
-		
-		this.setAttributeConfig("dataSource",
-		{
-			method: this._setDataSource
-		});
-		
-		/**
-		 * @attribute series
-		 * @description Defines the series to be displayed by the Chart.
-		 * @type Array
-		 */
-		this.getAttributeConfig("series",
-		{
-			method: this._getSeriesDefs
-		});
-		
-		this.setAttributeConfig("series",
-		{
-			method: this._setSeriesDefs
-		});
-		
-		/**
-		 * @attribute categoryNames
-		 * @description Defines the names of the categories to be displayed in the Chart..
-		 * @type Array
-		 */
-		this.getAttributeConfig("categoryNames",
-		{
-			method: this._getCategoryNames
-		});
-		
-		this.setAttributeConfig("categoryNames",
-		{
-			validator: YAHOO.lang.isArray,
-			method: this._setCategoryNames
-		});
-		
-		/**
-		 * @attribute dataTipFunction
-		 * @description The string representation of a globally-accessible function
-		 * that may be called by the SWF to generate the datatip text for a Chart's item.
-		 * @type String
-		 */
-		this.getAttributeConfig("dataTipFunction",
-		{
-			method: this._getDataTipFunction
-		});
-		
-		this.setAttributeConfig("dataTipFunction",
-		{
-			method: this._setDataTipFunction
-		});
-
-		/**
-		 * @attribute polling
-		 * @description A numeric value indicating the number of milliseconds between
-		 * polling requests to the DataSource.
-		 * @type Number
-		 */
-		this.getAttributeConfig("polling",
-		{
-			method: this._getPolling
-		});
-
-		this.setAttributeConfig("polling",
-		{
-			method: this._setPolling
-		});
-	},
-	
-	/**
-	 * Called when the SWF is ready for communication. Sets the type, initializes
-	 * the styles, and sets the DataSource.
-	 *
-	 * @method _loadHandler
-	 * @private
-	 */
-	_loadHandler: function()
-	{
-		//the type is set separately because it must be first!
-		this._swf.setType(this._type);
-		
-		//set initial styles
-		if(this._attributes.style)
-		{
-			var style = this._attributes.style;
-			this.setStyles(style);		
-		}
-		
-		YAHOO.widget.Chart.superclass._loadHandler.call(this);
-		
-		if(this._dataSource)
-		{
-			this.set("dataSource", this._dataSource);
-		}
-	},
-
-	/**
-	 * Sends (or resends) the request to the DataSource.
-	 *
-	 * @method refreshData
-	 */
-	refreshData: function()
-	{
-		if(!this._initialized)
-		{
-			return;
-		}
-		
-		if(this._dataSource !== null)
-		{
-			if(this._pollingID !== null)
-			{
-				this._dataSource.clearInterval(this._pollingID);
-				this._pollingID = null;
-			}
-			
-			if(this._pollingInterval > 0)
-			{
-				this._pollingID = this._dataSource.setInterval(this._pollingInterval, this._request, this._loadDataHandler, this);
-			}
-			this._dataSource.sendRequest(this._request, this._loadDataHandler, this);
-		}
-	},
-
-	/**
-	 * Called when the DataSource receives new data. The series definitions are used
-	 * to build a data provider for the SWF chart.
-	 *
-	 * @method _loadDataHandler
-	 * @private
-	 */
-	_loadDataHandler: function(request, response, error)
-	{
-		if(this._swf)
-		{
-			if(error)
-			{
-			}
-			else
-			{
-				var i;
-				if(this._seriesLabelFunctions)
-				{
-					var count = this._seriesLabelFunctions.length;
-					for(i = 0; i < count; i++)
-					{
-						YAHOO.widget.FlashAdapter.removeProxyFunction(this._seriesLabelFunctions[i]);
-					}
-					this._seriesLabelFunction = null;
-				}
-				this._seriesLabelFunctions = [];
-
-				//make a copy of the series definitions so that we aren't
-				//editing them directly.
-				var dataProvider = [];	
-				var seriesCount = 0;
-				var currentSeries = null;
-				if(this._seriesDefs !== null)
-				{
-					seriesCount = this._seriesDefs.length;
-					for(i = 0; i < seriesCount; i++)
-					{
-						currentSeries = this._seriesDefs[i];
-						var clonedSeries = {};
-						for(var prop in currentSeries)
-						{
-							if(YAHOO.lang.hasOwnProperty(currentSeries, prop))
-							{
-								if(prop == "style")
-								{
-									if(currentSeries.style !== null)
-									{
-										clonedSeries.style = YAHOO.lang.JSON.stringify(currentSeries.style);
-									}
-								}
-
-								else if(prop == "labelFunction")
-								{
-									if(currentSeries.labelFunction !== null &&
-										typeof currentSeries.labelFunction == "function")
-									{
-										clonedSeries.labelFunction = YAHOO.widget.FlashAdapter.createProxyFunction(currentSeries.labelFunction);
-										this._seriesLabelFunctions.push(clonedSeries.labelFunction);
-									}
-								}
-
-								else
-								{
-									clonedSeries[prop] = currentSeries[prop];
-								}
-							}
-						}
-						dataProvider.push(clonedSeries);
-					}
-				}
-
-				if(seriesCount > 0)
-				{
-					for(i = 0; i < seriesCount; i++)
-					{
-						currentSeries = dataProvider[i];
-						if(!currentSeries.type)
-						{
-							currentSeries.type = this._type;
-						}
-						currentSeries.dataProvider = response.results;
-					}
-				}
-				else
-				{
-					var series = {type: this._type, dataProvider: response.results};
-					dataProvider.push(series);
-				}
-				this._swf.setDataProvider(dataProvider);
-			}
-		}
-	},
-
-	/**
-	 * Storage for the request attribute.
-	 * 
-	 * @property _request
-	 * @private
-	 */
-	_request: "",
-	
-	/**
-	 * Getter for the request attribute.
-	 *
-	 * @method _getRequest
-	 * @private
-	 */
-	_getRequest: function()
-	{
-		return this._request;
-	},
-	
-	/**
-	 * Setter for the request attribute.
-	 *
-	 * @method _setRequest
-	 * @private
-	 */
-	_setRequest: function(value)
-	{
-		this._request = value;
-		this.refreshData();
-	},
-
-	/**
-	 * Storage for the dataSource attribute.
-	 * 
-	 * @property _dataSource
-	 * @private
-	 */
-	_dataSource: null,
-	
-	/**
-	 * Getter for the dataSource attribute.
-	 *
-	 * @method _getDataSource
-	 * @private
-	 */
-	_getDataSource: function()
-	{
-		return this._dataSource;
-	},
-
-	/**
-	 * Setter for the dataSource attribute.
-	 *
-	 * @method _setDataSource
-	 * @private
-	 */
-	_setDataSource: function(value)
-	{	
-		this._dataSource = value;
-		this.refreshData();
-	},
-	
-	/**
-	 * Storage for the series attribute.
-	 * 
-	 * @property _seriesDefs
-	 * @private
-	 */
-	_seriesDefs: null,
-	
-	/**
-	 * Getter for the series attribute.
-	 *
-	 * @method _getSeriesDefs
-	 * @private
-	 */
-	_getSeriesDefs: function()
-	{
-		return this._seriesDefs;
-	},
-	
-	/**
-	 * Setter for the series attribute.
-	 *
-	 * @method _setSeriesDefs
-	 * @private
-	 */
-	_setSeriesDefs: function(value)
-	{
-		this._seriesDefs = value;
-		this.refreshData();
-	},
-
-	/**
-	 * Getter for the categoryNames attribute.
-	 *
-	 * @method _getCategoryNames
-	 * @private
-	 */
-	_getCategoryNames: function()
-	{
-		this._swf.getCategoryNames();
-	},
-
-	/**
-	 * Setter for the categoryNames attribute.
-	 *
-	 * @method _setCategoryNames
-	 * @private
-	 */
-	_setCategoryNames: function(value)
-	{
-		this._swf.setCategoryNames(value);
-	},
-	
-	/**
-	 * Setter for the dataTipFunction attribute.
-	 *
-	 * @method _setDataTipFunction
-	 * @private
-	 */
-	_setDataTipFunction: function(value)
-	{
-		if(this._dataTipFunction)
-		{
-			YAHOO.widget.FlashAdapter.removeProxyFunction(this._dataTipFunction);
-		}
-		
-		if(value && typeof value == "function")
-		{
-			value = YAHOO.widget.FlashAdapter.createProxyFunction(value);
-			this._dataTipFunction = value;
-		}
-		this._swf.setDataTipFunction(value);
-	},
-
-	/**
-	 * Getter for the polling attribute.
-	 *
-	 * @method _getPolling
-	 * @private
-	 */
-	_getPolling: function()
-	{
-		return this._pollingInterval;
-	},
-
-	/**
-	 * Setter for the polling attribute.
-	 *
-	 * @method _setPolling
-	 * @private
-	 */
-	_setPolling: function(value)
-	{
-		this._pollingInterval = value;
-		this.refreshData();
-	}
-});
-
-/**
- * Storage for the dataTipFunction attribute.
- *
- * @property Chart.SWFURL
- * @private
- * @static
- * @final
- * @default "assets/charts.swf"
- */
-YAHOO.widget.Chart.SWFURL = "assets/charts.swf";
-
-/**
- * PieChart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class PieChart
- * @uses YAHOO.widget.Chart
- * @constructor
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.PieChart = function(containerId, dataSource, attributes)
-{
-	YAHOO.widget.PieChart.superclass.constructor.call(this, "pie", containerId, dataSource, attributes);
-};
-
-YAHOO.lang.extend(YAHOO.widget.PieChart, YAHOO.widget.Chart,
-{
-	/**
-	 * Initializes the attributes.
-	 *
-	 * @method _initAttributes
-	 * @private
-	 */
-	_initAttributes: function(attributes)
-	{	
-		YAHOO.widget.PieChart.superclass._initAttributes.call(this, attributes);
-		
-		/**
-		 * @attribute dataField
-		 * @description The field in each item that corresponds to the data value.
-		 * @type String
-		 */
-		this.getAttributeConfig("dataField",
-		{
-			method: this._getDataField
-		});
-   
-		this.setAttributeConfig("dataField",
-		{
-			validator: YAHOO.lang.isString,
-			method: this._setDataField
-		});
-   
-		/**
-		 * @attribute categoryField
-		 * @description The field in each item that corresponds to the category value.
-		 * @type String
-		 */
-		this.getAttributeConfig("categoryField",
-		{
-			method: this._getCategoryField
-		});
-   
-		this.setAttributeConfig("categoryField",
-		{
-			validator: YAHOO.lang.isString,
-			method: this._setCategoryField
-		});
-	},
-
-	/**
-	 * Getter for the dataField attribute.
-	 *
-	 * @method _getDataField
-	 * @private
-	 */
-	_getDataField: function()
-	{
-		return this._swf.getDataField();
-	},
-
-	/**
-	 * Setter for the dataField attribute.
-	 *
-	 * @method _setDataField
-	 * @private
-	 */
-	_setDataField: function(value)
-	{
-		this._swf.setDataField(value);
-	},
-
-	/**
-	 * Getter for the categoryField attribute.
-	 *
-	 * @method _getCategoryField
-	 * @private
-	 */
-	_getCategoryField: function()
-	{
-		return this._swf.getCategoryField();
-	},
-
-	/**
-	 * Setter for the categoryField attribute.
-	 *
-	 * @method _setCategoryField
-	 * @private
-	 */
-	_setCategoryField: function(value)
-	{
-		this._swf.setCategoryField(value);
-	}
-});
-
-/**
- * CartesianChart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class CartesianChart
- * @uses YAHOO.widget.Chart
- * @constructor
- * @param type {String} The char type. May be "line", "column", or "bar"
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
- YAHOO.widget.CartesianChart = function(type, containerId, dataSource, attributes)
-{
-	YAHOO.widget.CartesianChart.superclass.constructor.call(this, type, containerId, dataSource, attributes);
-};
-
-YAHOO.lang.extend(YAHOO.widget.CartesianChart, YAHOO.widget.Chart,
-{
-	/**
-	 * Stores a reference to the xAxis labelFunction created by
-	 * YAHOO.widget.FlashAdapter.createProxyFunction()
-	 * @property _xAxisLabelFunction
-	 * @type String
-	 * @private
-	 */
-	_xAxisLabelFunction: null,
-	
-	/**
-	 * Stores a reference to the yAxis labelFunction created by
-	 * YAHOO.widget.FlashAdapter.createProxyFunction()
-	 * @property _yAxisLabelFunction
-	 * @type String
-	 * @private
-	 */
-	_yAxisLabelFunction: null,
-	
-	destroy: function()
-	{
-		//remove proxy functions
-		if(this._xAxisLabelFunction)
-		{
-			YAHOO.widget.FlashAdapter.removeProxyFunction(this._xAxisLabelFunction);
-			this._xAxisLabelFunction = null;
-		}
-		
-		if(this._yAxisLabelFunction)
-		{
-			YAHOO.widget.FlashAdapter.removeProxyFunction(this._yAxisLabelFunction);
-			this._yAxisLabelFunction = null;
-		}
-	
-		//call last
-		YAHOO.widget.CartesianChart.superclass.destroy.call(this);
-	},
-	
-	/**
-	 * Initializes the attributes.
-	 *
-	 * @method _initAttributes
-	 * @private
-	 */
-	_initAttributes: function(attributes)
-	{	
-		YAHOO.widget.CartesianChart.superclass._initAttributes.call(this, attributes);
-
-		/**
-		 * @attribute xField
-		 * @description The field in each item that corresponds to a value on the x axis.
-		 * @type String
-		 */
-		this.getAttributeConfig("xField",
-		{
-			method: this._getXField
-		});
-
-		this.setAttributeConfig("xField",
-		{
-			validator: YAHOO.lang.isString,
-			method: this._setXField
-		});
-
-		/**
-		 * @attribute yField
-		 * @description The field in each item that corresponds to a value on the x axis.
-		 * @type String
-		 */
-		this.getAttributeConfig("yField",
-		{
-			method: this._getYField
-		});
-
-		this.setAttributeConfig("yField",
-		{
-			validator: YAHOO.lang.isString,
-			method: this._setYField
-		});
-
-		/**
-		 * @attribute xAxis
-		 * @description A custom configuration for the horizontal x axis.
-		 * @type Axis
-		 */
-		this.setAttributeConfig("xAxis",
-		{
-			method: this._setXAxis
-		});
-
-		/**
-		 * @attribute yAxis
-		 * @description A custom configuration for the vertical y axis.
-		 * @type Axis
-		 */
-		this.setAttributeConfig("yAxis",
-		{
-			method: this._setYAxis
-		});
-	},
-
-	/**
-	 * Getter for the xField attribute.
-	 *
-	 * @method _getXField
-	 * @private
-	 */
-	_getXField: function()
-	{
-		return this._swf.getHorizontalField();
-	},
-
-	/**
-	 * Setter for the xField attribute.
-	 *
-	 * @method _setXField
-	 * @private
-	 */
-	_setXField: function(value)
-	{
-		this._swf.setHorizontalField(value);
-	},
-
-	/**
-	 * Getter for the yField attribute.
-	 *
-	 * @method _getYField
-	 * @private
-	 */
-	_getYField: function()
-	{
-		return this._swf.getVerticalField();
-	},
-
-	/**
-	 * Setter for the yField attribute.
-	 *
-	 * @method _setYField
-	 * @private
-	 */
-	_setYField: function(value)
-	{
-		this._swf.setVerticalField(value);
-	},
-	
-	/**
-	 * Setter for the xAxis attribute.
-	 *
-	 * @method _setXAxis
-	 * @private
-	 */
-	_setXAxis: function(value)
-	{
-		if(this._xAxisLabelFunction !== null)
-		{
-			YAHOO.widget.FlashAdapter.removeProxyFunction(this._xAxisLabelFunction);
-			this._xAxisLabelFunction = null;
-		}
-		
-		var clonedXAxis = {};
-		for(var prop in value)
-		{
-			if(prop == "labelFunction")
-			{
-				if(value.labelFunction !== null)
-				{
-					if(typeof value.labelFunction == "function")
-					{
-						clonedXAxis.labelFunction = YAHOO.widget.FlashAdapter.createProxyFunction(value.labelFunction);
-					}
-					else
-					{
-						clonedXAxis.labelFunction = value.labelFunction;
-					}
-					this._xAxisLabelFunction = clonedXAxis.labelFunction;
-				}
-			}
-			else
-			{
-				clonedXAxis[prop] = value[prop];
-			}
-		}
-		this._swf.setHorizontalAxis(clonedXAxis);
-	},
-
-	/**
-	 * Getter for the yAxis attribute.
-	 *
-	 * @method _setYAxis
-	 * @private
-	 */
-	_setYAxis: function(value)
-	{
-		if(this._yAxisLabelFunction !== null)
-		{
-			YAHOO.widget.FlashAdapter.removeProxyFunction(this._yAxisLabelFunction);
-			this._yAxisLabelFunction = null;
-		}
-
-		var clonedYAxis = {};
-		for(var prop in value)
-		{
-			if(prop == "labelFunction")
-			{
-				if(value.labelFunction !== null)
-				{
-					if(typeof value.labelFunction == "function")
-					{
-						clonedYAxis.labelFunction = YAHOO.widget.FlashAdapter.createProxyFunction(value.labelFunction);
-					}
-					else
-					{
-						clonedYAxis.labelFunction = value.labelFunction;
-					}
-					this._yAxisLabelFunction = clonedYAxis.labelFunction;
-				}
-			}
-			else
-			{
-				clonedYAxis[prop] = value[prop];
-			}
-		}
-		this._swf.setVerticalAxis(clonedYAxis);
-	}
-});
-
-/**
- * LineChart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class LineChart
- * @uses YAHOO.widget.CartesianChart
- * @constructor
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.LineChart = function(containerId, dataSource, attributes)
-{
-	YAHOO.widget.LineChart.superclass.constructor.call(this, "line", containerId, dataSource, attributes);
-};
-
-YAHOO.lang.extend(YAHOO.widget.LineChart, YAHOO.widget.CartesianChart);
-
-/**
- * ColumnChart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class ColumnChart
- * @uses YAHOO.widget.CartesianChart
- * @constructor
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.ColumnChart = function(containerId, dataSource, attributes)
-{
-	YAHOO.widget.ColumnChart.superclass.constructor.call(this, "column", containerId, dataSource, attributes);
-};
-
-YAHOO.lang.extend(YAHOO.widget.ColumnChart, YAHOO.widget.CartesianChart);
-
-/**
- * BarChart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class BarChart
- * @uses YAHOO.widget.CartesianChart
- * @constructor
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.BarChart = function(containerId, dataSource, attributes)
-{
-	YAHOO.widget.BarChart.superclass.constructor.call(this, "bar", containerId, dataSource, attributes);
-};
-
-YAHOO.lang.extend(YAHOO.widget.BarChart, YAHOO.widget.CartesianChart);
-
-/**
- * StackedColumnChart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class StackedColumnChart
- * @uses YAHOO.widget.CartesianChart
- * @constructor
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.StackedColumnChart = function(containerId, dataSource, attributes)
-{
-	YAHOO.widget.StackedColumnChart.superclass.constructor.call(this, "stackcolumn", containerId, dataSource, attributes);
-};
-
-YAHOO.lang.extend(YAHOO.widget.StackedColumnChart, YAHOO.widget.CartesianChart);
-
-/**
- * StackedBarChart class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class StackedBarChart
- * @uses YAHOO.widget.CartesianChart
- * @constructor
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param dataSource {YAHOO.util.DataSource} DataSource instance.
- * @param attributes {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.StackedBarChart = function(containerId, dataSource, attributes)
-{
-	YAHOO.widget.StackedBarChart.superclass.constructor.call(this, "stackbar", containerId, dataSource, attributes);
-};
-
-YAHOO.lang.extend(YAHOO.widget.StackedBarChart, YAHOO.widget.CartesianChart);
-
-/**
- * Defines a CartesianChart's vertical or horizontal axis.
- *
- * @namespace YAHOO.widget
- * @class Axis
- * @constructor
- */
-YAHOO.widget.Axis = function()
-{
-};
-
-YAHOO.widget.Axis.prototype = 
-{
-	/**
-	 * The type of axis.
-	 *
-	 * @property type
-	 * @type String
-	 */
-	type: null,
-	
-	/**
-	 * If true, the items on the axis will be drawn in opposite direction.
-	 *
-	 * @property reverse
-	 * @type Boolean
-	 */
-	reverse: false,
-	
-	/**
-	 * A string reference to the globally-accessible function that may be called to
-	 * determine each of the label values for this axis. Also accepts function references.
-	 *
-	 * @property labelFunction
-	 * @type String
-	 */
-	labelFunction: null
-};
-
-/**
- * A type of axis whose units are measured in numeric values.
- *
- * @namespace YAHOO.widget
- * @class NumericAxis
- * @constructor
- */
-YAHOO.widget.NumericAxis = function()
-{
-	YAHOO.widget.NumericAxis.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.NumericAxis, YAHOO.widget.Axis,
-{
-	type: "numeric",
-	
-	/**
-	 * The minimum value drawn by the axis. If not set explicitly, the axis minimum
-	 * will be calculated automatically.
-	 *
-	 * @property minimum
-	 * @type Number
-	 */
-	minimum: NaN,
-	
-	/**
-	 * The maximum value drawn by the axis. If not set explicitly, the axis maximum
-	 * will be calculated automatically.
-	 *
-	 * @property maximum
-	 * @type Number
-	 */
-	maximum: NaN,
-	
-	/**
-	 * The spacing between major intervals on this axis.
-	 *
-	 * @property majorUnit
-	 * @type Number
-	 */
-	majorUnit: NaN,
-
-	/**
-	 * The spacing between minor intervals on this axis.
-	 *
-	 * @property minorUnit
-	 * @type Number
-	 */
-	minorUnit: NaN,
-	
-	/**
-	 * If true, the labels, ticks, gridlines, and other objects will snap to
-	 * the nearest major or minor unit. If false, their position will be based
-	 * on the minimum value.
-	 *
-	 * @property snapToUnits
-	 * @type Boolean
-	 */
-	snapToUnits: true,
-	
-	/**
-	 * Series that are stackable will only stack when this value is set to true.
-	 *
-	 * @property stackingEnabled
-	 * @type Boolean
-	 */
-	stackingEnabled: false,
-
-	/**
-	 * If true, and the bounds are calculated automatically, either the minimum or
-	 * maximum will be set to zero.
-	 *
-	 * @property alwaysShowZero
-	 * @type Boolean
-	 */
-	alwaysShowZero: true,
-
-	/**
-	 * The scaling algorithm to use on this axis. May be "linear" or "logarithmic".
-	 *
-	 * @property scale
-	 * @type String
-	 */
-	scale: "linear"
-});
-
-/**
- * A type of axis whose units are measured in time-based values.
- *
- * @namespace YAHOO.widget
- * @class TimeAxis
- * @constructor
- */
-YAHOO.widget.TimeAxis = function()
-{
-	YAHOO.widget.TimeAxis.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.TimeAxis, YAHOO.widget.Axis,
-{
-	type: "time",
-	
-	/**
-	 * The minimum value drawn by the axis. If not set explicitly, the axis minimum
-	 * will be calculated automatically.
-	 *
-	 * @property minimum
-	 * @type Date
-	 */
-	minimum: null,
-
-	/**
-	 * The maximum value drawn by the axis. If not set explicitly, the axis maximum
-	 * will be calculated automatically.
-	 *
-	 * @property maximum
-	 * @type Number
-	 */
-	maximum: null,
-	
-	/**
-	 * The spacing between major intervals on this axis.
-	 *
-	 * @property majorUnit
-	 * @type Number
-	 */
-	majorUnit: NaN,
-	
-	/**
-	 * The time unit used by the majorUnit.
-	 *
-	 * @property majorTimeUnit
-	 * @type String
-	 */
-	majorTimeUnit: null,
-	
-	/**
-	 * The spacing between minor intervals on this axis.
-	 *
-	 * @property majorUnit
-	 * @type Number
-	 */
-	minorUnit: NaN,
-	
-	/**
-	 * The time unit used by the minorUnit.
-	 *
-	 * @property majorTimeUnit
-	 * @type String
-	 */
-	minorTimeUnit: null,
-
-	/**
-	 * If true, the labels, ticks, gridlines, and other objects will snap to
-	 * the nearest major or minor unit. If false, their position will be based
-	 * on the minimum value.
-	 *
-	 * @property snapToUnits
-	 * @type Boolean
-	 */
-	snapToUnits: true,
-
-	/**
-	 * Series that are stackable will only stack when this value is set to true.
-	 *
-	 * @property stackingEnabled
-	 * @type Boolean
-	 */
-	stackingEnabled: false
-});
-
-/**
- * A type of axis that displays items in categories.
- *
- * @namespace YAHOO.widget
- * @class CategoryAxis
- * @constructor
- */
-YAHOO.widget.CategoryAxis = function()
-{
-	YAHOO.widget.CategoryAxis.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.CategoryAxis, YAHOO.widget.Axis,
-{
-	type: "category",
-	
-	/**
-	 * A list of category names to display along this axis.
-	 *
-	 * @property categoryNames
-	 * @type Array
-	 */
-	categoryNames: null
-});
-
-/**
- * Functionality common to most series. Generally, a <code>Series</code> 
- * object shouldn't be instantiated directly. Instead, a subclass with a 
- * concrete implementation should be used.
- *
- * @namespace YAHOO.widget
- * @class Series
- * @constructor
- */
-YAHOO.widget.Series = function() {};
-
-YAHOO.widget.Series.prototype = 
-{
-	/**
-	 * The type of series.
-	 *
-	 * @property type
-	 * @type String
-	 */
-	type: null,
-	
-	/**
-	 * The human-readable name of the series.
-	 *
-	 * @property displayName
-	 * @type String
-	 */
-	displayName: null
-};
-
-/**
- * Functionality common to most series appearing in cartesian charts.
- * Generally, a <code>CartesianSeries</code> object shouldn't be
- * instantiated directly. Instead, a subclass with a concrete implementation
- * should be used.
- *
- * @namespace YAHOO.widget
- * @class CartesianSeries
- * @uses YAHOO.widget.Series
- * @constructor
- */
-YAHOO.widget.CartesianSeries = function() 
-{
-	YAHOO.widget.CartesianSeries.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.CartesianSeries, YAHOO.widget.Series,
-{
-	/**
-	 * The field used to access the x-axis value from the items from the data source.
-	 *
-	 * @property xField
-	 * @type String
-	 */
-	xField: null,
-	
-	/**
-	 * The field used to access the y-axis value from the items from the data source.
-	 *
-	 * @property yField
-	 * @type String
-	 */
-	yField: null
-});
-
-/**
- * ColumnSeries class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class ColumnSeries
- * @uses YAHOO.widget.CartesianSeries
- * @constructor
- */
-YAHOO.widget.ColumnSeries = function() 
-{
-	YAHOO.widget.ColumnSeries.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.ColumnSeries, YAHOO.widget.CartesianSeries,
-{
-	type: "column"
-});
-
-/**
- * LineSeries class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class LineSeries
- * @uses YAHOO.widget.CartesianSeries
- * @constructor
- */
-YAHOO.widget.LineSeries = function() 
-{
-	YAHOO.widget.LineSeries.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.LineSeries, YAHOO.widget.CartesianSeries,
-{
-	type: "line"
-});
-
-
-/**
- * BarSeries class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class BarSeries
- * @uses YAHOO.widget.CartesianSeries
- * @constructor
- */
-YAHOO.widget.BarSeries = function() 
-{
-	YAHOO.widget.BarSeries.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.BarSeries, YAHOO.widget.CartesianSeries,
-{
-	type: "bar"
-});
-
-
-/**
- * PieSeries class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class PieSeries
- * @uses YAHOO.widget.Series
- * @constructor
- */
-YAHOO.widget.PieSeries = function() 
-{
-	YAHOO.widget.PieSeries.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.PieSeries, YAHOO.widget.Series,
-{
-	type: "pie",
-	
-	/**
-	 * The field used to access the data value from the items from the data source.
-	 *
-	 * @property dataField
-	 * @type String
-	 */
-	dataField: null,
-	
-	/**
-	 * The field used to access the category value from the items from the data source.
-	 *
-	 * @property categoryField
-	 * @type String
-	 */
-	categoryField: null,
-
-	/**
-	 * A string reference to the globally-accessible function that may be called to
-	 * determine each of the label values for this series. Also accepts function references.
-	 *
-	 * @property labelFunction
-	 * @type String
-	 */
-	labelFunction: null
-});
-
-/**
- * StackedBarSeries class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class StackedBarSeries
- * @uses YAHOO.widget.CartesianSeries
- * @constructor
- */
-YAHOO.widget.StackedBarSeries = function() 
-{
-	YAHOO.widget.StackedBarSeries.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.StackedBarSeries, YAHOO.widget.CartesianSeries,
-{
-	type: "stackbar"
-});
-
-/**
- * StackedColumnSeries class for the YUI Charts widget.
- *
- * @namespace YAHOO.widget
- * @class StackedColumnSeries
- * @uses YAHOO.widget.CartesianSeries
- * @constructor
- */
-YAHOO.widget.StackedColumnSeries = function() 
-{
-	YAHOO.widget.StackedColumnSeries.superclass.constructor.call(this);
-};
-
-YAHOO.lang.extend(YAHOO.widget.StackedColumnSeries, YAHOO.widget.CartesianSeries,
-{
-	type: "stackcolumn"
-});
-
-YAHOO.register("charts", YAHOO.widget.Chart, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/colorpicker/README b/eclipse.org-common/yui/2.6.0/build/colorpicker/README
deleted file mode 100644
index 6b22cfc..0000000
--- a/eclipse.org-common/yui/2.6.0/build/colorpicker/README
+++ /dev/null
@@ -1,21 +0,0 @@
-ColorPicker - Release Notes
-
-2.6.0
-    * Added colorpicker-core.css (empty) for completeness
-
-2.5.1
-   * No change
-
-2.5.0
-   * No change
-
-2.4.0
-   * Initialization values assigned to showcontrols, showrgbcontrols,
-     showwebsafe, showhexsummary, animate, red, green, and blue in the
-     constructor configuration are now honored. 
-
-2.3.1
-   * No change (bug fixes were inherited from slider)
-
-2.3.0
-   * Initial release
diff --git a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/colorpicker-core.css b/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/colorpicker-core.css
deleted file mode 100644
index 7922b6d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/colorpicker-core.css
+++ /dev/null
@@ -1,6 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
diff --git a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/hue_thumb.png b/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/hue_thumb.png
deleted file mode 100644
index 14d5db4..0000000
--- a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/hue_thumb.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/picker_mask.png b/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/picker_mask.png
deleted file mode 100644
index f8d9193..0000000
--- a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/picker_mask.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/picker_thumb.png b/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/picker_thumb.png
deleted file mode 100644
index 78445a2..0000000
--- a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/picker_thumb.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/skins/sam/colorpicker-skin.css b/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/skins/sam/colorpicker-skin.css
deleted file mode 100644
index c5b81e1..0000000
--- a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/skins/sam/colorpicker-skin.css
+++ /dev/null
@@ -1,105 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-
-.yui-picker-panel {
-    background: #e3e3e3;
-    border-color: #888;
-}
-
-.yui-picker-panel .hd {
-	background-color:#ccc;
-	font-size:100%;
-	line-height:100%;
-	border:1px solid #e3e3e3;
-	font-weight:bold;
-	overflow:hidden;
-	padding: 6px;
-    color: #000;
-}
-
-.yui-picker-panel .bd {
-    background: #e8e8e8;
-    margin: 1px;
-    height: 200px;
-}
-
-.yui-picker-panel .ft {
-    background: #e8e8e8;
-    margin: 1px;
-    padding: 1px;
-             /*
-    text-align: center;
-    */
-}
-
-.yui-picker {
-    position: relative;
-}
-
-.yui-picker-hue-thumb { cursor:default; width:18px; height:18px; 
-top: -8px;
-left: -2px;
-    z-index: 9; position:absolute; }
-.yui-picker-hue-bg {-moz-outline: none; outline:0px none;
-    position:absolute; left:200px; height:183px; width:14px;
-    background:url(hue_bg.png) no-repeat; 
-    top:4px; 
-}
-
-.yui-picker-bg {
-    -moz-outline: none; 
-    outline:0px none; 
-    position:absolute; 
-    top:4px;
-    left:4px; 
-    height:182px; 
-    width:182px; 
-    background-color:#F00; 
-    background-image: url(picker_mask.png);
-} 
-
-*html .yui-picker-bg {
-    background-image: none;
-    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../../build/colorpicker/assets/picker_mask.png', sizingMethod='scale');
-}
-
-
-.yui-picker-mask { position:absolute; z-index: 1; top:0px; left:0px; } 
-
-.yui-picker-thumb { cursor:default; width:11px; height:11px; z-index: 9; position:absolute; 
-    top:-4px; left:-4px; }
-
-.yui-picker-swatch { position:absolute; left:240px; top:4px; height:60px;
-    width:55px; border:1px solid #888; }
-.yui-picker-websafe-swatch { position:absolute; left:304px; top:4px;
-    height:24px; width:24px; border:1px solid #888; }
-
-.yui-picker-controls { position:absolute; top: 72px; left:226px; font:1em monospace;}
-.yui-picker-controls .hd { background: transparent; border-width: 0px !important;}
-.yui-picker-controls .bd { height: 100px; border-width: 0px !important;}
-.yui-picker-controls ul {float:left;padding:0 2px 0 0;margin:0}
-.yui-picker-controls li {padding:2px;list-style:none;margin:0}
-.yui-picker-controls input { 
-    font-size: 0.85em;
-    width: 2.4em;
-}
-.yui-picker-hex-controls { 
-    clear: both; 
-    padding: 2px;
-}
-.yui-picker-hex-controls input { 
-    width: 4.6em;
-}
-
-.yui-picker-controls a {
-    font: 1em arial,helvetica,clean,sans-serif;
-    display:block;
-    *display:inline-block; /* IE */
-    padding: 0;
-    color: #000;
-
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/skins/sam/colorpicker.css b/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/skins/sam/colorpicker.css
deleted file mode 100644
index 82c6cfd..0000000
--- a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/skins/sam/colorpicker.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-picker-panel{background:#e3e3e3;border-color:#888;}.yui-picker-panel .hd{background-color:#ccc;font-size:100%;line-height:100%;border:1px solid #e3e3e3;font-weight:bold;overflow:hidden;padding:6px;color:#000;}.yui-picker-panel .bd{background:#e8e8e8;margin:1px;height:200px;}.yui-picker-panel .ft{background:#e8e8e8;margin:1px;padding:1px;}.yui-picker{position:relative;}.yui-picker-hue-thumb{cursor:default;width:18px;height:18px;top:-8px;left:-2px;z-index:9;position:absolute;}.yui-picker-hue-bg{-moz-outline:none;outline:0px none;position:absolute;left:200px;height:183px;width:14px;background:url(hue_bg.png) no-repeat;top:4px;}.yui-picker-bg{-moz-outline:none;outline:0px none;position:absolute;top:4px;left:4px;height:182px;width:182px;background-color:#F00;background-image:url(picker_mask.png);}*html .yui-picker-bg{background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../../build/colorpicker/assets/picker_mask.png',sizingMethod='scale');}.yui-picker-mask{position:absolute;z-index:1;top:0px;left:0px;}.yui-picker-thumb{cursor:default;width:11px;height:11px;z-index:9;position:absolute;top:-4px;left:-4px;}.yui-picker-swatch{position:absolute;left:240px;top:4px;height:60px;width:55px;border:1px solid #888;}.yui-picker-websafe-swatch{position:absolute;left:304px;top:4px;height:24px;width:24px;border:1px solid #888;}.yui-picker-controls{position:absolute;top:72px;left:226px;font:1em monospace;}.yui-picker-controls .hd{background:transparent;border-width:0px !important;}.yui-picker-controls .bd{height:100px;border-width:0px !important;}.yui-picker-controls ul{float:left;padding:0 2px 0 0;margin:0}.yui-picker-controls li{padding:2px;list-style:none;margin:0}.yui-picker-controls input{font-size:0.85em;width:2.4em;}.yui-picker-hex-controls{clear:both;padding:2px;}.yui-picker-hex-controls input{width:4.6em;}.yui-picker-controls a{font:1em arial,helvetica,clean,sans-serif;display:block;*display:inline-block;padding:0;color:#000;}
diff --git a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/skins/sam/hue_bg.png b/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/skins/sam/hue_bg.png
deleted file mode 100644
index d9bcdeb..0000000
--- a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/skins/sam/hue_bg.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/skins/sam/picker_mask.png b/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/skins/sam/picker_mask.png
deleted file mode 100644
index f8d9193..0000000
--- a/eclipse.org-common/yui/2.6.0/build/colorpicker/assets/skins/sam/picker_mask.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/colorpicker/colorpicker-debug.js b/eclipse.org-common/yui/2.6.0/build/colorpicker/colorpicker-debug.js
deleted file mode 100644
index 6aca5a3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/colorpicker/colorpicker-debug.js
+++ /dev/null
@@ -1,1755 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * Provides color conversion and validation utils
- * @class YAHOO.util.Color
- * @namespace YAHOO.util
- */
-YAHOO.util.Color = function() {
-
-    var HCHARS="0123456789ABCDEF", lang=YAHOO.lang;
-
-    return {
-
-        /**
-         * Converts 0-1 to 0-255
-         * @method real2dec
-         * @param n {float} the number to convert
-         * @return {int} a number 0-255
-         */
-        real2dec: function(n) {
-            return Math.min(255, Math.round(n*256));
-        },
-
-        /**
-         * Converts HSV (h[0-360], s[0-1]), v[0-1] to RGB [255,255,255]
-         * @method hsv2rgb
-         * @param h {int|[int, float, float]} the hue, or an
-         *        array containing all three parameters
-         * @param s {float} the saturation
-         * @param v {float} the value/brightness
-         * @return {[int, int, int]} the red, green, blue values in
-         *          decimal.
-         */
-        hsv2rgb: function(h, s, v) { 
-
-            if (lang.isArray(h)) {
-                return this.hsv2rgb.call(this, h[0], h[1], h[2]);
-            }
-
-            var r, g, b, i, f, p, q, t;
-            i = Math.floor((h/60)%6);
-            f = (h/60)-i;
-            p = v*(1-s);
-            q = v*(1-f*s);
-            t = v*(1-(1-f)*s);
-            switch(i) {
-                case 0: r=v; g=t; b=p; break;
-                case 1: r=q; g=v; b=p; break;
-                case 2: r=p; g=v; b=t; break;
-                case 3: r=p; g=q; b=v; break;
-                case 4: r=t; g=p; b=v; break;
-                case 5: r=v; g=p; b=q; break;
-            }
-
-            var fn=this.real2dec;
-
-            return [fn(r), fn(g), fn(b)];
-        },
-
-        /**
-         * Converts to RGB [255,255,255] to HSV (h[0-360], s[0-1]), v[0-1]
-         * @method rgb2hsv
-         * @param r {int|[int, int, int]} the red value, or an
-         *        array containing all three parameters
-         * @param g {int} the green value
-         * @param b {int} the blue value
-         * @return {[int, float, float]} the value converted to hsv
-         */
-        rgb2hsv: function(r, g, b) {
-
-            if (lang.isArray(r)) {
-                return this.rgb2hsv.call(this, r[0], r[1], r[2]);
-            }
-
-            r=r/255;
-            g=g/255;
-            b=b/255;
-
-            var min,max,delta,h,s,v;
-            min = Math.min(Math.min(r,g),b);
-            max = Math.max(Math.max(r,g),b);
-            delta = max-min;
-
-            switch (max) {
-                case min: h=0; break;
-                case r:   h=60*(g-b)/delta; 
-                          if (g<b) {
-                              h+=360;
-                          }
-                          break;
-                case g:   h=(60*(b-r)/delta)+120; break;
-                case b:   h=(60*(r-g)/delta)+240; break;
-            }
-            
-            s = (max === 0) ? 0 : 1-(min/max);
-
-            var hsv = [Math.round(h), s, max];
-
-            return hsv;
-
-        },
-
-        /**
-         * Converts decimal rgb values into a hex string
-         * 255,255,255 -> FFFFFF
-         * @method rgb2hex
-         * @param r {int|[int, int, int]} the red value, or an
-         *        array containing all three parameters
-         * @param g {int} the green value
-         * @param b {int} the blue value
-         * @return {string} the hex string
-         */
-        rgb2hex: function(r, g, b) {
-            if (lang.isArray(r)) {
-                return this.rgb2hex.call(this, r[0], r[1], r[2]);
-            }
-
-            var f=this.dec2hex;
-            return f(r) + f(g) + f(b);
-        },
-     
-        /**
-         * Converts an int 0...255 to hex pair 00...FF
-         * @method dec2hex
-         * @param n {int} the number to convert
-         * @return {string} the hex equivalent
-         */
-        dec2hex: function(n) {
-            n = parseInt(n, 10);
-            n = (lang.isNumber(n)) ? n : 0;
-            n = (n > 255 || n < 0) ? 0 : n;
-
-            return HCHARS.charAt((n - n % 16) / 16) + HCHARS.charAt(n % 16);
-        },
-
-        /**
-         * Converts a hex pair 00...FF to an int 0...255 
-         * @method hex2dec
-         * @param str {string} the hex pair to convert
-         * @return {int} the decimal
-         */
-        hex2dec: function(str) {
-            var f = function(c) {
-                return HCHARS.indexOf(c.toUpperCase());
-            };
-
-            var s=str.split('');
-            
-            return ((f(s[0]) * 16) + f(s[1]));
-        },
-
-        /**
-         * Converts a hex string to rgb
-         * @method hex2rgb
-         * @param str {string} the hex string
-         * @return {[int, int, int]} an array containing the rgb values
-         */
-        hex2rgb: function(s) { 
-            var f = this.hex2dec;
-            return [f(s.substr(0, 2)), f(s.substr(2, 2)), f(s.substr(4, 2))];
-        },
-
-        /**
-         * Returns the closest websafe color to the supplied rgb value.
-         * @method websafe
-         * @param r {int|[int, int, int]} the red value, or an
-         *        array containing all three parameters
-         * @param g {int} the green value
-         * @param b {int} the blue value
-         * @return {[int, int, int]} an array containing the closes
-         *                           websafe rgb colors.
-         */
-        websafe: function(r, g, b) {
-
-            if (lang.isArray(r)) {
-                return this.websafe.call(this, r[0], r[1], r[2]);
-            }
-
-            // returns the closest match [0, 51, 102, 153, 204, 255]
-            var f = function(v) {
-                if (lang.isNumber(v)) {
-                    v = Math.min(Math.max(0, v), 255);
-                    var i, next;
-                    for (i=0; i<256; i=i+51) {
-                        next = i+51;
-                        if (v >= i && v <= next) {
-                            return (v-i > 25) ? next : i;
-                        }
-                    }
- YAHOO.log("Error calculating the websafe value for " + v, "warn");
-                }
-
-                return v;
-            };
-
-            return [f(r), f(g), f(b)];
-        }
-    };
-}();
-
-
-(function() {
-
-    var _pickercount = 0;
-
-    /**
-     * The colorpicker module provides a widget for selecting colors
-     * @module colorpicker
-     * @requires yahoo, dom, event, element, slider
-     */
-
-
-    /**
-     * Creates the host element if it doesn't exist
-     * @method _createHostElement
-     * @private
-     */
-    var _createHostElement = function() {
-        var el = document.createElement('div');
-
-        if (this.CSS.BASE) {
-            el.className = this.CSS.BASE;
-        }
-        
-        return el;
-    };
-
-    /**
-     * A widget to select colors
-     * @namespace YAHOO.widget
-     * @class YAHOO.widget.ColorPicker
-     * @extends YAHOO.util.Element
-     * @constructor
-     * @param {HTMLElement | String | Object} el(optional) The html 
-     * element that represents the colorpicker, or the attribute object to use. 
-     * An element will be created if none provided.
-     * @param {Object} attr (optional) A key map of the colorpicker's 
-     * initial attributes.  Ignored if first arg is attributes object.
-     */
-    YAHOO.widget.ColorPicker = function(el, attr) {
-        _pickercount = _pickercount + 1;
-        this.logger = new YAHOO.widget.LogWriter("ColorPicker");
-        attr = attr || {};
-        if (arguments.length === 1 && !YAHOO.lang.isString(el) && !el.nodeName) {
-            attr = el; // treat first arg as attr object
-            el = attr.element || null;
-        }
-        
-        if (!el && !attr.element) { // create if we dont have one
-            this.logger.log("creating host element");
-            el = _createHostElement.call(this, attr);
-        }
-
-    	YAHOO.widget.ColorPicker.superclass.constructor.call(this, el, attr); 
-    };
-
-    YAHOO.extend(YAHOO.widget.ColorPicker, YAHOO.util.Element);
-    
-    var proto = YAHOO.widget.ColorPicker.prototype,
-        Slider=YAHOO.widget.Slider,
-        Color=YAHOO.util.Color,
-        Dom = YAHOO.util.Dom,
-        Event = YAHOO.util.Event,
-        lang = YAHOO.lang,
-        sub = lang.substitute;
-    
-
-    var b = "yui-picker";
-
-    /**
-     * The element ids used by this control
-     * @property ID
-     * @final
-     */
-    proto.ID = {
-
-        /**
-         * The id for the "red" form field
-         * @property ID.R
-         * @type String
-         * @final
-         * @default yui-picker-r
-         */
-        R: b + "-r",
-
-        /**
-         * The id for the "red" hex pair output
-         * @property ID.R_HEX
-         * @type String
-         * @final
-         * @default yui-picker-rhex
-         */
-        R_HEX: b + "-rhex",
-
-        /**
-         * The id for the "green" form field
-         * @property ID.G
-         * @type String
-         * @final
-         * @default yui-picker-g
-         */
-        G: b + "-g",
-
-        /**
-         * The id for the "green" hex pair output
-         * @property ID.G_HEX
-         * @type String
-         * @final
-         * @default yui-picker-ghex
-         */
-        G_HEX: b + "-ghex",
-
-
-        /**
-         * The id for the "blue" form field
-         * @property ID.B
-         * @type String
-         * @final
-         * @default yui-picker-b
-         */
-        B: b + "-b",
-
-        /**
-         * The id for the "blue" hex pair output
-         * @property ID.B_HEX
-         * @type String
-         * @final
-         * @default yui-picker-bhex
-         */
-        B_HEX: b + "-bhex",
-
-        /**
-         * The id for the "hue" form field
-         * @property ID.H
-         * @type String
-         * @final
-         * @default yui-picker-h
-         */
-        H: b + "-h",
-
-        /**
-         * The id for the "saturation" form field
-         * @property ID.S
-         * @type String
-         * @final
-         * @default yui-picker-s
-         */
-        S: b + "-s",
-
-        /**
-         * The id for the "value" form field
-         * @property ID.V
-         * @type String
-         * @final
-         * @default yui-picker-v
-         */
-        V: b + "-v",
-
-        /**
-         * The id for the picker region slider
-         * @property ID.PICKER_BG
-         * @type String
-         * @final
-         * @default yui-picker-bg
-         */
-        PICKER_BG:      b + "-bg",
-
-        /**
-         * The id for the picker region thumb
-         * @property ID.PICKER_THUMB
-         * @type String
-         * @final
-         * @default yui-picker-thumb
-         */
-        PICKER_THUMB:   b + "-thumb",
-
-        /**
-         * The id for the hue slider
-         * @property ID.HUE_BG
-         * @type String
-         * @final
-         * @default yui-picker-hue-bg
-         */
-        HUE_BG:         b + "-hue-bg",
-
-        /**
-         * The id for the hue thumb
-         * @property ID.HUE_THUMB
-         * @type String
-         * @final
-         * @default yui-picker-hue-thumb
-         */
-        HUE_THUMB:      b + "-hue-thumb",
-
-        /**
-         * The id for the hex value form field
-         * @property ID.HEX
-         * @type String
-         * @final
-         * @default yui-picker-hex
-         */
-        HEX:            b + "-hex",
-
-        /**
-         * The id for the color swatch
-         * @property ID.SWATCH
-         * @type String
-         * @final
-         * @default yui-picker-swatch
-         */
-        SWATCH:         b + "-swatch",
-
-        /**
-         * The id for the websafe color swatch
-         * @property ID.WEBSAFE_SWATCH
-         * @type String
-         * @final
-         * @default yui-picker-websafe-swatch
-         */
-        WEBSAFE_SWATCH: b + "-websafe-swatch",
-
-        /**
-         * The id for the control details
-         * @property ID.CONTROLS
-         * @final
-         * @default yui-picker-controls
-         */
-        CONTROLS: b + "-controls",
-
-        /**
-         * The id for the rgb controls
-         * @property ID.RGB_CONTROLS
-         * @final
-         * @default yui-picker-rgb-controls
-         */
-        RGB_CONTROLS: b + "-rgb-controls",
-
-        /**
-         * The id for the hsv controls
-         * @property ID.HSV_CONTROLS
-         * @final
-         * @default yui-picker-hsv-controls
-         */
-        HSV_CONTROLS: b + "-hsv-controls",
-        
-        /**
-         * The id for the hsv controls
-         * @property ID.HEX_CONTROLS
-         * @final
-         * @default yui-picker-hex-controls
-         */
-        HEX_CONTROLS: b + "-hex-controls",
-
-        /**
-         * The id for the hex summary
-         * @property ID.HEX_SUMMARY
-         * @final
-         * @default yui-picker-hex-summary
-         */
-        HEX_SUMMARY: b + "-hex-summary",
-
-        /**
-         * The id for the controls section header
-         * @property ID.CONTROLS_LABEL
-         * @final
-         * @default yui-picker-controls-label
-         */
-        CONTROLS_LABEL: b + "-controls-label"
-    };
-
-    /**
-     * Constants for any script-generated messages.  The values here
-     * are the default messages.  They can be updated by providing
-     * the complete list to the constructor for the "txt" attribute.
-     * @property TXT
-     * @final
-     */
-    proto.TXT = {
-        ILLEGAL_HEX: "Illegal hex value entered",
-        SHOW_CONTROLS: "Show color details",
-        HIDE_CONTROLS: "Hide color details",
-        CURRENT_COLOR: "Currently selected color: {rgb}",
-        CLOSEST_WEBSAFE: "Closest websafe color: {rgb}. Click to select.",
-        R: "R",
-        G: "G",
-        B: "B",
-        H: "H",
-        S: "S",
-        V: "V",
-        HEX: "#",
-        DEG: "\u00B0",
-        PERCENT: "%"
-    };
-
-    /**
-     * Constants for the default image locations for img tags that are
-     * generated by the control.  They can be modified by passing the
-     * complete list to the contructor for the "images" attribute
-     * @property IMAGE
-     * @final
-     */
-    proto.IMAGE = {
-        PICKER_THUMB: "../../build/colorpicker/assets/picker_thumb.png",
-        HUE_THUMB: "../../build/colorpicker/assets/hue_thumb.png"
-    };
-
-    /*
-     * Constants for the control's custom event names.  subscribe
-     * to the rgbChange event instead.
-     * @property EVENT
-     * @final
-     */
-    //proto.EVENT = {
-        //CHANGE: "change"
-    //};
-
-    //proto.CSS = { };
-
-    /**
-     * Constants for the control's default default values
-     * @property DEFAULT
-     * @final
-     */
-    proto.DEFAULT = {
-        PICKER_SIZE: 180
-    };
-
-    /**
-     * Constants for the control's configuration attributes
-     * @property OPT
-     * @final
-     */
-    proto.OPT = {
-        HUE: "hue",
-        SATURATION: "saturation",
-        VALUE: "value",
-        RED: "red",
-        GREEN: "green",
-        BLUE: "blue",
-        HSV: "hsv",
-        RGB: "rgb",
-        WEBSAFE: "websafe",
-        HEX: "hex",
-        PICKER_SIZE: "pickersize",
-        SHOW_CONTROLS: "showcontrols",
-        SHOW_RGB_CONTROLS: "showrgbcontrols",
-        SHOW_HSV_CONTROLS: "showhsvcontrols",
-        SHOW_HEX_CONTROLS: "showhexcontrols",
-        SHOW_HEX_SUMMARY: "showhexsummary",
-        SHOW_WEBSAFE: "showwebsafe",
-        //SHOW_SUBMIT: "showsubmit",
-        CONTAINER: "container",
-        IDS: "ids",
-        ELEMENTS: "elements",
-        TXT: "txt",
-        IMAGES: "images",
-        ANIMATE: "animate"
-    };
-
-    /**
-     * Moves the hue slider into the position dictated by the current state
-     * of the control
-     * @method _updateHueSlider
-     * @private
-     */
-    var _updateHueSlider = function() {
-        var size = this.get(this.OPT.PICKER_SIZE),
-            h = this.get(this.OPT.HUE);
-
-        h = size - Math.round(h / 360 * size);
-        
-        // 0 is at the top and bottom of the hue slider.  Always go to
-        // the top so we don't end up sending the thumb to the bottom
-        // when the value didn't actually change (e.g., a conversion
-        // produced 360 instead of 0 and the value was already 0).
-        if (h === size) {
-            h = 0;
-        }
-        this.logger.log("Hue slider is being set to " + h);
-
-        this.hueSlider.setValue(h);
-    };
-
-    /**
-     * Moves the picker slider into the position dictated by the current state
-     * of the control
-     * @method _updatePickerSlider
-     * @private
-     */
-    var _updatePickerSlider = function() {
-        var size = this.get(this.OPT.PICKER_SIZE),
-            s = this.get(this.OPT.SATURATION),
-            v = this.get(this.OPT.VALUE);
-
-        s = Math.round(s * size / 100);
-        v = Math.round(size - (v * size / 100));
-
-        this.logger.log("Setting picker slider to " + [s, v]);
-
-        this.pickerSlider.setRegionValue(s, v);
-    };
-
-    /**
-     * Moves the sliders into the position dictated by the current state
-     * of the control
-     * @method _updateSliders
-     * @private
-     */
-    var _updateSliders = function() {
-        _updateHueSlider.call(this);
-        _updatePickerSlider.call(this);
-    };
-
-    /**
-     * Sets the control to the specified rgb value and
-     * moves the sliders to the proper positions
-     * @method setValue
-     * @param rgb {[int, int, int]} the rgb value
-     * @param silent {boolean} whether or not to fire the change event
-     */
-    proto.setValue = function(rgb, silent) {
-        silent = (silent) || false;
-        this.set(this.OPT.RGB, rgb, silent);
-        _updateSliders.call(this);
-    };
-
-    /**
-     * The hue slider
-     * @property hueSlider
-     * @type YAHOO.widget.Slider
-     */
-    proto.hueSlider = null; 
-    
-    /**
-     * The picker region
-     * @property pickerSlider
-     * @type YAHOO.widget.Slider
-     */
-    proto.pickerSlider = null;
-
-    /**
-     * Translates the slider value into hue, int[0,359]
-     * @method _getH
-     * @private
-     * @return {int} the hue from 0 to 359
-     */
-    var _getH = function() {
-        var size = this.get(this.OPT.PICKER_SIZE),
-            h = (size - this.hueSlider.getValue()) / size;
-        h = Math.round(h*360);
-        return (h === 360) ? 0 : h;
-    };
-
-    /**
-     * Translates the slider value into saturation, int[0,1], left to right
-     * @method _getS
-     * @private
-     * @return {int} the saturation from 0 to 1
-     */
-    var _getS = function() {
-        return this.pickerSlider.getXValue() / this.get(this.OPT.PICKER_SIZE);
-    };
-
-    /**
-     * Translates the slider value into value/brightness, int[0,1], top
-     * to bottom
-     * @method _getV
-     * @private
-     * @return {int} the value from 0 to 1
-     */
-    var _getV = function() {
-        var size = this.get(this.OPT.PICKER_SIZE);
-        return (size - this.pickerSlider.getYValue()) / size;
-    };
-
-    /**
-     * Updates the background of the swatch with the current rbg value.
-     * Also updates the websafe swatch to the closest websafe color
-     * @method _updateSwatch
-     * @private
-     */
-    var _updateSwatch = function() {
-        var rgb = this.get(this.OPT.RGB),
-            websafe = this.get(this.OPT.WEBSAFE),
-            el = this.getElement(this.ID.SWATCH),
-            color = rgb.join(","),
-            txt = this.get(this.OPT.TXT);
-
-        Dom.setStyle(el, "background-color", "rgb(" + color  + ")");
-        el.title = lang.substitute(txt.CURRENT_COLOR, {
-                "rgb": "#" + this.get(this.OPT.HEX)
-            });
-
-
-        el = this.getElement(this.ID.WEBSAFE_SWATCH);
-        color = websafe.join(",");
-
-        Dom.setStyle(el, "background-color", "rgb(" + color + ")");
-        el.title = lang.substitute(txt.CLOSEST_WEBSAFE, {
-                "rgb": "#" + Color.rgb2hex(websafe)
-            });
-
-    };
-
-    /**
-     * Reads the sliders and converts the values to RGB, updating the
-     * internal state for all the individual form fields
-     * @method _getValuesFromSliders
-     * @private
-     */
-    var _getValuesFromSliders = function() {
-        var h=_getH.call(this), s=_getS.call(this), v=_getV.call(this);
-        YAHOO.log("hsv " + [h, s, v]);
-
-        var rgb = Color.hsv2rgb(h, s, v);
-        //var websafe = Color.websafe(rgb);
-        //var hex = Color.rgb2hex(rgb[0], rgb[1], rgb[2]);
-
-        this.set(this.OPT.RGB, rgb);
-    };
-
-    /**
-     * Updates the form field controls with the state data contained
-     * in the control.
-     * @method _updateFormFields
-     * @private
-     */
-    var _updateFormFields = function() {
-        this.getElement(this.ID.H).value = this.get(this.OPT.HUE);
-        this.getElement(this.ID.S).value = this.get(this.OPT.SATURATION);
-        this.getElement(this.ID.V).value = this.get(this.OPT.VALUE);
-        this.getElement(this.ID.R).value = this.get(this.OPT.RED);
-        this.getElement(this.ID.R_HEX).innerHTML = Color.dec2hex(this.get(this.OPT.RED));
-        this.getElement(this.ID.G).value = this.get(this.OPT.GREEN);
-        this.getElement(this.ID.G_HEX).innerHTML = Color.dec2hex(this.get(this.OPT.GREEN));
-        this.getElement(this.ID.B).value = this.get(this.OPT.BLUE);
-        this.getElement(this.ID.B_HEX).innerHTML = Color.dec2hex(this.get(this.OPT.BLUE));
-        this.getElement(this.ID.HEX).value = this.get(this.OPT.HEX);
-    };
-
-    /**
-     * Event handler for the hue slider.
-     * @method _onHueSliderChange
-     * @param newOffset {int} pixels from the start position
-     * @private
-     */
-    var _onHueSliderChange = function(newOffset) {
-        this.logger.log("hue update: " + newOffset , "warn");
-
-        var h = _getH.call(this);
-        this.set(this.OPT.HUE, h, true);
-
-        // set picker background to the hue
-        var rgb = Color.hsv2rgb(h, 1, 1);
-        var styleDef = "rgb(" + rgb.join(",") + ")";
-
-        Dom.setStyle(this.getElement(this.ID.PICKER_BG), "background-color", styleDef);
-
-        if (this.hueSlider.valueChangeSource === this.hueSlider.SOURCE_UI_EVENT) {
-            _getValuesFromSliders.call(this);
-        }
-
-        _updateFormFields.call(this);
-        _updateSwatch.call(this);
-    };
-
-    /**
-     * Event handler for the picker slider, which controls the
-     * saturation and value/brightness.
-     * @method _onPickerSliderChange
-     * @param newOffset {{x: int, y: int}} x/y pixels from the start position
-     * @private
-     */
-    var _onPickerSliderChange = function(newOffset) {
-        this.logger.log(sub("picker update [{x}, {y}]", newOffset));
-
-        var s=_getS.call(this), v=_getV.call(this);
-        this.set(this.OPT.SATURATION, Math.round(s*100), true);
-        this.set(this.OPT.VALUE, Math.round(v*100), true);
-
-        if (this.pickerSlider.valueChangeSource === this.pickerSlider.SOURCE_UI_EVENT) {
-            _getValuesFromSliders.call(this);
-        }
-
-        _updateFormFields.call(this);
-        _updateSwatch.call(this);
-    };
-
-
-    /**
-     * Key map to well-known commands for txt field input
-     * @method _getCommand
-     * @param e {Event} the keypress or keydown event
-     * @return {int} a command code
-     * <ul>
-     * <li>0 = not a number, letter in range, or special key</li>
-     * <li>1 = number</li>
-     * <li>2 = a-fA-F</li>
-     * <li>3 = increment (up arrow)</li>
-     * <li>4 = decrement (down arrow)</li>
-     * <li>5 = special key (tab, delete, return, escape, left, right)</li> 
-     * <li>6 = return</li>
-     * </ul>
-     * @private
-     */
-    var _getCommand = function(e) {
-        var c = Event.getCharCode(e);
-
-        //alert(Event.getCharCode(e) + ", " + e.keyCode + ", " + e.charCode);
-
-        // special keys
-        if (c === 38) { // up arrow
-            return 3;
-        } else if (c === 13) { // return
-            return 6;
-        } else if (c === 40) { // down array
-            return 4;
-        } else if (c >= 48 && c<=57) { // 0-9
-            return 1;
-        } else if (c >= 97 && c<=102) { // a-f
-            return 2;
-        } else if (c >= 65 && c<=70) { // A-F
-            return 2;
-        //} else if ("8, 9, 13, 27, 37, 39".indexOf(c) > -1 || 
-        //              (c >= 112 && c <=123)) { // including F-keys
-        // tab, delete, return, escape, left, right
-        } else if ("8, 9, 13, 27, 37, 39".indexOf(c) > -1) { // special chars
-            return 5;
-        } else { // something we probably don't want
-            return 0;
-        }
-    };
-
-    /**
-     * Use the value of the text field to update the control
-     * @method _hexFieldKeypress
-     * @param e {Event} an event
-     * @param el {HTMLElement} the field
-     * @param prop {string} the key to the linked property
-     * @private
-     */
-    var _useFieldValue = function(e, el, prop) {
-        var val = el.value;
-
-        if (prop !== this.OPT.HEX) {
-            val = parseInt(val, 10);
-        }
-
-        if (val !== this.get(prop)) {
-            this.set(prop, val);
-        }
-    };
-
-    /**
-     * Handle keypress on one of the rgb or hsv fields.
-     * @method _rgbFieldKeypress
-     * @param e {Event} the keypress event
-     * @param el {HTMLElement} the field
-     * @param prop {string} the key to the linked property
-     * @private
-     */
-    var _rgbFieldKeypress = function(e, el, prop) {
-        var command = _getCommand(e);
-        var inc = (e.shiftKey) ? 10 : 1;
-        switch (command) {
-            case 6: // return, update the value
-                _useFieldValue.apply(this, arguments);
-                break;
-                        
-            case 3: // up arrow, increment
-                this.set(prop, Math.min(this.get(prop)+inc, 255));
-                _updateFormFields.call(this);
-                //Event.stopEvent(e);
-                break;
-            case 4: // down arrow, decrement
-                this.set(prop, Math.max(this.get(prop)-inc, 0));
-                _updateFormFields.call(this);
-                //Event.stopEvent(e);
-                break;
-
-            default:
-        }
-
-    };
-
-    /**
-     * Handle keydown on the hex field
-     * @method _hexFieldKeypress
-     * @param e {Event} the keypress event
-     * @param el {HTMLElement} the field
-     * @param prop {string} the key to the linked property
-     * @private
-     */
-    var _hexFieldKeypress = function(e, el, prop) {
-        var command = _getCommand(e);
-        if (command === 6) { // return, update the value
-            _useFieldValue.apply(this, arguments);
-        }
-    };
-
-    /** 
-     * Allows numbers and special chars, and by default allows a-f.  
-     * Used for the hex field keypress handler.
-     * @method _hexOnly
-     * @param e {Event} the event
-     * @param numbersOnly omits a-f if set to true
-     * @private
-     * @return {boolean} false if we are canceling the event
-     */
-    var _hexOnly = function(e, numbersOnly) {
-        var command = _getCommand(e);
-        switch (command) {
-            case 6: // return
-            case 5: // special char
-            case 1: // number
-                break;
-            case 2: // hex char (a-f)
-                if (numbersOnly !== true) {
-                    break;
-                }
-
-                // fallthrough is intentional
-
-            default: // prevent alpha and punctuation
-                Event.stopEvent(e);
-                return false;
-        }
-    };
-
-    /** 
-     * Allows numbers and special chars only.  Used for the
-     * rgb and hsv fields keypress handler.
-     * @method _numbersOnly
-     * @param e {Event} the event
-     * @private
-     * @return {boolean} false if we are canceling the event
-     */
-    var _numbersOnly = function(e) {
-        return _hexOnly(e, true);
-    };
-
-    /**
-     * Returns the element reference that is saved.  The id can be either
-     * the element id, or the key for this id in the "id" config attribute.
-     * For instance, the host element id can be obtained by passing its
-     * id (default: "yui_picker") or by its key "YUI_PICKER".
-     * @param id {string} the element id, or key 
-     * @return {HTMLElement} a reference to the element
-     */
-    proto.getElement = function(id) { 
-        return this.get(this.OPT.ELEMENTS)[this.get(this.OPT.IDS)[id]]; 
-    };
-
-    var _createElements = function() {
-        this.logger.log("Building markup");
-        var el, child, img, fld, i, 
-            ids = this.get(this.OPT.IDS),
-            txt = this.get(this.OPT.TXT),
-            images = this.get(this.OPT.IMAGES),
-            Elem = function(type, o) {
-                var n = document.createElement(type);
-                if (o) {
-                    lang.augmentObject(n, o, true);
-                }
-                return n;
-            },
-            RGBElem = function(type, obj) {
-                var o = lang.merge({
-                        //type: "txt",
-                        autocomplete: "off",
-                        value: "0",
-                        size: 3,
-                        maxlength: 3
-                    }, obj);
-
-                o.name = o.id;
-                return new Elem(type, o);
-            };
-
-        var p = this.get("element");
-
-        // Picker slider (S and V) ---------------------------------------------
-
-        el = new Elem("div", {
-            id: ids[this.ID.PICKER_BG],
-            className: "yui-picker-bg",
-            tabIndex: -1,
-            hideFocus: true
-        });
-
-        child = new Elem("div", {
-            id: ids[this.ID.PICKER_THUMB],
-            className: "yui-picker-thumb"
-        });
-
-        img = new Elem("img", {
-            src: images.PICKER_THUMB
-        });
-
-        child.appendChild(img);
-        el.appendChild(child);
-        p.appendChild(el);
-        
-        // Hue slider ---------------------------------------------
-        el = new Elem("div", {
-            id: ids[this.ID.HUE_BG],
-            className: "yui-picker-hue-bg",
-            tabIndex: -1,
-            hideFocus: true
-        });
-
-        child = new Elem("div", {
-            id: ids[this.ID.HUE_THUMB],
-            className: "yui-picker-hue-thumb"
-        });
-
-        img = new Elem("img", {
-            src: images.HUE_THUMB
-        });
-
-        child.appendChild(img);
-        el.appendChild(child);
-        p.appendChild(el);
-
-
-        // controls ---------------------------------------------
-
-        el = new Elem("div", {
-            id: ids[this.ID.CONTROLS],
-            className: "yui-picker-controls"
-        });
-
-        p.appendChild(el);
-        p = el;
-
-            // controls header
-            el = new Elem("div", {
-                className: "hd"
-            });
-
-            child = new Elem("a", {
-                id: ids[this.ID.CONTROLS_LABEL],
-                //className: "yui-picker-controls-label",
-                href: "#"
-            });
-            el.appendChild(child);
-            p.appendChild(el);
-
-            // bd
-            el = new Elem("div", {
-                className: "bd"
-            });
-
-            p.appendChild(el);
-            p = el;
-
-                // rgb
-                el = new Elem("ul", {
-                    id: ids[this.ID.RGB_CONTROLS],
-                    className: "yui-picker-rgb-controls"
-                });
-
-                child = new Elem("li");
-                child.appendChild(document.createTextNode(txt.R + " "));
-
-                fld = new RGBElem("input", {
-                    id: ids[this.ID.R],
-                    className: "yui-picker-r"
-                });
-
-                child.appendChild(fld);
-                el.appendChild(child);
-
-                child = new Elem("li");
-                child.appendChild(document.createTextNode(txt.G + " "));
-
-                fld = new RGBElem("input", {
-                    id: ids[this.ID.G],
-                    className: "yui-picker-g"
-                });
-
-                child.appendChild(fld);
-                el.appendChild(child);
-
-                child = new Elem("li");
-                child.appendChild(document.createTextNode(txt.B + " "));
-
-                fld = new RGBElem("input", {
-                    id: ids[this.ID.B],
-                    className: "yui-picker-b"
-                });
-
-                child.appendChild(fld);
-                el.appendChild(child);
-
-                p.appendChild(el);
-
-                // hsv
-                el = new Elem("ul", {
-                    id: ids[this.ID.HSV_CONTROLS],
-                    className: "yui-picker-hsv-controls"
-                });
-
-                child = new Elem("li");
-                child.appendChild(document.createTextNode(txt.H + " "));
-
-                fld = new RGBElem("input", {
-                    id: ids[this.ID.H],
-                    className: "yui-picker-h"
-                });
-
-                child.appendChild(fld);
-                child.appendChild(document.createTextNode(" " + txt.DEG));
-
-                el.appendChild(child);
-
-                child = new Elem("li");
-                child.appendChild(document.createTextNode(txt.S + " "));
-
-                fld = new RGBElem("input", {
-                    id: ids[this.ID.S],
-                    className: "yui-picker-s"
-                });
-
-                child.appendChild(fld);
-                child.appendChild(document.createTextNode(" " + txt.PERCENT));
-
-                el.appendChild(child);
-
-                child = new Elem("li");
-                child.appendChild(document.createTextNode(txt.V + " "));
-
-                fld = new RGBElem("input", {
-                    id: ids[this.ID.V],
-                    className: "yui-picker-v"
-                });
-
-                child.appendChild(fld);
-                child.appendChild(document.createTextNode(" " + txt.PERCENT));
-
-                el.appendChild(child);
-                p.appendChild(el);
-
-
-                // hex summary
-
-                el = new Elem("ul", {
-                    id: ids[this.ID.HEX_SUMMARY],
-                    className: "yui-picker-hex_summary"
-                });
-
-                child = new Elem("li", {
-                    id: ids[this.ID.R_HEX]
-                });
-                el.appendChild(child);
-
-                child = new Elem("li", {
-                    id: ids[this.ID.G_HEX]
-                });
-                el.appendChild(child);
-
-                child = new Elem("li", {
-                    id: ids[this.ID.B_HEX]
-                });
-                el.appendChild(child);
-                p.appendChild(el);
-
-                // hex field
-                el = new Elem("div", {
-                    id: ids[this.ID.HEX_CONTROLS],
-                    className: "yui-picker-hex-controls"
-                });
-                el.appendChild(document.createTextNode(txt.HEX + " "));
-
-                child = new RGBElem("input", {
-                    id: ids[this.ID.HEX],
-                    className: "yui-picker-hex",
-                    size: 6,
-                    maxlength: 6
-                });
-
-                el.appendChild(child);
-                p.appendChild(el);
-
-                p = this.get("element");
-
-                // swatch
-                el = new Elem("div", {
-                    id: ids[this.ID.SWATCH],
-                    className: "yui-picker-swatch"
-                });
-
-                p.appendChild(el);
-
-                // websafe swatch
-                el = new Elem("div", {
-                    id: ids[this.ID.WEBSAFE_SWATCH],
-                    className: "yui-picker-websafe-swatch"
-                });
-
-                p.appendChild(el);
-
-    };
-
-    var _attachRGBHSV = function(id, config) {
-        Event.on(this.getElement(id), "keydown", function(e, me) {
-                _rgbFieldKeypress.call(me, e, this, config);
-            }, this);
-        Event.on(this.getElement(id), "keypress", _numbersOnly, this);
-        Event.on(this.getElement(id), "blur", function(e, me) {
-                _useFieldValue.call(me, e, this, config);
-            }, this);
-    };
-
-
-    /**
-     * Updates the rgb attribute with the current state of the r,g,b
-     * fields.  This is invoked from change listeners on these
-     * attributes to facilitate updating these values from the
-     * individual form fields
-     * @method _updateRGB
-     * @private
-     */
-    var _updateRGB = function() {
-        var rgb = [this.get(this.OPT.RED), 
-                   this.get(this.OPT.GREEN),
-                   this.get(this.OPT.BLUE)];
-
-        this.logger.log("RGB value set to " + rgb);
-        this.set(this.OPT.RGB, rgb);
-
-        _updateSliders.call(this);
-    };
-
-    /**
-     * Sets the initial state of the sliders
-     * @method initPicker
-     */
-    proto.initPicker = function () {
-
-        // bind all of our elements
-        var o=this.OPT, 
-            ids = this.get(o.IDS), 
-            els = this.get(o.ELEMENTS), 
-                  i, el, id;
-
-        // Add the default value as a key for each element for easier lookup
-        for (i in this.ID) {
-            if (lang.hasOwnProperty(this.ID, i)) {
-                ids[this.ID[i]] = ids[i];
-            }
-        }
-
-        // Check for picker element, if not there, create all of them
-        el = Dom.get(ids[this.ID.PICKER_BG]);
-        if (!el) {
-            _createElements.call(this);
-        } else {
-            this.logger.log("Using pre-existing markup");
-        }
-
-        for (i in ids) {
-            if (lang.hasOwnProperty(ids, i)) {
-                // look for element
-                el = Dom.get(ids[i]);
-
-                // generate an id if the implementer passed in an element reference,
-                // and the element did not have an id already
-                id = Dom.generateId(el);
-
-                // update the id in case we generated the id
-                ids[i] = id; // key is WEBSAFE_SWATCH
-                ids[ids[i]] = id; // key is websafe_swatch
-
-                // store the dom ref
-                els[id] = el;
-            }
-        }
-
-        // set the initial visibility state of our controls
-            els = [o.SHOW_CONTROLS, 
-                   o.SHOW_RGB_CONTROLS,
-                   o.SHOW_HSV_CONTROLS,
-                   o.SHOW_HEX_CONTROLS,
-                   o.SHOW_HEX_SUMMARY,
-                   o.SHOW_WEBSAFE
-                   ];
-
-        for (i=0; i<els.length; i=i+1) {
-            this.set(els[i], this.get(els[i]));
-        }
-
-        var s = this.get(o.PICKER_SIZE);
-        this.logger.log("picker size" + s);
-
-        this.hueSlider = Slider.getVertSlider(this.getElement(this.ID.HUE_BG), 
-                                              this.getElement(this.ID.HUE_THUMB), 0, s);
-        this.hueSlider.subscribe("change", _onHueSliderChange, this, true);
-
-        this.pickerSlider = Slider.getSliderRegion(this.getElement(this.ID.PICKER_BG), 
-                                                   this.getElement(this.ID.PICKER_THUMB), 0, s, 0, s);
-        this.pickerSlider.subscribe("change", _onPickerSliderChange, this, true);
-
-        // Set the animate state
-        this.set(o.ANIMATE,this.get(o.ANIMATE));
-
-        //_onHueSliderChange.call(this, 0);
-
-        Event.on(this.getElement(this.ID.WEBSAFE_SWATCH), "click", function(e) {
-               this.setValue(this.get(o.WEBSAFE));
-               //_updateSliders
-           }, this, true);
-
-        Event.on(this.getElement(this.ID.CONTROLS_LABEL), "click", function(e) {
-               this.set(o.SHOW_CONTROLS, !this.get(o.SHOW_CONTROLS));
-               Event.preventDefault(e);
-           }, this, true);
-
-        _attachRGBHSV.call(this, this.ID.R, this.OPT.RED); 
-        _attachRGBHSV.call(this, this.ID.G, this.OPT.GREEN); 
-        _attachRGBHSV.call(this, this.ID.B, this.OPT.BLUE); 
-        _attachRGBHSV.call(this, this.ID.H, this.OPT.HUE); 
-        _attachRGBHSV.call(this, this.ID.S, this.OPT.SATURATION); 
-        _attachRGBHSV.call(this, this.ID.V, this.OPT.VALUE); 
-
-        Event.on(this.getElement(this.ID.HEX), "keydown", function(e, me) {
-                _hexFieldKeypress.call(me, e, this, me.OPT.HEX);
-            }, this);
-
-        Event.on(this.getElement(this.ID.HEX), "keypress", _hexOnly, this);
-        Event.on(this.getElement(this.ID.HEX), "blur", function(e, me) {
-                _useFieldValue.call(me, e, this, me.OPT.HEX);
-            }, this);
-
-        _updateRGB.call(this);
-    };
-
-
-    /**
-     * Updates the RGB values from the current state of the HSV
-     * values.  Executed when the one of the HSV form fields are
-     * updated
-     * _updateRGBFromHSV
-     * @private
-     */
-    var _updateRGBFromHSV = function() {
-        var hsv = [this.get(this.OPT.HUE), 
-                   this.get(this.OPT.SATURATION)/100,
-                   this.get(this.OPT.VALUE)/100];
-
-        var rgb = Color.hsv2rgb(hsv);
-
-        this.logger.log("HSV converted to RGB " + hsv + " : " + rgb);
-        this.set(this.OPT.RGB, rgb);
-
-        _updateSliders.call(this);
-    };
-
-    /**
-     * Parses the hex string to normalize shorthand values, converts
-     * the hex value to rgb and updates the rgb attribute (which
-     * updates the state for all of the other values)
-     * method _updateHex
-     * @private
-     */
-    var _updateHex = function() {
-       
-        var hex = this.get(this.OPT.HEX), l=hex.length;
-
-        // support #369 -> #336699 shorthand
-        if (l === 3) {
-            var c = hex.split(""), i;
-            for (i=0; i<l; i=i+1) {
-                c[i] = c[i] + c[i];
-            }
-
-            hex = c.join("");
-        }
-
-        if (hex.length !== 6) {
-            this.logger.log(this.get(this.TXT.ILLEGAL_HEX), "error");
-            return false;
-        }
-
-        var rgb = Color.hex2rgb(hex);
-
-        this.logger.log(sub("Hex value set to {hex} ({rgb})", {
-                hex: hex, rgb: rgb
-            }));
-
-        this.setValue(rgb);
-
-        //_updateSliders.call(this);
-
-    };
-
-
-
-    /**
-     * Sets up the config attributes and the change listeners for this
-     * properties
-     * @method initAttributes
-     * @param attr An object containing default attribute values
-     */
-    proto.initAttributes = function(attr) {
-
-        attr = attr || {};
-        YAHOO.widget.ColorPicker.superclass.initAttributes.call(this, attr);
-        
-        /**
-         * The size of the picker. Trying to change this is not recommended.
-         * @attribute pickersize
-         * @default 180
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.PICKER_SIZE, {
-                value: attr.size || this.DEFAULT.PICKER_SIZE
-            });
-
-        /**
-         * The current hue value 0-360
-         * @attribute hue
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.HUE, {
-                value: attr.hue || 0,
-                validator: lang.isNumber
-            });
-
-        /**
-         * The current saturation value 0-100
-         * @attribute saturation
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.SATURATION, {
-                value: attr.saturation || 0,
-                validator: lang.isNumber
-            });
-
-        /**
-         * The current value/brightness value 0-100
-         * @attribute value
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.VALUE, {
-                value: lang.isNumber(attr.value) ? attr.value : 100,
-                validator: lang.isNumber
-            });
-
-        /**
-         * The current red value 0-255
-         * @attribute red
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.RED, {
-                value: lang.isNumber(attr.red) ? attr.red : 255,
-                validator: lang.isNumber
-            });
-
-        /**
-         * The current green value 0-255
-         * @attribute green 
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.GREEN, {
-                value: lang.isNumber(attr.green) ? attr.green : 255,
-                validator: lang.isNumber
-            });
-
-        /**
-         * The current blue value 0-255
-         * @attribute blue
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.BLUE, {
-                value: lang.isNumber(attr.blue) ? attr.blue : 255,
-                validator: lang.isNumber
-            });
-
-        /**
-         * The current hex value #000000-#FFFFFF, without the #
-         * @attribute hex
-         * @type string
-         */
-        this.setAttributeConfig(this.OPT.HEX, {
-                value: attr.hex || "FFFFFF",
-                validator: lang.isString
-            });
-
-        /**
-         * The current rgb value.  Updates the state of all of the
-         * other value fields.  Read-only: use setValue to set the
-         * controls rgb value.
-         * @attribute hex
-         * @type [int, int, int]
-         * @readonly
-         */
-        this.setAttributeConfig(this.OPT.RGB, {
-                value: attr.rgb || [255,255,255],
-                method: function(rgb) {
-
-                    this.set(this.OPT.RED, rgb[0], true);
-                    this.set(this.OPT.GREEN, rgb[1], true);
-                    this.set(this.OPT.BLUE, rgb[2], true);
-
-                    var websafe = Color.websafe(rgb);
-                    this.set(this.OPT.WEBSAFE, websafe, true);
-
-                    var hex = Color.rgb2hex(rgb);
-                    this.set(this.OPT.HEX, hex, true);
-
-                    var hsv = Color.rgb2hsv(rgb);
-
-                    this.logger.log(sub("RGB value set to {rgb} (hsv: {hsv})", {
-                            "hsv": hsv, "rgb": rgb
-                        }));
-
-                    this.set(this.OPT.HUE, hsv[0], true);
-                    this.set(this.OPT.SATURATION, Math.round(hsv[1]*100), true);
-                    this.set(this.OPT.VALUE, Math.round(hsv[2]*100), true);
-                },
-                readonly: true
-            });
-
-        /**
-         * If the color picker will live inside of a container object,
-         * set, provide a reference to it so the control can use the
-         * container's events.
-         * @attribute container
-         * @type YAHOO.widget.Panel
-         */
-        this.setAttributeConfig(this.OPT.CONTAINER, {
-                    value: null,
-                    method: function(container) {
-                        if (container) {
-                            // Position can get out of sync when the
-                            // control is manipulated while display is
-                            // none.  Resetting the slider constraints
-                            // when it is visible gets the state back in
-                            // order.
-                            container.showEvent.subscribe(function() {
-                                // this.pickerSlider.thumb.resetConstraints();
-                                // this.hueSlider.thumb.resetConstraints();
-                                this.pickerSlider.focus();
-                            }, this, true);
-                        }
-                    }
-                });
-        /**
-         * The closest current websafe value
-         * @attribute websafe
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.WEBSAFE, {
-                value: attr.websafe || [255,255,255]
-            });
-
-
-        var ids = attr.ids || lang.merge({}, this.ID);
-
-        if (!attr.ids && _pickercount > 1) {
-            for (var i in ids) {
-                if (lang.hasOwnProperty(ids, i)) {
-                    ids[i] = ids[i] + _pickercount;
-                }
-            }
-        }
-
-
-        /**
-         * A list of element ids and/or element references used by the 
-         * control.  The default is the this.ID list, and can be customized
-         * by passing a list in the contructor
-         * @attribute ids
-         * @type {referenceid: realid}
-         * @writeonce
-         */
-        this.setAttributeConfig(this.OPT.IDS, {
-                value: ids,
-                writeonce: true
-            });
-
-        /**
-         * A list of txt strings for internationalization.  Default
-         * is this.TXT
-         * @attribute txt
-         * @type {key: txt}
-         * @writeonce
-         */
-        this.setAttributeConfig(this.OPT.TXT, {
-                value: attr.txt || this.TXT,
-                writeonce: true
-            });
-
-        /**
-         * The img src default list
-         * is this.IMAGES
-         * @attribute images
-         * @type {key: image}
-         * @writeonce
-         */
-        this.setAttributeConfig(this.OPT.IMAGES, {
-                value: attr.images || this.IMAGE,
-                writeonce: true
-            });
-        /**
-         * The element refs used by this control.  Set at initialization
-         * @attribute elements
-         * @type {id: HTMLElement}
-         * @readonly
-         */
-        this.setAttributeConfig(this.OPT.ELEMENTS, {
-                value: {},
-                readonly: true
-            });
-
-        /**
-         * Returns the cached element reference.  If the id is not a string, it
-         * is assumed that it is an element and this is returned.
-         * @param id {string|HTMLElement} the element key, id, or ref
-         * @param on {boolean} hide or show.  If true, show
-         * @private */
-        var _hideShowEl = function(id, on) {
-            var el = (lang.isString(id) ? this.getElement(id) : id);
-            //Dom.setStyle(id, "visibility", (on) ? "" : "hidden");
-            Dom.setStyle(el, "display", (on) ? "" : "none");
-        };
-
-        /**
-         * Hide/show the entire set of controls
-         * @attribute showcontrols
-         * @type boolean
-         * @default true
-         */
-        this.setAttributeConfig(this.OPT.SHOW_CONTROLS, {
-                value: lang.isBoolean(attr.showcontrols) ? attr.showcontrols : true,
-                method: function(on) {
-
-                    var el = Dom.getElementsByClassName("bd", "div", 
-                            this.getElement(this.ID.CONTROLS))[0];
-
-                    _hideShowEl.call(this, el, on);
-
-                    this.getElement(this.ID.CONTROLS_LABEL).innerHTML = 
-                        (on) ? this.get(this.OPT.TXT).HIDE_CONTROLS :
-                               this.get(this.OPT.TXT).SHOW_CONTROLS;
-
-                }
-            });
-
-        /**
-         * Hide/show the rgb controls
-         * @attribute showrgbcontrols
-         * @type boolean
-         * @default true
-         */
-        this.setAttributeConfig(this.OPT.SHOW_RGB_CONTROLS, {
-                value: lang.isBoolean(attr.showrgbcontrols) ? attr.showrgbcontrols : true,
-                method: function(on) {
-                    //Dom.setStyle(this.getElement(this.ID.RBG_CONTROLS), "visibility", (on) ? "" : "hidden");
-                    _hideShowEl.call(this, this.ID.RGB_CONTROLS, on);
-                }
-            });
-
-        /**
-         * Hide/show the hsv controls
-         * @attribute showhsvcontrols
-         * @type boolean
-         * @default false
-         */
-        this.setAttributeConfig(this.OPT.SHOW_HSV_CONTROLS, {
-                value: lang.isBoolean(attr.showhsvcontrols) ?
-                                      attr.showhsvcontrols : false,
-                method: function(on) {
-                    //Dom.setStyle(this.getElement(this.ID.HSV_CONTROLS), "visibility", (on) ? "" : "hidden");
-                    _hideShowEl.call(this, this.ID.HSV_CONTROLS, on);
-
-                    // can't show both the hsv controls and the rbg hex summary
-                    if (on && this.get(this.OPT.SHOW_HEX_SUMMARY)) {
-                        this.set(this.OPT.SHOW_HEX_SUMMARY, false);
-                    }
-                }
-            });
-
-        /**
-         * Hide/show the hex controls
-         * @attribute showhexcontrols
-         * @type boolean
-         * @default true
-         */
-        this.setAttributeConfig(this.OPT.SHOW_HEX_CONTROLS, {
-                value: lang.isBoolean(attr.showhexcontrols) ?
-                                      attr.showhexcontrols : false,
-                method: function(on) {
-                    _hideShowEl.call(this, this.ID.HEX_CONTROLS, on);
-                }
-            });
-
-        /**
-         * Hide/show the websafe swatch
-         * @attribute showwebsafe
-         * @type boolean
-         * @default true
-         */
-        this.setAttributeConfig(this.OPT.SHOW_WEBSAFE, {
-                value: lang.isBoolean(attr.showwebsafe) ? attr.showwebsafe : true,
-                method: function(on) {
-                    _hideShowEl.call(this, this.ID.WEBSAFE_SWATCH, on);
-                }
-            });
-
-        /**
-         * Hide/show the hex summary
-         * @attribute showhexsummary
-         * @type boolean
-         * @default true
-         */
-        this.setAttributeConfig(this.OPT.SHOW_HEX_SUMMARY, {
-                value: lang.isBoolean(attr.showhexsummary) ? attr.showhexsummary : true,
-                method: function(on) {
-                    _hideShowEl.call(this, this.ID.HEX_SUMMARY, on);
-
-                    // can't show both the hsv controls and the rbg hex summary
-                    if (on && this.get(this.OPT.SHOW_HSV_CONTROLS)) {
-                        this.set(this.OPT.SHOW_HSV_CONTROLS, false);
-                    }
-                }
-            });
-        this.setAttributeConfig(this.OPT.ANIMATE, {
-                value: lang.isBoolean(attr.animate) ? attr.animate : true,
-                method: function(on) {
-                    this.pickerSlider.animate = on;
-                    this.hueSlider.animate = on;
-                }
-            });
-
-        this.on(this.OPT.HUE + "Change", _updateRGBFromHSV, this, true);
-        this.on(this.OPT.SATURATION + "Change", _updateRGBFromHSV, this, true);
-        this.on(this.OPT.VALUE + "Change", _updatePickerSlider, this, true);
-
-        this.on(this.OPT.RED + "Change", _updateRGB, this, true);
-        this.on(this.OPT.GREEN + "Change", _updateRGB, this, true);
-        this.on(this.OPT.BLUE + "Change", _updateRGB, this, true);
-
-        this.on(this.OPT.HEX + "Change", _updateHex, this, true);
-
-        this.initPicker();
-    };
-
-})();
-YAHOO.register("colorpicker", YAHOO.widget.ColorPicker, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/colorpicker/colorpicker-min.js b/eclipse.org-common/yui/2.6.0/build/colorpicker/colorpicker-min.js
deleted file mode 100644
index 7e462ed..0000000
--- a/eclipse.org-common/yui/2.6.0/build/colorpicker/colorpicker-min.js
+++ /dev/null
@@ -1,9 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.util.Color=function(){var A="0123456789ABCDEF",B=YAHOO.lang;return{real2dec:function(C){return Math.min(255,Math.round(C*256));},hsv2rgb:function(G,N,L){if(B.isArray(G)){return this.hsv2rgb.call(this,G[0],G[1],G[2]);}var C,H,K,F,I,E,D,M;F=Math.floor((G/60)%6);I=(G/60)-F;E=L*(1-N);D=L*(1-I*N);M=L*(1-(1-I)*N);switch(F){case 0:C=L;H=M;K=E;break;case 1:C=D;H=L;K=E;break;case 2:C=E;H=L;K=M;break;case 3:C=E;H=D;K=L;break;case 4:C=M;H=E;K=L;break;case 5:C=L;H=E;K=D;break;}var J=this.real2dec;return[J(C),J(H),J(K)];},rgb2hsv:function(C,G,H){if(B.isArray(C)){return this.rgb2hsv.call(this,C[0],C[1],C[2]);}C=C/255;G=G/255;H=H/255;var D,I,K,F,L,J;D=Math.min(Math.min(C,G),H);I=Math.max(Math.max(C,G),H);K=I-D;switch(I){case D:F=0;break;case C:F=60*(G-H)/K;if(G<H){F+=360;}break;case G:F=(60*(H-C)/K)+120;break;case H:F=(60*(C-G)/K)+240;break;}L=(I===0)?0:1-(D/I);var E=[Math.round(F),L,I];return E;},rgb2hex:function(E,D,C){if(B.isArray(E)){return this.rgb2hex.call(this,E[0],E[1],E[2]);}var F=this.dec2hex;return F(E)+F(D)+F(C);},dec2hex:function(C){C=parseInt(C,10);C=(B.isNumber(C))?C:0;C=(C>255||C<0)?0:C;return A.charAt((C-C%16)/16)+A.charAt(C%16);},hex2dec:function(E){var D=function(F){return A.indexOf(F.toUpperCase());};var C=E.split("");return((D(C[0])*16)+D(C[1]));},hex2rgb:function(C){var D=this.hex2dec;return[D(C.substr(0,2)),D(C.substr(2,2)),D(C.substr(4,2))];},websafe:function(E,D,C){if(B.isArray(E)){return this.websafe.call(this,E[0],E[1],E[2]);}var F=function(G){if(B.isNumber(G)){G=Math.min(Math.max(0,G),255);var H,I;for(H=0;H<256;H=H+51){I=H+51;if(G>=H&&G<=I){return(G-H>25)?I:H;}}}return G;};return[F(E),F(D),F(C)];}};}();(function(){var E=0;var R=function(){var b=document.createElement("div");if(this.CSS.BASE){b.className=this.CSS.BASE;}return b;};YAHOO.widget.ColorPicker=function(h,b){E=E+1;b=b||{};if(arguments.length===1&&!YAHOO.lang.isString(h)&&!h.nodeName){b=h;h=b.element||null;}if(!h&&!b.element){h=R.call(this,b);}YAHOO.widget.ColorPicker.superclass.constructor.call(this,h,b);};YAHOO.extend(YAHOO.widget.ColorPicker,YAHOO.util.Element);var Q=YAHOO.widget.ColorPicker.prototype,P=YAHOO.widget.Slider,e=YAHOO.util.Color,C=YAHOO.util.Dom,f=YAHOO.util.Event,g=YAHOO.lang,J=g.substitute;var a="yui-picker";Q.ID={R:a+"-r",R_HEX:a+"-rhex",G:a+"-g",G_HEX:a+"-ghex",B:a+"-b",B_HEX:a+"-bhex",H:a+"-h",S:a+"-s",V:a+"-v",PICKER_BG:a+"-bg",PICKER_THUMB:a+"-thumb",HUE_BG:a+"-hue-bg",HUE_THUMB:a+"-hue-thumb",HEX:a+"-hex",SWATCH:a+"-swatch",WEBSAFE_SWATCH:a+"-websafe-swatch",CONTROLS:a+"-controls",RGB_CONTROLS:a+"-rgb-controls",HSV_CONTROLS:a+"-hsv-controls",HEX_CONTROLS:a+"-hex-controls",HEX_SUMMARY:a+"-hex-summary",CONTROLS_LABEL:a+"-controls-label"};Q.TXT={ILLEGAL_HEX:"Illegal hex value entered",SHOW_CONTROLS:"Show color details",HIDE_CONTROLS:"Hide color details",CURRENT_COLOR:"Currently selected color: {rgb}",CLOSEST_WEBSAFE:"Closest websafe color: {rgb}. Click to select.",R:"R",G:"G",B:"B",H:"H",S:"S",V:"V",HEX:"#",DEG:"\u00B0",PERCENT:"%"};Q.IMAGE={PICKER_THUMB:"../../build/colorpicker/assets/picker_thumb.png",HUE_THUMB:"../../build/colorpicker/assets/hue_thumb.png"};Q.DEFAULT={PICKER_SIZE:180};Q.OPT={HUE:"hue",SATURATION:"saturation",VALUE:"value",RED:"red",GREEN:"green",BLUE:"blue",HSV:"hsv",RGB:"rgb",WEBSAFE:"websafe",HEX:"hex",PICKER_SIZE:"pickersize",SHOW_CONTROLS:"showcontrols",SHOW_RGB_CONTROLS:"showrgbcontrols",SHOW_HSV_CONTROLS:"showhsvcontrols",SHOW_HEX_CONTROLS:"showhexcontrols",SHOW_HEX_SUMMARY:"showhexsummary",SHOW_WEBSAFE:"showwebsafe",CONTAINER:"container",IDS:"ids",ELEMENTS:"elements",TXT:"txt",IMAGES:"images",ANIMATE:"animate"};var S=function(){var b=this.get(this.OPT.PICKER_SIZE),i=this.get(this.OPT.HUE);i=b-Math.round(i/360*b);if(i===b){i=0;}this.hueSlider.setValue(i);};var d=function(){var h=this.get(this.OPT.PICKER_SIZE),i=this.get(this.OPT.SATURATION),b=this.get(this.OPT.VALUE);i=Math.round(i*h/100);b=Math.round(h-(b*h/100));this.pickerSlider.setRegionValue(i,b);};var T=function(){S.call(this);d.call(this);};Q.setValue=function(h,b){b=(b)||false;this.set(this.OPT.RGB,h,b);T.call(this);};Q.hueSlider=null;Q.pickerSlider=null;var X=function(){var b=this.get(this.OPT.PICKER_SIZE),i=(b-this.hueSlider.getValue())/b;i=Math.round(i*360);return(i===360)?0:i;};var O=function(){return this.pickerSlider.getXValue()/this.get(this.OPT.PICKER_SIZE);};var N=function(){var b=this.get(this.OPT.PICKER_SIZE);return(b-this.pickerSlider.getYValue())/b;};var M=function(){var i=this.get(this.OPT.RGB),k=this.get(this.OPT.WEBSAFE),j=this.getElement(this.ID.SWATCH),h=i.join(","),b=this.get(this.OPT.TXT);C.setStyle(j,"background-color","rgb("+h+")");j.title=g.substitute(b.CURRENT_COLOR,{"rgb":"#"+this.get(this.OPT.HEX)});j=this.getElement(this.ID.WEBSAFE_SWATCH);h=k.join(",");C.setStyle(j,"background-color","rgb("+h+")");j.title=g.substitute(b.CLOSEST_WEBSAFE,{"rgb":"#"+e.rgb2hex(k)});};var Z=function(){var k=X.call(this),j=O.call(this),b=N.call(this);var i=e.hsv2rgb(k,j,b);this.set(this.OPT.RGB,i);};var B=function(){this.getElement(this.ID.H).value=this.get(this.OPT.HUE);this.getElement(this.ID.S).value=this.get(this.OPT.SATURATION);this.getElement(this.ID.V).value=this.get(this.OPT.VALUE);this.getElement(this.ID.R).value=this.get(this.OPT.RED);this.getElement(this.ID.R_HEX).innerHTML=e.dec2hex(this.get(this.OPT.RED));this.getElement(this.ID.G).value=this.get(this.OPT.GREEN);this.getElement(this.ID.G_HEX).innerHTML=e.dec2hex(this.get(this.OPT.GREEN));this.getElement(this.ID.B).value=this.get(this.OPT.BLUE);this.getElement(this.ID.B_HEX).innerHTML=e.dec2hex(this.get(this.OPT.BLUE));this.getElement(this.ID.HEX).value=this.get(this.OPT.HEX);};var Y=function(k){var i=X.call(this);this.set(this.OPT.HUE,i,true);var b=e.hsv2rgb(i,1,1);var j="rgb("+b.join(",")+")";C.setStyle(this.getElement(this.ID.PICKER_BG),"background-color",j);if(this.hueSlider.valueChangeSource===this.hueSlider.SOURCE_UI_EVENT){Z.call(this);}B.call(this);M.call(this);};var H=function(i){var h=O.call(this),b=N.call(this);this.set(this.OPT.SATURATION,Math.round(h*100),true);
-this.set(this.OPT.VALUE,Math.round(b*100),true);if(this.pickerSlider.valueChangeSource===this.pickerSlider.SOURCE_UI_EVENT){Z.call(this);}B.call(this);M.call(this);};var W=function(b){var h=f.getCharCode(b);if(h===38){return 3;}else{if(h===13){return 6;}else{if(h===40){return 4;}else{if(h>=48&&h<=57){return 1;}else{if(h>=97&&h<=102){return 2;}else{if(h>=65&&h<=70){return 2;}else{if("8, 9, 13, 27, 37, 39".indexOf(h)>-1){return 5;}else{return 0;}}}}}}}};var I=function(h,b,j){var i=b.value;if(j!==this.OPT.HEX){i=parseInt(i,10);}if(i!==this.get(j)){this.set(j,i);}};var G=function(i,b,k){var j=W(i);var h=(i.shiftKey)?10:1;switch(j){case 6:I.apply(this,arguments);break;case 3:this.set(k,Math.min(this.get(k)+h,255));B.call(this);break;case 4:this.set(k,Math.max(this.get(k)-h,0));B.call(this);break;default:}};var A=function(h,b,j){var i=W(h);if(i===6){I.apply(this,arguments);}};var L=function(h,b){var i=W(h);switch(i){case 6:case 5:case 1:break;case 2:if(b!==true){break;}default:f.stopEvent(h);return false;}};var K=function(b){return L(b,true);};Q.getElement=function(b){return this.get(this.OPT.ELEMENTS)[this.get(this.OPT.IDS)[b]];};var D=function(){var k,j,n,l,m,b=this.get(this.OPT.IDS),o=this.get(this.OPT.TXT),r=this.get(this.OPT.IMAGES),q=function(i,p){var t=document.createElement(i);if(p){g.augmentObject(t,p,true);}return t;},s=function(i,p){var t=g.merge({autocomplete:"off",value:"0",size:3,maxlength:3},p);t.name=t.id;return new q(i,t);};var h=this.get("element");k=new q("div",{id:b[this.ID.PICKER_BG],className:"yui-picker-bg",tabIndex:-1,hideFocus:true});j=new q("div",{id:b[this.ID.PICKER_THUMB],className:"yui-picker-thumb"});n=new q("img",{src:r.PICKER_THUMB});j.appendChild(n);k.appendChild(j);h.appendChild(k);k=new q("div",{id:b[this.ID.HUE_BG],className:"yui-picker-hue-bg",tabIndex:-1,hideFocus:true});j=new q("div",{id:b[this.ID.HUE_THUMB],className:"yui-picker-hue-thumb"});n=new q("img",{src:r.HUE_THUMB});j.appendChild(n);k.appendChild(j);h.appendChild(k);k=new q("div",{id:b[this.ID.CONTROLS],className:"yui-picker-controls"});h.appendChild(k);h=k;k=new q("div",{className:"hd"});j=new q("a",{id:b[this.ID.CONTROLS_LABEL],href:"#"});k.appendChild(j);h.appendChild(k);k=new q("div",{className:"bd"});h.appendChild(k);h=k;k=new q("ul",{id:b[this.ID.RGB_CONTROLS],className:"yui-picker-rgb-controls"});j=new q("li");j.appendChild(document.createTextNode(o.R+" "));l=new s("input",{id:b[this.ID.R],className:"yui-picker-r"});j.appendChild(l);k.appendChild(j);j=new q("li");j.appendChild(document.createTextNode(o.G+" "));l=new s("input",{id:b[this.ID.G],className:"yui-picker-g"});j.appendChild(l);k.appendChild(j);j=new q("li");j.appendChild(document.createTextNode(o.B+" "));l=new s("input",{id:b[this.ID.B],className:"yui-picker-b"});j.appendChild(l);k.appendChild(j);h.appendChild(k);k=new q("ul",{id:b[this.ID.HSV_CONTROLS],className:"yui-picker-hsv-controls"});j=new q("li");j.appendChild(document.createTextNode(o.H+" "));l=new s("input",{id:b[this.ID.H],className:"yui-picker-h"});j.appendChild(l);j.appendChild(document.createTextNode(" "+o.DEG));k.appendChild(j);j=new q("li");j.appendChild(document.createTextNode(o.S+" "));l=new s("input",{id:b[this.ID.S],className:"yui-picker-s"});j.appendChild(l);j.appendChild(document.createTextNode(" "+o.PERCENT));k.appendChild(j);j=new q("li");j.appendChild(document.createTextNode(o.V+" "));l=new s("input",{id:b[this.ID.V],className:"yui-picker-v"});j.appendChild(l);j.appendChild(document.createTextNode(" "+o.PERCENT));k.appendChild(j);h.appendChild(k);k=new q("ul",{id:b[this.ID.HEX_SUMMARY],className:"yui-picker-hex_summary"});j=new q("li",{id:b[this.ID.R_HEX]});k.appendChild(j);j=new q("li",{id:b[this.ID.G_HEX]});k.appendChild(j);j=new q("li",{id:b[this.ID.B_HEX]});k.appendChild(j);h.appendChild(k);k=new q("div",{id:b[this.ID.HEX_CONTROLS],className:"yui-picker-hex-controls"});k.appendChild(document.createTextNode(o.HEX+" "));j=new s("input",{id:b[this.ID.HEX],className:"yui-picker-hex",size:6,maxlength:6});k.appendChild(j);h.appendChild(k);h=this.get("element");k=new q("div",{id:b[this.ID.SWATCH],className:"yui-picker-swatch"});h.appendChild(k);k=new q("div",{id:b[this.ID.WEBSAFE_SWATCH],className:"yui-picker-websafe-swatch"});h.appendChild(k);};var c=function(h,b){f.on(this.getElement(h),"keydown",function(j,i){G.call(i,j,this,b);},this);f.on(this.getElement(h),"keypress",K,this);f.on(this.getElement(h),"blur",function(j,i){I.call(i,j,this,b);},this);};var F=function(){var b=[this.get(this.OPT.RED),this.get(this.OPT.GREEN),this.get(this.OPT.BLUE)];this.set(this.OPT.RGB,b);T.call(this);};Q.initPicker=function(){var m=this.OPT,l=this.get(m.IDS),h=this.get(m.ELEMENTS),b,k,n;for(b in this.ID){if(g.hasOwnProperty(this.ID,b)){l[this.ID[b]]=l[b];}}k=C.get(l[this.ID.PICKER_BG]);if(!k){D.call(this);}else{}for(b in l){if(g.hasOwnProperty(l,b)){k=C.get(l[b]);n=C.generateId(k);l[b]=n;l[l[b]]=n;h[n]=k;}}h=[m.SHOW_CONTROLS,m.SHOW_RGB_CONTROLS,m.SHOW_HSV_CONTROLS,m.SHOW_HEX_CONTROLS,m.SHOW_HEX_SUMMARY,m.SHOW_WEBSAFE];for(b=0;b<h.length;b=b+1){this.set(h[b],this.get(h[b]));}var j=this.get(m.PICKER_SIZE);this.hueSlider=P.getVertSlider(this.getElement(this.ID.HUE_BG),this.getElement(this.ID.HUE_THUMB),0,j);this.hueSlider.subscribe("change",Y,this,true);this.pickerSlider=P.getSliderRegion(this.getElement(this.ID.PICKER_BG),this.getElement(this.ID.PICKER_THUMB),0,j,0,j);this.pickerSlider.subscribe("change",H,this,true);this.set(m.ANIMATE,this.get(m.ANIMATE));f.on(this.getElement(this.ID.WEBSAFE_SWATCH),"click",function(i){this.setValue(this.get(m.WEBSAFE));},this,true);f.on(this.getElement(this.ID.CONTROLS_LABEL),"click",function(i){this.set(m.SHOW_CONTROLS,!this.get(m.SHOW_CONTROLS));f.preventDefault(i);},this,true);c.call(this,this.ID.R,this.OPT.RED);c.call(this,this.ID.G,this.OPT.GREEN);c.call(this,this.ID.B,this.OPT.BLUE);c.call(this,this.ID.H,this.OPT.HUE);c.call(this,this.ID.S,this.OPT.SATURATION);c.call(this,this.ID.V,this.OPT.VALUE);f.on(this.getElement(this.ID.HEX),"keydown",function(o,i){A.call(i,o,this,i.OPT.HEX);
-},this);f.on(this.getElement(this.ID.HEX),"keypress",L,this);f.on(this.getElement(this.ID.HEX),"blur",function(o,i){I.call(i,o,this,i.OPT.HEX);},this);F.call(this);};var U=function(){var h=[this.get(this.OPT.HUE),this.get(this.OPT.SATURATION)/100,this.get(this.OPT.VALUE)/100];var b=e.hsv2rgb(h);this.set(this.OPT.RGB,b);T.call(this);};var V=function(){var k=this.get(this.OPT.HEX),b=k.length;if(b===3){var m=k.split(""),j;for(j=0;j<b;j=j+1){m[j]=m[j]+m[j];}k=m.join("");}if(k.length!==6){return false;}var h=e.hex2rgb(k);this.setValue(h);};Q.initAttributes=function(b){b=b||{};YAHOO.widget.ColorPicker.superclass.initAttributes.call(this,b);this.setAttributeConfig(this.OPT.PICKER_SIZE,{value:b.size||this.DEFAULT.PICKER_SIZE});this.setAttributeConfig(this.OPT.HUE,{value:b.hue||0,validator:g.isNumber});this.setAttributeConfig(this.OPT.SATURATION,{value:b.saturation||0,validator:g.isNumber});this.setAttributeConfig(this.OPT.VALUE,{value:g.isNumber(b.value)?b.value:100,validator:g.isNumber});this.setAttributeConfig(this.OPT.RED,{value:g.isNumber(b.red)?b.red:255,validator:g.isNumber});this.setAttributeConfig(this.OPT.GREEN,{value:g.isNumber(b.green)?b.green:255,validator:g.isNumber});this.setAttributeConfig(this.OPT.BLUE,{value:g.isNumber(b.blue)?b.blue:255,validator:g.isNumber});this.setAttributeConfig(this.OPT.HEX,{value:b.hex||"FFFFFF",validator:g.isString});this.setAttributeConfig(this.OPT.RGB,{value:b.rgb||[255,255,255],method:function(l){this.set(this.OPT.RED,l[0],true);this.set(this.OPT.GREEN,l[1],true);this.set(this.OPT.BLUE,l[2],true);var n=e.websafe(l);this.set(this.OPT.WEBSAFE,n,true);var m=e.rgb2hex(l);this.set(this.OPT.HEX,m,true);var i=e.rgb2hsv(l);this.set(this.OPT.HUE,i[0],true);this.set(this.OPT.SATURATION,Math.round(i[1]*100),true);this.set(this.OPT.VALUE,Math.round(i[2]*100),true);},readonly:true});this.setAttributeConfig(this.OPT.CONTAINER,{value:null,method:function(i){if(i){i.showEvent.subscribe(function(){this.pickerSlider.focus();},this,true);}}});this.setAttributeConfig(this.OPT.WEBSAFE,{value:b.websafe||[255,255,255]});var j=b.ids||g.merge({},this.ID);if(!b.ids&&E>1){for(var h in j){if(g.hasOwnProperty(j,h)){j[h]=j[h]+E;}}}this.setAttributeConfig(this.OPT.IDS,{value:j,writeonce:true});this.setAttributeConfig(this.OPT.TXT,{value:b.txt||this.TXT,writeonce:true});this.setAttributeConfig(this.OPT.IMAGES,{value:b.images||this.IMAGE,writeonce:true});this.setAttributeConfig(this.OPT.ELEMENTS,{value:{},readonly:true});var k=function(m,i){var l=(g.isString(m)?this.getElement(m):m);C.setStyle(l,"display",(i)?"":"none");};this.setAttributeConfig(this.OPT.SHOW_CONTROLS,{value:g.isBoolean(b.showcontrols)?b.showcontrols:true,method:function(i){var l=C.getElementsByClassName("bd","div",this.getElement(this.ID.CONTROLS))[0];k.call(this,l,i);this.getElement(this.ID.CONTROLS_LABEL).innerHTML=(i)?this.get(this.OPT.TXT).HIDE_CONTROLS:this.get(this.OPT.TXT).SHOW_CONTROLS;}});this.setAttributeConfig(this.OPT.SHOW_RGB_CONTROLS,{value:g.isBoolean(b.showrgbcontrols)?b.showrgbcontrols:true,method:function(i){k.call(this,this.ID.RGB_CONTROLS,i);}});this.setAttributeConfig(this.OPT.SHOW_HSV_CONTROLS,{value:g.isBoolean(b.showhsvcontrols)?b.showhsvcontrols:false,method:function(i){k.call(this,this.ID.HSV_CONTROLS,i);if(i&&this.get(this.OPT.SHOW_HEX_SUMMARY)){this.set(this.OPT.SHOW_HEX_SUMMARY,false);}}});this.setAttributeConfig(this.OPT.SHOW_HEX_CONTROLS,{value:g.isBoolean(b.showhexcontrols)?b.showhexcontrols:false,method:function(i){k.call(this,this.ID.HEX_CONTROLS,i);}});this.setAttributeConfig(this.OPT.SHOW_WEBSAFE,{value:g.isBoolean(b.showwebsafe)?b.showwebsafe:true,method:function(i){k.call(this,this.ID.WEBSAFE_SWATCH,i);}});this.setAttributeConfig(this.OPT.SHOW_HEX_SUMMARY,{value:g.isBoolean(b.showhexsummary)?b.showhexsummary:true,method:function(i){k.call(this,this.ID.HEX_SUMMARY,i);if(i&&this.get(this.OPT.SHOW_HSV_CONTROLS)){this.set(this.OPT.SHOW_HSV_CONTROLS,false);}}});this.setAttributeConfig(this.OPT.ANIMATE,{value:g.isBoolean(b.animate)?b.animate:true,method:function(i){this.pickerSlider.animate=i;this.hueSlider.animate=i;}});this.on(this.OPT.HUE+"Change",U,this,true);this.on(this.OPT.SATURATION+"Change",U,this,true);this.on(this.OPT.VALUE+"Change",d,this,true);this.on(this.OPT.RED+"Change",F,this,true);this.on(this.OPT.GREEN+"Change",F,this,true);this.on(this.OPT.BLUE+"Change",F,this,true);this.on(this.OPT.HEX+"Change",V,this,true);this.initPicker();};})();YAHOO.register("colorpicker",YAHOO.widget.ColorPicker,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/colorpicker/colorpicker.js b/eclipse.org-common/yui/2.6.0/build/colorpicker/colorpicker.js
deleted file mode 100644
index ef3a143..0000000
--- a/eclipse.org-common/yui/2.6.0/build/colorpicker/colorpicker.js
+++ /dev/null
@@ -1,1735 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * Provides color conversion and validation utils
- * @class YAHOO.util.Color
- * @namespace YAHOO.util
- */
-YAHOO.util.Color = function() {
-
-    var HCHARS="0123456789ABCDEF", lang=YAHOO.lang;
-
-    return {
-
-        /**
-         * Converts 0-1 to 0-255
-         * @method real2dec
-         * @param n {float} the number to convert
-         * @return {int} a number 0-255
-         */
-        real2dec: function(n) {
-            return Math.min(255, Math.round(n*256));
-        },
-
-        /**
-         * Converts HSV (h[0-360], s[0-1]), v[0-1] to RGB [255,255,255]
-         * @method hsv2rgb
-         * @param h {int|[int, float, float]} the hue, or an
-         *        array containing all three parameters
-         * @param s {float} the saturation
-         * @param v {float} the value/brightness
-         * @return {[int, int, int]} the red, green, blue values in
-         *          decimal.
-         */
-        hsv2rgb: function(h, s, v) { 
-
-            if (lang.isArray(h)) {
-                return this.hsv2rgb.call(this, h[0], h[1], h[2]);
-            }
-
-            var r, g, b, i, f, p, q, t;
-            i = Math.floor((h/60)%6);
-            f = (h/60)-i;
-            p = v*(1-s);
-            q = v*(1-f*s);
-            t = v*(1-(1-f)*s);
-            switch(i) {
-                case 0: r=v; g=t; b=p; break;
-                case 1: r=q; g=v; b=p; break;
-                case 2: r=p; g=v; b=t; break;
-                case 3: r=p; g=q; b=v; break;
-                case 4: r=t; g=p; b=v; break;
-                case 5: r=v; g=p; b=q; break;
-            }
-
-            var fn=this.real2dec;
-
-            return [fn(r), fn(g), fn(b)];
-        },
-
-        /**
-         * Converts to RGB [255,255,255] to HSV (h[0-360], s[0-1]), v[0-1]
-         * @method rgb2hsv
-         * @param r {int|[int, int, int]} the red value, or an
-         *        array containing all three parameters
-         * @param g {int} the green value
-         * @param b {int} the blue value
-         * @return {[int, float, float]} the value converted to hsv
-         */
-        rgb2hsv: function(r, g, b) {
-
-            if (lang.isArray(r)) {
-                return this.rgb2hsv.call(this, r[0], r[1], r[2]);
-            }
-
-            r=r/255;
-            g=g/255;
-            b=b/255;
-
-            var min,max,delta,h,s,v;
-            min = Math.min(Math.min(r,g),b);
-            max = Math.max(Math.max(r,g),b);
-            delta = max-min;
-
-            switch (max) {
-                case min: h=0; break;
-                case r:   h=60*(g-b)/delta; 
-                          if (g<b) {
-                              h+=360;
-                          }
-                          break;
-                case g:   h=(60*(b-r)/delta)+120; break;
-                case b:   h=(60*(r-g)/delta)+240; break;
-            }
-            
-            s = (max === 0) ? 0 : 1-(min/max);
-
-            var hsv = [Math.round(h), s, max];
-
-            return hsv;
-
-        },
-
-        /**
-         * Converts decimal rgb values into a hex string
-         * 255,255,255 -> FFFFFF
-         * @method rgb2hex
-         * @param r {int|[int, int, int]} the red value, or an
-         *        array containing all three parameters
-         * @param g {int} the green value
-         * @param b {int} the blue value
-         * @return {string} the hex string
-         */
-        rgb2hex: function(r, g, b) {
-            if (lang.isArray(r)) {
-                return this.rgb2hex.call(this, r[0], r[1], r[2]);
-            }
-
-            var f=this.dec2hex;
-            return f(r) + f(g) + f(b);
-        },
-     
-        /**
-         * Converts an int 0...255 to hex pair 00...FF
-         * @method dec2hex
-         * @param n {int} the number to convert
-         * @return {string} the hex equivalent
-         */
-        dec2hex: function(n) {
-            n = parseInt(n, 10);
-            n = (lang.isNumber(n)) ? n : 0;
-            n = (n > 255 || n < 0) ? 0 : n;
-
-            return HCHARS.charAt((n - n % 16) / 16) + HCHARS.charAt(n % 16);
-        },
-
-        /**
-         * Converts a hex pair 00...FF to an int 0...255 
-         * @method hex2dec
-         * @param str {string} the hex pair to convert
-         * @return {int} the decimal
-         */
-        hex2dec: function(str) {
-            var f = function(c) {
-                return HCHARS.indexOf(c.toUpperCase());
-            };
-
-            var s=str.split('');
-            
-            return ((f(s[0]) * 16) + f(s[1]));
-        },
-
-        /**
-         * Converts a hex string to rgb
-         * @method hex2rgb
-         * @param str {string} the hex string
-         * @return {[int, int, int]} an array containing the rgb values
-         */
-        hex2rgb: function(s) { 
-            var f = this.hex2dec;
-            return [f(s.substr(0, 2)), f(s.substr(2, 2)), f(s.substr(4, 2))];
-        },
-
-        /**
-         * Returns the closest websafe color to the supplied rgb value.
-         * @method websafe
-         * @param r {int|[int, int, int]} the red value, or an
-         *        array containing all three parameters
-         * @param g {int} the green value
-         * @param b {int} the blue value
-         * @return {[int, int, int]} an array containing the closes
-         *                           websafe rgb colors.
-         */
-        websafe: function(r, g, b) {
-
-            if (lang.isArray(r)) {
-                return this.websafe.call(this, r[0], r[1], r[2]);
-            }
-
-            // returns the closest match [0, 51, 102, 153, 204, 255]
-            var f = function(v) {
-                if (lang.isNumber(v)) {
-                    v = Math.min(Math.max(0, v), 255);
-                    var i, next;
-                    for (i=0; i<256; i=i+51) {
-                        next = i+51;
-                        if (v >= i && v <= next) {
-                            return (v-i > 25) ? next : i;
-                        }
-                    }
-                }
-
-                return v;
-            };
-
-            return [f(r), f(g), f(b)];
-        }
-    };
-}();
-
-
-(function() {
-
-    var _pickercount = 0;
-
-    /**
-     * The colorpicker module provides a widget for selecting colors
-     * @module colorpicker
-     * @requires yahoo, dom, event, element, slider
-     */
-
-
-    /**
-     * Creates the host element if it doesn't exist
-     * @method _createHostElement
-     * @private
-     */
-    var _createHostElement = function() {
-        var el = document.createElement('div');
-
-        if (this.CSS.BASE) {
-            el.className = this.CSS.BASE;
-        }
-        
-        return el;
-    };
-
-    /**
-     * A widget to select colors
-     * @namespace YAHOO.widget
-     * @class YAHOO.widget.ColorPicker
-     * @extends YAHOO.util.Element
-     * @constructor
-     * @param {HTMLElement | String | Object} el(optional) The html 
-     * element that represents the colorpicker, or the attribute object to use. 
-     * An element will be created if none provided.
-     * @param {Object} attr (optional) A key map of the colorpicker's 
-     * initial attributes.  Ignored if first arg is attributes object.
-     */
-    YAHOO.widget.ColorPicker = function(el, attr) {
-        _pickercount = _pickercount + 1;
-        attr = attr || {};
-        if (arguments.length === 1 && !YAHOO.lang.isString(el) && !el.nodeName) {
-            attr = el; // treat first arg as attr object
-            el = attr.element || null;
-        }
-        
-        if (!el && !attr.element) { // create if we dont have one
-            el = _createHostElement.call(this, attr);
-        }
-
-    	YAHOO.widget.ColorPicker.superclass.constructor.call(this, el, attr); 
-    };
-
-    YAHOO.extend(YAHOO.widget.ColorPicker, YAHOO.util.Element);
-    
-    var proto = YAHOO.widget.ColorPicker.prototype,
-        Slider=YAHOO.widget.Slider,
-        Color=YAHOO.util.Color,
-        Dom = YAHOO.util.Dom,
-        Event = YAHOO.util.Event,
-        lang = YAHOO.lang,
-        sub = lang.substitute;
-    
-
-    var b = "yui-picker";
-
-    /**
-     * The element ids used by this control
-     * @property ID
-     * @final
-     */
-    proto.ID = {
-
-        /**
-         * The id for the "red" form field
-         * @property ID.R
-         * @type String
-         * @final
-         * @default yui-picker-r
-         */
-        R: b + "-r",
-
-        /**
-         * The id for the "red" hex pair output
-         * @property ID.R_HEX
-         * @type String
-         * @final
-         * @default yui-picker-rhex
-         */
-        R_HEX: b + "-rhex",
-
-        /**
-         * The id for the "green" form field
-         * @property ID.G
-         * @type String
-         * @final
-         * @default yui-picker-g
-         */
-        G: b + "-g",
-
-        /**
-         * The id for the "green" hex pair output
-         * @property ID.G_HEX
-         * @type String
-         * @final
-         * @default yui-picker-ghex
-         */
-        G_HEX: b + "-ghex",
-
-
-        /**
-         * The id for the "blue" form field
-         * @property ID.B
-         * @type String
-         * @final
-         * @default yui-picker-b
-         */
-        B: b + "-b",
-
-        /**
-         * The id for the "blue" hex pair output
-         * @property ID.B_HEX
-         * @type String
-         * @final
-         * @default yui-picker-bhex
-         */
-        B_HEX: b + "-bhex",
-
-        /**
-         * The id for the "hue" form field
-         * @property ID.H
-         * @type String
-         * @final
-         * @default yui-picker-h
-         */
-        H: b + "-h",
-
-        /**
-         * The id for the "saturation" form field
-         * @property ID.S
-         * @type String
-         * @final
-         * @default yui-picker-s
-         */
-        S: b + "-s",
-
-        /**
-         * The id for the "value" form field
-         * @property ID.V
-         * @type String
-         * @final
-         * @default yui-picker-v
-         */
-        V: b + "-v",
-
-        /**
-         * The id for the picker region slider
-         * @property ID.PICKER_BG
-         * @type String
-         * @final
-         * @default yui-picker-bg
-         */
-        PICKER_BG:      b + "-bg",
-
-        /**
-         * The id for the picker region thumb
-         * @property ID.PICKER_THUMB
-         * @type String
-         * @final
-         * @default yui-picker-thumb
-         */
-        PICKER_THUMB:   b + "-thumb",
-
-        /**
-         * The id for the hue slider
-         * @property ID.HUE_BG
-         * @type String
-         * @final
-         * @default yui-picker-hue-bg
-         */
-        HUE_BG:         b + "-hue-bg",
-
-        /**
-         * The id for the hue thumb
-         * @property ID.HUE_THUMB
-         * @type String
-         * @final
-         * @default yui-picker-hue-thumb
-         */
-        HUE_THUMB:      b + "-hue-thumb",
-
-        /**
-         * The id for the hex value form field
-         * @property ID.HEX
-         * @type String
-         * @final
-         * @default yui-picker-hex
-         */
-        HEX:            b + "-hex",
-
-        /**
-         * The id for the color swatch
-         * @property ID.SWATCH
-         * @type String
-         * @final
-         * @default yui-picker-swatch
-         */
-        SWATCH:         b + "-swatch",
-
-        /**
-         * The id for the websafe color swatch
-         * @property ID.WEBSAFE_SWATCH
-         * @type String
-         * @final
-         * @default yui-picker-websafe-swatch
-         */
-        WEBSAFE_SWATCH: b + "-websafe-swatch",
-
-        /**
-         * The id for the control details
-         * @property ID.CONTROLS
-         * @final
-         * @default yui-picker-controls
-         */
-        CONTROLS: b + "-controls",
-
-        /**
-         * The id for the rgb controls
-         * @property ID.RGB_CONTROLS
-         * @final
-         * @default yui-picker-rgb-controls
-         */
-        RGB_CONTROLS: b + "-rgb-controls",
-
-        /**
-         * The id for the hsv controls
-         * @property ID.HSV_CONTROLS
-         * @final
-         * @default yui-picker-hsv-controls
-         */
-        HSV_CONTROLS: b + "-hsv-controls",
-        
-        /**
-         * The id for the hsv controls
-         * @property ID.HEX_CONTROLS
-         * @final
-         * @default yui-picker-hex-controls
-         */
-        HEX_CONTROLS: b + "-hex-controls",
-
-        /**
-         * The id for the hex summary
-         * @property ID.HEX_SUMMARY
-         * @final
-         * @default yui-picker-hex-summary
-         */
-        HEX_SUMMARY: b + "-hex-summary",
-
-        /**
-         * The id for the controls section header
-         * @property ID.CONTROLS_LABEL
-         * @final
-         * @default yui-picker-controls-label
-         */
-        CONTROLS_LABEL: b + "-controls-label"
-    };
-
-    /**
-     * Constants for any script-generated messages.  The values here
-     * are the default messages.  They can be updated by providing
-     * the complete list to the constructor for the "txt" attribute.
-     * @property TXT
-     * @final
-     */
-    proto.TXT = {
-        ILLEGAL_HEX: "Illegal hex value entered",
-        SHOW_CONTROLS: "Show color details",
-        HIDE_CONTROLS: "Hide color details",
-        CURRENT_COLOR: "Currently selected color: {rgb}",
-        CLOSEST_WEBSAFE: "Closest websafe color: {rgb}. Click to select.",
-        R: "R",
-        G: "G",
-        B: "B",
-        H: "H",
-        S: "S",
-        V: "V",
-        HEX: "#",
-        DEG: "\u00B0",
-        PERCENT: "%"
-    };
-
-    /**
-     * Constants for the default image locations for img tags that are
-     * generated by the control.  They can be modified by passing the
-     * complete list to the contructor for the "images" attribute
-     * @property IMAGE
-     * @final
-     */
-    proto.IMAGE = {
-        PICKER_THUMB: "../../build/colorpicker/assets/picker_thumb.png",
-        HUE_THUMB: "../../build/colorpicker/assets/hue_thumb.png"
-    };
-
-    /*
-     * Constants for the control's custom event names.  subscribe
-     * to the rgbChange event instead.
-     * @property EVENT
-     * @final
-     */
-    //proto.EVENT = {
-        //CHANGE: "change"
-    //};
-
-    //proto.CSS = { };
-
-    /**
-     * Constants for the control's default default values
-     * @property DEFAULT
-     * @final
-     */
-    proto.DEFAULT = {
-        PICKER_SIZE: 180
-    };
-
-    /**
-     * Constants for the control's configuration attributes
-     * @property OPT
-     * @final
-     */
-    proto.OPT = {
-        HUE: "hue",
-        SATURATION: "saturation",
-        VALUE: "value",
-        RED: "red",
-        GREEN: "green",
-        BLUE: "blue",
-        HSV: "hsv",
-        RGB: "rgb",
-        WEBSAFE: "websafe",
-        HEX: "hex",
-        PICKER_SIZE: "pickersize",
-        SHOW_CONTROLS: "showcontrols",
-        SHOW_RGB_CONTROLS: "showrgbcontrols",
-        SHOW_HSV_CONTROLS: "showhsvcontrols",
-        SHOW_HEX_CONTROLS: "showhexcontrols",
-        SHOW_HEX_SUMMARY: "showhexsummary",
-        SHOW_WEBSAFE: "showwebsafe",
-        //SHOW_SUBMIT: "showsubmit",
-        CONTAINER: "container",
-        IDS: "ids",
-        ELEMENTS: "elements",
-        TXT: "txt",
-        IMAGES: "images",
-        ANIMATE: "animate"
-    };
-
-    /**
-     * Moves the hue slider into the position dictated by the current state
-     * of the control
-     * @method _updateHueSlider
-     * @private
-     */
-    var _updateHueSlider = function() {
-        var size = this.get(this.OPT.PICKER_SIZE),
-            h = this.get(this.OPT.HUE);
-
-        h = size - Math.round(h / 360 * size);
-        
-        // 0 is at the top and bottom of the hue slider.  Always go to
-        // the top so we don't end up sending the thumb to the bottom
-        // when the value didn't actually change (e.g., a conversion
-        // produced 360 instead of 0 and the value was already 0).
-        if (h === size) {
-            h = 0;
-        }
-
-        this.hueSlider.setValue(h);
-    };
-
-    /**
-     * Moves the picker slider into the position dictated by the current state
-     * of the control
-     * @method _updatePickerSlider
-     * @private
-     */
-    var _updatePickerSlider = function() {
-        var size = this.get(this.OPT.PICKER_SIZE),
-            s = this.get(this.OPT.SATURATION),
-            v = this.get(this.OPT.VALUE);
-
-        s = Math.round(s * size / 100);
-        v = Math.round(size - (v * size / 100));
-
-
-        this.pickerSlider.setRegionValue(s, v);
-    };
-
-    /**
-     * Moves the sliders into the position dictated by the current state
-     * of the control
-     * @method _updateSliders
-     * @private
-     */
-    var _updateSliders = function() {
-        _updateHueSlider.call(this);
-        _updatePickerSlider.call(this);
-    };
-
-    /**
-     * Sets the control to the specified rgb value and
-     * moves the sliders to the proper positions
-     * @method setValue
-     * @param rgb {[int, int, int]} the rgb value
-     * @param silent {boolean} whether or not to fire the change event
-     */
-    proto.setValue = function(rgb, silent) {
-        silent = (silent) || false;
-        this.set(this.OPT.RGB, rgb, silent);
-        _updateSliders.call(this);
-    };
-
-    /**
-     * The hue slider
-     * @property hueSlider
-     * @type YAHOO.widget.Slider
-     */
-    proto.hueSlider = null; 
-    
-    /**
-     * The picker region
-     * @property pickerSlider
-     * @type YAHOO.widget.Slider
-     */
-    proto.pickerSlider = null;
-
-    /**
-     * Translates the slider value into hue, int[0,359]
-     * @method _getH
-     * @private
-     * @return {int} the hue from 0 to 359
-     */
-    var _getH = function() {
-        var size = this.get(this.OPT.PICKER_SIZE),
-            h = (size - this.hueSlider.getValue()) / size;
-        h = Math.round(h*360);
-        return (h === 360) ? 0 : h;
-    };
-
-    /**
-     * Translates the slider value into saturation, int[0,1], left to right
-     * @method _getS
-     * @private
-     * @return {int} the saturation from 0 to 1
-     */
-    var _getS = function() {
-        return this.pickerSlider.getXValue() / this.get(this.OPT.PICKER_SIZE);
-    };
-
-    /**
-     * Translates the slider value into value/brightness, int[0,1], top
-     * to bottom
-     * @method _getV
-     * @private
-     * @return {int} the value from 0 to 1
-     */
-    var _getV = function() {
-        var size = this.get(this.OPT.PICKER_SIZE);
-        return (size - this.pickerSlider.getYValue()) / size;
-    };
-
-    /**
-     * Updates the background of the swatch with the current rbg value.
-     * Also updates the websafe swatch to the closest websafe color
-     * @method _updateSwatch
-     * @private
-     */
-    var _updateSwatch = function() {
-        var rgb = this.get(this.OPT.RGB),
-            websafe = this.get(this.OPT.WEBSAFE),
-            el = this.getElement(this.ID.SWATCH),
-            color = rgb.join(","),
-            txt = this.get(this.OPT.TXT);
-
-        Dom.setStyle(el, "background-color", "rgb(" + color  + ")");
-        el.title = lang.substitute(txt.CURRENT_COLOR, {
-                "rgb": "#" + this.get(this.OPT.HEX)
-            });
-
-
-        el = this.getElement(this.ID.WEBSAFE_SWATCH);
-        color = websafe.join(",");
-
-        Dom.setStyle(el, "background-color", "rgb(" + color + ")");
-        el.title = lang.substitute(txt.CLOSEST_WEBSAFE, {
-                "rgb": "#" + Color.rgb2hex(websafe)
-            });
-
-    };
-
-    /**
-     * Reads the sliders and converts the values to RGB, updating the
-     * internal state for all the individual form fields
-     * @method _getValuesFromSliders
-     * @private
-     */
-    var _getValuesFromSliders = function() {
-        var h=_getH.call(this), s=_getS.call(this), v=_getV.call(this);
-
-        var rgb = Color.hsv2rgb(h, s, v);
-        //var websafe = Color.websafe(rgb);
-        //var hex = Color.rgb2hex(rgb[0], rgb[1], rgb[2]);
-
-        this.set(this.OPT.RGB, rgb);
-    };
-
-    /**
-     * Updates the form field controls with the state data contained
-     * in the control.
-     * @method _updateFormFields
-     * @private
-     */
-    var _updateFormFields = function() {
-        this.getElement(this.ID.H).value = this.get(this.OPT.HUE);
-        this.getElement(this.ID.S).value = this.get(this.OPT.SATURATION);
-        this.getElement(this.ID.V).value = this.get(this.OPT.VALUE);
-        this.getElement(this.ID.R).value = this.get(this.OPT.RED);
-        this.getElement(this.ID.R_HEX).innerHTML = Color.dec2hex(this.get(this.OPT.RED));
-        this.getElement(this.ID.G).value = this.get(this.OPT.GREEN);
-        this.getElement(this.ID.G_HEX).innerHTML = Color.dec2hex(this.get(this.OPT.GREEN));
-        this.getElement(this.ID.B).value = this.get(this.OPT.BLUE);
-        this.getElement(this.ID.B_HEX).innerHTML = Color.dec2hex(this.get(this.OPT.BLUE));
-        this.getElement(this.ID.HEX).value = this.get(this.OPT.HEX);
-    };
-
-    /**
-     * Event handler for the hue slider.
-     * @method _onHueSliderChange
-     * @param newOffset {int} pixels from the start position
-     * @private
-     */
-    var _onHueSliderChange = function(newOffset) {
-
-        var h = _getH.call(this);
-        this.set(this.OPT.HUE, h, true);
-
-        // set picker background to the hue
-        var rgb = Color.hsv2rgb(h, 1, 1);
-        var styleDef = "rgb(" + rgb.join(",") + ")";
-
-        Dom.setStyle(this.getElement(this.ID.PICKER_BG), "background-color", styleDef);
-
-        if (this.hueSlider.valueChangeSource === this.hueSlider.SOURCE_UI_EVENT) {
-            _getValuesFromSliders.call(this);
-        }
-
-        _updateFormFields.call(this);
-        _updateSwatch.call(this);
-    };
-
-    /**
-     * Event handler for the picker slider, which controls the
-     * saturation and value/brightness.
-     * @method _onPickerSliderChange
-     * @param newOffset {{x: int, y: int}} x/y pixels from the start position
-     * @private
-     */
-    var _onPickerSliderChange = function(newOffset) {
-
-        var s=_getS.call(this), v=_getV.call(this);
-        this.set(this.OPT.SATURATION, Math.round(s*100), true);
-        this.set(this.OPT.VALUE, Math.round(v*100), true);
-
-        if (this.pickerSlider.valueChangeSource === this.pickerSlider.SOURCE_UI_EVENT) {
-            _getValuesFromSliders.call(this);
-        }
-
-        _updateFormFields.call(this);
-        _updateSwatch.call(this);
-    };
-
-
-    /**
-     * Key map to well-known commands for txt field input
-     * @method _getCommand
-     * @param e {Event} the keypress or keydown event
-     * @return {int} a command code
-     * <ul>
-     * <li>0 = not a number, letter in range, or special key</li>
-     * <li>1 = number</li>
-     * <li>2 = a-fA-F</li>
-     * <li>3 = increment (up arrow)</li>
-     * <li>4 = decrement (down arrow)</li>
-     * <li>5 = special key (tab, delete, return, escape, left, right)</li> 
-     * <li>6 = return</li>
-     * </ul>
-     * @private
-     */
-    var _getCommand = function(e) {
-        var c = Event.getCharCode(e);
-
-        //alert(Event.getCharCode(e) + ", " + e.keyCode + ", " + e.charCode);
-
-        // special keys
-        if (c === 38) { // up arrow
-            return 3;
-        } else if (c === 13) { // return
-            return 6;
-        } else if (c === 40) { // down array
-            return 4;
-        } else if (c >= 48 && c<=57) { // 0-9
-            return 1;
-        } else if (c >= 97 && c<=102) { // a-f
-            return 2;
-        } else if (c >= 65 && c<=70) { // A-F
-            return 2;
-        //} else if ("8, 9, 13, 27, 37, 39".indexOf(c) > -1 || 
-        //              (c >= 112 && c <=123)) { // including F-keys
-        // tab, delete, return, escape, left, right
-        } else if ("8, 9, 13, 27, 37, 39".indexOf(c) > -1) { // special chars
-            return 5;
-        } else { // something we probably don't want
-            return 0;
-        }
-    };
-
-    /**
-     * Use the value of the text field to update the control
-     * @method _hexFieldKeypress
-     * @param e {Event} an event
-     * @param el {HTMLElement} the field
-     * @param prop {string} the key to the linked property
-     * @private
-     */
-    var _useFieldValue = function(e, el, prop) {
-        var val = el.value;
-
-        if (prop !== this.OPT.HEX) {
-            val = parseInt(val, 10);
-        }
-
-        if (val !== this.get(prop)) {
-            this.set(prop, val);
-        }
-    };
-
-    /**
-     * Handle keypress on one of the rgb or hsv fields.
-     * @method _rgbFieldKeypress
-     * @param e {Event} the keypress event
-     * @param el {HTMLElement} the field
-     * @param prop {string} the key to the linked property
-     * @private
-     */
-    var _rgbFieldKeypress = function(e, el, prop) {
-        var command = _getCommand(e);
-        var inc = (e.shiftKey) ? 10 : 1;
-        switch (command) {
-            case 6: // return, update the value
-                _useFieldValue.apply(this, arguments);
-                break;
-                        
-            case 3: // up arrow, increment
-                this.set(prop, Math.min(this.get(prop)+inc, 255));
-                _updateFormFields.call(this);
-                //Event.stopEvent(e);
-                break;
-            case 4: // down arrow, decrement
-                this.set(prop, Math.max(this.get(prop)-inc, 0));
-                _updateFormFields.call(this);
-                //Event.stopEvent(e);
-                break;
-
-            default:
-        }
-
-    };
-
-    /**
-     * Handle keydown on the hex field
-     * @method _hexFieldKeypress
-     * @param e {Event} the keypress event
-     * @param el {HTMLElement} the field
-     * @param prop {string} the key to the linked property
-     * @private
-     */
-    var _hexFieldKeypress = function(e, el, prop) {
-        var command = _getCommand(e);
-        if (command === 6) { // return, update the value
-            _useFieldValue.apply(this, arguments);
-        }
-    };
-
-    /** 
-     * Allows numbers and special chars, and by default allows a-f.  
-     * Used for the hex field keypress handler.
-     * @method _hexOnly
-     * @param e {Event} the event
-     * @param numbersOnly omits a-f if set to true
-     * @private
-     * @return {boolean} false if we are canceling the event
-     */
-    var _hexOnly = function(e, numbersOnly) {
-        var command = _getCommand(e);
-        switch (command) {
-            case 6: // return
-            case 5: // special char
-            case 1: // number
-                break;
-            case 2: // hex char (a-f)
-                if (numbersOnly !== true) {
-                    break;
-                }
-
-                // fallthrough is intentional
-
-            default: // prevent alpha and punctuation
-                Event.stopEvent(e);
-                return false;
-        }
-    };
-
-    /** 
-     * Allows numbers and special chars only.  Used for the
-     * rgb and hsv fields keypress handler.
-     * @method _numbersOnly
-     * @param e {Event} the event
-     * @private
-     * @return {boolean} false if we are canceling the event
-     */
-    var _numbersOnly = function(e) {
-        return _hexOnly(e, true);
-    };
-
-    /**
-     * Returns the element reference that is saved.  The id can be either
-     * the element id, or the key for this id in the "id" config attribute.
-     * For instance, the host element id can be obtained by passing its
-     * id (default: "yui_picker") or by its key "YUI_PICKER".
-     * @param id {string} the element id, or key 
-     * @return {HTMLElement} a reference to the element
-     */
-    proto.getElement = function(id) { 
-        return this.get(this.OPT.ELEMENTS)[this.get(this.OPT.IDS)[id]]; 
-    };
-
-    var _createElements = function() {
-        var el, child, img, fld, i, 
-            ids = this.get(this.OPT.IDS),
-            txt = this.get(this.OPT.TXT),
-            images = this.get(this.OPT.IMAGES),
-            Elem = function(type, o) {
-                var n = document.createElement(type);
-                if (o) {
-                    lang.augmentObject(n, o, true);
-                }
-                return n;
-            },
-            RGBElem = function(type, obj) {
-                var o = lang.merge({
-                        //type: "txt",
-                        autocomplete: "off",
-                        value: "0",
-                        size: 3,
-                        maxlength: 3
-                    }, obj);
-
-                o.name = o.id;
-                return new Elem(type, o);
-            };
-
-        var p = this.get("element");
-
-        // Picker slider (S and V) ---------------------------------------------
-
-        el = new Elem("div", {
-            id: ids[this.ID.PICKER_BG],
-            className: "yui-picker-bg",
-            tabIndex: -1,
-            hideFocus: true
-        });
-
-        child = new Elem("div", {
-            id: ids[this.ID.PICKER_THUMB],
-            className: "yui-picker-thumb"
-        });
-
-        img = new Elem("img", {
-            src: images.PICKER_THUMB
-        });
-
-        child.appendChild(img);
-        el.appendChild(child);
-        p.appendChild(el);
-        
-        // Hue slider ---------------------------------------------
-        el = new Elem("div", {
-            id: ids[this.ID.HUE_BG],
-            className: "yui-picker-hue-bg",
-            tabIndex: -1,
-            hideFocus: true
-        });
-
-        child = new Elem("div", {
-            id: ids[this.ID.HUE_THUMB],
-            className: "yui-picker-hue-thumb"
-        });
-
-        img = new Elem("img", {
-            src: images.HUE_THUMB
-        });
-
-        child.appendChild(img);
-        el.appendChild(child);
-        p.appendChild(el);
-
-
-        // controls ---------------------------------------------
-
-        el = new Elem("div", {
-            id: ids[this.ID.CONTROLS],
-            className: "yui-picker-controls"
-        });
-
-        p.appendChild(el);
-        p = el;
-
-            // controls header
-            el = new Elem("div", {
-                className: "hd"
-            });
-
-            child = new Elem("a", {
-                id: ids[this.ID.CONTROLS_LABEL],
-                //className: "yui-picker-controls-label",
-                href: "#"
-            });
-            el.appendChild(child);
-            p.appendChild(el);
-
-            // bd
-            el = new Elem("div", {
-                className: "bd"
-            });
-
-            p.appendChild(el);
-            p = el;
-
-                // rgb
-                el = new Elem("ul", {
-                    id: ids[this.ID.RGB_CONTROLS],
-                    className: "yui-picker-rgb-controls"
-                });
-
-                child = new Elem("li");
-                child.appendChild(document.createTextNode(txt.R + " "));
-
-                fld = new RGBElem("input", {
-                    id: ids[this.ID.R],
-                    className: "yui-picker-r"
-                });
-
-                child.appendChild(fld);
-                el.appendChild(child);
-
-                child = new Elem("li");
-                child.appendChild(document.createTextNode(txt.G + " "));
-
-                fld = new RGBElem("input", {
-                    id: ids[this.ID.G],
-                    className: "yui-picker-g"
-                });
-
-                child.appendChild(fld);
-                el.appendChild(child);
-
-                child = new Elem("li");
-                child.appendChild(document.createTextNode(txt.B + " "));
-
-                fld = new RGBElem("input", {
-                    id: ids[this.ID.B],
-                    className: "yui-picker-b"
-                });
-
-                child.appendChild(fld);
-                el.appendChild(child);
-
-                p.appendChild(el);
-
-                // hsv
-                el = new Elem("ul", {
-                    id: ids[this.ID.HSV_CONTROLS],
-                    className: "yui-picker-hsv-controls"
-                });
-
-                child = new Elem("li");
-                child.appendChild(document.createTextNode(txt.H + " "));
-
-                fld = new RGBElem("input", {
-                    id: ids[this.ID.H],
-                    className: "yui-picker-h"
-                });
-
-                child.appendChild(fld);
-                child.appendChild(document.createTextNode(" " + txt.DEG));
-
-                el.appendChild(child);
-
-                child = new Elem("li");
-                child.appendChild(document.createTextNode(txt.S + " "));
-
-                fld = new RGBElem("input", {
-                    id: ids[this.ID.S],
-                    className: "yui-picker-s"
-                });
-
-                child.appendChild(fld);
-                child.appendChild(document.createTextNode(" " + txt.PERCENT));
-
-                el.appendChild(child);
-
-                child = new Elem("li");
-                child.appendChild(document.createTextNode(txt.V + " "));
-
-                fld = new RGBElem("input", {
-                    id: ids[this.ID.V],
-                    className: "yui-picker-v"
-                });
-
-                child.appendChild(fld);
-                child.appendChild(document.createTextNode(" " + txt.PERCENT));
-
-                el.appendChild(child);
-                p.appendChild(el);
-
-
-                // hex summary
-
-                el = new Elem("ul", {
-                    id: ids[this.ID.HEX_SUMMARY],
-                    className: "yui-picker-hex_summary"
-                });
-
-                child = new Elem("li", {
-                    id: ids[this.ID.R_HEX]
-                });
-                el.appendChild(child);
-
-                child = new Elem("li", {
-                    id: ids[this.ID.G_HEX]
-                });
-                el.appendChild(child);
-
-                child = new Elem("li", {
-                    id: ids[this.ID.B_HEX]
-                });
-                el.appendChild(child);
-                p.appendChild(el);
-
-                // hex field
-                el = new Elem("div", {
-                    id: ids[this.ID.HEX_CONTROLS],
-                    className: "yui-picker-hex-controls"
-                });
-                el.appendChild(document.createTextNode(txt.HEX + " "));
-
-                child = new RGBElem("input", {
-                    id: ids[this.ID.HEX],
-                    className: "yui-picker-hex",
-                    size: 6,
-                    maxlength: 6
-                });
-
-                el.appendChild(child);
-                p.appendChild(el);
-
-                p = this.get("element");
-
-                // swatch
-                el = new Elem("div", {
-                    id: ids[this.ID.SWATCH],
-                    className: "yui-picker-swatch"
-                });
-
-                p.appendChild(el);
-
-                // websafe swatch
-                el = new Elem("div", {
-                    id: ids[this.ID.WEBSAFE_SWATCH],
-                    className: "yui-picker-websafe-swatch"
-                });
-
-                p.appendChild(el);
-
-    };
-
-    var _attachRGBHSV = function(id, config) {
-        Event.on(this.getElement(id), "keydown", function(e, me) {
-                _rgbFieldKeypress.call(me, e, this, config);
-            }, this);
-        Event.on(this.getElement(id), "keypress", _numbersOnly, this);
-        Event.on(this.getElement(id), "blur", function(e, me) {
-                _useFieldValue.call(me, e, this, config);
-            }, this);
-    };
-
-
-    /**
-     * Updates the rgb attribute with the current state of the r,g,b
-     * fields.  This is invoked from change listeners on these
-     * attributes to facilitate updating these values from the
-     * individual form fields
-     * @method _updateRGB
-     * @private
-     */
-    var _updateRGB = function() {
-        var rgb = [this.get(this.OPT.RED), 
-                   this.get(this.OPT.GREEN),
-                   this.get(this.OPT.BLUE)];
-
-        this.set(this.OPT.RGB, rgb);
-
-        _updateSliders.call(this);
-    };
-
-    /**
-     * Sets the initial state of the sliders
-     * @method initPicker
-     */
-    proto.initPicker = function () {
-
-        // bind all of our elements
-        var o=this.OPT, 
-            ids = this.get(o.IDS), 
-            els = this.get(o.ELEMENTS), 
-                  i, el, id;
-
-        // Add the default value as a key for each element for easier lookup
-        for (i in this.ID) {
-            if (lang.hasOwnProperty(this.ID, i)) {
-                ids[this.ID[i]] = ids[i];
-            }
-        }
-
-        // Check for picker element, if not there, create all of them
-        el = Dom.get(ids[this.ID.PICKER_BG]);
-        if (!el) {
-            _createElements.call(this);
-        } else {
-        }
-
-        for (i in ids) {
-            if (lang.hasOwnProperty(ids, i)) {
-                // look for element
-                el = Dom.get(ids[i]);
-
-                // generate an id if the implementer passed in an element reference,
-                // and the element did not have an id already
-                id = Dom.generateId(el);
-
-                // update the id in case we generated the id
-                ids[i] = id; // key is WEBSAFE_SWATCH
-                ids[ids[i]] = id; // key is websafe_swatch
-
-                // store the dom ref
-                els[id] = el;
-            }
-        }
-
-        // set the initial visibility state of our controls
-            els = [o.SHOW_CONTROLS, 
-                   o.SHOW_RGB_CONTROLS,
-                   o.SHOW_HSV_CONTROLS,
-                   o.SHOW_HEX_CONTROLS,
-                   o.SHOW_HEX_SUMMARY,
-                   o.SHOW_WEBSAFE
-                   ];
-
-        for (i=0; i<els.length; i=i+1) {
-            this.set(els[i], this.get(els[i]));
-        }
-
-        var s = this.get(o.PICKER_SIZE);
-
-        this.hueSlider = Slider.getVertSlider(this.getElement(this.ID.HUE_BG), 
-                                              this.getElement(this.ID.HUE_THUMB), 0, s);
-        this.hueSlider.subscribe("change", _onHueSliderChange, this, true);
-
-        this.pickerSlider = Slider.getSliderRegion(this.getElement(this.ID.PICKER_BG), 
-                                                   this.getElement(this.ID.PICKER_THUMB), 0, s, 0, s);
-        this.pickerSlider.subscribe("change", _onPickerSliderChange, this, true);
-
-        // Set the animate state
-        this.set(o.ANIMATE,this.get(o.ANIMATE));
-
-        //_onHueSliderChange.call(this, 0);
-
-        Event.on(this.getElement(this.ID.WEBSAFE_SWATCH), "click", function(e) {
-               this.setValue(this.get(o.WEBSAFE));
-               //_updateSliders
-           }, this, true);
-
-        Event.on(this.getElement(this.ID.CONTROLS_LABEL), "click", function(e) {
-               this.set(o.SHOW_CONTROLS, !this.get(o.SHOW_CONTROLS));
-               Event.preventDefault(e);
-           }, this, true);
-
-        _attachRGBHSV.call(this, this.ID.R, this.OPT.RED); 
-        _attachRGBHSV.call(this, this.ID.G, this.OPT.GREEN); 
-        _attachRGBHSV.call(this, this.ID.B, this.OPT.BLUE); 
-        _attachRGBHSV.call(this, this.ID.H, this.OPT.HUE); 
-        _attachRGBHSV.call(this, this.ID.S, this.OPT.SATURATION); 
-        _attachRGBHSV.call(this, this.ID.V, this.OPT.VALUE); 
-
-        Event.on(this.getElement(this.ID.HEX), "keydown", function(e, me) {
-                _hexFieldKeypress.call(me, e, this, me.OPT.HEX);
-            }, this);
-
-        Event.on(this.getElement(this.ID.HEX), "keypress", _hexOnly, this);
-        Event.on(this.getElement(this.ID.HEX), "blur", function(e, me) {
-                _useFieldValue.call(me, e, this, me.OPT.HEX);
-            }, this);
-
-        _updateRGB.call(this);
-    };
-
-
-    /**
-     * Updates the RGB values from the current state of the HSV
-     * values.  Executed when the one of the HSV form fields are
-     * updated
-     * _updateRGBFromHSV
-     * @private
-     */
-    var _updateRGBFromHSV = function() {
-        var hsv = [this.get(this.OPT.HUE), 
-                   this.get(this.OPT.SATURATION)/100,
-                   this.get(this.OPT.VALUE)/100];
-
-        var rgb = Color.hsv2rgb(hsv);
-
-        this.set(this.OPT.RGB, rgb);
-
-        _updateSliders.call(this);
-    };
-
-    /**
-     * Parses the hex string to normalize shorthand values, converts
-     * the hex value to rgb and updates the rgb attribute (which
-     * updates the state for all of the other values)
-     * method _updateHex
-     * @private
-     */
-    var _updateHex = function() {
-       
-        var hex = this.get(this.OPT.HEX), l=hex.length;
-
-        // support #369 -> #336699 shorthand
-        if (l === 3) {
-            var c = hex.split(""), i;
-            for (i=0; i<l; i=i+1) {
-                c[i] = c[i] + c[i];
-            }
-
-            hex = c.join("");
-        }
-
-        if (hex.length !== 6) {
-            return false;
-        }
-
-        var rgb = Color.hex2rgb(hex);
-
-
-        this.setValue(rgb);
-
-        //_updateSliders.call(this);
-
-    };
-
-
-
-    /**
-     * Sets up the config attributes and the change listeners for this
-     * properties
-     * @method initAttributes
-     * @param attr An object containing default attribute values
-     */
-    proto.initAttributes = function(attr) {
-
-        attr = attr || {};
-        YAHOO.widget.ColorPicker.superclass.initAttributes.call(this, attr);
-        
-        /**
-         * The size of the picker. Trying to change this is not recommended.
-         * @attribute pickersize
-         * @default 180
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.PICKER_SIZE, {
-                value: attr.size || this.DEFAULT.PICKER_SIZE
-            });
-
-        /**
-         * The current hue value 0-360
-         * @attribute hue
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.HUE, {
-                value: attr.hue || 0,
-                validator: lang.isNumber
-            });
-
-        /**
-         * The current saturation value 0-100
-         * @attribute saturation
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.SATURATION, {
-                value: attr.saturation || 0,
-                validator: lang.isNumber
-            });
-
-        /**
-         * The current value/brightness value 0-100
-         * @attribute value
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.VALUE, {
-                value: lang.isNumber(attr.value) ? attr.value : 100,
-                validator: lang.isNumber
-            });
-
-        /**
-         * The current red value 0-255
-         * @attribute red
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.RED, {
-                value: lang.isNumber(attr.red) ? attr.red : 255,
-                validator: lang.isNumber
-            });
-
-        /**
-         * The current green value 0-255
-         * @attribute green 
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.GREEN, {
-                value: lang.isNumber(attr.green) ? attr.green : 255,
-                validator: lang.isNumber
-            });
-
-        /**
-         * The current blue value 0-255
-         * @attribute blue
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.BLUE, {
-                value: lang.isNumber(attr.blue) ? attr.blue : 255,
-                validator: lang.isNumber
-            });
-
-        /**
-         * The current hex value #000000-#FFFFFF, without the #
-         * @attribute hex
-         * @type string
-         */
-        this.setAttributeConfig(this.OPT.HEX, {
-                value: attr.hex || "FFFFFF",
-                validator: lang.isString
-            });
-
-        /**
-         * The current rgb value.  Updates the state of all of the
-         * other value fields.  Read-only: use setValue to set the
-         * controls rgb value.
-         * @attribute hex
-         * @type [int, int, int]
-         * @readonly
-         */
-        this.setAttributeConfig(this.OPT.RGB, {
-                value: attr.rgb || [255,255,255],
-                method: function(rgb) {
-
-                    this.set(this.OPT.RED, rgb[0], true);
-                    this.set(this.OPT.GREEN, rgb[1], true);
-                    this.set(this.OPT.BLUE, rgb[2], true);
-
-                    var websafe = Color.websafe(rgb);
-                    this.set(this.OPT.WEBSAFE, websafe, true);
-
-                    var hex = Color.rgb2hex(rgb);
-                    this.set(this.OPT.HEX, hex, true);
-
-                    var hsv = Color.rgb2hsv(rgb);
-
-
-                    this.set(this.OPT.HUE, hsv[0], true);
-                    this.set(this.OPT.SATURATION, Math.round(hsv[1]*100), true);
-                    this.set(this.OPT.VALUE, Math.round(hsv[2]*100), true);
-                },
-                readonly: true
-            });
-
-        /**
-         * If the color picker will live inside of a container object,
-         * set, provide a reference to it so the control can use the
-         * container's events.
-         * @attribute container
-         * @type YAHOO.widget.Panel
-         */
-        this.setAttributeConfig(this.OPT.CONTAINER, {
-                    value: null,
-                    method: function(container) {
-                        if (container) {
-                            // Position can get out of sync when the
-                            // control is manipulated while display is
-                            // none.  Resetting the slider constraints
-                            // when it is visible gets the state back in
-                            // order.
-                            container.showEvent.subscribe(function() {
-                                // this.pickerSlider.thumb.resetConstraints();
-                                // this.hueSlider.thumb.resetConstraints();
-                                this.pickerSlider.focus();
-                            }, this, true);
-                        }
-                    }
-                });
-        /**
-         * The closest current websafe value
-         * @attribute websafe
-         * @type int
-         */
-        this.setAttributeConfig(this.OPT.WEBSAFE, {
-                value: attr.websafe || [255,255,255]
-            });
-
-
-        var ids = attr.ids || lang.merge({}, this.ID);
-
-        if (!attr.ids && _pickercount > 1) {
-            for (var i in ids) {
-                if (lang.hasOwnProperty(ids, i)) {
-                    ids[i] = ids[i] + _pickercount;
-                }
-            }
-        }
-
-
-        /**
-         * A list of element ids and/or element references used by the 
-         * control.  The default is the this.ID list, and can be customized
-         * by passing a list in the contructor
-         * @attribute ids
-         * @type {referenceid: realid}
-         * @writeonce
-         */
-        this.setAttributeConfig(this.OPT.IDS, {
-                value: ids,
-                writeonce: true
-            });
-
-        /**
-         * A list of txt strings for internationalization.  Default
-         * is this.TXT
-         * @attribute txt
-         * @type {key: txt}
-         * @writeonce
-         */
-        this.setAttributeConfig(this.OPT.TXT, {
-                value: attr.txt || this.TXT,
-                writeonce: true
-            });
-
-        /**
-         * The img src default list
-         * is this.IMAGES
-         * @attribute images
-         * @type {key: image}
-         * @writeonce
-         */
-        this.setAttributeConfig(this.OPT.IMAGES, {
-                value: attr.images || this.IMAGE,
-                writeonce: true
-            });
-        /**
-         * The element refs used by this control.  Set at initialization
-         * @attribute elements
-         * @type {id: HTMLElement}
-         * @readonly
-         */
-        this.setAttributeConfig(this.OPT.ELEMENTS, {
-                value: {},
-                readonly: true
-            });
-
-        /**
-         * Returns the cached element reference.  If the id is not a string, it
-         * is assumed that it is an element and this is returned.
-         * @param id {string|HTMLElement} the element key, id, or ref
-         * @param on {boolean} hide or show.  If true, show
-         * @private */
-        var _hideShowEl = function(id, on) {
-            var el = (lang.isString(id) ? this.getElement(id) : id);
-            //Dom.setStyle(id, "visibility", (on) ? "" : "hidden");
-            Dom.setStyle(el, "display", (on) ? "" : "none");
-        };
-
-        /**
-         * Hide/show the entire set of controls
-         * @attribute showcontrols
-         * @type boolean
-         * @default true
-         */
-        this.setAttributeConfig(this.OPT.SHOW_CONTROLS, {
-                value: lang.isBoolean(attr.showcontrols) ? attr.showcontrols : true,
-                method: function(on) {
-
-                    var el = Dom.getElementsByClassName("bd", "div", 
-                            this.getElement(this.ID.CONTROLS))[0];
-
-                    _hideShowEl.call(this, el, on);
-
-                    this.getElement(this.ID.CONTROLS_LABEL).innerHTML = 
-                        (on) ? this.get(this.OPT.TXT).HIDE_CONTROLS :
-                               this.get(this.OPT.TXT).SHOW_CONTROLS;
-
-                }
-            });
-
-        /**
-         * Hide/show the rgb controls
-         * @attribute showrgbcontrols
-         * @type boolean
-         * @default true
-         */
-        this.setAttributeConfig(this.OPT.SHOW_RGB_CONTROLS, {
-                value: lang.isBoolean(attr.showrgbcontrols) ? attr.showrgbcontrols : true,
-                method: function(on) {
-                    //Dom.setStyle(this.getElement(this.ID.RBG_CONTROLS), "visibility", (on) ? "" : "hidden");
-                    _hideShowEl.call(this, this.ID.RGB_CONTROLS, on);
-                }
-            });
-
-        /**
-         * Hide/show the hsv controls
-         * @attribute showhsvcontrols
-         * @type boolean
-         * @default false
-         */
-        this.setAttributeConfig(this.OPT.SHOW_HSV_CONTROLS, {
-                value: lang.isBoolean(attr.showhsvcontrols) ?
-                                      attr.showhsvcontrols : false,
-                method: function(on) {
-                    //Dom.setStyle(this.getElement(this.ID.HSV_CONTROLS), "visibility", (on) ? "" : "hidden");
-                    _hideShowEl.call(this, this.ID.HSV_CONTROLS, on);
-
-                    // can't show both the hsv controls and the rbg hex summary
-                    if (on && this.get(this.OPT.SHOW_HEX_SUMMARY)) {
-                        this.set(this.OPT.SHOW_HEX_SUMMARY, false);
-                    }
-                }
-            });
-
-        /**
-         * Hide/show the hex controls
-         * @attribute showhexcontrols
-         * @type boolean
-         * @default true
-         */
-        this.setAttributeConfig(this.OPT.SHOW_HEX_CONTROLS, {
-                value: lang.isBoolean(attr.showhexcontrols) ?
-                                      attr.showhexcontrols : false,
-                method: function(on) {
-                    _hideShowEl.call(this, this.ID.HEX_CONTROLS, on);
-                }
-            });
-
-        /**
-         * Hide/show the websafe swatch
-         * @attribute showwebsafe
-         * @type boolean
-         * @default true
-         */
-        this.setAttributeConfig(this.OPT.SHOW_WEBSAFE, {
-                value: lang.isBoolean(attr.showwebsafe) ? attr.showwebsafe : true,
-                method: function(on) {
-                    _hideShowEl.call(this, this.ID.WEBSAFE_SWATCH, on);
-                }
-            });
-
-        /**
-         * Hide/show the hex summary
-         * @attribute showhexsummary
-         * @type boolean
-         * @default true
-         */
-        this.setAttributeConfig(this.OPT.SHOW_HEX_SUMMARY, {
-                value: lang.isBoolean(attr.showhexsummary) ? attr.showhexsummary : true,
-                method: function(on) {
-                    _hideShowEl.call(this, this.ID.HEX_SUMMARY, on);
-
-                    // can't show both the hsv controls and the rbg hex summary
-                    if (on && this.get(this.OPT.SHOW_HSV_CONTROLS)) {
-                        this.set(this.OPT.SHOW_HSV_CONTROLS, false);
-                    }
-                }
-            });
-        this.setAttributeConfig(this.OPT.ANIMATE, {
-                value: lang.isBoolean(attr.animate) ? attr.animate : true,
-                method: function(on) {
-                    this.pickerSlider.animate = on;
-                    this.hueSlider.animate = on;
-                }
-            });
-
-        this.on(this.OPT.HUE + "Change", _updateRGBFromHSV, this, true);
-        this.on(this.OPT.SATURATION + "Change", _updateRGBFromHSV, this, true);
-        this.on(this.OPT.VALUE + "Change", _updatePickerSlider, this, true);
-
-        this.on(this.OPT.RED + "Change", _updateRGB, this, true);
-        this.on(this.OPT.GREEN + "Change", _updateRGB, this, true);
-        this.on(this.OPT.BLUE + "Change", _updateRGB, this, true);
-
-        this.on(this.OPT.HEX + "Change", _updateHex, this, true);
-
-        this.initPicker();
-    };
-
-})();
-YAHOO.register("colorpicker", YAHOO.widget.ColorPicker, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/connection/README b/eclipse.org-common/yui/2.6.0/build/connection/README
deleted file mode 100644
index 9f0fb0d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/connection/README
+++ /dev/null
@@ -1,302 +0,0 @@
-Connection Manager Release Notes
-
-*** version 2.6.0 ***
-
-* setForm optimization for select-one elements.
-
-* File upload transactions that include encoded POST data will have the keys and
-values decoded before they are used to create the form fields, to avoid having
-the data encoded twice.
-
-*** version 2.5.2 ***
-
-* In file upload transactions, in Safari 3.x, fail to send the file data.  This
-is due to Safari evaluating the condition statement "if(formObject.encoding){}"
-as true.  This results in the incorrect attribute being set, the correct
-attribute being "enctype."  The conditional check now explicitly verifies for
-IE, before setting the appropriate attribute.
-
-* NOTE: File uploads using setForm() does not function as expected in Opera
-9.27.  The file and data upload phase works as expected, however the server
-response cannot be read.  Specifically, "onload" for an iframe is triggered when
-the iframe is appended into the DOM.  This results in the upload callback being
-fired immediately, before the transaction is complete, and before the response
-data are available.
-
-This condition is documented in Opera's bug tracking system: 295719 and appears
-to have been fixed as of Opera 9.50 b2.
-
-*** version 2.5.1 ***
-
-* no changes.
-
-*** version 2.5.0 ***
-
-* setForm() can now detects HTTPS in the URI for file upload transactions.  The
-third, boolean argument for HTTPS when using IE is no longer necessary.
-
-* [FIXED] SF1882101.  POST transactions without a message will now have a
-Content-Length value set to 0 for FF 2.x.  This is accomplished by passing a
-value of empty string instead of null to XHR's send().  All other A-Grade
-browsers remain unaffected and perform correctly.
-
-*** version 2.4.0 ***
-
-* [FIXED] SF1804153.  Transactions initialized with setForm() now properly clear
-the POST data field after each transaction.
-
-* The callback object can accept a new member, cache, defined with a boolean
-value.  If set to false (e.g., var callback = { cache:false };), a timestamp
-will be appended to the URI to override HTTP GET caching.  This timestamp value
-will appear as rnd=timestamp in the request querystring.
-
-* Custom Events startEvent, completeEvent, and abortEvent now receive
-callback.argument, if defined, in addition to the transaction ID.  Each Custom
-Event's function handler receives two arguments -- the event type as the first
-argument, and an array as the second argument.  The first element in the array
-is the transaction ID, and the second element are any arguments defined in the
-callback object.
-
-*** version 2.3.1 ***
-
-* setDefaultPostHeader() can now be overloaded with a boolean, string, or
-number.  By default, POST transactions send the following Content-Type header:
-'application/x-www-form-urlencoded; charset=UTF-8'.
-
-A custom Content-Type header can now be set by passing its value to
-setDefaultPostHeader().
-
-* HTML form submissions now send a Content-Type header of "application/x-www-
-form-urlencoded", omitting the charset=UTF-8 value.
-
-* setDefaultXhrHeader() can now be overloaded with a boolean, string, or number.
-By default, all transactions send a custom header of "X-Requested-
-With:XMLHttpRequest".
-
-This default header value can be overridden by passing the desired value as an
-argument to setDefaultPostHeader().
-
-* The file upload iframe's event listener is now explicitly removed before the
-iframe is destroyed.
-
-*** version 2.3.0 ***
-
-* Custom Events are introduced in Connection Manager.  These events -- for a
-non-file upload transaction -- are:
-
-   * startEvent
-   * completeEvent
-   * successEvent
-   * failureEvent
-   * abortEvent
-
-For transactions involving file upload with an HTML form, the events are:
-
-   * startEvent
-   * completeEvent
-   * uploadEvent
-   * abortEvent
-
-* Event utility is a now Connection Manager dependency.
-
-* abort() and isCallInProgress() are now functional for file upload
-transactions.
-
-* NOTE: The native XHR implementation in Safari 2.0.4 has been confirmed to leak
-memory.
-
-* UPDATE: The XHR implementation in Safari 3.0 beta(and WebKit builds) now
-appear to handle HTTP 204 responses correctly.  XHR in Opera, as of 9.21, still
-does not produce a valid HTTP status code with an HTTP 204 response.
-
-*** version 2.2.2 ***
-
-* No revisions.
-
-*** version 2.2.1 ***
-
-* setForm() will include the correct name-value of the HTML Submit button
-clicked where multiple HTML Submit button options are present in an HTML form.
-To enable this feature, include the Event utility source file as a dependency
-before the Connection Manager source file.
-
-* The XHR implementation in IE6 and IE7, Opera, and Safari do not properly
-handle an HTTP 204 response.  IE6/7 will instead return a Win error 1223.
-handleTransactionResponse() will treat 1223 as an HTTP 204, and route the
-response appropriately to the success callback.  createResponseObject() will
-normalize the response object's status and statusText values to 204 and "No
-Content" respectively.  However, no headers are returned.
-
-Opera and Safari provide no discernable response with HTTP 204(e.g., response
-object's properties are undefined).  This response will trigger the failure
-callback with a status of 0 and statusText of "communication failure".
-
-*** version 2.2.0 ***
-
-* initHeader() now accepts a third argument as a boolean.  When set to true,
-this specific header will automatically be sent with each transaction.
-Otherwise, the header will be set and sent for the specific transaction only.
-Example: initHeader('X-YUI-State','Beta', true); all transactions will send this
-header.
-   * resetDefaultHeaders() will clear the default headers collection.
-
-* All Connection Mananger transactions will broadcast the header: "X-Requested-
-With: XMLHttpRequest".
-   * This can be turned off: YAHOO.util.Connect.setDefaultXhrHeader(false);
-
-* The HTTP method argument in asyncRequest is now case-insensitive.
-
-* uploadFile() will now correctly handle the absence of a callback object,
-allowing the transaction to complete silently.
-
-*** version 0.12.2 ***
-
-* The Opera/Connection Manager concurrent object condition, described in version
-0.12.0, no longer tests applies for Opera, version 9.10.
-
-*** version 0.12.1 ***
-
-* connection-debug.js corrected and synchronized with connection.js.  Code
-inconsistencies between the two files existed in 0.12.0.
-
-*** version 0.12.0 ***
-
-* When uploading files via setForm() and asyncRequest includes a POST data
-argument, appendPostData() will create hidden input fields for each postData
-label/value and append each field to the form object.
-
-* setForm() returns the assembled label/value string of the parsed HTML form
-fields.
-
-* NOTE: Opera 9.02 does not allow for more than 12 concurrent Connection Manager
-objects.
-
-The following example creates 12 requests in a loop:
-for(var n=0; n<=12; i++){
-  conn[n] = YAHOO.util.Connect.asyncRequest('GET', sUrl, callback);
-}
-
-If n > 13, Opera 9.02 will crash.  Connection manager objects count n must be <=
-12 at all times.  This condition was not present in Opera version 9.01.
-
-This condition does not apply to other A-Grade browsers (
-http://developer.yahoo.com/yui/articles/gbs/gbs_browser-chart.html)
-
-*** version 0.11.3 ***
-
-* YUI Event dependency for file uploading is now optional.
-
-* uploadFile() now sets unique IDs for each file upload transaction to prevent
-iframe collisions with parallel uploads.
-
-* The callback object now has property responseXML to provide support for file
-upload transactions that return an XML document.
-
-* setForm() will verify if a select option value attribute is present and use
-its value, including empty string, before using the text node value.
-
-* Modified polling mechanism in handleReadyState() and
-handleTransactionResponse() to prevent infinite polling if JavaScript errors
-occur in the user-defined callback.
-
-* createFrame() will now accept a boolean argument of true to set the frame
-source to "javascript:false" to prevent IE from throwing security warnings in an
-HTTPS environment.
-
-* setHeader() now enumerates through the _http_header object using
-hasOwnProperty() to prevent collisions with members added to Object via
-prototype.
-
-* If using setForm() and asyncRequest includes a POST data argument, the data
-will be concatenated to the HTML form POST message.
-
-*** version 0.11.2 ***
-
-* No revisions.
-
-*** version 0.11.1 ***
-
-* uploadFile() now verifies the existence of callback.upload before invoking
-callback, with or without object scope.
-
-*** version 0.11.0 ***
-
-* Each transaction can be defined with a timeout threshold, in milliseconds,
-through the callback object.  If the threshold is reached, and the transaction
-hasn't yet completed, the transaction will call abort().
-
-* abort() will now accept a callback object as the second argument.  The
-failure callback will receive a response object to indicate the transaction was
-aborted.
-
-* setForm() will now support file uploads by setting the second argument to
-true (e.g., YAHOO.util.Connect.setForm(formObject, true).  File upload does not
-use the callback success or failure handler.  Instead, it uses a new callback
-object handler: upload.
-
-* HTML form submit will no longer submit form fields without a defined name
-attribute.
-
-* The default POST header of 'Content-Type','application/x-www-form-urlencoded'
-can be overridden by calling setDefaultPostHeader(false).  This
-will remove the default header from non-HTML form, POST submissions.
-
-* setHeader() now enumerates through the _http_header object with
-propertyIsEnumerable to prevent collisions with members added to Object via
-prototype.
-
-*** version 0.10.0 ***
-
-* handleTransactionResponse() now treats the full HTTP 2xx range as a success
-case, instead of just HTTP 200.
-
-* To accommodate multiple field values in Mozilla/Firefox, multiple initHeader
-calls with the same label will now result in the values concatenated to a
-comma- delimited string value.
-Example:
-Setting Content-Type:'application/x-www-form-urlencoded' and Content-
-Type:'text/xml' will result in Content-Type:'application/x-www-form-urlencoded,
-text/xml'.
-
-* Default polling interval lowered to 50ms.
-
-* YAHOO.util.Connect.setPollingInterval() will allow you to set a polling
-interval -- in milliseconds -- to override the default value.
-
-* YAHOO.util.Connect.getResponseHeader[headerLabel] now supported as a response
-object property to provide symmetry with the native XHR object's property.
-Example:
-YAHOO.util.Connect.getResponseHeader['Content-Length'] will return the value
-for the Content-Length header, if the header is available.
-
-* YAHOO.util.Connect.allResponseHeaders property renamed to
-getAllResponseHeaders to provide symmetry with the native XHR object's
-property.
-
-* YAHOO.util.Connect.setForm() now supports HTTP GET as well as HTTP POST.
-
-* YAHOO.util.Connect.setForm() now accepts an HTML form object as well as its
-name attribute value.
-
-* YAHOO.util.Connect.setForm() will not submit HTML form fields that are
-disabled or do not have a name attribute value.
-
-* [FIXED] Response exceptions result in infinite callback loop in
-Mozilla/Firefox.
-
-* [FIXED] YAHOO.util.Connect.abort() now properly clears polling interval.
-
-* [FIXED] isCallInProgress() now verifies whether XHR instance still exists,
-and returns false if the connection object is no longer available.
-
-*** version 0.9.0 ***
-
-* Initial release
-
-
-
-
-
-
-
-
diff --git a/eclipse.org-common/yui/2.6.0/build/connection/connection-debug.js b/eclipse.org-common/yui/2.6.0/build/connection/connection-debug.js
deleted file mode 100644
index 9c620d2..0000000
--- a/eclipse.org-common/yui/2.6.0/build/connection/connection-debug.js
+++ /dev/null
@@ -1,1409 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The Connection Manager provides a simplified interface to the XMLHttpRequest
- * object.  It handles cross-browser instantiantion of XMLHttpRequest, negotiates the
- * interactive states and server response, returning the results to a pre-defined
- * callback you create.
- *
- * @namespace YAHOO.util
- * @module connection
- * @requires yahoo
- * @requires event
- */
-
-/**
- * The Connection Manager singleton provides methods for creating and managing
- * asynchronous transactions.
- *
- * @class Connect
- */
-
-YAHOO.util.Connect =
-{
-  /**
-   * @description Array of MSFT ActiveX ids for XMLHttpRequest.
-   * @property _msxml_progid
-   * @private
-   * @static
-   * @type array
-   */
-	_msxml_progid:[
-		'Microsoft.XMLHTTP',
-		'MSXML2.XMLHTTP.3.0',
-		'MSXML2.XMLHTTP'
-		],
-
-  /**
-   * @description Object literal of HTTP header(s)
-   * @property _http_header
-   * @private
-   * @static
-   * @type object
-   */
-	_http_headers:{},
-
-  /**
-   * @description Determines if HTTP headers are set.
-   * @property _has_http_headers
-   * @private
-   * @static
-   * @type boolean
-   */
-	_has_http_headers:false,
-
- /**
-  * @description Determines if a default header of
-  * Content-Type of 'application/x-www-form-urlencoded'
-  * will be added to any client HTTP headers sent for POST
-  * transactions.
-  * @property _use_default_post_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _use_default_post_header:true,
-
- /**
-  * @description The default header used for POST transactions.
-  * @property _default_post_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _default_post_header:'application/x-www-form-urlencoded; charset=UTF-8',
-
- /**
-  * @description The default header used for transactions involving the
-  * use of HTML forms.
-  * @property _default_form_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _default_form_header:'application/x-www-form-urlencoded',
-
- /**
-  * @description Determines if a default header of
-  * 'X-Requested-With: XMLHttpRequest'
-  * will be added to each transaction.
-  * @property _use_default_xhr_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _use_default_xhr_header:true,
-
- /**
-  * @description The default header value for the label
-  * "X-Requested-With".  This is sent with each
-  * transaction, by default, to identify the
-  * request as being made by YUI Connection Manager.
-  * @property _default_xhr_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _default_xhr_header:'XMLHttpRequest',
-
- /**
-  * @description Determines if custom, default headers
-  * are set for each transaction.
-  * @property _has_default_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _has_default_headers:true,
-
- /**
-  * @description Determines if custom, default headers
-  * are set for each transaction.
-  * @property _has_default_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _default_headers:{},
-
- /**
-  * @description Property modified by setForm() to determine if the data
-  * should be submitted as an HTML form.
-  * @property _isFormSubmit
-  * @private
-  * @static
-  * @type boolean
-  */
-    _isFormSubmit:false,
-
- /**
-  * @description Property modified by setForm() to determine if a file(s)
-  * upload is expected.
-  * @property _isFileUpload
-  * @private
-  * @static
-  * @type boolean
-  */
-    _isFileUpload:false,
-
- /**
-  * @description Property modified by setForm() to set a reference to the HTML
-  * form node if the desired action is file upload.
-  * @property _formNode
-  * @private
-  * @static
-  * @type object
-  */
-    _formNode:null,
-
- /**
-  * @description Property modified by setForm() to set the HTML form data
-  * for each transaction.
-  * @property _sFormData
-  * @private
-  * @static
-  * @type string
-  */
-    _sFormData:null,
-
- /**
-  * @description Collection of polling references to the polling mechanism in handleReadyState.
-  * @property _poll
-  * @private
-  * @static
-  * @type object
-  */
-    _poll:{},
-
- /**
-  * @description Queue of timeout values for each transaction callback with a defined timeout value.
-  * @property _timeOut
-  * @private
-  * @static
-  * @type object
-  */
-    _timeOut:{},
-
-  /**
-   * @description The polling frequency, in milliseconds, for HandleReadyState.
-   * when attempting to determine a transaction's XHR readyState.
-   * The default is 50 milliseconds.
-   * @property _polling_interval
-   * @private
-   * @static
-   * @type int
-   */
-     _polling_interval:50,
-
-  /**
-   * @description A transaction counter that increments the transaction id for each transaction.
-   * @property _transaction_id
-   * @private
-   * @static
-   * @type int
-   */
-     _transaction_id:0,
-
-  /**
-   * @description Tracks the name-value pair of the "clicked" submit button if multiple submit
-   * buttons are present in an HTML form; and, if YAHOO.util.Event is available.
-   * @property _submitElementValue
-   * @private
-   * @static
-   * @type string
-   */
-	 _submitElementValue:null,
-
-  /**
-   * @description Determines whether YAHOO.util.Event is available and returns true or false.
-   * If true, an event listener is bound at the document level to trap click events that
-   * resolve to a target type of "Submit".  This listener will enable setForm() to determine
-   * the clicked "Submit" value in a multi-Submit button, HTML form.
-   * @property _hasSubmitListener
-   * @private
-   * @static
-   */
-	 _hasSubmitListener:(function()
-	 {
-		if(YAHOO.util.Event){
-			YAHOO.util.Event.addListener(
-				document,
-				'click',
-				function(e){
-					var obj = YAHOO.util.Event.getTarget(e);
-					if(obj.nodeName.toLowerCase() == 'input' && (obj.type && obj.type.toLowerCase() == 'submit')){
-						YAHOO.util.Connect._submitElementValue = encodeURIComponent(obj.name) + "=" + encodeURIComponent(obj.value);
-					}
-				});
-			return true;
-	    }
-	    return false;
-	 })(),
-
-  /**
-   * @description Custom event that fires at the start of a transaction
-   * @property startEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	startEvent: new YAHOO.util.CustomEvent('start'),
-
-  /**
-   * @description Custom event that fires when a transaction response has completed.
-   * @property completeEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	completeEvent: new YAHOO.util.CustomEvent('complete'),
-
-  /**
-   * @description Custom event that fires when handleTransactionResponse() determines a
-   * response in the HTTP 2xx range.
-   * @property successEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	successEvent: new YAHOO.util.CustomEvent('success'),
-
-  /**
-   * @description Custom event that fires when handleTransactionResponse() determines a
-   * response in the HTTP 4xx/5xx range.
-   * @property failureEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	failureEvent: new YAHOO.util.CustomEvent('failure'),
-
-  /**
-   * @description Custom event that fires when handleTransactionResponse() determines a
-   * response in the HTTP 4xx/5xx range.
-   * @property failureEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	uploadEvent: new YAHOO.util.CustomEvent('upload'),
-
-  /**
-   * @description Custom event that fires when a transaction is successfully aborted.
-   * @property abortEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	abortEvent: new YAHOO.util.CustomEvent('abort'),
-
-  /**
-   * @description A reference table that maps callback custom events members to its specific
-   * event name.
-   * @property _customEvents
-   * @private
-   * @static
-   * @type object
-   */
-	_customEvents:
-	{
-		onStart:['startEvent', 'start'],
-		onComplete:['completeEvent', 'complete'],
-		onSuccess:['successEvent', 'success'],
-		onFailure:['failureEvent', 'failure'],
-		onUpload:['uploadEvent', 'upload'],
-		onAbort:['abortEvent', 'abort']
-	},
-
-  /**
-   * @description Member to add an ActiveX id to the existing xml_progid array.
-   * In the event(unlikely) a new ActiveX id is introduced, it can be added
-   * without internal code modifications.
-   * @method setProgId
-   * @public
-   * @static
-   * @param {string} id The ActiveX id to be added to initialize the XHR object.
-   * @return void
-   */
-	setProgId:function(id)
-	{
-		this._msxml_progid.unshift(id);
-		YAHOO.log('ActiveX Program Id  ' + id + ' added to _msxml_progid.', 'info', 'Connection');
-	},
-
-  /**
-   * @description Member to override the default POST header.
-   * @method setDefaultPostHeader
-   * @public
-   * @static
-   * @param {boolean} b Set and use default header - true or false .
-   * @return void
-   */
-	setDefaultPostHeader:function(b)
-	{
-		if(typeof b == 'string'){
-			this._default_post_header = b;
-			YAHOO.log('Default POST header set to  ' + b, 'info', 'Connection');
-		}
-		else if(typeof b == 'boolean'){
-			this._use_default_post_header = b;
-		}
-	},
-
-  /**
-   * @description Member to override the default transaction header..
-   * @method setDefaultXhrHeader
-   * @public
-   * @static
-   * @param {boolean} b Set and use default header - true or false .
-   * @return void
-   */
-	setDefaultXhrHeader:function(b)
-	{
-		if(typeof b == 'string'){
-			this._default_xhr_header = b;
-			YAHOO.log('Default XHR header set to  ' + b, 'info', 'Connection');
-		}
-		else{
-			this._use_default_xhr_header = b;
-		}
-	},
-
-  /**
-   * @description Member to modify the default polling interval.
-   * @method setPollingInterval
-   * @public
-   * @static
-   * @param {int} i The polling interval in milliseconds.
-   * @return void
-   */
-	setPollingInterval:function(i)
-	{
-		if(typeof i == 'number' && isFinite(i)){
-			this._polling_interval = i;
-			YAHOO.log('Default polling interval set to ' + i +'ms', 'info', 'Connection');
-		}
-	},
-
-  /**
-   * @description Instantiates a XMLHttpRequest object and returns an object with two properties:
-   * the XMLHttpRequest instance and the transaction id.
-   * @method createXhrObject
-   * @private
-   * @static
-   * @param {int} transactionId Property containing the transaction id for this transaction.
-   * @return object
-   */
-	createXhrObject:function(transactionId)
-	{
-		var obj,http;
-		try
-		{
-			// Instantiates XMLHttpRequest in non-IE browsers and assigns to http.
-			http = new XMLHttpRequest();
-			//  Object literal with http and tId properties
-			obj = { conn:http, tId:transactionId };
-			YAHOO.log('XHR object created for transaction ' + transactionId, 'info', 'Connection');
-		}
-		catch(e)
-		{
-			for(var i=0; i<this._msxml_progid.length; ++i){
-				try
-				{
-					// Instantiates XMLHttpRequest for IE and assign to http
-					http = new ActiveXObject(this._msxml_progid[i]);
-					//  Object literal with conn and tId properties
-					obj = { conn:http, tId:transactionId };
-					YAHOO.log('ActiveX XHR object created for transaction ' + transactionId, 'info', 'Connection');
-					break;
-				}
-				catch(e2){}
-			}
-		}
-		finally
-		{
-			return obj;
-		}
-	},
-
-  /**
-   * @description This method is called by asyncRequest to create a
-   * valid connection object for the transaction.  It also passes a
-   * transaction id and increments the transaction id counter.
-   * @method getConnectionObject
-   * @private
-   * @static
-   * @return {object}
-   */
-	getConnectionObject:function(isFileUpload)
-	{
-		var o;
-		var tId = this._transaction_id;
-
-		try
-		{
-			if(!isFileUpload){
-				o = this.createXhrObject(tId);
-			}
-			else{
-				o = {};
-				o.tId = tId;
-				o.isUpload = true;
-			}
-
-			if(o){
-				this._transaction_id++;
-			}
-		}
-		catch(e){}
-		finally
-		{
-			return o;
-		}
-	},
-
-  /**
-   * @description Method for initiating an asynchronous request via the XHR object.
-   * @method asyncRequest
-   * @public
-   * @static
-   * @param {string} method HTTP transaction method
-   * @param {string} uri Fully qualified path of resource
-   * @param {callback} callback User-defined callback function or object
-   * @param {string} postData POST body
-   * @return {object} Returns the connection object
-   */
-	asyncRequest:function(method, uri, callback, postData)
-	{
-		var o = (this._isFileUpload)?this.getConnectionObject(true):this.getConnectionObject();
-		var args = (callback && callback.argument)?callback.argument:null;
-
-		if(!o){
-			YAHOO.log('Unable to create connection object.', 'error', 'Connection');
-			return null;
-		}
-		else{
-
-			// Intialize any transaction-specific custom events, if provided.
-			if(callback && callback.customevents){
-				this.initCustomEvents(o, callback);
-			}
-
-			if(this._isFormSubmit){
-				if(this._isFileUpload){
-					this.uploadFile(o, callback, uri, postData);
-					return o;
-				}
-
-				// If the specified HTTP method is GET, setForm() will return an
-				// encoded string that is concatenated to the uri to
-				// create a querystring.
-				if(method.toUpperCase() == 'GET'){
-					if(this._sFormData.length !== 0){
-						// If the URI already contains a querystring, append an ampersand
-						// and then concatenate _sFormData to the URI.
-						uri += ((uri.indexOf('?') == -1)?'?':'&') + this._sFormData;
-					}
-				}
-				else if(method.toUpperCase() == 'POST'){
-					// If POST data exist in addition to the HTML form data,
-					// it will be concatenated to the form data.
-					postData = postData?this._sFormData + "&" + postData:this._sFormData;
-				}
-			}
-
-			if(method.toUpperCase() == 'GET' && (callback && callback.cache === false)){
-				// If callback.cache is defined and set to false, a
-				// timestamp value will be added to the querystring.
-				uri += ((uri.indexOf('?') == -1)?'?':'&') + "rnd=" + new Date().valueOf().toString();
-			}
-
-			o.conn.open(method, uri, true);
-
-			// Each transaction will automatically include a custom header of
-			// "X-Requested-With: XMLHttpRequest" to identify the request as
-			// having originated from Connection Manager.
-			if(this._use_default_xhr_header){
-				if(!this._default_headers['X-Requested-With']){
-					this.initHeader('X-Requested-With', this._default_xhr_header, true);
-					YAHOO.log('Initialize transaction header X-Request-Header to XMLHttpRequest.', 'info', 'Connection');
-				}
-			}
-
-			//If the transaction method is POST and the POST header value is set to true
-			//or a custom value, initalize the Content-Type header to this value.
-			if((method.toUpperCase() === 'POST' && this._use_default_post_header) && this._isFormSubmit === false){
-				this.initHeader('Content-Type', this._default_post_header);
-				YAHOO.log('Initialize header Content-Type to application/x-www-form-urlencoded; UTF-8 for POST transaction.', 'info', 'Connection');
-			}
-
-			//Initialize all default and custom HTTP headers,
-			if(this._has_default_headers || this._has_http_headers){
-				this.setHeader(o);
-			}
-
-			this.handleReadyState(o, callback);
-			o.conn.send(postData || '');
-			YAHOO.log('Transaction ' + o.tId + ' sent.', 'info', 'Connection');
-
-
-			// Reset the HTML form data and state properties as
-			// soon as the data are submitted.
-			if(this._isFormSubmit === true){
-				this.resetFormState();
-			}
-
-			// Fire global custom event -- startEvent
-			this.startEvent.fire(o, args);
-
-			if(o.startEvent){
-				// Fire transaction custom event -- startEvent
-				o.startEvent.fire(o, args);
-			}
-
-			return o;
-		}
-	},
-
-  /**
-   * @description This method creates and subscribes custom events,
-   * specific to each transaction
-   * @method initCustomEvents
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @param {callback} callback The user-defined callback object
-   * @return {void}
-   */
-	initCustomEvents:function(o, callback)
-	{
-		var prop;
-		// Enumerate through callback.customevents members and bind/subscribe
-		// events that match in the _customEvents table.
-		for(prop in callback.customevents){
-			if(this._customEvents[prop][0]){
-				// Create the custom event
-				o[this._customEvents[prop][0]] = new YAHOO.util.CustomEvent(this._customEvents[prop][1], (callback.scope)?callback.scope:null);
-				YAHOO.log('Transaction-specific Custom Event ' + o[this._customEvents[prop][1]] + ' created.', 'info', 'Connection');
-
-				// Subscribe the custom event
-				o[this._customEvents[prop][0]].subscribe(callback.customevents[prop]);
-				YAHOO.log('Transaction-specific Custom Event ' + o[this._customEvents[prop][1]] + ' subscribed.', 'info', 'Connection');
-			}
-		}
-	},
-
-  /**
-   * @description This method serves as a timer that polls the XHR object's readyState
-   * property during a transaction, instead of binding a callback to the
-   * onreadystatechange event.  Upon readyState 4, handleTransactionResponse
-   * will process the response, and the timer will be cleared.
-   * @method handleReadyState
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @param {callback} callback The user-defined callback object
-   * @return {void}
-   */
-
-    handleReadyState:function(o, callback)
-
-    {
-		var oConn = this;
-		var args = (callback && callback.argument)?callback.argument:null;
-
-		if(callback && callback.timeout){
-			this._timeOut[o.tId] = window.setTimeout(function(){ oConn.abort(o, callback, true); }, callback.timeout);
-		}
-
-		this._poll[o.tId] = window.setInterval(
-			function(){
-				if(o.conn && o.conn.readyState === 4){
-
-					// Clear the polling interval for the transaction
-					// and remove the reference from _poll.
-					window.clearInterval(oConn._poll[o.tId]);
-					delete oConn._poll[o.tId];
-
-					if(callback && callback.timeout){
-						window.clearTimeout(oConn._timeOut[o.tId]);
-						delete oConn._timeOut[o.tId];
-					}
-
-					// Fire global custom event -- completeEvent
-					oConn.completeEvent.fire(o, args);
-
-					if(o.completeEvent){
-						// Fire transaction custom event -- completeEvent
-						o.completeEvent.fire(o, args);
-					}
-
-					oConn.handleTransactionResponse(o, callback);
-				}
-			}
-		,this._polling_interval);
-    },
-
-  /**
-   * @description This method attempts to interpret the server response and
-   * determine whether the transaction was successful, or if an error or
-   * exception was encountered.
-   * @method handleTransactionResponse
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @param {object} callback The user-defined callback object
-   * @param {boolean} isAbort Determines if the transaction was terminated via abort().
-   * @return {void}
-   */
-    handleTransactionResponse:function(o, callback, isAbort)
-    {
-		var httpStatus, responseObject;
-		var args = (callback && callback.argument)?callback.argument:null;
-
-		try
-		{
-			if(o.conn.status !== undefined && o.conn.status !== 0){
-				httpStatus = o.conn.status;
-			}
-			else{
-				httpStatus = 13030;
-			}
-		}
-		catch(e){
-
-			 // 13030 is a custom code to indicate the condition -- in Mozilla/FF --
-			 // when the XHR object's status and statusText properties are
-			 // unavailable, and a query attempt throws an exception.
-			httpStatus = 13030;
-		}
-
-		if(httpStatus >= 200 && httpStatus < 300 || httpStatus === 1223){
-			responseObject = this.createResponseObject(o, args);
-			if(callback && callback.success){
-				if(!callback.scope){
-					callback.success(responseObject);
-					YAHOO.log('Success callback. HTTP code is ' + httpStatus, 'info', 'Connection');
-				}
-				else{
-					// If a scope property is defined, the callback will be fired from
-					// the context of the object.
-					callback.success.apply(callback.scope, [responseObject]);
-					YAHOO.log('Success callback with scope. HTTP code is ' + httpStatus, 'info', 'Connection');
-				}
-			}
-
-			// Fire global custom event -- successEvent
-			this.successEvent.fire(responseObject);
-
-			if(o.successEvent){
-				// Fire transaction custom event -- successEvent
-				o.successEvent.fire(responseObject);
-			}
-		}
-		else{
-			switch(httpStatus){
-				// The following cases are wininet.dll error codes that may be encountered.
-				case 12002: // Server timeout
-				case 12029: // 12029 to 12031 correspond to dropped connections.
-				case 12030:
-				case 12031:
-				case 12152: // Connection closed by server.
-				case 13030: // See above comments for variable status.
-					responseObject = this.createExceptionObject(o.tId, args, (isAbort?isAbort:false));
-					if(callback && callback.failure){
-						if(!callback.scope){
-							callback.failure(responseObject);
-							YAHOO.log('Failure callback. Exception detected. Status code is ' + httpStatus, 'warn', 'Connection');
-						}
-						else{
-							callback.failure.apply(callback.scope, [responseObject]);
-							YAHOO.log('Failure callback with scope. Exception detected. Status code is ' + httpStatus, 'warn', 'Connection');
-						}
-					}
-
-					break;
-				default:
-					responseObject = this.createResponseObject(o, args);
-					if(callback && callback.failure){
-						if(!callback.scope){
-							callback.failure(responseObject);
-							YAHOO.log('Failure callback. HTTP status code is ' + httpStatus, 'warn', 'Connection');
-						}
-						else{
-							callback.failure.apply(callback.scope, [responseObject]);
-							YAHOO.log('Failure callback with scope. HTTP status code is ' + httpStatus, 'warn', 'Connection');
-						}
-					}
-			}
-
-			// Fire global custom event -- failureEvent
-			this.failureEvent.fire(responseObject);
-
-			if(o.failureEvent){
-				// Fire transaction custom event -- failureEvent
-				o.failureEvent.fire(responseObject);
-			}
-
-		}
-
-		this.releaseObject(o);
-		responseObject = null;
-    },
-
-  /**
-   * @description This method evaluates the server response, creates and returns the results via
-   * its properties.  Success and failure cases will differ in the response
-   * object's property values.
-   * @method createResponseObject
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @param {callbackArg} callbackArg The user-defined argument or arguments to be passed to the callback
-   * @return {object}
-   */
-    createResponseObject:function(o, callbackArg)
-    {
-		var obj = {};
-		var headerObj = {};
-
-		try
-		{
-			var headerStr = o.conn.getAllResponseHeaders();
-			var header = headerStr.split('\n');
-			for(var i=0; i<header.length; i++){
-				var delimitPos = header[i].indexOf(':');
-				if(delimitPos != -1){
-					headerObj[header[i].substring(0,delimitPos)] = header[i].substring(delimitPos+2);
-				}
-			}
-		}
-		catch(e){}
-
-		obj.tId = o.tId;
-		// Normalize IE's response to HTTP 204 when Win error 1223.
-		obj.status = (o.conn.status == 1223)?204:o.conn.status;
-		// Normalize IE's statusText to "No Content" instead of "Unknown".
-		obj.statusText = (o.conn.status == 1223)?"No Content":o.conn.statusText;
-		obj.getResponseHeader = headerObj;
-		obj.getAllResponseHeaders = headerStr;
-		obj.responseText = o.conn.responseText;
-		obj.responseXML = o.conn.responseXML;
-
-		if(callbackArg){
-			obj.argument = callbackArg;
-		}
-
-		return obj;
-    },
-
-  /**
-   * @description If a transaction cannot be completed due to dropped or closed connections,
-   * there may be not be enough information to build a full response object.
-   * The failure callback will be fired and this specific condition can be identified
-   * by a status property value of 0.
-   *
-   * If an abort was successful, the status property will report a value of -1.
-   *
-   * @method createExceptionObject
-   * @private
-   * @static
-   * @param {int} tId The Transaction Id
-   * @param {callbackArg} callbackArg The user-defined argument or arguments to be passed to the callback
-   * @param {boolean} isAbort Determines if the exception case is caused by a transaction abort
-   * @return {object}
-   */
-    createExceptionObject:function(tId, callbackArg, isAbort)
-    {
-		var COMM_CODE = 0;
-		var COMM_ERROR = 'communication failure';
-		var ABORT_CODE = -1;
-		var ABORT_ERROR = 'transaction aborted';
-
-		var obj = {};
-
-		obj.tId = tId;
-		if(isAbort){
-			obj.status = ABORT_CODE;
-			obj.statusText = ABORT_ERROR;
-		}
-		else{
-			obj.status = COMM_CODE;
-			obj.statusText = COMM_ERROR;
-		}
-
-		if(callbackArg){
-			obj.argument = callbackArg;
-		}
-
-		return obj;
-    },
-
-  /**
-   * @description Method that initializes the custom HTTP headers for the each transaction.
-   * @method initHeader
-   * @public
-   * @static
-   * @param {string} label The HTTP header label
-   * @param {string} value The HTTP header value
-   * @param {string} isDefault Determines if the specific header is a default header
-   * automatically sent with each transaction.
-   * @return {void}
-   */
-	initHeader:function(label, value, isDefault)
-	{
-		var headerObj = (isDefault)?this._default_headers:this._http_headers;
-		headerObj[label] = value;
-
-		if(isDefault){
-			this._has_default_headers = true;
-		}
-		else{
-			this._has_http_headers = true;
-		}
-	},
-
-
-  /**
-   * @description Accessor that sets the HTTP headers for each transaction.
-   * @method setHeader
-   * @private
-   * @static
-   * @param {object} o The connection object for the transaction.
-   * @return {void}
-   */
-	setHeader:function(o)
-	{
-		var prop;
-		if(this._has_default_headers){
-			for(prop in this._default_headers){
-				if(YAHOO.lang.hasOwnProperty(this._default_headers, prop)){
-					o.conn.setRequestHeader(prop, this._default_headers[prop]);
-					YAHOO.log('Default HTTP header ' + prop + ' set with value of ' + this._default_headers[prop], 'info', 'Connection');
-				}
-			}
-		}
-
-		if(this._has_http_headers){
-			for(prop in this._http_headers){
-				if(YAHOO.lang.hasOwnProperty(this._http_headers, prop)){
-					o.conn.setRequestHeader(prop, this._http_headers[prop]);
-					YAHOO.log('HTTP header ' + prop + ' set with value of ' + this._http_headers[prop], 'info', 'Connection');
-				}
-			}
-			delete this._http_headers;
-
-			this._http_headers = {};
-			this._has_http_headers = false;
-		}
-	},
-
-  /**
-   * @description Resets the default HTTP headers object
-   * @method resetDefaultHeaders
-   * @public
-   * @static
-   * @return {void}
-   */
-	resetDefaultHeaders:function(){
-		delete this._default_headers;
-		this._default_headers = {};
-		this._has_default_headers = false;
-	},
-
-  /**
-   * @description This method assembles the form label and value pairs and
-   * constructs an encoded string.
-   * asyncRequest() will automatically initialize the transaction with a
-   * a HTTP header Content-Type of application/x-www-form-urlencoded.
-   * @method setForm
-   * @public
-   * @static
-   * @param {string || object} form id or name attribute, or form object.
-   * @param {boolean} optional enable file upload.
-   * @param {boolean} optional enable file upload over SSL in IE only.
-   * @return {string} string of the HTML form field name and value pairs..
-   */
-	setForm:function(formId, isUpload, secureUri)
-	{
-        var oForm, oElement, oName, oValue, oDisabled,
-            hasSubmit = false,
-            data = [], item = 0,
-            i,len,j,jlen,opt;
-
-		this.resetFormState();
-
-		if(typeof formId == 'string'){
-			// Determine if the argument is a form id or a form name.
-			// Note form name usage is deprecated by supported
-			// here for legacy reasons.
-			oForm = (document.getElementById(formId) || document.forms[formId]);
-		}
-		else if(typeof formId == 'object'){
-			// Treat argument as an HTML form object.
-			oForm = formId;
-		}
-		else{
-			YAHOO.log('Unable to create form object ' + formId, 'warn', 'Connection');
-			return;
-		}
-
-		// If the isUpload argument is true, setForm will call createFrame to initialize
-		// an iframe as the form target.
-		//
-		// The argument secureURI is also required by IE in SSL environments
-		// where the secureURI string is a fully qualified HTTP path, used to set the source
-		// of the iframe, to a stub resource in the same domain.
-		if(isUpload){
-
-			// Create iframe in preparation for file upload.
-			this.createFrame(secureUri?secureUri:null);
-
-			// Set form reference and file upload properties to true.
-			this._isFormSubmit = true;
-			this._isFileUpload = true;
-			this._formNode = oForm;
-
-			return;
-
-		}
-
-		// Iterate over the form elements collection to construct the
-		// label-value pairs.
-		for (i=0,len=oForm.elements.length; i<len; ++i){
-			oElement  = oForm.elements[i];
-			oDisabled = oElement.disabled;
-            oName     = oElement.name;
-
-			// Do not submit fields that are disabled or
-			// do not have a name attribute value.
-			if(!oDisabled && oName)
-			{
-                oName  = encodeURIComponent(oName)+'=';
-                oValue = encodeURIComponent(oElement.value);
-
-				switch(oElement.type)
-				{
-                    // Safari, Opera, FF all default opt.value from .text if
-                    // value attribute not specified in markup
-					case 'select-one':
-                        if (oElement.selectedIndex > -1) {
-                            opt = oElement.options[oElement.selectedIndex];
-                            data[item++] = oName + encodeURIComponent(
-                                (opt.attributes.value && opt.attributes.value.specified) ? opt.value : opt.text);
-                        }
-                        break;
-					case 'select-multiple':
-                        if (oElement.selectedIndex > -1) {
-                            for(j=oElement.selectedIndex, jlen=oElement.options.length; j<jlen; ++j){
-                                opt = oElement.options[j];
-                                if (opt.selected) {
-                                    data[item++] = oName + encodeURIComponent(
-                                        (opt.attributes.value && opt.attributes.value.specified) ? opt.value : opt.text);
-                                }
-                            }
-                        }
-						break;
-					case 'radio':
-					case 'checkbox':
-						if(oElement.checked){
-                            data[item++] = oName + oValue;
-						}
-						break;
-					case 'file':
-						// stub case as XMLHttpRequest will only send the file path as a string.
-					case undefined:
-						// stub case for fieldset element which returns undefined.
-					case 'reset':
-						// stub case for input type reset button.
-					case 'button':
-						// stub case for input type button elements.
-						break;
-					case 'submit':
-						if(hasSubmit === false){
-							if(this._hasSubmitListener && this._submitElementValue){
-                                data[item++] = this._submitElementValue;
-							}
-							else{
-                                data[item++] = oName + oValue;
-							}
-
-							hasSubmit = true;
-						}
-						break;
-					default:
-                        data[item++] = oName + oValue;
-				}
-			}
-		}
-
-		this._isFormSubmit = true;
-		this._sFormData = data.join('&');
-
-		YAHOO.log('Form initialized for transaction. HTML form POST message is: ' + this._sFormData, 'info', 'Connection');
-
-		this.initHeader('Content-Type', this._default_form_header);
-		YAHOO.log('Initialize header Content-Type to application/x-www-form-urlencoded for setForm() transaction.', 'info', 'Connection');
-
-		return this._sFormData;
-	},
-
-  /**
-   * @description Resets HTML form properties when an HTML form or HTML form
-   * with file upload transaction is sent.
-   * @method resetFormState
-   * @private
-   * @static
-   * @return {void}
-   */
-	resetFormState:function(){
-		this._isFormSubmit = false;
-		this._isFileUpload = false;
-		this._formNode = null;
-		this._sFormData = "";
-	},
-
-  /**
-   * @description Creates an iframe to be used for form file uploads.  It is remove from the
-   * document upon completion of the upload transaction.
-   * @method createFrame
-   * @private
-   * @static
-   * @param {string} optional qualified path of iframe resource for SSL in IE.
-   * @return {void}
-   */
-	createFrame:function(secureUri){
-
-		// IE does not allow the setting of id and name attributes as object
-		// properties via createElement().  A different iframe creation
-		// pattern is required for IE.
-		var frameId = 'yuiIO' + this._transaction_id;
-		var io;
-		if(YAHOO.env.ua.ie){
-			io = document.createElement('<iframe id="' + frameId + '" name="' + frameId + '" />');
-
-			// IE will throw a security exception in an SSL environment if the
-			// iframe source is undefined.
-			if(typeof secureUri == 'boolean'){
-				io.src = 'javascript:false';
-			}
-		}
-		else{
-			io = document.createElement('iframe');
-			io.id = frameId;
-			io.name = frameId;
-		}
-
-		io.style.position = 'absolute';
-		io.style.top = '-1000px';
-		io.style.left = '-1000px';
-
-		document.body.appendChild(io);
-		YAHOO.log('File upload iframe created. Id is:' + frameId, 'info', 'Connection');
-	},
-
-  /**
-   * @description Parses the POST data and creates hidden form elements
-   * for each key-value, and appends them to the HTML form object.
-   * @method appendPostData
-   * @private
-   * @static
-   * @param {string} postData The HTTP POST data
-   * @return {array} formElements Collection of hidden fields.
-   */
-	appendPostData:function(postData)
-	{
-		var formElements = [],
-			postMessage = postData.split('&'),
-			i, delimitPos;
-		for(i=0; i < postMessage.length; i++){
-			delimitPos = postMessage[i].indexOf('=');
-			if(delimitPos != -1){
-				formElements[i] = document.createElement('input');
-				formElements[i].type = 'hidden';
-				formElements[i].name = decodeURIComponent(postMessage[i].substring(0,delimitPos));
-				formElements[i].value = decodeURIComponent(postMessage[i].substring(delimitPos+1));
-				this._formNode.appendChild(formElements[i]);
-			}
-		}
-
-		return formElements;
-	},
-
-  /**
-   * @description Uploads HTML form, inclusive of files/attachments, using the
-   * iframe created in createFrame to facilitate the transaction.
-   * @method uploadFile
-   * @private
-   * @static
-   * @param {int} id The transaction id.
-   * @param {object} callback User-defined callback object.
-   * @param {string} uri Fully qualified path of resource.
-   * @param {string} postData POST data to be submitted in addition to HTML form.
-   * @return {void}
-   */
-	uploadFile:function(o, callback, uri, postData){
-
-		// Each iframe has an id prefix of "yuiIO" followed
-		// by the unique transaction id.
-		var frameId = 'yuiIO' + o.tId,
-		    uploadEncoding = 'multipart/form-data',
-		    io = document.getElementById(frameId),
-		    oConn = this,
-			args = (callback && callback.argument)?callback.argument:null,
-            oElements,i,prop,obj;
-
-		// Track original HTML form attribute values.
-		var rawFormAttributes =
-		{
-			action:this._formNode.getAttribute('action'),
-			method:this._formNode.getAttribute('method'),
-			target:this._formNode.getAttribute('target')
-		};
-
-		// Initialize the HTML form properties in case they are
-		// not defined in the HTML form.
-		this._formNode.setAttribute('action', uri);
-		this._formNode.setAttribute('method', 'POST');
-		this._formNode.setAttribute('target', frameId);
-
-		if(YAHOO.env.ua.ie){
-			// IE does not respect property enctype for HTML forms.
-			// Instead it uses the property - "encoding".
-			this._formNode.setAttribute('encoding', uploadEncoding);
-		}
-		else{
-			this._formNode.setAttribute('enctype', uploadEncoding);
-		}
-
-		if(postData){
-			oElements = this.appendPostData(postData);
-		}
-
-		// Start file upload.
-		this._formNode.submit();
-
-		// Fire global custom event -- startEvent
-		this.startEvent.fire(o, args);
-
-		if(o.startEvent){
-			// Fire transaction custom event -- startEvent
-			o.startEvent.fire(o, args);
-		}
-
-		// Start polling if a callback is present and the timeout
-		// property has been defined.
-		if(callback && callback.timeout){
-			this._timeOut[o.tId] = window.setTimeout(function(){ oConn.abort(o, callback, true); }, callback.timeout);
-		}
-
-		// Remove HTML elements created by appendPostData
-		if(oElements && oElements.length > 0){
-			for(i=0; i < oElements.length; i++){
-				this._formNode.removeChild(oElements[i]);
-			}
-		}
-
-		// Restore HTML form attributes to their original
-		// values prior to file upload.
-		for(prop in rawFormAttributes){
-			if(YAHOO.lang.hasOwnProperty(rawFormAttributes, prop)){
-				if(rawFormAttributes[prop]){
-					this._formNode.setAttribute(prop, rawFormAttributes[prop]);
-				}
-				else{
-					this._formNode.removeAttribute(prop);
-				}
-			}
-		}
-
-		// Reset HTML form state properties.
-		this.resetFormState();
-
-		// Create the upload callback handler that fires when the iframe
-		// receives the load event.  Subsequently, the event handler is detached
-		// and the iframe removed from the document.
-		var uploadCallback = function()
-		{
-			if(callback && callback.timeout){
-				window.clearTimeout(oConn._timeOut[o.tId]);
-				delete oConn._timeOut[o.tId];
-			}
-
-			// Fire global custom event -- completeEvent
-			oConn.completeEvent.fire(o, args);
-
-			if(o.completeEvent){
-				// Fire transaction custom event -- completeEvent
-				o.completeEvent.fire(o, args);
-			}
-
-			obj = {
-			    tId : o.tId,
-			    argument : callback.argument
-            };
-
-			try
-			{
-				// responseText and responseXML will be populated with the same data from the iframe.
-				// Since the HTTP headers cannot be read from the iframe
-				obj.responseText = io.contentWindow.document.body?io.contentWindow.document.body.innerHTML:io.contentWindow.document.documentElement.textContent;
-				obj.responseXML = io.contentWindow.document.XMLDocument?io.contentWindow.document.XMLDocument:io.contentWindow.document;
-			}
-			catch(e){}
-
-			if(callback && callback.upload){
-				if(!callback.scope){
-					callback.upload(obj);
-					YAHOO.log('Upload callback.', 'info', 'Connection');
-				}
-				else{
-					callback.upload.apply(callback.scope, [obj]);
-					YAHOO.log('Upload callback with scope.', 'info', 'Connection');
-				}
-			}
-
-			// Fire global custom event -- uploadEvent
-			oConn.uploadEvent.fire(obj);
-
-			if(o.uploadEvent){
-				// Fire transaction custom event -- uploadEvent
-				o.uploadEvent.fire(obj);
-			}
-
-			YAHOO.util.Event.removeListener(io, "load", uploadCallback);
-
-			setTimeout(
-				function(){
-					document.body.removeChild(io);
-					oConn.releaseObject(o);
-					YAHOO.log('File upload iframe destroyed. Id is:' + frameId, 'info', 'Connection');
-				}, 100);
-		};
-
-		// Bind the onload handler to the iframe to detect the file upload response.
-		YAHOO.util.Event.addListener(io, "load", uploadCallback);
-	},
-
-  /**
-   * @description Method to terminate a transaction, if it has not reached readyState 4.
-   * @method abort
-   * @public
-   * @static
-   * @param {object} o The connection object returned by asyncRequest.
-   * @param {object} callback  User-defined callback object.
-   * @param {string} isTimeout boolean to indicate if abort resulted from a callback timeout.
-   * @return {boolean}
-   */
-	abort:function(o, callback, isTimeout)
-	{
-		var abortStatus;
-		var args = (callback && callback.argument)?callback.argument:null;
-
-
-		if(o && o.conn){
-			if(this.isCallInProgress(o)){
-				// Issue abort request
-				o.conn.abort();
-
-				window.clearInterval(this._poll[o.tId]);
-				delete this._poll[o.tId];
-
-				if(isTimeout){
-					window.clearTimeout(this._timeOut[o.tId]);
-					delete this._timeOut[o.tId];
-				}
-
-				abortStatus = true;
-			}
-		}
-		else if(o && o.isUpload === true){
-			var frameId = 'yuiIO' + o.tId;
-			var io = document.getElementById(frameId);
-
-			if(io){
-				// Remove all listeners on the iframe prior to
-				// its destruction.
-				YAHOO.util.Event.removeListener(io, "load");
-				// Destroy the iframe facilitating the transaction.
-				document.body.removeChild(io);
-				YAHOO.log('File upload iframe destroyed. Id is:' + frameId, 'info', 'Connection');
-
-				if(isTimeout){
-					window.clearTimeout(this._timeOut[o.tId]);
-					delete this._timeOut[o.tId];
-				}
-
-				abortStatus = true;
-			}
-		}
-		else{
-			abortStatus = false;
-		}
-
-		if(abortStatus === true){
-			// Fire global custom event -- abortEvent
-			this.abortEvent.fire(o, args);
-
-			if(o.abortEvent){
-				// Fire transaction custom event -- abortEvent
-				o.abortEvent.fire(o, args);
-			}
-
-			this.handleTransactionResponse(o, callback, true);
-			YAHOO.log('Transaction ' + o.tId + ' aborted.', 'info', 'Connection');
-		}
-
-		return abortStatus;
-	},
-
-  /**
-   * @description Determines if the transaction is still being processed.
-   * @method isCallInProgress
-   * @public
-   * @static
-   * @param {object} o The connection object returned by asyncRequest
-   * @return {boolean}
-   */
-	isCallInProgress:function(o)
-	{
-		// if the XHR object assigned to the transaction has not been dereferenced,
-		// then check its readyState status.  Otherwise, return false.
-		if(o && o.conn){
-			return o.conn.readyState !== 4 && o.conn.readyState !== 0;
-		}
-		else if(o && o.isUpload === true){
-			var frameId = 'yuiIO' + o.tId;
-			return document.getElementById(frameId)?true:false;
-		}
-		else{
-			return false;
-		}
-	},
-
-  /**
-   * @description Dereference the XHR instance and the connection object after the transaction is completed.
-   * @method releaseObject
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @return {void}
-   */
-	releaseObject:function(o)
-	{
-		if(o && o.conn){
-			//dereference the XHR instance.
-			o.conn = null;
-
-			YAHOO.log('Connection object for transaction ' + o.tId + ' destroyed.', 'info', 'Connection');
-
-			//dereference the connection object.
-			o = null;
-		}
-	}
-};
-YAHOO.register("connection", YAHOO.util.Connect, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/connection/connection-min.js b/eclipse.org-common/yui/2.6.0/build/connection/connection-min.js
deleted file mode 100644
index 9c9c771..0000000
--- a/eclipse.org-common/yui/2.6.0/build/connection/connection-min.js
+++ /dev/null
@@ -1,8 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.util.Connect={_msxml_progid:["Microsoft.XMLHTTP","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP"],_http_headers:{},_has_http_headers:false,_use_default_post_header:true,_default_post_header:"application/x-www-form-urlencoded; charset=UTF-8",_default_form_header:"application/x-www-form-urlencoded",_use_default_xhr_header:true,_default_xhr_header:"XMLHttpRequest",_has_default_headers:true,_default_headers:{},_isFormSubmit:false,_isFileUpload:false,_formNode:null,_sFormData:null,_poll:{},_timeOut:{},_polling_interval:50,_transaction_id:0,_submitElementValue:null,_hasSubmitListener:(function(){if(YAHOO.util.Event){YAHOO.util.Event.addListener(document,"click",function(B){var A=YAHOO.util.Event.getTarget(B);if(A.nodeName.toLowerCase()=="input"&&(A.type&&A.type.toLowerCase()=="submit")){YAHOO.util.Connect._submitElementValue=encodeURIComponent(A.name)+"="+encodeURIComponent(A.value);}});return true;}return false;})(),startEvent:new YAHOO.util.CustomEvent("start"),completeEvent:new YAHOO.util.CustomEvent("complete"),successEvent:new YAHOO.util.CustomEvent("success"),failureEvent:new YAHOO.util.CustomEvent("failure"),uploadEvent:new YAHOO.util.CustomEvent("upload"),abortEvent:new YAHOO.util.CustomEvent("abort"),_customEvents:{onStart:["startEvent","start"],onComplete:["completeEvent","complete"],onSuccess:["successEvent","success"],onFailure:["failureEvent","failure"],onUpload:["uploadEvent","upload"],onAbort:["abortEvent","abort"]},setProgId:function(A){this._msxml_progid.unshift(A);},setDefaultPostHeader:function(A){if(typeof A=="string"){this._default_post_header=A;}else{if(typeof A=="boolean"){this._use_default_post_header=A;}}},setDefaultXhrHeader:function(A){if(typeof A=="string"){this._default_xhr_header=A;}else{this._use_default_xhr_header=A;}},setPollingInterval:function(A){if(typeof A=="number"&&isFinite(A)){this._polling_interval=A;}},createXhrObject:function(F){var E,A;try{A=new XMLHttpRequest();E={conn:A,tId:F};}catch(D){for(var B=0;B<this._msxml_progid.length;++B){try{A=new ActiveXObject(this._msxml_progid[B]);E={conn:A,tId:F};break;}catch(C){}}}finally{return E;}},getConnectionObject:function(A){var C;var D=this._transaction_id;try{if(!A){C=this.createXhrObject(D);}else{C={};C.tId=D;C.isUpload=true;}if(C){this._transaction_id++;}}catch(B){}finally{return C;}},asyncRequest:function(F,C,E,A){var D=(this._isFileUpload)?this.getConnectionObject(true):this.getConnectionObject();var B=(E&&E.argument)?E.argument:null;if(!D){return null;}else{if(E&&E.customevents){this.initCustomEvents(D,E);}if(this._isFormSubmit){if(this._isFileUpload){this.uploadFile(D,E,C,A);return D;}if(F.toUpperCase()=="GET"){if(this._sFormData.length!==0){C+=((C.indexOf("?")==-1)?"?":"&")+this._sFormData;}}else{if(F.toUpperCase()=="POST"){A=A?this._sFormData+"&"+A:this._sFormData;}}}if(F.toUpperCase()=="GET"&&(E&&E.cache===false)){C+=((C.indexOf("?")==-1)?"?":"&")+"rnd="+new Date().valueOf().toString();}D.conn.open(F,C,true);if(this._use_default_xhr_header){if(!this._default_headers["X-Requested-With"]){this.initHeader("X-Requested-With",this._default_xhr_header,true);}}if((F.toUpperCase()==="POST"&&this._use_default_post_header)&&this._isFormSubmit===false){this.initHeader("Content-Type",this._default_post_header);}if(this._has_default_headers||this._has_http_headers){this.setHeader(D);}this.handleReadyState(D,E);D.conn.send(A||"");if(this._isFormSubmit===true){this.resetFormState();}this.startEvent.fire(D,B);if(D.startEvent){D.startEvent.fire(D,B);}return D;}},initCustomEvents:function(A,C){var B;for(B in C.customevents){if(this._customEvents[B][0]){A[this._customEvents[B][0]]=new YAHOO.util.CustomEvent(this._customEvents[B][1],(C.scope)?C.scope:null);A[this._customEvents[B][0]].subscribe(C.customevents[B]);}}},handleReadyState:function(C,D){var B=this;var A=(D&&D.argument)?D.argument:null;if(D&&D.timeout){this._timeOut[C.tId]=window.setTimeout(function(){B.abort(C,D,true);},D.timeout);}this._poll[C.tId]=window.setInterval(function(){if(C.conn&&C.conn.readyState===4){window.clearInterval(B._poll[C.tId]);delete B._poll[C.tId];if(D&&D.timeout){window.clearTimeout(B._timeOut[C.tId]);delete B._timeOut[C.tId];}B.completeEvent.fire(C,A);if(C.completeEvent){C.completeEvent.fire(C,A);}B.handleTransactionResponse(C,D);}},this._polling_interval);},handleTransactionResponse:function(F,G,A){var D,C;var B=(G&&G.argument)?G.argument:null;try{if(F.conn.status!==undefined&&F.conn.status!==0){D=F.conn.status;}else{D=13030;}}catch(E){D=13030;}if(D>=200&&D<300||D===1223){C=this.createResponseObject(F,B);if(G&&G.success){if(!G.scope){G.success(C);}else{G.success.apply(G.scope,[C]);}}this.successEvent.fire(C);if(F.successEvent){F.successEvent.fire(C);}}else{switch(D){case 12002:case 12029:case 12030:case 12031:case 12152:case 13030:C=this.createExceptionObject(F.tId,B,(A?A:false));if(G&&G.failure){if(!G.scope){G.failure(C);}else{G.failure.apply(G.scope,[C]);}}break;default:C=this.createResponseObject(F,B);if(G&&G.failure){if(!G.scope){G.failure(C);}else{G.failure.apply(G.scope,[C]);}}}this.failureEvent.fire(C);if(F.failureEvent){F.failureEvent.fire(C);}}this.releaseObject(F);C=null;},createResponseObject:function(A,G){var D={};var I={};try{var C=A.conn.getAllResponseHeaders();var F=C.split("\n");for(var E=0;E<F.length;E++){var B=F[E].indexOf(":");if(B!=-1){I[F[E].substring(0,B)]=F[E].substring(B+2);}}}catch(H){}D.tId=A.tId;D.status=(A.conn.status==1223)?204:A.conn.status;D.statusText=(A.conn.status==1223)?"No Content":A.conn.statusText;D.getResponseHeader=I;D.getAllResponseHeaders=C;D.responseText=A.conn.responseText;D.responseXML=A.conn.responseXML;if(G){D.argument=G;}return D;},createExceptionObject:function(H,D,A){var F=0;var G="communication failure";var C=-1;var B="transaction aborted";var E={};E.tId=H;if(A){E.status=C;E.statusText=B;}else{E.status=F;E.statusText=G;}if(D){E.argument=D;}return E;},initHeader:function(A,D,C){var B=(C)?this._default_headers:this._http_headers;B[A]=D;if(C){this._has_default_headers=true;}else{this._has_http_headers=true;
-}},setHeader:function(A){var B;if(this._has_default_headers){for(B in this._default_headers){if(YAHOO.lang.hasOwnProperty(this._default_headers,B)){A.conn.setRequestHeader(B,this._default_headers[B]);}}}if(this._has_http_headers){for(B in this._http_headers){if(YAHOO.lang.hasOwnProperty(this._http_headers,B)){A.conn.setRequestHeader(B,this._http_headers[B]);}}delete this._http_headers;this._http_headers={};this._has_http_headers=false;}},resetDefaultHeaders:function(){delete this._default_headers;this._default_headers={};this._has_default_headers=false;},setForm:function(M,H,C){var L,B,K,I,P,J=false,F=[],O=0,E,G,D,N,A;this.resetFormState();if(typeof M=="string"){L=(document.getElementById(M)||document.forms[M]);}else{if(typeof M=="object"){L=M;}else{return ;}}if(H){this.createFrame(C?C:null);this._isFormSubmit=true;this._isFileUpload=true;this._formNode=L;return ;}for(E=0,G=L.elements.length;E<G;++E){B=L.elements[E];P=B.disabled;K=B.name;if(!P&&K){K=encodeURIComponent(K)+"=";I=encodeURIComponent(B.value);switch(B.type){case"select-one":if(B.selectedIndex>-1){A=B.options[B.selectedIndex];F[O++]=K+encodeURIComponent((A.attributes.value&&A.attributes.value.specified)?A.value:A.text);}break;case"select-multiple":if(B.selectedIndex>-1){for(D=B.selectedIndex,N=B.options.length;D<N;++D){A=B.options[D];if(A.selected){F[O++]=K+encodeURIComponent((A.attributes.value&&A.attributes.value.specified)?A.value:A.text);}}}break;case"radio":case"checkbox":if(B.checked){F[O++]=K+I;}break;case"file":case undefined:case"reset":case"button":break;case"submit":if(J===false){if(this._hasSubmitListener&&this._submitElementValue){F[O++]=this._submitElementValue;}else{F[O++]=K+I;}J=true;}break;default:F[O++]=K+I;}}}this._isFormSubmit=true;this._sFormData=F.join("&");this.initHeader("Content-Type",this._default_form_header);return this._sFormData;},resetFormState:function(){this._isFormSubmit=false;this._isFileUpload=false;this._formNode=null;this._sFormData="";},createFrame:function(A){var B="yuiIO"+this._transaction_id;var C;if(YAHOO.env.ua.ie){C=document.createElement('<iframe id="'+B+'" name="'+B+'" />');if(typeof A=="boolean"){C.src="javascript:false";}}else{C=document.createElement("iframe");C.id=B;C.name=B;}C.style.position="absolute";C.style.top="-1000px";C.style.left="-1000px";document.body.appendChild(C);},appendPostData:function(A){var D=[],B=A.split("&"),C,E;for(C=0;C<B.length;C++){E=B[C].indexOf("=");if(E!=-1){D[C]=document.createElement("input");D[C].type="hidden";D[C].name=decodeURIComponent(B[C].substring(0,E));D[C].value=decodeURIComponent(B[C].substring(E+1));this._formNode.appendChild(D[C]);}}return D;},uploadFile:function(D,N,E,C){var I="yuiIO"+D.tId,J="multipart/form-data",L=document.getElementById(I),O=this,K=(N&&N.argument)?N.argument:null,M,H,B,G;var A={action:this._formNode.getAttribute("action"),method:this._formNode.getAttribute("method"),target:this._formNode.getAttribute("target")};this._formNode.setAttribute("action",E);this._formNode.setAttribute("method","POST");this._formNode.setAttribute("target",I);if(YAHOO.env.ua.ie){this._formNode.setAttribute("encoding",J);}else{this._formNode.setAttribute("enctype",J);}if(C){M=this.appendPostData(C);}this._formNode.submit();this.startEvent.fire(D,K);if(D.startEvent){D.startEvent.fire(D,K);}if(N&&N.timeout){this._timeOut[D.tId]=window.setTimeout(function(){O.abort(D,N,true);},N.timeout);}if(M&&M.length>0){for(H=0;H<M.length;H++){this._formNode.removeChild(M[H]);}}for(B in A){if(YAHOO.lang.hasOwnProperty(A,B)){if(A[B]){this._formNode.setAttribute(B,A[B]);}else{this._formNode.removeAttribute(B);}}}this.resetFormState();var F=function(){if(N&&N.timeout){window.clearTimeout(O._timeOut[D.tId]);delete O._timeOut[D.tId];}O.completeEvent.fire(D,K);if(D.completeEvent){D.completeEvent.fire(D,K);}G={tId:D.tId,argument:N.argument};try{G.responseText=L.contentWindow.document.body?L.contentWindow.document.body.innerHTML:L.contentWindow.document.documentElement.textContent;G.responseXML=L.contentWindow.document.XMLDocument?L.contentWindow.document.XMLDocument:L.contentWindow.document;}catch(P){}if(N&&N.upload){if(!N.scope){N.upload(G);}else{N.upload.apply(N.scope,[G]);}}O.uploadEvent.fire(G);if(D.uploadEvent){D.uploadEvent.fire(G);}YAHOO.util.Event.removeListener(L,"load",F);setTimeout(function(){document.body.removeChild(L);O.releaseObject(D);},100);};YAHOO.util.Event.addListener(L,"load",F);},abort:function(E,G,A){var D;var B=(G&&G.argument)?G.argument:null;if(E&&E.conn){if(this.isCallInProgress(E)){E.conn.abort();window.clearInterval(this._poll[E.tId]);delete this._poll[E.tId];if(A){window.clearTimeout(this._timeOut[E.tId]);delete this._timeOut[E.tId];}D=true;}}else{if(E&&E.isUpload===true){var C="yuiIO"+E.tId;var F=document.getElementById(C);if(F){YAHOO.util.Event.removeListener(F,"load");document.body.removeChild(F);if(A){window.clearTimeout(this._timeOut[E.tId]);delete this._timeOut[E.tId];}D=true;}}else{D=false;}}if(D===true){this.abortEvent.fire(E,B);if(E.abortEvent){E.abortEvent.fire(E,B);}this.handleTransactionResponse(E,G,true);}return D;},isCallInProgress:function(B){if(B&&B.conn){return B.conn.readyState!==4&&B.conn.readyState!==0;}else{if(B&&B.isUpload===true){var A="yuiIO"+B.tId;return document.getElementById(A)?true:false;}else{return false;}}},releaseObject:function(A){if(A&&A.conn){A.conn=null;A=null;}}};YAHOO.register("connection",YAHOO.util.Connect,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/connection/connection.js b/eclipse.org-common/yui/2.6.0/build/connection/connection.js
deleted file mode 100644
index 700a5d1..0000000
--- a/eclipse.org-common/yui/2.6.0/build/connection/connection.js
+++ /dev/null
@@ -1,1379 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The Connection Manager provides a simplified interface to the XMLHttpRequest
- * object.  It handles cross-browser instantiantion of XMLHttpRequest, negotiates the
- * interactive states and server response, returning the results to a pre-defined
- * callback you create.
- *
- * @namespace YAHOO.util
- * @module connection
- * @requires yahoo
- * @requires event
- */
-
-/**
- * The Connection Manager singleton provides methods for creating and managing
- * asynchronous transactions.
- *
- * @class Connect
- */
-
-YAHOO.util.Connect =
-{
-  /**
-   * @description Array of MSFT ActiveX ids for XMLHttpRequest.
-   * @property _msxml_progid
-   * @private
-   * @static
-   * @type array
-   */
-	_msxml_progid:[
-		'Microsoft.XMLHTTP',
-		'MSXML2.XMLHTTP.3.0',
-		'MSXML2.XMLHTTP'
-		],
-
-  /**
-   * @description Object literal of HTTP header(s)
-   * @property _http_header
-   * @private
-   * @static
-   * @type object
-   */
-	_http_headers:{},
-
-  /**
-   * @description Determines if HTTP headers are set.
-   * @property _has_http_headers
-   * @private
-   * @static
-   * @type boolean
-   */
-	_has_http_headers:false,
-
- /**
-  * @description Determines if a default header of
-  * Content-Type of 'application/x-www-form-urlencoded'
-  * will be added to any client HTTP headers sent for POST
-  * transactions.
-  * @property _use_default_post_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _use_default_post_header:true,
-
- /**
-  * @description The default header used for POST transactions.
-  * @property _default_post_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _default_post_header:'application/x-www-form-urlencoded; charset=UTF-8',
-
- /**
-  * @description The default header used for transactions involving the
-  * use of HTML forms.
-  * @property _default_form_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _default_form_header:'application/x-www-form-urlencoded',
-
- /**
-  * @description Determines if a default header of
-  * 'X-Requested-With: XMLHttpRequest'
-  * will be added to each transaction.
-  * @property _use_default_xhr_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _use_default_xhr_header:true,
-
- /**
-  * @description The default header value for the label
-  * "X-Requested-With".  This is sent with each
-  * transaction, by default, to identify the
-  * request as being made by YUI Connection Manager.
-  * @property _default_xhr_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _default_xhr_header:'XMLHttpRequest',
-
- /**
-  * @description Determines if custom, default headers
-  * are set for each transaction.
-  * @property _has_default_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _has_default_headers:true,
-
- /**
-  * @description Determines if custom, default headers
-  * are set for each transaction.
-  * @property _has_default_header
-  * @private
-  * @static
-  * @type boolean
-  */
-    _default_headers:{},
-
- /**
-  * @description Property modified by setForm() to determine if the data
-  * should be submitted as an HTML form.
-  * @property _isFormSubmit
-  * @private
-  * @static
-  * @type boolean
-  */
-    _isFormSubmit:false,
-
- /**
-  * @description Property modified by setForm() to determine if a file(s)
-  * upload is expected.
-  * @property _isFileUpload
-  * @private
-  * @static
-  * @type boolean
-  */
-    _isFileUpload:false,
-
- /**
-  * @description Property modified by setForm() to set a reference to the HTML
-  * form node if the desired action is file upload.
-  * @property _formNode
-  * @private
-  * @static
-  * @type object
-  */
-    _formNode:null,
-
- /**
-  * @description Property modified by setForm() to set the HTML form data
-  * for each transaction.
-  * @property _sFormData
-  * @private
-  * @static
-  * @type string
-  */
-    _sFormData:null,
-
- /**
-  * @description Collection of polling references to the polling mechanism in handleReadyState.
-  * @property _poll
-  * @private
-  * @static
-  * @type object
-  */
-    _poll:{},
-
- /**
-  * @description Queue of timeout values for each transaction callback with a defined timeout value.
-  * @property _timeOut
-  * @private
-  * @static
-  * @type object
-  */
-    _timeOut:{},
-
-  /**
-   * @description The polling frequency, in milliseconds, for HandleReadyState.
-   * when attempting to determine a transaction's XHR readyState.
-   * The default is 50 milliseconds.
-   * @property _polling_interval
-   * @private
-   * @static
-   * @type int
-   */
-     _polling_interval:50,
-
-  /**
-   * @description A transaction counter that increments the transaction id for each transaction.
-   * @property _transaction_id
-   * @private
-   * @static
-   * @type int
-   */
-     _transaction_id:0,
-
-  /**
-   * @description Tracks the name-value pair of the "clicked" submit button if multiple submit
-   * buttons are present in an HTML form; and, if YAHOO.util.Event is available.
-   * @property _submitElementValue
-   * @private
-   * @static
-   * @type string
-   */
-	 _submitElementValue:null,
-
-  /**
-   * @description Determines whether YAHOO.util.Event is available and returns true or false.
-   * If true, an event listener is bound at the document level to trap click events that
-   * resolve to a target type of "Submit".  This listener will enable setForm() to determine
-   * the clicked "Submit" value in a multi-Submit button, HTML form.
-   * @property _hasSubmitListener
-   * @private
-   * @static
-   */
-	 _hasSubmitListener:(function()
-	 {
-		if(YAHOO.util.Event){
-			YAHOO.util.Event.addListener(
-				document,
-				'click',
-				function(e){
-					var obj = YAHOO.util.Event.getTarget(e);
-					if(obj.nodeName.toLowerCase() == 'input' && (obj.type && obj.type.toLowerCase() == 'submit')){
-						YAHOO.util.Connect._submitElementValue = encodeURIComponent(obj.name) + "=" + encodeURIComponent(obj.value);
-					}
-				});
-			return true;
-	    }
-	    return false;
-	 })(),
-
-  /**
-   * @description Custom event that fires at the start of a transaction
-   * @property startEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	startEvent: new YAHOO.util.CustomEvent('start'),
-
-  /**
-   * @description Custom event that fires when a transaction response has completed.
-   * @property completeEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	completeEvent: new YAHOO.util.CustomEvent('complete'),
-
-  /**
-   * @description Custom event that fires when handleTransactionResponse() determines a
-   * response in the HTTP 2xx range.
-   * @property successEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	successEvent: new YAHOO.util.CustomEvent('success'),
-
-  /**
-   * @description Custom event that fires when handleTransactionResponse() determines a
-   * response in the HTTP 4xx/5xx range.
-   * @property failureEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	failureEvent: new YAHOO.util.CustomEvent('failure'),
-
-  /**
-   * @description Custom event that fires when handleTransactionResponse() determines a
-   * response in the HTTP 4xx/5xx range.
-   * @property failureEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	uploadEvent: new YAHOO.util.CustomEvent('upload'),
-
-  /**
-   * @description Custom event that fires when a transaction is successfully aborted.
-   * @property abortEvent
-   * @private
-   * @static
-   * @type CustomEvent
-   */
-	abortEvent: new YAHOO.util.CustomEvent('abort'),
-
-  /**
-   * @description A reference table that maps callback custom events members to its specific
-   * event name.
-   * @property _customEvents
-   * @private
-   * @static
-   * @type object
-   */
-	_customEvents:
-	{
-		onStart:['startEvent', 'start'],
-		onComplete:['completeEvent', 'complete'],
-		onSuccess:['successEvent', 'success'],
-		onFailure:['failureEvent', 'failure'],
-		onUpload:['uploadEvent', 'upload'],
-		onAbort:['abortEvent', 'abort']
-	},
-
-  /**
-   * @description Member to add an ActiveX id to the existing xml_progid array.
-   * In the event(unlikely) a new ActiveX id is introduced, it can be added
-   * without internal code modifications.
-   * @method setProgId
-   * @public
-   * @static
-   * @param {string} id The ActiveX id to be added to initialize the XHR object.
-   * @return void
-   */
-	setProgId:function(id)
-	{
-		this._msxml_progid.unshift(id);
-	},
-
-  /**
-   * @description Member to override the default POST header.
-   * @method setDefaultPostHeader
-   * @public
-   * @static
-   * @param {boolean} b Set and use default header - true or false .
-   * @return void
-   */
-	setDefaultPostHeader:function(b)
-	{
-		if(typeof b == 'string'){
-			this._default_post_header = b;
-		}
-		else if(typeof b == 'boolean'){
-			this._use_default_post_header = b;
-		}
-	},
-
-  /**
-   * @description Member to override the default transaction header..
-   * @method setDefaultXhrHeader
-   * @public
-   * @static
-   * @param {boolean} b Set and use default header - true or false .
-   * @return void
-   */
-	setDefaultXhrHeader:function(b)
-	{
-		if(typeof b == 'string'){
-			this._default_xhr_header = b;
-		}
-		else{
-			this._use_default_xhr_header = b;
-		}
-	},
-
-  /**
-   * @description Member to modify the default polling interval.
-   * @method setPollingInterval
-   * @public
-   * @static
-   * @param {int} i The polling interval in milliseconds.
-   * @return void
-   */
-	setPollingInterval:function(i)
-	{
-		if(typeof i == 'number' && isFinite(i)){
-			this._polling_interval = i;
-		}
-	},
-
-  /**
-   * @description Instantiates a XMLHttpRequest object and returns an object with two properties:
-   * the XMLHttpRequest instance and the transaction id.
-   * @method createXhrObject
-   * @private
-   * @static
-   * @param {int} transactionId Property containing the transaction id for this transaction.
-   * @return object
-   */
-	createXhrObject:function(transactionId)
-	{
-		var obj,http;
-		try
-		{
-			// Instantiates XMLHttpRequest in non-IE browsers and assigns to http.
-			http = new XMLHttpRequest();
-			//  Object literal with http and tId properties
-			obj = { conn:http, tId:transactionId };
-		}
-		catch(e)
-		{
-			for(var i=0; i<this._msxml_progid.length; ++i){
-				try
-				{
-					// Instantiates XMLHttpRequest for IE and assign to http
-					http = new ActiveXObject(this._msxml_progid[i]);
-					//  Object literal with conn and tId properties
-					obj = { conn:http, tId:transactionId };
-					break;
-				}
-				catch(e2){}
-			}
-		}
-		finally
-		{
-			return obj;
-		}
-	},
-
-  /**
-   * @description This method is called by asyncRequest to create a
-   * valid connection object for the transaction.  It also passes a
-   * transaction id and increments the transaction id counter.
-   * @method getConnectionObject
-   * @private
-   * @static
-   * @return {object}
-   */
-	getConnectionObject:function(isFileUpload)
-	{
-		var o;
-		var tId = this._transaction_id;
-
-		try
-		{
-			if(!isFileUpload){
-				o = this.createXhrObject(tId);
-			}
-			else{
-				o = {};
-				o.tId = tId;
-				o.isUpload = true;
-			}
-
-			if(o){
-				this._transaction_id++;
-			}
-		}
-		catch(e){}
-		finally
-		{
-			return o;
-		}
-	},
-
-  /**
-   * @description Method for initiating an asynchronous request via the XHR object.
-   * @method asyncRequest
-   * @public
-   * @static
-   * @param {string} method HTTP transaction method
-   * @param {string} uri Fully qualified path of resource
-   * @param {callback} callback User-defined callback function or object
-   * @param {string} postData POST body
-   * @return {object} Returns the connection object
-   */
-	asyncRequest:function(method, uri, callback, postData)
-	{
-		var o = (this._isFileUpload)?this.getConnectionObject(true):this.getConnectionObject();
-		var args = (callback && callback.argument)?callback.argument:null;
-
-		if(!o){
-			return null;
-		}
-		else{
-
-			// Intialize any transaction-specific custom events, if provided.
-			if(callback && callback.customevents){
-				this.initCustomEvents(o, callback);
-			}
-
-			if(this._isFormSubmit){
-				if(this._isFileUpload){
-					this.uploadFile(o, callback, uri, postData);
-					return o;
-				}
-
-				// If the specified HTTP method is GET, setForm() will return an
-				// encoded string that is concatenated to the uri to
-				// create a querystring.
-				if(method.toUpperCase() == 'GET'){
-					if(this._sFormData.length !== 0){
-						// If the URI already contains a querystring, append an ampersand
-						// and then concatenate _sFormData to the URI.
-						uri += ((uri.indexOf('?') == -1)?'?':'&') + this._sFormData;
-					}
-				}
-				else if(method.toUpperCase() == 'POST'){
-					// If POST data exist in addition to the HTML form data,
-					// it will be concatenated to the form data.
-					postData = postData?this._sFormData + "&" + postData:this._sFormData;
-				}
-			}
-
-			if(method.toUpperCase() == 'GET' && (callback && callback.cache === false)){
-				// If callback.cache is defined and set to false, a
-				// timestamp value will be added to the querystring.
-				uri += ((uri.indexOf('?') == -1)?'?':'&') + "rnd=" + new Date().valueOf().toString();
-			}
-
-			o.conn.open(method, uri, true);
-
-			// Each transaction will automatically include a custom header of
-			// "X-Requested-With: XMLHttpRequest" to identify the request as
-			// having originated from Connection Manager.
-			if(this._use_default_xhr_header){
-				if(!this._default_headers['X-Requested-With']){
-					this.initHeader('X-Requested-With', this._default_xhr_header, true);
-				}
-			}
-
-			//If the transaction method is POST and the POST header value is set to true
-			//or a custom value, initalize the Content-Type header to this value.
-			if((method.toUpperCase() === 'POST' && this._use_default_post_header) && this._isFormSubmit === false){
-				this.initHeader('Content-Type', this._default_post_header);
-			}
-
-			//Initialize all default and custom HTTP headers,
-			if(this._has_default_headers || this._has_http_headers){
-				this.setHeader(o);
-			}
-
-			this.handleReadyState(o, callback);
-			o.conn.send(postData || '');
-
-
-			// Reset the HTML form data and state properties as
-			// soon as the data are submitted.
-			if(this._isFormSubmit === true){
-				this.resetFormState();
-			}
-
-			// Fire global custom event -- startEvent
-			this.startEvent.fire(o, args);
-
-			if(o.startEvent){
-				// Fire transaction custom event -- startEvent
-				o.startEvent.fire(o, args);
-			}
-
-			return o;
-		}
-	},
-
-  /**
-   * @description This method creates and subscribes custom events,
-   * specific to each transaction
-   * @method initCustomEvents
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @param {callback} callback The user-defined callback object
-   * @return {void}
-   */
-	initCustomEvents:function(o, callback)
-	{
-		var prop;
-		// Enumerate through callback.customevents members and bind/subscribe
-		// events that match in the _customEvents table.
-		for(prop in callback.customevents){
-			if(this._customEvents[prop][0]){
-				// Create the custom event
-				o[this._customEvents[prop][0]] = new YAHOO.util.CustomEvent(this._customEvents[prop][1], (callback.scope)?callback.scope:null);
-
-				// Subscribe the custom event
-				o[this._customEvents[prop][0]].subscribe(callback.customevents[prop]);
-			}
-		}
-	},
-
-  /**
-   * @description This method serves as a timer that polls the XHR object's readyState
-   * property during a transaction, instead of binding a callback to the
-   * onreadystatechange event.  Upon readyState 4, handleTransactionResponse
-   * will process the response, and the timer will be cleared.
-   * @method handleReadyState
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @param {callback} callback The user-defined callback object
-   * @return {void}
-   */
-
-    handleReadyState:function(o, callback)
-
-    {
-		var oConn = this;
-		var args = (callback && callback.argument)?callback.argument:null;
-
-		if(callback && callback.timeout){
-			this._timeOut[o.tId] = window.setTimeout(function(){ oConn.abort(o, callback, true); }, callback.timeout);
-		}
-
-		this._poll[o.tId] = window.setInterval(
-			function(){
-				if(o.conn && o.conn.readyState === 4){
-
-					// Clear the polling interval for the transaction
-					// and remove the reference from _poll.
-					window.clearInterval(oConn._poll[o.tId]);
-					delete oConn._poll[o.tId];
-
-					if(callback && callback.timeout){
-						window.clearTimeout(oConn._timeOut[o.tId]);
-						delete oConn._timeOut[o.tId];
-					}
-
-					// Fire global custom event -- completeEvent
-					oConn.completeEvent.fire(o, args);
-
-					if(o.completeEvent){
-						// Fire transaction custom event -- completeEvent
-						o.completeEvent.fire(o, args);
-					}
-
-					oConn.handleTransactionResponse(o, callback);
-				}
-			}
-		,this._polling_interval);
-    },
-
-  /**
-   * @description This method attempts to interpret the server response and
-   * determine whether the transaction was successful, or if an error or
-   * exception was encountered.
-   * @method handleTransactionResponse
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @param {object} callback The user-defined callback object
-   * @param {boolean} isAbort Determines if the transaction was terminated via abort().
-   * @return {void}
-   */
-    handleTransactionResponse:function(o, callback, isAbort)
-    {
-		var httpStatus, responseObject;
-		var args = (callback && callback.argument)?callback.argument:null;
-
-		try
-		{
-			if(o.conn.status !== undefined && o.conn.status !== 0){
-				httpStatus = o.conn.status;
-			}
-			else{
-				httpStatus = 13030;
-			}
-		}
-		catch(e){
-
-			 // 13030 is a custom code to indicate the condition -- in Mozilla/FF --
-			 // when the XHR object's status and statusText properties are
-			 // unavailable, and a query attempt throws an exception.
-			httpStatus = 13030;
-		}
-
-		if(httpStatus >= 200 && httpStatus < 300 || httpStatus === 1223){
-			responseObject = this.createResponseObject(o, args);
-			if(callback && callback.success){
-				if(!callback.scope){
-					callback.success(responseObject);
-				}
-				else{
-					// If a scope property is defined, the callback will be fired from
-					// the context of the object.
-					callback.success.apply(callback.scope, [responseObject]);
-				}
-			}
-
-			// Fire global custom event -- successEvent
-			this.successEvent.fire(responseObject);
-
-			if(o.successEvent){
-				// Fire transaction custom event -- successEvent
-				o.successEvent.fire(responseObject);
-			}
-		}
-		else{
-			switch(httpStatus){
-				// The following cases are wininet.dll error codes that may be encountered.
-				case 12002: // Server timeout
-				case 12029: // 12029 to 12031 correspond to dropped connections.
-				case 12030:
-				case 12031:
-				case 12152: // Connection closed by server.
-				case 13030: // See above comments for variable status.
-					responseObject = this.createExceptionObject(o.tId, args, (isAbort?isAbort:false));
-					if(callback && callback.failure){
-						if(!callback.scope){
-							callback.failure(responseObject);
-						}
-						else{
-							callback.failure.apply(callback.scope, [responseObject]);
-						}
-					}
-
-					break;
-				default:
-					responseObject = this.createResponseObject(o, args);
-					if(callback && callback.failure){
-						if(!callback.scope){
-							callback.failure(responseObject);
-						}
-						else{
-							callback.failure.apply(callback.scope, [responseObject]);
-						}
-					}
-			}
-
-			// Fire global custom event -- failureEvent
-			this.failureEvent.fire(responseObject);
-
-			if(o.failureEvent){
-				// Fire transaction custom event -- failureEvent
-				o.failureEvent.fire(responseObject);
-			}
-
-		}
-
-		this.releaseObject(o);
-		responseObject = null;
-    },
-
-  /**
-   * @description This method evaluates the server response, creates and returns the results via
-   * its properties.  Success and failure cases will differ in the response
-   * object's property values.
-   * @method createResponseObject
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @param {callbackArg} callbackArg The user-defined argument or arguments to be passed to the callback
-   * @return {object}
-   */
-    createResponseObject:function(o, callbackArg)
-    {
-		var obj = {};
-		var headerObj = {};
-
-		try
-		{
-			var headerStr = o.conn.getAllResponseHeaders();
-			var header = headerStr.split('\n');
-			for(var i=0; i<header.length; i++){
-				var delimitPos = header[i].indexOf(':');
-				if(delimitPos != -1){
-					headerObj[header[i].substring(0,delimitPos)] = header[i].substring(delimitPos+2);
-				}
-			}
-		}
-		catch(e){}
-
-		obj.tId = o.tId;
-		// Normalize IE's response to HTTP 204 when Win error 1223.
-		obj.status = (o.conn.status == 1223)?204:o.conn.status;
-		// Normalize IE's statusText to "No Content" instead of "Unknown".
-		obj.statusText = (o.conn.status == 1223)?"No Content":o.conn.statusText;
-		obj.getResponseHeader = headerObj;
-		obj.getAllResponseHeaders = headerStr;
-		obj.responseText = o.conn.responseText;
-		obj.responseXML = o.conn.responseXML;
-
-		if(callbackArg){
-			obj.argument = callbackArg;
-		}
-
-		return obj;
-    },
-
-  /**
-   * @description If a transaction cannot be completed due to dropped or closed connections,
-   * there may be not be enough information to build a full response object.
-   * The failure callback will be fired and this specific condition can be identified
-   * by a status property value of 0.
-   *
-   * If an abort was successful, the status property will report a value of -1.
-   *
-   * @method createExceptionObject
-   * @private
-   * @static
-   * @param {int} tId The Transaction Id
-   * @param {callbackArg} callbackArg The user-defined argument or arguments to be passed to the callback
-   * @param {boolean} isAbort Determines if the exception case is caused by a transaction abort
-   * @return {object}
-   */
-    createExceptionObject:function(tId, callbackArg, isAbort)
-    {
-		var COMM_CODE = 0;
-		var COMM_ERROR = 'communication failure';
-		var ABORT_CODE = -1;
-		var ABORT_ERROR = 'transaction aborted';
-
-		var obj = {};
-
-		obj.tId = tId;
-		if(isAbort){
-			obj.status = ABORT_CODE;
-			obj.statusText = ABORT_ERROR;
-		}
-		else{
-			obj.status = COMM_CODE;
-			obj.statusText = COMM_ERROR;
-		}
-
-		if(callbackArg){
-			obj.argument = callbackArg;
-		}
-
-		return obj;
-    },
-
-  /**
-   * @description Method that initializes the custom HTTP headers for the each transaction.
-   * @method initHeader
-   * @public
-   * @static
-   * @param {string} label The HTTP header label
-   * @param {string} value The HTTP header value
-   * @param {string} isDefault Determines if the specific header is a default header
-   * automatically sent with each transaction.
-   * @return {void}
-   */
-	initHeader:function(label, value, isDefault)
-	{
-		var headerObj = (isDefault)?this._default_headers:this._http_headers;
-		headerObj[label] = value;
-
-		if(isDefault){
-			this._has_default_headers = true;
-		}
-		else{
-			this._has_http_headers = true;
-		}
-	},
-
-
-  /**
-   * @description Accessor that sets the HTTP headers for each transaction.
-   * @method setHeader
-   * @private
-   * @static
-   * @param {object} o The connection object for the transaction.
-   * @return {void}
-   */
-	setHeader:function(o)
-	{
-		var prop;
-		if(this._has_default_headers){
-			for(prop in this._default_headers){
-				if(YAHOO.lang.hasOwnProperty(this._default_headers, prop)){
-					o.conn.setRequestHeader(prop, this._default_headers[prop]);
-				}
-			}
-		}
-
-		if(this._has_http_headers){
-			for(prop in this._http_headers){
-				if(YAHOO.lang.hasOwnProperty(this._http_headers, prop)){
-					o.conn.setRequestHeader(prop, this._http_headers[prop]);
-				}
-			}
-			delete this._http_headers;
-
-			this._http_headers = {};
-			this._has_http_headers = false;
-		}
-	},
-
-  /**
-   * @description Resets the default HTTP headers object
-   * @method resetDefaultHeaders
-   * @public
-   * @static
-   * @return {void}
-   */
-	resetDefaultHeaders:function(){
-		delete this._default_headers;
-		this._default_headers = {};
-		this._has_default_headers = false;
-	},
-
-  /**
-   * @description This method assembles the form label and value pairs and
-   * constructs an encoded string.
-   * asyncRequest() will automatically initialize the transaction with a
-   * a HTTP header Content-Type of application/x-www-form-urlencoded.
-   * @method setForm
-   * @public
-   * @static
-   * @param {string || object} form id or name attribute, or form object.
-   * @param {boolean} optional enable file upload.
-   * @param {boolean} optional enable file upload over SSL in IE only.
-   * @return {string} string of the HTML form field name and value pairs..
-   */
-	setForm:function(formId, isUpload, secureUri)
-	{
-        var oForm, oElement, oName, oValue, oDisabled,
-            hasSubmit = false,
-            data = [], item = 0,
-            i,len,j,jlen,opt;
-
-		this.resetFormState();
-
-		if(typeof formId == 'string'){
-			// Determine if the argument is a form id or a form name.
-			// Note form name usage is deprecated by supported
-			// here for legacy reasons.
-			oForm = (document.getElementById(formId) || document.forms[formId]);
-		}
-		else if(typeof formId == 'object'){
-			// Treat argument as an HTML form object.
-			oForm = formId;
-		}
-		else{
-			return;
-		}
-
-		// If the isUpload argument is true, setForm will call createFrame to initialize
-		// an iframe as the form target.
-		//
-		// The argument secureURI is also required by IE in SSL environments
-		// where the secureURI string is a fully qualified HTTP path, used to set the source
-		// of the iframe, to a stub resource in the same domain.
-		if(isUpload){
-
-			// Create iframe in preparation for file upload.
-			this.createFrame(secureUri?secureUri:null);
-
-			// Set form reference and file upload properties to true.
-			this._isFormSubmit = true;
-			this._isFileUpload = true;
-			this._formNode = oForm;
-
-			return;
-
-		}
-
-		// Iterate over the form elements collection to construct the
-		// label-value pairs.
-		for (i=0,len=oForm.elements.length; i<len; ++i){
-			oElement  = oForm.elements[i];
-			oDisabled = oElement.disabled;
-            oName     = oElement.name;
-
-			// Do not submit fields that are disabled or
-			// do not have a name attribute value.
-			if(!oDisabled && oName)
-			{
-                oName  = encodeURIComponent(oName)+'=';
-                oValue = encodeURIComponent(oElement.value);
-
-				switch(oElement.type)
-				{
-                    // Safari, Opera, FF all default opt.value from .text if
-                    // value attribute not specified in markup
-					case 'select-one':
-                        if (oElement.selectedIndex > -1) {
-                            opt = oElement.options[oElement.selectedIndex];
-                            data[item++] = oName + encodeURIComponent(
-                                (opt.attributes.value && opt.attributes.value.specified) ? opt.value : opt.text);
-                        }
-                        break;
-					case 'select-multiple':
-                        if (oElement.selectedIndex > -1) {
-                            for(j=oElement.selectedIndex, jlen=oElement.options.length; j<jlen; ++j){
-                                opt = oElement.options[j];
-                                if (opt.selected) {
-                                    data[item++] = oName + encodeURIComponent(
-                                        (opt.attributes.value && opt.attributes.value.specified) ? opt.value : opt.text);
-                                }
-                            }
-                        }
-						break;
-					case 'radio':
-					case 'checkbox':
-						if(oElement.checked){
-                            data[item++] = oName + oValue;
-						}
-						break;
-					case 'file':
-						// stub case as XMLHttpRequest will only send the file path as a string.
-					case undefined:
-						// stub case for fieldset element which returns undefined.
-					case 'reset':
-						// stub case for input type reset button.
-					case 'button':
-						// stub case for input type button elements.
-						break;
-					case 'submit':
-						if(hasSubmit === false){
-							if(this._hasSubmitListener && this._submitElementValue){
-                                data[item++] = this._submitElementValue;
-							}
-							else{
-                                data[item++] = oName + oValue;
-							}
-
-							hasSubmit = true;
-						}
-						break;
-					default:
-                        data[item++] = oName + oValue;
-				}
-			}
-		}
-
-		this._isFormSubmit = true;
-		this._sFormData = data.join('&');
-
-
-		this.initHeader('Content-Type', this._default_form_header);
-
-		return this._sFormData;
-	},
-
-  /**
-   * @description Resets HTML form properties when an HTML form or HTML form
-   * with file upload transaction is sent.
-   * @method resetFormState
-   * @private
-   * @static
-   * @return {void}
-   */
-	resetFormState:function(){
-		this._isFormSubmit = false;
-		this._isFileUpload = false;
-		this._formNode = null;
-		this._sFormData = "";
-	},
-
-  /**
-   * @description Creates an iframe to be used for form file uploads.  It is remove from the
-   * document upon completion of the upload transaction.
-   * @method createFrame
-   * @private
-   * @static
-   * @param {string} optional qualified path of iframe resource for SSL in IE.
-   * @return {void}
-   */
-	createFrame:function(secureUri){
-
-		// IE does not allow the setting of id and name attributes as object
-		// properties via createElement().  A different iframe creation
-		// pattern is required for IE.
-		var frameId = 'yuiIO' + this._transaction_id;
-		var io;
-		if(YAHOO.env.ua.ie){
-			io = document.createElement('<iframe id="' + frameId + '" name="' + frameId + '" />');
-
-			// IE will throw a security exception in an SSL environment if the
-			// iframe source is undefined.
-			if(typeof secureUri == 'boolean'){
-				io.src = 'javascript:false';
-			}
-		}
-		else{
-			io = document.createElement('iframe');
-			io.id = frameId;
-			io.name = frameId;
-		}
-
-		io.style.position = 'absolute';
-		io.style.top = '-1000px';
-		io.style.left = '-1000px';
-
-		document.body.appendChild(io);
-	},
-
-  /**
-   * @description Parses the POST data and creates hidden form elements
-   * for each key-value, and appends them to the HTML form object.
-   * @method appendPostData
-   * @private
-   * @static
-   * @param {string} postData The HTTP POST data
-   * @return {array} formElements Collection of hidden fields.
-   */
-	appendPostData:function(postData)
-	{
-		var formElements = [],
-			postMessage = postData.split('&'),
-			i, delimitPos;
-		for(i=0; i < postMessage.length; i++){
-			delimitPos = postMessage[i].indexOf('=');
-			if(delimitPos != -1){
-				formElements[i] = document.createElement('input');
-				formElements[i].type = 'hidden';
-				formElements[i].name = decodeURIComponent(postMessage[i].substring(0,delimitPos));
-				formElements[i].value = decodeURIComponent(postMessage[i].substring(delimitPos+1));
-				this._formNode.appendChild(formElements[i]);
-			}
-		}
-
-		return formElements;
-	},
-
-  /**
-   * @description Uploads HTML form, inclusive of files/attachments, using the
-   * iframe created in createFrame to facilitate the transaction.
-   * @method uploadFile
-   * @private
-   * @static
-   * @param {int} id The transaction id.
-   * @param {object} callback User-defined callback object.
-   * @param {string} uri Fully qualified path of resource.
-   * @param {string} postData POST data to be submitted in addition to HTML form.
-   * @return {void}
-   */
-	uploadFile:function(o, callback, uri, postData){
-
-		// Each iframe has an id prefix of "yuiIO" followed
-		// by the unique transaction id.
-		var frameId = 'yuiIO' + o.tId,
-		    uploadEncoding = 'multipart/form-data',
-		    io = document.getElementById(frameId),
-		    oConn = this,
-			args = (callback && callback.argument)?callback.argument:null,
-            oElements,i,prop,obj;
-
-		// Track original HTML form attribute values.
-		var rawFormAttributes =
-		{
-			action:this._formNode.getAttribute('action'),
-			method:this._formNode.getAttribute('method'),
-			target:this._formNode.getAttribute('target')
-		};
-
-		// Initialize the HTML form properties in case they are
-		// not defined in the HTML form.
-		this._formNode.setAttribute('action', uri);
-		this._formNode.setAttribute('method', 'POST');
-		this._formNode.setAttribute('target', frameId);
-
-		if(YAHOO.env.ua.ie){
-			// IE does not respect property enctype for HTML forms.
-			// Instead it uses the property - "encoding".
-			this._formNode.setAttribute('encoding', uploadEncoding);
-		}
-		else{
-			this._formNode.setAttribute('enctype', uploadEncoding);
-		}
-
-		if(postData){
-			oElements = this.appendPostData(postData);
-		}
-
-		// Start file upload.
-		this._formNode.submit();
-
-		// Fire global custom event -- startEvent
-		this.startEvent.fire(o, args);
-
-		if(o.startEvent){
-			// Fire transaction custom event -- startEvent
-			o.startEvent.fire(o, args);
-		}
-
-		// Start polling if a callback is present and the timeout
-		// property has been defined.
-		if(callback && callback.timeout){
-			this._timeOut[o.tId] = window.setTimeout(function(){ oConn.abort(o, callback, true); }, callback.timeout);
-		}
-
-		// Remove HTML elements created by appendPostData
-		if(oElements && oElements.length > 0){
-			for(i=0; i < oElements.length; i++){
-				this._formNode.removeChild(oElements[i]);
-			}
-		}
-
-		// Restore HTML form attributes to their original
-		// values prior to file upload.
-		for(prop in rawFormAttributes){
-			if(YAHOO.lang.hasOwnProperty(rawFormAttributes, prop)){
-				if(rawFormAttributes[prop]){
-					this._formNode.setAttribute(prop, rawFormAttributes[prop]);
-				}
-				else{
-					this._formNode.removeAttribute(prop);
-				}
-			}
-		}
-
-		// Reset HTML form state properties.
-		this.resetFormState();
-
-		// Create the upload callback handler that fires when the iframe
-		// receives the load event.  Subsequently, the event handler is detached
-		// and the iframe removed from the document.
-		var uploadCallback = function()
-		{
-			if(callback && callback.timeout){
-				window.clearTimeout(oConn._timeOut[o.tId]);
-				delete oConn._timeOut[o.tId];
-			}
-
-			// Fire global custom event -- completeEvent
-			oConn.completeEvent.fire(o, args);
-
-			if(o.completeEvent){
-				// Fire transaction custom event -- completeEvent
-				o.completeEvent.fire(o, args);
-			}
-
-			obj = {
-			    tId : o.tId,
-			    argument : callback.argument
-            };
-
-			try
-			{
-				// responseText and responseXML will be populated with the same data from the iframe.
-				// Since the HTTP headers cannot be read from the iframe
-				obj.responseText = io.contentWindow.document.body?io.contentWindow.document.body.innerHTML:io.contentWindow.document.documentElement.textContent;
-				obj.responseXML = io.contentWindow.document.XMLDocument?io.contentWindow.document.XMLDocument:io.contentWindow.document;
-			}
-			catch(e){}
-
-			if(callback && callback.upload){
-				if(!callback.scope){
-					callback.upload(obj);
-				}
-				else{
-					callback.upload.apply(callback.scope, [obj]);
-				}
-			}
-
-			// Fire global custom event -- uploadEvent
-			oConn.uploadEvent.fire(obj);
-
-			if(o.uploadEvent){
-				// Fire transaction custom event -- uploadEvent
-				o.uploadEvent.fire(obj);
-			}
-
-			YAHOO.util.Event.removeListener(io, "load", uploadCallback);
-
-			setTimeout(
-				function(){
-					document.body.removeChild(io);
-					oConn.releaseObject(o);
-				}, 100);
-		};
-
-		// Bind the onload handler to the iframe to detect the file upload response.
-		YAHOO.util.Event.addListener(io, "load", uploadCallback);
-	},
-
-  /**
-   * @description Method to terminate a transaction, if it has not reached readyState 4.
-   * @method abort
-   * @public
-   * @static
-   * @param {object} o The connection object returned by asyncRequest.
-   * @param {object} callback  User-defined callback object.
-   * @param {string} isTimeout boolean to indicate if abort resulted from a callback timeout.
-   * @return {boolean}
-   */
-	abort:function(o, callback, isTimeout)
-	{
-		var abortStatus;
-		var args = (callback && callback.argument)?callback.argument:null;
-
-
-		if(o && o.conn){
-			if(this.isCallInProgress(o)){
-				// Issue abort request
-				o.conn.abort();
-
-				window.clearInterval(this._poll[o.tId]);
-				delete this._poll[o.tId];
-
-				if(isTimeout){
-					window.clearTimeout(this._timeOut[o.tId]);
-					delete this._timeOut[o.tId];
-				}
-
-				abortStatus = true;
-			}
-		}
-		else if(o && o.isUpload === true){
-			var frameId = 'yuiIO' + o.tId;
-			var io = document.getElementById(frameId);
-
-			if(io){
-				// Remove all listeners on the iframe prior to
-				// its destruction.
-				YAHOO.util.Event.removeListener(io, "load");
-				// Destroy the iframe facilitating the transaction.
-				document.body.removeChild(io);
-
-				if(isTimeout){
-					window.clearTimeout(this._timeOut[o.tId]);
-					delete this._timeOut[o.tId];
-				}
-
-				abortStatus = true;
-			}
-		}
-		else{
-			abortStatus = false;
-		}
-
-		if(abortStatus === true){
-			// Fire global custom event -- abortEvent
-			this.abortEvent.fire(o, args);
-
-			if(o.abortEvent){
-				// Fire transaction custom event -- abortEvent
-				o.abortEvent.fire(o, args);
-			}
-
-			this.handleTransactionResponse(o, callback, true);
-		}
-
-		return abortStatus;
-	},
-
-  /**
-   * @description Determines if the transaction is still being processed.
-   * @method isCallInProgress
-   * @public
-   * @static
-   * @param {object} o The connection object returned by asyncRequest
-   * @return {boolean}
-   */
-	isCallInProgress:function(o)
-	{
-		// if the XHR object assigned to the transaction has not been dereferenced,
-		// then check its readyState status.  Otherwise, return false.
-		if(o && o.conn){
-			return o.conn.readyState !== 4 && o.conn.readyState !== 0;
-		}
-		else if(o && o.isUpload === true){
-			var frameId = 'yuiIO' + o.tId;
-			return document.getElementById(frameId)?true:false;
-		}
-		else{
-			return false;
-		}
-	},
-
-  /**
-   * @description Dereference the XHR instance and the connection object after the transaction is completed.
-   * @method releaseObject
-   * @private
-   * @static
-   * @param {object} o The connection object
-   * @return {void}
-   */
-	releaseObject:function(o)
-	{
-		if(o && o.conn){
-			//dereference the XHR instance.
-			o.conn = null;
-
-
-			//dereference the connection object.
-			o = null;
-		}
-	}
-};
-YAHOO.register("connection", YAHOO.util.Connect, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/container/README b/eclipse.org-common/yui/2.6.0/build/container/README
deleted file mode 100644
index c2140e3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/README
+++ /dev/null
@@ -1,1129 +0,0 @@
-Container Release Notes
-
-*** version 2.6.0 ***
-
-Changes:
---------
-
-+ 1px rounded corners in Sam-Skin, added in 2.3.0, are no longer
-  rendered in IE6 or IE7.
-  
-  hasLayout and relative positioning applied 
-  to the header, body and footer elements to achieve the 1px 
-  rounded corners had functional side effects (such as the inability
-  to shrink-wrap auto width containers, and the creation of invalid
-  stacking contexts)
-  
-  1px rounded corners can be re-applied with a CSS patch if required,
-  as discussed on the container documentation web page.
-  
-+ We now attempt to focus the first focusable element inside a Panel,
-  when it is shown (as is done with Dialog).
-  
-+ Setting the "height" configuration property will now result in the 
-  container's body element being resized to fill out any empty 
-  vertical space. This behavior can be configured using the 
-  "autofillheight" configuration property discussed below.
-
-Added the following features:
------------------------------
-
-+ Added a new "preventcontextoverlap" configuration property used 
-  to manage whether or not an Overlay instance should overlap its 
-  context element (defined using the "context" configuration property)
-  when the "constraintoviewport" configuration property is set 
-  to "true".
-
-+ Added ability to specify event triggers when using the "context"
-  configuration property. The container wil re-align itself with 
-  the context element in response to these trigger events.
-
-  See context configuration property documentation for usage details.
-  
-+ Added "autofillheight" configuration property, which is set to "body"
-  by default. This configuration property can be used to specify which
-  of the 3 container element - "header", "body", "footer" should be
-  resized to fill out any remaining vertical space when the container's
-  "height" configuration property is set.
-
-  The property can be set to false/null to disable the feature if 
-  desired.
-  
-+ Panel now supports focusFirst and focusLast methods, as 
-  well as tab, shift-tab looping when modal (similar to Dialog).
-
-Fixed the following bugs:
--------------------------
-
-+ Fixed issue with tooltip iframe remaining visible in situations
-  where the page was scrolled down.
-  
-+ Fixed OverlayManager.find to return null, if the Overlay cannot
-  be found.
-
-+ OverlayManager no longer overwrites focus or blur methods on the 
-  registered container, if they already exist (e.g. for Menu). Instead
-  it registers focus/blur event listeners to maintain OverlayManager
-  state in such situations.
-  
-+ Panels/Dialogs without a fixed width specified (auto width containers) 
-  now shrink-wrap correctly in IE6, IE7 (see 1px rounded corner discussion 
-  above)
-
-+ Added text to the close icon, to enhance accessibility for screen 
-  readers. Also changed the close icon element from a span, to an anchor
-  to facilate keyboard tab access.
-  
-+ Added title to text resize monitor iframe, to assist screen readers.
-
-+ Fixed modal mask resizing when going from a larger to a smaller window
-  size.
-  
-+ hideMaskEvent is now fired after all modal mask relatd state changes 
-  (including changes to the document.body) have taken place. 
-  
-  Originally it was fired before removing the "masked" class from 
-  document.body.
-  
-+ Fixed Sam Skin look/feel for default Dialog buttons. Originally 
-  disabled default buttons looked the same as enabled default buttons.
-  
-+ Fixed asynchronous Dialog submission failure for cases where the form
-  contained elements named "action" or "method".
-  
-+ Fixed Dialog button focus methods when using YUI Buttons.
-
-+ Modal Dialogs buttons are now included in the tab, shift-tab flow. 
-  Originally buttons in Modal dialogs were unreachable when tabbing.
-  
-+ Individual focus handlers attached to all non-container focusable
-  elements (used to enforce modality), resulted in poor performance 
-  when showing/hiding modal Panels, especially in IE, on pages with
-  a large number of focusable elements.
-  
-  Instead of individual listeners, Panel now registers a single 
-  focus listener on the document to enforce modality, improving
-  performance and scalability for modal solutions.
-  
-+ Files for optional component dependencies (e.g. animation, dragdrop,
-  connection) can now be included after container's js files, without
-  breaking related functionality.
-  
-+ Fixed Config to remove (null out) current entry from the 
-  config queue, before invoking fireEvent for the entry, to 
-  keep it from being re-added to the end of the queue if 
-  listeners were to set a property which superceded the entry.
-
-*** version 2.5.2 ***
-
-+ No change.
-
-*** version 2.5.1 ***
-
-Fixed the following bugs:
--------------------------
-
-+ Module.setBody, setHeader and setFooter methods now accept
-  DocumentFragments. This feature was implicitly available
-  in versions prior to 2.5.0 and is now officially supported.
-
-Changes:
---------
-
-+ Optimized addition of Modality focus handlers on masked
-  elements (which are used to enforce modality) and added 
-  ability to disable feature, to avoid timeout script errors 
-  in IE if your page contains a very large number of focusable 
-  elements.
-
-  Additionally changes to Event in 2.5.1 should allow
-  for increased scalability, when using Modal panels containing
-  large numbers of focusable elements on the page.
-
-  Added a YAHOO.widget.Panel.FOCUSABLE property, defining 
-  the set of elements which should have focus handlers applied 
-  when covered by the Modal mask.
-
-  If you wish to disable the addition of focus handlers to all
-  focusable elements on the page when a Modal Panel is displayed,
-  the property can be set to an empty array:
-
-        YAHOO.widget.Panel.FOCUSABLE = [];
-
-  NOTE: This will mean that elements under mask may still be
-  accessible using the keyboard, however the mask will still 
-  prevent mouse access to elements.
-
-*** version 2.5.0 ***
-
-Fixed the following bugs:
--------------------------
-
-+ We now add the text resize monitor iframe to the DOM in a timeout,
-  to help alleviate the perpetual loading indicator seen in 
-  Firefox 2.0.0.8 (Gecko 1.8.1.8) and above on Windows.
-
-+ Changed the closing script tag string used in the resize monitor, to 
-  allow container-min.js, container_core-min.js content to be used inline.
-
-+ Fixed problem with underlay size being too short in IE6 when setting up
-  an initially visible Dialog with buttons.
-  
-+ Removed overflow:auto applied to the modal mask for all browsers other 
-  than gecko/MacOS to help avoid the "missing text cursor" Gecko bug. 
-  Overflow:auto is still applied to for Gecko/MacOS to help avoid 
-  scrollbar bleedthrough, another Gecko bug (discussed in Container's 
-  known issues section).
-  
-Added the following features:
------------------------------
-
-+ Added a "hideaftersubmit" config property to Dialog, to allow the end
-  user to configure whether or not the Dialog should be hidden after
-  it has been submitted. By default it is set to false, to provide 
-  backwards compatibility.
-  
-+ Added contextMouseOverEvent, contextMouseOutEvent and 
-  contextTriggerEvent events to Tooltip, which provide access to the 
-  context element when the user mouses over a context element, mouses 
-  out of a context element, and before a tooltip is about to be 
-  triggered (displayed) for a context element. See the API docs for
-  these events for futher details.
-  
-+ Added a "disabled" config property to Tooltip, to allow the user
-  to dynamically disable a tooltip.
-  
-Changes:
---------
-
-+ Optimized constraintoviewport handling for Overlays which haven't
-  been specifically positioned, so that the constraint checks aren't
-  made before every show.
-
-*** version 2.4.0 ***
-
-Fixed the following bugs:
--------------------------
-
-+ constraintoviewport and fixedcenter now handle Overlays which are 
-  larger than the viewport. The Overlay will be positioned such that
-  it's top, left corner is in the viewport. Panel's draggable 
-  behavior now also honors constraintoviewport, if the panel is 
-  larger than the viewport.
-
-+ constrainToViewport will now correctly constrain Overlays which 
-  haven't been specifically positioned (don't have an XY value set).
-
-+ Overlay/OverlayManager bringToTop methods will bring Overlays to 
-  the top of the stack, even if their current zindex is the same as 
-  other Overlays on the page.
-
-+ Fixed double textResizeEvents fired on gecko based browsers (e.g
-  Firefox 2.x).
-
-+ Panel underlay now resizes correctly in Safari 2.x, when the 
-  content of the Panel is modified (e.g. when setBody() is called).
-  
-+ Tooltip "text" configuration property is no longer overridden by
-  the "title" attribute value on the context element if both are
-  set. The "text" configuration property takes precedence 
-  (as indicated in the Tooltip documentation).
-
-+ Transparent shadows no longer become opaque (black) in IE6/IE7 
-  when a Panel with ContainerEffect.FADE is hidden and then 
-  shown again. Also on IE6/IE7 transparent shadows no longer 
-  appear opaque while animation is in progress.
-
-+ An empty header is no longer created for non-draggable 
-  Dialogs/SimpleDialogs which don't provide their own headers.
-  By design, an empty header is still created for draggable 
-  Dialogs/SimpleDialogs which don't provide a header, in order 
-  to provide a drag handle.
-  
-+ Select boxes inside Modal Panels on IE6 are no longer hidden.
-
-+ In Sam Skin, Dialog/SimpleDialog default and non-default HTML 
-  buttons (used when YUI Button is not included on the page) now 
-  have a consistent look. Previously style properties intended 
-  for default YUI Buttons, were being incorrectly applied to 
-  default HTML buttons, giving them a look inconsistent with 
-  non-default buttons.
-
-Added the following features:
------------------------------
-
-+ Added "dragOnly" configuration property to Panel, to leverage
-  the "dragOnly" configuration property added to the DragDrop 
-  utility for 2.4.0.
-
-  When the "dragOnly" configuration property is set to true,
-  the DD instance created for the Panel will not check for drop 
-  targets on the page, improving performance during drag operations 
-  which don't require drop target interaction.
-
-  The property is set to "false" by default to maintain backwards
-  compatibility with older 2.x releases, but should be set to "true"
-  if no drop targets for the Panel exist on the page.
-
-  See the DragDrop utilities 2.4.0 README for additional information.
-
-*** version 2.3.1 ***
-
-Fixed the following bugs:
--------------------------
-
-+ To help reduce the occurrence of "Operation Aborted" errors in IE, 
-  containers which are rendered to the document's BODY element (e.g. 
-  myOverlay.render(document.body)) are now inserted before the first
-  child of the BODY element. This applies to both the container 
-  element as well as the iframe shim if enabled.
-
-  Prior to 2.3.1, these two elements were appended as the last 
-  children of the BODY element.
-
-  When rendering to any other element on the page, the behavior is 
-  unchanged and both the container and shim are appended as the last 
-  children of the element.
-
-  Upgrade Impact For Containers Rendered To Document.Body
-  -------------------------------------------------------
-  If you have an xy coordinate and non-zero z-index specified for 
-  your container there should be no negative impact.
-  
-  If you haven't specified an xy position, the fix could result
-  in a shift in your container position, depending on other elements
-  on the page.
-
-  If you haven't specified a z-index and are relying on DOM order to 
-  stack the container, you may see a change in stacking order of 
-  the container or iframe shim.
-
-  Both these changes can be resolved by setting a specific z-index
-  and position based on the layout of other elements on your page.
-  
-  If you do need to revert to 2.3.0 behavior, a configuration property
-  "appendtodocumentbody" has been added to Module, which can be set to
-  true.
-
-  The change to stacking order is discussed in detail below in 
-  relation to other z-index fixes made for 2.3.1.
-
-+ Z-index is now applied correctly for Overlay/Panel elements, their 
-  corresponding iframe shims, and modal masks (for Panels).
-  This fix applies to both the default z-index based on the CSS 
-  for the Overlay/Panel and specific z-indices set using the 
-  "zindex" configuration parameter.
-
-  Default z-index values are:
-
-     Overlay/Panel element: 2
-     Iframe shim: 1
-     Mask: 1
-  
-  The iframe shim and modal mask z-index will always be set to one less
-  than the Overlay/Panel z-index.
-
-  PLEASE NOTE:
-  
-  As a result of the fix to reduce "Operation Aborted" errors,
-  setting a z-index of 1 on an Overlay/Panel rendered to document.body 
-  will result in its iframe shim and modal mask (which will have a 
-  z-index of 0) being rendered behind other positioned elements in the 
-  document.
-
-  This is because the Overlay/Panel, iframe shim and mask are 
-  inserted as the first children of the BODY element and hence any 
-  positioned elements with a z-index of 0 or auto which occur after 
-  them in the document will be stacked on top of them as per W3C spec.
-
-  If you need to keep the Overlay/Panel above positioned elements on your 
-  page, it's z-index needs to be set to 2 or more.
-
-  In general it's advisable to manage the z-index of positioned elements 
-  on your page deliberately by setting a z-index, to avoid having their 
-  order in the document define their stacking order.
-  
-  For detailed stacking order information see:
-  - http://www.w3.org/TR/CSS21/visuren.html#layers
-  - http://developer.mozilla.org/en/docs/Understanding_CSS_z-index:The_st
-    acking_context
-
-+ Module now correctly recognizes standard module header, body and footer 
-  DIVs when they have extra CSS classes applied in addition to the 
-  required hd, bd, and ft classes. e.g. <div class="bd news"></div>.
-
-+ An empty header (set to $#160;) is created for draggable Panels which
-  don't have a header specified, to provide a drag handle. This fixes a
-  regression introduced in 2.3.0 so that 2.2.2 behavior is restored.
-  
-+ Dialog.destroy has been fixed to account for Dialog form elements which 
-  may not be direct children of the standard module body ("bd") element.
-
-+ SimpleDialog.destory now completes successfully if the optional 
-  button-beta.js dependancy is not included on the page.
-  
-+ Destroying Overlays registered with the OverlayManager no longer results in a 
-  JavaScript error. The Overlay is destroyed and removed from the 
-  OverlayManager correctly.
-  
-+ Submitting a Dialog form directly (e.g. using a "submit" button, hitting
-  enter on a single text field form) no longer throws a JavaScript error.
-
-Known Issues
-------------
-
-+ IE: Borders for tables with border-collapse:collapse remain visible
-  -------------------------------------------------------------------
-  If an Overlay, or any of its subclasses, contains a table with its
-  border-collapse CSS property set to "collapse" instead of the default 
-  value of "separate", the borders of the table will remain visible, when 
-  the Overlay is configured to be hidden initially. The table contents 
-  will be hidden correctly.
-  
-  This is due to an IE bug, reproducible by the basic test case below:
-  
-     <style type="text/css">
-        .box  {visibility:hidden;}
-        td    {border:1px solid red;}
-        table {border-collapse:collapse;}
-     </style>
-
-     <div class="box">
-        <table>
-           <tr>
-               <td>1</td>
-               <td>2</td>
-           </tr>
-        </table>
-     </div>
-
-  Setting the DIV elements "style.visibility" JS property fixes the 
-  problem with the simple test case. NOTE: Setting the style in markup 
-  using the DIV's style attribute does not.
-
-  Extending this to Container, the simplest workaround if you're not 
-  using effects, is to use Overlay's hide() method to setup visibility. 
-  This will set the Overlay's element "style.visibility" property. e.g.
-
-      // Start visible, then hide.
-      var ovr = YAHOO.widget.Overlay("ovr");
-      ovr.render();
-      ovr.hide();
-      
-  You can also apply this workaround if you want to use effects by 
-  setting the effect up after you hide. e.g.
-  
-      // Start visible, but don't apply effects, 
-      // to avoid initial animation.
-      var ovr = YAHOO.widget.Overlay("ovr");
-      ovr.render();
-      ovr.hide();
-      ovr.cfg.setProperty("effect", {effect:.....});
-
-  If initial flicker is a problem with the above, you can set the 
-  visibility directly on the Overlay element after rendering e.g.
-
-      var ovr = YAHOO.widget.Overlay("ovr", {visible:false});
-      ovr.render();
-      YAHOO.util.Dom.setStyle(ovr.element, "visibility", "hidden");
-
-  but if possible one of the previous methods should be used since 
-  they use the public API as opposed to manipulating the DOM directly.
-
-*** version 2.3.0 ***
-
-Fixed the following bugs:
--------------------------
-
-+ Improved creation of the <iframe> element used to monitor changes to the 
-  browser's font size so that:
-  
-    - Safari's status bar no longer displays a "Loading..." message after the 
-      page has loaded.
-  
-    - Firefox no longer reports duplicate cookie information.
-    
-    - The browser scrollbars no longer flash on and off in Firefox.
-
-+ It is now possible to set the "button" configuration property of a 
-  YAHOO.widget.Dialog instance after it has be rendered.
-
-+ Form elements appended to a YAHOO.widget.Dialog instance via the "setBody"
-  method are now automatically registered using the "registerForm" method.
-
-+ The "focusFirst" method of YAHOO.widget.Dialog will no longer result in a 
-  JavaScript error in IE if the first element in the Dialog instance's form
-  is a radio button.
-
-+ YAHOO.widget.Panel instances whose "draggable" property is set to "true" and
-  "width" property is set to "auto" are now able to be dragged in IE 6 (Quirks
-  and Strict Mode) and IE 7 Quirks Mode.
-
-+ Updated focus methods of YAHOO.widget.Dialog to prevent JavaScript errors 
-  that result from trying to set focus to elements that hidden or disabled.
-
-+ Pressing the enter key will no longer result in a YAHOO.widget.Dialog 
-  instance's "validate" method being called twice.
-
-+ Pressing the enter key while focused on a form field inside a Dialog will no
-  longer trigger the "click" event handler defined by the Dialog's default 
-  button in IE and Firefox.
-
-+ Pressing the enter key when focused on a form field inside a 
-  YAHOO.widget.Dialog instance with no buttons created via its "buttons" 
-  configuration property will no longer result in a JavaScript error.
-
-+ Aqua scrollbars will no longer bleed through Container widgets in Firefox
-  for Mac OS X.
-
-+ The "width" and "height" configuration properties of YAHOO.widget.Overlay
-  now supersede the "fixedcenter" and "context" configuration properties to 
-  ensure correct positioning of Overlay instances using the "fixedcenter" 
-  and "context" configuration properties.
-
-+ Calling the "destroy" method on a YAHOO.widget.Overlay instance no longer 
-  results in a JavaScript error on the subsequent focus of another 
-  Overlay instance.
-
-+ YAHOO.widget.Tooltip instances without a value specified for the "width" 
-  configuration property will be rendered at a width equal to the offsetWidth
-  of their root <DIV/> element to prevent their width from being clipped or 
-  constrained by their parent HTML element.
-
-
-Changes:
---------
-
-+ Rendering of YAHOO.widget.Tooltip instances is now deferred using the 
-  "onDOMReady" event handler of YAHOO.util.Event rather than waiting until 
-  the "load" event of the Tooltip's parent window fires.
-
-+ Deprecated "browser" property of YAHOO.widget.Module in favor 
-  of YAHOO.env.ua.
-
-+ The "moveEvent" of a YAHOO.widget.Panel instance now also fires with the 
-  "endDrag" event of the its YAHOO.util.DD instance.
-
-+ Updated modal functionality of YAHOO.widget.Panel:
-    
-    - The creation of a Panel instance's modality mask is now deferred until it
-      is initially made visible.
-
-    - Showing a modal Panel instance will now result in the Panel and its 
-      associated modality mask element having a higher z-index than all other
-      YAHOO.widget.Overlay instances and Overlay subclasses.
-
-+ Updated the "underlay" configuration property of YAHOO.widget.Panel:
-
-    - The creation of the underlay element is deferred until the Panel
-      instance is initially made visible.
-
-    - For Gecko-based browsers on Mac OS X the underlay elment is always 
-      created as it is used as a shim to prevent Aqua scrollbars below a Panel 
-      instance from poking through it.
-
-    - For IE 7 (Quirks Mode) and IE 6 (Quirks Mode and Standard Mode) the 
-      underlay element is resized in response to a change to a Panel instance's 
-      "width" or "height" configuration properties, a change to the browser's 
-      font size or the firing of the contentChangedEvent (triggered by use of  
-      the "setHeader," "appendToHeader," "setBody," "appendToBody," 
-      "setFooter," or "appendToFooter" methods). 
-
-+ Updated the "iframe" configuration property of YAHOO.widget.Overlay:
-
-    - The creation of the <iframe> shim element is deferred until the Overlay
-      instance is initially made visible.
-
-    - The <iframe> shim element is resized when a change to an Overlay 
-      instance's content is made at runtime via the "setHeader," 
-      "appendToHeader," "setBody," "appendToBody," "setFooter," or 
-      "appendToFooter" methods.
-
-+ Updated the "buttons" configuration property of YAHOO.widget.Dialog:
-
-    - YAHOO.widget.Button is now an optional dependancy, and if included, each
-      button in a Dialog will be an instance of Button.
-
-    - The "text" property of each button now accepts HTML
-    
-    - The "handler" property of each button can now be set to:
-    
-        + A reference to a function that should fire when the button is 
-          clicked.  (In this case scope of this function is always its 
-          Dialog instance.)
-
-        + An object literal representing the code to be executed when the 
-          button is clicked.  The format is:  
-          {
-            fn: Function (The handler to call when the event fires.),
-            obj: Object (An object to pass back to the handler.),
-            scope: Object (The object to use for the scope of the handler.)
-          }   
-
-
-Added the following features:
------------------------------
-
-+ Added ability for YAHOO.widget.Tooltip instances to have shadow:
-
-    - The shadow for a Tooltip is implemented by appending a new element as the 
-      last child of its root <DIV/> element:
-
-        <DIV class="yui-tt">
-            <DIV class="bd"> ... </DIV>
-            <DIV class="yui-tt-shadow"/>
-        </DIV>
-
-    - The code that creates the shadow element resides inside the Tooltip's 
-      public "onRender" prototype method.  To disable the creation of a 
-      Tooltip's shadow override the prototype of the "onRender" method:
-      
-      YAHOO.widget.Tooltip.prototype.onRender = function () {};
-      
-    - The actual creation of the shadow element is deferred until the Tooltip 
-      is made visible for the first time.
-
-    - A Tooltip's shadow element can be styled via two CSS classes:
-
-        + "yui-tt-shadow"  - Applied to the shadow element when it is created.
-        + "yui-tt-shadow-visible" - Applied to the shadow element when the  
-          Tooltip is visible; it is removed the Tooltip is hidden.
-
-    - The shadow element is only styled when using the new "Sam" skin, for
-      the previous default skin its "display" property is set to "none."
-
-+ Prototype of all classes (Module, Overlay, Panel, Dialog, SimpleDialog,  
-  Tooltip, Config, and ContainerEffect) are augmented with 
-  YAHOO.util.EventProvider, facilitating subscribing to an instance's 
-  Custom Events by name via a "subscribe" method that is a direct member of 
-  the class.  For example:
-  
-    var oOverlay = new YAHOO.widget.Overlay("myoverlay");
-    
-    oOverlay.subscribe("show", onShow);
-
-+ Added a new "bringToTop" method to YAHOO.widget.Overlay that places the 
-  Overlay on top of all other Overlay instances.
-
-+ Added a new "bringToTop" method to YAHOO.widget.OverlayManager that places 
-  the specified Overlay instance on top of all other Overlay instances.  This 
-  method is called on each Overlay instance that is registered with an 
-  OverlayManager instance.
-
-+ Dialog instances are now able to upload files should the Dialog instance's 
-  form contain <input type="file"/> elements.  PLEASE NOTE: If a Dialog 
-  instance will be handling asyncronous file uploads, its "callback" property 
-  will need to be setup with an "upload" handler rather than the standard 
-  "success" and, or "failure" handlers.  For more information, see the 
-  Connection Manager documenation on file uploads:
-  http://developer.yahoo.com/yui/connection/#file
-
-+ Added a new "getButtons" method to YAHOO.widget.Dialog that returns an array 
-  containing each of the Dialog's buttons; by default an array of HTML <BUTTON>
-  elements.  If the Dialog's buttons were created using the 
-  YAHOO.widget.Button class (via the inclusion of the optional Button
-  dependancy on the page), an array of YAHOO.widget.Button instances 
-  is returned.
-
-+ Added a "destroy" method to YAHOO.util.Config that sets all properties to 
-  null, unsubscribes all listeners from each property's change event and all 
-  listeners from the configChangedEvent.  The "destroy" method of 
-  YAHOO.widget.Module now automatically calls the "destroy" method of its
-  configuation object.
-
-+ Added a "IFRAME_OFFSET" constant to YAHOO.widget.Overlay that controls how 
-  much the <iframe> shim should be offset from each side of an 
-  Overlay instance.
-
-+ Added a new "syncIframe" method to YAHOO.widget.Overlay that syncronizes the 
-  size and position of the <iframe> shim to that of the Overlay.
-
-+ Added a "ICON_CSS_CLASSNAME" constant to YAHOO.widget.SimpleDialog that 
-  represents the name of the CSS class applied to the element created by the 
-  "icon" configuration property.
-
-  
-Known Issues
-------------
-
-+ "Sam" skin Panel missing left and right borders when declared with a height
-  ---------------------------------------------------------------------------
-  If the height of a Panel instance exceeds the total height of its header, 
-  body and footer elements, the space not filled with content will lack a left 
-  and right border.  Therefore, to set a Panel instance to a fixed height 
-  when using the "Sam" skin, apply the desired height to the body element, 
-  taking into account the height of the header and footer elements.  To set the 
-  height of a Panel instance's body via CSS:
-  
-  #mypanel .bd {
-    height: 100px;
-  }
-  
-  Or via JavaScript:
-  
-  oMyPanel.body.style.height = "100px";
-
-+ Elements with scrollbars poke through Overlay instances floating above them
-  ---------------------------------------------------------------------------
-  There is a bug in Gecko-based browsers for Mac OS X where an element's 
-  scrollbars will poke through absolutely positioned elements floating above
-  them.  To fix this problem the "overflow" property of an Overlay instance's 
-  root element is toggled between "hidden" and "auto" (through the application 
-  and removal of the "hide-scrollbars" and "show-scrollbars" CSS classes) as its 
-  "visibility" configuration property is toggled between "false" and "true."
-  
-  PLEASE NOTE:  
-  
-  1) The "hide-scrollbars" and "show-scrollbars" CSS classes classes are 
-     applied only for Gecko on Mac OS X and are added/removed to/from the 
-     Overlay's root HTML element (DIV) via the "hideMacGeckoScrollbars" and 
-     "showMacGeckoScrollbars" methods of YAHOO.widget.Overlay.
-     
-  2) For Panel (and its subclasses) it is the underlay element, not the root 
-     element, whose "overflow" property is toggled between "hidden" and "auto."
-     The underlay element therefore acts as a shim to correct the 
-     scrollbar problem.
-     
-  3) For Tooltip instances using the "Sam" skin it is the shadow element, not 
-     the root element, whose "overflow" property is toggled between "hidden" 
-     and "auto."  The shadow element therefore acts as a shim to correct the 
-     scrollbar problem.
-     
-  4) Once the fix is applied the bug will reappear if the window loses focus.  
-     This can be remedied via Javascript by hiding and showing the Overlay 
-     instance when the window receives focus:
-
-        YAHOO.util.Event.on(window, "focus", function () {
-        
-            oMyOverlay.hide();
-            oMyOverlay.show();
-        
-        });
-
-    ** For more information see 
-     https://bugzilla.mozilla.org/show_bug.cgi?id=187435
-
-+ Scrollbars remain visible after an Overlay is hidden
-  ----------------------------------------------------
-  There is a bug in Gecko-based browsers for Mac OS X where an element's 
-  scrollbars and the scrollbars of its child nodes remain visible when its 
-  "visibility" property property is set to "hidden."  To fix this problem,
-  the "overflow" property of an Overlay instance's root element and child nodes
-  is toggled between "hidden" and "auto" (through the application and removal 
-  of the "hide-scrollbars" and "show-scrollbars" CSS classes) as its 
-  "visibility" configuration property is toggled between "false" and "true."
-
-  PLEASE NOTE:  
-  
-  1) The "hide-scrollbars" and "show-scrollbars" CSS classes classes are 
-     applied only for Gecko on Mac OS X and are added/removed to/from the 
-     Overlay's root HTML element (DIV) via the "hideMacGeckoScrollbars" and 
-     "showMacGeckoScrollbars" methods of YAHOO.widget.Overlay.
-  
-  2) There may be instances where the CSS for a web page or application 
-     contains style rules whose specificity override the rules implemented by 
-     the Container CSS files to fix this bug.  In such cases, is necessary to 
-     leverage the provided "hide-scrollbars" and "show-scrollbars" classes to 
-     write custom style rules to guard against this bug.  For example:
-  
-     To fix the scrollbars issue for an Overlay instance with an id of 
-     "myoverlay" whose body element has scrollbars applied by default:
-
-        #myoverlay .bd {
-        
-            height: 100px;
-        
-            /* Apply scrollbars for all browsers. */
-            overflow: auto;
-        
-        }
-        
-        #myoverlay.hide-scrollbars .bd {
-        
-            /* Hide scrollbars by default for Gecko on OS X */
-            overflow: hidden;
-            
-        }
-        
-        #myoverlay.show-scrollbars .bd {
-        
-            /* Show scrollbars for Gecko on OS X when the Overlay is visible */
-            overflow: auto;
-            
-        }        
-    
-     To fix the scrollbars issue for a Panel instance with an id of "mypanel" 
-     whose body element has scrollbars applied by default:
-    
-        #mypanel .bd {
-        
-            height: 100px;
-        
-            /* Apply scrollbars for all browsers. */
-            overflow: auto;
-        
-        }
-        
-        .yui-panel-container.hide-scrollbars #mypanel .bd {
-        
-            /* Hide scrollbars by default for Gecko on OS X */
-            overflow: hidden;
-            
-        }
-        
-        .yui-panel-container.show-scrollbars #mypanel .bd {
-        
-            /* Show scrollbars for Gecko on OS X when the Panel is visible  */
-            overflow: auto;
-            
-        }
-
-    ** For more information see 
-       https://bugzilla.mozilla.org/show_bug.cgi?id=187435
-
-+ Flash Movies appear on top of Overlay instances
-  -----------------------------------------------
-  Flash movies can appear on top of Overlay instances in IE and Gecko-based
-  browsers.  To fix this problem, set the "wmode" of the Flash movie to either
-  "transparent" or "opaque" as indicated below: 
-
-  Via the <object> tag:
-
-    <object>
-        <param name="wmode" value="opaque">
-    </object>
-
-    <object>
-        <param name="wmode" value="transparent"> 
-    </object>
-
-  Via the <embed> tag:
-    
-    <embed wmode="transparent"> ... </embed>
-    <embed wmode="opaque"> ... </embed>
-
-    ** For more information see 
-       http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15523
-
-+ Overlay instances not rendered at correct z-index in IE
-  -------------------------------------------------------
-  In IE, when an Overlay instance is rendered inside a relatively positioned 
-  element the z-index of the Overlay instance is now relative to its 
-  relatively positioned parent element.  This is not a bug in the 
-  Overlay class, but rather a bug in IE where relatively positioned elements 
-  establish a new stacking context for their child nodes.  To avoid this 
-  bug it is recommend that all Overlay instances that need to be able to float
-  above any other element in the document be made direct descendants of the 
-  <body> element.
-
-  ** For more information see 
-   http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html
-
-+ Header elements for Panel instances using "Sam" skin shrinkwrap in IE 7
-  -----------------------------------------------------------------------
-  In IE 7 (Standards Mode) if a Panel instance is created without specifying a
-  value for the "width" configuration property the width of the Panel's 
-  header element will shrinkwrap to the width of its text node.  To avoid 
-  triggering this bug in IE always specify a value for the "width" 
-  configuration property when using Panel.
-
-+ Panel instances render at 100% of the browser viewport
-  ------------------------------------------------------
-  In IE 7 (Quirks Mode) and IE 6 (Quirks Mode and Standards Mode) if any of the 
-  child nodes of a Panel instance's root element have "layout" 
-  (http://msdn2.microsoft.com/en-us/library/ms533776.aspx) and no value
-  has been specified for the "width" configuration property, the Panel will 
-  render at 100% of the width of browser's viewport.  This bug will manifest
-  when using the "Sam" skin as layout is applied to the header, body and 
-  footer elements (by setting the CSS "zoom" property of the element to "1" ) 
-  in order to get the negative margins required for the rounded corners to 
-  render correctly.  To avoid triggering this bug in IE always specify a value
-  for the "width" configuration property when using Panel.
-
-+ Panel instances render at 2px wider when using "Sam" skin 
-  ---------------------------------------------------------
-  For the "Sam" skin a Panel instance's rounded corners are created via the 
-  application of negative 1px left and right margins on the header, body and 
-  footer elements.  These negative margins will cause a Panel instance to be 
-  rendered at 2px wider than the value specified by the "width" configuration 
-  property.  Therefore, when using the "Sam" skin consider the negative left 
-  and right margins and subtract 2 from the value passed to the "width" 
-  configuration property in order to have the Panel render at the desired 
-  width.  For example, to render a Panel 300px wide, pass a value of "298px" 
-  to the "width" configuration property.
-
-
-*** version 2.2.2 ***
-
-+ Clicking the close button of a Panel (or any instance of a Panel subclass) 
-  registered with an OverlayManager will no longer result in the Panel 
-  receiving focus.
-
-+ Overlay instances registered with an OverlayManager will now correctly 
-  blur themselves when hidden.
-
-+ Calling the "destroy" method of an Overlay instance will now result in it 
-  being removed from its OverlayManager instance(s).
-
-+ The DOM event listener for the event defined by the "focusevent" 
-  configuration property of an OverlayManager instance is now removed from each 
-  Overlay instance when it is removed from its OverlayManager.
-
-+ All subscribers for an Overlay instance's "focus" and "blur" events are 
-  now unsubscribed when it is removed from its OverlayManager.
-
-
-*** version 2.2.1 ***
-
-+ Made the default scope for all Custom Events published by Module, Overlay, 
-  Panel, Tooltip, Dialog and SimpleDialog the widget instance.  Previously the 
-  default scope for Custom Events was inconsistent across classes; the default
-  scope for Custom Events published by Overlay was always the Overlay instance
-  whereas the Custom Events published by all of the other classes had no 
-  default scope.  
-
-+ Added default scope for CustomEvents published by YAHOO.util.Config:
-  - Default scope for the "configChangedEvent" is now the Config instance.
-  - Default scope for Config property events is now the Config's owner (widget).
-
-+ Panel and Tooltip now always convert the value of a DOM element's "tagName" 
-  property to uppercase before evaluating it.  This improves 
-  XHTML compatibility.
-  
-+ Pressing the enter key while focused on a form field inside a Dialog will 
-  now trigger the "click" event handler defined by the Dialog's default 
-  button in IE and Firefox.  Previously, this behavior only worked in Safari 
-  and Opera.
-
-+ Added a "yui" prefix to the default CSS class name for Module to be 
-  consistent with the other Container family widgets.
-
-+ Container/Panel's underlay shadow is now defined as partially-transparent
-  black rather than gray.  This prevents the shadow from lightening the 
-  background color of elements beneath it.
-
-+ Fixed memory leaks in Panel and Dialog.
-
-+ The Drag and Drop library is now a truly optional dependency for Panel and its 
-  subclasses.
-
-+ Panel "focus" and "blur" events are now fired when Panels are focused and 
-  blurred via the "focus" and "blurAll" methods of YAHOO.widget.OverlayManager.
-
-+ Panel instances rendered without setting the value for the "width" 
-  configuration property will now have their "width" configuration 
-  property set to the value of the Panel's element's "offsetWidth" property 
-  when rendered.  This fixes an issue in IE 6 and 7 where Panels that are 
-  rendered without setting the "width" configuration property will only be 
-  draggable by mousing down on the text inside the header, rather than anywhere 
-  inside the header.
-  
-+ Refactored the Container family including the Config class to improve 
-  performance, especially when working with a large number of instances in IE6.
-
-
-
-*** version 2.2.0 ***
-
-    Module
-       - Removed hardcoded file paths for image roots.  Affected properties
-       include:
-        - YAHOO.widget.Module.IMG_ROOT
-        - YAHOO.widget.Module.IMG_ROOT_SSL
-       - HTML elements, created via createElement, now use lowercase.
-
-    Panel
-       - To shield against CSS class collision, the following references now
-       have a "yui-" prefix:
-          - YAHOO.widget.Panel.CSS_PANEL now references CSS class "yui-
-          panel".
-          - YAHOO.widget.Panel.CSS_PANEL_CONTAINER now references CSS class
-          "yui-panel-container".
-       -  Close button can now be configured via the CSS class "container-
-       close".
-       - HTML elements, created via createElement, now use lowercase.
-
-    Dialog
-       - To shield against CSS class collision, the following references now
-       have a "yui-" prefix:
-        - YAHOO.widget.Dialog.CSS_DIALOG now references CSS class "yui-
-        dialog".
-       - HTML elements, created via createElement, now use lowercase.
-
-    SimpleDialog
-       - Removed hardcoded file paths for SimpleDialog icons, which are now
-       configurable in CSS:
-          - YAHOO.widget.SimpleDialog.ICON_BLOCK now references CSS class
-          "blckicon".
-          - YAHOO.widget.SimpleDialog.ICON_ALARM now references CSS class
-          "alrticon".
-          - YAHOO.widget.SimpleDialog.ICON_HELP now references CSS class
-          "hlpicon".
-          - YAHOO.widget.SimpleDialog.ICON_INFO now references CSS class
-          "infoicon".
-          - YAHOO.widget.SimpleDialog.ICON_WARN now references CSS class
-          "warnicon".
-          - YAHOO.widget.SimpleDialog.ICON_TIP now references CSS class
-          "tipicon".
-       - To provide shield against CSS class collision the following
-       references now have a "yui-" prefix:
-          - YAHOO.widget.SimpleDialog.CSS_SIMPLEDIALOG now references CSS
-          class "yui-simple-dialog";
-
-    Tooltip
-       - To shield against CSS class collision, the following references now
-       have a "yui-" prefix:
-          - YAHOO.widget.Tooltip.CSS_TOOLTIP now references CSS class "yui-
-          tipicon" "yui-tt";
-
-*** version 0.12.2 ***
-
-    Module
-       - Corrected issue where listener was not properly removed from resize
-       monitor element when "monitorresize" is disabled
-
-    Panel
-       - Fixed issue that would sometimes prevent select lists from working
-       properly in Firefox
-
-    Dialog
-       - Fixed error that would occur when trying to create a Dialog where
-       the first form element is set to "disabled"
-       - Modified "close" property handler for Dialog/SimpleDialog to call
-       "cancel" instead of "hide"
-
-*** version 0.12.1 ***
-
-    All Classes
-       - "monitorresize" property now functions in situations where
-       document.domain has been modified.
-       - YAHOO.widget.Module.textResizeEvent now fires when the font size is
-       changed (except for Opera, which uses "zoom" functionality that
-       prevents this)
-       - Event listeners attached to container elements are now properly
-       purged on destroy using YAHOO.util.Event.purgeElement
-
-    Panel
-       - Fixed issue where focus events were broken on the page when a modal
-       Panel was created
-
-    Dialog
-       - Fixed bug where hitting "enter" on a Dialog was forcing the default
-       submission behavior of the form's action to execute
-       - Dialog no longer tries to give focus to hidden form elements.
-       - Replaced &nbsp; references in Panel with &#160; for XHTML
-       compliance.
-       - Fixed issue that was preventing Safari from successfully using the
-       getData() function
-
-*** version 0.12 ***
-
-    All Classes
-       - New documentation format implemented, and removed unnecessary
-       prototype null references previously used for generating
-       documentation
-
-    Config
-       - Added 'undefined' check when reading initial properties for
-       .reset()
-       - Fixed Firefox warning on .resetProperty()
-       - Fixed issue preventing resetProperty() from resetting values
-       correctly
-
-    Module
-       - Removed unused "childNodesInDom" property
-
-    Overlay
-       - Converted center() to use Dom utility
-       - Fixed configVisible() to properly detect actual visible/hidden
-       status in Internet Explorer, which reports "inherit" for all elements
-       by default.
-       - Updated onDomResize to properly reapply "context" property
-       - Unified scroll/resize handlers so that they fire properly (when the
-       event has completed) as opposed to constantly (as seen in Mozilla-
-       based browsers)
-
-    Panel
-       - Modified modality mask to show before Panel is shown (prior to any
-       animation)
-       - Modified buildWrapper to eliminate cloning of the initial markup
-       module, which fixes issues with select options not maintaining their
-       default selections in IE
-       - Modality mask is now z-indexed properly so that the mask z-index is
-       always one less than the Panel z-index
-
-    Dialog
-       - Fixed Connection to get "action" attribute using getAttribute, to
-       allow for form fields named "action"
-       - Added support for "GET" by retrieving the form "method" rather than
-       always defaulting to "POST"
-
-    KeyListener
-       - Fixed to work properly with Safari 2.0 by matching against keyCode
-       or charCode
-
-*** version 0.11.4 ***
-
-    - Panel: Modality mask is now properly removed from DOM on Panel
-    destroy.
-
-*** version 0.11.3 ***
-
-    - Module: Fixed SSL warning issue in IE
-    - Overlay: Fixed memory leak related to iframe shim in IE
-    - Panel: No focusable elements under the mask can now be tabbed to
-    - Panel: Set Panel container overflow to hidden to fix scrolling issue
-    in Opera 9
-
-*** version 0.11.2 ***
-
-    - All: JsLint optimization
-    - Overlay: Fixed SSL issues with monitorresize property
-    - OverlayManager: Fixed z-index incrementing issues
-    - Dialog: Form elements called "name" will now function properly
-    - Dialog: Removed unnecessary scope:this reference
-
-*** version 0.11.1 ***
-
-    - Tooltip: Removed incorrect logger statement
-    - Dialog: Corrected logic that was causing browser lockup in IE for
-    SimpleDialog
-    - Dialog: Fixed "firstButtom" typo
-
-*** version 0.11.0 ***
-
-    - toString function added to all classes for easy logging
-    - YAHOO.extend is now being used for inheritance on all container
-    classes
-    - Module: monitorresize feature now works on all browsers
-    - Module: Fixed bug with image root and isSecure
-    - Overlay: Fixed bugs related to IFRAME shim positioning
-    - Overlay: center() now works in quirks mode
-    - Overlay: Overlay now has a custom destroy() method that also removes
-    the IFRAME shim
-    - OverlayManager: Fixed bug in the prototype that was preventing
-    multiple Managers on one page
-    - OverlayManager: focusEvent now fires at all appropriate times
-    - Tooltip: context can now be specified as an array, so Tooltips can be
-    reused across multiple context elements
-    - Tooltip: preventoverlap now functions properly for large context
-    elements (i.e, images)
-    - Tooltip: fixed bugs regarding setTimeout
-    - Tooltip: added mousemove event to allow for more accurate Tooltip
-    positioning
-    - Panel: added dragEvent for monitoring all event handlers for drag and
-    drop
-    - Panel: modality mask is now resized on scroll
-    - Panel: KeyListeners are now properly destroyed when the Panel is
-    destroyed
-    - Panel: Header is now sized properly in quirks mode
-    - Dialog: Blinking cursor issue is fixed for Firefox
-    - Dialog: callback object for Connection is now public (this.callback)
-    - Dialog: onsuccess/onfailure properties removed (as a result of the
-    public callback object)
-    - Dialog: Dialog is now invisible by default
-    - Dialog: Buttons are now properly cleaned up on destroy
-
-*** version 0.10.0 ***
-
-* Initial release
diff --git a/eclipse.org-common/yui/2.6.0/build/container/assets/alrt16_1.gif b/eclipse.org-common/yui/2.6.0/build/container/assets/alrt16_1.gif
deleted file mode 100644
index 443d39b..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/assets/alrt16_1.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/container/assets/blck16_1.gif b/eclipse.org-common/yui/2.6.0/build/container/assets/blck16_1.gif
deleted file mode 100644
index 5668961..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/assets/blck16_1.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/container/assets/close12_1.gif b/eclipse.org-common/yui/2.6.0/build/container/assets/close12_1.gif
deleted file mode 100644
index e2f67d7..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/assets/close12_1.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/container/assets/container-core.css b/eclipse.org-common/yui/2.6.0/build/container/assets/container-core.css
deleted file mode 100644
index 158e45d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/assets/container-core.css
+++ /dev/null
@@ -1,168 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-overlay,
-.yui-panel-container {
-    visibility: hidden;
-    position: absolute;
-    z-index: 2;
-}
-
-.yui-panel-container form {
-    margin: 0;
-}
-
-.mask {
-    z-index: 1;
-    display: none;
-    position: absolute;
-    top: 0;
-    left: 0;
-    right: 0;
-    bottom: 0;
-}
-
-.mask.block-scrollbars {
-    /*
-        Application of "overflow:auto" prevents Mac scrollbars from bleeding
-        through the modality mask in Gecko. The block-scollbars class is only 
-        added for Gecko on MacOS
-    */
-    overflow: auto;
-}
-
-/* 
-    PLEASE NOTE:
-
-    1) ".masked select" is used to prevent <SELECT> elements bleeding through 
-       the modality mask in IE 6. 
-
-    2) ".drag select" is used to hide <SELECT> elements when dragging a 
-       Panel in IE 6.  This is necessary to prevent some redraw problems with 
-       the <SELECT> elements when a Panel instance is dragged.
-    
-    3) ".hide-select select" is appended to an Overlay instance's root HTML 
-       element when it is being annimated by YAHOO.widget.ContainerEffect.  
-       This is necessary because <SELECT> elements don't inherit their parent
-       element's opacity in IE 6.
-
-*/
-
-.masked select,
-.drag select,
-.hide-select select {
-    _visibility: hidden;
-}
-
-.yui-panel-container select {
-    _visibility: inherit;
-}
-
-/*
-
-There are two known issues with YAHOO.widget.Overlay (and its subclasses) that 
-manifest in Gecko-based browsers on Mac OS X:
-
-    1) Elements with scrollbars will poke through Overlay instances floating 
-       above them.
-    
-    2) An Overlay's scrollbars and the scrollbars of its child nodes remain  
-       visible when the Overlay is hidden.
-
-To fix these bugs:
-
-    1) The "overflow" property of an Overlay instance's root element and child 
-       nodes is toggled between "hidden" and "auto" (through the application  
-       and removal of the "hide-scrollbars" and "show-scrollbars" CSS classes)
-       as its "visibility" configuration property is toggled between 
-       "false" and "true."
-    
-    2) The "display" property of <SELECT> elements that are child nodes of the 
-       Overlay instance's root element is set to "none" when it is hidden.
-
-PLEASE NOTE:  
-  
-    1) The "hide-scrollbars" and "show-scrollbars" CSS classes classes are 
-       applied only for Gecko on Mac OS X and are added/removed to/from the 
-       Overlay's root HTML element (DIV) via the "hideMacGeckoScrollbars" and 
-       "showMacGeckoScrollbars" methods of YAHOO.widget.Overlay.
-    
-    2) There may be instances where the CSS for a web page or application 
-       contains style rules whose specificity override the rules implemented by 
-       the Container CSS files to fix this bug.  In such cases, is necessary to 
-       leverage the provided "hide-scrollbars" and "show-scrollbars" classes to 
-       write custom style rules to guard against this bug.
-
-** For more information on this issue, see:
-
-   + https://bugzilla.mozilla.org/show_bug.cgi?id=187435
-   + SourceForge bug #1723530
-
-*/
-
-.hide-scrollbars,
-.hide-scrollbars * {
-
-    overflow: hidden;
-
-}
-
-.hide-scrollbars select {
-    display: none;
-}
-
-.show-scrollbars {
-    overflow: auto;
-}
-
-.yui-panel-container.show-scrollbars,
-.yui-tt.show-scrollbars {
-    overflow: visible;
-}
-
-.yui-panel-container.show-scrollbars .underlay,
-.yui-tt.show-scrollbars .yui-tt-shadow {
-
-    overflow: auto;
-
-}
-
-/* 
-   Workaround for Safari 2.x - the yui-force-redraw class is applied, and then removed when
-   the Panel's content changes, to force Safari 2.x to redraw the underlay.
-   We attempt to choose a CSS property which has no visual impact when added,
-   removed.
-*/
-.yui-panel-container.shadow .underlay.yui-force-redraw {
-    padding-bottom: 1px;
-}
-
-.yui-effect-fade .underlay {
-    display:none;
-}
-
-/*
-    PLEASE NOTE: The <DIV> element used for a Tooltip's shadow is appended 
-    to its root element via JavaScript once it has been rendered.  The 
-    code that creates the shadow lives in the Tooltip's public "onRender" 
-    event handler that is a prototype method of YAHOO.widget.Tooltip.  
-    Implementers wishing to remove a Tooltip's shadow or add any other markup
-    required for a given skin for Tooltip should override the "onRender" method.
-*/
-
-.yui-tt-shadow {
-    position: absolute;
-}
-
-.yui-override-padding {
-    padding:0 !important;
-}
-
-.yui-panel-container .container-close {
-    overflow:hidden;
-    text-indent:-10000em;
-    text-decoration:none;
-}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/container/assets/container.css b/eclipse.org-common/yui/2.6.0/build/container/assets/container.css
deleted file mode 100644
index b24a257..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/assets/container.css
+++ /dev/null
@@ -1,325 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-overlay,
-.yui-panel-container {
-    visibility:hidden;
-    position:absolute;
-    z-index: 2;
-}
-
-.yui-tt {
-    visibility:hidden;
-    position:absolute;
-    color:#333;
-    background-color:#FDFFB4;
-    font-family:arial,helvetica,verdana,sans-serif;
-    padding:2px;
-    border:1px solid #FCC90D;
-    font:100% sans-serif;
-    width:auto;
-}
-
-/*
-    PLEASE NOTE: The <DIV> element used for a Tooltip's shadow is appended 
-    to its root element via JavaScript once it has been rendered.  The 
-    code that creates the shadow lives in the Tooltip's public "onRender" 
-    event handler that is a prototype method of YAHOO.widget.Tooltip.  
-    Implementers wishing to remove a Tooltip's shadow or add any other markup
-    required for a given skin for Tooltip should override the "onRender" method.
-*/
-
-.yui-tt-shadow {
-    display: none;
-}
-
-* html body.masked select {
-    visibility:hidden;
-}
-
-* html div.yui-panel-container select {
-    visibility:inherit;
-}
-
-* html div.drag select {
-    visibility:hidden;
-}
-
-* html div.hide-select select {
-    visibility:hidden;
-}
-
-.mask {
-    z-index: 1; 
-    display:none;
-    position:absolute;
-    top:0;
-    left:0;
-    -moz-opacity: 0.5;
-    opacity:.50;
-    filter: alpha(opacity=50);
-    background-color:#CCC;
-}
-
-/*
-
-There are two known issues with YAHOO.widget.Overlay (and its subclasses) that 
-manifest in Gecko-based browsers on Mac OS X:
-
-    1) Elements with scrollbars will poke through Overlay instances floating 
-       above them.
-    
-    2) An Overlay's scrollbars and the scrollbars of its child nodes remain  
-       visible when the Overlay is hidden.
-
-To fix these bugs:
-
-    1) The "overflow" property of an Overlay instance's root element and child 
-       nodes is toggled between "hidden" and "auto" (through the application  
-       and removal of the "hide-scrollbars" and "show-scrollbars" CSS classes)
-       as its "visibility" configuration property is toggled between 
-       "false" and "true."
-    
-    2) The "display" property of <SELECT> elements that are child nodes of the 
-       Overlay instance's root element is set to "none" when it is hidden.
-
-PLEASE NOTE:  
-  
-    1) The "hide-scrollbars" and "show-scrollbars" CSS classes classes are 
-       applied only for Gecko on Mac OS X and are added/removed to/from the 
-       Overlay's root HTML element (DIV) via the "hideMacGeckoScrollbars" and 
-       "showMacGeckoScrollbars" methods of YAHOO.widget.Overlay.
-    
-    2) There may be instances where the CSS for a web page or application 
-       contains style rules whose specificity override the rules implemented by 
-       the Container CSS files to fix this bug.  In such cases, is necessary to 
-       leverage the provided "hide-scrollbars" and "show-scrollbars" classes to 
-       write custom style rules to guard against this bug.
-
-** For more information on this issue, see:
-
-   + https://bugzilla.mozilla.org/show_bug.cgi?id=187435
-   + SourceForge bug #1723530
-
-*/
-
-.hide-scrollbars,
-.hide-scrollbars * {
-
-    overflow: hidden;
-
-}
-
-.hide-scrollbars select {
-
-    display: none;
-
-}
-
-.show-scrollbars {
-
-    overflow: auto;
-
-}
-
-.yui-panel-container.show-scrollbars {
-
-    overflow: visible;
-
-}
-
-.yui-panel-container.show-scrollbars .underlay {
-
-    overflow: auto;
-
-}
-
-.yui-panel-container.focused {
-
-}
-
-
-/* Panel underlay styles */
-
-.yui-panel-container .underlay {
-
-    position: absolute;
-    top: 0;
-    right: 0;
-    bottom: 0;
-    left: 0;
-
-}
-
-.yui-panel-container.matte {
-
-    padding: 3px;
-    background-color: #fff;
-
-}
-
-.yui-panel-container.shadow .underlay {
-
-    top: 3px;
-    bottom: -3px;
-    right: -3px;
-    left: 3px;
-    background-color: #000;
-    opacity: .12;
-    filter: alpha(opacity=12);  /* For IE */
-
-}
-
-/* 
-   Workaround for Safari 2.x - the yui-force-redraw class is applied, and then removed when
-   the Panel's content changes, to force Safari 2.x to redraw the underlay.
-   We attempt to choose a CSS property which has no visual impact when added,
-   removed, but still causes Safari to redraw
-*/
-.yui-panel-container.shadow .underlay.yui-force-redraw {
-    padding-bottom: 1px;
-}
-
-.yui-effect-fade .underlay {
-    display:none;
-}
-
-.yui-panel {
-    visibility:hidden;
-    border-collapse:separate;
-    position:relative;
-    left:0;
-    top:0;
-    font:1em Arial;
-    background-color:#FFF;
-    border:1px solid #000;
-    z-index:1;
-    overflow:hidden;
-}
-
-.yui-panel .hd {
-    background-color:#3d77cb;
-    color:#FFF;
-    font-size:100%;
-    line-height:100%;
-    border:1px solid #FFF;
-    border-bottom:1px solid #000;
-    font-weight:bold;
-    padding:4px;
-    white-space:nowrap;
-}
-
-.yui-panel .bd {
-    overflow:hidden;
-    padding:4px;
-}
-
-.yui-panel .bd p {
-    margin:0 0 1em;
-}
-
-.yui-panel .container-close {
-    position:absolute;
-    top:5px;
-    right:4px;
-    z-index:6;
-    height:12px;
-    width:12px;
-    margin:0px;
-    padding:0px;
-    background:url(close12_1.gif) no-repeat;
-    cursor:pointer;
-    visibility:inherit;
-    text-indent:-10000em;
-    overflow:hidden;
-    text-decoration:none;
-}
-
-.yui-panel .ft {
-    padding:4px;
-    overflow:hidden;
-}
-
-.yui-simple-dialog .bd .yui-icon {
-    background-repeat:no-repeat;
-    width:16px;
-    height:16px;
-    margin-right:10px;
-    float:left;
-}
-
-.yui-simple-dialog .bd span.blckicon {
-    background: url("blck16_1.gif") no-repeat;
-}
-
-.yui-simple-dialog .bd span.alrticon {
-    background: url("alrt16_1.gif") no-repeat;
-}
-
-.yui-simple-dialog .bd span.hlpicon {
-    background: url("hlp16_1.gif") no-repeat;
-}
-
-.yui-simple-dialog .bd span.infoicon {
-    background: url("info16_1.gif") no-repeat;
-}
-
-.yui-simple-dialog .bd span.warnicon {
-    background: url("warn16_1.gif") no-repeat;
-}
-
-.yui-simple-dialog .bd span.tipicon {
-    background: url("tip16_1.gif") no-repeat;
-}
-
-.yui-dialog .ft, 
-.yui-simple-dialog .ft {
-    padding-bottom:5px;
-    padding-right:5px;
-    text-align:right;
-}
-
-.yui-dialog form, 
-.yui-simple-dialog form {
-    margin:0;
-}
-
-.button-group button {
-    font:100 76% verdana;
-    text-decoration:none;
-    background-color: #E4E4E4;
-    color: #333;
-    cursor: hand;
-    vertical-align: middle;
-    border: 2px solid #797979;
-    border-top-color:#FFF;
-    border-left-color:#FFF;
-    margin:2px;
-    padding:2px;
-}
-
-.button-group button.default {
-    font-weight:bold;
-}
-
-.button-group button:hover, 
-.button-group button.hover {
-    border:2px solid #90A029;
-    background-color:#EBF09E;
-    border-top-color:#FFF;
-    border-left-color:#FFF;
-}
-
-.button-group button:active {
-    border:2px solid #E4E4E4;
-    background-color:#BBB;
-    border-top-color:#333;
-    border-left-color:#333;
-}
-
-.yui-override-padding {
-    padding:0 !important;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/container/assets/hlp16_1.gif b/eclipse.org-common/yui/2.6.0/build/container/assets/hlp16_1.gif
deleted file mode 100644
index 4645c8f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/assets/hlp16_1.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/container/assets/info16_1.gif b/eclipse.org-common/yui/2.6.0/build/container/assets/info16_1.gif
deleted file mode 100644
index 22f697a..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/assets/info16_1.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/container/assets/skins/sam/container-skin.css b/eclipse.org-common/yui/2.6.0/build/container/assets/skins/sam/container-skin.css
deleted file mode 100644
index fc6ec7c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/assets/skins/sam/container-skin.css
+++ /dev/null
@@ -1,242 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* Panel modality mask styles */
-.yui-skin-sam .mask {
-    background-color: #000;
-    opacity: .25;
-    *filter: alpha(opacity=25);  /* Set opacity in IE */
-}
-
-/* Panel styles */
-.yui-skin-sam .yui-panel-container {
-    padding:0 1px;
-    /* Padding added for IE to allow 0,0 alignment with shadow */
-    *padding:2px;
-}
-
-.yui-skin-sam .yui-panel {
-    position: relative;
-    left:0;
-    top:0;
-    border-style: solid;
-    border-width: 1px 0;
-    border-color: #808080;
-    z-index: 1;
-
-    /* Rollback rounded corner support for IE6/7 */
-    *border-width:1px;
-    *zoom:1;
-    _zoom:normal;
-}
-
-.yui-skin-sam .yui-panel .hd,
-.yui-skin-sam .yui-panel .bd,
-.yui-skin-sam .yui-panel .ft {
-    border-style: solid;
-    border-width: 0 1px;
-    border-color: #808080;
-    margin: 0 -1px;
-
-    /* Rollback rounded corner support for IE6/7 */
-    *margin:0;
-    *border:0;
-}
-
-.yui-skin-sam .yui-panel .hd {
-    border-bottom: solid 1px #ccc;
-}
-
-.yui-skin-sam .yui-panel .bd,
-.yui-skin-sam .yui-panel .ft {
-    background-color: #F2F2F2;
-}
-
-.yui-skin-sam .yui-panel .hd {
-    padding: 0 10px;
-    font-size: 93%;  /* 12px */
-    line-height: 2;  /* ~24px */
-    *line-height: 1.9; /* For IE */
-    font-weight: bold;
-    color: #000;
-    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -200px;
-}
-
-.yui-skin-sam .yui-panel .bd {
-    padding: 10px;
-}
-
-.yui-skin-sam .yui-panel .ft {
-    border-top: solid 1px #808080;
-    padding: 5px 10px;
-    font-size: 77%;
-}
-
-.yui-skin-sam .yui-panel-container.focused .yui-panel .hd {
-
-}
-
-.yui-skin-sam .container-close {
-    position: absolute;
-    top: 5px;
-    right: 6px;
-    width: 25px;
-    height: 15px;
-    background: url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -300px;
-    cursor:pointer;
-}
-
-/* Panel underlay styles */
-.yui-skin-sam .yui-panel-container .underlay {
-    right: -1px;
-    left: -1px;
-}
-
-.yui-skin-sam .yui-panel-container.matte {
-    padding: 9px 10px;
-    background-color: #fff;
-}
-
-.yui-skin-sam .yui-panel-container.shadow {
-    /* IE 7 Quirks Mode and IE 6 Standards Mode and Quirks mode */
-    _padding: 2px 4px 0 2px;
-}
-
-.yui-skin-sam .yui-panel-container.shadow .underlay {
-    position: absolute;
-    top: 2px;
-    left: -3px;
-    right: -3px;
-    bottom: -3px;
-
-    /* IE7 Strict (provides 3px shadow (when combined with 2px padding applied to container) */
-    *top: 4px;
-    *left: -1px;
-    *right: -1px;
-    *bottom: -1px;
-
-    /* IE 7 Quirks Mode and IE 6 Standards Mode and Quirks mode */
-    _top: 0;
-    _left: 0;
-    _right: 0;
-    _bottom: 0;
-    _margin-top: 3px;
-    _margin-left: -1px;
-
-    background-color: #000;
-    opacity: .12;
-    *filter: alpha(opacity=12);  /* Set opacity in IE */
-}
-
-
-/* Dialog styles */
-.yui-skin-sam .yui-dialog .ft {
-    border-top: none;
-    padding: 0 10px 10px 10px;
-    font-size: 100%;
-}
-
-.yui-skin-sam .yui-dialog .ft .button-group {
-    display: block;
-    text-align: right;
-}
-
-/* Dialog default button style */
-.yui-skin-sam .yui-dialog .ft button.default {
-    font-weight:bold;
-}
-
-/* Dialog default YUI Button style */
-.yui-skin-sam .yui-dialog .ft span.default {
-    border-color: #304369;
-    background-position: 0 -1400px;
-}
-
-.yui-skin-sam .yui-dialog .ft span.default .first-child {
-    border-color: #304369;
-}
-
-.yui-skin-sam .yui-dialog .ft span.default button {
-    color: #fff;
-}
-
-/* Dialog YUI Button disabled state */
-.yui-skin-sam .yui-dialog .ft span.yui-button-disabled {
-    background-position:0pt -1500px;
-    border-color:#ccc;
-}
-
-.yui-skin-sam .yui-dialog .ft span.yui-button-disabled .first-child {
-    border-color:#ccc;
-}
-
-.yui-skin-sam .yui-dialog .ft span.yui-button-disabled button {
-    color:#a6a6a6;
-}
-
-/* SimpleDialog icon styles */
-.yui-skin-sam .yui-simple-dialog .bd .yui-icon {
-    background: url(../../../../assets/skins/sam/sprite.png) no-repeat 0 0;
-    width: 16px;
-    height: 16px;
-    margin-right: 10px;
-    float: left;
-}
-
-.yui-skin-sam .yui-simple-dialog .bd span.blckicon {
-    background-position: 0 -1100px;
-}
-
-.yui-skin-sam .yui-simple-dialog .bd span.alrticon {
-    background-position: 0 -1050px;
-}
-
-.yui-skin-sam .yui-simple-dialog .bd span.hlpicon {
-    background-position: 0 -1150px;
-}
-
-.yui-skin-sam .yui-simple-dialog .bd span.infoicon {
-    background-position: 0 -1200px;
-}
-
-.yui-skin-sam .yui-simple-dialog .bd span.warnicon {
-    background-position: 0 -1900px;
-}
-
-.yui-skin-sam .yui-simple-dialog .bd span.tipicon {
-    background-position: 0 -1250px;
-}
-
-/* Tooltip styles */
-.yui-skin-sam .yui-tt .bd {
-    position: relative;
-    top: 0;
-    left: 0;
-    z-index: 1;
-    color: #000;
-    padding: 2px 5px;
-    border-color: #D4C237 #A6982B #A6982B #A6982B;
-    border-width: 1px;
-    border-style: solid;
-    background-color: #FFEE69;
-}
-
-.yui-skin-sam .yui-tt.show-scrollbars .bd {
-    overflow: auto;
-}
-
-.yui-skin-sam .yui-tt-shadow {
-    top: 2px;
-    right: -3px;
-    left: -3px;
-    bottom: -3px;
-    background-color: #000;
-}
-
-.yui-skin-sam .yui-tt-shadow-visible {
-    opacity: .12;
-    *filter: alpha(opacity=12);  /* For IE */
-}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/container/assets/skins/sam/container.css b/eclipse.org-common/yui/2.6.0/build/container/assets/skins/sam/container.css
deleted file mode 100644
index 13f3bff..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/assets/skins/sam/container.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-overlay,.yui-panel-container{visibility:hidden;position:absolute;z-index:2;}.yui-panel-container form{margin:0;}.mask{z-index:1;display:none;position:absolute;top:0;left:0;right:0;bottom:0;}.mask.block-scrollbars{overflow:auto;}.masked select,.drag select,.hide-select select{_visibility:hidden;}.yui-panel-container select{_visibility:inherit;}.hide-scrollbars,.hide-scrollbars *{overflow:hidden;}.hide-scrollbars select{display:none;}.show-scrollbars{overflow:auto;}.yui-panel-container.show-scrollbars,.yui-tt.show-scrollbars{overflow:visible;}.yui-panel-container.show-scrollbars .underlay,.yui-tt.show-scrollbars .yui-tt-shadow{overflow:auto;}.yui-panel-container.shadow .underlay.yui-force-redraw{padding-bottom:1px;}.yui-effect-fade .underlay{display:none;}.yui-tt-shadow{position:absolute;}.yui-override-padding{padding:0 !important;}.yui-panel-container .container-close{overflow:hidden;text-indent:-10000em;text-decoration:none;}.yui-skin-sam .mask{background-color:#000;opacity:.25;*filter:alpha(opacity=25);}.yui-skin-sam .yui-panel-container{padding:0 1px;*padding:2px;}.yui-skin-sam .yui-panel{position:relative;left:0;top:0;border-style:solid;border-width:1px 0;border-color:#808080;z-index:1;*border-width:1px;*zoom:1;_zoom:normal;}.yui-skin-sam .yui-panel .hd,.yui-skin-sam .yui-panel .bd,.yui-skin-sam .yui-panel .ft{border-style:solid;border-width:0 1px;border-color:#808080;margin:0 -1px;*margin:0;*border:0;}.yui-skin-sam .yui-panel .hd{border-bottom:solid 1px #ccc;}.yui-skin-sam .yui-panel .bd,.yui-skin-sam .yui-panel .ft{background-color:#F2F2F2;}.yui-skin-sam .yui-panel .hd{padding:0 10px;font-size:93%;line-height:2;*line-height:1.9;font-weight:bold;color:#000;background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -200px;}.yui-skin-sam .yui-panel .bd{padding:10px;}.yui-skin-sam .yui-panel .ft{border-top:solid 1px #808080;padding:5px 10px;font-size:77%;}.yui-skin-sam .yui-panel-container.focused .yui-panel .hd{}.yui-skin-sam .container-close{position:absolute;top:5px;right:6px;width:25px;height:15px;background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -300px;cursor:pointer;}.yui-skin-sam .yui-panel-container .underlay{right:-1px;left:-1px;}.yui-skin-sam .yui-panel-container.matte{padding:9px 10px;background-color:#fff;}.yui-skin-sam .yui-panel-container.shadow{_padding:2px 4px 0 2px;}.yui-skin-sam .yui-panel-container.shadow .underlay{position:absolute;top:2px;left:-3px;right:-3px;bottom:-3px;*top:4px;*left:-1px;*right:-1px;*bottom:-1px;_top:0;_left:0;_right:0;_bottom:0;_margin-top:3px;_margin-left:-1px;background-color:#000;opacity:.12;*filter:alpha(opacity=12);}.yui-skin-sam .yui-dialog .ft{border-top:none;padding:0 10px 10px 10px;font-size:100%;}.yui-skin-sam .yui-dialog .ft .button-group{display:block;text-align:right;}.yui-skin-sam .yui-dialog .ft button.default{font-weight:bold;}.yui-skin-sam .yui-dialog .ft span.default{border-color:#304369;background-position:0 -1400px;}.yui-skin-sam .yui-dialog .ft span.default .first-child{border-color:#304369;}.yui-skin-sam .yui-dialog .ft span.default button{color:#fff;}.yui-skin-sam .yui-dialog .ft span.yui-button-disabled{background-position:0pt -1500px;border-color:#ccc;}.yui-skin-sam .yui-dialog .ft span.yui-button-disabled .first-child{border-color:#ccc;}.yui-skin-sam .yui-dialog .ft span.yui-button-disabled button{color:#a6a6a6;}.yui-skin-sam .yui-simple-dialog .bd .yui-icon{background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 0;width:16px;height:16px;margin-right:10px;float:left;}.yui-skin-sam .yui-simple-dialog .bd span.blckicon{background-position:0 -1100px;}.yui-skin-sam .yui-simple-dialog .bd span.alrticon{background-position:0 -1050px;}.yui-skin-sam .yui-simple-dialog .bd span.hlpicon{background-position:0 -1150px;}.yui-skin-sam .yui-simple-dialog .bd span.infoicon{background-position:0 -1200px;}.yui-skin-sam .yui-simple-dialog .bd span.warnicon{background-position:0 -1900px;}.yui-skin-sam .yui-simple-dialog .bd span.tipicon{background-position:0 -1250px;}.yui-skin-sam .yui-tt .bd{position:relative;top:0;left:0;z-index:1;color:#000;padding:2px 5px;border-color:#D4C237 #A6982B #A6982B #A6982B;border-width:1px;border-style:solid;background-color:#FFEE69;}.yui-skin-sam .yui-tt.show-scrollbars .bd{overflow:auto;}.yui-skin-sam .yui-tt-shadow{top:2px;right:-3px;left:-3px;bottom:-3px;background-color:#000;}.yui-skin-sam .yui-tt-shadow-visible{opacity:.12;*filter:alpha(opacity=12);}
diff --git a/eclipse.org-common/yui/2.6.0/build/container/assets/tip16_1.gif b/eclipse.org-common/yui/2.6.0/build/container/assets/tip16_1.gif
deleted file mode 100644
index 8f0be2b..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/assets/tip16_1.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/container/assets/warn16_1.gif b/eclipse.org-common/yui/2.6.0/build/container/assets/warn16_1.gif
deleted file mode 100644
index d679df5..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/assets/warn16_1.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/container/container-debug.js b/eclipse.org-common/yui/2.6.0/build/container/container-debug.js
deleted file mode 100644
index a23db21..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/container-debug.js
+++ /dev/null
@@ -1,8861 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function () {
-
-    /**
-    * Config is a utility used within an Object to allow the implementer to
-    * maintain a list of local configuration properties and listen for changes 
-    * to those properties dynamically using CustomEvent. The initial values are 
-    * also maintained so that the configuration can be reset at any given point 
-    * to its initial state.
-    * @namespace YAHOO.util
-    * @class Config
-    * @constructor
-    * @param {Object} owner The owner Object to which this Config Object belongs
-    */
-    YAHOO.util.Config = function (owner) {
-
-        if (owner) {
-            this.init(owner);
-        }
-
-        if (!owner) {  YAHOO.log("No owner specified for Config object", "error", "Config"); }
-
-    };
-
-
-    var Lang = YAHOO.lang,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Config = YAHOO.util.Config;
-
-
-    /**
-     * Constant representing the CustomEvent type for the config changed event.
-     * @property YAHOO.util.Config.CONFIG_CHANGED_EVENT
-     * @private
-     * @static
-     * @final
-     */
-    Config.CONFIG_CHANGED_EVENT = "configChanged";
-    
-    /**
-     * Constant representing the boolean type string
-     * @property YAHOO.util.Config.BOOLEAN_TYPE
-     * @private
-     * @static
-     * @final
-     */
-    Config.BOOLEAN_TYPE = "boolean";
-    
-    Config.prototype = {
-     
-        /**
-        * Object reference to the owner of this Config Object
-        * @property owner
-        * @type Object
-        */
-        owner: null,
-        
-        /**
-        * Boolean flag that specifies whether a queue is currently 
-        * being executed
-        * @property queueInProgress
-        * @type Boolean
-        */
-        queueInProgress: false,
-        
-        /**
-        * Maintains the local collection of configuration property objects and 
-        * their specified values
-        * @property config
-        * @private
-        * @type Object
-        */ 
-        config: null,
-        
-        /**
-        * Maintains the local collection of configuration property objects as 
-        * they were initially applied.
-        * This object is used when resetting a property.
-        * @property initialConfig
-        * @private
-        * @type Object
-        */ 
-        initialConfig: null,
-        
-        /**
-        * Maintains the local, normalized CustomEvent queue
-        * @property eventQueue
-        * @private
-        * @type Object
-        */ 
-        eventQueue: null,
-        
-        /**
-        * Custom Event, notifying subscribers when Config properties are set 
-        * (setProperty is called without the silent flag
-        * @event configChangedEvent
-        */
-        configChangedEvent: null,
-    
-        /**
-        * Initializes the configuration Object and all of its local members.
-        * @method init
-        * @param {Object} owner The owner Object to which this Config 
-        * Object belongs
-        */
-        init: function (owner) {
-    
-            this.owner = owner;
-    
-            this.configChangedEvent = 
-                this.createEvent(Config.CONFIG_CHANGED_EVENT);
-    
-            this.configChangedEvent.signature = CustomEvent.LIST;
-            this.queueInProgress = false;
-            this.config = {};
-            this.initialConfig = {};
-            this.eventQueue = [];
-        
-        },
-        
-        /**
-        * Validates that the value passed in is a Boolean.
-        * @method checkBoolean
-        * @param {Object} val The value to validate
-        * @return {Boolean} true, if the value is valid
-        */ 
-        checkBoolean: function (val) {
-            return (typeof val == Config.BOOLEAN_TYPE);
-        },
-        
-        /**
-        * Validates that the value passed in is a number.
-        * @method checkNumber
-        * @param {Object} val The value to validate
-        * @return {Boolean} true, if the value is valid
-        */
-        checkNumber: function (val) {
-            return (!isNaN(val));
-        },
-        
-        /**
-        * Fires a configuration property event using the specified value. 
-        * @method fireEvent
-        * @private
-        * @param {String} key The configuration property's name
-        * @param {value} Object The value of the correct type for the property
-        */ 
-        fireEvent: function ( key, value ) {
-            YAHOO.log("Firing Config event: " + key + "=" + value, "info", "Config");
-            var property = this.config[key];
-        
-            if (property && property.event) {
-                property.event.fire(value);
-            } 
-        },
-        
-        /**
-        * Adds a property to the Config Object's private config hash.
-        * @method addProperty
-        * @param {String} key The configuration property's name
-        * @param {Object} propertyObject The Object containing all of this 
-        * property's arguments
-        */
-        addProperty: function ( key, propertyObject ) {
-            key = key.toLowerCase();
-            YAHOO.log("Added property: " + key, "info", "Config");
-        
-            this.config[key] = propertyObject;
-        
-            propertyObject.event = this.createEvent(key, { scope: this.owner });
-            propertyObject.event.signature = CustomEvent.LIST;
-            
-            
-            propertyObject.key = key;
-        
-            if (propertyObject.handler) {
-                propertyObject.event.subscribe(propertyObject.handler, 
-                    this.owner);
-            }
-        
-            this.setProperty(key, propertyObject.value, true);
-            
-            if (! propertyObject.suppressEvent) {
-                this.queueProperty(key, propertyObject.value);
-            }
-            
-        },
-        
-        /**
-        * Returns a key-value configuration map of the values currently set in  
-        * the Config Object.
-        * @method getConfig
-        * @return {Object} The current config, represented in a key-value map
-        */
-        getConfig: function () {
-        
-            var cfg = {},
-                currCfg = this.config,
-                prop,
-                property;
-                
-            for (prop in currCfg) {
-                if (Lang.hasOwnProperty(currCfg, prop)) {
-                    property = currCfg[prop];
-                    if (property && property.event) {
-                        cfg[prop] = property.value;
-                    }
-                }
-            }
-
-            return cfg;
-        },
-        
-        /**
-        * Returns the value of specified property.
-        * @method getProperty
-        * @param {String} key The name of the property
-        * @return {Object}  The value of the specified property
-        */
-        getProperty: function (key) {
-            var property = this.config[key.toLowerCase()];
-            if (property && property.event) {
-                return property.value;
-            } else {
-                return undefined;
-            }
-        },
-        
-        /**
-        * Resets the specified property's value to its initial value.
-        * @method resetProperty
-        * @param {String} key The name of the property
-        * @return {Boolean} True is the property was reset, false if not
-        */
-        resetProperty: function (key) {
-    
-            key = key.toLowerCase();
-        
-            var property = this.config[key];
-    
-            if (property && property.event) {
-    
-                if (this.initialConfig[key] && 
-                    !Lang.isUndefined(this.initialConfig[key])) {
-    
-                    this.setProperty(key, this.initialConfig[key]);
-
-                    return true;
-    
-                }
-    
-            } else {
-    
-                return false;
-            }
-    
-        },
-        
-        /**
-        * Sets the value of a property. If the silent property is passed as 
-        * true, the property's event will not be fired.
-        * @method setProperty
-        * @param {String} key The name of the property
-        * @param {String} value The value to set the property to
-        * @param {Boolean} silent Whether the value should be set silently, 
-        * without firing the property event.
-        * @return {Boolean} True, if the set was successful, false if it failed.
-        */
-        setProperty: function (key, value, silent) {
-        
-            var property;
-        
-            key = key.toLowerCase();
-            YAHOO.log("setProperty: " + key + "=" + value, "info", "Config");
-        
-            if (this.queueInProgress && ! silent) {
-                // Currently running through a queue... 
-                this.queueProperty(key,value);
-                return true;
-    
-            } else {
-                property = this.config[key];
-                if (property && property.event) {
-                    if (property.validator && !property.validator(value)) {
-                        return false;
-                    } else {
-                        property.value = value;
-                        if (! silent) {
-                            this.fireEvent(key, value);
-                            this.configChangedEvent.fire([key, value]);
-                        }
-                        return true;
-                    }
-                } else {
-                    return false;
-                }
-            }
-        },
-        
-        /**
-        * Sets the value of a property and queues its event to execute. If the 
-        * event is already scheduled to execute, it is
-        * moved from its current position to the end of the queue.
-        * @method queueProperty
-        * @param {String} key The name of the property
-        * @param {String} value The value to set the property to
-        * @return {Boolean}  true, if the set was successful, false if 
-        * it failed.
-        */ 
-        queueProperty: function (key, value) {
-        
-            key = key.toLowerCase();
-            YAHOO.log("queueProperty: " + key + "=" + value, "info", "Config");
-        
-            var property = this.config[key],
-                foundDuplicate = false,
-                iLen,
-                queueItem,
-                queueItemKey,
-                queueItemValue,
-                sLen,
-                supercedesCheck,
-                qLen,
-                queueItemCheck,
-                queueItemCheckKey,
-                queueItemCheckValue,
-                i,
-                s,
-                q;
-                                
-            if (property && property.event) {
-    
-                if (!Lang.isUndefined(value) && property.validator && 
-                    !property.validator(value)) { // validator
-                    return false;
-                } else {
-        
-                    if (!Lang.isUndefined(value)) {
-                        property.value = value;
-                    } else {
-                        value = property.value;
-                    }
-        
-                    foundDuplicate = false;
-                    iLen = this.eventQueue.length;
-        
-                    for (i = 0; i < iLen; i++) {
-                        queueItem = this.eventQueue[i];
-        
-                        if (queueItem) {
-                            queueItemKey = queueItem[0];
-                            queueItemValue = queueItem[1];
-
-                            if (queueItemKey == key) {
-    
-                                /*
-                                    found a dupe... push to end of queue, null 
-                                    current item, and break
-                                */
-    
-                                this.eventQueue[i] = null;
-    
-                                this.eventQueue.push(
-                                    [key, (!Lang.isUndefined(value) ? 
-                                    value : queueItemValue)]);
-    
-                                foundDuplicate = true;
-                                break;
-                            }
-                        }
-                    }
-                    
-                    // this is a refire, or a new property in the queue
-    
-                    if (! foundDuplicate && !Lang.isUndefined(value)) { 
-                        this.eventQueue.push([key, value]);
-                    }
-                }
-        
-                if (property.supercedes) {
-
-                    sLen = property.supercedes.length;
-
-                    for (s = 0; s < sLen; s++) {
-
-                        supercedesCheck = property.supercedes[s];
-                        qLen = this.eventQueue.length;
-
-                        for (q = 0; q < qLen; q++) {
-                            queueItemCheck = this.eventQueue[q];
-
-                            if (queueItemCheck) {
-                                queueItemCheckKey = queueItemCheck[0];
-                                queueItemCheckValue = queueItemCheck[1];
-
-                                if (queueItemCheckKey == 
-                                    supercedesCheck.toLowerCase() ) {
-
-                                    this.eventQueue.push([queueItemCheckKey, 
-                                        queueItemCheckValue]);
-
-                                    this.eventQueue[q] = null;
-                                    break;
-
-                                }
-                            }
-                        }
-                    }
-                }
-
-                YAHOO.log("Config event queue: " + this.outputEventQueue(), "info", "Config");
-
-                return true;
-            } else {
-                return false;
-            }
-        },
-        
-        /**
-        * Fires the event for a property using the property's current value.
-        * @method refireEvent
-        * @param {String} key The name of the property
-        */
-        refireEvent: function (key) {
-    
-            key = key.toLowerCase();
-        
-            var property = this.config[key];
-    
-            if (property && property.event && 
-    
-                !Lang.isUndefined(property.value)) {
-    
-                if (this.queueInProgress) {
-    
-                    this.queueProperty(key);
-    
-                } else {
-    
-                    this.fireEvent(key, property.value);
-    
-                }
-    
-            }
-        },
-        
-        /**
-        * Applies a key-value Object literal to the configuration, replacing  
-        * any existing values, and queueing the property events.
-        * Although the values will be set, fireQueue() must be called for their 
-        * associated events to execute.
-        * @method applyConfig
-        * @param {Object} userConfig The configuration Object literal
-        * @param {Boolean} init  When set to true, the initialConfig will 
-        * be set to the userConfig passed in, so that calling a reset will 
-        * reset the properties to the passed values.
-        */
-        applyConfig: function (userConfig, init) {
-        
-            var sKey,
-                oConfig;
-
-            if (init) {
-                oConfig = {};
-                for (sKey in userConfig) {
-                    if (Lang.hasOwnProperty(userConfig, sKey)) {
-                        oConfig[sKey.toLowerCase()] = userConfig[sKey];
-                    }
-                }
-                this.initialConfig = oConfig;
-            }
-
-            for (sKey in userConfig) {
-                if (Lang.hasOwnProperty(userConfig, sKey)) {
-                    this.queueProperty(sKey, userConfig[sKey]);
-                }
-            }
-        },
-        
-        /**
-        * Refires the events for all configuration properties using their 
-        * current values.
-        * @method refresh
-        */
-        refresh: function () {
-
-            var prop;
-
-            for (prop in this.config) {
-                if (Lang.hasOwnProperty(this.config, prop)) {
-                    this.refireEvent(prop);
-                }
-            }
-        },
-        
-        /**
-        * Fires the normalized list of queued property change events
-        * @method fireQueue
-        */
-        fireQueue: function () {
-        
-            var i, 
-                queueItem,
-                key,
-                value,
-                property;
-        
-            this.queueInProgress = true;
-            for (i = 0;i < this.eventQueue.length; i++) {
-                queueItem = this.eventQueue[i];
-                if (queueItem) {
-        
-                    key = queueItem[0];
-                    value = queueItem[1];
-                    property = this.config[key];
-
-                    property.value = value;
-
-                    // Clear out queue entry, to avoid it being 
-                    // re-added to the queue by any queueProperty/supercedes
-                    // calls which are invoked during fireEvent
-                    this.eventQueue[i] = null;
-
-                    this.fireEvent(key,value);
-                }
-            }
-            
-            this.queueInProgress = false;
-            this.eventQueue = [];
-        },
-        
-        /**
-        * Subscribes an external handler to the change event for any 
-        * given property. 
-        * @method subscribeToConfigEvent
-        * @param {String} key The property name
-        * @param {Function} handler The handler function to use subscribe to 
-        * the property's event
-        * @param {Object} obj The Object to use for scoping the event handler 
-        * (see CustomEvent documentation)
-        * @param {Boolean} override Optional. If true, will override "this"  
-        * within the handler to map to the scope Object passed into the method.
-        * @return {Boolean} True, if the subscription was successful, 
-        * otherwise false.
-        */ 
-        subscribeToConfigEvent: function (key, handler, obj, override) {
-    
-            var property = this.config[key.toLowerCase()];
-    
-            if (property && property.event) {
-                if (!Config.alreadySubscribed(property.event, handler, obj)) {
-                    property.event.subscribe(handler, obj, override);
-                }
-                return true;
-            } else {
-                return false;
-            }
-    
-        },
-        
-        /**
-        * Unsubscribes an external handler from the change event for any 
-        * given property. 
-        * @method unsubscribeFromConfigEvent
-        * @param {String} key The property name
-        * @param {Function} handler The handler function to use subscribe to 
-        * the property's event
-        * @param {Object} obj The Object to use for scoping the event 
-        * handler (see CustomEvent documentation)
-        * @return {Boolean} True, if the unsubscription was successful, 
-        * otherwise false.
-        */
-        unsubscribeFromConfigEvent: function (key, handler, obj) {
-            var property = this.config[key.toLowerCase()];
-            if (property && property.event) {
-                return property.event.unsubscribe(handler, obj);
-            } else {
-                return false;
-            }
-        },
-        
-        /**
-        * Returns a string representation of the Config object
-        * @method toString
-        * @return {String} The Config object in string format.
-        */
-        toString: function () {
-            var output = "Config";
-            if (this.owner) {
-                output += " [" + this.owner.toString() + "]";
-            }
-            return output;
-        },
-        
-        /**
-        * Returns a string representation of the Config object's current 
-        * CustomEvent queue
-        * @method outputEventQueue
-        * @return {String} The string list of CustomEvents currently queued 
-        * for execution
-        */
-        outputEventQueue: function () {
-
-            var output = "",
-                queueItem,
-                q,
-                nQueue = this.eventQueue.length;
-              
-            for (q = 0; q < nQueue; q++) {
-                queueItem = this.eventQueue[q];
-                if (queueItem) {
-                    output += queueItem[0] + "=" + queueItem[1] + ", ";
-                }
-            }
-            return output;
-        },
-
-        /**
-        * Sets all properties to null, unsubscribes all listeners from each 
-        * property's change event and all listeners from the configChangedEvent.
-        * @method destroy
-        */
-        destroy: function () {
-
-            var oConfig = this.config,
-                sProperty,
-                oProperty;
-
-
-            for (sProperty in oConfig) {
-            
-                if (Lang.hasOwnProperty(oConfig, sProperty)) {
-
-                    oProperty = oConfig[sProperty];
-
-                    oProperty.event.unsubscribeAll();
-                    oProperty.event = null;
-
-                }
-            
-            }
-            
-            this.configChangedEvent.unsubscribeAll();
-            
-            this.configChangedEvent = null;
-            this.owner = null;
-            this.config = null;
-            this.initialConfig = null;
-            this.eventQueue = null;
-        
-        }
-
-    };
-    
-    
-    
-    /**
-    * Checks to determine if a particular function/Object pair are already 
-    * subscribed to the specified CustomEvent
-    * @method YAHOO.util.Config.alreadySubscribed
-    * @static
-    * @param {YAHOO.util.CustomEvent} evt The CustomEvent for which to check 
-    * the subscriptions
-    * @param {Function} fn The function to look for in the subscribers list
-    * @param {Object} obj The execution scope Object for the subscription
-    * @return {Boolean} true, if the function/Object pair is already subscribed 
-    * to the CustomEvent passed in
-    */
-    Config.alreadySubscribed = function (evt, fn, obj) {
-    
-        var nSubscribers = evt.subscribers.length,
-            subsc,
-            i;
-
-        if (nSubscribers > 0) {
-            i = nSubscribers - 1;
-            do {
-                subsc = evt.subscribers[i];
-                if (subsc && subsc.obj == obj && subsc.fn == fn) {
-                    return true;
-                }
-            }
-            while (i--);
-        }
-
-        return false;
-
-    };
-
-    YAHOO.lang.augmentProto(Config, YAHOO.util.EventProvider);
-
-}());
-
-(function () {
-
-    /**
-    * The Container family of components is designed to enable developers to 
-    * create different kinds of content-containing modules on the web. Module 
-    * and Overlay are the most basic containers, and they can be used directly 
-    * or extended to build custom containers. Also part of the Container family 
-    * are four UI controls that extend Module and Overlay: Tooltip, Panel, 
-    * Dialog, and SimpleDialog.
-    * @module container
-    * @title Container
-    * @requires yahoo, dom, event 
-    * @optional dragdrop, animation, button
-    */
-    
-    /**
-    * Module is a JavaScript representation of the Standard Module Format. 
-    * Standard Module Format is a simple standard for markup containers where 
-    * child nodes representing the header, body, and footer of the content are 
-    * denoted using the CSS classes "hd", "bd", and "ft" respectively. 
-    * Module is the base class for all other classes in the YUI 
-    * Container package.
-    * @namespace YAHOO.widget
-    * @class Module
-    * @constructor
-    * @param {String} el The element ID representing the Module <em>OR</em>
-    * @param {HTMLElement} el The element representing the Module
-    * @param {Object} userConfig The configuration Object literal containing 
-    * the configuration that should be set for this module. See configuration 
-    * documentation for more details.
-    */
-    YAHOO.widget.Module = function (el, userConfig) {
-        if (el) {
-            this.init(el, userConfig);
-        } else {
-            YAHOO.log("No element or element ID specified" + 
-                " for Module instantiation", "error");
-        }
-    };
-
-    var Dom = YAHOO.util.Dom,
-        Config = YAHOO.util.Config,
-        Event = YAHOO.util.Event,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Module = YAHOO.widget.Module,
-
-        m_oModuleTemplate,
-        m_oHeaderTemplate,
-        m_oBodyTemplate,
-        m_oFooterTemplate,
-
-        /**
-        * Constant representing the name of the Module's events
-        * @property EVENT_TYPES
-        * @private
-        * @final
-        * @type Object
-        */
-        EVENT_TYPES = {
-            "BEFORE_INIT": "beforeInit",
-            "INIT": "init",
-            "APPEND": "append",
-            "BEFORE_RENDER": "beforeRender",
-            "RENDER": "render",
-            "CHANGE_HEADER": "changeHeader",
-            "CHANGE_BODY": "changeBody",
-            "CHANGE_FOOTER": "changeFooter",
-            "CHANGE_CONTENT": "changeContent",
-            "DESTORY": "destroy",
-            "BEFORE_SHOW": "beforeShow",
-            "SHOW": "show",
-            "BEFORE_HIDE": "beforeHide",
-            "HIDE": "hide"
-        },
-            
-        /**
-        * Constant representing the Module's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-        
-            "VISIBLE": { 
-                key: "visible", 
-                value: true, 
-                validator: YAHOO.lang.isBoolean 
-            },
-        
-            "EFFECT": { 
-                key: "effect", 
-                suppressEvent: true, 
-                supercedes: ["visible"] 
-            },
-
-            "MONITOR_RESIZE": { 
-                key: "monitorresize", 
-                value: true  
-            },
-
-            "APPEND_TO_DOCUMENT_BODY": { 
-                key: "appendtodocumentbody", 
-                value: false
-            }
-        };
-    
-    /**
-    * Constant representing the prefix path to use for non-secure images
-    * @property YAHOO.widget.Module.IMG_ROOT
-    * @static
-    * @final
-    * @type String
-    */
-    Module.IMG_ROOT = null;
-    
-    /**
-    * Constant representing the prefix path to use for securely served images
-    * @property YAHOO.widget.Module.IMG_ROOT_SSL
-    * @static
-    * @final
-    * @type String
-    */
-    Module.IMG_ROOT_SSL = null;
-    
-    /**
-    * Constant for the default CSS class name that represents a Module
-    * @property YAHOO.widget.Module.CSS_MODULE
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_MODULE = "yui-module";
-    
-    /**
-    * Constant representing the module header
-    * @property YAHOO.widget.Module.CSS_HEADER
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_HEADER = "hd";
-
-    /**
-    * Constant representing the module body
-    * @property YAHOO.widget.Module.CSS_BODY
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_BODY = "bd";
-    
-    /**
-    * Constant representing the module footer
-    * @property YAHOO.widget.Module.CSS_FOOTER
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_FOOTER = "ft";
-    
-    /**
-    * Constant representing the url for the "src" attribute of the iframe 
-    * used to monitor changes to the browser's base font size
-    * @property YAHOO.widget.Module.RESIZE_MONITOR_SECURE_URL
-    * @static
-    * @final
-    * @type String
-    */
-    Module.RESIZE_MONITOR_SECURE_URL = "javascript:false;";
-    
-    /**
-    * Singleton CustomEvent fired when the font size is changed in the browser.
-    * Opera's "zoom" functionality currently does not support text 
-    * size detection.
-    * @event YAHOO.widget.Module.textResizeEvent
-    */
-    Module.textResizeEvent = new CustomEvent("textResize");
-
-    function createModuleTemplate() {
-
-        if (!m_oModuleTemplate) {
-            m_oModuleTemplate = document.createElement("div");
-            
-            m_oModuleTemplate.innerHTML = ("<div class=\"" + 
-                Module.CSS_HEADER + "\"></div>" + "<div class=\"" + 
-                Module.CSS_BODY + "\"></div><div class=\"" + 
-                Module.CSS_FOOTER + "\"></div>");
-
-            m_oHeaderTemplate = m_oModuleTemplate.firstChild;
-            m_oBodyTemplate = m_oHeaderTemplate.nextSibling;
-            m_oFooterTemplate = m_oBodyTemplate.nextSibling;
-        }
-
-        return m_oModuleTemplate;
-    }
-
-    function createHeader() {
-        if (!m_oHeaderTemplate) {
-            createModuleTemplate();
-        }
-        return (m_oHeaderTemplate.cloneNode(false));
-    }
-
-    function createBody() {
-        if (!m_oBodyTemplate) {
-            createModuleTemplate();
-        }
-        return (m_oBodyTemplate.cloneNode(false));
-    }
-
-    function createFooter() {
-        if (!m_oFooterTemplate) {
-            createModuleTemplate();
-        }
-        return (m_oFooterTemplate.cloneNode(false));
-    }
-
-    Module.prototype = {
-
-        /**
-        * The class's constructor function
-        * @property contructor
-        * @type Function
-        */
-        constructor: Module,
-        
-        /**
-        * The main module element that contains the header, body, and footer
-        * @property element
-        * @type HTMLElement
-        */
-        element: null,
-
-        /**
-        * The header element, denoted with CSS class "hd"
-        * @property header
-        * @type HTMLElement
-        */
-        header: null,
-
-        /**
-        * The body element, denoted with CSS class "bd"
-        * @property body
-        * @type HTMLElement
-        */
-        body: null,
-
-        /**
-        * The footer element, denoted with CSS class "ft"
-        * @property footer
-        * @type HTMLElement
-        */
-        footer: null,
-
-        /**
-        * The id of the element
-        * @property id
-        * @type String
-        */
-        id: null,
-
-        /**
-        * A string representing the root path for all images created by
-        * a Module instance.
-        * @deprecated It is recommend that any images for a Module be applied
-        * via CSS using the "background-image" property.
-        * @property imageRoot
-        * @type String
-        */
-        imageRoot: Module.IMG_ROOT,
-
-        /**
-        * Initializes the custom events for Module which are fired 
-        * automatically at appropriate times by the Module class.
-        * @method initEvents
-        */
-        initEvents: function () {
-
-            var SIGNATURE = CustomEvent.LIST;
-
-            /**
-            * CustomEvent fired prior to class initalization.
-            * @event beforeInitEvent
-            * @param {class} classRef class reference of the initializing 
-            * class, such as this.beforeInitEvent.fire(Module)
-            */
-            this.beforeInitEvent = this.createEvent(EVENT_TYPES.BEFORE_INIT);
-            this.beforeInitEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after class initalization.
-            * @event initEvent
-            * @param {class} classRef class reference of the initializing 
-            * class, such as this.beforeInitEvent.fire(Module)
-            */  
-            this.initEvent = this.createEvent(EVENT_TYPES.INIT);
-            this.initEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired when the Module is appended to the DOM
-            * @event appendEvent
-            */
-            this.appendEvent = this.createEvent(EVENT_TYPES.APPEND);
-            this.appendEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired before the Module is rendered
-            * @event beforeRenderEvent
-            */
-            this.beforeRenderEvent = this.createEvent(EVENT_TYPES.BEFORE_RENDER);
-            this.beforeRenderEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired after the Module is rendered
-            * @event renderEvent
-            */
-            this.renderEvent = this.createEvent(EVENT_TYPES.RENDER);
-            this.renderEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired when the header content of the Module 
-            * is modified
-            * @event changeHeaderEvent
-            * @param {String/HTMLElement} content String/element representing 
-            * the new header content
-            */
-            this.changeHeaderEvent = this.createEvent(EVENT_TYPES.CHANGE_HEADER);
-            this.changeHeaderEvent.signature = SIGNATURE;
-            
-            /**
-            * CustomEvent fired when the body content of the Module is modified
-            * @event changeBodyEvent
-            * @param {String/HTMLElement} content String/element representing 
-            * the new body content
-            */  
-            this.changeBodyEvent = this.createEvent(EVENT_TYPES.CHANGE_BODY);
-            this.changeBodyEvent.signature = SIGNATURE;
-            
-            /**
-            * CustomEvent fired when the footer content of the Module 
-            * is modified
-            * @event changeFooterEvent
-            * @param {String/HTMLElement} content String/element representing 
-            * the new footer content
-            */
-            this.changeFooterEvent = this.createEvent(EVENT_TYPES.CHANGE_FOOTER);
-            this.changeFooterEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired when the content of the Module is modified
-            * @event changeContentEvent
-            */
-            this.changeContentEvent = this.createEvent(EVENT_TYPES.CHANGE_CONTENT);
-            this.changeContentEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired when the Module is destroyed
-            * @event destroyEvent
-            */
-            this.destroyEvent = this.createEvent(EVENT_TYPES.DESTORY);
-            this.destroyEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired before the Module is shown
-            * @event beforeShowEvent
-            */
-            this.beforeShowEvent = this.createEvent(EVENT_TYPES.BEFORE_SHOW);
-            this.beforeShowEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after the Module is shown
-            * @event showEvent
-            */
-            this.showEvent = this.createEvent(EVENT_TYPES.SHOW);
-            this.showEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired before the Module is hidden
-            * @event beforeHideEvent
-            */
-            this.beforeHideEvent = this.createEvent(EVENT_TYPES.BEFORE_HIDE);
-            this.beforeHideEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after the Module is hidden
-            * @event hideEvent
-            */
-            this.hideEvent = this.createEvent(EVENT_TYPES.HIDE);
-            this.hideEvent.signature = SIGNATURE;
-        }, 
-
-        /**
-        * String representing the current user-agent platform
-        * @property platform
-        * @type String
-        */
-        platform: function () {
-            var ua = navigator.userAgent.toLowerCase();
-
-            if (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1) {
-                return "windows";
-            } else if (ua.indexOf("macintosh") != -1) {
-                return "mac";
-            } else {
-                return false;
-            }
-        }(),
-        
-        /**
-        * String representing the user-agent of the browser
-        * @deprecated Use YAHOO.env.ua
-        * @property browser
-        * @type String
-        */
-        browser: function () {
-            var ua = navigator.userAgent.toLowerCase();
-            /*
-                 Check Opera first in case of spoof and check Safari before
-                 Gecko since Safari's user agent string includes "like Gecko"
-            */
-            if (ua.indexOf('opera') != -1) { 
-                return 'opera';
-            } else if (ua.indexOf('msie 7') != -1) {
-                return 'ie7';
-            } else if (ua.indexOf('msie') != -1) {
-                return 'ie';
-            } else if (ua.indexOf('safari') != -1) { 
-                return 'safari';
-            } else if (ua.indexOf('gecko') != -1) {
-                return 'gecko';
-            } else {
-                return false;
-            }
-        }(),
-        
-        /**
-        * Boolean representing whether or not the current browsing context is 
-        * secure (https)
-        * @property isSecure
-        * @type Boolean
-        */
-        isSecure: function () {
-            if (window.location.href.toLowerCase().indexOf("https") === 0) {
-                return true;
-            } else {
-                return false;
-            }
-        }(),
-        
-        /**
-        * Initializes the custom events for Module which are fired 
-        * automatically at appropriate times by the Module class.
-        */
-        initDefaultConfig: function () {
-            // Add properties //
-            /**
-            * Specifies whether the Module is visible on the page.
-            * @config visible
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.VISIBLE.key, {
-                handler: this.configVisible, 
-                value: DEFAULT_CONFIG.VISIBLE.value, 
-                validator: DEFAULT_CONFIG.VISIBLE.validator
-            });
-
-            /**
-            * <p>
-            * Object or array of objects representing the ContainerEffect 
-            * classes that are active for animating the container.
-            * </p>
-            * <p>
-            * <strong>NOTE:</strong> Although this configuration 
-            * property is introduced at the Module level, an out of the box
-            * implementation is not shipped for the Module class so setting
-            * the proroperty on the Module class has no effect. The Overlay 
-            * class is the first class to provide out of the box ContainerEffect 
-            * support.
-            * </p>
-            * @config effect
-            * @type Object
-            * @default null
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.EFFECT.key, {
-                suppressEvent: DEFAULT_CONFIG.EFFECT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.EFFECT.supercedes
-            });
-
-            /**
-            * Specifies whether to create a special proxy iframe to monitor 
-            * for user font resizing in the document
-            * @config monitorresize
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.MONITOR_RESIZE.key, {
-                handler: this.configMonitorResize,
-                value: DEFAULT_CONFIG.MONITOR_RESIZE.value
-            });
-
-            /**
-            * Specifies if the module should be rendered as the first child 
-            * of document.body or appended as the last child when render is called
-            * with document.body as the "appendToNode".
-            * <p>
-            * Appending to the body while the DOM is still being constructed can 
-            * lead to Operation Aborted errors in IE hence this flag is set to 
-            * false by default.
-            * </p>
-            * 
-            * @config appendtodocumentbody
-            * @type Boolean
-            * @default false
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.APPEND_TO_DOCUMENT_BODY.key, {
-                value: DEFAULT_CONFIG.APPEND_TO_DOCUMENT_BODY.value
-            });
-        },
-
-        /**
-        * The Module class's initialization method, which is executed for
-        * Module and all of its subclasses. This method is automatically 
-        * called by the constructor, and  sets up all DOM references for 
-        * pre-existing markup, and creates required markup if it is not 
-        * already present.
-        * @method init
-        * @param {String} el The element ID representing the Module <em>OR</em>
-        * @param {HTMLElement} el The element representing the Module
-        * @param {Object} userConfig The configuration Object literal 
-        * containing the configuration that should be set for this module. 
-        * See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-
-            var elId, child;
-
-            this.initEvents();
-            this.beforeInitEvent.fire(Module);
-
-            /**
-            * The Module's Config object used for monitoring 
-            * configuration properties.
-            * @property cfg
-            * @type YAHOO.util.Config
-            */
-            this.cfg = new Config(this);
-
-            if (this.isSecure) {
-                this.imageRoot = Module.IMG_ROOT_SSL;
-            }
-
-            if (typeof el == "string") {
-                elId = el;
-                el = document.getElementById(el);
-                if (! el) {
-                    el = (createModuleTemplate()).cloneNode(false);
-                    el.id = elId;
-                }
-            }
-
-            this.element = el;
-
-            if (el.id) {
-                this.id = el.id;
-            }
-
-            child = this.element.firstChild;
-
-            if (child) {
-                var fndHd = false, fndBd = false, fndFt = false;
-                do {
-                    // We're looking for elements
-                    if (1 == child.nodeType) {
-                        if (!fndHd && Dom.hasClass(child, Module.CSS_HEADER)) {
-                            this.header = child;
-                            fndHd = true;
-                        } else if (!fndBd && Dom.hasClass(child, Module.CSS_BODY)) {
-                            this.body = child;
-                            fndBd = true;
-                        } else if (!fndFt && Dom.hasClass(child, Module.CSS_FOOTER)){
-                            this.footer = child;
-                            fndFt = true;
-                        }
-                    }
-                } while ((child = child.nextSibling));
-            }
-
-            this.initDefaultConfig();
-
-            Dom.addClass(this.element, Module.CSS_MODULE);
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-
-            /*
-                Subscribe to the fireQueue() method of Config so that any 
-                queued configuration changes are excecuted upon render of 
-                the Module
-            */ 
-
-            if (!Config.alreadySubscribed(this.renderEvent, this.cfg.fireQueue, this.cfg)) {
-                this.renderEvent.subscribe(this.cfg.fireQueue, this.cfg, true);
-            }
-
-            this.initEvent.fire(Module);
-        },
-
-        /**
-        * Initialize an empty IFRAME that is placed out of the visible area 
-        * that can be used to detect text resize.
-        * @method initResizeMonitor
-        */
-        initResizeMonitor: function () {
-
-            var isGeckoWin = (YAHOO.env.ua.gecko && this.platform == "windows");
-            if (isGeckoWin) {
-                // Help prevent spinning loading icon which 
-                // started with FireFox 2.0.0.8/Win
-                var self = this;
-                setTimeout(function(){self._initResizeMonitor();}, 0);
-            } else {
-                this._initResizeMonitor();
-            }
-        },
-
-        /**
-         * Create and initialize the text resize monitoring iframe.
-         * 
-         * @protected
-         * @method _initResizeMonitor
-         */
-        _initResizeMonitor : function() {
-
-            var oDoc, 
-                oIFrame, 
-                sHTML;
-
-            function fireTextResize() {
-                Module.textResizeEvent.fire();
-            }
-
-            if (!YAHOO.env.ua.opera) {
-                oIFrame = Dom.get("_yuiResizeMonitor");
-
-                var supportsCWResize = this._supportsCWResize();
-
-                if (!oIFrame) {
-                    oIFrame = document.createElement("iframe");
-
-                    if (this.isSecure && Module.RESIZE_MONITOR_SECURE_URL && YAHOO.env.ua.ie) {
-                        oIFrame.src = Module.RESIZE_MONITOR_SECURE_URL;
-                    }
-
-                    if (!supportsCWResize) {
-                        // Can't monitor on contentWindow, so fire from inside iframe
-                        sHTML = ["<html><head><script ",
-                                 "type=\"text/javascript\">",
-                                 "window.onresize=function(){window.parent.",
-                                 "YAHOO.widget.Module.textResizeEvent.",
-                                 "fire();};<",
-                                 "\/script></head>",
-                                 "<body></body></html>"].join('');
-
-                        oIFrame.src = "data:text/html;charset=utf-8," + encodeURIComponent(sHTML);
-                    }
-
-                    oIFrame.id = "_yuiResizeMonitor";
-                    oIFrame.title = "Text Resize Monitor";
-                    /*
-                        Need to set "position" property before inserting the 
-                        iframe into the document or Safari's status bar will 
-                        forever indicate the iframe is loading 
-                        (See SourceForge bug #1723064)
-                    */
-                    oIFrame.style.position = "absolute";
-                    oIFrame.style.visibility = "hidden";
-
-                    var db = document.body,
-                        fc = db.firstChild;
-                    if (fc) {
-                        db.insertBefore(oIFrame, fc);
-                    } else {
-                        db.appendChild(oIFrame);
-                    }
-
-                    oIFrame.style.width = "10em";
-                    oIFrame.style.height = "10em";
-                    oIFrame.style.top = (-1 * oIFrame.offsetHeight) + "px";
-                    oIFrame.style.left = (-1 * oIFrame.offsetWidth) + "px";
-                    oIFrame.style.borderWidth = "0";
-                    oIFrame.style.visibility = "visible";
-
-                    /*
-                       Don't open/close the document for Gecko like we used to, since it
-                       leads to duplicate cookies. (See SourceForge bug #1721755)
-                    */
-                    if (YAHOO.env.ua.webkit) {
-                        oDoc = oIFrame.contentWindow.document;
-                        oDoc.open();
-                        oDoc.close();
-                    }
-                }
-
-                if (oIFrame && oIFrame.contentWindow) {
-                    Module.textResizeEvent.subscribe(this.onDomResize, this, true);
-
-                    if (!Module.textResizeInitialized) {
-                        if (supportsCWResize) {
-                            if (!Event.on(oIFrame.contentWindow, "resize", fireTextResize)) {
-                                /*
-                                     This will fail in IE if document.domain has 
-                                     changed, so we must change the listener to 
-                                     use the oIFrame element instead
-                                */
-                                Event.on(oIFrame, "resize", fireTextResize);
-                            }
-                        }
-                        Module.textResizeInitialized = true;
-                    }
-                    this.resizeMonitor = oIFrame;
-                }
-            }
-        },
-
-        /**
-         * Text resize monitor helper method.
-         * Determines if the browser supports resize events on iframe content windows.
-         * 
-         * @private
-         * @method _supportsCWResize
-         */
-        _supportsCWResize : function() {
-            /*
-                Gecko 1.8.0 (FF1.5), 1.8.1.0-5 (FF2) won't fire resize on contentWindow.
-                Gecko 1.8.1.6+ (FF2.0.0.6+) and all other browsers will fire resize on contentWindow.
-
-                We don't want to start sniffing for patch versions, so fire textResize the same
-                way on all FF, until 1.9 (3.x) is out
-             */
-            var bSupported = true;
-            if (YAHOO.env.ua.gecko && YAHOO.env.ua.gecko <= 1.8) {
-                bSupported = false;
-                /*
-                var v = navigator.userAgent.match(/rv:([^\s\)]*)/); // From YAHOO.env.ua
-                if (v && v[0]) {
-                    var sv = v[0].match(/\d\.\d\.(\d)/);
-                    if (sv && sv[1]) {
-                        if (parseInt(sv[1], 10) > 0) {
-                            bSupported = true;
-                        }
-                    }
-                }
-                */
-            }
-            return bSupported;
-        },
-
-        /**
-        * Event handler fired when the resize monitor element is resized.
-        * @method onDomResize
-        * @param {DOMEvent} e The DOM resize event
-        * @param {Object} obj The scope object passed to the handler
-        */
-        onDomResize: function (e, obj) {
-
-            var nLeft = -1 * this.resizeMonitor.offsetWidth,
-                nTop = -1 * this.resizeMonitor.offsetHeight;
-        
-            this.resizeMonitor.style.top = nTop + "px";
-            this.resizeMonitor.style.left =  nLeft + "px";
-
-        },
-
-        /**
-        * Sets the Module's header content to the string specified, or appends 
-        * the passed element to the header. If no header is present, one will 
-        * be automatically created. An empty string can be passed to the method
-        * to clear the contents of the header.
-        * 
-        * @method setHeader
-        * @param {String} headerContent The string used to set the header.
-        * As a convenience, non HTMLElement objects can also be passed into 
-        * the method, and will be treated as strings, with the header innerHTML
-        * set to their default toString implementations.
-        * <em>OR</em>
-        * @param {HTMLElement} headerContent The HTMLElement to append to 
-        * <em>OR</em>
-        * @param {DocumentFragment} headerContent The document fragment 
-        * containing elements which are to be added to the header
-        */
-        setHeader: function (headerContent) {
-            var oHeader = this.header || (this.header = createHeader());
-
-            if (headerContent.nodeName) {
-                oHeader.innerHTML = "";
-                oHeader.appendChild(headerContent);
-            } else {
-                oHeader.innerHTML = headerContent;
-            }
-
-            this.changeHeaderEvent.fire(headerContent);
-            this.changeContentEvent.fire();
-
-        },
-
-        /**
-        * Appends the passed element to the header. If no header is present, 
-        * one will be automatically created.
-        * @method appendToHeader
-        * @param {HTMLElement | DocumentFragment} element The element to 
-        * append to the header. In the case of a document fragment, the
-        * children of the fragment will be appended to the header.
-        */
-        appendToHeader: function (element) {
-            var oHeader = this.header || (this.header = createHeader());
-
-            oHeader.appendChild(element);
-
-            this.changeHeaderEvent.fire(element);
-            this.changeContentEvent.fire();
-
-        },
-
-        /**
-        * Sets the Module's body content to the HTML specified. 
-        * 
-        * If no body is present, one will be automatically created. 
-        * 
-        * An empty string can be passed to the method to clear the contents of the body.
-        * @method setBody
-        * @param {String} bodyContent The HTML used to set the body. 
-        * As a convenience, non HTMLElement objects can also be passed into 
-        * the method, and will be treated as strings, with the body innerHTML
-        * set to their default toString implementations.
-        * <em>OR</em>
-        * @param {HTMLElement} bodyContent The HTMLElement to add as the first and only
-        * child of the body element.
-        * <em>OR</em>
-        * @param {DocumentFragment} bodyContent The document fragment 
-        * containing elements which are to be added to the body
-        */
-        setBody: function (bodyContent) {
-            var oBody = this.body || (this.body = createBody());
-
-            if (bodyContent.nodeName) {
-                oBody.innerHTML = "";
-                oBody.appendChild(bodyContent);
-            } else {
-                oBody.innerHTML = bodyContent;
-            }
-
-            this.changeBodyEvent.fire(bodyContent);
-            this.changeContentEvent.fire();
-        },
-
-        /**
-        * Appends the passed element to the body. If no body is present, one 
-        * will be automatically created.
-        * @method appendToBody
-        * @param {HTMLElement | DocumentFragment} element The element to 
-        * append to the body. In the case of a document fragment, the
-        * children of the fragment will be appended to the body.
-        * 
-        */
-        appendToBody: function (element) {
-            var oBody = this.body || (this.body = createBody());
-        
-            oBody.appendChild(element);
-
-            this.changeBodyEvent.fire(element);
-            this.changeContentEvent.fire();
-
-        },
-        
-        /**
-        * Sets the Module's footer content to the HTML specified, or appends 
-        * the passed element to the footer. If no footer is present, one will 
-        * be automatically created. An empty string can be passed to the method
-        * to clear the contents of the footer.
-        * @method setFooter
-        * @param {String} footerContent The HTML used to set the footer 
-        * As a convenience, non HTMLElement objects can also be passed into 
-        * the method, and will be treated as strings, with the footer innerHTML
-        * set to their default toString implementations.
-        * <em>OR</em>
-        * @param {HTMLElement} footerContent The HTMLElement to append to 
-        * the footer
-        * <em>OR</em>
-        * @param {DocumentFragment} footerContent The document fragment containing 
-        * elements which are to be added to the footer
-        */
-        setFooter: function (footerContent) {
-
-            var oFooter = this.footer || (this.footer = createFooter());
-
-            if (footerContent.nodeName) {
-                oFooter.innerHTML = "";
-                oFooter.appendChild(footerContent);
-            } else {
-                oFooter.innerHTML = footerContent;
-            }
-
-            this.changeFooterEvent.fire(footerContent);
-            this.changeContentEvent.fire();
-        },
-
-        /**
-        * Appends the passed element to the footer. If no footer is present, 
-        * one will be automatically created.
-        * @method appendToFooter
-        * @param {HTMLElement | DocumentFragment} element The element to 
-        * append to the footer. In the case of a document fragment, the
-        * children of the fragment will be appended to the footer
-        */
-        appendToFooter: function (element) {
-
-            var oFooter = this.footer || (this.footer = createFooter());
-
-            oFooter.appendChild(element);
-
-            this.changeFooterEvent.fire(element);
-            this.changeContentEvent.fire();
-
-        },
-
-        /**
-        * Renders the Module by inserting the elements that are not already 
-        * in the main Module into their correct places. Optionally appends 
-        * the Module to the specified node prior to the render's execution. 
-        * <p>
-        * For Modules without existing markup, the appendToNode argument 
-        * is REQUIRED. If this argument is ommitted and the current element is 
-        * not present in the document, the function will return false, 
-        * indicating that the render was a failure.
-        * </p>
-        * <p>
-        * NOTE: As of 2.3.1, if the appendToNode is the document's body element
-        * then the module is rendered as the first child of the body element, 
-        * and not appended to it, to avoid Operation Aborted errors in IE when 
-        * rendering the module before window's load event is fired. You can 
-        * use the appendtodocumentbody configuration property to change this 
-        * to append to document.body if required.
-        * </p>
-        * @method render
-        * @param {String} appendToNode The element id to which the Module 
-        * should be appended to prior to rendering <em>OR</em>
-        * @param {HTMLElement} appendToNode The element to which the Module 
-        * should be appended to prior to rendering
-        * @param {HTMLElement} moduleElement OPTIONAL. The element that 
-        * represents the actual Standard Module container.
-        * @return {Boolean} Success or failure of the render
-        */
-        render: function (appendToNode, moduleElement) {
-
-            var me = this,
-                firstChild;
-
-            function appendTo(parentNode) {
-                if (typeof parentNode == "string") {
-                    parentNode = document.getElementById(parentNode);
-                }
-
-                if (parentNode) {
-                    me._addToParent(parentNode, me.element);
-                    me.appendEvent.fire();
-                }
-            }
-
-            this.beforeRenderEvent.fire();
-
-            if (! moduleElement) {
-                moduleElement = this.element;
-            }
-
-            if (appendToNode) {
-                appendTo(appendToNode);
-            } else { 
-                // No node was passed in. If the element is not already in the Dom, this fails
-                if (! Dom.inDocument(this.element)) {
-                    YAHOO.log("Render failed. Must specify appendTo node if " + " Module isn't already in the DOM.", "error");
-                    return false;
-                }
-            }
-
-            // Need to get everything into the DOM if it isn't already
-            if (this.header && ! Dom.inDocument(this.header)) {
-                // There is a header, but it's not in the DOM yet. Need to add it.
-                firstChild = moduleElement.firstChild;
-                if (firstChild) {
-                    moduleElement.insertBefore(this.header, firstChild);
-                } else {
-                    moduleElement.appendChild(this.header);
-                }
-            }
-
-            if (this.body && ! Dom.inDocument(this.body)) {
-                // There is a body, but it's not in the DOM yet. Need to add it.		
-                if (this.footer && Dom.isAncestor(this.moduleElement, this.footer)) {
-                    moduleElement.insertBefore(this.body, this.footer);
-                } else {
-                    moduleElement.appendChild(this.body);
-                }
-            }
-
-            if (this.footer && ! Dom.inDocument(this.footer)) {
-                // There is a footer, but it's not in the DOM yet. Need to add it.
-                moduleElement.appendChild(this.footer);
-            }
-
-            this.renderEvent.fire();
-            return true;
-        },
-
-        /**
-        * Removes the Module element from the DOM and sets all child elements 
-        * to null.
-        * @method destroy
-        */
-        destroy: function () {
-
-            var parent,
-                e;
-
-            if (this.element) {
-                Event.purgeElement(this.element, true);
-                parent = this.element.parentNode;
-            }
-
-            if (parent) {
-                parent.removeChild(this.element);
-            }
-        
-            this.element = null;
-            this.header = null;
-            this.body = null;
-            this.footer = null;
-
-            Module.textResizeEvent.unsubscribe(this.onDomResize, this);
-
-            this.cfg.destroy();
-            this.cfg = null;
-
-            this.destroyEvent.fire();
-        },
-
-        /**
-        * Shows the Module element by setting the visible configuration 
-        * property to true. Also fires two events: beforeShowEvent prior to 
-        * the visibility change, and showEvent after.
-        * @method show
-        */
-        show: function () {
-            this.cfg.setProperty("visible", true);
-        },
-
-        /**
-        * Hides the Module element by setting the visible configuration 
-        * property to false. Also fires two events: beforeHideEvent prior to 
-        * the visibility change, and hideEvent after.
-        * @method hide
-        */
-        hide: function () {
-            this.cfg.setProperty("visible", false);
-        },
-        
-        // BUILT-IN EVENT HANDLERS FOR MODULE //
-        /**
-        * Default event handler for changing the visibility property of a 
-        * Module. By default, this is achieved by switching the "display" style 
-        * between "block" and "none".
-        * This method is responsible for firing showEvent and hideEvent.
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        * @method configVisible
-        */
-        configVisible: function (type, args, obj) {
-            var visible = args[0];
-            if (visible) {
-                this.beforeShowEvent.fire();
-                Dom.setStyle(this.element, "display", "block");
-                this.showEvent.fire();
-            } else {
-                this.beforeHideEvent.fire();
-                Dom.setStyle(this.element, "display", "none");
-                this.hideEvent.fire();
-            }
-        },
-        
-        /**
-        * Default event handler for the "monitorresize" configuration property
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        * @method configMonitorResize
-        */
-        configMonitorResize: function (type, args, obj) {
-            var monitor = args[0];
-            if (monitor) {
-                this.initResizeMonitor();
-            } else {
-                Module.textResizeEvent.unsubscribe(this.onDomResize, this, true);
-                this.resizeMonitor = null;
-            }
-        },
-
-        /**
-         * This method is a protected helper, used when constructing the DOM structure for the module 
-         * to account for situations which may cause Operation Aborted errors in IE. It should not 
-         * be used for general DOM construction.
-         * <p>
-         * If the parentNode is not document.body, the element is appended as the last element.
-         * </p>
-         * <p>
-         * If the parentNode is document.body the element is added as the first child to help
-         * prevent Operation Aborted errors in IE.
-         * </p>
-         *
-         * @param {parentNode} The HTML element to which the element will be added
-         * @param {element} The HTML element to be added to parentNode's children
-         * @method _addToParent
-         * @protected
-         */
-        _addToParent: function(parentNode, element) {
-            if (!this.cfg.getProperty("appendtodocumentbody") && parentNode === document.body && parentNode.firstChild) {
-                parentNode.insertBefore(element, parentNode.firstChild);
-            } else {
-                parentNode.appendChild(element);
-            }
-        },
-
-        /**
-        * Returns a String representation of the Object.
-        * @method toString
-        * @return {String} The string representation of the Module
-        */
-        toString: function () {
-            return "Module " + this.id;
-        }
-    };
-
-    YAHOO.lang.augmentProto(Module, YAHOO.util.EventProvider);
-
-}());
-
-(function () {
-
-    /**
-    * Overlay is a Module that is absolutely positioned above the page flow. It 
-    * has convenience methods for positioning and sizing, as well as options for 
-    * controlling zIndex and constraining the Overlay's position to the current 
-    * visible viewport. Overlay also contains a dynamicly generated IFRAME which 
-    * is placed beneath it for Internet Explorer 6 and 5.x so that it will be 
-    * properly rendered above SELECT elements.
-    * @namespace YAHOO.widget
-    * @class Overlay
-    * @extends YAHOO.widget.Module
-    * @param {String} el The element ID representing the Overlay <em>OR</em>
-    * @param {HTMLElement} el The element representing the Overlay
-    * @param {Object} userConfig The configuration object literal containing 
-    * the configuration that should be set for this Overlay. See configuration 
-    * documentation for more details.
-    * @constructor
-    */
-    YAHOO.widget.Overlay = function (el, userConfig) {
-        YAHOO.widget.Overlay.superclass.constructor.call(this, el, userConfig);
-    };
-
-    var Lang = YAHOO.lang,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Module = YAHOO.widget.Module,
-        Event = YAHOO.util.Event,
-        Dom = YAHOO.util.Dom,
-        Config = YAHOO.util.Config,
-        UA = YAHOO.env.ua,
-        Overlay = YAHOO.widget.Overlay,
-
-        _SUBSCRIBE = "subscribe",
-        _UNSUBSCRIBE = "unsubscribe",
-
-        m_oIFrameTemplate,
-
-        /**
-        * Constant representing the name of the Overlay's events
-        * @property EVENT_TYPES
-        * @private
-        * @final
-        * @type Object
-        */
-        EVENT_TYPES = {
-            "BEFORE_MOVE": "beforeMove",
-            "MOVE": "move"
-        },
-
-        /**
-        * Constant representing the Overlay's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-
-            "X": { 
-                key: "x", 
-                validator: Lang.isNumber, 
-                suppressEvent: true, 
-                supercedes: ["iframe"]
-            },
-
-            "Y": { 
-                key: "y", 
-                validator: Lang.isNumber, 
-                suppressEvent: true, 
-                supercedes: ["iframe"]
-            },
-
-            "XY": { 
-                key: "xy", 
-                suppressEvent: true, 
-                supercedes: ["iframe"] 
-            },
-
-            "CONTEXT": { 
-                key: "context", 
-                suppressEvent: true, 
-                supercedes: ["iframe"] 
-            },
-
-            "FIXED_CENTER": { 
-                key: "fixedcenter", 
-                value: false, 
-                validator: Lang.isBoolean, 
-                supercedes: ["iframe", "visible"] 
-            },
-
-            "WIDTH": { 
-                key: "width",
-                suppressEvent: true,
-                supercedes: ["context", "fixedcenter", "iframe"]
-            }, 
-
-            "HEIGHT": { 
-                key: "height", 
-                suppressEvent: true, 
-                supercedes: ["context", "fixedcenter", "iframe"] 
-            },
-
-            "AUTO_FILL_HEIGHT" : {
-                key: "autofillheight",
-                supressEvent: true,
-                supercedes: ["height"],
-                value:"body"
-            },
-
-            "ZINDEX": { 
-                key: "zindex", 
-                value: null 
-            },
-
-            "CONSTRAIN_TO_VIEWPORT": { 
-                key: "constraintoviewport", 
-                value: false, 
-                validator: Lang.isBoolean, 
-                supercedes: ["iframe", "x", "y", "xy"]
-            }, 
-
-            "IFRAME": { 
-                key: "iframe", 
-                value: (UA.ie == 6 ? true : false), 
-                validator: Lang.isBoolean, 
-                supercedes: ["zindex"] 
-            },
-            
-            "PREVENT_CONTEXT_OVERLAP": {
-                key: "preventcontextoverlap",
-                value: false,
-                validator: Lang.isBoolean,  
-                supercedes: ["constraintoviewport"]
-            }
-            
-        };
-
-    /**
-    * The URL that will be placed in the iframe
-    * @property YAHOO.widget.Overlay.IFRAME_SRC
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.IFRAME_SRC = "javascript:false;";
-
-    /**
-    * Number representing how much the iframe shim should be offset from each 
-    * side of an Overlay instance, in pixels.
-    * @property YAHOO.widget.Overlay.IFRAME_SRC
-    * @default 3
-    * @static
-    * @final
-    * @type Number
-    */
-    Overlay.IFRAME_OFFSET = 3;
-
-    /**
-    * Number representing the minimum distance an Overlay instance should be 
-    * positioned relative to the boundaries of the browser's viewport, in pixels.
-    * @property YAHOO.widget.Overlay.VIEWPORT_OFFSET
-    * @default 10
-    * @static
-    * @final
-    * @type Number
-    */
-    Overlay.VIEWPORT_OFFSET = 10;
-
-    /**
-    * Constant representing the top left corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.TOP_LEFT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.TOP_LEFT = "tl";
-
-    /**
-    * Constant representing the top right corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.TOP_RIGHT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.TOP_RIGHT = "tr";
-
-    /**
-    * Constant representing the top bottom left corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.BOTTOM_LEFT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.BOTTOM_LEFT = "bl";
-
-    /**
-    * Constant representing the bottom right corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.BOTTOM_RIGHT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.BOTTOM_RIGHT = "br";
-
-    /**
-    * Constant representing the default CSS class used for an Overlay
-    * @property YAHOO.widget.Overlay.CSS_OVERLAY
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.CSS_OVERLAY = "yui-overlay";
-
-    /**
-     * Constant representing the names of the standard module elements
-     * used in the overlay.
-     * @property YAHOO.widget.Overlay.STD_MOD_RE
-     * @static
-     * @final
-     * @type RegExp
-     */
-    Overlay.STD_MOD_RE = /^\s*?(body|footer|header)\s*?$/i;
-
-    /**
-    * A singleton CustomEvent used for reacting to the DOM event for 
-    * window scroll
-    * @event YAHOO.widget.Overlay.windowScrollEvent
-    */
-    Overlay.windowScrollEvent = new CustomEvent("windowScroll");
-
-    /**
-    * A singleton CustomEvent used for reacting to the DOM event for
-    * window resize
-    * @event YAHOO.widget.Overlay.windowResizeEvent
-    */
-    Overlay.windowResizeEvent = new CustomEvent("windowResize");
-
-    /**
-    * The DOM event handler used to fire the CustomEvent for window scroll
-    * @method YAHOO.widget.Overlay.windowScrollHandler
-    * @static
-    * @param {DOMEvent} e The DOM scroll event
-    */
-    Overlay.windowScrollHandler = function (e) {
-        var t = Event.getTarget(e);
-
-        // - Webkit (Safari 2/3) and Opera 9.2x bubble scroll events from elements to window
-        // - FF2/3 and IE6/7, Opera 9.5x don't bubble scroll events from elements to window
-        // - IE doesn't recognize scroll registered on the document.
-        //
-        // Also, when document view is scrolled, IE doesn't provide a target, 
-        // rest of the browsers set target to window.document, apart from opera 
-        // which sets target to window.
-        if (!t || t === window || t === window.document) {
-            if (UA.ie) {
-
-                if (! window.scrollEnd) {
-                    window.scrollEnd = -1;
-                }
-
-                clearTimeout(window.scrollEnd);
-        
-                window.scrollEnd = setTimeout(function () { 
-                    Overlay.windowScrollEvent.fire(); 
-                }, 1);
-        
-            } else {
-                Overlay.windowScrollEvent.fire();
-            }
-        }
-    };
-
-    /**
-    * The DOM event handler used to fire the CustomEvent for window resize
-    * @method YAHOO.widget.Overlay.windowResizeHandler
-    * @static
-    * @param {DOMEvent} e The DOM resize event
-    */
-    Overlay.windowResizeHandler = function (e) {
-
-        if (UA.ie) {
-            if (! window.resizeEnd) {
-                window.resizeEnd = -1;
-            }
-
-            clearTimeout(window.resizeEnd);
-
-            window.resizeEnd = setTimeout(function () {
-                Overlay.windowResizeEvent.fire(); 
-            }, 100);
-        } else {
-            Overlay.windowResizeEvent.fire();
-        }
-    };
-
-    /**
-    * A boolean that indicated whether the window resize and scroll events have 
-    * already been subscribed to.
-    * @property YAHOO.widget.Overlay._initialized
-    * @private
-    * @type Boolean
-    */
-    Overlay._initialized = null;
-
-    if (Overlay._initialized === null) {
-        Event.on(window, "scroll", Overlay.windowScrollHandler);
-        Event.on(window, "resize", Overlay.windowResizeHandler);
-        Overlay._initialized = true;
-    }
-
-    /**
-     * Internal map of special event types, which are provided
-     * by the instance. It maps the event type to the custom event 
-     * instance. Contains entries for the "windowScroll", "windowResize" and
-     * "textResize" static container events.
-     *
-     * @property YAHOO.widget.Overlay._TRIGGER_MAP
-     * @type Object
-     * @static
-     * @private
-     */
-    Overlay._TRIGGER_MAP = {
-        "windowScroll" : Overlay.windowScrollEvent,
-        "windowResize" : Overlay.windowResizeEvent,
-        "textResize"   : Module.textResizeEvent
-    };
-
-    YAHOO.extend(Overlay, Module, {
-
-        /**
-         * <p>
-         * Array of default event types which will trigger
-         * context alignment for the Overlay class.
-         * </p>
-         * <p>The array is empty by default for Overlay,
-         * but maybe populated in future releases, so classes extending
-         * Overlay which need to define their own set of CONTEXT_TRIGGERS
-         * should concatenate their super class's prototype.CONTEXT_TRIGGERS 
-         * value with their own array of values.
-         * </p>
-         * <p>
-         * E.g.:
-         * <code>CustomOverlay.prototype.CONTEXT_TRIGGERS = YAHOO.widget.Overlay.prototype.CONTEXT_TRIGGERS.concat(["windowScroll"]);</code>
-         * </p>
-         * 
-         * @property CONTEXT_TRIGGERS
-         * @type Array
-         * @final
-         */
-        CONTEXT_TRIGGERS : [],
-
-        /**
-        * The Overlay initialization method, which is executed for Overlay and  
-        * all of its subclasses. This method is automatically called by the 
-        * constructor, and  sets up all DOM references for pre-existing markup, 
-        * and creates required markup if it is not already present.
-        * @method init
-        * @param {String} el The element ID representing the Overlay <em>OR</em>
-        * @param {HTMLElement} el The element representing the Overlay
-        * @param {Object} userConfig The configuration object literal 
-        * containing the configuration that should be set for this Overlay. 
-        * See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-
-            /*
-                 Note that we don't pass the user config in here yet because we
-                 only want it executed once, at the lowest subclass level
-            */
-
-            Overlay.superclass.init.call(this, el/*, userConfig*/);
-
-            this.beforeInitEvent.fire(Overlay);
-
-            Dom.addClass(this.element, Overlay.CSS_OVERLAY);
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-
-            if (this.platform == "mac" && UA.gecko) {
-
-                if (! Config.alreadySubscribed(this.showEvent,
-                    this.showMacGeckoScrollbars, this)) {
-
-                    this.showEvent.subscribe(this.showMacGeckoScrollbars, 
-                        this, true);
-
-                }
-
-                if (! Config.alreadySubscribed(this.hideEvent, 
-                    this.hideMacGeckoScrollbars, this)) {
-
-                    this.hideEvent.subscribe(this.hideMacGeckoScrollbars, 
-                        this, true);
-
-                }
-            }
-
-            this.initEvent.fire(Overlay);
-        },
-        
-        /**
-        * Initializes the custom events for Overlay which are fired  
-        * automatically at appropriate times by the Overlay class.
-        * @method initEvents
-        */
-        initEvents: function () {
-
-            Overlay.superclass.initEvents.call(this);
-
-            var SIGNATURE = CustomEvent.LIST;
-
-            /**
-            * CustomEvent fired before the Overlay is moved.
-            * @event beforeMoveEvent
-            * @param {Number} x x coordinate
-            * @param {Number} y y coordinate
-            */
-            this.beforeMoveEvent = this.createEvent(EVENT_TYPES.BEFORE_MOVE);
-            this.beforeMoveEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after the Overlay is moved.
-            * @event moveEvent
-            * @param {Number} x x coordinate
-            * @param {Number} y y coordinate
-            */
-            this.moveEvent = this.createEvent(EVENT_TYPES.MOVE);
-            this.moveEvent.signature = SIGNATURE;
-
-        },
-        
-        /**
-        * Initializes the class's configurable properties which can be changed 
-        * using the Overlay's Config object (cfg).
-        * @method initDefaultConfig
-        */
-        initDefaultConfig: function () {
-    
-            Overlay.superclass.initDefaultConfig.call(this);
-
-            var cfg = this.cfg;
-
-            // Add overlay config properties //
-            
-            /**
-            * The absolute x-coordinate position of the Overlay
-            * @config x
-            * @type Number
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.X.key, { 
-    
-                handler: this.configX, 
-                validator: DEFAULT_CONFIG.X.validator, 
-                suppressEvent: DEFAULT_CONFIG.X.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.X.supercedes
-    
-            });
-
-            /**
-            * The absolute y-coordinate position of the Overlay
-            * @config y
-            * @type Number
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.Y.key, {
-
-                handler: this.configY, 
-                validator: DEFAULT_CONFIG.Y.validator, 
-                suppressEvent: DEFAULT_CONFIG.Y.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.Y.supercedes
-
-            });
-
-            /**
-            * An array with the absolute x and y positions of the Overlay
-            * @config xy
-            * @type Number[]
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.XY.key, {
-                handler: this.configXY, 
-                suppressEvent: DEFAULT_CONFIG.XY.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.XY.supercedes
-            });
-
-            /**
-            * <p>
-            * The array of context arguments for context-sensitive positioning. 
-            * </p>
-            *
-            * <p>
-            * The format of the array is: <code>[contextElementOrId, overlayCorner, contextCorner, arrayOfTriggerEvents (optional)]</code>, the
-            * the 4 array elements described in detail below:
-            * </p>
-            *
-            * <dl>
-            * <dt>contextElementOrId &#60;String|HTMLElement&#62;</dt>
-            * <dd>A reference to the context element to which the overlay should be aligned (or it's id).</dd>
-            * <dt>overlayCorner &#60;String&#62;</dt>
-            * <dd>The corner of the overlay which is to be used for alignment. This corner will be aligned to the 
-            * corner of the context element defined by the "contextCorner" entry which follows. Supported string values are: 
-            * "tr" (top right), "tl" (top left), "br" (bottom right), or "bl" (bottom left).</dd>
-            * <dt>contextCorner &#60;String&#62;</dt>
-            * <dd>The corner of the context element which is to be used for alignment. Supported string values are the same ones listed for the "overlayCorner" entry above.</dd>
-            * <dt>arrayOfTriggerEvents (optional) &#60;Array[String|CustomEvent]&#62;</dt>
-            * <dd>
-            * <p>
-            * By default, context alignment is a one time operation, aligning the Overlay to the context element when context configuration property is set, or when the <a href="#method_align">align</a> 
-            * method is invoked. However, you can use the optional "arrayOfTriggerEvents" entry to define the list of events which should force the overlay to re-align itself with the context element. 
-            * This is useful in situations where the layout of the document may change, resulting in the context element's position being modified.
-            * </p>
-            * <p>
-            * The array can contain either event type strings for events the instance publishes (e.g. "beforeShow") or CustomEvent instances. Additionally the following
-            * 3 static container event types are also currently supported : <code>"windowResize", "windowScroll", "textResize"</code> (defined in <a href="#property__TRIGGER_MAP">_TRIGGER_MAP</a> private property).
-            * </p>
-            * </dd>
-            * </dl>
-            *
-            * <p>
-            * For example, setting this property to <code>["img1", "tl", "bl"]</code> will 
-            * align the Overlay's top left corner to the bottom left corner of the
-            * context element with id "img1".
-            * </p>
-            * <p>
-            * Adding the optional trigger values: <code>["img1", "tl", "bl", ["beforeShow", "windowResize"]]</code>,
-            * will re-align the overlay position, whenever the "beforeShow" or "windowResize" events are fired.
-            * </p>
-            *
-            * @config context
-            * @type Array
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.CONTEXT.key, {
-                handler: this.configContext, 
-                suppressEvent: DEFAULT_CONFIG.CONTEXT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.CONTEXT.supercedes
-            });
-
-            /**
-            * True if the Overlay should be anchored to the center of 
-            * the viewport.
-            * @config fixedcenter
-            * @type Boolean
-            * @default false
-            */
-            cfg.addProperty(DEFAULT_CONFIG.FIXED_CENTER.key, {
-                handler: this.configFixedCenter,
-                value: DEFAULT_CONFIG.FIXED_CENTER.value, 
-                validator: DEFAULT_CONFIG.FIXED_CENTER.validator, 
-                supercedes: DEFAULT_CONFIG.FIXED_CENTER.supercedes
-            });
-    
-            /**
-            * CSS width of the Overlay.
-            * @config width
-            * @type String
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.WIDTH.key, {
-                handler: this.configWidth, 
-                suppressEvent: DEFAULT_CONFIG.WIDTH.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.WIDTH.supercedes
-            });
-
-            /**
-            * CSS height of the Overlay.
-            * @config height
-            * @type String
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.HEIGHT.key, {
-                handler: this.configHeight, 
-                suppressEvent: DEFAULT_CONFIG.HEIGHT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.HEIGHT.supercedes
-            });
-
-            /**
-            * Standard module element which should auto fill out the height of the Overlay if the height config property is set.
-            * Supported values are "header", "body", "footer".
-            *
-            * @config autofillheight
-            * @type String
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.AUTO_FILL_HEIGHT.key, {
-                handler: this.configAutoFillHeight, 
-                value : DEFAULT_CONFIG.AUTO_FILL_HEIGHT.value,
-                validator : this._validateAutoFill,
-                suppressEvent: DEFAULT_CONFIG.AUTO_FILL_HEIGHT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.AUTO_FILL_HEIGHT.supercedes
-            });
-
-            /**
-            * CSS z-index of the Overlay.
-            * @config zIndex
-            * @type Number
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.ZINDEX.key, {
-                handler: this.configzIndex,
-                value: DEFAULT_CONFIG.ZINDEX.value
-            });
-
-            /**
-            * True if the Overlay should be prevented from being positioned 
-            * out of the viewport.
-            * @config constraintoviewport
-            * @type Boolean
-            * @default false
-            */
-            cfg.addProperty(DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.key, {
-
-                handler: this.configConstrainToViewport, 
-                value: DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.value, 
-                validator: DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.validator, 
-                supercedes: DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.supercedes
-
-            });
-
-            /**
-            * @config iframe
-            * @description Boolean indicating whether or not the Overlay should 
-            * have an IFRAME shim; used to prevent SELECT elements from 
-            * poking through an Overlay instance in IE6.  When set to "true", 
-            * the iframe shim is created when the Overlay instance is intially
-            * made visible.
-            * @type Boolean
-            * @default true for IE6 and below, false for all other browsers.
-            */
-            cfg.addProperty(DEFAULT_CONFIG.IFRAME.key, {
-
-                handler: this.configIframe, 
-                value: DEFAULT_CONFIG.IFRAME.value, 
-                validator: DEFAULT_CONFIG.IFRAME.validator, 
-                supercedes: DEFAULT_CONFIG.IFRAME.supercedes
-
-            });
-
-            /**
-            * @config preventcontextoverlap
-            * @description Boolean indicating whether or not the Overlay should overlap its 
-            * context element (defined using the "context" configuration property) when the 
-            * "constraintoviewport" configuration property is set to "true".
-            * @type Boolean
-            * @default false
-            */
-            cfg.addProperty(DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.key, {
-
-                value: DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.value, 
-                validator: DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.validator, 
-                supercedes: DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.supercedes
-
-            });
-
-        },
-
-        /**
-        * Moves the Overlay to the specified position. This function is  
-        * identical to calling this.cfg.setProperty("xy", [x,y]);
-        * @method moveTo
-        * @param {Number} x The Overlay's new x position
-        * @param {Number} y The Overlay's new y position
-        */
-        moveTo: function (x, y) {
-            this.cfg.setProperty("xy", [x, y]);
-        },
-
-        /**
-        * Adds a CSS class ("hide-scrollbars") and removes a CSS class 
-        * ("show-scrollbars") to the Overlay to fix a bug in Gecko on Mac OS X 
-        * (https://bugzilla.mozilla.org/show_bug.cgi?id=187435)
-        * @method hideMacGeckoScrollbars
-        */
-        hideMacGeckoScrollbars: function () {
-            Dom.replaceClass(this.element, "show-scrollbars", "hide-scrollbars");
-        },
-
-        /**
-        * Adds a CSS class ("show-scrollbars") and removes a CSS class 
-        * ("hide-scrollbars") to the Overlay to fix a bug in Gecko on Mac OS X 
-        * (https://bugzilla.mozilla.org/show_bug.cgi?id=187435)
-        * @method showMacGeckoScrollbars
-        */
-        showMacGeckoScrollbars: function () {
-            Dom.replaceClass(this.element, "hide-scrollbars", "show-scrollbars");
-        },
-
-        // BEGIN BUILT-IN PROPERTY EVENT HANDLERS //
-        /**
-        * The default event handler fired when the "visible" property is 
-        * changed.  This method is responsible for firing showEvent
-        * and hideEvent.
-        * @method configVisible
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configVisible: function (type, args, obj) {
-
-            var visible = args[0],
-                currentVis = Dom.getStyle(this.element, "visibility"),
-                effect = this.cfg.getProperty("effect"),
-                effectInstances = [],
-                isMacGecko = (this.platform == "mac" && UA.gecko),
-                alreadySubscribed = Config.alreadySubscribed,
-                eff, ei, e, i, j, k, h,
-                nEffects,
-                nEffectInstances;
-
-            if (currentVis == "inherit") {
-                e = this.element.parentNode;
-
-                while (e.nodeType != 9 && e.nodeType != 11) {
-                    currentVis = Dom.getStyle(e, "visibility");
-
-                    if (currentVis != "inherit") { 
-                        break; 
-                    }
-
-                    e = e.parentNode;
-                }
-
-                if (currentVis == "inherit") {
-                    currentVis = "visible";
-                }
-            }
-
-            if (effect) {
-                if (effect instanceof Array) {
-                    nEffects = effect.length;
-
-                    for (i = 0; i < nEffects; i++) {
-                        eff = effect[i];
-                        effectInstances[effectInstances.length] = 
-                            eff.effect(this, eff.duration);
-
-                    }
-                } else {
-                    effectInstances[effectInstances.length] = 
-                        effect.effect(this, effect.duration);
-                }
-            }
-
-
-            if (visible) { // Show
-                if (isMacGecko) {
-                    this.showMacGeckoScrollbars();
-                }
-
-                if (effect) { // Animate in
-                    if (visible) { // Animate in if not showing
-                        if (currentVis != "visible" || currentVis === "") {
-                            this.beforeShowEvent.fire();
-                            nEffectInstances = effectInstances.length;
-
-                            for (j = 0; j < nEffectInstances; j++) {
-                                ei = effectInstances[j];
-                                if (j === 0 && !alreadySubscribed(
-                                        ei.animateInCompleteEvent, 
-                                        this.showEvent.fire, this.showEvent)) {
-
-                                    /*
-                                         Delegate showEvent until end 
-                                         of animateInComplete
-                                    */
-
-                                    ei.animateInCompleteEvent.subscribe(
-                                     this.showEvent.fire, this.showEvent, true);
-                                }
-                                ei.animateIn();
-                            }
-                        }
-                    }
-                } else { // Show
-                    if (currentVis != "visible" || currentVis === "") {
-                        this.beforeShowEvent.fire();
-
-                        Dom.setStyle(this.element, "visibility", "visible");
-
-                        this.cfg.refireEvent("iframe");
-                        this.showEvent.fire();
-                    }
-                }
-            } else { // Hide
-
-                if (isMacGecko) {
-                    this.hideMacGeckoScrollbars();
-                }
-                    
-                if (effect) { // Animate out if showing
-                    if (currentVis == "visible") {
-                        this.beforeHideEvent.fire();
-
-                        nEffectInstances = effectInstances.length;
-                        for (k = 0; k < nEffectInstances; k++) {
-                            h = effectInstances[k];
-    
-                            if (k === 0 && !alreadySubscribed(
-                                h.animateOutCompleteEvent, this.hideEvent.fire, 
-                                this.hideEvent)) {
-    
-                                /*
-                                     Delegate hideEvent until end 
-                                     of animateOutComplete
-                                */
-    
-                                h.animateOutCompleteEvent.subscribe(
-                                    this.hideEvent.fire, this.hideEvent, true);
-    
-                            }
-                            h.animateOut();
-                        }
-
-                    } else if (currentVis === "") {
-                        Dom.setStyle(this.element, "visibility", "hidden");
-                    }
-
-                } else { // Simple hide
-
-                    if (currentVis == "visible" || currentVis === "") {
-                        this.beforeHideEvent.fire();
-                        Dom.setStyle(this.element, "visibility", "hidden");
-                        this.hideEvent.fire();
-                    }
-                }
-            }
-        },
-
-        /**
-        * Center event handler used for centering on scroll/resize, but only if 
-        * the Overlay is visible
-        * @method doCenterOnDOMEvent
-        */
-        doCenterOnDOMEvent: function () {
-            if (this.cfg.getProperty("visible")) {
-                this.center();
-            }
-        },
-
-        /**
-        * The default event handler fired when the "fixedcenter" property 
-        * is changed.
-        * @method configFixedCenter
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configFixedCenter: function (type, args, obj) {
-
-            var val = args[0],
-                alreadySubscribed = Config.alreadySubscribed,
-                windowResizeEvent = Overlay.windowResizeEvent,
-                windowScrollEvent = Overlay.windowScrollEvent;
-
-            if (val) {
-                this.center();
-
-                if (!alreadySubscribed(this.beforeShowEvent, this.center, this)) {
-                    this.beforeShowEvent.subscribe(this.center);
-                }
-
-                if (!alreadySubscribed(windowResizeEvent, this.doCenterOnDOMEvent, this)) {
-                    windowResizeEvent.subscribe(this.doCenterOnDOMEvent, this, true);
-                }
-
-                if (!alreadySubscribed(windowScrollEvent, this.doCenterOnDOMEvent, this)) {
-                    windowScrollEvent.subscribe(this.doCenterOnDOMEvent, this, true);
-                }
-
-            } else {
-                this.beforeShowEvent.unsubscribe(this.center);
-
-                windowResizeEvent.unsubscribe(this.doCenterOnDOMEvent, this);
-                windowScrollEvent.unsubscribe(this.doCenterOnDOMEvent, this);
-            }
-        },
-        
-        /**
-        * The default event handler fired when the "height" property is changed.
-        * @method configHeight
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configHeight: function (type, args, obj) {
-
-            var height = args[0],
-                el = this.element;
-
-            Dom.setStyle(el, "height", height);
-            this.cfg.refireEvent("iframe");
-        },
-
-        /**
-         * The default event handler fired when the "autofillheight" property is changed.
-         * @method configAutoFillHeight
-         *
-         * @param {String} type The CustomEvent type (usually the property name)
-         * @param {Object[]} args The CustomEvent arguments. For configuration 
-         * handlers, args[0] will equal the newly applied value for the property.
-         * @param {Object} obj The scope object. For configuration handlers, 
-         * this will usually equal the owner.
-         */
-        configAutoFillHeight: function (type, args, obj) {
-            var fillEl = args[0],
-                currEl = this.cfg.getProperty("autofillheight");
-
-            this.cfg.unsubscribeFromConfigEvent("height", this._autoFillOnHeightChange);
-            Module.textResizeEvent.unsubscribe("height", this._autoFillOnHeightChange);
-
-            if (currEl && fillEl !== currEl && this[currEl]) {
-                Dom.setStyle(this[currEl], "height", "");
-            }
-
-            if (fillEl) {
-                fillEl = Lang.trim(fillEl.toLowerCase());
-
-                this.cfg.subscribeToConfigEvent("height", this._autoFillOnHeightChange, this[fillEl], this);
-                Module.textResizeEvent.subscribe(this._autoFillOnHeightChange, this[fillEl], this);
-
-                this.cfg.setProperty("autofillheight", fillEl, true);
-            }
-        },
-
-        /**
-        * The default event handler fired when the "width" property is changed.
-        * @method configWidth
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configWidth: function (type, args, obj) {
-
-            var width = args[0],
-                el = this.element;
-
-            Dom.setStyle(el, "width", width);
-            this.cfg.refireEvent("iframe");
-        },
-
-        /**
-        * The default event handler fired when the "zIndex" property is changed.
-        * @method configzIndex
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configzIndex: function (type, args, obj) {
-
-            var zIndex = args[0],
-                el = this.element;
-
-            if (! zIndex) {
-                zIndex = Dom.getStyle(el, "zIndex");
-                if (! zIndex || isNaN(zIndex)) {
-                    zIndex = 0;
-                }
-            }
-
-            if (this.iframe || this.cfg.getProperty("iframe") === true) {
-                if (zIndex <= 0) {
-                    zIndex = 1;
-                }
-            }
-
-            Dom.setStyle(el, "zIndex", zIndex);
-            this.cfg.setProperty("zIndex", zIndex, true);
-
-            if (this.iframe) {
-                this.stackIframe();
-            }
-        },
-
-        /**
-        * The default event handler fired when the "xy" property is changed.
-        * @method configXY
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configXY: function (type, args, obj) {
-
-            var pos = args[0],
-                x = pos[0],
-                y = pos[1];
-
-            this.cfg.setProperty("x", x);
-            this.cfg.setProperty("y", y);
-
-            this.beforeMoveEvent.fire([x, y]);
-
-            x = this.cfg.getProperty("x");
-            y = this.cfg.getProperty("y");
-
-            YAHOO.log(("xy: " + [x, y]), "iframe");
-
-            this.cfg.refireEvent("iframe");
-            this.moveEvent.fire([x, y]);
-        },
-
-        /**
-        * The default event handler fired when the "x" property is changed.
-        * @method configX
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configX: function (type, args, obj) {
-
-            var x = args[0],
-                y = this.cfg.getProperty("y");
-
-            this.cfg.setProperty("x", x, true);
-            this.cfg.setProperty("y", y, true);
-
-            this.beforeMoveEvent.fire([x, y]);
-
-            x = this.cfg.getProperty("x");
-            y = this.cfg.getProperty("y");
-            
-            Dom.setX(this.element, x, true);
-
-            this.cfg.setProperty("xy", [x, y], true);
-
-            this.cfg.refireEvent("iframe");
-            this.moveEvent.fire([x, y]);
-        },
-
-        /**
-        * The default event handler fired when the "y" property is changed.
-        * @method configY
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configY: function (type, args, obj) {
-
-            var x = this.cfg.getProperty("x"),
-                y = args[0];
-
-            this.cfg.setProperty("x", x, true);
-            this.cfg.setProperty("y", y, true);
-
-            this.beforeMoveEvent.fire([x, y]);
-
-            x = this.cfg.getProperty("x");
-            y = this.cfg.getProperty("y");
-
-            Dom.setY(this.element, y, true);
-
-            this.cfg.setProperty("xy", [x, y], true);
-
-            this.cfg.refireEvent("iframe");
-            this.moveEvent.fire([x, y]);
-        },
-        
-        /**
-        * Shows the iframe shim, if it has been enabled.
-        * @method showIframe
-        */
-        showIframe: function () {
-
-            var oIFrame = this.iframe,
-                oParentNode;
-
-            if (oIFrame) {
-                oParentNode = this.element.parentNode;
-
-                if (oParentNode != oIFrame.parentNode) {
-                    this._addToParent(oParentNode, oIFrame);
-                }
-                oIFrame.style.display = "block";
-            }
-        },
-
-        /**
-        * Hides the iframe shim, if it has been enabled.
-        * @method hideIframe
-        */
-        hideIframe: function () {
-            if (this.iframe) {
-                this.iframe.style.display = "none";
-            }
-        },
-
-        /**
-        * Syncronizes the size and position of iframe shim to that of its 
-        * corresponding Overlay instance.
-        * @method syncIframe
-        */
-        syncIframe: function () {
-
-            var oIFrame = this.iframe,
-                oElement = this.element,
-                nOffset = Overlay.IFRAME_OFFSET,
-                nDimensionOffset = (nOffset * 2),
-                aXY;
-
-            if (oIFrame) {
-                // Size <iframe>
-                oIFrame.style.width = (oElement.offsetWidth + nDimensionOffset + "px");
-                oIFrame.style.height = (oElement.offsetHeight + nDimensionOffset + "px");
-
-                // Position <iframe>
-                aXY = this.cfg.getProperty("xy");
-
-                if (!Lang.isArray(aXY) || (isNaN(aXY[0]) || isNaN(aXY[1]))) {
-                    this.syncPosition();
-                    aXY = this.cfg.getProperty("xy");
-                }
-                Dom.setXY(oIFrame, [(aXY[0] - nOffset), (aXY[1] - nOffset)]);
-            }
-        },
-
-        /**
-         * Sets the zindex of the iframe shim, if it exists, based on the zindex of
-         * the Overlay element. The zindex of the iframe is set to be one less 
-         * than the Overlay element's zindex.
-         * 
-         * <p>NOTE: This method will not bump up the zindex of the Overlay element
-         * to ensure that the iframe shim has a non-negative zindex.
-         * If you require the iframe zindex to be 0 or higher, the zindex of 
-         * the Overlay element should be set to a value greater than 0, before 
-         * this method is called.
-         * </p>
-         * @method stackIframe
-         */
-        stackIframe: function () {
-            if (this.iframe) {
-                var overlayZ = Dom.getStyle(this.element, "zIndex");
-                if (!YAHOO.lang.isUndefined(overlayZ) && !isNaN(overlayZ)) {
-                    Dom.setStyle(this.iframe, "zIndex", (overlayZ - 1));
-                }
-            }
-        },
-
-        /**
-        * The default event handler fired when the "iframe" property is changed.
-        * @method configIframe
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configIframe: function (type, args, obj) {
-
-            var bIFrame = args[0];
-
-            function createIFrame() {
-
-                var oIFrame = this.iframe,
-                    oElement = this.element,
-                    oParent;
-
-                if (!oIFrame) {
-                    if (!m_oIFrameTemplate) {
-                        m_oIFrameTemplate = document.createElement("iframe");
-
-                        if (this.isSecure) {
-                            m_oIFrameTemplate.src = Overlay.IFRAME_SRC;
-                        }
-
-                        /*
-                            Set the opacity of the <iframe> to 0 so that it 
-                            doesn't modify the opacity of any transparent 
-                            elements that may be on top of it (like a shadow).
-                        */
-                        if (UA.ie) {
-                            m_oIFrameTemplate.style.filter = "alpha(opacity=0)";
-                            /*
-                                 Need to set the "frameBorder" property to 0 
-                                 supress the default <iframe> border in IE.  
-                                 Setting the CSS "border" property alone 
-                                 doesn't supress it.
-                            */
-                            m_oIFrameTemplate.frameBorder = 0;
-                        }
-                        else {
-                            m_oIFrameTemplate.style.opacity = "0";
-                        }
-
-                        m_oIFrameTemplate.style.position = "absolute";
-                        m_oIFrameTemplate.style.border = "none";
-                        m_oIFrameTemplate.style.margin = "0";
-                        m_oIFrameTemplate.style.padding = "0";
-                        m_oIFrameTemplate.style.display = "none";
-                    }
-
-                    oIFrame = m_oIFrameTemplate.cloneNode(false);
-                    oParent = oElement.parentNode;
-
-                    var parentNode = oParent || document.body;
-
-                    this._addToParent(parentNode, oIFrame);
-                    this.iframe = oIFrame;
-                }
-
-                /*
-                     Show the <iframe> before positioning it since the "setXY" 
-                     method of DOM requires the element be in the document 
-                     and visible.
-                */
-                this.showIframe();
-
-                /*
-                     Syncronize the size and position of the <iframe> to that 
-                     of the Overlay.
-                */
-                this.syncIframe();
-                this.stackIframe();
-
-                // Add event listeners to update the <iframe> when necessary
-                if (!this._hasIframeEventListeners) {
-                    this.showEvent.subscribe(this.showIframe);
-                    this.hideEvent.subscribe(this.hideIframe);
-                    this.changeContentEvent.subscribe(this.syncIframe);
-
-                    this._hasIframeEventListeners = true;
-                }
-            }
-
-            function onBeforeShow() {
-                createIFrame.call(this);
-                this.beforeShowEvent.unsubscribe(onBeforeShow);
-                this._iframeDeferred = false;
-            }
-
-            if (bIFrame) { // <iframe> shim is enabled
-
-                if (this.cfg.getProperty("visible")) {
-                    createIFrame.call(this);
-                } else {
-                    if (!this._iframeDeferred) {
-                        this.beforeShowEvent.subscribe(onBeforeShow);
-                        this._iframeDeferred = true;
-                    }
-                }
-
-            } else {    // <iframe> shim is disabled
-                this.hideIframe();
-
-                if (this._hasIframeEventListeners) {
-                    this.showEvent.unsubscribe(this.showIframe);
-                    this.hideEvent.unsubscribe(this.hideIframe);
-                    this.changeContentEvent.unsubscribe(this.syncIframe);
-
-                    this._hasIframeEventListeners = false;
-                }
-            }
-        },
-
-        /**
-         * Set's the container's XY value from DOM if not already set.
-         * 
-         * Differs from syncPosition, in that the XY value is only sync'd with DOM if 
-         * not already set. The method also refire's the XY config property event, so any
-         * beforeMove, Move event listeners are invoked.
-         * 
-         * @method _primeXYFromDOM
-         * @protected
-         */
-        _primeXYFromDOM : function() {
-            if (YAHOO.lang.isUndefined(this.cfg.getProperty("xy"))) {
-                // Set CFG XY based on DOM XY
-                this.syncPosition();
-                // Account for XY being set silently in syncPosition (no moveTo fired/called)
-                this.cfg.refireEvent("xy");
-                this.beforeShowEvent.unsubscribe(this._primeXYFromDOM);
-            }
-        },
-
-        /**
-        * The default event handler fired when the "constraintoviewport" 
-        * property is changed.
-        * @method configConstrainToViewport
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for 
-        * the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configConstrainToViewport: function (type, args, obj) {
-            var val = args[0];
-
-            if (val) {
-                if (! Config.alreadySubscribed(this.beforeMoveEvent, this.enforceConstraints, this)) {
-                    this.beforeMoveEvent.subscribe(this.enforceConstraints, this, true);
-                }
-                if (! Config.alreadySubscribed(this.beforeShowEvent, this._primeXYFromDOM)) {
-                    this.beforeShowEvent.subscribe(this._primeXYFromDOM);
-                }
-            } else {
-                this.beforeShowEvent.unsubscribe(this._primeXYFromDOM);
-                this.beforeMoveEvent.unsubscribe(this.enforceConstraints, this);
-            }
-        },
-
-         /**
-        * The default event handler fired when the "context" property
-        * is changed.
-        * 
-        * @method configContext
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configContext: function (type, args, obj) {
-
-            var contextArgs = args[0],
-                contextEl,
-                elementMagnetCorner,
-                contextMagnetCorner,
-                triggers,
-                defTriggers = this.CONTEXT_TRIGGERS;
-
-            if (contextArgs) {
-
-                contextEl = contextArgs[0];
-                elementMagnetCorner = contextArgs[1];
-                contextMagnetCorner = contextArgs[2];
-                triggers = contextArgs[3];
-
-                if (defTriggers && defTriggers.length > 0) {
-                    triggers = (triggers || []).concat(defTriggers);
-                }
-
-                if (contextEl) {
-                    if (typeof contextEl == "string") {
-                        this.cfg.setProperty("context", [
-                                document.getElementById(contextEl), 
-                                elementMagnetCorner,
-                                contextMagnetCorner,
-                                triggers ],
-                                true);
-                    }
-
-                    if (elementMagnetCorner && contextMagnetCorner) {
-                        this.align(elementMagnetCorner, contextMagnetCorner);
-                    }
-
-                    if (this._contextTriggers) {
-                        // Unsubscribe Old Set
-                        this._processTriggers(this._contextTriggers, _UNSUBSCRIBE, this._alignOnTrigger);
-                    }
-
-                    if (triggers) {
-                        // Subscribe New Set
-                        this._processTriggers(triggers, _SUBSCRIBE, this._alignOnTrigger);
-                        this._contextTriggers = triggers;
-                    }
-                }
-            }
-        },
-
-        /**
-         * Custom Event handler for context alignment triggers. Invokes the align method
-         * 
-         * @method _alignOnTrigger
-         * @protected
-         * 
-         * @param {String} type The event type (not used by the default implementation)
-         * @param {Any[]} args The array of arguments for the trigger event (not used by the default implementation)
-         */
-        _alignOnTrigger: function(type, args) {
-            this.align();
-        },
-
-        /**
-         * Helper method to locate the custom event instance for the event name string
-         * passed in. As a convenience measure, any custom events passed in are returned.
-         *
-         * @method _findTriggerCE
-         * @private
-         *
-         * @param {String|CustomEvent} t Either a CustomEvent, or event type (e.g. "windowScroll") for which a 
-         * custom event instance needs to be looked up from the Overlay._TRIGGER_MAP.
-         */
-        _findTriggerCE : function(t) {
-            var tce = null;
-            if (t instanceof CustomEvent) {
-                tce = t;
-            } else if (Overlay._TRIGGER_MAP[t]) {
-                tce = Overlay._TRIGGER_MAP[t];
-            }
-            return tce;
-        },
-
-        /**
-         * Utility method that subscribes or unsubscribes the given 
-         * function from the list of trigger events provided.
-         *
-         * @method _processTriggers
-         * @protected 
-         *
-         * @param {Array[String|CustomEvent]} triggers An array of either CustomEvents, event type strings 
-         * (e.g. "beforeShow", "windowScroll") to/from which the provided function should be 
-         * subscribed/unsubscribed respectively.
-         *
-         * @param {String} mode Either "subscribe" or "unsubscribe", specifying whether or not
-         * we are subscribing or unsubscribing trigger listeners
-         * 
-         * @param {Function} fn The function to be subscribed/unsubscribed to/from the trigger event.
-         * Context is always set to the overlay instance, and no additional object argument 
-         * get passed to the subscribed function.
-         */
-        _processTriggers : function(triggers, mode, fn) {
-            var t, tce;
-
-            for (var i = 0, l = triggers.length; i < l; ++i) {
-                t = triggers[i];
-                tce = this._findTriggerCE(t);
-                if (tce) {
-                    tce[mode](fn, this, true);
-                } else {
-                    this[mode](t, fn);
-                }
-            }
-        },
-
-        // END BUILT-IN PROPERTY EVENT HANDLERS //
-        /**
-        * Aligns the Overlay to its context element using the specified corner 
-        * points (represented by the constants TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, 
-        * and BOTTOM_RIGHT.
-        * @method align
-        * @param {String} elementAlign  The String representing the corner of 
-        * the Overlay that should be aligned to the context element
-        * @param {String} contextAlign  The corner of the context element 
-        * that the elementAlign corner should stick to.
-        */
-        align: function (elementAlign, contextAlign) {
-
-            var contextArgs = this.cfg.getProperty("context"),
-                me = this,
-                context,
-                element,
-                contextRegion;
-
-            function doAlign(v, h) {
-    
-                switch (elementAlign) {
-    
-                case Overlay.TOP_LEFT:
-                    me.moveTo(h, v);
-                    break;
-    
-                case Overlay.TOP_RIGHT:
-                    me.moveTo((h - element.offsetWidth), v);
-                    break;
-    
-                case Overlay.BOTTOM_LEFT:
-                    me.moveTo(h, (v - element.offsetHeight));
-                    break;
-    
-                case Overlay.BOTTOM_RIGHT:
-                    me.moveTo((h - element.offsetWidth), 
-                        (v - element.offsetHeight));
-                    break;
-                }
-            }
-    
-    
-            if (contextArgs) {
-            
-                context = contextArgs[0];
-                element = this.element;
-                me = this;
-                
-                if (! elementAlign) {
-                    elementAlign = contextArgs[1];
-                }
-                
-                if (! contextAlign) {
-                    contextAlign = contextArgs[2];
-                }
-                
-                if (element && context) {
-                    contextRegion = Dom.getRegion(context);
-
-                    switch (contextAlign) {
-    
-                    case Overlay.TOP_LEFT:
-                        doAlign(contextRegion.top, contextRegion.left);
-                        break;
-    
-                    case Overlay.TOP_RIGHT:
-                        doAlign(contextRegion.top, contextRegion.right);
-                        break;
-    
-                    case Overlay.BOTTOM_LEFT:
-                        doAlign(contextRegion.bottom, contextRegion.left);
-                        break;
-    
-                    case Overlay.BOTTOM_RIGHT:
-                        doAlign(contextRegion.bottom, contextRegion.right);
-                        break;
-                    }
-    
-                }
-    
-            }
-            
-        },
-
-        /**
-        * The default event handler executed when the moveEvent is fired, if the 
-        * "constraintoviewport" is set to true.
-        * @method enforceConstraints
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        enforceConstraints: function (type, args, obj) {
-            var pos = args[0];
-            
-            var cXY = this.getConstrainedXY(pos[0], pos[1]);
-            this.cfg.setProperty("x", cXY[0], true);
-            this.cfg.setProperty("y", cXY[1], true);
-            this.cfg.setProperty("xy", cXY, true);
-        },
-
-
-        /**
-         * Given x coordinate value, returns the calculated x coordinate required to 
-         * position the Overlay if it is to be constrained to the viewport, based on the 
-         * current element size, viewport dimensions and scroll values.
-         *
-         * @param {Number} x The X coordinate value to be constrained
-         * @return {Number} The constrained x coordinate
-         */		
-        getConstrainedX: function (x) {
-
-            var oOverlay = this,
-                oOverlayEl = oOverlay.element,
-                nOverlayOffsetWidth = oOverlayEl.offsetWidth,
-
-                nViewportOffset = Overlay.VIEWPORT_OFFSET,
-                viewPortWidth = Dom.getViewportWidth(),
-                scrollX = Dom.getDocumentScrollLeft(),
-
-                bCanConstrain = (nOverlayOffsetWidth + nViewportOffset < viewPortWidth),
-
-                aContext = this.cfg.getProperty("context"),
-                oContextEl,
-                nContextElX,
-                nContextElWidth,
-
-                bFlipped = false,
-
-                nLeftRegionWidth,
-                nRightRegionWidth,
-
-                leftConstraint,
-                rightConstraint,
-
-                xNew = x,
-
-                oOverlapPositions = {
-
-                    "tltr": true,
-                    "blbr": true,
-                    "brbl": true,
-                    "trtl": true
-                
-                };
-
-
-            var flipHorizontal = function () {
-            
-                var nNewX;
-            
-                if ((oOverlay.cfg.getProperty("x") - scrollX) > nContextElX) {
-                    nNewX = (nContextElX - nOverlayOffsetWidth);
-                }
-                else {
-                    nNewX = (nContextElX + nContextElWidth);
-                }
-                
-    
-                oOverlay.cfg.setProperty("x", (nNewX + scrollX), true);
-    
-                return nNewX;
-    
-            };
-
-
-
-            /*
-                 Uses the context element's position to calculate the availble width 
-                 to the right and left of it to display its corresponding Overlay.
-            */
-
-            var getDisplayRegionWidth = function () {
-
-                // The Overlay is to the right of the context element
-
-                if ((oOverlay.cfg.getProperty("x") - scrollX) > nContextElX) {
-                    return (nRightRegionWidth - nViewportOffset);
-                }
-                else {	// The Overlay is to the left of the context element
-                    return (nLeftRegionWidth - nViewportOffset);
-                }
-            
-            };
-    
-
-            /*
-                Positions the Overlay to the left or right of the context element so that it remains 
-                inside the viewport.
-            */
-    
-            var setHorizontalPosition = function () {
-            
-                var nDisplayRegionWidth = getDisplayRegionWidth(),
-                    fnReturnVal;
-
-                if (nOverlayOffsetWidth > nDisplayRegionWidth) {
-        
-                    if (bFlipped) {
-        
-                        /*
-                             All possible positions and values have been 
-                             tried, but none were successful, so fall back 
-                             to the original size and position.
-                        */
-    
-                        flipHorizontal();
-                        
-                    }
-                    else {
-        
-                        flipHorizontal();
-
-                        bFlipped = true;
-        
-                        fnReturnVal = setHorizontalPosition();
-        
-                    }
-                
-                }
-        
-                return fnReturnVal;
-            
-            };
-
-
-            if (this.cfg.getProperty("preventcontextoverlap") && aContext && 
-				oOverlapPositions[(aContext[1] + aContext[2])]) {
-
-                if (bCanConstrain) {
-
-                    oContextEl = aContext[0];
-                    nContextElX = Dom.getX(oContextEl) - scrollX;
-                    nContextElWidth = oContextEl.offsetWidth;
-                    nLeftRegionWidth = nContextElX;
-                    nRightRegionWidth = (viewPortWidth - (nContextElX + nContextElWidth));
-    
-                    setHorizontalPosition();
-
-                }
-                
-                xNew = this.cfg.getProperty("x");
-            
-            }
-            else {
-
-                if (bCanConstrain) {
-    
-                    leftConstraint = scrollX + nViewportOffset;
-                    rightConstraint = 
-                        scrollX + viewPortWidth - nOverlayOffsetWidth - nViewportOffset;
-    
-                    if (x < leftConstraint) {
-                        xNew = leftConstraint;
-                    } else if (x > rightConstraint) {
-                        xNew = rightConstraint;
-                    }
-                } else {
-                    xNew = nViewportOffset + scrollX;
-                }
-            
-            }
-
-            return xNew;
-        
-        },
-
-
-        /**
-         * Given y coordinate value, returns the calculated y coordinate required to 
-         * position the Overlay if it is to be constrained to the viewport, based on the 
-         * current element size, viewport dimensions and scroll values.
-         *
-         * @param {Number} y The Y coordinate value to be constrained
-         * @return {Number} The constrained y coordinate
-         */		
-        getConstrainedY: function (y) {
-
-            var oOverlay = this,
-                oOverlayEl = oOverlay.element,
-                nOverlayOffsetHeight = oOverlayEl.offsetHeight,
-            
-                nViewportOffset = Overlay.VIEWPORT_OFFSET,
-                viewPortHeight = Dom.getViewportHeight(),
-                scrollY = Dom.getDocumentScrollTop(),
-
-                bCanConstrain = (nOverlayOffsetHeight + nViewportOffset < viewPortHeight),
-
-                aContext = this.cfg.getProperty("context"),
-                oContextEl,
-                nContextElY,
-                nContextElHeight,
-
-                bFlipped = false,
-
-                nTopRegionHeight,
-                nBottomRegionHeight,
-
-                topConstraint,
-                bottomConstraint,
-
-                yNew = y,
-                
-                oOverlapPositions = {
-                    "trbr": true,
-                    "tlbl": true,
-                    "bltl": true,
-                    "brtr": true
-                };
-
-
-            var flipVertical = function () {
-
-                var nNewY;
-            
-                // The Overlay is below the context element, flip it above
-                if ((oOverlay.cfg.getProperty("y") - scrollY) > nContextElY) { 
-                    nNewY = (nContextElY - nOverlayOffsetHeight);
-                }
-                else {	// The Overlay is above the context element, flip it below
-                    nNewY = (nContextElY + nContextElHeight);
-                }
-    
-                oOverlay.cfg.setProperty("y", (nNewY + scrollY), true);
-                
-                return nNewY;
-            
-            };
-
-
-            /*
-                 Uses the context element's position to calculate the availble height 
-                 above and below it to display its corresponding Overlay.
-            */
-
-            var getDisplayRegionHeight = function () {
-
-                // The Overlay is below the context element
-                if ((oOverlay.cfg.getProperty("y") - scrollY) > nContextElY) {
-                    return (nBottomRegionHeight - nViewportOffset);				
-                }
-                else {	// The Overlay is above the context element
-                    return (nTopRegionHeight - nViewportOffset);				
-                }
-        
-            };
-
-
-            /*
-                Trys to place the Overlay in the best possible position (either above or 
-                below its corresponding context element).
-            */
-        
-            var setVerticalPosition = function () {
-        
-                var nDisplayRegionHeight = getDisplayRegionHeight(),
-                    fnReturnVal;
-                    
-
-                if (nOverlayOffsetHeight > nDisplayRegionHeight) {
-                   
-                    if (bFlipped) {
-        
-                        /*
-                             All possible positions and values for the 
-                             "maxheight" configuration property have been 
-                             tried, but none were successful, so fall back 
-                             to the original size and position.
-                        */
-    
-                        flipVertical();
-                        
-                    }
-                    else {
-        
-                        flipVertical();
-
-                        bFlipped = true;
-        
-                        fnReturnVal = setVerticalPosition();
-        
-                    }
-                
-                }
-        
-                return fnReturnVal;
-        
-            };
-
-
-            if (this.cfg.getProperty("preventcontextoverlap") && aContext && 
-            	oOverlapPositions[(aContext[1] + aContext[2])]) {
-
-                if (bCanConstrain) {
-
-                    oContextEl = aContext[0];
-                    nContextElHeight = oContextEl.offsetHeight;
-                    nContextElY = (Dom.getY(oContextEl) - scrollY);
-    
-                    nTopRegionHeight = nContextElY;
-                    nBottomRegionHeight = (viewPortHeight - (nContextElY + nContextElHeight));
-    
-                    setVerticalPosition();
-                
-                }
-
-                yNew = oOverlay.cfg.getProperty("y");
-
-            }
-            else {
-
-                if (bCanConstrain) {
-    
-                    topConstraint = scrollY + nViewportOffset;
-                    bottomConstraint = 
-                        scrollY + viewPortHeight - nOverlayOffsetHeight - nViewportOffset;
-    
-                    if (y < topConstraint) {
-                        yNew  = topConstraint;
-                    } else if (y  > bottomConstraint) {
-                        yNew  = bottomConstraint;
-                    }
-                } else {
-                    yNew = nViewportOffset + scrollY;
-                }
-
-            }
-
-            return yNew;
-        },
-
-
-        /**
-         * Given x, y coordinate values, returns the calculated coordinates required to 
-         * position the Overlay if it is to be constrained to the viewport, based on the 
-         * current element size, viewport dimensions and scroll values.
-         *
-         * @param {Number} x The X coordinate value to be constrained
-         * @param {Number} y The Y coordinate value to be constrained
-         * @return {Array} The constrained x and y coordinates at index 0 and 1 respectively;
-         */
-        getConstrainedXY: function(x, y) {
-            return [this.getConstrainedX(x), this.getConstrainedY(y)];
-        },
-
-        /**
-        * Centers the container in the viewport.
-        * @method center
-        */
-        center: function () {
-
-            var nViewportOffset = Overlay.VIEWPORT_OFFSET,
-                elementWidth = this.element.offsetWidth,
-                elementHeight = this.element.offsetHeight,
-                viewPortWidth = Dom.getViewportWidth(),
-                viewPortHeight = Dom.getViewportHeight(),
-                x,
-                y;
-
-            if (elementWidth < viewPortWidth) {
-                x = (viewPortWidth / 2) - (elementWidth / 2) + Dom.getDocumentScrollLeft();
-            } else {
-                x = nViewportOffset + Dom.getDocumentScrollLeft();
-            }
-
-            if (elementHeight < viewPortHeight) {
-                y = (viewPortHeight / 2) - (elementHeight / 2) + Dom.getDocumentScrollTop();
-            } else {
-                y = nViewportOffset + Dom.getDocumentScrollTop();
-            }
-
-            this.cfg.setProperty("xy", [parseInt(x, 10), parseInt(y, 10)]);
-            this.cfg.refireEvent("iframe");
-        },
-
-        /**
-        * Synchronizes the Panel's "xy", "x", and "y" properties with the 
-        * Panel's position in the DOM. This is primarily used to update  
-        * position information during drag & drop.
-        * @method syncPosition
-        */
-        syncPosition: function () {
-
-            var pos = Dom.getXY(this.element);
-
-            this.cfg.setProperty("x", pos[0], true);
-            this.cfg.setProperty("y", pos[1], true);
-            this.cfg.setProperty("xy", pos, true);
-
-        },
-
-        /**
-        * Event handler fired when the resize monitor element is resized.
-        * @method onDomResize
-        * @param {DOMEvent} e The resize DOM event
-        * @param {Object} obj The scope object
-        */
-        onDomResize: function (e, obj) {
-
-            var me = this;
-
-            Overlay.superclass.onDomResize.call(this, e, obj);
-
-            setTimeout(function () {
-                me.syncPosition();
-                me.cfg.refireEvent("iframe");
-                me.cfg.refireEvent("context");
-            }, 0);
-        },
-
-        /**
-         * Determines the content box height of the given element (height of the element, without padding or borders) in pixels.
-         *
-         * @method _getComputedHeight
-         * @private
-         * @param {HTMLElement} el The element for which the content height needs to be determined
-         * @return {Number} The content box height of the given element, or null if it could not be determined.
-         */
-        _getComputedHeight : (function() {
-
-            if (document.defaultView && document.defaultView.getComputedStyle) {
-                return function(el) {
-                    var height = null;
-                    if (el.ownerDocument && el.ownerDocument.defaultView) {
-                        var computed = el.ownerDocument.defaultView.getComputedStyle(el, '');
-                        if (computed) {
-                            height = parseInt(computed.height, 10);
-                        }
-                    }
-                    return (Lang.isNumber(height)) ? height : null;
-                };
-            } else {
-                return function(el) {
-                    var height = null;
-                    if (el.style.pixelHeight) {
-                        height = el.style.pixelHeight;
-                    }
-                    return (Lang.isNumber(height)) ? height : null;
-                };
-            }
-        })(),
-
-        /**
-         * autofillheight validator. Verifies that the autofill value is either null 
-         * or one of the strings : "body", "header" or "footer".
-         *
-         * @method _validateAutoFillHeight
-         * @protected
-         * @param {String} val
-         * @return true, if valid, false otherwise
-         */
-        _validateAutoFillHeight : function(val) {
-            return (!val) || (Lang.isString(val) && Overlay.STD_MOD_RE.test(val));
-        },
-
-        /**
-         * The default custom event handler executed when the overlay's height is changed, 
-         * if the autofillheight property has been set.
-         *
-         * @method _autoFillOnHeightChange
-         * @protected
-         * @param {String} type The event type
-         * @param {Array} args The array of arguments passed to event subscribers
-         * @param {HTMLElement} el The header, body or footer element which is to be resized to fill
-         * out the containers height
-         */
-        _autoFillOnHeightChange : function(type, args, el) {
-            this.fillHeight(el);
-        },
-
-        /**
-         * Returns the sub-pixel height of the el, using getBoundingClientRect, if available,
-         * otherwise returns the offsetHeight
-         * @method _getPreciseHeight
-         * @private
-         * @param {HTMLElement} el
-         * @return {Float} The sub-pixel height if supported by the browser, else the rounded height.
-         */
-        _getPreciseHeight : function(el) {
-            var height = el.offsetHeight;
-
-            if (el.getBoundingClientRect) {
-                var rect = el.getBoundingClientRect();
-                height = rect.bottom - rect.top;
-            }
-
-            return height;
-        },
-
-        /**
-         * <p>
-         * Sets the height on the provided header, body or footer element to 
-         * fill out the height of the container. It determines the height of the 
-         * containers content box, based on it's configured height value, and 
-         * sets the height of the autofillheight element to fill out any 
-         * space remaining after the other standard module element heights 
-         * have been accounted for.
-         * </p>
-         * <p><strong>NOTE:</strong> This method is not designed to work if an explicit 
-         * height has not been set on the container, since for an "auto" height container, 
-         * the heights of the header/body/footer will drive the height of the container.</p>
-         *
-         * @method fillHeight
-         * @param {HTMLElement} el The element which should be resized to fill out the height
-         * of the container element.
-         */
-        fillHeight : function(el) {
-            if (el) {
-                var container = this.innerElement || this.element,
-                    containerEls = [this.header, this.body, this.footer],
-                    containerEl,
-                    total = 0,
-                    filled = 0,
-                    remaining = 0,
-                    validEl = false;
-
-                for (var i = 0, l = containerEls.length; i < l; i++) {
-                    containerEl = containerEls[i];
-                    if (containerEl) {
-                        if (el !== containerEl) {
-                            filled += this._getPreciseHeight(containerEl);
-                        } else {
-                            validEl = true;
-                        }
-                    }
-                }
-
-                if (validEl) {
-
-                    if (UA.ie || UA.opera) {
-                        // Need to set height to 0, to allow height to be reduced
-                        Dom.setStyle(el, 'height', 0 + 'px');
-                    }
-
-                    total = this._getComputedHeight(container);
-
-                    // Fallback, if we can't get computed value for content height
-                    if (total === null) {
-                        Dom.addClass(container, "yui-override-padding");
-                        total = container.clientHeight; // Content, No Border, 0 Padding (set by yui-override-padding)
-                        Dom.removeClass(container, "yui-override-padding");
-                    }
-    
-                    remaining = total - filled;
-    
-                    Dom.setStyle(el, "height", remaining + "px");
-    
-                    // Re-adjust height if required, to account for el padding and border
-                    if (el.offsetHeight != remaining) {
-                        remaining = remaining - (el.offsetHeight - remaining);
-                    }
-                    Dom.setStyle(el, "height", remaining + "px");
-                }
-            }
-        },
-
-        /**
-        * Places the Overlay on top of all other instances of 
-        * YAHOO.widget.Overlay.
-        * @method bringToTop
-        */
-        bringToTop: function () {
-
-            var aOverlays = [],
-                oElement = this.element;
-
-            function compareZIndexDesc(p_oOverlay1, p_oOverlay2) {
-
-                var sZIndex1 = Dom.getStyle(p_oOverlay1, "zIndex"),
-                    sZIndex2 = Dom.getStyle(p_oOverlay2, "zIndex"),
-
-                    nZIndex1 = (!sZIndex1 || isNaN(sZIndex1)) ? 0 : parseInt(sZIndex1, 10),
-                    nZIndex2 = (!sZIndex2 || isNaN(sZIndex2)) ? 0 : parseInt(sZIndex2, 10);
-
-                if (nZIndex1 > nZIndex2) {
-                    return -1;
-                } else if (nZIndex1 < nZIndex2) {
-                    return 1;
-                } else {
-                    return 0;
-                }
-            }
-
-            function isOverlayElement(p_oElement) {
-
-                var isOverlay = Dom.hasClass(p_oElement, Overlay.CSS_OVERLAY),
-                    Panel = YAHOO.widget.Panel;
-
-                if (isOverlay && !Dom.isAncestor(oElement, p_oElement)) {
-                    if (Panel && Dom.hasClass(p_oElement, Panel.CSS_PANEL)) {
-                        aOverlays[aOverlays.length] = p_oElement.parentNode;
-                    } else {
-                        aOverlays[aOverlays.length] = p_oElement;
-                    }
-                }
-            }
-
-            Dom.getElementsBy(isOverlayElement, "DIV", document.body);
-
-            aOverlays.sort(compareZIndexDesc);
-
-            var oTopOverlay = aOverlays[0],
-                nTopZIndex;
-
-            if (oTopOverlay) {
-                nTopZIndex = Dom.getStyle(oTopOverlay, "zIndex");
-
-                if (!isNaN(nTopZIndex)) {
-                    var bRequiresBump = false;
-
-                    if (oTopOverlay != oElement) {
-                        bRequiresBump = true;
-                    } else if (aOverlays.length > 1) {
-                        var nNextZIndex = Dom.getStyle(aOverlays[1], "zIndex");
-                        // Don't rely on DOM order to stack if 2 overlays are at the same zindex.
-                        if (!isNaN(nNextZIndex) && (nTopZIndex == nNextZIndex)) {
-                            bRequiresBump = true;
-                        }
-                    }
-                    if (bRequiresBump) {
-                        this.cfg.setProperty("zindex", (parseInt(nTopZIndex, 10) + 2));
-                    }
-                }
-            }
-        },
-
-        /**
-        * Removes the Overlay element from the DOM and sets all child 
-        * elements to null.
-        * @method destroy
-        */
-        destroy: function () {
-
-            if (this.iframe) {
-                this.iframe.parentNode.removeChild(this.iframe);
-            }
-
-            this.iframe = null;
-
-            Overlay.windowResizeEvent.unsubscribe(
-                this.doCenterOnDOMEvent, this);
-    
-            Overlay.windowScrollEvent.unsubscribe(
-                this.doCenterOnDOMEvent, this);
-
-            Module.textResizeEvent.unsubscribe(this._autoFillOnHeightChange);
-
-            Overlay.superclass.destroy.call(this);
-        },
-
-        /**
-        * Returns a String representation of the object.
-        * @method toString
-        * @return {String} The string representation of the Overlay.
-        */
-        toString: function () {
-            return "Overlay " + this.id;
-        }
-
-    });
-}());
-
-(function () {
-
-    /**
-    * OverlayManager is used for maintaining the focus status of 
-    * multiple Overlays.
-    * @namespace YAHOO.widget
-    * @namespace YAHOO.widget
-    * @class OverlayManager
-    * @constructor
-    * @param {Array} overlays Optional. A collection of Overlays to register 
-    * with the manager.
-    * @param {Object} userConfig  The object literal representing the user 
-    * configuration of the OverlayManager
-    */
-    YAHOO.widget.OverlayManager = function (userConfig) {
-        this.init(userConfig);
-    };
-
-    var Overlay = YAHOO.widget.Overlay,
-        Event = YAHOO.util.Event,
-        Dom = YAHOO.util.Dom,
-        Config = YAHOO.util.Config,
-        CustomEvent = YAHOO.util.CustomEvent,
-        OverlayManager = YAHOO.widget.OverlayManager;
-
-    /**
-    * The CSS class representing a focused Overlay
-    * @property OverlayManager.CSS_FOCUSED
-    * @static
-    * @final
-    * @type String
-    */
-    OverlayManager.CSS_FOCUSED = "focused";
-
-    OverlayManager.prototype = {
-
-        /**
-        * The class's constructor function
-        * @property contructor
-        * @type Function
-        */
-        constructor: OverlayManager,
-
-        /**
-        * The array of Overlays that are currently registered
-        * @property overlays
-        * @type YAHOO.widget.Overlay[]
-        */
-        overlays: null,
-
-        /**
-        * Initializes the default configuration of the OverlayManager
-        * @method initDefaultConfig
-        */
-        initDefaultConfig: function () {
-            /**
-            * The collection of registered Overlays in use by 
-            * the OverlayManager
-            * @config overlays
-            * @type YAHOO.widget.Overlay[]
-            * @default null
-            */
-            this.cfg.addProperty("overlays", { suppressEvent: true } );
-
-            /**
-            * The default DOM event that should be used to focus an Overlay
-            * @config focusevent
-            * @type String
-            * @default "mousedown"
-            */
-            this.cfg.addProperty("focusevent", { value: "mousedown" } );
-        },
-
-        /**
-        * Initializes the OverlayManager
-        * @method init
-        * @param {Overlay[]} overlays Optional. A collection of Overlays to 
-        * register with the manager.
-        * @param {Object} userConfig  The object literal representing the user 
-        * configuration of the OverlayManager
-        */
-        init: function (userConfig) {
-
-            /**
-            * The OverlayManager's Config object used for monitoring 
-            * configuration properties.
-            * @property cfg
-            * @type Config
-            */
-            this.cfg = new Config(this);
-
-            this.initDefaultConfig();
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-            this.cfg.fireQueue();
-
-            /**
-            * The currently activated Overlay
-            * @property activeOverlay
-            * @private
-            * @type YAHOO.widget.Overlay
-            */
-            var activeOverlay = null;
-
-            /**
-            * Returns the currently focused Overlay
-            * @method getActive
-            * @return {Overlay} The currently focused Overlay
-            */
-            this.getActive = function () {
-                return activeOverlay;
-            };
-
-            /**
-            * Focuses the specified Overlay
-            * @method focus
-            * @param {Overlay} overlay The Overlay to focus
-            * @param {String} overlay The id of the Overlay to focus
-            */
-            this.focus = function (overlay) {
-                var o = this.find(overlay);
-                if (o) {
-                    o.focus();
-                }
-            };
-
-            /**
-            * Removes the specified Overlay from the manager
-            * @method remove
-            * @param {Overlay} overlay The Overlay to remove
-            * @param {String} overlay The id of the Overlay to remove
-            */
-            this.remove = function (overlay) {
-
-                var o = this.find(overlay), 
-                        originalZ;
-
-                if (o) {
-                    if (activeOverlay == o) {
-                        activeOverlay = null;
-                    }
-
-                    var bDestroyed = (o.element === null && o.cfg === null) ? true : false;
-
-                    if (!bDestroyed) {
-                        // Set it's zindex so that it's sorted to the end.
-                        originalZ = Dom.getStyle(o.element, "zIndex");
-                        o.cfg.setProperty("zIndex", -1000, true);
-                    }
-
-                    this.overlays.sort(this.compareZIndexDesc);
-                    this.overlays = this.overlays.slice(0, (this.overlays.length - 1));
-
-                    o.hideEvent.unsubscribe(o.blur);
-                    o.destroyEvent.unsubscribe(this._onOverlayDestroy, o);
-                    o.focusEvent.unsubscribe(this._onOverlayFocusHandler, o);
-                    o.blurEvent.unsubscribe(this._onOverlayBlurHandler, o);
-
-                    if (!bDestroyed) {
-                        Event.removeListener(o.element, this.cfg.getProperty("focusevent"), this._onOverlayElementFocus);
-                        o.cfg.setProperty("zIndex", originalZ, true);
-                        o.cfg.setProperty("manager", null);
-                    }
-
-                    /* _managed Flag for custom or existing. Don't want to remove existing */
-                    if (o.focusEvent._managed) { o.focusEvent = null; }
-                    if (o.blurEvent._managed) { o.blurEvent = null; }
-
-                    if (o.focus._managed) { o.focus = null; }
-                    if (o.blur._managed) { o.blur = null; }
-                }
-            };
-
-            /**
-            * Removes focus from all registered Overlays in the manager
-            * @method blurAll
-            */
-            this.blurAll = function () {
-
-                var nOverlays = this.overlays.length,
-                    i;
-
-                if (nOverlays > 0) {
-                    i = nOverlays - 1;
-                    do {
-                        this.overlays[i].blur();
-                    }
-                    while(i--);
-                }
-            };
-
-            /**
-             * Updates the state of the OverlayManager and overlay, as a result of the overlay
-             * being blurred.
-             * 
-             * @method _manageBlur
-             * @param {Overlay} overlay The overlay instance which got blurred.
-             * @protected
-             */
-            this._manageBlur = function (overlay) {
-                var changed = false;
-                if (activeOverlay == overlay) {
-                    Dom.removeClass(activeOverlay.element, OverlayManager.CSS_FOCUSED);
-                    activeOverlay = null;
-                    changed = true;
-                }
-                return changed;
-            };
-
-            /**
-             * Updates the state of the OverlayManager and overlay, as a result of the overlay 
-             * receiving focus.
-             *
-             * @method _manageFocus
-             * @param {Overlay} overlay The overlay instance which got focus.
-             * @protected
-             */
-            this._manageFocus = function(overlay) {
-                var changed = false;
-                if (activeOverlay != overlay) {
-                    if (activeOverlay) {
-                        activeOverlay.blur();
-                    }
-                    activeOverlay = overlay;
-                    this.bringToTop(activeOverlay);
-                    Dom.addClass(activeOverlay.element, OverlayManager.CSS_FOCUSED);
-                    changed = true;
-                }
-                return changed;
-            };
-
-            var overlays = this.cfg.getProperty("overlays");
-
-            if (! this.overlays) {
-                this.overlays = [];
-            }
-
-            if (overlays) {
-                this.register(overlays);
-                this.overlays.sort(this.compareZIndexDesc);
-            }
-        },
-
-        /**
-        * @method _onOverlayElementFocus
-        * @description Event handler for the DOM event that is used to focus 
-        * the Overlay instance as specified by the "focusevent" 
-        * configuration property.
-        * @private
-        * @param {Event} p_oEvent Object representing the DOM event 
-        * object passed back by the event utility (Event).
-        */
-        _onOverlayElementFocus: function (p_oEvent) {
-
-            var oTarget = Event.getTarget(p_oEvent),
-                oClose = this.close;
-
-            if (oClose && (oTarget == oClose || Dom.isAncestor(oClose, oTarget))) {
-                this.blur();
-            } else {
-                this.focus();
-            }
-        },
-
-        /**
-        * @method _onOverlayDestroy
-        * @description "destroy" event handler for the Overlay.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {Overlay} p_oOverlay Object representing the overlay that 
-        * fired the event.
-        */
-        _onOverlayDestroy: function (p_sType, p_aArgs, p_oOverlay) {
-            this.remove(p_oOverlay);
-        },
-
-        /**
-        * @method _onOverlayFocusHandler
-        *
-        * focusEvent Handler, used to delegate to _manageFocus with the 
-        * correct arguments.
-        *
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {Overlay} p_oOverlay Object representing the overlay that 
-        * fired the event.
-        */
-        _onOverlayFocusHandler: function(p_sType, p_aArgs, p_oOverlay) {
-            this._manageFocus(p_oOverlay);
-        },
-
-        /**
-        * @method _onOverlayBlurHandler
-        *
-        * blurEvent Handler, used to delegate to _manageBlur with the 
-        * correct arguments.
-        *
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {Overlay} p_oOverlay Object representing the overlay that 
-        * fired the event.
-        */
-        _onOverlayBlurHandler: function(p_sType, p_aArgs, p_oOverlay) {
-            this._manageBlur(p_oOverlay);
-        },
-
-        /**
-         * Subscribes to the Overlay based instance focusEvent, to allow the OverlayManager to
-         * monitor focus state.
-         * 
-         * If the instance already has a focusEvent (e.g. Menu), OverlayManager will subscribe 
-         * to the existing focusEvent, however if a focusEvent or focus method does not exist
-         * on the instance, the _bindFocus method will add them, and the focus method will 
-         * update the OverlayManager's state directly.
-         * 
-         * @method _bindFocus
-         * @param {Overlay} overlay The overlay for which focus needs to be managed
-         * @protected
-         */
-        _bindFocus : function(overlay) {
-            var mgr = this;
-
-            if (!overlay.focusEvent) {
-                overlay.focusEvent = overlay.createEvent("focus");
-                overlay.focusEvent.signature = CustomEvent.LIST;
-                overlay.focusEvent._managed = true;
-            } else {
-                overlay.focusEvent.subscribe(mgr._onOverlayFocusHandler, overlay, mgr);
-            }
-
-            if (!overlay.focus) {
-                Event.on(overlay.element, mgr.cfg.getProperty("focusevent"), mgr._onOverlayElementFocus, null, overlay);
-                overlay.focus = function () {
-                    if (mgr._manageFocus(this)) {
-                        // For Panel/Dialog
-                        if (this.cfg.getProperty("visible") && this.focusFirst) {
-                            this.focusFirst();
-                        }
-                        this.focusEvent.fire();
-                    }
-                };
-                overlay.focus._managed = true;
-            }
-        },
-
-        /**
-         * Subscribes to the Overlay based instance's blurEvent to allow the OverlayManager to
-         * monitor blur state.
-         *
-         * If the instance already has a blurEvent (e.g. Menu), OverlayManager will subscribe 
-         * to the existing blurEvent, however if a blurEvent or blur method does not exist
-         * on the instance, the _bindBlur method will add them, and the blur method 
-         * update the OverlayManager's state directly.
-         *
-         * @method _bindBlur
-         * @param {Overlay} overlay The overlay for which blur needs to be managed
-         * @protected
-         */
-        _bindBlur : function(overlay) {
-            var mgr = this;
-
-            if (!overlay.blurEvent) {
-                overlay.blurEvent = overlay.createEvent("blur");
-                overlay.blurEvent.signature = CustomEvent.LIST;
-                overlay.focusEvent._managed = true;
-            } else {
-                overlay.blurEvent.subscribe(mgr._onOverlayBlurHandler, overlay, mgr);
-            }
-
-            if (!overlay.blur) {
-                overlay.blur = function () {
-                    if (mgr._manageBlur(this)) {
-                        this.blurEvent.fire();
-                    }
-                };
-                overlay.blur._managed = true;
-            }
-
-            overlay.hideEvent.subscribe(overlay.blur);
-        },
-
-        /**
-         * Subscribes to the Overlay based instance's destroyEvent, to allow the Overlay
-         * to be removed for the OverlayManager when destroyed.
-         * 
-         * @method _bindDestroy
-         * @param {Overlay} overlay The overlay instance being managed
-         * @protected
-         */
-        _bindDestroy : function(overlay) {
-            var mgr = this;
-            overlay.destroyEvent.subscribe(mgr._onOverlayDestroy, overlay, mgr);
-        },
-
-        /**
-         * Ensures the zIndex configuration property on the managed overlay based instance
-         * is set to the computed zIndex value from the DOM (with "auto" translating to 0).
-         *
-         * @method _syncZIndex
-         * @param {Overlay} overlay The overlay instance being managed
-         * @protected
-         */
-        _syncZIndex : function(overlay) {
-            var zIndex = Dom.getStyle(overlay.element, "zIndex");
-            if (!isNaN(zIndex)) {
-                overlay.cfg.setProperty("zIndex", parseInt(zIndex, 10));
-            } else {
-                overlay.cfg.setProperty("zIndex", 0);
-            }
-        },
-
-        /**
-        * Registers an Overlay or an array of Overlays with the manager. Upon 
-        * registration, the Overlay receives functions for focus and blur, 
-        * along with CustomEvents for each.
-        *
-        * @method register
-        * @param {Overlay} overlay  An Overlay to register with the manager.
-        * @param {Overlay[]} overlay  An array of Overlays to register with 
-        * the manager.
-        * @return {boolean} true if any Overlays are registered.
-        */
-        register: function (overlay) {
-
-            var zIndex,
-                registered = false,
-                i,
-                n;
-
-            if (overlay instanceof Overlay) {
-
-                overlay.cfg.addProperty("manager", { value: this } );
-
-                this._bindFocus(overlay);
-                this._bindBlur(overlay);
-                this._bindDestroy(overlay);
-                this._syncZIndex(overlay);
-
-                this.overlays.push(overlay);
-                this.bringToTop(overlay);
-
-                registered = true;
-
-            } else if (overlay instanceof Array) {
-
-                for (i = 0, n = overlay.length; i < n; i++) {
-                    registered = this.register(overlay[i]) || registered;
-                }
-
-            }
-
-            return registered;
-        },
-
-        /**
-        * Places the specified Overlay instance on top of all other 
-        * Overlay instances.
-        * @method bringToTop
-        * @param {YAHOO.widget.Overlay} p_oOverlay Object representing an 
-        * Overlay instance.
-        * @param {String} p_oOverlay String representing the id of an 
-        * Overlay instance.
-        */        
-        bringToTop: function (p_oOverlay) {
-
-            var oOverlay = this.find(p_oOverlay),
-                nTopZIndex,
-                oTopOverlay,
-                aOverlays;
-
-            if (oOverlay) {
-
-                aOverlays = this.overlays;
-                aOverlays.sort(this.compareZIndexDesc);
-
-                oTopOverlay = aOverlays[0];
-
-                if (oTopOverlay) {
-                    nTopZIndex = Dom.getStyle(oTopOverlay.element, "zIndex");
-
-                    if (!isNaN(nTopZIndex)) {
-
-                        var bRequiresBump = false;
-
-                        if (oTopOverlay !== oOverlay) {
-                            bRequiresBump = true;
-                        } else if (aOverlays.length > 1) {
-                            var nNextZIndex = Dom.getStyle(aOverlays[1].element, "zIndex");
-                            // Don't rely on DOM order to stack if 2 overlays are at the same zindex.
-                            if (!isNaN(nNextZIndex) && (nTopZIndex == nNextZIndex)) {
-                                bRequiresBump = true;
-                            }
-                        }
-
-                        if (bRequiresBump) {
-                            oOverlay.cfg.setProperty("zindex", (parseInt(nTopZIndex, 10) + 2));
-                        }
-                    }
-                    aOverlays.sort(this.compareZIndexDesc);
-                }
-            }
-        },
-
-        /**
-        * Attempts to locate an Overlay by instance or ID.
-        * @method find
-        * @param {Overlay} overlay  An Overlay to locate within the manager
-        * @param {String} overlay  An Overlay id to locate within the manager
-        * @return {Overlay} The requested Overlay, if found, or null if it 
-        * cannot be located.
-        */
-        find: function (overlay) {
-
-            var isInstance = overlay instanceof Overlay,
-                overlays = this.overlays,
-                n = overlays.length,
-                found = null,
-                o,
-                i;
-
-            if (isInstance || typeof overlay == "string") {
-                for (i = n-1; i >= 0; i--) {
-                    o = overlays[i];
-                    if ((isInstance && (o === overlay)) || (o.id == overlay)) {
-                        found = o;
-                        break;
-                    }
-                }
-            }
-
-            return found;
-        },
-
-        /**
-        * Used for sorting the manager's Overlays by z-index.
-        * @method compareZIndexDesc
-        * @private
-        * @return {Number} 0, 1, or -1, depending on where the Overlay should 
-        * fall in the stacking order.
-        */
-        compareZIndexDesc: function (o1, o2) {
-
-            var zIndex1 = (o1.cfg) ? o1.cfg.getProperty("zIndex") : null, // Sort invalid (destroyed)
-                zIndex2 = (o2.cfg) ? o2.cfg.getProperty("zIndex") : null; // objects at bottom.
-
-            if (zIndex1 === null && zIndex2 === null) {
-                return 0;
-            } else if (zIndex1 === null){
-                return 1;
-            } else if (zIndex2 === null) {
-                return -1;
-            } else if (zIndex1 > zIndex2) {
-                return -1;
-            } else if (zIndex1 < zIndex2) {
-                return 1;
-            } else {
-                return 0;
-            }
-        },
-
-        /**
-        * Shows all Overlays in the manager.
-        * @method showAll
-        */
-        showAll: function () {
-            var overlays = this.overlays,
-                n = overlays.length,
-                i;
-
-            for (i = n - 1; i >= 0; i--) {
-                overlays[i].show();
-            }
-        },
-
-        /**
-        * Hides all Overlays in the manager.
-        * @method hideAll
-        */
-        hideAll: function () {
-            var overlays = this.overlays,
-                n = overlays.length,
-                i;
-
-            for (i = n - 1; i >= 0; i--) {
-                overlays[i].hide();
-            }
-        },
-
-        /**
-        * Returns a string representation of the object.
-        * @method toString
-        * @return {String} The string representation of the OverlayManager
-        */
-        toString: function () {
-            return "OverlayManager";
-        }
-    };
-}());
-
-(function () {
-
-    /**
-    * Tooltip is an implementation of Overlay that behaves like an OS tooltip, 
-    * displaying when the user mouses over a particular element, and 
-    * disappearing on mouse out.
-    * @namespace YAHOO.widget
-    * @class Tooltip
-    * @extends YAHOO.widget.Overlay
-    * @constructor
-    * @param {String} el The element ID representing the Tooltip <em>OR</em>
-    * @param {HTMLElement} el The element representing the Tooltip
-    * @param {Object} userConfig The configuration object literal containing 
-    * the configuration that should be set for this Overlay. See configuration 
-    * documentation for more details.
-    */
-    YAHOO.widget.Tooltip = function (el, userConfig) {
-        YAHOO.widget.Tooltip.superclass.constructor.call(this, el, userConfig);
-    };
-
-    var Lang = YAHOO.lang,
-        Event = YAHOO.util.Event,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Dom = YAHOO.util.Dom,
-        Tooltip = YAHOO.widget.Tooltip,
-
-        m_oShadowTemplate,
-
-        /**
-        * Constant representing the Tooltip's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-
-            "PREVENT_OVERLAP": { 
-                key: "preventoverlap", 
-                value: true, 
-                validator: Lang.isBoolean, 
-                supercedes: ["x", "y", "xy"] 
-            },
-
-            "SHOW_DELAY": { 
-                key: "showdelay", 
-                value: 200, 
-                validator: Lang.isNumber 
-            }, 
-
-            "AUTO_DISMISS_DELAY": { 
-                key: "autodismissdelay", 
-                value: 5000, 
-                validator: Lang.isNumber 
-            }, 
-
-            "HIDE_DELAY": { 
-                key: "hidedelay", 
-                value: 250, 
-                validator: Lang.isNumber 
-            }, 
-
-            "TEXT": { 
-                key: "text", 
-                suppressEvent: true 
-            }, 
-
-            "CONTAINER": { 
-                key: "container"
-            },
-
-            "DISABLED": {
-                key: "disabled",
-                value: false,
-                suppressEvent: true
-            }
-        },
-
-        /**
-        * Constant representing the name of the Tooltip's events
-        * @property EVENT_TYPES
-        * @private
-        * @final
-        * @type Object
-        */
-        EVENT_TYPES = {
-            "CONTEXT_MOUSE_OVER": "contextMouseOver",
-            "CONTEXT_MOUSE_OUT": "contextMouseOut",
-            "CONTEXT_TRIGGER": "contextTrigger"
-        };
-
-    /**
-    * Constant representing the Tooltip CSS class
-    * @property YAHOO.widget.Tooltip.CSS_TOOLTIP
-    * @static
-    * @final
-    * @type String
-    */
-    Tooltip.CSS_TOOLTIP = "yui-tt";
-
-    /* 
-        "hide" event handler that sets a Tooltip instance's "width"
-        configuration property back to its original value before 
-        "setWidthToOffsetWidth" was called.
-    */
-    function restoreOriginalWidth(p_sType, p_aArgs, p_oObject) {
-
-        var sOriginalWidth = p_oObject[0],
-            sNewWidth = p_oObject[1],
-            oConfig = this.cfg,
-            sCurrentWidth = oConfig.getProperty("width");
-
-        if (sCurrentWidth == sNewWidth) {
-            oConfig.setProperty("width", sOriginalWidth);
-        }
-    }
-
-    /* 
-        "beforeShow" event handler that sets a Tooltip instance's "width"
-        configuration property to the value of its root HTML 
-        elements's offsetWidth
-    */
-
-    function setWidthToOffsetWidth(p_sType, p_aArgs) {
-
-        var oBody = document.body,
-            oConfig = this.cfg,
-            sOriginalWidth = oConfig.getProperty("width"),
-            sNewWidth,
-            oClone;
-
-        if ((!sOriginalWidth || sOriginalWidth == "auto") && 
-            (oConfig.getProperty("container") != oBody || 
-            oConfig.getProperty("x") >= Dom.getViewportWidth() || 
-            oConfig.getProperty("y") >= Dom.getViewportHeight())) {
-
-            oClone = this.element.cloneNode(true);
-            oClone.style.visibility = "hidden";
-            oClone.style.top = "0px";
-            oClone.style.left = "0px";
-
-            oBody.appendChild(oClone);
-
-            sNewWidth = (oClone.offsetWidth + "px");
-
-            oBody.removeChild(oClone);
-            oClone = null;
-
-            oConfig.setProperty("width", sNewWidth);
-            oConfig.refireEvent("xy");
-
-            this.subscribe("hide", restoreOriginalWidth, [(sOriginalWidth || ""), sNewWidth]);
-        }
-    }
-
-    // "onDOMReady" that renders the ToolTip
-
-    function onDOMReady(p_sType, p_aArgs, p_oObject) {
-        this.render(p_oObject);
-    }
-
-    //  "init" event handler that automatically renders the Tooltip
-
-    function onInit() {
-        Event.onDOMReady(onDOMReady, this.cfg.getProperty("container"), this);
-    }
-
-    YAHOO.extend(Tooltip, YAHOO.widget.Overlay, { 
-
-        /**
-        * The Tooltip initialization method. This method is automatically 
-        * called by the constructor. A Tooltip is automatically rendered by 
-        * the init method, and it also is set to be invisible by default, 
-        * and constrained to viewport by default as well.
-        * @method init
-        * @param {String} el The element ID representing the Tooltip <em>OR</em>
-        * @param {HTMLElement} el The element representing the Tooltip
-        * @param {Object} userConfig The configuration object literal 
-        * containing the configuration that should be set for this Tooltip. 
-        * See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-
-            this.logger = new YAHOO.widget.LogWriter(this.toString());
-
-            Tooltip.superclass.init.call(this, el);
-
-            this.beforeInitEvent.fire(Tooltip);
-
-            Dom.addClass(this.element, Tooltip.CSS_TOOLTIP);
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-
-            this.cfg.queueProperty("visible", false);
-            this.cfg.queueProperty("constraintoviewport", true);
-
-            this.setBody("");
-
-            this.subscribe("beforeShow", setWidthToOffsetWidth);
-            this.subscribe("init", onInit);
-            this.subscribe("render", this.onRender);
-
-            this.initEvent.fire(Tooltip);
-        },
-
-        /**
-        * Initializes the custom events for Tooltip
-        * @method initEvents
-        */
-        initEvents: function () {
-
-            Tooltip.superclass.initEvents.call(this);
-            var SIGNATURE = CustomEvent.LIST;
-
-            /**
-            * CustomEvent fired when user mouses over a context element. Returning false from
-            * a subscriber to this event will prevent the tooltip from being displayed for
-            * the current context element.
-            * 
-            * @event contextMouseOverEvent
-            * @param {HTMLElement} context The context element which the user just moused over
-            * @param {DOMEvent} e The DOM event object, associated with the mouse over
-            */
-            this.contextMouseOverEvent = this.createEvent(EVENT_TYPES.CONTEXT_MOUSE_OVER);
-            this.contextMouseOverEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired when the user mouses out of a context element.
-            * 
-            * @event contextMouseOutEvent
-            * @param {HTMLElement} context The context element which the user just moused out of
-            * @param {DOMEvent} e The DOM event object, associated with the mouse out
-            */
-            this.contextMouseOutEvent = this.createEvent(EVENT_TYPES.CONTEXT_MOUSE_OUT);
-            this.contextMouseOutEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired just before the tooltip is displayed for the current context.
-            * <p>
-            *  You can subscribe to this event if you need to set up the text for the 
-            *  tooltip based on the context element for which it is about to be displayed.
-            * </p>
-            * <p>This event differs from the beforeShow event in following respects:</p>
-            * <ol>
-            *   <li>
-            *    When moving from one context element to another, if the tooltip is not
-            *    hidden (the <code>hidedelay</code> is not reached), the beforeShow and Show events will not
-            *    be fired when the tooltip is displayed for the new context since it is already visible.
-            *    However the contextTrigger event is always fired before displaying the tooltip for
-            *    a new context.
-            *   </li>
-            *   <li>
-            *    The trigger event provides access to the context element, allowing you to 
-            *    set the text of the tooltip based on context element for which the tooltip is
-            *    triggered.
-            *   </li>
-            * </ol>
-            * <p>
-            *  It is not possible to prevent the tooltip from being displayed
-            *  using this event. You can use the contextMouseOverEvent if you need to prevent
-            *  the tooltip from being displayed.
-            * </p>
-            * @event contextTriggerEvent
-            * @param {HTMLElement} context The context element for which the tooltip is triggered
-            */
-            this.contextTriggerEvent = this.createEvent(EVENT_TYPES.CONTEXT_TRIGGER);
-            this.contextTriggerEvent.signature = SIGNATURE;
-        },
-
-        /**
-        * Initializes the class's configurable properties which can be 
-        * changed using the Overlay's Config object (cfg).
-        * @method initDefaultConfig
-        */
-        initDefaultConfig: function () {
-
-            Tooltip.superclass.initDefaultConfig.call(this);
-
-            /**
-            * Specifies whether the Tooltip should be kept from overlapping 
-            * its context element.
-            * @config preventoverlap
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.PREVENT_OVERLAP.key, {
-                value: DEFAULT_CONFIG.PREVENT_OVERLAP.value, 
-                validator: DEFAULT_CONFIG.PREVENT_OVERLAP.validator, 
-                supercedes: DEFAULT_CONFIG.PREVENT_OVERLAP.supercedes
-            });
-
-            /**
-            * The number of milliseconds to wait before showing a Tooltip 
-            * on mouseover.
-            * @config showdelay
-            * @type Number
-            * @default 200
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.SHOW_DELAY.key, {
-                handler: this.configShowDelay,
-                value: 200, 
-                validator: DEFAULT_CONFIG.SHOW_DELAY.validator
-            });
-
-            /**
-            * The number of milliseconds to wait before automatically 
-            * dismissing a Tooltip after the mouse has been resting on the 
-            * context element.
-            * @config autodismissdelay
-            * @type Number
-            * @default 5000
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.AUTO_DISMISS_DELAY.key, {
-                handler: this.configAutoDismissDelay,
-                value: DEFAULT_CONFIG.AUTO_DISMISS_DELAY.value,
-                validator: DEFAULT_CONFIG.AUTO_DISMISS_DELAY.validator
-            });
-
-            /**
-            * The number of milliseconds to wait before hiding a Tooltip 
-            * after mouseout.
-            * @config hidedelay
-            * @type Number
-            * @default 250
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.HIDE_DELAY.key, {
-                handler: this.configHideDelay,
-                value: DEFAULT_CONFIG.HIDE_DELAY.value, 
-                validator: DEFAULT_CONFIG.HIDE_DELAY.validator
-            });
-
-            /**
-            * Specifies the Tooltip's text. 
-            * @config text
-            * @type String
-            * @default null
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.TEXT.key, {
-                handler: this.configText,
-                suppressEvent: DEFAULT_CONFIG.TEXT.suppressEvent
-            });
-
-            /**
-            * Specifies the container element that the Tooltip's markup 
-            * should be rendered into.
-            * @config container
-            * @type HTMLElement/String
-            * @default document.body
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.CONTAINER.key, {
-                handler: this.configContainer,
-                value: document.body
-            });
-
-            /**
-            * Specifies whether or not the tooltip is disabled. Disabled tooltips
-            * will not be displayed. If the tooltip is driven by the title attribute
-            * of the context element, the title attribute will still be removed for 
-            * disabled tooltips, to prevent default tooltip behavior.
-            * 
-            * @config disabled
-            * @type Boolean
-            * @default false
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.DISABLED.key, {
-                handler: this.configContainer,
-                value: DEFAULT_CONFIG.DISABLED.value,
-                supressEvent: DEFAULT_CONFIG.DISABLED.suppressEvent
-            });
-
-            /**
-            * Specifies the element or elements that the Tooltip should be 
-            * anchored to on mouseover.
-            * @config context
-            * @type HTMLElement[]/String[]
-            * @default null
-            */ 
-
-            /**
-            * String representing the width of the Tooltip.  <em>Please note:
-            * </em> As of version 2.3 if either no value or a value of "auto" 
-            * is specified, and the Toolip's "container" configuration property
-            * is set to something other than <code>document.body</code> or 
-            * its "context" element resides outside the immediately visible 
-            * portion of the document, the width of the Tooltip will be 
-            * calculated based on the offsetWidth of its root HTML and set just 
-            * before it is made visible.  The original value will be 
-            * restored when the Tooltip is hidden. This ensures the Tooltip is 
-            * rendered at a usable width.  For more information see 
-            * SourceForge bug #1685496 and SourceForge 
-            * bug #1735423.
-            * @config width
-            * @type String
-            * @default null
-            */
-        
-        },
-        
-        // BEGIN BUILT-IN PROPERTY EVENT HANDLERS //
-        
-        /**
-        * The default event handler fired when the "text" property is changed.
-        * @method configText
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configText: function (type, args, obj) {
-            var text = args[0];
-            if (text) {
-                this.setBody(text);
-            }
-        },
-        
-        /**
-        * The default event handler fired when the "container" property 
-        * is changed.
-        * @method configContainer
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For 
-        * configuration handlers, args[0] will equal the newly applied value 
-        * for the property.
-        * @param {Object} obj The scope object. For configuration handlers,
-        * this will usually equal the owner.
-        */
-        configContainer: function (type, args, obj) {
-            var container = args[0];
-
-            if (typeof container == 'string') {
-                this.cfg.setProperty("container", document.getElementById(container), true);
-            }
-        },
-        
-        /**
-        * @method _removeEventListeners
-        * @description Removes all of the DOM event handlers from the HTML
-        *  element(s) that trigger the display of the tooltip.
-        * @protected
-        */
-        _removeEventListeners: function () {
-        
-            var aElements = this._context,
-                nElements,
-                oElement,
-                i;
-
-            if (aElements) {
-                nElements = aElements.length;
-                if (nElements > 0) {
-                    i = nElements - 1;
-                    do {
-                        oElement = aElements[i];
-                        Event.removeListener(oElement, "mouseover", this.onContextMouseOver);
-                        Event.removeListener(oElement, "mousemove", this.onContextMouseMove);
-                        Event.removeListener(oElement, "mouseout", this.onContextMouseOut);
-                    }
-                    while (i--);
-                }
-            }
-        },
-        
-        /**
-        * The default event handler fired when the "context" property 
-        * is changed.
-        * @method configContext
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers,
-        * this will usually equal the owner.
-        */
-        configContext: function (type, args, obj) {
-        
-            var context = args[0],
-                aElements,
-                nElements,
-                oElement,
-                i;
-
-            if (context) {
-
-                // Normalize parameter into an array
-                if (! (context instanceof Array)) {
-                    if (typeof context == "string") {
-                        this.cfg.setProperty("context", [document.getElementById(context)], true);
-                    } else { // Assuming this is an element
-                        this.cfg.setProperty("context", [context], true);
-                    }
-                    context = this.cfg.getProperty("context");
-                }
-
-                // Remove any existing mouseover/mouseout listeners
-                this._removeEventListeners();
-
-                // Add mouseover/mouseout listeners to context elements
-                this._context = context;
-
-                aElements = this._context;
-
-                if (aElements) {
-                    nElements = aElements.length;
-                    if (nElements > 0) {
-                        i = nElements - 1;
-                        do {
-                            oElement = aElements[i];
-                            Event.on(oElement, "mouseover", this.onContextMouseOver, this);
-                            Event.on(oElement, "mousemove", this.onContextMouseMove, this);
-                            Event.on(oElement, "mouseout", this.onContextMouseOut, this);
-                        }
-                        while (i--);
-                    }
-                }
-            }
-        },
-
-        // END BUILT-IN PROPERTY EVENT HANDLERS //
-
-        // BEGIN BUILT-IN DOM EVENT HANDLERS //
-
-        /**
-        * The default event handler fired when the user moves the mouse while 
-        * over the context element.
-        * @method onContextMouseMove
-        * @param {DOMEvent} e The current DOM event
-        * @param {Object} obj The object argument
-        */
-        onContextMouseMove: function (e, obj) {
-            obj.pageX = Event.getPageX(e);
-            obj.pageY = Event.getPageY(e);
-        },
-
-        /**
-        * The default event handler fired when the user mouses over the 
-        * context element.
-        * @method onContextMouseOver
-        * @param {DOMEvent} e The current DOM event
-        * @param {Object} obj The object argument
-        */
-        onContextMouseOver: function (e, obj) {
-            var context = this;
-
-            if (context.title) {
-                obj._tempTitle = context.title;
-                context.title = "";
-            }
-
-            // Fire first, to honor disabled set in the listner
-            if (obj.fireEvent("contextMouseOver", context, e) !== false 
-                    && !obj.cfg.getProperty("disabled")) {
-
-                // Stop the tooltip from being hidden (set on last mouseout)
-                if (obj.hideProcId) {
-                    clearTimeout(obj.hideProcId);
-                    obj.logger.log("Clearing hide timer: " + obj.hideProcId, "time");
-                    obj.hideProcId = null;
-                }
-
-                Event.on(context, "mousemove", obj.onContextMouseMove, obj);
-
-                /**
-                * The unique process ID associated with the thread responsible 
-                * for showing the Tooltip.
-                * @type int
-                */
-                obj.showProcId = obj.doShow(e, context);
-                obj.logger.log("Setting show tooltip timeout: " + obj.showProcId, "time");
-            }
-        },
-
-        /**
-        * The default event handler fired when the user mouses out of 
-        * the context element.
-        * @method onContextMouseOut
-        * @param {DOMEvent} e The current DOM event
-        * @param {Object} obj The object argument
-        */
-        onContextMouseOut: function (e, obj) {
-            var el = this;
-
-            if (obj._tempTitle) {
-                el.title = obj._tempTitle;
-                obj._tempTitle = null;
-            }
-
-            if (obj.showProcId) {
-                clearTimeout(obj.showProcId);
-                obj.logger.log("Clearing show timer: " + obj.showProcId, "time");
-                obj.showProcId = null;
-            }
-
-            if (obj.hideProcId) {
-                clearTimeout(obj.hideProcId);
-                obj.logger.log("Clearing hide timer: " + obj.hideProcId, "time");
-                obj.hideProcId = null;
-            }
-
-            obj.fireEvent("contextMouseOut", el, e);
-
-            obj.hideProcId = setTimeout(function () {
-                obj.hide();
-            }, obj.cfg.getProperty("hidedelay"));
-        },
-
-        // END BUILT-IN DOM EVENT HANDLERS //
-
-        /**
-        * Processes the showing of the Tooltip by setting the timeout delay 
-        * and offset of the Tooltip.
-        * @method doShow
-        * @param {DOMEvent} e The current DOM event
-        * @param {HTMLElement} context The current context element
-        * @return {Number} The process ID of the timeout function associated 
-        * with doShow
-        */
-        doShow: function (e, context) {
-
-            var yOffset = 25,
-                me = this;
-
-            if (YAHOO.env.ua.opera && context.tagName && 
-                context.tagName.toUpperCase() == "A") {
-                yOffset += 12;
-            }
-
-            return setTimeout(function () {
-
-                var txt = me.cfg.getProperty("text");
-
-                // title does not over-ride text
-                if (me._tempTitle && (txt === "" || YAHOO.lang.isUndefined(txt) || YAHOO.lang.isNull(txt))) {
-                    me.setBody(me._tempTitle);
-                } else {
-                    me.cfg.refireEvent("text");
-                }
-
-                me.logger.log("Show tooltip", "time");
-                me.moveTo(me.pageX, me.pageY + yOffset);
-
-                if (me.cfg.getProperty("preventoverlap")) {
-                    me.preventOverlap(me.pageX, me.pageY);
-                }
-
-                Event.removeListener(context, "mousemove", me.onContextMouseMove);
-
-                me.contextTriggerEvent.fire(context);
-
-                me.show();
-
-                me.hideProcId = me.doHide();
-                me.logger.log("Hide tooltip time active: " + me.hideProcId, "time");
-
-            }, this.cfg.getProperty("showdelay"));
-        },
-
-        /**
-        * Sets the timeout for the auto-dismiss delay, which by default is 5 
-        * seconds, meaning that a tooltip will automatically dismiss itself 
-        * after 5 seconds of being displayed.
-        * @method doHide
-        */
-        doHide: function () {
-
-            var me = this;
-
-            me.logger.log("Setting hide tooltip timeout", "time");
-
-            return setTimeout(function () {
-
-                me.logger.log("Hide tooltip", "time");
-                me.hide();
-
-            }, this.cfg.getProperty("autodismissdelay"));
-
-        },
-        
-        /**
-        * Fired when the Tooltip is moved, this event handler is used to 
-        * prevent the Tooltip from overlapping with its context element.
-        * @method preventOverlay
-        * @param {Number} pageX The x coordinate position of the mouse pointer
-        * @param {Number} pageY The y coordinate position of the mouse pointer
-        */
-        preventOverlap: function (pageX, pageY) {
-        
-            var height = this.element.offsetHeight,
-                mousePoint = new YAHOO.util.Point(pageX, pageY),
-                elementRegion = Dom.getRegion(this.element);
-        
-            elementRegion.top -= 5;
-            elementRegion.left -= 5;
-            elementRegion.right += 5;
-            elementRegion.bottom += 5;
-        
-            this.logger.log("context " + elementRegion, "ttip");
-            this.logger.log("mouse " + mousePoint, "ttip");
-        
-            if (elementRegion.contains(mousePoint)) {
-                this.logger.log("OVERLAP", "warn");
-                this.cfg.setProperty("y", (pageY - height - 5));
-            }
-        },
-
-
-        /**
-        * @method onRender
-        * @description "render" event handler for the Tooltip.
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        onRender: function (p_sType, p_aArgs) {
-    
-            function sizeShadow() {
-    
-                var oElement = this.element,
-                    oShadow = this._shadow;
-            
-                if (oShadow) {
-                    oShadow.style.width = (oElement.offsetWidth + 6) + "px";
-                    oShadow.style.height = (oElement.offsetHeight + 1) + "px"; 
-                }
-            
-            }
-
-            function addShadowVisibleClass() {
-                Dom.addClass(this._shadow, "yui-tt-shadow-visible");
-            }
-            
-
-            function removeShadowVisibleClass() {
-                Dom.removeClass(this._shadow, "yui-tt-shadow-visible");
-            }
-
-            function createShadow() {
-    
-                var oShadow = this._shadow,
-                    oElement,
-                    Module,
-                    nIE,
-                    me;
-    
-                if (!oShadow) {
-    
-                    oElement = this.element;
-                    Module = YAHOO.widget.Module;
-                    nIE = YAHOO.env.ua.ie;
-                    me = this;
-
-                    if (!m_oShadowTemplate) {
-                        m_oShadowTemplate = document.createElement("div");
-                        m_oShadowTemplate.className = "yui-tt-shadow";
-                    }
-
-                    oShadow = m_oShadowTemplate.cloneNode(false);
-
-                    oElement.appendChild(oShadow);
-
-                    this._shadow = oShadow;
-
-                    addShadowVisibleClass.call(this);
-
-                    this.subscribe("beforeShow", addShadowVisibleClass);
-                    this.subscribe("beforeHide", removeShadowVisibleClass);
-
-                    if (nIE == 6 || (nIE == 7 && document.compatMode == "BackCompat")) {
-                        window.setTimeout(function () { 
-                            sizeShadow.call(me); 
-                        }, 0);
-    
-                        this.cfg.subscribeToConfigEvent("width", sizeShadow);
-                        this.cfg.subscribeToConfigEvent("height", sizeShadow);
-                        this.subscribe("changeContent", sizeShadow);
-
-                        Module.textResizeEvent.subscribe(sizeShadow, this, true);
-                        this.subscribe("destroy", function () {
-                            Module.textResizeEvent.unsubscribe(sizeShadow, this);
-                        });
-                    }
-                }
-            }
-
-            function onBeforeShow() {
-                createShadow.call(this);
-                this.unsubscribe("beforeShow", onBeforeShow);
-            }
-
-            if (this.cfg.getProperty("visible")) {
-                createShadow.call(this);
-            } else {
-                this.subscribe("beforeShow", onBeforeShow);
-            }
-        
-        },
-        
-        /**
-        * Removes the Tooltip element from the DOM and sets all child 
-        * elements to null.
-        * @method destroy
-        */
-        destroy: function () {
-        
-            // Remove any existing mouseover/mouseout listeners
-            this._removeEventListeners();
-
-            Tooltip.superclass.destroy.call(this);  
-        
-        },
-        
-        /**
-        * Returns a string representation of the object.
-        * @method toString
-        * @return {String} The string representation of the Tooltip
-        */
-        toString: function () {
-            return "Tooltip " + this.id;
-        }
-    
-    });
-
-}());
-
-(function () {
-
-    /**
-    * Panel is an implementation of Overlay that behaves like an OS window, 
-    * with a draggable header and an optional close icon at the top right.
-    * @namespace YAHOO.widget
-    * @class Panel
-    * @extends YAHOO.widget.Overlay
-    * @constructor
-    * @param {String} el The element ID representing the Panel <em>OR</em>
-    * @param {HTMLElement} el The element representing the Panel
-    * @param {Object} userConfig The configuration object literal containing 
-    * the configuration that should be set for this Panel. See configuration 
-    * documentation for more details.
-    */
-    YAHOO.widget.Panel = function (el, userConfig) {
-        YAHOO.widget.Panel.superclass.constructor.call(this, el, userConfig);
-    };
-
-    var _currentModal = null;
-
-    var Lang = YAHOO.lang,
-        Util = YAHOO.util,
-        Dom = Util.Dom,
-        Event = Util.Event,
-        CustomEvent = Util.CustomEvent,
-        KeyListener = YAHOO.util.KeyListener,
-        Config = Util.Config,
-        Overlay = YAHOO.widget.Overlay,
-        Panel = YAHOO.widget.Panel,
-        UA = YAHOO.env.ua,
-
-        bIEQuirks = (UA.ie == 6 || (UA.ie == 7 && document.compatMode == "BackCompat")),
-
-        m_oMaskTemplate,
-        m_oUnderlayTemplate,
-        m_oCloseIconTemplate,
-
-        /**
-        * Constant representing the name of the Panel's events
-        * @property EVENT_TYPES
-        * @private
-        * @final
-        * @type Object
-        */
-        EVENT_TYPES = {
-            "SHOW_MASK": "showMask",
-            "HIDE_MASK": "hideMask",
-            "DRAG": "drag"
-        },
-
-        /**
-        * Constant representing the Panel's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-
-            "CLOSE": { 
-                key: "close", 
-                value: true, 
-                validator: Lang.isBoolean, 
-                supercedes: ["visible"] 
-            },
-
-            "DRAGGABLE": {
-                key: "draggable", 
-                value: (Util.DD ? true : false), 
-                validator: Lang.isBoolean, 
-                supercedes: ["visible"]  
-            },
-
-            "DRAG_ONLY" : {
-                key: "dragonly",
-                value: false,
-                validator: Lang.isBoolean,
-                supercedes: ["draggable"]
-            },
-
-            "UNDERLAY": { 
-                key: "underlay", 
-                value: "shadow", 
-                supercedes: ["visible"] 
-            },
-
-            "MODAL": { 
-                key: "modal", 
-                value: false, 
-                validator: Lang.isBoolean, 
-                supercedes: ["visible", "zindex"]
-            },
-
-            "KEY_LISTENERS": {
-                key: "keylisteners",
-                suppressEvent: true,
-                supercedes: ["visible"]
-            },
-
-            "STRINGS" : {
-                key: "strings",
-                supercedes: ["close"],
-                validator: Lang.isObject,
-                value: {
-                    close: "Close"
-                }
-            }
-        };
-
-    /**
-    * Constant representing the default CSS class used for a Panel
-    * @property YAHOO.widget.Panel.CSS_PANEL
-    * @static
-    * @final
-    * @type String
-    */
-    Panel.CSS_PANEL = "yui-panel";
-    
-    /**
-    * Constant representing the default CSS class used for a Panel's 
-    * wrapping container
-    * @property YAHOO.widget.Panel.CSS_PANEL_CONTAINER
-    * @static
-    * @final
-    * @type String
-    */
-    Panel.CSS_PANEL_CONTAINER = "yui-panel-container";
-
-    /**
-     * Constant representing the default set of focusable elements 
-     * on the pagewhich Modal Panels will prevent access to, when
-     * the modal mask is displayed
-     * 
-     * @property YAHOO.widget.Panel.FOCUSABLE
-     * @static
-     * @type Array
-     */
-    Panel.FOCUSABLE = [
-        "a",
-        "button",
-        "select",
-        "textarea",
-        "input",
-        "iframe"
-    ];
-
-    // Private CustomEvent listeners
-
-    /* 
-        "beforeRender" event handler that creates an empty header for a Panel 
-        instance if its "draggable" configuration property is set to "true" 
-        and no header has been created.
-    */
-
-    function createHeader(p_sType, p_aArgs) {
-        if (!this.header && this.cfg.getProperty("draggable")) {
-            this.setHeader("&#160;");
-        }
-    }
-
-    /* 
-        "hide" event handler that sets a Panel instance's "width"
-        configuration property back to its original value before 
-        "setWidthToOffsetWidth" was called.
-    */
-    
-    function restoreOriginalWidth(p_sType, p_aArgs, p_oObject) {
-
-        var sOriginalWidth = p_oObject[0],
-            sNewWidth = p_oObject[1],
-            oConfig = this.cfg,
-            sCurrentWidth = oConfig.getProperty("width");
-
-        if (sCurrentWidth == sNewWidth) {
-            oConfig.setProperty("width", sOriginalWidth);
-        }
-
-        this.unsubscribe("hide", restoreOriginalWidth, p_oObject);
-    }
-
-    /* 
-        "beforeShow" event handler that sets a Panel instance's "width"
-        configuration property to the value of its root HTML 
-        elements's offsetWidth
-    */
-
-    function setWidthToOffsetWidth(p_sType, p_aArgs) {
-
-        var nIE = YAHOO.env.ua.ie,
-            oConfig,
-            sOriginalWidth,
-            sNewWidth;
-
-        if (nIE == 6 || (nIE == 7 && document.compatMode == "BackCompat")) {
-
-            oConfig = this.cfg;
-            sOriginalWidth = oConfig.getProperty("width");
-            
-            if (!sOriginalWidth || sOriginalWidth == "auto") {
-    
-                sNewWidth = (this.element.offsetWidth + "px");
-    
-                oConfig.setProperty("width", sNewWidth);
-                
-                this.subscribe("hide", restoreOriginalWidth, 
-                    [(sOriginalWidth || ""), sNewWidth]);
-            
-            }
-        }
-    }
-
-    YAHOO.extend(Panel, Overlay, {
-
-        /**
-        * The Overlay initialization method, which is executed for Overlay and 
-        * all of its subclasses. This method is automatically called by the 
-        * constructor, and  sets up all DOM references for pre-existing markup, 
-        * and creates required markup if it is not already present.
-        * @method init
-        * @param {String} el The element ID representing the Overlay <em>OR</em>
-        * @param {HTMLElement} el The element representing the Overlay
-        * @param {Object} userConfig The configuration object literal 
-        * containing the configuration that should be set for this Overlay. 
-        * See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-            /*
-                 Note that we don't pass the user config in here yet because 
-                 we only want it executed once, at the lowest subclass level
-            */
-
-            Panel.superclass.init.call(this, el/*, userConfig*/);
-
-            this.beforeInitEvent.fire(Panel);
-
-            Dom.addClass(this.element, Panel.CSS_PANEL);
-
-            this.buildWrapper();
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-
-            this.subscribe("showMask", this._addFocusHandlers);
-            this.subscribe("hideMask", this._removeFocusHandlers);
-            this.subscribe("beforeRender", createHeader);
-
-            this.subscribe("render", function() {
-                this.setFirstLastFocusable();
-                this.subscribe("changeContent", this.setFirstLastFocusable);
-            });
-
-            this.subscribe("show", this.focusFirst);
-
-            this.initEvent.fire(Panel);
-        },
-
-        /**
-         * @method _onElementFocus
-         * @private
-         *
-         * "focus" event handler for a focuable element. Used to automatically
-         * blur the element when it receives focus to ensure that a Panel
-         * instance's modality is not compromised.
-         *
-         * @param {Event} e The DOM event object
-         */
-        _onElementFocus : function(e){
-
-            var target = Event.getTarget(e);
-
-            if (target !== this.element && !Dom.isAncestor(this.element, target) && _currentModal == this) {
-                try {
-                    if (this.firstElement) {
-                        this.firstElement.focus();
-                    } else {
-                        if (this._modalFocus) {
-                            this._modalFocus.focus();
-                        } else {
-                            this.innerElement.focus();
-                        }
-                    }
-                } catch(err){
-                    // Just in case we fail to focus
-                    try {
-                        if (target !== document && target !== document.body && target !== window) {
-                            target.blur();
-                        }
-                    } catch(err2) { }
-                }
-            }
-        },
-
-        /** 
-         *  @method _addFocusHandlers
-         *  @protected
-         *  
-         *  "showMask" event handler that adds a "focus" event handler to all
-         *  focusable elements in the document to enforce a Panel instance's 
-         *  modality from being compromised.
-         *
-         *  @param p_sType {String} Custom event type
-         *  @param p_aArgs {Array} Custom event arguments
-         */
-        _addFocusHandlers: function(p_sType, p_aArgs) {
-            if (!this.firstElement) {
-                if (UA.webkit || UA.opera) {
-                    if (!this._modalFocus) {
-                        this._createHiddenFocusElement();
-                    }
-                } else {
-                    this.innerElement.tabIndex = 0;
-                }
-            }
-            this.setTabLoop(this.firstElement, this.lastElement);
-            Event.onFocus(document.documentElement, this._onElementFocus, this, true);
-            _currentModal = this;
-        },
-
-        /**
-         * Creates a hidden focusable element, used to focus on,
-         * to enforce modality for browsers in which focus cannot
-         * be applied to the container box.
-         * 
-         * @method _createHiddenFocusElement
-         * @private
-         */
-        _createHiddenFocusElement : function() {
-            var e = document.createElement("button");
-            e.style.height = "1px";
-            e.style.width = "1px";
-            e.style.position = "absolute";
-            e.style.left = "-10000em";
-            e.style.opacity = 0;
-            e.tabIndex = "-1";
-            this.innerElement.appendChild(e);
-            this._modalFocus = e;
-        },
-
-        /**
-         *  @method _removeFocusHandlers
-         *  @protected
-         *
-         *  "hideMask" event handler that removes all "focus" event handlers added 
-         *  by the "addFocusEventHandlers" method.
-         *
-         *  @param p_sType {String} Event type
-         *  @param p_aArgs {Array} Event Arguments
-         */
-        _removeFocusHandlers: function(p_sType, p_aArgs) {
-            Event.removeFocusListener(document.documentElement, this._onElementFocus, this);
-
-            if (_currentModal == this) {
-                _currentModal = null;
-            }
-        },
-
-        /**
-         * Sets focus to the first element in the Panel.
-         *
-         * @method focusFirst
-         */
-        focusFirst: function (type, args, obj) {
-            var el = this.firstElement;
-
-            if (args && args[1]) {
-                Event.stopEvent(args[1]);
-            }
-
-            if (el) {
-                try {
-                    el.focus();
-                } catch(err) {
-                    // Ignore
-                }
-            }
-        },
-
-        /**
-         * Sets focus to the last element in the Panel.
-         *
-         * @method focusLast
-         */
-        focusLast: function (type, args, obj) {
-            var el = this.lastElement;
-
-            if (args && args[1]) {
-                Event.stopEvent(args[1]);
-            }
-
-            if (el) {
-                try {
-                    el.focus();
-                } catch(err) {
-                    // Ignore
-                }
-            }
-        },
-
-        /**
-         * Sets up a tab, shift-tab loop between the first and last elements
-         * provided. NOTE: Sets up the preventBackTab and preventTabOut KeyListener
-         * instance properties, which are reset everytime this method is invoked.
-         *
-         * @method setTabLoop
-         * @param {HTMLElement} firstElement
-         * @param {HTMLElement} lastElement
-         *
-         */
-        setTabLoop : function(firstElement, lastElement) {
-
-            var backTab = this.preventBackTab, tab = this.preventTabOut,
-                showEvent = this.showEvent, hideEvent = this.hideEvent;
-
-            if (backTab) {
-                backTab.disable();
-                showEvent.unsubscribe(backTab.enable, backTab);
-                hideEvent.unsubscribe(backTab.disable, backTab);
-                backTab = this.preventBackTab = null;
-            }
-
-            if (tab) {
-                tab.disable();
-                showEvent.unsubscribe(tab.enable, tab);
-                hideEvent.unsubscribe(tab.disable,tab);
-                tab = this.preventTabOut = null;
-            }
-
-            if (firstElement) {
-                this.preventBackTab = new KeyListener(firstElement, 
-                    {shift:true, keys:9},
-                    {fn:this.focusLast, scope:this, correctScope:true}
-                );
-                backTab = this.preventBackTab;
-
-                showEvent.subscribe(backTab.enable, backTab, true);
-                hideEvent.subscribe(backTab.disable,backTab, true);
-            }
-
-            if (lastElement) {
-                this.preventTabOut = new KeyListener(lastElement, 
-                    {shift:false, keys:9}, 
-                    {fn:this.focusFirst, scope:this, correctScope:true}
-                );
-                tab = this.preventTabOut;
-
-                showEvent.subscribe(tab.enable, tab, true);
-                hideEvent.subscribe(tab.disable,tab, true);
-            }
-        },
-
-        /**
-         * Returns an array of the currently focusable items which reside within
-         * Panel. The set of focusable elements the method looks for are defined
-         * in the Panel.FOCUSABLE static property
-         *
-         * @method getFocusableElements
-         * @param {HTMLElement} root element to start from.
-         */
-        getFocusableElements : function(root) {
-
-            root = root || this.innerElement;
-
-            var focusable = {};
-            for (var i = 0; i < Panel.FOCUSABLE.length; i++) {
-                focusable[Panel.FOCUSABLE[i]] = true;
-            }
-
-            function isFocusable(el) {
-                if (el.focus && el.type !== "hidden" && !el.disabled && focusable[el.tagName.toLowerCase()]) {
-                    return true;
-                }
-                return false;
-            }
-
-            // Not looking by Tag, since we want elements in DOM order
-            return Dom.getElementsBy(isFocusable, null, root);
-        },
-
-        /**
-         * Sets the firstElement and lastElement instance properties
-         * to the first and last focusable elements in the Panel.
-         *
-         * @method setFirstLastFocusable
-         */
-        setFirstLastFocusable : function() {
-
-            this.firstElement = null;
-            this.lastElement = null;
-
-            var elements = this.getFocusableElements();
-            this.focusableElements = elements;
-
-            if (elements.length > 0) {
-                this.firstElement = elements[0];
-                this.lastElement = elements[elements.length - 1];
-            }
-
-            if (this.cfg.getProperty("modal")) {
-                this.setTabLoop(this.firstElement, this.lastElement);
-            }
-        },
-
-        /**
-         * Initializes the custom events for Module which are fired 
-         * automatically at appropriate times by the Module class.
-         */
-        initEvents: function () {
-            Panel.superclass.initEvents.call(this);
-
-            var SIGNATURE = CustomEvent.LIST;
-
-            /**
-            * CustomEvent fired after the modality mask is shown
-            * @event showMaskEvent
-            */
-            this.showMaskEvent = this.createEvent(EVENT_TYPES.SHOW_MASK);
-            this.showMaskEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after the modality mask is hidden
-            * @event hideMaskEvent
-            */
-            this.hideMaskEvent = this.createEvent(EVENT_TYPES.HIDE_MASK);
-            this.hideMaskEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent when the Panel is dragged
-            * @event dragEvent
-            */
-            this.dragEvent = this.createEvent(EVENT_TYPES.DRAG);
-            this.dragEvent.signature = SIGNATURE;
-        },
-
-        /**
-         * Initializes the class's configurable properties which can be changed 
-         * using the Panel's Config object (cfg).
-         * @method initDefaultConfig
-         */
-        initDefaultConfig: function () {
-            Panel.superclass.initDefaultConfig.call(this);
-
-            // Add panel config properties //
-
-            /**
-            * True if the Panel should display a "close" button
-            * @config close
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.CLOSE.key, { 
-                handler: this.configClose, 
-                value: DEFAULT_CONFIG.CLOSE.value, 
-                validator: DEFAULT_CONFIG.CLOSE.validator, 
-                supercedes: DEFAULT_CONFIG.CLOSE.supercedes 
-            });
-
-            /**
-            * Boolean specifying if the Panel should be draggable.  The default 
-            * value is "true" if the Drag and Drop utility is included, 
-            * otherwise it is "false." <strong>PLEASE NOTE:</strong> There is a 
-            * known issue in IE 6 (Strict Mode and Quirks Mode) and IE 7 
-            * (Quirks Mode) where Panels that either don't have a value set for 
-            * their "width" configuration property, or their "width" 
-            * configuration property is set to "auto" will only be draggable by
-            * placing the mouse on the text of the Panel's header element.
-            * To fix this bug, draggable Panels missing a value for their 
-            * "width" configuration property, or whose "width" configuration 
-            * property is set to "auto" will have it set to the value of 
-            * their root HTML element's offsetWidth before they are made 
-            * visible.  The calculated width is then removed when the Panel is   
-            * hidden. <em>This fix is only applied to draggable Panels in IE 6 
-            * (Strict Mode and Quirks Mode) and IE 7 (Quirks Mode)</em>. For 
-            * more information on this issue see:
-            * SourceForge bugs #1726972 and #1589210.
-            * @config draggable
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.DRAGGABLE.key, {
-                handler: this.configDraggable,
-                value: (Util.DD) ? true : false,
-                validator: DEFAULT_CONFIG.DRAGGABLE.validator,
-                supercedes: DEFAULT_CONFIG.DRAGGABLE.supercedes
-            });
-
-            /**
-            * Boolean specifying if the draggable Panel should be drag only, not interacting with drop 
-            * targets on the page.
-            * <p>
-            * When set to true, draggable Panels will not check to see if they are over drop targets,
-            * or fire the DragDrop events required to support drop target interaction (onDragEnter, 
-            * onDragOver, onDragOut, onDragDrop etc.).
-            * If the Panel is not designed to be dropped on any target elements on the page, then this 
-            * flag can be set to true to improve performance.
-            * </p>
-            * <p>
-            * When set to false, all drop target related events will be fired.
-            * </p>
-            * <p>
-            * The property is set to false by default to maintain backwards compatibility but should be 
-            * set to true if drop target interaction is not required for the Panel, to improve performance.</p>
-            * 
-            * @config dragOnly
-            * @type Boolean
-            * @default false
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.DRAG_ONLY.key, { 
-                value: DEFAULT_CONFIG.DRAG_ONLY.value, 
-                validator: DEFAULT_CONFIG.DRAG_ONLY.validator, 
-                supercedes: DEFAULT_CONFIG.DRAG_ONLY.supercedes 
-            });
-
-            /**
-            * Sets the type of underlay to display for the Panel. Valid values 
-            * are "shadow," "matte," and "none".  <strong>PLEASE NOTE:</strong> 
-            * The creation of the underlay element is deferred until the Panel 
-            * is initially made visible.  For Gecko-based browsers on Mac
-            * OS X the underlay elment is always created as it is used as a 
-            * shim to prevent Aqua scrollbars below a Panel instance from poking 
-            * through it (See SourceForge bug #836476).
-            * @config underlay
-            * @type String
-            * @default shadow
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.UNDERLAY.key, { 
-                handler: this.configUnderlay, 
-                value: DEFAULT_CONFIG.UNDERLAY.value, 
-                supercedes: DEFAULT_CONFIG.UNDERLAY.supercedes 
-            });
-        
-            /**
-            * True if the Panel should be displayed in a modal fashion, 
-            * automatically creating a transparent mask over the document that
-            * will not be removed until the Panel is dismissed.
-            * @config modal
-            * @type Boolean
-            * @default false
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.MODAL.key, { 
-                handler: this.configModal, 
-                value: DEFAULT_CONFIG.MODAL.value,
-                validator: DEFAULT_CONFIG.MODAL.validator, 
-                supercedes: DEFAULT_CONFIG.MODAL.supercedes 
-            });
-
-            /**
-            * A KeyListener (or array of KeyListeners) that will be enabled 
-            * when the Panel is shown, and disabled when the Panel is hidden.
-            * @config keylisteners
-            * @type YAHOO.util.KeyListener[]
-            * @default null
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.KEY_LISTENERS.key, { 
-                handler: this.configKeyListeners, 
-                suppressEvent: DEFAULT_CONFIG.KEY_LISTENERS.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.KEY_LISTENERS.supercedes 
-            });
-
-            /**
-            * UI Strings used by the Panel
-            * 
-            * @config strings
-            * @type Object
-            * @default An object literal with the properties shown below:
-            *     <dl>
-            *         <dt>close</dt><dd><em>String</em> : The string to use for the close icon. Defaults to "Close".</dd>
-            *     </dl>
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.STRINGS.key, { 
-                value:DEFAULT_CONFIG.STRINGS.value,
-                handler:this.configStrings,
-                validator:DEFAULT_CONFIG.STRINGS.validator,
-                supercedes:DEFAULT_CONFIG.STRINGS.supercedes
-            });
-        },
-
-        // BEGIN BUILT-IN PROPERTY EVENT HANDLERS //
-        
-        /**
-        * The default event handler fired when the "close" property is changed.
-        * The method controls the appending or hiding of the close icon at the 
-        * top right of the Panel.
-        * @method configClose
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configClose: function (type, args, obj) {
-
-            var val = args[0],
-                oClose = this.close,
-                strings = this.cfg.getProperty("strings");
-
-            if (val) {
-                if (!oClose) {
-
-                    if (!m_oCloseIconTemplate) {
-                        m_oCloseIconTemplate = document.createElement("a");
-                        m_oCloseIconTemplate.className = "container-close";
-                        m_oCloseIconTemplate.href = "#";
-                    }
-
-                    oClose = m_oCloseIconTemplate.cloneNode(true);
-                    this.innerElement.appendChild(oClose);
-
-                    oClose.innerHTML = (strings && strings.close) ? strings.close : "&#160;";
-
-                    Event.on(oClose, "click", this._doClose, this, true);
-
-                    this.close = oClose;
-
-                } else {
-                    oClose.style.display = "block";
-                }
-
-            } else {
-                if (oClose) {
-                    oClose.style.display = "none";
-                }
-            }
-
-        },
-
-        /**
-         * Event handler for the close icon
-         * 
-         * @method _doClose
-         * @protected
-         * 
-         * @param {DOMEvent} e
-         */
-        _doClose : function (e) {
-            Event.preventDefault(e);
-            this.hide();
-        },
-
-        /**
-        * The default event handler fired when the "draggable" property 
-        * is changed.
-        * @method configDraggable
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configDraggable: function (type, args, obj) {
-            var val = args[0];
-
-            if (val) {
-                if (!Util.DD) {
-                    YAHOO.log("DD dependency not met.", "error");
-                    this.cfg.setProperty("draggable", false);
-                    return;
-                }
-
-                if (this.header) {
-                    Dom.setStyle(this.header, "cursor", "move");
-                    this.registerDragDrop();
-                }
-
-                this.subscribe("beforeShow", setWidthToOffsetWidth);
-
-            } else {
-
-                if (this.dd) {
-                    this.dd.unreg();
-                }
-
-                if (this.header) {
-                    Dom.setStyle(this.header,"cursor","auto");
-                }
-
-                this.unsubscribe("beforeShow", setWidthToOffsetWidth);
-            }
-        },
-      
-        /**
-        * The default event handler fired when the "underlay" property 
-        * is changed.
-        * @method configUnderlay
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configUnderlay: function (type, args, obj) {
-
-            var bMacGecko = (this.platform == "mac" && UA.gecko),
-                sUnderlay = args[0].toLowerCase(),
-                oUnderlay = this.underlay,
-                oElement = this.element;
-                
-            function fixWebkitUnderlay() {
-                // Webkit 419.3 (Safari 2.x) does not update
-                // it's Render Tree for the Container when content changes. 
-                // We need to force it to update using this contentChange 
-                // listener
-
-                // Webkit 523.6 doesn't have this problem and doesn't 
-                // need the fix
-                var u = this.underlay;
-                Dom.addClass(u, "yui-force-redraw");
-                window.setTimeout(function(){Dom.removeClass(u, "yui-force-redraw");}, 0);
-            }
-
-            function createUnderlay() {
-                var bNew = false;
-                if (!oUnderlay) { // create if not already in DOM
-
-                    if (!m_oUnderlayTemplate) {
-                        m_oUnderlayTemplate = document.createElement("div");
-                        m_oUnderlayTemplate.className = "underlay";
-                    }
-
-                    oUnderlay = m_oUnderlayTemplate.cloneNode(false);
-                    this.element.appendChild(oUnderlay);
-
-                    this.underlay = oUnderlay;
-
-                    if (bIEQuirks) {
-                        this.sizeUnderlay();
-                        this.cfg.subscribeToConfigEvent("width", this.sizeUnderlay);
-                        this.cfg.subscribeToConfigEvent("height", this.sizeUnderlay);
-
-                        this.changeContentEvent.subscribe(this.sizeUnderlay);
-                        YAHOO.widget.Module.textResizeEvent.subscribe(this.sizeUnderlay, this, true);
-                    }
-
-                    if (UA.webkit && UA.webkit < 420) {
-                        this.changeContentEvent.subscribe(fixWebkitUnderlay);
-                    }
-                    bNew = true;
-                }
-            }
-
-            function onBeforeShow() {
-                var bNew = createUnderlay.call(this);
-                if (!bNew && bIEQuirks) {
-                    this.sizeUnderlay();
-                }
-                this._underlayDeferred = false;
-                this.beforeShowEvent.unsubscribe(onBeforeShow);
-            }
-
-            function destroyUnderlay() {
-                if (this._underlayDeferred) {
-                    this.beforeShowEvent.unsubscribe(onBeforeShow);
-                    this._underlayDeferred = false;
-                }
-
-                if (oUnderlay) {
-                    this.cfg.unsubscribeFromConfigEvent("width", this.sizeUnderlay);
-                    this.cfg.unsubscribeFromConfigEvent("height",this.sizeUnderlay);
-                    this.changeContentEvent.unsubscribe(this.sizeUnderlay);
-                    this.changeContentEvent.unsubscribe(fixWebkitUnderlay);
-                    YAHOO.widget.Module.textResizeEvent.unsubscribe(this.sizeUnderlay, this, true);
-
-                    this.element.removeChild(oUnderlay);
-
-                    this.underlay = null;
-                }
-            }
-
-            switch (sUnderlay) {
-                case "shadow":
-                    Dom.removeClass(oElement, "matte");
-                    Dom.addClass(oElement, "shadow");
-                    break;
-                case "matte":
-                    if (!bMacGecko) {
-                        destroyUnderlay.call(this);
-                    }
-                    Dom.removeClass(oElement, "shadow");
-                    Dom.addClass(oElement, "matte");
-                    break;
-                default:
-                    if (!bMacGecko) {
-                        destroyUnderlay.call(this);
-                    }
-                    Dom.removeClass(oElement, "shadow");
-                    Dom.removeClass(oElement, "matte");
-                    break;
-            }
-
-            if ((sUnderlay == "shadow") || (bMacGecko && !oUnderlay)) {
-                if (this.cfg.getProperty("visible")) {
-                    var bNew = createUnderlay.call(this);
-                    if (!bNew && bIEQuirks) {
-                        this.sizeUnderlay();
-                    }
-                } else {
-                    if (!this._underlayDeferred) {
-                        this.beforeShowEvent.subscribe(onBeforeShow);
-                        this._underlayDeferred = true;
-                    }
-                }
-            }
-        },
-        
-        /**
-        * The default event handler fired when the "modal" property is 
-        * changed. This handler subscribes or unsubscribes to the show and hide
-        * events to handle the display or hide of the modality mask.
-        * @method configModal
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configModal: function (type, args, obj) {
-
-            var modal = args[0];
-            if (modal) {
-                if (!this._hasModalityEventListeners) {
-
-                    this.subscribe("beforeShow", this.buildMask);
-                    this.subscribe("beforeShow", this.bringToTop);
-                    this.subscribe("beforeShow", this.showMask);
-                    this.subscribe("hide", this.hideMask);
-
-                    Overlay.windowResizeEvent.subscribe(this.sizeMask, 
-                        this, true);
-
-                    this._hasModalityEventListeners = true;
-                }
-            } else {
-                if (this._hasModalityEventListeners) {
-
-                    if (this.cfg.getProperty("visible")) {
-                        this.hideMask();
-                        this.removeMask();
-                    }
-
-                    this.unsubscribe("beforeShow", this.buildMask);
-                    this.unsubscribe("beforeShow", this.bringToTop);
-                    this.unsubscribe("beforeShow", this.showMask);
-                    this.unsubscribe("hide", this.hideMask);
-
-                    Overlay.windowResizeEvent.unsubscribe(this.sizeMask, this);
-
-                    this._hasModalityEventListeners = false;
-                }
-            }
-        },
-
-        /**
-        * Removes the modality mask.
-        * @method removeMask
-        */
-        removeMask: function () {
-
-            var oMask = this.mask,
-                oParentNode;
-
-            if (oMask) {
-                /*
-                    Hide the mask before destroying it to ensure that DOM
-                    event handlers on focusable elements get removed.
-                */
-                this.hideMask();
-
-                oParentNode = oMask.parentNode;
-                if (oParentNode) {
-                    oParentNode.removeChild(oMask);
-                }
-
-                this.mask = null;
-            }
-        },
-        
-        /**
-        * The default event handler fired when the "keylisteners" property 
-        * is changed.
-        * @method configKeyListeners
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configKeyListeners: function (type, args, obj) {
-
-            var listeners = args[0],
-                listener,
-                nListeners,
-                i;
-        
-            if (listeners) {
-
-                if (listeners instanceof Array) {
-
-                    nListeners = listeners.length;
-
-                    for (i = 0; i < nListeners; i++) {
-
-                        listener = listeners[i];
-        
-                        if (!Config.alreadySubscribed(this.showEvent, 
-                            listener.enable, listener)) {
-
-                            this.showEvent.subscribe(listener.enable, 
-                                listener, true);
-
-                        }
-
-                        if (!Config.alreadySubscribed(this.hideEvent, 
-                            listener.disable, listener)) {
-
-                            this.hideEvent.subscribe(listener.disable, 
-                                listener, true);
-
-                            this.destroyEvent.subscribe(listener.disable, 
-                                listener, true);
-                        }
-                    }
-
-                } else {
-
-                    if (!Config.alreadySubscribed(this.showEvent, 
-                        listeners.enable, listeners)) {
-
-                        this.showEvent.subscribe(listeners.enable, 
-                            listeners, true);
-                    }
-
-                    if (!Config.alreadySubscribed(this.hideEvent, 
-                        listeners.disable, listeners)) {
-
-                        this.hideEvent.subscribe(listeners.disable, 
-                            listeners, true);
-
-                        this.destroyEvent.subscribe(listeners.disable, 
-                            listeners, true);
-
-                    }
-
-                }
-
-            }
-
-        },
-
-        /**
-        * The default handler for the "strings" property
-        * @method configStrings
-        */
-        configStrings : function(type, args, obj) {
-            var val = Lang.merge(DEFAULT_CONFIG.STRINGS.value, args[0]);
-            this.cfg.setProperty(DEFAULT_CONFIG.STRINGS.key, val, true);
-        },
-
-        /**
-        * The default event handler fired when the "height" property is changed.
-        * @method configHeight
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configHeight: function (type, args, obj) {
-            var height = args[0],
-                el = this.innerElement;
-
-            Dom.setStyle(el, "height", height);
-            this.cfg.refireEvent("iframe");
-        },
-
-        /**
-         * The default custom event handler executed when the Panel's height is changed, 
-         * if the autofillheight property has been set.
-         *
-         * @method _autoFillOnHeightChange
-         * @protected
-         * @param {String} type The event type
-         * @param {Array} args The array of arguments passed to event subscribers
-         * @param {HTMLElement} el The header, body or footer element which is to be resized to fill
-         * out the containers height
-         */
-        _autoFillOnHeightChange : function(type, args, el) {
-            Panel.superclass._autoFillOnHeightChange.apply(this, arguments);
-            if (bIEQuirks) {
-                this.sizeUnderlay();
-            }
-        },
-
-        /**
-        * The default event handler fired when the "width" property is changed.
-        * @method configWidth
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configWidth: function (type, args, obj) {
-    
-            var width = args[0],
-                el = this.innerElement;
-    
-            Dom.setStyle(el, "width", width);
-            this.cfg.refireEvent("iframe");
-    
-        },
-        
-        /**
-        * The default event handler fired when the "zIndex" property is changed.
-        * @method configzIndex
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configzIndex: function (type, args, obj) {
-            Panel.superclass.configzIndex.call(this, type, args, obj);
-
-            if (this.mask || this.cfg.getProperty("modal") === true) {
-                var panelZ = Dom.getStyle(this.element, "zIndex");
-                if (!panelZ || isNaN(panelZ)) {
-                    panelZ = 0;
-                }
-
-                if (panelZ === 0) {
-                    // Recursive call to configzindex (which should be stopped
-                    // from going further because panelZ should no longer === 0)
-                    this.cfg.setProperty("zIndex", 1);
-                } else {
-                    this.stackMask();
-                }
-            }
-        },
-
-        // END BUILT-IN PROPERTY EVENT HANDLERS //
-        /**
-        * Builds the wrapping container around the Panel that is used for 
-        * positioning the shadow and matte underlays. The container element is 
-        * assigned to a  local instance variable called container, and the 
-        * element is reinserted inside of it.
-        * @method buildWrapper
-        */
-        buildWrapper: function () {
-
-            var elementParent = this.element.parentNode,
-                originalElement = this.element,
-                wrapper = document.createElement("div");
-
-            wrapper.className = Panel.CSS_PANEL_CONTAINER;
-            wrapper.id = originalElement.id + "_c";
-
-            if (elementParent) {
-                elementParent.insertBefore(wrapper, originalElement);
-            }
-
-            wrapper.appendChild(originalElement);
-
-            this.element = wrapper;
-            this.innerElement = originalElement;
-
-            Dom.setStyle(this.innerElement, "visibility", "inherit");
-        },
-
-        /**
-        * Adjusts the size of the shadow based on the size of the element.
-        * @method sizeUnderlay
-        */
-        sizeUnderlay: function () {
-            var oUnderlay = this.underlay,
-                oElement;
-
-            if (oUnderlay) {
-                oElement = this.element;
-                oUnderlay.style.width = oElement.offsetWidth + "px";
-                oUnderlay.style.height = oElement.offsetHeight + "px";
-            }
-        },
-
-        
-        /**
-        * Registers the Panel's header for drag & drop capability.
-        * @method registerDragDrop
-        */
-        registerDragDrop: function () {
-
-            var me = this;
-
-            if (this.header) {
-
-                if (!Util.DD) {
-                    YAHOO.log("DD dependency not met.", "error");
-                    return;
-                }
-
-                var bDragOnly = (this.cfg.getProperty("dragonly") === true);
-                this.dd = new Util.DD(this.element.id, this.id, {dragOnly: bDragOnly});
-
-                if (!this.header.id) {
-                    this.header.id = this.id + "_h";
-                }
-
-                this.dd.startDrag = function () {
-
-                    var offsetHeight,
-                        offsetWidth,
-                        viewPortWidth,
-                        viewPortHeight,
-                        scrollX,
-                        scrollY;
-
-                    if (YAHOO.env.ua.ie == 6) {
-                        Dom.addClass(me.element,"drag");
-                    }
-
-                    if (me.cfg.getProperty("constraintoviewport")) {
-
-                        var nViewportOffset = Overlay.VIEWPORT_OFFSET;
-
-                        offsetHeight = me.element.offsetHeight;
-                        offsetWidth = me.element.offsetWidth;
-
-                        viewPortWidth = Dom.getViewportWidth();
-                        viewPortHeight = Dom.getViewportHeight();
-
-                        scrollX = Dom.getDocumentScrollLeft();
-                        scrollY = Dom.getDocumentScrollTop();
-
-                        if (offsetHeight + nViewportOffset < viewPortHeight) {
-                            this.minY = scrollY + nViewportOffset;
-                            this.maxY = scrollY + viewPortHeight - offsetHeight - nViewportOffset;
-                        } else {
-                            this.minY = scrollY + nViewportOffset;
-                            this.maxY = scrollY + nViewportOffset;
-                        }
-
-                        if (offsetWidth + nViewportOffset < viewPortWidth) {
-                            this.minX = scrollX + nViewportOffset;
-                            this.maxX = scrollX + viewPortWidth - offsetWidth - nViewportOffset;
-                        } else {
-                            this.minX = scrollX + nViewportOffset;
-                            this.maxX = scrollX + nViewportOffset;
-                        }
-
-                        this.constrainX = true;
-                        this.constrainY = true;
-                    } else {
-                        this.constrainX = false;
-                        this.constrainY = false;
-                    }
-
-                    me.dragEvent.fire("startDrag", arguments);
-                };
-
-                this.dd.onDrag = function () {
-                    me.syncPosition();
-                    me.cfg.refireEvent("iframe");
-                    if (this.platform == "mac" && YAHOO.env.ua.gecko) {
-                        this.showMacGeckoScrollbars();
-                    }
-
-                    me.dragEvent.fire("onDrag", arguments);
-                };
-
-                this.dd.endDrag = function () {
-
-                    if (YAHOO.env.ua.ie == 6) {
-                        Dom.removeClass(me.element,"drag");
-                    }
-
-                    me.dragEvent.fire("endDrag", arguments);
-                    me.moveEvent.fire(me.cfg.getProperty("xy"));
-
-                };
-
-                this.dd.setHandleElId(this.header.id);
-                this.dd.addInvalidHandleType("INPUT");
-                this.dd.addInvalidHandleType("SELECT");
-                this.dd.addInvalidHandleType("TEXTAREA");
-            }
-        },
-        
-        /**
-        * Builds the mask that is laid over the document when the Panel is 
-        * configured to be modal.
-        * @method buildMask
-        */
-        buildMask: function () {
-            var oMask = this.mask;
-            if (!oMask) {
-                if (!m_oMaskTemplate) {
-                    m_oMaskTemplate = document.createElement("div");
-                    m_oMaskTemplate.className = "mask";
-                    m_oMaskTemplate.innerHTML = "&#160;";
-                }
-                oMask = m_oMaskTemplate.cloneNode(true);
-                oMask.id = this.id + "_mask";
-
-                document.body.insertBefore(oMask, document.body.firstChild);
-
-                this.mask = oMask;
-
-                if (YAHOO.env.ua.gecko && this.platform == "mac") {
-                    Dom.addClass(this.mask, "block-scrollbars");
-                }
-
-                // Stack mask based on the element zindex
-                this.stackMask();
-            }
-        },
-
-        /**
-        * Hides the modality mask.
-        * @method hideMask
-        */
-        hideMask: function () {
-            if (this.cfg.getProperty("modal") && this.mask) {
-                this.mask.style.display = "none";
-                Dom.removeClass(document.body, "masked");
-                this.hideMaskEvent.fire();
-            }
-        },
-
-        /**
-        * Shows the modality mask.
-        * @method showMask
-        */
-        showMask: function () {
-            if (this.cfg.getProperty("modal") && this.mask) {
-                Dom.addClass(document.body, "masked");
-                this.sizeMask();
-                this.mask.style.display = "block";
-                this.showMaskEvent.fire();
-            }
-        },
-
-        /**
-        * Sets the size of the modality mask to cover the entire scrollable 
-        * area of the document
-        * @method sizeMask
-        */
-        sizeMask: function () {
-            if (this.mask) {
-
-                // Shrink mask first, so it doesn't affect the document size.
-                var mask = this.mask,
-                    viewWidth = Dom.getViewportWidth(),
-                    viewHeight = Dom.getViewportHeight();
-
-                if (this.mask.offsetHeight > viewHeight) {
-                    this.mask.style.height = viewHeight + "px";
-                }
-
-                if (this.mask.offsetWidth > viewWidth) {
-                    this.mask.style.width = viewWidth + "px";
-                }
-
-                // Then size it to the document
-                this.mask.style.height = Dom.getDocumentHeight() + "px";
-                this.mask.style.width = Dom.getDocumentWidth() + "px";
-            }
-        },
-
-        /**
-         * Sets the zindex of the mask, if it exists, based on the zindex of 
-         * the Panel element. The zindex of the mask is set to be one less 
-         * than the Panel element's zindex.
-         * 
-         * <p>NOTE: This method will not bump up the zindex of the Panel
-         * to ensure that the mask has a non-negative zindex. If you require the
-         * mask zindex to be 0 or higher, the zindex of the Panel 
-         * should be set to a value higher than 0, before this method is called.
-         * </p>
-         * @method stackMask
-         */
-        stackMask: function() {
-            if (this.mask) {
-                var panelZ = Dom.getStyle(this.element, "zIndex");
-                if (!YAHOO.lang.isUndefined(panelZ) && !isNaN(panelZ)) {
-                    Dom.setStyle(this.mask, "zIndex", panelZ - 1);
-                }
-            }
-        },
-
-        /**
-        * Renders the Panel by inserting the elements that are not already in 
-        * the main Panel into their correct places. Optionally appends the 
-        * Panel to the specified node prior to the render's execution. NOTE: 
-        * For Panels without existing markup, the appendToNode argument is 
-        * REQUIRED. If this argument is ommitted and the current element is 
-        * not present in the document, the function will return false, 
-        * indicating that the render was a failure.
-        * @method render
-        * @param {String} appendToNode The element id to which the Module 
-        * should be appended to prior to rendering <em>OR</em>
-        * @param {HTMLElement} appendToNode The element to which the Module 
-        * should be appended to prior to rendering
-        * @return {boolean} Success or failure of the render
-        */
-        render: function (appendToNode) {
-
-            return Panel.superclass.render.call(this, 
-                appendToNode, this.innerElement);
-
-        },
-        
-        /**
-        * Removes the Panel element from the DOM and sets all child elements
-        * to null.
-        * @method destroy
-        */
-        destroy: function () {
-            Overlay.windowResizeEvent.unsubscribe(this.sizeMask, this);
-            this.removeMask();
-            if (this.close) {
-                Event.purgeElement(this.close);
-            }
-            Panel.superclass.destroy.call(this);  
-        },
-        
-        /**
-        * Returns a String representation of the object.
-        * @method toString
-        * @return {String} The string representation of the Panel.
-        */
-        toString: function () {
-            return "Panel " + this.id;
-        }
-    
-    });
-
-}());
-
-(function () {
-
-    /**
-    * <p>
-    * Dialog is an implementation of Panel that can be used to submit form 
-    * data.
-    * </p>
-    * <p>
-    * Built-in functionality for buttons with event handlers is included. 
-    * If the optional YUI Button dependancy is included on the page, the buttons
-    * created will be instances of YAHOO.widget.Button, otherwise regular HTML buttons
-    * will be created.
-    * </p>
-    * <p>
-    * Forms can be processed in 3 ways -- via an asynchronous Connection utility call, 
-    * a simple form POST or GET, or manually. The YUI Connection utility should be
-    * included if you're using the default "async" postmethod, but is not required if
-    * you're using any of the other postmethod values.
-    * </p>
-    * @namespace YAHOO.widget
-    * @class Dialog
-    * @extends YAHOO.widget.Panel
-    * @constructor
-    * @param {String} el The element ID representing the Dialog <em>OR</em>
-    * @param {HTMLElement} el The element representing the Dialog
-    * @param {Object} userConfig The configuration object literal containing 
-    * the configuration that should be set for this Dialog. See configuration 
-    * documentation for more details.
-    */
-    YAHOO.widget.Dialog = function (el, userConfig) {
-        YAHOO.widget.Dialog.superclass.constructor.call(this, el, userConfig);
-    };
-
-    var Event = YAHOO.util.Event,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Dom = YAHOO.util.Dom,
-        Dialog = YAHOO.widget.Dialog,
-        Lang = YAHOO.lang,
-
-        /**
-         * Constant representing the name of the Dialog's events
-         * @property EVENT_TYPES
-         * @private
-         * @final
-         * @type Object
-         */
-        EVENT_TYPES = {
-            "BEFORE_SUBMIT": "beforeSubmit",
-            "SUBMIT": "submit",
-            "MANUAL_SUBMIT": "manualSubmit",
-            "ASYNC_SUBMIT": "asyncSubmit",
-            "FORM_SUBMIT": "formSubmit",
-            "CANCEL": "cancel"
-        },
-
-        /**
-        * Constant representing the Dialog's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-
-            "POST_METHOD": { 
-                key: "postmethod", 
-                value: "async"
-            },
-
-            "BUTTONS": {
-                key: "buttons",
-                value: "none",
-                supercedes: ["visible"]
-            },
-
-            "HIDEAFTERSUBMIT" : {
-                key: "hideaftersubmit",
-                value: true
-            }
-        };
-
-    /**
-    * Constant representing the default CSS class used for a Dialog
-    * @property YAHOO.widget.Dialog.CSS_DIALOG
-    * @static
-    * @final
-    * @type String
-    */
-    Dialog.CSS_DIALOG = "yui-dialog";
-
-    function removeButtonEventHandlers() {
-
-        var aButtons = this._aButtons,
-            nButtons,
-            oButton,
-            i;
-
-        if (Lang.isArray(aButtons)) {
-            nButtons = aButtons.length;
-
-            if (nButtons > 0) {
-                i = nButtons - 1;
-                do {
-                    oButton = aButtons[i];
-
-                    if (YAHOO.widget.Button && oButton instanceof YAHOO.widget.Button) {
-                        oButton.destroy();
-                    }
-                    else if (oButton.tagName.toUpperCase() == "BUTTON") {
-                        Event.purgeElement(oButton);
-                        Event.purgeElement(oButton, false);
-                    }
-                }
-                while (i--);
-            }
-        }
-    }
-
-    YAHOO.extend(Dialog, YAHOO.widget.Panel, { 
-
-        /**
-        * @property form
-        * @description Object reference to the Dialog's 
-        * <code>&#60;form&#62;</code> element.
-        * @default null 
-        * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-40002357">HTMLFormElement</a>
-        */
-        form: null,
-    
-        /**
-        * Initializes the class's configurable properties which can be changed 
-        * using the Dialog's Config object (cfg).
-        * @method initDefaultConfig
-        */
-        initDefaultConfig: function () {
-            Dialog.superclass.initDefaultConfig.call(this);
-
-            /**
-            * The internally maintained callback object for use with the 
-            * Connection utility. The format of the callback object is 
-            * similar to Connection Manager's callback object and is 
-            * simply passed through to Connection Manager when the async 
-            * request is made.
-            * @property callback
-            * @type Object
-            */
-            this.callback = {
-
-                /**
-                * The function to execute upon success of the 
-                * Connection submission (when the form does not
-                * contain a file input element).
-                * 
-                * @property callback.success
-                * @type Function
-                */
-                success: null,
-
-                /**
-                * The function to execute upon failure of the 
-                * Connection submission
-                * @property callback.failure
-                * @type Function
-                */
-                failure: null,
-
-                /**
-                 *<p>
-                * The function to execute upon success of the 
-                * Connection submission, when the form contains
-                * a file input element.
-                * </p>
-                * <p>
-                * <em>NOTE:</em> Connection manager will not
-                * invoke the success or failure handlers for the file
-                * upload use case. This will be the only callback
-                * handler invoked.
-                * </p>
-                * <p>
-                * For more information, see the <a href="http://developer.yahoo.com/yui/connection/#file">
-                * Connection Manager documenation on file uploads</a>.
-                * </p>
-                * @property callback.upload
-                * @type Function
-                */
-
-                /**
-                * The arbitraty argument or arguments to pass to the Connection 
-                * callback functions
-                * @property callback.argument
-                * @type Object
-                */
-                argument: null
-
-            };
-
-            // Add form dialog config properties //
-            /**
-            * The method to use for posting the Dialog's form. Possible values 
-            * are "async", "form", and "manual".
-            * @config postmethod
-            * @type String
-            * @default async
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.POST_METHOD.key, {
-                handler: this.configPostMethod, 
-                value: DEFAULT_CONFIG.POST_METHOD.value, 
-                validator: function (val) {
-                    if (val != "form" && val != "async" && val != "none" && 
-                        val != "manual") {
-                        return false;
-                    } else {
-                        return true;
-                    }
-                }
-            });
-
-            /**
-            * This property is used to configure whether or not the 
-            * dialog should be automatically hidden after submit.
-            * 
-            * @config hideaftersubmit
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.HIDEAFTERSUBMIT.key, {
-                value: DEFAULT_CONFIG.HIDEAFTERSUBMIT.value
-            }); 
-
-            /**
-            * Array of object literals, each containing a set of properties 
-            * defining a button to be appended into the Dialog's footer.
-            * 
-            * Each button object in the buttons array can have three properties:
-            * <dt>text:</dt>
-            * <dd>The text that will display on the face of the button. The text can 
-            * include HTML, as long as it is compliant with HTML Button specifications.
-            * </dd>
-            * <dt>handler:</dt>
-            * <dd>Can be either:
-            *     <ol>
-            *         <li>A reference to a function that should fire when the 
-            * button is clicked.  (In this case scope of this function is 
-            * always its Dialog instance.)</li>
-            *         <li>An object literal representing the code to be 
-            * executed when the button is clicked.  Format:<br> <code> {<br>
-            * <strong>fn:</strong> Function,   &#47;&#47; The handler to call 
-            * when  the event fires.<br> <strong>obj:</strong> Object,
-            * &#47;&#47; An  object to pass back to the handler.<br> <strong>
-            * scope:</strong>  Object &#47;&#47; The object to use for the 
-            * scope of the handler. <br> } </code> <br></li>
-            *     </ol>
-            * </dd>
-            * <dt>isDefault:</dt>
-            * <dd>An optional boolean value that specifies that a button 
-            * should be highlighted and focused by default.</dd>
-            * 
-            * <em>NOTE:</em>If the YUI Button Widget is included on the page, 
-            * the buttons created will be instances of YAHOO.widget.Button. 
-            * Otherwise, HTML Buttons (<code>&#60;BUTTON&#62;</code>) will be 
-            * created.
-            * 
-            * @config buttons
-            * @type {Array|String}
-            * @default "none"
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.BUTTONS.key, {
-                handler: this.configButtons,
-                value: DEFAULT_CONFIG.BUTTONS.value,
-                supercedes : DEFAULT_CONFIG.BUTTONS.supercedes
-            }); 
-
-        },
-
-        /**
-        * Initializes the custom events for Dialog which are fired 
-        * automatically at appropriate times by the Dialog class.
-        * @method initEvents
-        */
-        initEvents: function () {
-            Dialog.superclass.initEvents.call(this);
-
-            var SIGNATURE = CustomEvent.LIST;
-
-            /**
-            * CustomEvent fired prior to submission
-            * @event beforeSubmitEvent
-            */ 
-            this.beforeSubmitEvent = 
-                this.createEvent(EVENT_TYPES.BEFORE_SUBMIT);
-            this.beforeSubmitEvent.signature = SIGNATURE;
-            
-            /**
-            * CustomEvent fired after submission
-            * @event submitEvent
-            */
-            this.submitEvent = this.createEvent(EVENT_TYPES.SUBMIT);
-            this.submitEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired prior to manual submission
-            * @event manualSubmitEvent
-            */
-            this.manualSubmitEvent = 
-                this.createEvent(EVENT_TYPES.MANUAL_SUBMIT);
-            this.manualSubmitEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired prior to asynchronous submission
-            * @event asyncSubmitEvent
-            */ 
-            this.asyncSubmitEvent = this.createEvent(EVENT_TYPES.ASYNC_SUBMIT);
-            this.asyncSubmitEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired prior to form-based submission
-            * @event formSubmitEvent
-            */
-            this.formSubmitEvent = this.createEvent(EVENT_TYPES.FORM_SUBMIT);
-            this.formSubmitEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired after cancel
-            * @event cancelEvent
-            */
-            this.cancelEvent = this.createEvent(EVENT_TYPES.CANCEL);
-            this.cancelEvent.signature = SIGNATURE;
-        
-        },
-        
-        /**
-        * The Dialog initialization method, which is executed for Dialog and 
-        * all of its subclasses. This method is automatically called by the 
-        * constructor, and  sets up all DOM references for pre-existing markup, 
-        * and creates required markup if it is not already present.
-        * @method init
-        * @param {String} el The element ID representing the Dialog <em>OR</em>
-        * @param {HTMLElement} el The element representing the Dialog
-        * @param {Object} userConfig The configuration object literal 
-        * containing the configuration that should be set for this Dialog. 
-        * See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-
-            /*
-                 Note that we don't pass the user config in here yet because 
-                 we only want it executed once, at the lowest subclass level
-            */
-
-            Dialog.superclass.init.call(this, el/*, userConfig*/); 
-
-            this.beforeInitEvent.fire(Dialog);
-
-            Dom.addClass(this.element, Dialog.CSS_DIALOG);
-
-            this.cfg.setProperty("visible", false);
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-
-            this.showEvent.subscribe(this.focusFirst, this, true);
-            this.beforeHideEvent.subscribe(this.blurButtons, this, true);
-
-            this.subscribe("changeBody", this.registerForm);
-
-            this.initEvent.fire(Dialog);
-        },
-
-        /**
-        * Submits the Dialog's form depending on the value of the 
-        * "postmethod" configuration property.  <strong>Please note:
-        * </strong> As of version 2.3 this method will automatically handle 
-        * asyncronous file uploads should the Dialog instance's form contain 
-        * <code>&#60;input type="file"&#62;</code> elements.  If a Dialog 
-        * instance will be handling asyncronous file uploads, its 
-        * <code>callback</code> property will need to be setup with a 
-        * <code>upload</code> handler rather than the standard 
-        * <code>success</code> and, or <code>failure</code> handlers.  For more 
-        * information, see the <a href="http://developer.yahoo.com/yui/
-        * connection/#file">Connection Manager documenation on file uploads</a>.
-        * @method doSubmit
-        */
-        doSubmit: function () {
-
-            var Connect = YAHOO.util.Connect,
-                oForm = this.form,
-                bUseFileUpload = false,
-                bUseSecureFileUpload = false,
-                aElements,
-                nElements,
-                i,
-                formAttrs;
-
-            switch (this.cfg.getProperty("postmethod")) {
-
-                case "async":
-                    aElements = oForm.elements;
-                    nElements = aElements.length;
-
-                    if (nElements > 0) {
-                        i = nElements - 1;
-                        do {
-                            if (aElements[i].type == "file") {
-                                bUseFileUpload = true;
-                                break;
-                            }
-                        }
-                        while(i--);
-                    }
-
-                    if (bUseFileUpload && YAHOO.env.ua.ie && this.isSecure) {
-                        bUseSecureFileUpload = true;
-                    }
-
-                    formAttrs = this._getFormAttributes(oForm);
-
-                    Connect.setForm(oForm, bUseFileUpload, bUseSecureFileUpload);
-                    Connect.asyncRequest(formAttrs.method, formAttrs.action, this.callback);
-
-                    this.asyncSubmitEvent.fire();
-
-                    break;
-
-                case "form":
-                    oForm.submit();
-                    this.formSubmitEvent.fire();
-                    break;
-
-                case "none":
-                case "manual":
-                    this.manualSubmitEvent.fire();
-                    break;
-            }
-        },
-
-        /**
-         * Retrieves important attributes (currently method and action) from
-         * the form element, accounting for any elements which may have the same name 
-         * as the attributes. Defaults to "POST" and "" for method and action respectively
-         * if the attribute cannot be retrieved.
-         *
-         * @method _getFormAttributes
-         * @protected
-         * @param {HTMLFormElement} oForm The HTML Form element from which to retrieve the attributes
-         * @return {Object} Object literal, with method and action String properties.
-         */
-        _getFormAttributes : function(oForm){
-            var attrs = {
-                method : null,
-                action : null
-            };
-
-            if (oForm) {
-                if (oForm.getAttributeNode) {
-                    var action = oForm.getAttributeNode("action");
-                    var method = oForm.getAttributeNode("method");
-
-                    if (action) {
-                        attrs.action = action.value;
-                    }
-
-                    if (method) {
-                        attrs.method = method.value;
-                    }
-
-                } else {
-                    attrs.action = oForm.getAttribute("action");
-                    attrs.method = oForm.getAttribute("method");
-                }
-            }
-
-            attrs.method = (Lang.isString(attrs.method) ? attrs.method : "POST").toUpperCase();
-            attrs.action = Lang.isString(attrs.action) ? attrs.action : "";
-
-            return attrs;
-        },
-
-        /**
-        * Prepares the Dialog's internal FORM object, creating one if one is
-        * not currently present.
-        * @method registerForm
-        */
-        registerForm: function() {
-
-            var form = this.element.getElementsByTagName("form")[0];
-
-            if (this.form) {
-                if (this.form == form && Dom.isAncestor(this.element, this.form)) {
-                    return;
-                } else {
-                    Event.purgeElement(this.form);
-                    this.form = null;
-                }
-            }
-
-            if (!form) {
-                form = document.createElement("form");
-                form.name = "frm_" + this.id;
-                this.body.appendChild(form);
-            }
-
-            if (form) {
-                this.form = form;
-                Event.on(form, "submit", this._submitHandler, this, true);
-            }
-        },
-
-        /**
-         * Internal handler for the form submit event
-         *
-         * @method _submitHandler
-         * @protected
-         * @param {DOMEvent} e The DOM Event object
-         */
-        _submitHandler : function(e) {
-            Event.stopEvent(e);
-            this.submit();
-            this.form.blur();
-        },
-
-        /**
-         * Sets up a tab, shift-tab loop between the first and last elements
-         * provided. NOTE: Sets up the preventBackTab and preventTabOut KeyListener
-         * instance properties, which are reset everytime this method is invoked.
-         *
-         * @method setTabLoop
-         * @param {HTMLElement} firstElement
-         * @param {HTMLElement} lastElement
-         *
-         */
-        setTabLoop : function(firstElement, lastElement) {
-
-            firstElement = firstElement || this.firstButton;
-            lastElement = this.lastButton || lastElement;
-
-            Dialog.superclass.setTabLoop.call(this, firstElement, lastElement);
-        },
-
-        /**
-         * Configures instance properties, pointing to the 
-         * first and last focusable elements in the Dialog's form.
-         *
-         * @method setFirstLastFocusable
-         */
-        setFirstLastFocusable : function() {
-
-            Dialog.superclass.setFirstLastFocusable.call(this);
-
-            var i, l, el, elements = this.focusableElements;
-
-            this.firstFormElement = null;
-            this.lastFormElement = null;
-
-            if (this.form && elements && elements.length > 0) {
-                l = elements.length;
-
-                for (i = 0; i < l; ++i) {
-                    el = elements[i];
-                    if (this.form === el.form) {
-                        this.firstFormElement = el;
-                        break;
-                    }
-                }
-
-                for (i = l-1; i >= 0; --i) {
-                    el = elements[i];
-                    if (this.form === el.form) {
-                        this.lastFormElement = el;
-                        break;
-                    }
-                }
-            }
-        },
-
-        // BEGIN BUILT-IN PROPERTY EVENT HANDLERS //
-        /**
-        * The default event handler fired when the "close" property is 
-        * changed. The method controls the appending or hiding of the close
-        * icon at the top right of the Dialog.
-        * @method configClose
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For 
-        * configuration handlers, args[0] will equal the newly applied value 
-        * for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configClose: function (type, args, obj) {
-            Dialog.superclass.configClose.apply(this, arguments);
-        },
-
-        /**
-         * Event handler for the close icon
-         * 
-         * @method _doClose
-         * @protected
-         * 
-         * @param {DOMEvent} e
-         */
-         _doClose : function(e) {
-            Event.preventDefault(e);
-            this.cancel();
-        },
-
-        /**
-        * The default event handler for the "buttons" configuration property
-        * @method configButtons
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configButtons: function (type, args, obj) {
-
-            var Button = YAHOO.widget.Button,
-                aButtons = args[0],
-                oInnerElement = this.innerElement,
-                oButton,
-                oButtonEl,
-                oYUIButton,
-                nButtons,
-                oSpan,
-                oFooter,
-                i;
-
-            removeButtonEventHandlers.call(this);
-
-            this._aButtons = null;
-
-            if (Lang.isArray(aButtons)) {
-
-                oSpan = document.createElement("span");
-                oSpan.className = "button-group";
-                nButtons = aButtons.length;
-
-                this._aButtons = [];
-                this.defaultHtmlButton = null;
-
-                for (i = 0; i < nButtons; i++) {
-                    oButton = aButtons[i];
-
-                    if (Button) {
-                        oYUIButton = new Button({ label: oButton.text});
-                        oYUIButton.appendTo(oSpan);
-
-                        oButtonEl = oYUIButton.get("element");
-
-                        if (oButton.isDefault) {
-                            oYUIButton.addClass("default");
-                            this.defaultHtmlButton = oButtonEl;
-                        }
-
-                        if (Lang.isFunction(oButton.handler)) {
-
-                            oYUIButton.set("onclick", { 
-                                fn: oButton.handler, 
-                                obj: this, 
-                                scope: this 
-                            });
-
-                        } else if (Lang.isObject(oButton.handler) && Lang.isFunction(oButton.handler.fn)) {
-
-                            oYUIButton.set("onclick", { 
-                                fn: oButton.handler.fn, 
-                                obj: ((!Lang.isUndefined(oButton.handler.obj)) ? oButton.handler.obj : this), 
-                                scope: (oButton.handler.scope || this) 
-                            });
-
-                        }
-
-                        this._aButtons[this._aButtons.length] = oYUIButton;
-
-                    } else {
-
-                        oButtonEl = document.createElement("button");
-                        oButtonEl.setAttribute("type", "button");
-
-                        if (oButton.isDefault) {
-                            oButtonEl.className = "default";
-                            this.defaultHtmlButton = oButtonEl;
-                        }
-
-                        oButtonEl.innerHTML = oButton.text;
-
-                        if (Lang.isFunction(oButton.handler)) {
-                            Event.on(oButtonEl, "click", oButton.handler, this, true);
-                        } else if (Lang.isObject(oButton.handler) && 
-                            Lang.isFunction(oButton.handler.fn)) {
-    
-                            Event.on(oButtonEl, "click", 
-                                oButton.handler.fn, 
-                                ((!Lang.isUndefined(oButton.handler.obj)) ? oButton.handler.obj : this), 
-                                (oButton.handler.scope || this));
-                        }
-
-                        oSpan.appendChild(oButtonEl);
-                        this._aButtons[this._aButtons.length] = oButtonEl;
-                    }
-
-                    oButton.htmlButton = oButtonEl;
-
-                    if (i === 0) {
-                        this.firstButton = oButtonEl;
-                    }
-
-                    if (i == (nButtons - 1)) {
-                        this.lastButton = oButtonEl;
-                    }
-                }
-
-                this.setFooter(oSpan);
-
-                oFooter = this.footer;
-
-                if (Dom.inDocument(this.element) && !Dom.isAncestor(oInnerElement, oFooter)) {
-                    oInnerElement.appendChild(oFooter);
-                }
-
-                this.buttonSpan = oSpan;
-
-            } else { // Do cleanup
-                oSpan = this.buttonSpan;
-                oFooter = this.footer;
-                if (oSpan && oFooter) {
-                    oFooter.removeChild(oSpan);
-                    this.buttonSpan = null;
-                    this.firstButton = null;
-                    this.lastButton = null;
-                    this.defaultHtmlButton = null;
-                }
-            }
-
-            // Everything which needs to be done if content changed
-            // TODO: Should we be firing contentChange here?
-
-            this.setFirstLastFocusable();
-
-            this.cfg.refireEvent("iframe");
-            this.cfg.refireEvent("underlay");
-        },
-
-        /**
-        * @method getButtons
-        * @description Returns an array containing each of the Dialog's 
-        * buttons, by default an array of HTML <code>&#60;BUTTON&#62;</code> 
-        * elements.  If the Dialog's buttons were created using the 
-        * YAHOO.widget.Button class (via the inclusion of the optional Button 
-        * dependancy on the page), an array of YAHOO.widget.Button instances 
-        * is returned.
-        * @return {Array}
-        */
-        getButtons: function () {
-            return this._aButtons || null;
-        },
-
-        /**
-        * Sets focus to the first element in the Dialog's form or the first 
-        * button defined via the "buttons" configuration property. Called 
-        * when the Dialog is made visible.
-        * @method focusFirst
-        */
-        focusFirst: function (type, args, obj) {
-
-            var el = this.firstFormElement;
-
-            if (args && args[1]) {
-                Event.stopEvent(args[1]);
-            }
-
-            if (el) {
-                try {
-                    el.focus();
-                } catch(oException) {
-                    // Ignore
-                }
-            } else {
-                this.focusFirstButton();
-            }
-        },
-
-        /**
-        * Sets focus to the last element in the Dialog's form or the last 
-        * button defined via the "buttons" configuration property.
-        * @method focusLast
-        */
-        focusLast: function (type, args, obj) {
-
-            var aButtons = this.cfg.getProperty("buttons"),
-                el = this.lastFormElement;
-
-            if (args && args[1]) {
-                Event.stopEvent(args[1]);
-            }
-
-            if (aButtons && Lang.isArray(aButtons)) {
-                this.focusLastButton();
-            } else {
-                if (el) {
-                    try {
-                        el.focus();
-                    } catch(oException) {
-                        // Ignore
-                    }
-                }
-            }
-        },
-
-        /**
-         * Helper method to normalize button references. It either returns the 
-         * YUI Button instance for the given element if found,
-         * or the passes back the HTMLElement reference if a corresponding YUI Button
-         * reference is not found or YAHOO.widget.Button does not exist on the page.
-         *
-         * @method _getButton
-         * @private
-         * @param {HTMLElement} button
-         * @return {YAHOO.widget.Button|HTMLElement}
-         */
-        _getButton : function(button) {
-            var Button = YAHOO.widget.Button;
-
-            // If we have an HTML button and YUI Button is on the page, 
-            // get the YUI Button reference if available.
-            if (Button && button && button.nodeName && button.id) {
-                button = Button.getButton(button.id) || button;
-            }
-
-            return button;
-        },
-
-        /**
-        * Sets the focus to the button that is designated as the default via 
-        * the "buttons" configuration property. By default, this method is 
-        * called when the Dialog is made visible.
-        * @method focusDefaultButton
-        */
-        focusDefaultButton: function () {
-            var button = this._getButton(this.defaultHtmlButton);
-            if (button) {
-                /*
-                    Place the call to the "focus" method inside a try/catch
-                    block to prevent IE from throwing JavaScript errors if
-                    the element is disabled or hidden.
-                */
-                try {
-                    button.focus();
-                } catch(oException) {
-                }
-            }
-        },
-
-        /**
-        * Blurs all the buttons defined via the "buttons" 
-        * configuration property.
-        * @method blurButtons
-        */
-        blurButtons: function () {
-            
-            var aButtons = this.cfg.getProperty("buttons"),
-                nButtons,
-                oButton,
-                oElement,
-                i;
-
-            if (aButtons && Lang.isArray(aButtons)) {
-                nButtons = aButtons.length;
-                if (nButtons > 0) {
-                    i = (nButtons - 1);
-                    do {
-                        oButton = aButtons[i];
-                        if (oButton) {
-                            oElement = this._getButton(oButton.htmlButton);
-                            if (oElement) {
-                                /*
-                                    Place the call to the "blur" method inside  
-                                    a try/catch block to prevent IE from  
-                                    throwing JavaScript errors if the element 
-                                    is disabled or hidden.
-                                */
-                                try {
-                                    oElement.blur();
-                                } catch(oException) {
-                                    // ignore
-                                }
-                            }
-                        }
-                    } while(i--);
-                }
-            }
-        },
-
-        /**
-        * Sets the focus to the first button created via the "buttons"
-        * configuration property.
-        * @method focusFirstButton
-        */
-        focusFirstButton: function () {
-
-            var aButtons = this.cfg.getProperty("buttons"),
-                oButton,
-                oElement;
-
-            if (aButtons && Lang.isArray(aButtons)) {
-                oButton = aButtons[0];
-                if (oButton) {
-                    oElement = this._getButton(oButton.htmlButton);
-                    if (oElement) {
-                        /*
-                            Place the call to the "focus" method inside a 
-                            try/catch block to prevent IE from throwing 
-                            JavaScript errors if the element is disabled 
-                            or hidden.
-                        */
-                        try {
-                            oElement.focus();
-                        } catch(oException) {
-                            // ignore
-                        }
-                    }
-                }
-            }
-        },
-
-        /**
-        * Sets the focus to the last button created via the "buttons" 
-        * configuration property.
-        * @method focusLastButton
-        */
-        focusLastButton: function () {
-
-            var aButtons = this.cfg.getProperty("buttons"),
-                nButtons,
-                oButton,
-                oElement;
-
-            if (aButtons && Lang.isArray(aButtons)) {
-                nButtons = aButtons.length;
-                if (nButtons > 0) {
-                    oButton = aButtons[(nButtons - 1)];
-
-                    if (oButton) {
-                        oElement = this._getButton(oButton.htmlButton);
-                        if (oElement) {
-                            /*
-                                Place the call to the "focus" method inside a 
-                                try/catch block to prevent IE from throwing 
-                                JavaScript errors if the element is disabled
-                                or hidden.
-                            */
-        
-                            try {
-                                oElement.focus();
-                            } catch(oException) {
-                                // Ignore
-                            }
-                        }
-                    }
-                }
-            }
-        },
-
-        /**
-        * The default event handler for the "postmethod" configuration property
-        * @method configPostMethod
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For 
-        * configuration handlers, args[0] will equal the newly applied value 
-        * for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configPostMethod: function (type, args, obj) {
-            this.registerForm();
-        },
-
-        // END BUILT-IN PROPERTY EVENT HANDLERS //
-        
-        /**
-        * Built-in function hook for writing a validation function that will 
-        * be checked for a "true" value prior to a submit. This function, as 
-        * implemented by default, always returns true, so it should be 
-        * overridden if validation is necessary.
-        * @method validate
-        */
-        validate: function () {
-            return true;
-        },
-        
-        /**
-        * Executes a submit of the Dialog if validation 
-        * is successful. By default the Dialog is hidden
-        * after submission, but you can set the "hideaftersubmit"
-        * configuration property to false, to prevent the Dialog
-        * from being hidden.
-        * 
-        * @method submit
-        */
-        submit: function () {
-            if (this.validate()) {
-                this.beforeSubmitEvent.fire();
-                this.doSubmit();
-                this.submitEvent.fire();
-
-                if (this.cfg.getProperty("hideaftersubmit")) {
-                    this.hide();
-                }
-
-                return true;
-            } else {
-                return false;
-            }
-        },
-
-        /**
-        * Executes the cancel of the Dialog followed by a hide.
-        * @method cancel
-        */
-        cancel: function () {
-            this.cancelEvent.fire();
-            this.hide();
-        },
-        
-        /**
-        * Returns a JSON-compatible data structure representing the data 
-        * currently contained in the form.
-        * @method getData
-        * @return {Object} A JSON object reprsenting the data of the 
-        * current form.
-        */
-        getData: function () {
-
-            var oForm = this.form,
-                aElements,
-                nTotalElements,
-                oData,
-                sName,
-                oElement,
-                nElements,
-                sType,
-                sTagName,
-                aOptions,
-                nOptions,
-                aValues,
-                oOption,
-                sValue,
-                oRadio,
-                oCheckbox,
-                i,
-                n;    
-    
-            function isFormElement(p_oElement) {
-                var sTag = p_oElement.tagName.toUpperCase();
-                return ((sTag == "INPUT" || sTag == "TEXTAREA" || 
-                        sTag == "SELECT") && p_oElement.name == sName);
-            }
-
-            if (oForm) {
-
-                aElements = oForm.elements;
-                nTotalElements = aElements.length;
-                oData = {};
-
-                for (i = 0; i < nTotalElements; i++) {
-                    sName = aElements[i].name;
-
-                    /*
-                        Using "Dom.getElementsBy" to safeguard user from JS 
-                        errors that result from giving a form field (or set of 
-                        fields) the same name as a native method of a form 
-                        (like "submit") or a DOM collection (such as the "item"
-                        method). Originally tried accessing fields via the 
-                        "namedItem" method of the "element" collection, but 
-                        discovered that it won't return a collection of fields 
-                        in Gecko.
-                    */
-
-                    oElement = Dom.getElementsBy(isFormElement, "*", oForm);
-                    nElements = oElement.length;
-
-                    if (nElements > 0) {
-                        if (nElements == 1) {
-                            oElement = oElement[0];
-
-                            sType = oElement.type;
-                            sTagName = oElement.tagName.toUpperCase();
-
-                            switch (sTagName) {
-                                case "INPUT":
-                                    if (sType == "checkbox") {
-                                        oData[sName] = oElement.checked;
-                                    } else if (sType != "radio") {
-                                        oData[sName] = oElement.value;
-                                    }
-                                    break;
-
-                                case "TEXTAREA":
-                                    oData[sName] = oElement.value;
-                                    break;
-    
-                                case "SELECT":
-                                    aOptions = oElement.options;
-                                    nOptions = aOptions.length;
-                                    aValues = [];
-    
-                                    for (n = 0; n < nOptions; n++) {
-                                        oOption = aOptions[n];
-    
-                                        if (oOption.selected) {
-                                            sValue = oOption.value;
-                                            if (!sValue || sValue === "") {
-                                                sValue = oOption.text;
-                                            }
-                                            aValues[aValues.length] = sValue;
-                                        }
-                                    }
-                                    oData[sName] = aValues;
-                                    break;
-                            }
-        
-                        } else {
-                            sType = oElement[0].type;
-                            switch (sType) {
-                                case "radio":
-                                    for (n = 0; n < nElements; n++) {
-                                        oRadio = oElement[n];
-                                        if (oRadio.checked) {
-                                            oData[sName] = oRadio.value;
-                                            break;
-                                        }
-                                    }
-                                    break;
-        
-                                case "checkbox":
-                                    aValues = [];
-                                    for (n = 0; n < nElements; n++) {
-                                        oCheckbox = oElement[n];
-                                        if (oCheckbox.checked) {
-                                            aValues[aValues.length] =  oCheckbox.value;
-                                        }
-                                    }
-                                    oData[sName] = aValues;
-                                    break;
-                            }
-                        }
-                    }
-                }
-            }
-
-            return oData;
-        },
-
-        /**
-        * Removes the Panel element from the DOM and sets all child elements 
-        * to null.
-        * @method destroy
-        */
-        destroy: function () {
-            removeButtonEventHandlers.call(this);
-
-            this._aButtons = null;
-
-            var aForms = this.element.getElementsByTagName("form"),
-                oForm;
-
-            if (aForms.length > 0) {
-                oForm = aForms[0];
-
-                if (oForm) {
-                    Event.purgeElement(oForm);
-                    if (oForm.parentNode) {
-                        oForm.parentNode.removeChild(oForm);
-                    }
-                    this.form = null;
-                }
-            }
-            Dialog.superclass.destroy.call(this);
-        },
-
-        /**
-        * Returns a string representation of the object.
-        * @method toString
-        * @return {String} The string representation of the Dialog
-        */
-        toString: function () {
-            return "Dialog " + this.id;
-        }
-    
-    });
-
-}());
-
-(function () {
-
-    /**
-    * SimpleDialog is a simple implementation of Dialog that can be used to 
-    * submit a single value. Forms can be processed in 3 ways -- via an 
-    * asynchronous Connection utility call, a simple form POST or GET, 
-    * or manually.
-    * @namespace YAHOO.widget
-    * @class SimpleDialog
-    * @extends YAHOO.widget.Dialog
-    * @constructor
-    * @param {String} el The element ID representing the SimpleDialog 
-    * <em>OR</em>
-    * @param {HTMLElement} el The element representing the SimpleDialog
-    * @param {Object} userConfig The configuration object literal containing 
-    * the configuration that should be set for this SimpleDialog. See 
-    * configuration documentation for more details.
-    */
-    YAHOO.widget.SimpleDialog = function (el, userConfig) {
-    
-        YAHOO.widget.SimpleDialog.superclass.constructor.call(this, 
-            el, userConfig);
-    
-    };
-
-    var Dom = YAHOO.util.Dom,
-        SimpleDialog = YAHOO.widget.SimpleDialog,
-    
-        /**
-        * Constant representing the SimpleDialog's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-        
-            "ICON": { 
-                key: "icon", 
-                value: "none", 
-                suppressEvent: true  
-            },
-        
-            "TEXT": { 
-                key: "text", 
-                value: "", 
-                suppressEvent: true, 
-                supercedes: ["icon"] 
-            }
-        
-        };
-
-    /**
-    * Constant for the standard network icon for a blocking action
-    * @property YAHOO.widget.SimpleDialog.ICON_BLOCK
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.ICON_BLOCK = "blckicon";
-    
-    /**
-    * Constant for the standard network icon for alarm
-    * @property YAHOO.widget.SimpleDialog.ICON_ALARM
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.ICON_ALARM = "alrticon";
-    
-    /**
-    * Constant for the standard network icon for help
-    * @property YAHOO.widget.SimpleDialog.ICON_HELP
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.ICON_HELP  = "hlpicon";
-    
-    /**
-    * Constant for the standard network icon for info
-    * @property YAHOO.widget.SimpleDialog.ICON_INFO
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.ICON_INFO  = "infoicon";
-    
-    /**
-    * Constant for the standard network icon for warn
-    * @property YAHOO.widget.SimpleDialog.ICON_WARN
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.ICON_WARN  = "warnicon";
-    
-    /**
-    * Constant for the standard network icon for a tip
-    * @property YAHOO.widget.SimpleDialog.ICON_TIP
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.ICON_TIP   = "tipicon";
-
-    /**
-    * Constant representing the name of the CSS class applied to the element 
-    * created by the "icon" configuration property.
-    * @property YAHOO.widget.SimpleDialog.ICON_CSS_CLASSNAME
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.ICON_CSS_CLASSNAME = "yui-icon";
-    
-    /**
-    * Constant representing the default CSS class used for a SimpleDialog
-    * @property YAHOO.widget.SimpleDialog.CSS_SIMPLEDIALOG
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.CSS_SIMPLEDIALOG = "yui-simple-dialog";
-
-    
-    YAHOO.extend(SimpleDialog, YAHOO.widget.Dialog, {
-    
-        /**
-        * Initializes the class's configurable properties which can be changed 
-        * using the SimpleDialog's Config object (cfg).
-        * @method initDefaultConfig
-        */
-        initDefaultConfig: function () {
-        
-            SimpleDialog.superclass.initDefaultConfig.call(this);
-        
-            // Add dialog config properties //
-        
-            /**
-            * Sets the informational icon for the SimpleDialog
-            * @config icon
-            * @type String
-            * @default "none"
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.ICON.key, {
-                handler: this.configIcon,
-                value: DEFAULT_CONFIG.ICON.value,
-                suppressEvent: DEFAULT_CONFIG.ICON.suppressEvent
-            });
-        
-            /**
-            * Sets the text for the SimpleDialog
-            * @config text
-            * @type String
-            * @default ""
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.TEXT.key, { 
-                handler: this.configText, 
-                value: DEFAULT_CONFIG.TEXT.value, 
-                suppressEvent: DEFAULT_CONFIG.TEXT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.TEXT.supercedes 
-            });
-        
-        },
-        
-        
-        /**
-        * The SimpleDialog initialization method, which is executed for 
-        * SimpleDialog and all of its subclasses. This method is automatically 
-        * called by the constructor, and  sets up all DOM references for 
-        * pre-existing markup, and creates required markup if it is not 
-        * already present.
-        * @method init
-        * @param {String} el The element ID representing the SimpleDialog 
-        * <em>OR</em>
-        * @param {HTMLElement} el The element representing the SimpleDialog
-        * @param {Object} userConfig The configuration object literal 
-        * containing the configuration that should be set for this 
-        * SimpleDialog. See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-
-            /*
-                Note that we don't pass the user config in here yet because we 
-                only want it executed once, at the lowest subclass level
-            */
-
-            SimpleDialog.superclass.init.call(this, el/*, userConfig*/);
-        
-            this.beforeInitEvent.fire(SimpleDialog);
-        
-            Dom.addClass(this.element, SimpleDialog.CSS_SIMPLEDIALOG);
-        
-            this.cfg.queueProperty("postmethod", "manual");
-        
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-        
-            this.beforeRenderEvent.subscribe(function () {
-                if (! this.body) {
-                    this.setBody("");
-                }
-            }, this, true);
-        
-            this.initEvent.fire(SimpleDialog);
-        
-        },
-        
-        /**
-        * Prepares the SimpleDialog's internal FORM object, creating one if one 
-        * is not currently present, and adding the value hidden field.
-        * @method registerForm
-        */
-        registerForm: function () {
-
-            SimpleDialog.superclass.registerForm.call(this);
-
-            this.form.innerHTML += "<input type=\"hidden\" name=\"" + 
-                this.id + "\" value=\"\"/>";
-
-        },
-        
-        // BEGIN BUILT-IN PROPERTY EVENT HANDLERS //
-        
-        /**
-        * Fired when the "icon" property is set.
-        * @method configIcon
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configIcon: function (type,args,obj) {
-        
-            var sIcon = args[0],
-                oBody = this.body,
-                sCSSClass = SimpleDialog.ICON_CSS_CLASSNAME,
-                oIcon,
-                oIconParent;
-        
-            if (sIcon && sIcon != "none") {
-
-                oIcon = Dom.getElementsByClassName(sCSSClass, "*" , oBody);
-
-                if (oIcon) {
-
-                    oIconParent = oIcon.parentNode;
-                    
-                    if (oIconParent) {
-                    
-                        oIconParent.removeChild(oIcon);
-                        
-                        oIcon = null;
-                    
-                    }
-
-                }
-
-
-                if (sIcon.indexOf(".") == -1) {
-
-                    oIcon = document.createElement("span");
-                    oIcon.className = (sCSSClass + " " + sIcon);
-                    oIcon.innerHTML = "&#160;";
-
-                } else {
-
-                    oIcon = document.createElement("img");
-                    oIcon.src = (this.imageRoot + sIcon);
-                    oIcon.className = sCSSClass;
-
-                }
-                
-
-                if (oIcon) {
-                
-                    oBody.insertBefore(oIcon, oBody.firstChild);
-                
-                }
-
-            }
-
-        },
-
-        /**
-        * Fired when the "text" property is set.
-        * @method configText
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configText: function (type,args,obj) {
-            var text = args[0];
-            if (text) {
-                this.setBody(text);
-                this.cfg.refireEvent("icon");
-            }
-        },
-        
-        // END BUILT-IN PROPERTY EVENT HANDLERS //
-        
-        /**
-        * Returns a string representation of the object.
-        * @method toString
-        * @return {String} The string representation of the SimpleDialog
-        */
-        toString: function () {
-            return "SimpleDialog " + this.id;
-        }
-
-        /**
-        * <p>
-        * Sets the SimpleDialog's body content to the HTML specified. 
-        * If no body is present, one will be automatically created. 
-        * An empty string can be passed to the method to clear the contents of the body.
-        * </p>
-        * <p><strong>NOTE:</strong> SimpleDialog provides the <a href="#config_text">text</a>
-        * and <a href="#config_icon">icon</a> configuration properties to set the contents
-        * of it's body element in accordance with the UI design for a SimpleDialog (an 
-        * icon and message text). Calling setBody on the SimpleDialog will not enforce this 
-        * UI design constraint and will replace the entire contents of the SimpleDialog body. 
-        * It should only be used if you wish the replace the default icon/text body structure 
-        * of a SimpleDialog with your own custom markup.</p>
-        * 
-        * @method setBody
-        * @param {String} bodyContent The HTML used to set the body. 
-        * As a convenience, non HTMLElement objects can also be passed into 
-        * the method, and will be treated as strings, with the body innerHTML
-        * set to their default toString implementations.
-        * <em>OR</em>
-        * @param {HTMLElement} bodyContent The HTMLElement to add as the first and only child of the body element.
-        * <em>OR</em>
-        * @param {DocumentFragment} bodyContent The document fragment 
-        * containing elements which are to be added to the body
-        */
-    });
-
-}());
-
-(function () {
-
-    /**
-    * ContainerEffect encapsulates animation transitions that are executed when 
-    * an Overlay is shown or hidden.
-    * @namespace YAHOO.widget
-    * @class ContainerEffect
-    * @constructor
-    * @param {YAHOO.widget.Overlay} overlay The Overlay that the animation 
-    * should be associated with
-    * @param {Object} attrIn The object literal representing the animation 
-    * arguments to be used for the animate-in transition. The arguments for 
-    * this literal are: attributes(object, see YAHOO.util.Anim for description), 
-    * duration(Number), and method(i.e. Easing.easeIn).
-    * @param {Object} attrOut The object literal representing the animation 
-    * arguments to be used for the animate-out transition. The arguments for  
-    * this literal are: attributes(object, see YAHOO.util.Anim for description), 
-    * duration(Number), and method(i.e. Easing.easeIn).
-    * @param {HTMLElement} targetElement Optional. The target element that  
-    * should be animated during the transition. Defaults to overlay.element.
-    * @param {class} Optional. The animation class to instantiate. Defaults to 
-    * YAHOO.util.Anim. Other options include YAHOO.util.Motion.
-    */
-    YAHOO.widget.ContainerEffect = function (overlay, attrIn, attrOut, targetElement, animClass) {
-
-        if (!animClass) {
-            animClass = YAHOO.util.Anim;
-        }
-
-        /**
-        * The overlay to animate
-        * @property overlay
-        * @type YAHOO.widget.Overlay
-        */
-        this.overlay = overlay;
-    
-        /**
-        * The animation attributes to use when transitioning into view
-        * @property attrIn
-        * @type Object
-        */
-        this.attrIn = attrIn;
-    
-        /**
-        * The animation attributes to use when transitioning out of view
-        * @property attrOut
-        * @type Object
-        */
-        this.attrOut = attrOut;
-    
-        /**
-        * The target element to be animated
-        * @property targetElement
-        * @type HTMLElement
-        */
-        this.targetElement = targetElement || overlay.element;
-    
-        /**
-        * The animation class to use for animating the overlay
-        * @property animClass
-        * @type class
-        */
-        this.animClass = animClass;
-    
-    };
-
-
-    var Dom = YAHOO.util.Dom,
-        CustomEvent = YAHOO.util.CustomEvent,
-        ContainerEffect = YAHOO.widget.ContainerEffect;
-
-
-    /**
-    * A pre-configured ContainerEffect instance that can be used for fading 
-    * an overlay in and out.
-    * @method FADE
-    * @static
-    * @param {YAHOO.widget.Overlay} overlay The Overlay object to animate
-    * @param {Number} dur The duration of the animation
-    * @return {YAHOO.widget.ContainerEffect} The configured ContainerEffect object
-    */
-    ContainerEffect.FADE = function (overlay, dur) {
-
-        var Easing = YAHOO.util.Easing,
-            fin = {
-                attributes: {opacity:{from:0, to:1}},
-                duration: dur,
-                method: Easing.easeIn
-            },
-            fout = {
-                attributes: {opacity:{to:0}},
-                duration: dur,
-                method: Easing.easeOut
-            },
-            fade = new ContainerEffect(overlay, fin, fout, overlay.element);
-
-        fade.handleUnderlayStart = function() {
-            var underlay = this.overlay.underlay;
-            if (underlay && YAHOO.env.ua.ie) {
-                var hasFilters = (underlay.filters && underlay.filters.length > 0);
-                if(hasFilters) {
-                    Dom.addClass(overlay.element, "yui-effect-fade");
-                }
-            }
-        };
-
-        fade.handleUnderlayComplete = function() {
-            var underlay = this.overlay.underlay;
-            if (underlay && YAHOO.env.ua.ie) {
-                Dom.removeClass(overlay.element, "yui-effect-fade");
-            }
-        };
-
-        fade.handleStartAnimateIn = function (type, args, obj) {
-            Dom.addClass(obj.overlay.element, "hide-select");
-
-            if (!obj.overlay.underlay) {
-                obj.overlay.cfg.refireEvent("underlay");
-            }
-
-            obj.handleUnderlayStart();
-
-            Dom.setStyle(obj.overlay.element, "visibility", "visible");
-            Dom.setStyle(obj.overlay.element, "opacity", 0);
-        };
-
-        fade.handleCompleteAnimateIn = function (type,args,obj) {
-            Dom.removeClass(obj.overlay.element, "hide-select");
-
-            if (obj.overlay.element.style.filter) {
-                obj.overlay.element.style.filter = null;
-            }
-
-            obj.handleUnderlayComplete();
-
-            obj.overlay.cfg.refireEvent("iframe");
-            obj.animateInCompleteEvent.fire();
-        };
-
-        fade.handleStartAnimateOut = function (type, args, obj) {
-            Dom.addClass(obj.overlay.element, "hide-select");
-            obj.handleUnderlayStart();
-        };
-
-        fade.handleCompleteAnimateOut =  function (type, args, obj) {
-            Dom.removeClass(obj.overlay.element, "hide-select");
-            if (obj.overlay.element.style.filter) {
-                obj.overlay.element.style.filter = null;
-            }
-            Dom.setStyle(obj.overlay.element, "visibility", "hidden");
-            Dom.setStyle(obj.overlay.element, "opacity", 1);
-
-            obj.handleUnderlayComplete();
-
-            obj.overlay.cfg.refireEvent("iframe");
-            obj.animateOutCompleteEvent.fire();
-        };
-
-        fade.init();
-        return fade;
-    };
-    
-    
-    /**
-    * A pre-configured ContainerEffect instance that can be used for sliding an 
-    * overlay in and out.
-    * @method SLIDE
-    * @static
-    * @param {YAHOO.widget.Overlay} overlay The Overlay object to animate
-    * @param {Number} dur The duration of the animation
-    * @return {YAHOO.widget.ContainerEffect} The configured ContainerEffect object
-    */
-    ContainerEffect.SLIDE = function (overlay, dur) {
-        var Easing = YAHOO.util.Easing,
-
-            x = overlay.cfg.getProperty("x") || Dom.getX(overlay.element),
-            y = overlay.cfg.getProperty("y") || Dom.getY(overlay.element),
-            clientWidth = Dom.getClientWidth(),
-            offsetWidth = overlay.element.offsetWidth,
-
-            sin =  { 
-                attributes: { points: { to: [x, y] } },
-                duration: dur,
-                method: Easing.easeIn 
-            },
-
-            sout = {
-                attributes: { points: { to: [(clientWidth + 25), y] } },
-                duration: dur,
-                method: Easing.easeOut 
-            },
-
-            slide = new ContainerEffect(overlay, sin, sout, overlay.element, YAHOO.util.Motion);
-
-        slide.handleStartAnimateIn = function (type,args,obj) {
-            obj.overlay.element.style.left = ((-25) - offsetWidth) + "px";
-            obj.overlay.element.style.top  = y + "px";
-        };
-
-        slide.handleTweenAnimateIn = function (type, args, obj) {
-        
-            var pos = Dom.getXY(obj.overlay.element),
-                currentX = pos[0],
-                currentY = pos[1];
-        
-            if (Dom.getStyle(obj.overlay.element, "visibility") == 
-                "hidden" && currentX < x) {
-
-                Dom.setStyle(obj.overlay.element, "visibility", "visible");
-
-            }
-        
-            obj.overlay.cfg.setProperty("xy", [currentX, currentY], true);
-            obj.overlay.cfg.refireEvent("iframe");
-        };
-        
-        slide.handleCompleteAnimateIn = function (type, args, obj) {
-            obj.overlay.cfg.setProperty("xy", [x, y], true);
-            obj.startX = x;
-            obj.startY = y;
-            obj.overlay.cfg.refireEvent("iframe");
-            obj.animateInCompleteEvent.fire();
-        };
-        
-        slide.handleStartAnimateOut = function (type, args, obj) {
-    
-            var vw = Dom.getViewportWidth(),
-                pos = Dom.getXY(obj.overlay.element),
-                yso = pos[1];
-    
-            obj.animOut.attributes.points.to = [(vw + 25), yso];
-        };
-        
-        slide.handleTweenAnimateOut = function (type, args, obj) {
-    
-            var pos = Dom.getXY(obj.overlay.element),
-                xto = pos[0],
-                yto = pos[1];
-        
-            obj.overlay.cfg.setProperty("xy", [xto, yto], true);
-            obj.overlay.cfg.refireEvent("iframe");
-        };
-        
-        slide.handleCompleteAnimateOut = function (type, args, obj) {
-            Dom.setStyle(obj.overlay.element, "visibility", "hidden");
-        
-            obj.overlay.cfg.setProperty("xy", [x, y]);
-            obj.animateOutCompleteEvent.fire();
-        };
-
-        slide.init();
-        return slide;
-    };
-
-    ContainerEffect.prototype = {
-
-        /**
-        * Initializes the animation classes and events.
-        * @method init
-        */
-        init: function () {
-
-            this.beforeAnimateInEvent = this.createEvent("beforeAnimateIn");
-            this.beforeAnimateInEvent.signature = CustomEvent.LIST;
-            
-            this.beforeAnimateOutEvent = this.createEvent("beforeAnimateOut");
-            this.beforeAnimateOutEvent.signature = CustomEvent.LIST;
-        
-            this.animateInCompleteEvent = this.createEvent("animateInComplete");
-            this.animateInCompleteEvent.signature = CustomEvent.LIST;
-        
-            this.animateOutCompleteEvent = 
-                this.createEvent("animateOutComplete");
-            this.animateOutCompleteEvent.signature = CustomEvent.LIST;
-        
-            this.animIn = new this.animClass(this.targetElement, 
-                this.attrIn.attributes, this.attrIn.duration, 
-                this.attrIn.method);
-
-            this.animIn.onStart.subscribe(this.handleStartAnimateIn, this);
-            this.animIn.onTween.subscribe(this.handleTweenAnimateIn, this);
-
-            this.animIn.onComplete.subscribe(this.handleCompleteAnimateIn, 
-                this);
-        
-            this.animOut = new this.animClass(this.targetElement, 
-                this.attrOut.attributes, this.attrOut.duration, 
-                this.attrOut.method);
-
-            this.animOut.onStart.subscribe(this.handleStartAnimateOut, this);
-            this.animOut.onTween.subscribe(this.handleTweenAnimateOut, this);
-            this.animOut.onComplete.subscribe(this.handleCompleteAnimateOut, 
-                this);
-
-        },
-        
-        /**
-        * Triggers the in-animation.
-        * @method animateIn
-        */
-        animateIn: function () {
-            this.beforeAnimateInEvent.fire();
-            this.animIn.animate();
-        },
-
-        /**
-        * Triggers the out-animation.
-        * @method animateOut
-        */
-        animateOut: function () {
-            this.beforeAnimateOutEvent.fire();
-            this.animOut.animate();
-        },
-
-        /**
-        * The default onStart handler for the in-animation.
-        * @method handleStartAnimateIn
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleStartAnimateIn: function (type, args, obj) { },
-
-        /**
-        * The default onTween handler for the in-animation.
-        * @method handleTweenAnimateIn
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleTweenAnimateIn: function (type, args, obj) { },
-
-        /**
-        * The default onComplete handler for the in-animation.
-        * @method handleCompleteAnimateIn
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleCompleteAnimateIn: function (type, args, obj) { },
-
-        /**
-        * The default onStart handler for the out-animation.
-        * @method handleStartAnimateOut
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleStartAnimateOut: function (type, args, obj) { },
-
-        /**
-        * The default onTween handler for the out-animation.
-        * @method handleTweenAnimateOut
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleTweenAnimateOut: function (type, args, obj) { },
-
-        /**
-        * The default onComplete handler for the out-animation.
-        * @method handleCompleteAnimateOut
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleCompleteAnimateOut: function (type, args, obj) { },
-        
-        /**
-        * Returns a string representation of the object.
-        * @method toString
-        * @return {String} The string representation of the ContainerEffect
-        */
-        toString: function () {
-            var output = "ContainerEffect";
-            if (this.overlay) {
-                output += " [" + this.overlay.toString() + "]";
-            }
-            return output;
-        }
-    };
-
-    YAHOO.lang.augmentProto(ContainerEffect, YAHOO.util.EventProvider);
-
-})();
-
-YAHOO.register("container", YAHOO.widget.Module, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/container/container-min.js b/eclipse.org-common/yui/2.6.0/build/container/container-min.js
deleted file mode 100644
index 7147a09..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/container-min.js
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){YAHOO.util.Config=function(D){if(D){this.init(D);}};var B=YAHOO.lang,C=YAHOO.util.CustomEvent,A=YAHOO.util.Config;A.CONFIG_CHANGED_EVENT="configChanged";A.BOOLEAN_TYPE="boolean";A.prototype={owner:null,queueInProgress:false,config:null,initialConfig:null,eventQueue:null,configChangedEvent:null,init:function(D){this.owner=D;this.configChangedEvent=this.createEvent(A.CONFIG_CHANGED_EVENT);this.configChangedEvent.signature=C.LIST;this.queueInProgress=false;this.config={};this.initialConfig={};this.eventQueue=[];},checkBoolean:function(D){return(typeof D==A.BOOLEAN_TYPE);},checkNumber:function(D){return(!isNaN(D));},fireEvent:function(D,F){var E=this.config[D];if(E&&E.event){E.event.fire(F);}},addProperty:function(E,D){E=E.toLowerCase();this.config[E]=D;D.event=this.createEvent(E,{scope:this.owner});D.event.signature=C.LIST;D.key=E;if(D.handler){D.event.subscribe(D.handler,this.owner);}this.setProperty(E,D.value,true);if(!D.suppressEvent){this.queueProperty(E,D.value);}},getConfig:function(){var D={},F=this.config,G,E;for(G in F){if(B.hasOwnProperty(F,G)){E=F[G];if(E&&E.event){D[G]=E.value;}}}return D;},getProperty:function(D){var E=this.config[D.toLowerCase()];if(E&&E.event){return E.value;}else{return undefined;}},resetProperty:function(D){D=D.toLowerCase();var E=this.config[D];if(E&&E.event){if(this.initialConfig[D]&&!B.isUndefined(this.initialConfig[D])){this.setProperty(D,this.initialConfig[D]);return true;}}else{return false;}},setProperty:function(E,G,D){var F;E=E.toLowerCase();if(this.queueInProgress&&!D){this.queueProperty(E,G);return true;}else{F=this.config[E];if(F&&F.event){if(F.validator&&!F.validator(G)){return false;}else{F.value=G;if(!D){this.fireEvent(E,G);this.configChangedEvent.fire([E,G]);}return true;}}else{return false;}}},queueProperty:function(S,P){S=S.toLowerCase();var R=this.config[S],K=false,J,G,H,I,O,Q,F,M,N,D,L,T,E;if(R&&R.event){if(!B.isUndefined(P)&&R.validator&&!R.validator(P)){return false;}else{if(!B.isUndefined(P)){R.value=P;}else{P=R.value;}K=false;J=this.eventQueue.length;for(L=0;L<J;L++){G=this.eventQueue[L];if(G){H=G[0];I=G[1];if(H==S){this.eventQueue[L]=null;this.eventQueue.push([S,(!B.isUndefined(P)?P:I)]);K=true;break;}}}if(!K&&!B.isUndefined(P)){this.eventQueue.push([S,P]);}}if(R.supercedes){O=R.supercedes.length;for(T=0;T<O;T++){Q=R.supercedes[T];F=this.eventQueue.length;for(E=0;E<F;E++){M=this.eventQueue[E];if(M){N=M[0];D=M[1];if(N==Q.toLowerCase()){this.eventQueue.push([N,D]);this.eventQueue[E]=null;break;}}}}}return true;}else{return false;}},refireEvent:function(D){D=D.toLowerCase();var E=this.config[D];if(E&&E.event&&!B.isUndefined(E.value)){if(this.queueInProgress){this.queueProperty(D);}else{this.fireEvent(D,E.value);}}},applyConfig:function(D,G){var F,E;if(G){E={};for(F in D){if(B.hasOwnProperty(D,F)){E[F.toLowerCase()]=D[F];}}this.initialConfig=E;}for(F in D){if(B.hasOwnProperty(D,F)){this.queueProperty(F,D[F]);}}},refresh:function(){var D;for(D in this.config){if(B.hasOwnProperty(this.config,D)){this.refireEvent(D);}}},fireQueue:function(){var E,H,D,G,F;this.queueInProgress=true;for(E=0;E<this.eventQueue.length;E++){H=this.eventQueue[E];if(H){D=H[0];G=H[1];F=this.config[D];F.value=G;this.eventQueue[E]=null;this.fireEvent(D,G);}}this.queueInProgress=false;this.eventQueue=[];},subscribeToConfigEvent:function(E,F,H,D){var G=this.config[E.toLowerCase()];if(G&&G.event){if(!A.alreadySubscribed(G.event,F,H)){G.event.subscribe(F,H,D);}return true;}else{return false;}},unsubscribeFromConfigEvent:function(D,E,G){var F=this.config[D.toLowerCase()];if(F&&F.event){return F.event.unsubscribe(E,G);}else{return false;}},toString:function(){var D="Config";if(this.owner){D+=" ["+this.owner.toString()+"]";}return D;},outputEventQueue:function(){var D="",G,E,F=this.eventQueue.length;for(E=0;E<F;E++){G=this.eventQueue[E];if(G){D+=G[0]+"="+G[1]+", ";}}return D;},destroy:function(){var E=this.config,D,F;for(D in E){if(B.hasOwnProperty(E,D)){F=E[D];F.event.unsubscribeAll();F.event=null;}}this.configChangedEvent.unsubscribeAll();this.configChangedEvent=null;this.owner=null;this.config=null;this.initialConfig=null;this.eventQueue=null;}};A.alreadySubscribed=function(E,H,I){var F=E.subscribers.length,D,G;if(F>0){G=F-1;do{D=E.subscribers[G];if(D&&D.obj==I&&D.fn==H){return true;}}while(G--);}return false;};YAHOO.lang.augmentProto(A,YAHOO.util.EventProvider);}());(function(){YAHOO.widget.Module=function(Q,P){if(Q){this.init(Q,P);}else{}};var F=YAHOO.util.Dom,D=YAHOO.util.Config,M=YAHOO.util.Event,L=YAHOO.util.CustomEvent,G=YAHOO.widget.Module,H,O,N,E,A={"BEFORE_INIT":"beforeInit","INIT":"init","APPEND":"append","BEFORE_RENDER":"beforeRender","RENDER":"render","CHANGE_HEADER":"changeHeader","CHANGE_BODY":"changeBody","CHANGE_FOOTER":"changeFooter","CHANGE_CONTENT":"changeContent","DESTORY":"destroy","BEFORE_SHOW":"beforeShow","SHOW":"show","BEFORE_HIDE":"beforeHide","HIDE":"hide"},I={"VISIBLE":{key:"visible",value:true,validator:YAHOO.lang.isBoolean},"EFFECT":{key:"effect",suppressEvent:true,supercedes:["visible"]},"MONITOR_RESIZE":{key:"monitorresize",value:true},"APPEND_TO_DOCUMENT_BODY":{key:"appendtodocumentbody",value:false}};G.IMG_ROOT=null;G.IMG_ROOT_SSL=null;G.CSS_MODULE="yui-module";G.CSS_HEADER="hd";G.CSS_BODY="bd";G.CSS_FOOTER="ft";G.RESIZE_MONITOR_SECURE_URL="javascript:false;";G.textResizeEvent=new L("textResize");function K(){if(!H){H=document.createElement("div");H.innerHTML=('<div class="'+G.CSS_HEADER+'"></div>'+'<div class="'+G.CSS_BODY+'"></div><div class="'+G.CSS_FOOTER+'"></div>');O=H.firstChild;N=O.nextSibling;E=N.nextSibling;}return H;}function J(){if(!O){K();}return(O.cloneNode(false));}function B(){if(!N){K();}return(N.cloneNode(false));}function C(){if(!E){K();}return(E.cloneNode(false));}G.prototype={constructor:G,element:null,header:null,body:null,footer:null,id:null,imageRoot:G.IMG_ROOT,initEvents:function(){var P=L.LIST;this.beforeInitEvent=this.createEvent(A.BEFORE_INIT);this.beforeInitEvent.signature=P;this.initEvent=this.createEvent(A.INIT);
-this.initEvent.signature=P;this.appendEvent=this.createEvent(A.APPEND);this.appendEvent.signature=P;this.beforeRenderEvent=this.createEvent(A.BEFORE_RENDER);this.beforeRenderEvent.signature=P;this.renderEvent=this.createEvent(A.RENDER);this.renderEvent.signature=P;this.changeHeaderEvent=this.createEvent(A.CHANGE_HEADER);this.changeHeaderEvent.signature=P;this.changeBodyEvent=this.createEvent(A.CHANGE_BODY);this.changeBodyEvent.signature=P;this.changeFooterEvent=this.createEvent(A.CHANGE_FOOTER);this.changeFooterEvent.signature=P;this.changeContentEvent=this.createEvent(A.CHANGE_CONTENT);this.changeContentEvent.signature=P;this.destroyEvent=this.createEvent(A.DESTORY);this.destroyEvent.signature=P;this.beforeShowEvent=this.createEvent(A.BEFORE_SHOW);this.beforeShowEvent.signature=P;this.showEvent=this.createEvent(A.SHOW);this.showEvent.signature=P;this.beforeHideEvent=this.createEvent(A.BEFORE_HIDE);this.beforeHideEvent.signature=P;this.hideEvent=this.createEvent(A.HIDE);this.hideEvent.signature=P;},platform:function(){var P=navigator.userAgent.toLowerCase();if(P.indexOf("windows")!=-1||P.indexOf("win32")!=-1){return"windows";}else{if(P.indexOf("macintosh")!=-1){return"mac";}else{return false;}}}(),browser:function(){var P=navigator.userAgent.toLowerCase();if(P.indexOf("opera")!=-1){return"opera";}else{if(P.indexOf("msie 7")!=-1){return"ie7";}else{if(P.indexOf("msie")!=-1){return"ie";}else{if(P.indexOf("safari")!=-1){return"safari";}else{if(P.indexOf("gecko")!=-1){return"gecko";}else{return false;}}}}}}(),isSecure:function(){if(window.location.href.toLowerCase().indexOf("https")===0){return true;}else{return false;}}(),initDefaultConfig:function(){this.cfg.addProperty(I.VISIBLE.key,{handler:this.configVisible,value:I.VISIBLE.value,validator:I.VISIBLE.validator});this.cfg.addProperty(I.EFFECT.key,{suppressEvent:I.EFFECT.suppressEvent,supercedes:I.EFFECT.supercedes});this.cfg.addProperty(I.MONITOR_RESIZE.key,{handler:this.configMonitorResize,value:I.MONITOR_RESIZE.value});this.cfg.addProperty(I.APPEND_TO_DOCUMENT_BODY.key,{value:I.APPEND_TO_DOCUMENT_BODY.value});},init:function(U,T){var R,V;this.initEvents();this.beforeInitEvent.fire(G);this.cfg=new D(this);if(this.isSecure){this.imageRoot=G.IMG_ROOT_SSL;}if(typeof U=="string"){R=U;U=document.getElementById(U);if(!U){U=(K()).cloneNode(false);U.id=R;}}this.element=U;if(U.id){this.id=U.id;}V=this.element.firstChild;if(V){var Q=false,P=false,S=false;do{if(1==V.nodeType){if(!Q&&F.hasClass(V,G.CSS_HEADER)){this.header=V;Q=true;}else{if(!P&&F.hasClass(V,G.CSS_BODY)){this.body=V;P=true;}else{if(!S&&F.hasClass(V,G.CSS_FOOTER)){this.footer=V;S=true;}}}}}while((V=V.nextSibling));}this.initDefaultConfig();F.addClass(this.element,G.CSS_MODULE);if(T){this.cfg.applyConfig(T,true);}if(!D.alreadySubscribed(this.renderEvent,this.cfg.fireQueue,this.cfg)){this.renderEvent.subscribe(this.cfg.fireQueue,this.cfg,true);}this.initEvent.fire(G);},initResizeMonitor:function(){var Q=(YAHOO.env.ua.gecko&&this.platform=="windows");if(Q){var P=this;setTimeout(function(){P._initResizeMonitor();},0);}else{this._initResizeMonitor();}},_initResizeMonitor:function(){var P,R,T;function V(){G.textResizeEvent.fire();}if(!YAHOO.env.ua.opera){R=F.get("_yuiResizeMonitor");var U=this._supportsCWResize();if(!R){R=document.createElement("iframe");if(this.isSecure&&G.RESIZE_MONITOR_SECURE_URL&&YAHOO.env.ua.ie){R.src=G.RESIZE_MONITOR_SECURE_URL;}if(!U){T=["<html><head><script ",'type="text/javascript">',"window.onresize=function(){window.parent.","YAHOO.widget.Module.textResizeEvent.","fire();};<","/script></head>","<body></body></html>"].join("");R.src="data:text/html;charset=utf-8,"+encodeURIComponent(T);}R.id="_yuiResizeMonitor";R.title="Text Resize Monitor";R.style.position="absolute";R.style.visibility="hidden";var Q=document.body,S=Q.firstChild;if(S){Q.insertBefore(R,S);}else{Q.appendChild(R);}R.style.width="10em";R.style.height="10em";R.style.top=(-1*R.offsetHeight)+"px";R.style.left=(-1*R.offsetWidth)+"px";R.style.borderWidth="0";R.style.visibility="visible";if(YAHOO.env.ua.webkit){P=R.contentWindow.document;P.open();P.close();}}if(R&&R.contentWindow){G.textResizeEvent.subscribe(this.onDomResize,this,true);if(!G.textResizeInitialized){if(U){if(!M.on(R.contentWindow,"resize",V)){M.on(R,"resize",V);}}G.textResizeInitialized=true;}this.resizeMonitor=R;}}},_supportsCWResize:function(){var P=true;if(YAHOO.env.ua.gecko&&YAHOO.env.ua.gecko<=1.8){P=false;}return P;},onDomResize:function(S,R){var Q=-1*this.resizeMonitor.offsetWidth,P=-1*this.resizeMonitor.offsetHeight;this.resizeMonitor.style.top=P+"px";this.resizeMonitor.style.left=Q+"px";},setHeader:function(Q){var P=this.header||(this.header=J());if(Q.nodeName){P.innerHTML="";P.appendChild(Q);}else{P.innerHTML=Q;}this.changeHeaderEvent.fire(Q);this.changeContentEvent.fire();},appendToHeader:function(Q){var P=this.header||(this.header=J());P.appendChild(Q);this.changeHeaderEvent.fire(Q);this.changeContentEvent.fire();},setBody:function(Q){var P=this.body||(this.body=B());if(Q.nodeName){P.innerHTML="";P.appendChild(Q);}else{P.innerHTML=Q;}this.changeBodyEvent.fire(Q);this.changeContentEvent.fire();},appendToBody:function(Q){var P=this.body||(this.body=B());P.appendChild(Q);this.changeBodyEvent.fire(Q);this.changeContentEvent.fire();},setFooter:function(Q){var P=this.footer||(this.footer=C());if(Q.nodeName){P.innerHTML="";P.appendChild(Q);}else{P.innerHTML=Q;}this.changeFooterEvent.fire(Q);this.changeContentEvent.fire();},appendToFooter:function(Q){var P=this.footer||(this.footer=C());P.appendChild(Q);this.changeFooterEvent.fire(Q);this.changeContentEvent.fire();},render:function(R,P){var S=this,T;function Q(U){if(typeof U=="string"){U=document.getElementById(U);}if(U){S._addToParent(U,S.element);S.appendEvent.fire();}}this.beforeRenderEvent.fire();if(!P){P=this.element;}if(R){Q(R);}else{if(!F.inDocument(this.element)){return false;}}if(this.header&&!F.inDocument(this.header)){T=P.firstChild;if(T){P.insertBefore(this.header,T);}else{P.appendChild(this.header);
-}}if(this.body&&!F.inDocument(this.body)){if(this.footer&&F.isAncestor(this.moduleElement,this.footer)){P.insertBefore(this.body,this.footer);}else{P.appendChild(this.body);}}if(this.footer&&!F.inDocument(this.footer)){P.appendChild(this.footer);}this.renderEvent.fire();return true;},destroy:function(){var P,Q;if(this.element){M.purgeElement(this.element,true);P=this.element.parentNode;}if(P){P.removeChild(this.element);}this.element=null;this.header=null;this.body=null;this.footer=null;G.textResizeEvent.unsubscribe(this.onDomResize,this);this.cfg.destroy();this.cfg=null;this.destroyEvent.fire();},show:function(){this.cfg.setProperty("visible",true);},hide:function(){this.cfg.setProperty("visible",false);},configVisible:function(Q,P,R){var S=P[0];if(S){this.beforeShowEvent.fire();F.setStyle(this.element,"display","block");this.showEvent.fire();}else{this.beforeHideEvent.fire();F.setStyle(this.element,"display","none");this.hideEvent.fire();}},configMonitorResize:function(R,Q,S){var P=Q[0];if(P){this.initResizeMonitor();}else{G.textResizeEvent.unsubscribe(this.onDomResize,this,true);this.resizeMonitor=null;}},_addToParent:function(P,Q){if(!this.cfg.getProperty("appendtodocumentbody")&&P===document.body&&P.firstChild){P.insertBefore(Q,P.firstChild);}else{P.appendChild(Q);}},toString:function(){return"Module "+this.id;}};YAHOO.lang.augmentProto(G,YAHOO.util.EventProvider);}());(function(){YAHOO.widget.Overlay=function(O,N){YAHOO.widget.Overlay.superclass.constructor.call(this,O,N);};var H=YAHOO.lang,L=YAHOO.util.CustomEvent,F=YAHOO.widget.Module,M=YAHOO.util.Event,E=YAHOO.util.Dom,C=YAHOO.util.Config,J=YAHOO.env.ua,B=YAHOO.widget.Overlay,G="subscribe",D="unsubscribe",I,A={"BEFORE_MOVE":"beforeMove","MOVE":"move"},K={"X":{key:"x",validator:H.isNumber,suppressEvent:true,supercedes:["iframe"]},"Y":{key:"y",validator:H.isNumber,suppressEvent:true,supercedes:["iframe"]},"XY":{key:"xy",suppressEvent:true,supercedes:["iframe"]},"CONTEXT":{key:"context",suppressEvent:true,supercedes:["iframe"]},"FIXED_CENTER":{key:"fixedcenter",value:false,validator:H.isBoolean,supercedes:["iframe","visible"]},"WIDTH":{key:"width",suppressEvent:true,supercedes:["context","fixedcenter","iframe"]},"HEIGHT":{key:"height",suppressEvent:true,supercedes:["context","fixedcenter","iframe"]},"AUTO_FILL_HEIGHT":{key:"autofillheight",supressEvent:true,supercedes:["height"],value:"body"},"ZINDEX":{key:"zindex",value:null},"CONSTRAIN_TO_VIEWPORT":{key:"constraintoviewport",value:false,validator:H.isBoolean,supercedes:["iframe","x","y","xy"]},"IFRAME":{key:"iframe",value:(J.ie==6?true:false),validator:H.isBoolean,supercedes:["zindex"]},"PREVENT_CONTEXT_OVERLAP":{key:"preventcontextoverlap",value:false,validator:H.isBoolean,supercedes:["constraintoviewport"]}};B.IFRAME_SRC="javascript:false;";B.IFRAME_OFFSET=3;B.VIEWPORT_OFFSET=10;B.TOP_LEFT="tl";B.TOP_RIGHT="tr";B.BOTTOM_LEFT="bl";B.BOTTOM_RIGHT="br";B.CSS_OVERLAY="yui-overlay";B.STD_MOD_RE=/^\s*?(body|footer|header)\s*?$/i;B.windowScrollEvent=new L("windowScroll");B.windowResizeEvent=new L("windowResize");B.windowScrollHandler=function(O){var N=M.getTarget(O);if(!N||N===window||N===window.document){if(J.ie){if(!window.scrollEnd){window.scrollEnd=-1;}clearTimeout(window.scrollEnd);window.scrollEnd=setTimeout(function(){B.windowScrollEvent.fire();},1);}else{B.windowScrollEvent.fire();}}};B.windowResizeHandler=function(N){if(J.ie){if(!window.resizeEnd){window.resizeEnd=-1;}clearTimeout(window.resizeEnd);window.resizeEnd=setTimeout(function(){B.windowResizeEvent.fire();},100);}else{B.windowResizeEvent.fire();}};B._initialized=null;if(B._initialized===null){M.on(window,"scroll",B.windowScrollHandler);M.on(window,"resize",B.windowResizeHandler);B._initialized=true;}B._TRIGGER_MAP={"windowScroll":B.windowScrollEvent,"windowResize":B.windowResizeEvent,"textResize":F.textResizeEvent};YAHOO.extend(B,F,{CONTEXT_TRIGGERS:[],init:function(O,N){B.superclass.init.call(this,O);this.beforeInitEvent.fire(B);E.addClass(this.element,B.CSS_OVERLAY);if(N){this.cfg.applyConfig(N,true);}if(this.platform=="mac"&&J.gecko){if(!C.alreadySubscribed(this.showEvent,this.showMacGeckoScrollbars,this)){this.showEvent.subscribe(this.showMacGeckoScrollbars,this,true);}if(!C.alreadySubscribed(this.hideEvent,this.hideMacGeckoScrollbars,this)){this.hideEvent.subscribe(this.hideMacGeckoScrollbars,this,true);}}this.initEvent.fire(B);},initEvents:function(){B.superclass.initEvents.call(this);var N=L.LIST;this.beforeMoveEvent=this.createEvent(A.BEFORE_MOVE);this.beforeMoveEvent.signature=N;this.moveEvent=this.createEvent(A.MOVE);this.moveEvent.signature=N;},initDefaultConfig:function(){B.superclass.initDefaultConfig.call(this);var N=this.cfg;N.addProperty(K.X.key,{handler:this.configX,validator:K.X.validator,suppressEvent:K.X.suppressEvent,supercedes:K.X.supercedes});N.addProperty(K.Y.key,{handler:this.configY,validator:K.Y.validator,suppressEvent:K.Y.suppressEvent,supercedes:K.Y.supercedes});N.addProperty(K.XY.key,{handler:this.configXY,suppressEvent:K.XY.suppressEvent,supercedes:K.XY.supercedes});N.addProperty(K.CONTEXT.key,{handler:this.configContext,suppressEvent:K.CONTEXT.suppressEvent,supercedes:K.CONTEXT.supercedes});N.addProperty(K.FIXED_CENTER.key,{handler:this.configFixedCenter,value:K.FIXED_CENTER.value,validator:K.FIXED_CENTER.validator,supercedes:K.FIXED_CENTER.supercedes});N.addProperty(K.WIDTH.key,{handler:this.configWidth,suppressEvent:K.WIDTH.suppressEvent,supercedes:K.WIDTH.supercedes});N.addProperty(K.HEIGHT.key,{handler:this.configHeight,suppressEvent:K.HEIGHT.suppressEvent,supercedes:K.HEIGHT.supercedes});N.addProperty(K.AUTO_FILL_HEIGHT.key,{handler:this.configAutoFillHeight,value:K.AUTO_FILL_HEIGHT.value,validator:this._validateAutoFill,suppressEvent:K.AUTO_FILL_HEIGHT.suppressEvent,supercedes:K.AUTO_FILL_HEIGHT.supercedes});N.addProperty(K.ZINDEX.key,{handler:this.configzIndex,value:K.ZINDEX.value});N.addProperty(K.CONSTRAIN_TO_VIEWPORT.key,{handler:this.configConstrainToViewport,value:K.CONSTRAIN_TO_VIEWPORT.value,validator:K.CONSTRAIN_TO_VIEWPORT.validator,supercedes:K.CONSTRAIN_TO_VIEWPORT.supercedes});
-N.addProperty(K.IFRAME.key,{handler:this.configIframe,value:K.IFRAME.value,validator:K.IFRAME.validator,supercedes:K.IFRAME.supercedes});N.addProperty(K.PREVENT_CONTEXT_OVERLAP.key,{value:K.PREVENT_CONTEXT_OVERLAP.value,validator:K.PREVENT_CONTEXT_OVERLAP.validator,supercedes:K.PREVENT_CONTEXT_OVERLAP.supercedes});},moveTo:function(N,O){this.cfg.setProperty("xy",[N,O]);},hideMacGeckoScrollbars:function(){E.replaceClass(this.element,"show-scrollbars","hide-scrollbars");},showMacGeckoScrollbars:function(){E.replaceClass(this.element,"hide-scrollbars","show-scrollbars");},configVisible:function(Q,N,W){var P=N[0],R=E.getStyle(this.element,"visibility"),X=this.cfg.getProperty("effect"),U=[],T=(this.platform=="mac"&&J.gecko),f=C.alreadySubscribed,V,O,d,b,a,Z,c,Y,S;if(R=="inherit"){d=this.element.parentNode;while(d.nodeType!=9&&d.nodeType!=11){R=E.getStyle(d,"visibility");if(R!="inherit"){break;}d=d.parentNode;}if(R=="inherit"){R="visible";}}if(X){if(X instanceof Array){Y=X.length;for(b=0;b<Y;b++){V=X[b];U[U.length]=V.effect(this,V.duration);}}else{U[U.length]=X.effect(this,X.duration);}}if(P){if(T){this.showMacGeckoScrollbars();}if(X){if(P){if(R!="visible"||R===""){this.beforeShowEvent.fire();S=U.length;for(a=0;a<S;a++){O=U[a];if(a===0&&!f(O.animateInCompleteEvent,this.showEvent.fire,this.showEvent)){O.animateInCompleteEvent.subscribe(this.showEvent.fire,this.showEvent,true);}O.animateIn();}}}}else{if(R!="visible"||R===""){this.beforeShowEvent.fire();E.setStyle(this.element,"visibility","visible");this.cfg.refireEvent("iframe");this.showEvent.fire();}}}else{if(T){this.hideMacGeckoScrollbars();}if(X){if(R=="visible"){this.beforeHideEvent.fire();S=U.length;for(Z=0;Z<S;Z++){c=U[Z];if(Z===0&&!f(c.animateOutCompleteEvent,this.hideEvent.fire,this.hideEvent)){c.animateOutCompleteEvent.subscribe(this.hideEvent.fire,this.hideEvent,true);}c.animateOut();}}else{if(R===""){E.setStyle(this.element,"visibility","hidden");}}}else{if(R=="visible"||R===""){this.beforeHideEvent.fire();E.setStyle(this.element,"visibility","hidden");this.hideEvent.fire();}}}},doCenterOnDOMEvent:function(){if(this.cfg.getProperty("visible")){this.center();}},configFixedCenter:function(R,P,S){var T=P[0],O=C.alreadySubscribed,Q=B.windowResizeEvent,N=B.windowScrollEvent;if(T){this.center();if(!O(this.beforeShowEvent,this.center,this)){this.beforeShowEvent.subscribe(this.center);}if(!O(Q,this.doCenterOnDOMEvent,this)){Q.subscribe(this.doCenterOnDOMEvent,this,true);}if(!O(N,this.doCenterOnDOMEvent,this)){N.subscribe(this.doCenterOnDOMEvent,this,true);}}else{this.beforeShowEvent.unsubscribe(this.center);Q.unsubscribe(this.doCenterOnDOMEvent,this);N.unsubscribe(this.doCenterOnDOMEvent,this);}},configHeight:function(Q,O,R){var N=O[0],P=this.element;E.setStyle(P,"height",N);this.cfg.refireEvent("iframe");},configAutoFillHeight:function(Q,P,R){var O=P[0],N=this.cfg.getProperty("autofillheight");this.cfg.unsubscribeFromConfigEvent("height",this._autoFillOnHeightChange);F.textResizeEvent.unsubscribe("height",this._autoFillOnHeightChange);if(N&&O!==N&&this[N]){E.setStyle(this[N],"height","");}if(O){O=H.trim(O.toLowerCase());this.cfg.subscribeToConfigEvent("height",this._autoFillOnHeightChange,this[O],this);F.textResizeEvent.subscribe(this._autoFillOnHeightChange,this[O],this);this.cfg.setProperty("autofillheight",O,true);}},configWidth:function(Q,N,R){var P=N[0],O=this.element;E.setStyle(O,"width",P);this.cfg.refireEvent("iframe");},configzIndex:function(P,N,Q){var R=N[0],O=this.element;if(!R){R=E.getStyle(O,"zIndex");if(!R||isNaN(R)){R=0;}}if(this.iframe||this.cfg.getProperty("iframe")===true){if(R<=0){R=1;}}E.setStyle(O,"zIndex",R);this.cfg.setProperty("zIndex",R,true);if(this.iframe){this.stackIframe();}},configXY:function(P,O,Q){var S=O[0],N=S[0],R=S[1];this.cfg.setProperty("x",N);this.cfg.setProperty("y",R);this.beforeMoveEvent.fire([N,R]);N=this.cfg.getProperty("x");R=this.cfg.getProperty("y");this.cfg.refireEvent("iframe");this.moveEvent.fire([N,R]);},configX:function(P,O,Q){var N=O[0],R=this.cfg.getProperty("y");this.cfg.setProperty("x",N,true);this.cfg.setProperty("y",R,true);this.beforeMoveEvent.fire([N,R]);N=this.cfg.getProperty("x");R=this.cfg.getProperty("y");E.setX(this.element,N,true);this.cfg.setProperty("xy",[N,R],true);this.cfg.refireEvent("iframe");this.moveEvent.fire([N,R]);},configY:function(P,O,Q){var N=this.cfg.getProperty("x"),R=O[0];this.cfg.setProperty("x",N,true);this.cfg.setProperty("y",R,true);this.beforeMoveEvent.fire([N,R]);N=this.cfg.getProperty("x");R=this.cfg.getProperty("y");E.setY(this.element,R,true);this.cfg.setProperty("xy",[N,R],true);this.cfg.refireEvent("iframe");this.moveEvent.fire([N,R]);},showIframe:function(){var O=this.iframe,N;if(O){N=this.element.parentNode;if(N!=O.parentNode){this._addToParent(N,O);}O.style.display="block";}},hideIframe:function(){if(this.iframe){this.iframe.style.display="none";}},syncIframe:function(){var N=this.iframe,P=this.element,R=B.IFRAME_OFFSET,O=(R*2),Q;if(N){N.style.width=(P.offsetWidth+O+"px");N.style.height=(P.offsetHeight+O+"px");Q=this.cfg.getProperty("xy");if(!H.isArray(Q)||(isNaN(Q[0])||isNaN(Q[1]))){this.syncPosition();Q=this.cfg.getProperty("xy");}E.setXY(N,[(Q[0]-R),(Q[1]-R)]);}},stackIframe:function(){if(this.iframe){var N=E.getStyle(this.element,"zIndex");if(!YAHOO.lang.isUndefined(N)&&!isNaN(N)){E.setStyle(this.iframe,"zIndex",(N-1));}}},configIframe:function(Q,P,R){var N=P[0];function S(){var U=this.iframe,V=this.element,W;if(!U){if(!I){I=document.createElement("iframe");if(this.isSecure){I.src=B.IFRAME_SRC;}if(J.ie){I.style.filter="alpha(opacity=0)";I.frameBorder=0;}else{I.style.opacity="0";}I.style.position="absolute";I.style.border="none";I.style.margin="0";I.style.padding="0";I.style.display="none";}U=I.cloneNode(false);W=V.parentNode;var T=W||document.body;this._addToParent(T,U);this.iframe=U;}this.showIframe();this.syncIframe();this.stackIframe();if(!this._hasIframeEventListeners){this.showEvent.subscribe(this.showIframe);this.hideEvent.subscribe(this.hideIframe);
-this.changeContentEvent.subscribe(this.syncIframe);this._hasIframeEventListeners=true;}}function O(){S.call(this);this.beforeShowEvent.unsubscribe(O);this._iframeDeferred=false;}if(N){if(this.cfg.getProperty("visible")){S.call(this);}else{if(!this._iframeDeferred){this.beforeShowEvent.subscribe(O);this._iframeDeferred=true;}}}else{this.hideIframe();if(this._hasIframeEventListeners){this.showEvent.unsubscribe(this.showIframe);this.hideEvent.unsubscribe(this.hideIframe);this.changeContentEvent.unsubscribe(this.syncIframe);this._hasIframeEventListeners=false;}}},_primeXYFromDOM:function(){if(YAHOO.lang.isUndefined(this.cfg.getProperty("xy"))){this.syncPosition();this.cfg.refireEvent("xy");this.beforeShowEvent.unsubscribe(this._primeXYFromDOM);}},configConstrainToViewport:function(O,N,P){var Q=N[0];if(Q){if(!C.alreadySubscribed(this.beforeMoveEvent,this.enforceConstraints,this)){this.beforeMoveEvent.subscribe(this.enforceConstraints,this,true);}if(!C.alreadySubscribed(this.beforeShowEvent,this._primeXYFromDOM)){this.beforeShowEvent.subscribe(this._primeXYFromDOM);}}else{this.beforeShowEvent.unsubscribe(this._primeXYFromDOM);this.beforeMoveEvent.unsubscribe(this.enforceConstraints,this);}},configContext:function(S,R,O){var V=R[0],P,N,T,Q,U=this.CONTEXT_TRIGGERS;if(V){P=V[0];N=V[1];T=V[2];Q=V[3];if(U&&U.length>0){Q=(Q||[]).concat(U);}if(P){if(typeof P=="string"){this.cfg.setProperty("context",[document.getElementById(P),N,T,Q],true);}if(N&&T){this.align(N,T);}if(this._contextTriggers){this._processTriggers(this._contextTriggers,D,this._alignOnTrigger);}if(Q){this._processTriggers(Q,G,this._alignOnTrigger);this._contextTriggers=Q;}}}},_alignOnTrigger:function(O,N){this.align();},_findTriggerCE:function(N){var O=null;if(N instanceof L){O=N;}else{if(B._TRIGGER_MAP[N]){O=B._TRIGGER_MAP[N];}}return O;},_processTriggers:function(R,T,Q){var P,S;for(var O=0,N=R.length;O<N;++O){P=R[O];S=this._findTriggerCE(P);if(S){S[T](Q,this,true);}else{this[T](P,Q);}}},align:function(O,N){var T=this.cfg.getProperty("context"),S=this,R,Q,U;function P(V,W){switch(O){case B.TOP_LEFT:S.moveTo(W,V);break;case B.TOP_RIGHT:S.moveTo((W-Q.offsetWidth),V);break;case B.BOTTOM_LEFT:S.moveTo(W,(V-Q.offsetHeight));break;case B.BOTTOM_RIGHT:S.moveTo((W-Q.offsetWidth),(V-Q.offsetHeight));break;}}if(T){R=T[0];Q=this.element;S=this;if(!O){O=T[1];}if(!N){N=T[2];}if(Q&&R){U=E.getRegion(R);switch(N){case B.TOP_LEFT:P(U.top,U.left);break;case B.TOP_RIGHT:P(U.top,U.right);break;case B.BOTTOM_LEFT:P(U.bottom,U.left);break;case B.BOTTOM_RIGHT:P(U.bottom,U.right);break;}}}},enforceConstraints:function(O,N,P){var R=N[0];var Q=this.getConstrainedXY(R[0],R[1]);this.cfg.setProperty("x",Q[0],true);this.cfg.setProperty("y",Q[1],true);this.cfg.setProperty("xy",Q,true);},getConstrainedX:function(U){var R=this,N=R.element,d=N.offsetWidth,b=B.VIEWPORT_OFFSET,g=E.getViewportWidth(),c=E.getDocumentScrollLeft(),X=(d+b<g),a=this.cfg.getProperty("context"),P,W,i,S=false,e,V,f,O,h=U,T={"tltr":true,"blbr":true,"brbl":true,"trtl":true};var Y=function(){var j;if((R.cfg.getProperty("x")-c)>W){j=(W-d);}else{j=(W+i);}R.cfg.setProperty("x",(j+c),true);return j;};var Q=function(){if((R.cfg.getProperty("x")-c)>W){return(V-b);}else{return(e-b);}};var Z=function(){var j=Q(),k;if(d>j){if(S){Y();}else{Y();S=true;k=Z();}}return k;};if(this.cfg.getProperty("preventcontextoverlap")&&a&&T[(a[1]+a[2])]){if(X){P=a[0];W=E.getX(P)-c;i=P.offsetWidth;e=W;V=(g-(W+i));Z();}h=this.cfg.getProperty("x");}else{if(X){f=c+b;O=c+g-d-b;if(U<f){h=f;}else{if(U>O){h=O;}}}else{h=b+c;}}return h;},getConstrainedY:function(Y){var V=this,O=V.element,h=O.offsetHeight,g=B.VIEWPORT_OFFSET,c=E.getViewportHeight(),f=E.getDocumentScrollTop(),d=(h+g<c),e=this.cfg.getProperty("context"),T,Z,a,W=false,U,P,b,R,N=Y,X={"trbr":true,"tlbl":true,"bltl":true,"brtr":true};var S=function(){var j;if((V.cfg.getProperty("y")-f)>Z){j=(Z-h);}else{j=(Z+a);}V.cfg.setProperty("y",(j+f),true);return j;};var Q=function(){if((V.cfg.getProperty("y")-f)>Z){return(P-g);}else{return(U-g);}};var i=function(){var k=Q(),j;if(h>k){if(W){S();}else{S();W=true;j=i();}}return j;};if(this.cfg.getProperty("preventcontextoverlap")&&e&&X[(e[1]+e[2])]){if(d){T=e[0];a=T.offsetHeight;Z=(E.getY(T)-f);U=Z;P=(c-(Z+a));i();}N=V.cfg.getProperty("y");}else{if(d){b=f+g;R=f+c-h-g;if(Y<b){N=b;}else{if(Y>R){N=R;}}}else{N=g+f;}}return N;},getConstrainedXY:function(N,O){return[this.getConstrainedX(N),this.getConstrainedY(O)];},center:function(){var Q=B.VIEWPORT_OFFSET,R=this.element.offsetWidth,P=this.element.offsetHeight,O=E.getViewportWidth(),S=E.getViewportHeight(),N,T;if(R<O){N=(O/2)-(R/2)+E.getDocumentScrollLeft();}else{N=Q+E.getDocumentScrollLeft();}if(P<S){T=(S/2)-(P/2)+E.getDocumentScrollTop();}else{T=Q+E.getDocumentScrollTop();}this.cfg.setProperty("xy",[parseInt(N,10),parseInt(T,10)]);this.cfg.refireEvent("iframe");},syncPosition:function(){var N=E.getXY(this.element);this.cfg.setProperty("x",N[0],true);this.cfg.setProperty("y",N[1],true);this.cfg.setProperty("xy",N,true);},onDomResize:function(P,O){var N=this;B.superclass.onDomResize.call(this,P,O);setTimeout(function(){N.syncPosition();N.cfg.refireEvent("iframe");N.cfg.refireEvent("context");},0);},_getComputedHeight:(function(){if(document.defaultView&&document.defaultView.getComputedStyle){return function(O){var N=null;if(O.ownerDocument&&O.ownerDocument.defaultView){var P=O.ownerDocument.defaultView.getComputedStyle(O,"");if(P){N=parseInt(P.height,10);}}return(H.isNumber(N))?N:null;};}else{return function(O){var N=null;if(O.style.pixelHeight){N=O.style.pixelHeight;}return(H.isNumber(N))?N:null;};}})(),_validateAutoFillHeight:function(N){return(!N)||(H.isString(N)&&B.STD_MOD_RE.test(N));},_autoFillOnHeightChange:function(P,N,O){this.fillHeight(O);},_getPreciseHeight:function(O){var N=O.offsetHeight;if(O.getBoundingClientRect){var P=O.getBoundingClientRect();N=P.bottom-P.top;}return N;},fillHeight:function(Q){if(Q){var O=this.innerElement||this.element,N=[this.header,this.body,this.footer],U,V=0,W=0,S=0,P=false;
-for(var T=0,R=N.length;T<R;T++){U=N[T];if(U){if(Q!==U){W+=this._getPreciseHeight(U);}else{P=true;}}}if(P){if(J.ie||J.opera){E.setStyle(Q,"height",0+"px");}V=this._getComputedHeight(O);if(V===null){E.addClass(O,"yui-override-padding");V=O.clientHeight;E.removeClass(O,"yui-override-padding");}S=V-W;E.setStyle(Q,"height",S+"px");if(Q.offsetHeight!=S){S=S-(Q.offsetHeight-S);}E.setStyle(Q,"height",S+"px");}}},bringToTop:function(){var R=[],Q=this.element;function U(Y,X){var a=E.getStyle(Y,"zIndex"),Z=E.getStyle(X,"zIndex"),W=(!a||isNaN(a))?0:parseInt(a,10),V=(!Z||isNaN(Z))?0:parseInt(Z,10);if(W>V){return -1;}else{if(W<V){return 1;}else{return 0;}}}function P(X){var W=E.hasClass(X,B.CSS_OVERLAY),V=YAHOO.widget.Panel;if(W&&!E.isAncestor(Q,X)){if(V&&E.hasClass(X,V.CSS_PANEL)){R[R.length]=X.parentNode;}else{R[R.length]=X;}}}E.getElementsBy(P,"DIV",document.body);R.sort(U);var N=R[0],T;if(N){T=E.getStyle(N,"zIndex");if(!isNaN(T)){var S=false;if(N!=Q){S=true;}else{if(R.length>1){var O=E.getStyle(R[1],"zIndex");if(!isNaN(O)&&(T==O)){S=true;}}}if(S){this.cfg.setProperty("zindex",(parseInt(T,10)+2));}}}},destroy:function(){if(this.iframe){this.iframe.parentNode.removeChild(this.iframe);}this.iframe=null;B.windowResizeEvent.unsubscribe(this.doCenterOnDOMEvent,this);B.windowScrollEvent.unsubscribe(this.doCenterOnDOMEvent,this);F.textResizeEvent.unsubscribe(this._autoFillOnHeightChange);B.superclass.destroy.call(this);},toString:function(){return"Overlay "+this.id;}});}());(function(){YAHOO.widget.OverlayManager=function(G){this.init(G);};var D=YAHOO.widget.Overlay,C=YAHOO.util.Event,E=YAHOO.util.Dom,B=YAHOO.util.Config,F=YAHOO.util.CustomEvent,A=YAHOO.widget.OverlayManager;A.CSS_FOCUSED="focused";A.prototype={constructor:A,overlays:null,initDefaultConfig:function(){this.cfg.addProperty("overlays",{suppressEvent:true});this.cfg.addProperty("focusevent",{value:"mousedown"});},init:function(I){this.cfg=new B(this);this.initDefaultConfig();if(I){this.cfg.applyConfig(I,true);}this.cfg.fireQueue();var H=null;this.getActive=function(){return H;};this.focus=function(J){var K=this.find(J);if(K){K.focus();}};this.remove=function(K){var M=this.find(K),J;if(M){if(H==M){H=null;}var L=(M.element===null&&M.cfg===null)?true:false;if(!L){J=E.getStyle(M.element,"zIndex");M.cfg.setProperty("zIndex",-1000,true);}this.overlays.sort(this.compareZIndexDesc);this.overlays=this.overlays.slice(0,(this.overlays.length-1));M.hideEvent.unsubscribe(M.blur);M.destroyEvent.unsubscribe(this._onOverlayDestroy,M);M.focusEvent.unsubscribe(this._onOverlayFocusHandler,M);M.blurEvent.unsubscribe(this._onOverlayBlurHandler,M);if(!L){C.removeListener(M.element,this.cfg.getProperty("focusevent"),this._onOverlayElementFocus);M.cfg.setProperty("zIndex",J,true);M.cfg.setProperty("manager",null);}if(M.focusEvent._managed){M.focusEvent=null;}if(M.blurEvent._managed){M.blurEvent=null;}if(M.focus._managed){M.focus=null;}if(M.blur._managed){M.blur=null;}}};this.blurAll=function(){var K=this.overlays.length,J;if(K>0){J=K-1;do{this.overlays[J].blur();}while(J--);}};this._manageBlur=function(J){var K=false;if(H==J){E.removeClass(H.element,A.CSS_FOCUSED);H=null;K=true;}return K;};this._manageFocus=function(J){var K=false;if(H!=J){if(H){H.blur();}H=J;this.bringToTop(H);E.addClass(H.element,A.CSS_FOCUSED);K=true;}return K;};var G=this.cfg.getProperty("overlays");if(!this.overlays){this.overlays=[];}if(G){this.register(G);this.overlays.sort(this.compareZIndexDesc);}},_onOverlayElementFocus:function(I){var G=C.getTarget(I),H=this.close;if(H&&(G==H||E.isAncestor(H,G))){this.blur();}else{this.focus();}},_onOverlayDestroy:function(H,G,I){this.remove(I);},_onOverlayFocusHandler:function(H,G,I){this._manageFocus(I);},_onOverlayBlurHandler:function(H,G,I){this._manageBlur(I);},_bindFocus:function(G){var H=this;if(!G.focusEvent){G.focusEvent=G.createEvent("focus");G.focusEvent.signature=F.LIST;G.focusEvent._managed=true;}else{G.focusEvent.subscribe(H._onOverlayFocusHandler,G,H);}if(!G.focus){C.on(G.element,H.cfg.getProperty("focusevent"),H._onOverlayElementFocus,null,G);G.focus=function(){if(H._manageFocus(this)){if(this.cfg.getProperty("visible")&&this.focusFirst){this.focusFirst();}this.focusEvent.fire();}};G.focus._managed=true;}},_bindBlur:function(G){var H=this;if(!G.blurEvent){G.blurEvent=G.createEvent("blur");G.blurEvent.signature=F.LIST;G.focusEvent._managed=true;}else{G.blurEvent.subscribe(H._onOverlayBlurHandler,G,H);}if(!G.blur){G.blur=function(){if(H._manageBlur(this)){this.blurEvent.fire();}};G.blur._managed=true;}G.hideEvent.subscribe(G.blur);},_bindDestroy:function(G){var H=this;G.destroyEvent.subscribe(H._onOverlayDestroy,G,H);},_syncZIndex:function(G){var H=E.getStyle(G.element,"zIndex");if(!isNaN(H)){G.cfg.setProperty("zIndex",parseInt(H,10));}else{G.cfg.setProperty("zIndex",0);}},register:function(G){var K,J=false,H,I;if(G instanceof D){G.cfg.addProperty("manager",{value:this});this._bindFocus(G);this._bindBlur(G);this._bindDestroy(G);this._syncZIndex(G);this.overlays.push(G);this.bringToTop(G);J=true;}else{if(G instanceof Array){for(H=0,I=G.length;H<I;H++){J=this.register(G[H])||J;}}}return J;},bringToTop:function(M){var I=this.find(M),L,G,J;if(I){J=this.overlays;J.sort(this.compareZIndexDesc);G=J[0];if(G){L=E.getStyle(G.element,"zIndex");if(!isNaN(L)){var K=false;if(G!==I){K=true;}else{if(J.length>1){var H=E.getStyle(J[1].element,"zIndex");if(!isNaN(H)&&(L==H)){K=true;}}}if(K){I.cfg.setProperty("zindex",(parseInt(L,10)+2));}}J.sort(this.compareZIndexDesc);}}},find:function(G){var K=G instanceof D,I=this.overlays,M=I.length,J=null,L,H;if(K||typeof G=="string"){for(H=M-1;H>=0;H--){L=I[H];if((K&&(L===G))||(L.id==G)){J=L;break;}}}return J;},compareZIndexDesc:function(J,I){var H=(J.cfg)?J.cfg.getProperty("zIndex"):null,G=(I.cfg)?I.cfg.getProperty("zIndex"):null;if(H===null&&G===null){return 0;}else{if(H===null){return 1;}else{if(G===null){return -1;}else{if(H>G){return -1;}else{if(H<G){return 1;}else{return 0;}}}}}},showAll:function(){var H=this.overlays,I=H.length,G;
-for(G=I-1;G>=0;G--){H[G].show();}},hideAll:function(){var H=this.overlays,I=H.length,G;for(G=I-1;G>=0;G--){H[G].hide();}},toString:function(){return"OverlayManager";}};}());(function(){YAHOO.widget.Tooltip=function(N,M){YAHOO.widget.Tooltip.superclass.constructor.call(this,N,M);};var E=YAHOO.lang,L=YAHOO.util.Event,K=YAHOO.util.CustomEvent,C=YAHOO.util.Dom,G=YAHOO.widget.Tooltip,F,H={"PREVENT_OVERLAP":{key:"preventoverlap",value:true,validator:E.isBoolean,supercedes:["x","y","xy"]},"SHOW_DELAY":{key:"showdelay",value:200,validator:E.isNumber},"AUTO_DISMISS_DELAY":{key:"autodismissdelay",value:5000,validator:E.isNumber},"HIDE_DELAY":{key:"hidedelay",value:250,validator:E.isNumber},"TEXT":{key:"text",suppressEvent:true},"CONTAINER":{key:"container"},"DISABLED":{key:"disabled",value:false,suppressEvent:true}},A={"CONTEXT_MOUSE_OVER":"contextMouseOver","CONTEXT_MOUSE_OUT":"contextMouseOut","CONTEXT_TRIGGER":"contextTrigger"};G.CSS_TOOLTIP="yui-tt";function I(N,M,O){var R=O[0],P=O[1],Q=this.cfg,S=Q.getProperty("width");if(S==P){Q.setProperty("width",R);}}function D(N,M){var O=document.body,S=this.cfg,R=S.getProperty("width"),P,Q;if((!R||R=="auto")&&(S.getProperty("container")!=O||S.getProperty("x")>=C.getViewportWidth()||S.getProperty("y")>=C.getViewportHeight())){Q=this.element.cloneNode(true);Q.style.visibility="hidden";Q.style.top="0px";Q.style.left="0px";O.appendChild(Q);P=(Q.offsetWidth+"px");O.removeChild(Q);Q=null;S.setProperty("width",P);S.refireEvent("xy");this.subscribe("hide",I,[(R||""),P]);}}function B(N,M,O){this.render(O);}function J(){L.onDOMReady(B,this.cfg.getProperty("container"),this);}YAHOO.extend(G,YAHOO.widget.Overlay,{init:function(N,M){G.superclass.init.call(this,N);this.beforeInitEvent.fire(G);C.addClass(this.element,G.CSS_TOOLTIP);if(M){this.cfg.applyConfig(M,true);}this.cfg.queueProperty("visible",false);this.cfg.queueProperty("constraintoviewport",true);this.setBody("");this.subscribe("beforeShow",D);this.subscribe("init",J);this.subscribe("render",this.onRender);this.initEvent.fire(G);},initEvents:function(){G.superclass.initEvents.call(this);var M=K.LIST;this.contextMouseOverEvent=this.createEvent(A.CONTEXT_MOUSE_OVER);this.contextMouseOverEvent.signature=M;this.contextMouseOutEvent=this.createEvent(A.CONTEXT_MOUSE_OUT);this.contextMouseOutEvent.signature=M;this.contextTriggerEvent=this.createEvent(A.CONTEXT_TRIGGER);this.contextTriggerEvent.signature=M;},initDefaultConfig:function(){G.superclass.initDefaultConfig.call(this);this.cfg.addProperty(H.PREVENT_OVERLAP.key,{value:H.PREVENT_OVERLAP.value,validator:H.PREVENT_OVERLAP.validator,supercedes:H.PREVENT_OVERLAP.supercedes});this.cfg.addProperty(H.SHOW_DELAY.key,{handler:this.configShowDelay,value:200,validator:H.SHOW_DELAY.validator});this.cfg.addProperty(H.AUTO_DISMISS_DELAY.key,{handler:this.configAutoDismissDelay,value:H.AUTO_DISMISS_DELAY.value,validator:H.AUTO_DISMISS_DELAY.validator});this.cfg.addProperty(H.HIDE_DELAY.key,{handler:this.configHideDelay,value:H.HIDE_DELAY.value,validator:H.HIDE_DELAY.validator});this.cfg.addProperty(H.TEXT.key,{handler:this.configText,suppressEvent:H.TEXT.suppressEvent});this.cfg.addProperty(H.CONTAINER.key,{handler:this.configContainer,value:document.body});this.cfg.addProperty(H.DISABLED.key,{handler:this.configContainer,value:H.DISABLED.value,supressEvent:H.DISABLED.suppressEvent});},configText:function(N,M,O){var P=M[0];if(P){this.setBody(P);}},configContainer:function(O,N,P){var M=N[0];if(typeof M=="string"){this.cfg.setProperty("container",document.getElementById(M),true);}},_removeEventListeners:function(){var P=this._context,M,O,N;if(P){M=P.length;if(M>0){N=M-1;do{O=P[N];L.removeListener(O,"mouseover",this.onContextMouseOver);L.removeListener(O,"mousemove",this.onContextMouseMove);L.removeListener(O,"mouseout",this.onContextMouseOut);}while(N--);}}},configContext:function(R,N,S){var Q=N[0],T,M,P,O;if(Q){if(!(Q instanceof Array)){if(typeof Q=="string"){this.cfg.setProperty("context",[document.getElementById(Q)],true);}else{this.cfg.setProperty("context",[Q],true);}Q=this.cfg.getProperty("context");}this._removeEventListeners();this._context=Q;T=this._context;if(T){M=T.length;if(M>0){O=M-1;do{P=T[O];L.on(P,"mouseover",this.onContextMouseOver,this);L.on(P,"mousemove",this.onContextMouseMove,this);L.on(P,"mouseout",this.onContextMouseOut,this);}while(O--);}}}},onContextMouseMove:function(N,M){M.pageX=L.getPageX(N);M.pageY=L.getPageY(N);},onContextMouseOver:function(O,N){var M=this;if(M.title){N._tempTitle=M.title;M.title="";}if(N.fireEvent("contextMouseOver",M,O)!==false&&!N.cfg.getProperty("disabled")){if(N.hideProcId){clearTimeout(N.hideProcId);N.hideProcId=null;}L.on(M,"mousemove",N.onContextMouseMove,N);N.showProcId=N.doShow(O,M);}},onContextMouseOut:function(O,N){var M=this;if(N._tempTitle){M.title=N._tempTitle;N._tempTitle=null;}if(N.showProcId){clearTimeout(N.showProcId);N.showProcId=null;}if(N.hideProcId){clearTimeout(N.hideProcId);N.hideProcId=null;}N.fireEvent("contextMouseOut",M,O);N.hideProcId=setTimeout(function(){N.hide();},N.cfg.getProperty("hidedelay"));},doShow:function(O,M){var P=25,N=this;if(YAHOO.env.ua.opera&&M.tagName&&M.tagName.toUpperCase()=="A"){P+=12;}return setTimeout(function(){var Q=N.cfg.getProperty("text");if(N._tempTitle&&(Q===""||YAHOO.lang.isUndefined(Q)||YAHOO.lang.isNull(Q))){N.setBody(N._tempTitle);}else{N.cfg.refireEvent("text");}N.moveTo(N.pageX,N.pageY+P);if(N.cfg.getProperty("preventoverlap")){N.preventOverlap(N.pageX,N.pageY);}L.removeListener(M,"mousemove",N.onContextMouseMove);N.contextTriggerEvent.fire(M);N.show();N.hideProcId=N.doHide();},this.cfg.getProperty("showdelay"));},doHide:function(){var M=this;return setTimeout(function(){M.hide();},this.cfg.getProperty("autodismissdelay"));},preventOverlap:function(Q,P){var M=this.element.offsetHeight,O=new YAHOO.util.Point(Q,P),N=C.getRegion(this.element);N.top-=5;N.left-=5;N.right+=5;N.bottom+=5;if(N.contains(O)){this.cfg.setProperty("y",(P-M-5));}},onRender:function(Q,P){function R(){var U=this.element,T=this._shadow;
-if(T){T.style.width=(U.offsetWidth+6)+"px";T.style.height=(U.offsetHeight+1)+"px";}}function N(){C.addClass(this._shadow,"yui-tt-shadow-visible");}function M(){C.removeClass(this._shadow,"yui-tt-shadow-visible");}function S(){var V=this._shadow,U,T,X,W;if(!V){U=this.element;T=YAHOO.widget.Module;X=YAHOO.env.ua.ie;W=this;if(!F){F=document.createElement("div");F.className="yui-tt-shadow";}V=F.cloneNode(false);U.appendChild(V);this._shadow=V;N.call(this);this.subscribe("beforeShow",N);this.subscribe("beforeHide",M);if(X==6||(X==7&&document.compatMode=="BackCompat")){window.setTimeout(function(){R.call(W);},0);this.cfg.subscribeToConfigEvent("width",R);this.cfg.subscribeToConfigEvent("height",R);this.subscribe("changeContent",R);T.textResizeEvent.subscribe(R,this,true);this.subscribe("destroy",function(){T.textResizeEvent.unsubscribe(R,this);});}}}function O(){S.call(this);this.unsubscribe("beforeShow",O);}if(this.cfg.getProperty("visible")){S.call(this);}else{this.subscribe("beforeShow",O);}},destroy:function(){this._removeEventListeners();G.superclass.destroy.call(this);},toString:function(){return"Tooltip "+this.id;}});}());(function(){YAHOO.widget.Panel=function(V,U){YAHOO.widget.Panel.superclass.constructor.call(this,V,U);};var S=null;var E=YAHOO.lang,F=YAHOO.util,A=F.Dom,T=F.Event,M=F.CustomEvent,K=YAHOO.util.KeyListener,I=F.Config,H=YAHOO.widget.Overlay,O=YAHOO.widget.Panel,L=YAHOO.env.ua,P=(L.ie==6||(L.ie==7&&document.compatMode=="BackCompat")),G,Q,C,D={"SHOW_MASK":"showMask","HIDE_MASK":"hideMask","DRAG":"drag"},N={"CLOSE":{key:"close",value:true,validator:E.isBoolean,supercedes:["visible"]},"DRAGGABLE":{key:"draggable",value:(F.DD?true:false),validator:E.isBoolean,supercedes:["visible"]},"DRAG_ONLY":{key:"dragonly",value:false,validator:E.isBoolean,supercedes:["draggable"]},"UNDERLAY":{key:"underlay",value:"shadow",supercedes:["visible"]},"MODAL":{key:"modal",value:false,validator:E.isBoolean,supercedes:["visible","zindex"]},"KEY_LISTENERS":{key:"keylisteners",suppressEvent:true,supercedes:["visible"]},"STRINGS":{key:"strings",supercedes:["close"],validator:E.isObject,value:{close:"Close"}}};O.CSS_PANEL="yui-panel";O.CSS_PANEL_CONTAINER="yui-panel-container";O.FOCUSABLE=["a","button","select","textarea","input","iframe"];function J(V,U){if(!this.header&&this.cfg.getProperty("draggable")){this.setHeader("&#160;");}}function R(V,U,W){var Z=W[0],X=W[1],Y=this.cfg,a=Y.getProperty("width");if(a==X){Y.setProperty("width",Z);}this.unsubscribe("hide",R,W);}function B(V,U){var Z=YAHOO.env.ua.ie,Y,X,W;if(Z==6||(Z==7&&document.compatMode=="BackCompat")){Y=this.cfg;X=Y.getProperty("width");if(!X||X=="auto"){W=(this.element.offsetWidth+"px");Y.setProperty("width",W);this.subscribe("hide",R,[(X||""),W]);}}}YAHOO.extend(O,H,{init:function(V,U){O.superclass.init.call(this,V);this.beforeInitEvent.fire(O);A.addClass(this.element,O.CSS_PANEL);this.buildWrapper();if(U){this.cfg.applyConfig(U,true);}this.subscribe("showMask",this._addFocusHandlers);this.subscribe("hideMask",this._removeFocusHandlers);this.subscribe("beforeRender",J);this.subscribe("render",function(){this.setFirstLastFocusable();this.subscribe("changeContent",this.setFirstLastFocusable);});this.subscribe("show",this.focusFirst);this.initEvent.fire(O);},_onElementFocus:function(X){var W=T.getTarget(X);if(W!==this.element&&!A.isAncestor(this.element,W)&&S==this){try{if(this.firstElement){this.firstElement.focus();}else{if(this._modalFocus){this._modalFocus.focus();}else{this.innerElement.focus();}}}catch(V){try{if(W!==document&&W!==document.body&&W!==window){W.blur();}}catch(U){}}}},_addFocusHandlers:function(V,U){if(!this.firstElement){if(L.webkit||L.opera){if(!this._modalFocus){this._createHiddenFocusElement();}}else{this.innerElement.tabIndex=0;}}this.setTabLoop(this.firstElement,this.lastElement);T.onFocus(document.documentElement,this._onElementFocus,this,true);S=this;},_createHiddenFocusElement:function(){var U=document.createElement("button");U.style.height="1px";U.style.width="1px";U.style.position="absolute";U.style.left="-10000em";U.style.opacity=0;U.tabIndex="-1";this.innerElement.appendChild(U);this._modalFocus=U;},_removeFocusHandlers:function(V,U){T.removeFocusListener(document.documentElement,this._onElementFocus,this);if(S==this){S=null;}},focusFirst:function(W,U,Y){var V=this.firstElement;if(U&&U[1]){T.stopEvent(U[1]);}if(V){try{V.focus();}catch(X){}}},focusLast:function(W,U,Y){var V=this.lastElement;if(U&&U[1]){T.stopEvent(U[1]);}if(V){try{V.focus();}catch(X){}}},setTabLoop:function(X,Z){var V=this.preventBackTab,W=this.preventTabOut,U=this.showEvent,Y=this.hideEvent;if(V){V.disable();U.unsubscribe(V.enable,V);Y.unsubscribe(V.disable,V);V=this.preventBackTab=null;}if(W){W.disable();U.unsubscribe(W.enable,W);Y.unsubscribe(W.disable,W);W=this.preventTabOut=null;}if(X){this.preventBackTab=new K(X,{shift:true,keys:9},{fn:this.focusLast,scope:this,correctScope:true});V=this.preventBackTab;U.subscribe(V.enable,V,true);Y.subscribe(V.disable,V,true);}if(Z){this.preventTabOut=new K(Z,{shift:false,keys:9},{fn:this.focusFirst,scope:this,correctScope:true});W=this.preventTabOut;U.subscribe(W.enable,W,true);Y.subscribe(W.disable,W,true);}},getFocusableElements:function(U){U=U||this.innerElement;var X={};for(var W=0;W<O.FOCUSABLE.length;W++){X[O.FOCUSABLE[W]]=true;}function V(Y){if(Y.focus&&Y.type!=="hidden"&&!Y.disabled&&X[Y.tagName.toLowerCase()]){return true;}return false;}return A.getElementsBy(V,null,U);},setFirstLastFocusable:function(){this.firstElement=null;this.lastElement=null;var U=this.getFocusableElements();this.focusableElements=U;if(U.length>0){this.firstElement=U[0];this.lastElement=U[U.length-1];}if(this.cfg.getProperty("modal")){this.setTabLoop(this.firstElement,this.lastElement);}},initEvents:function(){O.superclass.initEvents.call(this);var U=M.LIST;this.showMaskEvent=this.createEvent(D.SHOW_MASK);this.showMaskEvent.signature=U;this.hideMaskEvent=this.createEvent(D.HIDE_MASK);this.hideMaskEvent.signature=U;this.dragEvent=this.createEvent(D.DRAG);
-this.dragEvent.signature=U;},initDefaultConfig:function(){O.superclass.initDefaultConfig.call(this);this.cfg.addProperty(N.CLOSE.key,{handler:this.configClose,value:N.CLOSE.value,validator:N.CLOSE.validator,supercedes:N.CLOSE.supercedes});this.cfg.addProperty(N.DRAGGABLE.key,{handler:this.configDraggable,value:(F.DD)?true:false,validator:N.DRAGGABLE.validator,supercedes:N.DRAGGABLE.supercedes});this.cfg.addProperty(N.DRAG_ONLY.key,{value:N.DRAG_ONLY.value,validator:N.DRAG_ONLY.validator,supercedes:N.DRAG_ONLY.supercedes});this.cfg.addProperty(N.UNDERLAY.key,{handler:this.configUnderlay,value:N.UNDERLAY.value,supercedes:N.UNDERLAY.supercedes});this.cfg.addProperty(N.MODAL.key,{handler:this.configModal,value:N.MODAL.value,validator:N.MODAL.validator,supercedes:N.MODAL.supercedes});this.cfg.addProperty(N.KEY_LISTENERS.key,{handler:this.configKeyListeners,suppressEvent:N.KEY_LISTENERS.suppressEvent,supercedes:N.KEY_LISTENERS.supercedes});this.cfg.addProperty(N.STRINGS.key,{value:N.STRINGS.value,handler:this.configStrings,validator:N.STRINGS.validator,supercedes:N.STRINGS.supercedes});},configClose:function(X,V,Y){var Z=V[0],W=this.close,U=this.cfg.getProperty("strings");if(Z){if(!W){if(!C){C=document.createElement("a");C.className="container-close";C.href="#";}W=C.cloneNode(true);this.innerElement.appendChild(W);W.innerHTML=(U&&U.close)?U.close:"&#160;";T.on(W,"click",this._doClose,this,true);this.close=W;}else{W.style.display="block";}}else{if(W){W.style.display="none";}}},_doClose:function(U){T.preventDefault(U);this.hide();},configDraggable:function(V,U,W){var X=U[0];if(X){if(!F.DD){this.cfg.setProperty("draggable",false);return ;}if(this.header){A.setStyle(this.header,"cursor","move");this.registerDragDrop();}this.subscribe("beforeShow",B);}else{if(this.dd){this.dd.unreg();}if(this.header){A.setStyle(this.header,"cursor","auto");}this.unsubscribe("beforeShow",B);}},configUnderlay:function(d,c,Z){var b=(this.platform=="mac"&&L.gecko),e=c[0].toLowerCase(),V=this.underlay,W=this.element;function f(){var g=this.underlay;A.addClass(g,"yui-force-redraw");window.setTimeout(function(){A.removeClass(g,"yui-force-redraw");},0);}function X(){var g=false;if(!V){if(!Q){Q=document.createElement("div");Q.className="underlay";}V=Q.cloneNode(false);this.element.appendChild(V);this.underlay=V;if(P){this.sizeUnderlay();this.cfg.subscribeToConfigEvent("width",this.sizeUnderlay);this.cfg.subscribeToConfigEvent("height",this.sizeUnderlay);this.changeContentEvent.subscribe(this.sizeUnderlay);YAHOO.widget.Module.textResizeEvent.subscribe(this.sizeUnderlay,this,true);}if(L.webkit&&L.webkit<420){this.changeContentEvent.subscribe(f);}g=true;}}function a(){var g=X.call(this);if(!g&&P){this.sizeUnderlay();}this._underlayDeferred=false;this.beforeShowEvent.unsubscribe(a);}function Y(){if(this._underlayDeferred){this.beforeShowEvent.unsubscribe(a);this._underlayDeferred=false;}if(V){this.cfg.unsubscribeFromConfigEvent("width",this.sizeUnderlay);this.cfg.unsubscribeFromConfigEvent("height",this.sizeUnderlay);this.changeContentEvent.unsubscribe(this.sizeUnderlay);this.changeContentEvent.unsubscribe(f);YAHOO.widget.Module.textResizeEvent.unsubscribe(this.sizeUnderlay,this,true);this.element.removeChild(V);this.underlay=null;}}switch(e){case"shadow":A.removeClass(W,"matte");A.addClass(W,"shadow");break;case"matte":if(!b){Y.call(this);}A.removeClass(W,"shadow");A.addClass(W,"matte");break;default:if(!b){Y.call(this);}A.removeClass(W,"shadow");A.removeClass(W,"matte");break;}if((e=="shadow")||(b&&!V)){if(this.cfg.getProperty("visible")){var U=X.call(this);if(!U&&P){this.sizeUnderlay();}}else{if(!this._underlayDeferred){this.beforeShowEvent.subscribe(a);this._underlayDeferred=true;}}}},configModal:function(V,U,X){var W=U[0];if(W){if(!this._hasModalityEventListeners){this.subscribe("beforeShow",this.buildMask);this.subscribe("beforeShow",this.bringToTop);this.subscribe("beforeShow",this.showMask);this.subscribe("hide",this.hideMask);H.windowResizeEvent.subscribe(this.sizeMask,this,true);this._hasModalityEventListeners=true;}}else{if(this._hasModalityEventListeners){if(this.cfg.getProperty("visible")){this.hideMask();this.removeMask();}this.unsubscribe("beforeShow",this.buildMask);this.unsubscribe("beforeShow",this.bringToTop);this.unsubscribe("beforeShow",this.showMask);this.unsubscribe("hide",this.hideMask);H.windowResizeEvent.unsubscribe(this.sizeMask,this);this._hasModalityEventListeners=false;}}},removeMask:function(){var V=this.mask,U;if(V){this.hideMask();U=V.parentNode;if(U){U.removeChild(V);}this.mask=null;}},configKeyListeners:function(X,U,a){var W=U[0],Z,Y,V;if(W){if(W instanceof Array){Y=W.length;for(V=0;V<Y;V++){Z=W[V];if(!I.alreadySubscribed(this.showEvent,Z.enable,Z)){this.showEvent.subscribe(Z.enable,Z,true);}if(!I.alreadySubscribed(this.hideEvent,Z.disable,Z)){this.hideEvent.subscribe(Z.disable,Z,true);this.destroyEvent.subscribe(Z.disable,Z,true);}}}else{if(!I.alreadySubscribed(this.showEvent,W.enable,W)){this.showEvent.subscribe(W.enable,W,true);}if(!I.alreadySubscribed(this.hideEvent,W.disable,W)){this.hideEvent.subscribe(W.disable,W,true);this.destroyEvent.subscribe(W.disable,W,true);}}}},configStrings:function(V,U,W){var X=E.merge(N.STRINGS.value,U[0]);this.cfg.setProperty(N.STRINGS.key,X,true);},configHeight:function(X,V,Y){var U=V[0],W=this.innerElement;A.setStyle(W,"height",U);this.cfg.refireEvent("iframe");},_autoFillOnHeightChange:function(W,U,V){O.superclass._autoFillOnHeightChange.apply(this,arguments);if(P){this.sizeUnderlay();}},configWidth:function(X,U,Y){var W=U[0],V=this.innerElement;A.setStyle(V,"width",W);this.cfg.refireEvent("iframe");},configzIndex:function(V,U,X){O.superclass.configzIndex.call(this,V,U,X);if(this.mask||this.cfg.getProperty("modal")===true){var W=A.getStyle(this.element,"zIndex");if(!W||isNaN(W)){W=0;}if(W===0){this.cfg.setProperty("zIndex",1);}else{this.stackMask();}}},buildWrapper:function(){var W=this.element.parentNode,U=this.element,V=document.createElement("div");V.className=O.CSS_PANEL_CONTAINER;
-V.id=U.id+"_c";if(W){W.insertBefore(V,U);}V.appendChild(U);this.element=V;this.innerElement=U;A.setStyle(this.innerElement,"visibility","inherit");},sizeUnderlay:function(){var V=this.underlay,U;if(V){U=this.element;V.style.width=U.offsetWidth+"px";V.style.height=U.offsetHeight+"px";}},registerDragDrop:function(){var V=this;if(this.header){if(!F.DD){return ;}var U=(this.cfg.getProperty("dragonly")===true);this.dd=new F.DD(this.element.id,this.id,{dragOnly:U});if(!this.header.id){this.header.id=this.id+"_h";}this.dd.startDrag=function(){var X,Z,W,c,b,a;if(YAHOO.env.ua.ie==6){A.addClass(V.element,"drag");}if(V.cfg.getProperty("constraintoviewport")){var Y=H.VIEWPORT_OFFSET;X=V.element.offsetHeight;Z=V.element.offsetWidth;W=A.getViewportWidth();c=A.getViewportHeight();b=A.getDocumentScrollLeft();a=A.getDocumentScrollTop();if(X+Y<c){this.minY=a+Y;this.maxY=a+c-X-Y;}else{this.minY=a+Y;this.maxY=a+Y;}if(Z+Y<W){this.minX=b+Y;this.maxX=b+W-Z-Y;}else{this.minX=b+Y;this.maxX=b+Y;}this.constrainX=true;this.constrainY=true;}else{this.constrainX=false;this.constrainY=false;}V.dragEvent.fire("startDrag",arguments);};this.dd.onDrag=function(){V.syncPosition();V.cfg.refireEvent("iframe");if(this.platform=="mac"&&YAHOO.env.ua.gecko){this.showMacGeckoScrollbars();}V.dragEvent.fire("onDrag",arguments);};this.dd.endDrag=function(){if(YAHOO.env.ua.ie==6){A.removeClass(V.element,"drag");}V.dragEvent.fire("endDrag",arguments);V.moveEvent.fire(V.cfg.getProperty("xy"));};this.dd.setHandleElId(this.header.id);this.dd.addInvalidHandleType("INPUT");this.dd.addInvalidHandleType("SELECT");this.dd.addInvalidHandleType("TEXTAREA");}},buildMask:function(){var U=this.mask;if(!U){if(!G){G=document.createElement("div");G.className="mask";G.innerHTML="&#160;";}U=G.cloneNode(true);U.id=this.id+"_mask";document.body.insertBefore(U,document.body.firstChild);this.mask=U;if(YAHOO.env.ua.gecko&&this.platform=="mac"){A.addClass(this.mask,"block-scrollbars");}this.stackMask();}},hideMask:function(){if(this.cfg.getProperty("modal")&&this.mask){this.mask.style.display="none";A.removeClass(document.body,"masked");this.hideMaskEvent.fire();}},showMask:function(){if(this.cfg.getProperty("modal")&&this.mask){A.addClass(document.body,"masked");this.sizeMask();this.mask.style.display="block";this.showMaskEvent.fire();}},sizeMask:function(){if(this.mask){var V=this.mask,W=A.getViewportWidth(),U=A.getViewportHeight();if(this.mask.offsetHeight>U){this.mask.style.height=U+"px";}if(this.mask.offsetWidth>W){this.mask.style.width=W+"px";}this.mask.style.height=A.getDocumentHeight()+"px";this.mask.style.width=A.getDocumentWidth()+"px";}},stackMask:function(){if(this.mask){var U=A.getStyle(this.element,"zIndex");if(!YAHOO.lang.isUndefined(U)&&!isNaN(U)){A.setStyle(this.mask,"zIndex",U-1);}}},render:function(U){return O.superclass.render.call(this,U,this.innerElement);},destroy:function(){H.windowResizeEvent.unsubscribe(this.sizeMask,this);this.removeMask();if(this.close){T.purgeElement(this.close);}O.superclass.destroy.call(this);},toString:function(){return"Panel "+this.id;}});}());(function(){YAHOO.widget.Dialog=function(J,I){YAHOO.widget.Dialog.superclass.constructor.call(this,J,I);};var B=YAHOO.util.Event,G=YAHOO.util.CustomEvent,E=YAHOO.util.Dom,A=YAHOO.widget.Dialog,F=YAHOO.lang,H={"BEFORE_SUBMIT":"beforeSubmit","SUBMIT":"submit","MANUAL_SUBMIT":"manualSubmit","ASYNC_SUBMIT":"asyncSubmit","FORM_SUBMIT":"formSubmit","CANCEL":"cancel"},C={"POST_METHOD":{key:"postmethod",value:"async"},"BUTTONS":{key:"buttons",value:"none",supercedes:["visible"]},"HIDEAFTERSUBMIT":{key:"hideaftersubmit",value:true}};A.CSS_DIALOG="yui-dialog";function D(){var L=this._aButtons,J,K,I;if(F.isArray(L)){J=L.length;if(J>0){I=J-1;do{K=L[I];if(YAHOO.widget.Button&&K instanceof YAHOO.widget.Button){K.destroy();}else{if(K.tagName.toUpperCase()=="BUTTON"){B.purgeElement(K);B.purgeElement(K,false);}}}while(I--);}}}YAHOO.extend(A,YAHOO.widget.Panel,{form:null,initDefaultConfig:function(){A.superclass.initDefaultConfig.call(this);this.callback={success:null,failure:null,argument:null};this.cfg.addProperty(C.POST_METHOD.key,{handler:this.configPostMethod,value:C.POST_METHOD.value,validator:function(I){if(I!="form"&&I!="async"&&I!="none"&&I!="manual"){return false;}else{return true;}}});this.cfg.addProperty(C.HIDEAFTERSUBMIT.key,{value:C.HIDEAFTERSUBMIT.value});this.cfg.addProperty(C.BUTTONS.key,{handler:this.configButtons,value:C.BUTTONS.value,supercedes:C.BUTTONS.supercedes});},initEvents:function(){A.superclass.initEvents.call(this);var I=G.LIST;this.beforeSubmitEvent=this.createEvent(H.BEFORE_SUBMIT);this.beforeSubmitEvent.signature=I;this.submitEvent=this.createEvent(H.SUBMIT);this.submitEvent.signature=I;this.manualSubmitEvent=this.createEvent(H.MANUAL_SUBMIT);this.manualSubmitEvent.signature=I;this.asyncSubmitEvent=this.createEvent(H.ASYNC_SUBMIT);this.asyncSubmitEvent.signature=I;this.formSubmitEvent=this.createEvent(H.FORM_SUBMIT);this.formSubmitEvent.signature=I;this.cancelEvent=this.createEvent(H.CANCEL);this.cancelEvent.signature=I;},init:function(J,I){A.superclass.init.call(this,J);this.beforeInitEvent.fire(A);E.addClass(this.element,A.CSS_DIALOG);this.cfg.setProperty("visible",false);if(I){this.cfg.applyConfig(I,true);}this.showEvent.subscribe(this.focusFirst,this,true);this.beforeHideEvent.subscribe(this.blurButtons,this,true);this.subscribe("changeBody",this.registerForm);this.initEvent.fire(A);},doSubmit:function(){var J=YAHOO.util.Connect,P=this.form,N=false,M=false,O,I,L,K;switch(this.cfg.getProperty("postmethod")){case"async":O=P.elements;I=O.length;if(I>0){L=I-1;do{if(O[L].type=="file"){N=true;break;}}while(L--);}if(N&&YAHOO.env.ua.ie&&this.isSecure){M=true;}K=this._getFormAttributes(P);J.setForm(P,N,M);J.asyncRequest(K.method,K.action,this.callback);this.asyncSubmitEvent.fire();break;case"form":P.submit();this.formSubmitEvent.fire();break;case"none":case"manual":this.manualSubmitEvent.fire();break;}},_getFormAttributes:function(K){var I={method:null,action:null};
-if(K){if(K.getAttributeNode){var J=K.getAttributeNode("action");var L=K.getAttributeNode("method");if(J){I.action=J.value;}if(L){I.method=L.value;}}else{I.action=K.getAttribute("action");I.method=K.getAttribute("method");}}I.method=(F.isString(I.method)?I.method:"POST").toUpperCase();I.action=F.isString(I.action)?I.action:"";return I;},registerForm:function(){var I=this.element.getElementsByTagName("form")[0];if(this.form){if(this.form==I&&E.isAncestor(this.element,this.form)){return ;}else{B.purgeElement(this.form);this.form=null;}}if(!I){I=document.createElement("form");I.name="frm_"+this.id;this.body.appendChild(I);}if(I){this.form=I;B.on(I,"submit",this._submitHandler,this,true);}},_submitHandler:function(I){B.stopEvent(I);this.submit();this.form.blur();},setTabLoop:function(I,J){I=I||this.firstButton;J=this.lastButton||J;A.superclass.setTabLoop.call(this,I,J);},setFirstLastFocusable:function(){A.superclass.setFirstLastFocusable.call(this);var J,I,K,L=this.focusableElements;this.firstFormElement=null;this.lastFormElement=null;if(this.form&&L&&L.length>0){I=L.length;for(J=0;J<I;++J){K=L[J];if(this.form===K.form){this.firstFormElement=K;break;}}for(J=I-1;J>=0;--J){K=L[J];if(this.form===K.form){this.lastFormElement=K;break;}}}},configClose:function(J,I,K){A.superclass.configClose.apply(this,arguments);},_doClose:function(I){B.preventDefault(I);this.cancel();},configButtons:function(S,R,M){var N=YAHOO.widget.Button,U=R[0],K=this.innerElement,T,P,J,Q,O,I,L;D.call(this);this._aButtons=null;if(F.isArray(U)){O=document.createElement("span");O.className="button-group";Q=U.length;this._aButtons=[];this.defaultHtmlButton=null;for(L=0;L<Q;L++){T=U[L];if(N){J=new N({label:T.text});J.appendTo(O);P=J.get("element");if(T.isDefault){J.addClass("default");this.defaultHtmlButton=P;}if(F.isFunction(T.handler)){J.set("onclick",{fn:T.handler,obj:this,scope:this});}else{if(F.isObject(T.handler)&&F.isFunction(T.handler.fn)){J.set("onclick",{fn:T.handler.fn,obj:((!F.isUndefined(T.handler.obj))?T.handler.obj:this),scope:(T.handler.scope||this)});}}this._aButtons[this._aButtons.length]=J;}else{P=document.createElement("button");P.setAttribute("type","button");if(T.isDefault){P.className="default";this.defaultHtmlButton=P;}P.innerHTML=T.text;if(F.isFunction(T.handler)){B.on(P,"click",T.handler,this,true);}else{if(F.isObject(T.handler)&&F.isFunction(T.handler.fn)){B.on(P,"click",T.handler.fn,((!F.isUndefined(T.handler.obj))?T.handler.obj:this),(T.handler.scope||this));}}O.appendChild(P);this._aButtons[this._aButtons.length]=P;}T.htmlButton=P;if(L===0){this.firstButton=P;}if(L==(Q-1)){this.lastButton=P;}}this.setFooter(O);I=this.footer;if(E.inDocument(this.element)&&!E.isAncestor(K,I)){K.appendChild(I);}this.buttonSpan=O;}else{O=this.buttonSpan;I=this.footer;if(O&&I){I.removeChild(O);this.buttonSpan=null;this.firstButton=null;this.lastButton=null;this.defaultHtmlButton=null;}}this.setFirstLastFocusable();this.cfg.refireEvent("iframe");this.cfg.refireEvent("underlay");},getButtons:function(){return this._aButtons||null;},focusFirst:function(K,I,M){var J=this.firstFormElement;if(I&&I[1]){B.stopEvent(I[1]);}if(J){try{J.focus();}catch(L){}}else{this.focusFirstButton();}},focusLast:function(K,I,M){var N=this.cfg.getProperty("buttons"),J=this.lastFormElement;if(I&&I[1]){B.stopEvent(I[1]);}if(N&&F.isArray(N)){this.focusLastButton();}else{if(J){try{J.focus();}catch(L){}}}},_getButton:function(J){var I=YAHOO.widget.Button;if(I&&J&&J.nodeName&&J.id){J=I.getButton(J.id)||J;}return J;},focusDefaultButton:function(){var I=this._getButton(this.defaultHtmlButton);if(I){try{I.focus();}catch(J){}}},blurButtons:function(){var N=this.cfg.getProperty("buttons"),K,M,J,I;if(N&&F.isArray(N)){K=N.length;if(K>0){I=(K-1);do{M=N[I];if(M){J=this._getButton(M.htmlButton);if(J){try{J.blur();}catch(L){}}}}while(I--);}}},focusFirstButton:function(){var L=this.cfg.getProperty("buttons"),K,I;if(L&&F.isArray(L)){K=L[0];if(K){I=this._getButton(K.htmlButton);if(I){try{I.focus();}catch(J){}}}}},focusLastButton:function(){var M=this.cfg.getProperty("buttons"),J,L,I;if(M&&F.isArray(M)){J=M.length;if(J>0){L=M[(J-1)];if(L){I=this._getButton(L.htmlButton);if(I){try{I.focus();}catch(K){}}}}}},configPostMethod:function(J,I,K){this.registerForm();},validate:function(){return true;},submit:function(){if(this.validate()){this.beforeSubmitEvent.fire();this.doSubmit();this.submitEvent.fire();if(this.cfg.getProperty("hideaftersubmit")){this.hide();}return true;}else{return false;}},cancel:function(){this.cancelEvent.fire();this.hide();},getData:function(){var Y=this.form,K,R,U,M,S,P,O,J,V,L,W,Z,I,N,a,X,T;function Q(c){var b=c.tagName.toUpperCase();return((b=="INPUT"||b=="TEXTAREA"||b=="SELECT")&&c.name==M);}if(Y){K=Y.elements;R=K.length;U={};for(X=0;X<R;X++){M=K[X].name;S=E.getElementsBy(Q,"*",Y);P=S.length;if(P>0){if(P==1){S=S[0];O=S.type;J=S.tagName.toUpperCase();switch(J){case"INPUT":if(O=="checkbox"){U[M]=S.checked;}else{if(O!="radio"){U[M]=S.value;}}break;case"TEXTAREA":U[M]=S.value;break;case"SELECT":V=S.options;L=V.length;W=[];for(T=0;T<L;T++){Z=V[T];if(Z.selected){I=Z.value;if(!I||I===""){I=Z.text;}W[W.length]=I;}}U[M]=W;break;}}else{O=S[0].type;switch(O){case"radio":for(T=0;T<P;T++){N=S[T];if(N.checked){U[M]=N.value;break;}}break;case"checkbox":W=[];for(T=0;T<P;T++){a=S[T];if(a.checked){W[W.length]=a.value;}}U[M]=W;break;}}}}}return U;},destroy:function(){D.call(this);this._aButtons=null;var I=this.element.getElementsByTagName("form"),J;if(I.length>0){J=I[0];if(J){B.purgeElement(J);if(J.parentNode){J.parentNode.removeChild(J);}this.form=null;}}A.superclass.destroy.call(this);},toString:function(){return"Dialog "+this.id;}});}());(function(){YAHOO.widget.SimpleDialog=function(E,D){YAHOO.widget.SimpleDialog.superclass.constructor.call(this,E,D);};var C=YAHOO.util.Dom,B=YAHOO.widget.SimpleDialog,A={"ICON":{key:"icon",value:"none",suppressEvent:true},"TEXT":{key:"text",value:"",suppressEvent:true,supercedes:["icon"]}};B.ICON_BLOCK="blckicon";B.ICON_ALARM="alrticon";
-B.ICON_HELP="hlpicon";B.ICON_INFO="infoicon";B.ICON_WARN="warnicon";B.ICON_TIP="tipicon";B.ICON_CSS_CLASSNAME="yui-icon";B.CSS_SIMPLEDIALOG="yui-simple-dialog";YAHOO.extend(B,YAHOO.widget.Dialog,{initDefaultConfig:function(){B.superclass.initDefaultConfig.call(this);this.cfg.addProperty(A.ICON.key,{handler:this.configIcon,value:A.ICON.value,suppressEvent:A.ICON.suppressEvent});this.cfg.addProperty(A.TEXT.key,{handler:this.configText,value:A.TEXT.value,suppressEvent:A.TEXT.suppressEvent,supercedes:A.TEXT.supercedes});},init:function(E,D){B.superclass.init.call(this,E);this.beforeInitEvent.fire(B);C.addClass(this.element,B.CSS_SIMPLEDIALOG);this.cfg.queueProperty("postmethod","manual");if(D){this.cfg.applyConfig(D,true);}this.beforeRenderEvent.subscribe(function(){if(!this.body){this.setBody("");}},this,true);this.initEvent.fire(B);},registerForm:function(){B.superclass.registerForm.call(this);this.form.innerHTML+='<input type="hidden" name="'+this.id+'" value=""/>';},configIcon:function(F,E,J){var K=E[0],D=this.body,I=B.ICON_CSS_CLASSNAME,H,G;if(K&&K!="none"){H=C.getElementsByClassName(I,"*",D);if(H){G=H.parentNode;if(G){G.removeChild(H);H=null;}}if(K.indexOf(".")==-1){H=document.createElement("span");H.className=(I+" "+K);H.innerHTML="&#160;";}else{H=document.createElement("img");H.src=(this.imageRoot+K);H.className=I;}if(H){D.insertBefore(H,D.firstChild);}}},configText:function(E,D,F){var G=D[0];if(G){this.setBody(G);this.cfg.refireEvent("icon");}},toString:function(){return"SimpleDialog "+this.id;}});}());(function(){YAHOO.widget.ContainerEffect=function(E,H,G,D,F){if(!F){F=YAHOO.util.Anim;}this.overlay=E;this.attrIn=H;this.attrOut=G;this.targetElement=D||E.element;this.animClass=F;};var B=YAHOO.util.Dom,C=YAHOO.util.CustomEvent,A=YAHOO.widget.ContainerEffect;A.FADE=function(D,F){var G=YAHOO.util.Easing,I={attributes:{opacity:{from:0,to:1}},duration:F,method:G.easeIn},E={attributes:{opacity:{to:0}},duration:F,method:G.easeOut},H=new A(D,I,E,D.element);H.handleUnderlayStart=function(){var K=this.overlay.underlay;if(K&&YAHOO.env.ua.ie){var J=(K.filters&&K.filters.length>0);if(J){B.addClass(D.element,"yui-effect-fade");}}};H.handleUnderlayComplete=function(){var J=this.overlay.underlay;if(J&&YAHOO.env.ua.ie){B.removeClass(D.element,"yui-effect-fade");}};H.handleStartAnimateIn=function(K,J,L){B.addClass(L.overlay.element,"hide-select");if(!L.overlay.underlay){L.overlay.cfg.refireEvent("underlay");}L.handleUnderlayStart();B.setStyle(L.overlay.element,"visibility","visible");B.setStyle(L.overlay.element,"opacity",0);};H.handleCompleteAnimateIn=function(K,J,L){B.removeClass(L.overlay.element,"hide-select");if(L.overlay.element.style.filter){L.overlay.element.style.filter=null;}L.handleUnderlayComplete();L.overlay.cfg.refireEvent("iframe");L.animateInCompleteEvent.fire();};H.handleStartAnimateOut=function(K,J,L){B.addClass(L.overlay.element,"hide-select");L.handleUnderlayStart();};H.handleCompleteAnimateOut=function(K,J,L){B.removeClass(L.overlay.element,"hide-select");if(L.overlay.element.style.filter){L.overlay.element.style.filter=null;}B.setStyle(L.overlay.element,"visibility","hidden");B.setStyle(L.overlay.element,"opacity",1);L.handleUnderlayComplete();L.overlay.cfg.refireEvent("iframe");L.animateOutCompleteEvent.fire();};H.init();return H;};A.SLIDE=function(F,D){var I=YAHOO.util.Easing,L=F.cfg.getProperty("x")||B.getX(F.element),K=F.cfg.getProperty("y")||B.getY(F.element),M=B.getClientWidth(),H=F.element.offsetWidth,J={attributes:{points:{to:[L,K]}},duration:D,method:I.easeIn},E={attributes:{points:{to:[(M+25),K]}},duration:D,method:I.easeOut},G=new A(F,J,E,F.element,YAHOO.util.Motion);G.handleStartAnimateIn=function(O,N,P){P.overlay.element.style.left=((-25)-H)+"px";P.overlay.element.style.top=K+"px";};G.handleTweenAnimateIn=function(Q,P,R){var S=B.getXY(R.overlay.element),O=S[0],N=S[1];if(B.getStyle(R.overlay.element,"visibility")=="hidden"&&O<L){B.setStyle(R.overlay.element,"visibility","visible");}R.overlay.cfg.setProperty("xy",[O,N],true);R.overlay.cfg.refireEvent("iframe");};G.handleCompleteAnimateIn=function(O,N,P){P.overlay.cfg.setProperty("xy",[L,K],true);P.startX=L;P.startY=K;P.overlay.cfg.refireEvent("iframe");P.animateInCompleteEvent.fire();};G.handleStartAnimateOut=function(O,N,R){var P=B.getViewportWidth(),S=B.getXY(R.overlay.element),Q=S[1];R.animOut.attributes.points.to=[(P+25),Q];};G.handleTweenAnimateOut=function(P,O,Q){var S=B.getXY(Q.overlay.element),N=S[0],R=S[1];Q.overlay.cfg.setProperty("xy",[N,R],true);Q.overlay.cfg.refireEvent("iframe");};G.handleCompleteAnimateOut=function(O,N,P){B.setStyle(P.overlay.element,"visibility","hidden");P.overlay.cfg.setProperty("xy",[L,K]);P.animateOutCompleteEvent.fire();};G.init();return G;};A.prototype={init:function(){this.beforeAnimateInEvent=this.createEvent("beforeAnimateIn");this.beforeAnimateInEvent.signature=C.LIST;this.beforeAnimateOutEvent=this.createEvent("beforeAnimateOut");this.beforeAnimateOutEvent.signature=C.LIST;this.animateInCompleteEvent=this.createEvent("animateInComplete");this.animateInCompleteEvent.signature=C.LIST;this.animateOutCompleteEvent=this.createEvent("animateOutComplete");this.animateOutCompleteEvent.signature=C.LIST;this.animIn=new this.animClass(this.targetElement,this.attrIn.attributes,this.attrIn.duration,this.attrIn.method);this.animIn.onStart.subscribe(this.handleStartAnimateIn,this);this.animIn.onTween.subscribe(this.handleTweenAnimateIn,this);this.animIn.onComplete.subscribe(this.handleCompleteAnimateIn,this);this.animOut=new this.animClass(this.targetElement,this.attrOut.attributes,this.attrOut.duration,this.attrOut.method);this.animOut.onStart.subscribe(this.handleStartAnimateOut,this);this.animOut.onTween.subscribe(this.handleTweenAnimateOut,this);this.animOut.onComplete.subscribe(this.handleCompleteAnimateOut,this);},animateIn:function(){this.beforeAnimateInEvent.fire();this.animIn.animate();},animateOut:function(){this.beforeAnimateOutEvent.fire();this.animOut.animate();},handleStartAnimateIn:function(E,D,F){},handleTweenAnimateIn:function(E,D,F){},handleCompleteAnimateIn:function(E,D,F){},handleStartAnimateOut:function(E,D,F){},handleTweenAnimateOut:function(E,D,F){},handleCompleteAnimateOut:function(E,D,F){},toString:function(){var D="ContainerEffect";
-if(this.overlay){D+=" ["+this.overlay.toString()+"]";}return D;}};YAHOO.lang.augmentProto(A,YAHOO.util.EventProvider);})();YAHOO.register("container",YAHOO.widget.Module,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/container/container.js b/eclipse.org-common/yui/2.6.0/build/container/container.js
deleted file mode 100644
index 017861b..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/container.js
+++ /dev/null
@@ -1,8837 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function () {
-
-    /**
-    * Config is a utility used within an Object to allow the implementer to
-    * maintain a list of local configuration properties and listen for changes 
-    * to those properties dynamically using CustomEvent. The initial values are 
-    * also maintained so that the configuration can be reset at any given point 
-    * to its initial state.
-    * @namespace YAHOO.util
-    * @class Config
-    * @constructor
-    * @param {Object} owner The owner Object to which this Config Object belongs
-    */
-    YAHOO.util.Config = function (owner) {
-
-        if (owner) {
-            this.init(owner);
-        }
-
-
-    };
-
-
-    var Lang = YAHOO.lang,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Config = YAHOO.util.Config;
-
-
-    /**
-     * Constant representing the CustomEvent type for the config changed event.
-     * @property YAHOO.util.Config.CONFIG_CHANGED_EVENT
-     * @private
-     * @static
-     * @final
-     */
-    Config.CONFIG_CHANGED_EVENT = "configChanged";
-    
-    /**
-     * Constant representing the boolean type string
-     * @property YAHOO.util.Config.BOOLEAN_TYPE
-     * @private
-     * @static
-     * @final
-     */
-    Config.BOOLEAN_TYPE = "boolean";
-    
-    Config.prototype = {
-     
-        /**
-        * Object reference to the owner of this Config Object
-        * @property owner
-        * @type Object
-        */
-        owner: null,
-        
-        /**
-        * Boolean flag that specifies whether a queue is currently 
-        * being executed
-        * @property queueInProgress
-        * @type Boolean
-        */
-        queueInProgress: false,
-        
-        /**
-        * Maintains the local collection of configuration property objects and 
-        * their specified values
-        * @property config
-        * @private
-        * @type Object
-        */ 
-        config: null,
-        
-        /**
-        * Maintains the local collection of configuration property objects as 
-        * they were initially applied.
-        * This object is used when resetting a property.
-        * @property initialConfig
-        * @private
-        * @type Object
-        */ 
-        initialConfig: null,
-        
-        /**
-        * Maintains the local, normalized CustomEvent queue
-        * @property eventQueue
-        * @private
-        * @type Object
-        */ 
-        eventQueue: null,
-        
-        /**
-        * Custom Event, notifying subscribers when Config properties are set 
-        * (setProperty is called without the silent flag
-        * @event configChangedEvent
-        */
-        configChangedEvent: null,
-    
-        /**
-        * Initializes the configuration Object and all of its local members.
-        * @method init
-        * @param {Object} owner The owner Object to which this Config 
-        * Object belongs
-        */
-        init: function (owner) {
-    
-            this.owner = owner;
-    
-            this.configChangedEvent = 
-                this.createEvent(Config.CONFIG_CHANGED_EVENT);
-    
-            this.configChangedEvent.signature = CustomEvent.LIST;
-            this.queueInProgress = false;
-            this.config = {};
-            this.initialConfig = {};
-            this.eventQueue = [];
-        
-        },
-        
-        /**
-        * Validates that the value passed in is a Boolean.
-        * @method checkBoolean
-        * @param {Object} val The value to validate
-        * @return {Boolean} true, if the value is valid
-        */ 
-        checkBoolean: function (val) {
-            return (typeof val == Config.BOOLEAN_TYPE);
-        },
-        
-        /**
-        * Validates that the value passed in is a number.
-        * @method checkNumber
-        * @param {Object} val The value to validate
-        * @return {Boolean} true, if the value is valid
-        */
-        checkNumber: function (val) {
-            return (!isNaN(val));
-        },
-        
-        /**
-        * Fires a configuration property event using the specified value. 
-        * @method fireEvent
-        * @private
-        * @param {String} key The configuration property's name
-        * @param {value} Object The value of the correct type for the property
-        */ 
-        fireEvent: function ( key, value ) {
-            var property = this.config[key];
-        
-            if (property && property.event) {
-                property.event.fire(value);
-            } 
-        },
-        
-        /**
-        * Adds a property to the Config Object's private config hash.
-        * @method addProperty
-        * @param {String} key The configuration property's name
-        * @param {Object} propertyObject The Object containing all of this 
-        * property's arguments
-        */
-        addProperty: function ( key, propertyObject ) {
-            key = key.toLowerCase();
-        
-            this.config[key] = propertyObject;
-        
-            propertyObject.event = this.createEvent(key, { scope: this.owner });
-            propertyObject.event.signature = CustomEvent.LIST;
-            
-            
-            propertyObject.key = key;
-        
-            if (propertyObject.handler) {
-                propertyObject.event.subscribe(propertyObject.handler, 
-                    this.owner);
-            }
-        
-            this.setProperty(key, propertyObject.value, true);
-            
-            if (! propertyObject.suppressEvent) {
-                this.queueProperty(key, propertyObject.value);
-            }
-            
-        },
-        
-        /**
-        * Returns a key-value configuration map of the values currently set in  
-        * the Config Object.
-        * @method getConfig
-        * @return {Object} The current config, represented in a key-value map
-        */
-        getConfig: function () {
-        
-            var cfg = {},
-                currCfg = this.config,
-                prop,
-                property;
-                
-            for (prop in currCfg) {
-                if (Lang.hasOwnProperty(currCfg, prop)) {
-                    property = currCfg[prop];
-                    if (property && property.event) {
-                        cfg[prop] = property.value;
-                    }
-                }
-            }
-
-            return cfg;
-        },
-        
-        /**
-        * Returns the value of specified property.
-        * @method getProperty
-        * @param {String} key The name of the property
-        * @return {Object}  The value of the specified property
-        */
-        getProperty: function (key) {
-            var property = this.config[key.toLowerCase()];
-            if (property && property.event) {
-                return property.value;
-            } else {
-                return undefined;
-            }
-        },
-        
-        /**
-        * Resets the specified property's value to its initial value.
-        * @method resetProperty
-        * @param {String} key The name of the property
-        * @return {Boolean} True is the property was reset, false if not
-        */
-        resetProperty: function (key) {
-    
-            key = key.toLowerCase();
-        
-            var property = this.config[key];
-    
-            if (property && property.event) {
-    
-                if (this.initialConfig[key] && 
-                    !Lang.isUndefined(this.initialConfig[key])) {
-    
-                    this.setProperty(key, this.initialConfig[key]);
-
-                    return true;
-    
-                }
-    
-            } else {
-    
-                return false;
-            }
-    
-        },
-        
-        /**
-        * Sets the value of a property. If the silent property is passed as 
-        * true, the property's event will not be fired.
-        * @method setProperty
-        * @param {String} key The name of the property
-        * @param {String} value The value to set the property to
-        * @param {Boolean} silent Whether the value should be set silently, 
-        * without firing the property event.
-        * @return {Boolean} True, if the set was successful, false if it failed.
-        */
-        setProperty: function (key, value, silent) {
-        
-            var property;
-        
-            key = key.toLowerCase();
-        
-            if (this.queueInProgress && ! silent) {
-                // Currently running through a queue... 
-                this.queueProperty(key,value);
-                return true;
-    
-            } else {
-                property = this.config[key];
-                if (property && property.event) {
-                    if (property.validator && !property.validator(value)) {
-                        return false;
-                    } else {
-                        property.value = value;
-                        if (! silent) {
-                            this.fireEvent(key, value);
-                            this.configChangedEvent.fire([key, value]);
-                        }
-                        return true;
-                    }
-                } else {
-                    return false;
-                }
-            }
-        },
-        
-        /**
-        * Sets the value of a property and queues its event to execute. If the 
-        * event is already scheduled to execute, it is
-        * moved from its current position to the end of the queue.
-        * @method queueProperty
-        * @param {String} key The name of the property
-        * @param {String} value The value to set the property to
-        * @return {Boolean}  true, if the set was successful, false if 
-        * it failed.
-        */ 
-        queueProperty: function (key, value) {
-        
-            key = key.toLowerCase();
-        
-            var property = this.config[key],
-                foundDuplicate = false,
-                iLen,
-                queueItem,
-                queueItemKey,
-                queueItemValue,
-                sLen,
-                supercedesCheck,
-                qLen,
-                queueItemCheck,
-                queueItemCheckKey,
-                queueItemCheckValue,
-                i,
-                s,
-                q;
-                                
-            if (property && property.event) {
-    
-                if (!Lang.isUndefined(value) && property.validator && 
-                    !property.validator(value)) { // validator
-                    return false;
-                } else {
-        
-                    if (!Lang.isUndefined(value)) {
-                        property.value = value;
-                    } else {
-                        value = property.value;
-                    }
-        
-                    foundDuplicate = false;
-                    iLen = this.eventQueue.length;
-        
-                    for (i = 0; i < iLen; i++) {
-                        queueItem = this.eventQueue[i];
-        
-                        if (queueItem) {
-                            queueItemKey = queueItem[0];
-                            queueItemValue = queueItem[1];
-
-                            if (queueItemKey == key) {
-    
-                                /*
-                                    found a dupe... push to end of queue, null 
-                                    current item, and break
-                                */
-    
-                                this.eventQueue[i] = null;
-    
-                                this.eventQueue.push(
-                                    [key, (!Lang.isUndefined(value) ? 
-                                    value : queueItemValue)]);
-    
-                                foundDuplicate = true;
-                                break;
-                            }
-                        }
-                    }
-                    
-                    // this is a refire, or a new property in the queue
-    
-                    if (! foundDuplicate && !Lang.isUndefined(value)) { 
-                        this.eventQueue.push([key, value]);
-                    }
-                }
-        
-                if (property.supercedes) {
-
-                    sLen = property.supercedes.length;
-
-                    for (s = 0; s < sLen; s++) {
-
-                        supercedesCheck = property.supercedes[s];
-                        qLen = this.eventQueue.length;
-
-                        for (q = 0; q < qLen; q++) {
-                            queueItemCheck = this.eventQueue[q];
-
-                            if (queueItemCheck) {
-                                queueItemCheckKey = queueItemCheck[0];
-                                queueItemCheckValue = queueItemCheck[1];
-
-                                if (queueItemCheckKey == 
-                                    supercedesCheck.toLowerCase() ) {
-
-                                    this.eventQueue.push([queueItemCheckKey, 
-                                        queueItemCheckValue]);
-
-                                    this.eventQueue[q] = null;
-                                    break;
-
-                                }
-                            }
-                        }
-                    }
-                }
-
-
-                return true;
-            } else {
-                return false;
-            }
-        },
-        
-        /**
-        * Fires the event for a property using the property's current value.
-        * @method refireEvent
-        * @param {String} key The name of the property
-        */
-        refireEvent: function (key) {
-    
-            key = key.toLowerCase();
-        
-            var property = this.config[key];
-    
-            if (property && property.event && 
-    
-                !Lang.isUndefined(property.value)) {
-    
-                if (this.queueInProgress) {
-    
-                    this.queueProperty(key);
-    
-                } else {
-    
-                    this.fireEvent(key, property.value);
-    
-                }
-    
-            }
-        },
-        
-        /**
-        * Applies a key-value Object literal to the configuration, replacing  
-        * any existing values, and queueing the property events.
-        * Although the values will be set, fireQueue() must be called for their 
-        * associated events to execute.
-        * @method applyConfig
-        * @param {Object} userConfig The configuration Object literal
-        * @param {Boolean} init  When set to true, the initialConfig will 
-        * be set to the userConfig passed in, so that calling a reset will 
-        * reset the properties to the passed values.
-        */
-        applyConfig: function (userConfig, init) {
-        
-            var sKey,
-                oConfig;
-
-            if (init) {
-                oConfig = {};
-                for (sKey in userConfig) {
-                    if (Lang.hasOwnProperty(userConfig, sKey)) {
-                        oConfig[sKey.toLowerCase()] = userConfig[sKey];
-                    }
-                }
-                this.initialConfig = oConfig;
-            }
-
-            for (sKey in userConfig) {
-                if (Lang.hasOwnProperty(userConfig, sKey)) {
-                    this.queueProperty(sKey, userConfig[sKey]);
-                }
-            }
-        },
-        
-        /**
-        * Refires the events for all configuration properties using their 
-        * current values.
-        * @method refresh
-        */
-        refresh: function () {
-
-            var prop;
-
-            for (prop in this.config) {
-                if (Lang.hasOwnProperty(this.config, prop)) {
-                    this.refireEvent(prop);
-                }
-            }
-        },
-        
-        /**
-        * Fires the normalized list of queued property change events
-        * @method fireQueue
-        */
-        fireQueue: function () {
-        
-            var i, 
-                queueItem,
-                key,
-                value,
-                property;
-        
-            this.queueInProgress = true;
-            for (i = 0;i < this.eventQueue.length; i++) {
-                queueItem = this.eventQueue[i];
-                if (queueItem) {
-        
-                    key = queueItem[0];
-                    value = queueItem[1];
-                    property = this.config[key];
-
-                    property.value = value;
-
-                    // Clear out queue entry, to avoid it being 
-                    // re-added to the queue by any queueProperty/supercedes
-                    // calls which are invoked during fireEvent
-                    this.eventQueue[i] = null;
-
-                    this.fireEvent(key,value);
-                }
-            }
-            
-            this.queueInProgress = false;
-            this.eventQueue = [];
-        },
-        
-        /**
-        * Subscribes an external handler to the change event for any 
-        * given property. 
-        * @method subscribeToConfigEvent
-        * @param {String} key The property name
-        * @param {Function} handler The handler function to use subscribe to 
-        * the property's event
-        * @param {Object} obj The Object to use for scoping the event handler 
-        * (see CustomEvent documentation)
-        * @param {Boolean} override Optional. If true, will override "this"  
-        * within the handler to map to the scope Object passed into the method.
-        * @return {Boolean} True, if the subscription was successful, 
-        * otherwise false.
-        */ 
-        subscribeToConfigEvent: function (key, handler, obj, override) {
-    
-            var property = this.config[key.toLowerCase()];
-    
-            if (property && property.event) {
-                if (!Config.alreadySubscribed(property.event, handler, obj)) {
-                    property.event.subscribe(handler, obj, override);
-                }
-                return true;
-            } else {
-                return false;
-            }
-    
-        },
-        
-        /**
-        * Unsubscribes an external handler from the change event for any 
-        * given property. 
-        * @method unsubscribeFromConfigEvent
-        * @param {String} key The property name
-        * @param {Function} handler The handler function to use subscribe to 
-        * the property's event
-        * @param {Object} obj The Object to use for scoping the event 
-        * handler (see CustomEvent documentation)
-        * @return {Boolean} True, if the unsubscription was successful, 
-        * otherwise false.
-        */
-        unsubscribeFromConfigEvent: function (key, handler, obj) {
-            var property = this.config[key.toLowerCase()];
-            if (property && property.event) {
-                return property.event.unsubscribe(handler, obj);
-            } else {
-                return false;
-            }
-        },
-        
-        /**
-        * Returns a string representation of the Config object
-        * @method toString
-        * @return {String} The Config object in string format.
-        */
-        toString: function () {
-            var output = "Config";
-            if (this.owner) {
-                output += " [" + this.owner.toString() + "]";
-            }
-            return output;
-        },
-        
-        /**
-        * Returns a string representation of the Config object's current 
-        * CustomEvent queue
-        * @method outputEventQueue
-        * @return {String} The string list of CustomEvents currently queued 
-        * for execution
-        */
-        outputEventQueue: function () {
-
-            var output = "",
-                queueItem,
-                q,
-                nQueue = this.eventQueue.length;
-              
-            for (q = 0; q < nQueue; q++) {
-                queueItem = this.eventQueue[q];
-                if (queueItem) {
-                    output += queueItem[0] + "=" + queueItem[1] + ", ";
-                }
-            }
-            return output;
-        },
-
-        /**
-        * Sets all properties to null, unsubscribes all listeners from each 
-        * property's change event and all listeners from the configChangedEvent.
-        * @method destroy
-        */
-        destroy: function () {
-
-            var oConfig = this.config,
-                sProperty,
-                oProperty;
-
-
-            for (sProperty in oConfig) {
-            
-                if (Lang.hasOwnProperty(oConfig, sProperty)) {
-
-                    oProperty = oConfig[sProperty];
-
-                    oProperty.event.unsubscribeAll();
-                    oProperty.event = null;
-
-                }
-            
-            }
-            
-            this.configChangedEvent.unsubscribeAll();
-            
-            this.configChangedEvent = null;
-            this.owner = null;
-            this.config = null;
-            this.initialConfig = null;
-            this.eventQueue = null;
-        
-        }
-
-    };
-    
-    
-    
-    /**
-    * Checks to determine if a particular function/Object pair are already 
-    * subscribed to the specified CustomEvent
-    * @method YAHOO.util.Config.alreadySubscribed
-    * @static
-    * @param {YAHOO.util.CustomEvent} evt The CustomEvent for which to check 
-    * the subscriptions
-    * @param {Function} fn The function to look for in the subscribers list
-    * @param {Object} obj The execution scope Object for the subscription
-    * @return {Boolean} true, if the function/Object pair is already subscribed 
-    * to the CustomEvent passed in
-    */
-    Config.alreadySubscribed = function (evt, fn, obj) {
-    
-        var nSubscribers = evt.subscribers.length,
-            subsc,
-            i;
-
-        if (nSubscribers > 0) {
-            i = nSubscribers - 1;
-            do {
-                subsc = evt.subscribers[i];
-                if (subsc && subsc.obj == obj && subsc.fn == fn) {
-                    return true;
-                }
-            }
-            while (i--);
-        }
-
-        return false;
-
-    };
-
-    YAHOO.lang.augmentProto(Config, YAHOO.util.EventProvider);
-
-}());
-
-(function () {
-
-    /**
-    * The Container family of components is designed to enable developers to 
-    * create different kinds of content-containing modules on the web. Module 
-    * and Overlay are the most basic containers, and they can be used directly 
-    * or extended to build custom containers. Also part of the Container family 
-    * are four UI controls that extend Module and Overlay: Tooltip, Panel, 
-    * Dialog, and SimpleDialog.
-    * @module container
-    * @title Container
-    * @requires yahoo, dom, event 
-    * @optional dragdrop, animation, button
-    */
-    
-    /**
-    * Module is a JavaScript representation of the Standard Module Format. 
-    * Standard Module Format is a simple standard for markup containers where 
-    * child nodes representing the header, body, and footer of the content are 
-    * denoted using the CSS classes "hd", "bd", and "ft" respectively. 
-    * Module is the base class for all other classes in the YUI 
-    * Container package.
-    * @namespace YAHOO.widget
-    * @class Module
-    * @constructor
-    * @param {String} el The element ID representing the Module <em>OR</em>
-    * @param {HTMLElement} el The element representing the Module
-    * @param {Object} userConfig The configuration Object literal containing 
-    * the configuration that should be set for this module. See configuration 
-    * documentation for more details.
-    */
-    YAHOO.widget.Module = function (el, userConfig) {
-        if (el) {
-            this.init(el, userConfig);
-        } else {
-        }
-    };
-
-    var Dom = YAHOO.util.Dom,
-        Config = YAHOO.util.Config,
-        Event = YAHOO.util.Event,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Module = YAHOO.widget.Module,
-
-        m_oModuleTemplate,
-        m_oHeaderTemplate,
-        m_oBodyTemplate,
-        m_oFooterTemplate,
-
-        /**
-        * Constant representing the name of the Module's events
-        * @property EVENT_TYPES
-        * @private
-        * @final
-        * @type Object
-        */
-        EVENT_TYPES = {
-            "BEFORE_INIT": "beforeInit",
-            "INIT": "init",
-            "APPEND": "append",
-            "BEFORE_RENDER": "beforeRender",
-            "RENDER": "render",
-            "CHANGE_HEADER": "changeHeader",
-            "CHANGE_BODY": "changeBody",
-            "CHANGE_FOOTER": "changeFooter",
-            "CHANGE_CONTENT": "changeContent",
-            "DESTORY": "destroy",
-            "BEFORE_SHOW": "beforeShow",
-            "SHOW": "show",
-            "BEFORE_HIDE": "beforeHide",
-            "HIDE": "hide"
-        },
-            
-        /**
-        * Constant representing the Module's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-        
-            "VISIBLE": { 
-                key: "visible", 
-                value: true, 
-                validator: YAHOO.lang.isBoolean 
-            },
-        
-            "EFFECT": { 
-                key: "effect", 
-                suppressEvent: true, 
-                supercedes: ["visible"] 
-            },
-
-            "MONITOR_RESIZE": { 
-                key: "monitorresize", 
-                value: true  
-            },
-
-            "APPEND_TO_DOCUMENT_BODY": { 
-                key: "appendtodocumentbody", 
-                value: false
-            }
-        };
-    
-    /**
-    * Constant representing the prefix path to use for non-secure images
-    * @property YAHOO.widget.Module.IMG_ROOT
-    * @static
-    * @final
-    * @type String
-    */
-    Module.IMG_ROOT = null;
-    
-    /**
-    * Constant representing the prefix path to use for securely served images
-    * @property YAHOO.widget.Module.IMG_ROOT_SSL
-    * @static
-    * @final
-    * @type String
-    */
-    Module.IMG_ROOT_SSL = null;
-    
-    /**
-    * Constant for the default CSS class name that represents a Module
-    * @property YAHOO.widget.Module.CSS_MODULE
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_MODULE = "yui-module";
-    
-    /**
-    * Constant representing the module header
-    * @property YAHOO.widget.Module.CSS_HEADER
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_HEADER = "hd";
-
-    /**
-    * Constant representing the module body
-    * @property YAHOO.widget.Module.CSS_BODY
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_BODY = "bd";
-    
-    /**
-    * Constant representing the module footer
-    * @property YAHOO.widget.Module.CSS_FOOTER
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_FOOTER = "ft";
-    
-    /**
-    * Constant representing the url for the "src" attribute of the iframe 
-    * used to monitor changes to the browser's base font size
-    * @property YAHOO.widget.Module.RESIZE_MONITOR_SECURE_URL
-    * @static
-    * @final
-    * @type String
-    */
-    Module.RESIZE_MONITOR_SECURE_URL = "javascript:false;";
-    
-    /**
-    * Singleton CustomEvent fired when the font size is changed in the browser.
-    * Opera's "zoom" functionality currently does not support text 
-    * size detection.
-    * @event YAHOO.widget.Module.textResizeEvent
-    */
-    Module.textResizeEvent = new CustomEvent("textResize");
-
-    function createModuleTemplate() {
-
-        if (!m_oModuleTemplate) {
-            m_oModuleTemplate = document.createElement("div");
-            
-            m_oModuleTemplate.innerHTML = ("<div class=\"" + 
-                Module.CSS_HEADER + "\"></div>" + "<div class=\"" + 
-                Module.CSS_BODY + "\"></div><div class=\"" + 
-                Module.CSS_FOOTER + "\"></div>");
-
-            m_oHeaderTemplate = m_oModuleTemplate.firstChild;
-            m_oBodyTemplate = m_oHeaderTemplate.nextSibling;
-            m_oFooterTemplate = m_oBodyTemplate.nextSibling;
-        }
-
-        return m_oModuleTemplate;
-    }
-
-    function createHeader() {
-        if (!m_oHeaderTemplate) {
-            createModuleTemplate();
-        }
-        return (m_oHeaderTemplate.cloneNode(false));
-    }
-
-    function createBody() {
-        if (!m_oBodyTemplate) {
-            createModuleTemplate();
-        }
-        return (m_oBodyTemplate.cloneNode(false));
-    }
-
-    function createFooter() {
-        if (!m_oFooterTemplate) {
-            createModuleTemplate();
-        }
-        return (m_oFooterTemplate.cloneNode(false));
-    }
-
-    Module.prototype = {
-
-        /**
-        * The class's constructor function
-        * @property contructor
-        * @type Function
-        */
-        constructor: Module,
-        
-        /**
-        * The main module element that contains the header, body, and footer
-        * @property element
-        * @type HTMLElement
-        */
-        element: null,
-
-        /**
-        * The header element, denoted with CSS class "hd"
-        * @property header
-        * @type HTMLElement
-        */
-        header: null,
-
-        /**
-        * The body element, denoted with CSS class "bd"
-        * @property body
-        * @type HTMLElement
-        */
-        body: null,
-
-        /**
-        * The footer element, denoted with CSS class "ft"
-        * @property footer
-        * @type HTMLElement
-        */
-        footer: null,
-
-        /**
-        * The id of the element
-        * @property id
-        * @type String
-        */
-        id: null,
-
-        /**
-        * A string representing the root path for all images created by
-        * a Module instance.
-        * @deprecated It is recommend that any images for a Module be applied
-        * via CSS using the "background-image" property.
-        * @property imageRoot
-        * @type String
-        */
-        imageRoot: Module.IMG_ROOT,
-
-        /**
-        * Initializes the custom events for Module which are fired 
-        * automatically at appropriate times by the Module class.
-        * @method initEvents
-        */
-        initEvents: function () {
-
-            var SIGNATURE = CustomEvent.LIST;
-
-            /**
-            * CustomEvent fired prior to class initalization.
-            * @event beforeInitEvent
-            * @param {class} classRef class reference of the initializing 
-            * class, such as this.beforeInitEvent.fire(Module)
-            */
-            this.beforeInitEvent = this.createEvent(EVENT_TYPES.BEFORE_INIT);
-            this.beforeInitEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after class initalization.
-            * @event initEvent
-            * @param {class} classRef class reference of the initializing 
-            * class, such as this.beforeInitEvent.fire(Module)
-            */  
-            this.initEvent = this.createEvent(EVENT_TYPES.INIT);
-            this.initEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired when the Module is appended to the DOM
-            * @event appendEvent
-            */
-            this.appendEvent = this.createEvent(EVENT_TYPES.APPEND);
-            this.appendEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired before the Module is rendered
-            * @event beforeRenderEvent
-            */
-            this.beforeRenderEvent = this.createEvent(EVENT_TYPES.BEFORE_RENDER);
-            this.beforeRenderEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired after the Module is rendered
-            * @event renderEvent
-            */
-            this.renderEvent = this.createEvent(EVENT_TYPES.RENDER);
-            this.renderEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired when the header content of the Module 
-            * is modified
-            * @event changeHeaderEvent
-            * @param {String/HTMLElement} content String/element representing 
-            * the new header content
-            */
-            this.changeHeaderEvent = this.createEvent(EVENT_TYPES.CHANGE_HEADER);
-            this.changeHeaderEvent.signature = SIGNATURE;
-            
-            /**
-            * CustomEvent fired when the body content of the Module is modified
-            * @event changeBodyEvent
-            * @param {String/HTMLElement} content String/element representing 
-            * the new body content
-            */  
-            this.changeBodyEvent = this.createEvent(EVENT_TYPES.CHANGE_BODY);
-            this.changeBodyEvent.signature = SIGNATURE;
-            
-            /**
-            * CustomEvent fired when the footer content of the Module 
-            * is modified
-            * @event changeFooterEvent
-            * @param {String/HTMLElement} content String/element representing 
-            * the new footer content
-            */
-            this.changeFooterEvent = this.createEvent(EVENT_TYPES.CHANGE_FOOTER);
-            this.changeFooterEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired when the content of the Module is modified
-            * @event changeContentEvent
-            */
-            this.changeContentEvent = this.createEvent(EVENT_TYPES.CHANGE_CONTENT);
-            this.changeContentEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired when the Module is destroyed
-            * @event destroyEvent
-            */
-            this.destroyEvent = this.createEvent(EVENT_TYPES.DESTORY);
-            this.destroyEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired before the Module is shown
-            * @event beforeShowEvent
-            */
-            this.beforeShowEvent = this.createEvent(EVENT_TYPES.BEFORE_SHOW);
-            this.beforeShowEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after the Module is shown
-            * @event showEvent
-            */
-            this.showEvent = this.createEvent(EVENT_TYPES.SHOW);
-            this.showEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired before the Module is hidden
-            * @event beforeHideEvent
-            */
-            this.beforeHideEvent = this.createEvent(EVENT_TYPES.BEFORE_HIDE);
-            this.beforeHideEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after the Module is hidden
-            * @event hideEvent
-            */
-            this.hideEvent = this.createEvent(EVENT_TYPES.HIDE);
-            this.hideEvent.signature = SIGNATURE;
-        }, 
-
-        /**
-        * String representing the current user-agent platform
-        * @property platform
-        * @type String
-        */
-        platform: function () {
-            var ua = navigator.userAgent.toLowerCase();
-
-            if (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1) {
-                return "windows";
-            } else if (ua.indexOf("macintosh") != -1) {
-                return "mac";
-            } else {
-                return false;
-            }
-        }(),
-        
-        /**
-        * String representing the user-agent of the browser
-        * @deprecated Use YAHOO.env.ua
-        * @property browser
-        * @type String
-        */
-        browser: function () {
-            var ua = navigator.userAgent.toLowerCase();
-            /*
-                 Check Opera first in case of spoof and check Safari before
-                 Gecko since Safari's user agent string includes "like Gecko"
-            */
-            if (ua.indexOf('opera') != -1) { 
-                return 'opera';
-            } else if (ua.indexOf('msie 7') != -1) {
-                return 'ie7';
-            } else if (ua.indexOf('msie') != -1) {
-                return 'ie';
-            } else if (ua.indexOf('safari') != -1) { 
-                return 'safari';
-            } else if (ua.indexOf('gecko') != -1) {
-                return 'gecko';
-            } else {
-                return false;
-            }
-        }(),
-        
-        /**
-        * Boolean representing whether or not the current browsing context is 
-        * secure (https)
-        * @property isSecure
-        * @type Boolean
-        */
-        isSecure: function () {
-            if (window.location.href.toLowerCase().indexOf("https") === 0) {
-                return true;
-            } else {
-                return false;
-            }
-        }(),
-        
-        /**
-        * Initializes the custom events for Module which are fired 
-        * automatically at appropriate times by the Module class.
-        */
-        initDefaultConfig: function () {
-            // Add properties //
-            /**
-            * Specifies whether the Module is visible on the page.
-            * @config visible
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.VISIBLE.key, {
-                handler: this.configVisible, 
-                value: DEFAULT_CONFIG.VISIBLE.value, 
-                validator: DEFAULT_CONFIG.VISIBLE.validator
-            });
-
-            /**
-            * <p>
-            * Object or array of objects representing the ContainerEffect 
-            * classes that are active for animating the container.
-            * </p>
-            * <p>
-            * <strong>NOTE:</strong> Although this configuration 
-            * property is introduced at the Module level, an out of the box
-            * implementation is not shipped for the Module class so setting
-            * the proroperty on the Module class has no effect. The Overlay 
-            * class is the first class to provide out of the box ContainerEffect 
-            * support.
-            * </p>
-            * @config effect
-            * @type Object
-            * @default null
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.EFFECT.key, {
-                suppressEvent: DEFAULT_CONFIG.EFFECT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.EFFECT.supercedes
-            });
-
-            /**
-            * Specifies whether to create a special proxy iframe to monitor 
-            * for user font resizing in the document
-            * @config monitorresize
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.MONITOR_RESIZE.key, {
-                handler: this.configMonitorResize,
-                value: DEFAULT_CONFIG.MONITOR_RESIZE.value
-            });
-
-            /**
-            * Specifies if the module should be rendered as the first child 
-            * of document.body or appended as the last child when render is called
-            * with document.body as the "appendToNode".
-            * <p>
-            * Appending to the body while the DOM is still being constructed can 
-            * lead to Operation Aborted errors in IE hence this flag is set to 
-            * false by default.
-            * </p>
-            * 
-            * @config appendtodocumentbody
-            * @type Boolean
-            * @default false
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.APPEND_TO_DOCUMENT_BODY.key, {
-                value: DEFAULT_CONFIG.APPEND_TO_DOCUMENT_BODY.value
-            });
-        },
-
-        /**
-        * The Module class's initialization method, which is executed for
-        * Module and all of its subclasses. This method is automatically 
-        * called by the constructor, and  sets up all DOM references for 
-        * pre-existing markup, and creates required markup if it is not 
-        * already present.
-        * @method init
-        * @param {String} el The element ID representing the Module <em>OR</em>
-        * @param {HTMLElement} el The element representing the Module
-        * @param {Object} userConfig The configuration Object literal 
-        * containing the configuration that should be set for this module. 
-        * See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-
-            var elId, child;
-
-            this.initEvents();
-            this.beforeInitEvent.fire(Module);
-
-            /**
-            * The Module's Config object used for monitoring 
-            * configuration properties.
-            * @property cfg
-            * @type YAHOO.util.Config
-            */
-            this.cfg = new Config(this);
-
-            if (this.isSecure) {
-                this.imageRoot = Module.IMG_ROOT_SSL;
-            }
-
-            if (typeof el == "string") {
-                elId = el;
-                el = document.getElementById(el);
-                if (! el) {
-                    el = (createModuleTemplate()).cloneNode(false);
-                    el.id = elId;
-                }
-            }
-
-            this.element = el;
-
-            if (el.id) {
-                this.id = el.id;
-            }
-
-            child = this.element.firstChild;
-
-            if (child) {
-                var fndHd = false, fndBd = false, fndFt = false;
-                do {
-                    // We're looking for elements
-                    if (1 == child.nodeType) {
-                        if (!fndHd && Dom.hasClass(child, Module.CSS_HEADER)) {
-                            this.header = child;
-                            fndHd = true;
-                        } else if (!fndBd && Dom.hasClass(child, Module.CSS_BODY)) {
-                            this.body = child;
-                            fndBd = true;
-                        } else if (!fndFt && Dom.hasClass(child, Module.CSS_FOOTER)){
-                            this.footer = child;
-                            fndFt = true;
-                        }
-                    }
-                } while ((child = child.nextSibling));
-            }
-
-            this.initDefaultConfig();
-
-            Dom.addClass(this.element, Module.CSS_MODULE);
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-
-            /*
-                Subscribe to the fireQueue() method of Config so that any 
-                queued configuration changes are excecuted upon render of 
-                the Module
-            */ 
-
-            if (!Config.alreadySubscribed(this.renderEvent, this.cfg.fireQueue, this.cfg)) {
-                this.renderEvent.subscribe(this.cfg.fireQueue, this.cfg, true);
-            }
-
-            this.initEvent.fire(Module);
-        },
-
-        /**
-        * Initialize an empty IFRAME that is placed out of the visible area 
-        * that can be used to detect text resize.
-        * @method initResizeMonitor
-        */
-        initResizeMonitor: function () {
-
-            var isGeckoWin = (YAHOO.env.ua.gecko && this.platform == "windows");
-            if (isGeckoWin) {
-                // Help prevent spinning loading icon which 
-                // started with FireFox 2.0.0.8/Win
-                var self = this;
-                setTimeout(function(){self._initResizeMonitor();}, 0);
-            } else {
-                this._initResizeMonitor();
-            }
-        },
-
-        /**
-         * Create and initialize the text resize monitoring iframe.
-         * 
-         * @protected
-         * @method _initResizeMonitor
-         */
-        _initResizeMonitor : function() {
-
-            var oDoc, 
-                oIFrame, 
-                sHTML;
-
-            function fireTextResize() {
-                Module.textResizeEvent.fire();
-            }
-
-            if (!YAHOO.env.ua.opera) {
-                oIFrame = Dom.get("_yuiResizeMonitor");
-
-                var supportsCWResize = this._supportsCWResize();
-
-                if (!oIFrame) {
-                    oIFrame = document.createElement("iframe");
-
-                    if (this.isSecure && Module.RESIZE_MONITOR_SECURE_URL && YAHOO.env.ua.ie) {
-                        oIFrame.src = Module.RESIZE_MONITOR_SECURE_URL;
-                    }
-
-                    if (!supportsCWResize) {
-                        // Can't monitor on contentWindow, so fire from inside iframe
-                        sHTML = ["<html><head><script ",
-                                 "type=\"text/javascript\">",
-                                 "window.onresize=function(){window.parent.",
-                                 "YAHOO.widget.Module.textResizeEvent.",
-                                 "fire();};<",
-                                 "\/script></head>",
-                                 "<body></body></html>"].join('');
-
-                        oIFrame.src = "data:text/html;charset=utf-8," + encodeURIComponent(sHTML);
-                    }
-
-                    oIFrame.id = "_yuiResizeMonitor";
-                    oIFrame.title = "Text Resize Monitor";
-                    /*
-                        Need to set "position" property before inserting the 
-                        iframe into the document or Safari's status bar will 
-                        forever indicate the iframe is loading 
-                        (See SourceForge bug #1723064)
-                    */
-                    oIFrame.style.position = "absolute";
-                    oIFrame.style.visibility = "hidden";
-
-                    var db = document.body,
-                        fc = db.firstChild;
-                    if (fc) {
-                        db.insertBefore(oIFrame, fc);
-                    } else {
-                        db.appendChild(oIFrame);
-                    }
-
-                    oIFrame.style.width = "10em";
-                    oIFrame.style.height = "10em";
-                    oIFrame.style.top = (-1 * oIFrame.offsetHeight) + "px";
-                    oIFrame.style.left = (-1 * oIFrame.offsetWidth) + "px";
-                    oIFrame.style.borderWidth = "0";
-                    oIFrame.style.visibility = "visible";
-
-                    /*
-                       Don't open/close the document for Gecko like we used to, since it
-                       leads to duplicate cookies. (See SourceForge bug #1721755)
-                    */
-                    if (YAHOO.env.ua.webkit) {
-                        oDoc = oIFrame.contentWindow.document;
-                        oDoc.open();
-                        oDoc.close();
-                    }
-                }
-
-                if (oIFrame && oIFrame.contentWindow) {
-                    Module.textResizeEvent.subscribe(this.onDomResize, this, true);
-
-                    if (!Module.textResizeInitialized) {
-                        if (supportsCWResize) {
-                            if (!Event.on(oIFrame.contentWindow, "resize", fireTextResize)) {
-                                /*
-                                     This will fail in IE if document.domain has 
-                                     changed, so we must change the listener to 
-                                     use the oIFrame element instead
-                                */
-                                Event.on(oIFrame, "resize", fireTextResize);
-                            }
-                        }
-                        Module.textResizeInitialized = true;
-                    }
-                    this.resizeMonitor = oIFrame;
-                }
-            }
-        },
-
-        /**
-         * Text resize monitor helper method.
-         * Determines if the browser supports resize events on iframe content windows.
-         * 
-         * @private
-         * @method _supportsCWResize
-         */
-        _supportsCWResize : function() {
-            /*
-                Gecko 1.8.0 (FF1.5), 1.8.1.0-5 (FF2) won't fire resize on contentWindow.
-                Gecko 1.8.1.6+ (FF2.0.0.6+) and all other browsers will fire resize on contentWindow.
-
-                We don't want to start sniffing for patch versions, so fire textResize the same
-                way on all FF, until 1.9 (3.x) is out
-             */
-            var bSupported = true;
-            if (YAHOO.env.ua.gecko && YAHOO.env.ua.gecko <= 1.8) {
-                bSupported = false;
-                /*
-                var v = navigator.userAgent.match(/rv:([^\s\)]*)/); // From YAHOO.env.ua
-                if (v && v[0]) {
-                    var sv = v[0].match(/\d\.\d\.(\d)/);
-                    if (sv && sv[1]) {
-                        if (parseInt(sv[1], 10) > 0) {
-                            bSupported = true;
-                        }
-                    }
-                }
-                */
-            }
-            return bSupported;
-        },
-
-        /**
-        * Event handler fired when the resize monitor element is resized.
-        * @method onDomResize
-        * @param {DOMEvent} e The DOM resize event
-        * @param {Object} obj The scope object passed to the handler
-        */
-        onDomResize: function (e, obj) {
-
-            var nLeft = -1 * this.resizeMonitor.offsetWidth,
-                nTop = -1 * this.resizeMonitor.offsetHeight;
-        
-            this.resizeMonitor.style.top = nTop + "px";
-            this.resizeMonitor.style.left =  nLeft + "px";
-
-        },
-
-        /**
-        * Sets the Module's header content to the string specified, or appends 
-        * the passed element to the header. If no header is present, one will 
-        * be automatically created. An empty string can be passed to the method
-        * to clear the contents of the header.
-        * 
-        * @method setHeader
-        * @param {String} headerContent The string used to set the header.
-        * As a convenience, non HTMLElement objects can also be passed into 
-        * the method, and will be treated as strings, with the header innerHTML
-        * set to their default toString implementations.
-        * <em>OR</em>
-        * @param {HTMLElement} headerContent The HTMLElement to append to 
-        * <em>OR</em>
-        * @param {DocumentFragment} headerContent The document fragment 
-        * containing elements which are to be added to the header
-        */
-        setHeader: function (headerContent) {
-            var oHeader = this.header || (this.header = createHeader());
-
-            if (headerContent.nodeName) {
-                oHeader.innerHTML = "";
-                oHeader.appendChild(headerContent);
-            } else {
-                oHeader.innerHTML = headerContent;
-            }
-
-            this.changeHeaderEvent.fire(headerContent);
-            this.changeContentEvent.fire();
-
-        },
-
-        /**
-        * Appends the passed element to the header. If no header is present, 
-        * one will be automatically created.
-        * @method appendToHeader
-        * @param {HTMLElement | DocumentFragment} element The element to 
-        * append to the header. In the case of a document fragment, the
-        * children of the fragment will be appended to the header.
-        */
-        appendToHeader: function (element) {
-            var oHeader = this.header || (this.header = createHeader());
-
-            oHeader.appendChild(element);
-
-            this.changeHeaderEvent.fire(element);
-            this.changeContentEvent.fire();
-
-        },
-
-        /**
-        * Sets the Module's body content to the HTML specified. 
-        * 
-        * If no body is present, one will be automatically created. 
-        * 
-        * An empty string can be passed to the method to clear the contents of the body.
-        * @method setBody
-        * @param {String} bodyContent The HTML used to set the body. 
-        * As a convenience, non HTMLElement objects can also be passed into 
-        * the method, and will be treated as strings, with the body innerHTML
-        * set to their default toString implementations.
-        * <em>OR</em>
-        * @param {HTMLElement} bodyContent The HTMLElement to add as the first and only
-        * child of the body element.
-        * <em>OR</em>
-        * @param {DocumentFragment} bodyContent The document fragment 
-        * containing elements which are to be added to the body
-        */
-        setBody: function (bodyContent) {
-            var oBody = this.body || (this.body = createBody());
-
-            if (bodyContent.nodeName) {
-                oBody.innerHTML = "";
-                oBody.appendChild(bodyContent);
-            } else {
-                oBody.innerHTML = bodyContent;
-            }
-
-            this.changeBodyEvent.fire(bodyContent);
-            this.changeContentEvent.fire();
-        },
-
-        /**
-        * Appends the passed element to the body. If no body is present, one 
-        * will be automatically created.
-        * @method appendToBody
-        * @param {HTMLElement | DocumentFragment} element The element to 
-        * append to the body. In the case of a document fragment, the
-        * children of the fragment will be appended to the body.
-        * 
-        */
-        appendToBody: function (element) {
-            var oBody = this.body || (this.body = createBody());
-        
-            oBody.appendChild(element);
-
-            this.changeBodyEvent.fire(element);
-            this.changeContentEvent.fire();
-
-        },
-        
-        /**
-        * Sets the Module's footer content to the HTML specified, or appends 
-        * the passed element to the footer. If no footer is present, one will 
-        * be automatically created. An empty string can be passed to the method
-        * to clear the contents of the footer.
-        * @method setFooter
-        * @param {String} footerContent The HTML used to set the footer 
-        * As a convenience, non HTMLElement objects can also be passed into 
-        * the method, and will be treated as strings, with the footer innerHTML
-        * set to their default toString implementations.
-        * <em>OR</em>
-        * @param {HTMLElement} footerContent The HTMLElement to append to 
-        * the footer
-        * <em>OR</em>
-        * @param {DocumentFragment} footerContent The document fragment containing 
-        * elements which are to be added to the footer
-        */
-        setFooter: function (footerContent) {
-
-            var oFooter = this.footer || (this.footer = createFooter());
-
-            if (footerContent.nodeName) {
-                oFooter.innerHTML = "";
-                oFooter.appendChild(footerContent);
-            } else {
-                oFooter.innerHTML = footerContent;
-            }
-
-            this.changeFooterEvent.fire(footerContent);
-            this.changeContentEvent.fire();
-        },
-
-        /**
-        * Appends the passed element to the footer. If no footer is present, 
-        * one will be automatically created.
-        * @method appendToFooter
-        * @param {HTMLElement | DocumentFragment} element The element to 
-        * append to the footer. In the case of a document fragment, the
-        * children of the fragment will be appended to the footer
-        */
-        appendToFooter: function (element) {
-
-            var oFooter = this.footer || (this.footer = createFooter());
-
-            oFooter.appendChild(element);
-
-            this.changeFooterEvent.fire(element);
-            this.changeContentEvent.fire();
-
-        },
-
-        /**
-        * Renders the Module by inserting the elements that are not already 
-        * in the main Module into their correct places. Optionally appends 
-        * the Module to the specified node prior to the render's execution. 
-        * <p>
-        * For Modules without existing markup, the appendToNode argument 
-        * is REQUIRED. If this argument is ommitted and the current element is 
-        * not present in the document, the function will return false, 
-        * indicating that the render was a failure.
-        * </p>
-        * <p>
-        * NOTE: As of 2.3.1, if the appendToNode is the document's body element
-        * then the module is rendered as the first child of the body element, 
-        * and not appended to it, to avoid Operation Aborted errors in IE when 
-        * rendering the module before window's load event is fired. You can 
-        * use the appendtodocumentbody configuration property to change this 
-        * to append to document.body if required.
-        * </p>
-        * @method render
-        * @param {String} appendToNode The element id to which the Module 
-        * should be appended to prior to rendering <em>OR</em>
-        * @param {HTMLElement} appendToNode The element to which the Module 
-        * should be appended to prior to rendering
-        * @param {HTMLElement} moduleElement OPTIONAL. The element that 
-        * represents the actual Standard Module container.
-        * @return {Boolean} Success or failure of the render
-        */
-        render: function (appendToNode, moduleElement) {
-
-            var me = this,
-                firstChild;
-
-            function appendTo(parentNode) {
-                if (typeof parentNode == "string") {
-                    parentNode = document.getElementById(parentNode);
-                }
-
-                if (parentNode) {
-                    me._addToParent(parentNode, me.element);
-                    me.appendEvent.fire();
-                }
-            }
-
-            this.beforeRenderEvent.fire();
-
-            if (! moduleElement) {
-                moduleElement = this.element;
-            }
-
-            if (appendToNode) {
-                appendTo(appendToNode);
-            } else { 
-                // No node was passed in. If the element is not already in the Dom, this fails
-                if (! Dom.inDocument(this.element)) {
-                    return false;
-                }
-            }
-
-            // Need to get everything into the DOM if it isn't already
-            if (this.header && ! Dom.inDocument(this.header)) {
-                // There is a header, but it's not in the DOM yet. Need to add it.
-                firstChild = moduleElement.firstChild;
-                if (firstChild) {
-                    moduleElement.insertBefore(this.header, firstChild);
-                } else {
-                    moduleElement.appendChild(this.header);
-                }
-            }
-
-            if (this.body && ! Dom.inDocument(this.body)) {
-                // There is a body, but it's not in the DOM yet. Need to add it.		
-                if (this.footer && Dom.isAncestor(this.moduleElement, this.footer)) {
-                    moduleElement.insertBefore(this.body, this.footer);
-                } else {
-                    moduleElement.appendChild(this.body);
-                }
-            }
-
-            if (this.footer && ! Dom.inDocument(this.footer)) {
-                // There is a footer, but it's not in the DOM yet. Need to add it.
-                moduleElement.appendChild(this.footer);
-            }
-
-            this.renderEvent.fire();
-            return true;
-        },
-
-        /**
-        * Removes the Module element from the DOM and sets all child elements 
-        * to null.
-        * @method destroy
-        */
-        destroy: function () {
-
-            var parent,
-                e;
-
-            if (this.element) {
-                Event.purgeElement(this.element, true);
-                parent = this.element.parentNode;
-            }
-
-            if (parent) {
-                parent.removeChild(this.element);
-            }
-        
-            this.element = null;
-            this.header = null;
-            this.body = null;
-            this.footer = null;
-
-            Module.textResizeEvent.unsubscribe(this.onDomResize, this);
-
-            this.cfg.destroy();
-            this.cfg = null;
-
-            this.destroyEvent.fire();
-        },
-
-        /**
-        * Shows the Module element by setting the visible configuration 
-        * property to true. Also fires two events: beforeShowEvent prior to 
-        * the visibility change, and showEvent after.
-        * @method show
-        */
-        show: function () {
-            this.cfg.setProperty("visible", true);
-        },
-
-        /**
-        * Hides the Module element by setting the visible configuration 
-        * property to false. Also fires two events: beforeHideEvent prior to 
-        * the visibility change, and hideEvent after.
-        * @method hide
-        */
-        hide: function () {
-            this.cfg.setProperty("visible", false);
-        },
-        
-        // BUILT-IN EVENT HANDLERS FOR MODULE //
-        /**
-        * Default event handler for changing the visibility property of a 
-        * Module. By default, this is achieved by switching the "display" style 
-        * between "block" and "none".
-        * This method is responsible for firing showEvent and hideEvent.
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        * @method configVisible
-        */
-        configVisible: function (type, args, obj) {
-            var visible = args[0];
-            if (visible) {
-                this.beforeShowEvent.fire();
-                Dom.setStyle(this.element, "display", "block");
-                this.showEvent.fire();
-            } else {
-                this.beforeHideEvent.fire();
-                Dom.setStyle(this.element, "display", "none");
-                this.hideEvent.fire();
-            }
-        },
-        
-        /**
-        * Default event handler for the "monitorresize" configuration property
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        * @method configMonitorResize
-        */
-        configMonitorResize: function (type, args, obj) {
-            var monitor = args[0];
-            if (monitor) {
-                this.initResizeMonitor();
-            } else {
-                Module.textResizeEvent.unsubscribe(this.onDomResize, this, true);
-                this.resizeMonitor = null;
-            }
-        },
-
-        /**
-         * This method is a protected helper, used when constructing the DOM structure for the module 
-         * to account for situations which may cause Operation Aborted errors in IE. It should not 
-         * be used for general DOM construction.
-         * <p>
-         * If the parentNode is not document.body, the element is appended as the last element.
-         * </p>
-         * <p>
-         * If the parentNode is document.body the element is added as the first child to help
-         * prevent Operation Aborted errors in IE.
-         * </p>
-         *
-         * @param {parentNode} The HTML element to which the element will be added
-         * @param {element} The HTML element to be added to parentNode's children
-         * @method _addToParent
-         * @protected
-         */
-        _addToParent: function(parentNode, element) {
-            if (!this.cfg.getProperty("appendtodocumentbody") && parentNode === document.body && parentNode.firstChild) {
-                parentNode.insertBefore(element, parentNode.firstChild);
-            } else {
-                parentNode.appendChild(element);
-            }
-        },
-
-        /**
-        * Returns a String representation of the Object.
-        * @method toString
-        * @return {String} The string representation of the Module
-        */
-        toString: function () {
-            return "Module " + this.id;
-        }
-    };
-
-    YAHOO.lang.augmentProto(Module, YAHOO.util.EventProvider);
-
-}());
-
-(function () {
-
-    /**
-    * Overlay is a Module that is absolutely positioned above the page flow. It 
-    * has convenience methods for positioning and sizing, as well as options for 
-    * controlling zIndex and constraining the Overlay's position to the current 
-    * visible viewport. Overlay also contains a dynamicly generated IFRAME which 
-    * is placed beneath it for Internet Explorer 6 and 5.x so that it will be 
-    * properly rendered above SELECT elements.
-    * @namespace YAHOO.widget
-    * @class Overlay
-    * @extends YAHOO.widget.Module
-    * @param {String} el The element ID representing the Overlay <em>OR</em>
-    * @param {HTMLElement} el The element representing the Overlay
-    * @param {Object} userConfig The configuration object literal containing 
-    * the configuration that should be set for this Overlay. See configuration 
-    * documentation for more details.
-    * @constructor
-    */
-    YAHOO.widget.Overlay = function (el, userConfig) {
-        YAHOO.widget.Overlay.superclass.constructor.call(this, el, userConfig);
-    };
-
-    var Lang = YAHOO.lang,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Module = YAHOO.widget.Module,
-        Event = YAHOO.util.Event,
-        Dom = YAHOO.util.Dom,
-        Config = YAHOO.util.Config,
-        UA = YAHOO.env.ua,
-        Overlay = YAHOO.widget.Overlay,
-
-        _SUBSCRIBE = "subscribe",
-        _UNSUBSCRIBE = "unsubscribe",
-
-        m_oIFrameTemplate,
-
-        /**
-        * Constant representing the name of the Overlay's events
-        * @property EVENT_TYPES
-        * @private
-        * @final
-        * @type Object
-        */
-        EVENT_TYPES = {
-            "BEFORE_MOVE": "beforeMove",
-            "MOVE": "move"
-        },
-
-        /**
-        * Constant representing the Overlay's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-
-            "X": { 
-                key: "x", 
-                validator: Lang.isNumber, 
-                suppressEvent: true, 
-                supercedes: ["iframe"]
-            },
-
-            "Y": { 
-                key: "y", 
-                validator: Lang.isNumber, 
-                suppressEvent: true, 
-                supercedes: ["iframe"]
-            },
-
-            "XY": { 
-                key: "xy", 
-                suppressEvent: true, 
-                supercedes: ["iframe"] 
-            },
-
-            "CONTEXT": { 
-                key: "context", 
-                suppressEvent: true, 
-                supercedes: ["iframe"] 
-            },
-
-            "FIXED_CENTER": { 
-                key: "fixedcenter", 
-                value: false, 
-                validator: Lang.isBoolean, 
-                supercedes: ["iframe", "visible"] 
-            },
-
-            "WIDTH": { 
-                key: "width",
-                suppressEvent: true,
-                supercedes: ["context", "fixedcenter", "iframe"]
-            }, 
-
-            "HEIGHT": { 
-                key: "height", 
-                suppressEvent: true, 
-                supercedes: ["context", "fixedcenter", "iframe"] 
-            },
-
-            "AUTO_FILL_HEIGHT" : {
-                key: "autofillheight",
-                supressEvent: true,
-                supercedes: ["height"],
-                value:"body"
-            },
-
-            "ZINDEX": { 
-                key: "zindex", 
-                value: null 
-            },
-
-            "CONSTRAIN_TO_VIEWPORT": { 
-                key: "constraintoviewport", 
-                value: false, 
-                validator: Lang.isBoolean, 
-                supercedes: ["iframe", "x", "y", "xy"]
-            }, 
-
-            "IFRAME": { 
-                key: "iframe", 
-                value: (UA.ie == 6 ? true : false), 
-                validator: Lang.isBoolean, 
-                supercedes: ["zindex"] 
-            },
-            
-            "PREVENT_CONTEXT_OVERLAP": {
-                key: "preventcontextoverlap",
-                value: false,
-                validator: Lang.isBoolean,  
-                supercedes: ["constraintoviewport"]
-            }
-            
-        };
-
-    /**
-    * The URL that will be placed in the iframe
-    * @property YAHOO.widget.Overlay.IFRAME_SRC
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.IFRAME_SRC = "javascript:false;";
-
-    /**
-    * Number representing how much the iframe shim should be offset from each 
-    * side of an Overlay instance, in pixels.
-    * @property YAHOO.widget.Overlay.IFRAME_SRC
-    * @default 3
-    * @static
-    * @final
-    * @type Number
-    */
-    Overlay.IFRAME_OFFSET = 3;
-
-    /**
-    * Number representing the minimum distance an Overlay instance should be 
-    * positioned relative to the boundaries of the browser's viewport, in pixels.
-    * @property YAHOO.widget.Overlay.VIEWPORT_OFFSET
-    * @default 10
-    * @static
-    * @final
-    * @type Number
-    */
-    Overlay.VIEWPORT_OFFSET = 10;
-
-    /**
-    * Constant representing the top left corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.TOP_LEFT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.TOP_LEFT = "tl";
-
-    /**
-    * Constant representing the top right corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.TOP_RIGHT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.TOP_RIGHT = "tr";
-
-    /**
-    * Constant representing the top bottom left corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.BOTTOM_LEFT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.BOTTOM_LEFT = "bl";
-
-    /**
-    * Constant representing the bottom right corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.BOTTOM_RIGHT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.BOTTOM_RIGHT = "br";
-
-    /**
-    * Constant representing the default CSS class used for an Overlay
-    * @property YAHOO.widget.Overlay.CSS_OVERLAY
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.CSS_OVERLAY = "yui-overlay";
-
-    /**
-     * Constant representing the names of the standard module elements
-     * used in the overlay.
-     * @property YAHOO.widget.Overlay.STD_MOD_RE
-     * @static
-     * @final
-     * @type RegExp
-     */
-    Overlay.STD_MOD_RE = /^\s*?(body|footer|header)\s*?$/i;
-
-    /**
-    * A singleton CustomEvent used for reacting to the DOM event for 
-    * window scroll
-    * @event YAHOO.widget.Overlay.windowScrollEvent
-    */
-    Overlay.windowScrollEvent = new CustomEvent("windowScroll");
-
-    /**
-    * A singleton CustomEvent used for reacting to the DOM event for
-    * window resize
-    * @event YAHOO.widget.Overlay.windowResizeEvent
-    */
-    Overlay.windowResizeEvent = new CustomEvent("windowResize");
-
-    /**
-    * The DOM event handler used to fire the CustomEvent for window scroll
-    * @method YAHOO.widget.Overlay.windowScrollHandler
-    * @static
-    * @param {DOMEvent} e The DOM scroll event
-    */
-    Overlay.windowScrollHandler = function (e) {
-        var t = Event.getTarget(e);
-
-        // - Webkit (Safari 2/3) and Opera 9.2x bubble scroll events from elements to window
-        // - FF2/3 and IE6/7, Opera 9.5x don't bubble scroll events from elements to window
-        // - IE doesn't recognize scroll registered on the document.
-        //
-        // Also, when document view is scrolled, IE doesn't provide a target, 
-        // rest of the browsers set target to window.document, apart from opera 
-        // which sets target to window.
-        if (!t || t === window || t === window.document) {
-            if (UA.ie) {
-
-                if (! window.scrollEnd) {
-                    window.scrollEnd = -1;
-                }
-
-                clearTimeout(window.scrollEnd);
-        
-                window.scrollEnd = setTimeout(function () { 
-                    Overlay.windowScrollEvent.fire(); 
-                }, 1);
-        
-            } else {
-                Overlay.windowScrollEvent.fire();
-            }
-        }
-    };
-
-    /**
-    * The DOM event handler used to fire the CustomEvent for window resize
-    * @method YAHOO.widget.Overlay.windowResizeHandler
-    * @static
-    * @param {DOMEvent} e The DOM resize event
-    */
-    Overlay.windowResizeHandler = function (e) {
-
-        if (UA.ie) {
-            if (! window.resizeEnd) {
-                window.resizeEnd = -1;
-            }
-
-            clearTimeout(window.resizeEnd);
-
-            window.resizeEnd = setTimeout(function () {
-                Overlay.windowResizeEvent.fire(); 
-            }, 100);
-        } else {
-            Overlay.windowResizeEvent.fire();
-        }
-    };
-
-    /**
-    * A boolean that indicated whether the window resize and scroll events have 
-    * already been subscribed to.
-    * @property YAHOO.widget.Overlay._initialized
-    * @private
-    * @type Boolean
-    */
-    Overlay._initialized = null;
-
-    if (Overlay._initialized === null) {
-        Event.on(window, "scroll", Overlay.windowScrollHandler);
-        Event.on(window, "resize", Overlay.windowResizeHandler);
-        Overlay._initialized = true;
-    }
-
-    /**
-     * Internal map of special event types, which are provided
-     * by the instance. It maps the event type to the custom event 
-     * instance. Contains entries for the "windowScroll", "windowResize" and
-     * "textResize" static container events.
-     *
-     * @property YAHOO.widget.Overlay._TRIGGER_MAP
-     * @type Object
-     * @static
-     * @private
-     */
-    Overlay._TRIGGER_MAP = {
-        "windowScroll" : Overlay.windowScrollEvent,
-        "windowResize" : Overlay.windowResizeEvent,
-        "textResize"   : Module.textResizeEvent
-    };
-
-    YAHOO.extend(Overlay, Module, {
-
-        /**
-         * <p>
-         * Array of default event types which will trigger
-         * context alignment for the Overlay class.
-         * </p>
-         * <p>The array is empty by default for Overlay,
-         * but maybe populated in future releases, so classes extending
-         * Overlay which need to define their own set of CONTEXT_TRIGGERS
-         * should concatenate their super class's prototype.CONTEXT_TRIGGERS 
-         * value with their own array of values.
-         * </p>
-         * <p>
-         * E.g.:
-         * <code>CustomOverlay.prototype.CONTEXT_TRIGGERS = YAHOO.widget.Overlay.prototype.CONTEXT_TRIGGERS.concat(["windowScroll"]);</code>
-         * </p>
-         * 
-         * @property CONTEXT_TRIGGERS
-         * @type Array
-         * @final
-         */
-        CONTEXT_TRIGGERS : [],
-
-        /**
-        * The Overlay initialization method, which is executed for Overlay and  
-        * all of its subclasses. This method is automatically called by the 
-        * constructor, and  sets up all DOM references for pre-existing markup, 
-        * and creates required markup if it is not already present.
-        * @method init
-        * @param {String} el The element ID representing the Overlay <em>OR</em>
-        * @param {HTMLElement} el The element representing the Overlay
-        * @param {Object} userConfig The configuration object literal 
-        * containing the configuration that should be set for this Overlay. 
-        * See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-
-            /*
-                 Note that we don't pass the user config in here yet because we
-                 only want it executed once, at the lowest subclass level
-            */
-
-            Overlay.superclass.init.call(this, el/*, userConfig*/);
-
-            this.beforeInitEvent.fire(Overlay);
-
-            Dom.addClass(this.element, Overlay.CSS_OVERLAY);
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-
-            if (this.platform == "mac" && UA.gecko) {
-
-                if (! Config.alreadySubscribed(this.showEvent,
-                    this.showMacGeckoScrollbars, this)) {
-
-                    this.showEvent.subscribe(this.showMacGeckoScrollbars, 
-                        this, true);
-
-                }
-
-                if (! Config.alreadySubscribed(this.hideEvent, 
-                    this.hideMacGeckoScrollbars, this)) {
-
-                    this.hideEvent.subscribe(this.hideMacGeckoScrollbars, 
-                        this, true);
-
-                }
-            }
-
-            this.initEvent.fire(Overlay);
-        },
-        
-        /**
-        * Initializes the custom events for Overlay which are fired  
-        * automatically at appropriate times by the Overlay class.
-        * @method initEvents
-        */
-        initEvents: function () {
-
-            Overlay.superclass.initEvents.call(this);
-
-            var SIGNATURE = CustomEvent.LIST;
-
-            /**
-            * CustomEvent fired before the Overlay is moved.
-            * @event beforeMoveEvent
-            * @param {Number} x x coordinate
-            * @param {Number} y y coordinate
-            */
-            this.beforeMoveEvent = this.createEvent(EVENT_TYPES.BEFORE_MOVE);
-            this.beforeMoveEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after the Overlay is moved.
-            * @event moveEvent
-            * @param {Number} x x coordinate
-            * @param {Number} y y coordinate
-            */
-            this.moveEvent = this.createEvent(EVENT_TYPES.MOVE);
-            this.moveEvent.signature = SIGNATURE;
-
-        },
-        
-        /**
-        * Initializes the class's configurable properties which can be changed 
-        * using the Overlay's Config object (cfg).
-        * @method initDefaultConfig
-        */
-        initDefaultConfig: function () {
-    
-            Overlay.superclass.initDefaultConfig.call(this);
-
-            var cfg = this.cfg;
-
-            // Add overlay config properties //
-            
-            /**
-            * The absolute x-coordinate position of the Overlay
-            * @config x
-            * @type Number
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.X.key, { 
-    
-                handler: this.configX, 
-                validator: DEFAULT_CONFIG.X.validator, 
-                suppressEvent: DEFAULT_CONFIG.X.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.X.supercedes
-    
-            });
-
-            /**
-            * The absolute y-coordinate position of the Overlay
-            * @config y
-            * @type Number
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.Y.key, {
-
-                handler: this.configY, 
-                validator: DEFAULT_CONFIG.Y.validator, 
-                suppressEvent: DEFAULT_CONFIG.Y.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.Y.supercedes
-
-            });
-
-            /**
-            * An array with the absolute x and y positions of the Overlay
-            * @config xy
-            * @type Number[]
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.XY.key, {
-                handler: this.configXY, 
-                suppressEvent: DEFAULT_CONFIG.XY.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.XY.supercedes
-            });
-
-            /**
-            * <p>
-            * The array of context arguments for context-sensitive positioning. 
-            * </p>
-            *
-            * <p>
-            * The format of the array is: <code>[contextElementOrId, overlayCorner, contextCorner, arrayOfTriggerEvents (optional)]</code>, the
-            * the 4 array elements described in detail below:
-            * </p>
-            *
-            * <dl>
-            * <dt>contextElementOrId &#60;String|HTMLElement&#62;</dt>
-            * <dd>A reference to the context element to which the overlay should be aligned (or it's id).</dd>
-            * <dt>overlayCorner &#60;String&#62;</dt>
-            * <dd>The corner of the overlay which is to be used for alignment. This corner will be aligned to the 
-            * corner of the context element defined by the "contextCorner" entry which follows. Supported string values are: 
-            * "tr" (top right), "tl" (top left), "br" (bottom right), or "bl" (bottom left).</dd>
-            * <dt>contextCorner &#60;String&#62;</dt>
-            * <dd>The corner of the context element which is to be used for alignment. Supported string values are the same ones listed for the "overlayCorner" entry above.</dd>
-            * <dt>arrayOfTriggerEvents (optional) &#60;Array[String|CustomEvent]&#62;</dt>
-            * <dd>
-            * <p>
-            * By default, context alignment is a one time operation, aligning the Overlay to the context element when context configuration property is set, or when the <a href="#method_align">align</a> 
-            * method is invoked. However, you can use the optional "arrayOfTriggerEvents" entry to define the list of events which should force the overlay to re-align itself with the context element. 
-            * This is useful in situations where the layout of the document may change, resulting in the context element's position being modified.
-            * </p>
-            * <p>
-            * The array can contain either event type strings for events the instance publishes (e.g. "beforeShow") or CustomEvent instances. Additionally the following
-            * 3 static container event types are also currently supported : <code>"windowResize", "windowScroll", "textResize"</code> (defined in <a href="#property__TRIGGER_MAP">_TRIGGER_MAP</a> private property).
-            * </p>
-            * </dd>
-            * </dl>
-            *
-            * <p>
-            * For example, setting this property to <code>["img1", "tl", "bl"]</code> will 
-            * align the Overlay's top left corner to the bottom left corner of the
-            * context element with id "img1".
-            * </p>
-            * <p>
-            * Adding the optional trigger values: <code>["img1", "tl", "bl", ["beforeShow", "windowResize"]]</code>,
-            * will re-align the overlay position, whenever the "beforeShow" or "windowResize" events are fired.
-            * </p>
-            *
-            * @config context
-            * @type Array
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.CONTEXT.key, {
-                handler: this.configContext, 
-                suppressEvent: DEFAULT_CONFIG.CONTEXT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.CONTEXT.supercedes
-            });
-
-            /**
-            * True if the Overlay should be anchored to the center of 
-            * the viewport.
-            * @config fixedcenter
-            * @type Boolean
-            * @default false
-            */
-            cfg.addProperty(DEFAULT_CONFIG.FIXED_CENTER.key, {
-                handler: this.configFixedCenter,
-                value: DEFAULT_CONFIG.FIXED_CENTER.value, 
-                validator: DEFAULT_CONFIG.FIXED_CENTER.validator, 
-                supercedes: DEFAULT_CONFIG.FIXED_CENTER.supercedes
-            });
-    
-            /**
-            * CSS width of the Overlay.
-            * @config width
-            * @type String
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.WIDTH.key, {
-                handler: this.configWidth, 
-                suppressEvent: DEFAULT_CONFIG.WIDTH.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.WIDTH.supercedes
-            });
-
-            /**
-            * CSS height of the Overlay.
-            * @config height
-            * @type String
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.HEIGHT.key, {
-                handler: this.configHeight, 
-                suppressEvent: DEFAULT_CONFIG.HEIGHT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.HEIGHT.supercedes
-            });
-
-            /**
-            * Standard module element which should auto fill out the height of the Overlay if the height config property is set.
-            * Supported values are "header", "body", "footer".
-            *
-            * @config autofillheight
-            * @type String
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.AUTO_FILL_HEIGHT.key, {
-                handler: this.configAutoFillHeight, 
-                value : DEFAULT_CONFIG.AUTO_FILL_HEIGHT.value,
-                validator : this._validateAutoFill,
-                suppressEvent: DEFAULT_CONFIG.AUTO_FILL_HEIGHT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.AUTO_FILL_HEIGHT.supercedes
-            });
-
-            /**
-            * CSS z-index of the Overlay.
-            * @config zIndex
-            * @type Number
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.ZINDEX.key, {
-                handler: this.configzIndex,
-                value: DEFAULT_CONFIG.ZINDEX.value
-            });
-
-            /**
-            * True if the Overlay should be prevented from being positioned 
-            * out of the viewport.
-            * @config constraintoviewport
-            * @type Boolean
-            * @default false
-            */
-            cfg.addProperty(DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.key, {
-
-                handler: this.configConstrainToViewport, 
-                value: DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.value, 
-                validator: DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.validator, 
-                supercedes: DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.supercedes
-
-            });
-
-            /**
-            * @config iframe
-            * @description Boolean indicating whether or not the Overlay should 
-            * have an IFRAME shim; used to prevent SELECT elements from 
-            * poking through an Overlay instance in IE6.  When set to "true", 
-            * the iframe shim is created when the Overlay instance is intially
-            * made visible.
-            * @type Boolean
-            * @default true for IE6 and below, false for all other browsers.
-            */
-            cfg.addProperty(DEFAULT_CONFIG.IFRAME.key, {
-
-                handler: this.configIframe, 
-                value: DEFAULT_CONFIG.IFRAME.value, 
-                validator: DEFAULT_CONFIG.IFRAME.validator, 
-                supercedes: DEFAULT_CONFIG.IFRAME.supercedes
-
-            });
-
-            /**
-            * @config preventcontextoverlap
-            * @description Boolean indicating whether or not the Overlay should overlap its 
-            * context element (defined using the "context" configuration property) when the 
-            * "constraintoviewport" configuration property is set to "true".
-            * @type Boolean
-            * @default false
-            */
-            cfg.addProperty(DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.key, {
-
-                value: DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.value, 
-                validator: DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.validator, 
-                supercedes: DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.supercedes
-
-            });
-
-        },
-
-        /**
-        * Moves the Overlay to the specified position. This function is  
-        * identical to calling this.cfg.setProperty("xy", [x,y]);
-        * @method moveTo
-        * @param {Number} x The Overlay's new x position
-        * @param {Number} y The Overlay's new y position
-        */
-        moveTo: function (x, y) {
-            this.cfg.setProperty("xy", [x, y]);
-        },
-
-        /**
-        * Adds a CSS class ("hide-scrollbars") and removes a CSS class 
-        * ("show-scrollbars") to the Overlay to fix a bug in Gecko on Mac OS X 
-        * (https://bugzilla.mozilla.org/show_bug.cgi?id=187435)
-        * @method hideMacGeckoScrollbars
-        */
-        hideMacGeckoScrollbars: function () {
-            Dom.replaceClass(this.element, "show-scrollbars", "hide-scrollbars");
-        },
-
-        /**
-        * Adds a CSS class ("show-scrollbars") and removes a CSS class 
-        * ("hide-scrollbars") to the Overlay to fix a bug in Gecko on Mac OS X 
-        * (https://bugzilla.mozilla.org/show_bug.cgi?id=187435)
-        * @method showMacGeckoScrollbars
-        */
-        showMacGeckoScrollbars: function () {
-            Dom.replaceClass(this.element, "hide-scrollbars", "show-scrollbars");
-        },
-
-        // BEGIN BUILT-IN PROPERTY EVENT HANDLERS //
-        /**
-        * The default event handler fired when the "visible" property is 
-        * changed.  This method is responsible for firing showEvent
-        * and hideEvent.
-        * @method configVisible
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configVisible: function (type, args, obj) {
-
-            var visible = args[0],
-                currentVis = Dom.getStyle(this.element, "visibility"),
-                effect = this.cfg.getProperty("effect"),
-                effectInstances = [],
-                isMacGecko = (this.platform == "mac" && UA.gecko),
-                alreadySubscribed = Config.alreadySubscribed,
-                eff, ei, e, i, j, k, h,
-                nEffects,
-                nEffectInstances;
-
-            if (currentVis == "inherit") {
-                e = this.element.parentNode;
-
-                while (e.nodeType != 9 && e.nodeType != 11) {
-                    currentVis = Dom.getStyle(e, "visibility");
-
-                    if (currentVis != "inherit") { 
-                        break; 
-                    }
-
-                    e = e.parentNode;
-                }
-
-                if (currentVis == "inherit") {
-                    currentVis = "visible";
-                }
-            }
-
-            if (effect) {
-                if (effect instanceof Array) {
-                    nEffects = effect.length;
-
-                    for (i = 0; i < nEffects; i++) {
-                        eff = effect[i];
-                        effectInstances[effectInstances.length] = 
-                            eff.effect(this, eff.duration);
-
-                    }
-                } else {
-                    effectInstances[effectInstances.length] = 
-                        effect.effect(this, effect.duration);
-                }
-            }
-
-
-            if (visible) { // Show
-                if (isMacGecko) {
-                    this.showMacGeckoScrollbars();
-                }
-
-                if (effect) { // Animate in
-                    if (visible) { // Animate in if not showing
-                        if (currentVis != "visible" || currentVis === "") {
-                            this.beforeShowEvent.fire();
-                            nEffectInstances = effectInstances.length;
-
-                            for (j = 0; j < nEffectInstances; j++) {
-                                ei = effectInstances[j];
-                                if (j === 0 && !alreadySubscribed(
-                                        ei.animateInCompleteEvent, 
-                                        this.showEvent.fire, this.showEvent)) {
-
-                                    /*
-                                         Delegate showEvent until end 
-                                         of animateInComplete
-                                    */
-
-                                    ei.animateInCompleteEvent.subscribe(
-                                     this.showEvent.fire, this.showEvent, true);
-                                }
-                                ei.animateIn();
-                            }
-                        }
-                    }
-                } else { // Show
-                    if (currentVis != "visible" || currentVis === "") {
-                        this.beforeShowEvent.fire();
-
-                        Dom.setStyle(this.element, "visibility", "visible");
-
-                        this.cfg.refireEvent("iframe");
-                        this.showEvent.fire();
-                    }
-                }
-            } else { // Hide
-
-                if (isMacGecko) {
-                    this.hideMacGeckoScrollbars();
-                }
-                    
-                if (effect) { // Animate out if showing
-                    if (currentVis == "visible") {
-                        this.beforeHideEvent.fire();
-
-                        nEffectInstances = effectInstances.length;
-                        for (k = 0; k < nEffectInstances; k++) {
-                            h = effectInstances[k];
-    
-                            if (k === 0 && !alreadySubscribed(
-                                h.animateOutCompleteEvent, this.hideEvent.fire, 
-                                this.hideEvent)) {
-    
-                                /*
-                                     Delegate hideEvent until end 
-                                     of animateOutComplete
-                                */
-    
-                                h.animateOutCompleteEvent.subscribe(
-                                    this.hideEvent.fire, this.hideEvent, true);
-    
-                            }
-                            h.animateOut();
-                        }
-
-                    } else if (currentVis === "") {
-                        Dom.setStyle(this.element, "visibility", "hidden");
-                    }
-
-                } else { // Simple hide
-
-                    if (currentVis == "visible" || currentVis === "") {
-                        this.beforeHideEvent.fire();
-                        Dom.setStyle(this.element, "visibility", "hidden");
-                        this.hideEvent.fire();
-                    }
-                }
-            }
-        },
-
-        /**
-        * Center event handler used for centering on scroll/resize, but only if 
-        * the Overlay is visible
-        * @method doCenterOnDOMEvent
-        */
-        doCenterOnDOMEvent: function () {
-            if (this.cfg.getProperty("visible")) {
-                this.center();
-            }
-        },
-
-        /**
-        * The default event handler fired when the "fixedcenter" property 
-        * is changed.
-        * @method configFixedCenter
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configFixedCenter: function (type, args, obj) {
-
-            var val = args[0],
-                alreadySubscribed = Config.alreadySubscribed,
-                windowResizeEvent = Overlay.windowResizeEvent,
-                windowScrollEvent = Overlay.windowScrollEvent;
-
-            if (val) {
-                this.center();
-
-                if (!alreadySubscribed(this.beforeShowEvent, this.center, this)) {
-                    this.beforeShowEvent.subscribe(this.center);
-                }
-
-                if (!alreadySubscribed(windowResizeEvent, this.doCenterOnDOMEvent, this)) {
-                    windowResizeEvent.subscribe(this.doCenterOnDOMEvent, this, true);
-                }
-
-                if (!alreadySubscribed(windowScrollEvent, this.doCenterOnDOMEvent, this)) {
-                    windowScrollEvent.subscribe(this.doCenterOnDOMEvent, this, true);
-                }
-
-            } else {
-                this.beforeShowEvent.unsubscribe(this.center);
-
-                windowResizeEvent.unsubscribe(this.doCenterOnDOMEvent, this);
-                windowScrollEvent.unsubscribe(this.doCenterOnDOMEvent, this);
-            }
-        },
-        
-        /**
-        * The default event handler fired when the "height" property is changed.
-        * @method configHeight
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configHeight: function (type, args, obj) {
-
-            var height = args[0],
-                el = this.element;
-
-            Dom.setStyle(el, "height", height);
-            this.cfg.refireEvent("iframe");
-        },
-
-        /**
-         * The default event handler fired when the "autofillheight" property is changed.
-         * @method configAutoFillHeight
-         *
-         * @param {String} type The CustomEvent type (usually the property name)
-         * @param {Object[]} args The CustomEvent arguments. For configuration 
-         * handlers, args[0] will equal the newly applied value for the property.
-         * @param {Object} obj The scope object. For configuration handlers, 
-         * this will usually equal the owner.
-         */
-        configAutoFillHeight: function (type, args, obj) {
-            var fillEl = args[0],
-                currEl = this.cfg.getProperty("autofillheight");
-
-            this.cfg.unsubscribeFromConfigEvent("height", this._autoFillOnHeightChange);
-            Module.textResizeEvent.unsubscribe("height", this._autoFillOnHeightChange);
-
-            if (currEl && fillEl !== currEl && this[currEl]) {
-                Dom.setStyle(this[currEl], "height", "");
-            }
-
-            if (fillEl) {
-                fillEl = Lang.trim(fillEl.toLowerCase());
-
-                this.cfg.subscribeToConfigEvent("height", this._autoFillOnHeightChange, this[fillEl], this);
-                Module.textResizeEvent.subscribe(this._autoFillOnHeightChange, this[fillEl], this);
-
-                this.cfg.setProperty("autofillheight", fillEl, true);
-            }
-        },
-
-        /**
-        * The default event handler fired when the "width" property is changed.
-        * @method configWidth
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configWidth: function (type, args, obj) {
-
-            var width = args[0],
-                el = this.element;
-
-            Dom.setStyle(el, "width", width);
-            this.cfg.refireEvent("iframe");
-        },
-
-        /**
-        * The default event handler fired when the "zIndex" property is changed.
-        * @method configzIndex
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configzIndex: function (type, args, obj) {
-
-            var zIndex = args[0],
-                el = this.element;
-
-            if (! zIndex) {
-                zIndex = Dom.getStyle(el, "zIndex");
-                if (! zIndex || isNaN(zIndex)) {
-                    zIndex = 0;
-                }
-            }
-
-            if (this.iframe || this.cfg.getProperty("iframe") === true) {
-                if (zIndex <= 0) {
-                    zIndex = 1;
-                }
-            }
-
-            Dom.setStyle(el, "zIndex", zIndex);
-            this.cfg.setProperty("zIndex", zIndex, true);
-
-            if (this.iframe) {
-                this.stackIframe();
-            }
-        },
-
-        /**
-        * The default event handler fired when the "xy" property is changed.
-        * @method configXY
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configXY: function (type, args, obj) {
-
-            var pos = args[0],
-                x = pos[0],
-                y = pos[1];
-
-            this.cfg.setProperty("x", x);
-            this.cfg.setProperty("y", y);
-
-            this.beforeMoveEvent.fire([x, y]);
-
-            x = this.cfg.getProperty("x");
-            y = this.cfg.getProperty("y");
-
-
-            this.cfg.refireEvent("iframe");
-            this.moveEvent.fire([x, y]);
-        },
-
-        /**
-        * The default event handler fired when the "x" property is changed.
-        * @method configX
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configX: function (type, args, obj) {
-
-            var x = args[0],
-                y = this.cfg.getProperty("y");
-
-            this.cfg.setProperty("x", x, true);
-            this.cfg.setProperty("y", y, true);
-
-            this.beforeMoveEvent.fire([x, y]);
-
-            x = this.cfg.getProperty("x");
-            y = this.cfg.getProperty("y");
-            
-            Dom.setX(this.element, x, true);
-
-            this.cfg.setProperty("xy", [x, y], true);
-
-            this.cfg.refireEvent("iframe");
-            this.moveEvent.fire([x, y]);
-        },
-
-        /**
-        * The default event handler fired when the "y" property is changed.
-        * @method configY
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configY: function (type, args, obj) {
-
-            var x = this.cfg.getProperty("x"),
-                y = args[0];
-
-            this.cfg.setProperty("x", x, true);
-            this.cfg.setProperty("y", y, true);
-
-            this.beforeMoveEvent.fire([x, y]);
-
-            x = this.cfg.getProperty("x");
-            y = this.cfg.getProperty("y");
-
-            Dom.setY(this.element, y, true);
-
-            this.cfg.setProperty("xy", [x, y], true);
-
-            this.cfg.refireEvent("iframe");
-            this.moveEvent.fire([x, y]);
-        },
-        
-        /**
-        * Shows the iframe shim, if it has been enabled.
-        * @method showIframe
-        */
-        showIframe: function () {
-
-            var oIFrame = this.iframe,
-                oParentNode;
-
-            if (oIFrame) {
-                oParentNode = this.element.parentNode;
-
-                if (oParentNode != oIFrame.parentNode) {
-                    this._addToParent(oParentNode, oIFrame);
-                }
-                oIFrame.style.display = "block";
-            }
-        },
-
-        /**
-        * Hides the iframe shim, if it has been enabled.
-        * @method hideIframe
-        */
-        hideIframe: function () {
-            if (this.iframe) {
-                this.iframe.style.display = "none";
-            }
-        },
-
-        /**
-        * Syncronizes the size and position of iframe shim to that of its 
-        * corresponding Overlay instance.
-        * @method syncIframe
-        */
-        syncIframe: function () {
-
-            var oIFrame = this.iframe,
-                oElement = this.element,
-                nOffset = Overlay.IFRAME_OFFSET,
-                nDimensionOffset = (nOffset * 2),
-                aXY;
-
-            if (oIFrame) {
-                // Size <iframe>
-                oIFrame.style.width = (oElement.offsetWidth + nDimensionOffset + "px");
-                oIFrame.style.height = (oElement.offsetHeight + nDimensionOffset + "px");
-
-                // Position <iframe>
-                aXY = this.cfg.getProperty("xy");
-
-                if (!Lang.isArray(aXY) || (isNaN(aXY[0]) || isNaN(aXY[1]))) {
-                    this.syncPosition();
-                    aXY = this.cfg.getProperty("xy");
-                }
-                Dom.setXY(oIFrame, [(aXY[0] - nOffset), (aXY[1] - nOffset)]);
-            }
-        },
-
-        /**
-         * Sets the zindex of the iframe shim, if it exists, based on the zindex of
-         * the Overlay element. The zindex of the iframe is set to be one less 
-         * than the Overlay element's zindex.
-         * 
-         * <p>NOTE: This method will not bump up the zindex of the Overlay element
-         * to ensure that the iframe shim has a non-negative zindex.
-         * If you require the iframe zindex to be 0 or higher, the zindex of 
-         * the Overlay element should be set to a value greater than 0, before 
-         * this method is called.
-         * </p>
-         * @method stackIframe
-         */
-        stackIframe: function () {
-            if (this.iframe) {
-                var overlayZ = Dom.getStyle(this.element, "zIndex");
-                if (!YAHOO.lang.isUndefined(overlayZ) && !isNaN(overlayZ)) {
-                    Dom.setStyle(this.iframe, "zIndex", (overlayZ - 1));
-                }
-            }
-        },
-
-        /**
-        * The default event handler fired when the "iframe" property is changed.
-        * @method configIframe
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configIframe: function (type, args, obj) {
-
-            var bIFrame = args[0];
-
-            function createIFrame() {
-
-                var oIFrame = this.iframe,
-                    oElement = this.element,
-                    oParent;
-
-                if (!oIFrame) {
-                    if (!m_oIFrameTemplate) {
-                        m_oIFrameTemplate = document.createElement("iframe");
-
-                        if (this.isSecure) {
-                            m_oIFrameTemplate.src = Overlay.IFRAME_SRC;
-                        }
-
-                        /*
-                            Set the opacity of the <iframe> to 0 so that it 
-                            doesn't modify the opacity of any transparent 
-                            elements that may be on top of it (like a shadow).
-                        */
-                        if (UA.ie) {
-                            m_oIFrameTemplate.style.filter = "alpha(opacity=0)";
-                            /*
-                                 Need to set the "frameBorder" property to 0 
-                                 supress the default <iframe> border in IE.  
-                                 Setting the CSS "border" property alone 
-                                 doesn't supress it.
-                            */
-                            m_oIFrameTemplate.frameBorder = 0;
-                        }
-                        else {
-                            m_oIFrameTemplate.style.opacity = "0";
-                        }
-
-                        m_oIFrameTemplate.style.position = "absolute";
-                        m_oIFrameTemplate.style.border = "none";
-                        m_oIFrameTemplate.style.margin = "0";
-                        m_oIFrameTemplate.style.padding = "0";
-                        m_oIFrameTemplate.style.display = "none";
-                    }
-
-                    oIFrame = m_oIFrameTemplate.cloneNode(false);
-                    oParent = oElement.parentNode;
-
-                    var parentNode = oParent || document.body;
-
-                    this._addToParent(parentNode, oIFrame);
-                    this.iframe = oIFrame;
-                }
-
-                /*
-                     Show the <iframe> before positioning it since the "setXY" 
-                     method of DOM requires the element be in the document 
-                     and visible.
-                */
-                this.showIframe();
-
-                /*
-                     Syncronize the size and position of the <iframe> to that 
-                     of the Overlay.
-                */
-                this.syncIframe();
-                this.stackIframe();
-
-                // Add event listeners to update the <iframe> when necessary
-                if (!this._hasIframeEventListeners) {
-                    this.showEvent.subscribe(this.showIframe);
-                    this.hideEvent.subscribe(this.hideIframe);
-                    this.changeContentEvent.subscribe(this.syncIframe);
-
-                    this._hasIframeEventListeners = true;
-                }
-            }
-
-            function onBeforeShow() {
-                createIFrame.call(this);
-                this.beforeShowEvent.unsubscribe(onBeforeShow);
-                this._iframeDeferred = false;
-            }
-
-            if (bIFrame) { // <iframe> shim is enabled
-
-                if (this.cfg.getProperty("visible")) {
-                    createIFrame.call(this);
-                } else {
-                    if (!this._iframeDeferred) {
-                        this.beforeShowEvent.subscribe(onBeforeShow);
-                        this._iframeDeferred = true;
-                    }
-                }
-
-            } else {    // <iframe> shim is disabled
-                this.hideIframe();
-
-                if (this._hasIframeEventListeners) {
-                    this.showEvent.unsubscribe(this.showIframe);
-                    this.hideEvent.unsubscribe(this.hideIframe);
-                    this.changeContentEvent.unsubscribe(this.syncIframe);
-
-                    this._hasIframeEventListeners = false;
-                }
-            }
-        },
-
-        /**
-         * Set's the container's XY value from DOM if not already set.
-         * 
-         * Differs from syncPosition, in that the XY value is only sync'd with DOM if 
-         * not already set. The method also refire's the XY config property event, so any
-         * beforeMove, Move event listeners are invoked.
-         * 
-         * @method _primeXYFromDOM
-         * @protected
-         */
-        _primeXYFromDOM : function() {
-            if (YAHOO.lang.isUndefined(this.cfg.getProperty("xy"))) {
-                // Set CFG XY based on DOM XY
-                this.syncPosition();
-                // Account for XY being set silently in syncPosition (no moveTo fired/called)
-                this.cfg.refireEvent("xy");
-                this.beforeShowEvent.unsubscribe(this._primeXYFromDOM);
-            }
-        },
-
-        /**
-        * The default event handler fired when the "constraintoviewport" 
-        * property is changed.
-        * @method configConstrainToViewport
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for 
-        * the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configConstrainToViewport: function (type, args, obj) {
-            var val = args[0];
-
-            if (val) {
-                if (! Config.alreadySubscribed(this.beforeMoveEvent, this.enforceConstraints, this)) {
-                    this.beforeMoveEvent.subscribe(this.enforceConstraints, this, true);
-                }
-                if (! Config.alreadySubscribed(this.beforeShowEvent, this._primeXYFromDOM)) {
-                    this.beforeShowEvent.subscribe(this._primeXYFromDOM);
-                }
-            } else {
-                this.beforeShowEvent.unsubscribe(this._primeXYFromDOM);
-                this.beforeMoveEvent.unsubscribe(this.enforceConstraints, this);
-            }
-        },
-
-         /**
-        * The default event handler fired when the "context" property
-        * is changed.
-        * 
-        * @method configContext
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configContext: function (type, args, obj) {
-
-            var contextArgs = args[0],
-                contextEl,
-                elementMagnetCorner,
-                contextMagnetCorner,
-                triggers,
-                defTriggers = this.CONTEXT_TRIGGERS;
-
-            if (contextArgs) {
-
-                contextEl = contextArgs[0];
-                elementMagnetCorner = contextArgs[1];
-                contextMagnetCorner = contextArgs[2];
-                triggers = contextArgs[3];
-
-                if (defTriggers && defTriggers.length > 0) {
-                    triggers = (triggers || []).concat(defTriggers);
-                }
-
-                if (contextEl) {
-                    if (typeof contextEl == "string") {
-                        this.cfg.setProperty("context", [
-                                document.getElementById(contextEl), 
-                                elementMagnetCorner,
-                                contextMagnetCorner,
-                                triggers ],
-                                true);
-                    }
-
-                    if (elementMagnetCorner && contextMagnetCorner) {
-                        this.align(elementMagnetCorner, contextMagnetCorner);
-                    }
-
-                    if (this._contextTriggers) {
-                        // Unsubscribe Old Set
-                        this._processTriggers(this._contextTriggers, _UNSUBSCRIBE, this._alignOnTrigger);
-                    }
-
-                    if (triggers) {
-                        // Subscribe New Set
-                        this._processTriggers(triggers, _SUBSCRIBE, this._alignOnTrigger);
-                        this._contextTriggers = triggers;
-                    }
-                }
-            }
-        },
-
-        /**
-         * Custom Event handler for context alignment triggers. Invokes the align method
-         * 
-         * @method _alignOnTrigger
-         * @protected
-         * 
-         * @param {String} type The event type (not used by the default implementation)
-         * @param {Any[]} args The array of arguments for the trigger event (not used by the default implementation)
-         */
-        _alignOnTrigger: function(type, args) {
-            this.align();
-        },
-
-        /**
-         * Helper method to locate the custom event instance for the event name string
-         * passed in. As a convenience measure, any custom events passed in are returned.
-         *
-         * @method _findTriggerCE
-         * @private
-         *
-         * @param {String|CustomEvent} t Either a CustomEvent, or event type (e.g. "windowScroll") for which a 
-         * custom event instance needs to be looked up from the Overlay._TRIGGER_MAP.
-         */
-        _findTriggerCE : function(t) {
-            var tce = null;
-            if (t instanceof CustomEvent) {
-                tce = t;
-            } else if (Overlay._TRIGGER_MAP[t]) {
-                tce = Overlay._TRIGGER_MAP[t];
-            }
-            return tce;
-        },
-
-        /**
-         * Utility method that subscribes or unsubscribes the given 
-         * function from the list of trigger events provided.
-         *
-         * @method _processTriggers
-         * @protected 
-         *
-         * @param {Array[String|CustomEvent]} triggers An array of either CustomEvents, event type strings 
-         * (e.g. "beforeShow", "windowScroll") to/from which the provided function should be 
-         * subscribed/unsubscribed respectively.
-         *
-         * @param {String} mode Either "subscribe" or "unsubscribe", specifying whether or not
-         * we are subscribing or unsubscribing trigger listeners
-         * 
-         * @param {Function} fn The function to be subscribed/unsubscribed to/from the trigger event.
-         * Context is always set to the overlay instance, and no additional object argument 
-         * get passed to the subscribed function.
-         */
-        _processTriggers : function(triggers, mode, fn) {
-            var t, tce;
-
-            for (var i = 0, l = triggers.length; i < l; ++i) {
-                t = triggers[i];
-                tce = this._findTriggerCE(t);
-                if (tce) {
-                    tce[mode](fn, this, true);
-                } else {
-                    this[mode](t, fn);
-                }
-            }
-        },
-
-        // END BUILT-IN PROPERTY EVENT HANDLERS //
-        /**
-        * Aligns the Overlay to its context element using the specified corner 
-        * points (represented by the constants TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, 
-        * and BOTTOM_RIGHT.
-        * @method align
-        * @param {String} elementAlign  The String representing the corner of 
-        * the Overlay that should be aligned to the context element
-        * @param {String} contextAlign  The corner of the context element 
-        * that the elementAlign corner should stick to.
-        */
-        align: function (elementAlign, contextAlign) {
-
-            var contextArgs = this.cfg.getProperty("context"),
-                me = this,
-                context,
-                element,
-                contextRegion;
-
-            function doAlign(v, h) {
-    
-                switch (elementAlign) {
-    
-                case Overlay.TOP_LEFT:
-                    me.moveTo(h, v);
-                    break;
-    
-                case Overlay.TOP_RIGHT:
-                    me.moveTo((h - element.offsetWidth), v);
-                    break;
-    
-                case Overlay.BOTTOM_LEFT:
-                    me.moveTo(h, (v - element.offsetHeight));
-                    break;
-    
-                case Overlay.BOTTOM_RIGHT:
-                    me.moveTo((h - element.offsetWidth), 
-                        (v - element.offsetHeight));
-                    break;
-                }
-            }
-    
-    
-            if (contextArgs) {
-            
-                context = contextArgs[0];
-                element = this.element;
-                me = this;
-                
-                if (! elementAlign) {
-                    elementAlign = contextArgs[1];
-                }
-                
-                if (! contextAlign) {
-                    contextAlign = contextArgs[2];
-                }
-                
-                if (element && context) {
-                    contextRegion = Dom.getRegion(context);
-
-                    switch (contextAlign) {
-    
-                    case Overlay.TOP_LEFT:
-                        doAlign(contextRegion.top, contextRegion.left);
-                        break;
-    
-                    case Overlay.TOP_RIGHT:
-                        doAlign(contextRegion.top, contextRegion.right);
-                        break;
-    
-                    case Overlay.BOTTOM_LEFT:
-                        doAlign(contextRegion.bottom, contextRegion.left);
-                        break;
-    
-                    case Overlay.BOTTOM_RIGHT:
-                        doAlign(contextRegion.bottom, contextRegion.right);
-                        break;
-                    }
-    
-                }
-    
-            }
-            
-        },
-
-        /**
-        * The default event handler executed when the moveEvent is fired, if the 
-        * "constraintoviewport" is set to true.
-        * @method enforceConstraints
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        enforceConstraints: function (type, args, obj) {
-            var pos = args[0];
-            
-            var cXY = this.getConstrainedXY(pos[0], pos[1]);
-            this.cfg.setProperty("x", cXY[0], true);
-            this.cfg.setProperty("y", cXY[1], true);
-            this.cfg.setProperty("xy", cXY, true);
-        },
-
-
-        /**
-         * Given x coordinate value, returns the calculated x coordinate required to 
-         * position the Overlay if it is to be constrained to the viewport, based on the 
-         * current element size, viewport dimensions and scroll values.
-         *
-         * @param {Number} x The X coordinate value to be constrained
-         * @return {Number} The constrained x coordinate
-         */		
-        getConstrainedX: function (x) {
-
-            var oOverlay = this,
-                oOverlayEl = oOverlay.element,
-                nOverlayOffsetWidth = oOverlayEl.offsetWidth,
-
-                nViewportOffset = Overlay.VIEWPORT_OFFSET,
-                viewPortWidth = Dom.getViewportWidth(),
-                scrollX = Dom.getDocumentScrollLeft(),
-
-                bCanConstrain = (nOverlayOffsetWidth + nViewportOffset < viewPortWidth),
-
-                aContext = this.cfg.getProperty("context"),
-                oContextEl,
-                nContextElX,
-                nContextElWidth,
-
-                bFlipped = false,
-
-                nLeftRegionWidth,
-                nRightRegionWidth,
-
-                leftConstraint,
-                rightConstraint,
-
-                xNew = x,
-
-                oOverlapPositions = {
-
-                    "tltr": true,
-                    "blbr": true,
-                    "brbl": true,
-                    "trtl": true
-                
-                };
-
-
-            var flipHorizontal = function () {
-            
-                var nNewX;
-            
-                if ((oOverlay.cfg.getProperty("x") - scrollX) > nContextElX) {
-                    nNewX = (nContextElX - nOverlayOffsetWidth);
-                }
-                else {
-                    nNewX = (nContextElX + nContextElWidth);
-                }
-                
-    
-                oOverlay.cfg.setProperty("x", (nNewX + scrollX), true);
-    
-                return nNewX;
-    
-            };
-
-
-
-            /*
-                 Uses the context element's position to calculate the availble width 
-                 to the right and left of it to display its corresponding Overlay.
-            */
-
-            var getDisplayRegionWidth = function () {
-
-                // The Overlay is to the right of the context element
-
-                if ((oOverlay.cfg.getProperty("x") - scrollX) > nContextElX) {
-                    return (nRightRegionWidth - nViewportOffset);
-                }
-                else {	// The Overlay is to the left of the context element
-                    return (nLeftRegionWidth - nViewportOffset);
-                }
-            
-            };
-    
-
-            /*
-                Positions the Overlay to the left or right of the context element so that it remains 
-                inside the viewport.
-            */
-    
-            var setHorizontalPosition = function () {
-            
-                var nDisplayRegionWidth = getDisplayRegionWidth(),
-                    fnReturnVal;
-
-                if (nOverlayOffsetWidth > nDisplayRegionWidth) {
-        
-                    if (bFlipped) {
-        
-                        /*
-                             All possible positions and values have been 
-                             tried, but none were successful, so fall back 
-                             to the original size and position.
-                        */
-    
-                        flipHorizontal();
-                        
-                    }
-                    else {
-        
-                        flipHorizontal();
-
-                        bFlipped = true;
-        
-                        fnReturnVal = setHorizontalPosition();
-        
-                    }
-                
-                }
-        
-                return fnReturnVal;
-            
-            };
-
-
-            if (this.cfg.getProperty("preventcontextoverlap") && aContext && 
-				oOverlapPositions[(aContext[1] + aContext[2])]) {
-
-                if (bCanConstrain) {
-
-                    oContextEl = aContext[0];
-                    nContextElX = Dom.getX(oContextEl) - scrollX;
-                    nContextElWidth = oContextEl.offsetWidth;
-                    nLeftRegionWidth = nContextElX;
-                    nRightRegionWidth = (viewPortWidth - (nContextElX + nContextElWidth));
-    
-                    setHorizontalPosition();
-
-                }
-                
-                xNew = this.cfg.getProperty("x");
-            
-            }
-            else {
-
-                if (bCanConstrain) {
-    
-                    leftConstraint = scrollX + nViewportOffset;
-                    rightConstraint = 
-                        scrollX + viewPortWidth - nOverlayOffsetWidth - nViewportOffset;
-    
-                    if (x < leftConstraint) {
-                        xNew = leftConstraint;
-                    } else if (x > rightConstraint) {
-                        xNew = rightConstraint;
-                    }
-                } else {
-                    xNew = nViewportOffset + scrollX;
-                }
-            
-            }
-
-            return xNew;
-        
-        },
-
-
-        /**
-         * Given y coordinate value, returns the calculated y coordinate required to 
-         * position the Overlay if it is to be constrained to the viewport, based on the 
-         * current element size, viewport dimensions and scroll values.
-         *
-         * @param {Number} y The Y coordinate value to be constrained
-         * @return {Number} The constrained y coordinate
-         */		
-        getConstrainedY: function (y) {
-
-            var oOverlay = this,
-                oOverlayEl = oOverlay.element,
-                nOverlayOffsetHeight = oOverlayEl.offsetHeight,
-            
-                nViewportOffset = Overlay.VIEWPORT_OFFSET,
-                viewPortHeight = Dom.getViewportHeight(),
-                scrollY = Dom.getDocumentScrollTop(),
-
-                bCanConstrain = (nOverlayOffsetHeight + nViewportOffset < viewPortHeight),
-
-                aContext = this.cfg.getProperty("context"),
-                oContextEl,
-                nContextElY,
-                nContextElHeight,
-
-                bFlipped = false,
-
-                nTopRegionHeight,
-                nBottomRegionHeight,
-
-                topConstraint,
-                bottomConstraint,
-
-                yNew = y,
-                
-                oOverlapPositions = {
-                    "trbr": true,
-                    "tlbl": true,
-                    "bltl": true,
-                    "brtr": true
-                };
-
-
-            var flipVertical = function () {
-
-                var nNewY;
-            
-                // The Overlay is below the context element, flip it above
-                if ((oOverlay.cfg.getProperty("y") - scrollY) > nContextElY) { 
-                    nNewY = (nContextElY - nOverlayOffsetHeight);
-                }
-                else {	// The Overlay is above the context element, flip it below
-                    nNewY = (nContextElY + nContextElHeight);
-                }
-    
-                oOverlay.cfg.setProperty("y", (nNewY + scrollY), true);
-                
-                return nNewY;
-            
-            };
-
-
-            /*
-                 Uses the context element's position to calculate the availble height 
-                 above and below it to display its corresponding Overlay.
-            */
-
-            var getDisplayRegionHeight = function () {
-
-                // The Overlay is below the context element
-                if ((oOverlay.cfg.getProperty("y") - scrollY) > nContextElY) {
-                    return (nBottomRegionHeight - nViewportOffset);				
-                }
-                else {	// The Overlay is above the context element
-                    return (nTopRegionHeight - nViewportOffset);				
-                }
-        
-            };
-
-
-            /*
-                Trys to place the Overlay in the best possible position (either above or 
-                below its corresponding context element).
-            */
-        
-            var setVerticalPosition = function () {
-        
-                var nDisplayRegionHeight = getDisplayRegionHeight(),
-                    fnReturnVal;
-                    
-
-                if (nOverlayOffsetHeight > nDisplayRegionHeight) {
-                   
-                    if (bFlipped) {
-        
-                        /*
-                             All possible positions and values for the 
-                             "maxheight" configuration property have been 
-                             tried, but none were successful, so fall back 
-                             to the original size and position.
-                        */
-    
-                        flipVertical();
-                        
-                    }
-                    else {
-        
-                        flipVertical();
-
-                        bFlipped = true;
-        
-                        fnReturnVal = setVerticalPosition();
-        
-                    }
-                
-                }
-        
-                return fnReturnVal;
-        
-            };
-
-
-            if (this.cfg.getProperty("preventcontextoverlap") && aContext && 
-            	oOverlapPositions[(aContext[1] + aContext[2])]) {
-
-                if (bCanConstrain) {
-
-                    oContextEl = aContext[0];
-                    nContextElHeight = oContextEl.offsetHeight;
-                    nContextElY = (Dom.getY(oContextEl) - scrollY);
-    
-                    nTopRegionHeight = nContextElY;
-                    nBottomRegionHeight = (viewPortHeight - (nContextElY + nContextElHeight));
-    
-                    setVerticalPosition();
-                
-                }
-
-                yNew = oOverlay.cfg.getProperty("y");
-
-            }
-            else {
-
-                if (bCanConstrain) {
-    
-                    topConstraint = scrollY + nViewportOffset;
-                    bottomConstraint = 
-                        scrollY + viewPortHeight - nOverlayOffsetHeight - nViewportOffset;
-    
-                    if (y < topConstraint) {
-                        yNew  = topConstraint;
-                    } else if (y  > bottomConstraint) {
-                        yNew  = bottomConstraint;
-                    }
-                } else {
-                    yNew = nViewportOffset + scrollY;
-                }
-
-            }
-
-            return yNew;
-        },
-
-
-        /**
-         * Given x, y coordinate values, returns the calculated coordinates required to 
-         * position the Overlay if it is to be constrained to the viewport, based on the 
-         * current element size, viewport dimensions and scroll values.
-         *
-         * @param {Number} x The X coordinate value to be constrained
-         * @param {Number} y The Y coordinate value to be constrained
-         * @return {Array} The constrained x and y coordinates at index 0 and 1 respectively;
-         */
-        getConstrainedXY: function(x, y) {
-            return [this.getConstrainedX(x), this.getConstrainedY(y)];
-        },
-
-        /**
-        * Centers the container in the viewport.
-        * @method center
-        */
-        center: function () {
-
-            var nViewportOffset = Overlay.VIEWPORT_OFFSET,
-                elementWidth = this.element.offsetWidth,
-                elementHeight = this.element.offsetHeight,
-                viewPortWidth = Dom.getViewportWidth(),
-                viewPortHeight = Dom.getViewportHeight(),
-                x,
-                y;
-
-            if (elementWidth < viewPortWidth) {
-                x = (viewPortWidth / 2) - (elementWidth / 2) + Dom.getDocumentScrollLeft();
-            } else {
-                x = nViewportOffset + Dom.getDocumentScrollLeft();
-            }
-
-            if (elementHeight < viewPortHeight) {
-                y = (viewPortHeight / 2) - (elementHeight / 2) + Dom.getDocumentScrollTop();
-            } else {
-                y = nViewportOffset + Dom.getDocumentScrollTop();
-            }
-
-            this.cfg.setProperty("xy", [parseInt(x, 10), parseInt(y, 10)]);
-            this.cfg.refireEvent("iframe");
-        },
-
-        /**
-        * Synchronizes the Panel's "xy", "x", and "y" properties with the 
-        * Panel's position in the DOM. This is primarily used to update  
-        * position information during drag & drop.
-        * @method syncPosition
-        */
-        syncPosition: function () {
-
-            var pos = Dom.getXY(this.element);
-
-            this.cfg.setProperty("x", pos[0], true);
-            this.cfg.setProperty("y", pos[1], true);
-            this.cfg.setProperty("xy", pos, true);
-
-        },
-
-        /**
-        * Event handler fired when the resize monitor element is resized.
-        * @method onDomResize
-        * @param {DOMEvent} e The resize DOM event
-        * @param {Object} obj The scope object
-        */
-        onDomResize: function (e, obj) {
-
-            var me = this;
-
-            Overlay.superclass.onDomResize.call(this, e, obj);
-
-            setTimeout(function () {
-                me.syncPosition();
-                me.cfg.refireEvent("iframe");
-                me.cfg.refireEvent("context");
-            }, 0);
-        },
-
-        /**
-         * Determines the content box height of the given element (height of the element, without padding or borders) in pixels.
-         *
-         * @method _getComputedHeight
-         * @private
-         * @param {HTMLElement} el The element for which the content height needs to be determined
-         * @return {Number} The content box height of the given element, or null if it could not be determined.
-         */
-        _getComputedHeight : (function() {
-
-            if (document.defaultView && document.defaultView.getComputedStyle) {
-                return function(el) {
-                    var height = null;
-                    if (el.ownerDocument && el.ownerDocument.defaultView) {
-                        var computed = el.ownerDocument.defaultView.getComputedStyle(el, '');
-                        if (computed) {
-                            height = parseInt(computed.height, 10);
-                        }
-                    }
-                    return (Lang.isNumber(height)) ? height : null;
-                };
-            } else {
-                return function(el) {
-                    var height = null;
-                    if (el.style.pixelHeight) {
-                        height = el.style.pixelHeight;
-                    }
-                    return (Lang.isNumber(height)) ? height : null;
-                };
-            }
-        })(),
-
-        /**
-         * autofillheight validator. Verifies that the autofill value is either null 
-         * or one of the strings : "body", "header" or "footer".
-         *
-         * @method _validateAutoFillHeight
-         * @protected
-         * @param {String} val
-         * @return true, if valid, false otherwise
-         */
-        _validateAutoFillHeight : function(val) {
-            return (!val) || (Lang.isString(val) && Overlay.STD_MOD_RE.test(val));
-        },
-
-        /**
-         * The default custom event handler executed when the overlay's height is changed, 
-         * if the autofillheight property has been set.
-         *
-         * @method _autoFillOnHeightChange
-         * @protected
-         * @param {String} type The event type
-         * @param {Array} args The array of arguments passed to event subscribers
-         * @param {HTMLElement} el The header, body or footer element which is to be resized to fill
-         * out the containers height
-         */
-        _autoFillOnHeightChange : function(type, args, el) {
-            this.fillHeight(el);
-        },
-
-        /**
-         * Returns the sub-pixel height of the el, using getBoundingClientRect, if available,
-         * otherwise returns the offsetHeight
-         * @method _getPreciseHeight
-         * @private
-         * @param {HTMLElement} el
-         * @return {Float} The sub-pixel height if supported by the browser, else the rounded height.
-         */
-        _getPreciseHeight : function(el) {
-            var height = el.offsetHeight;
-
-            if (el.getBoundingClientRect) {
-                var rect = el.getBoundingClientRect();
-                height = rect.bottom - rect.top;
-            }
-
-            return height;
-        },
-
-        /**
-         * <p>
-         * Sets the height on the provided header, body or footer element to 
-         * fill out the height of the container. It determines the height of the 
-         * containers content box, based on it's configured height value, and 
-         * sets the height of the autofillheight element to fill out any 
-         * space remaining after the other standard module element heights 
-         * have been accounted for.
-         * </p>
-         * <p><strong>NOTE:</strong> This method is not designed to work if an explicit 
-         * height has not been set on the container, since for an "auto" height container, 
-         * the heights of the header/body/footer will drive the height of the container.</p>
-         *
-         * @method fillHeight
-         * @param {HTMLElement} el The element which should be resized to fill out the height
-         * of the container element.
-         */
-        fillHeight : function(el) {
-            if (el) {
-                var container = this.innerElement || this.element,
-                    containerEls = [this.header, this.body, this.footer],
-                    containerEl,
-                    total = 0,
-                    filled = 0,
-                    remaining = 0,
-                    validEl = false;
-
-                for (var i = 0, l = containerEls.length; i < l; i++) {
-                    containerEl = containerEls[i];
-                    if (containerEl) {
-                        if (el !== containerEl) {
-                            filled += this._getPreciseHeight(containerEl);
-                        } else {
-                            validEl = true;
-                        }
-                    }
-                }
-
-                if (validEl) {
-
-                    if (UA.ie || UA.opera) {
-                        // Need to set height to 0, to allow height to be reduced
-                        Dom.setStyle(el, 'height', 0 + 'px');
-                    }
-
-                    total = this._getComputedHeight(container);
-
-                    // Fallback, if we can't get computed value for content height
-                    if (total === null) {
-                        Dom.addClass(container, "yui-override-padding");
-                        total = container.clientHeight; // Content, No Border, 0 Padding (set by yui-override-padding)
-                        Dom.removeClass(container, "yui-override-padding");
-                    }
-    
-                    remaining = total - filled;
-    
-                    Dom.setStyle(el, "height", remaining + "px");
-    
-                    // Re-adjust height if required, to account for el padding and border
-                    if (el.offsetHeight != remaining) {
-                        remaining = remaining - (el.offsetHeight - remaining);
-                    }
-                    Dom.setStyle(el, "height", remaining + "px");
-                }
-            }
-        },
-
-        /**
-        * Places the Overlay on top of all other instances of 
-        * YAHOO.widget.Overlay.
-        * @method bringToTop
-        */
-        bringToTop: function () {
-
-            var aOverlays = [],
-                oElement = this.element;
-
-            function compareZIndexDesc(p_oOverlay1, p_oOverlay2) {
-
-                var sZIndex1 = Dom.getStyle(p_oOverlay1, "zIndex"),
-                    sZIndex2 = Dom.getStyle(p_oOverlay2, "zIndex"),
-
-                    nZIndex1 = (!sZIndex1 || isNaN(sZIndex1)) ? 0 : parseInt(sZIndex1, 10),
-                    nZIndex2 = (!sZIndex2 || isNaN(sZIndex2)) ? 0 : parseInt(sZIndex2, 10);
-
-                if (nZIndex1 > nZIndex2) {
-                    return -1;
-                } else if (nZIndex1 < nZIndex2) {
-                    return 1;
-                } else {
-                    return 0;
-                }
-            }
-
-            function isOverlayElement(p_oElement) {
-
-                var isOverlay = Dom.hasClass(p_oElement, Overlay.CSS_OVERLAY),
-                    Panel = YAHOO.widget.Panel;
-
-                if (isOverlay && !Dom.isAncestor(oElement, p_oElement)) {
-                    if (Panel && Dom.hasClass(p_oElement, Panel.CSS_PANEL)) {
-                        aOverlays[aOverlays.length] = p_oElement.parentNode;
-                    } else {
-                        aOverlays[aOverlays.length] = p_oElement;
-                    }
-                }
-            }
-
-            Dom.getElementsBy(isOverlayElement, "DIV", document.body);
-
-            aOverlays.sort(compareZIndexDesc);
-
-            var oTopOverlay = aOverlays[0],
-                nTopZIndex;
-
-            if (oTopOverlay) {
-                nTopZIndex = Dom.getStyle(oTopOverlay, "zIndex");
-
-                if (!isNaN(nTopZIndex)) {
-                    var bRequiresBump = false;
-
-                    if (oTopOverlay != oElement) {
-                        bRequiresBump = true;
-                    } else if (aOverlays.length > 1) {
-                        var nNextZIndex = Dom.getStyle(aOverlays[1], "zIndex");
-                        // Don't rely on DOM order to stack if 2 overlays are at the same zindex.
-                        if (!isNaN(nNextZIndex) && (nTopZIndex == nNextZIndex)) {
-                            bRequiresBump = true;
-                        }
-                    }
-                    if (bRequiresBump) {
-                        this.cfg.setProperty("zindex", (parseInt(nTopZIndex, 10) + 2));
-                    }
-                }
-            }
-        },
-
-        /**
-        * Removes the Overlay element from the DOM and sets all child 
-        * elements to null.
-        * @method destroy
-        */
-        destroy: function () {
-
-            if (this.iframe) {
-                this.iframe.parentNode.removeChild(this.iframe);
-            }
-
-            this.iframe = null;
-
-            Overlay.windowResizeEvent.unsubscribe(
-                this.doCenterOnDOMEvent, this);
-    
-            Overlay.windowScrollEvent.unsubscribe(
-                this.doCenterOnDOMEvent, this);
-
-            Module.textResizeEvent.unsubscribe(this._autoFillOnHeightChange);
-
-            Overlay.superclass.destroy.call(this);
-        },
-
-        /**
-        * Returns a String representation of the object.
-        * @method toString
-        * @return {String} The string representation of the Overlay.
-        */
-        toString: function () {
-            return "Overlay " + this.id;
-        }
-
-    });
-}());
-
-(function () {
-
-    /**
-    * OverlayManager is used for maintaining the focus status of 
-    * multiple Overlays.
-    * @namespace YAHOO.widget
-    * @namespace YAHOO.widget
-    * @class OverlayManager
-    * @constructor
-    * @param {Array} overlays Optional. A collection of Overlays to register 
-    * with the manager.
-    * @param {Object} userConfig  The object literal representing the user 
-    * configuration of the OverlayManager
-    */
-    YAHOO.widget.OverlayManager = function (userConfig) {
-        this.init(userConfig);
-    };
-
-    var Overlay = YAHOO.widget.Overlay,
-        Event = YAHOO.util.Event,
-        Dom = YAHOO.util.Dom,
-        Config = YAHOO.util.Config,
-        CustomEvent = YAHOO.util.CustomEvent,
-        OverlayManager = YAHOO.widget.OverlayManager;
-
-    /**
-    * The CSS class representing a focused Overlay
-    * @property OverlayManager.CSS_FOCUSED
-    * @static
-    * @final
-    * @type String
-    */
-    OverlayManager.CSS_FOCUSED = "focused";
-
-    OverlayManager.prototype = {
-
-        /**
-        * The class's constructor function
-        * @property contructor
-        * @type Function
-        */
-        constructor: OverlayManager,
-
-        /**
-        * The array of Overlays that are currently registered
-        * @property overlays
-        * @type YAHOO.widget.Overlay[]
-        */
-        overlays: null,
-
-        /**
-        * Initializes the default configuration of the OverlayManager
-        * @method initDefaultConfig
-        */
-        initDefaultConfig: function () {
-            /**
-            * The collection of registered Overlays in use by 
-            * the OverlayManager
-            * @config overlays
-            * @type YAHOO.widget.Overlay[]
-            * @default null
-            */
-            this.cfg.addProperty("overlays", { suppressEvent: true } );
-
-            /**
-            * The default DOM event that should be used to focus an Overlay
-            * @config focusevent
-            * @type String
-            * @default "mousedown"
-            */
-            this.cfg.addProperty("focusevent", { value: "mousedown" } );
-        },
-
-        /**
-        * Initializes the OverlayManager
-        * @method init
-        * @param {Overlay[]} overlays Optional. A collection of Overlays to 
-        * register with the manager.
-        * @param {Object} userConfig  The object literal representing the user 
-        * configuration of the OverlayManager
-        */
-        init: function (userConfig) {
-
-            /**
-            * The OverlayManager's Config object used for monitoring 
-            * configuration properties.
-            * @property cfg
-            * @type Config
-            */
-            this.cfg = new Config(this);
-
-            this.initDefaultConfig();
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-            this.cfg.fireQueue();
-
-            /**
-            * The currently activated Overlay
-            * @property activeOverlay
-            * @private
-            * @type YAHOO.widget.Overlay
-            */
-            var activeOverlay = null;
-
-            /**
-            * Returns the currently focused Overlay
-            * @method getActive
-            * @return {Overlay} The currently focused Overlay
-            */
-            this.getActive = function () {
-                return activeOverlay;
-            };
-
-            /**
-            * Focuses the specified Overlay
-            * @method focus
-            * @param {Overlay} overlay The Overlay to focus
-            * @param {String} overlay The id of the Overlay to focus
-            */
-            this.focus = function (overlay) {
-                var o = this.find(overlay);
-                if (o) {
-                    o.focus();
-                }
-            };
-
-            /**
-            * Removes the specified Overlay from the manager
-            * @method remove
-            * @param {Overlay} overlay The Overlay to remove
-            * @param {String} overlay The id of the Overlay to remove
-            */
-            this.remove = function (overlay) {
-
-                var o = this.find(overlay), 
-                        originalZ;
-
-                if (o) {
-                    if (activeOverlay == o) {
-                        activeOverlay = null;
-                    }
-
-                    var bDestroyed = (o.element === null && o.cfg === null) ? true : false;
-
-                    if (!bDestroyed) {
-                        // Set it's zindex so that it's sorted to the end.
-                        originalZ = Dom.getStyle(o.element, "zIndex");
-                        o.cfg.setProperty("zIndex", -1000, true);
-                    }
-
-                    this.overlays.sort(this.compareZIndexDesc);
-                    this.overlays = this.overlays.slice(0, (this.overlays.length - 1));
-
-                    o.hideEvent.unsubscribe(o.blur);
-                    o.destroyEvent.unsubscribe(this._onOverlayDestroy, o);
-                    o.focusEvent.unsubscribe(this._onOverlayFocusHandler, o);
-                    o.blurEvent.unsubscribe(this._onOverlayBlurHandler, o);
-
-                    if (!bDestroyed) {
-                        Event.removeListener(o.element, this.cfg.getProperty("focusevent"), this._onOverlayElementFocus);
-                        o.cfg.setProperty("zIndex", originalZ, true);
-                        o.cfg.setProperty("manager", null);
-                    }
-
-                    /* _managed Flag for custom or existing. Don't want to remove existing */
-                    if (o.focusEvent._managed) { o.focusEvent = null; }
-                    if (o.blurEvent._managed) { o.blurEvent = null; }
-
-                    if (o.focus._managed) { o.focus = null; }
-                    if (o.blur._managed) { o.blur = null; }
-                }
-            };
-
-            /**
-            * Removes focus from all registered Overlays in the manager
-            * @method blurAll
-            */
-            this.blurAll = function () {
-
-                var nOverlays = this.overlays.length,
-                    i;
-
-                if (nOverlays > 0) {
-                    i = nOverlays - 1;
-                    do {
-                        this.overlays[i].blur();
-                    }
-                    while(i--);
-                }
-            };
-
-            /**
-             * Updates the state of the OverlayManager and overlay, as a result of the overlay
-             * being blurred.
-             * 
-             * @method _manageBlur
-             * @param {Overlay} overlay The overlay instance which got blurred.
-             * @protected
-             */
-            this._manageBlur = function (overlay) {
-                var changed = false;
-                if (activeOverlay == overlay) {
-                    Dom.removeClass(activeOverlay.element, OverlayManager.CSS_FOCUSED);
-                    activeOverlay = null;
-                    changed = true;
-                }
-                return changed;
-            };
-
-            /**
-             * Updates the state of the OverlayManager and overlay, as a result of the overlay 
-             * receiving focus.
-             *
-             * @method _manageFocus
-             * @param {Overlay} overlay The overlay instance which got focus.
-             * @protected
-             */
-            this._manageFocus = function(overlay) {
-                var changed = false;
-                if (activeOverlay != overlay) {
-                    if (activeOverlay) {
-                        activeOverlay.blur();
-                    }
-                    activeOverlay = overlay;
-                    this.bringToTop(activeOverlay);
-                    Dom.addClass(activeOverlay.element, OverlayManager.CSS_FOCUSED);
-                    changed = true;
-                }
-                return changed;
-            };
-
-            var overlays = this.cfg.getProperty("overlays");
-
-            if (! this.overlays) {
-                this.overlays = [];
-            }
-
-            if (overlays) {
-                this.register(overlays);
-                this.overlays.sort(this.compareZIndexDesc);
-            }
-        },
-
-        /**
-        * @method _onOverlayElementFocus
-        * @description Event handler for the DOM event that is used to focus 
-        * the Overlay instance as specified by the "focusevent" 
-        * configuration property.
-        * @private
-        * @param {Event} p_oEvent Object representing the DOM event 
-        * object passed back by the event utility (Event).
-        */
-        _onOverlayElementFocus: function (p_oEvent) {
-
-            var oTarget = Event.getTarget(p_oEvent),
-                oClose = this.close;
-
-            if (oClose && (oTarget == oClose || Dom.isAncestor(oClose, oTarget))) {
-                this.blur();
-            } else {
-                this.focus();
-            }
-        },
-
-        /**
-        * @method _onOverlayDestroy
-        * @description "destroy" event handler for the Overlay.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {Overlay} p_oOverlay Object representing the overlay that 
-        * fired the event.
-        */
-        _onOverlayDestroy: function (p_sType, p_aArgs, p_oOverlay) {
-            this.remove(p_oOverlay);
-        },
-
-        /**
-        * @method _onOverlayFocusHandler
-        *
-        * focusEvent Handler, used to delegate to _manageFocus with the 
-        * correct arguments.
-        *
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {Overlay} p_oOverlay Object representing the overlay that 
-        * fired the event.
-        */
-        _onOverlayFocusHandler: function(p_sType, p_aArgs, p_oOverlay) {
-            this._manageFocus(p_oOverlay);
-        },
-
-        /**
-        * @method _onOverlayBlurHandler
-        *
-        * blurEvent Handler, used to delegate to _manageBlur with the 
-        * correct arguments.
-        *
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {Overlay} p_oOverlay Object representing the overlay that 
-        * fired the event.
-        */
-        _onOverlayBlurHandler: function(p_sType, p_aArgs, p_oOverlay) {
-            this._manageBlur(p_oOverlay);
-        },
-
-        /**
-         * Subscribes to the Overlay based instance focusEvent, to allow the OverlayManager to
-         * monitor focus state.
-         * 
-         * If the instance already has a focusEvent (e.g. Menu), OverlayManager will subscribe 
-         * to the existing focusEvent, however if a focusEvent or focus method does not exist
-         * on the instance, the _bindFocus method will add them, and the focus method will 
-         * update the OverlayManager's state directly.
-         * 
-         * @method _bindFocus
-         * @param {Overlay} overlay The overlay for which focus needs to be managed
-         * @protected
-         */
-        _bindFocus : function(overlay) {
-            var mgr = this;
-
-            if (!overlay.focusEvent) {
-                overlay.focusEvent = overlay.createEvent("focus");
-                overlay.focusEvent.signature = CustomEvent.LIST;
-                overlay.focusEvent._managed = true;
-            } else {
-                overlay.focusEvent.subscribe(mgr._onOverlayFocusHandler, overlay, mgr);
-            }
-
-            if (!overlay.focus) {
-                Event.on(overlay.element, mgr.cfg.getProperty("focusevent"), mgr._onOverlayElementFocus, null, overlay);
-                overlay.focus = function () {
-                    if (mgr._manageFocus(this)) {
-                        // For Panel/Dialog
-                        if (this.cfg.getProperty("visible") && this.focusFirst) {
-                            this.focusFirst();
-                        }
-                        this.focusEvent.fire();
-                    }
-                };
-                overlay.focus._managed = true;
-            }
-        },
-
-        /**
-         * Subscribes to the Overlay based instance's blurEvent to allow the OverlayManager to
-         * monitor blur state.
-         *
-         * If the instance already has a blurEvent (e.g. Menu), OverlayManager will subscribe 
-         * to the existing blurEvent, however if a blurEvent or blur method does not exist
-         * on the instance, the _bindBlur method will add them, and the blur method 
-         * update the OverlayManager's state directly.
-         *
-         * @method _bindBlur
-         * @param {Overlay} overlay The overlay for which blur needs to be managed
-         * @protected
-         */
-        _bindBlur : function(overlay) {
-            var mgr = this;
-
-            if (!overlay.blurEvent) {
-                overlay.blurEvent = overlay.createEvent("blur");
-                overlay.blurEvent.signature = CustomEvent.LIST;
-                overlay.focusEvent._managed = true;
-            } else {
-                overlay.blurEvent.subscribe(mgr._onOverlayBlurHandler, overlay, mgr);
-            }
-
-            if (!overlay.blur) {
-                overlay.blur = function () {
-                    if (mgr._manageBlur(this)) {
-                        this.blurEvent.fire();
-                    }
-                };
-                overlay.blur._managed = true;
-            }
-
-            overlay.hideEvent.subscribe(overlay.blur);
-        },
-
-        /**
-         * Subscribes to the Overlay based instance's destroyEvent, to allow the Overlay
-         * to be removed for the OverlayManager when destroyed.
-         * 
-         * @method _bindDestroy
-         * @param {Overlay} overlay The overlay instance being managed
-         * @protected
-         */
-        _bindDestroy : function(overlay) {
-            var mgr = this;
-            overlay.destroyEvent.subscribe(mgr._onOverlayDestroy, overlay, mgr);
-        },
-
-        /**
-         * Ensures the zIndex configuration property on the managed overlay based instance
-         * is set to the computed zIndex value from the DOM (with "auto" translating to 0).
-         *
-         * @method _syncZIndex
-         * @param {Overlay} overlay The overlay instance being managed
-         * @protected
-         */
-        _syncZIndex : function(overlay) {
-            var zIndex = Dom.getStyle(overlay.element, "zIndex");
-            if (!isNaN(zIndex)) {
-                overlay.cfg.setProperty("zIndex", parseInt(zIndex, 10));
-            } else {
-                overlay.cfg.setProperty("zIndex", 0);
-            }
-        },
-
-        /**
-        * Registers an Overlay or an array of Overlays with the manager. Upon 
-        * registration, the Overlay receives functions for focus and blur, 
-        * along with CustomEvents for each.
-        *
-        * @method register
-        * @param {Overlay} overlay  An Overlay to register with the manager.
-        * @param {Overlay[]} overlay  An array of Overlays to register with 
-        * the manager.
-        * @return {boolean} true if any Overlays are registered.
-        */
-        register: function (overlay) {
-
-            var zIndex,
-                registered = false,
-                i,
-                n;
-
-            if (overlay instanceof Overlay) {
-
-                overlay.cfg.addProperty("manager", { value: this } );
-
-                this._bindFocus(overlay);
-                this._bindBlur(overlay);
-                this._bindDestroy(overlay);
-                this._syncZIndex(overlay);
-
-                this.overlays.push(overlay);
-                this.bringToTop(overlay);
-
-                registered = true;
-
-            } else if (overlay instanceof Array) {
-
-                for (i = 0, n = overlay.length; i < n; i++) {
-                    registered = this.register(overlay[i]) || registered;
-                }
-
-            }
-
-            return registered;
-        },
-
-        /**
-        * Places the specified Overlay instance on top of all other 
-        * Overlay instances.
-        * @method bringToTop
-        * @param {YAHOO.widget.Overlay} p_oOverlay Object representing an 
-        * Overlay instance.
-        * @param {String} p_oOverlay String representing the id of an 
-        * Overlay instance.
-        */        
-        bringToTop: function (p_oOverlay) {
-
-            var oOverlay = this.find(p_oOverlay),
-                nTopZIndex,
-                oTopOverlay,
-                aOverlays;
-
-            if (oOverlay) {
-
-                aOverlays = this.overlays;
-                aOverlays.sort(this.compareZIndexDesc);
-
-                oTopOverlay = aOverlays[0];
-
-                if (oTopOverlay) {
-                    nTopZIndex = Dom.getStyle(oTopOverlay.element, "zIndex");
-
-                    if (!isNaN(nTopZIndex)) {
-
-                        var bRequiresBump = false;
-
-                        if (oTopOverlay !== oOverlay) {
-                            bRequiresBump = true;
-                        } else if (aOverlays.length > 1) {
-                            var nNextZIndex = Dom.getStyle(aOverlays[1].element, "zIndex");
-                            // Don't rely on DOM order to stack if 2 overlays are at the same zindex.
-                            if (!isNaN(nNextZIndex) && (nTopZIndex == nNextZIndex)) {
-                                bRequiresBump = true;
-                            }
-                        }
-
-                        if (bRequiresBump) {
-                            oOverlay.cfg.setProperty("zindex", (parseInt(nTopZIndex, 10) + 2));
-                        }
-                    }
-                    aOverlays.sort(this.compareZIndexDesc);
-                }
-            }
-        },
-
-        /**
-        * Attempts to locate an Overlay by instance or ID.
-        * @method find
-        * @param {Overlay} overlay  An Overlay to locate within the manager
-        * @param {String} overlay  An Overlay id to locate within the manager
-        * @return {Overlay} The requested Overlay, if found, or null if it 
-        * cannot be located.
-        */
-        find: function (overlay) {
-
-            var isInstance = overlay instanceof Overlay,
-                overlays = this.overlays,
-                n = overlays.length,
-                found = null,
-                o,
-                i;
-
-            if (isInstance || typeof overlay == "string") {
-                for (i = n-1; i >= 0; i--) {
-                    o = overlays[i];
-                    if ((isInstance && (o === overlay)) || (o.id == overlay)) {
-                        found = o;
-                        break;
-                    }
-                }
-            }
-
-            return found;
-        },
-
-        /**
-        * Used for sorting the manager's Overlays by z-index.
-        * @method compareZIndexDesc
-        * @private
-        * @return {Number} 0, 1, or -1, depending on where the Overlay should 
-        * fall in the stacking order.
-        */
-        compareZIndexDesc: function (o1, o2) {
-
-            var zIndex1 = (o1.cfg) ? o1.cfg.getProperty("zIndex") : null, // Sort invalid (destroyed)
-                zIndex2 = (o2.cfg) ? o2.cfg.getProperty("zIndex") : null; // objects at bottom.
-
-            if (zIndex1 === null && zIndex2 === null) {
-                return 0;
-            } else if (zIndex1 === null){
-                return 1;
-            } else if (zIndex2 === null) {
-                return -1;
-            } else if (zIndex1 > zIndex2) {
-                return -1;
-            } else if (zIndex1 < zIndex2) {
-                return 1;
-            } else {
-                return 0;
-            }
-        },
-
-        /**
-        * Shows all Overlays in the manager.
-        * @method showAll
-        */
-        showAll: function () {
-            var overlays = this.overlays,
-                n = overlays.length,
-                i;
-
-            for (i = n - 1; i >= 0; i--) {
-                overlays[i].show();
-            }
-        },
-
-        /**
-        * Hides all Overlays in the manager.
-        * @method hideAll
-        */
-        hideAll: function () {
-            var overlays = this.overlays,
-                n = overlays.length,
-                i;
-
-            for (i = n - 1; i >= 0; i--) {
-                overlays[i].hide();
-            }
-        },
-
-        /**
-        * Returns a string representation of the object.
-        * @method toString
-        * @return {String} The string representation of the OverlayManager
-        */
-        toString: function () {
-            return "OverlayManager";
-        }
-    };
-}());
-
-(function () {
-
-    /**
-    * Tooltip is an implementation of Overlay that behaves like an OS tooltip, 
-    * displaying when the user mouses over a particular element, and 
-    * disappearing on mouse out.
-    * @namespace YAHOO.widget
-    * @class Tooltip
-    * @extends YAHOO.widget.Overlay
-    * @constructor
-    * @param {String} el The element ID representing the Tooltip <em>OR</em>
-    * @param {HTMLElement} el The element representing the Tooltip
-    * @param {Object} userConfig The configuration object literal containing 
-    * the configuration that should be set for this Overlay. See configuration 
-    * documentation for more details.
-    */
-    YAHOO.widget.Tooltip = function (el, userConfig) {
-        YAHOO.widget.Tooltip.superclass.constructor.call(this, el, userConfig);
-    };
-
-    var Lang = YAHOO.lang,
-        Event = YAHOO.util.Event,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Dom = YAHOO.util.Dom,
-        Tooltip = YAHOO.widget.Tooltip,
-
-        m_oShadowTemplate,
-
-        /**
-        * Constant representing the Tooltip's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-
-            "PREVENT_OVERLAP": { 
-                key: "preventoverlap", 
-                value: true, 
-                validator: Lang.isBoolean, 
-                supercedes: ["x", "y", "xy"] 
-            },
-
-            "SHOW_DELAY": { 
-                key: "showdelay", 
-                value: 200, 
-                validator: Lang.isNumber 
-            }, 
-
-            "AUTO_DISMISS_DELAY": { 
-                key: "autodismissdelay", 
-                value: 5000, 
-                validator: Lang.isNumber 
-            }, 
-
-            "HIDE_DELAY": { 
-                key: "hidedelay", 
-                value: 250, 
-                validator: Lang.isNumber 
-            }, 
-
-            "TEXT": { 
-                key: "text", 
-                suppressEvent: true 
-            }, 
-
-            "CONTAINER": { 
-                key: "container"
-            },
-
-            "DISABLED": {
-                key: "disabled",
-                value: false,
-                suppressEvent: true
-            }
-        },
-
-        /**
-        * Constant representing the name of the Tooltip's events
-        * @property EVENT_TYPES
-        * @private
-        * @final
-        * @type Object
-        */
-        EVENT_TYPES = {
-            "CONTEXT_MOUSE_OVER": "contextMouseOver",
-            "CONTEXT_MOUSE_OUT": "contextMouseOut",
-            "CONTEXT_TRIGGER": "contextTrigger"
-        };
-
-    /**
-    * Constant representing the Tooltip CSS class
-    * @property YAHOO.widget.Tooltip.CSS_TOOLTIP
-    * @static
-    * @final
-    * @type String
-    */
-    Tooltip.CSS_TOOLTIP = "yui-tt";
-
-    /* 
-        "hide" event handler that sets a Tooltip instance's "width"
-        configuration property back to its original value before 
-        "setWidthToOffsetWidth" was called.
-    */
-    function restoreOriginalWidth(p_sType, p_aArgs, p_oObject) {
-
-        var sOriginalWidth = p_oObject[0],
-            sNewWidth = p_oObject[1],
-            oConfig = this.cfg,
-            sCurrentWidth = oConfig.getProperty("width");
-
-        if (sCurrentWidth == sNewWidth) {
-            oConfig.setProperty("width", sOriginalWidth);
-        }
-    }
-
-    /* 
-        "beforeShow" event handler that sets a Tooltip instance's "width"
-        configuration property to the value of its root HTML 
-        elements's offsetWidth
-    */
-
-    function setWidthToOffsetWidth(p_sType, p_aArgs) {
-
-        var oBody = document.body,
-            oConfig = this.cfg,
-            sOriginalWidth = oConfig.getProperty("width"),
-            sNewWidth,
-            oClone;
-
-        if ((!sOriginalWidth || sOriginalWidth == "auto") && 
-            (oConfig.getProperty("container") != oBody || 
-            oConfig.getProperty("x") >= Dom.getViewportWidth() || 
-            oConfig.getProperty("y") >= Dom.getViewportHeight())) {
-
-            oClone = this.element.cloneNode(true);
-            oClone.style.visibility = "hidden";
-            oClone.style.top = "0px";
-            oClone.style.left = "0px";
-
-            oBody.appendChild(oClone);
-
-            sNewWidth = (oClone.offsetWidth + "px");
-
-            oBody.removeChild(oClone);
-            oClone = null;
-
-            oConfig.setProperty("width", sNewWidth);
-            oConfig.refireEvent("xy");
-
-            this.subscribe("hide", restoreOriginalWidth, [(sOriginalWidth || ""), sNewWidth]);
-        }
-    }
-
-    // "onDOMReady" that renders the ToolTip
-
-    function onDOMReady(p_sType, p_aArgs, p_oObject) {
-        this.render(p_oObject);
-    }
-
-    //  "init" event handler that automatically renders the Tooltip
-
-    function onInit() {
-        Event.onDOMReady(onDOMReady, this.cfg.getProperty("container"), this);
-    }
-
-    YAHOO.extend(Tooltip, YAHOO.widget.Overlay, { 
-
-        /**
-        * The Tooltip initialization method. This method is automatically 
-        * called by the constructor. A Tooltip is automatically rendered by 
-        * the init method, and it also is set to be invisible by default, 
-        * and constrained to viewport by default as well.
-        * @method init
-        * @param {String} el The element ID representing the Tooltip <em>OR</em>
-        * @param {HTMLElement} el The element representing the Tooltip
-        * @param {Object} userConfig The configuration object literal 
-        * containing the configuration that should be set for this Tooltip. 
-        * See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-
-
-            Tooltip.superclass.init.call(this, el);
-
-            this.beforeInitEvent.fire(Tooltip);
-
-            Dom.addClass(this.element, Tooltip.CSS_TOOLTIP);
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-
-            this.cfg.queueProperty("visible", false);
-            this.cfg.queueProperty("constraintoviewport", true);
-
-            this.setBody("");
-
-            this.subscribe("beforeShow", setWidthToOffsetWidth);
-            this.subscribe("init", onInit);
-            this.subscribe("render", this.onRender);
-
-            this.initEvent.fire(Tooltip);
-        },
-
-        /**
-        * Initializes the custom events for Tooltip
-        * @method initEvents
-        */
-        initEvents: function () {
-
-            Tooltip.superclass.initEvents.call(this);
-            var SIGNATURE = CustomEvent.LIST;
-
-            /**
-            * CustomEvent fired when user mouses over a context element. Returning false from
-            * a subscriber to this event will prevent the tooltip from being displayed for
-            * the current context element.
-            * 
-            * @event contextMouseOverEvent
-            * @param {HTMLElement} context The context element which the user just moused over
-            * @param {DOMEvent} e The DOM event object, associated with the mouse over
-            */
-            this.contextMouseOverEvent = this.createEvent(EVENT_TYPES.CONTEXT_MOUSE_OVER);
-            this.contextMouseOverEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired when the user mouses out of a context element.
-            * 
-            * @event contextMouseOutEvent
-            * @param {HTMLElement} context The context element which the user just moused out of
-            * @param {DOMEvent} e The DOM event object, associated with the mouse out
-            */
-            this.contextMouseOutEvent = this.createEvent(EVENT_TYPES.CONTEXT_MOUSE_OUT);
-            this.contextMouseOutEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired just before the tooltip is displayed for the current context.
-            * <p>
-            *  You can subscribe to this event if you need to set up the text for the 
-            *  tooltip based on the context element for which it is about to be displayed.
-            * </p>
-            * <p>This event differs from the beforeShow event in following respects:</p>
-            * <ol>
-            *   <li>
-            *    When moving from one context element to another, if the tooltip is not
-            *    hidden (the <code>hidedelay</code> is not reached), the beforeShow and Show events will not
-            *    be fired when the tooltip is displayed for the new context since it is already visible.
-            *    However the contextTrigger event is always fired before displaying the tooltip for
-            *    a new context.
-            *   </li>
-            *   <li>
-            *    The trigger event provides access to the context element, allowing you to 
-            *    set the text of the tooltip based on context element for which the tooltip is
-            *    triggered.
-            *   </li>
-            * </ol>
-            * <p>
-            *  It is not possible to prevent the tooltip from being displayed
-            *  using this event. You can use the contextMouseOverEvent if you need to prevent
-            *  the tooltip from being displayed.
-            * </p>
-            * @event contextTriggerEvent
-            * @param {HTMLElement} context The context element for which the tooltip is triggered
-            */
-            this.contextTriggerEvent = this.createEvent(EVENT_TYPES.CONTEXT_TRIGGER);
-            this.contextTriggerEvent.signature = SIGNATURE;
-        },
-
-        /**
-        * Initializes the class's configurable properties which can be 
-        * changed using the Overlay's Config object (cfg).
-        * @method initDefaultConfig
-        */
-        initDefaultConfig: function () {
-
-            Tooltip.superclass.initDefaultConfig.call(this);
-
-            /**
-            * Specifies whether the Tooltip should be kept from overlapping 
-            * its context element.
-            * @config preventoverlap
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.PREVENT_OVERLAP.key, {
-                value: DEFAULT_CONFIG.PREVENT_OVERLAP.value, 
-                validator: DEFAULT_CONFIG.PREVENT_OVERLAP.validator, 
-                supercedes: DEFAULT_CONFIG.PREVENT_OVERLAP.supercedes
-            });
-
-            /**
-            * The number of milliseconds to wait before showing a Tooltip 
-            * on mouseover.
-            * @config showdelay
-            * @type Number
-            * @default 200
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.SHOW_DELAY.key, {
-                handler: this.configShowDelay,
-                value: 200, 
-                validator: DEFAULT_CONFIG.SHOW_DELAY.validator
-            });
-
-            /**
-            * The number of milliseconds to wait before automatically 
-            * dismissing a Tooltip after the mouse has been resting on the 
-            * context element.
-            * @config autodismissdelay
-            * @type Number
-            * @default 5000
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.AUTO_DISMISS_DELAY.key, {
-                handler: this.configAutoDismissDelay,
-                value: DEFAULT_CONFIG.AUTO_DISMISS_DELAY.value,
-                validator: DEFAULT_CONFIG.AUTO_DISMISS_DELAY.validator
-            });
-
-            /**
-            * The number of milliseconds to wait before hiding a Tooltip 
-            * after mouseout.
-            * @config hidedelay
-            * @type Number
-            * @default 250
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.HIDE_DELAY.key, {
-                handler: this.configHideDelay,
-                value: DEFAULT_CONFIG.HIDE_DELAY.value, 
-                validator: DEFAULT_CONFIG.HIDE_DELAY.validator
-            });
-
-            /**
-            * Specifies the Tooltip's text. 
-            * @config text
-            * @type String
-            * @default null
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.TEXT.key, {
-                handler: this.configText,
-                suppressEvent: DEFAULT_CONFIG.TEXT.suppressEvent
-            });
-
-            /**
-            * Specifies the container element that the Tooltip's markup 
-            * should be rendered into.
-            * @config container
-            * @type HTMLElement/String
-            * @default document.body
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.CONTAINER.key, {
-                handler: this.configContainer,
-                value: document.body
-            });
-
-            /**
-            * Specifies whether or not the tooltip is disabled. Disabled tooltips
-            * will not be displayed. If the tooltip is driven by the title attribute
-            * of the context element, the title attribute will still be removed for 
-            * disabled tooltips, to prevent default tooltip behavior.
-            * 
-            * @config disabled
-            * @type Boolean
-            * @default false
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.DISABLED.key, {
-                handler: this.configContainer,
-                value: DEFAULT_CONFIG.DISABLED.value,
-                supressEvent: DEFAULT_CONFIG.DISABLED.suppressEvent
-            });
-
-            /**
-            * Specifies the element or elements that the Tooltip should be 
-            * anchored to on mouseover.
-            * @config context
-            * @type HTMLElement[]/String[]
-            * @default null
-            */ 
-
-            /**
-            * String representing the width of the Tooltip.  <em>Please note:
-            * </em> As of version 2.3 if either no value or a value of "auto" 
-            * is specified, and the Toolip's "container" configuration property
-            * is set to something other than <code>document.body</code> or 
-            * its "context" element resides outside the immediately visible 
-            * portion of the document, the width of the Tooltip will be 
-            * calculated based on the offsetWidth of its root HTML and set just 
-            * before it is made visible.  The original value will be 
-            * restored when the Tooltip is hidden. This ensures the Tooltip is 
-            * rendered at a usable width.  For more information see 
-            * SourceForge bug #1685496 and SourceForge 
-            * bug #1735423.
-            * @config width
-            * @type String
-            * @default null
-            */
-        
-        },
-        
-        // BEGIN BUILT-IN PROPERTY EVENT HANDLERS //
-        
-        /**
-        * The default event handler fired when the "text" property is changed.
-        * @method configText
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configText: function (type, args, obj) {
-            var text = args[0];
-            if (text) {
-                this.setBody(text);
-            }
-        },
-        
-        /**
-        * The default event handler fired when the "container" property 
-        * is changed.
-        * @method configContainer
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For 
-        * configuration handlers, args[0] will equal the newly applied value 
-        * for the property.
-        * @param {Object} obj The scope object. For configuration handlers,
-        * this will usually equal the owner.
-        */
-        configContainer: function (type, args, obj) {
-            var container = args[0];
-
-            if (typeof container == 'string') {
-                this.cfg.setProperty("container", document.getElementById(container), true);
-            }
-        },
-        
-        /**
-        * @method _removeEventListeners
-        * @description Removes all of the DOM event handlers from the HTML
-        *  element(s) that trigger the display of the tooltip.
-        * @protected
-        */
-        _removeEventListeners: function () {
-        
-            var aElements = this._context,
-                nElements,
-                oElement,
-                i;
-
-            if (aElements) {
-                nElements = aElements.length;
-                if (nElements > 0) {
-                    i = nElements - 1;
-                    do {
-                        oElement = aElements[i];
-                        Event.removeListener(oElement, "mouseover", this.onContextMouseOver);
-                        Event.removeListener(oElement, "mousemove", this.onContextMouseMove);
-                        Event.removeListener(oElement, "mouseout", this.onContextMouseOut);
-                    }
-                    while (i--);
-                }
-            }
-        },
-        
-        /**
-        * The default event handler fired when the "context" property 
-        * is changed.
-        * @method configContext
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers,
-        * this will usually equal the owner.
-        */
-        configContext: function (type, args, obj) {
-        
-            var context = args[0],
-                aElements,
-                nElements,
-                oElement,
-                i;
-
-            if (context) {
-
-                // Normalize parameter into an array
-                if (! (context instanceof Array)) {
-                    if (typeof context == "string") {
-                        this.cfg.setProperty("context", [document.getElementById(context)], true);
-                    } else { // Assuming this is an element
-                        this.cfg.setProperty("context", [context], true);
-                    }
-                    context = this.cfg.getProperty("context");
-                }
-
-                // Remove any existing mouseover/mouseout listeners
-                this._removeEventListeners();
-
-                // Add mouseover/mouseout listeners to context elements
-                this._context = context;
-
-                aElements = this._context;
-
-                if (aElements) {
-                    nElements = aElements.length;
-                    if (nElements > 0) {
-                        i = nElements - 1;
-                        do {
-                            oElement = aElements[i];
-                            Event.on(oElement, "mouseover", this.onContextMouseOver, this);
-                            Event.on(oElement, "mousemove", this.onContextMouseMove, this);
-                            Event.on(oElement, "mouseout", this.onContextMouseOut, this);
-                        }
-                        while (i--);
-                    }
-                }
-            }
-        },
-
-        // END BUILT-IN PROPERTY EVENT HANDLERS //
-
-        // BEGIN BUILT-IN DOM EVENT HANDLERS //
-
-        /**
-        * The default event handler fired when the user moves the mouse while 
-        * over the context element.
-        * @method onContextMouseMove
-        * @param {DOMEvent} e The current DOM event
-        * @param {Object} obj The object argument
-        */
-        onContextMouseMove: function (e, obj) {
-            obj.pageX = Event.getPageX(e);
-            obj.pageY = Event.getPageY(e);
-        },
-
-        /**
-        * The default event handler fired when the user mouses over the 
-        * context element.
-        * @method onContextMouseOver
-        * @param {DOMEvent} e The current DOM event
-        * @param {Object} obj The object argument
-        */
-        onContextMouseOver: function (e, obj) {
-            var context = this;
-
-            if (context.title) {
-                obj._tempTitle = context.title;
-                context.title = "";
-            }
-
-            // Fire first, to honor disabled set in the listner
-            if (obj.fireEvent("contextMouseOver", context, e) !== false 
-                    && !obj.cfg.getProperty("disabled")) {
-
-                // Stop the tooltip from being hidden (set on last mouseout)
-                if (obj.hideProcId) {
-                    clearTimeout(obj.hideProcId);
-                    obj.hideProcId = null;
-                }
-
-                Event.on(context, "mousemove", obj.onContextMouseMove, obj);
-
-                /**
-                * The unique process ID associated with the thread responsible 
-                * for showing the Tooltip.
-                * @type int
-                */
-                obj.showProcId = obj.doShow(e, context);
-            }
-        },
-
-        /**
-        * The default event handler fired when the user mouses out of 
-        * the context element.
-        * @method onContextMouseOut
-        * @param {DOMEvent} e The current DOM event
-        * @param {Object} obj The object argument
-        */
-        onContextMouseOut: function (e, obj) {
-            var el = this;
-
-            if (obj._tempTitle) {
-                el.title = obj._tempTitle;
-                obj._tempTitle = null;
-            }
-
-            if (obj.showProcId) {
-                clearTimeout(obj.showProcId);
-                obj.showProcId = null;
-            }
-
-            if (obj.hideProcId) {
-                clearTimeout(obj.hideProcId);
-                obj.hideProcId = null;
-            }
-
-            obj.fireEvent("contextMouseOut", el, e);
-
-            obj.hideProcId = setTimeout(function () {
-                obj.hide();
-            }, obj.cfg.getProperty("hidedelay"));
-        },
-
-        // END BUILT-IN DOM EVENT HANDLERS //
-
-        /**
-        * Processes the showing of the Tooltip by setting the timeout delay 
-        * and offset of the Tooltip.
-        * @method doShow
-        * @param {DOMEvent} e The current DOM event
-        * @param {HTMLElement} context The current context element
-        * @return {Number} The process ID of the timeout function associated 
-        * with doShow
-        */
-        doShow: function (e, context) {
-
-            var yOffset = 25,
-                me = this;
-
-            if (YAHOO.env.ua.opera && context.tagName && 
-                context.tagName.toUpperCase() == "A") {
-                yOffset += 12;
-            }
-
-            return setTimeout(function () {
-
-                var txt = me.cfg.getProperty("text");
-
-                // title does not over-ride text
-                if (me._tempTitle && (txt === "" || YAHOO.lang.isUndefined(txt) || YAHOO.lang.isNull(txt))) {
-                    me.setBody(me._tempTitle);
-                } else {
-                    me.cfg.refireEvent("text");
-                }
-
-                me.moveTo(me.pageX, me.pageY + yOffset);
-
-                if (me.cfg.getProperty("preventoverlap")) {
-                    me.preventOverlap(me.pageX, me.pageY);
-                }
-
-                Event.removeListener(context, "mousemove", me.onContextMouseMove);
-
-                me.contextTriggerEvent.fire(context);
-
-                me.show();
-
-                me.hideProcId = me.doHide();
-
-            }, this.cfg.getProperty("showdelay"));
-        },
-
-        /**
-        * Sets the timeout for the auto-dismiss delay, which by default is 5 
-        * seconds, meaning that a tooltip will automatically dismiss itself 
-        * after 5 seconds of being displayed.
-        * @method doHide
-        */
-        doHide: function () {
-
-            var me = this;
-
-
-            return setTimeout(function () {
-
-                me.hide();
-
-            }, this.cfg.getProperty("autodismissdelay"));
-
-        },
-        
-        /**
-        * Fired when the Tooltip is moved, this event handler is used to 
-        * prevent the Tooltip from overlapping with its context element.
-        * @method preventOverlay
-        * @param {Number} pageX The x coordinate position of the mouse pointer
-        * @param {Number} pageY The y coordinate position of the mouse pointer
-        */
-        preventOverlap: function (pageX, pageY) {
-        
-            var height = this.element.offsetHeight,
-                mousePoint = new YAHOO.util.Point(pageX, pageY),
-                elementRegion = Dom.getRegion(this.element);
-        
-            elementRegion.top -= 5;
-            elementRegion.left -= 5;
-            elementRegion.right += 5;
-            elementRegion.bottom += 5;
-        
-        
-            if (elementRegion.contains(mousePoint)) {
-                this.cfg.setProperty("y", (pageY - height - 5));
-            }
-        },
-
-
-        /**
-        * @method onRender
-        * @description "render" event handler for the Tooltip.
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        onRender: function (p_sType, p_aArgs) {
-    
-            function sizeShadow() {
-    
-                var oElement = this.element,
-                    oShadow = this._shadow;
-            
-                if (oShadow) {
-                    oShadow.style.width = (oElement.offsetWidth + 6) + "px";
-                    oShadow.style.height = (oElement.offsetHeight + 1) + "px"; 
-                }
-            
-            }
-
-            function addShadowVisibleClass() {
-                Dom.addClass(this._shadow, "yui-tt-shadow-visible");
-            }
-            
-
-            function removeShadowVisibleClass() {
-                Dom.removeClass(this._shadow, "yui-tt-shadow-visible");
-            }
-
-            function createShadow() {
-    
-                var oShadow = this._shadow,
-                    oElement,
-                    Module,
-                    nIE,
-                    me;
-    
-                if (!oShadow) {
-    
-                    oElement = this.element;
-                    Module = YAHOO.widget.Module;
-                    nIE = YAHOO.env.ua.ie;
-                    me = this;
-
-                    if (!m_oShadowTemplate) {
-                        m_oShadowTemplate = document.createElement("div");
-                        m_oShadowTemplate.className = "yui-tt-shadow";
-                    }
-
-                    oShadow = m_oShadowTemplate.cloneNode(false);
-
-                    oElement.appendChild(oShadow);
-
-                    this._shadow = oShadow;
-
-                    addShadowVisibleClass.call(this);
-
-                    this.subscribe("beforeShow", addShadowVisibleClass);
-                    this.subscribe("beforeHide", removeShadowVisibleClass);
-
-                    if (nIE == 6 || (nIE == 7 && document.compatMode == "BackCompat")) {
-                        window.setTimeout(function () { 
-                            sizeShadow.call(me); 
-                        }, 0);
-    
-                        this.cfg.subscribeToConfigEvent("width", sizeShadow);
-                        this.cfg.subscribeToConfigEvent("height", sizeShadow);
-                        this.subscribe("changeContent", sizeShadow);
-
-                        Module.textResizeEvent.subscribe(sizeShadow, this, true);
-                        this.subscribe("destroy", function () {
-                            Module.textResizeEvent.unsubscribe(sizeShadow, this);
-                        });
-                    }
-                }
-            }
-
-            function onBeforeShow() {
-                createShadow.call(this);
-                this.unsubscribe("beforeShow", onBeforeShow);
-            }
-
-            if (this.cfg.getProperty("visible")) {
-                createShadow.call(this);
-            } else {
-                this.subscribe("beforeShow", onBeforeShow);
-            }
-        
-        },
-        
-        /**
-        * Removes the Tooltip element from the DOM and sets all child 
-        * elements to null.
-        * @method destroy
-        */
-        destroy: function () {
-        
-            // Remove any existing mouseover/mouseout listeners
-            this._removeEventListeners();
-
-            Tooltip.superclass.destroy.call(this);  
-        
-        },
-        
-        /**
-        * Returns a string representation of the object.
-        * @method toString
-        * @return {String} The string representation of the Tooltip
-        */
-        toString: function () {
-            return "Tooltip " + this.id;
-        }
-    
-    });
-
-}());
-
-(function () {
-
-    /**
-    * Panel is an implementation of Overlay that behaves like an OS window, 
-    * with a draggable header and an optional close icon at the top right.
-    * @namespace YAHOO.widget
-    * @class Panel
-    * @extends YAHOO.widget.Overlay
-    * @constructor
-    * @param {String} el The element ID representing the Panel <em>OR</em>
-    * @param {HTMLElement} el The element representing the Panel
-    * @param {Object} userConfig The configuration object literal containing 
-    * the configuration that should be set for this Panel. See configuration 
-    * documentation for more details.
-    */
-    YAHOO.widget.Panel = function (el, userConfig) {
-        YAHOO.widget.Panel.superclass.constructor.call(this, el, userConfig);
-    };
-
-    var _currentModal = null;
-
-    var Lang = YAHOO.lang,
-        Util = YAHOO.util,
-        Dom = Util.Dom,
-        Event = Util.Event,
-        CustomEvent = Util.CustomEvent,
-        KeyListener = YAHOO.util.KeyListener,
-        Config = Util.Config,
-        Overlay = YAHOO.widget.Overlay,
-        Panel = YAHOO.widget.Panel,
-        UA = YAHOO.env.ua,
-
-        bIEQuirks = (UA.ie == 6 || (UA.ie == 7 && document.compatMode == "BackCompat")),
-
-        m_oMaskTemplate,
-        m_oUnderlayTemplate,
-        m_oCloseIconTemplate,
-
-        /**
-        * Constant representing the name of the Panel's events
-        * @property EVENT_TYPES
-        * @private
-        * @final
-        * @type Object
-        */
-        EVENT_TYPES = {
-            "SHOW_MASK": "showMask",
-            "HIDE_MASK": "hideMask",
-            "DRAG": "drag"
-        },
-
-        /**
-        * Constant representing the Panel's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-
-            "CLOSE": { 
-                key: "close", 
-                value: true, 
-                validator: Lang.isBoolean, 
-                supercedes: ["visible"] 
-            },
-
-            "DRAGGABLE": {
-                key: "draggable", 
-                value: (Util.DD ? true : false), 
-                validator: Lang.isBoolean, 
-                supercedes: ["visible"]  
-            },
-
-            "DRAG_ONLY" : {
-                key: "dragonly",
-                value: false,
-                validator: Lang.isBoolean,
-                supercedes: ["draggable"]
-            },
-
-            "UNDERLAY": { 
-                key: "underlay", 
-                value: "shadow", 
-                supercedes: ["visible"] 
-            },
-
-            "MODAL": { 
-                key: "modal", 
-                value: false, 
-                validator: Lang.isBoolean, 
-                supercedes: ["visible", "zindex"]
-            },
-
-            "KEY_LISTENERS": {
-                key: "keylisteners",
-                suppressEvent: true,
-                supercedes: ["visible"]
-            },
-
-            "STRINGS" : {
-                key: "strings",
-                supercedes: ["close"],
-                validator: Lang.isObject,
-                value: {
-                    close: "Close"
-                }
-            }
-        };
-
-    /**
-    * Constant representing the default CSS class used for a Panel
-    * @property YAHOO.widget.Panel.CSS_PANEL
-    * @static
-    * @final
-    * @type String
-    */
-    Panel.CSS_PANEL = "yui-panel";
-    
-    /**
-    * Constant representing the default CSS class used for a Panel's 
-    * wrapping container
-    * @property YAHOO.widget.Panel.CSS_PANEL_CONTAINER
-    * @static
-    * @final
-    * @type String
-    */
-    Panel.CSS_PANEL_CONTAINER = "yui-panel-container";
-
-    /**
-     * Constant representing the default set of focusable elements 
-     * on the pagewhich Modal Panels will prevent access to, when
-     * the modal mask is displayed
-     * 
-     * @property YAHOO.widget.Panel.FOCUSABLE
-     * @static
-     * @type Array
-     */
-    Panel.FOCUSABLE = [
-        "a",
-        "button",
-        "select",
-        "textarea",
-        "input",
-        "iframe"
-    ];
-
-    // Private CustomEvent listeners
-
-    /* 
-        "beforeRender" event handler that creates an empty header for a Panel 
-        instance if its "draggable" configuration property is set to "true" 
-        and no header has been created.
-    */
-
-    function createHeader(p_sType, p_aArgs) {
-        if (!this.header && this.cfg.getProperty("draggable")) {
-            this.setHeader("&#160;");
-        }
-    }
-
-    /* 
-        "hide" event handler that sets a Panel instance's "width"
-        configuration property back to its original value before 
-        "setWidthToOffsetWidth" was called.
-    */
-    
-    function restoreOriginalWidth(p_sType, p_aArgs, p_oObject) {
-
-        var sOriginalWidth = p_oObject[0],
-            sNewWidth = p_oObject[1],
-            oConfig = this.cfg,
-            sCurrentWidth = oConfig.getProperty("width");
-
-        if (sCurrentWidth == sNewWidth) {
-            oConfig.setProperty("width", sOriginalWidth);
-        }
-
-        this.unsubscribe("hide", restoreOriginalWidth, p_oObject);
-    }
-
-    /* 
-        "beforeShow" event handler that sets a Panel instance's "width"
-        configuration property to the value of its root HTML 
-        elements's offsetWidth
-    */
-
-    function setWidthToOffsetWidth(p_sType, p_aArgs) {
-
-        var nIE = YAHOO.env.ua.ie,
-            oConfig,
-            sOriginalWidth,
-            sNewWidth;
-
-        if (nIE == 6 || (nIE == 7 && document.compatMode == "BackCompat")) {
-
-            oConfig = this.cfg;
-            sOriginalWidth = oConfig.getProperty("width");
-            
-            if (!sOriginalWidth || sOriginalWidth == "auto") {
-    
-                sNewWidth = (this.element.offsetWidth + "px");
-    
-                oConfig.setProperty("width", sNewWidth);
-                
-                this.subscribe("hide", restoreOriginalWidth, 
-                    [(sOriginalWidth || ""), sNewWidth]);
-            
-            }
-        }
-    }
-
-    YAHOO.extend(Panel, Overlay, {
-
-        /**
-        * The Overlay initialization method, which is executed for Overlay and 
-        * all of its subclasses. This method is automatically called by the 
-        * constructor, and  sets up all DOM references for pre-existing markup, 
-        * and creates required markup if it is not already present.
-        * @method init
-        * @param {String} el The element ID representing the Overlay <em>OR</em>
-        * @param {HTMLElement} el The element representing the Overlay
-        * @param {Object} userConfig The configuration object literal 
-        * containing the configuration that should be set for this Overlay. 
-        * See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-            /*
-                 Note that we don't pass the user config in here yet because 
-                 we only want it executed once, at the lowest subclass level
-            */
-
-            Panel.superclass.init.call(this, el/*, userConfig*/);
-
-            this.beforeInitEvent.fire(Panel);
-
-            Dom.addClass(this.element, Panel.CSS_PANEL);
-
-            this.buildWrapper();
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-
-            this.subscribe("showMask", this._addFocusHandlers);
-            this.subscribe("hideMask", this._removeFocusHandlers);
-            this.subscribe("beforeRender", createHeader);
-
-            this.subscribe("render", function() {
-                this.setFirstLastFocusable();
-                this.subscribe("changeContent", this.setFirstLastFocusable);
-            });
-
-            this.subscribe("show", this.focusFirst);
-
-            this.initEvent.fire(Panel);
-        },
-
-        /**
-         * @method _onElementFocus
-         * @private
-         *
-         * "focus" event handler for a focuable element. Used to automatically
-         * blur the element when it receives focus to ensure that a Panel
-         * instance's modality is not compromised.
-         *
-         * @param {Event} e The DOM event object
-         */
-        _onElementFocus : function(e){
-
-            var target = Event.getTarget(e);
-
-            if (target !== this.element && !Dom.isAncestor(this.element, target) && _currentModal == this) {
-                try {
-                    if (this.firstElement) {
-                        this.firstElement.focus();
-                    } else {
-                        if (this._modalFocus) {
-                            this._modalFocus.focus();
-                        } else {
-                            this.innerElement.focus();
-                        }
-                    }
-                } catch(err){
-                    // Just in case we fail to focus
-                    try {
-                        if (target !== document && target !== document.body && target !== window) {
-                            target.blur();
-                        }
-                    } catch(err2) { }
-                }
-            }
-        },
-
-        /** 
-         *  @method _addFocusHandlers
-         *  @protected
-         *  
-         *  "showMask" event handler that adds a "focus" event handler to all
-         *  focusable elements in the document to enforce a Panel instance's 
-         *  modality from being compromised.
-         *
-         *  @param p_sType {String} Custom event type
-         *  @param p_aArgs {Array} Custom event arguments
-         */
-        _addFocusHandlers: function(p_sType, p_aArgs) {
-            if (!this.firstElement) {
-                if (UA.webkit || UA.opera) {
-                    if (!this._modalFocus) {
-                        this._createHiddenFocusElement();
-                    }
-                } else {
-                    this.innerElement.tabIndex = 0;
-                }
-            }
-            this.setTabLoop(this.firstElement, this.lastElement);
-            Event.onFocus(document.documentElement, this._onElementFocus, this, true);
-            _currentModal = this;
-        },
-
-        /**
-         * Creates a hidden focusable element, used to focus on,
-         * to enforce modality for browsers in which focus cannot
-         * be applied to the container box.
-         * 
-         * @method _createHiddenFocusElement
-         * @private
-         */
-        _createHiddenFocusElement : function() {
-            var e = document.createElement("button");
-            e.style.height = "1px";
-            e.style.width = "1px";
-            e.style.position = "absolute";
-            e.style.left = "-10000em";
-            e.style.opacity = 0;
-            e.tabIndex = "-1";
-            this.innerElement.appendChild(e);
-            this._modalFocus = e;
-        },
-
-        /**
-         *  @method _removeFocusHandlers
-         *  @protected
-         *
-         *  "hideMask" event handler that removes all "focus" event handlers added 
-         *  by the "addFocusEventHandlers" method.
-         *
-         *  @param p_sType {String} Event type
-         *  @param p_aArgs {Array} Event Arguments
-         */
-        _removeFocusHandlers: function(p_sType, p_aArgs) {
-            Event.removeFocusListener(document.documentElement, this._onElementFocus, this);
-
-            if (_currentModal == this) {
-                _currentModal = null;
-            }
-        },
-
-        /**
-         * Sets focus to the first element in the Panel.
-         *
-         * @method focusFirst
-         */
-        focusFirst: function (type, args, obj) {
-            var el = this.firstElement;
-
-            if (args && args[1]) {
-                Event.stopEvent(args[1]);
-            }
-
-            if (el) {
-                try {
-                    el.focus();
-                } catch(err) {
-                    // Ignore
-                }
-            }
-        },
-
-        /**
-         * Sets focus to the last element in the Panel.
-         *
-         * @method focusLast
-         */
-        focusLast: function (type, args, obj) {
-            var el = this.lastElement;
-
-            if (args && args[1]) {
-                Event.stopEvent(args[1]);
-            }
-
-            if (el) {
-                try {
-                    el.focus();
-                } catch(err) {
-                    // Ignore
-                }
-            }
-        },
-
-        /**
-         * Sets up a tab, shift-tab loop between the first and last elements
-         * provided. NOTE: Sets up the preventBackTab and preventTabOut KeyListener
-         * instance properties, which are reset everytime this method is invoked.
-         *
-         * @method setTabLoop
-         * @param {HTMLElement} firstElement
-         * @param {HTMLElement} lastElement
-         *
-         */
-        setTabLoop : function(firstElement, lastElement) {
-
-            var backTab = this.preventBackTab, tab = this.preventTabOut,
-                showEvent = this.showEvent, hideEvent = this.hideEvent;
-
-            if (backTab) {
-                backTab.disable();
-                showEvent.unsubscribe(backTab.enable, backTab);
-                hideEvent.unsubscribe(backTab.disable, backTab);
-                backTab = this.preventBackTab = null;
-            }
-
-            if (tab) {
-                tab.disable();
-                showEvent.unsubscribe(tab.enable, tab);
-                hideEvent.unsubscribe(tab.disable,tab);
-                tab = this.preventTabOut = null;
-            }
-
-            if (firstElement) {
-                this.preventBackTab = new KeyListener(firstElement, 
-                    {shift:true, keys:9},
-                    {fn:this.focusLast, scope:this, correctScope:true}
-                );
-                backTab = this.preventBackTab;
-
-                showEvent.subscribe(backTab.enable, backTab, true);
-                hideEvent.subscribe(backTab.disable,backTab, true);
-            }
-
-            if (lastElement) {
-                this.preventTabOut = new KeyListener(lastElement, 
-                    {shift:false, keys:9}, 
-                    {fn:this.focusFirst, scope:this, correctScope:true}
-                );
-                tab = this.preventTabOut;
-
-                showEvent.subscribe(tab.enable, tab, true);
-                hideEvent.subscribe(tab.disable,tab, true);
-            }
-        },
-
-        /**
-         * Returns an array of the currently focusable items which reside within
-         * Panel. The set of focusable elements the method looks for are defined
-         * in the Panel.FOCUSABLE static property
-         *
-         * @method getFocusableElements
-         * @param {HTMLElement} root element to start from.
-         */
-        getFocusableElements : function(root) {
-
-            root = root || this.innerElement;
-
-            var focusable = {};
-            for (var i = 0; i < Panel.FOCUSABLE.length; i++) {
-                focusable[Panel.FOCUSABLE[i]] = true;
-            }
-
-            function isFocusable(el) {
-                if (el.focus && el.type !== "hidden" && !el.disabled && focusable[el.tagName.toLowerCase()]) {
-                    return true;
-                }
-                return false;
-            }
-
-            // Not looking by Tag, since we want elements in DOM order
-            return Dom.getElementsBy(isFocusable, null, root);
-        },
-
-        /**
-         * Sets the firstElement and lastElement instance properties
-         * to the first and last focusable elements in the Panel.
-         *
-         * @method setFirstLastFocusable
-         */
-        setFirstLastFocusable : function() {
-
-            this.firstElement = null;
-            this.lastElement = null;
-
-            var elements = this.getFocusableElements();
-            this.focusableElements = elements;
-
-            if (elements.length > 0) {
-                this.firstElement = elements[0];
-                this.lastElement = elements[elements.length - 1];
-            }
-
-            if (this.cfg.getProperty("modal")) {
-                this.setTabLoop(this.firstElement, this.lastElement);
-            }
-        },
-
-        /**
-         * Initializes the custom events for Module which are fired 
-         * automatically at appropriate times by the Module class.
-         */
-        initEvents: function () {
-            Panel.superclass.initEvents.call(this);
-
-            var SIGNATURE = CustomEvent.LIST;
-
-            /**
-            * CustomEvent fired after the modality mask is shown
-            * @event showMaskEvent
-            */
-            this.showMaskEvent = this.createEvent(EVENT_TYPES.SHOW_MASK);
-            this.showMaskEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after the modality mask is hidden
-            * @event hideMaskEvent
-            */
-            this.hideMaskEvent = this.createEvent(EVENT_TYPES.HIDE_MASK);
-            this.hideMaskEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent when the Panel is dragged
-            * @event dragEvent
-            */
-            this.dragEvent = this.createEvent(EVENT_TYPES.DRAG);
-            this.dragEvent.signature = SIGNATURE;
-        },
-
-        /**
-         * Initializes the class's configurable properties which can be changed 
-         * using the Panel's Config object (cfg).
-         * @method initDefaultConfig
-         */
-        initDefaultConfig: function () {
-            Panel.superclass.initDefaultConfig.call(this);
-
-            // Add panel config properties //
-
-            /**
-            * True if the Panel should display a "close" button
-            * @config close
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.CLOSE.key, { 
-                handler: this.configClose, 
-                value: DEFAULT_CONFIG.CLOSE.value, 
-                validator: DEFAULT_CONFIG.CLOSE.validator, 
-                supercedes: DEFAULT_CONFIG.CLOSE.supercedes 
-            });
-
-            /**
-            * Boolean specifying if the Panel should be draggable.  The default 
-            * value is "true" if the Drag and Drop utility is included, 
-            * otherwise it is "false." <strong>PLEASE NOTE:</strong> There is a 
-            * known issue in IE 6 (Strict Mode and Quirks Mode) and IE 7 
-            * (Quirks Mode) where Panels that either don't have a value set for 
-            * their "width" configuration property, or their "width" 
-            * configuration property is set to "auto" will only be draggable by
-            * placing the mouse on the text of the Panel's header element.
-            * To fix this bug, draggable Panels missing a value for their 
-            * "width" configuration property, or whose "width" configuration 
-            * property is set to "auto" will have it set to the value of 
-            * their root HTML element's offsetWidth before they are made 
-            * visible.  The calculated width is then removed when the Panel is   
-            * hidden. <em>This fix is only applied to draggable Panels in IE 6 
-            * (Strict Mode and Quirks Mode) and IE 7 (Quirks Mode)</em>. For 
-            * more information on this issue see:
-            * SourceForge bugs #1726972 and #1589210.
-            * @config draggable
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.DRAGGABLE.key, {
-                handler: this.configDraggable,
-                value: (Util.DD) ? true : false,
-                validator: DEFAULT_CONFIG.DRAGGABLE.validator,
-                supercedes: DEFAULT_CONFIG.DRAGGABLE.supercedes
-            });
-
-            /**
-            * Boolean specifying if the draggable Panel should be drag only, not interacting with drop 
-            * targets on the page.
-            * <p>
-            * When set to true, draggable Panels will not check to see if they are over drop targets,
-            * or fire the DragDrop events required to support drop target interaction (onDragEnter, 
-            * onDragOver, onDragOut, onDragDrop etc.).
-            * If the Panel is not designed to be dropped on any target elements on the page, then this 
-            * flag can be set to true to improve performance.
-            * </p>
-            * <p>
-            * When set to false, all drop target related events will be fired.
-            * </p>
-            * <p>
-            * The property is set to false by default to maintain backwards compatibility but should be 
-            * set to true if drop target interaction is not required for the Panel, to improve performance.</p>
-            * 
-            * @config dragOnly
-            * @type Boolean
-            * @default false
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.DRAG_ONLY.key, { 
-                value: DEFAULT_CONFIG.DRAG_ONLY.value, 
-                validator: DEFAULT_CONFIG.DRAG_ONLY.validator, 
-                supercedes: DEFAULT_CONFIG.DRAG_ONLY.supercedes 
-            });
-
-            /**
-            * Sets the type of underlay to display for the Panel. Valid values 
-            * are "shadow," "matte," and "none".  <strong>PLEASE NOTE:</strong> 
-            * The creation of the underlay element is deferred until the Panel 
-            * is initially made visible.  For Gecko-based browsers on Mac
-            * OS X the underlay elment is always created as it is used as a 
-            * shim to prevent Aqua scrollbars below a Panel instance from poking 
-            * through it (See SourceForge bug #836476).
-            * @config underlay
-            * @type String
-            * @default shadow
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.UNDERLAY.key, { 
-                handler: this.configUnderlay, 
-                value: DEFAULT_CONFIG.UNDERLAY.value, 
-                supercedes: DEFAULT_CONFIG.UNDERLAY.supercedes 
-            });
-        
-            /**
-            * True if the Panel should be displayed in a modal fashion, 
-            * automatically creating a transparent mask over the document that
-            * will not be removed until the Panel is dismissed.
-            * @config modal
-            * @type Boolean
-            * @default false
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.MODAL.key, { 
-                handler: this.configModal, 
-                value: DEFAULT_CONFIG.MODAL.value,
-                validator: DEFAULT_CONFIG.MODAL.validator, 
-                supercedes: DEFAULT_CONFIG.MODAL.supercedes 
-            });
-
-            /**
-            * A KeyListener (or array of KeyListeners) that will be enabled 
-            * when the Panel is shown, and disabled when the Panel is hidden.
-            * @config keylisteners
-            * @type YAHOO.util.KeyListener[]
-            * @default null
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.KEY_LISTENERS.key, { 
-                handler: this.configKeyListeners, 
-                suppressEvent: DEFAULT_CONFIG.KEY_LISTENERS.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.KEY_LISTENERS.supercedes 
-            });
-
-            /**
-            * UI Strings used by the Panel
-            * 
-            * @config strings
-            * @type Object
-            * @default An object literal with the properties shown below:
-            *     <dl>
-            *         <dt>close</dt><dd><em>String</em> : The string to use for the close icon. Defaults to "Close".</dd>
-            *     </dl>
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.STRINGS.key, { 
-                value:DEFAULT_CONFIG.STRINGS.value,
-                handler:this.configStrings,
-                validator:DEFAULT_CONFIG.STRINGS.validator,
-                supercedes:DEFAULT_CONFIG.STRINGS.supercedes
-            });
-        },
-
-        // BEGIN BUILT-IN PROPERTY EVENT HANDLERS //
-        
-        /**
-        * The default event handler fired when the "close" property is changed.
-        * The method controls the appending or hiding of the close icon at the 
-        * top right of the Panel.
-        * @method configClose
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configClose: function (type, args, obj) {
-
-            var val = args[0],
-                oClose = this.close,
-                strings = this.cfg.getProperty("strings");
-
-            if (val) {
-                if (!oClose) {
-
-                    if (!m_oCloseIconTemplate) {
-                        m_oCloseIconTemplate = document.createElement("a");
-                        m_oCloseIconTemplate.className = "container-close";
-                        m_oCloseIconTemplate.href = "#";
-                    }
-
-                    oClose = m_oCloseIconTemplate.cloneNode(true);
-                    this.innerElement.appendChild(oClose);
-
-                    oClose.innerHTML = (strings && strings.close) ? strings.close : "&#160;";
-
-                    Event.on(oClose, "click", this._doClose, this, true);
-
-                    this.close = oClose;
-
-                } else {
-                    oClose.style.display = "block";
-                }
-
-            } else {
-                if (oClose) {
-                    oClose.style.display = "none";
-                }
-            }
-
-        },
-
-        /**
-         * Event handler for the close icon
-         * 
-         * @method _doClose
-         * @protected
-         * 
-         * @param {DOMEvent} e
-         */
-        _doClose : function (e) {
-            Event.preventDefault(e);
-            this.hide();
-        },
-
-        /**
-        * The default event handler fired when the "draggable" property 
-        * is changed.
-        * @method configDraggable
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configDraggable: function (type, args, obj) {
-            var val = args[0];
-
-            if (val) {
-                if (!Util.DD) {
-                    this.cfg.setProperty("draggable", false);
-                    return;
-                }
-
-                if (this.header) {
-                    Dom.setStyle(this.header, "cursor", "move");
-                    this.registerDragDrop();
-                }
-
-                this.subscribe("beforeShow", setWidthToOffsetWidth);
-
-            } else {
-
-                if (this.dd) {
-                    this.dd.unreg();
-                }
-
-                if (this.header) {
-                    Dom.setStyle(this.header,"cursor","auto");
-                }
-
-                this.unsubscribe("beforeShow", setWidthToOffsetWidth);
-            }
-        },
-      
-        /**
-        * The default event handler fired when the "underlay" property 
-        * is changed.
-        * @method configUnderlay
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configUnderlay: function (type, args, obj) {
-
-            var bMacGecko = (this.platform == "mac" && UA.gecko),
-                sUnderlay = args[0].toLowerCase(),
-                oUnderlay = this.underlay,
-                oElement = this.element;
-                
-            function fixWebkitUnderlay() {
-                // Webkit 419.3 (Safari 2.x) does not update
-                // it's Render Tree for the Container when content changes. 
-                // We need to force it to update using this contentChange 
-                // listener
-
-                // Webkit 523.6 doesn't have this problem and doesn't 
-                // need the fix
-                var u = this.underlay;
-                Dom.addClass(u, "yui-force-redraw");
-                window.setTimeout(function(){Dom.removeClass(u, "yui-force-redraw");}, 0);
-            }
-
-            function createUnderlay() {
-                var bNew = false;
-                if (!oUnderlay) { // create if not already in DOM
-
-                    if (!m_oUnderlayTemplate) {
-                        m_oUnderlayTemplate = document.createElement("div");
-                        m_oUnderlayTemplate.className = "underlay";
-                    }
-
-                    oUnderlay = m_oUnderlayTemplate.cloneNode(false);
-                    this.element.appendChild(oUnderlay);
-
-                    this.underlay = oUnderlay;
-
-                    if (bIEQuirks) {
-                        this.sizeUnderlay();
-                        this.cfg.subscribeToConfigEvent("width", this.sizeUnderlay);
-                        this.cfg.subscribeToConfigEvent("height", this.sizeUnderlay);
-
-                        this.changeContentEvent.subscribe(this.sizeUnderlay);
-                        YAHOO.widget.Module.textResizeEvent.subscribe(this.sizeUnderlay, this, true);
-                    }
-
-                    if (UA.webkit && UA.webkit < 420) {
-                        this.changeContentEvent.subscribe(fixWebkitUnderlay);
-                    }
-                    bNew = true;
-                }
-            }
-
-            function onBeforeShow() {
-                var bNew = createUnderlay.call(this);
-                if (!bNew && bIEQuirks) {
-                    this.sizeUnderlay();
-                }
-                this._underlayDeferred = false;
-                this.beforeShowEvent.unsubscribe(onBeforeShow);
-            }
-
-            function destroyUnderlay() {
-                if (this._underlayDeferred) {
-                    this.beforeShowEvent.unsubscribe(onBeforeShow);
-                    this._underlayDeferred = false;
-                }
-
-                if (oUnderlay) {
-                    this.cfg.unsubscribeFromConfigEvent("width", this.sizeUnderlay);
-                    this.cfg.unsubscribeFromConfigEvent("height",this.sizeUnderlay);
-                    this.changeContentEvent.unsubscribe(this.sizeUnderlay);
-                    this.changeContentEvent.unsubscribe(fixWebkitUnderlay);
-                    YAHOO.widget.Module.textResizeEvent.unsubscribe(this.sizeUnderlay, this, true);
-
-                    this.element.removeChild(oUnderlay);
-
-                    this.underlay = null;
-                }
-            }
-
-            switch (sUnderlay) {
-                case "shadow":
-                    Dom.removeClass(oElement, "matte");
-                    Dom.addClass(oElement, "shadow");
-                    break;
-                case "matte":
-                    if (!bMacGecko) {
-                        destroyUnderlay.call(this);
-                    }
-                    Dom.removeClass(oElement, "shadow");
-                    Dom.addClass(oElement, "matte");
-                    break;
-                default:
-                    if (!bMacGecko) {
-                        destroyUnderlay.call(this);
-                    }
-                    Dom.removeClass(oElement, "shadow");
-                    Dom.removeClass(oElement, "matte");
-                    break;
-            }
-
-            if ((sUnderlay == "shadow") || (bMacGecko && !oUnderlay)) {
-                if (this.cfg.getProperty("visible")) {
-                    var bNew = createUnderlay.call(this);
-                    if (!bNew && bIEQuirks) {
-                        this.sizeUnderlay();
-                    }
-                } else {
-                    if (!this._underlayDeferred) {
-                        this.beforeShowEvent.subscribe(onBeforeShow);
-                        this._underlayDeferred = true;
-                    }
-                }
-            }
-        },
-        
-        /**
-        * The default event handler fired when the "modal" property is 
-        * changed. This handler subscribes or unsubscribes to the show and hide
-        * events to handle the display or hide of the modality mask.
-        * @method configModal
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configModal: function (type, args, obj) {
-
-            var modal = args[0];
-            if (modal) {
-                if (!this._hasModalityEventListeners) {
-
-                    this.subscribe("beforeShow", this.buildMask);
-                    this.subscribe("beforeShow", this.bringToTop);
-                    this.subscribe("beforeShow", this.showMask);
-                    this.subscribe("hide", this.hideMask);
-
-                    Overlay.windowResizeEvent.subscribe(this.sizeMask, 
-                        this, true);
-
-                    this._hasModalityEventListeners = true;
-                }
-            } else {
-                if (this._hasModalityEventListeners) {
-
-                    if (this.cfg.getProperty("visible")) {
-                        this.hideMask();
-                        this.removeMask();
-                    }
-
-                    this.unsubscribe("beforeShow", this.buildMask);
-                    this.unsubscribe("beforeShow", this.bringToTop);
-                    this.unsubscribe("beforeShow", this.showMask);
-                    this.unsubscribe("hide", this.hideMask);
-
-                    Overlay.windowResizeEvent.unsubscribe(this.sizeMask, this);
-
-                    this._hasModalityEventListeners = false;
-                }
-            }
-        },
-
-        /**
-        * Removes the modality mask.
-        * @method removeMask
-        */
-        removeMask: function () {
-
-            var oMask = this.mask,
-                oParentNode;
-
-            if (oMask) {
-                /*
-                    Hide the mask before destroying it to ensure that DOM
-                    event handlers on focusable elements get removed.
-                */
-                this.hideMask();
-
-                oParentNode = oMask.parentNode;
-                if (oParentNode) {
-                    oParentNode.removeChild(oMask);
-                }
-
-                this.mask = null;
-            }
-        },
-        
-        /**
-        * The default event handler fired when the "keylisteners" property 
-        * is changed.
-        * @method configKeyListeners
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configKeyListeners: function (type, args, obj) {
-
-            var listeners = args[0],
-                listener,
-                nListeners,
-                i;
-        
-            if (listeners) {
-
-                if (listeners instanceof Array) {
-
-                    nListeners = listeners.length;
-
-                    for (i = 0; i < nListeners; i++) {
-
-                        listener = listeners[i];
-        
-                        if (!Config.alreadySubscribed(this.showEvent, 
-                            listener.enable, listener)) {
-
-                            this.showEvent.subscribe(listener.enable, 
-                                listener, true);
-
-                        }
-
-                        if (!Config.alreadySubscribed(this.hideEvent, 
-                            listener.disable, listener)) {
-
-                            this.hideEvent.subscribe(listener.disable, 
-                                listener, true);
-
-                            this.destroyEvent.subscribe(listener.disable, 
-                                listener, true);
-                        }
-                    }
-
-                } else {
-
-                    if (!Config.alreadySubscribed(this.showEvent, 
-                        listeners.enable, listeners)) {
-
-                        this.showEvent.subscribe(listeners.enable, 
-                            listeners, true);
-                    }
-
-                    if (!Config.alreadySubscribed(this.hideEvent, 
-                        listeners.disable, listeners)) {
-
-                        this.hideEvent.subscribe(listeners.disable, 
-                            listeners, true);
-
-                        this.destroyEvent.subscribe(listeners.disable, 
-                            listeners, true);
-
-                    }
-
-                }
-
-            }
-
-        },
-
-        /**
-        * The default handler for the "strings" property
-        * @method configStrings
-        */
-        configStrings : function(type, args, obj) {
-            var val = Lang.merge(DEFAULT_CONFIG.STRINGS.value, args[0]);
-            this.cfg.setProperty(DEFAULT_CONFIG.STRINGS.key, val, true);
-        },
-
-        /**
-        * The default event handler fired when the "height" property is changed.
-        * @method configHeight
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configHeight: function (type, args, obj) {
-            var height = args[0],
-                el = this.innerElement;
-
-            Dom.setStyle(el, "height", height);
-            this.cfg.refireEvent("iframe");
-        },
-
-        /**
-         * The default custom event handler executed when the Panel's height is changed, 
-         * if the autofillheight property has been set.
-         *
-         * @method _autoFillOnHeightChange
-         * @protected
-         * @param {String} type The event type
-         * @param {Array} args The array of arguments passed to event subscribers
-         * @param {HTMLElement} el The header, body or footer element which is to be resized to fill
-         * out the containers height
-         */
-        _autoFillOnHeightChange : function(type, args, el) {
-            Panel.superclass._autoFillOnHeightChange.apply(this, arguments);
-            if (bIEQuirks) {
-                this.sizeUnderlay();
-            }
-        },
-
-        /**
-        * The default event handler fired when the "width" property is changed.
-        * @method configWidth
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configWidth: function (type, args, obj) {
-    
-            var width = args[0],
-                el = this.innerElement;
-    
-            Dom.setStyle(el, "width", width);
-            this.cfg.refireEvent("iframe");
-    
-        },
-        
-        /**
-        * The default event handler fired when the "zIndex" property is changed.
-        * @method configzIndex
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configzIndex: function (type, args, obj) {
-            Panel.superclass.configzIndex.call(this, type, args, obj);
-
-            if (this.mask || this.cfg.getProperty("modal") === true) {
-                var panelZ = Dom.getStyle(this.element, "zIndex");
-                if (!panelZ || isNaN(panelZ)) {
-                    panelZ = 0;
-                }
-
-                if (panelZ === 0) {
-                    // Recursive call to configzindex (which should be stopped
-                    // from going further because panelZ should no longer === 0)
-                    this.cfg.setProperty("zIndex", 1);
-                } else {
-                    this.stackMask();
-                }
-            }
-        },
-
-        // END BUILT-IN PROPERTY EVENT HANDLERS //
-        /**
-        * Builds the wrapping container around the Panel that is used for 
-        * positioning the shadow and matte underlays. The container element is 
-        * assigned to a  local instance variable called container, and the 
-        * element is reinserted inside of it.
-        * @method buildWrapper
-        */
-        buildWrapper: function () {
-
-            var elementParent = this.element.parentNode,
-                originalElement = this.element,
-                wrapper = document.createElement("div");
-
-            wrapper.className = Panel.CSS_PANEL_CONTAINER;
-            wrapper.id = originalElement.id + "_c";
-
-            if (elementParent) {
-                elementParent.insertBefore(wrapper, originalElement);
-            }
-
-            wrapper.appendChild(originalElement);
-
-            this.element = wrapper;
-            this.innerElement = originalElement;
-
-            Dom.setStyle(this.innerElement, "visibility", "inherit");
-        },
-
-        /**
-        * Adjusts the size of the shadow based on the size of the element.
-        * @method sizeUnderlay
-        */
-        sizeUnderlay: function () {
-            var oUnderlay = this.underlay,
-                oElement;
-
-            if (oUnderlay) {
-                oElement = this.element;
-                oUnderlay.style.width = oElement.offsetWidth + "px";
-                oUnderlay.style.height = oElement.offsetHeight + "px";
-            }
-        },
-
-        
-        /**
-        * Registers the Panel's header for drag & drop capability.
-        * @method registerDragDrop
-        */
-        registerDragDrop: function () {
-
-            var me = this;
-
-            if (this.header) {
-
-                if (!Util.DD) {
-                    return;
-                }
-
-                var bDragOnly = (this.cfg.getProperty("dragonly") === true);
-                this.dd = new Util.DD(this.element.id, this.id, {dragOnly: bDragOnly});
-
-                if (!this.header.id) {
-                    this.header.id = this.id + "_h";
-                }
-
-                this.dd.startDrag = function () {
-
-                    var offsetHeight,
-                        offsetWidth,
-                        viewPortWidth,
-                        viewPortHeight,
-                        scrollX,
-                        scrollY;
-
-                    if (YAHOO.env.ua.ie == 6) {
-                        Dom.addClass(me.element,"drag");
-                    }
-
-                    if (me.cfg.getProperty("constraintoviewport")) {
-
-                        var nViewportOffset = Overlay.VIEWPORT_OFFSET;
-
-                        offsetHeight = me.element.offsetHeight;
-                        offsetWidth = me.element.offsetWidth;
-
-                        viewPortWidth = Dom.getViewportWidth();
-                        viewPortHeight = Dom.getViewportHeight();
-
-                        scrollX = Dom.getDocumentScrollLeft();
-                        scrollY = Dom.getDocumentScrollTop();
-
-                        if (offsetHeight + nViewportOffset < viewPortHeight) {
-                            this.minY = scrollY + nViewportOffset;
-                            this.maxY = scrollY + viewPortHeight - offsetHeight - nViewportOffset;
-                        } else {
-                            this.minY = scrollY + nViewportOffset;
-                            this.maxY = scrollY + nViewportOffset;
-                        }
-
-                        if (offsetWidth + nViewportOffset < viewPortWidth) {
-                            this.minX = scrollX + nViewportOffset;
-                            this.maxX = scrollX + viewPortWidth - offsetWidth - nViewportOffset;
-                        } else {
-                            this.minX = scrollX + nViewportOffset;
-                            this.maxX = scrollX + nViewportOffset;
-                        }
-
-                        this.constrainX = true;
-                        this.constrainY = true;
-                    } else {
-                        this.constrainX = false;
-                        this.constrainY = false;
-                    }
-
-                    me.dragEvent.fire("startDrag", arguments);
-                };
-
-                this.dd.onDrag = function () {
-                    me.syncPosition();
-                    me.cfg.refireEvent("iframe");
-                    if (this.platform == "mac" && YAHOO.env.ua.gecko) {
-                        this.showMacGeckoScrollbars();
-                    }
-
-                    me.dragEvent.fire("onDrag", arguments);
-                };
-
-                this.dd.endDrag = function () {
-
-                    if (YAHOO.env.ua.ie == 6) {
-                        Dom.removeClass(me.element,"drag");
-                    }
-
-                    me.dragEvent.fire("endDrag", arguments);
-                    me.moveEvent.fire(me.cfg.getProperty("xy"));
-
-                };
-
-                this.dd.setHandleElId(this.header.id);
-                this.dd.addInvalidHandleType("INPUT");
-                this.dd.addInvalidHandleType("SELECT");
-                this.dd.addInvalidHandleType("TEXTAREA");
-            }
-        },
-        
-        /**
-        * Builds the mask that is laid over the document when the Panel is 
-        * configured to be modal.
-        * @method buildMask
-        */
-        buildMask: function () {
-            var oMask = this.mask;
-            if (!oMask) {
-                if (!m_oMaskTemplate) {
-                    m_oMaskTemplate = document.createElement("div");
-                    m_oMaskTemplate.className = "mask";
-                    m_oMaskTemplate.innerHTML = "&#160;";
-                }
-                oMask = m_oMaskTemplate.cloneNode(true);
-                oMask.id = this.id + "_mask";
-
-                document.body.insertBefore(oMask, document.body.firstChild);
-
-                this.mask = oMask;
-
-                if (YAHOO.env.ua.gecko && this.platform == "mac") {
-                    Dom.addClass(this.mask, "block-scrollbars");
-                }
-
-                // Stack mask based on the element zindex
-                this.stackMask();
-            }
-        },
-
-        /**
-        * Hides the modality mask.
-        * @method hideMask
-        */
-        hideMask: function () {
-            if (this.cfg.getProperty("modal") && this.mask) {
-                this.mask.style.display = "none";
-                Dom.removeClass(document.body, "masked");
-                this.hideMaskEvent.fire();
-            }
-        },
-
-        /**
-        * Shows the modality mask.
-        * @method showMask
-        */
-        showMask: function () {
-            if (this.cfg.getProperty("modal") && this.mask) {
-                Dom.addClass(document.body, "masked");
-                this.sizeMask();
-                this.mask.style.display = "block";
-                this.showMaskEvent.fire();
-            }
-        },
-
-        /**
-        * Sets the size of the modality mask to cover the entire scrollable 
-        * area of the document
-        * @method sizeMask
-        */
-        sizeMask: function () {
-            if (this.mask) {
-
-                // Shrink mask first, so it doesn't affect the document size.
-                var mask = this.mask,
-                    viewWidth = Dom.getViewportWidth(),
-                    viewHeight = Dom.getViewportHeight();
-
-                if (this.mask.offsetHeight > viewHeight) {
-                    this.mask.style.height = viewHeight + "px";
-                }
-
-                if (this.mask.offsetWidth > viewWidth) {
-                    this.mask.style.width = viewWidth + "px";
-                }
-
-                // Then size it to the document
-                this.mask.style.height = Dom.getDocumentHeight() + "px";
-                this.mask.style.width = Dom.getDocumentWidth() + "px";
-            }
-        },
-
-        /**
-         * Sets the zindex of the mask, if it exists, based on the zindex of 
-         * the Panel element. The zindex of the mask is set to be one less 
-         * than the Panel element's zindex.
-         * 
-         * <p>NOTE: This method will not bump up the zindex of the Panel
-         * to ensure that the mask has a non-negative zindex. If you require the
-         * mask zindex to be 0 or higher, the zindex of the Panel 
-         * should be set to a value higher than 0, before this method is called.
-         * </p>
-         * @method stackMask
-         */
-        stackMask: function() {
-            if (this.mask) {
-                var panelZ = Dom.getStyle(this.element, "zIndex");
-                if (!YAHOO.lang.isUndefined(panelZ) && !isNaN(panelZ)) {
-                    Dom.setStyle(this.mask, "zIndex", panelZ - 1);
-                }
-            }
-        },
-
-        /**
-        * Renders the Panel by inserting the elements that are not already in 
-        * the main Panel into their correct places. Optionally appends the 
-        * Panel to the specified node prior to the render's execution. NOTE: 
-        * For Panels without existing markup, the appendToNode argument is 
-        * REQUIRED. If this argument is ommitted and the current element is 
-        * not present in the document, the function will return false, 
-        * indicating that the render was a failure.
-        * @method render
-        * @param {String} appendToNode The element id to which the Module 
-        * should be appended to prior to rendering <em>OR</em>
-        * @param {HTMLElement} appendToNode The element to which the Module 
-        * should be appended to prior to rendering
-        * @return {boolean} Success or failure of the render
-        */
-        render: function (appendToNode) {
-
-            return Panel.superclass.render.call(this, 
-                appendToNode, this.innerElement);
-
-        },
-        
-        /**
-        * Removes the Panel element from the DOM and sets all child elements
-        * to null.
-        * @method destroy
-        */
-        destroy: function () {
-            Overlay.windowResizeEvent.unsubscribe(this.sizeMask, this);
-            this.removeMask();
-            if (this.close) {
-                Event.purgeElement(this.close);
-            }
-            Panel.superclass.destroy.call(this);  
-        },
-        
-        /**
-        * Returns a String representation of the object.
-        * @method toString
-        * @return {String} The string representation of the Panel.
-        */
-        toString: function () {
-            return "Panel " + this.id;
-        }
-    
-    });
-
-}());
-
-(function () {
-
-    /**
-    * <p>
-    * Dialog is an implementation of Panel that can be used to submit form 
-    * data.
-    * </p>
-    * <p>
-    * Built-in functionality for buttons with event handlers is included. 
-    * If the optional YUI Button dependancy is included on the page, the buttons
-    * created will be instances of YAHOO.widget.Button, otherwise regular HTML buttons
-    * will be created.
-    * </p>
-    * <p>
-    * Forms can be processed in 3 ways -- via an asynchronous Connection utility call, 
-    * a simple form POST or GET, or manually. The YUI Connection utility should be
-    * included if you're using the default "async" postmethod, but is not required if
-    * you're using any of the other postmethod values.
-    * </p>
-    * @namespace YAHOO.widget
-    * @class Dialog
-    * @extends YAHOO.widget.Panel
-    * @constructor
-    * @param {String} el The element ID representing the Dialog <em>OR</em>
-    * @param {HTMLElement} el The element representing the Dialog
-    * @param {Object} userConfig The configuration object literal containing 
-    * the configuration that should be set for this Dialog. See configuration 
-    * documentation for more details.
-    */
-    YAHOO.widget.Dialog = function (el, userConfig) {
-        YAHOO.widget.Dialog.superclass.constructor.call(this, el, userConfig);
-    };
-
-    var Event = YAHOO.util.Event,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Dom = YAHOO.util.Dom,
-        Dialog = YAHOO.widget.Dialog,
-        Lang = YAHOO.lang,
-
-        /**
-         * Constant representing the name of the Dialog's events
-         * @property EVENT_TYPES
-         * @private
-         * @final
-         * @type Object
-         */
-        EVENT_TYPES = {
-            "BEFORE_SUBMIT": "beforeSubmit",
-            "SUBMIT": "submit",
-            "MANUAL_SUBMIT": "manualSubmit",
-            "ASYNC_SUBMIT": "asyncSubmit",
-            "FORM_SUBMIT": "formSubmit",
-            "CANCEL": "cancel"
-        },
-
-        /**
-        * Constant representing the Dialog's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-
-            "POST_METHOD": { 
-                key: "postmethod", 
-                value: "async"
-            },
-
-            "BUTTONS": {
-                key: "buttons",
-                value: "none",
-                supercedes: ["visible"]
-            },
-
-            "HIDEAFTERSUBMIT" : {
-                key: "hideaftersubmit",
-                value: true
-            }
-        };
-
-    /**
-    * Constant representing the default CSS class used for a Dialog
-    * @property YAHOO.widget.Dialog.CSS_DIALOG
-    * @static
-    * @final
-    * @type String
-    */
-    Dialog.CSS_DIALOG = "yui-dialog";
-
-    function removeButtonEventHandlers() {
-
-        var aButtons = this._aButtons,
-            nButtons,
-            oButton,
-            i;
-
-        if (Lang.isArray(aButtons)) {
-            nButtons = aButtons.length;
-
-            if (nButtons > 0) {
-                i = nButtons - 1;
-                do {
-                    oButton = aButtons[i];
-
-                    if (YAHOO.widget.Button && oButton instanceof YAHOO.widget.Button) {
-                        oButton.destroy();
-                    }
-                    else if (oButton.tagName.toUpperCase() == "BUTTON") {
-                        Event.purgeElement(oButton);
-                        Event.purgeElement(oButton, false);
-                    }
-                }
-                while (i--);
-            }
-        }
-    }
-
-    YAHOO.extend(Dialog, YAHOO.widget.Panel, { 
-
-        /**
-        * @property form
-        * @description Object reference to the Dialog's 
-        * <code>&#60;form&#62;</code> element.
-        * @default null 
-        * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-40002357">HTMLFormElement</a>
-        */
-        form: null,
-    
-        /**
-        * Initializes the class's configurable properties which can be changed 
-        * using the Dialog's Config object (cfg).
-        * @method initDefaultConfig
-        */
-        initDefaultConfig: function () {
-            Dialog.superclass.initDefaultConfig.call(this);
-
-            /**
-            * The internally maintained callback object for use with the 
-            * Connection utility. The format of the callback object is 
-            * similar to Connection Manager's callback object and is 
-            * simply passed through to Connection Manager when the async 
-            * request is made.
-            * @property callback
-            * @type Object
-            */
-            this.callback = {
-
-                /**
-                * The function to execute upon success of the 
-                * Connection submission (when the form does not
-                * contain a file input element).
-                * 
-                * @property callback.success
-                * @type Function
-                */
-                success: null,
-
-                /**
-                * The function to execute upon failure of the 
-                * Connection submission
-                * @property callback.failure
-                * @type Function
-                */
-                failure: null,
-
-                /**
-                 *<p>
-                * The function to execute upon success of the 
-                * Connection submission, when the form contains
-                * a file input element.
-                * </p>
-                * <p>
-                * <em>NOTE:</em> Connection manager will not
-                * invoke the success or failure handlers for the file
-                * upload use case. This will be the only callback
-                * handler invoked.
-                * </p>
-                * <p>
-                * For more information, see the <a href="http://developer.yahoo.com/yui/connection/#file">
-                * Connection Manager documenation on file uploads</a>.
-                * </p>
-                * @property callback.upload
-                * @type Function
-                */
-
-                /**
-                * The arbitraty argument or arguments to pass to the Connection 
-                * callback functions
-                * @property callback.argument
-                * @type Object
-                */
-                argument: null
-
-            };
-
-            // Add form dialog config properties //
-            /**
-            * The method to use for posting the Dialog's form. Possible values 
-            * are "async", "form", and "manual".
-            * @config postmethod
-            * @type String
-            * @default async
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.POST_METHOD.key, {
-                handler: this.configPostMethod, 
-                value: DEFAULT_CONFIG.POST_METHOD.value, 
-                validator: function (val) {
-                    if (val != "form" && val != "async" && val != "none" && 
-                        val != "manual") {
-                        return false;
-                    } else {
-                        return true;
-                    }
-                }
-            });
-
-            /**
-            * This property is used to configure whether or not the 
-            * dialog should be automatically hidden after submit.
-            * 
-            * @config hideaftersubmit
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.HIDEAFTERSUBMIT.key, {
-                value: DEFAULT_CONFIG.HIDEAFTERSUBMIT.value
-            }); 
-
-            /**
-            * Array of object literals, each containing a set of properties 
-            * defining a button to be appended into the Dialog's footer.
-            * 
-            * Each button object in the buttons array can have three properties:
-            * <dt>text:</dt>
-            * <dd>The text that will display on the face of the button. The text can 
-            * include HTML, as long as it is compliant with HTML Button specifications.
-            * </dd>
-            * <dt>handler:</dt>
-            * <dd>Can be either:
-            *     <ol>
-            *         <li>A reference to a function that should fire when the 
-            * button is clicked.  (In this case scope of this function is 
-            * always its Dialog instance.)</li>
-            *         <li>An object literal representing the code to be 
-            * executed when the button is clicked.  Format:<br> <code> {<br>
-            * <strong>fn:</strong> Function,   &#47;&#47; The handler to call 
-            * when  the event fires.<br> <strong>obj:</strong> Object,
-            * &#47;&#47; An  object to pass back to the handler.<br> <strong>
-            * scope:</strong>  Object &#47;&#47; The object to use for the 
-            * scope of the handler. <br> } </code> <br></li>
-            *     </ol>
-            * </dd>
-            * <dt>isDefault:</dt>
-            * <dd>An optional boolean value that specifies that a button 
-            * should be highlighted and focused by default.</dd>
-            * 
-            * <em>NOTE:</em>If the YUI Button Widget is included on the page, 
-            * the buttons created will be instances of YAHOO.widget.Button. 
-            * Otherwise, HTML Buttons (<code>&#60;BUTTON&#62;</code>) will be 
-            * created.
-            * 
-            * @config buttons
-            * @type {Array|String}
-            * @default "none"
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.BUTTONS.key, {
-                handler: this.configButtons,
-                value: DEFAULT_CONFIG.BUTTONS.value,
-                supercedes : DEFAULT_CONFIG.BUTTONS.supercedes
-            }); 
-
-        },
-
-        /**
-        * Initializes the custom events for Dialog which are fired 
-        * automatically at appropriate times by the Dialog class.
-        * @method initEvents
-        */
-        initEvents: function () {
-            Dialog.superclass.initEvents.call(this);
-
-            var SIGNATURE = CustomEvent.LIST;
-
-            /**
-            * CustomEvent fired prior to submission
-            * @event beforeSubmitEvent
-            */ 
-            this.beforeSubmitEvent = 
-                this.createEvent(EVENT_TYPES.BEFORE_SUBMIT);
-            this.beforeSubmitEvent.signature = SIGNATURE;
-            
-            /**
-            * CustomEvent fired after submission
-            * @event submitEvent
-            */
-            this.submitEvent = this.createEvent(EVENT_TYPES.SUBMIT);
-            this.submitEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired prior to manual submission
-            * @event manualSubmitEvent
-            */
-            this.manualSubmitEvent = 
-                this.createEvent(EVENT_TYPES.MANUAL_SUBMIT);
-            this.manualSubmitEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired prior to asynchronous submission
-            * @event asyncSubmitEvent
-            */ 
-            this.asyncSubmitEvent = this.createEvent(EVENT_TYPES.ASYNC_SUBMIT);
-            this.asyncSubmitEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired prior to form-based submission
-            * @event formSubmitEvent
-            */
-            this.formSubmitEvent = this.createEvent(EVENT_TYPES.FORM_SUBMIT);
-            this.formSubmitEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired after cancel
-            * @event cancelEvent
-            */
-            this.cancelEvent = this.createEvent(EVENT_TYPES.CANCEL);
-            this.cancelEvent.signature = SIGNATURE;
-        
-        },
-        
-        /**
-        * The Dialog initialization method, which is executed for Dialog and 
-        * all of its subclasses. This method is automatically called by the 
-        * constructor, and  sets up all DOM references for pre-existing markup, 
-        * and creates required markup if it is not already present.
-        * @method init
-        * @param {String} el The element ID representing the Dialog <em>OR</em>
-        * @param {HTMLElement} el The element representing the Dialog
-        * @param {Object} userConfig The configuration object literal 
-        * containing the configuration that should be set for this Dialog. 
-        * See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-
-            /*
-                 Note that we don't pass the user config in here yet because 
-                 we only want it executed once, at the lowest subclass level
-            */
-
-            Dialog.superclass.init.call(this, el/*, userConfig*/); 
-
-            this.beforeInitEvent.fire(Dialog);
-
-            Dom.addClass(this.element, Dialog.CSS_DIALOG);
-
-            this.cfg.setProperty("visible", false);
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-
-            this.showEvent.subscribe(this.focusFirst, this, true);
-            this.beforeHideEvent.subscribe(this.blurButtons, this, true);
-
-            this.subscribe("changeBody", this.registerForm);
-
-            this.initEvent.fire(Dialog);
-        },
-
-        /**
-        * Submits the Dialog's form depending on the value of the 
-        * "postmethod" configuration property.  <strong>Please note:
-        * </strong> As of version 2.3 this method will automatically handle 
-        * asyncronous file uploads should the Dialog instance's form contain 
-        * <code>&#60;input type="file"&#62;</code> elements.  If a Dialog 
-        * instance will be handling asyncronous file uploads, its 
-        * <code>callback</code> property will need to be setup with a 
-        * <code>upload</code> handler rather than the standard 
-        * <code>success</code> and, or <code>failure</code> handlers.  For more 
-        * information, see the <a href="http://developer.yahoo.com/yui/
-        * connection/#file">Connection Manager documenation on file uploads</a>.
-        * @method doSubmit
-        */
-        doSubmit: function () {
-
-            var Connect = YAHOO.util.Connect,
-                oForm = this.form,
-                bUseFileUpload = false,
-                bUseSecureFileUpload = false,
-                aElements,
-                nElements,
-                i,
-                formAttrs;
-
-            switch (this.cfg.getProperty("postmethod")) {
-
-                case "async":
-                    aElements = oForm.elements;
-                    nElements = aElements.length;
-
-                    if (nElements > 0) {
-                        i = nElements - 1;
-                        do {
-                            if (aElements[i].type == "file") {
-                                bUseFileUpload = true;
-                                break;
-                            }
-                        }
-                        while(i--);
-                    }
-
-                    if (bUseFileUpload && YAHOO.env.ua.ie && this.isSecure) {
-                        bUseSecureFileUpload = true;
-                    }
-
-                    formAttrs = this._getFormAttributes(oForm);
-
-                    Connect.setForm(oForm, bUseFileUpload, bUseSecureFileUpload);
-                    Connect.asyncRequest(formAttrs.method, formAttrs.action, this.callback);
-
-                    this.asyncSubmitEvent.fire();
-
-                    break;
-
-                case "form":
-                    oForm.submit();
-                    this.formSubmitEvent.fire();
-                    break;
-
-                case "none":
-                case "manual":
-                    this.manualSubmitEvent.fire();
-                    break;
-            }
-        },
-
-        /**
-         * Retrieves important attributes (currently method and action) from
-         * the form element, accounting for any elements which may have the same name 
-         * as the attributes. Defaults to "POST" and "" for method and action respectively
-         * if the attribute cannot be retrieved.
-         *
-         * @method _getFormAttributes
-         * @protected
-         * @param {HTMLFormElement} oForm The HTML Form element from which to retrieve the attributes
-         * @return {Object} Object literal, with method and action String properties.
-         */
-        _getFormAttributes : function(oForm){
-            var attrs = {
-                method : null,
-                action : null
-            };
-
-            if (oForm) {
-                if (oForm.getAttributeNode) {
-                    var action = oForm.getAttributeNode("action");
-                    var method = oForm.getAttributeNode("method");
-
-                    if (action) {
-                        attrs.action = action.value;
-                    }
-
-                    if (method) {
-                        attrs.method = method.value;
-                    }
-
-                } else {
-                    attrs.action = oForm.getAttribute("action");
-                    attrs.method = oForm.getAttribute("method");
-                }
-            }
-
-            attrs.method = (Lang.isString(attrs.method) ? attrs.method : "POST").toUpperCase();
-            attrs.action = Lang.isString(attrs.action) ? attrs.action : "";
-
-            return attrs;
-        },
-
-        /**
-        * Prepares the Dialog's internal FORM object, creating one if one is
-        * not currently present.
-        * @method registerForm
-        */
-        registerForm: function() {
-
-            var form = this.element.getElementsByTagName("form")[0];
-
-            if (this.form) {
-                if (this.form == form && Dom.isAncestor(this.element, this.form)) {
-                    return;
-                } else {
-                    Event.purgeElement(this.form);
-                    this.form = null;
-                }
-            }
-
-            if (!form) {
-                form = document.createElement("form");
-                form.name = "frm_" + this.id;
-                this.body.appendChild(form);
-            }
-
-            if (form) {
-                this.form = form;
-                Event.on(form, "submit", this._submitHandler, this, true);
-            }
-        },
-
-        /**
-         * Internal handler for the form submit event
-         *
-         * @method _submitHandler
-         * @protected
-         * @param {DOMEvent} e The DOM Event object
-         */
-        _submitHandler : function(e) {
-            Event.stopEvent(e);
-            this.submit();
-            this.form.blur();
-        },
-
-        /**
-         * Sets up a tab, shift-tab loop between the first and last elements
-         * provided. NOTE: Sets up the preventBackTab and preventTabOut KeyListener
-         * instance properties, which are reset everytime this method is invoked.
-         *
-         * @method setTabLoop
-         * @param {HTMLElement} firstElement
-         * @param {HTMLElement} lastElement
-         *
-         */
-        setTabLoop : function(firstElement, lastElement) {
-
-            firstElement = firstElement || this.firstButton;
-            lastElement = this.lastButton || lastElement;
-
-            Dialog.superclass.setTabLoop.call(this, firstElement, lastElement);
-        },
-
-        /**
-         * Configures instance properties, pointing to the 
-         * first and last focusable elements in the Dialog's form.
-         *
-         * @method setFirstLastFocusable
-         */
-        setFirstLastFocusable : function() {
-
-            Dialog.superclass.setFirstLastFocusable.call(this);
-
-            var i, l, el, elements = this.focusableElements;
-
-            this.firstFormElement = null;
-            this.lastFormElement = null;
-
-            if (this.form && elements && elements.length > 0) {
-                l = elements.length;
-
-                for (i = 0; i < l; ++i) {
-                    el = elements[i];
-                    if (this.form === el.form) {
-                        this.firstFormElement = el;
-                        break;
-                    }
-                }
-
-                for (i = l-1; i >= 0; --i) {
-                    el = elements[i];
-                    if (this.form === el.form) {
-                        this.lastFormElement = el;
-                        break;
-                    }
-                }
-            }
-        },
-
-        // BEGIN BUILT-IN PROPERTY EVENT HANDLERS //
-        /**
-        * The default event handler fired when the "close" property is 
-        * changed. The method controls the appending or hiding of the close
-        * icon at the top right of the Dialog.
-        * @method configClose
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For 
-        * configuration handlers, args[0] will equal the newly applied value 
-        * for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configClose: function (type, args, obj) {
-            Dialog.superclass.configClose.apply(this, arguments);
-        },
-
-        /**
-         * Event handler for the close icon
-         * 
-         * @method _doClose
-         * @protected
-         * 
-         * @param {DOMEvent} e
-         */
-         _doClose : function(e) {
-            Event.preventDefault(e);
-            this.cancel();
-        },
-
-        /**
-        * The default event handler for the "buttons" configuration property
-        * @method configButtons
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configButtons: function (type, args, obj) {
-
-            var Button = YAHOO.widget.Button,
-                aButtons = args[0],
-                oInnerElement = this.innerElement,
-                oButton,
-                oButtonEl,
-                oYUIButton,
-                nButtons,
-                oSpan,
-                oFooter,
-                i;
-
-            removeButtonEventHandlers.call(this);
-
-            this._aButtons = null;
-
-            if (Lang.isArray(aButtons)) {
-
-                oSpan = document.createElement("span");
-                oSpan.className = "button-group";
-                nButtons = aButtons.length;
-
-                this._aButtons = [];
-                this.defaultHtmlButton = null;
-
-                for (i = 0; i < nButtons; i++) {
-                    oButton = aButtons[i];
-
-                    if (Button) {
-                        oYUIButton = new Button({ label: oButton.text});
-                        oYUIButton.appendTo(oSpan);
-
-                        oButtonEl = oYUIButton.get("element");
-
-                        if (oButton.isDefault) {
-                            oYUIButton.addClass("default");
-                            this.defaultHtmlButton = oButtonEl;
-                        }
-
-                        if (Lang.isFunction(oButton.handler)) {
-
-                            oYUIButton.set("onclick", { 
-                                fn: oButton.handler, 
-                                obj: this, 
-                                scope: this 
-                            });
-
-                        } else if (Lang.isObject(oButton.handler) && Lang.isFunction(oButton.handler.fn)) {
-
-                            oYUIButton.set("onclick", { 
-                                fn: oButton.handler.fn, 
-                                obj: ((!Lang.isUndefined(oButton.handler.obj)) ? oButton.handler.obj : this), 
-                                scope: (oButton.handler.scope || this) 
-                            });
-
-                        }
-
-                        this._aButtons[this._aButtons.length] = oYUIButton;
-
-                    } else {
-
-                        oButtonEl = document.createElement("button");
-                        oButtonEl.setAttribute("type", "button");
-
-                        if (oButton.isDefault) {
-                            oButtonEl.className = "default";
-                            this.defaultHtmlButton = oButtonEl;
-                        }
-
-                        oButtonEl.innerHTML = oButton.text;
-
-                        if (Lang.isFunction(oButton.handler)) {
-                            Event.on(oButtonEl, "click", oButton.handler, this, true);
-                        } else if (Lang.isObject(oButton.handler) && 
-                            Lang.isFunction(oButton.handler.fn)) {
-    
-                            Event.on(oButtonEl, "click", 
-                                oButton.handler.fn, 
-                                ((!Lang.isUndefined(oButton.handler.obj)) ? oButton.handler.obj : this), 
-                                (oButton.handler.scope || this));
-                        }
-
-                        oSpan.appendChild(oButtonEl);
-                        this._aButtons[this._aButtons.length] = oButtonEl;
-                    }
-
-                    oButton.htmlButton = oButtonEl;
-
-                    if (i === 0) {
-                        this.firstButton = oButtonEl;
-                    }
-
-                    if (i == (nButtons - 1)) {
-                        this.lastButton = oButtonEl;
-                    }
-                }
-
-                this.setFooter(oSpan);
-
-                oFooter = this.footer;
-
-                if (Dom.inDocument(this.element) && !Dom.isAncestor(oInnerElement, oFooter)) {
-                    oInnerElement.appendChild(oFooter);
-                }
-
-                this.buttonSpan = oSpan;
-
-            } else { // Do cleanup
-                oSpan = this.buttonSpan;
-                oFooter = this.footer;
-                if (oSpan && oFooter) {
-                    oFooter.removeChild(oSpan);
-                    this.buttonSpan = null;
-                    this.firstButton = null;
-                    this.lastButton = null;
-                    this.defaultHtmlButton = null;
-                }
-            }
-
-            // Everything which needs to be done if content changed
-            // TODO: Should we be firing contentChange here?
-
-            this.setFirstLastFocusable();
-
-            this.cfg.refireEvent("iframe");
-            this.cfg.refireEvent("underlay");
-        },
-
-        /**
-        * @method getButtons
-        * @description Returns an array containing each of the Dialog's 
-        * buttons, by default an array of HTML <code>&#60;BUTTON&#62;</code> 
-        * elements.  If the Dialog's buttons were created using the 
-        * YAHOO.widget.Button class (via the inclusion of the optional Button 
-        * dependancy on the page), an array of YAHOO.widget.Button instances 
-        * is returned.
-        * @return {Array}
-        */
-        getButtons: function () {
-            return this._aButtons || null;
-        },
-
-        /**
-        * Sets focus to the first element in the Dialog's form or the first 
-        * button defined via the "buttons" configuration property. Called 
-        * when the Dialog is made visible.
-        * @method focusFirst
-        */
-        focusFirst: function (type, args, obj) {
-
-            var el = this.firstFormElement;
-
-            if (args && args[1]) {
-                Event.stopEvent(args[1]);
-            }
-
-            if (el) {
-                try {
-                    el.focus();
-                } catch(oException) {
-                    // Ignore
-                }
-            } else {
-                this.focusFirstButton();
-            }
-        },
-
-        /**
-        * Sets focus to the last element in the Dialog's form or the last 
-        * button defined via the "buttons" configuration property.
-        * @method focusLast
-        */
-        focusLast: function (type, args, obj) {
-
-            var aButtons = this.cfg.getProperty("buttons"),
-                el = this.lastFormElement;
-
-            if (args && args[1]) {
-                Event.stopEvent(args[1]);
-            }
-
-            if (aButtons && Lang.isArray(aButtons)) {
-                this.focusLastButton();
-            } else {
-                if (el) {
-                    try {
-                        el.focus();
-                    } catch(oException) {
-                        // Ignore
-                    }
-                }
-            }
-        },
-
-        /**
-         * Helper method to normalize button references. It either returns the 
-         * YUI Button instance for the given element if found,
-         * or the passes back the HTMLElement reference if a corresponding YUI Button
-         * reference is not found or YAHOO.widget.Button does not exist on the page.
-         *
-         * @method _getButton
-         * @private
-         * @param {HTMLElement} button
-         * @return {YAHOO.widget.Button|HTMLElement}
-         */
-        _getButton : function(button) {
-            var Button = YAHOO.widget.Button;
-
-            // If we have an HTML button and YUI Button is on the page, 
-            // get the YUI Button reference if available.
-            if (Button && button && button.nodeName && button.id) {
-                button = Button.getButton(button.id) || button;
-            }
-
-            return button;
-        },
-
-        /**
-        * Sets the focus to the button that is designated as the default via 
-        * the "buttons" configuration property. By default, this method is 
-        * called when the Dialog is made visible.
-        * @method focusDefaultButton
-        */
-        focusDefaultButton: function () {
-            var button = this._getButton(this.defaultHtmlButton);
-            if (button) {
-                /*
-                    Place the call to the "focus" method inside a try/catch
-                    block to prevent IE from throwing JavaScript errors if
-                    the element is disabled or hidden.
-                */
-                try {
-                    button.focus();
-                } catch(oException) {
-                }
-            }
-        },
-
-        /**
-        * Blurs all the buttons defined via the "buttons" 
-        * configuration property.
-        * @method blurButtons
-        */
-        blurButtons: function () {
-            
-            var aButtons = this.cfg.getProperty("buttons"),
-                nButtons,
-                oButton,
-                oElement,
-                i;
-
-            if (aButtons && Lang.isArray(aButtons)) {
-                nButtons = aButtons.length;
-                if (nButtons > 0) {
-                    i = (nButtons - 1);
-                    do {
-                        oButton = aButtons[i];
-                        if (oButton) {
-                            oElement = this._getButton(oButton.htmlButton);
-                            if (oElement) {
-                                /*
-                                    Place the call to the "blur" method inside  
-                                    a try/catch block to prevent IE from  
-                                    throwing JavaScript errors if the element 
-                                    is disabled or hidden.
-                                */
-                                try {
-                                    oElement.blur();
-                                } catch(oException) {
-                                    // ignore
-                                }
-                            }
-                        }
-                    } while(i--);
-                }
-            }
-        },
-
-        /**
-        * Sets the focus to the first button created via the "buttons"
-        * configuration property.
-        * @method focusFirstButton
-        */
-        focusFirstButton: function () {
-
-            var aButtons = this.cfg.getProperty("buttons"),
-                oButton,
-                oElement;
-
-            if (aButtons && Lang.isArray(aButtons)) {
-                oButton = aButtons[0];
-                if (oButton) {
-                    oElement = this._getButton(oButton.htmlButton);
-                    if (oElement) {
-                        /*
-                            Place the call to the "focus" method inside a 
-                            try/catch block to prevent IE from throwing 
-                            JavaScript errors if the element is disabled 
-                            or hidden.
-                        */
-                        try {
-                            oElement.focus();
-                        } catch(oException) {
-                            // ignore
-                        }
-                    }
-                }
-            }
-        },
-
-        /**
-        * Sets the focus to the last button created via the "buttons" 
-        * configuration property.
-        * @method focusLastButton
-        */
-        focusLastButton: function () {
-
-            var aButtons = this.cfg.getProperty("buttons"),
-                nButtons,
-                oButton,
-                oElement;
-
-            if (aButtons && Lang.isArray(aButtons)) {
-                nButtons = aButtons.length;
-                if (nButtons > 0) {
-                    oButton = aButtons[(nButtons - 1)];
-
-                    if (oButton) {
-                        oElement = this._getButton(oButton.htmlButton);
-                        if (oElement) {
-                            /*
-                                Place the call to the "focus" method inside a 
-                                try/catch block to prevent IE from throwing 
-                                JavaScript errors if the element is disabled
-                                or hidden.
-                            */
-        
-                            try {
-                                oElement.focus();
-                            } catch(oException) {
-                                // Ignore
-                            }
-                        }
-                    }
-                }
-            }
-        },
-
-        /**
-        * The default event handler for the "postmethod" configuration property
-        * @method configPostMethod
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For 
-        * configuration handlers, args[0] will equal the newly applied value 
-        * for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configPostMethod: function (type, args, obj) {
-            this.registerForm();
-        },
-
-        // END BUILT-IN PROPERTY EVENT HANDLERS //
-        
-        /**
-        * Built-in function hook for writing a validation function that will 
-        * be checked for a "true" value prior to a submit. This function, as 
-        * implemented by default, always returns true, so it should be 
-        * overridden if validation is necessary.
-        * @method validate
-        */
-        validate: function () {
-            return true;
-        },
-        
-        /**
-        * Executes a submit of the Dialog if validation 
-        * is successful. By default the Dialog is hidden
-        * after submission, but you can set the "hideaftersubmit"
-        * configuration property to false, to prevent the Dialog
-        * from being hidden.
-        * 
-        * @method submit
-        */
-        submit: function () {
-            if (this.validate()) {
-                this.beforeSubmitEvent.fire();
-                this.doSubmit();
-                this.submitEvent.fire();
-
-                if (this.cfg.getProperty("hideaftersubmit")) {
-                    this.hide();
-                }
-
-                return true;
-            } else {
-                return false;
-            }
-        },
-
-        /**
-        * Executes the cancel of the Dialog followed by a hide.
-        * @method cancel
-        */
-        cancel: function () {
-            this.cancelEvent.fire();
-            this.hide();
-        },
-        
-        /**
-        * Returns a JSON-compatible data structure representing the data 
-        * currently contained in the form.
-        * @method getData
-        * @return {Object} A JSON object reprsenting the data of the 
-        * current form.
-        */
-        getData: function () {
-
-            var oForm = this.form,
-                aElements,
-                nTotalElements,
-                oData,
-                sName,
-                oElement,
-                nElements,
-                sType,
-                sTagName,
-                aOptions,
-                nOptions,
-                aValues,
-                oOption,
-                sValue,
-                oRadio,
-                oCheckbox,
-                i,
-                n;    
-    
-            function isFormElement(p_oElement) {
-                var sTag = p_oElement.tagName.toUpperCase();
-                return ((sTag == "INPUT" || sTag == "TEXTAREA" || 
-                        sTag == "SELECT") && p_oElement.name == sName);
-            }
-
-            if (oForm) {
-
-                aElements = oForm.elements;
-                nTotalElements = aElements.length;
-                oData = {};
-
-                for (i = 0; i < nTotalElements; i++) {
-                    sName = aElements[i].name;
-
-                    /*
-                        Using "Dom.getElementsBy" to safeguard user from JS 
-                        errors that result from giving a form field (or set of 
-                        fields) the same name as a native method of a form 
-                        (like "submit") or a DOM collection (such as the "item"
-                        method). Originally tried accessing fields via the 
-                        "namedItem" method of the "element" collection, but 
-                        discovered that it won't return a collection of fields 
-                        in Gecko.
-                    */
-
-                    oElement = Dom.getElementsBy(isFormElement, "*", oForm);
-                    nElements = oElement.length;
-
-                    if (nElements > 0) {
-                        if (nElements == 1) {
-                            oElement = oElement[0];
-
-                            sType = oElement.type;
-                            sTagName = oElement.tagName.toUpperCase();
-
-                            switch (sTagName) {
-                                case "INPUT":
-                                    if (sType == "checkbox") {
-                                        oData[sName] = oElement.checked;
-                                    } else if (sType != "radio") {
-                                        oData[sName] = oElement.value;
-                                    }
-                                    break;
-
-                                case "TEXTAREA":
-                                    oData[sName] = oElement.value;
-                                    break;
-    
-                                case "SELECT":
-                                    aOptions = oElement.options;
-                                    nOptions = aOptions.length;
-                                    aValues = [];
-    
-                                    for (n = 0; n < nOptions; n++) {
-                                        oOption = aOptions[n];
-    
-                                        if (oOption.selected) {
-                                            sValue = oOption.value;
-                                            if (!sValue || sValue === "") {
-                                                sValue = oOption.text;
-                                            }
-                                            aValues[aValues.length] = sValue;
-                                        }
-                                    }
-                                    oData[sName] = aValues;
-                                    break;
-                            }
-        
-                        } else {
-                            sType = oElement[0].type;
-                            switch (sType) {
-                                case "radio":
-                                    for (n = 0; n < nElements; n++) {
-                                        oRadio = oElement[n];
-                                        if (oRadio.checked) {
-                                            oData[sName] = oRadio.value;
-                                            break;
-                                        }
-                                    }
-                                    break;
-        
-                                case "checkbox":
-                                    aValues = [];
-                                    for (n = 0; n < nElements; n++) {
-                                        oCheckbox = oElement[n];
-                                        if (oCheckbox.checked) {
-                                            aValues[aValues.length] =  oCheckbox.value;
-                                        }
-                                    }
-                                    oData[sName] = aValues;
-                                    break;
-                            }
-                        }
-                    }
-                }
-            }
-
-            return oData;
-        },
-
-        /**
-        * Removes the Panel element from the DOM and sets all child elements 
-        * to null.
-        * @method destroy
-        */
-        destroy: function () {
-            removeButtonEventHandlers.call(this);
-
-            this._aButtons = null;
-
-            var aForms = this.element.getElementsByTagName("form"),
-                oForm;
-
-            if (aForms.length > 0) {
-                oForm = aForms[0];
-
-                if (oForm) {
-                    Event.purgeElement(oForm);
-                    if (oForm.parentNode) {
-                        oForm.parentNode.removeChild(oForm);
-                    }
-                    this.form = null;
-                }
-            }
-            Dialog.superclass.destroy.call(this);
-        },
-
-        /**
-        * Returns a string representation of the object.
-        * @method toString
-        * @return {String} The string representation of the Dialog
-        */
-        toString: function () {
-            return "Dialog " + this.id;
-        }
-    
-    });
-
-}());
-
-(function () {
-
-    /**
-    * SimpleDialog is a simple implementation of Dialog that can be used to 
-    * submit a single value. Forms can be processed in 3 ways -- via an 
-    * asynchronous Connection utility call, a simple form POST or GET, 
-    * or manually.
-    * @namespace YAHOO.widget
-    * @class SimpleDialog
-    * @extends YAHOO.widget.Dialog
-    * @constructor
-    * @param {String} el The element ID representing the SimpleDialog 
-    * <em>OR</em>
-    * @param {HTMLElement} el The element representing the SimpleDialog
-    * @param {Object} userConfig The configuration object literal containing 
-    * the configuration that should be set for this SimpleDialog. See 
-    * configuration documentation for more details.
-    */
-    YAHOO.widget.SimpleDialog = function (el, userConfig) {
-    
-        YAHOO.widget.SimpleDialog.superclass.constructor.call(this, 
-            el, userConfig);
-    
-    };
-
-    var Dom = YAHOO.util.Dom,
-        SimpleDialog = YAHOO.widget.SimpleDialog,
-    
-        /**
-        * Constant representing the SimpleDialog's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-        
-            "ICON": { 
-                key: "icon", 
-                value: "none", 
-                suppressEvent: true  
-            },
-        
-            "TEXT": { 
-                key: "text", 
-                value: "", 
-                suppressEvent: true, 
-                supercedes: ["icon"] 
-            }
-        
-        };
-
-    /**
-    * Constant for the standard network icon for a blocking action
-    * @property YAHOO.widget.SimpleDialog.ICON_BLOCK
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.ICON_BLOCK = "blckicon";
-    
-    /**
-    * Constant for the standard network icon for alarm
-    * @property YAHOO.widget.SimpleDialog.ICON_ALARM
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.ICON_ALARM = "alrticon";
-    
-    /**
-    * Constant for the standard network icon for help
-    * @property YAHOO.widget.SimpleDialog.ICON_HELP
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.ICON_HELP  = "hlpicon";
-    
-    /**
-    * Constant for the standard network icon for info
-    * @property YAHOO.widget.SimpleDialog.ICON_INFO
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.ICON_INFO  = "infoicon";
-    
-    /**
-    * Constant for the standard network icon for warn
-    * @property YAHOO.widget.SimpleDialog.ICON_WARN
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.ICON_WARN  = "warnicon";
-    
-    /**
-    * Constant for the standard network icon for a tip
-    * @property YAHOO.widget.SimpleDialog.ICON_TIP
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.ICON_TIP   = "tipicon";
-
-    /**
-    * Constant representing the name of the CSS class applied to the element 
-    * created by the "icon" configuration property.
-    * @property YAHOO.widget.SimpleDialog.ICON_CSS_CLASSNAME
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.ICON_CSS_CLASSNAME = "yui-icon";
-    
-    /**
-    * Constant representing the default CSS class used for a SimpleDialog
-    * @property YAHOO.widget.SimpleDialog.CSS_SIMPLEDIALOG
-    * @static
-    * @final
-    * @type String
-    */
-    SimpleDialog.CSS_SIMPLEDIALOG = "yui-simple-dialog";
-
-    
-    YAHOO.extend(SimpleDialog, YAHOO.widget.Dialog, {
-    
-        /**
-        * Initializes the class's configurable properties which can be changed 
-        * using the SimpleDialog's Config object (cfg).
-        * @method initDefaultConfig
-        */
-        initDefaultConfig: function () {
-        
-            SimpleDialog.superclass.initDefaultConfig.call(this);
-        
-            // Add dialog config properties //
-        
-            /**
-            * Sets the informational icon for the SimpleDialog
-            * @config icon
-            * @type String
-            * @default "none"
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.ICON.key, {
-                handler: this.configIcon,
-                value: DEFAULT_CONFIG.ICON.value,
-                suppressEvent: DEFAULT_CONFIG.ICON.suppressEvent
-            });
-        
-            /**
-            * Sets the text for the SimpleDialog
-            * @config text
-            * @type String
-            * @default ""
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.TEXT.key, { 
-                handler: this.configText, 
-                value: DEFAULT_CONFIG.TEXT.value, 
-                suppressEvent: DEFAULT_CONFIG.TEXT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.TEXT.supercedes 
-            });
-        
-        },
-        
-        
-        /**
-        * The SimpleDialog initialization method, which is executed for 
-        * SimpleDialog and all of its subclasses. This method is automatically 
-        * called by the constructor, and  sets up all DOM references for 
-        * pre-existing markup, and creates required markup if it is not 
-        * already present.
-        * @method init
-        * @param {String} el The element ID representing the SimpleDialog 
-        * <em>OR</em>
-        * @param {HTMLElement} el The element representing the SimpleDialog
-        * @param {Object} userConfig The configuration object literal 
-        * containing the configuration that should be set for this 
-        * SimpleDialog. See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-
-            /*
-                Note that we don't pass the user config in here yet because we 
-                only want it executed once, at the lowest subclass level
-            */
-
-            SimpleDialog.superclass.init.call(this, el/*, userConfig*/);
-        
-            this.beforeInitEvent.fire(SimpleDialog);
-        
-            Dom.addClass(this.element, SimpleDialog.CSS_SIMPLEDIALOG);
-        
-            this.cfg.queueProperty("postmethod", "manual");
-        
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-        
-            this.beforeRenderEvent.subscribe(function () {
-                if (! this.body) {
-                    this.setBody("");
-                }
-            }, this, true);
-        
-            this.initEvent.fire(SimpleDialog);
-        
-        },
-        
-        /**
-        * Prepares the SimpleDialog's internal FORM object, creating one if one 
-        * is not currently present, and adding the value hidden field.
-        * @method registerForm
-        */
-        registerForm: function () {
-
-            SimpleDialog.superclass.registerForm.call(this);
-
-            this.form.innerHTML += "<input type=\"hidden\" name=\"" + 
-                this.id + "\" value=\"\"/>";
-
-        },
-        
-        // BEGIN BUILT-IN PROPERTY EVENT HANDLERS //
-        
-        /**
-        * Fired when the "icon" property is set.
-        * @method configIcon
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configIcon: function (type,args,obj) {
-        
-            var sIcon = args[0],
-                oBody = this.body,
-                sCSSClass = SimpleDialog.ICON_CSS_CLASSNAME,
-                oIcon,
-                oIconParent;
-        
-            if (sIcon && sIcon != "none") {
-
-                oIcon = Dom.getElementsByClassName(sCSSClass, "*" , oBody);
-
-                if (oIcon) {
-
-                    oIconParent = oIcon.parentNode;
-                    
-                    if (oIconParent) {
-                    
-                        oIconParent.removeChild(oIcon);
-                        
-                        oIcon = null;
-                    
-                    }
-
-                }
-
-
-                if (sIcon.indexOf(".") == -1) {
-
-                    oIcon = document.createElement("span");
-                    oIcon.className = (sCSSClass + " " + sIcon);
-                    oIcon.innerHTML = "&#160;";
-
-                } else {
-
-                    oIcon = document.createElement("img");
-                    oIcon.src = (this.imageRoot + sIcon);
-                    oIcon.className = sCSSClass;
-
-                }
-                
-
-                if (oIcon) {
-                
-                    oBody.insertBefore(oIcon, oBody.firstChild);
-                
-                }
-
-            }
-
-        },
-
-        /**
-        * Fired when the "text" property is set.
-        * @method configText
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configText: function (type,args,obj) {
-            var text = args[0];
-            if (text) {
-                this.setBody(text);
-                this.cfg.refireEvent("icon");
-            }
-        },
-        
-        // END BUILT-IN PROPERTY EVENT HANDLERS //
-        
-        /**
-        * Returns a string representation of the object.
-        * @method toString
-        * @return {String} The string representation of the SimpleDialog
-        */
-        toString: function () {
-            return "SimpleDialog " + this.id;
-        }
-
-        /**
-        * <p>
-        * Sets the SimpleDialog's body content to the HTML specified. 
-        * If no body is present, one will be automatically created. 
-        * An empty string can be passed to the method to clear the contents of the body.
-        * </p>
-        * <p><strong>NOTE:</strong> SimpleDialog provides the <a href="#config_text">text</a>
-        * and <a href="#config_icon">icon</a> configuration properties to set the contents
-        * of it's body element in accordance with the UI design for a SimpleDialog (an 
-        * icon and message text). Calling setBody on the SimpleDialog will not enforce this 
-        * UI design constraint and will replace the entire contents of the SimpleDialog body. 
-        * It should only be used if you wish the replace the default icon/text body structure 
-        * of a SimpleDialog with your own custom markup.</p>
-        * 
-        * @method setBody
-        * @param {String} bodyContent The HTML used to set the body. 
-        * As a convenience, non HTMLElement objects can also be passed into 
-        * the method, and will be treated as strings, with the body innerHTML
-        * set to their default toString implementations.
-        * <em>OR</em>
-        * @param {HTMLElement} bodyContent The HTMLElement to add as the first and only child of the body element.
-        * <em>OR</em>
-        * @param {DocumentFragment} bodyContent The document fragment 
-        * containing elements which are to be added to the body
-        */
-    });
-
-}());
-
-(function () {
-
-    /**
-    * ContainerEffect encapsulates animation transitions that are executed when 
-    * an Overlay is shown or hidden.
-    * @namespace YAHOO.widget
-    * @class ContainerEffect
-    * @constructor
-    * @param {YAHOO.widget.Overlay} overlay The Overlay that the animation 
-    * should be associated with
-    * @param {Object} attrIn The object literal representing the animation 
-    * arguments to be used for the animate-in transition. The arguments for 
-    * this literal are: attributes(object, see YAHOO.util.Anim for description), 
-    * duration(Number), and method(i.e. Easing.easeIn).
-    * @param {Object} attrOut The object literal representing the animation 
-    * arguments to be used for the animate-out transition. The arguments for  
-    * this literal are: attributes(object, see YAHOO.util.Anim for description), 
-    * duration(Number), and method(i.e. Easing.easeIn).
-    * @param {HTMLElement} targetElement Optional. The target element that  
-    * should be animated during the transition. Defaults to overlay.element.
-    * @param {class} Optional. The animation class to instantiate. Defaults to 
-    * YAHOO.util.Anim. Other options include YAHOO.util.Motion.
-    */
-    YAHOO.widget.ContainerEffect = function (overlay, attrIn, attrOut, targetElement, animClass) {
-
-        if (!animClass) {
-            animClass = YAHOO.util.Anim;
-        }
-
-        /**
-        * The overlay to animate
-        * @property overlay
-        * @type YAHOO.widget.Overlay
-        */
-        this.overlay = overlay;
-    
-        /**
-        * The animation attributes to use when transitioning into view
-        * @property attrIn
-        * @type Object
-        */
-        this.attrIn = attrIn;
-    
-        /**
-        * The animation attributes to use when transitioning out of view
-        * @property attrOut
-        * @type Object
-        */
-        this.attrOut = attrOut;
-    
-        /**
-        * The target element to be animated
-        * @property targetElement
-        * @type HTMLElement
-        */
-        this.targetElement = targetElement || overlay.element;
-    
-        /**
-        * The animation class to use for animating the overlay
-        * @property animClass
-        * @type class
-        */
-        this.animClass = animClass;
-    
-    };
-
-
-    var Dom = YAHOO.util.Dom,
-        CustomEvent = YAHOO.util.CustomEvent,
-        ContainerEffect = YAHOO.widget.ContainerEffect;
-
-
-    /**
-    * A pre-configured ContainerEffect instance that can be used for fading 
-    * an overlay in and out.
-    * @method FADE
-    * @static
-    * @param {YAHOO.widget.Overlay} overlay The Overlay object to animate
-    * @param {Number} dur The duration of the animation
-    * @return {YAHOO.widget.ContainerEffect} The configured ContainerEffect object
-    */
-    ContainerEffect.FADE = function (overlay, dur) {
-
-        var Easing = YAHOO.util.Easing,
-            fin = {
-                attributes: {opacity:{from:0, to:1}},
-                duration: dur,
-                method: Easing.easeIn
-            },
-            fout = {
-                attributes: {opacity:{to:0}},
-                duration: dur,
-                method: Easing.easeOut
-            },
-            fade = new ContainerEffect(overlay, fin, fout, overlay.element);
-
-        fade.handleUnderlayStart = function() {
-            var underlay = this.overlay.underlay;
-            if (underlay && YAHOO.env.ua.ie) {
-                var hasFilters = (underlay.filters && underlay.filters.length > 0);
-                if(hasFilters) {
-                    Dom.addClass(overlay.element, "yui-effect-fade");
-                }
-            }
-        };
-
-        fade.handleUnderlayComplete = function() {
-            var underlay = this.overlay.underlay;
-            if (underlay && YAHOO.env.ua.ie) {
-                Dom.removeClass(overlay.element, "yui-effect-fade");
-            }
-        };
-
-        fade.handleStartAnimateIn = function (type, args, obj) {
-            Dom.addClass(obj.overlay.element, "hide-select");
-
-            if (!obj.overlay.underlay) {
-                obj.overlay.cfg.refireEvent("underlay");
-            }
-
-            obj.handleUnderlayStart();
-
-            Dom.setStyle(obj.overlay.element, "visibility", "visible");
-            Dom.setStyle(obj.overlay.element, "opacity", 0);
-        };
-
-        fade.handleCompleteAnimateIn = function (type,args,obj) {
-            Dom.removeClass(obj.overlay.element, "hide-select");
-
-            if (obj.overlay.element.style.filter) {
-                obj.overlay.element.style.filter = null;
-            }
-
-            obj.handleUnderlayComplete();
-
-            obj.overlay.cfg.refireEvent("iframe");
-            obj.animateInCompleteEvent.fire();
-        };
-
-        fade.handleStartAnimateOut = function (type, args, obj) {
-            Dom.addClass(obj.overlay.element, "hide-select");
-            obj.handleUnderlayStart();
-        };
-
-        fade.handleCompleteAnimateOut =  function (type, args, obj) {
-            Dom.removeClass(obj.overlay.element, "hide-select");
-            if (obj.overlay.element.style.filter) {
-                obj.overlay.element.style.filter = null;
-            }
-            Dom.setStyle(obj.overlay.element, "visibility", "hidden");
-            Dom.setStyle(obj.overlay.element, "opacity", 1);
-
-            obj.handleUnderlayComplete();
-
-            obj.overlay.cfg.refireEvent("iframe");
-            obj.animateOutCompleteEvent.fire();
-        };
-
-        fade.init();
-        return fade;
-    };
-    
-    
-    /**
-    * A pre-configured ContainerEffect instance that can be used for sliding an 
-    * overlay in and out.
-    * @method SLIDE
-    * @static
-    * @param {YAHOO.widget.Overlay} overlay The Overlay object to animate
-    * @param {Number} dur The duration of the animation
-    * @return {YAHOO.widget.ContainerEffect} The configured ContainerEffect object
-    */
-    ContainerEffect.SLIDE = function (overlay, dur) {
-        var Easing = YAHOO.util.Easing,
-
-            x = overlay.cfg.getProperty("x") || Dom.getX(overlay.element),
-            y = overlay.cfg.getProperty("y") || Dom.getY(overlay.element),
-            clientWidth = Dom.getClientWidth(),
-            offsetWidth = overlay.element.offsetWidth,
-
-            sin =  { 
-                attributes: { points: { to: [x, y] } },
-                duration: dur,
-                method: Easing.easeIn 
-            },
-
-            sout = {
-                attributes: { points: { to: [(clientWidth + 25), y] } },
-                duration: dur,
-                method: Easing.easeOut 
-            },
-
-            slide = new ContainerEffect(overlay, sin, sout, overlay.element, YAHOO.util.Motion);
-
-        slide.handleStartAnimateIn = function (type,args,obj) {
-            obj.overlay.element.style.left = ((-25) - offsetWidth) + "px";
-            obj.overlay.element.style.top  = y + "px";
-        };
-
-        slide.handleTweenAnimateIn = function (type, args, obj) {
-        
-            var pos = Dom.getXY(obj.overlay.element),
-                currentX = pos[0],
-                currentY = pos[1];
-        
-            if (Dom.getStyle(obj.overlay.element, "visibility") == 
-                "hidden" && currentX < x) {
-
-                Dom.setStyle(obj.overlay.element, "visibility", "visible");
-
-            }
-        
-            obj.overlay.cfg.setProperty("xy", [currentX, currentY], true);
-            obj.overlay.cfg.refireEvent("iframe");
-        };
-        
-        slide.handleCompleteAnimateIn = function (type, args, obj) {
-            obj.overlay.cfg.setProperty("xy", [x, y], true);
-            obj.startX = x;
-            obj.startY = y;
-            obj.overlay.cfg.refireEvent("iframe");
-            obj.animateInCompleteEvent.fire();
-        };
-        
-        slide.handleStartAnimateOut = function (type, args, obj) {
-    
-            var vw = Dom.getViewportWidth(),
-                pos = Dom.getXY(obj.overlay.element),
-                yso = pos[1];
-    
-            obj.animOut.attributes.points.to = [(vw + 25), yso];
-        };
-        
-        slide.handleTweenAnimateOut = function (type, args, obj) {
-    
-            var pos = Dom.getXY(obj.overlay.element),
-                xto = pos[0],
-                yto = pos[1];
-        
-            obj.overlay.cfg.setProperty("xy", [xto, yto], true);
-            obj.overlay.cfg.refireEvent("iframe");
-        };
-        
-        slide.handleCompleteAnimateOut = function (type, args, obj) {
-            Dom.setStyle(obj.overlay.element, "visibility", "hidden");
-        
-            obj.overlay.cfg.setProperty("xy", [x, y]);
-            obj.animateOutCompleteEvent.fire();
-        };
-
-        slide.init();
-        return slide;
-    };
-
-    ContainerEffect.prototype = {
-
-        /**
-        * Initializes the animation classes and events.
-        * @method init
-        */
-        init: function () {
-
-            this.beforeAnimateInEvent = this.createEvent("beforeAnimateIn");
-            this.beforeAnimateInEvent.signature = CustomEvent.LIST;
-            
-            this.beforeAnimateOutEvent = this.createEvent("beforeAnimateOut");
-            this.beforeAnimateOutEvent.signature = CustomEvent.LIST;
-        
-            this.animateInCompleteEvent = this.createEvent("animateInComplete");
-            this.animateInCompleteEvent.signature = CustomEvent.LIST;
-        
-            this.animateOutCompleteEvent = 
-                this.createEvent("animateOutComplete");
-            this.animateOutCompleteEvent.signature = CustomEvent.LIST;
-        
-            this.animIn = new this.animClass(this.targetElement, 
-                this.attrIn.attributes, this.attrIn.duration, 
-                this.attrIn.method);
-
-            this.animIn.onStart.subscribe(this.handleStartAnimateIn, this);
-            this.animIn.onTween.subscribe(this.handleTweenAnimateIn, this);
-
-            this.animIn.onComplete.subscribe(this.handleCompleteAnimateIn, 
-                this);
-        
-            this.animOut = new this.animClass(this.targetElement, 
-                this.attrOut.attributes, this.attrOut.duration, 
-                this.attrOut.method);
-
-            this.animOut.onStart.subscribe(this.handleStartAnimateOut, this);
-            this.animOut.onTween.subscribe(this.handleTweenAnimateOut, this);
-            this.animOut.onComplete.subscribe(this.handleCompleteAnimateOut, 
-                this);
-
-        },
-        
-        /**
-        * Triggers the in-animation.
-        * @method animateIn
-        */
-        animateIn: function () {
-            this.beforeAnimateInEvent.fire();
-            this.animIn.animate();
-        },
-
-        /**
-        * Triggers the out-animation.
-        * @method animateOut
-        */
-        animateOut: function () {
-            this.beforeAnimateOutEvent.fire();
-            this.animOut.animate();
-        },
-
-        /**
-        * The default onStart handler for the in-animation.
-        * @method handleStartAnimateIn
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleStartAnimateIn: function (type, args, obj) { },
-
-        /**
-        * The default onTween handler for the in-animation.
-        * @method handleTweenAnimateIn
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleTweenAnimateIn: function (type, args, obj) { },
-
-        /**
-        * The default onComplete handler for the in-animation.
-        * @method handleCompleteAnimateIn
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleCompleteAnimateIn: function (type, args, obj) { },
-
-        /**
-        * The default onStart handler for the out-animation.
-        * @method handleStartAnimateOut
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleStartAnimateOut: function (type, args, obj) { },
-
-        /**
-        * The default onTween handler for the out-animation.
-        * @method handleTweenAnimateOut
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleTweenAnimateOut: function (type, args, obj) { },
-
-        /**
-        * The default onComplete handler for the out-animation.
-        * @method handleCompleteAnimateOut
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleCompleteAnimateOut: function (type, args, obj) { },
-        
-        /**
-        * Returns a string representation of the object.
-        * @method toString
-        * @return {String} The string representation of the ContainerEffect
-        */
-        toString: function () {
-            var output = "ContainerEffect";
-            if (this.overlay) {
-                output += " [" + this.overlay.toString() + "]";
-            }
-            return output;
-        }
-    };
-
-    YAHOO.lang.augmentProto(ContainerEffect, YAHOO.util.EventProvider);
-
-})();
-
-YAHOO.register("container", YAHOO.widget.Module, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/container/container_core-debug.js b/eclipse.org-common/yui/2.6.0/build/container/container_core-debug.js
deleted file mode 100644
index b0cdb04..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/container_core-debug.js
+++ /dev/null
@@ -1,5059 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function () {
-
-    /**
-    * Config is a utility used within an Object to allow the implementer to
-    * maintain a list of local configuration properties and listen for changes 
-    * to those properties dynamically using CustomEvent. The initial values are 
-    * also maintained so that the configuration can be reset at any given point 
-    * to its initial state.
-    * @namespace YAHOO.util
-    * @class Config
-    * @constructor
-    * @param {Object} owner The owner Object to which this Config Object belongs
-    */
-    YAHOO.util.Config = function (owner) {
-
-        if (owner) {
-            this.init(owner);
-        }
-
-        if (!owner) {  YAHOO.log("No owner specified for Config object", "error", "Config"); }
-
-    };
-
-
-    var Lang = YAHOO.lang,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Config = YAHOO.util.Config;
-
-
-    /**
-     * Constant representing the CustomEvent type for the config changed event.
-     * @property YAHOO.util.Config.CONFIG_CHANGED_EVENT
-     * @private
-     * @static
-     * @final
-     */
-    Config.CONFIG_CHANGED_EVENT = "configChanged";
-    
-    /**
-     * Constant representing the boolean type string
-     * @property YAHOO.util.Config.BOOLEAN_TYPE
-     * @private
-     * @static
-     * @final
-     */
-    Config.BOOLEAN_TYPE = "boolean";
-    
-    Config.prototype = {
-     
-        /**
-        * Object reference to the owner of this Config Object
-        * @property owner
-        * @type Object
-        */
-        owner: null,
-        
-        /**
-        * Boolean flag that specifies whether a queue is currently 
-        * being executed
-        * @property queueInProgress
-        * @type Boolean
-        */
-        queueInProgress: false,
-        
-        /**
-        * Maintains the local collection of configuration property objects and 
-        * their specified values
-        * @property config
-        * @private
-        * @type Object
-        */ 
-        config: null,
-        
-        /**
-        * Maintains the local collection of configuration property objects as 
-        * they were initially applied.
-        * This object is used when resetting a property.
-        * @property initialConfig
-        * @private
-        * @type Object
-        */ 
-        initialConfig: null,
-        
-        /**
-        * Maintains the local, normalized CustomEvent queue
-        * @property eventQueue
-        * @private
-        * @type Object
-        */ 
-        eventQueue: null,
-        
-        /**
-        * Custom Event, notifying subscribers when Config properties are set 
-        * (setProperty is called without the silent flag
-        * @event configChangedEvent
-        */
-        configChangedEvent: null,
-    
-        /**
-        * Initializes the configuration Object and all of its local members.
-        * @method init
-        * @param {Object} owner The owner Object to which this Config 
-        * Object belongs
-        */
-        init: function (owner) {
-    
-            this.owner = owner;
-    
-            this.configChangedEvent = 
-                this.createEvent(Config.CONFIG_CHANGED_EVENT);
-    
-            this.configChangedEvent.signature = CustomEvent.LIST;
-            this.queueInProgress = false;
-            this.config = {};
-            this.initialConfig = {};
-            this.eventQueue = [];
-        
-        },
-        
-        /**
-        * Validates that the value passed in is a Boolean.
-        * @method checkBoolean
-        * @param {Object} val The value to validate
-        * @return {Boolean} true, if the value is valid
-        */ 
-        checkBoolean: function (val) {
-            return (typeof val == Config.BOOLEAN_TYPE);
-        },
-        
-        /**
-        * Validates that the value passed in is a number.
-        * @method checkNumber
-        * @param {Object} val The value to validate
-        * @return {Boolean} true, if the value is valid
-        */
-        checkNumber: function (val) {
-            return (!isNaN(val));
-        },
-        
-        /**
-        * Fires a configuration property event using the specified value. 
-        * @method fireEvent
-        * @private
-        * @param {String} key The configuration property's name
-        * @param {value} Object The value of the correct type for the property
-        */ 
-        fireEvent: function ( key, value ) {
-            YAHOO.log("Firing Config event: " + key + "=" + value, "info", "Config");
-            var property = this.config[key];
-        
-            if (property && property.event) {
-                property.event.fire(value);
-            } 
-        },
-        
-        /**
-        * Adds a property to the Config Object's private config hash.
-        * @method addProperty
-        * @param {String} key The configuration property's name
-        * @param {Object} propertyObject The Object containing all of this 
-        * property's arguments
-        */
-        addProperty: function ( key, propertyObject ) {
-            key = key.toLowerCase();
-            YAHOO.log("Added property: " + key, "info", "Config");
-        
-            this.config[key] = propertyObject;
-        
-            propertyObject.event = this.createEvent(key, { scope: this.owner });
-            propertyObject.event.signature = CustomEvent.LIST;
-            
-            
-            propertyObject.key = key;
-        
-            if (propertyObject.handler) {
-                propertyObject.event.subscribe(propertyObject.handler, 
-                    this.owner);
-            }
-        
-            this.setProperty(key, propertyObject.value, true);
-            
-            if (! propertyObject.suppressEvent) {
-                this.queueProperty(key, propertyObject.value);
-            }
-            
-        },
-        
-        /**
-        * Returns a key-value configuration map of the values currently set in  
-        * the Config Object.
-        * @method getConfig
-        * @return {Object} The current config, represented in a key-value map
-        */
-        getConfig: function () {
-        
-            var cfg = {},
-                currCfg = this.config,
-                prop,
-                property;
-                
-            for (prop in currCfg) {
-                if (Lang.hasOwnProperty(currCfg, prop)) {
-                    property = currCfg[prop];
-                    if (property && property.event) {
-                        cfg[prop] = property.value;
-                    }
-                }
-            }
-
-            return cfg;
-        },
-        
-        /**
-        * Returns the value of specified property.
-        * @method getProperty
-        * @param {String} key The name of the property
-        * @return {Object}  The value of the specified property
-        */
-        getProperty: function (key) {
-            var property = this.config[key.toLowerCase()];
-            if (property && property.event) {
-                return property.value;
-            } else {
-                return undefined;
-            }
-        },
-        
-        /**
-        * Resets the specified property's value to its initial value.
-        * @method resetProperty
-        * @param {String} key The name of the property
-        * @return {Boolean} True is the property was reset, false if not
-        */
-        resetProperty: function (key) {
-    
-            key = key.toLowerCase();
-        
-            var property = this.config[key];
-    
-            if (property && property.event) {
-    
-                if (this.initialConfig[key] && 
-                    !Lang.isUndefined(this.initialConfig[key])) {
-    
-                    this.setProperty(key, this.initialConfig[key]);
-
-                    return true;
-    
-                }
-    
-            } else {
-    
-                return false;
-            }
-    
-        },
-        
-        /**
-        * Sets the value of a property. If the silent property is passed as 
-        * true, the property's event will not be fired.
-        * @method setProperty
-        * @param {String} key The name of the property
-        * @param {String} value The value to set the property to
-        * @param {Boolean} silent Whether the value should be set silently, 
-        * without firing the property event.
-        * @return {Boolean} True, if the set was successful, false if it failed.
-        */
-        setProperty: function (key, value, silent) {
-        
-            var property;
-        
-            key = key.toLowerCase();
-            YAHOO.log("setProperty: " + key + "=" + value, "info", "Config");
-        
-            if (this.queueInProgress && ! silent) {
-                // Currently running through a queue... 
-                this.queueProperty(key,value);
-                return true;
-    
-            } else {
-                property = this.config[key];
-                if (property && property.event) {
-                    if (property.validator && !property.validator(value)) {
-                        return false;
-                    } else {
-                        property.value = value;
-                        if (! silent) {
-                            this.fireEvent(key, value);
-                            this.configChangedEvent.fire([key, value]);
-                        }
-                        return true;
-                    }
-                } else {
-                    return false;
-                }
-            }
-        },
-        
-        /**
-        * Sets the value of a property and queues its event to execute. If the 
-        * event is already scheduled to execute, it is
-        * moved from its current position to the end of the queue.
-        * @method queueProperty
-        * @param {String} key The name of the property
-        * @param {String} value The value to set the property to
-        * @return {Boolean}  true, if the set was successful, false if 
-        * it failed.
-        */ 
-        queueProperty: function (key, value) {
-        
-            key = key.toLowerCase();
-            YAHOO.log("queueProperty: " + key + "=" + value, "info", "Config");
-        
-            var property = this.config[key],
-                foundDuplicate = false,
-                iLen,
-                queueItem,
-                queueItemKey,
-                queueItemValue,
-                sLen,
-                supercedesCheck,
-                qLen,
-                queueItemCheck,
-                queueItemCheckKey,
-                queueItemCheckValue,
-                i,
-                s,
-                q;
-                                
-            if (property && property.event) {
-    
-                if (!Lang.isUndefined(value) && property.validator && 
-                    !property.validator(value)) { // validator
-                    return false;
-                } else {
-        
-                    if (!Lang.isUndefined(value)) {
-                        property.value = value;
-                    } else {
-                        value = property.value;
-                    }
-        
-                    foundDuplicate = false;
-                    iLen = this.eventQueue.length;
-        
-                    for (i = 0; i < iLen; i++) {
-                        queueItem = this.eventQueue[i];
-        
-                        if (queueItem) {
-                            queueItemKey = queueItem[0];
-                            queueItemValue = queueItem[1];
-
-                            if (queueItemKey == key) {
-    
-                                /*
-                                    found a dupe... push to end of queue, null 
-                                    current item, and break
-                                */
-    
-                                this.eventQueue[i] = null;
-    
-                                this.eventQueue.push(
-                                    [key, (!Lang.isUndefined(value) ? 
-                                    value : queueItemValue)]);
-    
-                                foundDuplicate = true;
-                                break;
-                            }
-                        }
-                    }
-                    
-                    // this is a refire, or a new property in the queue
-    
-                    if (! foundDuplicate && !Lang.isUndefined(value)) { 
-                        this.eventQueue.push([key, value]);
-                    }
-                }
-        
-                if (property.supercedes) {
-
-                    sLen = property.supercedes.length;
-
-                    for (s = 0; s < sLen; s++) {
-
-                        supercedesCheck = property.supercedes[s];
-                        qLen = this.eventQueue.length;
-
-                        for (q = 0; q < qLen; q++) {
-                            queueItemCheck = this.eventQueue[q];
-
-                            if (queueItemCheck) {
-                                queueItemCheckKey = queueItemCheck[0];
-                                queueItemCheckValue = queueItemCheck[1];
-
-                                if (queueItemCheckKey == 
-                                    supercedesCheck.toLowerCase() ) {
-
-                                    this.eventQueue.push([queueItemCheckKey, 
-                                        queueItemCheckValue]);
-
-                                    this.eventQueue[q] = null;
-                                    break;
-
-                                }
-                            }
-                        }
-                    }
-                }
-
-                YAHOO.log("Config event queue: " + this.outputEventQueue(), "info", "Config");
-
-                return true;
-            } else {
-                return false;
-            }
-        },
-        
-        /**
-        * Fires the event for a property using the property's current value.
-        * @method refireEvent
-        * @param {String} key The name of the property
-        */
-        refireEvent: function (key) {
-    
-            key = key.toLowerCase();
-        
-            var property = this.config[key];
-    
-            if (property && property.event && 
-    
-                !Lang.isUndefined(property.value)) {
-    
-                if (this.queueInProgress) {
-    
-                    this.queueProperty(key);
-    
-                } else {
-    
-                    this.fireEvent(key, property.value);
-    
-                }
-    
-            }
-        },
-        
-        /**
-        * Applies a key-value Object literal to the configuration, replacing  
-        * any existing values, and queueing the property events.
-        * Although the values will be set, fireQueue() must be called for their 
-        * associated events to execute.
-        * @method applyConfig
-        * @param {Object} userConfig The configuration Object literal
-        * @param {Boolean} init  When set to true, the initialConfig will 
-        * be set to the userConfig passed in, so that calling a reset will 
-        * reset the properties to the passed values.
-        */
-        applyConfig: function (userConfig, init) {
-        
-            var sKey,
-                oConfig;
-
-            if (init) {
-                oConfig = {};
-                for (sKey in userConfig) {
-                    if (Lang.hasOwnProperty(userConfig, sKey)) {
-                        oConfig[sKey.toLowerCase()] = userConfig[sKey];
-                    }
-                }
-                this.initialConfig = oConfig;
-            }
-
-            for (sKey in userConfig) {
-                if (Lang.hasOwnProperty(userConfig, sKey)) {
-                    this.queueProperty(sKey, userConfig[sKey]);
-                }
-            }
-        },
-        
-        /**
-        * Refires the events for all configuration properties using their 
-        * current values.
-        * @method refresh
-        */
-        refresh: function () {
-
-            var prop;
-
-            for (prop in this.config) {
-                if (Lang.hasOwnProperty(this.config, prop)) {
-                    this.refireEvent(prop);
-                }
-            }
-        },
-        
-        /**
-        * Fires the normalized list of queued property change events
-        * @method fireQueue
-        */
-        fireQueue: function () {
-        
-            var i, 
-                queueItem,
-                key,
-                value,
-                property;
-        
-            this.queueInProgress = true;
-            for (i = 0;i < this.eventQueue.length; i++) {
-                queueItem = this.eventQueue[i];
-                if (queueItem) {
-        
-                    key = queueItem[0];
-                    value = queueItem[1];
-                    property = this.config[key];
-
-                    property.value = value;
-
-                    // Clear out queue entry, to avoid it being 
-                    // re-added to the queue by any queueProperty/supercedes
-                    // calls which are invoked during fireEvent
-                    this.eventQueue[i] = null;
-
-                    this.fireEvent(key,value);
-                }
-            }
-            
-            this.queueInProgress = false;
-            this.eventQueue = [];
-        },
-        
-        /**
-        * Subscribes an external handler to the change event for any 
-        * given property. 
-        * @method subscribeToConfigEvent
-        * @param {String} key The property name
-        * @param {Function} handler The handler function to use subscribe to 
-        * the property's event
-        * @param {Object} obj The Object to use for scoping the event handler 
-        * (see CustomEvent documentation)
-        * @param {Boolean} override Optional. If true, will override "this"  
-        * within the handler to map to the scope Object passed into the method.
-        * @return {Boolean} True, if the subscription was successful, 
-        * otherwise false.
-        */ 
-        subscribeToConfigEvent: function (key, handler, obj, override) {
-    
-            var property = this.config[key.toLowerCase()];
-    
-            if (property && property.event) {
-                if (!Config.alreadySubscribed(property.event, handler, obj)) {
-                    property.event.subscribe(handler, obj, override);
-                }
-                return true;
-            } else {
-                return false;
-            }
-    
-        },
-        
-        /**
-        * Unsubscribes an external handler from the change event for any 
-        * given property. 
-        * @method unsubscribeFromConfigEvent
-        * @param {String} key The property name
-        * @param {Function} handler The handler function to use subscribe to 
-        * the property's event
-        * @param {Object} obj The Object to use for scoping the event 
-        * handler (see CustomEvent documentation)
-        * @return {Boolean} True, if the unsubscription was successful, 
-        * otherwise false.
-        */
-        unsubscribeFromConfigEvent: function (key, handler, obj) {
-            var property = this.config[key.toLowerCase()];
-            if (property && property.event) {
-                return property.event.unsubscribe(handler, obj);
-            } else {
-                return false;
-            }
-        },
-        
-        /**
-        * Returns a string representation of the Config object
-        * @method toString
-        * @return {String} The Config object in string format.
-        */
-        toString: function () {
-            var output = "Config";
-            if (this.owner) {
-                output += " [" + this.owner.toString() + "]";
-            }
-            return output;
-        },
-        
-        /**
-        * Returns a string representation of the Config object's current 
-        * CustomEvent queue
-        * @method outputEventQueue
-        * @return {String} The string list of CustomEvents currently queued 
-        * for execution
-        */
-        outputEventQueue: function () {
-
-            var output = "",
-                queueItem,
-                q,
-                nQueue = this.eventQueue.length;
-              
-            for (q = 0; q < nQueue; q++) {
-                queueItem = this.eventQueue[q];
-                if (queueItem) {
-                    output += queueItem[0] + "=" + queueItem[1] + ", ";
-                }
-            }
-            return output;
-        },
-
-        /**
-        * Sets all properties to null, unsubscribes all listeners from each 
-        * property's change event and all listeners from the configChangedEvent.
-        * @method destroy
-        */
-        destroy: function () {
-
-            var oConfig = this.config,
-                sProperty,
-                oProperty;
-
-
-            for (sProperty in oConfig) {
-            
-                if (Lang.hasOwnProperty(oConfig, sProperty)) {
-
-                    oProperty = oConfig[sProperty];
-
-                    oProperty.event.unsubscribeAll();
-                    oProperty.event = null;
-
-                }
-            
-            }
-            
-            this.configChangedEvent.unsubscribeAll();
-            
-            this.configChangedEvent = null;
-            this.owner = null;
-            this.config = null;
-            this.initialConfig = null;
-            this.eventQueue = null;
-        
-        }
-
-    };
-    
-    
-    
-    /**
-    * Checks to determine if a particular function/Object pair are already 
-    * subscribed to the specified CustomEvent
-    * @method YAHOO.util.Config.alreadySubscribed
-    * @static
-    * @param {YAHOO.util.CustomEvent} evt The CustomEvent for which to check 
-    * the subscriptions
-    * @param {Function} fn The function to look for in the subscribers list
-    * @param {Object} obj The execution scope Object for the subscription
-    * @return {Boolean} true, if the function/Object pair is already subscribed 
-    * to the CustomEvent passed in
-    */
-    Config.alreadySubscribed = function (evt, fn, obj) {
-    
-        var nSubscribers = evt.subscribers.length,
-            subsc,
-            i;
-
-        if (nSubscribers > 0) {
-            i = nSubscribers - 1;
-            do {
-                subsc = evt.subscribers[i];
-                if (subsc && subsc.obj == obj && subsc.fn == fn) {
-                    return true;
-                }
-            }
-            while (i--);
-        }
-
-        return false;
-
-    };
-
-    YAHOO.lang.augmentProto(Config, YAHOO.util.EventProvider);
-
-}());
-
-(function () {
-
-    /**
-    * The Container family of components is designed to enable developers to 
-    * create different kinds of content-containing modules on the web. Module 
-    * and Overlay are the most basic containers, and they can be used directly 
-    * or extended to build custom containers. Also part of the Container family 
-    * are four UI controls that extend Module and Overlay: Tooltip, Panel, 
-    * Dialog, and SimpleDialog.
-    * @module container
-    * @title Container
-    * @requires yahoo, dom, event 
-    * @optional dragdrop, animation, button
-    */
-    
-    /**
-    * Module is a JavaScript representation of the Standard Module Format. 
-    * Standard Module Format is a simple standard for markup containers where 
-    * child nodes representing the header, body, and footer of the content are 
-    * denoted using the CSS classes "hd", "bd", and "ft" respectively. 
-    * Module is the base class for all other classes in the YUI 
-    * Container package.
-    * @namespace YAHOO.widget
-    * @class Module
-    * @constructor
-    * @param {String} el The element ID representing the Module <em>OR</em>
-    * @param {HTMLElement} el The element representing the Module
-    * @param {Object} userConfig The configuration Object literal containing 
-    * the configuration that should be set for this module. See configuration 
-    * documentation for more details.
-    */
-    YAHOO.widget.Module = function (el, userConfig) {
-        if (el) {
-            this.init(el, userConfig);
-        } else {
-            YAHOO.log("No element or element ID specified" + 
-                " for Module instantiation", "error");
-        }
-    };
-
-    var Dom = YAHOO.util.Dom,
-        Config = YAHOO.util.Config,
-        Event = YAHOO.util.Event,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Module = YAHOO.widget.Module,
-
-        m_oModuleTemplate,
-        m_oHeaderTemplate,
-        m_oBodyTemplate,
-        m_oFooterTemplate,
-
-        /**
-        * Constant representing the name of the Module's events
-        * @property EVENT_TYPES
-        * @private
-        * @final
-        * @type Object
-        */
-        EVENT_TYPES = {
-            "BEFORE_INIT": "beforeInit",
-            "INIT": "init",
-            "APPEND": "append",
-            "BEFORE_RENDER": "beforeRender",
-            "RENDER": "render",
-            "CHANGE_HEADER": "changeHeader",
-            "CHANGE_BODY": "changeBody",
-            "CHANGE_FOOTER": "changeFooter",
-            "CHANGE_CONTENT": "changeContent",
-            "DESTORY": "destroy",
-            "BEFORE_SHOW": "beforeShow",
-            "SHOW": "show",
-            "BEFORE_HIDE": "beforeHide",
-            "HIDE": "hide"
-        },
-            
-        /**
-        * Constant representing the Module's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-        
-            "VISIBLE": { 
-                key: "visible", 
-                value: true, 
-                validator: YAHOO.lang.isBoolean 
-            },
-        
-            "EFFECT": { 
-                key: "effect", 
-                suppressEvent: true, 
-                supercedes: ["visible"] 
-            },
-
-            "MONITOR_RESIZE": { 
-                key: "monitorresize", 
-                value: true  
-            },
-
-            "APPEND_TO_DOCUMENT_BODY": { 
-                key: "appendtodocumentbody", 
-                value: false
-            }
-        };
-    
-    /**
-    * Constant representing the prefix path to use for non-secure images
-    * @property YAHOO.widget.Module.IMG_ROOT
-    * @static
-    * @final
-    * @type String
-    */
-    Module.IMG_ROOT = null;
-    
-    /**
-    * Constant representing the prefix path to use for securely served images
-    * @property YAHOO.widget.Module.IMG_ROOT_SSL
-    * @static
-    * @final
-    * @type String
-    */
-    Module.IMG_ROOT_SSL = null;
-    
-    /**
-    * Constant for the default CSS class name that represents a Module
-    * @property YAHOO.widget.Module.CSS_MODULE
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_MODULE = "yui-module";
-    
-    /**
-    * Constant representing the module header
-    * @property YAHOO.widget.Module.CSS_HEADER
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_HEADER = "hd";
-
-    /**
-    * Constant representing the module body
-    * @property YAHOO.widget.Module.CSS_BODY
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_BODY = "bd";
-    
-    /**
-    * Constant representing the module footer
-    * @property YAHOO.widget.Module.CSS_FOOTER
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_FOOTER = "ft";
-    
-    /**
-    * Constant representing the url for the "src" attribute of the iframe 
-    * used to monitor changes to the browser's base font size
-    * @property YAHOO.widget.Module.RESIZE_MONITOR_SECURE_URL
-    * @static
-    * @final
-    * @type String
-    */
-    Module.RESIZE_MONITOR_SECURE_URL = "javascript:false;";
-    
-    /**
-    * Singleton CustomEvent fired when the font size is changed in the browser.
-    * Opera's "zoom" functionality currently does not support text 
-    * size detection.
-    * @event YAHOO.widget.Module.textResizeEvent
-    */
-    Module.textResizeEvent = new CustomEvent("textResize");
-
-    function createModuleTemplate() {
-
-        if (!m_oModuleTemplate) {
-            m_oModuleTemplate = document.createElement("div");
-            
-            m_oModuleTemplate.innerHTML = ("<div class=\"" + 
-                Module.CSS_HEADER + "\"></div>" + "<div class=\"" + 
-                Module.CSS_BODY + "\"></div><div class=\"" + 
-                Module.CSS_FOOTER + "\"></div>");
-
-            m_oHeaderTemplate = m_oModuleTemplate.firstChild;
-            m_oBodyTemplate = m_oHeaderTemplate.nextSibling;
-            m_oFooterTemplate = m_oBodyTemplate.nextSibling;
-        }
-
-        return m_oModuleTemplate;
-    }
-
-    function createHeader() {
-        if (!m_oHeaderTemplate) {
-            createModuleTemplate();
-        }
-        return (m_oHeaderTemplate.cloneNode(false));
-    }
-
-    function createBody() {
-        if (!m_oBodyTemplate) {
-            createModuleTemplate();
-        }
-        return (m_oBodyTemplate.cloneNode(false));
-    }
-
-    function createFooter() {
-        if (!m_oFooterTemplate) {
-            createModuleTemplate();
-        }
-        return (m_oFooterTemplate.cloneNode(false));
-    }
-
-    Module.prototype = {
-
-        /**
-        * The class's constructor function
-        * @property contructor
-        * @type Function
-        */
-        constructor: Module,
-        
-        /**
-        * The main module element that contains the header, body, and footer
-        * @property element
-        * @type HTMLElement
-        */
-        element: null,
-
-        /**
-        * The header element, denoted with CSS class "hd"
-        * @property header
-        * @type HTMLElement
-        */
-        header: null,
-
-        /**
-        * The body element, denoted with CSS class "bd"
-        * @property body
-        * @type HTMLElement
-        */
-        body: null,
-
-        /**
-        * The footer element, denoted with CSS class "ft"
-        * @property footer
-        * @type HTMLElement
-        */
-        footer: null,
-
-        /**
-        * The id of the element
-        * @property id
-        * @type String
-        */
-        id: null,
-
-        /**
-        * A string representing the root path for all images created by
-        * a Module instance.
-        * @deprecated It is recommend that any images for a Module be applied
-        * via CSS using the "background-image" property.
-        * @property imageRoot
-        * @type String
-        */
-        imageRoot: Module.IMG_ROOT,
-
-        /**
-        * Initializes the custom events for Module which are fired 
-        * automatically at appropriate times by the Module class.
-        * @method initEvents
-        */
-        initEvents: function () {
-
-            var SIGNATURE = CustomEvent.LIST;
-
-            /**
-            * CustomEvent fired prior to class initalization.
-            * @event beforeInitEvent
-            * @param {class} classRef class reference of the initializing 
-            * class, such as this.beforeInitEvent.fire(Module)
-            */
-            this.beforeInitEvent = this.createEvent(EVENT_TYPES.BEFORE_INIT);
-            this.beforeInitEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after class initalization.
-            * @event initEvent
-            * @param {class} classRef class reference of the initializing 
-            * class, such as this.beforeInitEvent.fire(Module)
-            */  
-            this.initEvent = this.createEvent(EVENT_TYPES.INIT);
-            this.initEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired when the Module is appended to the DOM
-            * @event appendEvent
-            */
-            this.appendEvent = this.createEvent(EVENT_TYPES.APPEND);
-            this.appendEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired before the Module is rendered
-            * @event beforeRenderEvent
-            */
-            this.beforeRenderEvent = this.createEvent(EVENT_TYPES.BEFORE_RENDER);
-            this.beforeRenderEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired after the Module is rendered
-            * @event renderEvent
-            */
-            this.renderEvent = this.createEvent(EVENT_TYPES.RENDER);
-            this.renderEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired when the header content of the Module 
-            * is modified
-            * @event changeHeaderEvent
-            * @param {String/HTMLElement} content String/element representing 
-            * the new header content
-            */
-            this.changeHeaderEvent = this.createEvent(EVENT_TYPES.CHANGE_HEADER);
-            this.changeHeaderEvent.signature = SIGNATURE;
-            
-            /**
-            * CustomEvent fired when the body content of the Module is modified
-            * @event changeBodyEvent
-            * @param {String/HTMLElement} content String/element representing 
-            * the new body content
-            */  
-            this.changeBodyEvent = this.createEvent(EVENT_TYPES.CHANGE_BODY);
-            this.changeBodyEvent.signature = SIGNATURE;
-            
-            /**
-            * CustomEvent fired when the footer content of the Module 
-            * is modified
-            * @event changeFooterEvent
-            * @param {String/HTMLElement} content String/element representing 
-            * the new footer content
-            */
-            this.changeFooterEvent = this.createEvent(EVENT_TYPES.CHANGE_FOOTER);
-            this.changeFooterEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired when the content of the Module is modified
-            * @event changeContentEvent
-            */
-            this.changeContentEvent = this.createEvent(EVENT_TYPES.CHANGE_CONTENT);
-            this.changeContentEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired when the Module is destroyed
-            * @event destroyEvent
-            */
-            this.destroyEvent = this.createEvent(EVENT_TYPES.DESTORY);
-            this.destroyEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired before the Module is shown
-            * @event beforeShowEvent
-            */
-            this.beforeShowEvent = this.createEvent(EVENT_TYPES.BEFORE_SHOW);
-            this.beforeShowEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after the Module is shown
-            * @event showEvent
-            */
-            this.showEvent = this.createEvent(EVENT_TYPES.SHOW);
-            this.showEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired before the Module is hidden
-            * @event beforeHideEvent
-            */
-            this.beforeHideEvent = this.createEvent(EVENT_TYPES.BEFORE_HIDE);
-            this.beforeHideEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after the Module is hidden
-            * @event hideEvent
-            */
-            this.hideEvent = this.createEvent(EVENT_TYPES.HIDE);
-            this.hideEvent.signature = SIGNATURE;
-        }, 
-
-        /**
-        * String representing the current user-agent platform
-        * @property platform
-        * @type String
-        */
-        platform: function () {
-            var ua = navigator.userAgent.toLowerCase();
-
-            if (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1) {
-                return "windows";
-            } else if (ua.indexOf("macintosh") != -1) {
-                return "mac";
-            } else {
-                return false;
-            }
-        }(),
-        
-        /**
-        * String representing the user-agent of the browser
-        * @deprecated Use YAHOO.env.ua
-        * @property browser
-        * @type String
-        */
-        browser: function () {
-            var ua = navigator.userAgent.toLowerCase();
-            /*
-                 Check Opera first in case of spoof and check Safari before
-                 Gecko since Safari's user agent string includes "like Gecko"
-            */
-            if (ua.indexOf('opera') != -1) { 
-                return 'opera';
-            } else if (ua.indexOf('msie 7') != -1) {
-                return 'ie7';
-            } else if (ua.indexOf('msie') != -1) {
-                return 'ie';
-            } else if (ua.indexOf('safari') != -1) { 
-                return 'safari';
-            } else if (ua.indexOf('gecko') != -1) {
-                return 'gecko';
-            } else {
-                return false;
-            }
-        }(),
-        
-        /**
-        * Boolean representing whether or not the current browsing context is 
-        * secure (https)
-        * @property isSecure
-        * @type Boolean
-        */
-        isSecure: function () {
-            if (window.location.href.toLowerCase().indexOf("https") === 0) {
-                return true;
-            } else {
-                return false;
-            }
-        }(),
-        
-        /**
-        * Initializes the custom events for Module which are fired 
-        * automatically at appropriate times by the Module class.
-        */
-        initDefaultConfig: function () {
-            // Add properties //
-            /**
-            * Specifies whether the Module is visible on the page.
-            * @config visible
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.VISIBLE.key, {
-                handler: this.configVisible, 
-                value: DEFAULT_CONFIG.VISIBLE.value, 
-                validator: DEFAULT_CONFIG.VISIBLE.validator
-            });
-
-            /**
-            * <p>
-            * Object or array of objects representing the ContainerEffect 
-            * classes that are active for animating the container.
-            * </p>
-            * <p>
-            * <strong>NOTE:</strong> Although this configuration 
-            * property is introduced at the Module level, an out of the box
-            * implementation is not shipped for the Module class so setting
-            * the proroperty on the Module class has no effect. The Overlay 
-            * class is the first class to provide out of the box ContainerEffect 
-            * support.
-            * </p>
-            * @config effect
-            * @type Object
-            * @default null
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.EFFECT.key, {
-                suppressEvent: DEFAULT_CONFIG.EFFECT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.EFFECT.supercedes
-            });
-
-            /**
-            * Specifies whether to create a special proxy iframe to monitor 
-            * for user font resizing in the document
-            * @config monitorresize
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.MONITOR_RESIZE.key, {
-                handler: this.configMonitorResize,
-                value: DEFAULT_CONFIG.MONITOR_RESIZE.value
-            });
-
-            /**
-            * Specifies if the module should be rendered as the first child 
-            * of document.body or appended as the last child when render is called
-            * with document.body as the "appendToNode".
-            * <p>
-            * Appending to the body while the DOM is still being constructed can 
-            * lead to Operation Aborted errors in IE hence this flag is set to 
-            * false by default.
-            * </p>
-            * 
-            * @config appendtodocumentbody
-            * @type Boolean
-            * @default false
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.APPEND_TO_DOCUMENT_BODY.key, {
-                value: DEFAULT_CONFIG.APPEND_TO_DOCUMENT_BODY.value
-            });
-        },
-
-        /**
-        * The Module class's initialization method, which is executed for
-        * Module and all of its subclasses. This method is automatically 
-        * called by the constructor, and  sets up all DOM references for 
-        * pre-existing markup, and creates required markup if it is not 
-        * already present.
-        * @method init
-        * @param {String} el The element ID representing the Module <em>OR</em>
-        * @param {HTMLElement} el The element representing the Module
-        * @param {Object} userConfig The configuration Object literal 
-        * containing the configuration that should be set for this module. 
-        * See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-
-            var elId, child;
-
-            this.initEvents();
-            this.beforeInitEvent.fire(Module);
-
-            /**
-            * The Module's Config object used for monitoring 
-            * configuration properties.
-            * @property cfg
-            * @type YAHOO.util.Config
-            */
-            this.cfg = new Config(this);
-
-            if (this.isSecure) {
-                this.imageRoot = Module.IMG_ROOT_SSL;
-            }
-
-            if (typeof el == "string") {
-                elId = el;
-                el = document.getElementById(el);
-                if (! el) {
-                    el = (createModuleTemplate()).cloneNode(false);
-                    el.id = elId;
-                }
-            }
-
-            this.element = el;
-
-            if (el.id) {
-                this.id = el.id;
-            }
-
-            child = this.element.firstChild;
-
-            if (child) {
-                var fndHd = false, fndBd = false, fndFt = false;
-                do {
-                    // We're looking for elements
-                    if (1 == child.nodeType) {
-                        if (!fndHd && Dom.hasClass(child, Module.CSS_HEADER)) {
-                            this.header = child;
-                            fndHd = true;
-                        } else if (!fndBd && Dom.hasClass(child, Module.CSS_BODY)) {
-                            this.body = child;
-                            fndBd = true;
-                        } else if (!fndFt && Dom.hasClass(child, Module.CSS_FOOTER)){
-                            this.footer = child;
-                            fndFt = true;
-                        }
-                    }
-                } while ((child = child.nextSibling));
-            }
-
-            this.initDefaultConfig();
-
-            Dom.addClass(this.element, Module.CSS_MODULE);
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-
-            /*
-                Subscribe to the fireQueue() method of Config so that any 
-                queued configuration changes are excecuted upon render of 
-                the Module
-            */ 
-
-            if (!Config.alreadySubscribed(this.renderEvent, this.cfg.fireQueue, this.cfg)) {
-                this.renderEvent.subscribe(this.cfg.fireQueue, this.cfg, true);
-            }
-
-            this.initEvent.fire(Module);
-        },
-
-        /**
-        * Initialize an empty IFRAME that is placed out of the visible area 
-        * that can be used to detect text resize.
-        * @method initResizeMonitor
-        */
-        initResizeMonitor: function () {
-
-            var isGeckoWin = (YAHOO.env.ua.gecko && this.platform == "windows");
-            if (isGeckoWin) {
-                // Help prevent spinning loading icon which 
-                // started with FireFox 2.0.0.8/Win
-                var self = this;
-                setTimeout(function(){self._initResizeMonitor();}, 0);
-            } else {
-                this._initResizeMonitor();
-            }
-        },
-
-        /**
-         * Create and initialize the text resize monitoring iframe.
-         * 
-         * @protected
-         * @method _initResizeMonitor
-         */
-        _initResizeMonitor : function() {
-
-            var oDoc, 
-                oIFrame, 
-                sHTML;
-
-            function fireTextResize() {
-                Module.textResizeEvent.fire();
-            }
-
-            if (!YAHOO.env.ua.opera) {
-                oIFrame = Dom.get("_yuiResizeMonitor");
-
-                var supportsCWResize = this._supportsCWResize();
-
-                if (!oIFrame) {
-                    oIFrame = document.createElement("iframe");
-
-                    if (this.isSecure && Module.RESIZE_MONITOR_SECURE_URL && YAHOO.env.ua.ie) {
-                        oIFrame.src = Module.RESIZE_MONITOR_SECURE_URL;
-                    }
-
-                    if (!supportsCWResize) {
-                        // Can't monitor on contentWindow, so fire from inside iframe
-                        sHTML = ["<html><head><script ",
-                                 "type=\"text/javascript\">",
-                                 "window.onresize=function(){window.parent.",
-                                 "YAHOO.widget.Module.textResizeEvent.",
-                                 "fire();};<",
-                                 "\/script></head>",
-                                 "<body></body></html>"].join('');
-
-                        oIFrame.src = "data:text/html;charset=utf-8," + encodeURIComponent(sHTML);
-                    }
-
-                    oIFrame.id = "_yuiResizeMonitor";
-                    oIFrame.title = "Text Resize Monitor";
-                    /*
-                        Need to set "position" property before inserting the 
-                        iframe into the document or Safari's status bar will 
-                        forever indicate the iframe is loading 
-                        (See SourceForge bug #1723064)
-                    */
-                    oIFrame.style.position = "absolute";
-                    oIFrame.style.visibility = "hidden";
-
-                    var db = document.body,
-                        fc = db.firstChild;
-                    if (fc) {
-                        db.insertBefore(oIFrame, fc);
-                    } else {
-                        db.appendChild(oIFrame);
-                    }
-
-                    oIFrame.style.width = "10em";
-                    oIFrame.style.height = "10em";
-                    oIFrame.style.top = (-1 * oIFrame.offsetHeight) + "px";
-                    oIFrame.style.left = (-1 * oIFrame.offsetWidth) + "px";
-                    oIFrame.style.borderWidth = "0";
-                    oIFrame.style.visibility = "visible";
-
-                    /*
-                       Don't open/close the document for Gecko like we used to, since it
-                       leads to duplicate cookies. (See SourceForge bug #1721755)
-                    */
-                    if (YAHOO.env.ua.webkit) {
-                        oDoc = oIFrame.contentWindow.document;
-                        oDoc.open();
-                        oDoc.close();
-                    }
-                }
-
-                if (oIFrame && oIFrame.contentWindow) {
-                    Module.textResizeEvent.subscribe(this.onDomResize, this, true);
-
-                    if (!Module.textResizeInitialized) {
-                        if (supportsCWResize) {
-                            if (!Event.on(oIFrame.contentWindow, "resize", fireTextResize)) {
-                                /*
-                                     This will fail in IE if document.domain has 
-                                     changed, so we must change the listener to 
-                                     use the oIFrame element instead
-                                */
-                                Event.on(oIFrame, "resize", fireTextResize);
-                            }
-                        }
-                        Module.textResizeInitialized = true;
-                    }
-                    this.resizeMonitor = oIFrame;
-                }
-            }
-        },
-
-        /**
-         * Text resize monitor helper method.
-         * Determines if the browser supports resize events on iframe content windows.
-         * 
-         * @private
-         * @method _supportsCWResize
-         */
-        _supportsCWResize : function() {
-            /*
-                Gecko 1.8.0 (FF1.5), 1.8.1.0-5 (FF2) won't fire resize on contentWindow.
-                Gecko 1.8.1.6+ (FF2.0.0.6+) and all other browsers will fire resize on contentWindow.
-
-                We don't want to start sniffing for patch versions, so fire textResize the same
-                way on all FF, until 1.9 (3.x) is out
-             */
-            var bSupported = true;
-            if (YAHOO.env.ua.gecko && YAHOO.env.ua.gecko <= 1.8) {
-                bSupported = false;
-                /*
-                var v = navigator.userAgent.match(/rv:([^\s\)]*)/); // From YAHOO.env.ua
-                if (v && v[0]) {
-                    var sv = v[0].match(/\d\.\d\.(\d)/);
-                    if (sv && sv[1]) {
-                        if (parseInt(sv[1], 10) > 0) {
-                            bSupported = true;
-                        }
-                    }
-                }
-                */
-            }
-            return bSupported;
-        },
-
-        /**
-        * Event handler fired when the resize monitor element is resized.
-        * @method onDomResize
-        * @param {DOMEvent} e The DOM resize event
-        * @param {Object} obj The scope object passed to the handler
-        */
-        onDomResize: function (e, obj) {
-
-            var nLeft = -1 * this.resizeMonitor.offsetWidth,
-                nTop = -1 * this.resizeMonitor.offsetHeight;
-        
-            this.resizeMonitor.style.top = nTop + "px";
-            this.resizeMonitor.style.left =  nLeft + "px";
-
-        },
-
-        /**
-        * Sets the Module's header content to the string specified, or appends 
-        * the passed element to the header. If no header is present, one will 
-        * be automatically created. An empty string can be passed to the method
-        * to clear the contents of the header.
-        * 
-        * @method setHeader
-        * @param {String} headerContent The string used to set the header.
-        * As a convenience, non HTMLElement objects can also be passed into 
-        * the method, and will be treated as strings, with the header innerHTML
-        * set to their default toString implementations.
-        * <em>OR</em>
-        * @param {HTMLElement} headerContent The HTMLElement to append to 
-        * <em>OR</em>
-        * @param {DocumentFragment} headerContent The document fragment 
-        * containing elements which are to be added to the header
-        */
-        setHeader: function (headerContent) {
-            var oHeader = this.header || (this.header = createHeader());
-
-            if (headerContent.nodeName) {
-                oHeader.innerHTML = "";
-                oHeader.appendChild(headerContent);
-            } else {
-                oHeader.innerHTML = headerContent;
-            }
-
-            this.changeHeaderEvent.fire(headerContent);
-            this.changeContentEvent.fire();
-
-        },
-
-        /**
-        * Appends the passed element to the header. If no header is present, 
-        * one will be automatically created.
-        * @method appendToHeader
-        * @param {HTMLElement | DocumentFragment} element The element to 
-        * append to the header. In the case of a document fragment, the
-        * children of the fragment will be appended to the header.
-        */
-        appendToHeader: function (element) {
-            var oHeader = this.header || (this.header = createHeader());
-
-            oHeader.appendChild(element);
-
-            this.changeHeaderEvent.fire(element);
-            this.changeContentEvent.fire();
-
-        },
-
-        /**
-        * Sets the Module's body content to the HTML specified. 
-        * 
-        * If no body is present, one will be automatically created. 
-        * 
-        * An empty string can be passed to the method to clear the contents of the body.
-        * @method setBody
-        * @param {String} bodyContent The HTML used to set the body. 
-        * As a convenience, non HTMLElement objects can also be passed into 
-        * the method, and will be treated as strings, with the body innerHTML
-        * set to their default toString implementations.
-        * <em>OR</em>
-        * @param {HTMLElement} bodyContent The HTMLElement to add as the first and only
-        * child of the body element.
-        * <em>OR</em>
-        * @param {DocumentFragment} bodyContent The document fragment 
-        * containing elements which are to be added to the body
-        */
-        setBody: function (bodyContent) {
-            var oBody = this.body || (this.body = createBody());
-
-            if (bodyContent.nodeName) {
-                oBody.innerHTML = "";
-                oBody.appendChild(bodyContent);
-            } else {
-                oBody.innerHTML = bodyContent;
-            }
-
-            this.changeBodyEvent.fire(bodyContent);
-            this.changeContentEvent.fire();
-        },
-
-        /**
-        * Appends the passed element to the body. If no body is present, one 
-        * will be automatically created.
-        * @method appendToBody
-        * @param {HTMLElement | DocumentFragment} element The element to 
-        * append to the body. In the case of a document fragment, the
-        * children of the fragment will be appended to the body.
-        * 
-        */
-        appendToBody: function (element) {
-            var oBody = this.body || (this.body = createBody());
-        
-            oBody.appendChild(element);
-
-            this.changeBodyEvent.fire(element);
-            this.changeContentEvent.fire();
-
-        },
-        
-        /**
-        * Sets the Module's footer content to the HTML specified, or appends 
-        * the passed element to the footer. If no footer is present, one will 
-        * be automatically created. An empty string can be passed to the method
-        * to clear the contents of the footer.
-        * @method setFooter
-        * @param {String} footerContent The HTML used to set the footer 
-        * As a convenience, non HTMLElement objects can also be passed into 
-        * the method, and will be treated as strings, with the footer innerHTML
-        * set to their default toString implementations.
-        * <em>OR</em>
-        * @param {HTMLElement} footerContent The HTMLElement to append to 
-        * the footer
-        * <em>OR</em>
-        * @param {DocumentFragment} footerContent The document fragment containing 
-        * elements which are to be added to the footer
-        */
-        setFooter: function (footerContent) {
-
-            var oFooter = this.footer || (this.footer = createFooter());
-
-            if (footerContent.nodeName) {
-                oFooter.innerHTML = "";
-                oFooter.appendChild(footerContent);
-            } else {
-                oFooter.innerHTML = footerContent;
-            }
-
-            this.changeFooterEvent.fire(footerContent);
-            this.changeContentEvent.fire();
-        },
-
-        /**
-        * Appends the passed element to the footer. If no footer is present, 
-        * one will be automatically created.
-        * @method appendToFooter
-        * @param {HTMLElement | DocumentFragment} element The element to 
-        * append to the footer. In the case of a document fragment, the
-        * children of the fragment will be appended to the footer
-        */
-        appendToFooter: function (element) {
-
-            var oFooter = this.footer || (this.footer = createFooter());
-
-            oFooter.appendChild(element);
-
-            this.changeFooterEvent.fire(element);
-            this.changeContentEvent.fire();
-
-        },
-
-        /**
-        * Renders the Module by inserting the elements that are not already 
-        * in the main Module into their correct places. Optionally appends 
-        * the Module to the specified node prior to the render's execution. 
-        * <p>
-        * For Modules without existing markup, the appendToNode argument 
-        * is REQUIRED. If this argument is ommitted and the current element is 
-        * not present in the document, the function will return false, 
-        * indicating that the render was a failure.
-        * </p>
-        * <p>
-        * NOTE: As of 2.3.1, if the appendToNode is the document's body element
-        * then the module is rendered as the first child of the body element, 
-        * and not appended to it, to avoid Operation Aborted errors in IE when 
-        * rendering the module before window's load event is fired. You can 
-        * use the appendtodocumentbody configuration property to change this 
-        * to append to document.body if required.
-        * </p>
-        * @method render
-        * @param {String} appendToNode The element id to which the Module 
-        * should be appended to prior to rendering <em>OR</em>
-        * @param {HTMLElement} appendToNode The element to which the Module 
-        * should be appended to prior to rendering
-        * @param {HTMLElement} moduleElement OPTIONAL. The element that 
-        * represents the actual Standard Module container.
-        * @return {Boolean} Success or failure of the render
-        */
-        render: function (appendToNode, moduleElement) {
-
-            var me = this,
-                firstChild;
-
-            function appendTo(parentNode) {
-                if (typeof parentNode == "string") {
-                    parentNode = document.getElementById(parentNode);
-                }
-
-                if (parentNode) {
-                    me._addToParent(parentNode, me.element);
-                    me.appendEvent.fire();
-                }
-            }
-
-            this.beforeRenderEvent.fire();
-
-            if (! moduleElement) {
-                moduleElement = this.element;
-            }
-
-            if (appendToNode) {
-                appendTo(appendToNode);
-            } else { 
-                // No node was passed in. If the element is not already in the Dom, this fails
-                if (! Dom.inDocument(this.element)) {
-                    YAHOO.log("Render failed. Must specify appendTo node if " + " Module isn't already in the DOM.", "error");
-                    return false;
-                }
-            }
-
-            // Need to get everything into the DOM if it isn't already
-            if (this.header && ! Dom.inDocument(this.header)) {
-                // There is a header, but it's not in the DOM yet. Need to add it.
-                firstChild = moduleElement.firstChild;
-                if (firstChild) {
-                    moduleElement.insertBefore(this.header, firstChild);
-                } else {
-                    moduleElement.appendChild(this.header);
-                }
-            }
-
-            if (this.body && ! Dom.inDocument(this.body)) {
-                // There is a body, but it's not in the DOM yet. Need to add it.		
-                if (this.footer && Dom.isAncestor(this.moduleElement, this.footer)) {
-                    moduleElement.insertBefore(this.body, this.footer);
-                } else {
-                    moduleElement.appendChild(this.body);
-                }
-            }
-
-            if (this.footer && ! Dom.inDocument(this.footer)) {
-                // There is a footer, but it's not in the DOM yet. Need to add it.
-                moduleElement.appendChild(this.footer);
-            }
-
-            this.renderEvent.fire();
-            return true;
-        },
-
-        /**
-        * Removes the Module element from the DOM and sets all child elements 
-        * to null.
-        * @method destroy
-        */
-        destroy: function () {
-
-            var parent,
-                e;
-
-            if (this.element) {
-                Event.purgeElement(this.element, true);
-                parent = this.element.parentNode;
-            }
-
-            if (parent) {
-                parent.removeChild(this.element);
-            }
-        
-            this.element = null;
-            this.header = null;
-            this.body = null;
-            this.footer = null;
-
-            Module.textResizeEvent.unsubscribe(this.onDomResize, this);
-
-            this.cfg.destroy();
-            this.cfg = null;
-
-            this.destroyEvent.fire();
-        },
-
-        /**
-        * Shows the Module element by setting the visible configuration 
-        * property to true. Also fires two events: beforeShowEvent prior to 
-        * the visibility change, and showEvent after.
-        * @method show
-        */
-        show: function () {
-            this.cfg.setProperty("visible", true);
-        },
-
-        /**
-        * Hides the Module element by setting the visible configuration 
-        * property to false. Also fires two events: beforeHideEvent prior to 
-        * the visibility change, and hideEvent after.
-        * @method hide
-        */
-        hide: function () {
-            this.cfg.setProperty("visible", false);
-        },
-        
-        // BUILT-IN EVENT HANDLERS FOR MODULE //
-        /**
-        * Default event handler for changing the visibility property of a 
-        * Module. By default, this is achieved by switching the "display" style 
-        * between "block" and "none".
-        * This method is responsible for firing showEvent and hideEvent.
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        * @method configVisible
-        */
-        configVisible: function (type, args, obj) {
-            var visible = args[0];
-            if (visible) {
-                this.beforeShowEvent.fire();
-                Dom.setStyle(this.element, "display", "block");
-                this.showEvent.fire();
-            } else {
-                this.beforeHideEvent.fire();
-                Dom.setStyle(this.element, "display", "none");
-                this.hideEvent.fire();
-            }
-        },
-        
-        /**
-        * Default event handler for the "monitorresize" configuration property
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        * @method configMonitorResize
-        */
-        configMonitorResize: function (type, args, obj) {
-            var monitor = args[0];
-            if (monitor) {
-                this.initResizeMonitor();
-            } else {
-                Module.textResizeEvent.unsubscribe(this.onDomResize, this, true);
-                this.resizeMonitor = null;
-            }
-        },
-
-        /**
-         * This method is a protected helper, used when constructing the DOM structure for the module 
-         * to account for situations which may cause Operation Aborted errors in IE. It should not 
-         * be used for general DOM construction.
-         * <p>
-         * If the parentNode is not document.body, the element is appended as the last element.
-         * </p>
-         * <p>
-         * If the parentNode is document.body the element is added as the first child to help
-         * prevent Operation Aborted errors in IE.
-         * </p>
-         *
-         * @param {parentNode} The HTML element to which the element will be added
-         * @param {element} The HTML element to be added to parentNode's children
-         * @method _addToParent
-         * @protected
-         */
-        _addToParent: function(parentNode, element) {
-            if (!this.cfg.getProperty("appendtodocumentbody") && parentNode === document.body && parentNode.firstChild) {
-                parentNode.insertBefore(element, parentNode.firstChild);
-            } else {
-                parentNode.appendChild(element);
-            }
-        },
-
-        /**
-        * Returns a String representation of the Object.
-        * @method toString
-        * @return {String} The string representation of the Module
-        */
-        toString: function () {
-            return "Module " + this.id;
-        }
-    };
-
-    YAHOO.lang.augmentProto(Module, YAHOO.util.EventProvider);
-
-}());
-
-(function () {
-
-    /**
-    * Overlay is a Module that is absolutely positioned above the page flow. It 
-    * has convenience methods for positioning and sizing, as well as options for 
-    * controlling zIndex and constraining the Overlay's position to the current 
-    * visible viewport. Overlay also contains a dynamicly generated IFRAME which 
-    * is placed beneath it for Internet Explorer 6 and 5.x so that it will be 
-    * properly rendered above SELECT elements.
-    * @namespace YAHOO.widget
-    * @class Overlay
-    * @extends YAHOO.widget.Module
-    * @param {String} el The element ID representing the Overlay <em>OR</em>
-    * @param {HTMLElement} el The element representing the Overlay
-    * @param {Object} userConfig The configuration object literal containing 
-    * the configuration that should be set for this Overlay. See configuration 
-    * documentation for more details.
-    * @constructor
-    */
-    YAHOO.widget.Overlay = function (el, userConfig) {
-        YAHOO.widget.Overlay.superclass.constructor.call(this, el, userConfig);
-    };
-
-    var Lang = YAHOO.lang,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Module = YAHOO.widget.Module,
-        Event = YAHOO.util.Event,
-        Dom = YAHOO.util.Dom,
-        Config = YAHOO.util.Config,
-        UA = YAHOO.env.ua,
-        Overlay = YAHOO.widget.Overlay,
-
-        _SUBSCRIBE = "subscribe",
-        _UNSUBSCRIBE = "unsubscribe",
-
-        m_oIFrameTemplate,
-
-        /**
-        * Constant representing the name of the Overlay's events
-        * @property EVENT_TYPES
-        * @private
-        * @final
-        * @type Object
-        */
-        EVENT_TYPES = {
-            "BEFORE_MOVE": "beforeMove",
-            "MOVE": "move"
-        },
-
-        /**
-        * Constant representing the Overlay's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-
-            "X": { 
-                key: "x", 
-                validator: Lang.isNumber, 
-                suppressEvent: true, 
-                supercedes: ["iframe"]
-            },
-
-            "Y": { 
-                key: "y", 
-                validator: Lang.isNumber, 
-                suppressEvent: true, 
-                supercedes: ["iframe"]
-            },
-
-            "XY": { 
-                key: "xy", 
-                suppressEvent: true, 
-                supercedes: ["iframe"] 
-            },
-
-            "CONTEXT": { 
-                key: "context", 
-                suppressEvent: true, 
-                supercedes: ["iframe"] 
-            },
-
-            "FIXED_CENTER": { 
-                key: "fixedcenter", 
-                value: false, 
-                validator: Lang.isBoolean, 
-                supercedes: ["iframe", "visible"] 
-            },
-
-            "WIDTH": { 
-                key: "width",
-                suppressEvent: true,
-                supercedes: ["context", "fixedcenter", "iframe"]
-            }, 
-
-            "HEIGHT": { 
-                key: "height", 
-                suppressEvent: true, 
-                supercedes: ["context", "fixedcenter", "iframe"] 
-            },
-
-            "AUTO_FILL_HEIGHT" : {
-                key: "autofillheight",
-                supressEvent: true,
-                supercedes: ["height"],
-                value:"body"
-            },
-
-            "ZINDEX": { 
-                key: "zindex", 
-                value: null 
-            },
-
-            "CONSTRAIN_TO_VIEWPORT": { 
-                key: "constraintoviewport", 
-                value: false, 
-                validator: Lang.isBoolean, 
-                supercedes: ["iframe", "x", "y", "xy"]
-            }, 
-
-            "IFRAME": { 
-                key: "iframe", 
-                value: (UA.ie == 6 ? true : false), 
-                validator: Lang.isBoolean, 
-                supercedes: ["zindex"] 
-            },
-            
-            "PREVENT_CONTEXT_OVERLAP": {
-                key: "preventcontextoverlap",
-                value: false,
-                validator: Lang.isBoolean,  
-                supercedes: ["constraintoviewport"]
-            }
-            
-        };
-
-    /**
-    * The URL that will be placed in the iframe
-    * @property YAHOO.widget.Overlay.IFRAME_SRC
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.IFRAME_SRC = "javascript:false;";
-
-    /**
-    * Number representing how much the iframe shim should be offset from each 
-    * side of an Overlay instance, in pixels.
-    * @property YAHOO.widget.Overlay.IFRAME_SRC
-    * @default 3
-    * @static
-    * @final
-    * @type Number
-    */
-    Overlay.IFRAME_OFFSET = 3;
-
-    /**
-    * Number representing the minimum distance an Overlay instance should be 
-    * positioned relative to the boundaries of the browser's viewport, in pixels.
-    * @property YAHOO.widget.Overlay.VIEWPORT_OFFSET
-    * @default 10
-    * @static
-    * @final
-    * @type Number
-    */
-    Overlay.VIEWPORT_OFFSET = 10;
-
-    /**
-    * Constant representing the top left corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.TOP_LEFT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.TOP_LEFT = "tl";
-
-    /**
-    * Constant representing the top right corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.TOP_RIGHT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.TOP_RIGHT = "tr";
-
-    /**
-    * Constant representing the top bottom left corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.BOTTOM_LEFT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.BOTTOM_LEFT = "bl";
-
-    /**
-    * Constant representing the bottom right corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.BOTTOM_RIGHT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.BOTTOM_RIGHT = "br";
-
-    /**
-    * Constant representing the default CSS class used for an Overlay
-    * @property YAHOO.widget.Overlay.CSS_OVERLAY
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.CSS_OVERLAY = "yui-overlay";
-
-    /**
-     * Constant representing the names of the standard module elements
-     * used in the overlay.
-     * @property YAHOO.widget.Overlay.STD_MOD_RE
-     * @static
-     * @final
-     * @type RegExp
-     */
-    Overlay.STD_MOD_RE = /^\s*?(body|footer|header)\s*?$/i;
-
-    /**
-    * A singleton CustomEvent used for reacting to the DOM event for 
-    * window scroll
-    * @event YAHOO.widget.Overlay.windowScrollEvent
-    */
-    Overlay.windowScrollEvent = new CustomEvent("windowScroll");
-
-    /**
-    * A singleton CustomEvent used for reacting to the DOM event for
-    * window resize
-    * @event YAHOO.widget.Overlay.windowResizeEvent
-    */
-    Overlay.windowResizeEvent = new CustomEvent("windowResize");
-
-    /**
-    * The DOM event handler used to fire the CustomEvent for window scroll
-    * @method YAHOO.widget.Overlay.windowScrollHandler
-    * @static
-    * @param {DOMEvent} e The DOM scroll event
-    */
-    Overlay.windowScrollHandler = function (e) {
-        var t = Event.getTarget(e);
-
-        // - Webkit (Safari 2/3) and Opera 9.2x bubble scroll events from elements to window
-        // - FF2/3 and IE6/7, Opera 9.5x don't bubble scroll events from elements to window
-        // - IE doesn't recognize scroll registered on the document.
-        //
-        // Also, when document view is scrolled, IE doesn't provide a target, 
-        // rest of the browsers set target to window.document, apart from opera 
-        // which sets target to window.
-        if (!t || t === window || t === window.document) {
-            if (UA.ie) {
-
-                if (! window.scrollEnd) {
-                    window.scrollEnd = -1;
-                }
-
-                clearTimeout(window.scrollEnd);
-        
-                window.scrollEnd = setTimeout(function () { 
-                    Overlay.windowScrollEvent.fire(); 
-                }, 1);
-        
-            } else {
-                Overlay.windowScrollEvent.fire();
-            }
-        }
-    };
-
-    /**
-    * The DOM event handler used to fire the CustomEvent for window resize
-    * @method YAHOO.widget.Overlay.windowResizeHandler
-    * @static
-    * @param {DOMEvent} e The DOM resize event
-    */
-    Overlay.windowResizeHandler = function (e) {
-
-        if (UA.ie) {
-            if (! window.resizeEnd) {
-                window.resizeEnd = -1;
-            }
-
-            clearTimeout(window.resizeEnd);
-
-            window.resizeEnd = setTimeout(function () {
-                Overlay.windowResizeEvent.fire(); 
-            }, 100);
-        } else {
-            Overlay.windowResizeEvent.fire();
-        }
-    };
-
-    /**
-    * A boolean that indicated whether the window resize and scroll events have 
-    * already been subscribed to.
-    * @property YAHOO.widget.Overlay._initialized
-    * @private
-    * @type Boolean
-    */
-    Overlay._initialized = null;
-
-    if (Overlay._initialized === null) {
-        Event.on(window, "scroll", Overlay.windowScrollHandler);
-        Event.on(window, "resize", Overlay.windowResizeHandler);
-        Overlay._initialized = true;
-    }
-
-    /**
-     * Internal map of special event types, which are provided
-     * by the instance. It maps the event type to the custom event 
-     * instance. Contains entries for the "windowScroll", "windowResize" and
-     * "textResize" static container events.
-     *
-     * @property YAHOO.widget.Overlay._TRIGGER_MAP
-     * @type Object
-     * @static
-     * @private
-     */
-    Overlay._TRIGGER_MAP = {
-        "windowScroll" : Overlay.windowScrollEvent,
-        "windowResize" : Overlay.windowResizeEvent,
-        "textResize"   : Module.textResizeEvent
-    };
-
-    YAHOO.extend(Overlay, Module, {
-
-        /**
-         * <p>
-         * Array of default event types which will trigger
-         * context alignment for the Overlay class.
-         * </p>
-         * <p>The array is empty by default for Overlay,
-         * but maybe populated in future releases, so classes extending
-         * Overlay which need to define their own set of CONTEXT_TRIGGERS
-         * should concatenate their super class's prototype.CONTEXT_TRIGGERS 
-         * value with their own array of values.
-         * </p>
-         * <p>
-         * E.g.:
-         * <code>CustomOverlay.prototype.CONTEXT_TRIGGERS = YAHOO.widget.Overlay.prototype.CONTEXT_TRIGGERS.concat(["windowScroll"]);</code>
-         * </p>
-         * 
-         * @property CONTEXT_TRIGGERS
-         * @type Array
-         * @final
-         */
-        CONTEXT_TRIGGERS : [],
-
-        /**
-        * The Overlay initialization method, which is executed for Overlay and  
-        * all of its subclasses. This method is automatically called by the 
-        * constructor, and  sets up all DOM references for pre-existing markup, 
-        * and creates required markup if it is not already present.
-        * @method init
-        * @param {String} el The element ID representing the Overlay <em>OR</em>
-        * @param {HTMLElement} el The element representing the Overlay
-        * @param {Object} userConfig The configuration object literal 
-        * containing the configuration that should be set for this Overlay. 
-        * See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-
-            /*
-                 Note that we don't pass the user config in here yet because we
-                 only want it executed once, at the lowest subclass level
-            */
-
-            Overlay.superclass.init.call(this, el/*, userConfig*/);
-
-            this.beforeInitEvent.fire(Overlay);
-
-            Dom.addClass(this.element, Overlay.CSS_OVERLAY);
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-
-            if (this.platform == "mac" && UA.gecko) {
-
-                if (! Config.alreadySubscribed(this.showEvent,
-                    this.showMacGeckoScrollbars, this)) {
-
-                    this.showEvent.subscribe(this.showMacGeckoScrollbars, 
-                        this, true);
-
-                }
-
-                if (! Config.alreadySubscribed(this.hideEvent, 
-                    this.hideMacGeckoScrollbars, this)) {
-
-                    this.hideEvent.subscribe(this.hideMacGeckoScrollbars, 
-                        this, true);
-
-                }
-            }
-
-            this.initEvent.fire(Overlay);
-        },
-        
-        /**
-        * Initializes the custom events for Overlay which are fired  
-        * automatically at appropriate times by the Overlay class.
-        * @method initEvents
-        */
-        initEvents: function () {
-
-            Overlay.superclass.initEvents.call(this);
-
-            var SIGNATURE = CustomEvent.LIST;
-
-            /**
-            * CustomEvent fired before the Overlay is moved.
-            * @event beforeMoveEvent
-            * @param {Number} x x coordinate
-            * @param {Number} y y coordinate
-            */
-            this.beforeMoveEvent = this.createEvent(EVENT_TYPES.BEFORE_MOVE);
-            this.beforeMoveEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after the Overlay is moved.
-            * @event moveEvent
-            * @param {Number} x x coordinate
-            * @param {Number} y y coordinate
-            */
-            this.moveEvent = this.createEvent(EVENT_TYPES.MOVE);
-            this.moveEvent.signature = SIGNATURE;
-
-        },
-        
-        /**
-        * Initializes the class's configurable properties which can be changed 
-        * using the Overlay's Config object (cfg).
-        * @method initDefaultConfig
-        */
-        initDefaultConfig: function () {
-    
-            Overlay.superclass.initDefaultConfig.call(this);
-
-            var cfg = this.cfg;
-
-            // Add overlay config properties //
-            
-            /**
-            * The absolute x-coordinate position of the Overlay
-            * @config x
-            * @type Number
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.X.key, { 
-    
-                handler: this.configX, 
-                validator: DEFAULT_CONFIG.X.validator, 
-                suppressEvent: DEFAULT_CONFIG.X.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.X.supercedes
-    
-            });
-
-            /**
-            * The absolute y-coordinate position of the Overlay
-            * @config y
-            * @type Number
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.Y.key, {
-
-                handler: this.configY, 
-                validator: DEFAULT_CONFIG.Y.validator, 
-                suppressEvent: DEFAULT_CONFIG.Y.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.Y.supercedes
-
-            });
-
-            /**
-            * An array with the absolute x and y positions of the Overlay
-            * @config xy
-            * @type Number[]
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.XY.key, {
-                handler: this.configXY, 
-                suppressEvent: DEFAULT_CONFIG.XY.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.XY.supercedes
-            });
-
-            /**
-            * <p>
-            * The array of context arguments for context-sensitive positioning. 
-            * </p>
-            *
-            * <p>
-            * The format of the array is: <code>[contextElementOrId, overlayCorner, contextCorner, arrayOfTriggerEvents (optional)]</code>, the
-            * the 4 array elements described in detail below:
-            * </p>
-            *
-            * <dl>
-            * <dt>contextElementOrId &#60;String|HTMLElement&#62;</dt>
-            * <dd>A reference to the context element to which the overlay should be aligned (or it's id).</dd>
-            * <dt>overlayCorner &#60;String&#62;</dt>
-            * <dd>The corner of the overlay which is to be used for alignment. This corner will be aligned to the 
-            * corner of the context element defined by the "contextCorner" entry which follows. Supported string values are: 
-            * "tr" (top right), "tl" (top left), "br" (bottom right), or "bl" (bottom left).</dd>
-            * <dt>contextCorner &#60;String&#62;</dt>
-            * <dd>The corner of the context element which is to be used for alignment. Supported string values are the same ones listed for the "overlayCorner" entry above.</dd>
-            * <dt>arrayOfTriggerEvents (optional) &#60;Array[String|CustomEvent]&#62;</dt>
-            * <dd>
-            * <p>
-            * By default, context alignment is a one time operation, aligning the Overlay to the context element when context configuration property is set, or when the <a href="#method_align">align</a> 
-            * method is invoked. However, you can use the optional "arrayOfTriggerEvents" entry to define the list of events which should force the overlay to re-align itself with the context element. 
-            * This is useful in situations where the layout of the document may change, resulting in the context element's position being modified.
-            * </p>
-            * <p>
-            * The array can contain either event type strings for events the instance publishes (e.g. "beforeShow") or CustomEvent instances. Additionally the following
-            * 3 static container event types are also currently supported : <code>"windowResize", "windowScroll", "textResize"</code> (defined in <a href="#property__TRIGGER_MAP">_TRIGGER_MAP</a> private property).
-            * </p>
-            * </dd>
-            * </dl>
-            *
-            * <p>
-            * For example, setting this property to <code>["img1", "tl", "bl"]</code> will 
-            * align the Overlay's top left corner to the bottom left corner of the
-            * context element with id "img1".
-            * </p>
-            * <p>
-            * Adding the optional trigger values: <code>["img1", "tl", "bl", ["beforeShow", "windowResize"]]</code>,
-            * will re-align the overlay position, whenever the "beforeShow" or "windowResize" events are fired.
-            * </p>
-            *
-            * @config context
-            * @type Array
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.CONTEXT.key, {
-                handler: this.configContext, 
-                suppressEvent: DEFAULT_CONFIG.CONTEXT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.CONTEXT.supercedes
-            });
-
-            /**
-            * True if the Overlay should be anchored to the center of 
-            * the viewport.
-            * @config fixedcenter
-            * @type Boolean
-            * @default false
-            */
-            cfg.addProperty(DEFAULT_CONFIG.FIXED_CENTER.key, {
-                handler: this.configFixedCenter,
-                value: DEFAULT_CONFIG.FIXED_CENTER.value, 
-                validator: DEFAULT_CONFIG.FIXED_CENTER.validator, 
-                supercedes: DEFAULT_CONFIG.FIXED_CENTER.supercedes
-            });
-    
-            /**
-            * CSS width of the Overlay.
-            * @config width
-            * @type String
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.WIDTH.key, {
-                handler: this.configWidth, 
-                suppressEvent: DEFAULT_CONFIG.WIDTH.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.WIDTH.supercedes
-            });
-
-            /**
-            * CSS height of the Overlay.
-            * @config height
-            * @type String
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.HEIGHT.key, {
-                handler: this.configHeight, 
-                suppressEvent: DEFAULT_CONFIG.HEIGHT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.HEIGHT.supercedes
-            });
-
-            /**
-            * Standard module element which should auto fill out the height of the Overlay if the height config property is set.
-            * Supported values are "header", "body", "footer".
-            *
-            * @config autofillheight
-            * @type String
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.AUTO_FILL_HEIGHT.key, {
-                handler: this.configAutoFillHeight, 
-                value : DEFAULT_CONFIG.AUTO_FILL_HEIGHT.value,
-                validator : this._validateAutoFill,
-                suppressEvent: DEFAULT_CONFIG.AUTO_FILL_HEIGHT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.AUTO_FILL_HEIGHT.supercedes
-            });
-
-            /**
-            * CSS z-index of the Overlay.
-            * @config zIndex
-            * @type Number
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.ZINDEX.key, {
-                handler: this.configzIndex,
-                value: DEFAULT_CONFIG.ZINDEX.value
-            });
-
-            /**
-            * True if the Overlay should be prevented from being positioned 
-            * out of the viewport.
-            * @config constraintoviewport
-            * @type Boolean
-            * @default false
-            */
-            cfg.addProperty(DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.key, {
-
-                handler: this.configConstrainToViewport, 
-                value: DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.value, 
-                validator: DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.validator, 
-                supercedes: DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.supercedes
-
-            });
-
-            /**
-            * @config iframe
-            * @description Boolean indicating whether or not the Overlay should 
-            * have an IFRAME shim; used to prevent SELECT elements from 
-            * poking through an Overlay instance in IE6.  When set to "true", 
-            * the iframe shim is created when the Overlay instance is intially
-            * made visible.
-            * @type Boolean
-            * @default true for IE6 and below, false for all other browsers.
-            */
-            cfg.addProperty(DEFAULT_CONFIG.IFRAME.key, {
-
-                handler: this.configIframe, 
-                value: DEFAULT_CONFIG.IFRAME.value, 
-                validator: DEFAULT_CONFIG.IFRAME.validator, 
-                supercedes: DEFAULT_CONFIG.IFRAME.supercedes
-
-            });
-
-            /**
-            * @config preventcontextoverlap
-            * @description Boolean indicating whether or not the Overlay should overlap its 
-            * context element (defined using the "context" configuration property) when the 
-            * "constraintoviewport" configuration property is set to "true".
-            * @type Boolean
-            * @default false
-            */
-            cfg.addProperty(DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.key, {
-
-                value: DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.value, 
-                validator: DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.validator, 
-                supercedes: DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.supercedes
-
-            });
-
-        },
-
-        /**
-        * Moves the Overlay to the specified position. This function is  
-        * identical to calling this.cfg.setProperty("xy", [x,y]);
-        * @method moveTo
-        * @param {Number} x The Overlay's new x position
-        * @param {Number} y The Overlay's new y position
-        */
-        moveTo: function (x, y) {
-            this.cfg.setProperty("xy", [x, y]);
-        },
-
-        /**
-        * Adds a CSS class ("hide-scrollbars") and removes a CSS class 
-        * ("show-scrollbars") to the Overlay to fix a bug in Gecko on Mac OS X 
-        * (https://bugzilla.mozilla.org/show_bug.cgi?id=187435)
-        * @method hideMacGeckoScrollbars
-        */
-        hideMacGeckoScrollbars: function () {
-            Dom.replaceClass(this.element, "show-scrollbars", "hide-scrollbars");
-        },
-
-        /**
-        * Adds a CSS class ("show-scrollbars") and removes a CSS class 
-        * ("hide-scrollbars") to the Overlay to fix a bug in Gecko on Mac OS X 
-        * (https://bugzilla.mozilla.org/show_bug.cgi?id=187435)
-        * @method showMacGeckoScrollbars
-        */
-        showMacGeckoScrollbars: function () {
-            Dom.replaceClass(this.element, "hide-scrollbars", "show-scrollbars");
-        },
-
-        // BEGIN BUILT-IN PROPERTY EVENT HANDLERS //
-        /**
-        * The default event handler fired when the "visible" property is 
-        * changed.  This method is responsible for firing showEvent
-        * and hideEvent.
-        * @method configVisible
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configVisible: function (type, args, obj) {
-
-            var visible = args[0],
-                currentVis = Dom.getStyle(this.element, "visibility"),
-                effect = this.cfg.getProperty("effect"),
-                effectInstances = [],
-                isMacGecko = (this.platform == "mac" && UA.gecko),
-                alreadySubscribed = Config.alreadySubscribed,
-                eff, ei, e, i, j, k, h,
-                nEffects,
-                nEffectInstances;
-
-            if (currentVis == "inherit") {
-                e = this.element.parentNode;
-
-                while (e.nodeType != 9 && e.nodeType != 11) {
-                    currentVis = Dom.getStyle(e, "visibility");
-
-                    if (currentVis != "inherit") { 
-                        break; 
-                    }
-
-                    e = e.parentNode;
-                }
-
-                if (currentVis == "inherit") {
-                    currentVis = "visible";
-                }
-            }
-
-            if (effect) {
-                if (effect instanceof Array) {
-                    nEffects = effect.length;
-
-                    for (i = 0; i < nEffects; i++) {
-                        eff = effect[i];
-                        effectInstances[effectInstances.length] = 
-                            eff.effect(this, eff.duration);
-
-                    }
-                } else {
-                    effectInstances[effectInstances.length] = 
-                        effect.effect(this, effect.duration);
-                }
-            }
-
-
-            if (visible) { // Show
-                if (isMacGecko) {
-                    this.showMacGeckoScrollbars();
-                }
-
-                if (effect) { // Animate in
-                    if (visible) { // Animate in if not showing
-                        if (currentVis != "visible" || currentVis === "") {
-                            this.beforeShowEvent.fire();
-                            nEffectInstances = effectInstances.length;
-
-                            for (j = 0; j < nEffectInstances; j++) {
-                                ei = effectInstances[j];
-                                if (j === 0 && !alreadySubscribed(
-                                        ei.animateInCompleteEvent, 
-                                        this.showEvent.fire, this.showEvent)) {
-
-                                    /*
-                                         Delegate showEvent until end 
-                                         of animateInComplete
-                                    */
-
-                                    ei.animateInCompleteEvent.subscribe(
-                                     this.showEvent.fire, this.showEvent, true);
-                                }
-                                ei.animateIn();
-                            }
-                        }
-                    }
-                } else { // Show
-                    if (currentVis != "visible" || currentVis === "") {
-                        this.beforeShowEvent.fire();
-
-                        Dom.setStyle(this.element, "visibility", "visible");
-
-                        this.cfg.refireEvent("iframe");
-                        this.showEvent.fire();
-                    }
-                }
-            } else { // Hide
-
-                if (isMacGecko) {
-                    this.hideMacGeckoScrollbars();
-                }
-                    
-                if (effect) { // Animate out if showing
-                    if (currentVis == "visible") {
-                        this.beforeHideEvent.fire();
-
-                        nEffectInstances = effectInstances.length;
-                        for (k = 0; k < nEffectInstances; k++) {
-                            h = effectInstances[k];
-    
-                            if (k === 0 && !alreadySubscribed(
-                                h.animateOutCompleteEvent, this.hideEvent.fire, 
-                                this.hideEvent)) {
-    
-                                /*
-                                     Delegate hideEvent until end 
-                                     of animateOutComplete
-                                */
-    
-                                h.animateOutCompleteEvent.subscribe(
-                                    this.hideEvent.fire, this.hideEvent, true);
-    
-                            }
-                            h.animateOut();
-                        }
-
-                    } else if (currentVis === "") {
-                        Dom.setStyle(this.element, "visibility", "hidden");
-                    }
-
-                } else { // Simple hide
-
-                    if (currentVis == "visible" || currentVis === "") {
-                        this.beforeHideEvent.fire();
-                        Dom.setStyle(this.element, "visibility", "hidden");
-                        this.hideEvent.fire();
-                    }
-                }
-            }
-        },
-
-        /**
-        * Center event handler used for centering on scroll/resize, but only if 
-        * the Overlay is visible
-        * @method doCenterOnDOMEvent
-        */
-        doCenterOnDOMEvent: function () {
-            if (this.cfg.getProperty("visible")) {
-                this.center();
-            }
-        },
-
-        /**
-        * The default event handler fired when the "fixedcenter" property 
-        * is changed.
-        * @method configFixedCenter
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configFixedCenter: function (type, args, obj) {
-
-            var val = args[0],
-                alreadySubscribed = Config.alreadySubscribed,
-                windowResizeEvent = Overlay.windowResizeEvent,
-                windowScrollEvent = Overlay.windowScrollEvent;
-
-            if (val) {
-                this.center();
-
-                if (!alreadySubscribed(this.beforeShowEvent, this.center, this)) {
-                    this.beforeShowEvent.subscribe(this.center);
-                }
-
-                if (!alreadySubscribed(windowResizeEvent, this.doCenterOnDOMEvent, this)) {
-                    windowResizeEvent.subscribe(this.doCenterOnDOMEvent, this, true);
-                }
-
-                if (!alreadySubscribed(windowScrollEvent, this.doCenterOnDOMEvent, this)) {
-                    windowScrollEvent.subscribe(this.doCenterOnDOMEvent, this, true);
-                }
-
-            } else {
-                this.beforeShowEvent.unsubscribe(this.center);
-
-                windowResizeEvent.unsubscribe(this.doCenterOnDOMEvent, this);
-                windowScrollEvent.unsubscribe(this.doCenterOnDOMEvent, this);
-            }
-        },
-        
-        /**
-        * The default event handler fired when the "height" property is changed.
-        * @method configHeight
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configHeight: function (type, args, obj) {
-
-            var height = args[0],
-                el = this.element;
-
-            Dom.setStyle(el, "height", height);
-            this.cfg.refireEvent("iframe");
-        },
-
-        /**
-         * The default event handler fired when the "autofillheight" property is changed.
-         * @method configAutoFillHeight
-         *
-         * @param {String} type The CustomEvent type (usually the property name)
-         * @param {Object[]} args The CustomEvent arguments. For configuration 
-         * handlers, args[0] will equal the newly applied value for the property.
-         * @param {Object} obj The scope object. For configuration handlers, 
-         * this will usually equal the owner.
-         */
-        configAutoFillHeight: function (type, args, obj) {
-            var fillEl = args[0],
-                currEl = this.cfg.getProperty("autofillheight");
-
-            this.cfg.unsubscribeFromConfigEvent("height", this._autoFillOnHeightChange);
-            Module.textResizeEvent.unsubscribe("height", this._autoFillOnHeightChange);
-
-            if (currEl && fillEl !== currEl && this[currEl]) {
-                Dom.setStyle(this[currEl], "height", "");
-            }
-
-            if (fillEl) {
-                fillEl = Lang.trim(fillEl.toLowerCase());
-
-                this.cfg.subscribeToConfigEvent("height", this._autoFillOnHeightChange, this[fillEl], this);
-                Module.textResizeEvent.subscribe(this._autoFillOnHeightChange, this[fillEl], this);
-
-                this.cfg.setProperty("autofillheight", fillEl, true);
-            }
-        },
-
-        /**
-        * The default event handler fired when the "width" property is changed.
-        * @method configWidth
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configWidth: function (type, args, obj) {
-
-            var width = args[0],
-                el = this.element;
-
-            Dom.setStyle(el, "width", width);
-            this.cfg.refireEvent("iframe");
-        },
-
-        /**
-        * The default event handler fired when the "zIndex" property is changed.
-        * @method configzIndex
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configzIndex: function (type, args, obj) {
-
-            var zIndex = args[0],
-                el = this.element;
-
-            if (! zIndex) {
-                zIndex = Dom.getStyle(el, "zIndex");
-                if (! zIndex || isNaN(zIndex)) {
-                    zIndex = 0;
-                }
-            }
-
-            if (this.iframe || this.cfg.getProperty("iframe") === true) {
-                if (zIndex <= 0) {
-                    zIndex = 1;
-                }
-            }
-
-            Dom.setStyle(el, "zIndex", zIndex);
-            this.cfg.setProperty("zIndex", zIndex, true);
-
-            if (this.iframe) {
-                this.stackIframe();
-            }
-        },
-
-        /**
-        * The default event handler fired when the "xy" property is changed.
-        * @method configXY
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configXY: function (type, args, obj) {
-
-            var pos = args[0],
-                x = pos[0],
-                y = pos[1];
-
-            this.cfg.setProperty("x", x);
-            this.cfg.setProperty("y", y);
-
-            this.beforeMoveEvent.fire([x, y]);
-
-            x = this.cfg.getProperty("x");
-            y = this.cfg.getProperty("y");
-
-            YAHOO.log(("xy: " + [x, y]), "iframe");
-
-            this.cfg.refireEvent("iframe");
-            this.moveEvent.fire([x, y]);
-        },
-
-        /**
-        * The default event handler fired when the "x" property is changed.
-        * @method configX
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configX: function (type, args, obj) {
-
-            var x = args[0],
-                y = this.cfg.getProperty("y");
-
-            this.cfg.setProperty("x", x, true);
-            this.cfg.setProperty("y", y, true);
-
-            this.beforeMoveEvent.fire([x, y]);
-
-            x = this.cfg.getProperty("x");
-            y = this.cfg.getProperty("y");
-            
-            Dom.setX(this.element, x, true);
-
-            this.cfg.setProperty("xy", [x, y], true);
-
-            this.cfg.refireEvent("iframe");
-            this.moveEvent.fire([x, y]);
-        },
-
-        /**
-        * The default event handler fired when the "y" property is changed.
-        * @method configY
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configY: function (type, args, obj) {
-
-            var x = this.cfg.getProperty("x"),
-                y = args[0];
-
-            this.cfg.setProperty("x", x, true);
-            this.cfg.setProperty("y", y, true);
-
-            this.beforeMoveEvent.fire([x, y]);
-
-            x = this.cfg.getProperty("x");
-            y = this.cfg.getProperty("y");
-
-            Dom.setY(this.element, y, true);
-
-            this.cfg.setProperty("xy", [x, y], true);
-
-            this.cfg.refireEvent("iframe");
-            this.moveEvent.fire([x, y]);
-        },
-        
-        /**
-        * Shows the iframe shim, if it has been enabled.
-        * @method showIframe
-        */
-        showIframe: function () {
-
-            var oIFrame = this.iframe,
-                oParentNode;
-
-            if (oIFrame) {
-                oParentNode = this.element.parentNode;
-
-                if (oParentNode != oIFrame.parentNode) {
-                    this._addToParent(oParentNode, oIFrame);
-                }
-                oIFrame.style.display = "block";
-            }
-        },
-
-        /**
-        * Hides the iframe shim, if it has been enabled.
-        * @method hideIframe
-        */
-        hideIframe: function () {
-            if (this.iframe) {
-                this.iframe.style.display = "none";
-            }
-        },
-
-        /**
-        * Syncronizes the size and position of iframe shim to that of its 
-        * corresponding Overlay instance.
-        * @method syncIframe
-        */
-        syncIframe: function () {
-
-            var oIFrame = this.iframe,
-                oElement = this.element,
-                nOffset = Overlay.IFRAME_OFFSET,
-                nDimensionOffset = (nOffset * 2),
-                aXY;
-
-            if (oIFrame) {
-                // Size <iframe>
-                oIFrame.style.width = (oElement.offsetWidth + nDimensionOffset + "px");
-                oIFrame.style.height = (oElement.offsetHeight + nDimensionOffset + "px");
-
-                // Position <iframe>
-                aXY = this.cfg.getProperty("xy");
-
-                if (!Lang.isArray(aXY) || (isNaN(aXY[0]) || isNaN(aXY[1]))) {
-                    this.syncPosition();
-                    aXY = this.cfg.getProperty("xy");
-                }
-                Dom.setXY(oIFrame, [(aXY[0] - nOffset), (aXY[1] - nOffset)]);
-            }
-        },
-
-        /**
-         * Sets the zindex of the iframe shim, if it exists, based on the zindex of
-         * the Overlay element. The zindex of the iframe is set to be one less 
-         * than the Overlay element's zindex.
-         * 
-         * <p>NOTE: This method will not bump up the zindex of the Overlay element
-         * to ensure that the iframe shim has a non-negative zindex.
-         * If you require the iframe zindex to be 0 or higher, the zindex of 
-         * the Overlay element should be set to a value greater than 0, before 
-         * this method is called.
-         * </p>
-         * @method stackIframe
-         */
-        stackIframe: function () {
-            if (this.iframe) {
-                var overlayZ = Dom.getStyle(this.element, "zIndex");
-                if (!YAHOO.lang.isUndefined(overlayZ) && !isNaN(overlayZ)) {
-                    Dom.setStyle(this.iframe, "zIndex", (overlayZ - 1));
-                }
-            }
-        },
-
-        /**
-        * The default event handler fired when the "iframe" property is changed.
-        * @method configIframe
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configIframe: function (type, args, obj) {
-
-            var bIFrame = args[0];
-
-            function createIFrame() {
-
-                var oIFrame = this.iframe,
-                    oElement = this.element,
-                    oParent;
-
-                if (!oIFrame) {
-                    if (!m_oIFrameTemplate) {
-                        m_oIFrameTemplate = document.createElement("iframe");
-
-                        if (this.isSecure) {
-                            m_oIFrameTemplate.src = Overlay.IFRAME_SRC;
-                        }
-
-                        /*
-                            Set the opacity of the <iframe> to 0 so that it 
-                            doesn't modify the opacity of any transparent 
-                            elements that may be on top of it (like a shadow).
-                        */
-                        if (UA.ie) {
-                            m_oIFrameTemplate.style.filter = "alpha(opacity=0)";
-                            /*
-                                 Need to set the "frameBorder" property to 0 
-                                 supress the default <iframe> border in IE.  
-                                 Setting the CSS "border" property alone 
-                                 doesn't supress it.
-                            */
-                            m_oIFrameTemplate.frameBorder = 0;
-                        }
-                        else {
-                            m_oIFrameTemplate.style.opacity = "0";
-                        }
-
-                        m_oIFrameTemplate.style.position = "absolute";
-                        m_oIFrameTemplate.style.border = "none";
-                        m_oIFrameTemplate.style.margin = "0";
-                        m_oIFrameTemplate.style.padding = "0";
-                        m_oIFrameTemplate.style.display = "none";
-                    }
-
-                    oIFrame = m_oIFrameTemplate.cloneNode(false);
-                    oParent = oElement.parentNode;
-
-                    var parentNode = oParent || document.body;
-
-                    this._addToParent(parentNode, oIFrame);
-                    this.iframe = oIFrame;
-                }
-
-                /*
-                     Show the <iframe> before positioning it since the "setXY" 
-                     method of DOM requires the element be in the document 
-                     and visible.
-                */
-                this.showIframe();
-
-                /*
-                     Syncronize the size and position of the <iframe> to that 
-                     of the Overlay.
-                */
-                this.syncIframe();
-                this.stackIframe();
-
-                // Add event listeners to update the <iframe> when necessary
-                if (!this._hasIframeEventListeners) {
-                    this.showEvent.subscribe(this.showIframe);
-                    this.hideEvent.subscribe(this.hideIframe);
-                    this.changeContentEvent.subscribe(this.syncIframe);
-
-                    this._hasIframeEventListeners = true;
-                }
-            }
-
-            function onBeforeShow() {
-                createIFrame.call(this);
-                this.beforeShowEvent.unsubscribe(onBeforeShow);
-                this._iframeDeferred = false;
-            }
-
-            if (bIFrame) { // <iframe> shim is enabled
-
-                if (this.cfg.getProperty("visible")) {
-                    createIFrame.call(this);
-                } else {
-                    if (!this._iframeDeferred) {
-                        this.beforeShowEvent.subscribe(onBeforeShow);
-                        this._iframeDeferred = true;
-                    }
-                }
-
-            } else {    // <iframe> shim is disabled
-                this.hideIframe();
-
-                if (this._hasIframeEventListeners) {
-                    this.showEvent.unsubscribe(this.showIframe);
-                    this.hideEvent.unsubscribe(this.hideIframe);
-                    this.changeContentEvent.unsubscribe(this.syncIframe);
-
-                    this._hasIframeEventListeners = false;
-                }
-            }
-        },
-
-        /**
-         * Set's the container's XY value from DOM if not already set.
-         * 
-         * Differs from syncPosition, in that the XY value is only sync'd with DOM if 
-         * not already set. The method also refire's the XY config property event, so any
-         * beforeMove, Move event listeners are invoked.
-         * 
-         * @method _primeXYFromDOM
-         * @protected
-         */
-        _primeXYFromDOM : function() {
-            if (YAHOO.lang.isUndefined(this.cfg.getProperty("xy"))) {
-                // Set CFG XY based on DOM XY
-                this.syncPosition();
-                // Account for XY being set silently in syncPosition (no moveTo fired/called)
-                this.cfg.refireEvent("xy");
-                this.beforeShowEvent.unsubscribe(this._primeXYFromDOM);
-            }
-        },
-
-        /**
-        * The default event handler fired when the "constraintoviewport" 
-        * property is changed.
-        * @method configConstrainToViewport
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for 
-        * the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configConstrainToViewport: function (type, args, obj) {
-            var val = args[0];
-
-            if (val) {
-                if (! Config.alreadySubscribed(this.beforeMoveEvent, this.enforceConstraints, this)) {
-                    this.beforeMoveEvent.subscribe(this.enforceConstraints, this, true);
-                }
-                if (! Config.alreadySubscribed(this.beforeShowEvent, this._primeXYFromDOM)) {
-                    this.beforeShowEvent.subscribe(this._primeXYFromDOM);
-                }
-            } else {
-                this.beforeShowEvent.unsubscribe(this._primeXYFromDOM);
-                this.beforeMoveEvent.unsubscribe(this.enforceConstraints, this);
-            }
-        },
-
-         /**
-        * The default event handler fired when the "context" property
-        * is changed.
-        * 
-        * @method configContext
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configContext: function (type, args, obj) {
-
-            var contextArgs = args[0],
-                contextEl,
-                elementMagnetCorner,
-                contextMagnetCorner,
-                triggers,
-                defTriggers = this.CONTEXT_TRIGGERS;
-
-            if (contextArgs) {
-
-                contextEl = contextArgs[0];
-                elementMagnetCorner = contextArgs[1];
-                contextMagnetCorner = contextArgs[2];
-                triggers = contextArgs[3];
-
-                if (defTriggers && defTriggers.length > 0) {
-                    triggers = (triggers || []).concat(defTriggers);
-                }
-
-                if (contextEl) {
-                    if (typeof contextEl == "string") {
-                        this.cfg.setProperty("context", [
-                                document.getElementById(contextEl), 
-                                elementMagnetCorner,
-                                contextMagnetCorner,
-                                triggers ],
-                                true);
-                    }
-
-                    if (elementMagnetCorner && contextMagnetCorner) {
-                        this.align(elementMagnetCorner, contextMagnetCorner);
-                    }
-
-                    if (this._contextTriggers) {
-                        // Unsubscribe Old Set
-                        this._processTriggers(this._contextTriggers, _UNSUBSCRIBE, this._alignOnTrigger);
-                    }
-
-                    if (triggers) {
-                        // Subscribe New Set
-                        this._processTriggers(triggers, _SUBSCRIBE, this._alignOnTrigger);
-                        this._contextTriggers = triggers;
-                    }
-                }
-            }
-        },
-
-        /**
-         * Custom Event handler for context alignment triggers. Invokes the align method
-         * 
-         * @method _alignOnTrigger
-         * @protected
-         * 
-         * @param {String} type The event type (not used by the default implementation)
-         * @param {Any[]} args The array of arguments for the trigger event (not used by the default implementation)
-         */
-        _alignOnTrigger: function(type, args) {
-            this.align();
-        },
-
-        /**
-         * Helper method to locate the custom event instance for the event name string
-         * passed in. As a convenience measure, any custom events passed in are returned.
-         *
-         * @method _findTriggerCE
-         * @private
-         *
-         * @param {String|CustomEvent} t Either a CustomEvent, or event type (e.g. "windowScroll") for which a 
-         * custom event instance needs to be looked up from the Overlay._TRIGGER_MAP.
-         */
-        _findTriggerCE : function(t) {
-            var tce = null;
-            if (t instanceof CustomEvent) {
-                tce = t;
-            } else if (Overlay._TRIGGER_MAP[t]) {
-                tce = Overlay._TRIGGER_MAP[t];
-            }
-            return tce;
-        },
-
-        /**
-         * Utility method that subscribes or unsubscribes the given 
-         * function from the list of trigger events provided.
-         *
-         * @method _processTriggers
-         * @protected 
-         *
-         * @param {Array[String|CustomEvent]} triggers An array of either CustomEvents, event type strings 
-         * (e.g. "beforeShow", "windowScroll") to/from which the provided function should be 
-         * subscribed/unsubscribed respectively.
-         *
-         * @param {String} mode Either "subscribe" or "unsubscribe", specifying whether or not
-         * we are subscribing or unsubscribing trigger listeners
-         * 
-         * @param {Function} fn The function to be subscribed/unsubscribed to/from the trigger event.
-         * Context is always set to the overlay instance, and no additional object argument 
-         * get passed to the subscribed function.
-         */
-        _processTriggers : function(triggers, mode, fn) {
-            var t, tce;
-
-            for (var i = 0, l = triggers.length; i < l; ++i) {
-                t = triggers[i];
-                tce = this._findTriggerCE(t);
-                if (tce) {
-                    tce[mode](fn, this, true);
-                } else {
-                    this[mode](t, fn);
-                }
-            }
-        },
-
-        // END BUILT-IN PROPERTY EVENT HANDLERS //
-        /**
-        * Aligns the Overlay to its context element using the specified corner 
-        * points (represented by the constants TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, 
-        * and BOTTOM_RIGHT.
-        * @method align
-        * @param {String} elementAlign  The String representing the corner of 
-        * the Overlay that should be aligned to the context element
-        * @param {String} contextAlign  The corner of the context element 
-        * that the elementAlign corner should stick to.
-        */
-        align: function (elementAlign, contextAlign) {
-
-            var contextArgs = this.cfg.getProperty("context"),
-                me = this,
-                context,
-                element,
-                contextRegion;
-
-            function doAlign(v, h) {
-    
-                switch (elementAlign) {
-    
-                case Overlay.TOP_LEFT:
-                    me.moveTo(h, v);
-                    break;
-    
-                case Overlay.TOP_RIGHT:
-                    me.moveTo((h - element.offsetWidth), v);
-                    break;
-    
-                case Overlay.BOTTOM_LEFT:
-                    me.moveTo(h, (v - element.offsetHeight));
-                    break;
-    
-                case Overlay.BOTTOM_RIGHT:
-                    me.moveTo((h - element.offsetWidth), 
-                        (v - element.offsetHeight));
-                    break;
-                }
-            }
-    
-    
-            if (contextArgs) {
-            
-                context = contextArgs[0];
-                element = this.element;
-                me = this;
-                
-                if (! elementAlign) {
-                    elementAlign = contextArgs[1];
-                }
-                
-                if (! contextAlign) {
-                    contextAlign = contextArgs[2];
-                }
-                
-                if (element && context) {
-                    contextRegion = Dom.getRegion(context);
-
-                    switch (contextAlign) {
-    
-                    case Overlay.TOP_LEFT:
-                        doAlign(contextRegion.top, contextRegion.left);
-                        break;
-    
-                    case Overlay.TOP_RIGHT:
-                        doAlign(contextRegion.top, contextRegion.right);
-                        break;
-    
-                    case Overlay.BOTTOM_LEFT:
-                        doAlign(contextRegion.bottom, contextRegion.left);
-                        break;
-    
-                    case Overlay.BOTTOM_RIGHT:
-                        doAlign(contextRegion.bottom, contextRegion.right);
-                        break;
-                    }
-    
-                }
-    
-            }
-            
-        },
-
-        /**
-        * The default event handler executed when the moveEvent is fired, if the 
-        * "constraintoviewport" is set to true.
-        * @method enforceConstraints
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        enforceConstraints: function (type, args, obj) {
-            var pos = args[0];
-            
-            var cXY = this.getConstrainedXY(pos[0], pos[1]);
-            this.cfg.setProperty("x", cXY[0], true);
-            this.cfg.setProperty("y", cXY[1], true);
-            this.cfg.setProperty("xy", cXY, true);
-        },
-
-
-        /**
-         * Given x coordinate value, returns the calculated x coordinate required to 
-         * position the Overlay if it is to be constrained to the viewport, based on the 
-         * current element size, viewport dimensions and scroll values.
-         *
-         * @param {Number} x The X coordinate value to be constrained
-         * @return {Number} The constrained x coordinate
-         */		
-        getConstrainedX: function (x) {
-
-            var oOverlay = this,
-                oOverlayEl = oOverlay.element,
-                nOverlayOffsetWidth = oOverlayEl.offsetWidth,
-
-                nViewportOffset = Overlay.VIEWPORT_OFFSET,
-                viewPortWidth = Dom.getViewportWidth(),
-                scrollX = Dom.getDocumentScrollLeft(),
-
-                bCanConstrain = (nOverlayOffsetWidth + nViewportOffset < viewPortWidth),
-
-                aContext = this.cfg.getProperty("context"),
-                oContextEl,
-                nContextElX,
-                nContextElWidth,
-
-                bFlipped = false,
-
-                nLeftRegionWidth,
-                nRightRegionWidth,
-
-                leftConstraint,
-                rightConstraint,
-
-                xNew = x,
-
-                oOverlapPositions = {
-
-                    "tltr": true,
-                    "blbr": true,
-                    "brbl": true,
-                    "trtl": true
-                
-                };
-
-
-            var flipHorizontal = function () {
-            
-                var nNewX;
-            
-                if ((oOverlay.cfg.getProperty("x") - scrollX) > nContextElX) {
-                    nNewX = (nContextElX - nOverlayOffsetWidth);
-                }
-                else {
-                    nNewX = (nContextElX + nContextElWidth);
-                }
-                
-    
-                oOverlay.cfg.setProperty("x", (nNewX + scrollX), true);
-    
-                return nNewX;
-    
-            };
-
-
-
-            /*
-                 Uses the context element's position to calculate the availble width 
-                 to the right and left of it to display its corresponding Overlay.
-            */
-
-            var getDisplayRegionWidth = function () {
-
-                // The Overlay is to the right of the context element
-
-                if ((oOverlay.cfg.getProperty("x") - scrollX) > nContextElX) {
-                    return (nRightRegionWidth - nViewportOffset);
-                }
-                else {	// The Overlay is to the left of the context element
-                    return (nLeftRegionWidth - nViewportOffset);
-                }
-            
-            };
-    
-
-            /*
-                Positions the Overlay to the left or right of the context element so that it remains 
-                inside the viewport.
-            */
-    
-            var setHorizontalPosition = function () {
-            
-                var nDisplayRegionWidth = getDisplayRegionWidth(),
-                    fnReturnVal;
-
-                if (nOverlayOffsetWidth > nDisplayRegionWidth) {
-        
-                    if (bFlipped) {
-        
-                        /*
-                             All possible positions and values have been 
-                             tried, but none were successful, so fall back 
-                             to the original size and position.
-                        */
-    
-                        flipHorizontal();
-                        
-                    }
-                    else {
-        
-                        flipHorizontal();
-
-                        bFlipped = true;
-        
-                        fnReturnVal = setHorizontalPosition();
-        
-                    }
-                
-                }
-        
-                return fnReturnVal;
-            
-            };
-
-
-            if (this.cfg.getProperty("preventcontextoverlap") && aContext && 
-				oOverlapPositions[(aContext[1] + aContext[2])]) {
-
-                if (bCanConstrain) {
-
-                    oContextEl = aContext[0];
-                    nContextElX = Dom.getX(oContextEl) - scrollX;
-                    nContextElWidth = oContextEl.offsetWidth;
-                    nLeftRegionWidth = nContextElX;
-                    nRightRegionWidth = (viewPortWidth - (nContextElX + nContextElWidth));
-    
-                    setHorizontalPosition();
-
-                }
-                
-                xNew = this.cfg.getProperty("x");
-            
-            }
-            else {
-
-                if (bCanConstrain) {
-    
-                    leftConstraint = scrollX + nViewportOffset;
-                    rightConstraint = 
-                        scrollX + viewPortWidth - nOverlayOffsetWidth - nViewportOffset;
-    
-                    if (x < leftConstraint) {
-                        xNew = leftConstraint;
-                    } else if (x > rightConstraint) {
-                        xNew = rightConstraint;
-                    }
-                } else {
-                    xNew = nViewportOffset + scrollX;
-                }
-            
-            }
-
-            return xNew;
-        
-        },
-
-
-        /**
-         * Given y coordinate value, returns the calculated y coordinate required to 
-         * position the Overlay if it is to be constrained to the viewport, based on the 
-         * current element size, viewport dimensions and scroll values.
-         *
-         * @param {Number} y The Y coordinate value to be constrained
-         * @return {Number} The constrained y coordinate
-         */		
-        getConstrainedY: function (y) {
-
-            var oOverlay = this,
-                oOverlayEl = oOverlay.element,
-                nOverlayOffsetHeight = oOverlayEl.offsetHeight,
-            
-                nViewportOffset = Overlay.VIEWPORT_OFFSET,
-                viewPortHeight = Dom.getViewportHeight(),
-                scrollY = Dom.getDocumentScrollTop(),
-
-                bCanConstrain = (nOverlayOffsetHeight + nViewportOffset < viewPortHeight),
-
-                aContext = this.cfg.getProperty("context"),
-                oContextEl,
-                nContextElY,
-                nContextElHeight,
-
-                bFlipped = false,
-
-                nTopRegionHeight,
-                nBottomRegionHeight,
-
-                topConstraint,
-                bottomConstraint,
-
-                yNew = y,
-                
-                oOverlapPositions = {
-                    "trbr": true,
-                    "tlbl": true,
-                    "bltl": true,
-                    "brtr": true
-                };
-
-
-            var flipVertical = function () {
-
-                var nNewY;
-            
-                // The Overlay is below the context element, flip it above
-                if ((oOverlay.cfg.getProperty("y") - scrollY) > nContextElY) { 
-                    nNewY = (nContextElY - nOverlayOffsetHeight);
-                }
-                else {	// The Overlay is above the context element, flip it below
-                    nNewY = (nContextElY + nContextElHeight);
-                }
-    
-                oOverlay.cfg.setProperty("y", (nNewY + scrollY), true);
-                
-                return nNewY;
-            
-            };
-
-
-            /*
-                 Uses the context element's position to calculate the availble height 
-                 above and below it to display its corresponding Overlay.
-            */
-
-            var getDisplayRegionHeight = function () {
-
-                // The Overlay is below the context element
-                if ((oOverlay.cfg.getProperty("y") - scrollY) > nContextElY) {
-                    return (nBottomRegionHeight - nViewportOffset);				
-                }
-                else {	// The Overlay is above the context element
-                    return (nTopRegionHeight - nViewportOffset);				
-                }
-        
-            };
-
-
-            /*
-                Trys to place the Overlay in the best possible position (either above or 
-                below its corresponding context element).
-            */
-        
-            var setVerticalPosition = function () {
-        
-                var nDisplayRegionHeight = getDisplayRegionHeight(),
-                    fnReturnVal;
-                    
-
-                if (nOverlayOffsetHeight > nDisplayRegionHeight) {
-                   
-                    if (bFlipped) {
-        
-                        /*
-                             All possible positions and values for the 
-                             "maxheight" configuration property have been 
-                             tried, but none were successful, so fall back 
-                             to the original size and position.
-                        */
-    
-                        flipVertical();
-                        
-                    }
-                    else {
-        
-                        flipVertical();
-
-                        bFlipped = true;
-        
-                        fnReturnVal = setVerticalPosition();
-        
-                    }
-                
-                }
-        
-                return fnReturnVal;
-        
-            };
-
-
-            if (this.cfg.getProperty("preventcontextoverlap") && aContext && 
-            	oOverlapPositions[(aContext[1] + aContext[2])]) {
-
-                if (bCanConstrain) {
-
-                    oContextEl = aContext[0];
-                    nContextElHeight = oContextEl.offsetHeight;
-                    nContextElY = (Dom.getY(oContextEl) - scrollY);
-    
-                    nTopRegionHeight = nContextElY;
-                    nBottomRegionHeight = (viewPortHeight - (nContextElY + nContextElHeight));
-    
-                    setVerticalPosition();
-                
-                }
-
-                yNew = oOverlay.cfg.getProperty("y");
-
-            }
-            else {
-
-                if (bCanConstrain) {
-    
-                    topConstraint = scrollY + nViewportOffset;
-                    bottomConstraint = 
-                        scrollY + viewPortHeight - nOverlayOffsetHeight - nViewportOffset;
-    
-                    if (y < topConstraint) {
-                        yNew  = topConstraint;
-                    } else if (y  > bottomConstraint) {
-                        yNew  = bottomConstraint;
-                    }
-                } else {
-                    yNew = nViewportOffset + scrollY;
-                }
-
-            }
-
-            return yNew;
-        },
-
-
-        /**
-         * Given x, y coordinate values, returns the calculated coordinates required to 
-         * position the Overlay if it is to be constrained to the viewport, based on the 
-         * current element size, viewport dimensions and scroll values.
-         *
-         * @param {Number} x The X coordinate value to be constrained
-         * @param {Number} y The Y coordinate value to be constrained
-         * @return {Array} The constrained x and y coordinates at index 0 and 1 respectively;
-         */
-        getConstrainedXY: function(x, y) {
-            return [this.getConstrainedX(x), this.getConstrainedY(y)];
-        },
-
-        /**
-        * Centers the container in the viewport.
-        * @method center
-        */
-        center: function () {
-
-            var nViewportOffset = Overlay.VIEWPORT_OFFSET,
-                elementWidth = this.element.offsetWidth,
-                elementHeight = this.element.offsetHeight,
-                viewPortWidth = Dom.getViewportWidth(),
-                viewPortHeight = Dom.getViewportHeight(),
-                x,
-                y;
-
-            if (elementWidth < viewPortWidth) {
-                x = (viewPortWidth / 2) - (elementWidth / 2) + Dom.getDocumentScrollLeft();
-            } else {
-                x = nViewportOffset + Dom.getDocumentScrollLeft();
-            }
-
-            if (elementHeight < viewPortHeight) {
-                y = (viewPortHeight / 2) - (elementHeight / 2) + Dom.getDocumentScrollTop();
-            } else {
-                y = nViewportOffset + Dom.getDocumentScrollTop();
-            }
-
-            this.cfg.setProperty("xy", [parseInt(x, 10), parseInt(y, 10)]);
-            this.cfg.refireEvent("iframe");
-        },
-
-        /**
-        * Synchronizes the Panel's "xy", "x", and "y" properties with the 
-        * Panel's position in the DOM. This is primarily used to update  
-        * position information during drag & drop.
-        * @method syncPosition
-        */
-        syncPosition: function () {
-
-            var pos = Dom.getXY(this.element);
-
-            this.cfg.setProperty("x", pos[0], true);
-            this.cfg.setProperty("y", pos[1], true);
-            this.cfg.setProperty("xy", pos, true);
-
-        },
-
-        /**
-        * Event handler fired when the resize monitor element is resized.
-        * @method onDomResize
-        * @param {DOMEvent} e The resize DOM event
-        * @param {Object} obj The scope object
-        */
-        onDomResize: function (e, obj) {
-
-            var me = this;
-
-            Overlay.superclass.onDomResize.call(this, e, obj);
-
-            setTimeout(function () {
-                me.syncPosition();
-                me.cfg.refireEvent("iframe");
-                me.cfg.refireEvent("context");
-            }, 0);
-        },
-
-        /**
-         * Determines the content box height of the given element (height of the element, without padding or borders) in pixels.
-         *
-         * @method _getComputedHeight
-         * @private
-         * @param {HTMLElement} el The element for which the content height needs to be determined
-         * @return {Number} The content box height of the given element, or null if it could not be determined.
-         */
-        _getComputedHeight : (function() {
-
-            if (document.defaultView && document.defaultView.getComputedStyle) {
-                return function(el) {
-                    var height = null;
-                    if (el.ownerDocument && el.ownerDocument.defaultView) {
-                        var computed = el.ownerDocument.defaultView.getComputedStyle(el, '');
-                        if (computed) {
-                            height = parseInt(computed.height, 10);
-                        }
-                    }
-                    return (Lang.isNumber(height)) ? height : null;
-                };
-            } else {
-                return function(el) {
-                    var height = null;
-                    if (el.style.pixelHeight) {
-                        height = el.style.pixelHeight;
-                    }
-                    return (Lang.isNumber(height)) ? height : null;
-                };
-            }
-        })(),
-
-        /**
-         * autofillheight validator. Verifies that the autofill value is either null 
-         * or one of the strings : "body", "header" or "footer".
-         *
-         * @method _validateAutoFillHeight
-         * @protected
-         * @param {String} val
-         * @return true, if valid, false otherwise
-         */
-        _validateAutoFillHeight : function(val) {
-            return (!val) || (Lang.isString(val) && Overlay.STD_MOD_RE.test(val));
-        },
-
-        /**
-         * The default custom event handler executed when the overlay's height is changed, 
-         * if the autofillheight property has been set.
-         *
-         * @method _autoFillOnHeightChange
-         * @protected
-         * @param {String} type The event type
-         * @param {Array} args The array of arguments passed to event subscribers
-         * @param {HTMLElement} el The header, body or footer element which is to be resized to fill
-         * out the containers height
-         */
-        _autoFillOnHeightChange : function(type, args, el) {
-            this.fillHeight(el);
-        },
-
-        /**
-         * Returns the sub-pixel height of the el, using getBoundingClientRect, if available,
-         * otherwise returns the offsetHeight
-         * @method _getPreciseHeight
-         * @private
-         * @param {HTMLElement} el
-         * @return {Float} The sub-pixel height if supported by the browser, else the rounded height.
-         */
-        _getPreciseHeight : function(el) {
-            var height = el.offsetHeight;
-
-            if (el.getBoundingClientRect) {
-                var rect = el.getBoundingClientRect();
-                height = rect.bottom - rect.top;
-            }
-
-            return height;
-        },
-
-        /**
-         * <p>
-         * Sets the height on the provided header, body or footer element to 
-         * fill out the height of the container. It determines the height of the 
-         * containers content box, based on it's configured height value, and 
-         * sets the height of the autofillheight element to fill out any 
-         * space remaining after the other standard module element heights 
-         * have been accounted for.
-         * </p>
-         * <p><strong>NOTE:</strong> This method is not designed to work if an explicit 
-         * height has not been set on the container, since for an "auto" height container, 
-         * the heights of the header/body/footer will drive the height of the container.</p>
-         *
-         * @method fillHeight
-         * @param {HTMLElement} el The element which should be resized to fill out the height
-         * of the container element.
-         */
-        fillHeight : function(el) {
-            if (el) {
-                var container = this.innerElement || this.element,
-                    containerEls = [this.header, this.body, this.footer],
-                    containerEl,
-                    total = 0,
-                    filled = 0,
-                    remaining = 0,
-                    validEl = false;
-
-                for (var i = 0, l = containerEls.length; i < l; i++) {
-                    containerEl = containerEls[i];
-                    if (containerEl) {
-                        if (el !== containerEl) {
-                            filled += this._getPreciseHeight(containerEl);
-                        } else {
-                            validEl = true;
-                        }
-                    }
-                }
-
-                if (validEl) {
-
-                    if (UA.ie || UA.opera) {
-                        // Need to set height to 0, to allow height to be reduced
-                        Dom.setStyle(el, 'height', 0 + 'px');
-                    }
-
-                    total = this._getComputedHeight(container);
-
-                    // Fallback, if we can't get computed value for content height
-                    if (total === null) {
-                        Dom.addClass(container, "yui-override-padding");
-                        total = container.clientHeight; // Content, No Border, 0 Padding (set by yui-override-padding)
-                        Dom.removeClass(container, "yui-override-padding");
-                    }
-    
-                    remaining = total - filled;
-    
-                    Dom.setStyle(el, "height", remaining + "px");
-    
-                    // Re-adjust height if required, to account for el padding and border
-                    if (el.offsetHeight != remaining) {
-                        remaining = remaining - (el.offsetHeight - remaining);
-                    }
-                    Dom.setStyle(el, "height", remaining + "px");
-                }
-            }
-        },
-
-        /**
-        * Places the Overlay on top of all other instances of 
-        * YAHOO.widget.Overlay.
-        * @method bringToTop
-        */
-        bringToTop: function () {
-
-            var aOverlays = [],
-                oElement = this.element;
-
-            function compareZIndexDesc(p_oOverlay1, p_oOverlay2) {
-
-                var sZIndex1 = Dom.getStyle(p_oOverlay1, "zIndex"),
-                    sZIndex2 = Dom.getStyle(p_oOverlay2, "zIndex"),
-
-                    nZIndex1 = (!sZIndex1 || isNaN(sZIndex1)) ? 0 : parseInt(sZIndex1, 10),
-                    nZIndex2 = (!sZIndex2 || isNaN(sZIndex2)) ? 0 : parseInt(sZIndex2, 10);
-
-                if (nZIndex1 > nZIndex2) {
-                    return -1;
-                } else if (nZIndex1 < nZIndex2) {
-                    return 1;
-                } else {
-                    return 0;
-                }
-            }
-
-            function isOverlayElement(p_oElement) {
-
-                var isOverlay = Dom.hasClass(p_oElement, Overlay.CSS_OVERLAY),
-                    Panel = YAHOO.widget.Panel;
-
-                if (isOverlay && !Dom.isAncestor(oElement, p_oElement)) {
-                    if (Panel && Dom.hasClass(p_oElement, Panel.CSS_PANEL)) {
-                        aOverlays[aOverlays.length] = p_oElement.parentNode;
-                    } else {
-                        aOverlays[aOverlays.length] = p_oElement;
-                    }
-                }
-            }
-
-            Dom.getElementsBy(isOverlayElement, "DIV", document.body);
-
-            aOverlays.sort(compareZIndexDesc);
-
-            var oTopOverlay = aOverlays[0],
-                nTopZIndex;
-
-            if (oTopOverlay) {
-                nTopZIndex = Dom.getStyle(oTopOverlay, "zIndex");
-
-                if (!isNaN(nTopZIndex)) {
-                    var bRequiresBump = false;
-
-                    if (oTopOverlay != oElement) {
-                        bRequiresBump = true;
-                    } else if (aOverlays.length > 1) {
-                        var nNextZIndex = Dom.getStyle(aOverlays[1], "zIndex");
-                        // Don't rely on DOM order to stack if 2 overlays are at the same zindex.
-                        if (!isNaN(nNextZIndex) && (nTopZIndex == nNextZIndex)) {
-                            bRequiresBump = true;
-                        }
-                    }
-                    if (bRequiresBump) {
-                        this.cfg.setProperty("zindex", (parseInt(nTopZIndex, 10) + 2));
-                    }
-                }
-            }
-        },
-
-        /**
-        * Removes the Overlay element from the DOM and sets all child 
-        * elements to null.
-        * @method destroy
-        */
-        destroy: function () {
-
-            if (this.iframe) {
-                this.iframe.parentNode.removeChild(this.iframe);
-            }
-
-            this.iframe = null;
-
-            Overlay.windowResizeEvent.unsubscribe(
-                this.doCenterOnDOMEvent, this);
-    
-            Overlay.windowScrollEvent.unsubscribe(
-                this.doCenterOnDOMEvent, this);
-
-            Module.textResizeEvent.unsubscribe(this._autoFillOnHeightChange);
-
-            Overlay.superclass.destroy.call(this);
-        },
-
-        /**
-        * Returns a String representation of the object.
-        * @method toString
-        * @return {String} The string representation of the Overlay.
-        */
-        toString: function () {
-            return "Overlay " + this.id;
-        }
-
-    });
-}());
-
-(function () {
-
-    /**
-    * OverlayManager is used for maintaining the focus status of 
-    * multiple Overlays.
-    * @namespace YAHOO.widget
-    * @namespace YAHOO.widget
-    * @class OverlayManager
-    * @constructor
-    * @param {Array} overlays Optional. A collection of Overlays to register 
-    * with the manager.
-    * @param {Object} userConfig  The object literal representing the user 
-    * configuration of the OverlayManager
-    */
-    YAHOO.widget.OverlayManager = function (userConfig) {
-        this.init(userConfig);
-    };
-
-    var Overlay = YAHOO.widget.Overlay,
-        Event = YAHOO.util.Event,
-        Dom = YAHOO.util.Dom,
-        Config = YAHOO.util.Config,
-        CustomEvent = YAHOO.util.CustomEvent,
-        OverlayManager = YAHOO.widget.OverlayManager;
-
-    /**
-    * The CSS class representing a focused Overlay
-    * @property OverlayManager.CSS_FOCUSED
-    * @static
-    * @final
-    * @type String
-    */
-    OverlayManager.CSS_FOCUSED = "focused";
-
-    OverlayManager.prototype = {
-
-        /**
-        * The class's constructor function
-        * @property contructor
-        * @type Function
-        */
-        constructor: OverlayManager,
-
-        /**
-        * The array of Overlays that are currently registered
-        * @property overlays
-        * @type YAHOO.widget.Overlay[]
-        */
-        overlays: null,
-
-        /**
-        * Initializes the default configuration of the OverlayManager
-        * @method initDefaultConfig
-        */
-        initDefaultConfig: function () {
-            /**
-            * The collection of registered Overlays in use by 
-            * the OverlayManager
-            * @config overlays
-            * @type YAHOO.widget.Overlay[]
-            * @default null
-            */
-            this.cfg.addProperty("overlays", { suppressEvent: true } );
-
-            /**
-            * The default DOM event that should be used to focus an Overlay
-            * @config focusevent
-            * @type String
-            * @default "mousedown"
-            */
-            this.cfg.addProperty("focusevent", { value: "mousedown" } );
-        },
-
-        /**
-        * Initializes the OverlayManager
-        * @method init
-        * @param {Overlay[]} overlays Optional. A collection of Overlays to 
-        * register with the manager.
-        * @param {Object} userConfig  The object literal representing the user 
-        * configuration of the OverlayManager
-        */
-        init: function (userConfig) {
-
-            /**
-            * The OverlayManager's Config object used for monitoring 
-            * configuration properties.
-            * @property cfg
-            * @type Config
-            */
-            this.cfg = new Config(this);
-
-            this.initDefaultConfig();
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-            this.cfg.fireQueue();
-
-            /**
-            * The currently activated Overlay
-            * @property activeOverlay
-            * @private
-            * @type YAHOO.widget.Overlay
-            */
-            var activeOverlay = null;
-
-            /**
-            * Returns the currently focused Overlay
-            * @method getActive
-            * @return {Overlay} The currently focused Overlay
-            */
-            this.getActive = function () {
-                return activeOverlay;
-            };
-
-            /**
-            * Focuses the specified Overlay
-            * @method focus
-            * @param {Overlay} overlay The Overlay to focus
-            * @param {String} overlay The id of the Overlay to focus
-            */
-            this.focus = function (overlay) {
-                var o = this.find(overlay);
-                if (o) {
-                    o.focus();
-                }
-            };
-
-            /**
-            * Removes the specified Overlay from the manager
-            * @method remove
-            * @param {Overlay} overlay The Overlay to remove
-            * @param {String} overlay The id of the Overlay to remove
-            */
-            this.remove = function (overlay) {
-
-                var o = this.find(overlay), 
-                        originalZ;
-
-                if (o) {
-                    if (activeOverlay == o) {
-                        activeOverlay = null;
-                    }
-
-                    var bDestroyed = (o.element === null && o.cfg === null) ? true : false;
-
-                    if (!bDestroyed) {
-                        // Set it's zindex so that it's sorted to the end.
-                        originalZ = Dom.getStyle(o.element, "zIndex");
-                        o.cfg.setProperty("zIndex", -1000, true);
-                    }
-
-                    this.overlays.sort(this.compareZIndexDesc);
-                    this.overlays = this.overlays.slice(0, (this.overlays.length - 1));
-
-                    o.hideEvent.unsubscribe(o.blur);
-                    o.destroyEvent.unsubscribe(this._onOverlayDestroy, o);
-                    o.focusEvent.unsubscribe(this._onOverlayFocusHandler, o);
-                    o.blurEvent.unsubscribe(this._onOverlayBlurHandler, o);
-
-                    if (!bDestroyed) {
-                        Event.removeListener(o.element, this.cfg.getProperty("focusevent"), this._onOverlayElementFocus);
-                        o.cfg.setProperty("zIndex", originalZ, true);
-                        o.cfg.setProperty("manager", null);
-                    }
-
-                    /* _managed Flag for custom or existing. Don't want to remove existing */
-                    if (o.focusEvent._managed) { o.focusEvent = null; }
-                    if (o.blurEvent._managed) { o.blurEvent = null; }
-
-                    if (o.focus._managed) { o.focus = null; }
-                    if (o.blur._managed) { o.blur = null; }
-                }
-            };
-
-            /**
-            * Removes focus from all registered Overlays in the manager
-            * @method blurAll
-            */
-            this.blurAll = function () {
-
-                var nOverlays = this.overlays.length,
-                    i;
-
-                if (nOverlays > 0) {
-                    i = nOverlays - 1;
-                    do {
-                        this.overlays[i].blur();
-                    }
-                    while(i--);
-                }
-            };
-
-            /**
-             * Updates the state of the OverlayManager and overlay, as a result of the overlay
-             * being blurred.
-             * 
-             * @method _manageBlur
-             * @param {Overlay} overlay The overlay instance which got blurred.
-             * @protected
-             */
-            this._manageBlur = function (overlay) {
-                var changed = false;
-                if (activeOverlay == overlay) {
-                    Dom.removeClass(activeOverlay.element, OverlayManager.CSS_FOCUSED);
-                    activeOverlay = null;
-                    changed = true;
-                }
-                return changed;
-            };
-
-            /**
-             * Updates the state of the OverlayManager and overlay, as a result of the overlay 
-             * receiving focus.
-             *
-             * @method _manageFocus
-             * @param {Overlay} overlay The overlay instance which got focus.
-             * @protected
-             */
-            this._manageFocus = function(overlay) {
-                var changed = false;
-                if (activeOverlay != overlay) {
-                    if (activeOverlay) {
-                        activeOverlay.blur();
-                    }
-                    activeOverlay = overlay;
-                    this.bringToTop(activeOverlay);
-                    Dom.addClass(activeOverlay.element, OverlayManager.CSS_FOCUSED);
-                    changed = true;
-                }
-                return changed;
-            };
-
-            var overlays = this.cfg.getProperty("overlays");
-
-            if (! this.overlays) {
-                this.overlays = [];
-            }
-
-            if (overlays) {
-                this.register(overlays);
-                this.overlays.sort(this.compareZIndexDesc);
-            }
-        },
-
-        /**
-        * @method _onOverlayElementFocus
-        * @description Event handler for the DOM event that is used to focus 
-        * the Overlay instance as specified by the "focusevent" 
-        * configuration property.
-        * @private
-        * @param {Event} p_oEvent Object representing the DOM event 
-        * object passed back by the event utility (Event).
-        */
-        _onOverlayElementFocus: function (p_oEvent) {
-
-            var oTarget = Event.getTarget(p_oEvent),
-                oClose = this.close;
-
-            if (oClose && (oTarget == oClose || Dom.isAncestor(oClose, oTarget))) {
-                this.blur();
-            } else {
-                this.focus();
-            }
-        },
-
-        /**
-        * @method _onOverlayDestroy
-        * @description "destroy" event handler for the Overlay.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {Overlay} p_oOverlay Object representing the overlay that 
-        * fired the event.
-        */
-        _onOverlayDestroy: function (p_sType, p_aArgs, p_oOverlay) {
-            this.remove(p_oOverlay);
-        },
-
-        /**
-        * @method _onOverlayFocusHandler
-        *
-        * focusEvent Handler, used to delegate to _manageFocus with the 
-        * correct arguments.
-        *
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {Overlay} p_oOverlay Object representing the overlay that 
-        * fired the event.
-        */
-        _onOverlayFocusHandler: function(p_sType, p_aArgs, p_oOverlay) {
-            this._manageFocus(p_oOverlay);
-        },
-
-        /**
-        * @method _onOverlayBlurHandler
-        *
-        * blurEvent Handler, used to delegate to _manageBlur with the 
-        * correct arguments.
-        *
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {Overlay} p_oOverlay Object representing the overlay that 
-        * fired the event.
-        */
-        _onOverlayBlurHandler: function(p_sType, p_aArgs, p_oOverlay) {
-            this._manageBlur(p_oOverlay);
-        },
-
-        /**
-         * Subscribes to the Overlay based instance focusEvent, to allow the OverlayManager to
-         * monitor focus state.
-         * 
-         * If the instance already has a focusEvent (e.g. Menu), OverlayManager will subscribe 
-         * to the existing focusEvent, however if a focusEvent or focus method does not exist
-         * on the instance, the _bindFocus method will add them, and the focus method will 
-         * update the OverlayManager's state directly.
-         * 
-         * @method _bindFocus
-         * @param {Overlay} overlay The overlay for which focus needs to be managed
-         * @protected
-         */
-        _bindFocus : function(overlay) {
-            var mgr = this;
-
-            if (!overlay.focusEvent) {
-                overlay.focusEvent = overlay.createEvent("focus");
-                overlay.focusEvent.signature = CustomEvent.LIST;
-                overlay.focusEvent._managed = true;
-            } else {
-                overlay.focusEvent.subscribe(mgr._onOverlayFocusHandler, overlay, mgr);
-            }
-
-            if (!overlay.focus) {
-                Event.on(overlay.element, mgr.cfg.getProperty("focusevent"), mgr._onOverlayElementFocus, null, overlay);
-                overlay.focus = function () {
-                    if (mgr._manageFocus(this)) {
-                        // For Panel/Dialog
-                        if (this.cfg.getProperty("visible") && this.focusFirst) {
-                            this.focusFirst();
-                        }
-                        this.focusEvent.fire();
-                    }
-                };
-                overlay.focus._managed = true;
-            }
-        },
-
-        /**
-         * Subscribes to the Overlay based instance's blurEvent to allow the OverlayManager to
-         * monitor blur state.
-         *
-         * If the instance already has a blurEvent (e.g. Menu), OverlayManager will subscribe 
-         * to the existing blurEvent, however if a blurEvent or blur method does not exist
-         * on the instance, the _bindBlur method will add them, and the blur method 
-         * update the OverlayManager's state directly.
-         *
-         * @method _bindBlur
-         * @param {Overlay} overlay The overlay for which blur needs to be managed
-         * @protected
-         */
-        _bindBlur : function(overlay) {
-            var mgr = this;
-
-            if (!overlay.blurEvent) {
-                overlay.blurEvent = overlay.createEvent("blur");
-                overlay.blurEvent.signature = CustomEvent.LIST;
-                overlay.focusEvent._managed = true;
-            } else {
-                overlay.blurEvent.subscribe(mgr._onOverlayBlurHandler, overlay, mgr);
-            }
-
-            if (!overlay.blur) {
-                overlay.blur = function () {
-                    if (mgr._manageBlur(this)) {
-                        this.blurEvent.fire();
-                    }
-                };
-                overlay.blur._managed = true;
-            }
-
-            overlay.hideEvent.subscribe(overlay.blur);
-        },
-
-        /**
-         * Subscribes to the Overlay based instance's destroyEvent, to allow the Overlay
-         * to be removed for the OverlayManager when destroyed.
-         * 
-         * @method _bindDestroy
-         * @param {Overlay} overlay The overlay instance being managed
-         * @protected
-         */
-        _bindDestroy : function(overlay) {
-            var mgr = this;
-            overlay.destroyEvent.subscribe(mgr._onOverlayDestroy, overlay, mgr);
-        },
-
-        /**
-         * Ensures the zIndex configuration property on the managed overlay based instance
-         * is set to the computed zIndex value from the DOM (with "auto" translating to 0).
-         *
-         * @method _syncZIndex
-         * @param {Overlay} overlay The overlay instance being managed
-         * @protected
-         */
-        _syncZIndex : function(overlay) {
-            var zIndex = Dom.getStyle(overlay.element, "zIndex");
-            if (!isNaN(zIndex)) {
-                overlay.cfg.setProperty("zIndex", parseInt(zIndex, 10));
-            } else {
-                overlay.cfg.setProperty("zIndex", 0);
-            }
-        },
-
-        /**
-        * Registers an Overlay or an array of Overlays with the manager. Upon 
-        * registration, the Overlay receives functions for focus and blur, 
-        * along with CustomEvents for each.
-        *
-        * @method register
-        * @param {Overlay} overlay  An Overlay to register with the manager.
-        * @param {Overlay[]} overlay  An array of Overlays to register with 
-        * the manager.
-        * @return {boolean} true if any Overlays are registered.
-        */
-        register: function (overlay) {
-
-            var zIndex,
-                registered = false,
-                i,
-                n;
-
-            if (overlay instanceof Overlay) {
-
-                overlay.cfg.addProperty("manager", { value: this } );
-
-                this._bindFocus(overlay);
-                this._bindBlur(overlay);
-                this._bindDestroy(overlay);
-                this._syncZIndex(overlay);
-
-                this.overlays.push(overlay);
-                this.bringToTop(overlay);
-
-                registered = true;
-
-            } else if (overlay instanceof Array) {
-
-                for (i = 0, n = overlay.length; i < n; i++) {
-                    registered = this.register(overlay[i]) || registered;
-                }
-
-            }
-
-            return registered;
-        },
-
-        /**
-        * Places the specified Overlay instance on top of all other 
-        * Overlay instances.
-        * @method bringToTop
-        * @param {YAHOO.widget.Overlay} p_oOverlay Object representing an 
-        * Overlay instance.
-        * @param {String} p_oOverlay String representing the id of an 
-        * Overlay instance.
-        */        
-        bringToTop: function (p_oOverlay) {
-
-            var oOverlay = this.find(p_oOverlay),
-                nTopZIndex,
-                oTopOverlay,
-                aOverlays;
-
-            if (oOverlay) {
-
-                aOverlays = this.overlays;
-                aOverlays.sort(this.compareZIndexDesc);
-
-                oTopOverlay = aOverlays[0];
-
-                if (oTopOverlay) {
-                    nTopZIndex = Dom.getStyle(oTopOverlay.element, "zIndex");
-
-                    if (!isNaN(nTopZIndex)) {
-
-                        var bRequiresBump = false;
-
-                        if (oTopOverlay !== oOverlay) {
-                            bRequiresBump = true;
-                        } else if (aOverlays.length > 1) {
-                            var nNextZIndex = Dom.getStyle(aOverlays[1].element, "zIndex");
-                            // Don't rely on DOM order to stack if 2 overlays are at the same zindex.
-                            if (!isNaN(nNextZIndex) && (nTopZIndex == nNextZIndex)) {
-                                bRequiresBump = true;
-                            }
-                        }
-
-                        if (bRequiresBump) {
-                            oOverlay.cfg.setProperty("zindex", (parseInt(nTopZIndex, 10) + 2));
-                        }
-                    }
-                    aOverlays.sort(this.compareZIndexDesc);
-                }
-            }
-        },
-
-        /**
-        * Attempts to locate an Overlay by instance or ID.
-        * @method find
-        * @param {Overlay} overlay  An Overlay to locate within the manager
-        * @param {String} overlay  An Overlay id to locate within the manager
-        * @return {Overlay} The requested Overlay, if found, or null if it 
-        * cannot be located.
-        */
-        find: function (overlay) {
-
-            var isInstance = overlay instanceof Overlay,
-                overlays = this.overlays,
-                n = overlays.length,
-                found = null,
-                o,
-                i;
-
-            if (isInstance || typeof overlay == "string") {
-                for (i = n-1; i >= 0; i--) {
-                    o = overlays[i];
-                    if ((isInstance && (o === overlay)) || (o.id == overlay)) {
-                        found = o;
-                        break;
-                    }
-                }
-            }
-
-            return found;
-        },
-
-        /**
-        * Used for sorting the manager's Overlays by z-index.
-        * @method compareZIndexDesc
-        * @private
-        * @return {Number} 0, 1, or -1, depending on where the Overlay should 
-        * fall in the stacking order.
-        */
-        compareZIndexDesc: function (o1, o2) {
-
-            var zIndex1 = (o1.cfg) ? o1.cfg.getProperty("zIndex") : null, // Sort invalid (destroyed)
-                zIndex2 = (o2.cfg) ? o2.cfg.getProperty("zIndex") : null; // objects at bottom.
-
-            if (zIndex1 === null && zIndex2 === null) {
-                return 0;
-            } else if (zIndex1 === null){
-                return 1;
-            } else if (zIndex2 === null) {
-                return -1;
-            } else if (zIndex1 > zIndex2) {
-                return -1;
-            } else if (zIndex1 < zIndex2) {
-                return 1;
-            } else {
-                return 0;
-            }
-        },
-
-        /**
-        * Shows all Overlays in the manager.
-        * @method showAll
-        */
-        showAll: function () {
-            var overlays = this.overlays,
-                n = overlays.length,
-                i;
-
-            for (i = n - 1; i >= 0; i--) {
-                overlays[i].show();
-            }
-        },
-
-        /**
-        * Hides all Overlays in the manager.
-        * @method hideAll
-        */
-        hideAll: function () {
-            var overlays = this.overlays,
-                n = overlays.length,
-                i;
-
-            for (i = n - 1; i >= 0; i--) {
-                overlays[i].hide();
-            }
-        },
-
-        /**
-        * Returns a string representation of the object.
-        * @method toString
-        * @return {String} The string representation of the OverlayManager
-        */
-        toString: function () {
-            return "OverlayManager";
-        }
-    };
-}());
-
-(function () {
-
-    /**
-    * ContainerEffect encapsulates animation transitions that are executed when 
-    * an Overlay is shown or hidden.
-    * @namespace YAHOO.widget
-    * @class ContainerEffect
-    * @constructor
-    * @param {YAHOO.widget.Overlay} overlay The Overlay that the animation 
-    * should be associated with
-    * @param {Object} attrIn The object literal representing the animation 
-    * arguments to be used for the animate-in transition. The arguments for 
-    * this literal are: attributes(object, see YAHOO.util.Anim for description), 
-    * duration(Number), and method(i.e. Easing.easeIn).
-    * @param {Object} attrOut The object literal representing the animation 
-    * arguments to be used for the animate-out transition. The arguments for  
-    * this literal are: attributes(object, see YAHOO.util.Anim for description), 
-    * duration(Number), and method(i.e. Easing.easeIn).
-    * @param {HTMLElement} targetElement Optional. The target element that  
-    * should be animated during the transition. Defaults to overlay.element.
-    * @param {class} Optional. The animation class to instantiate. Defaults to 
-    * YAHOO.util.Anim. Other options include YAHOO.util.Motion.
-    */
-    YAHOO.widget.ContainerEffect = function (overlay, attrIn, attrOut, targetElement, animClass) {
-
-        if (!animClass) {
-            animClass = YAHOO.util.Anim;
-        }
-
-        /**
-        * The overlay to animate
-        * @property overlay
-        * @type YAHOO.widget.Overlay
-        */
-        this.overlay = overlay;
-    
-        /**
-        * The animation attributes to use when transitioning into view
-        * @property attrIn
-        * @type Object
-        */
-        this.attrIn = attrIn;
-    
-        /**
-        * The animation attributes to use when transitioning out of view
-        * @property attrOut
-        * @type Object
-        */
-        this.attrOut = attrOut;
-    
-        /**
-        * The target element to be animated
-        * @property targetElement
-        * @type HTMLElement
-        */
-        this.targetElement = targetElement || overlay.element;
-    
-        /**
-        * The animation class to use for animating the overlay
-        * @property animClass
-        * @type class
-        */
-        this.animClass = animClass;
-    
-    };
-
-
-    var Dom = YAHOO.util.Dom,
-        CustomEvent = YAHOO.util.CustomEvent,
-        ContainerEffect = YAHOO.widget.ContainerEffect;
-
-
-    /**
-    * A pre-configured ContainerEffect instance that can be used for fading 
-    * an overlay in and out.
-    * @method FADE
-    * @static
-    * @param {YAHOO.widget.Overlay} overlay The Overlay object to animate
-    * @param {Number} dur The duration of the animation
-    * @return {YAHOO.widget.ContainerEffect} The configured ContainerEffect object
-    */
-    ContainerEffect.FADE = function (overlay, dur) {
-
-        var Easing = YAHOO.util.Easing,
-            fin = {
-                attributes: {opacity:{from:0, to:1}},
-                duration: dur,
-                method: Easing.easeIn
-            },
-            fout = {
-                attributes: {opacity:{to:0}},
-                duration: dur,
-                method: Easing.easeOut
-            },
-            fade = new ContainerEffect(overlay, fin, fout, overlay.element);
-
-        fade.handleUnderlayStart = function() {
-            var underlay = this.overlay.underlay;
-            if (underlay && YAHOO.env.ua.ie) {
-                var hasFilters = (underlay.filters && underlay.filters.length > 0);
-                if(hasFilters) {
-                    Dom.addClass(overlay.element, "yui-effect-fade");
-                }
-            }
-        };
-
-        fade.handleUnderlayComplete = function() {
-            var underlay = this.overlay.underlay;
-            if (underlay && YAHOO.env.ua.ie) {
-                Dom.removeClass(overlay.element, "yui-effect-fade");
-            }
-        };
-
-        fade.handleStartAnimateIn = function (type, args, obj) {
-            Dom.addClass(obj.overlay.element, "hide-select");
-
-            if (!obj.overlay.underlay) {
-                obj.overlay.cfg.refireEvent("underlay");
-            }
-
-            obj.handleUnderlayStart();
-
-            Dom.setStyle(obj.overlay.element, "visibility", "visible");
-            Dom.setStyle(obj.overlay.element, "opacity", 0);
-        };
-
-        fade.handleCompleteAnimateIn = function (type,args,obj) {
-            Dom.removeClass(obj.overlay.element, "hide-select");
-
-            if (obj.overlay.element.style.filter) {
-                obj.overlay.element.style.filter = null;
-            }
-
-            obj.handleUnderlayComplete();
-
-            obj.overlay.cfg.refireEvent("iframe");
-            obj.animateInCompleteEvent.fire();
-        };
-
-        fade.handleStartAnimateOut = function (type, args, obj) {
-            Dom.addClass(obj.overlay.element, "hide-select");
-            obj.handleUnderlayStart();
-        };
-
-        fade.handleCompleteAnimateOut =  function (type, args, obj) {
-            Dom.removeClass(obj.overlay.element, "hide-select");
-            if (obj.overlay.element.style.filter) {
-                obj.overlay.element.style.filter = null;
-            }
-            Dom.setStyle(obj.overlay.element, "visibility", "hidden");
-            Dom.setStyle(obj.overlay.element, "opacity", 1);
-
-            obj.handleUnderlayComplete();
-
-            obj.overlay.cfg.refireEvent("iframe");
-            obj.animateOutCompleteEvent.fire();
-        };
-
-        fade.init();
-        return fade;
-    };
-    
-    
-    /**
-    * A pre-configured ContainerEffect instance that can be used for sliding an 
-    * overlay in and out.
-    * @method SLIDE
-    * @static
-    * @param {YAHOO.widget.Overlay} overlay The Overlay object to animate
-    * @param {Number} dur The duration of the animation
-    * @return {YAHOO.widget.ContainerEffect} The configured ContainerEffect object
-    */
-    ContainerEffect.SLIDE = function (overlay, dur) {
-        var Easing = YAHOO.util.Easing,
-
-            x = overlay.cfg.getProperty("x") || Dom.getX(overlay.element),
-            y = overlay.cfg.getProperty("y") || Dom.getY(overlay.element),
-            clientWidth = Dom.getClientWidth(),
-            offsetWidth = overlay.element.offsetWidth,
-
-            sin =  { 
-                attributes: { points: { to: [x, y] } },
-                duration: dur,
-                method: Easing.easeIn 
-            },
-
-            sout = {
-                attributes: { points: { to: [(clientWidth + 25), y] } },
-                duration: dur,
-                method: Easing.easeOut 
-            },
-
-            slide = new ContainerEffect(overlay, sin, sout, overlay.element, YAHOO.util.Motion);
-
-        slide.handleStartAnimateIn = function (type,args,obj) {
-            obj.overlay.element.style.left = ((-25) - offsetWidth) + "px";
-            obj.overlay.element.style.top  = y + "px";
-        };
-
-        slide.handleTweenAnimateIn = function (type, args, obj) {
-        
-            var pos = Dom.getXY(obj.overlay.element),
-                currentX = pos[0],
-                currentY = pos[1];
-        
-            if (Dom.getStyle(obj.overlay.element, "visibility") == 
-                "hidden" && currentX < x) {
-
-                Dom.setStyle(obj.overlay.element, "visibility", "visible");
-
-            }
-        
-            obj.overlay.cfg.setProperty("xy", [currentX, currentY], true);
-            obj.overlay.cfg.refireEvent("iframe");
-        };
-        
-        slide.handleCompleteAnimateIn = function (type, args, obj) {
-            obj.overlay.cfg.setProperty("xy", [x, y], true);
-            obj.startX = x;
-            obj.startY = y;
-            obj.overlay.cfg.refireEvent("iframe");
-            obj.animateInCompleteEvent.fire();
-        };
-        
-        slide.handleStartAnimateOut = function (type, args, obj) {
-    
-            var vw = Dom.getViewportWidth(),
-                pos = Dom.getXY(obj.overlay.element),
-                yso = pos[1];
-    
-            obj.animOut.attributes.points.to = [(vw + 25), yso];
-        };
-        
-        slide.handleTweenAnimateOut = function (type, args, obj) {
-    
-            var pos = Dom.getXY(obj.overlay.element),
-                xto = pos[0],
-                yto = pos[1];
-        
-            obj.overlay.cfg.setProperty("xy", [xto, yto], true);
-            obj.overlay.cfg.refireEvent("iframe");
-        };
-        
-        slide.handleCompleteAnimateOut = function (type, args, obj) {
-            Dom.setStyle(obj.overlay.element, "visibility", "hidden");
-        
-            obj.overlay.cfg.setProperty("xy", [x, y]);
-            obj.animateOutCompleteEvent.fire();
-        };
-
-        slide.init();
-        return slide;
-    };
-
-    ContainerEffect.prototype = {
-
-        /**
-        * Initializes the animation classes and events.
-        * @method init
-        */
-        init: function () {
-
-            this.beforeAnimateInEvent = this.createEvent("beforeAnimateIn");
-            this.beforeAnimateInEvent.signature = CustomEvent.LIST;
-            
-            this.beforeAnimateOutEvent = this.createEvent("beforeAnimateOut");
-            this.beforeAnimateOutEvent.signature = CustomEvent.LIST;
-        
-            this.animateInCompleteEvent = this.createEvent("animateInComplete");
-            this.animateInCompleteEvent.signature = CustomEvent.LIST;
-        
-            this.animateOutCompleteEvent = 
-                this.createEvent("animateOutComplete");
-            this.animateOutCompleteEvent.signature = CustomEvent.LIST;
-        
-            this.animIn = new this.animClass(this.targetElement, 
-                this.attrIn.attributes, this.attrIn.duration, 
-                this.attrIn.method);
-
-            this.animIn.onStart.subscribe(this.handleStartAnimateIn, this);
-            this.animIn.onTween.subscribe(this.handleTweenAnimateIn, this);
-
-            this.animIn.onComplete.subscribe(this.handleCompleteAnimateIn, 
-                this);
-        
-            this.animOut = new this.animClass(this.targetElement, 
-                this.attrOut.attributes, this.attrOut.duration, 
-                this.attrOut.method);
-
-            this.animOut.onStart.subscribe(this.handleStartAnimateOut, this);
-            this.animOut.onTween.subscribe(this.handleTweenAnimateOut, this);
-            this.animOut.onComplete.subscribe(this.handleCompleteAnimateOut, 
-                this);
-
-        },
-        
-        /**
-        * Triggers the in-animation.
-        * @method animateIn
-        */
-        animateIn: function () {
-            this.beforeAnimateInEvent.fire();
-            this.animIn.animate();
-        },
-
-        /**
-        * Triggers the out-animation.
-        * @method animateOut
-        */
-        animateOut: function () {
-            this.beforeAnimateOutEvent.fire();
-            this.animOut.animate();
-        },
-
-        /**
-        * The default onStart handler for the in-animation.
-        * @method handleStartAnimateIn
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleStartAnimateIn: function (type, args, obj) { },
-
-        /**
-        * The default onTween handler for the in-animation.
-        * @method handleTweenAnimateIn
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleTweenAnimateIn: function (type, args, obj) { },
-
-        /**
-        * The default onComplete handler for the in-animation.
-        * @method handleCompleteAnimateIn
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleCompleteAnimateIn: function (type, args, obj) { },
-
-        /**
-        * The default onStart handler for the out-animation.
-        * @method handleStartAnimateOut
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleStartAnimateOut: function (type, args, obj) { },
-
-        /**
-        * The default onTween handler for the out-animation.
-        * @method handleTweenAnimateOut
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleTweenAnimateOut: function (type, args, obj) { },
-
-        /**
-        * The default onComplete handler for the out-animation.
-        * @method handleCompleteAnimateOut
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleCompleteAnimateOut: function (type, args, obj) { },
-        
-        /**
-        * Returns a string representation of the object.
-        * @method toString
-        * @return {String} The string representation of the ContainerEffect
-        */
-        toString: function () {
-            var output = "ContainerEffect";
-            if (this.overlay) {
-                output += " [" + this.overlay.toString() + "]";
-            }
-            return output;
-        }
-    };
-
-    YAHOO.lang.augmentProto(ContainerEffect, YAHOO.util.EventProvider);
-
-})();
-
-YAHOO.register("containercore", YAHOO.widget.Module, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/container/container_core-min.js b/eclipse.org-common/yui/2.6.0/build/container/container_core-min.js
deleted file mode 100644
index 524b49c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/container_core-min.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){YAHOO.util.Config=function(D){if(D){this.init(D);}};var B=YAHOO.lang,C=YAHOO.util.CustomEvent,A=YAHOO.util.Config;A.CONFIG_CHANGED_EVENT="configChanged";A.BOOLEAN_TYPE="boolean";A.prototype={owner:null,queueInProgress:false,config:null,initialConfig:null,eventQueue:null,configChangedEvent:null,init:function(D){this.owner=D;this.configChangedEvent=this.createEvent(A.CONFIG_CHANGED_EVENT);this.configChangedEvent.signature=C.LIST;this.queueInProgress=false;this.config={};this.initialConfig={};this.eventQueue=[];},checkBoolean:function(D){return(typeof D==A.BOOLEAN_TYPE);},checkNumber:function(D){return(!isNaN(D));},fireEvent:function(D,F){var E=this.config[D];if(E&&E.event){E.event.fire(F);}},addProperty:function(E,D){E=E.toLowerCase();this.config[E]=D;D.event=this.createEvent(E,{scope:this.owner});D.event.signature=C.LIST;D.key=E;if(D.handler){D.event.subscribe(D.handler,this.owner);}this.setProperty(E,D.value,true);if(!D.suppressEvent){this.queueProperty(E,D.value);}},getConfig:function(){var D={},F=this.config,G,E;for(G in F){if(B.hasOwnProperty(F,G)){E=F[G];if(E&&E.event){D[G]=E.value;}}}return D;},getProperty:function(D){var E=this.config[D.toLowerCase()];if(E&&E.event){return E.value;}else{return undefined;}},resetProperty:function(D){D=D.toLowerCase();var E=this.config[D];if(E&&E.event){if(this.initialConfig[D]&&!B.isUndefined(this.initialConfig[D])){this.setProperty(D,this.initialConfig[D]);return true;}}else{return false;}},setProperty:function(E,G,D){var F;E=E.toLowerCase();if(this.queueInProgress&&!D){this.queueProperty(E,G);return true;}else{F=this.config[E];if(F&&F.event){if(F.validator&&!F.validator(G)){return false;}else{F.value=G;if(!D){this.fireEvent(E,G);this.configChangedEvent.fire([E,G]);}return true;}}else{return false;}}},queueProperty:function(S,P){S=S.toLowerCase();var R=this.config[S],K=false,J,G,H,I,O,Q,F,M,N,D,L,T,E;if(R&&R.event){if(!B.isUndefined(P)&&R.validator&&!R.validator(P)){return false;}else{if(!B.isUndefined(P)){R.value=P;}else{P=R.value;}K=false;J=this.eventQueue.length;for(L=0;L<J;L++){G=this.eventQueue[L];if(G){H=G[0];I=G[1];if(H==S){this.eventQueue[L]=null;this.eventQueue.push([S,(!B.isUndefined(P)?P:I)]);K=true;break;}}}if(!K&&!B.isUndefined(P)){this.eventQueue.push([S,P]);}}if(R.supercedes){O=R.supercedes.length;for(T=0;T<O;T++){Q=R.supercedes[T];F=this.eventQueue.length;for(E=0;E<F;E++){M=this.eventQueue[E];if(M){N=M[0];D=M[1];if(N==Q.toLowerCase()){this.eventQueue.push([N,D]);this.eventQueue[E]=null;break;}}}}}return true;}else{return false;}},refireEvent:function(D){D=D.toLowerCase();var E=this.config[D];if(E&&E.event&&!B.isUndefined(E.value)){if(this.queueInProgress){this.queueProperty(D);}else{this.fireEvent(D,E.value);}}},applyConfig:function(D,G){var F,E;if(G){E={};for(F in D){if(B.hasOwnProperty(D,F)){E[F.toLowerCase()]=D[F];}}this.initialConfig=E;}for(F in D){if(B.hasOwnProperty(D,F)){this.queueProperty(F,D[F]);}}},refresh:function(){var D;for(D in this.config){if(B.hasOwnProperty(this.config,D)){this.refireEvent(D);}}},fireQueue:function(){var E,H,D,G,F;this.queueInProgress=true;for(E=0;E<this.eventQueue.length;E++){H=this.eventQueue[E];if(H){D=H[0];G=H[1];F=this.config[D];F.value=G;this.eventQueue[E]=null;this.fireEvent(D,G);}}this.queueInProgress=false;this.eventQueue=[];},subscribeToConfigEvent:function(E,F,H,D){var G=this.config[E.toLowerCase()];if(G&&G.event){if(!A.alreadySubscribed(G.event,F,H)){G.event.subscribe(F,H,D);}return true;}else{return false;}},unsubscribeFromConfigEvent:function(D,E,G){var F=this.config[D.toLowerCase()];if(F&&F.event){return F.event.unsubscribe(E,G);}else{return false;}},toString:function(){var D="Config";if(this.owner){D+=" ["+this.owner.toString()+"]";}return D;},outputEventQueue:function(){var D="",G,E,F=this.eventQueue.length;for(E=0;E<F;E++){G=this.eventQueue[E];if(G){D+=G[0]+"="+G[1]+", ";}}return D;},destroy:function(){var E=this.config,D,F;for(D in E){if(B.hasOwnProperty(E,D)){F=E[D];F.event.unsubscribeAll();F.event=null;}}this.configChangedEvent.unsubscribeAll();this.configChangedEvent=null;this.owner=null;this.config=null;this.initialConfig=null;this.eventQueue=null;}};A.alreadySubscribed=function(E,H,I){var F=E.subscribers.length,D,G;if(F>0){G=F-1;do{D=E.subscribers[G];if(D&&D.obj==I&&D.fn==H){return true;}}while(G--);}return false;};YAHOO.lang.augmentProto(A,YAHOO.util.EventProvider);}());(function(){YAHOO.widget.Module=function(Q,P){if(Q){this.init(Q,P);}else{}};var F=YAHOO.util.Dom,D=YAHOO.util.Config,M=YAHOO.util.Event,L=YAHOO.util.CustomEvent,G=YAHOO.widget.Module,H,O,N,E,A={"BEFORE_INIT":"beforeInit","INIT":"init","APPEND":"append","BEFORE_RENDER":"beforeRender","RENDER":"render","CHANGE_HEADER":"changeHeader","CHANGE_BODY":"changeBody","CHANGE_FOOTER":"changeFooter","CHANGE_CONTENT":"changeContent","DESTORY":"destroy","BEFORE_SHOW":"beforeShow","SHOW":"show","BEFORE_HIDE":"beforeHide","HIDE":"hide"},I={"VISIBLE":{key:"visible",value:true,validator:YAHOO.lang.isBoolean},"EFFECT":{key:"effect",suppressEvent:true,supercedes:["visible"]},"MONITOR_RESIZE":{key:"monitorresize",value:true},"APPEND_TO_DOCUMENT_BODY":{key:"appendtodocumentbody",value:false}};G.IMG_ROOT=null;G.IMG_ROOT_SSL=null;G.CSS_MODULE="yui-module";G.CSS_HEADER="hd";G.CSS_BODY="bd";G.CSS_FOOTER="ft";G.RESIZE_MONITOR_SECURE_URL="javascript:false;";G.textResizeEvent=new L("textResize");function K(){if(!H){H=document.createElement("div");H.innerHTML=('<div class="'+G.CSS_HEADER+'"></div>'+'<div class="'+G.CSS_BODY+'"></div><div class="'+G.CSS_FOOTER+'"></div>');O=H.firstChild;N=O.nextSibling;E=N.nextSibling;}return H;}function J(){if(!O){K();}return(O.cloneNode(false));}function B(){if(!N){K();}return(N.cloneNode(false));}function C(){if(!E){K();}return(E.cloneNode(false));}G.prototype={constructor:G,element:null,header:null,body:null,footer:null,id:null,imageRoot:G.IMG_ROOT,initEvents:function(){var P=L.LIST;this.beforeInitEvent=this.createEvent(A.BEFORE_INIT);this.beforeInitEvent.signature=P;this.initEvent=this.createEvent(A.INIT);
-this.initEvent.signature=P;this.appendEvent=this.createEvent(A.APPEND);this.appendEvent.signature=P;this.beforeRenderEvent=this.createEvent(A.BEFORE_RENDER);this.beforeRenderEvent.signature=P;this.renderEvent=this.createEvent(A.RENDER);this.renderEvent.signature=P;this.changeHeaderEvent=this.createEvent(A.CHANGE_HEADER);this.changeHeaderEvent.signature=P;this.changeBodyEvent=this.createEvent(A.CHANGE_BODY);this.changeBodyEvent.signature=P;this.changeFooterEvent=this.createEvent(A.CHANGE_FOOTER);this.changeFooterEvent.signature=P;this.changeContentEvent=this.createEvent(A.CHANGE_CONTENT);this.changeContentEvent.signature=P;this.destroyEvent=this.createEvent(A.DESTORY);this.destroyEvent.signature=P;this.beforeShowEvent=this.createEvent(A.BEFORE_SHOW);this.beforeShowEvent.signature=P;this.showEvent=this.createEvent(A.SHOW);this.showEvent.signature=P;this.beforeHideEvent=this.createEvent(A.BEFORE_HIDE);this.beforeHideEvent.signature=P;this.hideEvent=this.createEvent(A.HIDE);this.hideEvent.signature=P;},platform:function(){var P=navigator.userAgent.toLowerCase();if(P.indexOf("windows")!=-1||P.indexOf("win32")!=-1){return"windows";}else{if(P.indexOf("macintosh")!=-1){return"mac";}else{return false;}}}(),browser:function(){var P=navigator.userAgent.toLowerCase();if(P.indexOf("opera")!=-1){return"opera";}else{if(P.indexOf("msie 7")!=-1){return"ie7";}else{if(P.indexOf("msie")!=-1){return"ie";}else{if(P.indexOf("safari")!=-1){return"safari";}else{if(P.indexOf("gecko")!=-1){return"gecko";}else{return false;}}}}}}(),isSecure:function(){if(window.location.href.toLowerCase().indexOf("https")===0){return true;}else{return false;}}(),initDefaultConfig:function(){this.cfg.addProperty(I.VISIBLE.key,{handler:this.configVisible,value:I.VISIBLE.value,validator:I.VISIBLE.validator});this.cfg.addProperty(I.EFFECT.key,{suppressEvent:I.EFFECT.suppressEvent,supercedes:I.EFFECT.supercedes});this.cfg.addProperty(I.MONITOR_RESIZE.key,{handler:this.configMonitorResize,value:I.MONITOR_RESIZE.value});this.cfg.addProperty(I.APPEND_TO_DOCUMENT_BODY.key,{value:I.APPEND_TO_DOCUMENT_BODY.value});},init:function(U,T){var R,V;this.initEvents();this.beforeInitEvent.fire(G);this.cfg=new D(this);if(this.isSecure){this.imageRoot=G.IMG_ROOT_SSL;}if(typeof U=="string"){R=U;U=document.getElementById(U);if(!U){U=(K()).cloneNode(false);U.id=R;}}this.element=U;if(U.id){this.id=U.id;}V=this.element.firstChild;if(V){var Q=false,P=false,S=false;do{if(1==V.nodeType){if(!Q&&F.hasClass(V,G.CSS_HEADER)){this.header=V;Q=true;}else{if(!P&&F.hasClass(V,G.CSS_BODY)){this.body=V;P=true;}else{if(!S&&F.hasClass(V,G.CSS_FOOTER)){this.footer=V;S=true;}}}}}while((V=V.nextSibling));}this.initDefaultConfig();F.addClass(this.element,G.CSS_MODULE);if(T){this.cfg.applyConfig(T,true);}if(!D.alreadySubscribed(this.renderEvent,this.cfg.fireQueue,this.cfg)){this.renderEvent.subscribe(this.cfg.fireQueue,this.cfg,true);}this.initEvent.fire(G);},initResizeMonitor:function(){var Q=(YAHOO.env.ua.gecko&&this.platform=="windows");if(Q){var P=this;setTimeout(function(){P._initResizeMonitor();},0);}else{this._initResizeMonitor();}},_initResizeMonitor:function(){var P,R,T;function V(){G.textResizeEvent.fire();}if(!YAHOO.env.ua.opera){R=F.get("_yuiResizeMonitor");var U=this._supportsCWResize();if(!R){R=document.createElement("iframe");if(this.isSecure&&G.RESIZE_MONITOR_SECURE_URL&&YAHOO.env.ua.ie){R.src=G.RESIZE_MONITOR_SECURE_URL;}if(!U){T=["<html><head><script ",'type="text/javascript">',"window.onresize=function(){window.parent.","YAHOO.widget.Module.textResizeEvent.","fire();};<","/script></head>","<body></body></html>"].join("");R.src="data:text/html;charset=utf-8,"+encodeURIComponent(T);}R.id="_yuiResizeMonitor";R.title="Text Resize Monitor";R.style.position="absolute";R.style.visibility="hidden";var Q=document.body,S=Q.firstChild;if(S){Q.insertBefore(R,S);}else{Q.appendChild(R);}R.style.width="10em";R.style.height="10em";R.style.top=(-1*R.offsetHeight)+"px";R.style.left=(-1*R.offsetWidth)+"px";R.style.borderWidth="0";R.style.visibility="visible";if(YAHOO.env.ua.webkit){P=R.contentWindow.document;P.open();P.close();}}if(R&&R.contentWindow){G.textResizeEvent.subscribe(this.onDomResize,this,true);if(!G.textResizeInitialized){if(U){if(!M.on(R.contentWindow,"resize",V)){M.on(R,"resize",V);}}G.textResizeInitialized=true;}this.resizeMonitor=R;}}},_supportsCWResize:function(){var P=true;if(YAHOO.env.ua.gecko&&YAHOO.env.ua.gecko<=1.8){P=false;}return P;},onDomResize:function(S,R){var Q=-1*this.resizeMonitor.offsetWidth,P=-1*this.resizeMonitor.offsetHeight;this.resizeMonitor.style.top=P+"px";this.resizeMonitor.style.left=Q+"px";},setHeader:function(Q){var P=this.header||(this.header=J());if(Q.nodeName){P.innerHTML="";P.appendChild(Q);}else{P.innerHTML=Q;}this.changeHeaderEvent.fire(Q);this.changeContentEvent.fire();},appendToHeader:function(Q){var P=this.header||(this.header=J());P.appendChild(Q);this.changeHeaderEvent.fire(Q);this.changeContentEvent.fire();},setBody:function(Q){var P=this.body||(this.body=B());if(Q.nodeName){P.innerHTML="";P.appendChild(Q);}else{P.innerHTML=Q;}this.changeBodyEvent.fire(Q);this.changeContentEvent.fire();},appendToBody:function(Q){var P=this.body||(this.body=B());P.appendChild(Q);this.changeBodyEvent.fire(Q);this.changeContentEvent.fire();},setFooter:function(Q){var P=this.footer||(this.footer=C());if(Q.nodeName){P.innerHTML="";P.appendChild(Q);}else{P.innerHTML=Q;}this.changeFooterEvent.fire(Q);this.changeContentEvent.fire();},appendToFooter:function(Q){var P=this.footer||(this.footer=C());P.appendChild(Q);this.changeFooterEvent.fire(Q);this.changeContentEvent.fire();},render:function(R,P){var S=this,T;function Q(U){if(typeof U=="string"){U=document.getElementById(U);}if(U){S._addToParent(U,S.element);S.appendEvent.fire();}}this.beforeRenderEvent.fire();if(!P){P=this.element;}if(R){Q(R);}else{if(!F.inDocument(this.element)){return false;}}if(this.header&&!F.inDocument(this.header)){T=P.firstChild;if(T){P.insertBefore(this.header,T);}else{P.appendChild(this.header);
-}}if(this.body&&!F.inDocument(this.body)){if(this.footer&&F.isAncestor(this.moduleElement,this.footer)){P.insertBefore(this.body,this.footer);}else{P.appendChild(this.body);}}if(this.footer&&!F.inDocument(this.footer)){P.appendChild(this.footer);}this.renderEvent.fire();return true;},destroy:function(){var P,Q;if(this.element){M.purgeElement(this.element,true);P=this.element.parentNode;}if(P){P.removeChild(this.element);}this.element=null;this.header=null;this.body=null;this.footer=null;G.textResizeEvent.unsubscribe(this.onDomResize,this);this.cfg.destroy();this.cfg=null;this.destroyEvent.fire();},show:function(){this.cfg.setProperty("visible",true);},hide:function(){this.cfg.setProperty("visible",false);},configVisible:function(Q,P,R){var S=P[0];if(S){this.beforeShowEvent.fire();F.setStyle(this.element,"display","block");this.showEvent.fire();}else{this.beforeHideEvent.fire();F.setStyle(this.element,"display","none");this.hideEvent.fire();}},configMonitorResize:function(R,Q,S){var P=Q[0];if(P){this.initResizeMonitor();}else{G.textResizeEvent.unsubscribe(this.onDomResize,this,true);this.resizeMonitor=null;}},_addToParent:function(P,Q){if(!this.cfg.getProperty("appendtodocumentbody")&&P===document.body&&P.firstChild){P.insertBefore(Q,P.firstChild);}else{P.appendChild(Q);}},toString:function(){return"Module "+this.id;}};YAHOO.lang.augmentProto(G,YAHOO.util.EventProvider);}());(function(){YAHOO.widget.Overlay=function(O,N){YAHOO.widget.Overlay.superclass.constructor.call(this,O,N);};var H=YAHOO.lang,L=YAHOO.util.CustomEvent,F=YAHOO.widget.Module,M=YAHOO.util.Event,E=YAHOO.util.Dom,C=YAHOO.util.Config,J=YAHOO.env.ua,B=YAHOO.widget.Overlay,G="subscribe",D="unsubscribe",I,A={"BEFORE_MOVE":"beforeMove","MOVE":"move"},K={"X":{key:"x",validator:H.isNumber,suppressEvent:true,supercedes:["iframe"]},"Y":{key:"y",validator:H.isNumber,suppressEvent:true,supercedes:["iframe"]},"XY":{key:"xy",suppressEvent:true,supercedes:["iframe"]},"CONTEXT":{key:"context",suppressEvent:true,supercedes:["iframe"]},"FIXED_CENTER":{key:"fixedcenter",value:false,validator:H.isBoolean,supercedes:["iframe","visible"]},"WIDTH":{key:"width",suppressEvent:true,supercedes:["context","fixedcenter","iframe"]},"HEIGHT":{key:"height",suppressEvent:true,supercedes:["context","fixedcenter","iframe"]},"AUTO_FILL_HEIGHT":{key:"autofillheight",supressEvent:true,supercedes:["height"],value:"body"},"ZINDEX":{key:"zindex",value:null},"CONSTRAIN_TO_VIEWPORT":{key:"constraintoviewport",value:false,validator:H.isBoolean,supercedes:["iframe","x","y","xy"]},"IFRAME":{key:"iframe",value:(J.ie==6?true:false),validator:H.isBoolean,supercedes:["zindex"]},"PREVENT_CONTEXT_OVERLAP":{key:"preventcontextoverlap",value:false,validator:H.isBoolean,supercedes:["constraintoviewport"]}};B.IFRAME_SRC="javascript:false;";B.IFRAME_OFFSET=3;B.VIEWPORT_OFFSET=10;B.TOP_LEFT="tl";B.TOP_RIGHT="tr";B.BOTTOM_LEFT="bl";B.BOTTOM_RIGHT="br";B.CSS_OVERLAY="yui-overlay";B.STD_MOD_RE=/^\s*?(body|footer|header)\s*?$/i;B.windowScrollEvent=new L("windowScroll");B.windowResizeEvent=new L("windowResize");B.windowScrollHandler=function(O){var N=M.getTarget(O);if(!N||N===window||N===window.document){if(J.ie){if(!window.scrollEnd){window.scrollEnd=-1;}clearTimeout(window.scrollEnd);window.scrollEnd=setTimeout(function(){B.windowScrollEvent.fire();},1);}else{B.windowScrollEvent.fire();}}};B.windowResizeHandler=function(N){if(J.ie){if(!window.resizeEnd){window.resizeEnd=-1;}clearTimeout(window.resizeEnd);window.resizeEnd=setTimeout(function(){B.windowResizeEvent.fire();},100);}else{B.windowResizeEvent.fire();}};B._initialized=null;if(B._initialized===null){M.on(window,"scroll",B.windowScrollHandler);M.on(window,"resize",B.windowResizeHandler);B._initialized=true;}B._TRIGGER_MAP={"windowScroll":B.windowScrollEvent,"windowResize":B.windowResizeEvent,"textResize":F.textResizeEvent};YAHOO.extend(B,F,{CONTEXT_TRIGGERS:[],init:function(O,N){B.superclass.init.call(this,O);this.beforeInitEvent.fire(B);E.addClass(this.element,B.CSS_OVERLAY);if(N){this.cfg.applyConfig(N,true);}if(this.platform=="mac"&&J.gecko){if(!C.alreadySubscribed(this.showEvent,this.showMacGeckoScrollbars,this)){this.showEvent.subscribe(this.showMacGeckoScrollbars,this,true);}if(!C.alreadySubscribed(this.hideEvent,this.hideMacGeckoScrollbars,this)){this.hideEvent.subscribe(this.hideMacGeckoScrollbars,this,true);}}this.initEvent.fire(B);},initEvents:function(){B.superclass.initEvents.call(this);var N=L.LIST;this.beforeMoveEvent=this.createEvent(A.BEFORE_MOVE);this.beforeMoveEvent.signature=N;this.moveEvent=this.createEvent(A.MOVE);this.moveEvent.signature=N;},initDefaultConfig:function(){B.superclass.initDefaultConfig.call(this);var N=this.cfg;N.addProperty(K.X.key,{handler:this.configX,validator:K.X.validator,suppressEvent:K.X.suppressEvent,supercedes:K.X.supercedes});N.addProperty(K.Y.key,{handler:this.configY,validator:K.Y.validator,suppressEvent:K.Y.suppressEvent,supercedes:K.Y.supercedes});N.addProperty(K.XY.key,{handler:this.configXY,suppressEvent:K.XY.suppressEvent,supercedes:K.XY.supercedes});N.addProperty(K.CONTEXT.key,{handler:this.configContext,suppressEvent:K.CONTEXT.suppressEvent,supercedes:K.CONTEXT.supercedes});N.addProperty(K.FIXED_CENTER.key,{handler:this.configFixedCenter,value:K.FIXED_CENTER.value,validator:K.FIXED_CENTER.validator,supercedes:K.FIXED_CENTER.supercedes});N.addProperty(K.WIDTH.key,{handler:this.configWidth,suppressEvent:K.WIDTH.suppressEvent,supercedes:K.WIDTH.supercedes});N.addProperty(K.HEIGHT.key,{handler:this.configHeight,suppressEvent:K.HEIGHT.suppressEvent,supercedes:K.HEIGHT.supercedes});N.addProperty(K.AUTO_FILL_HEIGHT.key,{handler:this.configAutoFillHeight,value:K.AUTO_FILL_HEIGHT.value,validator:this._validateAutoFill,suppressEvent:K.AUTO_FILL_HEIGHT.suppressEvent,supercedes:K.AUTO_FILL_HEIGHT.supercedes});N.addProperty(K.ZINDEX.key,{handler:this.configzIndex,value:K.ZINDEX.value});N.addProperty(K.CONSTRAIN_TO_VIEWPORT.key,{handler:this.configConstrainToViewport,value:K.CONSTRAIN_TO_VIEWPORT.value,validator:K.CONSTRAIN_TO_VIEWPORT.validator,supercedes:K.CONSTRAIN_TO_VIEWPORT.supercedes});
-N.addProperty(K.IFRAME.key,{handler:this.configIframe,value:K.IFRAME.value,validator:K.IFRAME.validator,supercedes:K.IFRAME.supercedes});N.addProperty(K.PREVENT_CONTEXT_OVERLAP.key,{value:K.PREVENT_CONTEXT_OVERLAP.value,validator:K.PREVENT_CONTEXT_OVERLAP.validator,supercedes:K.PREVENT_CONTEXT_OVERLAP.supercedes});},moveTo:function(N,O){this.cfg.setProperty("xy",[N,O]);},hideMacGeckoScrollbars:function(){E.replaceClass(this.element,"show-scrollbars","hide-scrollbars");},showMacGeckoScrollbars:function(){E.replaceClass(this.element,"hide-scrollbars","show-scrollbars");},configVisible:function(Q,N,W){var P=N[0],R=E.getStyle(this.element,"visibility"),X=this.cfg.getProperty("effect"),U=[],T=(this.platform=="mac"&&J.gecko),f=C.alreadySubscribed,V,O,d,b,a,Z,c,Y,S;if(R=="inherit"){d=this.element.parentNode;while(d.nodeType!=9&&d.nodeType!=11){R=E.getStyle(d,"visibility");if(R!="inherit"){break;}d=d.parentNode;}if(R=="inherit"){R="visible";}}if(X){if(X instanceof Array){Y=X.length;for(b=0;b<Y;b++){V=X[b];U[U.length]=V.effect(this,V.duration);}}else{U[U.length]=X.effect(this,X.duration);}}if(P){if(T){this.showMacGeckoScrollbars();}if(X){if(P){if(R!="visible"||R===""){this.beforeShowEvent.fire();S=U.length;for(a=0;a<S;a++){O=U[a];if(a===0&&!f(O.animateInCompleteEvent,this.showEvent.fire,this.showEvent)){O.animateInCompleteEvent.subscribe(this.showEvent.fire,this.showEvent,true);}O.animateIn();}}}}else{if(R!="visible"||R===""){this.beforeShowEvent.fire();E.setStyle(this.element,"visibility","visible");this.cfg.refireEvent("iframe");this.showEvent.fire();}}}else{if(T){this.hideMacGeckoScrollbars();}if(X){if(R=="visible"){this.beforeHideEvent.fire();S=U.length;for(Z=0;Z<S;Z++){c=U[Z];if(Z===0&&!f(c.animateOutCompleteEvent,this.hideEvent.fire,this.hideEvent)){c.animateOutCompleteEvent.subscribe(this.hideEvent.fire,this.hideEvent,true);}c.animateOut();}}else{if(R===""){E.setStyle(this.element,"visibility","hidden");}}}else{if(R=="visible"||R===""){this.beforeHideEvent.fire();E.setStyle(this.element,"visibility","hidden");this.hideEvent.fire();}}}},doCenterOnDOMEvent:function(){if(this.cfg.getProperty("visible")){this.center();}},configFixedCenter:function(R,P,S){var T=P[0],O=C.alreadySubscribed,Q=B.windowResizeEvent,N=B.windowScrollEvent;if(T){this.center();if(!O(this.beforeShowEvent,this.center,this)){this.beforeShowEvent.subscribe(this.center);}if(!O(Q,this.doCenterOnDOMEvent,this)){Q.subscribe(this.doCenterOnDOMEvent,this,true);}if(!O(N,this.doCenterOnDOMEvent,this)){N.subscribe(this.doCenterOnDOMEvent,this,true);}}else{this.beforeShowEvent.unsubscribe(this.center);Q.unsubscribe(this.doCenterOnDOMEvent,this);N.unsubscribe(this.doCenterOnDOMEvent,this);}},configHeight:function(Q,O,R){var N=O[0],P=this.element;E.setStyle(P,"height",N);this.cfg.refireEvent("iframe");},configAutoFillHeight:function(Q,P,R){var O=P[0],N=this.cfg.getProperty("autofillheight");this.cfg.unsubscribeFromConfigEvent("height",this._autoFillOnHeightChange);F.textResizeEvent.unsubscribe("height",this._autoFillOnHeightChange);if(N&&O!==N&&this[N]){E.setStyle(this[N],"height","");}if(O){O=H.trim(O.toLowerCase());this.cfg.subscribeToConfigEvent("height",this._autoFillOnHeightChange,this[O],this);F.textResizeEvent.subscribe(this._autoFillOnHeightChange,this[O],this);this.cfg.setProperty("autofillheight",O,true);}},configWidth:function(Q,N,R){var P=N[0],O=this.element;E.setStyle(O,"width",P);this.cfg.refireEvent("iframe");},configzIndex:function(P,N,Q){var R=N[0],O=this.element;if(!R){R=E.getStyle(O,"zIndex");if(!R||isNaN(R)){R=0;}}if(this.iframe||this.cfg.getProperty("iframe")===true){if(R<=0){R=1;}}E.setStyle(O,"zIndex",R);this.cfg.setProperty("zIndex",R,true);if(this.iframe){this.stackIframe();}},configXY:function(P,O,Q){var S=O[0],N=S[0],R=S[1];this.cfg.setProperty("x",N);this.cfg.setProperty("y",R);this.beforeMoveEvent.fire([N,R]);N=this.cfg.getProperty("x");R=this.cfg.getProperty("y");this.cfg.refireEvent("iframe");this.moveEvent.fire([N,R]);},configX:function(P,O,Q){var N=O[0],R=this.cfg.getProperty("y");this.cfg.setProperty("x",N,true);this.cfg.setProperty("y",R,true);this.beforeMoveEvent.fire([N,R]);N=this.cfg.getProperty("x");R=this.cfg.getProperty("y");E.setX(this.element,N,true);this.cfg.setProperty("xy",[N,R],true);this.cfg.refireEvent("iframe");this.moveEvent.fire([N,R]);},configY:function(P,O,Q){var N=this.cfg.getProperty("x"),R=O[0];this.cfg.setProperty("x",N,true);this.cfg.setProperty("y",R,true);this.beforeMoveEvent.fire([N,R]);N=this.cfg.getProperty("x");R=this.cfg.getProperty("y");E.setY(this.element,R,true);this.cfg.setProperty("xy",[N,R],true);this.cfg.refireEvent("iframe");this.moveEvent.fire([N,R]);},showIframe:function(){var O=this.iframe,N;if(O){N=this.element.parentNode;if(N!=O.parentNode){this._addToParent(N,O);}O.style.display="block";}},hideIframe:function(){if(this.iframe){this.iframe.style.display="none";}},syncIframe:function(){var N=this.iframe,P=this.element,R=B.IFRAME_OFFSET,O=(R*2),Q;if(N){N.style.width=(P.offsetWidth+O+"px");N.style.height=(P.offsetHeight+O+"px");Q=this.cfg.getProperty("xy");if(!H.isArray(Q)||(isNaN(Q[0])||isNaN(Q[1]))){this.syncPosition();Q=this.cfg.getProperty("xy");}E.setXY(N,[(Q[0]-R),(Q[1]-R)]);}},stackIframe:function(){if(this.iframe){var N=E.getStyle(this.element,"zIndex");if(!YAHOO.lang.isUndefined(N)&&!isNaN(N)){E.setStyle(this.iframe,"zIndex",(N-1));}}},configIframe:function(Q,P,R){var N=P[0];function S(){var U=this.iframe,V=this.element,W;if(!U){if(!I){I=document.createElement("iframe");if(this.isSecure){I.src=B.IFRAME_SRC;}if(J.ie){I.style.filter="alpha(opacity=0)";I.frameBorder=0;}else{I.style.opacity="0";}I.style.position="absolute";I.style.border="none";I.style.margin="0";I.style.padding="0";I.style.display="none";}U=I.cloneNode(false);W=V.parentNode;var T=W||document.body;this._addToParent(T,U);this.iframe=U;}this.showIframe();this.syncIframe();this.stackIframe();if(!this._hasIframeEventListeners){this.showEvent.subscribe(this.showIframe);this.hideEvent.subscribe(this.hideIframe);
-this.changeContentEvent.subscribe(this.syncIframe);this._hasIframeEventListeners=true;}}function O(){S.call(this);this.beforeShowEvent.unsubscribe(O);this._iframeDeferred=false;}if(N){if(this.cfg.getProperty("visible")){S.call(this);}else{if(!this._iframeDeferred){this.beforeShowEvent.subscribe(O);this._iframeDeferred=true;}}}else{this.hideIframe();if(this._hasIframeEventListeners){this.showEvent.unsubscribe(this.showIframe);this.hideEvent.unsubscribe(this.hideIframe);this.changeContentEvent.unsubscribe(this.syncIframe);this._hasIframeEventListeners=false;}}},_primeXYFromDOM:function(){if(YAHOO.lang.isUndefined(this.cfg.getProperty("xy"))){this.syncPosition();this.cfg.refireEvent("xy");this.beforeShowEvent.unsubscribe(this._primeXYFromDOM);}},configConstrainToViewport:function(O,N,P){var Q=N[0];if(Q){if(!C.alreadySubscribed(this.beforeMoveEvent,this.enforceConstraints,this)){this.beforeMoveEvent.subscribe(this.enforceConstraints,this,true);}if(!C.alreadySubscribed(this.beforeShowEvent,this._primeXYFromDOM)){this.beforeShowEvent.subscribe(this._primeXYFromDOM);}}else{this.beforeShowEvent.unsubscribe(this._primeXYFromDOM);this.beforeMoveEvent.unsubscribe(this.enforceConstraints,this);}},configContext:function(S,R,O){var V=R[0],P,N,T,Q,U=this.CONTEXT_TRIGGERS;if(V){P=V[0];N=V[1];T=V[2];Q=V[3];if(U&&U.length>0){Q=(Q||[]).concat(U);}if(P){if(typeof P=="string"){this.cfg.setProperty("context",[document.getElementById(P),N,T,Q],true);}if(N&&T){this.align(N,T);}if(this._contextTriggers){this._processTriggers(this._contextTriggers,D,this._alignOnTrigger);}if(Q){this._processTriggers(Q,G,this._alignOnTrigger);this._contextTriggers=Q;}}}},_alignOnTrigger:function(O,N){this.align();},_findTriggerCE:function(N){var O=null;if(N instanceof L){O=N;}else{if(B._TRIGGER_MAP[N]){O=B._TRIGGER_MAP[N];}}return O;},_processTriggers:function(R,T,Q){var P,S;for(var O=0,N=R.length;O<N;++O){P=R[O];S=this._findTriggerCE(P);if(S){S[T](Q,this,true);}else{this[T](P,Q);}}},align:function(O,N){var T=this.cfg.getProperty("context"),S=this,R,Q,U;function P(V,W){switch(O){case B.TOP_LEFT:S.moveTo(W,V);break;case B.TOP_RIGHT:S.moveTo((W-Q.offsetWidth),V);break;case B.BOTTOM_LEFT:S.moveTo(W,(V-Q.offsetHeight));break;case B.BOTTOM_RIGHT:S.moveTo((W-Q.offsetWidth),(V-Q.offsetHeight));break;}}if(T){R=T[0];Q=this.element;S=this;if(!O){O=T[1];}if(!N){N=T[2];}if(Q&&R){U=E.getRegion(R);switch(N){case B.TOP_LEFT:P(U.top,U.left);break;case B.TOP_RIGHT:P(U.top,U.right);break;case B.BOTTOM_LEFT:P(U.bottom,U.left);break;case B.BOTTOM_RIGHT:P(U.bottom,U.right);break;}}}},enforceConstraints:function(O,N,P){var R=N[0];var Q=this.getConstrainedXY(R[0],R[1]);this.cfg.setProperty("x",Q[0],true);this.cfg.setProperty("y",Q[1],true);this.cfg.setProperty("xy",Q,true);},getConstrainedX:function(U){var R=this,N=R.element,d=N.offsetWidth,b=B.VIEWPORT_OFFSET,g=E.getViewportWidth(),c=E.getDocumentScrollLeft(),X=(d+b<g),a=this.cfg.getProperty("context"),P,W,i,S=false,e,V,f,O,h=U,T={"tltr":true,"blbr":true,"brbl":true,"trtl":true};var Y=function(){var j;if((R.cfg.getProperty("x")-c)>W){j=(W-d);}else{j=(W+i);}R.cfg.setProperty("x",(j+c),true);return j;};var Q=function(){if((R.cfg.getProperty("x")-c)>W){return(V-b);}else{return(e-b);}};var Z=function(){var j=Q(),k;if(d>j){if(S){Y();}else{Y();S=true;k=Z();}}return k;};if(this.cfg.getProperty("preventcontextoverlap")&&a&&T[(a[1]+a[2])]){if(X){P=a[0];W=E.getX(P)-c;i=P.offsetWidth;e=W;V=(g-(W+i));Z();}h=this.cfg.getProperty("x");}else{if(X){f=c+b;O=c+g-d-b;if(U<f){h=f;}else{if(U>O){h=O;}}}else{h=b+c;}}return h;},getConstrainedY:function(Y){var V=this,O=V.element,h=O.offsetHeight,g=B.VIEWPORT_OFFSET,c=E.getViewportHeight(),f=E.getDocumentScrollTop(),d=(h+g<c),e=this.cfg.getProperty("context"),T,Z,a,W=false,U,P,b,R,N=Y,X={"trbr":true,"tlbl":true,"bltl":true,"brtr":true};var S=function(){var j;if((V.cfg.getProperty("y")-f)>Z){j=(Z-h);}else{j=(Z+a);}V.cfg.setProperty("y",(j+f),true);return j;};var Q=function(){if((V.cfg.getProperty("y")-f)>Z){return(P-g);}else{return(U-g);}};var i=function(){var k=Q(),j;if(h>k){if(W){S();}else{S();W=true;j=i();}}return j;};if(this.cfg.getProperty("preventcontextoverlap")&&e&&X[(e[1]+e[2])]){if(d){T=e[0];a=T.offsetHeight;Z=(E.getY(T)-f);U=Z;P=(c-(Z+a));i();}N=V.cfg.getProperty("y");}else{if(d){b=f+g;R=f+c-h-g;if(Y<b){N=b;}else{if(Y>R){N=R;}}}else{N=g+f;}}return N;},getConstrainedXY:function(N,O){return[this.getConstrainedX(N),this.getConstrainedY(O)];},center:function(){var Q=B.VIEWPORT_OFFSET,R=this.element.offsetWidth,P=this.element.offsetHeight,O=E.getViewportWidth(),S=E.getViewportHeight(),N,T;if(R<O){N=(O/2)-(R/2)+E.getDocumentScrollLeft();}else{N=Q+E.getDocumentScrollLeft();}if(P<S){T=(S/2)-(P/2)+E.getDocumentScrollTop();}else{T=Q+E.getDocumentScrollTop();}this.cfg.setProperty("xy",[parseInt(N,10),parseInt(T,10)]);this.cfg.refireEvent("iframe");},syncPosition:function(){var N=E.getXY(this.element);this.cfg.setProperty("x",N[0],true);this.cfg.setProperty("y",N[1],true);this.cfg.setProperty("xy",N,true);},onDomResize:function(P,O){var N=this;B.superclass.onDomResize.call(this,P,O);setTimeout(function(){N.syncPosition();N.cfg.refireEvent("iframe");N.cfg.refireEvent("context");},0);},_getComputedHeight:(function(){if(document.defaultView&&document.defaultView.getComputedStyle){return function(O){var N=null;if(O.ownerDocument&&O.ownerDocument.defaultView){var P=O.ownerDocument.defaultView.getComputedStyle(O,"");if(P){N=parseInt(P.height,10);}}return(H.isNumber(N))?N:null;};}else{return function(O){var N=null;if(O.style.pixelHeight){N=O.style.pixelHeight;}return(H.isNumber(N))?N:null;};}})(),_validateAutoFillHeight:function(N){return(!N)||(H.isString(N)&&B.STD_MOD_RE.test(N));},_autoFillOnHeightChange:function(P,N,O){this.fillHeight(O);},_getPreciseHeight:function(O){var N=O.offsetHeight;if(O.getBoundingClientRect){var P=O.getBoundingClientRect();N=P.bottom-P.top;}return N;},fillHeight:function(Q){if(Q){var O=this.innerElement||this.element,N=[this.header,this.body,this.footer],U,V=0,W=0,S=0,P=false;
-for(var T=0,R=N.length;T<R;T++){U=N[T];if(U){if(Q!==U){W+=this._getPreciseHeight(U);}else{P=true;}}}if(P){if(J.ie||J.opera){E.setStyle(Q,"height",0+"px");}V=this._getComputedHeight(O);if(V===null){E.addClass(O,"yui-override-padding");V=O.clientHeight;E.removeClass(O,"yui-override-padding");}S=V-W;E.setStyle(Q,"height",S+"px");if(Q.offsetHeight!=S){S=S-(Q.offsetHeight-S);}E.setStyle(Q,"height",S+"px");}}},bringToTop:function(){var R=[],Q=this.element;function U(Y,X){var a=E.getStyle(Y,"zIndex"),Z=E.getStyle(X,"zIndex"),W=(!a||isNaN(a))?0:parseInt(a,10),V=(!Z||isNaN(Z))?0:parseInt(Z,10);if(W>V){return -1;}else{if(W<V){return 1;}else{return 0;}}}function P(X){var W=E.hasClass(X,B.CSS_OVERLAY),V=YAHOO.widget.Panel;if(W&&!E.isAncestor(Q,X)){if(V&&E.hasClass(X,V.CSS_PANEL)){R[R.length]=X.parentNode;}else{R[R.length]=X;}}}E.getElementsBy(P,"DIV",document.body);R.sort(U);var N=R[0],T;if(N){T=E.getStyle(N,"zIndex");if(!isNaN(T)){var S=false;if(N!=Q){S=true;}else{if(R.length>1){var O=E.getStyle(R[1],"zIndex");if(!isNaN(O)&&(T==O)){S=true;}}}if(S){this.cfg.setProperty("zindex",(parseInt(T,10)+2));}}}},destroy:function(){if(this.iframe){this.iframe.parentNode.removeChild(this.iframe);}this.iframe=null;B.windowResizeEvent.unsubscribe(this.doCenterOnDOMEvent,this);B.windowScrollEvent.unsubscribe(this.doCenterOnDOMEvent,this);F.textResizeEvent.unsubscribe(this._autoFillOnHeightChange);B.superclass.destroy.call(this);},toString:function(){return"Overlay "+this.id;}});}());(function(){YAHOO.widget.OverlayManager=function(G){this.init(G);};var D=YAHOO.widget.Overlay,C=YAHOO.util.Event,E=YAHOO.util.Dom,B=YAHOO.util.Config,F=YAHOO.util.CustomEvent,A=YAHOO.widget.OverlayManager;A.CSS_FOCUSED="focused";A.prototype={constructor:A,overlays:null,initDefaultConfig:function(){this.cfg.addProperty("overlays",{suppressEvent:true});this.cfg.addProperty("focusevent",{value:"mousedown"});},init:function(I){this.cfg=new B(this);this.initDefaultConfig();if(I){this.cfg.applyConfig(I,true);}this.cfg.fireQueue();var H=null;this.getActive=function(){return H;};this.focus=function(J){var K=this.find(J);if(K){K.focus();}};this.remove=function(K){var M=this.find(K),J;if(M){if(H==M){H=null;}var L=(M.element===null&&M.cfg===null)?true:false;if(!L){J=E.getStyle(M.element,"zIndex");M.cfg.setProperty("zIndex",-1000,true);}this.overlays.sort(this.compareZIndexDesc);this.overlays=this.overlays.slice(0,(this.overlays.length-1));M.hideEvent.unsubscribe(M.blur);M.destroyEvent.unsubscribe(this._onOverlayDestroy,M);M.focusEvent.unsubscribe(this._onOverlayFocusHandler,M);M.blurEvent.unsubscribe(this._onOverlayBlurHandler,M);if(!L){C.removeListener(M.element,this.cfg.getProperty("focusevent"),this._onOverlayElementFocus);M.cfg.setProperty("zIndex",J,true);M.cfg.setProperty("manager",null);}if(M.focusEvent._managed){M.focusEvent=null;}if(M.blurEvent._managed){M.blurEvent=null;}if(M.focus._managed){M.focus=null;}if(M.blur._managed){M.blur=null;}}};this.blurAll=function(){var K=this.overlays.length,J;if(K>0){J=K-1;do{this.overlays[J].blur();}while(J--);}};this._manageBlur=function(J){var K=false;if(H==J){E.removeClass(H.element,A.CSS_FOCUSED);H=null;K=true;}return K;};this._manageFocus=function(J){var K=false;if(H!=J){if(H){H.blur();}H=J;this.bringToTop(H);E.addClass(H.element,A.CSS_FOCUSED);K=true;}return K;};var G=this.cfg.getProperty("overlays");if(!this.overlays){this.overlays=[];}if(G){this.register(G);this.overlays.sort(this.compareZIndexDesc);}},_onOverlayElementFocus:function(I){var G=C.getTarget(I),H=this.close;if(H&&(G==H||E.isAncestor(H,G))){this.blur();}else{this.focus();}},_onOverlayDestroy:function(H,G,I){this.remove(I);},_onOverlayFocusHandler:function(H,G,I){this._manageFocus(I);},_onOverlayBlurHandler:function(H,G,I){this._manageBlur(I);},_bindFocus:function(G){var H=this;if(!G.focusEvent){G.focusEvent=G.createEvent("focus");G.focusEvent.signature=F.LIST;G.focusEvent._managed=true;}else{G.focusEvent.subscribe(H._onOverlayFocusHandler,G,H);}if(!G.focus){C.on(G.element,H.cfg.getProperty("focusevent"),H._onOverlayElementFocus,null,G);G.focus=function(){if(H._manageFocus(this)){if(this.cfg.getProperty("visible")&&this.focusFirst){this.focusFirst();}this.focusEvent.fire();}};G.focus._managed=true;}},_bindBlur:function(G){var H=this;if(!G.blurEvent){G.blurEvent=G.createEvent("blur");G.blurEvent.signature=F.LIST;G.focusEvent._managed=true;}else{G.blurEvent.subscribe(H._onOverlayBlurHandler,G,H);}if(!G.blur){G.blur=function(){if(H._manageBlur(this)){this.blurEvent.fire();}};G.blur._managed=true;}G.hideEvent.subscribe(G.blur);},_bindDestroy:function(G){var H=this;G.destroyEvent.subscribe(H._onOverlayDestroy,G,H);},_syncZIndex:function(G){var H=E.getStyle(G.element,"zIndex");if(!isNaN(H)){G.cfg.setProperty("zIndex",parseInt(H,10));}else{G.cfg.setProperty("zIndex",0);}},register:function(G){var K,J=false,H,I;if(G instanceof D){G.cfg.addProperty("manager",{value:this});this._bindFocus(G);this._bindBlur(G);this._bindDestroy(G);this._syncZIndex(G);this.overlays.push(G);this.bringToTop(G);J=true;}else{if(G instanceof Array){for(H=0,I=G.length;H<I;H++){J=this.register(G[H])||J;}}}return J;},bringToTop:function(M){var I=this.find(M),L,G,J;if(I){J=this.overlays;J.sort(this.compareZIndexDesc);G=J[0];if(G){L=E.getStyle(G.element,"zIndex");if(!isNaN(L)){var K=false;if(G!==I){K=true;}else{if(J.length>1){var H=E.getStyle(J[1].element,"zIndex");if(!isNaN(H)&&(L==H)){K=true;}}}if(K){I.cfg.setProperty("zindex",(parseInt(L,10)+2));}}J.sort(this.compareZIndexDesc);}}},find:function(G){var K=G instanceof D,I=this.overlays,M=I.length,J=null,L,H;if(K||typeof G=="string"){for(H=M-1;H>=0;H--){L=I[H];if((K&&(L===G))||(L.id==G)){J=L;break;}}}return J;},compareZIndexDesc:function(J,I){var H=(J.cfg)?J.cfg.getProperty("zIndex"):null,G=(I.cfg)?I.cfg.getProperty("zIndex"):null;if(H===null&&G===null){return 0;}else{if(H===null){return 1;}else{if(G===null){return -1;}else{if(H>G){return -1;}else{if(H<G){return 1;}else{return 0;}}}}}},showAll:function(){var H=this.overlays,I=H.length,G;
-for(G=I-1;G>=0;G--){H[G].show();}},hideAll:function(){var H=this.overlays,I=H.length,G;for(G=I-1;G>=0;G--){H[G].hide();}},toString:function(){return"OverlayManager";}};}());(function(){YAHOO.widget.ContainerEffect=function(E,H,G,D,F){if(!F){F=YAHOO.util.Anim;}this.overlay=E;this.attrIn=H;this.attrOut=G;this.targetElement=D||E.element;this.animClass=F;};var B=YAHOO.util.Dom,C=YAHOO.util.CustomEvent,A=YAHOO.widget.ContainerEffect;A.FADE=function(D,F){var G=YAHOO.util.Easing,I={attributes:{opacity:{from:0,to:1}},duration:F,method:G.easeIn},E={attributes:{opacity:{to:0}},duration:F,method:G.easeOut},H=new A(D,I,E,D.element);H.handleUnderlayStart=function(){var K=this.overlay.underlay;if(K&&YAHOO.env.ua.ie){var J=(K.filters&&K.filters.length>0);if(J){B.addClass(D.element,"yui-effect-fade");}}};H.handleUnderlayComplete=function(){var J=this.overlay.underlay;if(J&&YAHOO.env.ua.ie){B.removeClass(D.element,"yui-effect-fade");}};H.handleStartAnimateIn=function(K,J,L){B.addClass(L.overlay.element,"hide-select");if(!L.overlay.underlay){L.overlay.cfg.refireEvent("underlay");}L.handleUnderlayStart();B.setStyle(L.overlay.element,"visibility","visible");B.setStyle(L.overlay.element,"opacity",0);};H.handleCompleteAnimateIn=function(K,J,L){B.removeClass(L.overlay.element,"hide-select");if(L.overlay.element.style.filter){L.overlay.element.style.filter=null;}L.handleUnderlayComplete();L.overlay.cfg.refireEvent("iframe");L.animateInCompleteEvent.fire();};H.handleStartAnimateOut=function(K,J,L){B.addClass(L.overlay.element,"hide-select");L.handleUnderlayStart();};H.handleCompleteAnimateOut=function(K,J,L){B.removeClass(L.overlay.element,"hide-select");if(L.overlay.element.style.filter){L.overlay.element.style.filter=null;}B.setStyle(L.overlay.element,"visibility","hidden");B.setStyle(L.overlay.element,"opacity",1);L.handleUnderlayComplete();L.overlay.cfg.refireEvent("iframe");L.animateOutCompleteEvent.fire();};H.init();return H;};A.SLIDE=function(F,D){var I=YAHOO.util.Easing,L=F.cfg.getProperty("x")||B.getX(F.element),K=F.cfg.getProperty("y")||B.getY(F.element),M=B.getClientWidth(),H=F.element.offsetWidth,J={attributes:{points:{to:[L,K]}},duration:D,method:I.easeIn},E={attributes:{points:{to:[(M+25),K]}},duration:D,method:I.easeOut},G=new A(F,J,E,F.element,YAHOO.util.Motion);G.handleStartAnimateIn=function(O,N,P){P.overlay.element.style.left=((-25)-H)+"px";P.overlay.element.style.top=K+"px";};G.handleTweenAnimateIn=function(Q,P,R){var S=B.getXY(R.overlay.element),O=S[0],N=S[1];if(B.getStyle(R.overlay.element,"visibility")=="hidden"&&O<L){B.setStyle(R.overlay.element,"visibility","visible");}R.overlay.cfg.setProperty("xy",[O,N],true);R.overlay.cfg.refireEvent("iframe");};G.handleCompleteAnimateIn=function(O,N,P){P.overlay.cfg.setProperty("xy",[L,K],true);P.startX=L;P.startY=K;P.overlay.cfg.refireEvent("iframe");P.animateInCompleteEvent.fire();};G.handleStartAnimateOut=function(O,N,R){var P=B.getViewportWidth(),S=B.getXY(R.overlay.element),Q=S[1];R.animOut.attributes.points.to=[(P+25),Q];};G.handleTweenAnimateOut=function(P,O,Q){var S=B.getXY(Q.overlay.element),N=S[0],R=S[1];Q.overlay.cfg.setProperty("xy",[N,R],true);Q.overlay.cfg.refireEvent("iframe");};G.handleCompleteAnimateOut=function(O,N,P){B.setStyle(P.overlay.element,"visibility","hidden");P.overlay.cfg.setProperty("xy",[L,K]);P.animateOutCompleteEvent.fire();};G.init();return G;};A.prototype={init:function(){this.beforeAnimateInEvent=this.createEvent("beforeAnimateIn");this.beforeAnimateInEvent.signature=C.LIST;this.beforeAnimateOutEvent=this.createEvent("beforeAnimateOut");this.beforeAnimateOutEvent.signature=C.LIST;this.animateInCompleteEvent=this.createEvent("animateInComplete");this.animateInCompleteEvent.signature=C.LIST;this.animateOutCompleteEvent=this.createEvent("animateOutComplete");this.animateOutCompleteEvent.signature=C.LIST;this.animIn=new this.animClass(this.targetElement,this.attrIn.attributes,this.attrIn.duration,this.attrIn.method);this.animIn.onStart.subscribe(this.handleStartAnimateIn,this);this.animIn.onTween.subscribe(this.handleTweenAnimateIn,this);this.animIn.onComplete.subscribe(this.handleCompleteAnimateIn,this);this.animOut=new this.animClass(this.targetElement,this.attrOut.attributes,this.attrOut.duration,this.attrOut.method);this.animOut.onStart.subscribe(this.handleStartAnimateOut,this);this.animOut.onTween.subscribe(this.handleTweenAnimateOut,this);this.animOut.onComplete.subscribe(this.handleCompleteAnimateOut,this);},animateIn:function(){this.beforeAnimateInEvent.fire();this.animIn.animate();},animateOut:function(){this.beforeAnimateOutEvent.fire();this.animOut.animate();},handleStartAnimateIn:function(E,D,F){},handleTweenAnimateIn:function(E,D,F){},handleCompleteAnimateIn:function(E,D,F){},handleStartAnimateOut:function(E,D,F){},handleTweenAnimateOut:function(E,D,F){},handleCompleteAnimateOut:function(E,D,F){},toString:function(){var D="ContainerEffect";if(this.overlay){D+=" ["+this.overlay.toString()+"]";}return D;}};YAHOO.lang.augmentProto(A,YAHOO.util.EventProvider);})();YAHOO.register("containercore",YAHOO.widget.Module,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/container/container_core.js b/eclipse.org-common/yui/2.6.0/build/container/container_core.js
deleted file mode 100644
index 9f14c7f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/container/container_core.js
+++ /dev/null
@@ -1,5049 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function () {
-
-    /**
-    * Config is a utility used within an Object to allow the implementer to
-    * maintain a list of local configuration properties and listen for changes 
-    * to those properties dynamically using CustomEvent. The initial values are 
-    * also maintained so that the configuration can be reset at any given point 
-    * to its initial state.
-    * @namespace YAHOO.util
-    * @class Config
-    * @constructor
-    * @param {Object} owner The owner Object to which this Config Object belongs
-    */
-    YAHOO.util.Config = function (owner) {
-
-        if (owner) {
-            this.init(owner);
-        }
-
-
-    };
-
-
-    var Lang = YAHOO.lang,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Config = YAHOO.util.Config;
-
-
-    /**
-     * Constant representing the CustomEvent type for the config changed event.
-     * @property YAHOO.util.Config.CONFIG_CHANGED_EVENT
-     * @private
-     * @static
-     * @final
-     */
-    Config.CONFIG_CHANGED_EVENT = "configChanged";
-    
-    /**
-     * Constant representing the boolean type string
-     * @property YAHOO.util.Config.BOOLEAN_TYPE
-     * @private
-     * @static
-     * @final
-     */
-    Config.BOOLEAN_TYPE = "boolean";
-    
-    Config.prototype = {
-     
-        /**
-        * Object reference to the owner of this Config Object
-        * @property owner
-        * @type Object
-        */
-        owner: null,
-        
-        /**
-        * Boolean flag that specifies whether a queue is currently 
-        * being executed
-        * @property queueInProgress
-        * @type Boolean
-        */
-        queueInProgress: false,
-        
-        /**
-        * Maintains the local collection of configuration property objects and 
-        * their specified values
-        * @property config
-        * @private
-        * @type Object
-        */ 
-        config: null,
-        
-        /**
-        * Maintains the local collection of configuration property objects as 
-        * they were initially applied.
-        * This object is used when resetting a property.
-        * @property initialConfig
-        * @private
-        * @type Object
-        */ 
-        initialConfig: null,
-        
-        /**
-        * Maintains the local, normalized CustomEvent queue
-        * @property eventQueue
-        * @private
-        * @type Object
-        */ 
-        eventQueue: null,
-        
-        /**
-        * Custom Event, notifying subscribers when Config properties are set 
-        * (setProperty is called without the silent flag
-        * @event configChangedEvent
-        */
-        configChangedEvent: null,
-    
-        /**
-        * Initializes the configuration Object and all of its local members.
-        * @method init
-        * @param {Object} owner The owner Object to which this Config 
-        * Object belongs
-        */
-        init: function (owner) {
-    
-            this.owner = owner;
-    
-            this.configChangedEvent = 
-                this.createEvent(Config.CONFIG_CHANGED_EVENT);
-    
-            this.configChangedEvent.signature = CustomEvent.LIST;
-            this.queueInProgress = false;
-            this.config = {};
-            this.initialConfig = {};
-            this.eventQueue = [];
-        
-        },
-        
-        /**
-        * Validates that the value passed in is a Boolean.
-        * @method checkBoolean
-        * @param {Object} val The value to validate
-        * @return {Boolean} true, if the value is valid
-        */ 
-        checkBoolean: function (val) {
-            return (typeof val == Config.BOOLEAN_TYPE);
-        },
-        
-        /**
-        * Validates that the value passed in is a number.
-        * @method checkNumber
-        * @param {Object} val The value to validate
-        * @return {Boolean} true, if the value is valid
-        */
-        checkNumber: function (val) {
-            return (!isNaN(val));
-        },
-        
-        /**
-        * Fires a configuration property event using the specified value. 
-        * @method fireEvent
-        * @private
-        * @param {String} key The configuration property's name
-        * @param {value} Object The value of the correct type for the property
-        */ 
-        fireEvent: function ( key, value ) {
-            var property = this.config[key];
-        
-            if (property && property.event) {
-                property.event.fire(value);
-            } 
-        },
-        
-        /**
-        * Adds a property to the Config Object's private config hash.
-        * @method addProperty
-        * @param {String} key The configuration property's name
-        * @param {Object} propertyObject The Object containing all of this 
-        * property's arguments
-        */
-        addProperty: function ( key, propertyObject ) {
-            key = key.toLowerCase();
-        
-            this.config[key] = propertyObject;
-        
-            propertyObject.event = this.createEvent(key, { scope: this.owner });
-            propertyObject.event.signature = CustomEvent.LIST;
-            
-            
-            propertyObject.key = key;
-        
-            if (propertyObject.handler) {
-                propertyObject.event.subscribe(propertyObject.handler, 
-                    this.owner);
-            }
-        
-            this.setProperty(key, propertyObject.value, true);
-            
-            if (! propertyObject.suppressEvent) {
-                this.queueProperty(key, propertyObject.value);
-            }
-            
-        },
-        
-        /**
-        * Returns a key-value configuration map of the values currently set in  
-        * the Config Object.
-        * @method getConfig
-        * @return {Object} The current config, represented in a key-value map
-        */
-        getConfig: function () {
-        
-            var cfg = {},
-                currCfg = this.config,
-                prop,
-                property;
-                
-            for (prop in currCfg) {
-                if (Lang.hasOwnProperty(currCfg, prop)) {
-                    property = currCfg[prop];
-                    if (property && property.event) {
-                        cfg[prop] = property.value;
-                    }
-                }
-            }
-
-            return cfg;
-        },
-        
-        /**
-        * Returns the value of specified property.
-        * @method getProperty
-        * @param {String} key The name of the property
-        * @return {Object}  The value of the specified property
-        */
-        getProperty: function (key) {
-            var property = this.config[key.toLowerCase()];
-            if (property && property.event) {
-                return property.value;
-            } else {
-                return undefined;
-            }
-        },
-        
-        /**
-        * Resets the specified property's value to its initial value.
-        * @method resetProperty
-        * @param {String} key The name of the property
-        * @return {Boolean} True is the property was reset, false if not
-        */
-        resetProperty: function (key) {
-    
-            key = key.toLowerCase();
-        
-            var property = this.config[key];
-    
-            if (property && property.event) {
-    
-                if (this.initialConfig[key] && 
-                    !Lang.isUndefined(this.initialConfig[key])) {
-    
-                    this.setProperty(key, this.initialConfig[key]);
-
-                    return true;
-    
-                }
-    
-            } else {
-    
-                return false;
-            }
-    
-        },
-        
-        /**
-        * Sets the value of a property. If the silent property is passed as 
-        * true, the property's event will not be fired.
-        * @method setProperty
-        * @param {String} key The name of the property
-        * @param {String} value The value to set the property to
-        * @param {Boolean} silent Whether the value should be set silently, 
-        * without firing the property event.
-        * @return {Boolean} True, if the set was successful, false if it failed.
-        */
-        setProperty: function (key, value, silent) {
-        
-            var property;
-        
-            key = key.toLowerCase();
-        
-            if (this.queueInProgress && ! silent) {
-                // Currently running through a queue... 
-                this.queueProperty(key,value);
-                return true;
-    
-            } else {
-                property = this.config[key];
-                if (property && property.event) {
-                    if (property.validator && !property.validator(value)) {
-                        return false;
-                    } else {
-                        property.value = value;
-                        if (! silent) {
-                            this.fireEvent(key, value);
-                            this.configChangedEvent.fire([key, value]);
-                        }
-                        return true;
-                    }
-                } else {
-                    return false;
-                }
-            }
-        },
-        
-        /**
-        * Sets the value of a property and queues its event to execute. If the 
-        * event is already scheduled to execute, it is
-        * moved from its current position to the end of the queue.
-        * @method queueProperty
-        * @param {String} key The name of the property
-        * @param {String} value The value to set the property to
-        * @return {Boolean}  true, if the set was successful, false if 
-        * it failed.
-        */ 
-        queueProperty: function (key, value) {
-        
-            key = key.toLowerCase();
-        
-            var property = this.config[key],
-                foundDuplicate = false,
-                iLen,
-                queueItem,
-                queueItemKey,
-                queueItemValue,
-                sLen,
-                supercedesCheck,
-                qLen,
-                queueItemCheck,
-                queueItemCheckKey,
-                queueItemCheckValue,
-                i,
-                s,
-                q;
-                                
-            if (property && property.event) {
-    
-                if (!Lang.isUndefined(value) && property.validator && 
-                    !property.validator(value)) { // validator
-                    return false;
-                } else {
-        
-                    if (!Lang.isUndefined(value)) {
-                        property.value = value;
-                    } else {
-                        value = property.value;
-                    }
-        
-                    foundDuplicate = false;
-                    iLen = this.eventQueue.length;
-        
-                    for (i = 0; i < iLen; i++) {
-                        queueItem = this.eventQueue[i];
-        
-                        if (queueItem) {
-                            queueItemKey = queueItem[0];
-                            queueItemValue = queueItem[1];
-
-                            if (queueItemKey == key) {
-    
-                                /*
-                                    found a dupe... push to end of queue, null 
-                                    current item, and break
-                                */
-    
-                                this.eventQueue[i] = null;
-    
-                                this.eventQueue.push(
-                                    [key, (!Lang.isUndefined(value) ? 
-                                    value : queueItemValue)]);
-    
-                                foundDuplicate = true;
-                                break;
-                            }
-                        }
-                    }
-                    
-                    // this is a refire, or a new property in the queue
-    
-                    if (! foundDuplicate && !Lang.isUndefined(value)) { 
-                        this.eventQueue.push([key, value]);
-                    }
-                }
-        
-                if (property.supercedes) {
-
-                    sLen = property.supercedes.length;
-
-                    for (s = 0; s < sLen; s++) {
-
-                        supercedesCheck = property.supercedes[s];
-                        qLen = this.eventQueue.length;
-
-                        for (q = 0; q < qLen; q++) {
-                            queueItemCheck = this.eventQueue[q];
-
-                            if (queueItemCheck) {
-                                queueItemCheckKey = queueItemCheck[0];
-                                queueItemCheckValue = queueItemCheck[1];
-
-                                if (queueItemCheckKey == 
-                                    supercedesCheck.toLowerCase() ) {
-
-                                    this.eventQueue.push([queueItemCheckKey, 
-                                        queueItemCheckValue]);
-
-                                    this.eventQueue[q] = null;
-                                    break;
-
-                                }
-                            }
-                        }
-                    }
-                }
-
-
-                return true;
-            } else {
-                return false;
-            }
-        },
-        
-        /**
-        * Fires the event for a property using the property's current value.
-        * @method refireEvent
-        * @param {String} key The name of the property
-        */
-        refireEvent: function (key) {
-    
-            key = key.toLowerCase();
-        
-            var property = this.config[key];
-    
-            if (property && property.event && 
-    
-                !Lang.isUndefined(property.value)) {
-    
-                if (this.queueInProgress) {
-    
-                    this.queueProperty(key);
-    
-                } else {
-    
-                    this.fireEvent(key, property.value);
-    
-                }
-    
-            }
-        },
-        
-        /**
-        * Applies a key-value Object literal to the configuration, replacing  
-        * any existing values, and queueing the property events.
-        * Although the values will be set, fireQueue() must be called for their 
-        * associated events to execute.
-        * @method applyConfig
-        * @param {Object} userConfig The configuration Object literal
-        * @param {Boolean} init  When set to true, the initialConfig will 
-        * be set to the userConfig passed in, so that calling a reset will 
-        * reset the properties to the passed values.
-        */
-        applyConfig: function (userConfig, init) {
-        
-            var sKey,
-                oConfig;
-
-            if (init) {
-                oConfig = {};
-                for (sKey in userConfig) {
-                    if (Lang.hasOwnProperty(userConfig, sKey)) {
-                        oConfig[sKey.toLowerCase()] = userConfig[sKey];
-                    }
-                }
-                this.initialConfig = oConfig;
-            }
-
-            for (sKey in userConfig) {
-                if (Lang.hasOwnProperty(userConfig, sKey)) {
-                    this.queueProperty(sKey, userConfig[sKey]);
-                }
-            }
-        },
-        
-        /**
-        * Refires the events for all configuration properties using their 
-        * current values.
-        * @method refresh
-        */
-        refresh: function () {
-
-            var prop;
-
-            for (prop in this.config) {
-                if (Lang.hasOwnProperty(this.config, prop)) {
-                    this.refireEvent(prop);
-                }
-            }
-        },
-        
-        /**
-        * Fires the normalized list of queued property change events
-        * @method fireQueue
-        */
-        fireQueue: function () {
-        
-            var i, 
-                queueItem,
-                key,
-                value,
-                property;
-        
-            this.queueInProgress = true;
-            for (i = 0;i < this.eventQueue.length; i++) {
-                queueItem = this.eventQueue[i];
-                if (queueItem) {
-        
-                    key = queueItem[0];
-                    value = queueItem[1];
-                    property = this.config[key];
-
-                    property.value = value;
-
-                    // Clear out queue entry, to avoid it being 
-                    // re-added to the queue by any queueProperty/supercedes
-                    // calls which are invoked during fireEvent
-                    this.eventQueue[i] = null;
-
-                    this.fireEvent(key,value);
-                }
-            }
-            
-            this.queueInProgress = false;
-            this.eventQueue = [];
-        },
-        
-        /**
-        * Subscribes an external handler to the change event for any 
-        * given property. 
-        * @method subscribeToConfigEvent
-        * @param {String} key The property name
-        * @param {Function} handler The handler function to use subscribe to 
-        * the property's event
-        * @param {Object} obj The Object to use for scoping the event handler 
-        * (see CustomEvent documentation)
-        * @param {Boolean} override Optional. If true, will override "this"  
-        * within the handler to map to the scope Object passed into the method.
-        * @return {Boolean} True, if the subscription was successful, 
-        * otherwise false.
-        */ 
-        subscribeToConfigEvent: function (key, handler, obj, override) {
-    
-            var property = this.config[key.toLowerCase()];
-    
-            if (property && property.event) {
-                if (!Config.alreadySubscribed(property.event, handler, obj)) {
-                    property.event.subscribe(handler, obj, override);
-                }
-                return true;
-            } else {
-                return false;
-            }
-    
-        },
-        
-        /**
-        * Unsubscribes an external handler from the change event for any 
-        * given property. 
-        * @method unsubscribeFromConfigEvent
-        * @param {String} key The property name
-        * @param {Function} handler The handler function to use subscribe to 
-        * the property's event
-        * @param {Object} obj The Object to use for scoping the event 
-        * handler (see CustomEvent documentation)
-        * @return {Boolean} True, if the unsubscription was successful, 
-        * otherwise false.
-        */
-        unsubscribeFromConfigEvent: function (key, handler, obj) {
-            var property = this.config[key.toLowerCase()];
-            if (property && property.event) {
-                return property.event.unsubscribe(handler, obj);
-            } else {
-                return false;
-            }
-        },
-        
-        /**
-        * Returns a string representation of the Config object
-        * @method toString
-        * @return {String} The Config object in string format.
-        */
-        toString: function () {
-            var output = "Config";
-            if (this.owner) {
-                output += " [" + this.owner.toString() + "]";
-            }
-            return output;
-        },
-        
-        /**
-        * Returns a string representation of the Config object's current 
-        * CustomEvent queue
-        * @method outputEventQueue
-        * @return {String} The string list of CustomEvents currently queued 
-        * for execution
-        */
-        outputEventQueue: function () {
-
-            var output = "",
-                queueItem,
-                q,
-                nQueue = this.eventQueue.length;
-              
-            for (q = 0; q < nQueue; q++) {
-                queueItem = this.eventQueue[q];
-                if (queueItem) {
-                    output += queueItem[0] + "=" + queueItem[1] + ", ";
-                }
-            }
-            return output;
-        },
-
-        /**
-        * Sets all properties to null, unsubscribes all listeners from each 
-        * property's change event and all listeners from the configChangedEvent.
-        * @method destroy
-        */
-        destroy: function () {
-
-            var oConfig = this.config,
-                sProperty,
-                oProperty;
-
-
-            for (sProperty in oConfig) {
-            
-                if (Lang.hasOwnProperty(oConfig, sProperty)) {
-
-                    oProperty = oConfig[sProperty];
-
-                    oProperty.event.unsubscribeAll();
-                    oProperty.event = null;
-
-                }
-            
-            }
-            
-            this.configChangedEvent.unsubscribeAll();
-            
-            this.configChangedEvent = null;
-            this.owner = null;
-            this.config = null;
-            this.initialConfig = null;
-            this.eventQueue = null;
-        
-        }
-
-    };
-    
-    
-    
-    /**
-    * Checks to determine if a particular function/Object pair are already 
-    * subscribed to the specified CustomEvent
-    * @method YAHOO.util.Config.alreadySubscribed
-    * @static
-    * @param {YAHOO.util.CustomEvent} evt The CustomEvent for which to check 
-    * the subscriptions
-    * @param {Function} fn The function to look for in the subscribers list
-    * @param {Object} obj The execution scope Object for the subscription
-    * @return {Boolean} true, if the function/Object pair is already subscribed 
-    * to the CustomEvent passed in
-    */
-    Config.alreadySubscribed = function (evt, fn, obj) {
-    
-        var nSubscribers = evt.subscribers.length,
-            subsc,
-            i;
-
-        if (nSubscribers > 0) {
-            i = nSubscribers - 1;
-            do {
-                subsc = evt.subscribers[i];
-                if (subsc && subsc.obj == obj && subsc.fn == fn) {
-                    return true;
-                }
-            }
-            while (i--);
-        }
-
-        return false;
-
-    };
-
-    YAHOO.lang.augmentProto(Config, YAHOO.util.EventProvider);
-
-}());
-
-(function () {
-
-    /**
-    * The Container family of components is designed to enable developers to 
-    * create different kinds of content-containing modules on the web. Module 
-    * and Overlay are the most basic containers, and they can be used directly 
-    * or extended to build custom containers. Also part of the Container family 
-    * are four UI controls that extend Module and Overlay: Tooltip, Panel, 
-    * Dialog, and SimpleDialog.
-    * @module container
-    * @title Container
-    * @requires yahoo, dom, event 
-    * @optional dragdrop, animation, button
-    */
-    
-    /**
-    * Module is a JavaScript representation of the Standard Module Format. 
-    * Standard Module Format is a simple standard for markup containers where 
-    * child nodes representing the header, body, and footer of the content are 
-    * denoted using the CSS classes "hd", "bd", and "ft" respectively. 
-    * Module is the base class for all other classes in the YUI 
-    * Container package.
-    * @namespace YAHOO.widget
-    * @class Module
-    * @constructor
-    * @param {String} el The element ID representing the Module <em>OR</em>
-    * @param {HTMLElement} el The element representing the Module
-    * @param {Object} userConfig The configuration Object literal containing 
-    * the configuration that should be set for this module. See configuration 
-    * documentation for more details.
-    */
-    YAHOO.widget.Module = function (el, userConfig) {
-        if (el) {
-            this.init(el, userConfig);
-        } else {
-        }
-    };
-
-    var Dom = YAHOO.util.Dom,
-        Config = YAHOO.util.Config,
-        Event = YAHOO.util.Event,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Module = YAHOO.widget.Module,
-
-        m_oModuleTemplate,
-        m_oHeaderTemplate,
-        m_oBodyTemplate,
-        m_oFooterTemplate,
-
-        /**
-        * Constant representing the name of the Module's events
-        * @property EVENT_TYPES
-        * @private
-        * @final
-        * @type Object
-        */
-        EVENT_TYPES = {
-            "BEFORE_INIT": "beforeInit",
-            "INIT": "init",
-            "APPEND": "append",
-            "BEFORE_RENDER": "beforeRender",
-            "RENDER": "render",
-            "CHANGE_HEADER": "changeHeader",
-            "CHANGE_BODY": "changeBody",
-            "CHANGE_FOOTER": "changeFooter",
-            "CHANGE_CONTENT": "changeContent",
-            "DESTORY": "destroy",
-            "BEFORE_SHOW": "beforeShow",
-            "SHOW": "show",
-            "BEFORE_HIDE": "beforeHide",
-            "HIDE": "hide"
-        },
-            
-        /**
-        * Constant representing the Module's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-        
-            "VISIBLE": { 
-                key: "visible", 
-                value: true, 
-                validator: YAHOO.lang.isBoolean 
-            },
-        
-            "EFFECT": { 
-                key: "effect", 
-                suppressEvent: true, 
-                supercedes: ["visible"] 
-            },
-
-            "MONITOR_RESIZE": { 
-                key: "monitorresize", 
-                value: true  
-            },
-
-            "APPEND_TO_DOCUMENT_BODY": { 
-                key: "appendtodocumentbody", 
-                value: false
-            }
-        };
-    
-    /**
-    * Constant representing the prefix path to use for non-secure images
-    * @property YAHOO.widget.Module.IMG_ROOT
-    * @static
-    * @final
-    * @type String
-    */
-    Module.IMG_ROOT = null;
-    
-    /**
-    * Constant representing the prefix path to use for securely served images
-    * @property YAHOO.widget.Module.IMG_ROOT_SSL
-    * @static
-    * @final
-    * @type String
-    */
-    Module.IMG_ROOT_SSL = null;
-    
-    /**
-    * Constant for the default CSS class name that represents a Module
-    * @property YAHOO.widget.Module.CSS_MODULE
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_MODULE = "yui-module";
-    
-    /**
-    * Constant representing the module header
-    * @property YAHOO.widget.Module.CSS_HEADER
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_HEADER = "hd";
-
-    /**
-    * Constant representing the module body
-    * @property YAHOO.widget.Module.CSS_BODY
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_BODY = "bd";
-    
-    /**
-    * Constant representing the module footer
-    * @property YAHOO.widget.Module.CSS_FOOTER
-    * @static
-    * @final
-    * @type String
-    */
-    Module.CSS_FOOTER = "ft";
-    
-    /**
-    * Constant representing the url for the "src" attribute of the iframe 
-    * used to monitor changes to the browser's base font size
-    * @property YAHOO.widget.Module.RESIZE_MONITOR_SECURE_URL
-    * @static
-    * @final
-    * @type String
-    */
-    Module.RESIZE_MONITOR_SECURE_URL = "javascript:false;";
-    
-    /**
-    * Singleton CustomEvent fired when the font size is changed in the browser.
-    * Opera's "zoom" functionality currently does not support text 
-    * size detection.
-    * @event YAHOO.widget.Module.textResizeEvent
-    */
-    Module.textResizeEvent = new CustomEvent("textResize");
-
-    function createModuleTemplate() {
-
-        if (!m_oModuleTemplate) {
-            m_oModuleTemplate = document.createElement("div");
-            
-            m_oModuleTemplate.innerHTML = ("<div class=\"" + 
-                Module.CSS_HEADER + "\"></div>" + "<div class=\"" + 
-                Module.CSS_BODY + "\"></div><div class=\"" + 
-                Module.CSS_FOOTER + "\"></div>");
-
-            m_oHeaderTemplate = m_oModuleTemplate.firstChild;
-            m_oBodyTemplate = m_oHeaderTemplate.nextSibling;
-            m_oFooterTemplate = m_oBodyTemplate.nextSibling;
-        }
-
-        return m_oModuleTemplate;
-    }
-
-    function createHeader() {
-        if (!m_oHeaderTemplate) {
-            createModuleTemplate();
-        }
-        return (m_oHeaderTemplate.cloneNode(false));
-    }
-
-    function createBody() {
-        if (!m_oBodyTemplate) {
-            createModuleTemplate();
-        }
-        return (m_oBodyTemplate.cloneNode(false));
-    }
-
-    function createFooter() {
-        if (!m_oFooterTemplate) {
-            createModuleTemplate();
-        }
-        return (m_oFooterTemplate.cloneNode(false));
-    }
-
-    Module.prototype = {
-
-        /**
-        * The class's constructor function
-        * @property contructor
-        * @type Function
-        */
-        constructor: Module,
-        
-        /**
-        * The main module element that contains the header, body, and footer
-        * @property element
-        * @type HTMLElement
-        */
-        element: null,
-
-        /**
-        * The header element, denoted with CSS class "hd"
-        * @property header
-        * @type HTMLElement
-        */
-        header: null,
-
-        /**
-        * The body element, denoted with CSS class "bd"
-        * @property body
-        * @type HTMLElement
-        */
-        body: null,
-
-        /**
-        * The footer element, denoted with CSS class "ft"
-        * @property footer
-        * @type HTMLElement
-        */
-        footer: null,
-
-        /**
-        * The id of the element
-        * @property id
-        * @type String
-        */
-        id: null,
-
-        /**
-        * A string representing the root path for all images created by
-        * a Module instance.
-        * @deprecated It is recommend that any images for a Module be applied
-        * via CSS using the "background-image" property.
-        * @property imageRoot
-        * @type String
-        */
-        imageRoot: Module.IMG_ROOT,
-
-        /**
-        * Initializes the custom events for Module which are fired 
-        * automatically at appropriate times by the Module class.
-        * @method initEvents
-        */
-        initEvents: function () {
-
-            var SIGNATURE = CustomEvent.LIST;
-
-            /**
-            * CustomEvent fired prior to class initalization.
-            * @event beforeInitEvent
-            * @param {class} classRef class reference of the initializing 
-            * class, such as this.beforeInitEvent.fire(Module)
-            */
-            this.beforeInitEvent = this.createEvent(EVENT_TYPES.BEFORE_INIT);
-            this.beforeInitEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after class initalization.
-            * @event initEvent
-            * @param {class} classRef class reference of the initializing 
-            * class, such as this.beforeInitEvent.fire(Module)
-            */  
-            this.initEvent = this.createEvent(EVENT_TYPES.INIT);
-            this.initEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired when the Module is appended to the DOM
-            * @event appendEvent
-            */
-            this.appendEvent = this.createEvent(EVENT_TYPES.APPEND);
-            this.appendEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired before the Module is rendered
-            * @event beforeRenderEvent
-            */
-            this.beforeRenderEvent = this.createEvent(EVENT_TYPES.BEFORE_RENDER);
-            this.beforeRenderEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired after the Module is rendered
-            * @event renderEvent
-            */
-            this.renderEvent = this.createEvent(EVENT_TYPES.RENDER);
-            this.renderEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired when the header content of the Module 
-            * is modified
-            * @event changeHeaderEvent
-            * @param {String/HTMLElement} content String/element representing 
-            * the new header content
-            */
-            this.changeHeaderEvent = this.createEvent(EVENT_TYPES.CHANGE_HEADER);
-            this.changeHeaderEvent.signature = SIGNATURE;
-            
-            /**
-            * CustomEvent fired when the body content of the Module is modified
-            * @event changeBodyEvent
-            * @param {String/HTMLElement} content String/element representing 
-            * the new body content
-            */  
-            this.changeBodyEvent = this.createEvent(EVENT_TYPES.CHANGE_BODY);
-            this.changeBodyEvent.signature = SIGNATURE;
-            
-            /**
-            * CustomEvent fired when the footer content of the Module 
-            * is modified
-            * @event changeFooterEvent
-            * @param {String/HTMLElement} content String/element representing 
-            * the new footer content
-            */
-            this.changeFooterEvent = this.createEvent(EVENT_TYPES.CHANGE_FOOTER);
-            this.changeFooterEvent.signature = SIGNATURE;
-        
-            /**
-            * CustomEvent fired when the content of the Module is modified
-            * @event changeContentEvent
-            */
-            this.changeContentEvent = this.createEvent(EVENT_TYPES.CHANGE_CONTENT);
-            this.changeContentEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired when the Module is destroyed
-            * @event destroyEvent
-            */
-            this.destroyEvent = this.createEvent(EVENT_TYPES.DESTORY);
-            this.destroyEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired before the Module is shown
-            * @event beforeShowEvent
-            */
-            this.beforeShowEvent = this.createEvent(EVENT_TYPES.BEFORE_SHOW);
-            this.beforeShowEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after the Module is shown
-            * @event showEvent
-            */
-            this.showEvent = this.createEvent(EVENT_TYPES.SHOW);
-            this.showEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired before the Module is hidden
-            * @event beforeHideEvent
-            */
-            this.beforeHideEvent = this.createEvent(EVENT_TYPES.BEFORE_HIDE);
-            this.beforeHideEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after the Module is hidden
-            * @event hideEvent
-            */
-            this.hideEvent = this.createEvent(EVENT_TYPES.HIDE);
-            this.hideEvent.signature = SIGNATURE;
-        }, 
-
-        /**
-        * String representing the current user-agent platform
-        * @property platform
-        * @type String
-        */
-        platform: function () {
-            var ua = navigator.userAgent.toLowerCase();
-
-            if (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1) {
-                return "windows";
-            } else if (ua.indexOf("macintosh") != -1) {
-                return "mac";
-            } else {
-                return false;
-            }
-        }(),
-        
-        /**
-        * String representing the user-agent of the browser
-        * @deprecated Use YAHOO.env.ua
-        * @property browser
-        * @type String
-        */
-        browser: function () {
-            var ua = navigator.userAgent.toLowerCase();
-            /*
-                 Check Opera first in case of spoof and check Safari before
-                 Gecko since Safari's user agent string includes "like Gecko"
-            */
-            if (ua.indexOf('opera') != -1) { 
-                return 'opera';
-            } else if (ua.indexOf('msie 7') != -1) {
-                return 'ie7';
-            } else if (ua.indexOf('msie') != -1) {
-                return 'ie';
-            } else if (ua.indexOf('safari') != -1) { 
-                return 'safari';
-            } else if (ua.indexOf('gecko') != -1) {
-                return 'gecko';
-            } else {
-                return false;
-            }
-        }(),
-        
-        /**
-        * Boolean representing whether or not the current browsing context is 
-        * secure (https)
-        * @property isSecure
-        * @type Boolean
-        */
-        isSecure: function () {
-            if (window.location.href.toLowerCase().indexOf("https") === 0) {
-                return true;
-            } else {
-                return false;
-            }
-        }(),
-        
-        /**
-        * Initializes the custom events for Module which are fired 
-        * automatically at appropriate times by the Module class.
-        */
-        initDefaultConfig: function () {
-            // Add properties //
-            /**
-            * Specifies whether the Module is visible on the page.
-            * @config visible
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.VISIBLE.key, {
-                handler: this.configVisible, 
-                value: DEFAULT_CONFIG.VISIBLE.value, 
-                validator: DEFAULT_CONFIG.VISIBLE.validator
-            });
-
-            /**
-            * <p>
-            * Object or array of objects representing the ContainerEffect 
-            * classes that are active for animating the container.
-            * </p>
-            * <p>
-            * <strong>NOTE:</strong> Although this configuration 
-            * property is introduced at the Module level, an out of the box
-            * implementation is not shipped for the Module class so setting
-            * the proroperty on the Module class has no effect. The Overlay 
-            * class is the first class to provide out of the box ContainerEffect 
-            * support.
-            * </p>
-            * @config effect
-            * @type Object
-            * @default null
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.EFFECT.key, {
-                suppressEvent: DEFAULT_CONFIG.EFFECT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.EFFECT.supercedes
-            });
-
-            /**
-            * Specifies whether to create a special proxy iframe to monitor 
-            * for user font resizing in the document
-            * @config monitorresize
-            * @type Boolean
-            * @default true
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.MONITOR_RESIZE.key, {
-                handler: this.configMonitorResize,
-                value: DEFAULT_CONFIG.MONITOR_RESIZE.value
-            });
-
-            /**
-            * Specifies if the module should be rendered as the first child 
-            * of document.body or appended as the last child when render is called
-            * with document.body as the "appendToNode".
-            * <p>
-            * Appending to the body while the DOM is still being constructed can 
-            * lead to Operation Aborted errors in IE hence this flag is set to 
-            * false by default.
-            * </p>
-            * 
-            * @config appendtodocumentbody
-            * @type Boolean
-            * @default false
-            */
-            this.cfg.addProperty(DEFAULT_CONFIG.APPEND_TO_DOCUMENT_BODY.key, {
-                value: DEFAULT_CONFIG.APPEND_TO_DOCUMENT_BODY.value
-            });
-        },
-
-        /**
-        * The Module class's initialization method, which is executed for
-        * Module and all of its subclasses. This method is automatically 
-        * called by the constructor, and  sets up all DOM references for 
-        * pre-existing markup, and creates required markup if it is not 
-        * already present.
-        * @method init
-        * @param {String} el The element ID representing the Module <em>OR</em>
-        * @param {HTMLElement} el The element representing the Module
-        * @param {Object} userConfig The configuration Object literal 
-        * containing the configuration that should be set for this module. 
-        * See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-
-            var elId, child;
-
-            this.initEvents();
-            this.beforeInitEvent.fire(Module);
-
-            /**
-            * The Module's Config object used for monitoring 
-            * configuration properties.
-            * @property cfg
-            * @type YAHOO.util.Config
-            */
-            this.cfg = new Config(this);
-
-            if (this.isSecure) {
-                this.imageRoot = Module.IMG_ROOT_SSL;
-            }
-
-            if (typeof el == "string") {
-                elId = el;
-                el = document.getElementById(el);
-                if (! el) {
-                    el = (createModuleTemplate()).cloneNode(false);
-                    el.id = elId;
-                }
-            }
-
-            this.element = el;
-
-            if (el.id) {
-                this.id = el.id;
-            }
-
-            child = this.element.firstChild;
-
-            if (child) {
-                var fndHd = false, fndBd = false, fndFt = false;
-                do {
-                    // We're looking for elements
-                    if (1 == child.nodeType) {
-                        if (!fndHd && Dom.hasClass(child, Module.CSS_HEADER)) {
-                            this.header = child;
-                            fndHd = true;
-                        } else if (!fndBd && Dom.hasClass(child, Module.CSS_BODY)) {
-                            this.body = child;
-                            fndBd = true;
-                        } else if (!fndFt && Dom.hasClass(child, Module.CSS_FOOTER)){
-                            this.footer = child;
-                            fndFt = true;
-                        }
-                    }
-                } while ((child = child.nextSibling));
-            }
-
-            this.initDefaultConfig();
-
-            Dom.addClass(this.element, Module.CSS_MODULE);
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-
-            /*
-                Subscribe to the fireQueue() method of Config so that any 
-                queued configuration changes are excecuted upon render of 
-                the Module
-            */ 
-
-            if (!Config.alreadySubscribed(this.renderEvent, this.cfg.fireQueue, this.cfg)) {
-                this.renderEvent.subscribe(this.cfg.fireQueue, this.cfg, true);
-            }
-
-            this.initEvent.fire(Module);
-        },
-
-        /**
-        * Initialize an empty IFRAME that is placed out of the visible area 
-        * that can be used to detect text resize.
-        * @method initResizeMonitor
-        */
-        initResizeMonitor: function () {
-
-            var isGeckoWin = (YAHOO.env.ua.gecko && this.platform == "windows");
-            if (isGeckoWin) {
-                // Help prevent spinning loading icon which 
-                // started with FireFox 2.0.0.8/Win
-                var self = this;
-                setTimeout(function(){self._initResizeMonitor();}, 0);
-            } else {
-                this._initResizeMonitor();
-            }
-        },
-
-        /**
-         * Create and initialize the text resize monitoring iframe.
-         * 
-         * @protected
-         * @method _initResizeMonitor
-         */
-        _initResizeMonitor : function() {
-
-            var oDoc, 
-                oIFrame, 
-                sHTML;
-
-            function fireTextResize() {
-                Module.textResizeEvent.fire();
-            }
-
-            if (!YAHOO.env.ua.opera) {
-                oIFrame = Dom.get("_yuiResizeMonitor");
-
-                var supportsCWResize = this._supportsCWResize();
-
-                if (!oIFrame) {
-                    oIFrame = document.createElement("iframe");
-
-                    if (this.isSecure && Module.RESIZE_MONITOR_SECURE_URL && YAHOO.env.ua.ie) {
-                        oIFrame.src = Module.RESIZE_MONITOR_SECURE_URL;
-                    }
-
-                    if (!supportsCWResize) {
-                        // Can't monitor on contentWindow, so fire from inside iframe
-                        sHTML = ["<html><head><script ",
-                                 "type=\"text/javascript\">",
-                                 "window.onresize=function(){window.parent.",
-                                 "YAHOO.widget.Module.textResizeEvent.",
-                                 "fire();};<",
-                                 "\/script></head>",
-                                 "<body></body></html>"].join('');
-
-                        oIFrame.src = "data:text/html;charset=utf-8," + encodeURIComponent(sHTML);
-                    }
-
-                    oIFrame.id = "_yuiResizeMonitor";
-                    oIFrame.title = "Text Resize Monitor";
-                    /*
-                        Need to set "position" property before inserting the 
-                        iframe into the document or Safari's status bar will 
-                        forever indicate the iframe is loading 
-                        (See SourceForge bug #1723064)
-                    */
-                    oIFrame.style.position = "absolute";
-                    oIFrame.style.visibility = "hidden";
-
-                    var db = document.body,
-                        fc = db.firstChild;
-                    if (fc) {
-                        db.insertBefore(oIFrame, fc);
-                    } else {
-                        db.appendChild(oIFrame);
-                    }
-
-                    oIFrame.style.width = "10em";
-                    oIFrame.style.height = "10em";
-                    oIFrame.style.top = (-1 * oIFrame.offsetHeight) + "px";
-                    oIFrame.style.left = (-1 * oIFrame.offsetWidth) + "px";
-                    oIFrame.style.borderWidth = "0";
-                    oIFrame.style.visibility = "visible";
-
-                    /*
-                       Don't open/close the document for Gecko like we used to, since it
-                       leads to duplicate cookies. (See SourceForge bug #1721755)
-                    */
-                    if (YAHOO.env.ua.webkit) {
-                        oDoc = oIFrame.contentWindow.document;
-                        oDoc.open();
-                        oDoc.close();
-                    }
-                }
-
-                if (oIFrame && oIFrame.contentWindow) {
-                    Module.textResizeEvent.subscribe(this.onDomResize, this, true);
-
-                    if (!Module.textResizeInitialized) {
-                        if (supportsCWResize) {
-                            if (!Event.on(oIFrame.contentWindow, "resize", fireTextResize)) {
-                                /*
-                                     This will fail in IE if document.domain has 
-                                     changed, so we must change the listener to 
-                                     use the oIFrame element instead
-                                */
-                                Event.on(oIFrame, "resize", fireTextResize);
-                            }
-                        }
-                        Module.textResizeInitialized = true;
-                    }
-                    this.resizeMonitor = oIFrame;
-                }
-            }
-        },
-
-        /**
-         * Text resize monitor helper method.
-         * Determines if the browser supports resize events on iframe content windows.
-         * 
-         * @private
-         * @method _supportsCWResize
-         */
-        _supportsCWResize : function() {
-            /*
-                Gecko 1.8.0 (FF1.5), 1.8.1.0-5 (FF2) won't fire resize on contentWindow.
-                Gecko 1.8.1.6+ (FF2.0.0.6+) and all other browsers will fire resize on contentWindow.
-
-                We don't want to start sniffing for patch versions, so fire textResize the same
-                way on all FF, until 1.9 (3.x) is out
-             */
-            var bSupported = true;
-            if (YAHOO.env.ua.gecko && YAHOO.env.ua.gecko <= 1.8) {
-                bSupported = false;
-                /*
-                var v = navigator.userAgent.match(/rv:([^\s\)]*)/); // From YAHOO.env.ua
-                if (v && v[0]) {
-                    var sv = v[0].match(/\d\.\d\.(\d)/);
-                    if (sv && sv[1]) {
-                        if (parseInt(sv[1], 10) > 0) {
-                            bSupported = true;
-                        }
-                    }
-                }
-                */
-            }
-            return bSupported;
-        },
-
-        /**
-        * Event handler fired when the resize monitor element is resized.
-        * @method onDomResize
-        * @param {DOMEvent} e The DOM resize event
-        * @param {Object} obj The scope object passed to the handler
-        */
-        onDomResize: function (e, obj) {
-
-            var nLeft = -1 * this.resizeMonitor.offsetWidth,
-                nTop = -1 * this.resizeMonitor.offsetHeight;
-        
-            this.resizeMonitor.style.top = nTop + "px";
-            this.resizeMonitor.style.left =  nLeft + "px";
-
-        },
-
-        /**
-        * Sets the Module's header content to the string specified, or appends 
-        * the passed element to the header. If no header is present, one will 
-        * be automatically created. An empty string can be passed to the method
-        * to clear the contents of the header.
-        * 
-        * @method setHeader
-        * @param {String} headerContent The string used to set the header.
-        * As a convenience, non HTMLElement objects can also be passed into 
-        * the method, and will be treated as strings, with the header innerHTML
-        * set to their default toString implementations.
-        * <em>OR</em>
-        * @param {HTMLElement} headerContent The HTMLElement to append to 
-        * <em>OR</em>
-        * @param {DocumentFragment} headerContent The document fragment 
-        * containing elements which are to be added to the header
-        */
-        setHeader: function (headerContent) {
-            var oHeader = this.header || (this.header = createHeader());
-
-            if (headerContent.nodeName) {
-                oHeader.innerHTML = "";
-                oHeader.appendChild(headerContent);
-            } else {
-                oHeader.innerHTML = headerContent;
-            }
-
-            this.changeHeaderEvent.fire(headerContent);
-            this.changeContentEvent.fire();
-
-        },
-
-        /**
-        * Appends the passed element to the header. If no header is present, 
-        * one will be automatically created.
-        * @method appendToHeader
-        * @param {HTMLElement | DocumentFragment} element The element to 
-        * append to the header. In the case of a document fragment, the
-        * children of the fragment will be appended to the header.
-        */
-        appendToHeader: function (element) {
-            var oHeader = this.header || (this.header = createHeader());
-
-            oHeader.appendChild(element);
-
-            this.changeHeaderEvent.fire(element);
-            this.changeContentEvent.fire();
-
-        },
-
-        /**
-        * Sets the Module's body content to the HTML specified. 
-        * 
-        * If no body is present, one will be automatically created. 
-        * 
-        * An empty string can be passed to the method to clear the contents of the body.
-        * @method setBody
-        * @param {String} bodyContent The HTML used to set the body. 
-        * As a convenience, non HTMLElement objects can also be passed into 
-        * the method, and will be treated as strings, with the body innerHTML
-        * set to their default toString implementations.
-        * <em>OR</em>
-        * @param {HTMLElement} bodyContent The HTMLElement to add as the first and only
-        * child of the body element.
-        * <em>OR</em>
-        * @param {DocumentFragment} bodyContent The document fragment 
-        * containing elements which are to be added to the body
-        */
-        setBody: function (bodyContent) {
-            var oBody = this.body || (this.body = createBody());
-
-            if (bodyContent.nodeName) {
-                oBody.innerHTML = "";
-                oBody.appendChild(bodyContent);
-            } else {
-                oBody.innerHTML = bodyContent;
-            }
-
-            this.changeBodyEvent.fire(bodyContent);
-            this.changeContentEvent.fire();
-        },
-
-        /**
-        * Appends the passed element to the body. If no body is present, one 
-        * will be automatically created.
-        * @method appendToBody
-        * @param {HTMLElement | DocumentFragment} element The element to 
-        * append to the body. In the case of a document fragment, the
-        * children of the fragment will be appended to the body.
-        * 
-        */
-        appendToBody: function (element) {
-            var oBody = this.body || (this.body = createBody());
-        
-            oBody.appendChild(element);
-
-            this.changeBodyEvent.fire(element);
-            this.changeContentEvent.fire();
-
-        },
-        
-        /**
-        * Sets the Module's footer content to the HTML specified, or appends 
-        * the passed element to the footer. If no footer is present, one will 
-        * be automatically created. An empty string can be passed to the method
-        * to clear the contents of the footer.
-        * @method setFooter
-        * @param {String} footerContent The HTML used to set the footer 
-        * As a convenience, non HTMLElement objects can also be passed into 
-        * the method, and will be treated as strings, with the footer innerHTML
-        * set to their default toString implementations.
-        * <em>OR</em>
-        * @param {HTMLElement} footerContent The HTMLElement to append to 
-        * the footer
-        * <em>OR</em>
-        * @param {DocumentFragment} footerContent The document fragment containing 
-        * elements which are to be added to the footer
-        */
-        setFooter: function (footerContent) {
-
-            var oFooter = this.footer || (this.footer = createFooter());
-
-            if (footerContent.nodeName) {
-                oFooter.innerHTML = "";
-                oFooter.appendChild(footerContent);
-            } else {
-                oFooter.innerHTML = footerContent;
-            }
-
-            this.changeFooterEvent.fire(footerContent);
-            this.changeContentEvent.fire();
-        },
-
-        /**
-        * Appends the passed element to the footer. If no footer is present, 
-        * one will be automatically created.
-        * @method appendToFooter
-        * @param {HTMLElement | DocumentFragment} element The element to 
-        * append to the footer. In the case of a document fragment, the
-        * children of the fragment will be appended to the footer
-        */
-        appendToFooter: function (element) {
-
-            var oFooter = this.footer || (this.footer = createFooter());
-
-            oFooter.appendChild(element);
-
-            this.changeFooterEvent.fire(element);
-            this.changeContentEvent.fire();
-
-        },
-
-        /**
-        * Renders the Module by inserting the elements that are not already 
-        * in the main Module into their correct places. Optionally appends 
-        * the Module to the specified node prior to the render's execution. 
-        * <p>
-        * For Modules without existing markup, the appendToNode argument 
-        * is REQUIRED. If this argument is ommitted and the current element is 
-        * not present in the document, the function will return false, 
-        * indicating that the render was a failure.
-        * </p>
-        * <p>
-        * NOTE: As of 2.3.1, if the appendToNode is the document's body element
-        * then the module is rendered as the first child of the body element, 
-        * and not appended to it, to avoid Operation Aborted errors in IE when 
-        * rendering the module before window's load event is fired. You can 
-        * use the appendtodocumentbody configuration property to change this 
-        * to append to document.body if required.
-        * </p>
-        * @method render
-        * @param {String} appendToNode The element id to which the Module 
-        * should be appended to prior to rendering <em>OR</em>
-        * @param {HTMLElement} appendToNode The element to which the Module 
-        * should be appended to prior to rendering
-        * @param {HTMLElement} moduleElement OPTIONAL. The element that 
-        * represents the actual Standard Module container.
-        * @return {Boolean} Success or failure of the render
-        */
-        render: function (appendToNode, moduleElement) {
-
-            var me = this,
-                firstChild;
-
-            function appendTo(parentNode) {
-                if (typeof parentNode == "string") {
-                    parentNode = document.getElementById(parentNode);
-                }
-
-                if (parentNode) {
-                    me._addToParent(parentNode, me.element);
-                    me.appendEvent.fire();
-                }
-            }
-
-            this.beforeRenderEvent.fire();
-
-            if (! moduleElement) {
-                moduleElement = this.element;
-            }
-
-            if (appendToNode) {
-                appendTo(appendToNode);
-            } else { 
-                // No node was passed in. If the element is not already in the Dom, this fails
-                if (! Dom.inDocument(this.element)) {
-                    return false;
-                }
-            }
-
-            // Need to get everything into the DOM if it isn't already
-            if (this.header && ! Dom.inDocument(this.header)) {
-                // There is a header, but it's not in the DOM yet. Need to add it.
-                firstChild = moduleElement.firstChild;
-                if (firstChild) {
-                    moduleElement.insertBefore(this.header, firstChild);
-                } else {
-                    moduleElement.appendChild(this.header);
-                }
-            }
-
-            if (this.body && ! Dom.inDocument(this.body)) {
-                // There is a body, but it's not in the DOM yet. Need to add it.		
-                if (this.footer && Dom.isAncestor(this.moduleElement, this.footer)) {
-                    moduleElement.insertBefore(this.body, this.footer);
-                } else {
-                    moduleElement.appendChild(this.body);
-                }
-            }
-
-            if (this.footer && ! Dom.inDocument(this.footer)) {
-                // There is a footer, but it's not in the DOM yet. Need to add it.
-                moduleElement.appendChild(this.footer);
-            }
-
-            this.renderEvent.fire();
-            return true;
-        },
-
-        /**
-        * Removes the Module element from the DOM and sets all child elements 
-        * to null.
-        * @method destroy
-        */
-        destroy: function () {
-
-            var parent,
-                e;
-
-            if (this.element) {
-                Event.purgeElement(this.element, true);
-                parent = this.element.parentNode;
-            }
-
-            if (parent) {
-                parent.removeChild(this.element);
-            }
-        
-            this.element = null;
-            this.header = null;
-            this.body = null;
-            this.footer = null;
-
-            Module.textResizeEvent.unsubscribe(this.onDomResize, this);
-
-            this.cfg.destroy();
-            this.cfg = null;
-
-            this.destroyEvent.fire();
-        },
-
-        /**
-        * Shows the Module element by setting the visible configuration 
-        * property to true. Also fires two events: beforeShowEvent prior to 
-        * the visibility change, and showEvent after.
-        * @method show
-        */
-        show: function () {
-            this.cfg.setProperty("visible", true);
-        },
-
-        /**
-        * Hides the Module element by setting the visible configuration 
-        * property to false. Also fires two events: beforeHideEvent prior to 
-        * the visibility change, and hideEvent after.
-        * @method hide
-        */
-        hide: function () {
-            this.cfg.setProperty("visible", false);
-        },
-        
-        // BUILT-IN EVENT HANDLERS FOR MODULE //
-        /**
-        * Default event handler for changing the visibility property of a 
-        * Module. By default, this is achieved by switching the "display" style 
-        * between "block" and "none".
-        * This method is responsible for firing showEvent and hideEvent.
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        * @method configVisible
-        */
-        configVisible: function (type, args, obj) {
-            var visible = args[0];
-            if (visible) {
-                this.beforeShowEvent.fire();
-                Dom.setStyle(this.element, "display", "block");
-                this.showEvent.fire();
-            } else {
-                this.beforeHideEvent.fire();
-                Dom.setStyle(this.element, "display", "none");
-                this.hideEvent.fire();
-            }
-        },
-        
-        /**
-        * Default event handler for the "monitorresize" configuration property
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        * @method configMonitorResize
-        */
-        configMonitorResize: function (type, args, obj) {
-            var monitor = args[0];
-            if (monitor) {
-                this.initResizeMonitor();
-            } else {
-                Module.textResizeEvent.unsubscribe(this.onDomResize, this, true);
-                this.resizeMonitor = null;
-            }
-        },
-
-        /**
-         * This method is a protected helper, used when constructing the DOM structure for the module 
-         * to account for situations which may cause Operation Aborted errors in IE. It should not 
-         * be used for general DOM construction.
-         * <p>
-         * If the parentNode is not document.body, the element is appended as the last element.
-         * </p>
-         * <p>
-         * If the parentNode is document.body the element is added as the first child to help
-         * prevent Operation Aborted errors in IE.
-         * </p>
-         *
-         * @param {parentNode} The HTML element to which the element will be added
-         * @param {element} The HTML element to be added to parentNode's children
-         * @method _addToParent
-         * @protected
-         */
-        _addToParent: function(parentNode, element) {
-            if (!this.cfg.getProperty("appendtodocumentbody") && parentNode === document.body && parentNode.firstChild) {
-                parentNode.insertBefore(element, parentNode.firstChild);
-            } else {
-                parentNode.appendChild(element);
-            }
-        },
-
-        /**
-        * Returns a String representation of the Object.
-        * @method toString
-        * @return {String} The string representation of the Module
-        */
-        toString: function () {
-            return "Module " + this.id;
-        }
-    };
-
-    YAHOO.lang.augmentProto(Module, YAHOO.util.EventProvider);
-
-}());
-
-(function () {
-
-    /**
-    * Overlay is a Module that is absolutely positioned above the page flow. It 
-    * has convenience methods for positioning and sizing, as well as options for 
-    * controlling zIndex and constraining the Overlay's position to the current 
-    * visible viewport. Overlay also contains a dynamicly generated IFRAME which 
-    * is placed beneath it for Internet Explorer 6 and 5.x so that it will be 
-    * properly rendered above SELECT elements.
-    * @namespace YAHOO.widget
-    * @class Overlay
-    * @extends YAHOO.widget.Module
-    * @param {String} el The element ID representing the Overlay <em>OR</em>
-    * @param {HTMLElement} el The element representing the Overlay
-    * @param {Object} userConfig The configuration object literal containing 
-    * the configuration that should be set for this Overlay. See configuration 
-    * documentation for more details.
-    * @constructor
-    */
-    YAHOO.widget.Overlay = function (el, userConfig) {
-        YAHOO.widget.Overlay.superclass.constructor.call(this, el, userConfig);
-    };
-
-    var Lang = YAHOO.lang,
-        CustomEvent = YAHOO.util.CustomEvent,
-        Module = YAHOO.widget.Module,
-        Event = YAHOO.util.Event,
-        Dom = YAHOO.util.Dom,
-        Config = YAHOO.util.Config,
-        UA = YAHOO.env.ua,
-        Overlay = YAHOO.widget.Overlay,
-
-        _SUBSCRIBE = "subscribe",
-        _UNSUBSCRIBE = "unsubscribe",
-
-        m_oIFrameTemplate,
-
-        /**
-        * Constant representing the name of the Overlay's events
-        * @property EVENT_TYPES
-        * @private
-        * @final
-        * @type Object
-        */
-        EVENT_TYPES = {
-            "BEFORE_MOVE": "beforeMove",
-            "MOVE": "move"
-        },
-
-        /**
-        * Constant representing the Overlay's configuration properties
-        * @property DEFAULT_CONFIG
-        * @private
-        * @final
-        * @type Object
-        */
-        DEFAULT_CONFIG = {
-
-            "X": { 
-                key: "x", 
-                validator: Lang.isNumber, 
-                suppressEvent: true, 
-                supercedes: ["iframe"]
-            },
-
-            "Y": { 
-                key: "y", 
-                validator: Lang.isNumber, 
-                suppressEvent: true, 
-                supercedes: ["iframe"]
-            },
-
-            "XY": { 
-                key: "xy", 
-                suppressEvent: true, 
-                supercedes: ["iframe"] 
-            },
-
-            "CONTEXT": { 
-                key: "context", 
-                suppressEvent: true, 
-                supercedes: ["iframe"] 
-            },
-
-            "FIXED_CENTER": { 
-                key: "fixedcenter", 
-                value: false, 
-                validator: Lang.isBoolean, 
-                supercedes: ["iframe", "visible"] 
-            },
-
-            "WIDTH": { 
-                key: "width",
-                suppressEvent: true,
-                supercedes: ["context", "fixedcenter", "iframe"]
-            }, 
-
-            "HEIGHT": { 
-                key: "height", 
-                suppressEvent: true, 
-                supercedes: ["context", "fixedcenter", "iframe"] 
-            },
-
-            "AUTO_FILL_HEIGHT" : {
-                key: "autofillheight",
-                supressEvent: true,
-                supercedes: ["height"],
-                value:"body"
-            },
-
-            "ZINDEX": { 
-                key: "zindex", 
-                value: null 
-            },
-
-            "CONSTRAIN_TO_VIEWPORT": { 
-                key: "constraintoviewport", 
-                value: false, 
-                validator: Lang.isBoolean, 
-                supercedes: ["iframe", "x", "y", "xy"]
-            }, 
-
-            "IFRAME": { 
-                key: "iframe", 
-                value: (UA.ie == 6 ? true : false), 
-                validator: Lang.isBoolean, 
-                supercedes: ["zindex"] 
-            },
-            
-            "PREVENT_CONTEXT_OVERLAP": {
-                key: "preventcontextoverlap",
-                value: false,
-                validator: Lang.isBoolean,  
-                supercedes: ["constraintoviewport"]
-            }
-            
-        };
-
-    /**
-    * The URL that will be placed in the iframe
-    * @property YAHOO.widget.Overlay.IFRAME_SRC
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.IFRAME_SRC = "javascript:false;";
-
-    /**
-    * Number representing how much the iframe shim should be offset from each 
-    * side of an Overlay instance, in pixels.
-    * @property YAHOO.widget.Overlay.IFRAME_SRC
-    * @default 3
-    * @static
-    * @final
-    * @type Number
-    */
-    Overlay.IFRAME_OFFSET = 3;
-
-    /**
-    * Number representing the minimum distance an Overlay instance should be 
-    * positioned relative to the boundaries of the browser's viewport, in pixels.
-    * @property YAHOO.widget.Overlay.VIEWPORT_OFFSET
-    * @default 10
-    * @static
-    * @final
-    * @type Number
-    */
-    Overlay.VIEWPORT_OFFSET = 10;
-
-    /**
-    * Constant representing the top left corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.TOP_LEFT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.TOP_LEFT = "tl";
-
-    /**
-    * Constant representing the top right corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.TOP_RIGHT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.TOP_RIGHT = "tr";
-
-    /**
-    * Constant representing the top bottom left corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.BOTTOM_LEFT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.BOTTOM_LEFT = "bl";
-
-    /**
-    * Constant representing the bottom right corner of an element, used for 
-    * configuring the context element alignment
-    * @property YAHOO.widget.Overlay.BOTTOM_RIGHT
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.BOTTOM_RIGHT = "br";
-
-    /**
-    * Constant representing the default CSS class used for an Overlay
-    * @property YAHOO.widget.Overlay.CSS_OVERLAY
-    * @static
-    * @final
-    * @type String
-    */
-    Overlay.CSS_OVERLAY = "yui-overlay";
-
-    /**
-     * Constant representing the names of the standard module elements
-     * used in the overlay.
-     * @property YAHOO.widget.Overlay.STD_MOD_RE
-     * @static
-     * @final
-     * @type RegExp
-     */
-    Overlay.STD_MOD_RE = /^\s*?(body|footer|header)\s*?$/i;
-
-    /**
-    * A singleton CustomEvent used for reacting to the DOM event for 
-    * window scroll
-    * @event YAHOO.widget.Overlay.windowScrollEvent
-    */
-    Overlay.windowScrollEvent = new CustomEvent("windowScroll");
-
-    /**
-    * A singleton CustomEvent used for reacting to the DOM event for
-    * window resize
-    * @event YAHOO.widget.Overlay.windowResizeEvent
-    */
-    Overlay.windowResizeEvent = new CustomEvent("windowResize");
-
-    /**
-    * The DOM event handler used to fire the CustomEvent for window scroll
-    * @method YAHOO.widget.Overlay.windowScrollHandler
-    * @static
-    * @param {DOMEvent} e The DOM scroll event
-    */
-    Overlay.windowScrollHandler = function (e) {
-        var t = Event.getTarget(e);
-
-        // - Webkit (Safari 2/3) and Opera 9.2x bubble scroll events from elements to window
-        // - FF2/3 and IE6/7, Opera 9.5x don't bubble scroll events from elements to window
-        // - IE doesn't recognize scroll registered on the document.
-        //
-        // Also, when document view is scrolled, IE doesn't provide a target, 
-        // rest of the browsers set target to window.document, apart from opera 
-        // which sets target to window.
-        if (!t || t === window || t === window.document) {
-            if (UA.ie) {
-
-                if (! window.scrollEnd) {
-                    window.scrollEnd = -1;
-                }
-
-                clearTimeout(window.scrollEnd);
-        
-                window.scrollEnd = setTimeout(function () { 
-                    Overlay.windowScrollEvent.fire(); 
-                }, 1);
-        
-            } else {
-                Overlay.windowScrollEvent.fire();
-            }
-        }
-    };
-
-    /**
-    * The DOM event handler used to fire the CustomEvent for window resize
-    * @method YAHOO.widget.Overlay.windowResizeHandler
-    * @static
-    * @param {DOMEvent} e The DOM resize event
-    */
-    Overlay.windowResizeHandler = function (e) {
-
-        if (UA.ie) {
-            if (! window.resizeEnd) {
-                window.resizeEnd = -1;
-            }
-
-            clearTimeout(window.resizeEnd);
-
-            window.resizeEnd = setTimeout(function () {
-                Overlay.windowResizeEvent.fire(); 
-            }, 100);
-        } else {
-            Overlay.windowResizeEvent.fire();
-        }
-    };
-
-    /**
-    * A boolean that indicated whether the window resize and scroll events have 
-    * already been subscribed to.
-    * @property YAHOO.widget.Overlay._initialized
-    * @private
-    * @type Boolean
-    */
-    Overlay._initialized = null;
-
-    if (Overlay._initialized === null) {
-        Event.on(window, "scroll", Overlay.windowScrollHandler);
-        Event.on(window, "resize", Overlay.windowResizeHandler);
-        Overlay._initialized = true;
-    }
-
-    /**
-     * Internal map of special event types, which are provided
-     * by the instance. It maps the event type to the custom event 
-     * instance. Contains entries for the "windowScroll", "windowResize" and
-     * "textResize" static container events.
-     *
-     * @property YAHOO.widget.Overlay._TRIGGER_MAP
-     * @type Object
-     * @static
-     * @private
-     */
-    Overlay._TRIGGER_MAP = {
-        "windowScroll" : Overlay.windowScrollEvent,
-        "windowResize" : Overlay.windowResizeEvent,
-        "textResize"   : Module.textResizeEvent
-    };
-
-    YAHOO.extend(Overlay, Module, {
-
-        /**
-         * <p>
-         * Array of default event types which will trigger
-         * context alignment for the Overlay class.
-         * </p>
-         * <p>The array is empty by default for Overlay,
-         * but maybe populated in future releases, so classes extending
-         * Overlay which need to define their own set of CONTEXT_TRIGGERS
-         * should concatenate their super class's prototype.CONTEXT_TRIGGERS 
-         * value with their own array of values.
-         * </p>
-         * <p>
-         * E.g.:
-         * <code>CustomOverlay.prototype.CONTEXT_TRIGGERS = YAHOO.widget.Overlay.prototype.CONTEXT_TRIGGERS.concat(["windowScroll"]);</code>
-         * </p>
-         * 
-         * @property CONTEXT_TRIGGERS
-         * @type Array
-         * @final
-         */
-        CONTEXT_TRIGGERS : [],
-
-        /**
-        * The Overlay initialization method, which is executed for Overlay and  
-        * all of its subclasses. This method is automatically called by the 
-        * constructor, and  sets up all DOM references for pre-existing markup, 
-        * and creates required markup if it is not already present.
-        * @method init
-        * @param {String} el The element ID representing the Overlay <em>OR</em>
-        * @param {HTMLElement} el The element representing the Overlay
-        * @param {Object} userConfig The configuration object literal 
-        * containing the configuration that should be set for this Overlay. 
-        * See configuration documentation for more details.
-        */
-        init: function (el, userConfig) {
-
-            /*
-                 Note that we don't pass the user config in here yet because we
-                 only want it executed once, at the lowest subclass level
-            */
-
-            Overlay.superclass.init.call(this, el/*, userConfig*/);
-
-            this.beforeInitEvent.fire(Overlay);
-
-            Dom.addClass(this.element, Overlay.CSS_OVERLAY);
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-
-            if (this.platform == "mac" && UA.gecko) {
-
-                if (! Config.alreadySubscribed(this.showEvent,
-                    this.showMacGeckoScrollbars, this)) {
-
-                    this.showEvent.subscribe(this.showMacGeckoScrollbars, 
-                        this, true);
-
-                }
-
-                if (! Config.alreadySubscribed(this.hideEvent, 
-                    this.hideMacGeckoScrollbars, this)) {
-
-                    this.hideEvent.subscribe(this.hideMacGeckoScrollbars, 
-                        this, true);
-
-                }
-            }
-
-            this.initEvent.fire(Overlay);
-        },
-        
-        /**
-        * Initializes the custom events for Overlay which are fired  
-        * automatically at appropriate times by the Overlay class.
-        * @method initEvents
-        */
-        initEvents: function () {
-
-            Overlay.superclass.initEvents.call(this);
-
-            var SIGNATURE = CustomEvent.LIST;
-
-            /**
-            * CustomEvent fired before the Overlay is moved.
-            * @event beforeMoveEvent
-            * @param {Number} x x coordinate
-            * @param {Number} y y coordinate
-            */
-            this.beforeMoveEvent = this.createEvent(EVENT_TYPES.BEFORE_MOVE);
-            this.beforeMoveEvent.signature = SIGNATURE;
-
-            /**
-            * CustomEvent fired after the Overlay is moved.
-            * @event moveEvent
-            * @param {Number} x x coordinate
-            * @param {Number} y y coordinate
-            */
-            this.moveEvent = this.createEvent(EVENT_TYPES.MOVE);
-            this.moveEvent.signature = SIGNATURE;
-
-        },
-        
-        /**
-        * Initializes the class's configurable properties which can be changed 
-        * using the Overlay's Config object (cfg).
-        * @method initDefaultConfig
-        */
-        initDefaultConfig: function () {
-    
-            Overlay.superclass.initDefaultConfig.call(this);
-
-            var cfg = this.cfg;
-
-            // Add overlay config properties //
-            
-            /**
-            * The absolute x-coordinate position of the Overlay
-            * @config x
-            * @type Number
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.X.key, { 
-    
-                handler: this.configX, 
-                validator: DEFAULT_CONFIG.X.validator, 
-                suppressEvent: DEFAULT_CONFIG.X.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.X.supercedes
-    
-            });
-
-            /**
-            * The absolute y-coordinate position of the Overlay
-            * @config y
-            * @type Number
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.Y.key, {
-
-                handler: this.configY, 
-                validator: DEFAULT_CONFIG.Y.validator, 
-                suppressEvent: DEFAULT_CONFIG.Y.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.Y.supercedes
-
-            });
-
-            /**
-            * An array with the absolute x and y positions of the Overlay
-            * @config xy
-            * @type Number[]
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.XY.key, {
-                handler: this.configXY, 
-                suppressEvent: DEFAULT_CONFIG.XY.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.XY.supercedes
-            });
-
-            /**
-            * <p>
-            * The array of context arguments for context-sensitive positioning. 
-            * </p>
-            *
-            * <p>
-            * The format of the array is: <code>[contextElementOrId, overlayCorner, contextCorner, arrayOfTriggerEvents (optional)]</code>, the
-            * the 4 array elements described in detail below:
-            * </p>
-            *
-            * <dl>
-            * <dt>contextElementOrId &#60;String|HTMLElement&#62;</dt>
-            * <dd>A reference to the context element to which the overlay should be aligned (or it's id).</dd>
-            * <dt>overlayCorner &#60;String&#62;</dt>
-            * <dd>The corner of the overlay which is to be used for alignment. This corner will be aligned to the 
-            * corner of the context element defined by the "contextCorner" entry which follows. Supported string values are: 
-            * "tr" (top right), "tl" (top left), "br" (bottom right), or "bl" (bottom left).</dd>
-            * <dt>contextCorner &#60;String&#62;</dt>
-            * <dd>The corner of the context element which is to be used for alignment. Supported string values are the same ones listed for the "overlayCorner" entry above.</dd>
-            * <dt>arrayOfTriggerEvents (optional) &#60;Array[String|CustomEvent]&#62;</dt>
-            * <dd>
-            * <p>
-            * By default, context alignment is a one time operation, aligning the Overlay to the context element when context configuration property is set, or when the <a href="#method_align">align</a> 
-            * method is invoked. However, you can use the optional "arrayOfTriggerEvents" entry to define the list of events which should force the overlay to re-align itself with the context element. 
-            * This is useful in situations where the layout of the document may change, resulting in the context element's position being modified.
-            * </p>
-            * <p>
-            * The array can contain either event type strings for events the instance publishes (e.g. "beforeShow") or CustomEvent instances. Additionally the following
-            * 3 static container event types are also currently supported : <code>"windowResize", "windowScroll", "textResize"</code> (defined in <a href="#property__TRIGGER_MAP">_TRIGGER_MAP</a> private property).
-            * </p>
-            * </dd>
-            * </dl>
-            *
-            * <p>
-            * For example, setting this property to <code>["img1", "tl", "bl"]</code> will 
-            * align the Overlay's top left corner to the bottom left corner of the
-            * context element with id "img1".
-            * </p>
-            * <p>
-            * Adding the optional trigger values: <code>["img1", "tl", "bl", ["beforeShow", "windowResize"]]</code>,
-            * will re-align the overlay position, whenever the "beforeShow" or "windowResize" events are fired.
-            * </p>
-            *
-            * @config context
-            * @type Array
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.CONTEXT.key, {
-                handler: this.configContext, 
-                suppressEvent: DEFAULT_CONFIG.CONTEXT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.CONTEXT.supercedes
-            });
-
-            /**
-            * True if the Overlay should be anchored to the center of 
-            * the viewport.
-            * @config fixedcenter
-            * @type Boolean
-            * @default false
-            */
-            cfg.addProperty(DEFAULT_CONFIG.FIXED_CENTER.key, {
-                handler: this.configFixedCenter,
-                value: DEFAULT_CONFIG.FIXED_CENTER.value, 
-                validator: DEFAULT_CONFIG.FIXED_CENTER.validator, 
-                supercedes: DEFAULT_CONFIG.FIXED_CENTER.supercedes
-            });
-    
-            /**
-            * CSS width of the Overlay.
-            * @config width
-            * @type String
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.WIDTH.key, {
-                handler: this.configWidth, 
-                suppressEvent: DEFAULT_CONFIG.WIDTH.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.WIDTH.supercedes
-            });
-
-            /**
-            * CSS height of the Overlay.
-            * @config height
-            * @type String
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.HEIGHT.key, {
-                handler: this.configHeight, 
-                suppressEvent: DEFAULT_CONFIG.HEIGHT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.HEIGHT.supercedes
-            });
-
-            /**
-            * Standard module element which should auto fill out the height of the Overlay if the height config property is set.
-            * Supported values are "header", "body", "footer".
-            *
-            * @config autofillheight
-            * @type String
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.AUTO_FILL_HEIGHT.key, {
-                handler: this.configAutoFillHeight, 
-                value : DEFAULT_CONFIG.AUTO_FILL_HEIGHT.value,
-                validator : this._validateAutoFill,
-                suppressEvent: DEFAULT_CONFIG.AUTO_FILL_HEIGHT.suppressEvent, 
-                supercedes: DEFAULT_CONFIG.AUTO_FILL_HEIGHT.supercedes
-            });
-
-            /**
-            * CSS z-index of the Overlay.
-            * @config zIndex
-            * @type Number
-            * @default null
-            */
-            cfg.addProperty(DEFAULT_CONFIG.ZINDEX.key, {
-                handler: this.configzIndex,
-                value: DEFAULT_CONFIG.ZINDEX.value
-            });
-
-            /**
-            * True if the Overlay should be prevented from being positioned 
-            * out of the viewport.
-            * @config constraintoviewport
-            * @type Boolean
-            * @default false
-            */
-            cfg.addProperty(DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.key, {
-
-                handler: this.configConstrainToViewport, 
-                value: DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.value, 
-                validator: DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.validator, 
-                supercedes: DEFAULT_CONFIG.CONSTRAIN_TO_VIEWPORT.supercedes
-
-            });
-
-            /**
-            * @config iframe
-            * @description Boolean indicating whether or not the Overlay should 
-            * have an IFRAME shim; used to prevent SELECT elements from 
-            * poking through an Overlay instance in IE6.  When set to "true", 
-            * the iframe shim is created when the Overlay instance is intially
-            * made visible.
-            * @type Boolean
-            * @default true for IE6 and below, false for all other browsers.
-            */
-            cfg.addProperty(DEFAULT_CONFIG.IFRAME.key, {
-
-                handler: this.configIframe, 
-                value: DEFAULT_CONFIG.IFRAME.value, 
-                validator: DEFAULT_CONFIG.IFRAME.validator, 
-                supercedes: DEFAULT_CONFIG.IFRAME.supercedes
-
-            });
-
-            /**
-            * @config preventcontextoverlap
-            * @description Boolean indicating whether or not the Overlay should overlap its 
-            * context element (defined using the "context" configuration property) when the 
-            * "constraintoviewport" configuration property is set to "true".
-            * @type Boolean
-            * @default false
-            */
-            cfg.addProperty(DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.key, {
-
-                value: DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.value, 
-                validator: DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.validator, 
-                supercedes: DEFAULT_CONFIG.PREVENT_CONTEXT_OVERLAP.supercedes
-
-            });
-
-        },
-
-        /**
-        * Moves the Overlay to the specified position. This function is  
-        * identical to calling this.cfg.setProperty("xy", [x,y]);
-        * @method moveTo
-        * @param {Number} x The Overlay's new x position
-        * @param {Number} y The Overlay's new y position
-        */
-        moveTo: function (x, y) {
-            this.cfg.setProperty("xy", [x, y]);
-        },
-
-        /**
-        * Adds a CSS class ("hide-scrollbars") and removes a CSS class 
-        * ("show-scrollbars") to the Overlay to fix a bug in Gecko on Mac OS X 
-        * (https://bugzilla.mozilla.org/show_bug.cgi?id=187435)
-        * @method hideMacGeckoScrollbars
-        */
-        hideMacGeckoScrollbars: function () {
-            Dom.replaceClass(this.element, "show-scrollbars", "hide-scrollbars");
-        },
-
-        /**
-        * Adds a CSS class ("show-scrollbars") and removes a CSS class 
-        * ("hide-scrollbars") to the Overlay to fix a bug in Gecko on Mac OS X 
-        * (https://bugzilla.mozilla.org/show_bug.cgi?id=187435)
-        * @method showMacGeckoScrollbars
-        */
-        showMacGeckoScrollbars: function () {
-            Dom.replaceClass(this.element, "hide-scrollbars", "show-scrollbars");
-        },
-
-        // BEGIN BUILT-IN PROPERTY EVENT HANDLERS //
-        /**
-        * The default event handler fired when the "visible" property is 
-        * changed.  This method is responsible for firing showEvent
-        * and hideEvent.
-        * @method configVisible
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configVisible: function (type, args, obj) {
-
-            var visible = args[0],
-                currentVis = Dom.getStyle(this.element, "visibility"),
-                effect = this.cfg.getProperty("effect"),
-                effectInstances = [],
-                isMacGecko = (this.platform == "mac" && UA.gecko),
-                alreadySubscribed = Config.alreadySubscribed,
-                eff, ei, e, i, j, k, h,
-                nEffects,
-                nEffectInstances;
-
-            if (currentVis == "inherit") {
-                e = this.element.parentNode;
-
-                while (e.nodeType != 9 && e.nodeType != 11) {
-                    currentVis = Dom.getStyle(e, "visibility");
-
-                    if (currentVis != "inherit") { 
-                        break; 
-                    }
-
-                    e = e.parentNode;
-                }
-
-                if (currentVis == "inherit") {
-                    currentVis = "visible";
-                }
-            }
-
-            if (effect) {
-                if (effect instanceof Array) {
-                    nEffects = effect.length;
-
-                    for (i = 0; i < nEffects; i++) {
-                        eff = effect[i];
-                        effectInstances[effectInstances.length] = 
-                            eff.effect(this, eff.duration);
-
-                    }
-                } else {
-                    effectInstances[effectInstances.length] = 
-                        effect.effect(this, effect.duration);
-                }
-            }
-
-
-            if (visible) { // Show
-                if (isMacGecko) {
-                    this.showMacGeckoScrollbars();
-                }
-
-                if (effect) { // Animate in
-                    if (visible) { // Animate in if not showing
-                        if (currentVis != "visible" || currentVis === "") {
-                            this.beforeShowEvent.fire();
-                            nEffectInstances = effectInstances.length;
-
-                            for (j = 0; j < nEffectInstances; j++) {
-                                ei = effectInstances[j];
-                                if (j === 0 && !alreadySubscribed(
-                                        ei.animateInCompleteEvent, 
-                                        this.showEvent.fire, this.showEvent)) {
-
-                                    /*
-                                         Delegate showEvent until end 
-                                         of animateInComplete
-                                    */
-
-                                    ei.animateInCompleteEvent.subscribe(
-                                     this.showEvent.fire, this.showEvent, true);
-                                }
-                                ei.animateIn();
-                            }
-                        }
-                    }
-                } else { // Show
-                    if (currentVis != "visible" || currentVis === "") {
-                        this.beforeShowEvent.fire();
-
-                        Dom.setStyle(this.element, "visibility", "visible");
-
-                        this.cfg.refireEvent("iframe");
-                        this.showEvent.fire();
-                    }
-                }
-            } else { // Hide
-
-                if (isMacGecko) {
-                    this.hideMacGeckoScrollbars();
-                }
-                    
-                if (effect) { // Animate out if showing
-                    if (currentVis == "visible") {
-                        this.beforeHideEvent.fire();
-
-                        nEffectInstances = effectInstances.length;
-                        for (k = 0; k < nEffectInstances; k++) {
-                            h = effectInstances[k];
-    
-                            if (k === 0 && !alreadySubscribed(
-                                h.animateOutCompleteEvent, this.hideEvent.fire, 
-                                this.hideEvent)) {
-    
-                                /*
-                                     Delegate hideEvent until end 
-                                     of animateOutComplete
-                                */
-    
-                                h.animateOutCompleteEvent.subscribe(
-                                    this.hideEvent.fire, this.hideEvent, true);
-    
-                            }
-                            h.animateOut();
-                        }
-
-                    } else if (currentVis === "") {
-                        Dom.setStyle(this.element, "visibility", "hidden");
-                    }
-
-                } else { // Simple hide
-
-                    if (currentVis == "visible" || currentVis === "") {
-                        this.beforeHideEvent.fire();
-                        Dom.setStyle(this.element, "visibility", "hidden");
-                        this.hideEvent.fire();
-                    }
-                }
-            }
-        },
-
-        /**
-        * Center event handler used for centering on scroll/resize, but only if 
-        * the Overlay is visible
-        * @method doCenterOnDOMEvent
-        */
-        doCenterOnDOMEvent: function () {
-            if (this.cfg.getProperty("visible")) {
-                this.center();
-            }
-        },
-
-        /**
-        * The default event handler fired when the "fixedcenter" property 
-        * is changed.
-        * @method configFixedCenter
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configFixedCenter: function (type, args, obj) {
-
-            var val = args[0],
-                alreadySubscribed = Config.alreadySubscribed,
-                windowResizeEvent = Overlay.windowResizeEvent,
-                windowScrollEvent = Overlay.windowScrollEvent;
-
-            if (val) {
-                this.center();
-
-                if (!alreadySubscribed(this.beforeShowEvent, this.center, this)) {
-                    this.beforeShowEvent.subscribe(this.center);
-                }
-
-                if (!alreadySubscribed(windowResizeEvent, this.doCenterOnDOMEvent, this)) {
-                    windowResizeEvent.subscribe(this.doCenterOnDOMEvent, this, true);
-                }
-
-                if (!alreadySubscribed(windowScrollEvent, this.doCenterOnDOMEvent, this)) {
-                    windowScrollEvent.subscribe(this.doCenterOnDOMEvent, this, true);
-                }
-
-            } else {
-                this.beforeShowEvent.unsubscribe(this.center);
-
-                windowResizeEvent.unsubscribe(this.doCenterOnDOMEvent, this);
-                windowScrollEvent.unsubscribe(this.doCenterOnDOMEvent, this);
-            }
-        },
-        
-        /**
-        * The default event handler fired when the "height" property is changed.
-        * @method configHeight
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configHeight: function (type, args, obj) {
-
-            var height = args[0],
-                el = this.element;
-
-            Dom.setStyle(el, "height", height);
-            this.cfg.refireEvent("iframe");
-        },
-
-        /**
-         * The default event handler fired when the "autofillheight" property is changed.
-         * @method configAutoFillHeight
-         *
-         * @param {String} type The CustomEvent type (usually the property name)
-         * @param {Object[]} args The CustomEvent arguments. For configuration 
-         * handlers, args[0] will equal the newly applied value for the property.
-         * @param {Object} obj The scope object. For configuration handlers, 
-         * this will usually equal the owner.
-         */
-        configAutoFillHeight: function (type, args, obj) {
-            var fillEl = args[0],
-                currEl = this.cfg.getProperty("autofillheight");
-
-            this.cfg.unsubscribeFromConfigEvent("height", this._autoFillOnHeightChange);
-            Module.textResizeEvent.unsubscribe("height", this._autoFillOnHeightChange);
-
-            if (currEl && fillEl !== currEl && this[currEl]) {
-                Dom.setStyle(this[currEl], "height", "");
-            }
-
-            if (fillEl) {
-                fillEl = Lang.trim(fillEl.toLowerCase());
-
-                this.cfg.subscribeToConfigEvent("height", this._autoFillOnHeightChange, this[fillEl], this);
-                Module.textResizeEvent.subscribe(this._autoFillOnHeightChange, this[fillEl], this);
-
-                this.cfg.setProperty("autofillheight", fillEl, true);
-            }
-        },
-
-        /**
-        * The default event handler fired when the "width" property is changed.
-        * @method configWidth
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configWidth: function (type, args, obj) {
-
-            var width = args[0],
-                el = this.element;
-
-            Dom.setStyle(el, "width", width);
-            this.cfg.refireEvent("iframe");
-        },
-
-        /**
-        * The default event handler fired when the "zIndex" property is changed.
-        * @method configzIndex
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configzIndex: function (type, args, obj) {
-
-            var zIndex = args[0],
-                el = this.element;
-
-            if (! zIndex) {
-                zIndex = Dom.getStyle(el, "zIndex");
-                if (! zIndex || isNaN(zIndex)) {
-                    zIndex = 0;
-                }
-            }
-
-            if (this.iframe || this.cfg.getProperty("iframe") === true) {
-                if (zIndex <= 0) {
-                    zIndex = 1;
-                }
-            }
-
-            Dom.setStyle(el, "zIndex", zIndex);
-            this.cfg.setProperty("zIndex", zIndex, true);
-
-            if (this.iframe) {
-                this.stackIframe();
-            }
-        },
-
-        /**
-        * The default event handler fired when the "xy" property is changed.
-        * @method configXY
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configXY: function (type, args, obj) {
-
-            var pos = args[0],
-                x = pos[0],
-                y = pos[1];
-
-            this.cfg.setProperty("x", x);
-            this.cfg.setProperty("y", y);
-
-            this.beforeMoveEvent.fire([x, y]);
-
-            x = this.cfg.getProperty("x");
-            y = this.cfg.getProperty("y");
-
-
-            this.cfg.refireEvent("iframe");
-            this.moveEvent.fire([x, y]);
-        },
-
-        /**
-        * The default event handler fired when the "x" property is changed.
-        * @method configX
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configX: function (type, args, obj) {
-
-            var x = args[0],
-                y = this.cfg.getProperty("y");
-
-            this.cfg.setProperty("x", x, true);
-            this.cfg.setProperty("y", y, true);
-
-            this.beforeMoveEvent.fire([x, y]);
-
-            x = this.cfg.getProperty("x");
-            y = this.cfg.getProperty("y");
-            
-            Dom.setX(this.element, x, true);
-
-            this.cfg.setProperty("xy", [x, y], true);
-
-            this.cfg.refireEvent("iframe");
-            this.moveEvent.fire([x, y]);
-        },
-
-        /**
-        * The default event handler fired when the "y" property is changed.
-        * @method configY
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configY: function (type, args, obj) {
-
-            var x = this.cfg.getProperty("x"),
-                y = args[0];
-
-            this.cfg.setProperty("x", x, true);
-            this.cfg.setProperty("y", y, true);
-
-            this.beforeMoveEvent.fire([x, y]);
-
-            x = this.cfg.getProperty("x");
-            y = this.cfg.getProperty("y");
-
-            Dom.setY(this.element, y, true);
-
-            this.cfg.setProperty("xy", [x, y], true);
-
-            this.cfg.refireEvent("iframe");
-            this.moveEvent.fire([x, y]);
-        },
-        
-        /**
-        * Shows the iframe shim, if it has been enabled.
-        * @method showIframe
-        */
-        showIframe: function () {
-
-            var oIFrame = this.iframe,
-                oParentNode;
-
-            if (oIFrame) {
-                oParentNode = this.element.parentNode;
-
-                if (oParentNode != oIFrame.parentNode) {
-                    this._addToParent(oParentNode, oIFrame);
-                }
-                oIFrame.style.display = "block";
-            }
-        },
-
-        /**
-        * Hides the iframe shim, if it has been enabled.
-        * @method hideIframe
-        */
-        hideIframe: function () {
-            if (this.iframe) {
-                this.iframe.style.display = "none";
-            }
-        },
-
-        /**
-        * Syncronizes the size and position of iframe shim to that of its 
-        * corresponding Overlay instance.
-        * @method syncIframe
-        */
-        syncIframe: function () {
-
-            var oIFrame = this.iframe,
-                oElement = this.element,
-                nOffset = Overlay.IFRAME_OFFSET,
-                nDimensionOffset = (nOffset * 2),
-                aXY;
-
-            if (oIFrame) {
-                // Size <iframe>
-                oIFrame.style.width = (oElement.offsetWidth + nDimensionOffset + "px");
-                oIFrame.style.height = (oElement.offsetHeight + nDimensionOffset + "px");
-
-                // Position <iframe>
-                aXY = this.cfg.getProperty("xy");
-
-                if (!Lang.isArray(aXY) || (isNaN(aXY[0]) || isNaN(aXY[1]))) {
-                    this.syncPosition();
-                    aXY = this.cfg.getProperty("xy");
-                }
-                Dom.setXY(oIFrame, [(aXY[0] - nOffset), (aXY[1] - nOffset)]);
-            }
-        },
-
-        /**
-         * Sets the zindex of the iframe shim, if it exists, based on the zindex of
-         * the Overlay element. The zindex of the iframe is set to be one less 
-         * than the Overlay element's zindex.
-         * 
-         * <p>NOTE: This method will not bump up the zindex of the Overlay element
-         * to ensure that the iframe shim has a non-negative zindex.
-         * If you require the iframe zindex to be 0 or higher, the zindex of 
-         * the Overlay element should be set to a value greater than 0, before 
-         * this method is called.
-         * </p>
-         * @method stackIframe
-         */
-        stackIframe: function () {
-            if (this.iframe) {
-                var overlayZ = Dom.getStyle(this.element, "zIndex");
-                if (!YAHOO.lang.isUndefined(overlayZ) && !isNaN(overlayZ)) {
-                    Dom.setStyle(this.iframe, "zIndex", (overlayZ - 1));
-                }
-            }
-        },
-
-        /**
-        * The default event handler fired when the "iframe" property is changed.
-        * @method configIframe
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configIframe: function (type, args, obj) {
-
-            var bIFrame = args[0];
-
-            function createIFrame() {
-
-                var oIFrame = this.iframe,
-                    oElement = this.element,
-                    oParent;
-
-                if (!oIFrame) {
-                    if (!m_oIFrameTemplate) {
-                        m_oIFrameTemplate = document.createElement("iframe");
-
-                        if (this.isSecure) {
-                            m_oIFrameTemplate.src = Overlay.IFRAME_SRC;
-                        }
-
-                        /*
-                            Set the opacity of the <iframe> to 0 so that it 
-                            doesn't modify the opacity of any transparent 
-                            elements that may be on top of it (like a shadow).
-                        */
-                        if (UA.ie) {
-                            m_oIFrameTemplate.style.filter = "alpha(opacity=0)";
-                            /*
-                                 Need to set the "frameBorder" property to 0 
-                                 supress the default <iframe> border in IE.  
-                                 Setting the CSS "border" property alone 
-                                 doesn't supress it.
-                            */
-                            m_oIFrameTemplate.frameBorder = 0;
-                        }
-                        else {
-                            m_oIFrameTemplate.style.opacity = "0";
-                        }
-
-                        m_oIFrameTemplate.style.position = "absolute";
-                        m_oIFrameTemplate.style.border = "none";
-                        m_oIFrameTemplate.style.margin = "0";
-                        m_oIFrameTemplate.style.padding = "0";
-                        m_oIFrameTemplate.style.display = "none";
-                    }
-
-                    oIFrame = m_oIFrameTemplate.cloneNode(false);
-                    oParent = oElement.parentNode;
-
-                    var parentNode = oParent || document.body;
-
-                    this._addToParent(parentNode, oIFrame);
-                    this.iframe = oIFrame;
-                }
-
-                /*
-                     Show the <iframe> before positioning it since the "setXY" 
-                     method of DOM requires the element be in the document 
-                     and visible.
-                */
-                this.showIframe();
-
-                /*
-                     Syncronize the size and position of the <iframe> to that 
-                     of the Overlay.
-                */
-                this.syncIframe();
-                this.stackIframe();
-
-                // Add event listeners to update the <iframe> when necessary
-                if (!this._hasIframeEventListeners) {
-                    this.showEvent.subscribe(this.showIframe);
-                    this.hideEvent.subscribe(this.hideIframe);
-                    this.changeContentEvent.subscribe(this.syncIframe);
-
-                    this._hasIframeEventListeners = true;
-                }
-            }
-
-            function onBeforeShow() {
-                createIFrame.call(this);
-                this.beforeShowEvent.unsubscribe(onBeforeShow);
-                this._iframeDeferred = false;
-            }
-
-            if (bIFrame) { // <iframe> shim is enabled
-
-                if (this.cfg.getProperty("visible")) {
-                    createIFrame.call(this);
-                } else {
-                    if (!this._iframeDeferred) {
-                        this.beforeShowEvent.subscribe(onBeforeShow);
-                        this._iframeDeferred = true;
-                    }
-                }
-
-            } else {    // <iframe> shim is disabled
-                this.hideIframe();
-
-                if (this._hasIframeEventListeners) {
-                    this.showEvent.unsubscribe(this.showIframe);
-                    this.hideEvent.unsubscribe(this.hideIframe);
-                    this.changeContentEvent.unsubscribe(this.syncIframe);
-
-                    this._hasIframeEventListeners = false;
-                }
-            }
-        },
-
-        /**
-         * Set's the container's XY value from DOM if not already set.
-         * 
-         * Differs from syncPosition, in that the XY value is only sync'd with DOM if 
-         * not already set. The method also refire's the XY config property event, so any
-         * beforeMove, Move event listeners are invoked.
-         * 
-         * @method _primeXYFromDOM
-         * @protected
-         */
-        _primeXYFromDOM : function() {
-            if (YAHOO.lang.isUndefined(this.cfg.getProperty("xy"))) {
-                // Set CFG XY based on DOM XY
-                this.syncPosition();
-                // Account for XY being set silently in syncPosition (no moveTo fired/called)
-                this.cfg.refireEvent("xy");
-                this.beforeShowEvent.unsubscribe(this._primeXYFromDOM);
-            }
-        },
-
-        /**
-        * The default event handler fired when the "constraintoviewport" 
-        * property is changed.
-        * @method configConstrainToViewport
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for 
-        * the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configConstrainToViewport: function (type, args, obj) {
-            var val = args[0];
-
-            if (val) {
-                if (! Config.alreadySubscribed(this.beforeMoveEvent, this.enforceConstraints, this)) {
-                    this.beforeMoveEvent.subscribe(this.enforceConstraints, this, true);
-                }
-                if (! Config.alreadySubscribed(this.beforeShowEvent, this._primeXYFromDOM)) {
-                    this.beforeShowEvent.subscribe(this._primeXYFromDOM);
-                }
-            } else {
-                this.beforeShowEvent.unsubscribe(this._primeXYFromDOM);
-                this.beforeMoveEvent.unsubscribe(this.enforceConstraints, this);
-            }
-        },
-
-         /**
-        * The default event handler fired when the "context" property
-        * is changed.
-        * 
-        * @method configContext
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        configContext: function (type, args, obj) {
-
-            var contextArgs = args[0],
-                contextEl,
-                elementMagnetCorner,
-                contextMagnetCorner,
-                triggers,
-                defTriggers = this.CONTEXT_TRIGGERS;
-
-            if (contextArgs) {
-
-                contextEl = contextArgs[0];
-                elementMagnetCorner = contextArgs[1];
-                contextMagnetCorner = contextArgs[2];
-                triggers = contextArgs[3];
-
-                if (defTriggers && defTriggers.length > 0) {
-                    triggers = (triggers || []).concat(defTriggers);
-                }
-
-                if (contextEl) {
-                    if (typeof contextEl == "string") {
-                        this.cfg.setProperty("context", [
-                                document.getElementById(contextEl), 
-                                elementMagnetCorner,
-                                contextMagnetCorner,
-                                triggers ],
-                                true);
-                    }
-
-                    if (elementMagnetCorner && contextMagnetCorner) {
-                        this.align(elementMagnetCorner, contextMagnetCorner);
-                    }
-
-                    if (this._contextTriggers) {
-                        // Unsubscribe Old Set
-                        this._processTriggers(this._contextTriggers, _UNSUBSCRIBE, this._alignOnTrigger);
-                    }
-
-                    if (triggers) {
-                        // Subscribe New Set
-                        this._processTriggers(triggers, _SUBSCRIBE, this._alignOnTrigger);
-                        this._contextTriggers = triggers;
-                    }
-                }
-            }
-        },
-
-        /**
-         * Custom Event handler for context alignment triggers. Invokes the align method
-         * 
-         * @method _alignOnTrigger
-         * @protected
-         * 
-         * @param {String} type The event type (not used by the default implementation)
-         * @param {Any[]} args The array of arguments for the trigger event (not used by the default implementation)
-         */
-        _alignOnTrigger: function(type, args) {
-            this.align();
-        },
-
-        /**
-         * Helper method to locate the custom event instance for the event name string
-         * passed in. As a convenience measure, any custom events passed in are returned.
-         *
-         * @method _findTriggerCE
-         * @private
-         *
-         * @param {String|CustomEvent} t Either a CustomEvent, or event type (e.g. "windowScroll") for which a 
-         * custom event instance needs to be looked up from the Overlay._TRIGGER_MAP.
-         */
-        _findTriggerCE : function(t) {
-            var tce = null;
-            if (t instanceof CustomEvent) {
-                tce = t;
-            } else if (Overlay._TRIGGER_MAP[t]) {
-                tce = Overlay._TRIGGER_MAP[t];
-            }
-            return tce;
-        },
-
-        /**
-         * Utility method that subscribes or unsubscribes the given 
-         * function from the list of trigger events provided.
-         *
-         * @method _processTriggers
-         * @protected 
-         *
-         * @param {Array[String|CustomEvent]} triggers An array of either CustomEvents, event type strings 
-         * (e.g. "beforeShow", "windowScroll") to/from which the provided function should be 
-         * subscribed/unsubscribed respectively.
-         *
-         * @param {String} mode Either "subscribe" or "unsubscribe", specifying whether or not
-         * we are subscribing or unsubscribing trigger listeners
-         * 
-         * @param {Function} fn The function to be subscribed/unsubscribed to/from the trigger event.
-         * Context is always set to the overlay instance, and no additional object argument 
-         * get passed to the subscribed function.
-         */
-        _processTriggers : function(triggers, mode, fn) {
-            var t, tce;
-
-            for (var i = 0, l = triggers.length; i < l; ++i) {
-                t = triggers[i];
-                tce = this._findTriggerCE(t);
-                if (tce) {
-                    tce[mode](fn, this, true);
-                } else {
-                    this[mode](t, fn);
-                }
-            }
-        },
-
-        // END BUILT-IN PROPERTY EVENT HANDLERS //
-        /**
-        * Aligns the Overlay to its context element using the specified corner 
-        * points (represented by the constants TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, 
-        * and BOTTOM_RIGHT.
-        * @method align
-        * @param {String} elementAlign  The String representing the corner of 
-        * the Overlay that should be aligned to the context element
-        * @param {String} contextAlign  The corner of the context element 
-        * that the elementAlign corner should stick to.
-        */
-        align: function (elementAlign, contextAlign) {
-
-            var contextArgs = this.cfg.getProperty("context"),
-                me = this,
-                context,
-                element,
-                contextRegion;
-
-            function doAlign(v, h) {
-    
-                switch (elementAlign) {
-    
-                case Overlay.TOP_LEFT:
-                    me.moveTo(h, v);
-                    break;
-    
-                case Overlay.TOP_RIGHT:
-                    me.moveTo((h - element.offsetWidth), v);
-                    break;
-    
-                case Overlay.BOTTOM_LEFT:
-                    me.moveTo(h, (v - element.offsetHeight));
-                    break;
-    
-                case Overlay.BOTTOM_RIGHT:
-                    me.moveTo((h - element.offsetWidth), 
-                        (v - element.offsetHeight));
-                    break;
-                }
-            }
-    
-    
-            if (contextArgs) {
-            
-                context = contextArgs[0];
-                element = this.element;
-                me = this;
-                
-                if (! elementAlign) {
-                    elementAlign = contextArgs[1];
-                }
-                
-                if (! contextAlign) {
-                    contextAlign = contextArgs[2];
-                }
-                
-                if (element && context) {
-                    contextRegion = Dom.getRegion(context);
-
-                    switch (contextAlign) {
-    
-                    case Overlay.TOP_LEFT:
-                        doAlign(contextRegion.top, contextRegion.left);
-                        break;
-    
-                    case Overlay.TOP_RIGHT:
-                        doAlign(contextRegion.top, contextRegion.right);
-                        break;
-    
-                    case Overlay.BOTTOM_LEFT:
-                        doAlign(contextRegion.bottom, contextRegion.left);
-                        break;
-    
-                    case Overlay.BOTTOM_RIGHT:
-                        doAlign(contextRegion.bottom, contextRegion.right);
-                        break;
-                    }
-    
-                }
-    
-            }
-            
-        },
-
-        /**
-        * The default event handler executed when the moveEvent is fired, if the 
-        * "constraintoviewport" is set to true.
-        * @method enforceConstraints
-        * @param {String} type The CustomEvent type (usually the property name)
-        * @param {Object[]} args The CustomEvent arguments. For configuration 
-        * handlers, args[0] will equal the newly applied value for the property.
-        * @param {Object} obj The scope object. For configuration handlers, 
-        * this will usually equal the owner.
-        */
-        enforceConstraints: function (type, args, obj) {
-            var pos = args[0];
-            
-            var cXY = this.getConstrainedXY(pos[0], pos[1]);
-            this.cfg.setProperty("x", cXY[0], true);
-            this.cfg.setProperty("y", cXY[1], true);
-            this.cfg.setProperty("xy", cXY, true);
-        },
-
-
-        /**
-         * Given x coordinate value, returns the calculated x coordinate required to 
-         * position the Overlay if it is to be constrained to the viewport, based on the 
-         * current element size, viewport dimensions and scroll values.
-         *
-         * @param {Number} x The X coordinate value to be constrained
-         * @return {Number} The constrained x coordinate
-         */		
-        getConstrainedX: function (x) {
-
-            var oOverlay = this,
-                oOverlayEl = oOverlay.element,
-                nOverlayOffsetWidth = oOverlayEl.offsetWidth,
-
-                nViewportOffset = Overlay.VIEWPORT_OFFSET,
-                viewPortWidth = Dom.getViewportWidth(),
-                scrollX = Dom.getDocumentScrollLeft(),
-
-                bCanConstrain = (nOverlayOffsetWidth + nViewportOffset < viewPortWidth),
-
-                aContext = this.cfg.getProperty("context"),
-                oContextEl,
-                nContextElX,
-                nContextElWidth,
-
-                bFlipped = false,
-
-                nLeftRegionWidth,
-                nRightRegionWidth,
-
-                leftConstraint,
-                rightConstraint,
-
-                xNew = x,
-
-                oOverlapPositions = {
-
-                    "tltr": true,
-                    "blbr": true,
-                    "brbl": true,
-                    "trtl": true
-                
-                };
-
-
-            var flipHorizontal = function () {
-            
-                var nNewX;
-            
-                if ((oOverlay.cfg.getProperty("x") - scrollX) > nContextElX) {
-                    nNewX = (nContextElX - nOverlayOffsetWidth);
-                }
-                else {
-                    nNewX = (nContextElX + nContextElWidth);
-                }
-                
-    
-                oOverlay.cfg.setProperty("x", (nNewX + scrollX), true);
-    
-                return nNewX;
-    
-            };
-
-
-
-            /*
-                 Uses the context element's position to calculate the availble width 
-                 to the right and left of it to display its corresponding Overlay.
-            */
-
-            var getDisplayRegionWidth = function () {
-
-                // The Overlay is to the right of the context element
-
-                if ((oOverlay.cfg.getProperty("x") - scrollX) > nContextElX) {
-                    return (nRightRegionWidth - nViewportOffset);
-                }
-                else {	// The Overlay is to the left of the context element
-                    return (nLeftRegionWidth - nViewportOffset);
-                }
-            
-            };
-    
-
-            /*
-                Positions the Overlay to the left or right of the context element so that it remains 
-                inside the viewport.
-            */
-    
-            var setHorizontalPosition = function () {
-            
-                var nDisplayRegionWidth = getDisplayRegionWidth(),
-                    fnReturnVal;
-
-                if (nOverlayOffsetWidth > nDisplayRegionWidth) {
-        
-                    if (bFlipped) {
-        
-                        /*
-                             All possible positions and values have been 
-                             tried, but none were successful, so fall back 
-                             to the original size and position.
-                        */
-    
-                        flipHorizontal();
-                        
-                    }
-                    else {
-        
-                        flipHorizontal();
-
-                        bFlipped = true;
-        
-                        fnReturnVal = setHorizontalPosition();
-        
-                    }
-                
-                }
-        
-                return fnReturnVal;
-            
-            };
-
-
-            if (this.cfg.getProperty("preventcontextoverlap") && aContext && 
-				oOverlapPositions[(aContext[1] + aContext[2])]) {
-
-                if (bCanConstrain) {
-
-                    oContextEl = aContext[0];
-                    nContextElX = Dom.getX(oContextEl) - scrollX;
-                    nContextElWidth = oContextEl.offsetWidth;
-                    nLeftRegionWidth = nContextElX;
-                    nRightRegionWidth = (viewPortWidth - (nContextElX + nContextElWidth));
-    
-                    setHorizontalPosition();
-
-                }
-                
-                xNew = this.cfg.getProperty("x");
-            
-            }
-            else {
-
-                if (bCanConstrain) {
-    
-                    leftConstraint = scrollX + nViewportOffset;
-                    rightConstraint = 
-                        scrollX + viewPortWidth - nOverlayOffsetWidth - nViewportOffset;
-    
-                    if (x < leftConstraint) {
-                        xNew = leftConstraint;
-                    } else if (x > rightConstraint) {
-                        xNew = rightConstraint;
-                    }
-                } else {
-                    xNew = nViewportOffset + scrollX;
-                }
-            
-            }
-
-            return xNew;
-        
-        },
-
-
-        /**
-         * Given y coordinate value, returns the calculated y coordinate required to 
-         * position the Overlay if it is to be constrained to the viewport, based on the 
-         * current element size, viewport dimensions and scroll values.
-         *
-         * @param {Number} y The Y coordinate value to be constrained
-         * @return {Number} The constrained y coordinate
-         */		
-        getConstrainedY: function (y) {
-
-            var oOverlay = this,
-                oOverlayEl = oOverlay.element,
-                nOverlayOffsetHeight = oOverlayEl.offsetHeight,
-            
-                nViewportOffset = Overlay.VIEWPORT_OFFSET,
-                viewPortHeight = Dom.getViewportHeight(),
-                scrollY = Dom.getDocumentScrollTop(),
-
-                bCanConstrain = (nOverlayOffsetHeight + nViewportOffset < viewPortHeight),
-
-                aContext = this.cfg.getProperty("context"),
-                oContextEl,
-                nContextElY,
-                nContextElHeight,
-
-                bFlipped = false,
-
-                nTopRegionHeight,
-                nBottomRegionHeight,
-
-                topConstraint,
-                bottomConstraint,
-
-                yNew = y,
-                
-                oOverlapPositions = {
-                    "trbr": true,
-                    "tlbl": true,
-                    "bltl": true,
-                    "brtr": true
-                };
-
-
-            var flipVertical = function () {
-
-                var nNewY;
-            
-                // The Overlay is below the context element, flip it above
-                if ((oOverlay.cfg.getProperty("y") - scrollY) > nContextElY) { 
-                    nNewY = (nContextElY - nOverlayOffsetHeight);
-                }
-                else {	// The Overlay is above the context element, flip it below
-                    nNewY = (nContextElY + nContextElHeight);
-                }
-    
-                oOverlay.cfg.setProperty("y", (nNewY + scrollY), true);
-                
-                return nNewY;
-            
-            };
-
-
-            /*
-                 Uses the context element's position to calculate the availble height 
-                 above and below it to display its corresponding Overlay.
-            */
-
-            var getDisplayRegionHeight = function () {
-
-                // The Overlay is below the context element
-                if ((oOverlay.cfg.getProperty("y") - scrollY) > nContextElY) {
-                    return (nBottomRegionHeight - nViewportOffset);				
-                }
-                else {	// The Overlay is above the context element
-                    return (nTopRegionHeight - nViewportOffset);				
-                }
-        
-            };
-
-
-            /*
-                Trys to place the Overlay in the best possible position (either above or 
-                below its corresponding context element).
-            */
-        
-            var setVerticalPosition = function () {
-        
-                var nDisplayRegionHeight = getDisplayRegionHeight(),
-                    fnReturnVal;
-                    
-
-                if (nOverlayOffsetHeight > nDisplayRegionHeight) {
-                   
-                    if (bFlipped) {
-        
-                        /*
-                             All possible positions and values for the 
-                             "maxheight" configuration property have been 
-                             tried, but none were successful, so fall back 
-                             to the original size and position.
-                        */
-    
-                        flipVertical();
-                        
-                    }
-                    else {
-        
-                        flipVertical();
-
-                        bFlipped = true;
-        
-                        fnReturnVal = setVerticalPosition();
-        
-                    }
-                
-                }
-        
-                return fnReturnVal;
-        
-            };
-
-
-            if (this.cfg.getProperty("preventcontextoverlap") && aContext && 
-            	oOverlapPositions[(aContext[1] + aContext[2])]) {
-
-                if (bCanConstrain) {
-
-                    oContextEl = aContext[0];
-                    nContextElHeight = oContextEl.offsetHeight;
-                    nContextElY = (Dom.getY(oContextEl) - scrollY);
-    
-                    nTopRegionHeight = nContextElY;
-                    nBottomRegionHeight = (viewPortHeight - (nContextElY + nContextElHeight));
-    
-                    setVerticalPosition();
-                
-                }
-
-                yNew = oOverlay.cfg.getProperty("y");
-
-            }
-            else {
-
-                if (bCanConstrain) {
-    
-                    topConstraint = scrollY + nViewportOffset;
-                    bottomConstraint = 
-                        scrollY + viewPortHeight - nOverlayOffsetHeight - nViewportOffset;
-    
-                    if (y < topConstraint) {
-                        yNew  = topConstraint;
-                    } else if (y  > bottomConstraint) {
-                        yNew  = bottomConstraint;
-                    }
-                } else {
-                    yNew = nViewportOffset + scrollY;
-                }
-
-            }
-
-            return yNew;
-        },
-
-
-        /**
-         * Given x, y coordinate values, returns the calculated coordinates required to 
-         * position the Overlay if it is to be constrained to the viewport, based on the 
-         * current element size, viewport dimensions and scroll values.
-         *
-         * @param {Number} x The X coordinate value to be constrained
-         * @param {Number} y The Y coordinate value to be constrained
-         * @return {Array} The constrained x and y coordinates at index 0 and 1 respectively;
-         */
-        getConstrainedXY: function(x, y) {
-            return [this.getConstrainedX(x), this.getConstrainedY(y)];
-        },
-
-        /**
-        * Centers the container in the viewport.
-        * @method center
-        */
-        center: function () {
-
-            var nViewportOffset = Overlay.VIEWPORT_OFFSET,
-                elementWidth = this.element.offsetWidth,
-                elementHeight = this.element.offsetHeight,
-                viewPortWidth = Dom.getViewportWidth(),
-                viewPortHeight = Dom.getViewportHeight(),
-                x,
-                y;
-
-            if (elementWidth < viewPortWidth) {
-                x = (viewPortWidth / 2) - (elementWidth / 2) + Dom.getDocumentScrollLeft();
-            } else {
-                x = nViewportOffset + Dom.getDocumentScrollLeft();
-            }
-
-            if (elementHeight < viewPortHeight) {
-                y = (viewPortHeight / 2) - (elementHeight / 2) + Dom.getDocumentScrollTop();
-            } else {
-                y = nViewportOffset + Dom.getDocumentScrollTop();
-            }
-
-            this.cfg.setProperty("xy", [parseInt(x, 10), parseInt(y, 10)]);
-            this.cfg.refireEvent("iframe");
-        },
-
-        /**
-        * Synchronizes the Panel's "xy", "x", and "y" properties with the 
-        * Panel's position in the DOM. This is primarily used to update  
-        * position information during drag & drop.
-        * @method syncPosition
-        */
-        syncPosition: function () {
-
-            var pos = Dom.getXY(this.element);
-
-            this.cfg.setProperty("x", pos[0], true);
-            this.cfg.setProperty("y", pos[1], true);
-            this.cfg.setProperty("xy", pos, true);
-
-        },
-
-        /**
-        * Event handler fired when the resize monitor element is resized.
-        * @method onDomResize
-        * @param {DOMEvent} e The resize DOM event
-        * @param {Object} obj The scope object
-        */
-        onDomResize: function (e, obj) {
-
-            var me = this;
-
-            Overlay.superclass.onDomResize.call(this, e, obj);
-
-            setTimeout(function () {
-                me.syncPosition();
-                me.cfg.refireEvent("iframe");
-                me.cfg.refireEvent("context");
-            }, 0);
-        },
-
-        /**
-         * Determines the content box height of the given element (height of the element, without padding or borders) in pixels.
-         *
-         * @method _getComputedHeight
-         * @private
-         * @param {HTMLElement} el The element for which the content height needs to be determined
-         * @return {Number} The content box height of the given element, or null if it could not be determined.
-         */
-        _getComputedHeight : (function() {
-
-            if (document.defaultView && document.defaultView.getComputedStyle) {
-                return function(el) {
-                    var height = null;
-                    if (el.ownerDocument && el.ownerDocument.defaultView) {
-                        var computed = el.ownerDocument.defaultView.getComputedStyle(el, '');
-                        if (computed) {
-                            height = parseInt(computed.height, 10);
-                        }
-                    }
-                    return (Lang.isNumber(height)) ? height : null;
-                };
-            } else {
-                return function(el) {
-                    var height = null;
-                    if (el.style.pixelHeight) {
-                        height = el.style.pixelHeight;
-                    }
-                    return (Lang.isNumber(height)) ? height : null;
-                };
-            }
-        })(),
-
-        /**
-         * autofillheight validator. Verifies that the autofill value is either null 
-         * or one of the strings : "body", "header" or "footer".
-         *
-         * @method _validateAutoFillHeight
-         * @protected
-         * @param {String} val
-         * @return true, if valid, false otherwise
-         */
-        _validateAutoFillHeight : function(val) {
-            return (!val) || (Lang.isString(val) && Overlay.STD_MOD_RE.test(val));
-        },
-
-        /**
-         * The default custom event handler executed when the overlay's height is changed, 
-         * if the autofillheight property has been set.
-         *
-         * @method _autoFillOnHeightChange
-         * @protected
-         * @param {String} type The event type
-         * @param {Array} args The array of arguments passed to event subscribers
-         * @param {HTMLElement} el The header, body or footer element which is to be resized to fill
-         * out the containers height
-         */
-        _autoFillOnHeightChange : function(type, args, el) {
-            this.fillHeight(el);
-        },
-
-        /**
-         * Returns the sub-pixel height of the el, using getBoundingClientRect, if available,
-         * otherwise returns the offsetHeight
-         * @method _getPreciseHeight
-         * @private
-         * @param {HTMLElement} el
-         * @return {Float} The sub-pixel height if supported by the browser, else the rounded height.
-         */
-        _getPreciseHeight : function(el) {
-            var height = el.offsetHeight;
-
-            if (el.getBoundingClientRect) {
-                var rect = el.getBoundingClientRect();
-                height = rect.bottom - rect.top;
-            }
-
-            return height;
-        },
-
-        /**
-         * <p>
-         * Sets the height on the provided header, body or footer element to 
-         * fill out the height of the container. It determines the height of the 
-         * containers content box, based on it's configured height value, and 
-         * sets the height of the autofillheight element to fill out any 
-         * space remaining after the other standard module element heights 
-         * have been accounted for.
-         * </p>
-         * <p><strong>NOTE:</strong> This method is not designed to work if an explicit 
-         * height has not been set on the container, since for an "auto" height container, 
-         * the heights of the header/body/footer will drive the height of the container.</p>
-         *
-         * @method fillHeight
-         * @param {HTMLElement} el The element which should be resized to fill out the height
-         * of the container element.
-         */
-        fillHeight : function(el) {
-            if (el) {
-                var container = this.innerElement || this.element,
-                    containerEls = [this.header, this.body, this.footer],
-                    containerEl,
-                    total = 0,
-                    filled = 0,
-                    remaining = 0,
-                    validEl = false;
-
-                for (var i = 0, l = containerEls.length; i < l; i++) {
-                    containerEl = containerEls[i];
-                    if (containerEl) {
-                        if (el !== containerEl) {
-                            filled += this._getPreciseHeight(containerEl);
-                        } else {
-                            validEl = true;
-                        }
-                    }
-                }
-
-                if (validEl) {
-
-                    if (UA.ie || UA.opera) {
-                        // Need to set height to 0, to allow height to be reduced
-                        Dom.setStyle(el, 'height', 0 + 'px');
-                    }
-
-                    total = this._getComputedHeight(container);
-
-                    // Fallback, if we can't get computed value for content height
-                    if (total === null) {
-                        Dom.addClass(container, "yui-override-padding");
-                        total = container.clientHeight; // Content, No Border, 0 Padding (set by yui-override-padding)
-                        Dom.removeClass(container, "yui-override-padding");
-                    }
-    
-                    remaining = total - filled;
-    
-                    Dom.setStyle(el, "height", remaining + "px");
-    
-                    // Re-adjust height if required, to account for el padding and border
-                    if (el.offsetHeight != remaining) {
-                        remaining = remaining - (el.offsetHeight - remaining);
-                    }
-                    Dom.setStyle(el, "height", remaining + "px");
-                }
-            }
-        },
-
-        /**
-        * Places the Overlay on top of all other instances of 
-        * YAHOO.widget.Overlay.
-        * @method bringToTop
-        */
-        bringToTop: function () {
-
-            var aOverlays = [],
-                oElement = this.element;
-
-            function compareZIndexDesc(p_oOverlay1, p_oOverlay2) {
-
-                var sZIndex1 = Dom.getStyle(p_oOverlay1, "zIndex"),
-                    sZIndex2 = Dom.getStyle(p_oOverlay2, "zIndex"),
-
-                    nZIndex1 = (!sZIndex1 || isNaN(sZIndex1)) ? 0 : parseInt(sZIndex1, 10),
-                    nZIndex2 = (!sZIndex2 || isNaN(sZIndex2)) ? 0 : parseInt(sZIndex2, 10);
-
-                if (nZIndex1 > nZIndex2) {
-                    return -1;
-                } else if (nZIndex1 < nZIndex2) {
-                    return 1;
-                } else {
-                    return 0;
-                }
-            }
-
-            function isOverlayElement(p_oElement) {
-
-                var isOverlay = Dom.hasClass(p_oElement, Overlay.CSS_OVERLAY),
-                    Panel = YAHOO.widget.Panel;
-
-                if (isOverlay && !Dom.isAncestor(oElement, p_oElement)) {
-                    if (Panel && Dom.hasClass(p_oElement, Panel.CSS_PANEL)) {
-                        aOverlays[aOverlays.length] = p_oElement.parentNode;
-                    } else {
-                        aOverlays[aOverlays.length] = p_oElement;
-                    }
-                }
-            }
-
-            Dom.getElementsBy(isOverlayElement, "DIV", document.body);
-
-            aOverlays.sort(compareZIndexDesc);
-
-            var oTopOverlay = aOverlays[0],
-                nTopZIndex;
-
-            if (oTopOverlay) {
-                nTopZIndex = Dom.getStyle(oTopOverlay, "zIndex");
-
-                if (!isNaN(nTopZIndex)) {
-                    var bRequiresBump = false;
-
-                    if (oTopOverlay != oElement) {
-                        bRequiresBump = true;
-                    } else if (aOverlays.length > 1) {
-                        var nNextZIndex = Dom.getStyle(aOverlays[1], "zIndex");
-                        // Don't rely on DOM order to stack if 2 overlays are at the same zindex.
-                        if (!isNaN(nNextZIndex) && (nTopZIndex == nNextZIndex)) {
-                            bRequiresBump = true;
-                        }
-                    }
-                    if (bRequiresBump) {
-                        this.cfg.setProperty("zindex", (parseInt(nTopZIndex, 10) + 2));
-                    }
-                }
-            }
-        },
-
-        /**
-        * Removes the Overlay element from the DOM and sets all child 
-        * elements to null.
-        * @method destroy
-        */
-        destroy: function () {
-
-            if (this.iframe) {
-                this.iframe.parentNode.removeChild(this.iframe);
-            }
-
-            this.iframe = null;
-
-            Overlay.windowResizeEvent.unsubscribe(
-                this.doCenterOnDOMEvent, this);
-    
-            Overlay.windowScrollEvent.unsubscribe(
-                this.doCenterOnDOMEvent, this);
-
-            Module.textResizeEvent.unsubscribe(this._autoFillOnHeightChange);
-
-            Overlay.superclass.destroy.call(this);
-        },
-
-        /**
-        * Returns a String representation of the object.
-        * @method toString
-        * @return {String} The string representation of the Overlay.
-        */
-        toString: function () {
-            return "Overlay " + this.id;
-        }
-
-    });
-}());
-
-(function () {
-
-    /**
-    * OverlayManager is used for maintaining the focus status of 
-    * multiple Overlays.
-    * @namespace YAHOO.widget
-    * @namespace YAHOO.widget
-    * @class OverlayManager
-    * @constructor
-    * @param {Array} overlays Optional. A collection of Overlays to register 
-    * with the manager.
-    * @param {Object} userConfig  The object literal representing the user 
-    * configuration of the OverlayManager
-    */
-    YAHOO.widget.OverlayManager = function (userConfig) {
-        this.init(userConfig);
-    };
-
-    var Overlay = YAHOO.widget.Overlay,
-        Event = YAHOO.util.Event,
-        Dom = YAHOO.util.Dom,
-        Config = YAHOO.util.Config,
-        CustomEvent = YAHOO.util.CustomEvent,
-        OverlayManager = YAHOO.widget.OverlayManager;
-
-    /**
-    * The CSS class representing a focused Overlay
-    * @property OverlayManager.CSS_FOCUSED
-    * @static
-    * @final
-    * @type String
-    */
-    OverlayManager.CSS_FOCUSED = "focused";
-
-    OverlayManager.prototype = {
-
-        /**
-        * The class's constructor function
-        * @property contructor
-        * @type Function
-        */
-        constructor: OverlayManager,
-
-        /**
-        * The array of Overlays that are currently registered
-        * @property overlays
-        * @type YAHOO.widget.Overlay[]
-        */
-        overlays: null,
-
-        /**
-        * Initializes the default configuration of the OverlayManager
-        * @method initDefaultConfig
-        */
-        initDefaultConfig: function () {
-            /**
-            * The collection of registered Overlays in use by 
-            * the OverlayManager
-            * @config overlays
-            * @type YAHOO.widget.Overlay[]
-            * @default null
-            */
-            this.cfg.addProperty("overlays", { suppressEvent: true } );
-
-            /**
-            * The default DOM event that should be used to focus an Overlay
-            * @config focusevent
-            * @type String
-            * @default "mousedown"
-            */
-            this.cfg.addProperty("focusevent", { value: "mousedown" } );
-        },
-
-        /**
-        * Initializes the OverlayManager
-        * @method init
-        * @param {Overlay[]} overlays Optional. A collection of Overlays to 
-        * register with the manager.
-        * @param {Object} userConfig  The object literal representing the user 
-        * configuration of the OverlayManager
-        */
-        init: function (userConfig) {
-
-            /**
-            * The OverlayManager's Config object used for monitoring 
-            * configuration properties.
-            * @property cfg
-            * @type Config
-            */
-            this.cfg = new Config(this);
-
-            this.initDefaultConfig();
-
-            if (userConfig) {
-                this.cfg.applyConfig(userConfig, true);
-            }
-            this.cfg.fireQueue();
-
-            /**
-            * The currently activated Overlay
-            * @property activeOverlay
-            * @private
-            * @type YAHOO.widget.Overlay
-            */
-            var activeOverlay = null;
-
-            /**
-            * Returns the currently focused Overlay
-            * @method getActive
-            * @return {Overlay} The currently focused Overlay
-            */
-            this.getActive = function () {
-                return activeOverlay;
-            };
-
-            /**
-            * Focuses the specified Overlay
-            * @method focus
-            * @param {Overlay} overlay The Overlay to focus
-            * @param {String} overlay The id of the Overlay to focus
-            */
-            this.focus = function (overlay) {
-                var o = this.find(overlay);
-                if (o) {
-                    o.focus();
-                }
-            };
-
-            /**
-            * Removes the specified Overlay from the manager
-            * @method remove
-            * @param {Overlay} overlay The Overlay to remove
-            * @param {String} overlay The id of the Overlay to remove
-            */
-            this.remove = function (overlay) {
-
-                var o = this.find(overlay), 
-                        originalZ;
-
-                if (o) {
-                    if (activeOverlay == o) {
-                        activeOverlay = null;
-                    }
-
-                    var bDestroyed = (o.element === null && o.cfg === null) ? true : false;
-
-                    if (!bDestroyed) {
-                        // Set it's zindex so that it's sorted to the end.
-                        originalZ = Dom.getStyle(o.element, "zIndex");
-                        o.cfg.setProperty("zIndex", -1000, true);
-                    }
-
-                    this.overlays.sort(this.compareZIndexDesc);
-                    this.overlays = this.overlays.slice(0, (this.overlays.length - 1));
-
-                    o.hideEvent.unsubscribe(o.blur);
-                    o.destroyEvent.unsubscribe(this._onOverlayDestroy, o);
-                    o.focusEvent.unsubscribe(this._onOverlayFocusHandler, o);
-                    o.blurEvent.unsubscribe(this._onOverlayBlurHandler, o);
-
-                    if (!bDestroyed) {
-                        Event.removeListener(o.element, this.cfg.getProperty("focusevent"), this._onOverlayElementFocus);
-                        o.cfg.setProperty("zIndex", originalZ, true);
-                        o.cfg.setProperty("manager", null);
-                    }
-
-                    /* _managed Flag for custom or existing. Don't want to remove existing */
-                    if (o.focusEvent._managed) { o.focusEvent = null; }
-                    if (o.blurEvent._managed) { o.blurEvent = null; }
-
-                    if (o.focus._managed) { o.focus = null; }
-                    if (o.blur._managed) { o.blur = null; }
-                }
-            };
-
-            /**
-            * Removes focus from all registered Overlays in the manager
-            * @method blurAll
-            */
-            this.blurAll = function () {
-
-                var nOverlays = this.overlays.length,
-                    i;
-
-                if (nOverlays > 0) {
-                    i = nOverlays - 1;
-                    do {
-                        this.overlays[i].blur();
-                    }
-                    while(i--);
-                }
-            };
-
-            /**
-             * Updates the state of the OverlayManager and overlay, as a result of the overlay
-             * being blurred.
-             * 
-             * @method _manageBlur
-             * @param {Overlay} overlay The overlay instance which got blurred.
-             * @protected
-             */
-            this._manageBlur = function (overlay) {
-                var changed = false;
-                if (activeOverlay == overlay) {
-                    Dom.removeClass(activeOverlay.element, OverlayManager.CSS_FOCUSED);
-                    activeOverlay = null;
-                    changed = true;
-                }
-                return changed;
-            };
-
-            /**
-             * Updates the state of the OverlayManager and overlay, as a result of the overlay 
-             * receiving focus.
-             *
-             * @method _manageFocus
-             * @param {Overlay} overlay The overlay instance which got focus.
-             * @protected
-             */
-            this._manageFocus = function(overlay) {
-                var changed = false;
-                if (activeOverlay != overlay) {
-                    if (activeOverlay) {
-                        activeOverlay.blur();
-                    }
-                    activeOverlay = overlay;
-                    this.bringToTop(activeOverlay);
-                    Dom.addClass(activeOverlay.element, OverlayManager.CSS_FOCUSED);
-                    changed = true;
-                }
-                return changed;
-            };
-
-            var overlays = this.cfg.getProperty("overlays");
-
-            if (! this.overlays) {
-                this.overlays = [];
-            }
-
-            if (overlays) {
-                this.register(overlays);
-                this.overlays.sort(this.compareZIndexDesc);
-            }
-        },
-
-        /**
-        * @method _onOverlayElementFocus
-        * @description Event handler for the DOM event that is used to focus 
-        * the Overlay instance as specified by the "focusevent" 
-        * configuration property.
-        * @private
-        * @param {Event} p_oEvent Object representing the DOM event 
-        * object passed back by the event utility (Event).
-        */
-        _onOverlayElementFocus: function (p_oEvent) {
-
-            var oTarget = Event.getTarget(p_oEvent),
-                oClose = this.close;
-
-            if (oClose && (oTarget == oClose || Dom.isAncestor(oClose, oTarget))) {
-                this.blur();
-            } else {
-                this.focus();
-            }
-        },
-
-        /**
-        * @method _onOverlayDestroy
-        * @description "destroy" event handler for the Overlay.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {Overlay} p_oOverlay Object representing the overlay that 
-        * fired the event.
-        */
-        _onOverlayDestroy: function (p_sType, p_aArgs, p_oOverlay) {
-            this.remove(p_oOverlay);
-        },
-
-        /**
-        * @method _onOverlayFocusHandler
-        *
-        * focusEvent Handler, used to delegate to _manageFocus with the 
-        * correct arguments.
-        *
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {Overlay} p_oOverlay Object representing the overlay that 
-        * fired the event.
-        */
-        _onOverlayFocusHandler: function(p_sType, p_aArgs, p_oOverlay) {
-            this._manageFocus(p_oOverlay);
-        },
-
-        /**
-        * @method _onOverlayBlurHandler
-        *
-        * blurEvent Handler, used to delegate to _manageBlur with the 
-        * correct arguments.
-        *
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {Overlay} p_oOverlay Object representing the overlay that 
-        * fired the event.
-        */
-        _onOverlayBlurHandler: function(p_sType, p_aArgs, p_oOverlay) {
-            this._manageBlur(p_oOverlay);
-        },
-
-        /**
-         * Subscribes to the Overlay based instance focusEvent, to allow the OverlayManager to
-         * monitor focus state.
-         * 
-         * If the instance already has a focusEvent (e.g. Menu), OverlayManager will subscribe 
-         * to the existing focusEvent, however if a focusEvent or focus method does not exist
-         * on the instance, the _bindFocus method will add them, and the focus method will 
-         * update the OverlayManager's state directly.
-         * 
-         * @method _bindFocus
-         * @param {Overlay} overlay The overlay for which focus needs to be managed
-         * @protected
-         */
-        _bindFocus : function(overlay) {
-            var mgr = this;
-
-            if (!overlay.focusEvent) {
-                overlay.focusEvent = overlay.createEvent("focus");
-                overlay.focusEvent.signature = CustomEvent.LIST;
-                overlay.focusEvent._managed = true;
-            } else {
-                overlay.focusEvent.subscribe(mgr._onOverlayFocusHandler, overlay, mgr);
-            }
-
-            if (!overlay.focus) {
-                Event.on(overlay.element, mgr.cfg.getProperty("focusevent"), mgr._onOverlayElementFocus, null, overlay);
-                overlay.focus = function () {
-                    if (mgr._manageFocus(this)) {
-                        // For Panel/Dialog
-                        if (this.cfg.getProperty("visible") && this.focusFirst) {
-                            this.focusFirst();
-                        }
-                        this.focusEvent.fire();
-                    }
-                };
-                overlay.focus._managed = true;
-            }
-        },
-
-        /**
-         * Subscribes to the Overlay based instance's blurEvent to allow the OverlayManager to
-         * monitor blur state.
-         *
-         * If the instance already has a blurEvent (e.g. Menu), OverlayManager will subscribe 
-         * to the existing blurEvent, however if a blurEvent or blur method does not exist
-         * on the instance, the _bindBlur method will add them, and the blur method 
-         * update the OverlayManager's state directly.
-         *
-         * @method _bindBlur
-         * @param {Overlay} overlay The overlay for which blur needs to be managed
-         * @protected
-         */
-        _bindBlur : function(overlay) {
-            var mgr = this;
-
-            if (!overlay.blurEvent) {
-                overlay.blurEvent = overlay.createEvent("blur");
-                overlay.blurEvent.signature = CustomEvent.LIST;
-                overlay.focusEvent._managed = true;
-            } else {
-                overlay.blurEvent.subscribe(mgr._onOverlayBlurHandler, overlay, mgr);
-            }
-
-            if (!overlay.blur) {
-                overlay.blur = function () {
-                    if (mgr._manageBlur(this)) {
-                        this.blurEvent.fire();
-                    }
-                };
-                overlay.blur._managed = true;
-            }
-
-            overlay.hideEvent.subscribe(overlay.blur);
-        },
-
-        /**
-         * Subscribes to the Overlay based instance's destroyEvent, to allow the Overlay
-         * to be removed for the OverlayManager when destroyed.
-         * 
-         * @method _bindDestroy
-         * @param {Overlay} overlay The overlay instance being managed
-         * @protected
-         */
-        _bindDestroy : function(overlay) {
-            var mgr = this;
-            overlay.destroyEvent.subscribe(mgr._onOverlayDestroy, overlay, mgr);
-        },
-
-        /**
-         * Ensures the zIndex configuration property on the managed overlay based instance
-         * is set to the computed zIndex value from the DOM (with "auto" translating to 0).
-         *
-         * @method _syncZIndex
-         * @param {Overlay} overlay The overlay instance being managed
-         * @protected
-         */
-        _syncZIndex : function(overlay) {
-            var zIndex = Dom.getStyle(overlay.element, "zIndex");
-            if (!isNaN(zIndex)) {
-                overlay.cfg.setProperty("zIndex", parseInt(zIndex, 10));
-            } else {
-                overlay.cfg.setProperty("zIndex", 0);
-            }
-        },
-
-        /**
-        * Registers an Overlay or an array of Overlays with the manager. Upon 
-        * registration, the Overlay receives functions for focus and blur, 
-        * along with CustomEvents for each.
-        *
-        * @method register
-        * @param {Overlay} overlay  An Overlay to register with the manager.
-        * @param {Overlay[]} overlay  An array of Overlays to register with 
-        * the manager.
-        * @return {boolean} true if any Overlays are registered.
-        */
-        register: function (overlay) {
-
-            var zIndex,
-                registered = false,
-                i,
-                n;
-
-            if (overlay instanceof Overlay) {
-
-                overlay.cfg.addProperty("manager", { value: this } );
-
-                this._bindFocus(overlay);
-                this._bindBlur(overlay);
-                this._bindDestroy(overlay);
-                this._syncZIndex(overlay);
-
-                this.overlays.push(overlay);
-                this.bringToTop(overlay);
-
-                registered = true;
-
-            } else if (overlay instanceof Array) {
-
-                for (i = 0, n = overlay.length; i < n; i++) {
-                    registered = this.register(overlay[i]) || registered;
-                }
-
-            }
-
-            return registered;
-        },
-
-        /**
-        * Places the specified Overlay instance on top of all other 
-        * Overlay instances.
-        * @method bringToTop
-        * @param {YAHOO.widget.Overlay} p_oOverlay Object representing an 
-        * Overlay instance.
-        * @param {String} p_oOverlay String representing the id of an 
-        * Overlay instance.
-        */        
-        bringToTop: function (p_oOverlay) {
-
-            var oOverlay = this.find(p_oOverlay),
-                nTopZIndex,
-                oTopOverlay,
-                aOverlays;
-
-            if (oOverlay) {
-
-                aOverlays = this.overlays;
-                aOverlays.sort(this.compareZIndexDesc);
-
-                oTopOverlay = aOverlays[0];
-
-                if (oTopOverlay) {
-                    nTopZIndex = Dom.getStyle(oTopOverlay.element, "zIndex");
-
-                    if (!isNaN(nTopZIndex)) {
-
-                        var bRequiresBump = false;
-
-                        if (oTopOverlay !== oOverlay) {
-                            bRequiresBump = true;
-                        } else if (aOverlays.length > 1) {
-                            var nNextZIndex = Dom.getStyle(aOverlays[1].element, "zIndex");
-                            // Don't rely on DOM order to stack if 2 overlays are at the same zindex.
-                            if (!isNaN(nNextZIndex) && (nTopZIndex == nNextZIndex)) {
-                                bRequiresBump = true;
-                            }
-                        }
-
-                        if (bRequiresBump) {
-                            oOverlay.cfg.setProperty("zindex", (parseInt(nTopZIndex, 10) + 2));
-                        }
-                    }
-                    aOverlays.sort(this.compareZIndexDesc);
-                }
-            }
-        },
-
-        /**
-        * Attempts to locate an Overlay by instance or ID.
-        * @method find
-        * @param {Overlay} overlay  An Overlay to locate within the manager
-        * @param {String} overlay  An Overlay id to locate within the manager
-        * @return {Overlay} The requested Overlay, if found, or null if it 
-        * cannot be located.
-        */
-        find: function (overlay) {
-
-            var isInstance = overlay instanceof Overlay,
-                overlays = this.overlays,
-                n = overlays.length,
-                found = null,
-                o,
-                i;
-
-            if (isInstance || typeof overlay == "string") {
-                for (i = n-1; i >= 0; i--) {
-                    o = overlays[i];
-                    if ((isInstance && (o === overlay)) || (o.id == overlay)) {
-                        found = o;
-                        break;
-                    }
-                }
-            }
-
-            return found;
-        },
-
-        /**
-        * Used for sorting the manager's Overlays by z-index.
-        * @method compareZIndexDesc
-        * @private
-        * @return {Number} 0, 1, or -1, depending on where the Overlay should 
-        * fall in the stacking order.
-        */
-        compareZIndexDesc: function (o1, o2) {
-
-            var zIndex1 = (o1.cfg) ? o1.cfg.getProperty("zIndex") : null, // Sort invalid (destroyed)
-                zIndex2 = (o2.cfg) ? o2.cfg.getProperty("zIndex") : null; // objects at bottom.
-
-            if (zIndex1 === null && zIndex2 === null) {
-                return 0;
-            } else if (zIndex1 === null){
-                return 1;
-            } else if (zIndex2 === null) {
-                return -1;
-            } else if (zIndex1 > zIndex2) {
-                return -1;
-            } else if (zIndex1 < zIndex2) {
-                return 1;
-            } else {
-                return 0;
-            }
-        },
-
-        /**
-        * Shows all Overlays in the manager.
-        * @method showAll
-        */
-        showAll: function () {
-            var overlays = this.overlays,
-                n = overlays.length,
-                i;
-
-            for (i = n - 1; i >= 0; i--) {
-                overlays[i].show();
-            }
-        },
-
-        /**
-        * Hides all Overlays in the manager.
-        * @method hideAll
-        */
-        hideAll: function () {
-            var overlays = this.overlays,
-                n = overlays.length,
-                i;
-
-            for (i = n - 1; i >= 0; i--) {
-                overlays[i].hide();
-            }
-        },
-
-        /**
-        * Returns a string representation of the object.
-        * @method toString
-        * @return {String} The string representation of the OverlayManager
-        */
-        toString: function () {
-            return "OverlayManager";
-        }
-    };
-}());
-
-(function () {
-
-    /**
-    * ContainerEffect encapsulates animation transitions that are executed when 
-    * an Overlay is shown or hidden.
-    * @namespace YAHOO.widget
-    * @class ContainerEffect
-    * @constructor
-    * @param {YAHOO.widget.Overlay} overlay The Overlay that the animation 
-    * should be associated with
-    * @param {Object} attrIn The object literal representing the animation 
-    * arguments to be used for the animate-in transition. The arguments for 
-    * this literal are: attributes(object, see YAHOO.util.Anim for description), 
-    * duration(Number), and method(i.e. Easing.easeIn).
-    * @param {Object} attrOut The object literal representing the animation 
-    * arguments to be used for the animate-out transition. The arguments for  
-    * this literal are: attributes(object, see YAHOO.util.Anim for description), 
-    * duration(Number), and method(i.e. Easing.easeIn).
-    * @param {HTMLElement} targetElement Optional. The target element that  
-    * should be animated during the transition. Defaults to overlay.element.
-    * @param {class} Optional. The animation class to instantiate. Defaults to 
-    * YAHOO.util.Anim. Other options include YAHOO.util.Motion.
-    */
-    YAHOO.widget.ContainerEffect = function (overlay, attrIn, attrOut, targetElement, animClass) {
-
-        if (!animClass) {
-            animClass = YAHOO.util.Anim;
-        }
-
-        /**
-        * The overlay to animate
-        * @property overlay
-        * @type YAHOO.widget.Overlay
-        */
-        this.overlay = overlay;
-    
-        /**
-        * The animation attributes to use when transitioning into view
-        * @property attrIn
-        * @type Object
-        */
-        this.attrIn = attrIn;
-    
-        /**
-        * The animation attributes to use when transitioning out of view
-        * @property attrOut
-        * @type Object
-        */
-        this.attrOut = attrOut;
-    
-        /**
-        * The target element to be animated
-        * @property targetElement
-        * @type HTMLElement
-        */
-        this.targetElement = targetElement || overlay.element;
-    
-        /**
-        * The animation class to use for animating the overlay
-        * @property animClass
-        * @type class
-        */
-        this.animClass = animClass;
-    
-    };
-
-
-    var Dom = YAHOO.util.Dom,
-        CustomEvent = YAHOO.util.CustomEvent,
-        ContainerEffect = YAHOO.widget.ContainerEffect;
-
-
-    /**
-    * A pre-configured ContainerEffect instance that can be used for fading 
-    * an overlay in and out.
-    * @method FADE
-    * @static
-    * @param {YAHOO.widget.Overlay} overlay The Overlay object to animate
-    * @param {Number} dur The duration of the animation
-    * @return {YAHOO.widget.ContainerEffect} The configured ContainerEffect object
-    */
-    ContainerEffect.FADE = function (overlay, dur) {
-
-        var Easing = YAHOO.util.Easing,
-            fin = {
-                attributes: {opacity:{from:0, to:1}},
-                duration: dur,
-                method: Easing.easeIn
-            },
-            fout = {
-                attributes: {opacity:{to:0}},
-                duration: dur,
-                method: Easing.easeOut
-            },
-            fade = new ContainerEffect(overlay, fin, fout, overlay.element);
-
-        fade.handleUnderlayStart = function() {
-            var underlay = this.overlay.underlay;
-            if (underlay && YAHOO.env.ua.ie) {
-                var hasFilters = (underlay.filters && underlay.filters.length > 0);
-                if(hasFilters) {
-                    Dom.addClass(overlay.element, "yui-effect-fade");
-                }
-            }
-        };
-
-        fade.handleUnderlayComplete = function() {
-            var underlay = this.overlay.underlay;
-            if (underlay && YAHOO.env.ua.ie) {
-                Dom.removeClass(overlay.element, "yui-effect-fade");
-            }
-        };
-
-        fade.handleStartAnimateIn = function (type, args, obj) {
-            Dom.addClass(obj.overlay.element, "hide-select");
-
-            if (!obj.overlay.underlay) {
-                obj.overlay.cfg.refireEvent("underlay");
-            }
-
-            obj.handleUnderlayStart();
-
-            Dom.setStyle(obj.overlay.element, "visibility", "visible");
-            Dom.setStyle(obj.overlay.element, "opacity", 0);
-        };
-
-        fade.handleCompleteAnimateIn = function (type,args,obj) {
-            Dom.removeClass(obj.overlay.element, "hide-select");
-
-            if (obj.overlay.element.style.filter) {
-                obj.overlay.element.style.filter = null;
-            }
-
-            obj.handleUnderlayComplete();
-
-            obj.overlay.cfg.refireEvent("iframe");
-            obj.animateInCompleteEvent.fire();
-        };
-
-        fade.handleStartAnimateOut = function (type, args, obj) {
-            Dom.addClass(obj.overlay.element, "hide-select");
-            obj.handleUnderlayStart();
-        };
-
-        fade.handleCompleteAnimateOut =  function (type, args, obj) {
-            Dom.removeClass(obj.overlay.element, "hide-select");
-            if (obj.overlay.element.style.filter) {
-                obj.overlay.element.style.filter = null;
-            }
-            Dom.setStyle(obj.overlay.element, "visibility", "hidden");
-            Dom.setStyle(obj.overlay.element, "opacity", 1);
-
-            obj.handleUnderlayComplete();
-
-            obj.overlay.cfg.refireEvent("iframe");
-            obj.animateOutCompleteEvent.fire();
-        };
-
-        fade.init();
-        return fade;
-    };
-    
-    
-    /**
-    * A pre-configured ContainerEffect instance that can be used for sliding an 
-    * overlay in and out.
-    * @method SLIDE
-    * @static
-    * @param {YAHOO.widget.Overlay} overlay The Overlay object to animate
-    * @param {Number} dur The duration of the animation
-    * @return {YAHOO.widget.ContainerEffect} The configured ContainerEffect object
-    */
-    ContainerEffect.SLIDE = function (overlay, dur) {
-        var Easing = YAHOO.util.Easing,
-
-            x = overlay.cfg.getProperty("x") || Dom.getX(overlay.element),
-            y = overlay.cfg.getProperty("y") || Dom.getY(overlay.element),
-            clientWidth = Dom.getClientWidth(),
-            offsetWidth = overlay.element.offsetWidth,
-
-            sin =  { 
-                attributes: { points: { to: [x, y] } },
-                duration: dur,
-                method: Easing.easeIn 
-            },
-
-            sout = {
-                attributes: { points: { to: [(clientWidth + 25), y] } },
-                duration: dur,
-                method: Easing.easeOut 
-            },
-
-            slide = new ContainerEffect(overlay, sin, sout, overlay.element, YAHOO.util.Motion);
-
-        slide.handleStartAnimateIn = function (type,args,obj) {
-            obj.overlay.element.style.left = ((-25) - offsetWidth) + "px";
-            obj.overlay.element.style.top  = y + "px";
-        };
-
-        slide.handleTweenAnimateIn = function (type, args, obj) {
-        
-            var pos = Dom.getXY(obj.overlay.element),
-                currentX = pos[0],
-                currentY = pos[1];
-        
-            if (Dom.getStyle(obj.overlay.element, "visibility") == 
-                "hidden" && currentX < x) {
-
-                Dom.setStyle(obj.overlay.element, "visibility", "visible");
-
-            }
-        
-            obj.overlay.cfg.setProperty("xy", [currentX, currentY], true);
-            obj.overlay.cfg.refireEvent("iframe");
-        };
-        
-        slide.handleCompleteAnimateIn = function (type, args, obj) {
-            obj.overlay.cfg.setProperty("xy", [x, y], true);
-            obj.startX = x;
-            obj.startY = y;
-            obj.overlay.cfg.refireEvent("iframe");
-            obj.animateInCompleteEvent.fire();
-        };
-        
-        slide.handleStartAnimateOut = function (type, args, obj) {
-    
-            var vw = Dom.getViewportWidth(),
-                pos = Dom.getXY(obj.overlay.element),
-                yso = pos[1];
-    
-            obj.animOut.attributes.points.to = [(vw + 25), yso];
-        };
-        
-        slide.handleTweenAnimateOut = function (type, args, obj) {
-    
-            var pos = Dom.getXY(obj.overlay.element),
-                xto = pos[0],
-                yto = pos[1];
-        
-            obj.overlay.cfg.setProperty("xy", [xto, yto], true);
-            obj.overlay.cfg.refireEvent("iframe");
-        };
-        
-        slide.handleCompleteAnimateOut = function (type, args, obj) {
-            Dom.setStyle(obj.overlay.element, "visibility", "hidden");
-        
-            obj.overlay.cfg.setProperty("xy", [x, y]);
-            obj.animateOutCompleteEvent.fire();
-        };
-
-        slide.init();
-        return slide;
-    };
-
-    ContainerEffect.prototype = {
-
-        /**
-        * Initializes the animation classes and events.
-        * @method init
-        */
-        init: function () {
-
-            this.beforeAnimateInEvent = this.createEvent("beforeAnimateIn");
-            this.beforeAnimateInEvent.signature = CustomEvent.LIST;
-            
-            this.beforeAnimateOutEvent = this.createEvent("beforeAnimateOut");
-            this.beforeAnimateOutEvent.signature = CustomEvent.LIST;
-        
-            this.animateInCompleteEvent = this.createEvent("animateInComplete");
-            this.animateInCompleteEvent.signature = CustomEvent.LIST;
-        
-            this.animateOutCompleteEvent = 
-                this.createEvent("animateOutComplete");
-            this.animateOutCompleteEvent.signature = CustomEvent.LIST;
-        
-            this.animIn = new this.animClass(this.targetElement, 
-                this.attrIn.attributes, this.attrIn.duration, 
-                this.attrIn.method);
-
-            this.animIn.onStart.subscribe(this.handleStartAnimateIn, this);
-            this.animIn.onTween.subscribe(this.handleTweenAnimateIn, this);
-
-            this.animIn.onComplete.subscribe(this.handleCompleteAnimateIn, 
-                this);
-        
-            this.animOut = new this.animClass(this.targetElement, 
-                this.attrOut.attributes, this.attrOut.duration, 
-                this.attrOut.method);
-
-            this.animOut.onStart.subscribe(this.handleStartAnimateOut, this);
-            this.animOut.onTween.subscribe(this.handleTweenAnimateOut, this);
-            this.animOut.onComplete.subscribe(this.handleCompleteAnimateOut, 
-                this);
-
-        },
-        
-        /**
-        * Triggers the in-animation.
-        * @method animateIn
-        */
-        animateIn: function () {
-            this.beforeAnimateInEvent.fire();
-            this.animIn.animate();
-        },
-
-        /**
-        * Triggers the out-animation.
-        * @method animateOut
-        */
-        animateOut: function () {
-            this.beforeAnimateOutEvent.fire();
-            this.animOut.animate();
-        },
-
-        /**
-        * The default onStart handler for the in-animation.
-        * @method handleStartAnimateIn
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleStartAnimateIn: function (type, args, obj) { },
-
-        /**
-        * The default onTween handler for the in-animation.
-        * @method handleTweenAnimateIn
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleTweenAnimateIn: function (type, args, obj) { },
-
-        /**
-        * The default onComplete handler for the in-animation.
-        * @method handleCompleteAnimateIn
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleCompleteAnimateIn: function (type, args, obj) { },
-
-        /**
-        * The default onStart handler for the out-animation.
-        * @method handleStartAnimateOut
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleStartAnimateOut: function (type, args, obj) { },
-
-        /**
-        * The default onTween handler for the out-animation.
-        * @method handleTweenAnimateOut
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleTweenAnimateOut: function (type, args, obj) { },
-
-        /**
-        * The default onComplete handler for the out-animation.
-        * @method handleCompleteAnimateOut
-        * @param {String} type The CustomEvent type
-        * @param {Object[]} args The CustomEvent arguments
-        * @param {Object} obj The scope object
-        */
-        handleCompleteAnimateOut: function (type, args, obj) { },
-        
-        /**
-        * Returns a string representation of the object.
-        * @method toString
-        * @return {String} The string representation of the ContainerEffect
-        */
-        toString: function () {
-            var output = "ContainerEffect";
-            if (this.overlay) {
-                output += " [" + this.overlay.toString() + "]";
-            }
-            return output;
-        }
-    };
-
-    YAHOO.lang.augmentProto(ContainerEffect, YAHOO.util.EventProvider);
-
-})();
-
-YAHOO.register("containercore", YAHOO.widget.Module, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/cookie/README b/eclipse.org-common/yui/2.6.0/build/cookie/README
deleted file mode 100644
index 2b71173..0000000
--- a/eclipse.org-common/yui/2.6.0/build/cookie/README
+++ /dev/null
@@ -1,20 +0,0 @@
-YUI Library - Cookie Utility - Release Notes
-
-2.5.0
-
-  * Beta release
-  
-2.5.1
-
-  * Fixed error in parsing routine that incorrectly handled special characters.
-  
-2.5.2
-
-  * No changes.
-  
-2.6.0
-
-  * Implemented removeSub() method.
-  * Fixed parsing error when cookie name has special characters in it (SF 1985549).
-  * Fixed parsing issue when cookie string was empty (SF 2007223).
-  * Out of beta.
diff --git a/eclipse.org-common/yui/2.6.0/build/cookie/cookie-debug.js b/eclipse.org-common/yui/2.6.0/build/cookie/cookie-debug.js
deleted file mode 100644
index fd1c30f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/cookie/cookie-debug.js
+++ /dev/null
@@ -1,424 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * Utilities for cookie management
- * @namespace YAHOO.util
- * @module cookie
- */
-YAHOO.namespace("util");
-
-/**
- * Cookie utility.
- * @class Cookie
- * @static
- */
-YAHOO.util.Cookie = {
-    
-    //-------------------------------------------------------------------------
-    // Private Methods
-    //-------------------------------------------------------------------------
-    
-    /**
-     * Creates a cookie string that can be assigned into document.cookie.
-     * @param {String} name The name of the cookie.
-     * @param {String} value The value of the cookie.
-     * @param {encodeValue} encodeValue True to encode the value, false to leave as-is.
-     * @param {Object} options (Optional) Options for the cookie.
-     * @return {String} The formatted cookie string.
-     * @method _createCookieString
-     * @private
-     * @static
-     */
-    _createCookieString : function (name /*:String*/, value /*:Variant*/, encodeValue /*:Boolean*/, options /*:Object*/) /*:String*/ {
-    
-        //shortcut
-        var lang = YAHOO.lang;
-    
-        var text /*:String*/ = encodeURIComponent(name) + "=" + (encodeValue ? encodeURIComponent(value) : value);
-        
-    
-        if (lang.isObject(options)){
-            //expiration date
-            if (options.expires instanceof Date){
-                text += "; expires=" + options.expires.toGMTString();
-            }
-        
-            //path
-            if (lang.isString(options.path) && options.path != ""){
-                text += "; path=" + options.path;
-            }
-    
-            //domain
-            if (lang.isString(options.domain) && options.domain != ""){
-                text += "; domain=" + options.domain;
-            }
-            
-            //secure
-            if (options.secure === true){
-                text += "; secure";
-            }
-        }
-        
-        return text;
-    },
-    
-    /**
-     * Formats a cookie value for an object containing multiple values.
-     * @param {Object} hash An object of key-value pairs to create a string for.
-     * @return {String} A string suitable for use as a cookie value.
-     * @method _createCookieHash
-     * @private
-     * @static
-     */
-    _createCookieHashString : function (hash /*:Object*/) /*:String*/ {
-        
-        //shortcuts
-        var lang = YAHOO.lang;
-        
-        if (!lang.isObject(hash)){
-            throw new TypeError("Cookie._createCookieHashString(): Argument must be an object.");
-        }
-        
-        var text /*:Array*/ = new Array();
-        
-        for (var key in hash){
-            if (lang.hasOwnProperty(hash, key) && !lang.isFunction(hash[key]) && !lang.isUndefined(hash[key])){
-                text.push(encodeURIComponent(key) + "=" + encodeURIComponent(String(hash[key])));
-            }
-        }
-        
-        return text.join("&");
-    },
-    
-    /**
-     * Parses a cookie hash string into an object.
-     * @param {String} text The cookie hash string to parse. The string should already be URL-decoded.
-     * @return {Object} An object containing entries for each cookie value.
-     * @method _parseCookieHash
-     * @private
-     * @static
-     */
-    _parseCookieHash : function (text /*:String*/) /*:Object*/ {
-    
-        var hashParts /*:Array*/ = text.split("&"),
-            hashPart /*:Array*/ = null,
-            hash /*:Object*/ = new Object();
-        
-        if (text.length > 0){
-            for (var i=0, len=hashParts.length; i < len; i++){
-                hashPart = hashParts[i].split("=");
-                hash[decodeURIComponent(hashPart[0])] = decodeURIComponent(hashPart[1]);
-            }
-        }
-        
-        return hash;
-    },    
-    
-    /**
-     * Parses a cookie string into an object representing all accessible cookies.
-     * @param {String} text The cookie string to parse.
-     * @param {Boolean} decode (Optional) Indicates if the cookie values should be decoded or not. Default is true.
-     * @return {Object} An object containing entries for each accessible cookie.
-     * @method _parseCookieString
-     * @private
-     * @static
-     */
-    _parseCookieString : function (text /*:String*/, decode /*:Boolean*/) /*:Object*/ {
-    
-        var cookies /*:Object*/ = new Object();        
-        
-        if (YAHOO.lang.isString(text) && text.length > 0) {
-        
-            var decodeValue = (decode === false ? function(s){return s;} : decodeURIComponent);
-        
-            if (/[^=]+=[^=;]?(?:; [^=]+=[^=]?)?/.test(text)){            
-                var cookieParts /*:Array*/ = text.split(/;\s/g);
-                var cookieName /*:String*/ = null;
-                var cookieValue /*:String*/ = null;
-                var cookieNameValue /*:Array*/ = null;
-                
-                for (var i=0, len=cookieParts.length; i < len; i++){
-                
-                    //check for normally-formatted cookie (name-value)
-                    cookieNameValue = cookieParts[i].match(/([^=]+)=/i);
-                    if (cookieNameValue instanceof Array){
-                        cookieName = decodeURIComponent(cookieNameValue[1]);
-                        cookieValue = decodeValue(cookieParts[i].substring(cookieNameValue[1].length+1));
-                    } else {
-                        //means the cookie does not have an "=", so treat it as a boolean flag
-                        cookieName = decodeURIComponent(cookieParts[i]);
-                        cookieValue = cookieName;
-                    }
-                    cookies[cookieName] = cookieValue;
-                }
-            }
-        }
-        
-        return cookies;
-    },    
-    
-    //-------------------------------------------------------------------------
-    // Public Methods
-    //-------------------------------------------------------------------------
-
-    /**
-     * Returns the cookie value for the given name.
-     * @param {String} name The name of the cookie to retrieve.
-     * @param {Function} converter (Optional) A function to run on the value before returning
-     *      it. The function is not used if the cookie doesn't exist.
-     * @return {Variant} If no converter is specified, returns a string or null if
-     *      the cookie doesn't exist. If the converter is specified, returns the value
-     *      returned from the converter or null if the cookie doesn't exist.
-     * @method get
-     * @static
-     */
-    get : function (name /*:String*/, converter /*:Function*/) /*:Variant*/{
-        
-        var lang = YAHOO.lang;
-        var cookies /*:Object*/ = this._parseCookieString(document.cookie);        
-        
-        if (!lang.isString(name) || name === ""){
-            throw new TypeError("Cookie.get(): Cookie name must be a non-empty string.");
-        }
-        
-        if (lang.isUndefined(cookies[name])) {
-            return null;
-        }
-        
-        if (!lang.isFunction(converter)){
-            return cookies[name];
-        } else {
-            return converter(cookies[name]);
-        }
-    },
-    
-    /**
-     * Returns the value of a subcookie.
-     * @param {String} name The name of the cookie to retrieve.
-     * @param {String} subName The name of the subcookie to retrieve.
-     * @param {Function} converter (Optional) A function to run on the value before returning
-     *      it. The function is not used if the cookie doesn't exist.
-     * @return {Variant} If the cookie doesn't exist, null is returned. If the subcookie
-     *      doesn't exist, null if also returned. If no converter is specified and the
-     *      subcookie exists, a string is returned. If a converter is specified and the
-     *      subcookie exists, the value returned from the converter is returned.
-     * @method getSub
-     * @static
-     */
-    getSub : function (name /*:String*/, subName /*:String*/, converter /*:Function*/) /*:Variant*/ {
-    
-        var lang = YAHOO.lang;    
-        var hash /*:Variant*/ = this.getSubs(name);  
-
-        if (hash !== null) {
-            
-            if (!lang.isString(subName) || subName === ""){
-                throw new TypeError("Cookie.getSub(): Subcookie name must be a non-empty string.");
-            }
-            
-            if (lang.isUndefined(hash[subName])){
-                return null;
-            }            
-        
-            if (!lang.isFunction(converter)){
-                return hash[subName];
-            } else {
-                return converter(hash[subName]);
-            }
-        } else {
-            return null;
-        }
-    
-    },
-    
-    /**
-     * Returns an object containing name-value pairs stored in the cookie with the given name.
-     * @param {String} name The name of the cookie to retrieve.
-     * @return {Object} An object of name-value pairs if the cookie with the given name
-     *      exists, null if it does not.
-     * @method getHash
-     * @static
-     */
-    getSubs : function (name /*:String*/) /*:Object*/ {
-        
-        //check cookie name
-        if (!YAHOO.lang.isString(name) || name === ""){
-            throw new TypeError("Cookie.getSubs(): Cookie name must be a non-empty string.");
-        }
-        
-        var cookies = this._parseCookieString(document.cookie, false);
-        if (YAHOO.lang.isString(cookies[name])){
-            return this._parseCookieHash(cookies[name]);
-        }
-        return null;
-    },
-    
-    /**
-     * Removes a cookie from the machine by setting its expiration date to
-     * sometime in the past.
-     * @param {String} name The name of the cookie to remove.
-     * @param {Object} options (Optional) An object containing one or more
-     *      cookie options: path (a string), domain (a string), 
-     *      and secure (true/false). The expires option will be overwritten
-     *      by the method.
-     * @return {String} The created cookie string.
-     * @method remove
-     * @static
-     */
-    remove : function (name /*:String*/, options /*:Object*/) /*:String*/ {
-        
-        //check cookie name
-        if (!YAHOO.lang.isString(name) || name === ""){
-            throw new TypeError("Cookie.remove(): Cookie name must be a non-empty string.");
-        }
-        
-        //set options
-        options = options || {};
-        options.expires = new Date(0);
-        
-        //set cookie
-        return this.set(name, "", options);
-    },
-
-    /**
-     * Removes a sub cookie with a given name.
-     * @param {String} name The name of the cookie in which the subcookie exists.
-     * @param {String} subName The name of the subcookie to remove.
-     * @param {Object} options (Optional) An object containing one or more
-     *      cookie options: path (a string), domain (a string), expires (a Date object),
-     *      and secure (true/false). This must be the same settings as the original
-     *      subcookie.
-     * @return {String} The created cookie string.
-     * @method removeSub
-     * @static
-     */
-    removeSub : function(name /*:String*/, subName /*:String*/, options /*:Object*/) /*:String*/ {
-    
-        //check cookie name
-        if (!YAHOO.lang.isString(name) || name === ""){
-            throw new TypeError("Cookie.removeSub(): Cookie name must be a non-empty string.");
-        }
-        
-        //check subcookie name
-        if (!YAHOO.lang.isString(subName) || subName === ""){
-            throw new TypeError("Cookie.removeSub(): Subcookie name must be a non-empty string.");
-        }
-        
-        //get all subcookies for this cookie
-        var subs = this.getSubs(name);
-        
-        //delete the indicated subcookie
-        if (YAHOO.lang.isObject(subs) && YAHOO.lang.hasOwnProperty(subs, subName)){
-            delete subs[subName];
-            
-            //reset the cookie
-            return this.setSubs(name, subs, options);
-        } else {
-            return "";
-        }
-        
-    },
-
-    /**
-     * Sets a cookie with a given name and value.
-     * @param {String} name The name of the cookie to set.
-     * @param {Variant} value The value to set for the cookie.
-     * @param {Object} options (Optional) An object containing one or more
-     *      cookie options: path (a string), domain (a string), expires (a Date object),
-     *      and secure (true/false).
-     * @return {String} The created cookie string.
-     * @method set
-     * @static
-     */
-    set : function (name /*:String*/, value /*:Variant*/, options /*:Object*/) /*:String*/ {
-    
-        var lang = YAHOO.lang;
-    
-        if (!lang.isString(name)){
-            throw new TypeError("Cookie.set(): Cookie name must be a string.");
-        }
-        
-        if (lang.isUndefined(value)){
-            throw new TypeError("Cookie.set(): Value cannot be undefined.");
-        }
-        
-    
-        var text /*:String*/ = this._createCookieString(name, value, true, options);
-        document.cookie = text;
-        return text;
-    },
-        
-    /**
-     * Sets a sub cookie with a given name to a particular value.
-     * @param {String} name The name of the cookie to set.
-     * @param {String} subName The name of the subcookie to set.
-     * @param {Variant} value The value to set.
-     * @param {Object} options (Optional) An object containing one or more
-     *      cookie options: path (a string), domain (a string), expires (a Date object),
-     *      and secure (true/false).
-     * @return {String} The created cookie string.
-     * @method setSub
-     * @static
-     */
-    setSub : function (name /*:String*/, subName /*:String*/, value /*:Variant*/, options /*:Object*/) /*:String*/ {
-        
-        var lang = YAHOO.lang;
-
-        if (!lang.isString(name) || name === ""){
-            throw new TypeError("Cookie.setSub(): Cookie name must be a non-empty string.");
-        }
-
-        if (!lang.isString(subName) || subName === ""){
-            throw new TypeError("Cookie.setSub(): Subcookie name must be a non-empty string.");
-        }
-        
-        if (lang.isUndefined(value)){
-            throw new TypeError("Cookie.setSub(): Subcookie value cannot be undefined.");
-        }
-
-        var hash /*:Object*/ = this.getSubs(name);
-        
-        if (!lang.isObject(hash)){
-            hash = new Object();
-        }
-        
-        hash[subName] = value;        
-        
-        return this.setSubs(name, hash, options);
-        
-    },
-    
-    /**
-     * Sets a cookie with a given name to contain a hash of name-value pairs.
-     * @param {String} name The name of the cookie to set.
-     * @param {Object} value An object containing name-value pairs.
-     * @param {Object} options (Optional) An object containing one or more
-     *      cookie options: path (a string), domain (a string), expires (a Date object),
-     *      and secure (true/false).
-     * @return {String} The created cookie string.
-     * @method setSubs
-     * @static
-     */
-    setSubs : function (name /*:String*/, value /*:Object*/, options /*:Object*/) /*:String*/ {
-        
-        var lang = YAHOO.lang;
-        
-        if (!lang.isString(name)){
-            throw new TypeError("Cookie.setSubs(): Cookie name must be a string.");
-        }
-        
-        if (!lang.isObject(value)){
-            throw new TypeError("Cookie.setSubs(): Cookie value must be an object.");
-        }
-    
-        var text /*:String*/ = this._createCookieString(name, this._createCookieHashString(value), false, options);
-        document.cookie = text;
-        return text;        
-    }    
-
-};
-YAHOO.register("cookie", YAHOO.util.Cookie, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/cookie/cookie-min.js b/eclipse.org-common/yui/2.6.0/build/cookie/cookie-min.js
deleted file mode 100644
index 0e020eb..0000000
--- a/eclipse.org-common/yui/2.6.0/build/cookie/cookie-min.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.namespace("util");YAHOO.util.Cookie={_createCookieString:function(B,D,C,A){var F=YAHOO.lang;var E=encodeURIComponent(B)+"="+(C?encodeURIComponent(D):D);if(F.isObject(A)){if(A.expires instanceof Date){E+="; expires="+A.expires.toGMTString();}if(F.isString(A.path)&&A.path!=""){E+="; path="+A.path;}if(F.isString(A.domain)&&A.domain!=""){E+="; domain="+A.domain;}if(A.secure===true){E+="; secure";}}return E;},_createCookieHashString:function(B){var D=YAHOO.lang;if(!D.isObject(B)){throw new TypeError("Cookie._createCookieHashString(): Argument must be an object.");}var C=new Array();for(var A in B){if(D.hasOwnProperty(B,A)&&!D.isFunction(B[A])&&!D.isUndefined(B[A])){C.push(encodeURIComponent(A)+"="+encodeURIComponent(String(B[A])));}}return C.join("&");},_parseCookieHash:function(E){var D=E.split("&"),F=null,C=new Object();if(E.length>0){for(var B=0,A=D.length;B<A;B++){F=D[B].split("=");C[decodeURIComponent(F[0])]=decodeURIComponent(F[1]);}}return C;},_parseCookieString:function(I,A){var J=new Object();if(YAHOO.lang.isString(I)&&I.length>0){var B=(A===false?function(K){return K;}:decodeURIComponent);if(/[^=]+=[^=;]?(?:; [^=]+=[^=]?)?/.test(I)){var G=I.split(/;\s/g);var H=null;var C=null;var E=null;for(var D=0,F=G.length;D<F;D++){E=G[D].match(/([^=]+)=/i);if(E instanceof Array){H=decodeURIComponent(E[1]);C=B(G[D].substring(E[1].length+1));}else{H=decodeURIComponent(G[D]);C=H;}J[H]=C;}}}return J;},get:function(A,B){var D=YAHOO.lang;var C=this._parseCookieString(document.cookie);if(!D.isString(A)||A===""){throw new TypeError("Cookie.get(): Cookie name must be a non-empty string.");}if(D.isUndefined(C[A])){return null;}if(!D.isFunction(B)){return C[A];}else{return B(C[A]);}},getSub:function(A,C,B){var E=YAHOO.lang;var D=this.getSubs(A);if(D!==null){if(!E.isString(C)||C===""){throw new TypeError("Cookie.getSub(): Subcookie name must be a non-empty string.");}if(E.isUndefined(D[C])){return null;}if(!E.isFunction(B)){return D[C];}else{return B(D[C]);}}else{return null;}},getSubs:function(A){if(!YAHOO.lang.isString(A)||A===""){throw new TypeError("Cookie.getSubs(): Cookie name must be a non-empty string.");}var B=this._parseCookieString(document.cookie,false);if(YAHOO.lang.isString(B[A])){return this._parseCookieHash(B[A]);}return null;},remove:function(B,A){if(!YAHOO.lang.isString(B)||B===""){throw new TypeError("Cookie.remove(): Cookie name must be a non-empty string.");}A=A||{};A.expires=new Date(0);return this.set(B,"",A);},removeSub:function(B,D,A){if(!YAHOO.lang.isString(B)||B===""){throw new TypeError("Cookie.removeSub(): Cookie name must be a non-empty string.");}if(!YAHOO.lang.isString(D)||D===""){throw new TypeError("Cookie.removeSub(): Subcookie name must be a non-empty string.");}var C=this.getSubs(B);if(YAHOO.lang.isObject(C)&&YAHOO.lang.hasOwnProperty(C,D)){delete C[D];return this.setSubs(B,C,A);}else{return"";}},set:function(B,C,A){var E=YAHOO.lang;if(!E.isString(B)){throw new TypeError("Cookie.set(): Cookie name must be a string.");}if(E.isUndefined(C)){throw new TypeError("Cookie.set(): Value cannot be undefined.");}var D=this._createCookieString(B,C,true,A);document.cookie=D;return D;},setSub:function(B,D,C,A){var F=YAHOO.lang;if(!F.isString(B)||B===""){throw new TypeError("Cookie.setSub(): Cookie name must be a non-empty string.");}if(!F.isString(D)||D===""){throw new TypeError("Cookie.setSub(): Subcookie name must be a non-empty string.");}if(F.isUndefined(C)){throw new TypeError("Cookie.setSub(): Subcookie value cannot be undefined.");}var E=this.getSubs(B);if(!F.isObject(E)){E=new Object();}E[D]=C;return this.setSubs(B,E,A);},setSubs:function(B,C,A){var E=YAHOO.lang;if(!E.isString(B)){throw new TypeError("Cookie.setSubs(): Cookie name must be a string.");}if(!E.isObject(C)){throw new TypeError("Cookie.setSubs(): Cookie value must be an object.");}var D=this._createCookieString(B,this._createCookieHashString(C),false,A);document.cookie=D;return D;}};YAHOO.register("cookie",YAHOO.util.Cookie,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/cookie/cookie.js b/eclipse.org-common/yui/2.6.0/build/cookie/cookie.js
deleted file mode 100644
index fd1c30f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/cookie/cookie.js
+++ /dev/null
@@ -1,424 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * Utilities for cookie management
- * @namespace YAHOO.util
- * @module cookie
- */
-YAHOO.namespace("util");
-
-/**
- * Cookie utility.
- * @class Cookie
- * @static
- */
-YAHOO.util.Cookie = {
-    
-    //-------------------------------------------------------------------------
-    // Private Methods
-    //-------------------------------------------------------------------------
-    
-    /**
-     * Creates a cookie string that can be assigned into document.cookie.
-     * @param {String} name The name of the cookie.
-     * @param {String} value The value of the cookie.
-     * @param {encodeValue} encodeValue True to encode the value, false to leave as-is.
-     * @param {Object} options (Optional) Options for the cookie.
-     * @return {String} The formatted cookie string.
-     * @method _createCookieString
-     * @private
-     * @static
-     */
-    _createCookieString : function (name /*:String*/, value /*:Variant*/, encodeValue /*:Boolean*/, options /*:Object*/) /*:String*/ {
-    
-        //shortcut
-        var lang = YAHOO.lang;
-    
-        var text /*:String*/ = encodeURIComponent(name) + "=" + (encodeValue ? encodeURIComponent(value) : value);
-        
-    
-        if (lang.isObject(options)){
-            //expiration date
-            if (options.expires instanceof Date){
-                text += "; expires=" + options.expires.toGMTString();
-            }
-        
-            //path
-            if (lang.isString(options.path) && options.path != ""){
-                text += "; path=" + options.path;
-            }
-    
-            //domain
-            if (lang.isString(options.domain) && options.domain != ""){
-                text += "; domain=" + options.domain;
-            }
-            
-            //secure
-            if (options.secure === true){
-                text += "; secure";
-            }
-        }
-        
-        return text;
-    },
-    
-    /**
-     * Formats a cookie value for an object containing multiple values.
-     * @param {Object} hash An object of key-value pairs to create a string for.
-     * @return {String} A string suitable for use as a cookie value.
-     * @method _createCookieHash
-     * @private
-     * @static
-     */
-    _createCookieHashString : function (hash /*:Object*/) /*:String*/ {
-        
-        //shortcuts
-        var lang = YAHOO.lang;
-        
-        if (!lang.isObject(hash)){
-            throw new TypeError("Cookie._createCookieHashString(): Argument must be an object.");
-        }
-        
-        var text /*:Array*/ = new Array();
-        
-        for (var key in hash){
-            if (lang.hasOwnProperty(hash, key) && !lang.isFunction(hash[key]) && !lang.isUndefined(hash[key])){
-                text.push(encodeURIComponent(key) + "=" + encodeURIComponent(String(hash[key])));
-            }
-        }
-        
-        return text.join("&");
-    },
-    
-    /**
-     * Parses a cookie hash string into an object.
-     * @param {String} text The cookie hash string to parse. The string should already be URL-decoded.
-     * @return {Object} An object containing entries for each cookie value.
-     * @method _parseCookieHash
-     * @private
-     * @static
-     */
-    _parseCookieHash : function (text /*:String*/) /*:Object*/ {
-    
-        var hashParts /*:Array*/ = text.split("&"),
-            hashPart /*:Array*/ = null,
-            hash /*:Object*/ = new Object();
-        
-        if (text.length > 0){
-            for (var i=0, len=hashParts.length; i < len; i++){
-                hashPart = hashParts[i].split("=");
-                hash[decodeURIComponent(hashPart[0])] = decodeURIComponent(hashPart[1]);
-            }
-        }
-        
-        return hash;
-    },    
-    
-    /**
-     * Parses a cookie string into an object representing all accessible cookies.
-     * @param {String} text The cookie string to parse.
-     * @param {Boolean} decode (Optional) Indicates if the cookie values should be decoded or not. Default is true.
-     * @return {Object} An object containing entries for each accessible cookie.
-     * @method _parseCookieString
-     * @private
-     * @static
-     */
-    _parseCookieString : function (text /*:String*/, decode /*:Boolean*/) /*:Object*/ {
-    
-        var cookies /*:Object*/ = new Object();        
-        
-        if (YAHOO.lang.isString(text) && text.length > 0) {
-        
-            var decodeValue = (decode === false ? function(s){return s;} : decodeURIComponent);
-        
-            if (/[^=]+=[^=;]?(?:; [^=]+=[^=]?)?/.test(text)){            
-                var cookieParts /*:Array*/ = text.split(/;\s/g);
-                var cookieName /*:String*/ = null;
-                var cookieValue /*:String*/ = null;
-                var cookieNameValue /*:Array*/ = null;
-                
-                for (var i=0, len=cookieParts.length; i < len; i++){
-                
-                    //check for normally-formatted cookie (name-value)
-                    cookieNameValue = cookieParts[i].match(/([^=]+)=/i);
-                    if (cookieNameValue instanceof Array){
-                        cookieName = decodeURIComponent(cookieNameValue[1]);
-                        cookieValue = decodeValue(cookieParts[i].substring(cookieNameValue[1].length+1));
-                    } else {
-                        //means the cookie does not have an "=", so treat it as a boolean flag
-                        cookieName = decodeURIComponent(cookieParts[i]);
-                        cookieValue = cookieName;
-                    }
-                    cookies[cookieName] = cookieValue;
-                }
-            }
-        }
-        
-        return cookies;
-    },    
-    
-    //-------------------------------------------------------------------------
-    // Public Methods
-    //-------------------------------------------------------------------------
-
-    /**
-     * Returns the cookie value for the given name.
-     * @param {String} name The name of the cookie to retrieve.
-     * @param {Function} converter (Optional) A function to run on the value before returning
-     *      it. The function is not used if the cookie doesn't exist.
-     * @return {Variant} If no converter is specified, returns a string or null if
-     *      the cookie doesn't exist. If the converter is specified, returns the value
-     *      returned from the converter or null if the cookie doesn't exist.
-     * @method get
-     * @static
-     */
-    get : function (name /*:String*/, converter /*:Function*/) /*:Variant*/{
-        
-        var lang = YAHOO.lang;
-        var cookies /*:Object*/ = this._parseCookieString(document.cookie);        
-        
-        if (!lang.isString(name) || name === ""){
-            throw new TypeError("Cookie.get(): Cookie name must be a non-empty string.");
-        }
-        
-        if (lang.isUndefined(cookies[name])) {
-            return null;
-        }
-        
-        if (!lang.isFunction(converter)){
-            return cookies[name];
-        } else {
-            return converter(cookies[name]);
-        }
-    },
-    
-    /**
-     * Returns the value of a subcookie.
-     * @param {String} name The name of the cookie to retrieve.
-     * @param {String} subName The name of the subcookie to retrieve.
-     * @param {Function} converter (Optional) A function to run on the value before returning
-     *      it. The function is not used if the cookie doesn't exist.
-     * @return {Variant} If the cookie doesn't exist, null is returned. If the subcookie
-     *      doesn't exist, null if also returned. If no converter is specified and the
-     *      subcookie exists, a string is returned. If a converter is specified and the
-     *      subcookie exists, the value returned from the converter is returned.
-     * @method getSub
-     * @static
-     */
-    getSub : function (name /*:String*/, subName /*:String*/, converter /*:Function*/) /*:Variant*/ {
-    
-        var lang = YAHOO.lang;    
-        var hash /*:Variant*/ = this.getSubs(name);  
-
-        if (hash !== null) {
-            
-            if (!lang.isString(subName) || subName === ""){
-                throw new TypeError("Cookie.getSub(): Subcookie name must be a non-empty string.");
-            }
-            
-            if (lang.isUndefined(hash[subName])){
-                return null;
-            }            
-        
-            if (!lang.isFunction(converter)){
-                return hash[subName];
-            } else {
-                return converter(hash[subName]);
-            }
-        } else {
-            return null;
-        }
-    
-    },
-    
-    /**
-     * Returns an object containing name-value pairs stored in the cookie with the given name.
-     * @param {String} name The name of the cookie to retrieve.
-     * @return {Object} An object of name-value pairs if the cookie with the given name
-     *      exists, null if it does not.
-     * @method getHash
-     * @static
-     */
-    getSubs : function (name /*:String*/) /*:Object*/ {
-        
-        //check cookie name
-        if (!YAHOO.lang.isString(name) || name === ""){
-            throw new TypeError("Cookie.getSubs(): Cookie name must be a non-empty string.");
-        }
-        
-        var cookies = this._parseCookieString(document.cookie, false);
-        if (YAHOO.lang.isString(cookies[name])){
-            return this._parseCookieHash(cookies[name]);
-        }
-        return null;
-    },
-    
-    /**
-     * Removes a cookie from the machine by setting its expiration date to
-     * sometime in the past.
-     * @param {String} name The name of the cookie to remove.
-     * @param {Object} options (Optional) An object containing one or more
-     *      cookie options: path (a string), domain (a string), 
-     *      and secure (true/false). The expires option will be overwritten
-     *      by the method.
-     * @return {String} The created cookie string.
-     * @method remove
-     * @static
-     */
-    remove : function (name /*:String*/, options /*:Object*/) /*:String*/ {
-        
-        //check cookie name
-        if (!YAHOO.lang.isString(name) || name === ""){
-            throw new TypeError("Cookie.remove(): Cookie name must be a non-empty string.");
-        }
-        
-        //set options
-        options = options || {};
-        options.expires = new Date(0);
-        
-        //set cookie
-        return this.set(name, "", options);
-    },
-
-    /**
-     * Removes a sub cookie with a given name.
-     * @param {String} name The name of the cookie in which the subcookie exists.
-     * @param {String} subName The name of the subcookie to remove.
-     * @param {Object} options (Optional) An object containing one or more
-     *      cookie options: path (a string), domain (a string), expires (a Date object),
-     *      and secure (true/false). This must be the same settings as the original
-     *      subcookie.
-     * @return {String} The created cookie string.
-     * @method removeSub
-     * @static
-     */
-    removeSub : function(name /*:String*/, subName /*:String*/, options /*:Object*/) /*:String*/ {
-    
-        //check cookie name
-        if (!YAHOO.lang.isString(name) || name === ""){
-            throw new TypeError("Cookie.removeSub(): Cookie name must be a non-empty string.");
-        }
-        
-        //check subcookie name
-        if (!YAHOO.lang.isString(subName) || subName === ""){
-            throw new TypeError("Cookie.removeSub(): Subcookie name must be a non-empty string.");
-        }
-        
-        //get all subcookies for this cookie
-        var subs = this.getSubs(name);
-        
-        //delete the indicated subcookie
-        if (YAHOO.lang.isObject(subs) && YAHOO.lang.hasOwnProperty(subs, subName)){
-            delete subs[subName];
-            
-            //reset the cookie
-            return this.setSubs(name, subs, options);
-        } else {
-            return "";
-        }
-        
-    },
-
-    /**
-     * Sets a cookie with a given name and value.
-     * @param {String} name The name of the cookie to set.
-     * @param {Variant} value The value to set for the cookie.
-     * @param {Object} options (Optional) An object containing one or more
-     *      cookie options: path (a string), domain (a string), expires (a Date object),
-     *      and secure (true/false).
-     * @return {String} The created cookie string.
-     * @method set
-     * @static
-     */
-    set : function (name /*:String*/, value /*:Variant*/, options /*:Object*/) /*:String*/ {
-    
-        var lang = YAHOO.lang;
-    
-        if (!lang.isString(name)){
-            throw new TypeError("Cookie.set(): Cookie name must be a string.");
-        }
-        
-        if (lang.isUndefined(value)){
-            throw new TypeError("Cookie.set(): Value cannot be undefined.");
-        }
-        
-    
-        var text /*:String*/ = this._createCookieString(name, value, true, options);
-        document.cookie = text;
-        return text;
-    },
-        
-    /**
-     * Sets a sub cookie with a given name to a particular value.
-     * @param {String} name The name of the cookie to set.
-     * @param {String} subName The name of the subcookie to set.
-     * @param {Variant} value The value to set.
-     * @param {Object} options (Optional) An object containing one or more
-     *      cookie options: path (a string), domain (a string), expires (a Date object),
-     *      and secure (true/false).
-     * @return {String} The created cookie string.
-     * @method setSub
-     * @static
-     */
-    setSub : function (name /*:String*/, subName /*:String*/, value /*:Variant*/, options /*:Object*/) /*:String*/ {
-        
-        var lang = YAHOO.lang;
-
-        if (!lang.isString(name) || name === ""){
-            throw new TypeError("Cookie.setSub(): Cookie name must be a non-empty string.");
-        }
-
-        if (!lang.isString(subName) || subName === ""){
-            throw new TypeError("Cookie.setSub(): Subcookie name must be a non-empty string.");
-        }
-        
-        if (lang.isUndefined(value)){
-            throw new TypeError("Cookie.setSub(): Subcookie value cannot be undefined.");
-        }
-
-        var hash /*:Object*/ = this.getSubs(name);
-        
-        if (!lang.isObject(hash)){
-            hash = new Object();
-        }
-        
-        hash[subName] = value;        
-        
-        return this.setSubs(name, hash, options);
-        
-    },
-    
-    /**
-     * Sets a cookie with a given name to contain a hash of name-value pairs.
-     * @param {String} name The name of the cookie to set.
-     * @param {Object} value An object containing name-value pairs.
-     * @param {Object} options (Optional) An object containing one or more
-     *      cookie options: path (a string), domain (a string), expires (a Date object),
-     *      and secure (true/false).
-     * @return {String} The created cookie string.
-     * @method setSubs
-     * @static
-     */
-    setSubs : function (name /*:String*/, value /*:Object*/, options /*:Object*/) /*:String*/ {
-        
-        var lang = YAHOO.lang;
-        
-        if (!lang.isString(name)){
-            throw new TypeError("Cookie.setSubs(): Cookie name must be a string.");
-        }
-        
-        if (!lang.isObject(value)){
-            throw new TypeError("Cookie.setSubs(): Cookie value must be an object.");
-        }
-    
-        var text /*:String*/ = this._createCookieString(name, this._createCookieHashString(value), false, options);
-        document.cookie = text;
-        return text;        
-    }    
-
-};
-YAHOO.register("cookie", YAHOO.util.Cookie, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/datasource/README b/eclipse.org-common/yui/2.6.0/build/datasource/README
deleted file mode 100644
index 125eaff..0000000
--- a/eclipse.org-common/yui/2.6.0/build/datasource/README
+++ /dev/null
@@ -1,140 +0,0 @@
-DataSource Release Notes
-
-**** version 2.6.0 ****
-
-* GA release.
-* The DataSource class has been refactored into a DataSourceBase base class and
-the subclasses LocalDataSource, FunctionDataSource, XHRDataSource, and
-ScriptNodeDataSource. While backward compatibility of the YAHOO.util.DataSource
-constructor has been maintained, implementers should be aware that calling
-new YAHOO.util.DataSource() now actually returns one of these
-subclasses. Implementers can alternatively call a subclass constructor directly.
-The DataSource constructor returns one of the subclasses based on the oLiveData
-passed to it, or the dataType config value. This class-based architecture no
-longer meaningfully supports swapping data types on the fly.
-* Empty responses of TYPE_FLAT no longer return empty string results.
-* Parsing of totalRecords is no longer supported as a top-leval schema value.
-Implementers should access this value of using a metaField.
-* XML parsing has been updated for support of CDATA sections and long text values
-split into multiple nodes.
-* Now passing oCallback object to doBeforeCallback() and doBeforeParseData() methods.
-* YAHOO.util.Date now supports strftime formatting.
-
-**** version 2.5.2 ****
-
-* No changes.
-
-**** version 2.5.1 ****
-
-* Replaced custom function parsing with parsed/walked value locators for
-    responseSchema.resultsList, .fields, etc
-* Added metaFields to responseSchema to capture arbitrary response data
-
-**** version 2.5.0 ****
-
-* doBeforeCallback() - The second argument is now oFullResponse rather than oRawResponse.
-* handleResponse() -
-      o oCallback is now an object literal pointing to success and failure
-      handlers and can contain scope and argument values.
-      o The oCaller argument is now deprecated.
-      o When callback function is passed oRequest and oParsedResponse values,
-      the oParsedResponse object now consistently returns the following values:
-            + tId (Number)
-            + results (Array)
-            + error (Boolean)
-            + totalResults (Number) (when available)
-* makeConnection() -
-      o oCallback is now an object literal pointing to success and failure
-      handlers and can contain scope and argument values.
-      o The oCaller argument is now deprecated.
-* parseArrayData() - The second argument is now oFullResponse rather than oRawResponse.
-* parseHTMLTableData() - The second argument is now oFullResponse rather than oRawResponse.
-* parseJsonData() - The second argument is now oFullResponse rather than oRawResponse.
-* parseTextData() - The second argument is now oFullResponse rather than oRawResponse.
-* parseXMLData() - The second argument is now oFullResponse rather than oRawResponse.
-* sendRequest() -
-      o oCallback is now an object literal pointing to success and failure
-      handlers and can contain scope and argument values.
-      o The oCaller argument is now deprecated.
-* setInterval() -
-      o oCallback is now an object literal pointing to success and failure
-      handlers and can contain scope and argument values.
-      o The oCaller argument is now deprecated.
-* cacheRequestEvent - oArgs.caller is now deprecated in favor of oCallback object literal.
-* dataErrorEvent - oArgs.caller is now deprecated in favor of oCallback object literal.
-* getCachedResponseEvent - oArgs.caller is now deprecated in favor of oCallback object literal.
-* requestEvent - oArgs.caller is now deprecated in favor of oCallback object literal.
-* responseCacheEvent - oArgs.caller is now deprecated in favor of oCallback object literal.
-* responseEvent - oArgs.caller is now deprecated in favor of oCallback object literal.
-* responseParseEvent - oArgs.caller is now deprecated in favor of oCallback object literal.
-
-
-
-**** version 2.4.0 ****
-
-* Support for YUI JSON Utility.
-
-* Implemented setInterval(), clearInterval(), and clearAllIntervals() for polling.
-
-* Text data parsing algorithm now tolerates newlines within and at the end of data.
-
-
-
-**** version 2.3.1 ****
-
-* No changes.
-
-
-
-**** version 2.3.0 ****
-
-* DataSource requests over XHR no longer automatically insert a "?" in the URIs
-between the host and the query. Implementers should explicitly include the
-question mark if it is required by your server. Please refer to the DataTable XHR
-examples for implementation details.
-
-* DataSource provides the following static type conversion methods:
-DataSource.parseDate(), DataSource.parseNumber(), and DataSource.parseString().
-These are executed in the scope of the DataSource instance.
-
-* DataSource now supports the following values for the property xhrConnMode:
-    "queueRequests"
-    "allowAll"
-    "cancelStaleRequests"
-    "ignoreStaleResponses"
-
-* Added property connMethodPost to support POST requests.
-
-* The parsed response object passed to the callback function now has the
-following properties:
-    tId {Number} Unique transaction ID
-    results {Array} Array of parsed data results
-    error {Boolean} True if there was an error
-
-
-
-**** version 2.2.2 ***
-
-* No changes.
-
-
-
-**** version 2.2.1 ***
-
-* Fixed parseTextData() to longer reverse-order data or truncate first record.
-* Fixed bug where data values of 0 (zero) were being converted to empty string.
-* Fixed erroneous undefined values created by parseDataArray().
-* Callback functions now receive an additional argument in the form of a boolean
-to indicate data error.
-* Support for nested JSON data.
-* Support for responseShema.fields.converter to take string response and custom
-convert data type.
-* Added static converter methods YAHOO.util.DataSource.convertNumber and
-YAHOO.util.DataSource.convertDate.
-* Improved type checking with YAHOO.lang.
-
-
-
-**** version 2.2.0 ***
-
-* Beta release.
diff --git a/eclipse.org-common/yui/2.6.0/build/datasource/datasource-debug.js b/eclipse.org-common/yui/2.6.0/build/datasource/datasource-debug.js
deleted file mode 100644
index 4158c16..0000000
--- a/eclipse.org-common/yui/2.6.0/build/datasource/datasource-debug.js
+++ /dev/null
@@ -1,2886 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function () {
-
-var lang   = YAHOO.lang,
-    util   = YAHOO.util,
-    Ev     = util.Event;
-
-/**
- * The DataSource utility provides a common configurable interface for widgets to
- * access a variety of data, from JavaScript arrays to online database servers.
- *
- * @module datasource
- * @requires yahoo, event
- * @optional json, get, connection 
- * @title DataSource Utility
- */
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * Base class for the YUI DataSource utility.
- *
- * @namespace YAHOO.util
- * @class YAHOO.util.DataSourceBase
- * @constructor
- * @param oLiveData {HTMLElement}  Pointer to live data.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-util.DataSourceBase = function(oLiveData, oConfigs) {
-    if(oLiveData === null || oLiveData === undefined) {
-        YAHOO.log("Could not instantiate DataSource due to invalid live database",
-                "error", this.toString());
-        return;
-    }
-    
-    this.liveData = oLiveData;
-    this._oQueue = {interval:null, conn:null, requests:[]};
-    this.responseSchema = {};   
-
-    // Set any config params passed in to override defaults
-    if(oConfigs && (oConfigs.constructor == Object)) {
-        for(var sConfig in oConfigs) {
-            if(sConfig) {
-                this[sConfig] = oConfigs[sConfig];
-            }
-        }
-    }
-    
-    // Validate and initialize public configs
-    var maxCacheEntries = this.maxCacheEntries;
-    if(!lang.isNumber(maxCacheEntries) || (maxCacheEntries < 0)) {
-        maxCacheEntries = 0;
-    }
-
-    // Initialize interval tracker
-    this._aIntervals = [];
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Custom Events
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Fired when a request is made to the local cache.
-     *
-     * @event cacheRequestEvent
-     * @param oArgs.request {Object} The request object.
-     * @param oArgs.callback {Object} The callback object.
-     * @param oArgs.caller {Object} (deprecated) Use callback.scope.
-     */
-    this.createEvent("cacheRequestEvent");
-
-    /**
-     * Fired when data is retrieved from the local cache.
-     *
-     * @event cacheResponseEvent
-     * @param oArgs.request {Object} The request object.
-     * @param oArgs.response {Object} The response object.
-     * @param oArgs.callback {Object} The callback object.
-     * @param oArgs.caller {Object} (deprecated) Use callback.scope.
-     */
-    this.createEvent("cacheResponseEvent");
-
-    /**
-     * Fired when a request is sent to the live data source.
-     *
-     * @event requestEvent
-     * @param oArgs.request {Object} The request object.
-     * @param oArgs.callback {Object} The callback object.
-     * @param oArgs.tId {Number} Transaction ID.     
-     * @param oArgs.caller {Object} (deprecated) Use callback.scope.
-     */
-    this.createEvent("requestEvent");
-
-    /**
-     * Fired when live data source sends response.
-     *
-     * @event responseEvent
-     * @param oArgs.request {Object} The request object.
-     * @param oArgs.response {Object} The raw response object.
-     * @param oArgs.callback {Object} The callback object.
-     * @param oArgs.tId {Number} Transaction ID.     
-     * @param oArgs.caller {Object} (deprecated) Use callback.scope.
-     */
-    this.createEvent("responseEvent");
-
-    /**
-     * Fired when response is parsed.
-     *
-     * @event responseParseEvent
-     * @param oArgs.request {Object} The request object.
-     * @param oArgs.response {Object} The parsed response object.
-     * @param oArgs.callback {Object} The callback object.
-     * @param oArgs.caller {Object} (deprecated) Use callback.scope.
-     */
-    this.createEvent("responseParseEvent");
-
-    /**
-     * Fired when response is cached.
-     *
-     * @event responseCacheEvent
-     * @param oArgs.request {Object} The request object.
-     * @param oArgs.response {Object} The parsed response object.
-     * @param oArgs.callback {Object} The callback object.
-     * @param oArgs.caller {Object} (deprecated) Use callback.scope.
-     */
-    this.createEvent("responseCacheEvent");
-    /**
-     * Fired when an error is encountered with the live data source.
-     *
-     * @event dataErrorEvent
-     * @param oArgs.request {Object} The request object.
-     * @param oArgs.callback {Object} The callback object.
-     * @param oArgs.caller {Object} (deprecated) Use callback.scope.
-     * @param oArgs.message {String} The error message.
-     */
-    this.createEvent("dataErrorEvent");
-
-    /**
-     * Fired when the local cache is flushed.
-     *
-     * @event cacheFlushEvent
-     */
-    this.createEvent("cacheFlushEvent");
-
-    var DS = util.DataSourceBase;
-    this._sName = "DataSource instance" + DS._nIndex;
-    DS._nIndex++;
-    YAHOO.log("DataSource initialized", "info", this.toString());
-};
-
-var DS = util.DataSourceBase;
-
-lang.augmentObject(DS, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DataSourceBase public constants
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Type is unknown.
- *
- * @property TYPE_UNKNOWN
- * @type Number
- * @final
- * @default -1
- */
-TYPE_UNKNOWN : -1,
-
-/**
- * Type is a JavaScript Array.
- *
- * @property TYPE_JSARRAY
- * @type Number
- * @final
- * @default 0
- */
-TYPE_JSARRAY : 0,
-
-/**
- * Type is a JavaScript Function.
- *
- * @property TYPE_JSFUNCTION
- * @type Number
- * @final
- * @default 1
- */
-TYPE_JSFUNCTION : 1,
-
-/**
- * Type is hosted on a server via an XHR connection.
- *
- * @property TYPE_XHR
- * @type Number
- * @final
- * @default 2
- */
-TYPE_XHR : 2,
-
-/**
- * Type is JSON.
- *
- * @property TYPE_JSON
- * @type Number
- * @final
- * @default 3
- */
-TYPE_JSON : 3,
-
-/**
- * Type is XML.
- *
- * @property TYPE_XML
- * @type Number
- * @final
- * @default 4
- */
-TYPE_XML : 4,
-
-/**
- * Type is plain text.
- *
- * @property TYPE_TEXT
- * @type Number
- * @final
- * @default 5
- */
-TYPE_TEXT : 5,
-
-/**
- * Type is an HTML TABLE element. Data is parsed out of TR elements from all TBODY elements.
- *
- * @property TYPE_HTMLTABLE
- * @type Number
- * @final
- * @default 6
- */
-TYPE_HTMLTABLE : 6,
-
-/**
- * Type is hosted on a server via a dynamic script node.
- *
- * @property TYPE_SCRIPTNODE
- * @type Number
- * @final
- * @default 7
- */
-TYPE_SCRIPTNODE : 7,
-
-/**
- * Type is local.
- *
- * @property TYPE_LOCAL
- * @type Number
- * @final
- * @default 8
- */
-TYPE_LOCAL : 8,
-
-/**
- * Error message for invalid dataresponses.
- *
- * @property ERROR_DATAINVALID
- * @type String
- * @final
- * @default "Invalid data"
- */
-ERROR_DATAINVALID : "Invalid data",
-
-/**
- * Error message for null data responses.
- *
- * @property ERROR_DATANULL
- * @type String
- * @final
- * @default "Null data"
- */
-ERROR_DATANULL : "Null data",
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DataSourceBase private static properties
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Internal class variable to index multiple DataSource instances.
- *
- * @property DataSourceBase._nIndex
- * @type Number
- * @private
- * @static
- */
-_nIndex : 0,
-
-/**
- * Internal class variable to assign unique transaction IDs.
- *
- * @property DataSourceBase._nTransactionId
- * @type Number
- * @private
- * @static
- */
-_nTransactionId : 0,
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DataSourceBase public static methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Executes a configured callback.  For object literal callbacks, the third
- * param determines whether to execute the success handler or failure handler.
- *  
- * @method issueCallback
- * @param callback {Function|Object} the callback to execute
- * @param params {Array} params to be passed to the callback method
- * @param error {Boolean} whether an error occurred
- * @param scope {Object} the scope from which to execute the callback
- * (deprecated - use an object literal callback)
- * @static     
- */
-issueCallback : function (callback,params,error,scope) {
-    if (lang.isFunction(callback)) {
-        callback.apply(scope, params);
-    } else if (lang.isObject(callback)) {
-        scope = callback.scope || scope || window;
-        var callbackFunc = callback.success;
-        if (error) {
-            callbackFunc = callback.failure;
-        }
-        if (callbackFunc) {
-            callbackFunc.apply(scope, params.concat([callback.argument]));
-        }
-    }
-},
-
-/**
- * Converts data to type String.
- *
- * @method DataSourceBase.parseString
- * @param oData {String | Number | Boolean | Date | Array | Object} Data to parse.
- * The special values null and undefined will return null.
- * @return {Number} A string, or null.
- * @static
- */
-parseString : function(oData) {
-    // Special case null and undefined
-    if(!lang.isValue(oData)) {
-        return null;
-    }
-    
-    //Convert to string
-    var string = oData + "";
-
-    // Validate
-    if(lang.isString(string)) {
-        return string;
-    }
-    else {
-        YAHOO.log("Could not convert data " + lang.dump(oData) + " to type String", "warn", this.toString());
-        return null;
-    }
-},
-
-/**
- * Converts data to type Number.
- *
- * @method DataSourceBase.parseNumber
- * @param oData {String | Number | Boolean | Null} Data to convert. Beware, null
- * returns as 0.
- * @return {Number} A number, or null if NaN.
- * @static
- */
-parseNumber : function(oData) {
-    //Convert to number
-    var number = oData * 1;
-    
-    // Validate
-    if(lang.isNumber(number)) {
-        return number;
-    }
-    else {
-        YAHOO.log("Could not convert data " + lang.dump(oData) + " to type Number", "warn", this.toString());
-        return null;
-    }
-},
-// Backward compatibility
-convertNumber : function(oData) {
-    YAHOO.log("The method YAHOO.util.DataSourceBase.convertNumber() has been" +
-    " deprecated in favor of YAHOO.util.DataSourceBase.parseNumber()", "warn",
-    this.toString());
-    return DS.parseNumber(oData);
-},
-
-/**
- * Converts data to type Date.
- *
- * @method DataSourceBase.parseDate
- * @param oData {Date | String | Number} Data to convert.
- * @return {Date} A Date instance.
- * @static
- */
-parseDate : function(oData) {
-    var date = null;
-    
-    //Convert to date
-    if(!(oData instanceof Date)) {
-        date = new Date(oData);
-    }
-    else {
-        return oData;
-    }
-    
-    // Validate
-    if(date instanceof Date) {
-        return date;
-    }
-    else {
-        YAHOO.log("Could not convert data " + lang.dump(oData) + " to type Date", "warn", this.toString());
-        return null;
-    }
-},
-// Backward compatibility
-convertDate : function(oData) {
-    YAHOO.log("The method YAHOO.util.DataSourceBase.convertDate() has been" +
-    " deprecated in favor of YAHOO.util.DataSourceBase.parseDate()", "warn",
-    this.toString());
-    return DS.parseDate(oData);
-}
-
-});
-
-// Done in separate step so referenced functions are defined.
-/**
- * Data parsing functions.
- * @property DataSource.Parser
- * @type Object
- * @static
- */
-DS.Parser = {
-    string   : DS.parseString,
-    number   : DS.parseNumber,
-    date     : DS.parseDate
-};
-
-// Prototype properties and methods
-DS.prototype = {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DataSourceBase private properties
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Name of DataSource instance.
- *
- * @property _sName
- * @type String
- * @private
- */
-_sName : null,
-
-/**
- * Local cache of data result object literals indexed chronologically.
- *
- * @property _aCache
- * @type Object[]
- * @private
- */
-_aCache : null,
-
-/**
- * Local queue of request connections, enabled if queue needs to be managed.
- *
- * @property _oQueue
- * @type Object
- * @private
- */
-_oQueue : null,
-
-/**
- * Array of polling interval IDs that have been enabled, needed to clear all intervals.
- *
- * @property _aIntervals
- * @type Array
- * @private
- */
-_aIntervals : null,
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DataSourceBase public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Max size of the local cache.  Set to 0 to turn off caching.  Caching is
- * useful to reduce the number of server connections.  Recommended only for data
- * sources that return comprehensive results for queries or when stale data is
- * not an issue.
- *
- * @property maxCacheEntries
- * @type Number
- * @default 0
- */
-maxCacheEntries : 0,
-
- /**
- * Pointer to live database.
- *
- * @property liveData
- * @type Object
- */
-liveData : null,
-
-/**
- * Where the live data is held:
- * 
- * <dl>  
- *    <dt>TYPE_UNKNOWN</dt>
- *    <dt>TYPE_LOCAL</dt>
- *    <dt>TYPE_XHR</dt>
- *    <dt>TYPE_SCRIPTNODE</dt>
- *    <dt>TYPE_JSFUNCTION</dt>
- * </dl> 
- *  
- * @property dataType
- * @type Number
- * @default YAHOO.util.DataSourceBase.TYPE_UNKNOWN
- *
- */
-dataType : DS.TYPE_UNKNOWN,
-
-/**
- * Format of response:
- *  
- * <dl>  
- *    <dt>TYPE_UNKNOWN</dt>
- *    <dt>TYPE_JSARRAY</dt>
- *    <dt>TYPE_JSON</dt>
- *    <dt>TYPE_XML</dt>
- *    <dt>TYPE_TEXT</dt>
- *    <dt>TYPE_HTMLTABLE</dt> 
- * </dl> 
- *
- * @property responseType
- * @type Number
- * @default YAHOO.util.DataSourceBase.TYPE_UNKNOWN
- */
-responseType : DS.TYPE_UNKNOWN,
-
-/**
- * Response schema object literal takes a combination of the following properties:
- *
- * <dl>
- * <dt>resultsList</dt> <dd>Pointer to array of tabular data</dd>
- * <dt>resultNode</dt> <dd>Pointer to node name of row data (XML data only)</dd>
- * <dt>recordDelim</dt> <dd>Record delimiter (text data only)</dd>
- * <dt>fieldDelim</dt> <dd>Field delimiter (text data only)</dd>
- * <dt>fields</dt> <dd>Array of field names (aka keys), or array of object literals
- * such as: {key:"fieldname",parser:YAHOO.util.DataSourceBase.parseDate}</dd>
- * <dt>metaFields</dt> <dd>Object literal of keys to include in the oParsedResponse.meta collection</dd>
- * <dt>metaNode</dt> <dd>Name of the node under which to search for meta information in XML response data</dd>
- * </dl>
- *
- * @property responseSchema
- * @type Object
- */
-responseSchema : null,
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DataSourceBase public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Public accessor to the unique name of the DataSource instance.
- *
- * @method toString
- * @return {String} Unique name of the DataSource instance.
- */
-toString : function() {
-    return this._sName;
-},
-
-/**
- * Overridable method passes request to cache and returns cached response if any,
- * refreshing the hit in the cache as the newest item. Returns null if there is
- * no cache hit.
- *
- * @method getCachedResponse
- * @param oRequest {Object} Request object.
- * @param oCallback {Object} Callback object.
- * @param oCaller {Object} (deprecated) Use callback object.
- * @return {Object} Cached response object or null.
- */
-getCachedResponse : function(oRequest, oCallback, oCaller) {
-    var aCache = this._aCache;
-
-    // If cache is enabled...
-    if(this.maxCacheEntries > 0) {        
-        // Initialize local cache
-        if(!aCache) {
-            this._aCache = [];
-            YAHOO.log("Cache initialized", "info", this.toString());
-        }
-        // Look in local cache
-        else {
-            var nCacheLength = aCache.length;
-            if(nCacheLength > 0) {
-                var oResponse = null;
-                this.fireEvent("cacheRequestEvent", {request:oRequest,callback:oCallback,caller:oCaller});
-        
-                // Loop through each cached element
-                for(var i = nCacheLength-1; i >= 0; i--) {
-                    var oCacheElem = aCache[i];
-        
-                    // Defer cache hit logic to a public overridable method
-                    if(this.isCacheHit(oRequest,oCacheElem.request)) {
-                        // The cache returned a hit!
-                        // Grab the cached response
-                        oResponse = oCacheElem.response;
-                        this.fireEvent("cacheResponseEvent", {request:oRequest,response:oResponse,callback:oCallback,caller:oCaller});
-                        
-                        // Refresh the position of the cache hit
-                        if(i < nCacheLength-1) {
-                            // Remove element from its original location
-                            aCache.splice(i,1);
-                            // Add as newest
-                            this.addToCache(oRequest, oResponse);
-                            YAHOO.log("Refreshed cache position of the response for \"" +  oRequest + "\"", "info", this.toString());
-                        }
-                        
-                        // Add a cache flag
-                        oResponse.cached = true;
-                        break;
-                    }
-                }
-                YAHOO.log("The cached response for \"" + lang.dump(oRequest) +
-                        "\" is " + lang.dump(oResponse), "info", this.toString());
-                return oResponse;
-            }
-        }
-    }
-    else if(aCache) {
-        this._aCache = null;
-        YAHOO.log("Cache destroyed", "info", this.toString());
-    }
-    return null;
-},
-
-/**
- * Default overridable method matches given request to given cached request.
- * Returns true if is a hit, returns false otherwise.  Implementers should
- * override this method to customize the cache-matching algorithm.
- *
- * @method isCacheHit
- * @param oRequest {Object} Request object.
- * @param oCachedRequest {Object} Cached request object.
- * @return {Boolean} True if given request matches cached request, false otherwise.
- */
-isCacheHit : function(oRequest, oCachedRequest) {
-    return (oRequest === oCachedRequest);
-},
-
-/**
- * Adds a new item to the cache. If cache is full, evicts the stalest item
- * before adding the new item.
- *
- * @method addToCache
- * @param oRequest {Object} Request object.
- * @param oResponse {Object} Response object to cache.
- */
-addToCache : function(oRequest, oResponse) {
-    var aCache = this._aCache;
-    if(!aCache) {
-        return;
-    }
-
-    // If the cache is full, make room by removing stalest element (index=0)
-    while(aCache.length >= this.maxCacheEntries) {
-        aCache.shift();
-    }
-
-    // Add to cache in the newest position, at the end of the array
-    var oCacheElem = {request:oRequest,response:oResponse};
-    aCache[aCache.length] = oCacheElem;
-    this.fireEvent("responseCacheEvent", {request:oRequest,response:oResponse});
-    YAHOO.log("Cached the response for \"" +  oRequest + "\"", "info", this.toString());
-},
-
-/**
- * Flushes cache.
- *
- * @method flushCache
- */
-flushCache : function() {
-    if(this._aCache) {
-        this._aCache = [];
-        this.fireEvent("cacheFlushEvent");
-        YAHOO.log("Flushed the cache", "info", this.toString());
-    }
-},
-
-/**
- * Sets up a polling mechanism to send requests at set intervals and forward
- * responses to given callback.
- *
- * @method setInterval
- * @param nMsec {Number} Length of interval in milliseconds.
- * @param oRequest {Object} Request object.
- * @param oCallback {Function} Handler function to receive the response.
- * @param oCaller {Object} (deprecated) Use oCallback.scope.
- * @return {Number} Interval ID.
- */
-setInterval : function(nMsec, oRequest, oCallback, oCaller) {
-    if(lang.isNumber(nMsec) && (nMsec >= 0)) {
-        YAHOO.log("Enabling polling to live data for \"" + oRequest + "\" at interval " + nMsec, "info", this.toString());
-        var oSelf = this;
-        var nId = setInterval(function() {
-            oSelf.makeConnection(oRequest, oCallback, oCaller);
-        }, nMsec);
-        this._aIntervals.push(nId);
-        return nId;
-    }
-    else {
-        YAHOO.log("Could not enable polling to live data for \"" + oRequest + "\" at interval " + nMsec, "info", this.toString());
-    }
-},
-
-/**
- * Disables polling mechanism associated with the given interval ID.
- *
- * @method clearInterval
- * @param nId {Number} Interval ID.
- */
-clearInterval : function(nId) {
-    // Remove from tracker if there
-    var tracker = this._aIntervals || [];
-    for(var i=tracker.length-1; i>-1; i--) {
-        if(tracker[i] === nId) {
-            tracker.splice(i,1);
-            clearInterval(nId);
-        }
-    }
-},
-
-/**
- * Disables all known polling intervals.
- *
- * @method clearAllIntervals
- */
-clearAllIntervals : function() {
-    var tracker = this._aIntervals || [];
-    for(var i=tracker.length-1; i>-1; i--) {
-        clearInterval(tracker[i]);
-    }
-    tracker = [];
-},
-
-/**
- * First looks for cached response, then sends request to live data.
- *
- * @method sendRequest
- * @param oRequest {Object} Request object.
- * @param oCallback {Object} An object literal with the following properties:
- *     <dl>
- *     <dt><code>success</code></dt>
- *     <dd>The function to call when the data is ready.</dd>
- *     <dt><code>failure</code></dt>
- *     <dd>The function to call upon a response failure condition.</dd>
- *     <dt><code>scope</code></dt>
- *     <dd>The object to serve as the scope for the success and failure handlers.</dd>
- *     <dt><code>argument</code></dt>
- *     <dd>Arbitrary data that will be passed back to the success and failure handlers.</dd>
- *     </dl> 
- * @param oCaller {Object} (deprecated) Use oCallback.scope.
- * @return {Number} Transaction ID, or null if response found in cache.
- */
-sendRequest : function(oRequest, oCallback, oCaller) {
-    // First look in cache
-    var oCachedResponse = this.getCachedResponse(oRequest, oCallback, oCaller);
-    if(oCachedResponse) {
-        DS.issueCallback(oCallback,[oRequest,oCachedResponse],false,oCaller);
-        return null;
-    }
-
-
-    // Not in cache, so forward request to live data
-    YAHOO.log("Making connection to live data for \"" + oRequest + "\"", "info", this.toString());
-    return this.makeConnection(oRequest, oCallback, oCaller);
-},
-
-/**
- * Overridable default method generates a unique transaction ID and passes 
- * the live data reference directly to the  handleResponse function. This
- * method should be implemented by subclasses to achieve more complex behavior
- * or to access remote data.          
- *
- * @method makeConnection
- * @param oRequest {Object} Request object.
- * @param oCallback {Object} Callback object literal.
- * @param oCaller {Object} (deprecated) Use oCallback.scope.
- * @return {Number} Transaction ID.
- */
-makeConnection : function(oRequest, oCallback, oCaller) {
-    var tId = DS._nTransactionId++;
-    this.fireEvent("requestEvent", {tId:tId, request:oRequest,callback:oCallback,caller:oCaller});
-
-    /* accounts for the following cases:
-    YAHOO.util.DataSourceBase.TYPE_UNKNOWN
-    YAHOO.util.DataSourceBase.TYPE_JSARRAY
-    YAHOO.util.DataSourceBase.TYPE_JSON
-    YAHOO.util.DataSourceBase.TYPE_HTMLTABLE
-    YAHOO.util.DataSourceBase.TYPE_XML
-    YAHOO.util.DataSourceBase.TYPE_TEXT
-    */
-    var oRawResponse = this.liveData;
-    
-    this.handleResponse(oRequest, oRawResponse, oCallback, oCaller, tId);
-    return tId;
-},
-
-/**
- * Receives raw data response and type converts to XML, JSON, etc as necessary.
- * Forwards oFullResponse to appropriate parsing function to get turned into
- * oParsedResponse. Calls doBeforeCallback() and adds oParsedResponse to 
- * the cache when appropriate before calling issueCallback().
- * 
- * The oParsedResponse object literal has the following properties:
- * <dl>
- *     <dd><dt>tId {Number}</dt> Unique transaction ID</dd>
- *     <dd><dt>results {Array}</dt> Array of parsed data results</dd>
- *     <dd><dt>meta {Object}</dt> Object literal of meta values</dd> 
- *     <dd><dt>error {Boolean}</dt> (optional) True if there was an error</dd>
- *     <dd><dt>cached {Boolean}</dt> (optional) True if response was cached</dd>
- * </dl>
- *
- * @method handleResponse
- * @param oRequest {Object} Request object
- * @param oRawResponse {Object} The raw response from the live database.
- * @param oCallback {Object} Callback object literal.
- * @param oCaller {Object} (deprecated) Use oCallback.scope.
- * @param tId {Number} Transaction ID.
- */
-handleResponse : function(oRequest, oRawResponse, oCallback, oCaller, tId) {
-    this.fireEvent("responseEvent", {tId:tId, request:oRequest, response:oRawResponse,
-            callback:oCallback, caller:oCaller});
-    YAHOO.log("Received live data response for \"" + oRequest + "\"", "info", this.toString());
-    var xhr = (this.dataType == DS.TYPE_XHR) ? true : false;
-    var oParsedResponse = null;
-    var oFullResponse = oRawResponse;
-    
-    // Try to sniff data type if it has not been defined
-    if(this.responseType === DS.TYPE_UNKNOWN) {
-        var ctype = (oRawResponse && oRawResponse.getResponseHeader) ? oRawResponse.getResponseHeader["Content-Type"] : null;
-        if(ctype) {
-             // xml
-            if(ctype.indexOf("text/xml") > -1) {
-                this.responseType = DS.TYPE_XML;
-            }
-            else if(ctype.indexOf("application/json") > -1) { // json
-                this.responseType = DS.TYPE_JSON;
-            }
-            else if(ctype.indexOf("text/plain") > -1) { // text
-                this.responseType = DS.TYPE_TEXT;
-            }
-        }
-        else {
-            if(YAHOO.lang.isArray(oRawResponse)) { // array
-                this.responseType = DS.TYPE_JSARRAY;
-            }
-             // xml
-            else if(oRawResponse && oRawResponse.nodeType && oRawResponse.nodeType == 9) {
-                this.responseType = DS.TYPE_XML;
-            }
-            else if(oRawResponse && oRawResponse.nodeName && (oRawResponse.nodeName.toLowerCase() == "table")) { // table
-                this.responseType = DS.TYPE_HTMLTABLE;
-            }    
-            else if(YAHOO.lang.isObject(oRawResponse)) { // json
-                this.responseType = DS.TYPE_JSON;
-            }
-            else if(YAHOO.lang.isString(oRawResponse)) { // text
-                this.responseType = DS.TYPE_TEXT;
-            }
-        }
-    }
-
-    switch(this.responseType) {
-        case DS.TYPE_JSARRAY:
-            if(xhr && oRawResponse && oRawResponse.responseText) {
-                oFullResponse = oRawResponse.responseText; 
-            }
-            oFullResponse = this.doBeforeParseData(oRequest, oFullResponse, oCallback);
-            oParsedResponse = this.parseArrayData(oRequest, oFullResponse);
-            break;
-        case DS.TYPE_JSON:
-            if(xhr && oRawResponse && oRawResponse.responseText) {
-                oFullResponse = oRawResponse.responseText;
-            }
-            try {
-                // Convert to JSON object if it's a string
-                if(lang.isString(oFullResponse)) {
-                    // Check for YUI JSON Util
-                    if(lang.JSON) {
-                        oFullResponse = lang.JSON.parse(oFullResponse);
-                    }
-                    // Look for JSON parsers using an API similar to json2.js
-                    else if(window.JSON && JSON.parse) {
-                        oFullResponse = JSON.parse(oFullResponse);
-                    }
-                    // Look for JSON parsers using an API similar to json.js
-                    else if(oFullResponse.parseJSON) {
-                        oFullResponse = oFullResponse.parseJSON();
-                    }
-                    // No JSON lib found so parse the string
-                    else {
-                        // Trim leading spaces
-                        while (oFullResponse.length > 0 &&
-                                (oFullResponse.charAt(0) != "{") &&
-                                (oFullResponse.charAt(0) != "[")) {
-                            oFullResponse = oFullResponse.substring(1, oFullResponse.length);
-                        }
-    
-                        if(oFullResponse.length > 0) {
-                            // Strip extraneous stuff at the end
-                            var objEnd = Math.max(oFullResponse.lastIndexOf("]"),oFullResponse.lastIndexOf("}"));
-                            oFullResponse = oFullResponse.substring(0,objEnd+1);
-    
-                            // Turn the string into an object literal...
-                            // ...eval is necessary here
-                            oFullResponse = eval("(" + oFullResponse + ")");
-    
-                        }
-                    }
-                }
-            }
-            catch(e) {
-            }
-
-            oFullResponse = this.doBeforeParseData(oRequest, oFullResponse, oCallback);
-            oParsedResponse = this.parseJSONData(oRequest, oFullResponse);
-            break;
-        case DS.TYPE_HTMLTABLE:
-            if(xhr && oRawResponse.responseText) {
-                oFullResponse = oRawResponse.responseText;
-            }
-            oFullResponse = this.doBeforeParseData(oRequest, oFullResponse, oCallback);
-            oParsedResponse = this.parseHTMLTableData(oRequest, oFullResponse);
-            break;
-        case DS.TYPE_XML:
-            if(xhr && oRawResponse.responseXML) {
-                oFullResponse = oRawResponse.responseXML;
-            }
-            oFullResponse = this.doBeforeParseData(oRequest, oFullResponse, oCallback);
-            oParsedResponse = this.parseXMLData(oRequest, oFullResponse);
-            break;
-        case DS.TYPE_TEXT:
-            if(xhr && lang.isString(oRawResponse.responseText)) {
-                oFullResponse = oRawResponse.responseText;
-            }
-            oFullResponse = this.doBeforeParseData(oRequest, oFullResponse, oCallback);
-            oParsedResponse = this.parseTextData(oRequest, oFullResponse);
-            break;
-        default:
-            oFullResponse = this.doBeforeParseData(oRequest, oFullResponse, oCallback);
-            oParsedResponse = this.parseData(oRequest, oFullResponse);
-            break;
-    }
-
-
-    // Clean up for consistent signature
-    oParsedResponse = oParsedResponse || {};
-    if(!oParsedResponse.results) {
-        oParsedResponse.results = [];
-    }
-    if(!oParsedResponse.meta) {
-        oParsedResponse.meta = {};
-    }
-
-    // Success
-    if(oParsedResponse && !oParsedResponse.error) {
-        // Last chance to touch the raw response or the parsed response
-        oParsedResponse = this.doBeforeCallback(oRequest, oFullResponse, oParsedResponse, oCallback);
-        this.fireEvent("responseParseEvent", {request:oRequest,
-                response:oParsedResponse, callback:oCallback, caller:oCaller});
-        // Cache the response
-        this.addToCache(oRequest, oParsedResponse);
-    }
-    // Error
-    else {
-        // Be sure the error flag is on
-        oParsedResponse.error = true;
-        this.fireEvent("dataErrorEvent", {request:oRequest, response: oRawResponse, callback:oCallback, 
-                caller:oCaller, message:DS.ERROR_DATANULL});
-        YAHOO.log(DS.ERROR_DATANULL, "error", this.toString());
-    }
-
-    // Send the response back to the caller
-    oParsedResponse.tId = tId;
-    DS.issueCallback(oCallback,[oRequest,oParsedResponse],oParsedResponse.error,oCaller);
-},
-
-/**
- * Overridable method gives implementers access to the original full response
- * before the data gets parsed. Implementers should take care not to return an
- * unparsable or otherwise invalid response.
- *
- * @method doBeforeParseData
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full response from the live database.
- * @param oCallback {Object} The callback object.  
- * @return {Object} Full response for parsing.
-  
- */
-doBeforeParseData : function(oRequest, oFullResponse, oCallback) {
-    return oFullResponse;
-},
-
-/**
- * Overridable method gives implementers access to the original full response and
- * the parsed response (parsed against the given schema) before the data
- * is added to the cache (if applicable) and then sent back to callback function.
- * This is your chance to access the raw response and/or populate the parsed
- * response with any custom data.
- *
- * @method doBeforeCallback
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full response from the live database.
- * @param oParsedResponse {Object} The parsed response to return to calling object.
- * @param oCallback {Object} The callback object. 
- * @return {Object} Parsed response object.
- */
-doBeforeCallback : function(oRequest, oFullResponse, oParsedResponse, oCallback) {
-    return oParsedResponse;
-},
-
-/**
- * Overridable method parses data of generic RESPONSE_TYPE into a response object.
- *
- * @method parseData
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full Array from the live database.
- * @return {Object} Parsed response object with the following properties:<br>
- *     - results {Array} Array of parsed data results<br>
- *     - meta {Object} Object literal of meta values<br>
- *     - error {Boolean} (optional) True if there was an error<br>
- */
-parseData : function(oRequest, oFullResponse) {
-    if(lang.isValue(oFullResponse)) {
-        var oParsedResponse = {results:oFullResponse,meta:{}};
-        YAHOO.log("Parsed generic data is " +
-                lang.dump(oParsedResponse), "info", this.toString());
-        return oParsedResponse;
-
-    }
-    YAHOO.log("Generic data could not be parsed: " + lang.dump(oFullResponse), 
-            "error", this.toString());
-    return null;
-},
-
-/**
- * Overridable method parses Array data into a response object.
- *
- * @method parseArrayData
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full Array from the live database.
- * @return {Object} Parsed response object with the following properties:<br>
- *     - results (Array) Array of parsed data results<br>
- *     - error (Boolean) True if there was an error
- */
-parseArrayData : function(oRequest, oFullResponse) {
-    if(lang.isArray(oFullResponse)) {
-        var results = [],
-            i, j,
-            rec, field, data;
-        
-        // Parse for fields
-        if(lang.isArray(this.responseSchema.fields)) {
-            var fields = this.responseSchema.fields;
-            for (i = fields.length - 1; i >= 0; --i) {
-                if (typeof fields[i] !== 'object') {
-                    fields[i] = { key : fields[i] };
-                }
-            }
-
-            var parsers = {}, p;
-            for (i = fields.length - 1; i >= 0; --i) {
-                p = (typeof fields[i].parser === 'function' ?
-                          fields[i].parser :
-                          DS.Parser[fields[i].parser+'']) || fields[i].converter;
-                if (p) {
-                    parsers[fields[i].key] = p;
-                }
-            }
-
-            var arrType = lang.isArray(oFullResponse[0]);
-            for(i=oFullResponse.length-1; i>-1; i--) {
-                var oResult = {};
-                rec = oFullResponse[i];
-                if (typeof rec === 'object') {
-                    for(j=fields.length-1; j>-1; j--) {
-                        field = fields[j];
-                        data = arrType ? rec[j] : rec[field.key];
-
-                        if (parsers[field.key]) {
-                            data = parsers[field.key].call(this,data);
-                        }
-
-                        // Safety measure
-                        if(data === undefined) {
-                            data = null;
-                        }
-
-                        oResult[field.key] = data;
-                    }
-                }
-                else if (lang.isString(rec)) {
-                    for(j=fields.length-1; j>-1; j--) {
-                        field = fields[j];
-                        data = rec;
-
-                        if (parsers[field.key]) {
-                            data = parsers[field.key].call(this,data);
-                        }
-
-                        // Safety measure
-                        if(data === undefined) {
-                            data = null;
-                        }
-
-                        oResult[field.key] = data;
-                    }                
-                }
-                results[i] = oResult;
-            }    
-        }
-        // Return entire data set
-        else {
-            results = oFullResponse;
-        }
-        var oParsedResponse = {results:results};
-        YAHOO.log("Parsed array data is " +
-                lang.dump(oParsedResponse), "info", this.toString());
-        return oParsedResponse;
-
-    }
-    YAHOO.log("Array data could not be parsed: " + lang.dump(oFullResponse), 
-            "error", this.toString());
-    return null;
-},
-
-/**
- * Overridable method parses plain text data into a response object.
- *
- * @method parseTextData
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full text response from the live database.
- * @return {Object} Parsed response object with the following properties:<br>
- *     - results (Array) Array of parsed data results<br>
- *     - error (Boolean) True if there was an error
- */
-parseTextData : function(oRequest, oFullResponse) {
-    if(lang.isString(oFullResponse)) {
-        if(lang.isString(this.responseSchema.recordDelim) &&
-                lang.isString(this.responseSchema.fieldDelim)) {
-            var oParsedResponse = {results:[]};
-            var recDelim = this.responseSchema.recordDelim;
-            var fieldDelim = this.responseSchema.fieldDelim;
-            if(oFullResponse.length > 0) {
-                // Delete the last line delimiter at the end of the data if it exists
-                var newLength = oFullResponse.length-recDelim.length;
-                if(oFullResponse.substr(newLength) == recDelim) {
-                    oFullResponse = oFullResponse.substr(0, newLength);
-                }
-                if(oFullResponse.length > 0) {
-                    // Split along record delimiter to get an array of strings
-                    var recordsarray = oFullResponse.split(recDelim);
-                    // Cycle through each record
-                    for(var i = 0, len = recordsarray.length, recIdx = 0; i < len; ++i) {
-                        var bError = false,
-                            sRecord = recordsarray[i];
-                        if (lang.isString(sRecord) && (sRecord.length > 0)) {
-                            // Split each record along field delimiter to get data
-                            var fielddataarray = recordsarray[i].split(fieldDelim);
-                            var oResult = {};
-                            
-                            // Filter for fields data
-                            if(lang.isArray(this.responseSchema.fields)) {
-                                var fields = this.responseSchema.fields;
-                                for(var j=fields.length-1; j>-1; j--) {
-                                    try {
-                                        // Remove quotation marks from edges, if applicable
-                                        var data = fielddataarray[j];
-                                        if (lang.isString(data)) {
-                                            if(data.charAt(0) == "\"") {
-                                                data = data.substr(1);
-                                            }
-                                            if(data.charAt(data.length-1) == "\"") {
-                                                data = data.substr(0,data.length-1);
-                                            }
-                                            var field = fields[j];
-                                            var key = (lang.isValue(field.key)) ? field.key : field;
-                                            // Backward compatibility
-                                            if(!field.parser && field.converter) {
-                                                field.parser = field.converter;
-                                                YAHOO.log("The field property converter has been deprecated" +
-                                                        " in favor of parser", "warn", this.toString());
-                                            }
-                                            var parser = (typeof field.parser === 'function') ?
-                                                field.parser :
-                                                DS.Parser[field.parser+''];
-                                            if(parser) {
-                                                data = parser.call(this, data);
-                                            }
-                                            // Safety measure
-                                            if(data === undefined) {
-                                                data = null;
-                                            }
-                                            oResult[key] = data;
-                                        }
-                                        else {
-                                            bError = true;
-                                        }
-                                    }
-                                    catch(e) {
-                                        bError = true;
-                                    }
-                                }
-                            }            
-                            // No fields defined so pass along all data as an array
-                            else {
-                                oResult = fielddataarray;
-                            }
-                            if(!bError) {
-                                oParsedResponse.results[recIdx++] = oResult;
-                            }
-                        }
-                    }
-                }
-            }
-            YAHOO.log("Parsed text data is " +
-                    lang.dump(oParsedResponse), "info", this.toString());
-            return oParsedResponse;
-        }
-    }
-    YAHOO.log("Text data could not be parsed: " + lang.dump(oFullResponse), 
-            "error", this.toString());
-    return null;
-            
-},
-
-
-/**
- * Overridable method parses XML data for one result into an object literal.
- *
- * @method parseXMLResult
- * @param result {XML} XML for one result.
- * @return {Object} Object literal of data for one result.
- */
-parseXMLResult : function(result) {
-    var oResult = {},
-        schema = this.responseSchema;
-        
-    try {
-        // Loop through each data field in each result using the schema
-        for(var m = schema.fields.length-1; m >= 0 ; m--) {
-            var field = schema.fields[m];
-            var key = (lang.isValue(field.key)) ? field.key : field;
-            var data = null;
-            // Values may be held in an attribute...
-            var xmlAttr = result.attributes.getNamedItem(key);
-            if(xmlAttr) {
-                data = xmlAttr.value;
-            }
-            // ...or in a node
-            else {
-                var xmlNode = result.getElementsByTagName(key);
-                if(xmlNode && xmlNode.item(0) && xmlNode.item(0)) {
-                    data = xmlNode.item(0).firstChild.nodeValue;
-                    var item = xmlNode.item(0);
-                    // For IE, then DOM...
-                    data = (item.text) ? item.text : (item.textContent) ? item.textContent : null;
-                    // ...then fallback, but check for multiple child nodes
-                    if(!data) {
-                        var datapieces = [];
-                        for(var j=0, len=item.childNodes.length; j<len; j++) {
-                            if(item.childNodes[j].nodeValue) {
-                                datapieces[datapieces.length] = item.childNodes[j].nodeValue;
-                            }
-                        }
-                        if(datapieces.length > 0) {
-                            data = datapieces.join("");
-                        }
-                    }
-                }
-            }
-            // Safety net
-            if(data === null) {
-                   data = "";
-            }
-            // Backward compatibility
-            if(!field.parser && field.converter) {
-                field.parser = field.converter;
-                YAHOO.log("The field property converter has been deprecated" +
-                        " in favor of parser", "warn", this.toString());
-            }
-            var parser = (typeof field.parser === 'function') ?
-                field.parser :
-                DS.Parser[field.parser+''];
-            if(parser) {
-                data = parser.call(this, data);
-            }
-            // Safety measure
-            if(data === undefined) {
-                data = null;
-            }
-            oResult[key] = data;
-        }
-    }
-    catch(e) {
-        YAHOO.log("Error while parsing XML result: " + e.message);
-    }
-
-    return oResult;
-},
-
-
-
-/**
- * Overridable method parses XML data into a response object.
- *
- * @method parseXMLData
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full XML response from the live database.
- * @return {Object} Parsed response object with the following properties<br>
- *     - results (Array) Array of parsed data results<br>
- *     - error (Boolean) True if there was an error
- */
-parseXMLData : function(oRequest, oFullResponse) {
-    var bError = false,
-        schema = this.responseSchema,
-        oParsedResponse = {meta:{}},
-        xmlList = null,
-        metaNode      = schema.metaNode,
-        metaLocators  = schema.metaFields || {},
-        i,k,loc,v;
-
-    // In case oFullResponse is something funky
-    try {
-        xmlList = (schema.resultNode) ?
-            oFullResponse.getElementsByTagName(schema.resultNode) :
-            null;
-
-        // Pull any meta identified
-        metaNode = metaNode ? oFullResponse.getElementsByTagName(metaNode)[0] :
-                   oFullResponse;
-
-        if (metaNode) {
-            for (k in metaLocators) {
-                if (lang.hasOwnProperty(metaLocators, k)) {
-                    loc = metaLocators[k];
-                    // Look for a node
-                    v = metaNode.getElementsByTagName(loc)[0];
-
-                    if (v) {
-                        v = v.firstChild.nodeValue;
-                    } else {
-                        // Look for an attribute
-                        v = metaNode.attributes.getNamedItem(loc);
-                        if (v) {
-                            v = v.value;
-                        }
-                    }
-
-                    if (lang.isValue(v)) {
-                        oParsedResponse.meta[k] = v;
-                    }
-                }
-                
-            }
-        }
-    }
-    catch(e) {
-        YAHOO.log("Error while parsing XML data: " + e.message);
-    }
-    if(!xmlList || !lang.isArray(schema.fields)) {
-        bError = true;
-    }
-    // Loop through each result
-    else {
-        oParsedResponse.results = [];
-        for(i = xmlList.length-1; i >= 0 ; --i) {
-            var oResult = this.parseXMLResult(xmlList.item(i));
-            // Capture each array of values into an array of results
-            oParsedResponse.results[i] = oResult;
-        }
-    }
-    if(bError) {
-        YAHOO.log("XML data could not be parsed: " +
-                lang.dump(oFullResponse), "error", this.toString());
-        oParsedResponse.error = true;
-    }
-    else {
-        YAHOO.log("Parsed XML data is " +
-                lang.dump(oParsedResponse), "info", this.toString());
-    }
-    return oParsedResponse;
-},
-
-/**
- * Overridable method parses JSON data into a response object.
- *
- * @method parseJSONData
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full JSON from the live database.
- * @return {Object} Parsed response object with the following properties<br>
- *     - results (Array) Array of parsed data results<br>
- *     - error (Boolean) True if there was an error
- */
-parseJSONData : function(oRequest, oFullResponse) {
-    var oParsedResponse = {results:[],meta:{}};
-    
-    if(lang.isObject(oFullResponse) && this.responseSchema.resultsList) {
-        var schema = this.responseSchema,
-            fields          = schema.fields,
-            resultsList     = oFullResponse,
-            results         = [],
-            metaFields      = schema.metaFields || {},
-            fieldParsers    = [],
-            fieldPaths      = [],
-            simpleFields    = [],
-            bError          = false,
-            i,len,j,v,key,parser,path;
-
-        // Function to convert the schema's fields into walk paths
-        var buildPath = function (needle) {
-            var path = null, keys = [], i = 0;
-            if (needle) {
-                // Strip the ["string keys"] and [1] array indexes
-                needle = needle.
-                    replace(/\[(['"])(.*?)\1\]/g,
-                    function (x,$1,$2) {keys[i]=$2;return '.@'+(i++);}).
-                    replace(/\[(\d+)\]/g,
-                    function (x,$1) {keys[i]=parseInt($1,10)|0;return '.@'+(i++);}).
-                    replace(/^\./,''); // remove leading dot
-
-                // If the cleaned needle contains invalid characters, the
-                // path is invalid
-                if (!/[^\w\.\$@]/.test(needle)) {
-                    path = needle.split('.');
-                    for (i=path.length-1; i >= 0; --i) {
-                        if (path[i].charAt(0) === '@') {
-                            path[i] = keys[parseInt(path[i].substr(1),10)];
-                        }
-                    }
-                }
-                else {
-                    YAHOO.log("Invalid locator: " + needle, "error", this.toString());
-                }
-            }
-            return path;
-        };
-
-
-        // Function to walk a path and return the pot of gold
-        var walkPath = function (path, origin) {
-            var v=origin,i=0,len=path.length;
-            for (;i<len && v;++i) {
-                v = v[path[i]];
-            }
-            return v;
-        };
-
-        // Parse the response
-        // Step 1. Pull the resultsList from oFullResponse (default assumes
-        // oFullResponse IS the resultsList)
-        path = buildPath(schema.resultsList);
-        if (path) {
-            resultsList = walkPath(path, oFullResponse);
-            if (resultsList === undefined) {
-                bError = true;
-            }
-        } else {
-            bError = true;
-        }
-        
-        if (!resultsList) {
-            resultsList = [];
-        }
-
-        if (!lang.isArray(resultsList)) {
-            resultsList = [resultsList];
-        }
-
-        if (!bError) {
-            // Step 2. Parse out field data if identified
-            if(schema.fields) {
-                var field;
-                // Build the field parser map and location paths
-                for (i=0, len=fields.length; i<len; i++) {
-                    field = fields[i];
-                    key    = field.key || field;
-                    parser = ((typeof field.parser === 'function') ?
-                        field.parser :
-                        DS.Parser[field.parser+'']) || field.converter;
-                    path   = buildPath(key);
-    
-                    if (parser) {
-                        fieldParsers[fieldParsers.length] = {key:key,parser:parser};
-                    }
-    
-                    if (path) {
-                        if (path.length > 1) {
-                            fieldPaths[fieldPaths.length] = {key:key,path:path};
-                        } else {
-                            simpleFields[simpleFields.length] = {key:key,path:path[0]};
-                        }
-                    } else {
-                        YAHOO.log("Invalid key syntax: " + key,"warn",this.toString());
-                    }
-                }
-
-                // Process the results, flattening the records and/or applying parsers if needed
-                //if (fieldParsers.length || fieldPaths.length) {
-                    for (i = resultsList.length - 1; i >= 0; --i) {
-                        var r = resultsList[i], rec = {};
-                        for (j = simpleFields.length - 1; j >= 0; --j) {
-                            // Bug 1777850: data might be held in an array
-                            rec[simpleFields[j].key] =
-                                    (r[simpleFields[j].path] !== undefined) ?
-                                    r[simpleFields[j].path] : r[j];
-                        }
-
-                        for (j = fieldPaths.length - 1; j >= 0; --j) {
-                            rec[fieldPaths[j].key] = walkPath(fieldPaths[j].path,r);
-                        }
-
-                        for (j = fieldParsers.length - 1; j >= 0; --j) {
-                            var p = fieldParsers[j].key;
-                            rec[p] = fieldParsers[j].parser(rec[p]);
-                            if (rec[p] === undefined) {
-                                rec[p] = null;
-                            }
-                        }
-                        results[i] = rec;
-                    }
-                //}
-            }
-            else {
-                results = resultsList;
-            }
-
-            for (key in metaFields) {
-                if (lang.hasOwnProperty(metaFields,key)) {
-                    path = buildPath(metaFields[key]);
-                    if (path) {
-                        v = walkPath(path, oFullResponse);
-                        oParsedResponse.meta[key] = v;
-                    }
-                }
-            }
-
-        } else {
-            YAHOO.log("JSON data could not be parsed: " +
-                    lang.dump(oFullResponse), "error", this.toString());
-
-            oParsedResponse.error = true;
-        }
-
-        oParsedResponse.results = results;
-    }
-    else {
-        YAHOO.log("JSON data could not be parsed: " +
-                lang.dump(oFullResponse), "error", this.toString());
-        oParsedResponse.error = true;
-    }
-
-    return oParsedResponse;
-},
-
-/**
- * Overridable method parses an HTML TABLE element reference into a response object.
- * Data is parsed out of TR elements from all TBODY elements. 
- *
- * @method parseHTMLTableData
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full HTML element reference from the live database.
- * @return {Object} Parsed response object with the following properties<br>
- *     - results (Array) Array of parsed data results<br>
- *     - error (Boolean) True if there was an error
- */
-parseHTMLTableData : function(oRequest, oFullResponse) {
-    var bError = false;
-    var elTable = oFullResponse;
-    var fields = this.responseSchema.fields;
-    var oParsedResponse = {results:[]};
-
-    // Iterate through each TBODY
-    for(var i=0; i<elTable.tBodies.length; i++) {
-        var elTbody = elTable.tBodies[i];
-
-        // Iterate through each TR
-        for(var j=elTbody.rows.length-1; j>-1; j--) {
-            var elRow = elTbody.rows[j];
-            var oResult = {};
-            
-            for(var k=fields.length-1; k>-1; k--) {
-                var field = fields[k];
-                var key = (lang.isValue(field.key)) ? field.key : field;
-                var data = elRow.cells[k].innerHTML;
-
-                // Backward compatibility
-                if(!field.parser && field.converter) {
-                    field.parser = field.converter;
-                    YAHOO.log("The field property converter has been deprecated" +
-                            " in favor of parser", "warn", this.toString());
-                }
-                var parser = (typeof field.parser === 'function') ?
-                    field.parser :
-                    DS.Parser[field.parser+''];
-                if(parser) {
-                    data = parser.call(this, data);
-                }
-                // Safety measure
-                if(data === undefined) {
-                    data = null;
-                }
-                oResult[key] = data;
-            }
-            oParsedResponse.results[j] = oResult;
-        }
-    }
-
-    if(bError) {
-        YAHOO.log("HTML TABLE data could not be parsed: " +
-                lang.dump(oFullResponse), "error", this.toString());
-        oParsedResponse.error = true;
-    }
-    else {
-        YAHOO.log("Parsed HTML TABLE data is " +
-                lang.dump(oParsedResponse), "info", this.toString());
-    }
-    return oParsedResponse;
-}
-
-};
-
-// DataSourceBase uses EventProvider
-lang.augmentProto(DS, util.EventProvider);
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * LocalDataSource class for in-memory data structs including JavaScript arrays,
- * JavaScript object literals (JSON), XML documents, and HTML tables.
- *
- * @namespace YAHOO.util
- * @class YAHOO.util.LocalDataSource
- * @extends YAHOO.util.DataSourceBase 
- * @constructor
- * @param oLiveData {HTMLElement}  Pointer to live data.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-util.LocalDataSource = function(oLiveData, oConfigs) {
-    this.dataType = DS.TYPE_LOCAL;
-    
-    if(oLiveData) {
-        if(YAHOO.lang.isArray(oLiveData)) { // array
-            this.responseType = DS.TYPE_JSARRAY;
-        }
-         // xml
-        else if(oLiveData.nodeType && oLiveData.nodeType == 9) {
-            this.responseType = DS.TYPE_XML;
-        }
-        else if(oLiveData.nodeName && (oLiveData.nodeName.toLowerCase() == "table")) { // table
-            this.responseType = DS.TYPE_HTMLTABLE;
-            oLiveData = oLiveData.cloneNode(true);
-        }    
-        else if(YAHOO.lang.isString(oLiveData)) { // text
-            this.responseType = DS.TYPE_TEXT;
-        }
-        else if(YAHOO.lang.isObject(oLiveData)) { // json
-            this.responseType = DS.TYPE_JSON;
-        }
-    }
-    else {
-        oLiveData = [];
-        this.responseType = DS.TYPE_JSARRAY;
-    }
-    
-    this.constructor.superclass.constructor.call(this, oLiveData, oConfigs); 
-};
-
-// LocalDataSource extends DataSourceBase
-lang.extend(util.LocalDataSource, DS);
-
-// Copy static members to LocalDataSource class
-lang.augmentObject(util.LocalDataSource, DS);
-
-
-
-
-
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * FunctionDataSource class for JavaScript functions.
- *
- * @namespace YAHOO.util
- * @class YAHOO.util.FunctionDataSource
- * @extends YAHOO.util.DataSourceBase  
- * @constructor
- * @param oLiveData {HTMLElement}  Pointer to live data.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-util.FunctionDataSource = function(oLiveData, oConfigs) {
-    this.dataType = DS.TYPE_JSFUNCTION;
-    oLiveData = oLiveData || function() {};
-    
-    this.constructor.superclass.constructor.call(this, oLiveData, oConfigs); 
-};
-
-// FunctionDataSource extends DataSourceBase
-lang.extend(util.FunctionDataSource, DS, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// FunctionDataSource public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Overriding method passes query to a function. The returned response is then
- * forwarded to the handleResponse function.
- *
- * @method makeConnection
- * @param oRequest {Object} Request object.
- * @param oCallback {Object} Callback object literal.
- * @param oCaller {Object} (deprecated) Use oCallback.scope.
- * @return {Number} Transaction ID.
- */
-makeConnection : function(oRequest, oCallback, oCaller) {
-    var tId = DS._nTransactionId++;
-    this.fireEvent("requestEvent", {tId:tId,request:oRequest,callback:oCallback,caller:oCaller});
-
-    // Pass the request in as a parameter and
-    // forward the return value to the handler
-    var oRawResponse = this.liveData(oRequest);
-    
-    // Try to sniff data type if it has not been defined
-    if(this.responseType === DS.TYPE_UNKNOWN) {
-        if(YAHOO.lang.isArray(oRawResponse)) { // array
-            this.responseType = DS.TYPE_JSARRAY;
-        }
-         // xml
-        else if(oRawResponse && oRawResponse.nodeType && oRawResponse.nodeType == 9) {
-            this.responseType = DS.TYPE_XML;
-        }
-        else if(oRawResponse && oRawResponse.nodeName && (oRawResponse.nodeName.toLowerCase() == "table")) { // table
-            this.responseType = DS.TYPE_HTMLTABLE;
-        }    
-        else if(YAHOO.lang.isObject(oRawResponse)) { // json
-            this.responseType = DS.TYPE_JSON;
-        }
-        else if(YAHOO.lang.isString(oRawResponse)) { // text
-            this.responseType = DS.TYPE_TEXT;
-        }
-    }
-
-    this.handleResponse(oRequest, oRawResponse, oCallback, oCaller, tId);
-    return tId;
-}
-
-});
-
-// Copy static members to FunctionDataSource class
-lang.augmentObject(util.FunctionDataSource, DS);
-
-
-
-
-
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * ScriptNodeDataSource class for accessing remote data via the YUI Get Utility. 
- *
- * @namespace YAHOO.util
- * @class YAHOO.util.ScriptNodeDataSource
- * @extends YAHOO.util.DataSourceBase  
- * @constructor
- * @param oLiveData {HTMLElement}  Pointer to live data.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-util.ScriptNodeDataSource = function(oLiveData, oConfigs) {
-    this.dataType = DS.TYPE_SCRIPTNODE;
-    oLiveData = oLiveData || "";
-    
-    this.constructor.superclass.constructor.call(this, oLiveData, oConfigs); 
-};
-
-// ScriptNodeDataSource extends DataSourceBase
-lang.extend(util.ScriptNodeDataSource, DS, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// ScriptNodeDataSource public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Alias to YUI Get Utility, to allow implementers to use a custom class.
- *
- * @property getUtility
- * @type Object
- * @default YAHOO.util.Get
- */
-getUtility : util.Get,
-
-/**
- * Defines request/response management in the following manner:
- * <dl>
- *     <!--<dt>queueRequests</dt>
- *     <dd>If a request is already in progress, wait until response is returned before sending the next request.</dd>
- *     <dt>cancelStaleRequests</dt>
- *     <dd>If a request is already in progress, cancel it before sending the next request.</dd>-->
- *     <dt>ignoreStaleResponses</dt>
- *     <dd>Send all requests, but handle only the response for the most recently sent request.</dd>
- *     <dt>allowAll</dt>
- *     <dd>Send all requests and handle all responses.</dd>
- * </dl>
- *
- * @property asyncMode
- * @type String
- * @default "allowAll"
- */
-asyncMode : "allowAll",
-
-/**
- * Callback string parameter name sent to the remote script. By default,
- * requests are sent to
- * &#60;URI&#62;?&#60;scriptCallbackParam&#62;=callbackFunction
- *
- * @property scriptCallbackParam
- * @type String
- * @default "callback"
- */
-scriptCallbackParam : "callback",
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// ScriptNodeDataSource public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Creates a request callback that gets appended to the script URI. Implementers
- * can customize this string to match their server's query syntax.
- *
- * @method generateRequestCallback
- * @return {String} String fragment that gets appended to script URI that 
- * specifies the callback function 
- */
-generateRequestCallback : function(id) {
-    return "&" + this.scriptCallbackParam + "=YAHOO.util.ScriptNodeDataSource.callbacks["+id+"]" ;
-},
-
-/**
- * Overriding method passes query to Get Utility. The returned
- * response is then forwarded to the handleResponse function.
- *
- * @method makeConnection
- * @param oRequest {Object} Request object.
- * @param oCallback {Object} Callback object literal.
- * @param oCaller {Object} (deprecated) Use oCallback.scope.
- * @return {Number} Transaction ID.
- */
-makeConnection : function(oRequest, oCallback, oCaller) {
-    var tId = DS._nTransactionId++;
-    this.fireEvent("requestEvent", {tId:tId,request:oRequest,callback:oCallback,caller:oCaller});
-    
-    // If there are no global pending requests, it is safe to purge global callback stack and global counter
-    if(util.ScriptNodeDataSource._nPending === 0) {
-        util.ScriptNodeDataSource.callbacks = [];
-        util.ScriptNodeDataSource._nId = 0;
-    }
-    
-    // ID for this request
-    var id = util.ScriptNodeDataSource._nId;
-    util.ScriptNodeDataSource._nId++;
-    
-    // Dynamically add handler function with a closure to the callback stack
-    var oSelf = this;
-    util.ScriptNodeDataSource.callbacks[id] = function(oRawResponse) {
-        if((oSelf.asyncMode !== "ignoreStaleResponses")||
-                (id === util.ScriptNodeDataSource.callbacks.length-1)) { // Must ignore stale responses
-                
-            // Try to sniff data type if it has not been defined
-            if(oSelf.responseType === DS.TYPE_UNKNOWN) {
-                if(YAHOO.lang.isArray(oRawResponse)) { // array
-                    oSelf.responseType = DS.TYPE_JSARRAY;
-                }
-                 // xml
-                else if(oRawResponse.nodeType && oRawResponse.nodeType == 9) {
-                    oSelf.responseType = DS.TYPE_XML;
-                }
-                else if(oRawResponse.nodeName && (oRawResponse.nodeName.toLowerCase() == "table")) { // table
-                    oSelf.responseType = DS.TYPE_HTMLTABLE;
-                }    
-                else if(YAHOO.lang.isObject(oRawResponse)) { // json
-                    oSelf.responseType = DS.TYPE_JSON;
-                }
-                else if(YAHOO.lang.isString(oRawResponse)) { // text
-                    oSelf.responseType = DS.TYPE_TEXT;
-                }
-            }
-
-            oSelf.handleResponse(oRequest, oRawResponse, oCallback, oCaller, tId);
-        }
-        else {
-            YAHOO.log("DataSource ignored stale response for tId " + tId + "(" + oRequest + ")", "info", oSelf.toString());
-        }
-    
-        delete util.ScriptNodeDataSource.callbacks[id];
-    };
-    
-    // We are now creating a request
-    util.ScriptNodeDataSource._nPending++;
-    var sUri = this.liveData + oRequest + this.generateRequestCallback(id);
-    YAHOO.log("DataSource is querying URL " + sUri, "info", this.toString());
-    this.getUtility.script(sUri,
-            {autopurge: true,
-            onsuccess: util.ScriptNodeDataSource._bumpPendingDown,
-            onfail: util.ScriptNodeDataSource._bumpPendingDown});
-
-    return tId;
-}
-
-});
-
-// Copy static members to ScriptNodeDataSource class
-lang.augmentObject(util.ScriptNodeDataSource, DS);
-
-// Copy static members to ScriptNodeDataSource class
-lang.augmentObject(util.ScriptNodeDataSource,  {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// ScriptNodeDataSource private static properties
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Unique ID to track requests.
- *
- * @property _nId
- * @type Number
- * @private
- * @static
- */
-_nId : 0,
-
-/**
- * Counter for pending requests. When this is 0, it is safe to purge callbacks
- * array.
- *
- * @property _nPending
- * @type Number
- * @private
- * @static
- */
-_nPending : 0,
-
-/**
- * Global array of callback functions, one for each request sent.
- *
- * @property callbacks
- * @type Function[]
- * @static
- */
-callbacks : []
-
-});
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * XHRDataSource class for accessing remote data via the YUI Connection Manager
- * Utility
- *
- * @namespace YAHOO.util
- * @class YAHOO.util.XHRDataSource
- * @extends YAHOO.util.DataSourceBase  
- * @constructor
- * @param oLiveData {HTMLElement}  Pointer to live data.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-util.XHRDataSource = function(oLiveData, oConfigs) {
-    this.dataType = DS.TYPE_XHR;
-    this.connMgr = this.connMgr || util.Connect;
-    oLiveData = oLiveData || "";
-    
-    this.constructor.superclass.constructor.call(this, oLiveData, oConfigs); 
-};
-
-// XHRDataSource extends DataSourceBase
-lang.extend(util.XHRDataSource, DS, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// XHRDataSource public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-
- /**
- * Alias to YUI Connection Manager, to allow implementers to use a custom class.
- *
- * @property connMgr
- * @type Object
- * @default YAHOO.util.Connect
- */
-connMgr: null,
-
- /**
- * Defines request/response management in the following manner:
- * <dl>
- *     <dt>queueRequests</dt>
- *     <dd>If a request is already in progress, wait until response is returned
- *     before sending the next request.</dd>
- *
- *     <dt>cancelStaleRequests</dt>
- *     <dd>If a request is already in progress, cancel it before sending the next
- *     request.</dd>
- *
- *     <dt>ignoreStaleResponses</dt>
- *     <dd>Send all requests, but handle only the response for the most recently
- *     sent request.</dd>
- *
- *     <dt>allowAll</dt>
- *     <dd>Send all requests and handle all responses.</dd>
- *
- * </dl>
- *
- * @property connXhrMode
- * @type String
- * @default "allowAll"
- */
-connXhrMode: "allowAll",
-
- /**
- * True if data is to be sent via POST. By default, data will be sent via GET.
- *
- * @property connMethodPost
- * @type Boolean
- * @default false
- */
-connMethodPost: false,
-
- /**
- * The connection timeout defines how many  milliseconds the XHR connection will
- * wait for a server response. Any non-zero value will enable the Connection Manager's
- * Auto-Abort feature.
- *
- * @property connTimeout
- * @type Number
- * @default 0
- */
-connTimeout: 0,
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// XHRDataSource public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Overriding method passes query to Connection Manager. The returned
- * response is then forwarded to the handleResponse function.
- *
- * @method makeConnection
- * @param oRequest {Object} Request object.
- * @param oCallback {Object} Callback object literal.
- * @param oCaller {Object} (deprecated) Use oCallback.scope.
- * @return {Number} Transaction ID.
- */
-makeConnection : function(oRequest, oCallback, oCaller) {
-
-    var oRawResponse = null;
-    var tId = DS._nTransactionId++;
-    this.fireEvent("requestEvent", {tId:tId,request:oRequest,callback:oCallback,caller:oCaller});
-
-    // Set up the callback object and
-    // pass the request in as a URL query and
-    // forward the response to the handler
-    var oSelf = this;
-    var oConnMgr = this.connMgr;
-    var oQueue = this._oQueue;
-
-    /**
-     * Define Connection Manager success handler
-     *
-     * @method _xhrSuccess
-     * @param oResponse {Object} HTTPXMLRequest object
-     * @private
-     */
-    var _xhrSuccess = function(oResponse) {
-        // If response ID does not match last made request ID,
-        // silently fail and wait for the next response
-        if(oResponse && (this.asyncMode == "ignoreStaleResponses") &&
-                (oResponse.tId != oQueue.conn.tId)) {
-            YAHOO.log("Ignored stale response", "warn", this.toString());
-            return null;
-        }
-        // Error if no response
-        else if(!oResponse) {
-            this.fireEvent("dataErrorEvent", {request:oRequest,
-                    callback:oCallback, caller:oCaller,
-                    message:DS.ERROR_DATANULL});
-            YAHOO.log(DS.ERROR_DATANULL, "error", this.toString());
-
-            // Send error response back to the caller with the error flag on
-            DS.issueCallback(oCallback,[oRequest, {error:true}], true, oCaller);
-
-            return null;
-        }
-        // Forward to handler
-        else {
-            // Try to sniff data type if it has not been defined
-            if(this.responseType === DS.TYPE_UNKNOWN) {
-                var ctype = (oResponse.getResponseHeader) ? oResponse.getResponseHeader["Content-Type"] : null;
-                if(ctype) {
-                    // xml
-                    if(ctype.indexOf("text/xml") > -1) {
-                        this.responseType = DS.TYPE_XML;
-                    }
-                    else if(ctype.indexOf("application/json") > -1) { // json
-                        this.responseType = DS.TYPE_JSON;
-                    }
-                    else if(ctype.indexOf("text/plain") > -1) { // text
-                        this.responseType = DS.TYPE_TEXT;
-                    }
-                }
-            }
-            this.handleResponse(oRequest, oResponse, oCallback, oCaller, tId);
-        }
-    };
-
-    /**
-     * Define Connection Manager failure handler
-     *
-     * @method _xhrFailure
-     * @param oResponse {Object} HTTPXMLRequest object
-     * @private
-     */
-    var _xhrFailure = function(oResponse) {
-        this.fireEvent("dataErrorEvent", {request:oRequest,
-                callback:oCallback, caller:oCaller,
-                message:DS.ERROR_DATAINVALID});
-        YAHOO.log(DS.ERROR_DATAINVALID + ": " +
-                oResponse.statusText, "error", this.toString());
-
-        // Backward compatibility
-        if(lang.isString(this.liveData) && lang.isString(oRequest) &&
-            (this.liveData.lastIndexOf("?") !== this.liveData.length-1) &&
-            (oRequest.indexOf("?") !== 0)){
-                YAHOO.log("DataSources using XHR no longer automatically supply " + 
-                "a \"?\" between the host and query parameters" +
-                " -- please check that the request URL is correct", "warn", this.toString());
-        }
-
-        // Send failure response back to the caller with the error flag on
-        oResponse = oResponse || {};
-        oResponse.error = true;
-        DS.issueCallback(oCallback,[oRequest,oResponse],true, oCaller);
-
-        return null;
-    };
-
-    /**
-     * Define Connection Manager callback object
-     *
-     * @property _xhrCallback
-     * @param oResponse {Object} HTTPXMLRequest object
-     * @private
-     */
-     var _xhrCallback = {
-        success:_xhrSuccess,
-        failure:_xhrFailure,
-        scope: this
-    };
-
-    // Apply Connection Manager timeout
-    if(lang.isNumber(this.connTimeout)) {
-        _xhrCallback.timeout = this.connTimeout;
-    }
-
-    // Cancel stale requests
-    if(this.connXhrMode == "cancelStaleRequests") {
-            // Look in queue for stale requests
-            if(oQueue.conn) {
-                if(oConnMgr.abort) {
-                    oConnMgr.abort(oQueue.conn);
-                    oQueue.conn = null;
-                    YAHOO.log("Canceled stale request", "warn", this.toString());
-                }
-                else {
-                    YAHOO.log("Could not find Connection Manager abort() function", "error", this.toString());
-                }
-            }
-    }
-
-    // Get ready to send the request URL
-    if(oConnMgr && oConnMgr.asyncRequest) {
-        var sLiveData = this.liveData;
-        var isPost = this.connMethodPost;
-        var sMethod = (isPost) ? "POST" : "GET";
-        // Validate request
-        var sUri = (isPost || !lang.isValue(oRequest)) ? sLiveData : sLiveData+oRequest;
-        var sRequest = (isPost) ? oRequest : null;
-
-        // Send the request right away
-        if(this.connXhrMode != "queueRequests") {
-            oQueue.conn = oConnMgr.asyncRequest(sMethod, sUri, _xhrCallback, sRequest);
-        }
-        // Queue up then send the request
-        else {
-            // Found a request already in progress
-            if(oQueue.conn) {
-                var allRequests = oQueue.requests;
-                // Add request to queue
-                allRequests.push({request:oRequest, callback:_xhrCallback});
-
-                // Interval needs to be started
-                if(!oQueue.interval) {
-                    oQueue.interval = setInterval(function() {
-                        // Connection is in progress
-                        if(oConnMgr.isCallInProgress(oQueue.conn)) {
-                            return;
-                        }
-                        else {
-                            // Send next request
-                            if(allRequests.length > 0) {
-                                // Validate request
-                                sUri = (isPost || !lang.isValue(allRequests[0].request)) ? sLiveData : sLiveData+allRequests[0].request;
-                                sRequest = (isPost) ? allRequests[0].request : null;
-                                oQueue.conn = oConnMgr.asyncRequest(sMethod, sUri, allRequests[0].callback, sRequest);
-
-                                // Remove request from queue
-                                allRequests.shift();
-                            }
-                            // No more requests
-                            else {
-                                clearInterval(oQueue.interval);
-                                oQueue.interval = null;
-                            }
-                        }
-                    }, 50);
-                }
-            }
-            // Nothing is in progress
-            else {
-                oQueue.conn = oConnMgr.asyncRequest(sMethod, sUri, _xhrCallback, sRequest);
-            }
-        }
-    }
-    else {
-        YAHOO.log("Could not find Connection Manager asyncRequest() function", "error", this.toString());
-        // Send null response back to the caller with the error flag on
-        DS.issueCallback(oCallback,[oRequest,{error:true}],true,oCaller);
-    }
-
-    return tId;
-}
-
-});
-
-// Copy static members to XHRDataSource class
-lang.augmentObject(util.XHRDataSource, DS);
-
-
-
-
-
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * Factory class for creating a BaseDataSource subclass instance. The sublcass is
- * determined by oLiveData's type, unless the dataType config is explicitly passed in.  
- *
- * @namespace YAHOO.util
- * @class YAHOO.util.DataSource
- * @constructor
- * @param oLiveData {HTMLElement}  Pointer to live data.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-util.DataSource = function(oLiveData, oConfigs) {
-    oConfigs = oConfigs || {};
-    
-    // Point to one of the subclasses, first by dataType if given, then by sniffing oLiveData type.
-    var dataType = oConfigs.dataType;
-    if(dataType) {
-        if(dataType == DS.TYPE_LOCAL) {
-            lang.augmentObject(util.DataSource, util.LocalDataSource);
-            return new util.LocalDataSource(oLiveData, oConfigs);            
-        }
-        else if(dataType == DS.TYPE_XHR) {
-            lang.augmentObject(util.DataSource, util.XHRDataSource);
-            return new util.XHRDataSource(oLiveData, oConfigs);            
-        }
-        else if(dataType == DS.TYPE_SCRIPTNODE) {
-            lang.augmentObject(util.DataSource, util.ScriptNodeDataSource);
-            return new util.ScriptNodeDataSource(oLiveData, oConfigs);            
-        }
-        else if(dataType == DS.TYPE_JSFUNCTION) {
-            lang.augmentObject(util.DataSource, util.FunctionDataSource);
-            return new util.FunctionDataSource(oLiveData, oConfigs);            
-        }
-    }
-    
-    if(YAHOO.lang.isString(oLiveData)) { // strings default to xhr
-        lang.augmentObject(util.DataSource, util.XHRDataSource);
-        return new util.XHRDataSource(oLiveData, oConfigs);
-    }
-    else if(YAHOO.lang.isFunction(oLiveData)) {
-        lang.augmentObject(util.DataSource, util.FunctionDataSource);
-        return new util.FunctionDataSource(oLiveData, oConfigs);
-    }
-    else { // ultimate default is local
-        lang.augmentObject(util.DataSource, util.LocalDataSource);
-        return new util.LocalDataSource(oLiveData, oConfigs);
-    }
-};
-
-// Copy static members to DataSource class
-lang.augmentObject(util.DataSource, DS);
-
-})();
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The static Number class provides helper functions to deal with data of type
- * Number.
- *
- * @namespace YAHOO.util
- * @requires yahoo
- * @class Number
- * @static
- */
- YAHOO.util.Number = {
- 
-     /**
-     * Takes a native JavaScript Number and formats to string for display to user.
-     *
-     * @method format
-     * @param nData {Number} Number.
-     * @param oConfig {Object} (Optional) Optional configuration values:
-     *  <dl>
-     *   <dt>prefix {String}</dd>
-     *   <dd>String prepended before each number, like a currency designator "$"</dd>
-     *   <dt>decimalPlaces {Number}</dd>
-     *   <dd>Number of decimal places to round.</dd>
-     *   <dt>decimalSeparator {String}</dd>
-     *   <dd>Decimal separator</dd>
-     *   <dt>thousandsSeparator {String}</dd>
-     *   <dd>Thousands separator</dd>
-     *   <dt>suffix {String}</dd>
-     *   <dd>String appended after each number, like " items" (note the space)</dd>
-     *  </dl>
-     * @return {String} Formatted number for display.
-     */
-    format : function(nData, oConfig) {
-        oConfig = oConfig || {};
-        
-        if(!YAHOO.lang.isNumber(nData)) {
-            nData *= 1;
-        }
-
-        if(YAHOO.lang.isNumber(nData)) {
-            var bNegative = (nData < 0);
-            var sOutput = nData + "";
-            var sDecimalSeparator = (oConfig.decimalSeparator) ? oConfig.decimalSeparator : ".";
-            var nDotIndex;
-
-            // Manage decimals
-            if(YAHOO.lang.isNumber(oConfig.decimalPlaces)) {
-                // Round to the correct decimal place
-                var nDecimalPlaces = oConfig.decimalPlaces;
-                var nDecimal = Math.pow(10, nDecimalPlaces);
-                sOutput = Math.round(nData*nDecimal)/nDecimal + "";
-                nDotIndex = sOutput.lastIndexOf(".");
-
-                if(nDecimalPlaces > 0) {
-                    // Add the decimal separator
-                    if(nDotIndex < 0) {
-                        sOutput += sDecimalSeparator;
-                        nDotIndex = sOutput.length-1;
-                    }
-                    // Replace the "."
-                    else if(sDecimalSeparator !== "."){
-                        sOutput = sOutput.replace(".",sDecimalSeparator);
-                    }
-                    // Add missing zeros
-                    while((sOutput.length - 1 - nDotIndex) < nDecimalPlaces) {
-                        sOutput += "0";
-                    }
-                }
-            }
-            
-            // Add the thousands separator
-            if(oConfig.thousandsSeparator) {
-                var sThousandsSeparator = oConfig.thousandsSeparator;
-                nDotIndex = sOutput.lastIndexOf(sDecimalSeparator);
-                nDotIndex = (nDotIndex > -1) ? nDotIndex : sOutput.length;
-                var sNewOutput = sOutput.substring(nDotIndex);
-                var nCount = -1;
-                for (var i=nDotIndex; i>0; i--) {
-                    nCount++;
-                    if ((nCount%3 === 0) && (i !== nDotIndex) && (!bNegative || (i > 1))) {
-                        sNewOutput = sThousandsSeparator + sNewOutput;
-                    }
-                    sNewOutput = sOutput.charAt(i-1) + sNewOutput;
-                }
-                sOutput = sNewOutput;
-            }
-
-            // Prepend prefix
-            sOutput = (oConfig.prefix) ? oConfig.prefix + sOutput : sOutput;
-
-            // Append suffix
-            sOutput = (oConfig.suffix) ? sOutput + oConfig.suffix : sOutput;
-
-            return sOutput;
-        }
-        // Still not a Number, just return unaltered
-        else {
-            return nData;
-        }
-    }
- };
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-(function () {
-
-var xPad=function (x, pad, r)
-{
-    if(typeof r === 'undefined')
-    {
-        r=10;
-    }
-    for( ; parseInt(x, 10)<r && r>1; r/=10) {
-        x = pad.toString() + x;
-    }
-    return x.toString();
-};
-
-
-/**
- * The static Date class provides helper functions to deal with data of type Date.
- *
- * @namespace YAHOO.util
- * @requires yahoo
- * @class Date
- * @static
- */
- var Dt = {
-    formats: {
-        a: function (d, l) { return l.a[d.getDay()]; },
-        A: function (d, l) { return l.A[d.getDay()]; },
-        b: function (d, l) { return l.b[d.getMonth()]; },
-        B: function (d, l) { return l.B[d.getMonth()]; },
-        C: function (d) { return xPad(parseInt(d.getFullYear()/100, 10), 0); },
-        d: ['getDate', '0'],
-        e: ['getDate', ' '],
-        g: function (d) { return xPad(parseInt(Dt.formats.G(d)%100, 10), 0); },
-        G: function (d) {
-                var y = d.getFullYear();
-                var V = parseInt(Dt.formats.V(d), 10);
-                var W = parseInt(Dt.formats.W(d), 10);
-    
-                if(W > V) {
-                    y++;
-                } else if(W===0 && V>=52) {
-                    y--;
-                }
-    
-                return y;
-            },
-        H: ['getHours', '0'],
-        I: function (d) { var I=d.getHours()%12; return xPad(I===0?12:I, 0); },
-        j: function (d) {
-                var gmd_1 = new Date('' + d.getFullYear() + '/1/1 GMT');
-                var gmdate = new Date('' + d.getFullYear() + '/' + (d.getMonth()+1) + '/' + d.getDate() + ' GMT');
-                var ms = gmdate - gmd_1;
-                var doy = parseInt(ms/60000/60/24, 10)+1;
-                return xPad(doy, 0, 100);
-            },
-        k: ['getHours', ' '],
-        l: function (d) { var I=d.getHours()%12; return xPad(I===0?12:I, ' '); },
-        m: function (d) { return xPad(d.getMonth()+1, 0); },
-        M: ['getMinutes', '0'],
-        p: function (d, l) { return l.p[d.getHours() >= 12 ? 1 : 0 ]; },
-        P: function (d, l) { return l.P[d.getHours() >= 12 ? 1 : 0 ]; },
-        s: function (d, l) { return parseInt(d.getTime()/1000, 10); },
-        S: ['getSeconds', '0'],
-        u: function (d) { var dow = d.getDay(); return dow===0?7:dow; },
-        U: function (d) {
-                var doy = parseInt(Dt.formats.j(d), 10);
-                var rdow = 6-d.getDay();
-                var woy = parseInt((doy+rdow)/7, 10);
-                return xPad(woy, 0);
-            },
-        V: function (d) {
-                var woy = parseInt(Dt.formats.W(d), 10);
-                var dow1_1 = (new Date('' + d.getFullYear() + '/1/1')).getDay();
-                // First week is 01 and not 00 as in the case of %U and %W,
-                // so we add 1 to the final result except if day 1 of the year
-                // is a Monday (then %W returns 01).
-                // We also need to subtract 1 if the day 1 of the year is 
-                // Friday-Sunday, so the resulting equation becomes:
-                var idow = woy + (dow1_1 > 4 || dow1_1 <= 1 ? 0 : 1);
-                if(idow === 53 && (new Date('' + d.getFullYear() + '/12/31')).getDay() < 4)
-                {
-                    idow = 1;
-                }
-                else if(idow === 0)
-                {
-                    idow = Dt.formats.V(new Date('' + (d.getFullYear()-1) + '/12/31'));
-                }
-    
-                return xPad(idow, 0);
-            },
-        w: 'getDay',
-        W: function (d) {
-                var doy = parseInt(Dt.formats.j(d), 10);
-                var rdow = 7-Dt.formats.u(d);
-                var woy = parseInt((doy+rdow)/7, 10);
-                return xPad(woy, 0, 10);
-            },
-        y: function (d) { return xPad(d.getFullYear()%100, 0); },
-        Y: 'getFullYear',
-        z: function (d) {
-                var o = d.getTimezoneOffset();
-                var H = xPad(parseInt(Math.abs(o/60), 10), 0);
-                var M = xPad(Math.abs(o%60), 0);
-                return (o>0?'-':'+') + H + M;
-            },
-        Z: function (d) {
-		var tz = d.toString().replace(/^.*:\d\d( GMT[+-]\d+)? \(?([A-Za-z ]+)\)?\d*$/, '$2').replace(/[a-z ]/g, '');
-		if(tz.length > 4) {
-			tz = Dt.formats.z(d);
-		}
-		return tz;
-	},
-        '%': function (d) { return '%'; }
-    },
-
-    aggregates: {
-        c: 'locale',
-        D: '%m/%d/%y',
-        F: '%Y-%m-%d',
-        h: '%b',
-        n: '\n',
-        r: 'locale',
-        R: '%H:%M',
-        t: '\t',
-        T: '%H:%M:%S',
-        x: 'locale',
-        X: 'locale'
-        //'+': '%a %b %e %T %Z %Y'
-    },
-
-     /**
-     * Takes a native JavaScript Date and formats to string for display to user.
-     *
-     * @method format
-     * @param oDate {Date} Date.
-     * @param oConfig {Object} (Optional) Optional configuration values:
-     *  <dl>
-     *   <dt>format {String}</dt>
-     *   <dd>Any format defined by strftime is supported</dd>
-     *  </dl>
-     *  strftime has several format specifiers defined by the Open group at 
-     *  http://www.opengroup.org/onlinepubs/007908799/xsh/strftime.html
-     *
-     *  PHP added a few of its own, defined at http://www.php.net/strftime
-     *
-     *  This javascript implementation supports all the PHP specifiers and a few more.
-     *
-     *  @arg \%a - abbreviated weekday name according to the current locale
-     *  @arg \%A - full weekday name according to the current locale
-     *  @arg \%b - abbreviated month name according to the current locale
-     *  @arg \%B - full month name according to the current locale
-     *  @arg \%c - preferred date and time representation for the current locale
-     *  @arg \%C - century number (the year divided by 100 and truncated to an integer, range 00 to 99)
-     *  @arg \%d - day of the month as a decimal number (range 01 to 31)
-     *  @arg \%D - same as %m/%d/%y
-     *  @arg \%e - day of the month as a decimal number, a single digit is preceded by a space (range ' 1' to '31')
-     *  @arg \%F - same as %Y-%m-%d (ISO 8601 date format)
-     *  @arg \%g - like %G, but without the century
-     *  @arg \%G - The 4-digit year corresponding to the ISO week number
-     *  @arg \%h - same as %b
-     *  @arg \%H - hour as a decimal number using a 24-hour clock (range 00 to 23)
-     *  @arg \%I - hour as a decimal number using a 12-hour clock (range 01 to 12)
-     *  @arg \%j - day of the year as a decimal number (range 001 to 366)
-     *  @arg \%k - hour as a decimal number using a 24-hour clock (range 0 to 23); single digits are preceded by a blank. (See also %H.)
-     *  @arg \%l - hour as a decimal number using a 12-hour clock (range 1 to 12); single digits are preceded by a blank. (See also %I.) 
-     *  @arg \%m - month as a decimal number (range 01 to 12)
-     *  @arg \%M - minute as a decimal number
-     *  @arg \%n - newline character
-     *  @arg \%p - either `AM' or `PM' according to the given time value, or the corresponding strings for the current locale
-     *  @arg \%P - like %p, but lower case
-     *  @arg \%r - time in a.m. and p.m. notation equal to %I:%M:%S %p
-     *  @arg \%R - time in 24 hour notation equal to %H:%M
-     *  @arg \%s - number of seconds since the Epoch, ie, since 1970-01-01 00:00:00 UTC
-     *  @arg \%S - second as a decimal number
-     *  @arg \%t - tab character
-     *  @arg \%T - current time, equal to %H:%M:%S
-     *  @arg \%u - weekday as a decimal number [1,7], with 1 representing Monday
-     *  @arg \%U - week number of the current year as a decimal number, starting with
-     *             the first Sunday as the first day of the first week
-     *  @arg \%V - The ISO 8601:1988 week number of the current year as a decimal number,
-     *             range 01 to 53, where week 1 is the first week that has at least 4 days
-     *             in the current year, and with Monday as the first day of the week.
-     *  @arg \%w - day of the week as a decimal, Sunday being 0
-     *  @arg \%W - week number of the current year as a decimal number, starting with the
-     *             first Monday as the first day of the first week
-     *  @arg \%x - preferred date representation for the current locale without the time
-     *  @arg \%X - preferred time representation for the current locale without the date
-     *  @arg \%y - year as a decimal number without a century (range 00 to 99)
-     *  @arg \%Y - year as a decimal number including the century
-     *  @arg \%z - numerical time zone representation
-     *  @arg \%Z - time zone name or abbreviation
-     *  @arg \%% - a literal `\%' character
-     * @param sLocale {String} (Optional) The locale to use when displaying days of week,
-     *  months of the year, and other locale specific strings.  The following locales are
-     *  built in:
-     *  <dl>
-     *   <dt>en</dt>
-     *   <dd>English</dd>
-     *   <dt>en-US</dt>
-     *   <dd>US English</dd>
-     *   <dt>en-GB</dt>
-     *   <dd>British English</dd>
-     *   <dt>en-AU</dt>
-     *   <dd>Australian English (identical to British English)</dd>
-     *  </dl>
-     *  More locales may be added by subclassing of YAHOO.util.DateLocale.
-     *  See YAHOO.util.DateLocale for more information.
-     * @return {String} Formatted date for display.
-     * @sa YAHOO.util.DateLocale
-     */
-    format : function (oDate, oConfig, sLocale) {
-        oConfig = oConfig || {};
-        
-        if(!(oDate instanceof Date)) {
-            return YAHOO.lang.isValue(oDate) ? oDate : "";
-        }
-
-        var format = oConfig.format || "%m/%d/%Y";
-
-        // Be backwards compatible, support strings that are
-        // exactly equal to YYYY/MM/DD, DD/MM/YYYY and MM/DD/YYYY
-        if(format === 'YYYY/MM/DD') {
-            format = '%Y/%m/%d';
-        } else if(format === 'DD/MM/YYYY') {
-            format = '%d/%m/%Y';
-        } else if(format === 'MM/DD/YYYY') {
-            format = '%m/%d/%Y';
-        }
-        // end backwards compatibility block
- 
-        sLocale = sLocale || "en";
-
-        // Make sure we have a definition for the requested locale, or default to en.
-        if(!(sLocale in YAHOO.util.DateLocale)) {
-            if(sLocale.replace(/-[a-zA-Z]+$/, '') in YAHOO.util.DateLocale) {
-                sLocale = sLocale.replace(/-[a-zA-Z]+$/, '');
-            } else {
-                sLocale = "en";
-            }
-        }
-
-        var aLocale = YAHOO.util.DateLocale[sLocale];
-
-        var replace_aggs = function (m0, m1) {
-            var f = Dt.aggregates[m1];
-            return (f === 'locale' ? aLocale[m1] : f);
-        };
-
-        var replace_formats = function (m0, m1) {
-            var f = Dt.formats[m1];
-            if(typeof f === 'string') {             // string => built in date function
-                return oDate[f]();
-            } else if(typeof f === 'function') {    // function => our own function
-                return f.call(oDate, oDate, aLocale);
-            } else if(typeof f === 'object' && typeof f[0] === 'string') {  // built in function with padding
-                return xPad(oDate[f[0]](), f[1]);
-            } else {
-                return m1;
-            }
-        };
-
-        // First replace aggregates (run in a loop because an agg may be made up of other aggs)
-        while(format.match(/%[cDFhnrRtTxX]/)) {
-            format = format.replace(/%([cDFhnrRtTxX])/g, replace_aggs);
-        }
-
-        // Now replace formats (do not run in a loop otherwise %%a will be replace with the value of %a)
-        var str = format.replace(/%([aAbBCdegGHIjklmMpPsSuUVwWyYzZ%])/g, replace_formats);
-
-        replace_aggs = replace_formats = undefined;
-
-        return str;
-    }
- };
- 
- YAHOO.namespace("YAHOO.util");
- YAHOO.util.Date = Dt;
-
-/**
- * The DateLocale class is a container and base class for all
- * localised date strings used by YAHOO.util.Date. It is used
- * internally, but may be extended to provide new date localisations.
- *
- * To create your own DateLocale, follow these steps:
- * <ol>
- *  <li>Find an existing locale that matches closely with your needs</li>
- *  <li>Use this as your base class.  Use YAHOO.util.DateLocale if nothing
- *   matches.</li>
- *  <li>Create your own class as an extension of the base class using
- *   YAHOO.lang.merge, and add your own localisations where needed.</li>
- * </ol>
- * See the YAHOO.util.DateLocale['en-US'] and YAHOO.util.DateLocale['en-GB']
- * classes which extend YAHOO.util.DateLocale['en'].
- *
- * For example, to implement locales for French french and Canadian french,
- * we would do the following:
- * <ol>
- *  <li>For French french, we have no existing similar locale, so use
- *   YAHOO.util.DateLocale as the base, and extend it:
- *   <pre>
- *      YAHOO.util.DateLocale['fr'] = YAHOO.lang.merge(YAHOO.util.DateLocale, {
- *          a: ['dim', 'lun', 'mar', 'mer', 'jeu', 'ven', 'sam'],
- *          A: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'],
- *          b: ['jan', 'f&eacute;v', 'mar', 'avr', 'mai', 'jun', 'jui', 'ao&ucirc;', 'sep', 'oct', 'nov', 'd&eacute;c'],
- *          B: ['janvier', 'f&eacute;vrier', 'mars', 'avril', 'mai', 'juin', 'juillet', 'ao&ucirc;t', 'septembre', 'octobre', 'novembre', 'd&eacute;cembre'],
- *          c: '%a %d %b %Y %T %Z',
- *          p: ['', ''],
- *          P: ['', ''],
- *          x: '%d.%m.%Y',
- *          X: '%T'
- *      });
- *   </pre>
- *  </li>
- *  <li>For Canadian french, we start with French french and change the meaning of \%x:
- *   <pre>
- *      YAHOO.util.DateLocale['fr-CA'] = YAHOO.lang.merge(YAHOO.util.DateLocale['fr'], {
- *          x: '%Y-%m-%d'
- *      });
- *   </pre>
- *  </li>
- * </ol>
- *
- * With that, you can use your new locales:
- * <pre>
- *    var d = new Date("2008/04/22");
- *    YAHOO.util.Date.format(d, {format: "%A, %d %B == %x"}, "fr");
- * </pre>
- * will return:
- * <pre>
- *    mardi, 22 avril == 22.04.2008
- * </pre>
- * And
- * <pre>
- *    YAHOO.util.Date.format(d, {format: "%A, %d %B == %x"}, "fr-CA");
- * </pre>
- * Will return:
- * <pre>
- *   mardi, 22 avril == 2008-04-22
- * </pre>
- * @namespace YAHOO.util
- * @requires yahoo
- * @class DateLocale
- */
- YAHOO.util.DateLocale = {
-        a: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
-        A: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
-        b: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
-        B: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
-        c: '%a %d %b %Y %T %Z',
-        p: ['AM', 'PM'],
-        P: ['am', 'pm'],
-        r: '%I:%M:%S %p',
-        x: '%d/%m/%y',
-        X: '%T'
- };
-
- YAHOO.util.DateLocale['en'] = YAHOO.lang.merge(YAHOO.util.DateLocale, {});
-
- YAHOO.util.DateLocale['en-US'] = YAHOO.lang.merge(YAHOO.util.DateLocale['en'], {
-        c: '%a %d %b %Y %I:%M:%S %p %Z',
-        x: '%m/%d/%Y',
-        X: '%I:%M:%S %p'
- });
-
- YAHOO.util.DateLocale['en-GB'] = YAHOO.lang.merge(YAHOO.util.DateLocale['en'], {
-        r: '%l:%M:%S %P %Z'
- });
- YAHOO.util.DateLocale['en-AU'] = YAHOO.lang.merge(YAHOO.util.DateLocale['en']);
-
-})();
-
-YAHOO.register("datasource", YAHOO.util.DataSource, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/datasource/datasource-min.js b/eclipse.org-common/yui/2.6.0/build/datasource/datasource-min.js
deleted file mode 100644
index cc602bb..0000000
--- a/eclipse.org-common/yui/2.6.0/build/datasource/datasource-min.js
+++ /dev/null
@@ -1,11 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){var lang=YAHOO.lang,util=YAHOO.util,Ev=util.Event;util.DataSourceBase=function(oLiveData,oConfigs){if(oLiveData===null||oLiveData===undefined){return ;}this.liveData=oLiveData;this._oQueue={interval:null,conn:null,requests:[]};this.responseSchema={};if(oConfigs&&(oConfigs.constructor==Object)){for(var sConfig in oConfigs){if(sConfig){this[sConfig]=oConfigs[sConfig];}}}var maxCacheEntries=this.maxCacheEntries;if(!lang.isNumber(maxCacheEntries)||(maxCacheEntries<0)){maxCacheEntries=0;}this._aIntervals=[];this.createEvent("cacheRequestEvent");this.createEvent("cacheResponseEvent");this.createEvent("requestEvent");this.createEvent("responseEvent");this.createEvent("responseParseEvent");this.createEvent("responseCacheEvent");this.createEvent("dataErrorEvent");this.createEvent("cacheFlushEvent");var DS=util.DataSourceBase;this._sName="DataSource instance"+DS._nIndex;DS._nIndex++;};var DS=util.DataSourceBase;lang.augmentObject(DS,{TYPE_UNKNOWN:-1,TYPE_JSARRAY:0,TYPE_JSFUNCTION:1,TYPE_XHR:2,TYPE_JSON:3,TYPE_XML:4,TYPE_TEXT:5,TYPE_HTMLTABLE:6,TYPE_SCRIPTNODE:7,TYPE_LOCAL:8,ERROR_DATAINVALID:"Invalid data",ERROR_DATANULL:"Null data",_nIndex:0,_nTransactionId:0,issueCallback:function(callback,params,error,scope){if(lang.isFunction(callback)){callback.apply(scope,params);}else{if(lang.isObject(callback)){scope=callback.scope||scope||window;var callbackFunc=callback.success;if(error){callbackFunc=callback.failure;}if(callbackFunc){callbackFunc.apply(scope,params.concat([callback.argument]));}}}},parseString:function(oData){if(!lang.isValue(oData)){return null;}var string=oData+"";if(lang.isString(string)){return string;}else{return null;}},parseNumber:function(oData){var number=oData*1;if(lang.isNumber(number)){return number;}else{return null;}},convertNumber:function(oData){return DS.parseNumber(oData);},parseDate:function(oData){var date=null;if(!(oData instanceof Date)){date=new Date(oData);}else{return oData;}if(date instanceof Date){return date;}else{return null;}},convertDate:function(oData){return DS.parseDate(oData);}});DS.Parser={string:DS.parseString,number:DS.parseNumber,date:DS.parseDate};DS.prototype={_sName:null,_aCache:null,_oQueue:null,_aIntervals:null,maxCacheEntries:0,liveData:null,dataType:DS.TYPE_UNKNOWN,responseType:DS.TYPE_UNKNOWN,responseSchema:null,toString:function(){return this._sName;},getCachedResponse:function(oRequest,oCallback,oCaller){var aCache=this._aCache;if(this.maxCacheEntries>0){if(!aCache){this._aCache=[];}else{var nCacheLength=aCache.length;if(nCacheLength>0){var oResponse=null;this.fireEvent("cacheRequestEvent",{request:oRequest,callback:oCallback,caller:oCaller});for(var i=nCacheLength-1;i>=0;i--){var oCacheElem=aCache[i];if(this.isCacheHit(oRequest,oCacheElem.request)){oResponse=oCacheElem.response;this.fireEvent("cacheResponseEvent",{request:oRequest,response:oResponse,callback:oCallback,caller:oCaller});if(i<nCacheLength-1){aCache.splice(i,1);this.addToCache(oRequest,oResponse);}oResponse.cached=true;break;}}return oResponse;}}}else{if(aCache){this._aCache=null;}}return null;},isCacheHit:function(oRequest,oCachedRequest){return(oRequest===oCachedRequest);},addToCache:function(oRequest,oResponse){var aCache=this._aCache;if(!aCache){return ;}while(aCache.length>=this.maxCacheEntries){aCache.shift();}var oCacheElem={request:oRequest,response:oResponse};aCache[aCache.length]=oCacheElem;this.fireEvent("responseCacheEvent",{request:oRequest,response:oResponse});},flushCache:function(){if(this._aCache){this._aCache=[];this.fireEvent("cacheFlushEvent");}},setInterval:function(nMsec,oRequest,oCallback,oCaller){if(lang.isNumber(nMsec)&&(nMsec>=0)){var oSelf=this;var nId=setInterval(function(){oSelf.makeConnection(oRequest,oCallback,oCaller);},nMsec);this._aIntervals.push(nId);return nId;}else{}},clearInterval:function(nId){var tracker=this._aIntervals||[];for(var i=tracker.length-1;i>-1;i--){if(tracker[i]===nId){tracker.splice(i,1);clearInterval(nId);}}},clearAllIntervals:function(){var tracker=this._aIntervals||[];for(var i=tracker.length-1;i>-1;i--){clearInterval(tracker[i]);}tracker=[];},sendRequest:function(oRequest,oCallback,oCaller){var oCachedResponse=this.getCachedResponse(oRequest,oCallback,oCaller);if(oCachedResponse){DS.issueCallback(oCallback,[oRequest,oCachedResponse],false,oCaller);return null;}return this.makeConnection(oRequest,oCallback,oCaller);},makeConnection:function(oRequest,oCallback,oCaller){var tId=DS._nTransactionId++;this.fireEvent("requestEvent",{tId:tId,request:oRequest,callback:oCallback,caller:oCaller});var oRawResponse=this.liveData;this.handleResponse(oRequest,oRawResponse,oCallback,oCaller,tId);return tId;},handleResponse:function(oRequest,oRawResponse,oCallback,oCaller,tId){this.fireEvent("responseEvent",{tId:tId,request:oRequest,response:oRawResponse,callback:oCallback,caller:oCaller});var xhr=(this.dataType==DS.TYPE_XHR)?true:false;var oParsedResponse=null;var oFullResponse=oRawResponse;if(this.responseType===DS.TYPE_UNKNOWN){var ctype=(oRawResponse&&oRawResponse.getResponseHeader)?oRawResponse.getResponseHeader["Content-Type"]:null;if(ctype){if(ctype.indexOf("text/xml")>-1){this.responseType=DS.TYPE_XML;}else{if(ctype.indexOf("application/json")>-1){this.responseType=DS.TYPE_JSON;}else{if(ctype.indexOf("text/plain")>-1){this.responseType=DS.TYPE_TEXT;}}}}else{if(YAHOO.lang.isArray(oRawResponse)){this.responseType=DS.TYPE_JSARRAY;}else{if(oRawResponse&&oRawResponse.nodeType&&oRawResponse.nodeType==9){this.responseType=DS.TYPE_XML;}else{if(oRawResponse&&oRawResponse.nodeName&&(oRawResponse.nodeName.toLowerCase()=="table")){this.responseType=DS.TYPE_HTMLTABLE;}else{if(YAHOO.lang.isObject(oRawResponse)){this.responseType=DS.TYPE_JSON;}else{if(YAHOO.lang.isString(oRawResponse)){this.responseType=DS.TYPE_TEXT;}}}}}}}switch(this.responseType){case DS.TYPE_JSARRAY:if(xhr&&oRawResponse&&oRawResponse.responseText){oFullResponse=oRawResponse.responseText;}oFullResponse=this.doBeforeParseData(oRequest,oFullResponse,oCallback);oParsedResponse=this.parseArrayData(oRequest,oFullResponse);
-break;case DS.TYPE_JSON:if(xhr&&oRawResponse&&oRawResponse.responseText){oFullResponse=oRawResponse.responseText;}try{if(lang.isString(oFullResponse)){if(lang.JSON){oFullResponse=lang.JSON.parse(oFullResponse);}else{if(window.JSON&&JSON.parse){oFullResponse=JSON.parse(oFullResponse);}else{if(oFullResponse.parseJSON){oFullResponse=oFullResponse.parseJSON();}else{while(oFullResponse.length>0&&(oFullResponse.charAt(0)!="{")&&(oFullResponse.charAt(0)!="[")){oFullResponse=oFullResponse.substring(1,oFullResponse.length);}if(oFullResponse.length>0){var objEnd=Math.max(oFullResponse.lastIndexOf("]"),oFullResponse.lastIndexOf("}"));oFullResponse=oFullResponse.substring(0,objEnd+1);oFullResponse=eval("("+oFullResponse+")");}}}}}}catch(e){}oFullResponse=this.doBeforeParseData(oRequest,oFullResponse,oCallback);oParsedResponse=this.parseJSONData(oRequest,oFullResponse);break;case DS.TYPE_HTMLTABLE:if(xhr&&oRawResponse.responseText){oFullResponse=oRawResponse.responseText;}oFullResponse=this.doBeforeParseData(oRequest,oFullResponse,oCallback);oParsedResponse=this.parseHTMLTableData(oRequest,oFullResponse);break;case DS.TYPE_XML:if(xhr&&oRawResponse.responseXML){oFullResponse=oRawResponse.responseXML;}oFullResponse=this.doBeforeParseData(oRequest,oFullResponse,oCallback);oParsedResponse=this.parseXMLData(oRequest,oFullResponse);break;case DS.TYPE_TEXT:if(xhr&&lang.isString(oRawResponse.responseText)){oFullResponse=oRawResponse.responseText;}oFullResponse=this.doBeforeParseData(oRequest,oFullResponse,oCallback);oParsedResponse=this.parseTextData(oRequest,oFullResponse);break;default:oFullResponse=this.doBeforeParseData(oRequest,oFullResponse,oCallback);oParsedResponse=this.parseData(oRequest,oFullResponse);break;}oParsedResponse=oParsedResponse||{};if(!oParsedResponse.results){oParsedResponse.results=[];}if(!oParsedResponse.meta){oParsedResponse.meta={};}if(oParsedResponse&&!oParsedResponse.error){oParsedResponse=this.doBeforeCallback(oRequest,oFullResponse,oParsedResponse,oCallback);this.fireEvent("responseParseEvent",{request:oRequest,response:oParsedResponse,callback:oCallback,caller:oCaller});this.addToCache(oRequest,oParsedResponse);}else{oParsedResponse.error=true;this.fireEvent("dataErrorEvent",{request:oRequest,response:oRawResponse,callback:oCallback,caller:oCaller,message:DS.ERROR_DATANULL});}oParsedResponse.tId=tId;DS.issueCallback(oCallback,[oRequest,oParsedResponse],oParsedResponse.error,oCaller);},doBeforeParseData:function(oRequest,oFullResponse,oCallback){return oFullResponse;},doBeforeCallback:function(oRequest,oFullResponse,oParsedResponse,oCallback){return oParsedResponse;},parseData:function(oRequest,oFullResponse){if(lang.isValue(oFullResponse)){var oParsedResponse={results:oFullResponse,meta:{}};return oParsedResponse;}return null;},parseArrayData:function(oRequest,oFullResponse){if(lang.isArray(oFullResponse)){var results=[],i,j,rec,field,data;if(lang.isArray(this.responseSchema.fields)){var fields=this.responseSchema.fields;for(i=fields.length-1;i>=0;--i){if(typeof fields[i]!=="object"){fields[i]={key:fields[i]};}}var parsers={},p;for(i=fields.length-1;i>=0;--i){p=(typeof fields[i].parser==="function"?fields[i].parser:DS.Parser[fields[i].parser+""])||fields[i].converter;if(p){parsers[fields[i].key]=p;}}var arrType=lang.isArray(oFullResponse[0]);for(i=oFullResponse.length-1;i>-1;i--){var oResult={};rec=oFullResponse[i];if(typeof rec==="object"){for(j=fields.length-1;j>-1;j--){field=fields[j];data=arrType?rec[j]:rec[field.key];if(parsers[field.key]){data=parsers[field.key].call(this,data);}if(data===undefined){data=null;}oResult[field.key]=data;}}else{if(lang.isString(rec)){for(j=fields.length-1;j>-1;j--){field=fields[j];data=rec;if(parsers[field.key]){data=parsers[field.key].call(this,data);}if(data===undefined){data=null;}oResult[field.key]=data;}}}results[i]=oResult;}}else{results=oFullResponse;}var oParsedResponse={results:results};return oParsedResponse;}return null;},parseTextData:function(oRequest,oFullResponse){if(lang.isString(oFullResponse)){if(lang.isString(this.responseSchema.recordDelim)&&lang.isString(this.responseSchema.fieldDelim)){var oParsedResponse={results:[]};var recDelim=this.responseSchema.recordDelim;var fieldDelim=this.responseSchema.fieldDelim;if(oFullResponse.length>0){var newLength=oFullResponse.length-recDelim.length;if(oFullResponse.substr(newLength)==recDelim){oFullResponse=oFullResponse.substr(0,newLength);}if(oFullResponse.length>0){var recordsarray=oFullResponse.split(recDelim);for(var i=0,len=recordsarray.length,recIdx=0;i<len;++i){var bError=false,sRecord=recordsarray[i];if(lang.isString(sRecord)&&(sRecord.length>0)){var fielddataarray=recordsarray[i].split(fieldDelim);var oResult={};if(lang.isArray(this.responseSchema.fields)){var fields=this.responseSchema.fields;for(var j=fields.length-1;j>-1;j--){try{var data=fielddataarray[j];if(lang.isString(data)){if(data.charAt(0)=='"'){data=data.substr(1);}if(data.charAt(data.length-1)=='"'){data=data.substr(0,data.length-1);}var field=fields[j];var key=(lang.isValue(field.key))?field.key:field;if(!field.parser&&field.converter){field.parser=field.converter;}var parser=(typeof field.parser==="function")?field.parser:DS.Parser[field.parser+""];if(parser){data=parser.call(this,data);}if(data===undefined){data=null;}oResult[key]=data;}else{bError=true;}}catch(e){bError=true;}}}else{oResult=fielddataarray;}if(!bError){oParsedResponse.results[recIdx++]=oResult;}}}}}return oParsedResponse;}}return null;},parseXMLResult:function(result){var oResult={},schema=this.responseSchema;try{for(var m=schema.fields.length-1;m>=0;m--){var field=schema.fields[m];var key=(lang.isValue(field.key))?field.key:field;var data=null;var xmlAttr=result.attributes.getNamedItem(key);if(xmlAttr){data=xmlAttr.value;}else{var xmlNode=result.getElementsByTagName(key);if(xmlNode&&xmlNode.item(0)&&xmlNode.item(0)){data=xmlNode.item(0).firstChild.nodeValue;var item=xmlNode.item(0);data=(item.text)?item.text:(item.textContent)?item.textContent:null;
-if(!data){var datapieces=[];for(var j=0,len=item.childNodes.length;j<len;j++){if(item.childNodes[j].nodeValue){datapieces[datapieces.length]=item.childNodes[j].nodeValue;}}if(datapieces.length>0){data=datapieces.join("");}}}}if(data===null){data="";}if(!field.parser&&field.converter){field.parser=field.converter;}var parser=(typeof field.parser==="function")?field.parser:DS.Parser[field.parser+""];if(parser){data=parser.call(this,data);}if(data===undefined){data=null;}oResult[key]=data;}}catch(e){}return oResult;},parseXMLData:function(oRequest,oFullResponse){var bError=false,schema=this.responseSchema,oParsedResponse={meta:{}},xmlList=null,metaNode=schema.metaNode,metaLocators=schema.metaFields||{},i,k,loc,v;try{xmlList=(schema.resultNode)?oFullResponse.getElementsByTagName(schema.resultNode):null;metaNode=metaNode?oFullResponse.getElementsByTagName(metaNode)[0]:oFullResponse;if(metaNode){for(k in metaLocators){if(lang.hasOwnProperty(metaLocators,k)){loc=metaLocators[k];v=metaNode.getElementsByTagName(loc)[0];if(v){v=v.firstChild.nodeValue;}else{v=metaNode.attributes.getNamedItem(loc);if(v){v=v.value;}}if(lang.isValue(v)){oParsedResponse.meta[k]=v;}}}}}catch(e){}if(!xmlList||!lang.isArray(schema.fields)){bError=true;}else{oParsedResponse.results=[];for(i=xmlList.length-1;i>=0;--i){var oResult=this.parseXMLResult(xmlList.item(i));oParsedResponse.results[i]=oResult;}}if(bError){oParsedResponse.error=true;}else{}return oParsedResponse;},parseJSONData:function(oRequest,oFullResponse){var oParsedResponse={results:[],meta:{}};if(lang.isObject(oFullResponse)&&this.responseSchema.resultsList){var schema=this.responseSchema,fields=schema.fields,resultsList=oFullResponse,results=[],metaFields=schema.metaFields||{},fieldParsers=[],fieldPaths=[],simpleFields=[],bError=false,i,len,j,v,key,parser,path;var buildPath=function(needle){var path=null,keys=[],i=0;if(needle){needle=needle.replace(/\[(['"])(.*?)\1\]/g,function(x,$1,$2){keys[i]=$2;return".@"+(i++);}).replace(/\[(\d+)\]/g,function(x,$1){keys[i]=parseInt($1,10)|0;return".@"+(i++);}).replace(/^\./,"");if(!/[^\w\.\$@]/.test(needle)){path=needle.split(".");for(i=path.length-1;i>=0;--i){if(path[i].charAt(0)==="@"){path[i]=keys[parseInt(path[i].substr(1),10)];}}}else{}}return path;};var walkPath=function(path,origin){var v=origin,i=0,len=path.length;for(;i<len&&v;++i){v=v[path[i]];}return v;};path=buildPath(schema.resultsList);if(path){resultsList=walkPath(path,oFullResponse);if(resultsList===undefined){bError=true;}}else{bError=true;}if(!resultsList){resultsList=[];}if(!lang.isArray(resultsList)){resultsList=[resultsList];}if(!bError){if(schema.fields){var field;for(i=0,len=fields.length;i<len;i++){field=fields[i];key=field.key||field;parser=((typeof field.parser==="function")?field.parser:DS.Parser[field.parser+""])||field.converter;path=buildPath(key);if(parser){fieldParsers[fieldParsers.length]={key:key,parser:parser};}if(path){if(path.length>1){fieldPaths[fieldPaths.length]={key:key,path:path};}else{simpleFields[simpleFields.length]={key:key,path:path[0]};}}else{}}for(i=resultsList.length-1;i>=0;--i){var r=resultsList[i],rec={};for(j=simpleFields.length-1;j>=0;--j){rec[simpleFields[j].key]=(r[simpleFields[j].path]!==undefined)?r[simpleFields[j].path]:r[j];}for(j=fieldPaths.length-1;j>=0;--j){rec[fieldPaths[j].key]=walkPath(fieldPaths[j].path,r);}for(j=fieldParsers.length-1;j>=0;--j){var p=fieldParsers[j].key;rec[p]=fieldParsers[j].parser(rec[p]);if(rec[p]===undefined){rec[p]=null;}}results[i]=rec;}}else{results=resultsList;}for(key in metaFields){if(lang.hasOwnProperty(metaFields,key)){path=buildPath(metaFields[key]);if(path){v=walkPath(path,oFullResponse);oParsedResponse.meta[key]=v;}}}}else{oParsedResponse.error=true;}oParsedResponse.results=results;}else{oParsedResponse.error=true;}return oParsedResponse;},parseHTMLTableData:function(oRequest,oFullResponse){var bError=false;var elTable=oFullResponse;var fields=this.responseSchema.fields;var oParsedResponse={results:[]};for(var i=0;i<elTable.tBodies.length;i++){var elTbody=elTable.tBodies[i];for(var j=elTbody.rows.length-1;j>-1;j--){var elRow=elTbody.rows[j];var oResult={};for(var k=fields.length-1;k>-1;k--){var field=fields[k];var key=(lang.isValue(field.key))?field.key:field;var data=elRow.cells[k].innerHTML;if(!field.parser&&field.converter){field.parser=field.converter;}var parser=(typeof field.parser==="function")?field.parser:DS.Parser[field.parser+""];if(parser){data=parser.call(this,data);}if(data===undefined){data=null;}oResult[key]=data;}oParsedResponse.results[j]=oResult;}}if(bError){oParsedResponse.error=true;}else{}return oParsedResponse;}};lang.augmentProto(DS,util.EventProvider);util.LocalDataSource=function(oLiveData,oConfigs){this.dataType=DS.TYPE_LOCAL;if(oLiveData){if(YAHOO.lang.isArray(oLiveData)){this.responseType=DS.TYPE_JSARRAY;}else{if(oLiveData.nodeType&&oLiveData.nodeType==9){this.responseType=DS.TYPE_XML;}else{if(oLiveData.nodeName&&(oLiveData.nodeName.toLowerCase()=="table")){this.responseType=DS.TYPE_HTMLTABLE;oLiveData=oLiveData.cloneNode(true);}else{if(YAHOO.lang.isString(oLiveData)){this.responseType=DS.TYPE_TEXT;}else{if(YAHOO.lang.isObject(oLiveData)){this.responseType=DS.TYPE_JSON;}}}}}}else{oLiveData=[];this.responseType=DS.TYPE_JSARRAY;}this.constructor.superclass.constructor.call(this,oLiveData,oConfigs);};lang.extend(util.LocalDataSource,DS);lang.augmentObject(util.LocalDataSource,DS);util.FunctionDataSource=function(oLiveData,oConfigs){this.dataType=DS.TYPE_JSFUNCTION;oLiveData=oLiveData||function(){};this.constructor.superclass.constructor.call(this,oLiveData,oConfigs);};lang.extend(util.FunctionDataSource,DS,{makeConnection:function(oRequest,oCallback,oCaller){var tId=DS._nTransactionId++;this.fireEvent("requestEvent",{tId:tId,request:oRequest,callback:oCallback,caller:oCaller});var oRawResponse=this.liveData(oRequest);if(this.responseType===DS.TYPE_UNKNOWN){if(YAHOO.lang.isArray(oRawResponse)){this.responseType=DS.TYPE_JSARRAY;}else{if(oRawResponse&&oRawResponse.nodeType&&oRawResponse.nodeType==9){this.responseType=DS.TYPE_XML;
-}else{if(oRawResponse&&oRawResponse.nodeName&&(oRawResponse.nodeName.toLowerCase()=="table")){this.responseType=DS.TYPE_HTMLTABLE;}else{if(YAHOO.lang.isObject(oRawResponse)){this.responseType=DS.TYPE_JSON;}else{if(YAHOO.lang.isString(oRawResponse)){this.responseType=DS.TYPE_TEXT;}}}}}}this.handleResponse(oRequest,oRawResponse,oCallback,oCaller,tId);return tId;}});lang.augmentObject(util.FunctionDataSource,DS);util.ScriptNodeDataSource=function(oLiveData,oConfigs){this.dataType=DS.TYPE_SCRIPTNODE;oLiveData=oLiveData||"";this.constructor.superclass.constructor.call(this,oLiveData,oConfigs);};lang.extend(util.ScriptNodeDataSource,DS,{getUtility:util.Get,asyncMode:"allowAll",scriptCallbackParam:"callback",generateRequestCallback:function(id){return"&"+this.scriptCallbackParam+"=YAHOO.util.ScriptNodeDataSource.callbacks["+id+"]";},makeConnection:function(oRequest,oCallback,oCaller){var tId=DS._nTransactionId++;this.fireEvent("requestEvent",{tId:tId,request:oRequest,callback:oCallback,caller:oCaller});if(util.ScriptNodeDataSource._nPending===0){util.ScriptNodeDataSource.callbacks=[];util.ScriptNodeDataSource._nId=0;}var id=util.ScriptNodeDataSource._nId;util.ScriptNodeDataSource._nId++;var oSelf=this;util.ScriptNodeDataSource.callbacks[id]=function(oRawResponse){if((oSelf.asyncMode!=="ignoreStaleResponses")||(id===util.ScriptNodeDataSource.callbacks.length-1)){if(oSelf.responseType===DS.TYPE_UNKNOWN){if(YAHOO.lang.isArray(oRawResponse)){oSelf.responseType=DS.TYPE_JSARRAY;}else{if(oRawResponse.nodeType&&oRawResponse.nodeType==9){oSelf.responseType=DS.TYPE_XML;}else{if(oRawResponse.nodeName&&(oRawResponse.nodeName.toLowerCase()=="table")){oSelf.responseType=DS.TYPE_HTMLTABLE;}else{if(YAHOO.lang.isObject(oRawResponse)){oSelf.responseType=DS.TYPE_JSON;}else{if(YAHOO.lang.isString(oRawResponse)){oSelf.responseType=DS.TYPE_TEXT;}}}}}}oSelf.handleResponse(oRequest,oRawResponse,oCallback,oCaller,tId);}else{}delete util.ScriptNodeDataSource.callbacks[id];};util.ScriptNodeDataSource._nPending++;var sUri=this.liveData+oRequest+this.generateRequestCallback(id);this.getUtility.script(sUri,{autopurge:true,onsuccess:util.ScriptNodeDataSource._bumpPendingDown,onfail:util.ScriptNodeDataSource._bumpPendingDown});return tId;}});lang.augmentObject(util.ScriptNodeDataSource,DS);lang.augmentObject(util.ScriptNodeDataSource,{_nId:0,_nPending:0,callbacks:[]});util.XHRDataSource=function(oLiveData,oConfigs){this.dataType=DS.TYPE_XHR;this.connMgr=this.connMgr||util.Connect;oLiveData=oLiveData||"";this.constructor.superclass.constructor.call(this,oLiveData,oConfigs);};lang.extend(util.XHRDataSource,DS,{connMgr:null,connXhrMode:"allowAll",connMethodPost:false,connTimeout:0,makeConnection:function(oRequest,oCallback,oCaller){var oRawResponse=null;var tId=DS._nTransactionId++;this.fireEvent("requestEvent",{tId:tId,request:oRequest,callback:oCallback,caller:oCaller});var oSelf=this;var oConnMgr=this.connMgr;var oQueue=this._oQueue;var _xhrSuccess=function(oResponse){if(oResponse&&(this.asyncMode=="ignoreStaleResponses")&&(oResponse.tId!=oQueue.conn.tId)){return null;}else{if(!oResponse){this.fireEvent("dataErrorEvent",{request:oRequest,callback:oCallback,caller:oCaller,message:DS.ERROR_DATANULL});DS.issueCallback(oCallback,[oRequest,{error:true}],true,oCaller);return null;}else{if(this.responseType===DS.TYPE_UNKNOWN){var ctype=(oResponse.getResponseHeader)?oResponse.getResponseHeader["Content-Type"]:null;if(ctype){if(ctype.indexOf("text/xml")>-1){this.responseType=DS.TYPE_XML;}else{if(ctype.indexOf("application/json")>-1){this.responseType=DS.TYPE_JSON;}else{if(ctype.indexOf("text/plain")>-1){this.responseType=DS.TYPE_TEXT;}}}}}this.handleResponse(oRequest,oResponse,oCallback,oCaller,tId);}}};var _xhrFailure=function(oResponse){this.fireEvent("dataErrorEvent",{request:oRequest,callback:oCallback,caller:oCaller,message:DS.ERROR_DATAINVALID});if(lang.isString(this.liveData)&&lang.isString(oRequest)&&(this.liveData.lastIndexOf("?")!==this.liveData.length-1)&&(oRequest.indexOf("?")!==0)){}oResponse=oResponse||{};oResponse.error=true;DS.issueCallback(oCallback,[oRequest,oResponse],true,oCaller);return null;};var _xhrCallback={success:_xhrSuccess,failure:_xhrFailure,scope:this};if(lang.isNumber(this.connTimeout)){_xhrCallback.timeout=this.connTimeout;}if(this.connXhrMode=="cancelStaleRequests"){if(oQueue.conn){if(oConnMgr.abort){oConnMgr.abort(oQueue.conn);oQueue.conn=null;}else{}}}if(oConnMgr&&oConnMgr.asyncRequest){var sLiveData=this.liveData;var isPost=this.connMethodPost;var sMethod=(isPost)?"POST":"GET";var sUri=(isPost||!lang.isValue(oRequest))?sLiveData:sLiveData+oRequest;var sRequest=(isPost)?oRequest:null;if(this.connXhrMode!="queueRequests"){oQueue.conn=oConnMgr.asyncRequest(sMethod,sUri,_xhrCallback,sRequest);}else{if(oQueue.conn){var allRequests=oQueue.requests;allRequests.push({request:oRequest,callback:_xhrCallback});if(!oQueue.interval){oQueue.interval=setInterval(function(){if(oConnMgr.isCallInProgress(oQueue.conn)){return ;}else{if(allRequests.length>0){sUri=(isPost||!lang.isValue(allRequests[0].request))?sLiveData:sLiveData+allRequests[0].request;sRequest=(isPost)?allRequests[0].request:null;oQueue.conn=oConnMgr.asyncRequest(sMethod,sUri,allRequests[0].callback,sRequest);allRequests.shift();}else{clearInterval(oQueue.interval);oQueue.interval=null;}}},50);}}else{oQueue.conn=oConnMgr.asyncRequest(sMethod,sUri,_xhrCallback,sRequest);}}}else{DS.issueCallback(oCallback,[oRequest,{error:true}],true,oCaller);}return tId;}});lang.augmentObject(util.XHRDataSource,DS);util.DataSource=function(oLiveData,oConfigs){oConfigs=oConfigs||{};var dataType=oConfigs.dataType;if(dataType){if(dataType==DS.TYPE_LOCAL){lang.augmentObject(util.DataSource,util.LocalDataSource);return new util.LocalDataSource(oLiveData,oConfigs);}else{if(dataType==DS.TYPE_XHR){lang.augmentObject(util.DataSource,util.XHRDataSource);return new util.XHRDataSource(oLiveData,oConfigs);}else{if(dataType==DS.TYPE_SCRIPTNODE){lang.augmentObject(util.DataSource,util.ScriptNodeDataSource);
-return new util.ScriptNodeDataSource(oLiveData,oConfigs);}else{if(dataType==DS.TYPE_JSFUNCTION){lang.augmentObject(util.DataSource,util.FunctionDataSource);return new util.FunctionDataSource(oLiveData,oConfigs);}}}}}if(YAHOO.lang.isString(oLiveData)){lang.augmentObject(util.DataSource,util.XHRDataSource);return new util.XHRDataSource(oLiveData,oConfigs);}else{if(YAHOO.lang.isFunction(oLiveData)){lang.augmentObject(util.DataSource,util.FunctionDataSource);return new util.FunctionDataSource(oLiveData,oConfigs);}else{lang.augmentObject(util.DataSource,util.LocalDataSource);return new util.LocalDataSource(oLiveData,oConfigs);}}};lang.augmentObject(util.DataSource,DS);})();YAHOO.util.Number={format:function(B,F){F=F||{};if(!YAHOO.lang.isNumber(B)){B*=1;}if(YAHOO.lang.isNumber(B)){var D=(B<0);var J=B+"";var G=(F.decimalSeparator)?F.decimalSeparator:".";var H;if(YAHOO.lang.isNumber(F.decimalPlaces)){var I=F.decimalPlaces;var C=Math.pow(10,I);J=Math.round(B*C)/C+"";H=J.lastIndexOf(".");if(I>0){if(H<0){J+=G;H=J.length-1;}else{if(G!=="."){J=J.replace(".",G);}}while((J.length-1-H)<I){J+="0";}}}if(F.thousandsSeparator){var L=F.thousandsSeparator;H=J.lastIndexOf(G);H=(H>-1)?H:J.length;var K=J.substring(H);var A=-1;for(var E=H;E>0;E--){A++;if((A%3===0)&&(E!==H)&&(!D||(E>1))){K=L+K;}K=J.charAt(E-1)+K;}J=K;}J=(F.prefix)?F.prefix+J:J;J=(F.suffix)?J+F.suffix:J;return J;}else{return B;}}};(function(){var A=function(C,E,D){if(typeof D==="undefined"){D=10;}for(;parseInt(C,10)<D&&D>1;D/=10){C=E.toString()+C;}return C.toString();};var B={formats:{a:function(D,C){return C.a[D.getDay()];},A:function(D,C){return C.A[D.getDay()];},b:function(D,C){return C.b[D.getMonth()];},B:function(D,C){return C.B[D.getMonth()];},C:function(C){return A(parseInt(C.getFullYear()/100,10),0);},d:["getDate","0"],e:["getDate"," "],g:function(C){return A(parseInt(B.formats.G(C)%100,10),0);},G:function(E){var F=E.getFullYear();var D=parseInt(B.formats.V(E),10);var C=parseInt(B.formats.W(E),10);if(C>D){F++;}else{if(C===0&&D>=52){F--;}}return F;},H:["getHours","0"],I:function(D){var C=D.getHours()%12;return A(C===0?12:C,0);},j:function(G){var F=new Date(""+G.getFullYear()+"/1/1 GMT");var D=new Date(""+G.getFullYear()+"/"+(G.getMonth()+1)+"/"+G.getDate()+" GMT");var C=D-F;var E=parseInt(C/60000/60/24,10)+1;return A(E,0,100);},k:["getHours"," "],l:function(D){var C=D.getHours()%12;return A(C===0?12:C," ");},m:function(C){return A(C.getMonth()+1,0);},M:["getMinutes","0"],p:function(D,C){return C.p[D.getHours()>=12?1:0];},P:function(D,C){return C.P[D.getHours()>=12?1:0];},s:function(D,C){return parseInt(D.getTime()/1000,10);},S:["getSeconds","0"],u:function(C){var D=C.getDay();return D===0?7:D;},U:function(F){var C=parseInt(B.formats.j(F),10);var E=6-F.getDay();var D=parseInt((C+E)/7,10);return A(D,0);},V:function(F){var E=parseInt(B.formats.W(F),10);var C=(new Date(""+F.getFullYear()+"/1/1")).getDay();var D=E+(C>4||C<=1?0:1);if(D===53&&(new Date(""+F.getFullYear()+"/12/31")).getDay()<4){D=1;}else{if(D===0){D=B.formats.V(new Date(""+(F.getFullYear()-1)+"/12/31"));}}return A(D,0);},w:"getDay",W:function(F){var C=parseInt(B.formats.j(F),10);var E=7-B.formats.u(F);var D=parseInt((C+E)/7,10);return A(D,0,10);},y:function(C){return A(C.getFullYear()%100,0);},Y:"getFullYear",z:function(E){var D=E.getTimezoneOffset();var C=A(parseInt(Math.abs(D/60),10),0);var F=A(Math.abs(D%60),0);return(D>0?"-":"+")+C+F;},Z:function(C){var D=C.toString().replace(/^.*:\d\d( GMT[+-]\d+)? \(?([A-Za-z ]+)\)?\d*$/,"$2").replace(/[a-z ]/g,"");if(D.length>4){D=B.formats.z(C);}return D;},"%":function(C){return"%";}},aggregates:{c:"locale",D:"%m/%d/%y",F:"%Y-%m-%d",h:"%b",n:"\n",r:"locale",R:"%H:%M",t:"\t",T:"%H:%M:%S",x:"locale",X:"locale"},format:function(G,F,D){F=F||{};if(!(G instanceof Date)){return YAHOO.lang.isValue(G)?G:"";}var H=F.format||"%m/%d/%Y";if(H==="YYYY/MM/DD"){H="%Y/%m/%d";}else{if(H==="DD/MM/YYYY"){H="%d/%m/%Y";}else{if(H==="MM/DD/YYYY"){H="%m/%d/%Y";}}}D=D||"en";if(!(D in YAHOO.util.DateLocale)){if(D.replace(/-[a-zA-Z]+$/,"") in YAHOO.util.DateLocale){D=D.replace(/-[a-zA-Z]+$/,"");}else{D="en";}}var J=YAHOO.util.DateLocale[D];var C=function(L,K){var M=B.aggregates[K];return(M==="locale"?J[K]:M);};var E=function(L,K){var M=B.formats[K];if(typeof M==="string"){return G[M]();}else{if(typeof M==="function"){return M.call(G,G,J);}else{if(typeof M==="object"&&typeof M[0]==="string"){return A(G[M[0]](),M[1]);}else{return K;}}}};while(H.match(/%[cDFhnrRtTxX]/)){H=H.replace(/%([cDFhnrRtTxX])/g,C);}var I=H.replace(/%([aAbBCdegGHIjklmMpPsSuUVwWyYzZ%])/g,E);C=E=undefined;return I;}};YAHOO.namespace("YAHOO.util");YAHOO.util.Date=B;YAHOO.util.DateLocale={a:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],A:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],b:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],B:["January","February","March","April","May","June","July","August","September","October","November","December"],c:"%a %d %b %Y %T %Z",p:["AM","PM"],P:["am","pm"],r:"%I:%M:%S %p",x:"%d/%m/%y",X:"%T"};YAHOO.util.DateLocale["en"]=YAHOO.lang.merge(YAHOO.util.DateLocale,{});YAHOO.util.DateLocale["en-US"]=YAHOO.lang.merge(YAHOO.util.DateLocale["en"],{c:"%a %d %b %Y %I:%M:%S %p %Z",x:"%m/%d/%Y",X:"%I:%M:%S %p"});YAHOO.util.DateLocale["en-GB"]=YAHOO.lang.merge(YAHOO.util.DateLocale["en"],{r:"%l:%M:%S %P %Z"});YAHOO.util.DateLocale["en-AU"]=YAHOO.lang.merge(YAHOO.util.DateLocale["en"]);})();YAHOO.register("datasource",YAHOO.util.DataSource,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/datasource/datasource.js b/eclipse.org-common/yui/2.6.0/build/datasource/datasource.js
deleted file mode 100644
index 5924001..0000000
--- a/eclipse.org-common/yui/2.6.0/build/datasource/datasource.js
+++ /dev/null
@@ -1,2816 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function () {
-
-var lang   = YAHOO.lang,
-    util   = YAHOO.util,
-    Ev     = util.Event;
-
-/**
- * The DataSource utility provides a common configurable interface for widgets to
- * access a variety of data, from JavaScript arrays to online database servers.
- *
- * @module datasource
- * @requires yahoo, event
- * @optional json, get, connection 
- * @title DataSource Utility
- */
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * Base class for the YUI DataSource utility.
- *
- * @namespace YAHOO.util
- * @class YAHOO.util.DataSourceBase
- * @constructor
- * @param oLiveData {HTMLElement}  Pointer to live data.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-util.DataSourceBase = function(oLiveData, oConfigs) {
-    if(oLiveData === null || oLiveData === undefined) {
-        return;
-    }
-    
-    this.liveData = oLiveData;
-    this._oQueue = {interval:null, conn:null, requests:[]};
-    this.responseSchema = {};   
-
-    // Set any config params passed in to override defaults
-    if(oConfigs && (oConfigs.constructor == Object)) {
-        for(var sConfig in oConfigs) {
-            if(sConfig) {
-                this[sConfig] = oConfigs[sConfig];
-            }
-        }
-    }
-    
-    // Validate and initialize public configs
-    var maxCacheEntries = this.maxCacheEntries;
-    if(!lang.isNumber(maxCacheEntries) || (maxCacheEntries < 0)) {
-        maxCacheEntries = 0;
-    }
-
-    // Initialize interval tracker
-    this._aIntervals = [];
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Custom Events
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Fired when a request is made to the local cache.
-     *
-     * @event cacheRequestEvent
-     * @param oArgs.request {Object} The request object.
-     * @param oArgs.callback {Object} The callback object.
-     * @param oArgs.caller {Object} (deprecated) Use callback.scope.
-     */
-    this.createEvent("cacheRequestEvent");
-
-    /**
-     * Fired when data is retrieved from the local cache.
-     *
-     * @event cacheResponseEvent
-     * @param oArgs.request {Object} The request object.
-     * @param oArgs.response {Object} The response object.
-     * @param oArgs.callback {Object} The callback object.
-     * @param oArgs.caller {Object} (deprecated) Use callback.scope.
-     */
-    this.createEvent("cacheResponseEvent");
-
-    /**
-     * Fired when a request is sent to the live data source.
-     *
-     * @event requestEvent
-     * @param oArgs.request {Object} The request object.
-     * @param oArgs.callback {Object} The callback object.
-     * @param oArgs.tId {Number} Transaction ID.     
-     * @param oArgs.caller {Object} (deprecated) Use callback.scope.
-     */
-    this.createEvent("requestEvent");
-
-    /**
-     * Fired when live data source sends response.
-     *
-     * @event responseEvent
-     * @param oArgs.request {Object} The request object.
-     * @param oArgs.response {Object} The raw response object.
-     * @param oArgs.callback {Object} The callback object.
-     * @param oArgs.tId {Number} Transaction ID.     
-     * @param oArgs.caller {Object} (deprecated) Use callback.scope.
-     */
-    this.createEvent("responseEvent");
-
-    /**
-     * Fired when response is parsed.
-     *
-     * @event responseParseEvent
-     * @param oArgs.request {Object} The request object.
-     * @param oArgs.response {Object} The parsed response object.
-     * @param oArgs.callback {Object} The callback object.
-     * @param oArgs.caller {Object} (deprecated) Use callback.scope.
-     */
-    this.createEvent("responseParseEvent");
-
-    /**
-     * Fired when response is cached.
-     *
-     * @event responseCacheEvent
-     * @param oArgs.request {Object} The request object.
-     * @param oArgs.response {Object} The parsed response object.
-     * @param oArgs.callback {Object} The callback object.
-     * @param oArgs.caller {Object} (deprecated) Use callback.scope.
-     */
-    this.createEvent("responseCacheEvent");
-    /**
-     * Fired when an error is encountered with the live data source.
-     *
-     * @event dataErrorEvent
-     * @param oArgs.request {Object} The request object.
-     * @param oArgs.callback {Object} The callback object.
-     * @param oArgs.caller {Object} (deprecated) Use callback.scope.
-     * @param oArgs.message {String} The error message.
-     */
-    this.createEvent("dataErrorEvent");
-
-    /**
-     * Fired when the local cache is flushed.
-     *
-     * @event cacheFlushEvent
-     */
-    this.createEvent("cacheFlushEvent");
-
-    var DS = util.DataSourceBase;
-    this._sName = "DataSource instance" + DS._nIndex;
-    DS._nIndex++;
-};
-
-var DS = util.DataSourceBase;
-
-lang.augmentObject(DS, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DataSourceBase public constants
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Type is unknown.
- *
- * @property TYPE_UNKNOWN
- * @type Number
- * @final
- * @default -1
- */
-TYPE_UNKNOWN : -1,
-
-/**
- * Type is a JavaScript Array.
- *
- * @property TYPE_JSARRAY
- * @type Number
- * @final
- * @default 0
- */
-TYPE_JSARRAY : 0,
-
-/**
- * Type is a JavaScript Function.
- *
- * @property TYPE_JSFUNCTION
- * @type Number
- * @final
- * @default 1
- */
-TYPE_JSFUNCTION : 1,
-
-/**
- * Type is hosted on a server via an XHR connection.
- *
- * @property TYPE_XHR
- * @type Number
- * @final
- * @default 2
- */
-TYPE_XHR : 2,
-
-/**
- * Type is JSON.
- *
- * @property TYPE_JSON
- * @type Number
- * @final
- * @default 3
- */
-TYPE_JSON : 3,
-
-/**
- * Type is XML.
- *
- * @property TYPE_XML
- * @type Number
- * @final
- * @default 4
- */
-TYPE_XML : 4,
-
-/**
- * Type is plain text.
- *
- * @property TYPE_TEXT
- * @type Number
- * @final
- * @default 5
- */
-TYPE_TEXT : 5,
-
-/**
- * Type is an HTML TABLE element. Data is parsed out of TR elements from all TBODY elements.
- *
- * @property TYPE_HTMLTABLE
- * @type Number
- * @final
- * @default 6
- */
-TYPE_HTMLTABLE : 6,
-
-/**
- * Type is hosted on a server via a dynamic script node.
- *
- * @property TYPE_SCRIPTNODE
- * @type Number
- * @final
- * @default 7
- */
-TYPE_SCRIPTNODE : 7,
-
-/**
- * Type is local.
- *
- * @property TYPE_LOCAL
- * @type Number
- * @final
- * @default 8
- */
-TYPE_LOCAL : 8,
-
-/**
- * Error message for invalid dataresponses.
- *
- * @property ERROR_DATAINVALID
- * @type String
- * @final
- * @default "Invalid data"
- */
-ERROR_DATAINVALID : "Invalid data",
-
-/**
- * Error message for null data responses.
- *
- * @property ERROR_DATANULL
- * @type String
- * @final
- * @default "Null data"
- */
-ERROR_DATANULL : "Null data",
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DataSourceBase private static properties
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Internal class variable to index multiple DataSource instances.
- *
- * @property DataSourceBase._nIndex
- * @type Number
- * @private
- * @static
- */
-_nIndex : 0,
-
-/**
- * Internal class variable to assign unique transaction IDs.
- *
- * @property DataSourceBase._nTransactionId
- * @type Number
- * @private
- * @static
- */
-_nTransactionId : 0,
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DataSourceBase public static methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Executes a configured callback.  For object literal callbacks, the third
- * param determines whether to execute the success handler or failure handler.
- *  
- * @method issueCallback
- * @param callback {Function|Object} the callback to execute
- * @param params {Array} params to be passed to the callback method
- * @param error {Boolean} whether an error occurred
- * @param scope {Object} the scope from which to execute the callback
- * (deprecated - use an object literal callback)
- * @static     
- */
-issueCallback : function (callback,params,error,scope) {
-    if (lang.isFunction(callback)) {
-        callback.apply(scope, params);
-    } else if (lang.isObject(callback)) {
-        scope = callback.scope || scope || window;
-        var callbackFunc = callback.success;
-        if (error) {
-            callbackFunc = callback.failure;
-        }
-        if (callbackFunc) {
-            callbackFunc.apply(scope, params.concat([callback.argument]));
-        }
-    }
-},
-
-/**
- * Converts data to type String.
- *
- * @method DataSourceBase.parseString
- * @param oData {String | Number | Boolean | Date | Array | Object} Data to parse.
- * The special values null and undefined will return null.
- * @return {Number} A string, or null.
- * @static
- */
-parseString : function(oData) {
-    // Special case null and undefined
-    if(!lang.isValue(oData)) {
-        return null;
-    }
-    
-    //Convert to string
-    var string = oData + "";
-
-    // Validate
-    if(lang.isString(string)) {
-        return string;
-    }
-    else {
-        return null;
-    }
-},
-
-/**
- * Converts data to type Number.
- *
- * @method DataSourceBase.parseNumber
- * @param oData {String | Number | Boolean | Null} Data to convert. Beware, null
- * returns as 0.
- * @return {Number} A number, or null if NaN.
- * @static
- */
-parseNumber : function(oData) {
-    //Convert to number
-    var number = oData * 1;
-    
-    // Validate
-    if(lang.isNumber(number)) {
-        return number;
-    }
-    else {
-        return null;
-    }
-},
-// Backward compatibility
-convertNumber : function(oData) {
-    return DS.parseNumber(oData);
-},
-
-/**
- * Converts data to type Date.
- *
- * @method DataSourceBase.parseDate
- * @param oData {Date | String | Number} Data to convert.
- * @return {Date} A Date instance.
- * @static
- */
-parseDate : function(oData) {
-    var date = null;
-    
-    //Convert to date
-    if(!(oData instanceof Date)) {
-        date = new Date(oData);
-    }
-    else {
-        return oData;
-    }
-    
-    // Validate
-    if(date instanceof Date) {
-        return date;
-    }
-    else {
-        return null;
-    }
-},
-// Backward compatibility
-convertDate : function(oData) {
-    return DS.parseDate(oData);
-}
-
-});
-
-// Done in separate step so referenced functions are defined.
-/**
- * Data parsing functions.
- * @property DataSource.Parser
- * @type Object
- * @static
- */
-DS.Parser = {
-    string   : DS.parseString,
-    number   : DS.parseNumber,
-    date     : DS.parseDate
-};
-
-// Prototype properties and methods
-DS.prototype = {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DataSourceBase private properties
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Name of DataSource instance.
- *
- * @property _sName
- * @type String
- * @private
- */
-_sName : null,
-
-/**
- * Local cache of data result object literals indexed chronologically.
- *
- * @property _aCache
- * @type Object[]
- * @private
- */
-_aCache : null,
-
-/**
- * Local queue of request connections, enabled if queue needs to be managed.
- *
- * @property _oQueue
- * @type Object
- * @private
- */
-_oQueue : null,
-
-/**
- * Array of polling interval IDs that have been enabled, needed to clear all intervals.
- *
- * @property _aIntervals
- * @type Array
- * @private
- */
-_aIntervals : null,
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DataSourceBase public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Max size of the local cache.  Set to 0 to turn off caching.  Caching is
- * useful to reduce the number of server connections.  Recommended only for data
- * sources that return comprehensive results for queries or when stale data is
- * not an issue.
- *
- * @property maxCacheEntries
- * @type Number
- * @default 0
- */
-maxCacheEntries : 0,
-
- /**
- * Pointer to live database.
- *
- * @property liveData
- * @type Object
- */
-liveData : null,
-
-/**
- * Where the live data is held:
- * 
- * <dl>  
- *    <dt>TYPE_UNKNOWN</dt>
- *    <dt>TYPE_LOCAL</dt>
- *    <dt>TYPE_XHR</dt>
- *    <dt>TYPE_SCRIPTNODE</dt>
- *    <dt>TYPE_JSFUNCTION</dt>
- * </dl> 
- *  
- * @property dataType
- * @type Number
- * @default YAHOO.util.DataSourceBase.TYPE_UNKNOWN
- *
- */
-dataType : DS.TYPE_UNKNOWN,
-
-/**
- * Format of response:
- *  
- * <dl>  
- *    <dt>TYPE_UNKNOWN</dt>
- *    <dt>TYPE_JSARRAY</dt>
- *    <dt>TYPE_JSON</dt>
- *    <dt>TYPE_XML</dt>
- *    <dt>TYPE_TEXT</dt>
- *    <dt>TYPE_HTMLTABLE</dt> 
- * </dl> 
- *
- * @property responseType
- * @type Number
- * @default YAHOO.util.DataSourceBase.TYPE_UNKNOWN
- */
-responseType : DS.TYPE_UNKNOWN,
-
-/**
- * Response schema object literal takes a combination of the following properties:
- *
- * <dl>
- * <dt>resultsList</dt> <dd>Pointer to array of tabular data</dd>
- * <dt>resultNode</dt> <dd>Pointer to node name of row data (XML data only)</dd>
- * <dt>recordDelim</dt> <dd>Record delimiter (text data only)</dd>
- * <dt>fieldDelim</dt> <dd>Field delimiter (text data only)</dd>
- * <dt>fields</dt> <dd>Array of field names (aka keys), or array of object literals
- * such as: {key:"fieldname",parser:YAHOO.util.DataSourceBase.parseDate}</dd>
- * <dt>metaFields</dt> <dd>Object literal of keys to include in the oParsedResponse.meta collection</dd>
- * <dt>metaNode</dt> <dd>Name of the node under which to search for meta information in XML response data</dd>
- * </dl>
- *
- * @property responseSchema
- * @type Object
- */
-responseSchema : null,
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DataSourceBase public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Public accessor to the unique name of the DataSource instance.
- *
- * @method toString
- * @return {String} Unique name of the DataSource instance.
- */
-toString : function() {
-    return this._sName;
-},
-
-/**
- * Overridable method passes request to cache and returns cached response if any,
- * refreshing the hit in the cache as the newest item. Returns null if there is
- * no cache hit.
- *
- * @method getCachedResponse
- * @param oRequest {Object} Request object.
- * @param oCallback {Object} Callback object.
- * @param oCaller {Object} (deprecated) Use callback object.
- * @return {Object} Cached response object or null.
- */
-getCachedResponse : function(oRequest, oCallback, oCaller) {
-    var aCache = this._aCache;
-
-    // If cache is enabled...
-    if(this.maxCacheEntries > 0) {        
-        // Initialize local cache
-        if(!aCache) {
-            this._aCache = [];
-        }
-        // Look in local cache
-        else {
-            var nCacheLength = aCache.length;
-            if(nCacheLength > 0) {
-                var oResponse = null;
-                this.fireEvent("cacheRequestEvent", {request:oRequest,callback:oCallback,caller:oCaller});
-        
-                // Loop through each cached element
-                for(var i = nCacheLength-1; i >= 0; i--) {
-                    var oCacheElem = aCache[i];
-        
-                    // Defer cache hit logic to a public overridable method
-                    if(this.isCacheHit(oRequest,oCacheElem.request)) {
-                        // The cache returned a hit!
-                        // Grab the cached response
-                        oResponse = oCacheElem.response;
-                        this.fireEvent("cacheResponseEvent", {request:oRequest,response:oResponse,callback:oCallback,caller:oCaller});
-                        
-                        // Refresh the position of the cache hit
-                        if(i < nCacheLength-1) {
-                            // Remove element from its original location
-                            aCache.splice(i,1);
-                            // Add as newest
-                            this.addToCache(oRequest, oResponse);
-                        }
-                        
-                        // Add a cache flag
-                        oResponse.cached = true;
-                        break;
-                    }
-                }
-                return oResponse;
-            }
-        }
-    }
-    else if(aCache) {
-        this._aCache = null;
-    }
-    return null;
-},
-
-/**
- * Default overridable method matches given request to given cached request.
- * Returns true if is a hit, returns false otherwise.  Implementers should
- * override this method to customize the cache-matching algorithm.
- *
- * @method isCacheHit
- * @param oRequest {Object} Request object.
- * @param oCachedRequest {Object} Cached request object.
- * @return {Boolean} True if given request matches cached request, false otherwise.
- */
-isCacheHit : function(oRequest, oCachedRequest) {
-    return (oRequest === oCachedRequest);
-},
-
-/**
- * Adds a new item to the cache. If cache is full, evicts the stalest item
- * before adding the new item.
- *
- * @method addToCache
- * @param oRequest {Object} Request object.
- * @param oResponse {Object} Response object to cache.
- */
-addToCache : function(oRequest, oResponse) {
-    var aCache = this._aCache;
-    if(!aCache) {
-        return;
-    }
-
-    // If the cache is full, make room by removing stalest element (index=0)
-    while(aCache.length >= this.maxCacheEntries) {
-        aCache.shift();
-    }
-
-    // Add to cache in the newest position, at the end of the array
-    var oCacheElem = {request:oRequest,response:oResponse};
-    aCache[aCache.length] = oCacheElem;
-    this.fireEvent("responseCacheEvent", {request:oRequest,response:oResponse});
-},
-
-/**
- * Flushes cache.
- *
- * @method flushCache
- */
-flushCache : function() {
-    if(this._aCache) {
-        this._aCache = [];
-        this.fireEvent("cacheFlushEvent");
-    }
-},
-
-/**
- * Sets up a polling mechanism to send requests at set intervals and forward
- * responses to given callback.
- *
- * @method setInterval
- * @param nMsec {Number} Length of interval in milliseconds.
- * @param oRequest {Object} Request object.
- * @param oCallback {Function} Handler function to receive the response.
- * @param oCaller {Object} (deprecated) Use oCallback.scope.
- * @return {Number} Interval ID.
- */
-setInterval : function(nMsec, oRequest, oCallback, oCaller) {
-    if(lang.isNumber(nMsec) && (nMsec >= 0)) {
-        var oSelf = this;
-        var nId = setInterval(function() {
-            oSelf.makeConnection(oRequest, oCallback, oCaller);
-        }, nMsec);
-        this._aIntervals.push(nId);
-        return nId;
-    }
-    else {
-    }
-},
-
-/**
- * Disables polling mechanism associated with the given interval ID.
- *
- * @method clearInterval
- * @param nId {Number} Interval ID.
- */
-clearInterval : function(nId) {
-    // Remove from tracker if there
-    var tracker = this._aIntervals || [];
-    for(var i=tracker.length-1; i>-1; i--) {
-        if(tracker[i] === nId) {
-            tracker.splice(i,1);
-            clearInterval(nId);
-        }
-    }
-},
-
-/**
- * Disables all known polling intervals.
- *
- * @method clearAllIntervals
- */
-clearAllIntervals : function() {
-    var tracker = this._aIntervals || [];
-    for(var i=tracker.length-1; i>-1; i--) {
-        clearInterval(tracker[i]);
-    }
-    tracker = [];
-},
-
-/**
- * First looks for cached response, then sends request to live data.
- *
- * @method sendRequest
- * @param oRequest {Object} Request object.
- * @param oCallback {Object} An object literal with the following properties:
- *     <dl>
- *     <dt><code>success</code></dt>
- *     <dd>The function to call when the data is ready.</dd>
- *     <dt><code>failure</code></dt>
- *     <dd>The function to call upon a response failure condition.</dd>
- *     <dt><code>scope</code></dt>
- *     <dd>The object to serve as the scope for the success and failure handlers.</dd>
- *     <dt><code>argument</code></dt>
- *     <dd>Arbitrary data that will be passed back to the success and failure handlers.</dd>
- *     </dl> 
- * @param oCaller {Object} (deprecated) Use oCallback.scope.
- * @return {Number} Transaction ID, or null if response found in cache.
- */
-sendRequest : function(oRequest, oCallback, oCaller) {
-    // First look in cache
-    var oCachedResponse = this.getCachedResponse(oRequest, oCallback, oCaller);
-    if(oCachedResponse) {
-        DS.issueCallback(oCallback,[oRequest,oCachedResponse],false,oCaller);
-        return null;
-    }
-
-
-    // Not in cache, so forward request to live data
-    return this.makeConnection(oRequest, oCallback, oCaller);
-},
-
-/**
- * Overridable default method generates a unique transaction ID and passes 
- * the live data reference directly to the  handleResponse function. This
- * method should be implemented by subclasses to achieve more complex behavior
- * or to access remote data.          
- *
- * @method makeConnection
- * @param oRequest {Object} Request object.
- * @param oCallback {Object} Callback object literal.
- * @param oCaller {Object} (deprecated) Use oCallback.scope.
- * @return {Number} Transaction ID.
- */
-makeConnection : function(oRequest, oCallback, oCaller) {
-    var tId = DS._nTransactionId++;
-    this.fireEvent("requestEvent", {tId:tId, request:oRequest,callback:oCallback,caller:oCaller});
-
-    /* accounts for the following cases:
-    YAHOO.util.DataSourceBase.TYPE_UNKNOWN
-    YAHOO.util.DataSourceBase.TYPE_JSARRAY
-    YAHOO.util.DataSourceBase.TYPE_JSON
-    YAHOO.util.DataSourceBase.TYPE_HTMLTABLE
-    YAHOO.util.DataSourceBase.TYPE_XML
-    YAHOO.util.DataSourceBase.TYPE_TEXT
-    */
-    var oRawResponse = this.liveData;
-    
-    this.handleResponse(oRequest, oRawResponse, oCallback, oCaller, tId);
-    return tId;
-},
-
-/**
- * Receives raw data response and type converts to XML, JSON, etc as necessary.
- * Forwards oFullResponse to appropriate parsing function to get turned into
- * oParsedResponse. Calls doBeforeCallback() and adds oParsedResponse to 
- * the cache when appropriate before calling issueCallback().
- * 
- * The oParsedResponse object literal has the following properties:
- * <dl>
- *     <dd><dt>tId {Number}</dt> Unique transaction ID</dd>
- *     <dd><dt>results {Array}</dt> Array of parsed data results</dd>
- *     <dd><dt>meta {Object}</dt> Object literal of meta values</dd> 
- *     <dd><dt>error {Boolean}</dt> (optional) True if there was an error</dd>
- *     <dd><dt>cached {Boolean}</dt> (optional) True if response was cached</dd>
- * </dl>
- *
- * @method handleResponse
- * @param oRequest {Object} Request object
- * @param oRawResponse {Object} The raw response from the live database.
- * @param oCallback {Object} Callback object literal.
- * @param oCaller {Object} (deprecated) Use oCallback.scope.
- * @param tId {Number} Transaction ID.
- */
-handleResponse : function(oRequest, oRawResponse, oCallback, oCaller, tId) {
-    this.fireEvent("responseEvent", {tId:tId, request:oRequest, response:oRawResponse,
-            callback:oCallback, caller:oCaller});
-    var xhr = (this.dataType == DS.TYPE_XHR) ? true : false;
-    var oParsedResponse = null;
-    var oFullResponse = oRawResponse;
-    
-    // Try to sniff data type if it has not been defined
-    if(this.responseType === DS.TYPE_UNKNOWN) {
-        var ctype = (oRawResponse && oRawResponse.getResponseHeader) ? oRawResponse.getResponseHeader["Content-Type"] : null;
-        if(ctype) {
-             // xml
-            if(ctype.indexOf("text/xml") > -1) {
-                this.responseType = DS.TYPE_XML;
-            }
-            else if(ctype.indexOf("application/json") > -1) { // json
-                this.responseType = DS.TYPE_JSON;
-            }
-            else if(ctype.indexOf("text/plain") > -1) { // text
-                this.responseType = DS.TYPE_TEXT;
-            }
-        }
-        else {
-            if(YAHOO.lang.isArray(oRawResponse)) { // array
-                this.responseType = DS.TYPE_JSARRAY;
-            }
-             // xml
-            else if(oRawResponse && oRawResponse.nodeType && oRawResponse.nodeType == 9) {
-                this.responseType = DS.TYPE_XML;
-            }
-            else if(oRawResponse && oRawResponse.nodeName && (oRawResponse.nodeName.toLowerCase() == "table")) { // table
-                this.responseType = DS.TYPE_HTMLTABLE;
-            }    
-            else if(YAHOO.lang.isObject(oRawResponse)) { // json
-                this.responseType = DS.TYPE_JSON;
-            }
-            else if(YAHOO.lang.isString(oRawResponse)) { // text
-                this.responseType = DS.TYPE_TEXT;
-            }
-        }
-    }
-
-    switch(this.responseType) {
-        case DS.TYPE_JSARRAY:
-            if(xhr && oRawResponse && oRawResponse.responseText) {
-                oFullResponse = oRawResponse.responseText; 
-            }
-            oFullResponse = this.doBeforeParseData(oRequest, oFullResponse, oCallback);
-            oParsedResponse = this.parseArrayData(oRequest, oFullResponse);
-            break;
-        case DS.TYPE_JSON:
-            if(xhr && oRawResponse && oRawResponse.responseText) {
-                oFullResponse = oRawResponse.responseText;
-            }
-            try {
-                // Convert to JSON object if it's a string
-                if(lang.isString(oFullResponse)) {
-                    // Check for YUI JSON Util
-                    if(lang.JSON) {
-                        oFullResponse = lang.JSON.parse(oFullResponse);
-                    }
-                    // Look for JSON parsers using an API similar to json2.js
-                    else if(window.JSON && JSON.parse) {
-                        oFullResponse = JSON.parse(oFullResponse);
-                    }
-                    // Look for JSON parsers using an API similar to json.js
-                    else if(oFullResponse.parseJSON) {
-                        oFullResponse = oFullResponse.parseJSON();
-                    }
-                    // No JSON lib found so parse the string
-                    else {
-                        // Trim leading spaces
-                        while (oFullResponse.length > 0 &&
-                                (oFullResponse.charAt(0) != "{") &&
-                                (oFullResponse.charAt(0) != "[")) {
-                            oFullResponse = oFullResponse.substring(1, oFullResponse.length);
-                        }
-    
-                        if(oFullResponse.length > 0) {
-                            // Strip extraneous stuff at the end
-                            var objEnd = Math.max(oFullResponse.lastIndexOf("]"),oFullResponse.lastIndexOf("}"));
-                            oFullResponse = oFullResponse.substring(0,objEnd+1);
-    
-                            // Turn the string into an object literal...
-                            // ...eval is necessary here
-                            oFullResponse = eval("(" + oFullResponse + ")");
-    
-                        }
-                    }
-                }
-            }
-            catch(e) {
-            }
-
-            oFullResponse = this.doBeforeParseData(oRequest, oFullResponse, oCallback);
-            oParsedResponse = this.parseJSONData(oRequest, oFullResponse);
-            break;
-        case DS.TYPE_HTMLTABLE:
-            if(xhr && oRawResponse.responseText) {
-                oFullResponse = oRawResponse.responseText;
-            }
-            oFullResponse = this.doBeforeParseData(oRequest, oFullResponse, oCallback);
-            oParsedResponse = this.parseHTMLTableData(oRequest, oFullResponse);
-            break;
-        case DS.TYPE_XML:
-            if(xhr && oRawResponse.responseXML) {
-                oFullResponse = oRawResponse.responseXML;
-            }
-            oFullResponse = this.doBeforeParseData(oRequest, oFullResponse, oCallback);
-            oParsedResponse = this.parseXMLData(oRequest, oFullResponse);
-            break;
-        case DS.TYPE_TEXT:
-            if(xhr && lang.isString(oRawResponse.responseText)) {
-                oFullResponse = oRawResponse.responseText;
-            }
-            oFullResponse = this.doBeforeParseData(oRequest, oFullResponse, oCallback);
-            oParsedResponse = this.parseTextData(oRequest, oFullResponse);
-            break;
-        default:
-            oFullResponse = this.doBeforeParseData(oRequest, oFullResponse, oCallback);
-            oParsedResponse = this.parseData(oRequest, oFullResponse);
-            break;
-    }
-
-
-    // Clean up for consistent signature
-    oParsedResponse = oParsedResponse || {};
-    if(!oParsedResponse.results) {
-        oParsedResponse.results = [];
-    }
-    if(!oParsedResponse.meta) {
-        oParsedResponse.meta = {};
-    }
-
-    // Success
-    if(oParsedResponse && !oParsedResponse.error) {
-        // Last chance to touch the raw response or the parsed response
-        oParsedResponse = this.doBeforeCallback(oRequest, oFullResponse, oParsedResponse, oCallback);
-        this.fireEvent("responseParseEvent", {request:oRequest,
-                response:oParsedResponse, callback:oCallback, caller:oCaller});
-        // Cache the response
-        this.addToCache(oRequest, oParsedResponse);
-    }
-    // Error
-    else {
-        // Be sure the error flag is on
-        oParsedResponse.error = true;
-        this.fireEvent("dataErrorEvent", {request:oRequest, response: oRawResponse, callback:oCallback, 
-                caller:oCaller, message:DS.ERROR_DATANULL});
-    }
-
-    // Send the response back to the caller
-    oParsedResponse.tId = tId;
-    DS.issueCallback(oCallback,[oRequest,oParsedResponse],oParsedResponse.error,oCaller);
-},
-
-/**
- * Overridable method gives implementers access to the original full response
- * before the data gets parsed. Implementers should take care not to return an
- * unparsable or otherwise invalid response.
- *
- * @method doBeforeParseData
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full response from the live database.
- * @param oCallback {Object} The callback object.  
- * @return {Object} Full response for parsing.
-  
- */
-doBeforeParseData : function(oRequest, oFullResponse, oCallback) {
-    return oFullResponse;
-},
-
-/**
- * Overridable method gives implementers access to the original full response and
- * the parsed response (parsed against the given schema) before the data
- * is added to the cache (if applicable) and then sent back to callback function.
- * This is your chance to access the raw response and/or populate the parsed
- * response with any custom data.
- *
- * @method doBeforeCallback
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full response from the live database.
- * @param oParsedResponse {Object} The parsed response to return to calling object.
- * @param oCallback {Object} The callback object. 
- * @return {Object} Parsed response object.
- */
-doBeforeCallback : function(oRequest, oFullResponse, oParsedResponse, oCallback) {
-    return oParsedResponse;
-},
-
-/**
- * Overridable method parses data of generic RESPONSE_TYPE into a response object.
- *
- * @method parseData
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full Array from the live database.
- * @return {Object} Parsed response object with the following properties:<br>
- *     - results {Array} Array of parsed data results<br>
- *     - meta {Object} Object literal of meta values<br>
- *     - error {Boolean} (optional) True if there was an error<br>
- */
-parseData : function(oRequest, oFullResponse) {
-    if(lang.isValue(oFullResponse)) {
-        var oParsedResponse = {results:oFullResponse,meta:{}};
-        return oParsedResponse;
-
-    }
-    return null;
-},
-
-/**
- * Overridable method parses Array data into a response object.
- *
- * @method parseArrayData
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full Array from the live database.
- * @return {Object} Parsed response object with the following properties:<br>
- *     - results (Array) Array of parsed data results<br>
- *     - error (Boolean) True if there was an error
- */
-parseArrayData : function(oRequest, oFullResponse) {
-    if(lang.isArray(oFullResponse)) {
-        var results = [],
-            i, j,
-            rec, field, data;
-        
-        // Parse for fields
-        if(lang.isArray(this.responseSchema.fields)) {
-            var fields = this.responseSchema.fields;
-            for (i = fields.length - 1; i >= 0; --i) {
-                if (typeof fields[i] !== 'object') {
-                    fields[i] = { key : fields[i] };
-                }
-            }
-
-            var parsers = {}, p;
-            for (i = fields.length - 1; i >= 0; --i) {
-                p = (typeof fields[i].parser === 'function' ?
-                          fields[i].parser :
-                          DS.Parser[fields[i].parser+'']) || fields[i].converter;
-                if (p) {
-                    parsers[fields[i].key] = p;
-                }
-            }
-
-            var arrType = lang.isArray(oFullResponse[0]);
-            for(i=oFullResponse.length-1; i>-1; i--) {
-                var oResult = {};
-                rec = oFullResponse[i];
-                if (typeof rec === 'object') {
-                    for(j=fields.length-1; j>-1; j--) {
-                        field = fields[j];
-                        data = arrType ? rec[j] : rec[field.key];
-
-                        if (parsers[field.key]) {
-                            data = parsers[field.key].call(this,data);
-                        }
-
-                        // Safety measure
-                        if(data === undefined) {
-                            data = null;
-                        }
-
-                        oResult[field.key] = data;
-                    }
-                }
-                else if (lang.isString(rec)) {
-                    for(j=fields.length-1; j>-1; j--) {
-                        field = fields[j];
-                        data = rec;
-
-                        if (parsers[field.key]) {
-                            data = parsers[field.key].call(this,data);
-                        }
-
-                        // Safety measure
-                        if(data === undefined) {
-                            data = null;
-                        }
-
-                        oResult[field.key] = data;
-                    }                
-                }
-                results[i] = oResult;
-            }    
-        }
-        // Return entire data set
-        else {
-            results = oFullResponse;
-        }
-        var oParsedResponse = {results:results};
-        return oParsedResponse;
-
-    }
-    return null;
-},
-
-/**
- * Overridable method parses plain text data into a response object.
- *
- * @method parseTextData
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full text response from the live database.
- * @return {Object} Parsed response object with the following properties:<br>
- *     - results (Array) Array of parsed data results<br>
- *     - error (Boolean) True if there was an error
- */
-parseTextData : function(oRequest, oFullResponse) {
-    if(lang.isString(oFullResponse)) {
-        if(lang.isString(this.responseSchema.recordDelim) &&
-                lang.isString(this.responseSchema.fieldDelim)) {
-            var oParsedResponse = {results:[]};
-            var recDelim = this.responseSchema.recordDelim;
-            var fieldDelim = this.responseSchema.fieldDelim;
-            if(oFullResponse.length > 0) {
-                // Delete the last line delimiter at the end of the data if it exists
-                var newLength = oFullResponse.length-recDelim.length;
-                if(oFullResponse.substr(newLength) == recDelim) {
-                    oFullResponse = oFullResponse.substr(0, newLength);
-                }
-                if(oFullResponse.length > 0) {
-                    // Split along record delimiter to get an array of strings
-                    var recordsarray = oFullResponse.split(recDelim);
-                    // Cycle through each record
-                    for(var i = 0, len = recordsarray.length, recIdx = 0; i < len; ++i) {
-                        var bError = false,
-                            sRecord = recordsarray[i];
-                        if (lang.isString(sRecord) && (sRecord.length > 0)) {
-                            // Split each record along field delimiter to get data
-                            var fielddataarray = recordsarray[i].split(fieldDelim);
-                            var oResult = {};
-                            
-                            // Filter for fields data
-                            if(lang.isArray(this.responseSchema.fields)) {
-                                var fields = this.responseSchema.fields;
-                                for(var j=fields.length-1; j>-1; j--) {
-                                    try {
-                                        // Remove quotation marks from edges, if applicable
-                                        var data = fielddataarray[j];
-                                        if (lang.isString(data)) {
-                                            if(data.charAt(0) == "\"") {
-                                                data = data.substr(1);
-                                            }
-                                            if(data.charAt(data.length-1) == "\"") {
-                                                data = data.substr(0,data.length-1);
-                                            }
-                                            var field = fields[j];
-                                            var key = (lang.isValue(field.key)) ? field.key : field;
-                                            // Backward compatibility
-                                            if(!field.parser && field.converter) {
-                                                field.parser = field.converter;
-                                            }
-                                            var parser = (typeof field.parser === 'function') ?
-                                                field.parser :
-                                                DS.Parser[field.parser+''];
-                                            if(parser) {
-                                                data = parser.call(this, data);
-                                            }
-                                            // Safety measure
-                                            if(data === undefined) {
-                                                data = null;
-                                            }
-                                            oResult[key] = data;
-                                        }
-                                        else {
-                                            bError = true;
-                                        }
-                                    }
-                                    catch(e) {
-                                        bError = true;
-                                    }
-                                }
-                            }            
-                            // No fields defined so pass along all data as an array
-                            else {
-                                oResult = fielddataarray;
-                            }
-                            if(!bError) {
-                                oParsedResponse.results[recIdx++] = oResult;
-                            }
-                        }
-                    }
-                }
-            }
-            return oParsedResponse;
-        }
-    }
-    return null;
-            
-},
-
-
-/**
- * Overridable method parses XML data for one result into an object literal.
- *
- * @method parseXMLResult
- * @param result {XML} XML for one result.
- * @return {Object} Object literal of data for one result.
- */
-parseXMLResult : function(result) {
-    var oResult = {},
-        schema = this.responseSchema;
-        
-    try {
-        // Loop through each data field in each result using the schema
-        for(var m = schema.fields.length-1; m >= 0 ; m--) {
-            var field = schema.fields[m];
-            var key = (lang.isValue(field.key)) ? field.key : field;
-            var data = null;
-            // Values may be held in an attribute...
-            var xmlAttr = result.attributes.getNamedItem(key);
-            if(xmlAttr) {
-                data = xmlAttr.value;
-            }
-            // ...or in a node
-            else {
-                var xmlNode = result.getElementsByTagName(key);
-                if(xmlNode && xmlNode.item(0) && xmlNode.item(0)) {
-                    data = xmlNode.item(0).firstChild.nodeValue;
-                    var item = xmlNode.item(0);
-                    // For IE, then DOM...
-                    data = (item.text) ? item.text : (item.textContent) ? item.textContent : null;
-                    // ...then fallback, but check for multiple child nodes
-                    if(!data) {
-                        var datapieces = [];
-                        for(var j=0, len=item.childNodes.length; j<len; j++) {
-                            if(item.childNodes[j].nodeValue) {
-                                datapieces[datapieces.length] = item.childNodes[j].nodeValue;
-                            }
-                        }
-                        if(datapieces.length > 0) {
-                            data = datapieces.join("");
-                        }
-                    }
-                }
-            }
-            // Safety net
-            if(data === null) {
-                   data = "";
-            }
-            // Backward compatibility
-            if(!field.parser && field.converter) {
-                field.parser = field.converter;
-            }
-            var parser = (typeof field.parser === 'function') ?
-                field.parser :
-                DS.Parser[field.parser+''];
-            if(parser) {
-                data = parser.call(this, data);
-            }
-            // Safety measure
-            if(data === undefined) {
-                data = null;
-            }
-            oResult[key] = data;
-        }
-    }
-    catch(e) {
-    }
-
-    return oResult;
-},
-
-
-
-/**
- * Overridable method parses XML data into a response object.
- *
- * @method parseXMLData
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full XML response from the live database.
- * @return {Object} Parsed response object with the following properties<br>
- *     - results (Array) Array of parsed data results<br>
- *     - error (Boolean) True if there was an error
- */
-parseXMLData : function(oRequest, oFullResponse) {
-    var bError = false,
-        schema = this.responseSchema,
-        oParsedResponse = {meta:{}},
-        xmlList = null,
-        metaNode      = schema.metaNode,
-        metaLocators  = schema.metaFields || {},
-        i,k,loc,v;
-
-    // In case oFullResponse is something funky
-    try {
-        xmlList = (schema.resultNode) ?
-            oFullResponse.getElementsByTagName(schema.resultNode) :
-            null;
-
-        // Pull any meta identified
-        metaNode = metaNode ? oFullResponse.getElementsByTagName(metaNode)[0] :
-                   oFullResponse;
-
-        if (metaNode) {
-            for (k in metaLocators) {
-                if (lang.hasOwnProperty(metaLocators, k)) {
-                    loc = metaLocators[k];
-                    // Look for a node
-                    v = metaNode.getElementsByTagName(loc)[0];
-
-                    if (v) {
-                        v = v.firstChild.nodeValue;
-                    } else {
-                        // Look for an attribute
-                        v = metaNode.attributes.getNamedItem(loc);
-                        if (v) {
-                            v = v.value;
-                        }
-                    }
-
-                    if (lang.isValue(v)) {
-                        oParsedResponse.meta[k] = v;
-                    }
-                }
-                
-            }
-        }
-    }
-    catch(e) {
-    }
-    if(!xmlList || !lang.isArray(schema.fields)) {
-        bError = true;
-    }
-    // Loop through each result
-    else {
-        oParsedResponse.results = [];
-        for(i = xmlList.length-1; i >= 0 ; --i) {
-            var oResult = this.parseXMLResult(xmlList.item(i));
-            // Capture each array of values into an array of results
-            oParsedResponse.results[i] = oResult;
-        }
-    }
-    if(bError) {
-        oParsedResponse.error = true;
-    }
-    else {
-    }
-    return oParsedResponse;
-},
-
-/**
- * Overridable method parses JSON data into a response object.
- *
- * @method parseJSONData
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full JSON from the live database.
- * @return {Object} Parsed response object with the following properties<br>
- *     - results (Array) Array of parsed data results<br>
- *     - error (Boolean) True if there was an error
- */
-parseJSONData : function(oRequest, oFullResponse) {
-    var oParsedResponse = {results:[],meta:{}};
-    
-    if(lang.isObject(oFullResponse) && this.responseSchema.resultsList) {
-        var schema = this.responseSchema,
-            fields          = schema.fields,
-            resultsList     = oFullResponse,
-            results         = [],
-            metaFields      = schema.metaFields || {},
-            fieldParsers    = [],
-            fieldPaths      = [],
-            simpleFields    = [],
-            bError          = false,
-            i,len,j,v,key,parser,path;
-
-        // Function to convert the schema's fields into walk paths
-        var buildPath = function (needle) {
-            var path = null, keys = [], i = 0;
-            if (needle) {
-                // Strip the ["string keys"] and [1] array indexes
-                needle = needle.
-                    replace(/\[(['"])(.*?)\1\]/g,
-                    function (x,$1,$2) {keys[i]=$2;return '.@'+(i++);}).
-                    replace(/\[(\d+)\]/g,
-                    function (x,$1) {keys[i]=parseInt($1,10)|0;return '.@'+(i++);}).
-                    replace(/^\./,''); // remove leading dot
-
-                // If the cleaned needle contains invalid characters, the
-                // path is invalid
-                if (!/[^\w\.\$@]/.test(needle)) {
-                    path = needle.split('.');
-                    for (i=path.length-1; i >= 0; --i) {
-                        if (path[i].charAt(0) === '@') {
-                            path[i] = keys[parseInt(path[i].substr(1),10)];
-                        }
-                    }
-                }
-                else {
-                }
-            }
-            return path;
-        };
-
-
-        // Function to walk a path and return the pot of gold
-        var walkPath = function (path, origin) {
-            var v=origin,i=0,len=path.length;
-            for (;i<len && v;++i) {
-                v = v[path[i]];
-            }
-            return v;
-        };
-
-        // Parse the response
-        // Step 1. Pull the resultsList from oFullResponse (default assumes
-        // oFullResponse IS the resultsList)
-        path = buildPath(schema.resultsList);
-        if (path) {
-            resultsList = walkPath(path, oFullResponse);
-            if (resultsList === undefined) {
-                bError = true;
-            }
-        } else {
-            bError = true;
-        }
-        
-        if (!resultsList) {
-            resultsList = [];
-        }
-
-        if (!lang.isArray(resultsList)) {
-            resultsList = [resultsList];
-        }
-
-        if (!bError) {
-            // Step 2. Parse out field data if identified
-            if(schema.fields) {
-                var field;
-                // Build the field parser map and location paths
-                for (i=0, len=fields.length; i<len; i++) {
-                    field = fields[i];
-                    key    = field.key || field;
-                    parser = ((typeof field.parser === 'function') ?
-                        field.parser :
-                        DS.Parser[field.parser+'']) || field.converter;
-                    path   = buildPath(key);
-    
-                    if (parser) {
-                        fieldParsers[fieldParsers.length] = {key:key,parser:parser};
-                    }
-    
-                    if (path) {
-                        if (path.length > 1) {
-                            fieldPaths[fieldPaths.length] = {key:key,path:path};
-                        } else {
-                            simpleFields[simpleFields.length] = {key:key,path:path[0]};
-                        }
-                    } else {
-                    }
-                }
-
-                // Process the results, flattening the records and/or applying parsers if needed
-                //if (fieldParsers.length || fieldPaths.length) {
-                    for (i = resultsList.length - 1; i >= 0; --i) {
-                        var r = resultsList[i], rec = {};
-                        for (j = simpleFields.length - 1; j >= 0; --j) {
-                            // Bug 1777850: data might be held in an array
-                            rec[simpleFields[j].key] =
-                                    (r[simpleFields[j].path] !== undefined) ?
-                                    r[simpleFields[j].path] : r[j];
-                        }
-
-                        for (j = fieldPaths.length - 1; j >= 0; --j) {
-                            rec[fieldPaths[j].key] = walkPath(fieldPaths[j].path,r);
-                        }
-
-                        for (j = fieldParsers.length - 1; j >= 0; --j) {
-                            var p = fieldParsers[j].key;
-                            rec[p] = fieldParsers[j].parser(rec[p]);
-                            if (rec[p] === undefined) {
-                                rec[p] = null;
-                            }
-                        }
-                        results[i] = rec;
-                    }
-                //}
-            }
-            else {
-                results = resultsList;
-            }
-
-            for (key in metaFields) {
-                if (lang.hasOwnProperty(metaFields,key)) {
-                    path = buildPath(metaFields[key]);
-                    if (path) {
-                        v = walkPath(path, oFullResponse);
-                        oParsedResponse.meta[key] = v;
-                    }
-                }
-            }
-
-        } else {
-
-            oParsedResponse.error = true;
-        }
-
-        oParsedResponse.results = results;
-    }
-    else {
-        oParsedResponse.error = true;
-    }
-
-    return oParsedResponse;
-},
-
-/**
- * Overridable method parses an HTML TABLE element reference into a response object.
- * Data is parsed out of TR elements from all TBODY elements. 
- *
- * @method parseHTMLTableData
- * @param oRequest {Object} Request object.
- * @param oFullResponse {Object} The full HTML element reference from the live database.
- * @return {Object} Parsed response object with the following properties<br>
- *     - results (Array) Array of parsed data results<br>
- *     - error (Boolean) True if there was an error
- */
-parseHTMLTableData : function(oRequest, oFullResponse) {
-    var bError = false;
-    var elTable = oFullResponse;
-    var fields = this.responseSchema.fields;
-    var oParsedResponse = {results:[]};
-
-    // Iterate through each TBODY
-    for(var i=0; i<elTable.tBodies.length; i++) {
-        var elTbody = elTable.tBodies[i];
-
-        // Iterate through each TR
-        for(var j=elTbody.rows.length-1; j>-1; j--) {
-            var elRow = elTbody.rows[j];
-            var oResult = {};
-            
-            for(var k=fields.length-1; k>-1; k--) {
-                var field = fields[k];
-                var key = (lang.isValue(field.key)) ? field.key : field;
-                var data = elRow.cells[k].innerHTML;
-
-                // Backward compatibility
-                if(!field.parser && field.converter) {
-                    field.parser = field.converter;
-                }
-                var parser = (typeof field.parser === 'function') ?
-                    field.parser :
-                    DS.Parser[field.parser+''];
-                if(parser) {
-                    data = parser.call(this, data);
-                }
-                // Safety measure
-                if(data === undefined) {
-                    data = null;
-                }
-                oResult[key] = data;
-            }
-            oParsedResponse.results[j] = oResult;
-        }
-    }
-
-    if(bError) {
-        oParsedResponse.error = true;
-    }
-    else {
-    }
-    return oParsedResponse;
-}
-
-};
-
-// DataSourceBase uses EventProvider
-lang.augmentProto(DS, util.EventProvider);
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * LocalDataSource class for in-memory data structs including JavaScript arrays,
- * JavaScript object literals (JSON), XML documents, and HTML tables.
- *
- * @namespace YAHOO.util
- * @class YAHOO.util.LocalDataSource
- * @extends YAHOO.util.DataSourceBase 
- * @constructor
- * @param oLiveData {HTMLElement}  Pointer to live data.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-util.LocalDataSource = function(oLiveData, oConfigs) {
-    this.dataType = DS.TYPE_LOCAL;
-    
-    if(oLiveData) {
-        if(YAHOO.lang.isArray(oLiveData)) { // array
-            this.responseType = DS.TYPE_JSARRAY;
-        }
-         // xml
-        else if(oLiveData.nodeType && oLiveData.nodeType == 9) {
-            this.responseType = DS.TYPE_XML;
-        }
-        else if(oLiveData.nodeName && (oLiveData.nodeName.toLowerCase() == "table")) { // table
-            this.responseType = DS.TYPE_HTMLTABLE;
-            oLiveData = oLiveData.cloneNode(true);
-        }    
-        else if(YAHOO.lang.isString(oLiveData)) { // text
-            this.responseType = DS.TYPE_TEXT;
-        }
-        else if(YAHOO.lang.isObject(oLiveData)) { // json
-            this.responseType = DS.TYPE_JSON;
-        }
-    }
-    else {
-        oLiveData = [];
-        this.responseType = DS.TYPE_JSARRAY;
-    }
-    
-    this.constructor.superclass.constructor.call(this, oLiveData, oConfigs); 
-};
-
-// LocalDataSource extends DataSourceBase
-lang.extend(util.LocalDataSource, DS);
-
-// Copy static members to LocalDataSource class
-lang.augmentObject(util.LocalDataSource, DS);
-
-
-
-
-
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * FunctionDataSource class for JavaScript functions.
- *
- * @namespace YAHOO.util
- * @class YAHOO.util.FunctionDataSource
- * @extends YAHOO.util.DataSourceBase  
- * @constructor
- * @param oLiveData {HTMLElement}  Pointer to live data.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-util.FunctionDataSource = function(oLiveData, oConfigs) {
-    this.dataType = DS.TYPE_JSFUNCTION;
-    oLiveData = oLiveData || function() {};
-    
-    this.constructor.superclass.constructor.call(this, oLiveData, oConfigs); 
-};
-
-// FunctionDataSource extends DataSourceBase
-lang.extend(util.FunctionDataSource, DS, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// FunctionDataSource public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Overriding method passes query to a function. The returned response is then
- * forwarded to the handleResponse function.
- *
- * @method makeConnection
- * @param oRequest {Object} Request object.
- * @param oCallback {Object} Callback object literal.
- * @param oCaller {Object} (deprecated) Use oCallback.scope.
- * @return {Number} Transaction ID.
- */
-makeConnection : function(oRequest, oCallback, oCaller) {
-    var tId = DS._nTransactionId++;
-    this.fireEvent("requestEvent", {tId:tId,request:oRequest,callback:oCallback,caller:oCaller});
-
-    // Pass the request in as a parameter and
-    // forward the return value to the handler
-    var oRawResponse = this.liveData(oRequest);
-    
-    // Try to sniff data type if it has not been defined
-    if(this.responseType === DS.TYPE_UNKNOWN) {
-        if(YAHOO.lang.isArray(oRawResponse)) { // array
-            this.responseType = DS.TYPE_JSARRAY;
-        }
-         // xml
-        else if(oRawResponse && oRawResponse.nodeType && oRawResponse.nodeType == 9) {
-            this.responseType = DS.TYPE_XML;
-        }
-        else if(oRawResponse && oRawResponse.nodeName && (oRawResponse.nodeName.toLowerCase() == "table")) { // table
-            this.responseType = DS.TYPE_HTMLTABLE;
-        }    
-        else if(YAHOO.lang.isObject(oRawResponse)) { // json
-            this.responseType = DS.TYPE_JSON;
-        }
-        else if(YAHOO.lang.isString(oRawResponse)) { // text
-            this.responseType = DS.TYPE_TEXT;
-        }
-    }
-
-    this.handleResponse(oRequest, oRawResponse, oCallback, oCaller, tId);
-    return tId;
-}
-
-});
-
-// Copy static members to FunctionDataSource class
-lang.augmentObject(util.FunctionDataSource, DS);
-
-
-
-
-
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * ScriptNodeDataSource class for accessing remote data via the YUI Get Utility. 
- *
- * @namespace YAHOO.util
- * @class YAHOO.util.ScriptNodeDataSource
- * @extends YAHOO.util.DataSourceBase  
- * @constructor
- * @param oLiveData {HTMLElement}  Pointer to live data.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-util.ScriptNodeDataSource = function(oLiveData, oConfigs) {
-    this.dataType = DS.TYPE_SCRIPTNODE;
-    oLiveData = oLiveData || "";
-    
-    this.constructor.superclass.constructor.call(this, oLiveData, oConfigs); 
-};
-
-// ScriptNodeDataSource extends DataSourceBase
-lang.extend(util.ScriptNodeDataSource, DS, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// ScriptNodeDataSource public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Alias to YUI Get Utility, to allow implementers to use a custom class.
- *
- * @property getUtility
- * @type Object
- * @default YAHOO.util.Get
- */
-getUtility : util.Get,
-
-/**
- * Defines request/response management in the following manner:
- * <dl>
- *     <!--<dt>queueRequests</dt>
- *     <dd>If a request is already in progress, wait until response is returned before sending the next request.</dd>
- *     <dt>cancelStaleRequests</dt>
- *     <dd>If a request is already in progress, cancel it before sending the next request.</dd>-->
- *     <dt>ignoreStaleResponses</dt>
- *     <dd>Send all requests, but handle only the response for the most recently sent request.</dd>
- *     <dt>allowAll</dt>
- *     <dd>Send all requests and handle all responses.</dd>
- * </dl>
- *
- * @property asyncMode
- * @type String
- * @default "allowAll"
- */
-asyncMode : "allowAll",
-
-/**
- * Callback string parameter name sent to the remote script. By default,
- * requests are sent to
- * &#60;URI&#62;?&#60;scriptCallbackParam&#62;=callbackFunction
- *
- * @property scriptCallbackParam
- * @type String
- * @default "callback"
- */
-scriptCallbackParam : "callback",
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// ScriptNodeDataSource public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Creates a request callback that gets appended to the script URI. Implementers
- * can customize this string to match their server's query syntax.
- *
- * @method generateRequestCallback
- * @return {String} String fragment that gets appended to script URI that 
- * specifies the callback function 
- */
-generateRequestCallback : function(id) {
-    return "&" + this.scriptCallbackParam + "=YAHOO.util.ScriptNodeDataSource.callbacks["+id+"]" ;
-},
-
-/**
- * Overriding method passes query to Get Utility. The returned
- * response is then forwarded to the handleResponse function.
- *
- * @method makeConnection
- * @param oRequest {Object} Request object.
- * @param oCallback {Object} Callback object literal.
- * @param oCaller {Object} (deprecated) Use oCallback.scope.
- * @return {Number} Transaction ID.
- */
-makeConnection : function(oRequest, oCallback, oCaller) {
-    var tId = DS._nTransactionId++;
-    this.fireEvent("requestEvent", {tId:tId,request:oRequest,callback:oCallback,caller:oCaller});
-    
-    // If there are no global pending requests, it is safe to purge global callback stack and global counter
-    if(util.ScriptNodeDataSource._nPending === 0) {
-        util.ScriptNodeDataSource.callbacks = [];
-        util.ScriptNodeDataSource._nId = 0;
-    }
-    
-    // ID for this request
-    var id = util.ScriptNodeDataSource._nId;
-    util.ScriptNodeDataSource._nId++;
-    
-    // Dynamically add handler function with a closure to the callback stack
-    var oSelf = this;
-    util.ScriptNodeDataSource.callbacks[id] = function(oRawResponse) {
-        if((oSelf.asyncMode !== "ignoreStaleResponses")||
-                (id === util.ScriptNodeDataSource.callbacks.length-1)) { // Must ignore stale responses
-                
-            // Try to sniff data type if it has not been defined
-            if(oSelf.responseType === DS.TYPE_UNKNOWN) {
-                if(YAHOO.lang.isArray(oRawResponse)) { // array
-                    oSelf.responseType = DS.TYPE_JSARRAY;
-                }
-                 // xml
-                else if(oRawResponse.nodeType && oRawResponse.nodeType == 9) {
-                    oSelf.responseType = DS.TYPE_XML;
-                }
-                else if(oRawResponse.nodeName && (oRawResponse.nodeName.toLowerCase() == "table")) { // table
-                    oSelf.responseType = DS.TYPE_HTMLTABLE;
-                }    
-                else if(YAHOO.lang.isObject(oRawResponse)) { // json
-                    oSelf.responseType = DS.TYPE_JSON;
-                }
-                else if(YAHOO.lang.isString(oRawResponse)) { // text
-                    oSelf.responseType = DS.TYPE_TEXT;
-                }
-            }
-
-            oSelf.handleResponse(oRequest, oRawResponse, oCallback, oCaller, tId);
-        }
-        else {
-        }
-    
-        delete util.ScriptNodeDataSource.callbacks[id];
-    };
-    
-    // We are now creating a request
-    util.ScriptNodeDataSource._nPending++;
-    var sUri = this.liveData + oRequest + this.generateRequestCallback(id);
-    this.getUtility.script(sUri,
-            {autopurge: true,
-            onsuccess: util.ScriptNodeDataSource._bumpPendingDown,
-            onfail: util.ScriptNodeDataSource._bumpPendingDown});
-
-    return tId;
-}
-
-});
-
-// Copy static members to ScriptNodeDataSource class
-lang.augmentObject(util.ScriptNodeDataSource, DS);
-
-// Copy static members to ScriptNodeDataSource class
-lang.augmentObject(util.ScriptNodeDataSource,  {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// ScriptNodeDataSource private static properties
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Unique ID to track requests.
- *
- * @property _nId
- * @type Number
- * @private
- * @static
- */
-_nId : 0,
-
-/**
- * Counter for pending requests. When this is 0, it is safe to purge callbacks
- * array.
- *
- * @property _nPending
- * @type Number
- * @private
- * @static
- */
-_nPending : 0,
-
-/**
- * Global array of callback functions, one for each request sent.
- *
- * @property callbacks
- * @type Function[]
- * @static
- */
-callbacks : []
-
-});
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * XHRDataSource class for accessing remote data via the YUI Connection Manager
- * Utility
- *
- * @namespace YAHOO.util
- * @class YAHOO.util.XHRDataSource
- * @extends YAHOO.util.DataSourceBase  
- * @constructor
- * @param oLiveData {HTMLElement}  Pointer to live data.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-util.XHRDataSource = function(oLiveData, oConfigs) {
-    this.dataType = DS.TYPE_XHR;
-    this.connMgr = this.connMgr || util.Connect;
-    oLiveData = oLiveData || "";
-    
-    this.constructor.superclass.constructor.call(this, oLiveData, oConfigs); 
-};
-
-// XHRDataSource extends DataSourceBase
-lang.extend(util.XHRDataSource, DS, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// XHRDataSource public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-
- /**
- * Alias to YUI Connection Manager, to allow implementers to use a custom class.
- *
- * @property connMgr
- * @type Object
- * @default YAHOO.util.Connect
- */
-connMgr: null,
-
- /**
- * Defines request/response management in the following manner:
- * <dl>
- *     <dt>queueRequests</dt>
- *     <dd>If a request is already in progress, wait until response is returned
- *     before sending the next request.</dd>
- *
- *     <dt>cancelStaleRequests</dt>
- *     <dd>If a request is already in progress, cancel it before sending the next
- *     request.</dd>
- *
- *     <dt>ignoreStaleResponses</dt>
- *     <dd>Send all requests, but handle only the response for the most recently
- *     sent request.</dd>
- *
- *     <dt>allowAll</dt>
- *     <dd>Send all requests and handle all responses.</dd>
- *
- * </dl>
- *
- * @property connXhrMode
- * @type String
- * @default "allowAll"
- */
-connXhrMode: "allowAll",
-
- /**
- * True if data is to be sent via POST. By default, data will be sent via GET.
- *
- * @property connMethodPost
- * @type Boolean
- * @default false
- */
-connMethodPost: false,
-
- /**
- * The connection timeout defines how many  milliseconds the XHR connection will
- * wait for a server response. Any non-zero value will enable the Connection Manager's
- * Auto-Abort feature.
- *
- * @property connTimeout
- * @type Number
- * @default 0
- */
-connTimeout: 0,
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// XHRDataSource public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Overriding method passes query to Connection Manager. The returned
- * response is then forwarded to the handleResponse function.
- *
- * @method makeConnection
- * @param oRequest {Object} Request object.
- * @param oCallback {Object} Callback object literal.
- * @param oCaller {Object} (deprecated) Use oCallback.scope.
- * @return {Number} Transaction ID.
- */
-makeConnection : function(oRequest, oCallback, oCaller) {
-
-    var oRawResponse = null;
-    var tId = DS._nTransactionId++;
-    this.fireEvent("requestEvent", {tId:tId,request:oRequest,callback:oCallback,caller:oCaller});
-
-    // Set up the callback object and
-    // pass the request in as a URL query and
-    // forward the response to the handler
-    var oSelf = this;
-    var oConnMgr = this.connMgr;
-    var oQueue = this._oQueue;
-
-    /**
-     * Define Connection Manager success handler
-     *
-     * @method _xhrSuccess
-     * @param oResponse {Object} HTTPXMLRequest object
-     * @private
-     */
-    var _xhrSuccess = function(oResponse) {
-        // If response ID does not match last made request ID,
-        // silently fail and wait for the next response
-        if(oResponse && (this.asyncMode == "ignoreStaleResponses") &&
-                (oResponse.tId != oQueue.conn.tId)) {
-            return null;
-        }
-        // Error if no response
-        else if(!oResponse) {
-            this.fireEvent("dataErrorEvent", {request:oRequest,
-                    callback:oCallback, caller:oCaller,
-                    message:DS.ERROR_DATANULL});
-
-            // Send error response back to the caller with the error flag on
-            DS.issueCallback(oCallback,[oRequest, {error:true}], true, oCaller);
-
-            return null;
-        }
-        // Forward to handler
-        else {
-            // Try to sniff data type if it has not been defined
-            if(this.responseType === DS.TYPE_UNKNOWN) {
-                var ctype = (oResponse.getResponseHeader) ? oResponse.getResponseHeader["Content-Type"] : null;
-                if(ctype) {
-                    // xml
-                    if(ctype.indexOf("text/xml") > -1) {
-                        this.responseType = DS.TYPE_XML;
-                    }
-                    else if(ctype.indexOf("application/json") > -1) { // json
-                        this.responseType = DS.TYPE_JSON;
-                    }
-                    else if(ctype.indexOf("text/plain") > -1) { // text
-                        this.responseType = DS.TYPE_TEXT;
-                    }
-                }
-            }
-            this.handleResponse(oRequest, oResponse, oCallback, oCaller, tId);
-        }
-    };
-
-    /**
-     * Define Connection Manager failure handler
-     *
-     * @method _xhrFailure
-     * @param oResponse {Object} HTTPXMLRequest object
-     * @private
-     */
-    var _xhrFailure = function(oResponse) {
-        this.fireEvent("dataErrorEvent", {request:oRequest,
-                callback:oCallback, caller:oCaller,
-                message:DS.ERROR_DATAINVALID});
-
-        // Backward compatibility
-        if(lang.isString(this.liveData) && lang.isString(oRequest) &&
-            (this.liveData.lastIndexOf("?") !== this.liveData.length-1) &&
-            (oRequest.indexOf("?") !== 0)){
-        }
-
-        // Send failure response back to the caller with the error flag on
-        oResponse = oResponse || {};
-        oResponse.error = true;
-        DS.issueCallback(oCallback,[oRequest,oResponse],true, oCaller);
-
-        return null;
-    };
-
-    /**
-     * Define Connection Manager callback object
-     *
-     * @property _xhrCallback
-     * @param oResponse {Object} HTTPXMLRequest object
-     * @private
-     */
-     var _xhrCallback = {
-        success:_xhrSuccess,
-        failure:_xhrFailure,
-        scope: this
-    };
-
-    // Apply Connection Manager timeout
-    if(lang.isNumber(this.connTimeout)) {
-        _xhrCallback.timeout = this.connTimeout;
-    }
-
-    // Cancel stale requests
-    if(this.connXhrMode == "cancelStaleRequests") {
-            // Look in queue for stale requests
-            if(oQueue.conn) {
-                if(oConnMgr.abort) {
-                    oConnMgr.abort(oQueue.conn);
-                    oQueue.conn = null;
-                }
-                else {
-                }
-            }
-    }
-
-    // Get ready to send the request URL
-    if(oConnMgr && oConnMgr.asyncRequest) {
-        var sLiveData = this.liveData;
-        var isPost = this.connMethodPost;
-        var sMethod = (isPost) ? "POST" : "GET";
-        // Validate request
-        var sUri = (isPost || !lang.isValue(oRequest)) ? sLiveData : sLiveData+oRequest;
-        var sRequest = (isPost) ? oRequest : null;
-
-        // Send the request right away
-        if(this.connXhrMode != "queueRequests") {
-            oQueue.conn = oConnMgr.asyncRequest(sMethod, sUri, _xhrCallback, sRequest);
-        }
-        // Queue up then send the request
-        else {
-            // Found a request already in progress
-            if(oQueue.conn) {
-                var allRequests = oQueue.requests;
-                // Add request to queue
-                allRequests.push({request:oRequest, callback:_xhrCallback});
-
-                // Interval needs to be started
-                if(!oQueue.interval) {
-                    oQueue.interval = setInterval(function() {
-                        // Connection is in progress
-                        if(oConnMgr.isCallInProgress(oQueue.conn)) {
-                            return;
-                        }
-                        else {
-                            // Send next request
-                            if(allRequests.length > 0) {
-                                // Validate request
-                                sUri = (isPost || !lang.isValue(allRequests[0].request)) ? sLiveData : sLiveData+allRequests[0].request;
-                                sRequest = (isPost) ? allRequests[0].request : null;
-                                oQueue.conn = oConnMgr.asyncRequest(sMethod, sUri, allRequests[0].callback, sRequest);
-
-                                // Remove request from queue
-                                allRequests.shift();
-                            }
-                            // No more requests
-                            else {
-                                clearInterval(oQueue.interval);
-                                oQueue.interval = null;
-                            }
-                        }
-                    }, 50);
-                }
-            }
-            // Nothing is in progress
-            else {
-                oQueue.conn = oConnMgr.asyncRequest(sMethod, sUri, _xhrCallback, sRequest);
-            }
-        }
-    }
-    else {
-        // Send null response back to the caller with the error flag on
-        DS.issueCallback(oCallback,[oRequest,{error:true}],true,oCaller);
-    }
-
-    return tId;
-}
-
-});
-
-// Copy static members to XHRDataSource class
-lang.augmentObject(util.XHRDataSource, DS);
-
-
-
-
-
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * Factory class for creating a BaseDataSource subclass instance. The sublcass is
- * determined by oLiveData's type, unless the dataType config is explicitly passed in.  
- *
- * @namespace YAHOO.util
- * @class YAHOO.util.DataSource
- * @constructor
- * @param oLiveData {HTMLElement}  Pointer to live data.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-util.DataSource = function(oLiveData, oConfigs) {
-    oConfigs = oConfigs || {};
-    
-    // Point to one of the subclasses, first by dataType if given, then by sniffing oLiveData type.
-    var dataType = oConfigs.dataType;
-    if(dataType) {
-        if(dataType == DS.TYPE_LOCAL) {
-            lang.augmentObject(util.DataSource, util.LocalDataSource);
-            return new util.LocalDataSource(oLiveData, oConfigs);            
-        }
-        else if(dataType == DS.TYPE_XHR) {
-            lang.augmentObject(util.DataSource, util.XHRDataSource);
-            return new util.XHRDataSource(oLiveData, oConfigs);            
-        }
-        else if(dataType == DS.TYPE_SCRIPTNODE) {
-            lang.augmentObject(util.DataSource, util.ScriptNodeDataSource);
-            return new util.ScriptNodeDataSource(oLiveData, oConfigs);            
-        }
-        else if(dataType == DS.TYPE_JSFUNCTION) {
-            lang.augmentObject(util.DataSource, util.FunctionDataSource);
-            return new util.FunctionDataSource(oLiveData, oConfigs);            
-        }
-    }
-    
-    if(YAHOO.lang.isString(oLiveData)) { // strings default to xhr
-        lang.augmentObject(util.DataSource, util.XHRDataSource);
-        return new util.XHRDataSource(oLiveData, oConfigs);
-    }
-    else if(YAHOO.lang.isFunction(oLiveData)) {
-        lang.augmentObject(util.DataSource, util.FunctionDataSource);
-        return new util.FunctionDataSource(oLiveData, oConfigs);
-    }
-    else { // ultimate default is local
-        lang.augmentObject(util.DataSource, util.LocalDataSource);
-        return new util.LocalDataSource(oLiveData, oConfigs);
-    }
-};
-
-// Copy static members to DataSource class
-lang.augmentObject(util.DataSource, DS);
-
-})();
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The static Number class provides helper functions to deal with data of type
- * Number.
- *
- * @namespace YAHOO.util
- * @requires yahoo
- * @class Number
- * @static
- */
- YAHOO.util.Number = {
- 
-     /**
-     * Takes a native JavaScript Number and formats to string for display to user.
-     *
-     * @method format
-     * @param nData {Number} Number.
-     * @param oConfig {Object} (Optional) Optional configuration values:
-     *  <dl>
-     *   <dt>prefix {String}</dd>
-     *   <dd>String prepended before each number, like a currency designator "$"</dd>
-     *   <dt>decimalPlaces {Number}</dd>
-     *   <dd>Number of decimal places to round.</dd>
-     *   <dt>decimalSeparator {String}</dd>
-     *   <dd>Decimal separator</dd>
-     *   <dt>thousandsSeparator {String}</dd>
-     *   <dd>Thousands separator</dd>
-     *   <dt>suffix {String}</dd>
-     *   <dd>String appended after each number, like " items" (note the space)</dd>
-     *  </dl>
-     * @return {String} Formatted number for display.
-     */
-    format : function(nData, oConfig) {
-        oConfig = oConfig || {};
-        
-        if(!YAHOO.lang.isNumber(nData)) {
-            nData *= 1;
-        }
-
-        if(YAHOO.lang.isNumber(nData)) {
-            var bNegative = (nData < 0);
-            var sOutput = nData + "";
-            var sDecimalSeparator = (oConfig.decimalSeparator) ? oConfig.decimalSeparator : ".";
-            var nDotIndex;
-
-            // Manage decimals
-            if(YAHOO.lang.isNumber(oConfig.decimalPlaces)) {
-                // Round to the correct decimal place
-                var nDecimalPlaces = oConfig.decimalPlaces;
-                var nDecimal = Math.pow(10, nDecimalPlaces);
-                sOutput = Math.round(nData*nDecimal)/nDecimal + "";
-                nDotIndex = sOutput.lastIndexOf(".");
-
-                if(nDecimalPlaces > 0) {
-                    // Add the decimal separator
-                    if(nDotIndex < 0) {
-                        sOutput += sDecimalSeparator;
-                        nDotIndex = sOutput.length-1;
-                    }
-                    // Replace the "."
-                    else if(sDecimalSeparator !== "."){
-                        sOutput = sOutput.replace(".",sDecimalSeparator);
-                    }
-                    // Add missing zeros
-                    while((sOutput.length - 1 - nDotIndex) < nDecimalPlaces) {
-                        sOutput += "0";
-                    }
-                }
-            }
-            
-            // Add the thousands separator
-            if(oConfig.thousandsSeparator) {
-                var sThousandsSeparator = oConfig.thousandsSeparator;
-                nDotIndex = sOutput.lastIndexOf(sDecimalSeparator);
-                nDotIndex = (nDotIndex > -1) ? nDotIndex : sOutput.length;
-                var sNewOutput = sOutput.substring(nDotIndex);
-                var nCount = -1;
-                for (var i=nDotIndex; i>0; i--) {
-                    nCount++;
-                    if ((nCount%3 === 0) && (i !== nDotIndex) && (!bNegative || (i > 1))) {
-                        sNewOutput = sThousandsSeparator + sNewOutput;
-                    }
-                    sNewOutput = sOutput.charAt(i-1) + sNewOutput;
-                }
-                sOutput = sNewOutput;
-            }
-
-            // Prepend prefix
-            sOutput = (oConfig.prefix) ? oConfig.prefix + sOutput : sOutput;
-
-            // Append suffix
-            sOutput = (oConfig.suffix) ? sOutput + oConfig.suffix : sOutput;
-
-            return sOutput;
-        }
-        // Still not a Number, just return unaltered
-        else {
-            return nData;
-        }
-    }
- };
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-(function () {
-
-var xPad=function (x, pad, r)
-{
-    if(typeof r === 'undefined')
-    {
-        r=10;
-    }
-    for( ; parseInt(x, 10)<r && r>1; r/=10) {
-        x = pad.toString() + x;
-    }
-    return x.toString();
-};
-
-
-/**
- * The static Date class provides helper functions to deal with data of type Date.
- *
- * @namespace YAHOO.util
- * @requires yahoo
- * @class Date
- * @static
- */
- var Dt = {
-    formats: {
-        a: function (d, l) { return l.a[d.getDay()]; },
-        A: function (d, l) { return l.A[d.getDay()]; },
-        b: function (d, l) { return l.b[d.getMonth()]; },
-        B: function (d, l) { return l.B[d.getMonth()]; },
-        C: function (d) { return xPad(parseInt(d.getFullYear()/100, 10), 0); },
-        d: ['getDate', '0'],
-        e: ['getDate', ' '],
-        g: function (d) { return xPad(parseInt(Dt.formats.G(d)%100, 10), 0); },
-        G: function (d) {
-                var y = d.getFullYear();
-                var V = parseInt(Dt.formats.V(d), 10);
-                var W = parseInt(Dt.formats.W(d), 10);
-    
-                if(W > V) {
-                    y++;
-                } else if(W===0 && V>=52) {
-                    y--;
-                }
-    
-                return y;
-            },
-        H: ['getHours', '0'],
-        I: function (d) { var I=d.getHours()%12; return xPad(I===0?12:I, 0); },
-        j: function (d) {
-                var gmd_1 = new Date('' + d.getFullYear() + '/1/1 GMT');
-                var gmdate = new Date('' + d.getFullYear() + '/' + (d.getMonth()+1) + '/' + d.getDate() + ' GMT');
-                var ms = gmdate - gmd_1;
-                var doy = parseInt(ms/60000/60/24, 10)+1;
-                return xPad(doy, 0, 100);
-            },
-        k: ['getHours', ' '],
-        l: function (d) { var I=d.getHours()%12; return xPad(I===0?12:I, ' '); },
-        m: function (d) { return xPad(d.getMonth()+1, 0); },
-        M: ['getMinutes', '0'],
-        p: function (d, l) { return l.p[d.getHours() >= 12 ? 1 : 0 ]; },
-        P: function (d, l) { return l.P[d.getHours() >= 12 ? 1 : 0 ]; },
-        s: function (d, l) { return parseInt(d.getTime()/1000, 10); },
-        S: ['getSeconds', '0'],
-        u: function (d) { var dow = d.getDay(); return dow===0?7:dow; },
-        U: function (d) {
-                var doy = parseInt(Dt.formats.j(d), 10);
-                var rdow = 6-d.getDay();
-                var woy = parseInt((doy+rdow)/7, 10);
-                return xPad(woy, 0);
-            },
-        V: function (d) {
-                var woy = parseInt(Dt.formats.W(d), 10);
-                var dow1_1 = (new Date('' + d.getFullYear() + '/1/1')).getDay();
-                // First week is 01 and not 00 as in the case of %U and %W,
-                // so we add 1 to the final result except if day 1 of the year
-                // is a Monday (then %W returns 01).
-                // We also need to subtract 1 if the day 1 of the year is 
-                // Friday-Sunday, so the resulting equation becomes:
-                var idow = woy + (dow1_1 > 4 || dow1_1 <= 1 ? 0 : 1);
-                if(idow === 53 && (new Date('' + d.getFullYear() + '/12/31')).getDay() < 4)
-                {
-                    idow = 1;
-                }
-                else if(idow === 0)
-                {
-                    idow = Dt.formats.V(new Date('' + (d.getFullYear()-1) + '/12/31'));
-                }
-    
-                return xPad(idow, 0);
-            },
-        w: 'getDay',
-        W: function (d) {
-                var doy = parseInt(Dt.formats.j(d), 10);
-                var rdow = 7-Dt.formats.u(d);
-                var woy = parseInt((doy+rdow)/7, 10);
-                return xPad(woy, 0, 10);
-            },
-        y: function (d) { return xPad(d.getFullYear()%100, 0); },
-        Y: 'getFullYear',
-        z: function (d) {
-                var o = d.getTimezoneOffset();
-                var H = xPad(parseInt(Math.abs(o/60), 10), 0);
-                var M = xPad(Math.abs(o%60), 0);
-                return (o>0?'-':'+') + H + M;
-            },
-        Z: function (d) {
-		var tz = d.toString().replace(/^.*:\d\d( GMT[+-]\d+)? \(?([A-Za-z ]+)\)?\d*$/, '$2').replace(/[a-z ]/g, '');
-		if(tz.length > 4) {
-			tz = Dt.formats.z(d);
-		}
-		return tz;
-	},
-        '%': function (d) { return '%'; }
-    },
-
-    aggregates: {
-        c: 'locale',
-        D: '%m/%d/%y',
-        F: '%Y-%m-%d',
-        h: '%b',
-        n: '\n',
-        r: 'locale',
-        R: '%H:%M',
-        t: '\t',
-        T: '%H:%M:%S',
-        x: 'locale',
-        X: 'locale'
-        //'+': '%a %b %e %T %Z %Y'
-    },
-
-     /**
-     * Takes a native JavaScript Date and formats to string for display to user.
-     *
-     * @method format
-     * @param oDate {Date} Date.
-     * @param oConfig {Object} (Optional) Optional configuration values:
-     *  <dl>
-     *   <dt>format {String}</dt>
-     *   <dd>Any format defined by strftime is supported</dd>
-     *  </dl>
-     *  strftime has several format specifiers defined by the Open group at 
-     *  http://www.opengroup.org/onlinepubs/007908799/xsh/strftime.html
-     *
-     *  PHP added a few of its own, defined at http://www.php.net/strftime
-     *
-     *  This javascript implementation supports all the PHP specifiers and a few more.
-     *
-     *  @arg \%a - abbreviated weekday name according to the current locale
-     *  @arg \%A - full weekday name according to the current locale
-     *  @arg \%b - abbreviated month name according to the current locale
-     *  @arg \%B - full month name according to the current locale
-     *  @arg \%c - preferred date and time representation for the current locale
-     *  @arg \%C - century number (the year divided by 100 and truncated to an integer, range 00 to 99)
-     *  @arg \%d - day of the month as a decimal number (range 01 to 31)
-     *  @arg \%D - same as %m/%d/%y
-     *  @arg \%e - day of the month as a decimal number, a single digit is preceded by a space (range ' 1' to '31')
-     *  @arg \%F - same as %Y-%m-%d (ISO 8601 date format)
-     *  @arg \%g - like %G, but without the century
-     *  @arg \%G - The 4-digit year corresponding to the ISO week number
-     *  @arg \%h - same as %b
-     *  @arg \%H - hour as a decimal number using a 24-hour clock (range 00 to 23)
-     *  @arg \%I - hour as a decimal number using a 12-hour clock (range 01 to 12)
-     *  @arg \%j - day of the year as a decimal number (range 001 to 366)
-     *  @arg \%k - hour as a decimal number using a 24-hour clock (range 0 to 23); single digits are preceded by a blank. (See also %H.)
-     *  @arg \%l - hour as a decimal number using a 12-hour clock (range 1 to 12); single digits are preceded by a blank. (See also %I.) 
-     *  @arg \%m - month as a decimal number (range 01 to 12)
-     *  @arg \%M - minute as a decimal number
-     *  @arg \%n - newline character
-     *  @arg \%p - either `AM' or `PM' according to the given time value, or the corresponding strings for the current locale
-     *  @arg \%P - like %p, but lower case
-     *  @arg \%r - time in a.m. and p.m. notation equal to %I:%M:%S %p
-     *  @arg \%R - time in 24 hour notation equal to %H:%M
-     *  @arg \%s - number of seconds since the Epoch, ie, since 1970-01-01 00:00:00 UTC
-     *  @arg \%S - second as a decimal number
-     *  @arg \%t - tab character
-     *  @arg \%T - current time, equal to %H:%M:%S
-     *  @arg \%u - weekday as a decimal number [1,7], with 1 representing Monday
-     *  @arg \%U - week number of the current year as a decimal number, starting with
-     *             the first Sunday as the first day of the first week
-     *  @arg \%V - The ISO 8601:1988 week number of the current year as a decimal number,
-     *             range 01 to 53, where week 1 is the first week that has at least 4 days
-     *             in the current year, and with Monday as the first day of the week.
-     *  @arg \%w - day of the week as a decimal, Sunday being 0
-     *  @arg \%W - week number of the current year as a decimal number, starting with the
-     *             first Monday as the first day of the first week
-     *  @arg \%x - preferred date representation for the current locale without the time
-     *  @arg \%X - preferred time representation for the current locale without the date
-     *  @arg \%y - year as a decimal number without a century (range 00 to 99)
-     *  @arg \%Y - year as a decimal number including the century
-     *  @arg \%z - numerical time zone representation
-     *  @arg \%Z - time zone name or abbreviation
-     *  @arg \%% - a literal `\%' character
-     * @param sLocale {String} (Optional) The locale to use when displaying days of week,
-     *  months of the year, and other locale specific strings.  The following locales are
-     *  built in:
-     *  <dl>
-     *   <dt>en</dt>
-     *   <dd>English</dd>
-     *   <dt>en-US</dt>
-     *   <dd>US English</dd>
-     *   <dt>en-GB</dt>
-     *   <dd>British English</dd>
-     *   <dt>en-AU</dt>
-     *   <dd>Australian English (identical to British English)</dd>
-     *  </dl>
-     *  More locales may be added by subclassing of YAHOO.util.DateLocale.
-     *  See YAHOO.util.DateLocale for more information.
-     * @return {String} Formatted date for display.
-     * @sa YAHOO.util.DateLocale
-     */
-    format : function (oDate, oConfig, sLocale) {
-        oConfig = oConfig || {};
-        
-        if(!(oDate instanceof Date)) {
-            return YAHOO.lang.isValue(oDate) ? oDate : "";
-        }
-
-        var format = oConfig.format || "%m/%d/%Y";
-
-        // Be backwards compatible, support strings that are
-        // exactly equal to YYYY/MM/DD, DD/MM/YYYY and MM/DD/YYYY
-        if(format === 'YYYY/MM/DD') {
-            format = '%Y/%m/%d';
-        } else if(format === 'DD/MM/YYYY') {
-            format = '%d/%m/%Y';
-        } else if(format === 'MM/DD/YYYY') {
-            format = '%m/%d/%Y';
-        }
-        // end backwards compatibility block
- 
-        sLocale = sLocale || "en";
-
-        // Make sure we have a definition for the requested locale, or default to en.
-        if(!(sLocale in YAHOO.util.DateLocale)) {
-            if(sLocale.replace(/-[a-zA-Z]+$/, '') in YAHOO.util.DateLocale) {
-                sLocale = sLocale.replace(/-[a-zA-Z]+$/, '');
-            } else {
-                sLocale = "en";
-            }
-        }
-
-        var aLocale = YAHOO.util.DateLocale[sLocale];
-
-        var replace_aggs = function (m0, m1) {
-            var f = Dt.aggregates[m1];
-            return (f === 'locale' ? aLocale[m1] : f);
-        };
-
-        var replace_formats = function (m0, m1) {
-            var f = Dt.formats[m1];
-            if(typeof f === 'string') {             // string => built in date function
-                return oDate[f]();
-            } else if(typeof f === 'function') {    // function => our own function
-                return f.call(oDate, oDate, aLocale);
-            } else if(typeof f === 'object' && typeof f[0] === 'string') {  // built in function with padding
-                return xPad(oDate[f[0]](), f[1]);
-            } else {
-                return m1;
-            }
-        };
-
-        // First replace aggregates (run in a loop because an agg may be made up of other aggs)
-        while(format.match(/%[cDFhnrRtTxX]/)) {
-            format = format.replace(/%([cDFhnrRtTxX])/g, replace_aggs);
-        }
-
-        // Now replace formats (do not run in a loop otherwise %%a will be replace with the value of %a)
-        var str = format.replace(/%([aAbBCdegGHIjklmMpPsSuUVwWyYzZ%])/g, replace_formats);
-
-        replace_aggs = replace_formats = undefined;
-
-        return str;
-    }
- };
- 
- YAHOO.namespace("YAHOO.util");
- YAHOO.util.Date = Dt;
-
-/**
- * The DateLocale class is a container and base class for all
- * localised date strings used by YAHOO.util.Date. It is used
- * internally, but may be extended to provide new date localisations.
- *
- * To create your own DateLocale, follow these steps:
- * <ol>
- *  <li>Find an existing locale that matches closely with your needs</li>
- *  <li>Use this as your base class.  Use YAHOO.util.DateLocale if nothing
- *   matches.</li>
- *  <li>Create your own class as an extension of the base class using
- *   YAHOO.lang.merge, and add your own localisations where needed.</li>
- * </ol>
- * See the YAHOO.util.DateLocale['en-US'] and YAHOO.util.DateLocale['en-GB']
- * classes which extend YAHOO.util.DateLocale['en'].
- *
- * For example, to implement locales for French french and Canadian french,
- * we would do the following:
- * <ol>
- *  <li>For French french, we have no existing similar locale, so use
- *   YAHOO.util.DateLocale as the base, and extend it:
- *   <pre>
- *      YAHOO.util.DateLocale['fr'] = YAHOO.lang.merge(YAHOO.util.DateLocale, {
- *          a: ['dim', 'lun', 'mar', 'mer', 'jeu', 'ven', 'sam'],
- *          A: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'],
- *          b: ['jan', 'f&eacute;v', 'mar', 'avr', 'mai', 'jun', 'jui', 'ao&ucirc;', 'sep', 'oct', 'nov', 'd&eacute;c'],
- *          B: ['janvier', 'f&eacute;vrier', 'mars', 'avril', 'mai', 'juin', 'juillet', 'ao&ucirc;t', 'septembre', 'octobre', 'novembre', 'd&eacute;cembre'],
- *          c: '%a %d %b %Y %T %Z',
- *          p: ['', ''],
- *          P: ['', ''],
- *          x: '%d.%m.%Y',
- *          X: '%T'
- *      });
- *   </pre>
- *  </li>
- *  <li>For Canadian french, we start with French french and change the meaning of \%x:
- *   <pre>
- *      YAHOO.util.DateLocale['fr-CA'] = YAHOO.lang.merge(YAHOO.util.DateLocale['fr'], {
- *          x: '%Y-%m-%d'
- *      });
- *   </pre>
- *  </li>
- * </ol>
- *
- * With that, you can use your new locales:
- * <pre>
- *    var d = new Date("2008/04/22");
- *    YAHOO.util.Date.format(d, {format: "%A, %d %B == %x"}, "fr");
- * </pre>
- * will return:
- * <pre>
- *    mardi, 22 avril == 22.04.2008
- * </pre>
- * And
- * <pre>
- *    YAHOO.util.Date.format(d, {format: "%A, %d %B == %x"}, "fr-CA");
- * </pre>
- * Will return:
- * <pre>
- *   mardi, 22 avril == 2008-04-22
- * </pre>
- * @namespace YAHOO.util
- * @requires yahoo
- * @class DateLocale
- */
- YAHOO.util.DateLocale = {
-        a: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
-        A: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
-        b: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
-        B: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
-        c: '%a %d %b %Y %T %Z',
-        p: ['AM', 'PM'],
-        P: ['am', 'pm'],
-        r: '%I:%M:%S %p',
-        x: '%d/%m/%y',
-        X: '%T'
- };
-
- YAHOO.util.DateLocale['en'] = YAHOO.lang.merge(YAHOO.util.DateLocale, {});
-
- YAHOO.util.DateLocale['en-US'] = YAHOO.lang.merge(YAHOO.util.DateLocale['en'], {
-        c: '%a %d %b %Y %I:%M:%S %p %Z',
-        x: '%m/%d/%Y',
-        X: '%I:%M:%S %p'
- });
-
- YAHOO.util.DateLocale['en-GB'] = YAHOO.lang.merge(YAHOO.util.DateLocale['en'], {
-        r: '%l:%M:%S %P %Z'
- });
- YAHOO.util.DateLocale['en-AU'] = YAHOO.lang.merge(YAHOO.util.DateLocale['en']);
-
-})();
-
-YAHOO.register("datasource", YAHOO.util.DataSource, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/datatable/README b/eclipse.org-common/yui/2.6.0/build/datatable/README
deleted file mode 100644
index bcc8b2b..0000000
--- a/eclipse.org-common/yui/2.6.0/build/datatable/README
+++ /dev/null
@@ -1,446 +0,0 @@
-DataTable Release Notes
-
-*** version 2.6.0 ***
-
-* GA release.
-* Created new subclass ScrollingDataTable. Created new classes CellEditor,
-BaseCellEditor, and associated subclasses. As a result, the following API changes
-have been made:
-   - DataTable.editCheckbox is no longer supported. The CheckboxCellEditor class should be used instead.
-   - DataTable.editDate is no longer supported. The DateCellEditor class should be used instead.
-   - DataTable.editDropdown is no longer supported. The DropdownCellEditor class should be used instead.
-   - DataTable.editRadio is no longer supported. The RadioCellEditor class should be used instead.
-   - DataTable.editTextarea is no longer supported. The TextareaCellEditor class should be used instead.
-   - DataTable.editTextbox is no longer supported. The TextboxCellEditor class should be used instead.
-   - editorUpdateEvent is no longer supported.
-   - showCellEditorBtns() is no longer supported. The CellEditor method renderBtns() should be used instead.
-   - resetCellEditor() renamed to destroyCellEditor().
-   - Values for checkboxOptions, dropdownOptions, and radioOptions must be either a
-   simple Array or an array of object literals with properties "value" and "label".
-   - A new CellEditor property asyncSubmitter can be used to submit input values
-   and will block the DataTable UI (via new DataTable methods disable() and
-   undisable()) until the callback function is executed to finish the transaction.
-   - The CellEditor's "Save" and "Cancel" buttons now have configurable labels.
-   - CellEditor validator functions, including the built-in function YAHOO.widget.DataTable.validateNumber
-   must return undefined for invalid values.
-   
-* Pagination and sorting have been reworked to better support dynamically driven
-DataTables. As a result, the following important changes have been made:
-    - Removed support for "magic meta" fields
-    - The following APIs have been removed:
-        * "paginationEventHandler" Attribute
-        * handleSimplePagination()
-        * handleDataSourcePagination()        
-        * updatePaginator()
-        * showPage()
-        * formatPaginator()
-        * formatPaginationDropdown()
-        * formatPaginatorLinks()
-    - The following APIs have been added:
-        * "dynamicData" Attribute
-    - The following APIs have been changed:
-        * onPaginatorChange() has been renamed to onPaginatorChangeRequest()
-    - Removed backward compatibility support for the "paginated" Attribute and
-   the object literal "paginator" Attribute value. Implementers must use the Paginator
-   class to populate the "paginator" Attribute.
-
-* The following APIs have been changed from static class properties to instance
-Attributes, to be set via the initial config or myDataTable.set():
-    - MSG_EMPTY
-    - MSG_ERROR
-    - MSG_LOADING
-    - COLOR_COLUMNFILLER (ScrollingDataTable)
-    
-* The formatTheadCell() method been changed from static a static method to an
-instance method with an update to its argument signature.
-
-* The initEvent will fire when rows are rendered from an initialized state, 
-and the renderEvent will always fire when rows are rendered, and also when the 
-underlying DOM incrementally changes (such as incrementally adding or deleting
-rows or Columns). This is a change from prior behavior, when the the renderEvent
-would *not* fire if the initEvent was fired and only when the entire view was
-rendered (such as a new page). There is now a new postRenderEvent which fires
-after the renderEvent, once the post-render cleanup routine has executed (i.e.,
-Column width validations).
-
-* For consistency with other doBefore abstract methods, doBeforeShowCellEditor()
-returns true by default, and returns false to cancel showing the cell editor.
-
-* Added the following APIs 
-   - configs property
-   - getBdTableEl() method (ScrollingDataTable only)
-   - getHdContainerEl() method (ScrollingDataTable only)
-   - getHdTableEl() method (ScrollingDataTable only)
-   - updateCell() method
-   - currencyOptions, dateOptions, and numberOptions Attributes for default formatting
-
-* Column changes:
-   - minWidth default value now null.
-   - Added Column.maxAutoWidth property
-   - Removed unused Column._oDefinition private property.
-   - Hidden Columns are now manifested as cell liner elements with display:none
-   to prevent content from being visible.
-   - Resizeable Columns now create an additional resizer liner DIV element between
-   the TH element and the liner DIV element. Implementers are advised to access the 
-   liner DIV elements via Column.getThLinerEl() rather than TH.firstChild.
-   - currencyOptions, dateOptions, and numberOptions properties for robust per-Column formatting
- 
-* In the markup, the primary data TBODY is (once again) before the message TBODY element.
- 
-* TR element IDs are now assigned with the corresponding Record ID.
- 
-* Removed unused TD ID assignments.
- 
-* All CSS clases representing Column states now assigned directly on TH and TD
-elements, not on liner DIV elements.
- 
-* Added bottom border to last TR element in ScrollingDataTables.
- 
-* paginator attribute can be set to null to remove pagination.
-
-* Paginator extracted to standalone class and optional dependency.
- 
-* The default CSS styles for captions have been updated.
-
-* addRows(data, index) now inserts rows in the correct order
-
-* initializeTable now resets Paginator's totalRecords
-
-* default cell formatting broken out into Formatter collection method
-
-
-*** version 2.5.2 ***
-
-* Paginator now updates recordOffset to the starting index of the last page when
-totalRecords is set to a size smaller than the current recordOffset.
-
-* Assorted pagination and scrolling bugs.
-
-* Resizing a Column no longer inadvertantly sorts it in IE.
- 
-* Header text no longer wraps by default.
- 
-* Added UI to fill gap when a scrolling DataTable is narrower than its container.
- 
-* Fixed wrong assignment of classnames for TDs and message cell.
- 
-* Fixed bugs for width, minWidth, and hidden Column values in non-scrolling DataTables.
- 
-* Added getBdContainerEl() method.
-
-
-
-*** version 2.5.1 ***
-
-* Only split THEAD from TBODY markup for scrollable tables.
-* columnResizeEvent sends new width value.
-* Improved performance for adding, deleting, and updating rows dynamically.
-
-
-
-*** version 2.5.0 ***
-
-* Introduced YAHOO.widget.Paginator to manage pagination.
-* Introduced YAHOO.util.Chain to allow for progressive rendering.
-
-Removed APIs
-
-    * CLASS_SCROLLBODY
-    * CLASS_TABLE
-    * getTableEl()
-
-Changed APIs
-
-    * initializeTable() - No longer takes any arguments. Data must be added as a separate step.
-    * doBeforeLoadData(sRequest, oResponse, oPayload) - oResponse is now the converted full response (typed JSON or XML as appropriate). oPayload is now an optional data payload implementer can pass in to DataSource.sendRequest via the callback object literal.
-    * formatCell() - The first argument, elCell, is now a reference to the cell liner element rather than the TD itself.
-    * onDataReturnAppendRows(sRequest, oResponse, oPayload) - oResponse is now the converted full response (typed JSON or XML as appropriate). oPayload is now an optional data payload implementer can pass in to DataSource.sendRequest via the callback object literal.
-    * onDataReturnInitializeTable(sRequest, oResponse, oPayload) - oResponse is now the converted full response (typed JSON or XML as appropriate). oPayload is now an optional data payload implementer can pass in to DataSource.sendRequest via the callback object literal.
-    * onDataReturnInsertRows(sRequest, oResponse, oPayload) - oResponse is now the converted full response (typed JSON or XML as appropriate). oPayload is now an optional data payload implementer can pass in to DataSource.sendRequest via the callback object literal.
-    * paginator - Should now be an instance of YAHOO.widget.Paginator.
-    * sortedBy.dir - Use CLASS_ASC or CLASS_DESC instead of "asc" and "desc" strings.
-    * Scrolling must be enabled via the configs "scrollable", "width", and "height". CSS should no longer be used to set width or height on scrollable tables.    
-
-Deprecated APIs
-
-    * formatPaginatorDropdown() - Use new Paginator class.
-    * formatPaginatorLinks() - Use new Paginator class.
-    * formatPaginators() - Use new Paginator class.
-    * refreshView() - Use render().
-    * showPage() - Use new Paginator class.
-    * updatePaginator() - Use new Paginator class.
-    * headerCellClickEvent - Use theadCellClickEvent.
-    * headerCellDblclickEvent - Use theadCellDblclickEvent.
-    * headerCellMousedownEvent - Use theadCellMousedownEvent.
-    * headerCellMouseoutEvent - Use theadCellMouseoutEvent.
-    * headerCellMouseoverEvent - Use theadCellMouseoverEvent.
-    * headerLabelClickEvent - Use theadLabelClickEvent.
-    * headerLabelDblclickEvent - Use theadLabelDblclickEvent.
-    * headerLabelMousedownEvent - Use theadLabelMousedownEvent.
-    * headerLabelMouseoutEvent - Use theadLabelMouseoutEvent.
-    * headerLabelMouseoverEvent - Use theadLabelMouseoverEvent.
-    * headerRowClickEvent - Use theadRowClickEvent.
-    * headerRowDblclickEvent - Use theadRowDblclickEvent.
-    * headerRowMousedownEvent - Use theadRowMousedownEvent.
-    * headerRowMouseoutEvent - Use theadRowMouseoutEvent.
-    * headerRowMouseoverEvent - Use theadRowMouseoverEvent.
-    * refreshEvent - Use renderEvent.
-    * paginated - No longer used, as long as "paginator" value is an instance of Paginator class.
-
-
-RecordSet
-
-    * updateKey() - Use updateRecordValue().
-    * keyUpdateEvent - Use recordValueUpdateEvent.
-
-Column
-
-    * width - Must now be a number. Strings will be ignored.
-    * sortOptions.defaultOrder - Use sortOptions.defaultDir, and use CLASS_ASC or CLASS_DESC instead of "asc" and "desc" strings.
-
-
-
-*** version 2.4.0 ***
-
-* No changes.
-
-
-
-*** version 2.3.1 ***
-
-* For better support of resizeable Columns, the following core CSS changes have been
-made:
-
-- applied "table-layout:fixed" to TABLE elements
-- removed "overflow:hidden" from TH and TD elements
-- removed "white-space:nowrap" from TD elements
-
-As a result, implementers may notice a change in the widths of their rendered
-DataTables, which should be resolved by setting widths explicitly via CSS or
-your Column definitions.
-
-* Selection model issues have been addressed by clearing up ambiguous ID and
-index usage. Record instances are now assigned globally unique and immutable ID
-strings (no longer numbers). Record indexes are numbers that are mutable in order
-to represent Record order within a RecordSet instance. TR elements are assigned
-DOM ID strings that are *unrelated* to Record instance IDs and Record indexes. Be
-aware that DOM element IDs will get reused when sorting and paginating. Furthermore,
-Column instances are assigned globally unique and immutable ID strings
-(no longer numbers). Column indexes are numbers that are mutable and represent
-Column order within a ColumnSet instance. Please refer to the API documentation
-for details on when to use Record/Column instance IDs, DOM element IDs, and
-Record/Column index numbers.
-
-* Enabling row or cell selection no longer breaks clicks on links and form elements.
-
-
-
-*** version 2.3.0 ***
-
-* DataSource requests over XHR no longer automatically insert a "?" in the URIs
-between the host and the query. Implementers should explicitly include the
-question mark if it is required by your server. Please refer to the XHR
-examples for implementation details.
-
-* Applied new skinning model.
-
-* The MVC model has been stabilized and many APIs have been renamed or changed
-quite a bit from the previous version. Implementers should now only use
-DataTable APIs and not use any Record or RecordSet APIs to add/delete/update
-rows, Records, and DOM elements. RecordSet synchronization will be managed for
-you under the hood. For example, myDataTable.addRow() now accepts an object
-literal of data and will create a Record and update the DOM. Calling
-myDataTable.deleteRow() will delete the appropriate Record and update the DOM.
-Please refer to the API reference for full details on property and method names and
-argument signatures. When possible, Logger messages will provide deprecation warnings,
-so implementers upgrading from the previous version are encouraged to use the debug
-build of DataTable.
-
-* The DataTable constructor signature has changed in 2 major ways:
-1) Do not pass in a ColumnSet instance. Instead, pass in an array of Column
-definitions directly, and a ColumnSet instance will be created for you under the hood.
-2) In the progressive enhancement case, first instantiate a DataSource pointing
-to your HTML TABLE element, and then pass in that DataSource instance to your
-DataTable constructor. Please refer to the progressive enhancement example
-for implementation details.
-
-* DataTable now extends Element, which has become a required dependency. Implementers
-should now use the myDataTable.set("propertyName", newValue) syntax instead of direct
-dot notation of any properties.
-
-* The underlying pagination architecture and API have been revised. Specifically,
-the property paginator has been deprecated in favor of paginated,
-paginatorOptions has been deprecated in favor of paginator, and related events
-and method names have been changed. Please see the pagination examples for
-implementation details. Please refer to the API reference for full details on
-new property and method names and argument signatures.
-
-* There is a known pagination bug where changing the rows-per-page dropdown while
-on a page number that is out of bounds of the new range, the current page value
-fails to get reset to an appropriate default value.
-
-* There is a known pagination bug where custom containers are ignored.
-
-* There is a known bug where row and cell selections are not tracked correctly in
-paginated DataTables.
-
-* The underlying editing architecture and API have been revised. Specifically, the
-ColumnEditor class is no longer used, the method editCell() has been deprecated
-in favor of showCellEditor(), and the Custom Event "cellEditEvent" is now
-"editorSaveEvent". Please see the inline editing example for
-implementation details. Please refer to the API reference for full details on
-property and method names and argument signatures.
-
-* There is a known issue where the built-in date editor throws a JavaScript
-exception when encountering a null or non-Date value. Implementers using the built-in
-date editor should validate for type Date and avoid null values in these data
-fields.
-
-* The underlying sort architecture, including YAHOO.util.Sort, has been modified
-to accept a single sort function rather than separate functions for ascending
-and descending sorts.
-
-* Scrolling a DataTable with an active Cell Editor will cancel the edit to
-to prevent the Cell Editor's position from getting out of sync with its
-associated TD element.
-
-* The following static methods are executed in the scope of the DataTable
-instance: DataTable.validateNumber(), DataTable.formatButton(),
-DataTable.formatCheckbox(), DataTable.formatCurrency(), DataTable.formatDate(),
-DataTable.formatDropdown(), DataTable.formatEmail(), DataTable.formatLink(),
-DataTable.formatNumber(), DataTable.formatRadio(), DataTable.formatText(),
-DataTable.formatTextarea(), DataTable.formatTextbox().
-
-* The following DataTable APIs have changed:
-- The following static constants have been removed: CLASS_CURRENCY, CLASS_CURRENTPAGE,
-CLASS_DATE, CLASS_EMAIL, CLASS_FIRSTLINK, CLASS_FIRSTPAGE, CLASS_HEADCONTAINER,
-CLASS_HEADRESIZER, CLASS_HEADTEXT, CLASS_HIGHLIGHT, CLASS_LASTLINK, CLASS_LASTPAGE,
-CLASS_LINK, CLASS_NEXTLINK, CLASS_NEXTPAGE, CLASS_NUMBER, CLASS_PAGELINK,
-CLASS_PAGELINKS, CLASS_PAGESELECT, CLASS_PREVLINK, CLASS_PREVPAGE, CLASS_SORTEDBYASC,
-CLASS_SORTEDBYDESC, CLASS_STRING.
-- The following static constants have been added: CLASS_ASC, CLASS_BUTTON,
-CLASS_DEFAULT, CLASS_DESC, CLASS_DISABLED, CLASS_DROPDOWN, CLASS_HEADER,
-CLASS_HIGHLIGHTED, CLASS_LABEL, CLASS_NEXT, CLASS_PAGE, CLASS_PREVIOUS,
-CLASS_RESIZER
-- The property contextMenu is no longer supported.
-- The property dataSource has been deprecated in favor of the accessor method
-getDataSource().
-- The property fixedWidth is not fully supported.
-- The property sortedBy now defines key instead of colKey.
-- The property rowSingleSelect has been deprecated in favor of selectionMode.
-
-* The following Record APIs have changed:
-- Record data values are no longer accessible with oRecord[key] or oRecord.key.
-Implementers should now use oRecord.getData(key).
-- The property yuiRecordId has been deprecated in favor of the accessor method
-getId().
-
-* The following RecordSet APIs have changed:
-- The method getRecordBy() is not implemented.
-- The method insert() has been deprecated in favor of addRecord() and addRecords().
-- The method replace() has been renamed replaceRecords().
-- The method sort() has been deprecated in favor of sortRecords().
-
-* The following Column APIs have changed:
-- Column type has been deprecated in favor of formatter. In your Column
-definitions, please change type:"date" to formatter:"date", type:"currency" to
-formatter:"currency", etc.
-- The property parser is no longer used. Implementers should use the static
-DataSource methods DataSource.parseDate(), DataSource.parseNumber(), and
-DataSource.parseString() for type conversion functionality.
-- The methods getColSpan() and getRowSpan() have been renamed to getColspan()
-and getRowspan().
-- The return value for the method getId() has been changed.
-- The following methods are no longer implemented: parse(), parseCheckbox(),
-parseDate(), parseNumber(), parseSelect(). Implementers should now use a
-DataSource with a data type of HTML TABLE element.
-- The showEditor() method is no longer implemented. Implementers should now use
-the DataTable method showCellEditor().
-- All static formatter functions have been moved from the Column class to the
-DataTable class.
-
-* The DataTable method getColumn() has a known issue where instead of accepting
-a Column's key index value, the method accepts a Column's ID value. Until this
-issue is fixed, implementers can use the following workaround:
-
-    // Instead of this:
-    // var oColumn = myDataTable.getColumn(0);
-
-    // Use this:
-    var oColumn = myDataTable.getColumn(myDataTable.getFirstTrEl().cells[0].yuiColumnId);
-
-
-
-
-
-
-
-
-
-
-*** version 2.2.2 ***
-
-* Removed workaround for a fixed Dom.getXY() bug that was causing a positioning
-problem for inline editors on scrolled pages.
-
-
-
-**** version 2.2.1 ***
-
-* Changed default pagination from enabled to disabled. Must set property
-paginator to true to enable built-in client-side pagination.
-* Removed deleteSelectedRows() and added deleteRows().
-* Deprecated properties isEmpty and isLoading, and methods showLoadingMessage(),
-showEmptyMessage(), and hideTableMessages(). Implementers should now use
-showTableMessage() and hideTableMessage().
-* Deprecated methods paginateRows() and onDataReturnPaginateRows(). Implementers
-should now use popualateTable() and onDataReturnPopulateTable().
-* Deprecated pagination properties pageCurrent, rowsPerPage, startRecordIndex,
-pageLinksLength, rowsPerPageDropdown, pageLinksStart, and pagers.
-* Fixed unclickable links.
-* Fix to support data values of 0 (zero).
-* Fixed broken validation in multiple places when the value 0 (zero) is passed
-in as an argument.
-* Fixed incorrect month output in formatDate().
-* Fixed broken empty message when there are zero rows.
-* Allow implementers to use data with field name "id".
-* Fixed Column resizeability in -min builds.
-* Fixed Column sorting of null, undefined, and empty values.
-* Fixed Column sorting of nested headers.
-* Fixed paginator dropdowns to stay in sync when paginating.
-* Fixed rowSingleSelect for paginated DataTable.
-* Fix for currency values with more than 2 decimal places.
-* Fixed broken TR ID assignments in replaceRows().
-* Fixed Opera UI artifacting problem when repaginating via dropdowns.
-* Fixed orphaned ColumnEditor during pagination or other de facto blur
-interaction. Data gets saved.
-* Extracted non-foundational CSS for scrollable DataTables to make UI easier to
-customize.
-* Updated methods select() and unselect() to also accept an array of elements or
-an array of strings.
-* Improved row selection behavior to model the desktop paradigm (i.e., require
-CONTROL and/or SHIFT keys to multi-select).
-* Tweaked inline editing for better Mac performance.
-* Refactored pagination code to be easier to implement, configure, and extend.
-* Accept an error boolean from DataSource in case of data error and show error
-message.
-* The CustomEvent rowDeleteEvent is now only fired once per deleted row and
-its argument signature has been modified.
-* Added selectRow(), rowSelectEvent, unselectRow(), rowUnselectEvent, rowAddEvent,
-and rowUpdateEvent.
-* Added constants CLASS_TABLE, CLASS_EDITOR, CLASS_FIRST, and CLASS_LAST.
-* Added ColumnEditor class moveContainerTo().
-* Add IDs and class hooks to TABLE element and ColumnEditor's container DIV.
-* Add class hooks to first and last TR elements.
-* Added hook to doBeforeLoadData() for the not-from-markup constructor flow.
-* Added properties paginator and paginatorOptions, as well as method getPaginator().
-* Added methods saveEditorData() and cancelEditorData().
-* Improved type checking with YAHOO.lang.
-
-
-
-**** version 2.2.0 ***
-
-* Beta release.
-* Caption is not supported when scrolling is enabled.
-* Resizeability is not supported for fixed-width DataTables.
diff --git a/eclipse.org-common/yui/2.6.0/build/datatable/assets/datatable-core.css b/eclipse.org-common/yui/2.6.0/build/datatable/assets/datatable-core.css
deleted file mode 100644
index 89f2961..0000000
--- a/eclipse.org-common/yui/2.6.0/build/datatable/assets/datatable-core.css
+++ /dev/null
@@ -1,86 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* foundational CSS */
-
-/* mask */
-.yui-skin-sam .yui-dt-mask {
-    position:absolute;
-    z-index:9500;
-}
-
-/* scrollable */
-.yui-dt-tmp {
-    position:absolute;
-    left:-9000px;
-}
-
-.yui-dt-scrollable .yui-dt-bd {
-    overflow:auto;
-}
-.yui-dt-scrollable .yui-dt-hd {
-    overflow:hidden;
-    position:relative; /* for ie overflow bug http://rowanw.com/bugs/overflow_relative.htm */
-} 
-
-.yui-dt-scrollable .yui-dt-bd thead tr,
-.yui-dt-scrollable .yui-dt-bd thead th {
-    position:absolute;
-    left:-1500px;
-}
-
-.yui-dt-scrollable tbody {
-    -moz-outline:none;
-}
-
-/* draggable columns */
-.yui-dt-draggable {
-    cursor: move;
-}
-.yui-dt-coltarget {
-    position: absolute;
-    z-index: 999;
-}
-
-/* resizeable columns */
-.yui-dt-hd {
-    zoom:1; 
-}
-th.yui-dt-resizeable .yui-dt-resizerliner {
-    position:relative;
-}
-.yui-dt-resizer {
-    position:absolute;
-    right:0;
-    bottom:0;
-    height:100%;
-    cursor:e-resize;
-    cursor:col-resize;
-    background-color:#CCC;opacity:0;filter: alpha(opacity=0); /* Bug 1952811: IE transparency z-index */
-}
-.yui-dt-resizerproxy {
-    visibility:hidden;
-    position:absolute;
-    z-index:9000;
-}
-
-/* hidden columns */
-th.yui-dt-hidden .yui-dt-liner, 
-td.yui-dt-hidden .yui-dt-liner,
-th.yui-dt-hidden .yui-dt-resizer {
-    /*TODO: document change from 2.5.2 to 2.6
-    margin:0;
-    padding:0;
-    white-space:nowrap;
-    width:1px;
-    overflow:hidden;*/
-    display:none;
-}
-
-/* editing */
-.yui-dt-editor {
-    position:absolute;z-index:9000;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/datatable/assets/datatable.css b/eclipse.org-common/yui/2.6.0/build/datatable/assets/datatable.css
deleted file mode 100644
index 5580c2d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/datatable/assets/datatable.css
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/*foundational css*/

-.yui-dt-table th, .yui-dt-table td {

-    overflow:hidden;

-}

-

-th .yui-dt-header {

-    position:relative;

-}

-

-th .yui-dt-label {

-    position:relative;

-    border-right:10px;

-}

-

-th .yui-dt-resizer {

-    position:absolute;

-    margin-right:-6px;

-    right:0;

-    bottom:0;

-    width:6px;

-    height:100%;

-    cursor:w-resize;

-    cursor:col-resize;

-}

-

-/* foundational scrolling css */

-.yui-dt-scrollable  {

-    *overflow-y:auto; /* for ie */

-}

-.yui-dt-scrollable  thead {

-    display:block; /* for safari and opera */

-}

-.yui-dt-scrollable thead tr {

-    position:relative;  /* for ie */

-}

-.yui-dt-scrollbody {

-    display:block; /* for safari and opera */

-    overflow:auto; /* for gecko */

-}

-

-.yui-dt-editor {

-    position:absolute;

-}

diff --git a/eclipse.org-common/yui/2.6.0/build/datatable/assets/skins/sam/datatable-skin.css b/eclipse.org-common/yui/2.6.0/build/datatable/assets/skins/sam/datatable-skin.css
deleted file mode 100644
index b0e6369..0000000
--- a/eclipse.org-common/yui/2.6.0/build/datatable/assets/skins/sam/datatable-skin.css
+++ /dev/null
@@ -1,243 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* basic skin styles */
-.yui-skin-sam .yui-dt table {
-    margin:0;padding:0;
-    font-family:arial;font-size:inherit;
-    border-collapse:separate;*border-collapse:collapse;border-spacing:0; /* since ie6 and ie7 behave differently */
-    border:1px solid #7F7F7F;
-}
-.yui-skin-sam .yui-dt thead {border-spacing:0;} /* for safari bug */
-
-.yui-skin-sam .yui-dt caption {
-    color:#000000;
-    font-size:85%;
-    font-weight:normal;
-    font-style:italic;
-    line-height:1;
-    padding:1em 0pt;
-    text-align:center;
-}
-
-.yui-skin-sam .yui-dt th {
-    background:#D8D8DA url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0; /* header gradient */
-}
-.yui-skin-sam .yui-dt th,
-.yui-skin-sam .yui-dt th a {
-    font-weight:normal;text-decoration:none;color:#000; /* header text */
-    vertical-align:bottom;
-}
-.yui-skin-sam .yui-dt th {
-    margin:0;padding:0;
-    border:none;
-    border-right:1px solid #CBCBCB;/*  inner column border */
-}
-.yui-skin-sam .yui-dt tr.yui-dt-first td {
-    border-top:1px solid #7F7F7F;  /* tbody top border  */
-}
-.yui-skin-sam .yui-dt th .yui-dt-liner {
-    white-space:nowrap;
-}
-.yui-skin-sam .yui-dt-liner {
-    margin:0;padding:0;
-    padding:4px 10px 4px 10px; /* cell padding */
-}
-.yui-skin-sam .yui-dt-coltarget {
-    width: 5px;
-    background-color: red;
-}
-.yui-skin-sam .yui-dt td {
-    margin:0;padding:0;
-    border:none;
-    border-right:1px solid #CBCBCB; /* inner column border */
-    text-align:left;
-}
-.yui-skin-sam .yui-dt-list td {
-    border-right:none; /* disable inner column border in list mode */
-}
-.yui-skin-sam .yui-dt-resizer {
-    width:6px;
-}
-
-/* mask */
-.yui-skin-sam .yui-dt-mask {
-    background-color: #000;
-    opacity: .25;
-    *filter: alpha(opacity=25);  /* Set opacity in IE */
-}
-
-/* messaging */
-.yui-skin-sam .yui-dt-message  {
-    background-color:#FFF;
-}
-
-/* scrolling */
-.yui-skin-sam .yui-dt-scrollable table {border:none;}
-.yui-skin-sam .yui-dt-scrollable .yui-dt-hd {border-left:1px solid #7F7F7F;border-top:1px solid #7F7F7F;border-right:1px solid #7F7F7F;}
-.yui-skin-sam .yui-dt-scrollable .yui-dt-bd {border-left:1px solid #7F7F7F;border-bottom:1px solid #7F7F7F;border-right:1px solid #7F7F7F;background-color:#FFF;}
-.yui-skin-sam .yui-dt-scrollable .yui-dt-data tr.yui-dt-last td {border-bottom:1px solid #7F7F7F;}
-
-/* sortable columns */
-.yui-skin-sam thead .yui-dt-sortable {
-    cursor:pointer;
-}
-.yui-skin-sam th.yui-dt-asc,
-.yui-skin-sam th.yui-dt-desc {
-    background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -100px; /* sorted header gradient */
-}
-.yui-skin-sam th.yui-dt-sortable .yui-dt-label {
-    margin-right:10px;
-}
-.yui-skin-sam th.yui-dt-asc .yui-dt-liner {
-    background:url(dt-arrow-up.png) no-repeat right; /* sorted header gradient */
-}
-.yui-skin-sam th.yui-dt-desc .yui-dt-liner {
-    background:url(dt-arrow-dn.png) no-repeat right; /* sorted header gradient */
-}
-
-/* editing */
-tbody .yui-dt-editable {
-    cursor:pointer;
-}
-.yui-dt-editor {
-    text-align:left;
-    background-color:#F2F2F2;
-    border:1px solid #808080;
-    padding:6px;
-}
-.yui-dt-editor label {
-    padding-left:4px;padding-right:6px;
-}
-.yui-dt-editor .yui-dt-button {
-    padding-top:6px;text-align:right;
-}
-.yui-dt-editor .yui-dt-button button {
-    background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
-    border:1px solid #999;
-    width:4em;height:1.8em;
-    margin-left:6px;
-}
-.yui-dt-editor .yui-dt-button button.yui-dt-default {
-    background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1400px;
-    background-color: #5584E0;
-    border:1px solid #304369;
-    color:#FFF
-}
-.yui-dt-editor .yui-dt-button button:hover {
-    background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1300px;
-    color:#000;
-}
-.yui-dt-editor .yui-dt-button button:active {
-    background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1700px;
-    color:#000;
-}
-
-/* striping */
-.yui-skin-sam tr.yui-dt-even { background-color:#FFF; } /* white */
-.yui-skin-sam tr.yui-dt-odd { background-color:#EDF5FF; } /* light blue */
-.yui-skin-sam tr.yui-dt-even td.yui-dt-asc,
-.yui-skin-sam tr.yui-dt-even td.yui-dt-desc { background-color:#EDF5FF; } /* light blue sorted */
-.yui-skin-sam tr.yui-dt-odd td.yui-dt-asc,
-.yui-skin-sam tr.yui-dt-odd td.yui-dt-desc { background-color:#DBEAFF; } /* dark blue sorted */
-
-/* disable striping in list mode */
-.yui-skin-sam .yui-dt-list tr.yui-dt-even { background-color:#FFF; } /* white */
-.yui-skin-sam .yui-dt-list tr.yui-dt-odd { background-color:#FFF; } /* white */
-.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-asc,
-.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-desc { background-color:#EDF5FF; } /* light blue sorted */
-.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-asc,
-.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-desc { background-color:#EDF5FF; } /* light blue sorted */
-
-/* highlighting */
-.yui-skin-sam th.yui-dt-highlighted,
-.yui-skin-sam th.yui-dt-highlighted a {
-    background-color:#B2D2FF; /* med blue hover */
-}
-.yui-skin-sam tr.yui-dt-highlighted,
-.yui-skin-sam tr.yui-dt-highlighted td.yui-dt-asc,
-.yui-skin-sam tr.yui-dt-highlighted td.yui-dt-desc,
-.yui-skin-sam tr.yui-dt-even td.yui-dt-highlighted,
-.yui-skin-sam tr.yui-dt-odd td.yui-dt-highlighted {
-    cursor:pointer;
-    background-color:#B2D2FF; /* med blue hover */
-}
-
-/* enable highlighting in list mode */
-.yui-skin-sam .yui-dt-list th.yui-dt-highlighted,
-.yui-skin-sam .yui-dt-list th.yui-dt-highlighted a {
-    background-color:#B2D2FF; /* med blue hover */
-}
-.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted,
-.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted td.yui-dt-asc,
-.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted td.yui-dt-desc,
-.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-highlighted,
-.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-highlighted {
-    cursor:pointer;
-    background-color:#B2D2FF; /* med blue  hover */
-}
-
-/* selection */
-.yui-skin-sam th.yui-dt-selected,
-.yui-skin-sam th.yui-dt-selected a {
-    background-color:#446CD7; /* bright blue selected cell */
-}
-.yui-skin-sam tr.yui-dt-selected td,
-.yui-skin-sam tr.yui-dt-selected td.yui-dt-asc,
-.yui-skin-sam tr.yui-dt-selected td.yui-dt-desc {
-    background-color:#426FD9; /* bright blue selected row */
-    color:#FFF;
-}
-.yui-skin-sam tr.yui-dt-even td.yui-dt-selected,
-.yui-skin-sam tr.yui-dt-odd td.yui-dt-selected {
-    background-color:#446CD7; /* bright blue selected cell */
-    color:#FFF;
-}
-
-/* enable selection in list mode */
-.yui-skin-sam .yui-dt-list th.yui-dt-selected,
-.yui-skin-sam .yui-dt-list th.yui-dt-selected a {
-    background-color:#446CD7; /* bright blue selected cell */
-}
-.yui-skin-sam .yui-dt-list tr.yui-dt-selected td,
-.yui-skin-sam .yui-dt-list tr.yui-dt-selected td.yui-dt-asc,
-.yui-skin-sam .yui-dt-list tr.yui-dt-selected td.yui-dt-desc {
-    background-color:#426FD9; /* bright blue selected row */
-    color:#FFF;
-}
-.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-selected,
-.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-selected {
-    background-color:#446CD7; /* bright blue selected cell */
-    color:#FFF;
-}
-
-/* pagination */
-.yui-skin-sam .yui-dt-paginator {
-    display:block;margin:6px 0;white-space:nowrap;
-}
-.yui-skin-sam .yui-dt-paginator .yui-dt-first,
-.yui-skin-sam .yui-dt-paginator .yui-dt-last,
-.yui-skin-sam .yui-dt-paginator .yui-dt-selected {
-    padding:2px 6px;
-}
-.yui-skin-sam .yui-dt-paginator a.yui-dt-first,
-.yui-skin-sam .yui-dt-paginator a.yui-dt-last {
-    text-decoration:none;
-}
-.yui-skin-sam .yui-dt-paginator .yui-dt-previous,
-.yui-skin-sam .yui-dt-paginator .yui-dt-next {
-    display:none;
-}
-.yui-skin-sam a.yui-dt-page {
-    border:1px solid #CBCBCB;
-    padding:2px 6px;
-    text-decoration:none;
-    background-color:#fff
-}
-.yui-skin-sam .yui-dt-selected {
-    border:1px solid #fff;
-    background-color:#fff;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/datatable/assets/skins/sam/datatable.css b/eclipse.org-common/yui/2.6.0/build/datatable/assets/skins/sam/datatable.css
deleted file mode 100644
index 8c7d955..0000000
--- a/eclipse.org-common/yui/2.6.0/build/datatable/assets/skins/sam/datatable.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-dt-mask{position:absolute;z-index:9500;}.yui-dt-tmp{position:absolute;left:-9000px;}.yui-dt-scrollable .yui-dt-bd{overflow:auto;}.yui-dt-scrollable .yui-dt-hd{overflow:hidden;position:relative;}.yui-dt-scrollable .yui-dt-bd thead tr,.yui-dt-scrollable .yui-dt-bd thead th{position:absolute;left:-1500px;}.yui-dt-scrollable tbody{-moz-outline:none;}.yui-dt-draggable{cursor:move;}.yui-dt-coltarget{position:absolute;z-index:999;}.yui-dt-hd{zoom:1;}th.yui-dt-resizeable .yui-dt-resizerliner{position:relative;}.yui-dt-resizer{position:absolute;right:0;bottom:0;height:100%;cursor:e-resize;cursor:col-resize;background-color:#CCC;opacity:0;filter:alpha(opacity=0);}.yui-dt-resizerproxy{visibility:hidden;position:absolute;z-index:9000;}th.yui-dt-hidden .yui-dt-liner,td.yui-dt-hidden .yui-dt-liner,th.yui-dt-hidden .yui-dt-resizer{display:none;}.yui-dt-editor{position:absolute;z-index:9000;}.yui-skin-sam .yui-dt table{margin:0;padding:0;font-family:arial;font-size:inherit;border-collapse:separate;*border-collapse:collapse;border-spacing:0;border:1px solid #7F7F7F;}.yui-skin-sam .yui-dt thead{border-spacing:0;}.yui-skin-sam .yui-dt caption{color:#000000;font-size:85%;font-weight:normal;font-style:italic;line-height:1;padding:1em 0pt;text-align:center;}.yui-skin-sam .yui-dt th{background:#D8D8DA url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;}.yui-skin-sam .yui-dt th,.yui-skin-sam .yui-dt th a{font-weight:normal;text-decoration:none;color:#000;vertical-align:bottom;}.yui-skin-sam .yui-dt th{margin:0;padding:0;border:none;border-right:1px solid #CBCBCB;}.yui-skin-sam .yui-dt tr.yui-dt-first td{border-top:1px solid #7F7F7F;}.yui-skin-sam .yui-dt th .yui-dt-liner{white-space:nowrap;}.yui-skin-sam .yui-dt-liner{margin:0;padding:0;padding:4px 10px 4px 10px;}.yui-skin-sam .yui-dt-coltarget{width:5px;background-color:red;}.yui-skin-sam .yui-dt td{margin:0;padding:0;border:none;border-right:1px solid #CBCBCB;text-align:left;}.yui-skin-sam .yui-dt-list td{border-right:none;}.yui-skin-sam .yui-dt-resizer{width:6px;}.yui-skin-sam .yui-dt-mask{background-color:#000;opacity:.25;*filter:alpha(opacity=25);}.yui-skin-sam .yui-dt-message{background-color:#FFF;}.yui-skin-sam .yui-dt-scrollable table{border:none;}.yui-skin-sam .yui-dt-scrollable .yui-dt-hd{border-left:1px solid #7F7F7F;border-top:1px solid #7F7F7F;border-right:1px solid #7F7F7F;}.yui-skin-sam .yui-dt-scrollable .yui-dt-bd{border-left:1px solid #7F7F7F;border-bottom:1px solid #7F7F7F;border-right:1px solid #7F7F7F;background-color:#FFF;}.yui-skin-sam .yui-dt-scrollable .yui-dt-data tr.yui-dt-last td{border-bottom:1px solid #7F7F7F;}.yui-skin-sam thead .yui-dt-sortable{cursor:pointer;}.yui-skin-sam th.yui-dt-asc,.yui-skin-sam th.yui-dt-desc{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -100px;}.yui-skin-sam th.yui-dt-sortable .yui-dt-label{margin-right:10px;}.yui-skin-sam th.yui-dt-asc .yui-dt-liner{background:url(dt-arrow-up.png) no-repeat right;}.yui-skin-sam th.yui-dt-desc .yui-dt-liner{background:url(dt-arrow-dn.png) no-repeat right;}tbody .yui-dt-editable{cursor:pointer;}.yui-dt-editor{text-align:left;background-color:#F2F2F2;border:1px solid #808080;padding:6px;}.yui-dt-editor label{padding-left:4px;padding-right:6px;}.yui-dt-editor .yui-dt-button{padding-top:6px;text-align:right;}.yui-dt-editor .yui-dt-button button{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;border:1px solid #999;width:4em;height:1.8em;margin-left:6px;}.yui-dt-editor .yui-dt-button button.yui-dt-default{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1400px;background-color:#5584E0;border:1px solid #304369;color:#FFF}.yui-dt-editor .yui-dt-button button:hover{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1300px;color:#000;}.yui-dt-editor .yui-dt-button button:active{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1700px;color:#000;}.yui-skin-sam tr.yui-dt-even{background-color:#FFF;}.yui-skin-sam tr.yui-dt-odd{background-color:#EDF5FF;}.yui-skin-sam tr.yui-dt-even td.yui-dt-asc,.yui-skin-sam tr.yui-dt-even td.yui-dt-desc{background-color:#EDF5FF;}.yui-skin-sam tr.yui-dt-odd td.yui-dt-asc,.yui-skin-sam tr.yui-dt-odd td.yui-dt-desc{background-color:#DBEAFF;}.yui-skin-sam .yui-dt-list tr.yui-dt-even{background-color:#FFF;}.yui-skin-sam .yui-dt-list tr.yui-dt-odd{background-color:#FFF;}.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-asc,.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-desc{background-color:#EDF5FF;}.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-asc,.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-desc{background-color:#EDF5FF;}.yui-skin-sam th.yui-dt-highlighted,.yui-skin-sam th.yui-dt-highlighted a{background-color:#B2D2FF;}.yui-skin-sam tr.yui-dt-highlighted,.yui-skin-sam tr.yui-dt-highlighted td.yui-dt-asc,.yui-skin-sam tr.yui-dt-highlighted td.yui-dt-desc,.yui-skin-sam tr.yui-dt-even td.yui-dt-highlighted,.yui-skin-sam tr.yui-dt-odd td.yui-dt-highlighted{cursor:pointer;background-color:#B2D2FF;}.yui-skin-sam .yui-dt-list th.yui-dt-highlighted,.yui-skin-sam .yui-dt-list th.yui-dt-highlighted a{background-color:#B2D2FF;}.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted,.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted td.yui-dt-asc,.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted td.yui-dt-desc,.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-highlighted,.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-highlighted{cursor:pointer;background-color:#B2D2FF;}.yui-skin-sam th.yui-dt-selected,.yui-skin-sam th.yui-dt-selected a{background-color:#446CD7;}.yui-skin-sam tr.yui-dt-selected td,.yui-skin-sam tr.yui-dt-selected td.yui-dt-asc,.yui-skin-sam tr.yui-dt-selected td.yui-dt-desc{background-color:#426FD9;color:#FFF;}.yui-skin-sam tr.yui-dt-even td.yui-dt-selected,.yui-skin-sam tr.yui-dt-odd td.yui-dt-selected{background-color:#446CD7;color:#FFF;}.yui-skin-sam .yui-dt-list th.yui-dt-selected,.yui-skin-sam .yui-dt-list th.yui-dt-selected a{background-color:#446CD7;}.yui-skin-sam .yui-dt-list tr.yui-dt-selected td,.yui-skin-sam .yui-dt-list tr.yui-dt-selected td.yui-dt-asc,.yui-skin-sam .yui-dt-list tr.yui-dt-selected td.yui-dt-desc{background-color:#426FD9;color:#FFF;}.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-selected,.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-selected{background-color:#446CD7;color:#FFF;}.yui-skin-sam .yui-dt-paginator{display:block;margin:6px 0;white-space:nowrap;}.yui-skin-sam .yui-dt-paginator .yui-dt-first,.yui-skin-sam .yui-dt-paginator .yui-dt-last,.yui-skin-sam .yui-dt-paginator .yui-dt-selected{padding:2px 6px;}.yui-skin-sam .yui-dt-paginator a.yui-dt-first,.yui-skin-sam .yui-dt-paginator a.yui-dt-last{text-decoration:none;}.yui-skin-sam .yui-dt-paginator .yui-dt-previous,.yui-skin-sam .yui-dt-paginator .yui-dt-next{display:none;}.yui-skin-sam a.yui-dt-page{border:1px solid #CBCBCB;padding:2px 6px;text-decoration:none;background-color:#fff}.yui-skin-sam .yui-dt-selected{border:1px solid #fff;background-color:#fff;}
diff --git a/eclipse.org-common/yui/2.6.0/build/datatable/assets/skins/sam/dt-arrow-dn.png b/eclipse.org-common/yui/2.6.0/build/datatable/assets/skins/sam/dt-arrow-dn.png
deleted file mode 100644
index 85fda0b..0000000
--- a/eclipse.org-common/yui/2.6.0/build/datatable/assets/skins/sam/dt-arrow-dn.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/datatable/assets/skins/sam/dt-arrow-up.png b/eclipse.org-common/yui/2.6.0/build/datatable/assets/skins/sam/dt-arrow-up.png
deleted file mode 100644
index 1c67431..0000000
--- a/eclipse.org-common/yui/2.6.0/build/datatable/assets/skins/sam/dt-arrow-up.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/datatable/datatable-debug.js b/eclipse.org-common/yui/2.6.0/build/datatable/datatable-debug.js
deleted file mode 100644
index be63cc5..0000000
--- a/eclipse.org-common/yui/2.6.0/build/datatable/datatable-debug.js
+++ /dev/null
@@ -1,16962 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * Mechanism to execute a series of callbacks in a non-blocking queue.  Each callback is executed via setTimout unless configured with a negative timeout, in which case it is run in blocking mode in the same execution thread as the previous callback.  Callbacks can be function references or object literals with the following keys:
- * <ul>
- *    <li><code>method</code> - {Function} REQUIRED the callback function.</li>
- *    <li><code>scope</code> - {Object} the scope from which to execute the callback.  Default is the global window scope.</li>
- *    <li><code>argument</code> - {Array} parameters to be passed to method as individual arguments.</li>
- *    <li><code>timeout</code> - {number} millisecond delay to wait after previous callback completion before executing this callback.  Negative values cause immediate blocking execution.  Default 0.</li>
- *    <li><code>until</code> - {Function} boolean function executed before each iteration.  Return true to indicate completion and proceed to the next callback.</li>
- *    <li><code>iterations</code> - {Number} number of times to execute the callback before proceeding to the next callback in the chain. Incompatible with <code>until</code>.</li>
- * </ul>
- *
- * @namespace YAHOO.util
- * @class Chain
- * @constructor
- * @param callback* {Function|Object} Any number of callbacks to initialize the queue
-*/
-YAHOO.util.Chain = function () {
-    /**
-     * The callback queue
-     * @property q
-     * @type {Array}
-     * @private
-     */
-    this.q = [].slice.call(arguments);
-
-    /**
-     * Event fired when the callback queue is emptied via execution (not via
-     * a call to chain.stop().
-     * @event end
-     */
-    this.createEvent('end');
-};
-
-YAHOO.util.Chain.prototype = {
-    /**
-     * Timeout id used to pause or stop execution and indicate the execution state of the Chain.  0 indicates paused or stopped, -1 indicates blocking execution, and any positive number indicates non-blocking execution.
-     * @property id
-     * @type {number}
-     * @private
-     */
-    id   : 0,
-
-    /**
-     * Begin executing the chain, or resume execution from the last paused position.
-     * @method run
-     * @return {Chain} the Chain instance
-     */
-    run : function () {
-        // Grab the first callback in the queue
-        var c  = this.q[0],
-            fn;
-
-        // If there is no callback in the queue or the Chain is currently
-        // in an execution mode, return
-        if (!c) {
-            this.fireEvent('end');
-            return this;
-        } else if (this.id) {
-            return this;
-        }
-
-        fn = c.method || c;
-
-        if (typeof fn === 'function') {
-            var o    = c.scope || {},
-                args = c.argument || [],
-                ms   = c.timeout || 0,
-                me   = this;
-                
-            if (!(args instanceof Array)) {
-                args = [args];
-            }
-
-            // Execute immediately if the callback timeout is negative.
-            if (ms < 0) {
-                this.id = ms;
-                if (c.until) {
-                    for (;!c.until();) {
-                        // Execute the callback from scope, with argument
-                        fn.apply(o,args);
-                    }
-                } else if (c.iterations) {
-                    for (;c.iterations-- > 0;) {
-                        fn.apply(o,args);
-                    }
-                } else {
-                    fn.apply(o,args);
-                }
-                this.q.shift();
-                this.id = 0;
-                return this.run();
-            } else {
-                // If the until condition is set, check if we're done
-                if (c.until) {
-                    if (c.until()) {
-                        // Shift this callback from the queue and execute the next
-                        // callback
-                        this.q.shift();
-                        return this.run();
-                    }
-                // Otherwise if either iterations is not set or we're
-                // executing the last iteration, shift callback from the queue
-                } else if (!c.iterations || !--c.iterations) {
-                    this.q.shift();
-                }
-
-                // Otherwise set to execute after the configured timeout
-                this.id = setTimeout(function () {
-                    // Execute the callback from scope, with argument
-                    fn.apply(o,args);
-                    // Check if the Chain was not paused from inside the callback
-                    if (me.id) {
-                        // Indicate ready to run state
-                        me.id = 0;
-                        // Start the fun all over again
-                        me.run();
-                    }
-                },ms);
-            }
-        }
-
-        return this;
-    },
-    
-    /**
-     * Add a callback to the end of the queue
-     * @method add
-     * @param c {Function|Object} the callback function ref or object literal
-     * @return {Chain} the Chain instance
-     */
-    add  : function (c) {
-        this.q.push(c);
-        return this;
-    },
-
-    /**
-     * Pause the execution of the Chain after the current execution of the
-     * current callback completes.  If called interstitially, clears the
-     * timeout for the pending callback. Paused Chains can be restarted with
-     * chain.run()
-     * @method pause
-     * @return {Chain} the Chain instance
-     */
-    pause: function () {
-        clearTimeout(this.id);
-        this.id = 0;
-        return this;
-    },
-
-    /**
-     * Stop and clear the Chain's queue after the current execution of the
-     * current callback completes.
-     * @method stop
-     * @return {Chain} the Chain instance
-     */
-    stop : function () { 
-        this.pause();
-        this.q = [];
-        return this;
-    }
-};
-YAHOO.lang.augmentProto(YAHOO.util.Chain,YAHOO.util.EventProvider);
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The ColumnSet class defines and manages a DataTable's Columns,
- * including nested hierarchies and access to individual Column instances.
- *
- * @namespace YAHOO.widget
- * @class ColumnSet
- * @uses YAHOO.util.EventProvider
- * @constructor
- * @param aDefinitions {Object[]} Array of object literals that define cells in
- * the THEAD.
- */
-YAHOO.widget.ColumnSet = function(aDefinitions) {
-    this._sId = "yui-cs" + YAHOO.widget.ColumnSet._nCount;
-
-    // First clone the defs
-    aDefinitions = YAHOO.widget.DataTable._cloneObject(aDefinitions);
-    this._init(aDefinitions);
-
-    YAHOO.widget.ColumnSet._nCount++;
-    YAHOO.log("ColumnSet initialized", "info", this.toString());
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Internal class variable to index multiple ColumnSet instances.
- *
- * @property ColumnSet._nCount
- * @type Number
- * @private
- * @static
- */
-YAHOO.widget.ColumnSet._nCount = 0;
-
-YAHOO.widget.ColumnSet.prototype = {
-    /**
-     * Unique instance name.
-     *
-     * @property _sId
-     * @type String
-     * @private
-     */
-    _sId : null,
-
-    /**
-     * Array of object literal Column definitions passed to the constructor.
-     *
-     * @property _aDefinitions
-     * @type Object[]
-     * @private
-     */
-    _aDefinitions : null,
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public member variables
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Top-down tree representation of Column hierarchy.
-     *
-     * @property tree
-     * @type YAHOO.widget.Column[]
-     */
-    tree : null,
-
-    /**
-     * Flattened representation of all Columns.
-     *
-     * @property flat
-     * @type YAHOO.widget.Column[]
-     * @default []
-     */
-    flat : null,
-
-    /**
-     * Array of Columns that map one-to-one to a table column.
-     *
-     * @property keys
-     * @type YAHOO.widget.Column[]
-     * @default []
-     */
-    keys : null,
-
-    /**
-     * ID index of nested parent hierarchies for HEADERS accessibility attribute.
-     *
-     * @property headers
-     * @type String[]
-     * @default []
-     */
-    headers : null,
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Initializes ColumnSet instance with data from Column definitions.
-     *
-     * @method _init
-     * @param aDefinitions {Object[]} Array of object literals that define cells in
-     * the THEAD .
-     * @private
-     */
-
-    _init : function(aDefinitions) {        
-        // DOM tree representation of all Columns
-        var tree = [];
-        // Flat representation of all Columns
-        var flat = [];
-        // Flat representation of only Columns that are meant to display data
-        var keys = [];
-        // Array of HEADERS attribute values for all keys in the "keys" array
-        var headers = [];
-
-        // Tracks current node list depth being tracked
-        var nodeDepth = -1;
-
-        // Internal recursive function to define Column instances
-        var parseColumns = function(nodeList, parent) {
-            // One level down
-            nodeDepth++;
-
-            // Create corresponding tree node if not already there for this depth
-            if(!tree[nodeDepth]) {
-                tree[nodeDepth] = [];
-            }
-
-
-            // Parse each node at this depth for attributes and any children
-            for(var j=0; j<nodeList.length; j++) {
-                var currentNode = nodeList[j];
-
-                // Instantiate a new Column for each node
-                var oColumn = new YAHOO.widget.Column(currentNode);
-                
-                // Cross-reference Column ID back to the original object literal definition
-                currentNode.yuiColumnId = oColumn._sId;
-                
-                // Add the new Column to the flat list
-                flat.push(oColumn);
-
-                // Assign its parent as an attribute, if applicable
-                if(parent) {
-                    oColumn._oParent = parent;
-                }
-
-                // The Column has descendants
-                if(YAHOO.lang.isArray(currentNode.children)) {
-                    oColumn.children = currentNode.children;
-
-                    // Determine COLSPAN value for this Column
-                    var terminalChildNodes = 0;
-                    var countTerminalChildNodes = function(ancestor) {
-                        var descendants = ancestor.children;
-                        // Drill down each branch and count terminal nodes
-                        for(var k=0; k<descendants.length; k++) {
-                            // Keep drilling down
-                            if(YAHOO.lang.isArray(descendants[k].children)) {
-                                countTerminalChildNodes(descendants[k]);
-                            }
-                            // Reached branch terminus
-                            else {
-                                terminalChildNodes++;
-                            }
-                        }
-                    };
-                    countTerminalChildNodes(currentNode);
-                    oColumn._nColspan = terminalChildNodes;
-
-                    // Cascade certain properties to children if not defined on their own
-                    var currentChildren = currentNode.children;
-                    for(var k=0; k<currentChildren.length; k++) {
-                        var child = currentChildren[k];
-                        if(oColumn.className && (child.className === undefined)) {
-                            child.className = oColumn.className;
-                        }
-                        if(oColumn.editor && (child.editor === undefined)) {
-                            child.editor = oColumn.editor;
-                        }
-                        //TODO: Deprecated
-                        if(oColumn.editorOptions && (child.editorOptions === undefined)) {
-                            child.editorOptions = oColumn.editorOptions;
-                        }
-                        if(oColumn.formatter && (child.formatter === undefined)) {
-                            child.formatter = oColumn.formatter;
-                        }
-                        if(oColumn.resizeable && (child.resizeable === undefined)) {
-                            child.resizeable = oColumn.resizeable;
-                        }
-                        if(oColumn.sortable && (child.sortable === undefined)) {
-                            child.sortable = oColumn.sortable;
-                        }
-                        if(oColumn.hidden) {
-                            child.hidden = true;
-                        }
-                        if(oColumn.width && (child.width === undefined)) {
-                            child.width = oColumn.width;
-                        }
-                        if(oColumn.minWidth && (child.minWidth === undefined)) {
-                            child.minWidth = oColumn.minWidth;
-                        }
-                        if(oColumn.maxAutoWidth && (child.maxAutoWidth === undefined)) {
-                            child.maxAutoWidth = oColumn.maxAutoWidth;
-                        }
-                        // Backward compatibility
-                        if(oColumn.type && (child.type === undefined)) {
-                            child.type = oColumn.type;
-                        }
-                        if(oColumn.type && !oColumn.formatter) {
-                            YAHOO.log("The property type has been" +
-                            " deprecated in favor of formatter", "warn", oColumn.toString());
-                            oColumn.formatter = oColumn.type;
-                        }
-                        if(oColumn.text && !YAHOO.lang.isValue(oColumn.label)) {
-                            YAHOO.log("The property text has been" +
-                            " deprecated in favor of label", "warn", oColumn.toString());
-                            oColumn.label = oColumn.text;
-                        }
-                        if(oColumn.parser) {
-                            YAHOO.log("The property parser is no longer supported",
-                            "warn", this.toString());
-                        }
-                        if(oColumn.sortOptions && ((oColumn.sortOptions.ascFunction) ||
-                                (oColumn.sortOptions.descFunction))) {
-                            YAHOO.log("The properties sortOptions.ascFunction and " +
-                            " sortOptions.descFunction have been deprecated in favor " +
-                            " of sortOptions.sortFunction", "warn", oColumn.toString());
-                        }
-                    }
-
-                    // The children themselves must also be parsed for Column instances
-                    if(!tree[nodeDepth+1]) {
-                        tree[nodeDepth+1] = [];
-                    }
-                    parseColumns(currentChildren, oColumn);
-                }
-                // This Column does not have any children
-                else {
-                    oColumn._nKeyIndex = keys.length;
-                    oColumn._nColspan = 1;
-                    keys.push(oColumn);
-                }
-
-                // Add the Column to the top-down tree
-                tree[nodeDepth].push(oColumn);
-            }
-            nodeDepth--;
-        };
-
-        // Parse out Column instances from the array of object literals
-        if(YAHOO.lang.isArray(aDefinitions)) {
-            parseColumns(aDefinitions);
-
-            // Store the array
-            this._aDefinitions = aDefinitions;
-        }
-        else {
-            YAHOO.log("Could not initialize ColumnSet due to invalid definitions","error");
-            return null;
-        }
-
-        var i;
-
-        // Determine ROWSPAN value for each Column in the tree
-        var parseTreeForRowspan = function(tree) {
-            var maxRowDepth = 1;
-            var currentRow;
-            var currentColumn;
-
-            // Calculate the max depth of descendants for this row
-            var countMaxRowDepth = function(row, tmpRowDepth) {
-                tmpRowDepth = tmpRowDepth || 1;
-
-                for(var n=0; n<row.length; n++) {
-                    var col = row[n];
-                    // Column has children, so keep counting
-                    if(YAHOO.lang.isArray(col.children)) {
-                        tmpRowDepth++;
-                        countMaxRowDepth(col.children, tmpRowDepth);
-                        tmpRowDepth--;
-                    }
-                    // No children, is it the max depth?
-                    else {
-                        if(tmpRowDepth > maxRowDepth) {
-                            maxRowDepth = tmpRowDepth;
-                        }
-                    }
-
-                }
-            };
-
-            // Count max row depth for each row
-            for(var m=0; m<tree.length; m++) {
-                currentRow = tree[m];
-                countMaxRowDepth(currentRow);
-
-                // Assign the right ROWSPAN values to each Column in the row
-                for(var p=0; p<currentRow.length; p++) {
-                    currentColumn = currentRow[p];
-                    if(!YAHOO.lang.isArray(currentColumn.children)) {
-                        currentColumn._nRowspan = maxRowDepth;
-                    }
-                    else {
-                        currentColumn._nRowspan = 1;
-                    }
-                }
-
-                // Reset counter for next row
-                maxRowDepth = 1;
-            }
-        };
-        parseTreeForRowspan(tree);
-
-        // Store tree index values
-        for(i=0; i<tree[0].length; i++) {
-            tree[0][i]._nTreeIndex = i;
-        }
-
-        // Store header relationships in an array for HEADERS attribute
-        var recurseAncestorsForHeaders = function(i, oColumn) {
-            headers[i].push(oColumn.getSanitizedKey());
-            if(oColumn._oParent) {
-                recurseAncestorsForHeaders(i, oColumn._oParent);
-            }
-        };
-        for(i=0; i<keys.length; i++) {
-            headers[i] = [];
-            recurseAncestorsForHeaders(i, keys[i]);
-            headers[i] = headers[i].reverse();
-        }
-
-        // Save to the ColumnSet instance
-        this.tree = tree;
-        this.flat = flat;
-        this.keys = keys;
-        this.headers = headers;
-    },
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Returns unique name of the ColumnSet instance.
-     *
-     * @method getId
-     * @return {String} Unique name of the ColumnSet instance.
-     */
-
-    getId : function() {
-        return this._sId;
-    },
-
-    /**
-     * ColumnSet instance name, for logging.
-     *
-     * @method toString
-     * @return {String} Unique name of the ColumnSet instance.
-     */
-
-    toString : function() {
-        return "ColumnSet instance " + this._sId;
-    },
-
-    /**
-     * Public accessor to the definitions array.
-     *
-     * @method getDefinitions
-     * @return {Object[]} Array of object literal Column definitions.
-     */
-
-    getDefinitions : function() {
-        var aDefinitions = this._aDefinitions;
-        
-        // Internal recursive function to define Column instances
-        var parseColumns = function(nodeList, oSelf) {
-            // Parse each node at this depth for attributes and any children
-            for(var j=0; j<nodeList.length; j++) {
-                var currentNode = nodeList[j];
-                
-                // Get the Column for each node
-                var oColumn = oSelf.getColumnById(currentNode.yuiColumnId);
-                
-                if(oColumn) {    
-                    // Update the current values
-                    var oDefinition = oColumn.getDefinition();
-                    for(var name in oDefinition) {
-                        if(YAHOO.lang.hasOwnProperty(oDefinition, name)) {
-                            currentNode[name] = oDefinition[name];
-                        }
-                    }
-                }
-                            
-                // The Column has descendants
-                if(YAHOO.lang.isArray(currentNode.children)) {
-                    // The children themselves must also be parsed for Column instances
-                    parseColumns(currentNode.children, oSelf);
-                }
-            }
-        };
-
-        parseColumns(aDefinitions, this);
-        this._aDefinitions = aDefinitions;
-        return aDefinitions;
-    },
-
-    /**
-     * Returns Column instance with given ID.
-     *
-     * @method getColumnById
-     * @param column {String} Column ID.
-     * @return {YAHOO.widget.Column} Column instance.
-     */
-
-    getColumnById : function(column) {
-        if(YAHOO.lang.isString(column)) {
-            var allColumns = this.flat;
-            for(var i=allColumns.length-1; i>-1; i--) {
-                if(allColumns[i]._sId === column) {
-                    return allColumns[i];
-                }
-            }
-        }
-        return null;
-    },
-
-    /**
-     * Returns Column instance with given key or ColumnSet key index.
-     *
-     * @method getColumn
-     * @param column {String | Number} Column key or ColumnSet key index.
-     * @return {YAHOO.widget.Column} Column instance.
-     */
-
-    getColumn : function(column) {
-        if(YAHOO.lang.isNumber(column) && this.keys[column]) {
-            return this.keys[column];
-        }
-        else if(YAHOO.lang.isString(column)) {
-            var allColumns = this.flat;
-            var aColumns = [];
-            for(var i=0; i<allColumns.length; i++) {
-                if(allColumns[i].key === column) {
-                    aColumns.push(allColumns[i]);
-                }
-            }
-            if(aColumns.length === 1) {
-                return aColumns[0];
-            }
-            else if(aColumns.length > 1) {
-                return aColumns;
-            }
-        }
-        return null;
-    },
-
-    /**
-     * Public accessor returns array of given Column's desendants (if any), including itself.
-     *
-     * @method getDescendants
-     * @parem {YAHOO.widget.Column} Column instance.
-     * @return {Array} Array including the Column itself and all descendants (if any).
-     */
-    getDescendants : function(oColumn) {
-        var oSelf = this;
-        var allDescendants = [];
-        var i;
-
-        // Recursive function to loop thru all children
-        var parse = function(oParent) {
-            allDescendants.push(oParent);
-            // This Column has children
-            if(oParent.children) {
-                for(i=0; i<oParent.children.length; i++) {
-                    parse(oSelf.getColumn(oParent.children[i].key));
-                }
-            }
-        };
-        parse(oColumn);
-
-        return allDescendants;
-    }
-};
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The Column class defines and manages attributes of DataTable Columns
- *
- * @namespace YAHOO.widget
- * @class Column
- * @constructor
- * @param oConfigs {Object} Object literal of definitions.
- */
-YAHOO.widget.Column = function(oConfigs) {
-    this._sId = "yui-col" + YAHOO.widget.Column._nCount;
-    
-    // Object literal defines Column attributes
-    if(oConfigs && YAHOO.lang.isObject(oConfigs)) {
-        for(var sConfig in oConfigs) {
-            if(sConfig) {
-                this[sConfig] = oConfigs[sConfig];
-            }
-        }
-    }
-
-    // Assign a key if not found
-    if(!YAHOO.lang.isValue(this.key)) {
-        this.key = "yui-dt-col" + YAHOO.widget.Column._nCount;
-    }
-    
-    // Assign a field if not found, defaults to key
-    if(!YAHOO.lang.isValue(this.field)) {
-        this.field = this.key;
-    }
-
-    // Increment counter
-    YAHOO.widget.Column._nCount++;
-
-    // Backward compatibility
-    if(this.width && !YAHOO.lang.isNumber(this.width)) {
-        this.width = null;
-        YAHOO.log("The Column property width must be a number", "warn", this.toString());
-    }
-    if(this.editor && YAHOO.lang.isString(this.editor)) {
-        this.editor = new YAHOO.widget.CellEditor(this.editor, this.editorOptions);
-        YAHOO.log("The Column property editor must be an instance of YAHOO.widget.CellEditor", "warn", this.toString());
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-YAHOO.lang.augmentObject(YAHOO.widget.Column, {
-    /**
-     * Internal class variable to index multiple Column instances.
-     *
-     * @property Column._nCount
-     * @type Number
-     * @private
-     * @static
-     */
-    _nCount : 0,
-
-    formatCheckbox : function(elCell, oRecord, oColumn, oData) {
-        YAHOO.log("The method YAHOO.widget.Column.formatCheckbox() has been" +
-        " deprecated in favor of YAHOO.widget.DataTable.formatCheckbox()", "warn",
-        "YAHOO.widget.Column.formatCheckbox");
-        YAHOO.widget.DataTable.formatCheckbox(elCell, oRecord, oColumn, oData);
-    },
-
-    formatCurrency : function(elCell, oRecord, oColumn, oData) {
-        YAHOO.log("The method YAHOO.widget.Column.formatCurrency() has been" +
-        " deprecated in favor of YAHOO.widget.DataTable.formatCurrency()", "warn",
-        "YAHOO.widget.Column.formatCurrency");
-        YAHOO.widget.DataTable.formatCurrency(elCell, oRecord, oColumn, oData);
-    },
-
-    formatDate : function(elCell, oRecord, oColumn, oData) {
-        YAHOO.log("The method YAHOO.widget.Column.formatDate() has been" +
-        " deprecated in favor of YAHOO.widget.DataTable.formatDate()", "warn",
-        "YAHOO.widget.Column.formatDate");
-        YAHOO.widget.DataTable.formatDate(elCell, oRecord, oColumn, oData);
-    },
-
-    formatEmail : function(elCell, oRecord, oColumn, oData) {
-        YAHOO.log("The method YAHOO.widget.Column.formatEmail() has been" +
-        " deprecated in favor of YAHOO.widget.DataTable.formatEmail()", "warn",
-        "YAHOO.widget.Column.formatEmail");
-        YAHOO.widget.DataTable.formatEmail(elCell, oRecord, oColumn, oData);
-    },
-
-    formatLink : function(elCell, oRecord, oColumn, oData) {
-        YAHOO.log("The method YAHOO.widget.Column.formatLink() has been" +
-        " deprecated in favor of YAHOO.widget.DataTable.formatLink()", "warn",
-        "YAHOO.widget.Column.formatLink");
-        YAHOO.widget.DataTable.formatLink(elCell, oRecord, oColumn, oData);
-    },
-
-    formatNumber : function(elCell, oRecord, oColumn, oData) {
-        YAHOO.log("The method YAHOO.widget.Column.formatNumber() has been" +
-        " deprecated in favor of YAHOO.widget.DataTable.formatNumber()", "warn",
-        "YAHOO.widget.Column.formatNumber");
-        YAHOO.widget.DataTable.formatNumber(elCell, oRecord, oColumn, oData);
-    },
-
-    formatSelect : function(elCell, oRecord, oColumn, oData) {
-        YAHOO.log("The method YAHOO.widget.Column.formatSelect() has been" +
-        " deprecated in favor of YAHOO.widget.DataTable.formatDropdown()", "warn",
-        "YAHOO.widget.Column.formatSelect");
-        YAHOO.widget.DataTable.formatDropdown(elCell, oRecord, oColumn, oData);
-    }
-});
-
-YAHOO.widget.Column.prototype = {
-    /**
-     * Unique String identifier assigned at instantiation.
-     *
-     * @property _sId
-     * @type String
-     * @private
-     */
-    _sId : null,
-
-    /**
-     * Reference to Column's current position index within its ColumnSet's keys
-     * array, if applicable. This property only applies to non-nested and bottom-
-     * level child Columns.
-     *
-     * @property _nKeyIndex
-     * @type Number
-     * @private
-     */
-    _nKeyIndex : null,
-
-    /**
-     * Reference to Column's current position index within its ColumnSet's tree
-     * array, if applicable. This property only applies to non-nested and top-
-     * level parent Columns.
-     *
-     * @property _nTreeIndex
-     * @type Number
-     * @private
-     */
-    _nTreeIndex : null,
-
-    /**
-     * Number of table cells the Column spans.
-     *
-     * @property _nColspan
-     * @type Number
-     * @private
-     */
-    _nColspan : 1,
-
-    /**
-     * Number of table rows the Column spans.
-     *
-     * @property _nRowspan
-     * @type Number
-     * @private
-     */
-    _nRowspan : 1,
-
-    /**
-     * Column's parent Column instance, or null.
-     *
-     * @property _oParent
-     * @type YAHOO.widget.Column
-     * @private
-     */
-    _oParent : null,
-
-    /**
-     * The DOM reference to the associated TH element.
-     *
-     * @property _elTh
-     * @type HTMLElement
-     * @private
-     */
-    _elTh : null,
-
-    /**
-     * The DOM reference to the associated TH element's liner DIV element.
-     *
-     * @property _elThLiner
-     * @type HTMLElement
-     * @private
-     */
-    _elThLiner : null,
-
-    /**
-     * The DOM reference to the associated TH element's label SPAN element.
-     *
-     * @property _elThLabel
-     * @type HTMLElement
-     * @private
-     */
-    _elThLabel : null,
-
-    /**
-     * The DOM reference to the associated resizerelement (if any).
-     *
-     * @property _elResizer
-     * @type HTMLElement
-     * @private
-     */
-    _elResizer : null,
-
-    /**
-     * Internal width tracker.
-     *
-     * @property _nWidth
-     * @type Number
-     * @private
-     */
-    _nWidth : null,
-
-    /**
-     * For unreg() purposes, a reference to the Column's DragDrop instance.
-     *
-     * @property _dd
-     * @type YAHOO.util.DragDrop
-     * @private
-     */
-    _dd : null,
-
-    /**
-     * For unreg() purposes, a reference to the Column resizer's DragDrop instance.
-     *
-     * @property _ddResizer
-     * @type YAHOO.util.DragDrop
-     * @private
-     */
-    _ddResizer : null,
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public member variables
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Unique name, required.
-     *
-     * @property key
-     * @type String
-     */
-    key : null,
-
-    /**
-     * Associated database field, or null.
-     *
-     * @property field
-     * @type String
-     */
-    field : null,
-
-    /**
-     * Text or HTML for display as Column's label in the TH element.
-     *
-     * @property label
-     * @type String
-     */
-    label : null,
-
-    /**
-     * Column head cell ABBR for accessibility.
-     *
-     * @property abbr
-     * @type String
-     */
-    abbr : null,
-
-    /**
-     * Array of object literals that define children (nested headers) of a Column.
-     *
-     * @property children
-     * @type Object[]
-     */
-    children : null,
-
-    /**
-     * Column width (in pixels).
-     *
-     * @property width
-     * @type Number
-     */
-    width : null,
-
-    /**
-     * Minimum Column width (in pixels).
-     *
-     * @property minWidth
-     * @type Number
-     * @default null
-     */
-    minWidth : null,
-
-    /**
-     * When a width is not defined for a Column, maxAutoWidth defines an upper
-     * limit that the Column should be auto-sized to. If resizeable is enabled, 
-     * users may still resize to a greater width. Most useful for Columns intended
-     * to hold long unbroken, unwrapped Strings, such as URLs, to prevent very
-     * wide Columns from disrupting visual readability by inducing truncation.
-     *
-     * @property maxAutoWidth
-     * @type Number
-     * @default null
-     */
-    maxAutoWidth : null,
-
-    /**
-     * True if Column is in hidden state.
-     *
-     * @property hidden
-     * @type Boolean
-     * @default false     
-     */
-    hidden : false,
-
-    /**
-     * True if Column is in selected state.
-     *
-     * @property selected
-     * @type Boolean
-     * @default false     
-     */
-    selected : false,
-
-    /**
-     * Custom CSS class or array of classes to be applied to every cell in the Column.
-     *
-     * @property className
-     * @type String || String[]
-     */
-    className : null,
-
-    /**
-     * Defines a format function.
-     *
-     * @property formatter
-     * @type String || HTMLFunction
-     */
-    formatter : null,
-    
-    /**
-     * Config passed to YAHOO.util.Number.format() by the 'currency' Column formatter.
-     *
-     * @property currencyOptions
-     * @type Object
-     * @default null
-     */
-    currencyOptions : null,
-
-    /**
-     * Config passed to YAHOO.util.Date.format() by the 'date' Column formatter.
-     *
-     * @property dateOptions
-     * @type Object
-     * @default null
-     */
-    dateOptions : null,
-
-    /**
-     * A CellEditor instance, otherwise Column is not editable.     
-     *
-     * @property editor
-     * @type YAHOO.widget.CellEditor
-     */
-    editor : null,
-
-    /**
-     * True if Column is resizeable, false otherwise. The Drag & Drop Utility is
-     * required to enable this feature. Only bottom-level and non-nested Columns are
-     * resizeble. 
-     *
-     * @property resizeable
-     * @type Boolean
-     * @default false
-     */
-    resizeable : false,
-
-    /**
-     * True if Column is sortable, false otherwise.
-     *
-     * @property sortable
-     * @type Boolean
-     * @default false
-     */
-    sortable : false,
-
-    /**
-     * @property sortOptions.defaultOrder
-     * @deprecated Use sortOptions.defaultDir.
-     */
-    /**
-     * Default sort direction for Column: YAHOO.widget.DataTable.CLASS_ASC or YAHOO.widget.DataTable.CLASS_DESC.
-     *
-     * @property sortOptions.defaultDir
-     * @type String
-     * @default null
-     */
-    /**
-     * Custom field to sort on.
-     *
-     * @property sortOptions.field
-     * @type String
-     * @default null
-     */
-    /**
-     * Custom sort handler.
-     *
-     * @property sortOptions.sortFunction
-     * @type Function
-     * @default null
-     */
-    sortOptions : null,
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Returns unique ID string.
-     *
-     * @method getId
-     * @return {String} Unique ID string.
-     */
-    getId : function() {
-        return this._sId;
-    },
-
-    /**
-     * Column instance name, for logging.
-     *
-     * @method toString
-     * @return {String} Column's unique name.
-     */
-    toString : function() {
-        return "Column instance " + this._sId;
-    },
-
-    /**
-     * Returns object literal definition.
-     *
-     * @method getDefinition
-     * @return {Object} Object literal definition.
-     */
-    getDefinition : function() {
-        var oDefinition = {};
-        
-        // Update the definition
-        oDefinition.abbr = this.abbr;
-        oDefinition.className = this.className;
-        oDefinition.editor = this.editor;
-        oDefinition.editorOptions = this.editorOptions; //TODO: deprecated
-        oDefinition.field = this.field;
-        oDefinition.formatter = this.formatter;
-        oDefinition.hidden = this.hidden;
-        oDefinition.key = this.key;
-        oDefinition.label = this.label;
-        oDefinition.minWidth = this.minWidth;
-        oDefinition.maxAutoWidth = this.maxAutoWidth;
-        oDefinition.resizeable = this.resizeable;
-        oDefinition.selected = this.selected;
-        oDefinition.sortable = this.sortable;
-        oDefinition.sortOptions = this.sortOptions;
-        oDefinition.width = this.width;
-
-        return oDefinition;
-    },
-
-    /**
-     * Returns unique Column key.
-     *
-     * @method getKey
-     * @return {String} Column key.
-     */
-    getKey : function() {
-        return this.key;
-    },
-    
-    /**
-     * Returns field.
-     *
-     * @method getField
-     * @return {String} Column field.
-     */
-    getField : function() {
-        return this.field;
-    },
-    
-    /**
-     * Returns Column key which has been sanitized for DOM (class and ID) usage
-     * starts with letter, contains only letters, numbers, hyphen, or period.
-     *
-     * @method getSanitizedKey
-     * @return {String} Sanitized Column key.
-     */
-    getSanitizedKey : function() {
-        return this.getKey().replace(/[^\w\-.:]/g,"");
-    },
-
-    /**
-     * Public accessor returns Column's current position index within its
-     * ColumnSet's keys array, if applicable. Only non-nested and bottom-level
-     * child Columns will return a value.
-     *
-     * @method getKeyIndex
-     * @return {Number} Position index, or null.
-     */
-    getKeyIndex : function() {
-        return this._nKeyIndex;
-    },
-
-    /**
-     * Public accessor returns Column's current position index within its
-     * ColumnSet's tree array, if applicable. Only non-nested and top-level parent
-     * Columns will return a value;
-     *
-     * @method getTreeIndex
-     * @return {Number} Position index, or null.
-     */
-    getTreeIndex : function() {
-        return this._nTreeIndex;
-    },
-
-    /**
-     * Public accessor returns Column's parent instance if any, or null otherwise.
-     *
-     * @method getParent
-     * @return {YAHOO.widget.Column} Column's parent instance.
-     */
-    getParent : function() {
-        return this._oParent;
-    },
-
-    /**
-     * Public accessor returns Column's calculated COLSPAN value.
-     *
-     * @method getColspan
-     * @return {Number} Column's COLSPAN value.
-     */
-    getColspan : function() {
-        return this._nColspan;
-    },
-    // Backward compatibility
-    getColSpan : function() {
-        YAHOO.log("The method getColSpan() has been" +
-        " deprecated in favor of getColspan()", "warn", this.toString());
-        return this.getColspan();
-    },
-
-    /**
-     * Public accessor returns Column's calculated ROWSPAN value.
-     *
-     * @method getRowspan
-     * @return {Number} Column's ROWSPAN value.
-     */
-    getRowspan : function() {
-        return this._nRowspan;
-    },
-
-    /**
-     * Returns DOM reference to the key TH element.
-     *
-     * @method getThEl
-     * @return {HTMLElement} TH element.
-     */
-    getThEl : function() {
-        return this._elTh;
-    },
-
-    /**
-     * Returns DOM reference to the TH's liner DIV element. Introduced since
-     * resizeable Columns may have an extra resizer liner, making the DIV liner
-     * not reliably the TH element's first child.               
-     *
-     * @method getThLInerEl
-     * @return {HTMLElement} TH element.
-     */
-    getThLinerEl : function() {
-        return this._elThLiner;
-    },
-    
-    /**
-     * Returns DOM reference to the resizer element, or null.
-     *
-     * @method getResizerEl
-     * @return {HTMLElement} DIV element.
-     */
-    getResizerEl : function() {
-        return this._elResizer;
-    },
-
-    // Backward compatibility
-    /**
-     * @method getColEl
-     * @deprecated Use getThEl
-     */
-    getColEl : function() {
-        YAHOO.log("The method getColEl() has been" +
-        " deprecated in favor of getThEl()", "warn",
-        this.toString());
-        return this.getThEl();
-    },
-    getIndex : function() {
-        YAHOO.log("The method getIndex() has been" +
-        " deprecated in favor of getKeyIndex()", "warn",
-        this.toString());
-        return this.getKeyIndex();
-    },
-    format : function() {
-        YAHOO.log("The method format() has been deprecated in favor of the " +
-        "DataTable method formatCell()", "error", this.toString());
-    }
-};
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * Sort static utility to support Column sorting.
- *
- * @namespace YAHOO.util
- * @class Sort
- * @static
- */
-YAHOO.util.Sort = {
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Comparator function for simple case-insensitive string sorting.
-     *
-     * @method compare
-     * @param a {Object} First sort argument.
-     * @param b {Object} Second sort argument.
-     * @param desc {Boolean} True if sort direction is descending, false if
-     * sort direction is ascending.
-     */
-    compare: function(a, b, desc) {
-        if((a === null) || (typeof a == "undefined")) {
-            if((b === null) || (typeof b == "undefined")) {
-                return 0;
-            }
-            else {
-                return 1;
-            }
-        }
-        else if((b === null) || (typeof b == "undefined")) {
-            return -1;
-        }
-
-        if(a.constructor == String) {
-            a = a.toLowerCase();
-        }
-        if(b.constructor == String) {
-            b = b.toLowerCase();
-        }
-        if(a < b) {
-            return (desc) ? 1 : -1;
-        }
-        else if (a > b) {
-            return (desc) ? -1 : 1;
-        }
-        else {
-            return 0;
-        }
-    }
-};
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * ColumnDD subclasses DragDrop to support rearrangeable Columns.
- *
- * @namespace YAHOO.util
- * @class ColumnDD
- * @extends YAHOO.util.DDProxy
- * @constructor
- * @param oDataTable {YAHOO.widget.DataTable} DataTable instance.
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param elTh {HTMLElement} TH element reference.
- * @param elTarget {HTMLElement} Drag target element.
- */
-YAHOO.widget.ColumnDD = function(oDataTable, oColumn, elTh, elTarget) {
-    if(oDataTable && oColumn && elTh && elTarget) {
-        this.datatable = oDataTable;
-        this.table = oDataTable.getTableEl();
-        this.column = oColumn;
-        this.headCell = elTh;
-        this.pointer = elTarget;
-        this.newIndex = null;
-        this.init(elTh);
-        this.initFrame(); // Needed for DDProxy
-        this.invalidHandleTypes = {};
-
-        // Set top/bottom padding to account for children of nested columns
-        this.setPadding(10, 0, (this.datatable.getTheadEl().offsetHeight + 10) , 0);
-
-        YAHOO.util.Event.on(window, 'resize', function() {
-            this.initConstraints();
-        }, this, true);
-    }
-    else {
-        YAHOO.log("Column dragdrop could not be created","warn",oDataTable.toString());
-    }
-};
-
-if(YAHOO.util.DDProxy) {
-    YAHOO.extend(YAHOO.widget.ColumnDD, YAHOO.util.DDProxy, {
-        initConstraints: function() {
-            //Get the top, right, bottom and left positions
-            var region = YAHOO.util.Dom.getRegion(this.table),
-                //Get the element we are working on
-                el = this.getEl(),
-                //Get the xy position of it
-                xy = YAHOO.util.Dom.getXY(el),
-                //Get the width and height
-                width = parseInt(YAHOO.util.Dom.getStyle(el, 'width'), 10),
-                height = parseInt(YAHOO.util.Dom.getStyle(el, 'height'), 10),
-                //Set left to x minus left
-                left = ((xy[0] - region.left) + 15), //Buffer of 15px
-                //Set right to right minus x minus width
-                right = ((region.right - xy[0] - width) + 15);
-    
-            //Set the constraints based on the above calculations
-            this.setXConstraint(left, right);
-            this.setYConstraint(10, 10);            
-        },
-        _resizeProxy: function() {
-            this.constructor.superclass._resizeProxy.apply(this, arguments);
-            var dragEl = this.getDragEl(),
-                el = this.getEl();
-
-            YAHOO.util.Dom.setStyle(this.pointer, 'height', (this.table.parentNode.offsetHeight + 10) + 'px');
-            YAHOO.util.Dom.setStyle(this.pointer, 'display', 'block');
-            var xy = YAHOO.util.Dom.getXY(el);
-            YAHOO.util.Dom.setXY(this.pointer, [xy[0], (xy[1] - 5)]);
-            
-            YAHOO.util.Dom.setStyle(dragEl, 'height', this.datatable.getContainerEl().offsetHeight + "px");
-            YAHOO.util.Dom.setStyle(dragEl, 'width', (parseInt(YAHOO.util.Dom.getStyle(dragEl, 'width'),10) + 4) + 'px');
-            YAHOO.util.Dom.setXY(this.dragEl, xy);
-        },
-        onMouseDown: function() {
-                this.initConstraints();
-                this.resetConstraints();
-        },
-        clickValidator: function(e) {
-            if(!this.column.hidden) {
-                var target = YAHOO.util.Event.getTarget(e);
-                return ( this.isValidHandleChild(target) &&
-                            (this.id == this.handleElId ||
-                                this.DDM.handleWasClicked(target, this.id)) );
-            }
-        },
-        onDragOver: function(ev, id) {
-            // Validate target as a Column
-            var target = this.datatable.getColumn(id);
-            if(target) {                
-                // Validate target as a top-level parent
-                var targetIndex = target.getTreeIndex();
-                while((targetIndex === null) && target.getParent()) {
-                    target = target.getParent();
-                    targetIndex = target.getTreeIndex();
-                }
-                if(targetIndex !== null) {
-                    // Are we placing to left or right of target?
-                    var elTarget = target.getThEl();
-                    var newIndex = targetIndex;
-                    var mouseX = YAHOO.util.Event.getPageX(ev),
-                        targetX = YAHOO.util.Dom.getX(elTarget),
-                        midX = targetX + ((YAHOO.util.Dom.get(elTarget).offsetWidth)/2),
-                        currentIndex =  this.column.getTreeIndex();
-                    
-                    if (mouseX < midX) {
-                       YAHOO.util.Dom.setX(this.pointer, targetX);
-                    } else {
-                        var targetWidth = parseInt(elTarget.offsetWidth, 10);
-                        YAHOO.util.Dom.setX(this.pointer, (targetX + targetWidth));
-                        newIndex++;
-                    }
-                    if (targetIndex > currentIndex) {
-                        newIndex--;
-                    }
-                    if(newIndex < 0) {
-                        newIndex = 0;
-                    }
-                    else if(newIndex > this.datatable.getColumnSet().tree[0].length) {
-                        newIndex = this.datatable.getColumnSet().tree[0].length;
-                    }
-                    this.newIndex = newIndex;
-                }
-            }
-        },
-        onDragDrop: function() {
-            this.datatable.reorderColumn(this.column, this.newIndex);
-        },
-        endDrag: function() {
-            this.newIndex = null;
-            YAHOO.util.Dom.setStyle(this.pointer, 'display', 'none');
-        }
-    });
-}
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * ColumnResizer subclasses DragDrop to support resizeable Columns.
- *
- * @namespace YAHOO.util
- * @class ColumnResizer
- * @extends YAHOO.util.DDProxy
- * @constructor
- * @param oDataTable {YAHOO.widget.DataTable} DataTable instance.
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param elTh {HTMLElement} TH element reference.
- * @param sHandleElId {String} DOM ID of the handle element that causes the resize.
- * @param elProxy {HTMLElement} Resizer proxy element.
- */
-YAHOO.util.ColumnResizer = function(oDataTable, oColumn, elTh, sHandleId, elProxy) {
-    if(oDataTable && oColumn && elTh && sHandleId) {
-        this.datatable = oDataTable;
-        this.column = oColumn;
-        this.headCell = elTh;
-        this.headCellLiner = oColumn.getThLinerEl();
-        this.resizerLiner = elTh.firstChild;
-        this.init(sHandleId, sHandleId, {dragOnly:true, dragElId: elProxy.id});
-        this.initFrame(); // Needed for proxy
-        this.resetResizerEl(); // Needed when rowspan > 0
-
-        // Set right padding for bug 1858462
-        this.setPadding(0, 1, 0, 0);
-    }
-    else {
-        YAHOO.log("Column resizer could not be created","warn",oDataTable.toString());
-    }
-};
-
-if(YAHOO.util.DD) {
-    YAHOO.extend(YAHOO.util.ColumnResizer, YAHOO.util.DDProxy, {
-        /////////////////////////////////////////////////////////////////////////////
-        //
-        // Public methods
-        //
-        /////////////////////////////////////////////////////////////////////////////
-        /**
-         * Resets resizer element.
-         *
-         * @method resetResizerEl
-         */
-        resetResizerEl : function() {
-            var resizerStyle = YAHOO.util.Dom.get(this.handleElId).style;
-            resizerStyle.left = "auto";
-            resizerStyle.right = 0;
-            resizerStyle.top = "auto";
-            resizerStyle.bottom = 0;
-            resizerStyle.height = this.headCell.offsetHeight+"px";
-        },
-    
-        /////////////////////////////////////////////////////////////////////////////
-        //
-        // Public DOM event handlers
-        //
-        /////////////////////////////////////////////////////////////////////////////
-    
-        /**
-         * Handles mouseup events on the Column resizer.
-         *
-         * @method onMouseUp
-         * @param e {string} The mouseup event
-         */
-        onMouseUp : function(e) {
-            // Reset height of all resizer els in case TH's have changed height
-            var allKeys = this.datatable.getColumnSet().keys,
-                col;
-            for(var i=0, len=allKeys.length; i<len; i++) {
-                col = allKeys[i];
-                if(col._ddResizer) {
-                    col._ddResizer.resetResizerEl();
-                }
-            }
-            this.resetResizerEl();
-            
-            var el = this.headCellLiner;
-            var newWidth = el.offsetWidth -
-                (parseInt(YAHOO.util.Dom.getStyle(el,"paddingLeft"),10)|0) -
-                (parseInt(YAHOO.util.Dom.getStyle(el,"paddingRight"),10)|0);
-
-            this.datatable.fireEvent("columnResizeEvent", {column:this.column,target:this.headCell,width:newWidth});
-        },
-    
-        /**
-         * Handles mousedown events on the Column resizer.
-         *
-         * @method onMouseDown
-         * @param e {string} The mousedown event
-         */
-        onMouseDown : function(e) {
-            this.startWidth = this.headCellLiner.offsetWidth;
-            this.startX = YAHOO.util.Event.getXY(e)[0];
-            this.nLinerPadding = (parseInt(YAHOO.util.Dom.getStyle(this.headCellLiner,"paddingLeft"),10)|0) +
-                    (parseInt(YAHOO.util.Dom.getStyle(this.headCellLiner,"paddingRight"),10)|0);
-        },
-    
-        /**
-         * Custom clickValidator to ensure Column is not in hidden state.
-         *
-         * @method clickValidator
-         * @param {Event} e
-         * @private
-         */
-        clickValidator : function(e) {
-            if(!this.column.hidden) {
-                var target = YAHOO.util.Event.getTarget(e);
-                return ( this.isValidHandleChild(target) &&
-                            (this.id == this.handleElId ||
-                                this.DDM.handleWasClicked(target, this.id)) );
-            }
-        },
-    
-        /**
-         * Handles start drag on the Column resizer.
-         *
-         * @method startDrag
-         * @param e {string} The drag event
-         */
-        startDrag : function() {
-            // Shrinks height of all resizer els to not hold open TH els
-            var allKeys = this.datatable.getColumnSet().keys,
-                thisKey = this.column.getKeyIndex(),
-                col;
-            for(var i=0, len=allKeys.length; i<len; i++) {
-                col = allKeys[i];
-                if(col._ddResizer) {
-                    YAHOO.util.Dom.get(col._ddResizer.handleElId).style.height = "1em";
-                }
-            }
-        },
-
-        /**
-         * Handles drag events on the Column resizer.
-         *
-         * @method onDrag
-         * @param e {string} The drag event
-         */
-        onDrag : function(e) {
-            var newX = YAHOO.util.Event.getXY(e)[0];
-            if(newX > YAHOO.util.Dom.getX(this.headCellLiner)) {
-                var offsetX = newX - this.startX;
-                var newWidth = this.startWidth + offsetX - this.nLinerPadding;
-                if(newWidth > 0) {
-                    this.datatable.setColumnWidth(this.column, newWidth);
-                }
-            }
-        }
-    });
-}
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Deprecated
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * @property editorOptions
- * @deprecated Pass configs directly to CellEditor constructor. 
- */
-
-
-(function () {
-
-var lang   = YAHOO.lang,
-    util   = YAHOO.util,
-    widget = YAHOO.widget,
-    
-    Dom    = util.Dom,
-    Ev     = util.Event,
-    DT     = widget.DataTable;
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * A RecordSet defines and manages a set of Records.
- *
- * @namespace YAHOO.widget
- * @class RecordSet
- * @param data {Object || Object[]} An object literal or an array of data.
- * @constructor
- */
-YAHOO.widget.RecordSet = function(data) {
-    // Internal variables
-    this._sId = "yui-rs" + widget.RecordSet._nCount;
-    widget.RecordSet._nCount++;
-    this._records = [];
-    //this._length = 0;
-
-    if(data) {
-        if(lang.isArray(data)) {
-            this.addRecords(data);
-        }
-        else if(lang.isObject(data)) {
-            this.addRecord(data);
-        }
-    }
-
-    YAHOO.log("RecordSet initialized", "info", this.toString());
-};
-
-var RS = widget.RecordSet;
-
-/**
- * Internal class variable to name multiple Recordset instances.
- *
- * @property RecordSet._nCount
- * @type Number
- * @private
- * @static
- */
-RS._nCount = 0;
-
-RS.prototype = {
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private member variables
-    //
-    /////////////////////////////////////////////////////////////////////////////
-    /**
-     * Unique String identifier assigned at instantiation.
-     *
-     * @property _sId
-     * @type String
-     * @private
-     */
-    _sId : null,
-
-    /**
-     * Internal counter of how many Records are in the RecordSet.
-     *
-     * @property _length
-     * @type Number
-     * @private
-     * @deprecated No longer used
-     */
-    //_length : null,
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Adds one Record to the RecordSet at the given index. If index is null,
-     * then adds the Record to the end of the RecordSet.
-     *
-     * @method _addRecord
-     * @param oData {Object} An object literal of data.
-     * @param index {Number} (optional) Position index.
-     * @return {YAHOO.widget.Record} A Record instance.
-     * @private
-     */
-    _addRecord : function(oData, index) {
-        var oRecord = new YAHOO.widget.Record(oData);
-        
-        if(YAHOO.lang.isNumber(index) && (index > -1)) {
-            this._records.splice(index,0,oRecord);
-        }
-        else {
-            //index = this.getLength();
-            //this._records[index] = oRecord;
-            this._records[this._records.length] = oRecord;
-        }
-        //this._length++;
-        return oRecord;
-    },
-
-    /**
-     * Sets/replaces one Record to the RecordSet at the given index.  Existing
-     * Records with higher indexes are not shifted.  If no index specified, the
-     * Record is added to the end of the RecordSet.
-     *
-     * @method _setRecord
-     * @param oData {Object} An object literal of data.
-     * @param index {Number} (optional) Position index.
-     * @return {YAHOO.widget.Record} A Record instance.
-     * @private
-     */
-    _setRecord : function(oData, index) {
-        if (!lang.isNumber(index) || index < 0) {
-            index = this._records.length;
-        }
-        return (this._records[index] = new widget.Record(oData));
-        /*
-        if(lang.isNumber(index) && (index > -1)) {
-            this._records[index] = oRecord;
-            if((index+1) > this.getLength()) {
-                this._length = index+1;
-            }
-        }
-        else {
-            this._records[this.getLength()] = oRecord;
-            this._length++;
-        }
-        return oRecord;
-        */
-    },
-
-    /**
-     * Deletes Records from the RecordSet at the given index. If range is null,
-     * then only one Record is deleted.
-     *
-     * @method _deleteRecord
-     * @param index {Number} Position index.
-     * @param range {Number} (optional) How many Records to delete
-     * @private
-     */
-    _deleteRecord : function(index, range) {
-        if(!lang.isNumber(range) || (range < 0)) {
-            range = 1;
-        }
-        this._records.splice(index, range);
-        //this._length = this._length - range;
-    },
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Returns unique name of the RecordSet instance.
-     *
-     * @method getId
-     * @return {String} Unique name of the RecordSet instance.
-     */
-    getId : function() {
-        return this._sId;
-    },
-
-    /**
-     * Public accessor to the unique name of the RecordSet instance.
-     *
-     * @method toString
-     * @return {String} Unique name of the RecordSet instance.
-     */
-    toString : function() {
-        return "RecordSet instance " + this._sId;
-    },
-
-    /**
-     * Returns the number of Records held in the RecordSet.
-     *
-     * @method getLength
-     * @return {Number} Number of records in the RecordSet.
-     */
-    getLength : function() {
-            //return this._length;
-            return this._records.length;
-    },
-
-    /**
-     * Returns Record by ID or RecordSet position index.
-     *
-     * @method getRecord
-     * @param record {YAHOO.widget.Record | Number | String} Record instance,
-     * RecordSet position index, or Record ID.
-     * @return {YAHOO.widget.Record} Record object.
-     */
-    getRecord : function(record) {
-        var i;
-        if(record instanceof widget.Record) {
-            for(i=0; i<this._records.length; i++) {
-                if(this._records[i] && (this._records[i]._sId === record._sId)) {
-                    return record;
-                }
-            }
-        }
-        else if(lang.isNumber(record)) {
-            if((record > -1) && (record < this.getLength())) {
-                return this._records[record];
-            }
-        }
-        else if(lang.isString(record)) {
-            for(i=0; i<this._records.length; i++) {
-                if(this._records[i] && (this._records[i]._sId === record)) {
-                    return this._records[i];
-                }
-            }
-        }
-        // Not a valid Record for this RecordSet
-        return null;
-
-    },
-
-    /**
-     * Returns an array of Records from the RecordSet.
-     *
-     * @method getRecords
-     * @param index {Number} (optional) Recordset position index of which Record to
-     * start at.
-     * @param range {Number} (optional) Number of Records to get.
-     * @return {YAHOO.widget.Record[]} Array of Records starting at given index and
-     * length equal to given range. If index is not given, all Records are returned.
-     */
-    getRecords : function(index, range) {
-        if(!lang.isNumber(index)) {
-            return this._records;
-        }
-        if(!lang.isNumber(range)) {
-            return this._records.slice(index);
-        }
-        return this._records.slice(index, index+range);
-    },
-
-    /**
-     * Returns a boolean indicating whether Records exist in the RecordSet at the
-     * specified index range.  Returns true if and only if a Record exists at each
-     * index in the range.
-     * @method hasRecords
-     * @param index
-     * @param range
-     * @return {Boolean} true if all indices are populated in the RecordSet
-     */
-    hasRecords : function (index, range) {
-        var recs = this.getRecords(index,range);
-        for (var i = 0; i < range; ++i) {
-            if (typeof recs[i] === 'undefined') {
-                return false;
-            }
-        }
-        return true;
-    },
-
-    /**
-     * Returns current position index for the given Record.
-     *
-     * @method getRecordIndex
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @return {Number} Record's RecordSet position index.
-     */
-
-    getRecordIndex : function(oRecord) {
-        if(oRecord) {
-            for(var i=this._records.length-1; i>-1; i--) {
-                if(this._records[i] && oRecord.getId() === this._records[i].getId()) {
-                    return i;
-                }
-            }
-        }
-        return null;
-
-    },
-
-    /**
-     * Adds one Record to the RecordSet at the given index. If index is null,
-     * then adds the Record to the end of the RecordSet.
-     *
-     * @method addRecord
-     * @param oData {Object} An object literal of data.
-     * @param index {Number} (optional) Position index.
-     * @return {YAHOO.widget.Record} A Record instance.
-     */
-    addRecord : function(oData, index) {
-        if(lang.isObject(oData)) {
-            var oRecord = this._addRecord(oData, index);
-            this.fireEvent("recordAddEvent",{record:oRecord,data:oData});
-            YAHOO.log("Added Record at index " + index +
-                    " with data " + lang.dump(oData), "info", this.toString());
-            return oRecord;
-        }
-        else {
-            YAHOO.log("Could not add Record with data" +
-                    lang.dump(oData), "info", this.toString());
-            return null;
-        }
-    },
-
-    /**
-     * Adds multiple Records at once to the RecordSet at the given index with the
-     * given object literal data. If index is null, then the new Records are
-     * added to the end of the RecordSet.
-     *
-     * @method addRecords
-     * @param aData {Object[]} An object literal data or an array of data object literals.
-     * @param index {Number} (optional) Position index.
-     * @return {YAHOO.widget.Record[]} An array of Record instances.
-     */
-    addRecords : function(aData, index) {
-        if(lang.isArray(aData)) {
-            var newRecords = [],
-                idx,i,len;
-
-            index = lang.isNumber(index) ? index : this._records.length;
-            idx = index;
-
-            // Can't go backwards bc we need to preserve order
-            for(i=0,len=aData.length; i<len; ++i) {
-                if(lang.isObject(aData[i])) {
-                    var record = this._addRecord(aData[i], idx++);
-                    newRecords.push(record);
-                }
-           }
-            this.fireEvent("recordsAddEvent",{records:newRecords,data:aData});
-            YAHOO.log("Added " + newRecords.length + " Record(s) at index " + index +
-                    " with data " + lang.dump(aData), "info", this.toString());
-           return newRecords;
-        }
-        else if(lang.isObject(aData)) {
-            var oRecord = this._addRecord(aData);
-            this.fireEvent("recordsAddEvent",{records:[oRecord],data:aData});
-            YAHOO.log("Added 1 Record at index " + index +
-                    " with data " + lang.dump(aData), "info", this.toString());
-            return oRecord;
-        }
-        else {
-            YAHOO.log("Could not add Records with data " +
-                    lang.dump(aData), "info", this.toString());
-            return null;
-        }
-    },
-
-    /**
-     * Sets or replaces one Record to the RecordSet at the given index. Unlike
-     * addRecord, an existing Record at that index is not shifted to preserve it.
-     * If no index is specified, it adds the Record to the end of the RecordSet.
-     *
-     * @method setRecord
-     * @param oData {Object} An object literal of data.
-     * @param index {Number} (optional) Position index.
-     * @return {YAHOO.widget.Record} A Record instance.
-     */
-    setRecord : function(oData, index) {
-        if(lang.isObject(oData)) {
-            var oRecord = this._setRecord(oData, index);
-            this.fireEvent("recordSetEvent",{record:oRecord,data:oData});
-            YAHOO.log("Set Record at index " + index +
-                    " with data " + lang.dump(oData), "info", this.toString());
-            return oRecord;
-        }
-        else {
-            YAHOO.log("Could not set Record with data" +
-                    lang.dump(oData), "info", this.toString());
-            return null;
-        }
-    },
-
-    /**
-     * Sets or replaces multiple Records at once to the RecordSet with the given
-     * data, starting at the given index. If index is not specified, then the new
-     * Records are added to the end of the RecordSet.
-     *
-     * @method setRecords
-     * @param aData {Object[]} An array of object literal data.
-     * @param index {Number} (optional) Position index.
-     * @return {YAHOO.widget.Record[]} An array of Record instances.
-     */
-    setRecords : function(aData, index) {
-        var Rec   = widget.Record,
-            a     = lang.isArray(aData) ? aData : [aData],
-            added = [],
-            i = 0, l = a.length, j = 0;
-
-        index = parseInt(index,10)|0;
-
-        for(; i < l; ++i) {
-            if (typeof a[i] === 'object' && a[i]) {
-                added[j++] = this._records[index + i] = new Rec(a[i]);
-            }
-        }
-
-        this.fireEvent("recordsSetEvent",{records:added,data:aData});
-        // Backward compatibility for bug 1918245
-        this.fireEvent("recordsSet",{records:added,data:aData});
-        YAHOO.log("Set "+j+" Record(s) at index "+index, "info",
-                  this.toString());
-
-        if (a.length && !added.length) {
-            YAHOO.log("Could not set Records with data " +
-                    lang.dump(aData), "info", this.toString());
-        }
-
-        return added.length > 1 ? added : added[0];
-    },
-
-    /**
-     * Updates given Record with given data.
-     *
-     * @method updateRecord
-     * @param record {YAHOO.widget.Record | Number | String} A Record instance,
-     * a RecordSet position index, or a Record ID.
-     * @param oData {Object} Object literal of new data.
-     * @return {YAHOO.widget.Record} Updated Record, or null.
-     */
-    updateRecord : function(record, oData) {
-        var oRecord = this.getRecord(record);
-        if(oRecord && lang.isObject(oData)) {
-            // Copy data from the Record for the event that gets fired later
-            var oldData = {};
-            for(var key in oRecord._oData) {
-                if(lang.hasOwnProperty(oRecord._oData, key)) {
-                    oldData[key] = oRecord._oData[key];
-                }
-            }
-            oRecord._oData = oData;
-            this.fireEvent("recordUpdateEvent",{record:oRecord,newData:oData,oldData:oldData});
-            YAHOO.log("Record at index " + this.getRecordIndex(oRecord) +
-                    " updated with data " + lang.dump(oData), "info", this.toString());
-            return oRecord;
-        }
-        else {
-            YAHOO.log("Could not update Record " + record, "error", this.toString());
-            return null;
-        }
-    },
-
-    /**
-     * @method updateKey
-     * @deprecated Use updateRecordValue
-     */
-    updateKey : function(record, sKey, oData) {
-        this.updateRecordValue(record, sKey, oData);
-    },
-    /**
-     * Sets given Record at given key to given data.
-     *
-     * @method updateRecordValue
-     * @param record {YAHOO.widget.Record | Number | String} A Record instance,
-     * a RecordSet position index, or a Record ID.
-     * @param sKey {String} Key name.
-     * @param oData {Object} New data.
-     */
-    updateRecordValue : function(record, sKey, oData) {
-        var oRecord = this.getRecord(record);
-        if(oRecord) {
-            var oldData = null;
-            var keyValue = oRecord._oData[sKey];
-            // Copy data from the Record for the event that gets fired later
-            if(keyValue && lang.isObject(keyValue)) {
-                oldData = {};
-                for(var key in keyValue)  {
-                    if(lang.hasOwnProperty(keyValue, key)) {
-                        oldData[key] = keyValue[key];
-                    }
-                }
-            }
-            // Copy by value
-            else {
-                oldData = keyValue;
-            }
-
-            oRecord._oData[sKey] = oData;
-            this.fireEvent("keyUpdateEvent",{record:oRecord,key:sKey,newData:oData,oldData:oldData});
-            this.fireEvent("recordValueUpdateEvent",{record:oRecord,key:sKey,newData:oData,oldData:oldData});
-            YAHOO.log("Key \"" + sKey +
-                    "\" for Record at index " + this.getRecordIndex(oRecord) +
-                    " updated to \"" + lang.dump(oData) + "\"", "info", this.toString());
-        }
-        else {
-            YAHOO.log("Could not update key " + sKey + " for Record " + record, "error", this.toString());
-        }
-    },
-
-    /**
-     * Replaces all Records in RecordSet with new object literal data.
-     *
-     * @method replaceRecords
-     * @param data {Object || Object[]} An object literal of data or an array of
-     * data object literals.
-     * @return {YAHOO.widget.Record || YAHOO.widget.Record[]} A Record instance or
-     * an array of Records.
-     */
-    replaceRecords : function(data) {
-        this.reset();
-        return this.addRecords(data);
-    },
-
-    /**
-     * Sorts all Records by given function. Records keep their unique IDs but will
-     * have new RecordSet position indexes.
-     *
-     * @method sortRecords
-     * @param fnSort {Function} Reference to a sort function.
-     * @param desc {Boolean} True if sort direction is descending, false if sort
-     * direction is ascending.
-     * @return {YAHOO.widget.Record[]} Sorted array of Records.
-     */
-    sortRecords : function(fnSort, desc) {
-        return this._records.sort(function(a, b) {return fnSort(a, b, desc);});
-    },
-
-    /**
-     * Reverses all Records, so ["one", "two", "three"] becomes ["three", "two", "one"].
-     *
-     * @method reverseRecords
-     * @return {YAHOO.widget.Record[]} Reverse-sorted array of Records.
-     */
-    reverseRecords : function() {
-        return this._records.reverse();
-    },
-
-    /**
-     * Removes the Record at the given position index from the RecordSet. If a range
-     * is also provided, removes that many Records, starting from the index. Length
-     * of RecordSet is correspondingly shortened.
-     *
-     * @method deleteRecord
-     * @param index {Number} Record's RecordSet position index.
-     * @param range {Number} (optional) How many Records to delete.
-     * @return {Object} A copy of the data held by the deleted Record.
-     */
-    deleteRecord : function(index) {
-        if(lang.isNumber(index) && (index > -1) && (index < this.getLength())) {
-            // Copy data from the Record for the event that gets fired later
-            var oData = widget.DataTable._cloneObject(this.getRecord(index).getData());
-            
-            this._deleteRecord(index);
-            this.fireEvent("recordDeleteEvent",{data:oData,index:index});
-            YAHOO.log("Record deleted at index " + index +
-                    " and containing data " + lang.dump(oData), "info", this.toString());
-            return oData;
-        }
-        else {
-            YAHOO.log("Could not delete Record at index " + index, "error", this.toString());
-            return null;
-        }
-    },
-
-    /**
-     * Removes the Record at the given position index from the RecordSet. If a range
-     * is also provided, removes that many Records, starting from the index. Length
-     * of RecordSet is correspondingly shortened.
-     *
-     * @method deleteRecords
-     * @param index {Number} Record's RecordSet position index.
-     * @param range {Number} (optional) How many Records to delete.
-     * @return {Object[]} An array of copies of the data held by the deleted Records.     
-     */
-    deleteRecords : function(index, range) {
-        if(!lang.isNumber(range)) {
-            range = 1;
-        }
-        if(lang.isNumber(index) && (index > -1) && (index < this.getLength())) {
-            var recordsToDelete = this.getRecords(index, range);
-            // Copy data from each Record for the event that gets fired later
-            var deletedData = [];
-            
-            for(var i=0; i<recordsToDelete.length; i++) {
-                deletedData[deletedData.length] = widget.DataTable._cloneObject(recordsToDelete[i]);
-            }
-            this._deleteRecord(index, range);
-
-            this.fireEvent("recordsDeleteEvent",{data:deletedData,index:index});
-            YAHOO.log(range + "Record(s) deleted at index " + index +
-                    " and containing data " + lang.dump(deletedData), "info", this.toString());
-
-            return deletedData;
-        }
-        else {
-            YAHOO.log("Could not delete Records at index " + index, "error", this.toString());
-            return null;
-        }
-    },
-
-    /**
-     * Deletes all Records from the RecordSet.
-     *
-     * @method reset
-     */
-    reset : function() {
-        this._records = [];
-        //this._length = 0;
-        this.fireEvent("resetEvent");
-        YAHOO.log("All Records deleted from RecordSet", "info", this.toString());
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Custom Events
-//
-/////////////////////////////////////////////////////////////////////////////
-
-// RecordSet uses EventProvider
-lang.augmentProto(RS, util.EventProvider);
-
-/**
- * Fired when a new Record is added to the RecordSet.
- *
- * @event recordAddEvent
- * @param oArgs.record {YAHOO.widget.Record} The Record instance.
- * @param oArgs.data {Object} Data added.
- */
-
-/**
- * Fired when multiple Records are added to the RecordSet at once.
- *
- * @event recordsAddEvent
- * @param oArgs.records {YAHOO.widget.Record[]} An array of Record instances.
- * @param oArgs.data {Object[]} Data added.
- */
-
-/**
- * Fired when a Record is set in the RecordSet.
- *
- * @event recordSetEvent
- * @param oArgs.record {YAHOO.widget.Record} The Record instance.
- * @param oArgs.data {Object} Data added.
- */
-
-/**
- * Fired when multiple Records are set in the RecordSet at once.
- *
- * @event recordsSetEvent
- * @param oArgs.records {YAHOO.widget.Record[]} An array of Record instances.
- * @param oArgs.data {Object[]} Data added.
- */
-
-/**
- * Fired when a Record is updated with new data.
- *
- * @event recordUpdateEvent
- * @param oArgs.record {YAHOO.widget.Record} The Record instance.
- * @param oArgs.newData {Object} New data.
- * @param oArgs.oldData {Object} Old data.
- */
-
-/**
- * Fired when a Record is deleted from the RecordSet.
- *
- * @event recordDeleteEvent
- * @param oArgs.data {Object} A copy of the data held by the Record,
- * or an array of data object literals if multiple Records were deleted at once.
- * @param oArgs.index {Object} Index of the deleted Record.
- */
-
-/**
- * Fired when multiple Records are deleted from the RecordSet at once.
- *
- * @event recordsDeleteEvent
- * @param oArgs.data {Object[]} An array of data object literals copied
- * from the Records.
- * @param oArgs.index {Object} Index of the first deleted Record.
- */
-
-/**
- * Fired when all Records are deleted from the RecordSet at once.
- *
- * @event resetEvent
- */
-
-/**
- * @event keyUpdateEvent    
- * @deprecated Use recordValueUpdateEvent     
- */
-
-/**
- * Fired when a Record value is updated with new data.
- *
- * @event recordValueUpdateEvent
- * @param oArgs.record {YAHOO.widget.Record} The Record instance.
- * @param oArgs.key {String} The updated key.
- * @param oArgs.newData {Object} New data.
- * @param oArgs.oldData {Object} Old data.
- *
- */
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The Record class defines a DataTable record.
- *
- * @namespace YAHOO.widget
- * @class Record
- * @constructor
- * @param oConfigs {Object} (optional) Object literal of key/value pairs.
- */
-YAHOO.widget.Record = function(oLiteral) {
-    this._nCount = widget.Record._nCount;
-    this._sId = "yui-rec" + this._nCount;
-    widget.Record._nCount++;
-    this._oData = {};
-    if(lang.isObject(oLiteral)) {
-        for(var sKey in oLiteral) {
-            if(lang.hasOwnProperty(oLiteral, sKey)) {
-                this._oData[sKey] = oLiteral[sKey];
-            }
-        }
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Internal class variable to give unique IDs to Record instances.
- *
- * @property Record._nCount
- * @type Number
- * @private
- */
-YAHOO.widget.Record._nCount = 0;
-
-YAHOO.widget.Record.prototype = {
-    /**
-     * Immutable unique count assigned at instantiation. Remains constant while a
-     * Record's position index can change from sorting.
-     *
-     * @property _nCount
-     * @type Number
-     * @private
-     */
-    _nCount : null,
-
-    /**
-     * Immutable unique ID assigned at instantiation. Remains constant while a
-     * Record's position index can change from sorting.
-     *
-     * @property _sId
-     * @type String
-     * @private
-     */
-    _sId : null,
-
-    /**
-     * Holds data for the Record in an object literal.
-     *
-     * @property _oData
-     * @type Object
-     * @private
-     */
-    _oData : null,
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public member variables
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Returns unique count assigned at instantiation.
-     *
-     * @method getCount
-     * @return Number
-     */
-    getCount : function() {
-        return this._nCount;
-    },
-
-    /**
-     * Returns unique ID assigned at instantiation.
-     *
-     * @method getId
-     * @return String
-     */
-    getId : function() {
-        return this._sId;
-    },
-
-    /**
-     * Returns data for the Record for a field if given, or the entire object
-     * literal otherwise.
-     *
-     * @method getData
-     * @param sField {String} (Optional) The field from which to retrieve data value.
-     * @return Object
-     */
-    getData : function(sField) {
-        if(lang.isString(sField)) {
-            return this._oData[sField];
-        }
-        else {
-            return this._oData;
-        }
-    },
-
-    /**
-     * Sets given data at the given key. Use the RecordSet method setValue to trigger
-     * events. 
-     *
-     * @method setData
-     * @param sKey {String} The key of the new value.
-     * @param oData {MIXED} The new value.
-     */
-    setData : function(sKey, oData) {
-        this._oData[sKey] = oData;
-    }
-};
-
-})();
-
-(function () {
-
-var lang   = YAHOO.lang,
-    util   = YAHOO.util,
-    widget = YAHOO.widget,
-    ua     = YAHOO.env.ua,
-    
-    Dom    = util.Dom,
-    Ev     = util.Event,
-    DS     = util.DataSourceBase;
-
-/**
- * The DataTable widget provides a progressively enhanced DHTML control for
- * displaying tabular data across A-grade browsers.
- *
- * @module datatable
- * @requires yahoo, dom, event, element, datasource
- * @optional dragdrop, dragdrop
- * @title DataTable Widget
- * @beta
- */
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * DataTable class for the YUI DataTable widget.
- *
- * @namespace YAHOO.widget
- * @class DataTable
- * @extends Element
- * @constructor
- * @param elContainer {HTMLElement} Container element for the TABLE.
- * @param aColumnDefs {Object[]} Array of object literal Column definitions.
- * @param oDataSource {YAHOO.util.DataSource} DataSource instance.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.DataTable = function(elContainer,aColumnDefs,oDataSource,oConfigs) {
-    var DT = widget.DataTable;
-    
-    ////////////////////////////////////////////////////////////////////////////
-    // Backward compatibility for SDT, but prevent infinite loops
-    
-    if(oConfigs && oConfigs.scrollable) {
-        return new YAHOO.widget.ScrollingDataTable(elContainer,aColumnDefs,oDataSource,oConfigs);
-    }
-    
-    ////////////////////////////////////////////////////////////////////////////
-    // Initialization
-
-    // Internal vars
-    this._nIndex = DT._nCount;
-    this._sId = "yui-dt"+this._nIndex;
-    this._oChainRender = new YAHOO.util.Chain();
-    this._oChainRender.subscribe("end",this._onRenderChainEnd, this, true);
-
-    // Initialize configs
-    this._initConfigs(oConfigs);
-
-    // Initialize DataSource
-    this._initDataSource(oDataSource);
-    if(!this._oDataSource) {
-        YAHOO.log("Could not instantiate DataTable due to an invalid DataSource", "error", this.toString());
-        return;
-    }
-
-    // Initialize ColumnSet
-    this._initColumnSet(aColumnDefs);
-    if(!this._oColumnSet) {
-        YAHOO.log("Could not instantiate DataTable due to an invalid ColumnSet", "error", this.toString());
-        return;
-    }
-
-    // Initialize RecordSet
-    this._initRecordSet();
-    if(!this._oRecordSet) {
-    }
-
-    // Initialize Attributes
-    DT.superclass.constructor.call(this, elContainer, this.configs);
-
-    // Initialize DOM elements
-    var okDom = this._initDomElements(elContainer);
-    if(!okDom) {
-        YAHOO.log("Could not instantiate DataTable due to an invalid DOM elements", "error", this.toString());
-        return;
-    }
-            
-    // Show message as soon as config is available
-    this.showTableMessage(this.get("MSG_LOADING"), DT.CLASS_LOADING);
-    
-    ////////////////////////////////////////////////////////////////////////////
-    // Once per instance
-    this._initEvents();
-
-    DT._nCount++;
-    DT._nCurrentCount++;
-    
-    ////////////////////////////////////////////////////////////////////////////
-    // Data integration
-
-    // Send a simple initial request
-    var oCallback = {
-        success : this.onDataReturnSetRows,
-        failure : this.onDataReturnSetRows,
-        scope   : this,
-        argument: this.getState()
-    };
-    
-    var initialLoad = this.get("initialLoad");
-    if(initialLoad === true) {
-        this._oDataSource.sendRequest(this.get("initialRequest"), oCallback);
-    }
-    // Do not send an initial request at all
-    else if(initialLoad === false) {
-        this.showTableMessage(this.get("MSG_EMPTY"), DT.CLASS_EMPTY);
-    }
-    // Send an initial request with a custom payload
-    else {
-        var oCustom = initialLoad || {};
-        oCallback.argument = oCustom.argument || {};
-        this._oDataSource.sendRequest(oCustom.request, oCallback);
-    }
-};
-
-var DT = widget.DataTable;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public constants
-//
-/////////////////////////////////////////////////////////////////////////////
-
-lang.augmentObject(DT, {
-
-    /**
-     * Class name assigned to outer DataTable container.
-     *
-     * @property DataTable.CLASS_DATATABLE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt"
-     */
-    CLASS_DATATABLE : "yui-dt",
-
-    /**
-     * Class name assigned to liner DIV elements.
-     *
-     * @property DataTable.CLASS_LINER
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-liner"
-     */
-    CLASS_LINER : "yui-dt-liner",
-
-    /**
-     * Class name assigned to display label elements.
-     *
-     * @property DataTable.CLASS_LABEL
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-label"
-     */
-    CLASS_LABEL : "yui-dt-label",
-
-    /**
-     * Class name assigned to messaging elements.
-     *
-     * @property DataTable.CLASS_MESSAGE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-message"
-     */
-    CLASS_MESSAGE : "yui-dt-message",
-
-    /**
-     * Class name assigned to mask element when DataTable is disabled.
-     *
-     * @property DataTable.CLASS_MASK
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-mask"
-     */
-    CLASS_MASK : "yui-dt-mask",
-
-    /**
-     * Class name assigned to data elements.
-     *
-     * @property DataTable.CLASS_DATA
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-data"
-     */
-    CLASS_DATA : "yui-dt-data",
-
-    /**
-     * Class name assigned to Column drag target.
-     *
-     * @property DataTable.CLASS_COLTARGET
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-coltarget"
-     */
-    CLASS_COLTARGET : "yui-dt-coltarget",
-
-    /**
-     * Class name assigned to resizer handle elements.
-     *
-     * @property DataTable.CLASS_RESIZER
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-resizer"
-     */
-    CLASS_RESIZER : "yui-dt-resizer",
-
-    /**
-     * Class name assigned to resizer liner elements.
-     *
-     * @property DataTable.CLASS_RESIZERLINER
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-resizerliner"
-     */
-    CLASS_RESIZERLINER : "yui-dt-resizerliner",
-
-    /**
-     * Class name assigned to resizer proxy elements.
-     *
-     * @property DataTable.CLASS_RESIZERPROXY
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-resizerproxy"
-     */
-    CLASS_RESIZERPROXY : "yui-dt-resizerproxy",
-
-    /**
-     * Class name assigned to CellEditor container elements.
-     *
-     * @property DataTable.CLASS_EDITOR
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-editor"
-     */
-    CLASS_EDITOR : "yui-dt-editor",
-
-    /**
-     * Class name assigned to paginator container elements.
-     *
-     * @property DataTable.CLASS_PAGINATOR
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-paginator"
-     */
-    CLASS_PAGINATOR : "yui-dt-paginator",
-
-    /**
-     * Class name assigned to page number indicators.
-     *
-     * @property DataTable.CLASS_PAGE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-page"
-     */
-    CLASS_PAGE : "yui-dt-page",
-
-    /**
-     * Class name assigned to default indicators.
-     *
-     * @property DataTable.CLASS_DEFAULT
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-default"
-     */
-    CLASS_DEFAULT : "yui-dt-default",
-
-    /**
-     * Class name assigned to previous indicators.
-     *
-     * @property DataTable.CLASS_PREVIOUS
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-previous"
-     */
-    CLASS_PREVIOUS : "yui-dt-previous",
-
-    /**
-     * Class name assigned next indicators.
-     *
-     * @property DataTable.CLASS_NEXT
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-next"
-     */
-    CLASS_NEXT : "yui-dt-next",
-
-    /**
-     * Class name assigned to first elements.
-     *
-     * @property DataTable.CLASS_FIRST
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-first"
-     */
-    CLASS_FIRST : "yui-dt-first",
-
-    /**
-     * Class name assigned to last elements.
-     *
-     * @property DataTable.CLASS_LAST
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-last"
-     */
-    CLASS_LAST : "yui-dt-last",
-
-    /**
-     * Class name assigned to even elements.
-     *
-     * @property DataTable.CLASS_EVEN
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-even"
-     */
-    CLASS_EVEN : "yui-dt-even",
-
-    /**
-     * Class name assigned to odd elements.
-     *
-     * @property DataTable.CLASS_ODD
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-odd"
-     */
-    CLASS_ODD : "yui-dt-odd",
-
-    /**
-     * Class name assigned to selected elements.
-     *
-     * @property DataTable.CLASS_SELECTED
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-selected"
-     */
-    CLASS_SELECTED : "yui-dt-selected",
-
-    /**
-     * Class name assigned to highlighted elements.
-     *
-     * @property DataTable.CLASS_HIGHLIGHTED
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-highlighted"
-     */
-    CLASS_HIGHLIGHTED : "yui-dt-highlighted",
-
-    /**
-     * Class name assigned to hidden elements.
-     *
-     * @property DataTable.CLASS_HIDDEN
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-hidden"
-     */
-    CLASS_HIDDEN : "yui-dt-hidden",
-
-    /**
-     * Class name assigned to disabled elements.
-     *
-     * @property DataTable.CLASS_DISABLED
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-disabled"
-     */
-    CLASS_DISABLED : "yui-dt-disabled",
-
-    /**
-     * Class name assigned to empty indicators.
-     *
-     * @property DataTable.CLASS_EMPTY
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-empty"
-     */
-    CLASS_EMPTY : "yui-dt-empty",
-
-    /**
-     * Class name assigned to loading indicatorx.
-     *
-     * @property DataTable.CLASS_LOADING
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-loading"
-     */
-    CLASS_LOADING : "yui-dt-loading",
-
-    /**
-     * Class name assigned to error indicators.
-     *
-     * @property DataTable.CLASS_ERROR
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-error"
-     */
-    CLASS_ERROR : "yui-dt-error",
-
-    /**
-     * Class name assigned to editable elements.
-     *
-     * @property DataTable.CLASS_EDITABLE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-editable"
-     */
-    CLASS_EDITABLE : "yui-dt-editable",
-
-    /**
-     * Class name assigned to draggable elements.
-     *
-     * @property DataTable.CLASS_DRAGGABLE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-draggable"
-     */
-    CLASS_DRAGGABLE : "yui-dt-draggable",
-
-    /**
-     * Class name assigned to resizeable elements.
-     *
-     * @property DataTable.CLASS_RESIZEABLE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-resizeable"
-     */
-    CLASS_RESIZEABLE : "yui-dt-resizeable",
-
-    /**
-     * Class name assigned to scrollable elements.
-     *
-     * @property DataTable.CLASS_SCROLLABLE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-scrollable"
-     */
-    CLASS_SCROLLABLE : "yui-dt-scrollable",
-
-    /**
-     * Class name assigned to sortable elements.
-     *
-     * @property DataTable.CLASS_SORTABLE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-sortable"
-     */
-    CLASS_SORTABLE : "yui-dt-sortable",
-
-    /**
-     * Class name assigned to ascending elements.
-     *
-     * @property DataTable.CLASS_ASC
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-asc"
-     */
-    CLASS_ASC : "yui-dt-asc",
-
-    /**
-     * Class name assigned to descending elements.
-     *
-     * @property DataTable.CLASS_DESC
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-desc"
-     */
-    CLASS_DESC : "yui-dt-desc",
-
-    /**
-     * Class name assigned to BUTTON elements and/or container elements.
-     *
-     * @property DataTable.CLASS_BUTTON
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-button"
-     */
-    CLASS_BUTTON : "yui-dt-button",
-
-    /**
-     * Class name assigned to INPUT TYPE=CHECKBOX elements and/or container elements.
-     *
-     * @property DataTable.CLASS_CHECKBOX
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-checkbox"
-     */
-    CLASS_CHECKBOX : "yui-dt-checkbox",
-
-    /**
-     * Class name assigned to SELECT elements and/or container elements.
-     *
-     * @property DataTable.CLASS_DROPDOWN
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-dropdown"
-     */
-    CLASS_DROPDOWN : "yui-dt-dropdown",
-
-    /**
-     * Class name assigned to INPUT TYPE=RADIO elements and/or container elements.
-     *
-     * @property DataTable.CLASS_RADIO
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-radio"
-     */
-    CLASS_RADIO : "yui-dt-radio",
-
-    /////////////////////////////////////////////////////////////////////////
-    //
-    // Private static properties
-    //
-    /////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Internal class variable for indexing multiple DataTable instances.
-     *
-     * @property DataTable._nCount
-     * @type Number
-     * @private
-     * @static
-     */
-    _nCount : 0,
-
-    /**
-     * Internal class variable tracking current number of DataTable instances,
-     * so that certain class values can be reset when all instances are destroyed.          
-     *
-     * @property DataTable._nCurrentCount
-     * @type Number
-     * @private
-     * @static
-     */
-    _nCurrentCount : 0,
-
-    /**
-     * Reference to the STYLE node that is dynamically created and updated
-     * in order to manage Column widths.
-     *
-     * @property DataTable._elDynStyleNode
-     * @type HTMLElement
-     * @private
-     * @static     
-     */
-    _elDynStyleNode : null,
-
-    /**
-     * Set to true if _elDynStyleNode cannot be populated due to browser incompatibility.
-     *
-     * @property DataTable._bDynStylesFallback
-     * @type boolean
-     * @private
-     * @static     
-     */
-    _bDynStylesFallback : (ua.ie && (ua.ie<7)) ? true : false,
-
-    /**
-     * Object literal hash of Columns and their dynamically create style rules.
-     *
-     * @property DataTable._oDynStyles
-     * @type Object
-     * @private
-     * @static     
-     */
-    _oDynStyles : {},
-
-    /**
-     * Element reference to shared Column drag target.
-     *
-     * @property DataTable._elColumnDragTarget
-     * @type HTMLElement
-     * @private
-     * @static 
-     */
-    _elColumnDragTarget : null,
-
-    /**
-     * Element reference to shared Column resizer proxy.
-     *
-     * @property DataTable._elColumnResizerProxy
-     * @type HTMLElement
-     * @private
-     * @static 
-     */
-    _elColumnResizerProxy : null,
-
-    /////////////////////////////////////////////////////////////////////////
-    //
-    // Private static methods
-    //
-    /////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Clones object literal or array of object literals.
-     *
-     * @method DataTable._cloneObject
-     * @param o {Object} Object.
-     * @private
-     * @static     
-     */
-    _cloneObject : function(o) {
-        if(!lang.isValue(o)) {
-            return o;
-        }
-        
-        var copy = {};
-        
-        if(o instanceof YAHOO.widget.BaseCellEditor) {
-            copy = o;
-        }
-        else if(lang.isFunction(o)) {
-            copy = o;
-        }
-        else if(lang.isArray(o)) {
-            var array = [];
-            for(var i=0,len=o.length;i<len;i++) {
-                array[i] = DT._cloneObject(o[i]);
-            }
-            copy = array;
-        }
-        else if(lang.isObject(o)) { 
-            for (var x in o){
-                if(lang.hasOwnProperty(o, x)) {
-                    if(lang.isValue(o[x]) && lang.isObject(o[x]) || lang.isArray(o[x])) {
-                        copy[x] = DT._cloneObject(o[x]);
-                    }
-                    else {
-                        copy[x] = o[x];
-                    }
-                }
-            }
-        }
-        else {
-            copy = o;
-        }
-    
-        return copy;
-    },
-
-    /**
-     * Destroys shared Column drag target.
-     *
-     * @method DataTable._destroyColumnDragTargetEl
-     * @private
-     * @static 
-     */
-    _destroyColumnDragTargetEl : function() {
-        if(DT._elColumnDragTarget) {
-            var el = DT._elColumnDragTarget;
-            YAHOO.util.Event.purgeElement(el);
-            el.parentNode.removeChild(el);
-            DT._elColumnDragTarget = null;
-            
-        }
-    },
-
-    /**
-     * Creates HTML markup for shared Column drag target.
-     *
-     * @method DataTable._initColumnDragTargetEl
-     * @return {HTMLElement} Reference to Column drag target. 
-     * @private
-     * @static 
-     */
-    _initColumnDragTargetEl : function() {
-        if(!DT._elColumnDragTarget) {
-            // Attach Column drag target element as first child of body
-            var elColumnDragTarget = document.createElement('div');
-            elColumnDragTarget.className = DT.CLASS_COLTARGET;
-            elColumnDragTarget.style.display = "none";
-            document.body.insertBefore(elColumnDragTarget, document.body.firstChild);
-
-            // Internal tracker of Column drag target
-            DT._elColumnDragTarget = elColumnDragTarget;
-            
-        }
-        return DT._elColumnDragTarget;
-    },
-
-    /**
-     * Destroys shared Column resizer proxy.
-     *
-     * @method DataTable._destroyColumnResizerProxyEl
-     * @return {HTMLElement} Reference to Column resizer proxy.
-     * @private 
-     * @static 
-     */
-    _destroyColumnResizerProxyEl : function() {
-        if(DT._elColumnResizerProxy) {
-            var el = DT._elColumnResizerProxy;
-            YAHOO.util.Event.purgeElement(el);
-            el.parentNode.removeChild(el);
-            DT._elColumnResizerProxy = null;
-        }
-    },
-
-    /**
-     * Creates HTML markup for shared Column resizer proxy.
-     *
-     * @method DataTable._initColumnResizerProxyEl
-     * @return {HTMLElement} Reference to Column resizer proxy.
-     * @private 
-     * @static 
-     */
-    _initColumnResizerProxyEl : function() {
-        if(!DT._elColumnResizerProxy) {
-            // Attach Column resizer element as first child of body
-            var elColumnResizerProxy = document.createElement("div");
-            elColumnResizerProxy.id = "yui-dt-colresizerproxy"; // Needed for ColumnResizer
-            elColumnResizerProxy.className = DT.CLASS_RESIZERPROXY;
-            document.body.insertBefore(elColumnResizerProxy, document.body.firstChild);
-
-            // Internal tracker of Column resizer proxy
-            DT._elColumnResizerProxy = elColumnResizerProxy;
-        }
-        return DT._elColumnResizerProxy;
-    },
-
-    /**
-     * Formats a BUTTON element.
-     *
-     * @method DataTable.formatButton
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object | Boolean} Data value for the cell. By default, the value
-     * is what gets written to the BUTTON.
-     * @static
-     */
-    formatButton : function(el, oRecord, oColumn, oData) {
-        var sValue = lang.isValue(oData) ? oData : "Click";
-        //TODO: support YAHOO.widget.Button
-        //if(YAHOO.widget.Button) {
-
-        //}
-        //else {
-            el.innerHTML = "<button type=\"button\" class=\""+
-                    DT.CLASS_BUTTON + "\">" + sValue + "</button>";
-        //}
-    },
-
-    /**
-     * Formats a CHECKBOX element.
-     *
-     * @method DataTable.formatCheckbox
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object | Boolean} Data value for the cell. Can be a simple
-     * Boolean to indicate whether checkbox is checked or not. Can be object literal
-     * {checked:bBoolean, label:sLabel}. Other forms of oData require a custom
-     * formatter.
-     * @static
-     */
-    formatCheckbox : function(el, oRecord, oColumn, oData) {
-        var bChecked = oData;
-        bChecked = (bChecked) ? " checked=\"checked\"" : "";
-        el.innerHTML = "<input type=\"checkbox\"" + bChecked +
-                " class=\"" + DT.CLASS_CHECKBOX + "\" />";
-    },
-
-    /**
-     * Formats currency. Default unit is USD.
-     *
-     * @method DataTable.formatCurrency
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Number} Data value for the cell.
-     * @static
-     */
-    formatCurrency : function(el, oRecord, oColumn, oData) {
-        el.innerHTML = util.Number.format(oData, oColumn.currencyOptions || this.get("currencyOptions"));
-    },
-
-    /**
-     * Formats JavaScript Dates.
-     *
-     * @method DataTable.formatDate
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} Data value for the cell, or null.
-     * @static
-     */
-    formatDate : function(el, oRecord, oColumn, oData) {
-        var oConfig = oColumn.dateOptions || this.get("dateOptions");
-        el.innerHTML = util.Date.format(oData, oConfig, oConfig.locale);
-    },
-
-    /**
-     * Formats SELECT elements.
-     *
-     * @method DataTable.formatDropdown
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} Data value for the cell, or null.
-     * @static
-     */
-    formatDropdown : function(el, oRecord, oColumn, oData) {
-        var selectedValue = (lang.isValue(oData)) ? oData : oRecord.getData(oColumn.field);
-        var options = (lang.isArray(oColumn.dropdownOptions)) ?
-                oColumn.dropdownOptions : null;
-
-        var selectEl;
-        var collection = el.getElementsByTagName("select");
-
-        // Create the form element only once, so we can attach the onChange listener
-        if(collection.length === 0) {
-            // Create SELECT element
-            selectEl = document.createElement("select");
-            selectEl.className = DT.CLASS_DROPDOWN;
-            selectEl = el.appendChild(selectEl);
-
-            // Add event listener
-            Ev.addListener(selectEl,"change",this._onDropdownChange,this);
-        }
-
-        selectEl = collection[0];
-
-        // Update the form element
-        if(selectEl) {
-            // Clear out previous options
-            selectEl.innerHTML = "";
-
-            // We have options to populate
-            if(options) {
-                // Create OPTION elements
-                for(var i=0; i<options.length; i++) {
-                    var option = options[i];
-                    var optionEl = document.createElement("option");
-                    optionEl.value = (lang.isValue(option.value)) ?
-                            option.value : option;
-                    optionEl.innerHTML = (lang.isValue(option.text)) ?
-                            option.text : option;
-                    optionEl = selectEl.appendChild(optionEl);
-                    if (optionEl.value == selectedValue) {
-                        optionEl.selected = true;
-                    }
-                }
-            }
-            // Selected value is our only option
-            else {
-                selectEl.innerHTML = "<option selected value=\"" + selectedValue + "\">" + selectedValue + "</option>";
-            }
-        }
-        else {
-            el.innerHTML = lang.isValue(oData) ? oData : "";
-        }
-    },
-
-    /**
-     * Formats emails.
-     *
-     * @method DataTable.formatEmail
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} Data value for the cell, or null.
-     * @static
-     */
-    formatEmail : function(el, oRecord, oColumn, oData) {
-        if(lang.isString(oData)) {
-            el.innerHTML = "<a href=\"mailto:" + oData + "\">" + oData + "</a>";
-        }
-        else {
-            el.innerHTML = lang.isValue(oData) ? oData : "";
-        }
-    },
-
-    /**
-     * Formats links.
-     *
-     * @method DataTable.formatLink
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} Data value for the cell, or null.
-     * @static
-     */
-    formatLink : function(el, oRecord, oColumn, oData) {
-        if(lang.isString(oData)) {
-            el.innerHTML = "<a href=\"" + oData + "\">" + oData + "</a>";
-        }
-        else {
-            el.innerHTML = lang.isValue(oData) ? oData : "";
-        }
-    },
-
-    /**
-     * Formats numbers.
-     *
-     * @method DataTable.formatNumber
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} Data value for the cell, or null.
-     * @static
-     */
-    formatNumber : function(el, oRecord, oColumn, oData) {
-        el.innerHTML = util.Number.format(oData, oColumn.numberOptions || this.get("numberOptions"));
-    },
-
-    /**
-     * Formats INPUT TYPE=RADIO elements.
-     *
-     * @method DataTable.formatRadio
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} (Optional) Data value for the cell.
-     * @static
-     */
-    formatRadio : function(el, oRecord, oColumn, oData) {
-        var bChecked = oData;
-        bChecked = (bChecked) ? " checked=\"checked\"" : "";
-        el.innerHTML = "<input type=\"radio\"" + bChecked +
-                " name=\""+this.getId()+"-col-" + oColumn.getSanitizedKey() + "\"" +
-                " class=\"" + DT.CLASS_RADIO+ "\" />";
-    },
-
-    /**
-     * Formats text strings.
-     *
-     * @method DataTable.formatText
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} (Optional) Data value for the cell.
-     * @static
-     */
-    formatText : function(el, oRecord, oColumn, oData) {
-        var value = (lang.isValue(oRecord.getData(oColumn.field))) ?
-                oRecord.getData(oColumn.field) : "";
-        //TODO: move to util function
-        el.innerHTML = value.toString().replace(/&/g, "&#38;").replace(/</g, "&#60;").replace(/>/g, "&#62;");
-    },
-
-    /**
-     * Formats TEXTAREA elements.
-     *
-     * @method DataTable.formatTextarea
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} (Optional) Data value for the cell.
-     * @static
-     */
-    formatTextarea : function(el, oRecord, oColumn, oData) {
-        var value = (lang.isValue(oRecord.getData(oColumn.field))) ?
-                oRecord.getData(oColumn.field) : "";
-        var markup = "<textarea>" + value + "</textarea>";
-        el.innerHTML = markup;
-    },
-
-    /**
-     * Formats INPUT TYPE=TEXT elements.
-     *
-     * @method DataTable.formatTextbox
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} (Optional) Data value for the cell.
-     * @static
-     */
-    formatTextbox : function(el, oRecord, oColumn, oData) {
-        var value = (lang.isValue(oRecord.getData(oColumn.field))) ?
-                oRecord.getData(oColumn.field) : "";
-        var markup = "<input type=\"text\" value=\"" + value + "\" />";
-        el.innerHTML = markup;
-    },
-
-    /**
-     * Default cell formatter
-     *
-     * @method DataTable.formatDefault
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} (Optional) Data value for the cell.
-     * @static
-     */
-    formatDefault : function(el, oRecord, oColumn, oData) {
-        el.innerHTML = oData === undefined ||
-                       oData === null ||
-                       (typeof oData === 'number' && isNaN(oData)) ?
-                       "&#160;" : oData.toString();
-    },
-
-    /**
-     * Validates data value to type Number, doing type conversion as
-     * necessary. A valid Number value is return, else null is returned
-     * if input value does not validate.
-     *
-     *
-     * @method DataTable.validateNumber
-     * @param oData {Object} Data to validate.
-     * @static
-    */
-    validateNumber : function(oData) {
-        //Convert to number
-        var number = oData * 1;
-
-        // Validate
-        if(lang.isNumber(number)) {
-            return number;
-        }
-        else {
-            YAHOO.log("Could not validate data " + lang.dump(oData) + " to type Number", "warn", this.toString());
-            return undefined;
-        }
-    }
-});
-
-// Done in separate step so referenced functions are defined.
-/**
- * Cell formatting functions.
- * @property DataTable.Formatter
- * @type Object
- * @static
- */
-DT.Formatter = {
-    button   : DT.formatButton,
-    checkbox : DT.formatCheckbox,
-    currency : DT.formatCurrency,
-    "date"   : DT.formatDate,
-    dropdown : DT.formatDropdown,
-    email    : DT.formatEmail,
-    link     : DT.formatLink,
-    "number" : DT.formatNumber,
-    radio    : DT.formatRadio,
-    text     : DT.formatText,
-    textarea : DT.formatTextarea,
-    textbox  : DT.formatTextbox,
-
-    defaultFormatter : DT.formatDefault
-};
-
-lang.extend(DT, util.Element, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Superclass methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Implementation of Element's abstract method. Sets up config values.
- *
- * @method initAttributes
- * @param oConfigs {Object} (Optional) Object literal definition of configuration values.
- * @private
- */
-
-initAttributes : function(oConfigs) {
-    oConfigs = oConfigs || {};
-    DT.superclass.initAttributes.call(this, oConfigs);
-
-    /**
-    * @attribute summary
-    * @description Value for the SUMMARY attribute.
-    * @type String
-    * @default ""    
-    */
-    this.setAttributeConfig("summary", {
-        value: "",
-        validator: lang.isString,
-        method: function(sSummary) {
-            if(this._elTable) {
-                this._elTable.summary = sSummary;
-            }
-        }
-    });
-
-    /**
-    * @attribute selectionMode
-    * @description Specifies row or cell selection mode. Accepts the following strings:
-    *    <dl>
-    *      <dt>"standard"</dt>
-    *      <dd>Standard row selection with support for modifier keys to enable
-    *      multiple selections.</dd>
-    *
-    *      <dt>"single"</dt>
-    *      <dd>Row selection with modifier keys disabled to not allow
-    *      multiple selections.</dd>
-    *
-    *      <dt>"singlecell"</dt>
-    *      <dd>Cell selection with modifier keys disabled to not allow
-    *      multiple selections.</dd>
-    *
-    *      <dt>"cellblock"</dt>
-    *      <dd>Cell selection with support for modifier keys to enable multiple
-    *      selections in a block-fashion, like a spreadsheet.</dd>
-    *
-    *      <dt>"cellrange"</dt>
-    *      <dd>Cell selection with support for modifier keys to enable multiple
-    *      selections in a range-fashion, like a calendar.</dd>
-    *    </dl>
-    *
-    * @default "standard"
-    * @type String
-    */
-    this.setAttributeConfig("selectionMode", {
-        value: "standard",
-        validator: lang.isString
-    });
-
-    /**
-    * @attribute sortedBy
-    * @description Object literal provides metadata for initial sort values if
-    * data will arrive pre-sorted:
-    * <dl>
-    *     <dt>sortedBy.key</dt>
-    *     <dd>{String} Key of sorted Column</dd>
-    *     <dt>sortedBy.dir</dt>
-    *     <dd>{String} Initial sort direction, either YAHOO.widget.DataTable.CLASS_ASC or YAHOO.widget.DataTable.CLASS_DESC</dd>
-    * </dl>
-    * @type Object | null
-    */
-    this.setAttributeConfig("sortedBy", {
-        value: null,
-        // TODO: accepted array for nested sorts
-        validator: function(oNewSortedBy) {
-            if(oNewSortedBy) {
-                return (lang.isObject(oNewSortedBy) && oNewSortedBy.key);
-            }
-            else {
-                return (oNewSortedBy === null);
-            }
-        },
-        method: function(oNewSortedBy) {
-            // Stash the previous value
-            var oOldSortedBy = this.get("sortedBy");
-            
-            // Workaround for bug 1827195
-            this._configs.sortedBy.value = oNewSortedBy;
-
-            // Remove ASC/DESC from TH
-            var oOldColumn,
-                nOldColumnKeyIndex,
-                oNewColumn,
-                nNewColumnKeyIndex;
-                
-            if(this._elThead) {
-                if(oOldSortedBy && oOldSortedBy.key && oOldSortedBy.dir) {
-                    oOldColumn = this._oColumnSet.getColumn(oOldSortedBy.key);
-                    nOldColumnKeyIndex = oOldColumn.getKeyIndex();
-                    
-                    // Remove previous UI from THEAD
-                    var elOldTh = oOldColumn.getThEl();
-                    Dom.removeClass(elOldTh, oOldSortedBy.dir);
-                    this.formatTheadCell(oOldColumn.getThLinerEl().firstChild, oOldColumn, oNewSortedBy);
-                }
-                if(oNewSortedBy) {
-                    oNewColumn = (oNewSortedBy.column) ? oNewSortedBy.column : this._oColumnSet.getColumn(oNewSortedBy.key);
-                    nNewColumnKeyIndex = oNewColumn.getKeyIndex();
-    
-                    // Update THEAD with new UI
-                    var elNewTh = oNewColumn.getThEl();
-                    // Backward compatibility
-                    if(oNewSortedBy.dir && ((oNewSortedBy.dir == "asc") ||  (oNewSortedBy.dir == "desc"))) {
-                        var newClass = (oNewSortedBy.dir == "desc") ?
-                                DT.CLASS_DESC :
-                                DT.CLASS_ASC;
-                        Dom.addClass(elNewTh, newClass);
-                    }
-                    else {
-                         var sortClass = oNewSortedBy.dir || DT.CLASS_ASC;
-                         Dom.addClass(elNewTh, sortClass);
-                    }
-                    this.formatTheadCell(oNewColumn.getThLinerEl().firstChild, oNewColumn, oNewSortedBy);
-                }
-            }
-          
-            if(this._elTbody) {
-                // Update TBODY UI
-                this._elTbody.style.display = "none";
-                var allRows = this._elTbody.rows,
-                    allCells;
-                for(var i=allRows.length-1; i>-1; i--) {
-                    allCells = allRows[i].childNodes;
-                    if(allCells[nOldColumnKeyIndex]) {
-                        Dom.removeClass(allCells[nOldColumnKeyIndex], oOldSortedBy.dir);
-                    }
-                    if(allCells[nNewColumnKeyIndex]) {
-                        Dom.addClass(allCells[nNewColumnKeyIndex], oNewSortedBy.dir);
-                    }
-                }
-                this._elTbody.style.display = "";
-            }
-                
-            this._clearTrTemplateEl();
-        }
-    });
-    
-    /**
-    * @attribute paginator
-    * @description An instance of YAHOO.widget.Paginator.
-    * @default null
-    * @type {Object|YAHOO.widget.Paginator}
-    */
-    this.setAttributeConfig("paginator", {
-        value : null,
-        validator : function (val) {
-            return val === null || val instanceof widget.Paginator;
-        },
-        method : function () { this._updatePaginator.apply(this,arguments); }
-    });
-
-    /**
-    * @attribute caption
-    * @description Value for the CAPTION element. NB: Not supported in
-    * ScrollingDataTable.    
-    * @type String
-    */
-    this.setAttributeConfig("caption", {
-        value: null,
-        validator: lang.isString,
-        method: function(sCaption) {
-            this._initCaptionEl(sCaption);
-        }
-    });
-
-    /**
-    * @attribute draggableColumns
-    * @description True if Columns are draggable to reorder, false otherwise.
-    * The Drag & Drop Utility is required to enable this feature. Only top-level
-    * and non-nested Columns are draggable. Write once.
-    * @default false
-    * @type Boolean
-    */
-    this.setAttributeConfig("draggableColumns", {
-        value: false,
-        validator: lang.isBoolean,
-        method: function(oParam) {
-            if(this._elThead) {
-                if(oParam) {
-                    this._initDraggableColumns();
-                }
-                else {
-                    this._destroyDraggableColumns();
-                }
-            }
-        }
-    });
-
-    /**
-    * @attribute renderLoopSize 	 
-    * @description A value greater than 0 enables DOM rendering of rows to be
-    * executed from a non-blocking timeout queue and sets how many rows to be
-    * rendered per timeout. Recommended for very large data sets.     
-    * @type Number 	 
-    * @default 0 	 
-    */ 	 
-     this.setAttributeConfig("renderLoopSize", { 	 
-         value: 0, 	 
-         validator: lang.isNumber 	 
-     }); 	 
-
-    /**
-    * @attribute formatRow
-    * @description A function that accepts a TR element and its associated Record
-    * for custom formatting. The function must return TRUE in order to automatically
-    * continue formatting of child TD elements, else TD elements will not be
-    * automatically formatted.
-    * @type function
-    * @default null
-    */
-    this.setAttributeConfig("formatRow", {
-        value: null,
-        validator: lang.isFunction
-    });
-
-    /**
-    * @attribute generateRequest
-    * @description A function that converts an object literal of desired DataTable
-    * states into a request value which is then passed to the DataSource's
-    * sendRequest method in order to retrieve data for those states. This
-    * function is passed an object literal of state data and a reference to the
-    * DataTable instance:
-    *     
-    * <dl>
-    *   <dt>pagination<dt>
-    *   <dd>        
-    *         <dt>offsetRecord</dt>
-    *         <dd>{Number} Index of the first Record of the desired page</dd>
-    *         <dt>rowsPerPage</dt>
-    *         <dd>{Number} Number of rows per page</dd>
-    *   </dd>
-    *   <dt>sortedBy</dt>
-    *   <dd>                
-    *         <dt>key</dt>
-    *         <dd>{String} Key of sorted Column</dd>
-    *         <dt>dir</dt>
-    *         <dd>{String} Sort direction, either YAHOO.widget.DataTable.CLASS_ASC or YAHOO.widget.DataTable.CLASS_DESC</dd>
-    *   </dd>
-    *   <dt>self</dt>
-    *   <dd>The DataTable instance</dd>
-    * </dl>
-    * 
-    * and by default returns a String of syntax:
-    * "sort={sortColumn}&dir={sortDir}&startIndex={pageStartIndex}&results={rowsPerPage}"
-    * @type function
-    * @default HTMLFunction
-    */
-    this.setAttributeConfig("generateRequest", {
-        value: function(oState, oSelf) {
-            // Set defaults
-            oState = oState || {pagination:null, sortedBy:null};
-            var sort = (oState.sortedBy) ? oState.sortedBy.key : oSelf.getColumnSet().keys[0].getKey();
-            var dir = (oState.sortedBy && oState.sortedBy.dir === DT.CLASS_DESC) ? "desc" : "asc";
-            var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
-            var results = (oState.pagination) ? oState.pagination.rowsPerPage : null;
-            
-            // Build the request
-            return  "sort=" + sort +
-                    "&dir=" + dir +
-                    "&startIndex=" + startIndex +
-                    ((results !== null) ? "&results=" + results : "");
-        },
-        validator: lang.isFunction
-    });
-
-    /**
-    * @attribute initialRequest
-    * @description Defines the initial request that gets sent to the DataSource
-    * during initialization. Value is ignored if initialLoad is set to any value
-    * other than true.    
-    * @type MIXED
-    * @default null
-    */
-    this.setAttributeConfig("initialRequest", {
-        value: null
-    });
-
-    /**
-    * @attribute initialLoad
-    * @description Determines whether or not to load data at instantiation. By
-    * default, will trigger a sendRequest() to the DataSource and pass in the
-    * request defined by initialRequest. If set to false, data will not load
-    * at instantiation. Alternatively, implementers who wish to work with a 
-    * custom payload may pass in an object literal with the following values:
-    *     
-    *    <dl>
-    *      <dt>request (MIXED)</dt>
-    *      <dd>Request value.</dd>
-    *
-    *      <dt>argument (MIXED)</dt>
-    *      <dd>Custom data that will be passed through to the callback function.</dd>
-    *    </dl>
-    *
-    *                    
-    * @type Boolean | Object
-    * @default true
-    */
-    this.setAttributeConfig("initialLoad", {
-        value: true
-    });
-    
-    /**
-    * @attribute dynamicData
-    * @description If true, sorting and pagination are relegated to the DataSource
-    * for handling, using the request returned by the "generateRequest" function.
-    * Each new DataSource response blows away all previous Records. False by default, so 
-    * sorting and pagination will be handled directly on the client side, without
-    * causing any new requests for data from the DataSource.
-    * @type Boolean
-    * @default false
-    */
-    this.setAttributeConfig("dynamicData", {
-        value: false,
-        validator: lang.isBoolean
-    });
-
-    /**
-     * @attribute MSG_EMPTY 	 
-     * @description Message to display if DataTable has no data.     
-     * @type String 	 
-     * @default "No records found." 	 
-     */ 	 
-     this.setAttributeConfig("MSG_EMPTY", { 	 
-         value: "No records found.", 	 
-         validator: lang.isString 	 
-     }); 	 
-
-    /**
-     * @attribute MSG_LOADING	 
-     * @description Message to display while DataTable is loading data.
-     * @type String 	 
-     * @default "Loading..." 	 
-     */ 	 
-     this.setAttributeConfig("MSG_LOADING", { 	 
-         value: "Loading...", 	 
-         validator: lang.isString 	 
-     }); 	 
-
-    /**
-     * @attribute MSG_ERROR	 
-     * @description Message to display while DataTable has data error.
-     * @type String 	 
-     * @default "Data error." 	 
-     */ 	 
-     this.setAttributeConfig("MSG_ERROR", { 	 
-         value: "Data error.", 	 
-         validator: lang.isString 	 
-     }); 	 
-
-    /**
-     * @attribute MSG_SORTASC 
-     * @description Message to display in tooltip to sort Column in ascending order.
-     * @type String 	 
-     * @default "Click to sort ascending" 	 
-     */ 	 
-     this.setAttributeConfig("MSG_SORTASC", { 	 
-         value: "Click to sort ascending", 	 
-         validator: lang.isString,
-         method: function(sParam) {
-            if(this._elThead) {
-                for(var i=0, allKeys=this.getColumnSet().keys, len=allKeys.length; i<len; i++) {
-                    if(allKeys[i].sortable && this.getColumnSortDir(allKeys[i]) === DT.CLASS_ASC) {
-                        allKeys[i]._elThLabel.firstChild.title = sParam;
-                    }
-                }
-            }      
-         }
-     });
-
-    /**
-     * @attribute MSG_SORTDESC 
-     * @description Message to display in tooltip to sort Column in descending order.
-     * @type String 	 
-     * @default "Click to sort descending" 	 
-     */ 	 
-     this.setAttributeConfig("MSG_SORTDESC", { 	 
-         value: "Click to sort descending", 	 
-         validator: lang.isString,
-         method: function(sParam) {
-            if(this._elThead) {
-                for(var i=0, allKeys=this.getColumnSet().keys, len=allKeys.length; i<len; i++) {
-                    if(allKeys[i].sortable && this.getColumnSortDir(allKeys[i]) === DT.CLASS_DESC) {
-                        allKeys[i]._elThLabel.firstChild.title = sParam;
-                    }
-                }
-            }               
-         }
-     });
-     
-    /**
-     * @attribute currencySymbol
-     * @deprecated
-     */
-    this.setAttributeConfig("currencySymbol", {
-        value: "$",
-        validator: lang.isString
-    });
-    
-    /**
-     * Default config passed to YAHOO.util.Number.format() by the 'currency' Column formatter.
-     * @attribute currencyOptions
-     * @type Object
-     * @default {prefix: $, decimalPlaces:2, decimalSeparator:".", thousandsSeparator:","}
-     */
-    this.setAttributeConfig("currencyOptions", {
-        value: {
-            prefix: this.get("currencySymbol"), // TODO: deprecate currencySymbol
-            decimalPlaces:2,
-            decimalSeparator:".",
-            thousandsSeparator:","
-        }
-    });
-    
-    /**
-     * Default config passed to YAHOO.util.Date.format() by the 'date' Column formatter.
-     * @attribute dateOptions
-     * @type Object
-     * @default {format:"%m/%d/%Y", locale:"en"}
-     */
-    this.setAttributeConfig("dateOptions", {
-        value: {format:"%m/%d/%Y", locale:"en"}
-    });
-    
-    /**
-     * Default config passed to YAHOO.util.Number.format() by the 'number' Column formatter.
-     * @attribute numberOptions
-     * @type Object
-     * @default {decimalPlaces:0, thousandsSeparator:","}
-     */
-    this.setAttributeConfig("numberOptions", {
-        value: {
-            decimalPlaces:0,
-            thousandsSeparator:","
-        }
-    });
-
-},
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * True if instance is initialized, so as to fire the initEvent after render.
- *
- * @property _bInit
- * @type Boolean
- * @default true
- * @private
- */
-_bInit : true,
-
-/**
- * Index assigned to instance.
- *
- * @property _nIndex
- * @type Number
- * @private
- */
-_nIndex : null,
-
-/**
- * Counter for IDs assigned to TR elements.
- *
- * @property _nTrCount
- * @type Number
- * @private
- */
-_nTrCount : 0,
-
-/**
- * Counter for IDs assigned to TD elements.
- *
- * @property _nTdCount
- * @type Number
- * @private
- */
-_nTdCount : 0,
-
-/**
- * Unique id assigned to instance "yui-dtN", useful prefix for generating unique
- * DOM ID strings and log messages.
- *
- * @property _sId
- * @type String
- * @private
- */
-_sId : null,
-
-/**
- * Render chain.
- *
- * @property _oChainRender
- * @type YAHOO.util.Chain
- * @private
- */
-_oChainRender : null,
-
-/**
- * DOM reference to the container element for the DataTable instance into which
- * all other elements get created.
- *
- * @property _elContainer
- * @type HTMLElement
- * @private
- */
-_elContainer : null,
-
-/**
- * DOM reference to the mask element for the DataTable instance which disables it.
- *
- * @property _elMask
- * @type HTMLElement
- * @private
- */
-_elMask : null,
-
-/**
- * DOM reference to the TABLE element for the DataTable instance.
- *
- * @property _elTable
- * @type HTMLElement
- * @private
- */
-_elTable : null,
-
-/**
- * DOM reference to the CAPTION element for the DataTable instance.
- *
- * @property _elCaption
- * @type HTMLElement
- * @private
- */
-_elCaption : null,
-
-/**
- * DOM reference to the COLGROUP element for the DataTable instance.
- *
- * @property _elColgroup
- * @type HTMLElement
- * @private
- */
-_elColgroup : null,
-
-/**
- * DOM reference to the THEAD element for the DataTable instance.
- *
- * @property _elThead
- * @type HTMLElement
- * @private
- */
-_elThead : null,
-
-/**
- * DOM reference to the primary TBODY element for the DataTable instance.
- *
- * @property _elTbody
- * @type HTMLElement
- * @private
- */
-_elTbody : null,
-
-/**
- * DOM reference to the secondary TBODY element used to display DataTable messages.
- *
- * @property _elMsgTbody
- * @type HTMLElement
- * @private
- */
-_elMsgTbody : null,
-
-/**
- * DOM reference to the secondary TBODY element's single TR element used to display DataTable messages.
- *
- * @property _elMsgTr
- * @type HTMLElement
- * @private
- */
-_elMsgTr : null,
-
-/**
- * DOM reference to the secondary TBODY element's single TD element used to display DataTable messages.
- *
- * @property _elMsgTd
- * @type HTMLElement
- * @private
- */
-_elMsgTd : null,
-
-/**
- * DataSource instance for the DataTable instance.
- *
- * @property _oDataSource
- * @type YAHOO.util.DataSource
- * @private
- */
-_oDataSource : null,
-
-/**
- * ColumnSet instance for the DataTable instance.
- *
- * @property _oColumnSet
- * @type YAHOO.widget.ColumnSet
- * @private
- */
-_oColumnSet : null,
-
-/**
- * RecordSet instance for the DataTable instance.
- *
- * @property _oRecordSet
- * @type YAHOO.widget.RecordSet
- * @private
- */
-_oRecordSet : null,
-
-/**
- * The active CellEditor instance for the DataTable instance.
- *
- * @property _oCellEditor
- * @type YAHOO.widget.CellEditor
- * @private
- */
-_oCellEditor : null,
-
-/**
- * ID string of first TR element of the current DataTable page.
- *
- * @property _sFirstTrId
- * @type String
- * @private
- */
-_sFirstTrId : null,
-
-/**
- * ID string of the last TR element of the current DataTable page.
- *
- * @property _sLastTrId
- * @type String
- * @private
- */
-_sLastTrId : null,
-
-/**
- * Template row to create all new rows from.
- * @property _elTrTemplate
- * @type {HTMLElement}
- * @private 
- */
-_elTrTemplate : null,
-
-/**
- * Sparse array of custom functions to set column widths for browsers that don't
- * support dynamic CSS rules.  Functions are added at the index representing
- * the number of rows they update.
- *
- * @property _aDynFunctions
- * @type Array
- * @private
- */
-_aDynFunctions : [],
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Clears browser text selection. Useful to call on rowSelectEvent or
- * cellSelectEvent to prevent clicks or dblclicks from selecting text in the
- * browser.
- *
- * @method clearTextSelection
- */
-clearTextSelection : function() {
-    var sel;
-    if(window.getSelection) {
-    	sel = window.getSelection();
-    }
-    else if(document.getSelection) {
-    	sel = document.getSelection();
-    }
-    else if(document.selection) {
-    	sel = document.selection;
-    }
-    if(sel) {
-        if(sel.empty) {
-            sel.empty();
-        }
-        else if (sel.removeAllRanges) {
-            sel.removeAllRanges();
-        }
-        else if(sel.collapse) {
-            sel.collapse();
-        }
-    }
-},
-
-/**
- * Sets focus on the given element.
- *
- * @method _focusEl
- * @param el {HTMLElement} Element.
- * @private
- */
-_focusEl : function(el) {
-    el = el || this._elTbody;
-    // http://developer.mozilla.org/en/docs/index.php?title=Key-navigable_custom_DHTML_widgets
-    // The timeout is necessary in both IE and Firefox 1.5, to prevent scripts from doing
-    // strange unexpected things as the user clicks on buttons and other controls.
-    setTimeout(function() {
-        try {
-            el.focus();
-        }
-        catch(e) {
-        }
-    },0);
-},
-
-/**
- * Forces Gecko repaint.
- *
- * @method _repaintGecko
- * @el {HTMLElement} (Optional) Element to repaint, otherwise entire document body.
- * @private
- */
-_repaintGecko : (ua.gecko) ? 
-    function(el) {
-        el = el || this._elContainer;
-        var parent = el.parentNode;
-        var nextSibling = el.nextSibling;
-        parent.insertBefore(parent.removeChild(el), nextSibling);
-    } : function() {},
-
-/**
- * Forces Opera repaint.
- *
- * @method _repaintOpera
- * @private 
- */
-_repaintOpera : (ua.opera) ? 
-    function() {
-        if(ua.opera) {
-            document.documentElement.className += " ";
-            document.documentElement.className.trim();
-        }
-    } : function() {} ,
-
-/**
- * Forces Webkit repaint.
- *
- * @method _repaintWebkit
- * @el {HTMLElement} (Optional) Element to repaint, otherwise entire document body.
- * @private
- */
-_repaintWebkit : (ua.webkit) ? 
-    function(el) {
-        el = el || this._elContainer;
-        var parent = el.parentNode;
-        var nextSibling = el.nextSibling;
-        parent.insertBefore(parent.removeChild(el), nextSibling);
-    } : function() {},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// INIT FUNCTIONS
-
-/**
- * Initializes object literal of config values.
- *
- * @method _initConfigs
- * @param oConfig {Object} Object literal of config values.
- * @private
- */
-_initConfigs : function(oConfigs) {
-    if(!oConfigs || !lang.isObject(oConfigs)) {
-        oConfigs = {};
-    }
-    this.configs = oConfigs;
-},
-
-/**
- * Initializes ColumnSet.
- *
- * @method _initColumnSet
- * @param aColumnDefs {Object[]} Array of object literal Column definitions.
- * @private
- */
-_initColumnSet : function(aColumnDefs) {
-    var oColumn, i, len;
-    
-    if(this._oColumnSet) {
-        // First clear _oDynStyles for existing ColumnSet and
-        // uregister CellEditor Custom Events
-        for(i=0, len=this._oColumnSet.keys.length; i<len; i++) {
-            oColumn = this._oColumnSet.keys[i];
-            DT._oDynStyles["."+this.getId()+"-col-"+oColumn.getSanitizedKey()+" ."+DT.CLASS_LINER] = undefined;
-            if(oColumn.editor && oColumn.editor.unsubscribeAll) { // Backward compatibility
-                oColumn.editor.unsubscribeAll();
-            }
-        }
-        
-        this._oColumnSet = null;
-        this._clearTrTemplateEl();
-    }
-    
-    if(lang.isArray(aColumnDefs)) {
-        this._oColumnSet =  new YAHOO.widget.ColumnSet(aColumnDefs);
-    }
-    // Backward compatibility
-    else if(aColumnDefs instanceof YAHOO.widget.ColumnSet) {
-        this._oColumnSet =  aColumnDefs;
-        YAHOO.log("DataTable's constructor now requires an array" +
-        " of object literal Column definitions instead of a ColumnSet instance",
-        "warn", this.toString());
-    }
-
-    // Register CellEditor Custom Events
-    var allKeys = this._oColumnSet.keys;
-    for(i=0, len=allKeys.length; i<len; i++) {
-        oColumn = allKeys[i];
-        if(oColumn.editor && oColumn.editor.subscribe) { // Backward incompatibility
-            oColumn.editor.subscribe("showEvent", this._onEditorShowEvent, this, true);
-            oColumn.editor.subscribe("keydownEvent", this._onEditorKeydownEvent, this, true);
-            oColumn.editor.subscribe("revertEvent", this._onEditorRevertEvent, this, true);
-            oColumn.editor.subscribe("saveEvent", this._onEditorSaveEvent, this, true);
-            oColumn.editor.subscribe("cancelEvent", this._onEditorCancelEvent, this, true);
-            oColumn.editor.subscribe("blurEvent", this._onEditorBlurEvent, this, true);
-            oColumn.editor.subscribe("blockEvent", this._onEditorBlockEvent, this, true);
-            oColumn.editor.subscribe("unblockEvent", this._onEditorUnblockEvent, this, true);
-        }
-    }
-},
-
-/**
- * Initializes DataSource.
- *
- * @method _initDataSource
- * @param oDataSource {YAHOO.util.DataSource} DataSource instance.
- * @private
- */
-_initDataSource : function(oDataSource) {
-    this._oDataSource = null;
-    if(oDataSource && (oDataSource instanceof DS)) {
-        this._oDataSource = oDataSource;
-    }
-    // Backward compatibility
-    else {
-        var tmpTable = null;
-        var tmpContainer = this._elContainer;
-        var i=0;
-        //TODO: this will break if re-initing DS at runtime for SDT
-        // Peek in container child nodes to see if TABLE already exists
-        if(tmpContainer.hasChildNodes()) {
-            var tmpChildren = tmpContainer.childNodes;
-            for(i=0; i<tmpChildren.length; i++) {
-                if(tmpChildren[i].nodeName && tmpChildren[i].nodeName.toLowerCase() == "table") {
-                    tmpTable = tmpChildren[i];
-                    break;
-                }
-            }
-            if(tmpTable) {
-                var tmpFieldsArray = [];
-                for(; i<this._oColumnSet.keys.length; i++) {
-                    tmpFieldsArray.push({key:this._oColumnSet.keys[i].key});
-                }
-
-                this._oDataSource = new DS(tmpTable);
-                this._oDataSource.responseType = DS.TYPE_HTMLTABLE;
-                this._oDataSource.responseSchema = {fields: tmpFieldsArray};
-                YAHOO.log("Null DataSource for progressive enhancement from" +
-                " markup has been deprecated", "warn", this.toString());
-            }
-        }
-    }
-},
-
-/**
- * Initializes RecordSet.
- *
- * @method _initRecordSet
- * @private
- */
-_initRecordSet : function() {
-    if(this._oRecordSet) {
-        this._oRecordSet.reset();
-    }
-    else {
-        this._oRecordSet = new YAHOO.widget.RecordSet();
-    }
-},
-
-/**
- * Initializes DOM elements.
- *
- * @method _initDomElements
- * @param elContainer {HTMLElement | String} HTML DIV element by reference or ID. 
- * return {Boolean} False in case of error, otherwise true 
- * @private
- */
-_initDomElements : function(elContainer) {
-    // Outer container
-    this._initContainerEl(elContainer);
-    // TABLE
-    this._initTableEl(this._elContainer);
-    // COLGROUP
-    this._initColgroupEl(this._elTable);
-    // THEAD
-    this._initTheadEl(this._elTable);
-    
-    // Message TBODY
-    this._initMsgTbodyEl(this._elTable);  
-
-    // Primary TBODY
-    this._initTbodyEl(this._elTable);
-
-    if(!this._elContainer || !this._elTable || !this._elColgroup ||  !this._elThead || !this._elTbody || !this._elMsgTbody) {
-        YAHOO.log("Could not instantiate DataTable due to an invalid DOM elements", "error", this.toString());
-        return false;
-    }
-    else {
-        return true;
-    }
-},
-
-/**
- * Destroy's the DataTable outer container element, if available.
- *
- * @method _destroyContainerEl
- * @param elContainer {HTMLElement} Reference to the container element. 
- * @private
- */
-_destroyContainerEl : function(elContainer) {
-    Dom.removeClass(elContainer, DT.CLASS_DATATABLE);
-    Ev.purgeElement(elContainer, true);
-    elContainer.innerHTML = "";
-    
-    this._elContainer = null;
-    this._elColgroup = null;
-    this._elThead = null;
-    this._elTbody = null;
-},
-
-/**
- * Initializes the DataTable outer container element, including a mask.
- *
- * @method _initContainerEl
- * @param elContainer {HTMLElement | String} HTML DIV element by reference or ID.
- * @private
- */
-_initContainerEl : function(elContainer) {
-    // Validate container
-    elContainer = Dom.get(elContainer);
-    
-    if(elContainer && elContainer.nodeName && (elContainer.nodeName.toLowerCase() == "div")) {
-        // Destroy previous
-        this._destroyContainerEl(elContainer);
-
-        Dom.addClass(elContainer, DT.CLASS_DATATABLE);
-        Ev.addListener(elContainer, "focus", this._onTableFocus, this);
-        Ev.addListener(elContainer, "dblclick", this._onTableDblclick, this);
-        this._elContainer = elContainer;
-        
-        var elMask = document.createElement("div");
-        elMask.className = DT.CLASS_MASK;
-        elMask.style.display = "none";
-        this._elMask = elContainer.appendChild(elMask);
-    }
-},
-
-/**
- * Destroy's the DataTable TABLE element, if available.
- *
- * @method _destroyTableEl
- * @private
- */
-_destroyTableEl : function() {
-    var elTable = this._elTable;
-    if(elTable) {
-        Ev.purgeElement(elTable, true);
-        elTable.parentNode.removeChild(elTable);
-        this._elCaption = null;
-        this._elColgroup = null;
-        this._elThead = null;
-        this._elTbody = null;
-    }
-},
-
-/**
- * Creates HTML markup CAPTION element.
- *
- * @method _initCaptionEl
- * @param sCaption {String} Text for caption.
- * @private
- */
-_initCaptionEl : function(sCaption) {
-    if(this._elTable && sCaption) {
-        // Create CAPTION element
-        if(!this._elCaption) { 
-            this._elCaption = this._elTable.createCaption();
-        }
-        // Set CAPTION value
-        this._elCaption.innerHTML = sCaption;
-    }
-    else if(this._elCaption) {
-        this._elCaption.parentNode.removeChild(this._elCaption);
-    }
-},
-
-/**
- * Creates HTML markup for TABLE, COLGROUP, THEAD and TBODY elements in outer
- * container element.
- *
- * @method _initTableEl
- * @param elContainer {HTMLElement} Container element into which to create TABLE.
- * @private
- */
-_initTableEl : function(elContainer) {
-    if(elContainer) {
-        // Destroy previous
-        this._destroyTableEl();
-    
-        // Create TABLE
-        this._elTable = elContainer.appendChild(document.createElement("table"));  
-         
-        // Set SUMMARY attribute
-        this._elTable.summary = this.get("summary");
-        
-        // Create CAPTION element
-        if(this.get("caption")) {
-            this._initCaptionEl(this.get("caption"));
-        }
-    } 
-},
-
-/**
- * Destroy's the DataTable COLGROUP element, if available.
- *
- * @method _destroyColgroupEl
- * @private
- */
-_destroyColgroupEl : function() {
-    var elColgroup = this._elColgroup;
-    if(elColgroup) {
-        var elTable = elColgroup.parentNode;
-        Ev.purgeElement(elColgroup, true);
-        elTable.removeChild(elColgroup);
-        this._elColgroup = null;
-    }
-},
-
-/**
- * Initializes COLGROUP and COL elements for managing minWidth.
- *
- * @method _initColgroupEl
- * @param elTable {HTMLElement} TABLE element into which to create COLGROUP.
- * @private
- */
-_initColgroupEl : function(elTable) {
-    if(elTable) {
-        // Destroy previous
-        this._destroyColgroupEl();
-
-        // Add COLs to DOCUMENT FRAGMENT
-        var allCols = this._aColIds || [],
-            allKeys = this._oColumnSet.keys,
-            i = 0, len = allCols.length,
-            elCol, oColumn,
-            elFragment = document.createDocumentFragment(),
-            elColTemplate = document.createElement("col");
-    
-        for(i=0,len=allKeys.length; i<len; i++) {
-            oColumn = allKeys[i];
-            elCol = elFragment.appendChild(elColTemplate.cloneNode(false));
-        }
-    
-        // Create COLGROUP
-        var elColgroup = elTable.insertBefore(document.createElement("colgroup"), elTable.firstChild);
-        elColgroup.appendChild(elFragment);
-        this._elColgroup = elColgroup;
-    }
-},
-
-/**
- * Adds a COL element to COLGROUP at given index.
- *
- * @method _insertColgroupColEl
- * @param index {Number} Index of new COL element.
- * @private
- */
-_insertColgroupColEl : function(index) {
-    if(lang.isNumber(index)&& this._elColgroup) {
-        var nextSibling = this._elColgroup.childNodes[index] || null;
-        this._elColgroup.insertBefore(document.createElement("col"), nextSibling);
-    }
-},
-
-/**
- * Removes a COL element to COLGROUP at given index.
- *
- * @method _removeColgroupColEl
- * @param index {Number} Index of removed COL element.
- * @private
- */
-_removeColgroupColEl : function(index) {
-    if(lang.isNumber(index) && this._elColgroup && this._elColgroup.childNodes[index]) {
-        this._elColgroup.removeChild(this._elColgroup.childNodes[index]);
-    }
-},
-
-/**
- * Reorders a COL element from old index(es) to new index.
- *
- * @method _reorderColgroupColEl
- * @param aKeyIndexes {Number[]} Array of indexes of removed COL element.
- * @param newIndex {Number} New index. 
- * @private
- */
-_reorderColgroupColEl : function(aKeyIndexes, newIndex) {
-    if(lang.isArray(aKeyIndexes) && lang.isNumber(newIndex) && this._elColgroup && (this._elColgroup.childNodes.length > aKeyIndexes[aKeyIndexes.length-1])) {
-        var i,
-            tmpCols = [];
-        // Remove COL
-        for(i=aKeyIndexes.length-1; i>-1; i--) {
-            tmpCols.push(this._elColgroup.removeChild(this._elColgroup.childNodes[aKeyIndexes[i]]));
-        }
-        // Insert COL
-        var nextSibling = this._elColgroup.childNodes[newIndex] || null;
-        for(i=tmpCols.length-1; i>-1; i--) {
-            this._elColgroup.insertBefore(tmpCols[i], nextSibling);
-        }
-    }
-},
-
-/**
- * Destroy's the DataTable THEAD element, if available.
- *
- * @method _destroyTheadEl
- * @private
- */
-_destroyTheadEl : function() {
-    var elThead = this._elThead;
-    if(elThead) {
-        var elTable = elThead.parentNode;
-        Ev.purgeElement(elThead, true);
-        this._destroyColumnHelpers();
-        elTable.removeChild(elThead);
-        this._elThead = null;
-    }
-},
-
-/**
- * Initializes THEAD element.
- *
- * @method _initTheadEl
- * @param elTable {HTMLElement} TABLE element into which to create COLGROUP.
- * @param {HTMLElement} Initialized THEAD element. 
- * @private
- */
-_initTheadEl : function(elTable) {
-    elTable = elTable || this._elTable;
-    
-    if(elTable) {
-        // Destroy previous
-        this._destroyTheadEl();
-    
-        //TODO: append to DOM later for performance
-        var elThead = (this._elColgroup) ?
-            elTable.insertBefore(document.createElement("thead"), this._elColgroup.nextSibling) :
-            elTable.appendChild(document.createElement("thead"));
-    
-        // Set up DOM events for THEAD
-        Ev.addListener(elThead, "focus", this._onTheadFocus, this);
-        Ev.addListener(elThead, "keydown", this._onTheadKeydown, this);
-        Ev.addListener(elThead, "mouseover", this._onTableMouseover, this);
-        Ev.addListener(elThead, "mouseout", this._onTableMouseout, this);
-        Ev.addListener(elThead, "mousedown", this._onTableMousedown, this);
-        Ev.addListener(elThead, "mouseup", this._onTableMouseup, this);
-        Ev.addListener(elThead, "click", this._onTheadClick, this);
-
-        // Since we can't listen for click and dblclick on the same element...
-        // Attach separately to THEAD and TBODY
-        ///Ev.addListener(elThead, "dblclick", this._onTableDblclick, this);
-        
-       var oColumnSet = this._oColumnSet,
-            oColumn, i,j, l;
-        
-        // Add TRs to the THEAD
-        var colTree = oColumnSet.tree;
-        var elTh;
-        for(i=0; i<colTree.length; i++) {
-            var elTheadTr = elThead.appendChild(document.createElement("tr"));
-    
-            // ...and create TH cells
-            for(j=0; j<colTree[i].length; j++) {
-                oColumn = colTree[i][j];
-                elTh = elTheadTr.appendChild(document.createElement("th"));
-                this._initThEl(elTh,oColumn);
-            }
-    
-                // Set FIRST/LAST on THEAD rows
-                if(i === 0) {
-                    Dom.addClass(elTheadTr, DT.CLASS_FIRST);
-                }
-                if(i === (colTree.length-1)) {
-                    Dom.addClass(elTheadTr, DT.CLASS_LAST);
-                }
-
-        }
-
-        // Set FIRST/LAST on edge TH elements using the values in ColumnSet headers array
-        var aFirstHeaders = oColumnSet.headers[0] || [];
-        for(i=0; i<aFirstHeaders.length; i++) {
-            Dom.addClass(Dom.get(this.getId() +"-th-"+aFirstHeaders[i]), DT.CLASS_FIRST);
-        }
-        var aLastHeaders = oColumnSet.headers[oColumnSet.headers.length-1] || [];
-        for(i=0; i<aLastHeaders.length; i++) {
-            Dom.addClass(Dom.get(this.getId() +"-th-"+aLastHeaders[i]), DT.CLASS_LAST);
-        }
-        
-        YAHOO.log("TH cells for " + this._oColumnSet.keys.length + " keys created","info",this.toString());
-
-        ///TODO: try _repaintGecko(this._elContainer) instead
-        // Bug 1806891
-        if(ua.webkit && ua.webkit < 420) {
-            var oSelf = this;
-            setTimeout(function() {
-                elThead.style.display = "";
-            },0);
-            elThead.style.display = 'none';
-        }
-        
-        this._elThead = elThead;
-        
-        // Column helpers needs _elThead to exist
-        this._initColumnHelpers();  
-    }
-},
-
-/**
- * Populates TH element as defined by Column.
- *
- * @method _initThEl
- * @param elTh {HTMLElement} TH element reference.
- * @param oColumn {YAHOO.widget.Column} Column object.
- * @private
- */
-_initThEl : function(elTh, oColumn) {
-    elTh.id = this.getId() + "-th-" + oColumn.getSanitizedKey(); // Needed for accessibility, getColumn by TH, and ColumnDD
-    elTh.innerHTML = "";
-    elTh.rowSpan = oColumn.getRowspan();
-    elTh.colSpan = oColumn.getColspan();
-    oColumn._elTh = elTh;
-    
-    var elThLiner = elTh.appendChild(document.createElement("div"));
-    elThLiner.id = elTh.id + "-liner"; // Needed for resizer
-    elThLiner.className = DT.CLASS_LINER;
-    oColumn._elThLiner = elThLiner;
-    
-    var elThLabel = elThLiner.appendChild(document.createElement("span"));
-    elThLabel.className = DT.CLASS_LABEL;    
-
-    // Assign abbr attribute
-    if(oColumn.abbr) {
-        elTh.abbr = oColumn.abbr;
-    }
-    // Clear minWidth on hidden Columns
-    if(oColumn.hidden) {
-        this._clearMinWidth(oColumn);
-    }
-        
-    elTh.className = this._getColumnClassNames(oColumn);
-            
-    // Set Column width for non fallback cases
-    if(oColumn.width && !this._bDynStylesFallback) {
-        // Validate minWidth
-        var nWidth = (oColumn.minWidth && (oColumn.width < oColumn.minWidth)) ?
-                oColumn.minWidth : oColumn.width;
-        this._setColumnWidthDynStyles(oColumn, nWidth + 'px', 'hidden');
-    }
-
-    this.formatTheadCell(elThLabel, oColumn, this.get("sortedBy"));
-    oColumn._elThLabel = elThLabel;
-},
-
-/**
- * Outputs markup into the given TH based on given Column.
- *
- * @method DataTable.formatTheadCell
- * @param elCellLabel {HTMLElement} The label SPAN element within the TH liner,
- * not the liner DIV element.     
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param oSortedBy {Object} Sort state object literal.
-*/
-formatTheadCell : function(elCellLabel, oColumn, oSortedBy) {
-    var sKey = oColumn.getKey();
-    var sLabel = lang.isValue(oColumn.label) ? oColumn.label : sKey;
-
-    // Add accessibility link for sortable Columns
-    if(oColumn.sortable) {
-        // Calculate the direction
-        var sSortClass = this.getColumnSortDir(oColumn, oSortedBy);
-        var bDesc = (sSortClass === DT.CLASS_DESC);
-
-        // This is the sorted Column
-        if(oSortedBy && (oColumn.key === oSortedBy.key)) {
-            bDesc = !(oSortedBy.dir === DT.CLASS_DESC);
-        }
-
-        // Generate a unique HREF for visited status
-        var sHref = this.getId() + "-href-" + oColumn.getSanitizedKey();
-        
-        // Generate a dynamic TITLE for sort status
-        var sTitle = (bDesc) ? this.get("MSG_SORTDESC") : this.get("MSG_SORTASC");
-        
-        // Format the element
-        elCellLabel.innerHTML = "<a href=\"" + sHref + "\" title=\"" + sTitle + "\" class=\"" + DT.CLASS_SORTABLE + "\">" + sLabel + "</a>";
-    }
-    // Just display the label for non-sortable Columns
-    else {
-        elCellLabel.innerHTML = sLabel;
-    }
-},
-
-/**
- * Disables DD from top-level Column TH elements.
- *
- * @method _destroyDraggableColumns
- * @private
- */
-_destroyDraggableColumns : function() {
-    var oColumn, elTh;
-    for(var i=0, len=this._oColumnSet.tree[0].length; i<len; i++) {
-        oColumn = this._oColumnSet.tree[0][i];
-        if(oColumn._dd) {
-            oColumn._dd = oColumn._dd.unreg();
-            Dom.removeClass(oColumn.getThEl(), DT.CLASS_DRAGGABLE);       
-        }
-    }
-},
-
-/**
- * Initializes top-level Column TH elements into DD instances.
- *
- * @method _initDraggableColumns
- * @private
- */
-_initDraggableColumns : function() {
-    this._destroyDraggableColumns();
-    if(util.DD) {
-        var oColumn, elTh, elDragTarget;
-        for(var i=0, len=this._oColumnSet.tree[0].length; i<len; i++) {
-            oColumn = this._oColumnSet.tree[0][i];
-            elTh = oColumn.getThEl();
-            Dom.addClass(elTh, DT.CLASS_DRAGGABLE);
-            elDragTarget = DT._initColumnDragTargetEl();
-            oColumn._dd = new YAHOO.widget.ColumnDD(this, oColumn, elTh, elDragTarget);
-        }
-    }
-    else {
-        YAHOO.log("Could not find DragDrop for draggable Columns", "warn", this.toString());
-    }
-},
-
-/**
- * Disables resizeability on key Column TH elements.
- *
- * @method _destroyResizeableColumns
- * @private
- */
-_destroyResizeableColumns : function() {
-    var aKeys = this._oColumnSet.keys;
-    for(var i=0, len=aKeys.length; i<len; i++) {
-        if(aKeys[i]._ddResizer) {
-            aKeys[i]._ddResizer = aKeys[i]._ddResizer.unreg();
-            Dom.removeClass(aKeys[i].getThEl(), DT.CLASS_RESIZEABLE);
-        }
-    }
-},
-
-/**
- * Initializes resizeability on key Column TH elements.
- *
- * @method _initResizeableColumns
- * @private
- */
-_initResizeableColumns : function() {
-    this._destroyResizeableColumns();
-    if(util.DD) {
-        var oColumn, elTh, elThLiner, elThResizerLiner, elThResizer, elResizerProxy, cancelClick;
-        for(var i=0, len=this._oColumnSet.keys.length; i<len; i++) {
-            oColumn = this._oColumnSet.keys[i];
-            if(oColumn.resizeable) {
-                elTh = oColumn.getThEl();
-                Dom.addClass(elTh, DT.CLASS_RESIZEABLE);
-                elThLiner = oColumn.getThLinerEl();
-                
-                // Bug 1915349: So resizer is as tall as TH when rowspan > 1
-                // Create a separate resizer liner with position:relative
-                elThResizerLiner = elTh.appendChild(document.createElement("div"));
-                elThResizerLiner.className = DT.CLASS_RESIZERLINER;
-                
-                // Move TH contents into the new resizer liner
-                elThResizerLiner.appendChild(elThLiner);
-                
-                // Create the resizer
-                elThResizer = elThResizerLiner.appendChild(document.createElement("div"));
-                elThResizer.id = elTh.id + "-resizer"; // Needed for ColumnResizer
-                elThResizer.className = DT.CLASS_RESIZER;
-                oColumn._elResizer = elThResizer;
-
-                // Create the resizer proxy, once globally
-                elResizerProxy = DT._initColumnResizerProxyEl();
-                oColumn._ddResizer = new YAHOO.util.ColumnResizer(
-                        this, oColumn, elTh, elThResizer, elResizerProxy);
-                cancelClick = function(e) {
-                    Ev.stopPropagation(e);
-                };
-                Ev.addListener(elThResizer,"click",cancelClick);
-            }
-        }
-    }
-    else {
-        YAHOO.log("Could not find DragDrop for resizeable Columns", "warn", this.toString());
-    }
-},
-
-/**
- * Destroys elements associated with Column functionality: ColumnDD and ColumnResizers.
- *
- * @method _destroyColumnHelpers
- * @private
- */
-_destroyColumnHelpers : function() {
-    this._destroyDraggableColumns();
-    this._destroyResizeableColumns();
-},
-
-/**
- * Initializes elements associated with Column functionality: ColumnDD and ColumnResizers.
- *
- * @method _initColumnHelpers
- * @private
- */
-_initColumnHelpers : function() {
-    if(this.get("draggableColumns")) {
-        this._initDraggableColumns();
-    }
-    this._initResizeableColumns();
-},
-
-/**
- * Destroy's the DataTable TBODY element, if available.
- *
- * @method _destroyTbodyEl
- * @private
- */
-_destroyTbodyEl : function() {
-    var elTbody = this._elTbody;
-    if(elTbody) {
-        var elTable = elTbody.parentNode;
-        Ev.purgeElement(elTbody, true);
-        elTable.removeChild(elTbody);
-        this._elTbody = null;
-    }
-},
-
-/**
- * Initializes TBODY element for data.
- *
- * @method _initTbodyEl
- * @param elTable {HTMLElement} TABLE element into which to create TBODY .
- * @private
- */
-_initTbodyEl : function(elTable) {
-    if(elTable) {
-        // Destroy previous
-        this._destroyTbodyEl();
-        
-        // Create TBODY
-        var elTbody = elTable.appendChild(document.createElement("tbody"));
-        elTbody.tabIndex = 0;
-        elTbody.className = DT.CLASS_DATA;
-    
-        // Set up DOM events for TBODY
-        Ev.addListener(elTbody, "focus", this._onTbodyFocus, this);
-        Ev.addListener(elTbody, "mouseover", this._onTableMouseover, this);
-        Ev.addListener(elTbody, "mouseout", this._onTableMouseout, this);
-        Ev.addListener(elTbody, "mousedown", this._onTableMousedown, this);
-        Ev.addListener(elTbody, "mouseup", this._onTableMouseup, this);
-        Ev.addListener(elTbody, "keydown", this._onTbodyKeydown, this);
-        Ev.addListener(elTbody, "keypress", this._onTableKeypress, this);
-        Ev.addListener(elTbody, "click", this._onTbodyClick, this);
-        
-        // Since we can't listen for click and dblclick on the same element...
-        // Attach separately to THEAD and TBODY
-        ///Ev.addListener(elTbody, "dblclick", this._onTableDblclick, this);
-        
-    
-        // IE puts focus outline in the wrong place
-        if(ua.ie) {
-            elTbody.hideFocus=true;
-        }
-
-        this._elTbody = elTbody;
-    }
-},
-
-/**
- * Destroy's the DataTable message TBODY element, if available.
- *
- * @method _destroyMsgTbodyEl
- * @private
- */
-_destroyMsgTbodyEl : function() {
-    var elMsgTbody = this._elMsgTbody;
-    if(elMsgTbody) {
-        var elTable = elMsgTbody.parentNode;
-        Ev.purgeElement(elMsgTbody, true);
-        elTable.removeChild(elMsgTbody);
-        this._elTbody = null;
-    }
-},
-
-/**
- * Initializes TBODY element for messaging.
- *
- * @method _initMsgTbodyEl
- * @param elTable {HTMLElement} TABLE element into which to create TBODY 
- * @private
- */
-_initMsgTbodyEl : function(elTable) {
-    if(elTable) {
-        var elMsgTbody = document.createElement("tbody");
-        elMsgTbody.className = DT.CLASS_MESSAGE;
-        var elMsgTr = elMsgTbody.appendChild(document.createElement("tr"));
-        elMsgTr.className = DT.CLASS_FIRST + " " + DT.CLASS_LAST;
-        this._elMsgTr = elMsgTr;
-        var elMsgTd = elMsgTr.appendChild(document.createElement("td"));
-        elMsgTd.colSpan = this._oColumnSet.keys.length;
-        elMsgTd.className = DT.CLASS_FIRST + " " + DT.CLASS_LAST;
-        this._elMsgTd = elMsgTd;
-        elMsgTbody = elTable.insertBefore(elMsgTbody, this._elTbody);
-        var elMsgLiner = elMsgTd.appendChild(document.createElement("div"));
-        elMsgLiner.className = DT.CLASS_LINER;
-        this._elMsgTbody = elMsgTbody;
-    }
-},
-
-/**
- * Initialize internal event listeners
- *
- * @method _initEvents
- * @private
- */
-_initEvents : function () {
-    // Initialize Column sort
-    this._initColumnSort();
-        
-    // Add the document level click listener
-    YAHOO.util.Event.addListener(document, "click", this._onDocumentClick, this);
-
-    // Paginator integration
-    this.subscribe("paginatorChange",function () {
-        this._handlePaginatorChange.apply(this,arguments);
-    });
-
-    this.subscribe("initEvent",function () {
-        this.renderPaginator();
-    });
-
-    // Initialize CellEditor integration
-    this._initCellEditing();
-},
-
-/** 	 
-  * Initializes Column sorting. 	 
-  * 	 
-  * @method _initColumnSort 	 
-  * @private 	 
-  */ 	 
-_initColumnSort : function() {
-    this.subscribe("theadCellClickEvent", this.onEventSortColumn); 	 
-
-    // Backward compatibility
-    var oSortedBy = this.get("sortedBy");
-    if(oSortedBy) {
-        if(oSortedBy.dir == "desc") {
-            this._configs.sortedBy.value.dir = DT.CLASS_DESC;
-        }
-        else if(oSortedBy.dir == "asc") {
-            this._configs.sortedBy.value.dir = DT.CLASS_ASC;
-        }
-    }
-},
-
-/** 	 
-  * Initializes CellEditor integration. 	 
-  * 	 
-  * @method _initCellEditing 	 
-  * @private 	 
-  */ 	 
-_initCellEditing : function() {
-    this.subscribe("editorBlurEvent",function () {
-        this.onEditorBlurEvent.apply(this,arguments);
-    });
-    this.subscribe("editorBlockEvent",function () {
-        this.onEditorBlockEvent.apply(this,arguments);
-    });
-    this.subscribe("editorUnblockEvent",function () {
-        this.onEditorUnblockEvent.apply(this,arguments);
-    });
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// DOM MUTATION FUNCTIONS
-
-/**
- * Retruns classnames to represent current Column states.
- * @method _getColumnClassnames 
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param aAddClasses {String[]} An array of additional classnames to add to the
- * return value.  
- * @return {String} A String of classnames to be assigned to TH or TD elements
- * for given Column.  
- * @private 
- */
-_getColumnClassNames : function (oColumn, aAddClasses) {
-    var allClasses;
-    
-    // Add CSS classes
-    if(lang.isString(oColumn.className)) {
-        // Single custom class
-        allClasses = [oColumn.className];
-    }
-    else if(lang.isArray(oColumn.className)) {
-        // Array of custom classes
-        allClasses = oColumn.className;
-    }
-    else {
-        // no custom classes
-        allClasses = [];
-    }
-    
-    // Hook for setting width with via dynamic style uses key since ID is too disposable
-    allClasses[allClasses.length] = this.getId() + "-col-" +oColumn.getSanitizedKey();
-
-    // Column key - minus any chars other than "A-Z", "a-z", "0-9", "_", "-", ".", or ":"
-    allClasses[allClasses.length] = "yui-dt-col-" +oColumn.getSanitizedKey();
-
-    var isSortedBy = this.get("sortedBy") || {};
-    // Sorted
-    if(oColumn.key === isSortedBy.key) {
-        allClasses[allClasses.length] = isSortedBy.dir || '';
-    }
-    // Hidden
-    if(oColumn.hidden) {
-        allClasses[allClasses.length] = DT.CLASS_HIDDEN;
-    }
-    // Selected
-    if(oColumn.selected) {
-        allClasses[allClasses.length] = DT.CLASS_SELECTED;
-    }
-    // Sortable
-    if(oColumn.sortable) {
-        allClasses[allClasses.length] = DT.CLASS_SORTABLE;
-    }
-    // Resizeable
-    if(oColumn.resizeable) {
-        allClasses[allClasses.length] = DT.CLASS_RESIZEABLE;
-    }
-    // Editable
-    if(oColumn.editor) {
-        allClasses[allClasses.length] = DT.CLASS_EDITABLE;
-    }
-    
-    // Addtnl classes, including First/Last
-    if(aAddClasses) {
-        allClasses = allClasses.concat(aAddClasses);
-    }
-    
-    return allClasses.join(' ');  
-},
-
-/**
- * Clears TR element template in response to any Column state change.
- * @method _clearTrTemplateEl
- * @private 
- */
-_clearTrTemplateEl : function () {
-    this._elTrTemplate = null;
-},
-
-/**
- * Returns a new TR element template with TD elements classed with current
- * Column states.
- * @method _getTrTemplateEl 
- * @return {HTMLElement} A TR element to be cloned and added to the DOM.
- * @private 
- */
-_getTrTemplateEl : function (oRecord, index) {
-    // Template is already available
-    if(this._elTrTemplate) {
-        return this._elTrTemplate;
-    }
-    // Template needs to be created
-    else {
-        var d   = document,
-            tr  = d.createElement('tr'),
-            td  = d.createElement('td'),
-            div = d.createElement('div');
-    
-        // Append the liner element
-        td.appendChild(div);
-
-        // Create TD elements into DOCUMENT FRAGMENT
-        var df = document.createDocumentFragment(),
-            allKeys = this._oColumnSet.keys,
-            elTd;
-
-        // Set state for each TD;
-        var aAddClasses;
-        for(var i=0, keysLen=allKeys.length; i<keysLen; i++) {
-            // Clone the TD template
-            elTd = td.cloneNode(true);
-
-            // Format the base TD
-            elTd = this._formatTdEl(allKeys[i], elTd, i, (i===keysLen-1));
-                        
-            df.appendChild(elTd);
-        }
-        tr.appendChild(df);
-        this._elTrTemplate = tr;
-        return tr;
-    }   
-},
-
-/**
- * Formats a basic TD element.
- * @method _formatTdEl 
- * @param oColumn {YAHOO.widget.Column} Associated Column instance. 
- * @param elTd {HTMLElement} An unformatted TD element.
- * @param index {Number} Column key index. 
- * @param isLast {Boolean} True if Column is last key of the ColumnSet.
- * @return {HTMLElement} A formatted TD element.
- * @private 
- */
-_formatTdEl : function (oColumn, elTd, index, isLast) {
-    var oColumnSet = this._oColumnSet;
-    
-    // Set the TD's accessibility headers
-    var allHeaders = oColumnSet.headers,
-        allColHeaders = allHeaders[index],
-        sTdHeaders = "",
-        sHeader;
-    for(var j=0, headersLen=allColHeaders.length; j < headersLen; j++) {
-        sHeader = this._sId + "-th-" + allColHeaders[j] + ' ';
-        sTdHeaders += sHeader;
-    }
-    elTd.headers = sTdHeaders;
-    
-    // Class the TD element
-    var aAddClasses = [];
-    if(index === 0) {
-        aAddClasses[aAddClasses.length] = DT.CLASS_FIRST;
-    }
-    if(isLast) {
-        aAddClasses[aAddClasses.length] = DT.CLASS_LAST;
-    }
-    elTd.className = this._getColumnClassNames(oColumn, aAddClasses);
-
-    // Class the liner element
-    elTd.firstChild.className = DT.CLASS_LINER;
-
-    // Set Column width for fallback cases
-    if(oColumn.width && this._bDynStylesFallback) {
-        // Validate minWidth
-        var nWidth = (oColumn.minWidth && (oColumn.width < oColumn.minWidth)) ?
-                oColumn.minWidth : oColumn.width;
-        elTd.firstChild.style.overflow = 'hidden';
-        elTd.firstChild.style.width = nWidth + 'px';
-    }
-    
-    return elTd;
-},
-
-
-/**
- * Create a new TR element for a given Record and appends it with the correct
- * number of Column-state-classed TD elements. Striping is the responsibility of
- * the calling function, which may decide to stripe the single row, a subset of
- * rows, or all the rows.
- * @method _createTrEl
- * @param oRecord {YAHOO.widget.Record} Record instance
- * @return {HTMLElement} The new TR element.  This must be added to the DOM.
- * @private 
- */
-_addTrEl : function (oRecord) {
-    var elTrTemplate = this._getTrTemplateEl();
-    
-    // Clone the TR template.
-    var elTr = elTrTemplate.cloneNode(true);
-    
-    // Populate content
-    return this._updateTrEl(elTr,oRecord);
-},
-
-/**
- * Formats the contents of the given TR's TD elements with data from the given
- * Record. Only innerHTML should change, nothing structural.
- *
- * @method _updateTrEl
- * @param elTr {HTMLElement} The TR element to update.
- * @param oRecord {YAHOO.widget.Record} The associated Record instance.
- * @return {HTMLElement} DOM reference to the new TR element.
- * @private
- */
-_updateTrEl : function(elTr, oRecord) {
-    var ok = this.get("formatRow") ? this.get("formatRow")(elTr, oRecord) : true;
-    if(ok) {
-        // Hide the row to prevent constant reflows
-        elTr.style.display = 'none';
-        
-        // Update TD elements with new data
-        var allTds = elTr.childNodes,
-            elTd;
-        for(var i=0,len=allTds.length; i<len; ++i) {
-            elTd = allTds[i];
-            
-            // Set the cell content
-            this.formatCell(allTds[i].firstChild, oRecord, this._oColumnSet.keys[i]);
-        }
-        
-        // Redisplay the row for reflow
-        elTr.style.display = '';
-    }
-    
-    elTr.id = oRecord.getId(); // Needed for Record association and tracking of FIRST/LAST
-    return elTr;
-},
-
-
-/**
- * Deletes TR element by DOM reference or by DataTable page row index.
- *
- * @method _deleteTrEl
- * @param row {HTMLElement | Number} TR element reference or Datatable page row index.
- * @return {Boolean} Returns true if successful, else returns false.
- * @private
- */
-_deleteTrEl : function(row) {
-    var rowIndex;
-
-    // Get page row index for the element
-    if(!lang.isNumber(row)) {
-        rowIndex = Dom.get(row).sectionRowIndex;
-    }
-    else {
-        rowIndex = row;
-    }
-    if(lang.isNumber(rowIndex) && (rowIndex > -2) && (rowIndex < this._elTbody.rows.length)) {
-        // Cannot use tbody.deleteRow due to IE6 instability
-        //return this._elTbody.deleteRow(rowIndex);
-        return this._elTbody.removeChild(this.getTrEl(row));
-    }
-    else {
-        return null;
-    }
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// CSS/STATE FUNCTIONS
-
-
-
-
-/**
- * Removes the class YAHOO.widget.DataTable.CLASS_FIRST from the first TR element
- * of the DataTable page and updates internal tracker.
- *
- * @method _unsetFirstRow
- * @private
- */
-_unsetFirstRow : function() {
-    // Remove FIRST
-    if(this._sFirstTrId) {
-        Dom.removeClass(this._sFirstTrId, DT.CLASS_FIRST);
-        this._sFirstTrId = null;
-    }
-},
-
-/**
- * Assigns the class YAHOO.widget.DataTable.CLASS_FIRST to the first TR element
- * of the DataTable page and updates internal tracker.
- *
- * @method _setFirstRow
- * @private
- */
-_setFirstRow : function() {
-    this._unsetFirstRow();
-    var elTr = this.getFirstTrEl();
-    if(elTr) {
-        // Set FIRST
-        Dom.addClass(elTr, DT.CLASS_FIRST);
-        this._sFirstTrId = elTr.id;
-    }
-},
-
-/**
- * Removes the class YAHOO.widget.DataTable.CLASS_LAST from the last TR element
- * of the DataTable page and updates internal tracker.
- *
- * @method _unsetLastRow
- * @private
- */
-_unsetLastRow : function() {
-    // Unassign previous class
-    if(this._sLastTrId) {
-        Dom.removeClass(this._sLastTrId, DT.CLASS_LAST);
-        this._sLastTrId = null;
-    }   
-},
-
-/**
- * Assigns the class YAHOO.widget.DataTable.CLASS_LAST to the last TR element
- * of the DataTable page and updates internal tracker.
- *
- * @method _setLastRow
- * @private
- */
-_setLastRow : function() {
-    this._unsetLastRow();
-    var elTr = this.getLastTrEl();
-    if(elTr) {
-        // Assign class
-        Dom.addClass(elTr, DT.CLASS_LAST);
-        this._sLastTrId = elTr.id;
-    }
-},
-
-/**
- * Assigns the classes DT.CLASS_EVEN and DT.CLASS_ODD to one, many, or all TR elements.
- *
- * @method _setRowStripes
- * @param row {HTMLElement | String | Number} (optional) HTML TR element reference
- * or string ID, or page row index of where to start striping.
- * @param range {Number} (optional) If given, how many rows to stripe, otherwise
- * stripe all the rows until the end.
- * @private
- */
-_setRowStripes : function(row, range) {
-    // Default values stripe all rows
-    var allRows = this._elTbody.rows,
-        nStartIndex = 0,
-        nEndIndex = allRows.length,
-        aOdds = [], nOddIdx = 0,
-        aEvens = [], nEvenIdx = 0;
-
-    // Stripe a subset
-    if((row !== null) && (row !== undefined)) {
-        // Validate given start row
-        var elStartRow = this.getTrEl(row);
-        if(elStartRow) {
-            nStartIndex = elStartRow.sectionRowIndex;
-
-            // Validate given range
-            if(lang.isNumber(range) && (range > 1)) {
-                nEndIndex = nStartIndex + range;
-            }
-        }
-    }
-
-    for(var i=nStartIndex; i<nEndIndex; i++) {
-        if(i%2) {
-            aOdds[nOddIdx++] = allRows[i];
-        } else {
-            aEvens[nEvenIdx++] = allRows[i];
-        }
-    }
-
-    if (aOdds.length) {
-        Dom.replaceClass(aOdds, DT.CLASS_EVEN, DT.CLASS_ODD);
-    }
-
-    if (aEvens.length) {
-        Dom.replaceClass(aEvens, DT.CLASS_ODD, DT.CLASS_EVEN);
-    }
-},
-
-/**
- * Assigns the class DT.CLASS_SELECTED to TR and TD elements.
- *
- * @method _setSelections
- * @private
- */
-_setSelections : function() {
-    // Keep track of selected rows
-    var allSelectedRows = this.getSelectedRows();
-    // Keep track of selected cells
-    var allSelectedCells = this.getSelectedCells();
-    // Anything to select?
-    if((allSelectedRows.length>0) || (allSelectedCells.length > 0)) {
-        var oColumnSet = this._oColumnSet,
-            el;
-        // Loop over each row
-        for(var i=0; i<allSelectedRows.length; i++) {
-            el = Dom.get(allSelectedRows[i]);
-            if(el) {
-                Dom.addClass(el, DT.CLASS_SELECTED);
-            }
-        }
-        // Loop over each cell
-        for(i=0; i<allSelectedCells.length; i++) {
-            el = Dom.get(allSelectedCells[i].recordId);
-            if(el) {
-                Dom.addClass(el.childNodes[oColumnSet.getColumn(allSelectedCells[i].columnKey).getKeyIndex()], DT.CLASS_SELECTED);
-            }
-        }
-    }       
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private DOM Event Handlers
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Validates minWidths whenever the render chain ends.
- *
- * @method _onRenderChainEnd
- * @private
- */
-_onRenderChainEnd : function() {
-    // Hide loading message
-    this.hideTableMessage();
-    
-    // Show empty message
-    if(this._elTbody.rows.length === 0) {
-        this.showTableMessage(this.get("MSG_EMPTY"), DT.CLASS_EMPTY);        
-    }
-
-    // Execute in timeout thread to give implementers a chance
-    // to subscribe after the constructor
-    var oSelf = this;
-    setTimeout(function() {
-        if((oSelf instanceof DT) && oSelf._sId) {        
-            // Init event
-            if(oSelf._bInit) {
-                oSelf._bInit = false;
-                oSelf.fireEvent("initEvent");
-            }
-    
-            // Render event
-            oSelf.fireEvent("renderEvent");
-            // Backward compatibility
-            oSelf.fireEvent("refreshEvent");
-            YAHOO.log("DataTable rendered", "info", oSelf.toString());
-    
-            // Post-render routine
-            oSelf.validateColumnWidths();
-    
-            // Post-render event
-            oSelf.fireEvent("postRenderEvent");
-            
-            /*if(YAHOO.example.Performance.trialStart) {
-                YAHOO.log((new Date()).getTime() - YAHOO.example.Performance.trialStart.getTime() + " ms", "time");
-                YAHOO.example.Performance.trialStart = null;
-            }*/
-            
-            YAHOO.log("Post-render routine executed", "info", oSelf.toString());
-        }
-    }, 0);
-},
-
-/**
- * Handles click events on the DOCUMENT.
- *
- * @method _onDocumentClick
- * @param e {HTMLEvent} The click event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onDocumentClick : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-
-    if(!Dom.isAncestor(oSelf._elContainer, elTarget)) {
-        oSelf.fireEvent("tableBlurEvent");
-
-        // Fires editorBlurEvent when click is not within the TABLE.
-        // For cases when click is within the TABLE, due to timing issues,
-        // the editorBlurEvent needs to get fired by the lower-level DOM click
-        // handlers below rather than by the TABLE click handler directly.
-        if(oSelf._oCellEditor) {
-            if(oSelf._oCellEditor.getContainerEl) {
-                var elContainer = oSelf._oCellEditor.getContainerEl();
-                // Only if the click was not within the CellEditor container
-                if(!Dom.isAncestor(elContainer, elTarget) &&
-                        (elContainer.id !== elTarget.id)) {
-                    oSelf._oCellEditor.fireEvent("blurEvent", {editor: oSelf._oCellEditor});
-                }
-            }
-            // Backward Compatibility
-            else if(oSelf._oCellEditor.isActive) {
-                // Only if the click was not within the Cell Editor container
-                if(!Dom.isAncestor(oSelf._oCellEditor.container, elTarget) &&
-                        (oSelf._oCellEditor.container.id !== elTarget.id)) {
-                    oSelf.fireEvent("editorBlurEvent", {editor:oSelf._oCellEditor});
-                }
-            }
-        }
-    }
-},
-
-/**
- * Handles focus events on the DataTable instance.
- *
- * @method _onTableFocus
- * @param e {HTMLEvent} The focus event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTableFocus : function(e, oSelf) {
-    oSelf.fireEvent("tableFocusEvent");
-},
-
-/**
- * Handles focus events on the THEAD element.
- *
- * @method _onTheadFocus
- * @param e {HTMLEvent} The focus event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTheadFocus : function(e, oSelf) {
-    oSelf.fireEvent("theadFocusEvent");
-    oSelf.fireEvent("tableFocusEvent");
-},
-
-/**
- * Handles focus events on the TBODY element.
- *
- * @method _onTbodyFocus
- * @param e {HTMLEvent} The focus event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTbodyFocus : function(e, oSelf) {
-    oSelf.fireEvent("tbodyFocusEvent");
-    oSelf.fireEvent("tableFocusEvent");
-},
-
-/**
- * Handles mouseover events on the DataTable instance.
- *
- * @method _onTableMouseover
- * @param e {HTMLEvent} The mouseover event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTableMouseover : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-        var elTag = elTarget.nodeName.toLowerCase();
-        var bKeepBubbling = true;
-        while(elTarget && (elTag != "table")) {
-            switch(elTag) {
-                case "body":
-                     return;
-                case "a":
-                    break;
-                case "td":
-                    bKeepBubbling = oSelf.fireEvent("cellMouseoverEvent",{target:elTarget,event:e});
-                    break;
-                case "span":
-                    if(Dom.hasClass(elTarget, DT.CLASS_LABEL)) {
-                        bKeepBubbling = oSelf.fireEvent("theadLabelMouseoverEvent",{target:elTarget,event:e});
-                        // Backward compatibility
-                        bKeepBubbling = oSelf.fireEvent("headerLabelMouseoverEvent",{target:elTarget,event:e});
-                    }
-                    break;
-                case "th":
-                    bKeepBubbling = oSelf.fireEvent("theadCellMouseoverEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerCellMouseoverEvent",{target:elTarget,event:e});
-                    break;
-                case "tr":
-                    if(elTarget.parentNode.nodeName.toLowerCase() == "thead") {
-                        bKeepBubbling = oSelf.fireEvent("theadRowMouseoverEvent",{target:elTarget,event:e});
-                        // Backward compatibility
-                        bKeepBubbling = oSelf.fireEvent("headerRowMouseoverEvent",{target:elTarget,event:e});
-                    }
-                    else {
-                        bKeepBubbling = oSelf.fireEvent("rowMouseoverEvent",{target:elTarget,event:e});
-                    }
-                    break;
-                default:
-                    break;
-            }
-            if(bKeepBubbling === false) {
-                return;
-            }
-            else {
-                elTarget = elTarget.parentNode;
-                if(elTarget) {
-                    elTag = elTarget.nodeName.toLowerCase();
-                }
-            }
-        }
-        oSelf.fireEvent("tableMouseoverEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles mouseout events on the DataTable instance.
- *
- * @method _onTableMouseout
- * @param e {HTMLEvent} The mouseout event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTableMouseout : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "a":
-                break;
-            case "td":
-                bKeepBubbling = oSelf.fireEvent("cellMouseoutEvent",{target:elTarget,event:e});
-                break;
-            case "span":
-                if(Dom.hasClass(elTarget, DT.CLASS_LABEL)) {
-                    bKeepBubbling = oSelf.fireEvent("theadLabelMouseoutEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerLabelMouseoutEvent",{target:elTarget,event:e});
-                }
-                break;
-            case "th":
-                bKeepBubbling = oSelf.fireEvent("theadCellMouseoutEvent",{target:elTarget,event:e});
-                // Backward compatibility
-                bKeepBubbling = oSelf.fireEvent("headerCellMouseoutEvent",{target:elTarget,event:e});
-                break;
-            case "tr":
-                if(elTarget.parentNode.nodeName.toLowerCase() == "thead") {
-                    bKeepBubbling = oSelf.fireEvent("theadRowMouseoutEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerRowMouseoutEvent",{target:elTarget,event:e});
-                }
-                else {
-                    bKeepBubbling = oSelf.fireEvent("rowMouseoutEvent",{target:elTarget,event:e});
-                }
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableMouseoutEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles mousedown events on the DataTable instance.
- *
- * @method _onTableMousedown
- * @param e {HTMLEvent} The mousedown event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTableMousedown : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "a":
-                break;
-            case "td":
-                bKeepBubbling = oSelf.fireEvent("cellMousedownEvent",{target:elTarget,event:e});
-                break;
-            case "span":
-                if(Dom.hasClass(elTarget, DT.CLASS_LABEL)) {
-                    bKeepBubbling = oSelf.fireEvent("theadLabelMousedownEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerLabelMousedownEvent",{target:elTarget,event:e});
-                }
-                break;
-            case "th":
-                bKeepBubbling = oSelf.fireEvent("theadCellMousedownEvent",{target:elTarget,event:e});
-                // Backward compatibility
-                bKeepBubbling = oSelf.fireEvent("headerCellMousedownEvent",{target:elTarget,event:e});
-                break;
-            case "tr":
-                if(elTarget.parentNode.nodeName.toLowerCase() == "thead") {
-                    bKeepBubbling = oSelf.fireEvent("theadRowMousedownEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerRowMousedownEvent",{target:elTarget,event:e});
-                }
-                else {
-                    bKeepBubbling = oSelf.fireEvent("rowMousedownEvent",{target:elTarget,event:e});
-                }
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableMousedownEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles mouseup events on the DataTable instance.
- *
- * @method _onTableMouseup
- * @param e {HTMLEvent} The mouseup event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTableMouseup : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "a":
-                break;
-            case "td":
-                bKeepBubbling = oSelf.fireEvent("cellMouseupEvent",{target:elTarget,event:e});
-                break;
-            case "span":
-                if(Dom.hasClass(elTarget, DT.CLASS_LABEL)) {
-                    bKeepBubbling = oSelf.fireEvent("theadLabelMouseupEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerLabelMouseupEvent",{target:elTarget,event:e});
-                }
-                break;
-            case "th":
-                bKeepBubbling = oSelf.fireEvent("theadCellMouseupEvent",{target:elTarget,event:e});
-                // Backward compatibility
-                bKeepBubbling = oSelf.fireEvent("headerCellMouseupEvent",{target:elTarget,event:e});
-                break;
-            case "tr":
-                if(elTarget.parentNode.nodeName.toLowerCase() == "thead") {
-                    bKeepBubbling = oSelf.fireEvent("theadRowMouseupEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerRowMouseupEvent",{target:elTarget,event:e});
-                }
-                else {
-                    bKeepBubbling = oSelf.fireEvent("rowMouseupEvent",{target:elTarget,event:e});
-                }
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableMouseupEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles dblclick events on the DataTable instance.
- *
- * @method _onTableDblclick
- * @param e {HTMLEvent} The dblclick event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTableDblclick : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "td":
-                bKeepBubbling = oSelf.fireEvent("cellDblclickEvent",{target:elTarget,event:e});
-                break;
-            case "span":
-                if(Dom.hasClass(elTarget, DT.CLASS_LABEL)) {
-                    bKeepBubbling = oSelf.fireEvent("theadLabelDblclickEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerLabelDblclickEvent",{target:elTarget,event:e});
-                }
-                break;
-            case "th":
-                bKeepBubbling = oSelf.fireEvent("theadCellDblclickEvent",{target:elTarget,event:e});
-                // Backward compatibility
-                bKeepBubbling = oSelf.fireEvent("headerCellDblclickEvent",{target:elTarget,event:e});
-                break;
-            case "tr":
-                if(elTarget.parentNode.nodeName.toLowerCase() == "thead") {
-                    bKeepBubbling = oSelf.fireEvent("theadRowDblclickEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerRowDblclickEvent",{target:elTarget,event:e});
-                }
-                else {
-                    bKeepBubbling = oSelf.fireEvent("rowDblclickEvent",{target:elTarget,event:e});
-                }
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableDblclickEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-/**
- * Handles keydown events on the THEAD element.
- *
- * @method _onTheadKeydown
- * @param e {HTMLEvent} The key event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTheadKeydown : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "input":
-            case "textarea":
-                // TODO: implement textareaKeyEvent
-                break;
-            case "thead":
-                bKeepBubbling = oSelf.fireEvent("theadKeyEvent",{target:elTarget,event:e});
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableKeyEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles keydown events on the TBODY element. Handles selection behavior,
- * provides hooks for ENTER to edit functionality.
- *
- * @method _onTbodyKeydown
- * @param e {HTMLEvent} The key event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTbodyKeydown : function(e, oSelf) {
-    var sMode = oSelf.get("selectionMode");
-
-    if(sMode == "standard") {
-        oSelf._handleStandardSelectionByKey(e);
-    }
-    else if(sMode == "single") {
-        oSelf._handleSingleSelectionByKey(e);
-    }
-    else if(sMode == "cellblock") {
-        oSelf._handleCellBlockSelectionByKey(e);
-    }
-    else if(sMode == "cellrange") {
-        oSelf._handleCellRangeSelectionByKey(e);
-    }
-    else if(sMode == "singlecell") {
-        oSelf._handleSingleCellSelectionByKey(e);
-    }
-    
-    if(oSelf._oCellEditor) {
-        if(oSelf._oCellEditor.fireEvent) {
-            oSelf._oCellEditor.fireEvent("blurEvent", {editor: oSelf._oCellEditor});
-        }
-        else if(oSelf._oCellEditor.isActive) {
-            oSelf.fireEvent("editorBlurEvent", {editor:oSelf._oCellEditor});
-        }
-    }
-
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "tbody":
-                bKeepBubbling = oSelf.fireEvent("tbodyKeyEvent",{target:elTarget,event:e});
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableKeyEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles keypress events on the TABLE. Mainly to support stopEvent on Mac.
- *
- * @method _onTableKeypress
- * @param e {HTMLEvent} The key event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTableKeypress : function(e, oSelf) {
-    if(ua.opera || (navigator.userAgent.toLowerCase().indexOf("mac") !== -1) && (ua.webkit < 420)) {
-        var nKey = Ev.getCharCode(e);
-        // arrow down
-        if(nKey == 40) {
-            Ev.stopEvent(e);
-        }
-        // arrow up
-        else if(nKey == 38) {
-            Ev.stopEvent(e);
-        }
-    }
-},
-
-/**
- * Handles click events on the THEAD element.
- *
- * @method _onTheadClick
- * @param e {HTMLEvent} The click event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTheadClick : function(e, oSelf) {
-    // This blurs the CellEditor
-    if(oSelf._oCellEditor) {
-        if(oSelf._oCellEditor.fireEvent) {
-            oSelf._oCellEditor.fireEvent("blurEvent", {editor: oSelf._oCellEditor});
-        }
-        // Backward compatibility
-        else if(oSelf._oCellEditor.isActive) {
-            oSelf.fireEvent("editorBlurEvent", {editor:oSelf._oCellEditor});
-        }
-    }
-
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "input":
-                if(elTarget.type.toLowerCase() == "checkbox") {
-                    bKeepBubbling = oSelf.fireEvent("theadCheckboxClickEvent",{target:elTarget,event:e});
-                }
-                else if(elTarget.type.toLowerCase() == "radio") {
-                    bKeepBubbling = oSelf.fireEvent("theadRadioClickEvent",{target:elTarget,event:e});
-                }
-                break;
-            case "a":
-                bKeepBubbling = oSelf.fireEvent("theadLinkClickEvent",{target:elTarget,event:e});
-                break;
-            case "button":
-                bKeepBubbling = oSelf.fireEvent("theadButtonClickEvent",{target:elTarget,event:e});
-                break;
-            case "span":
-                if(Dom.hasClass(elTarget, DT.CLASS_LABEL)) {
-                    bKeepBubbling = oSelf.fireEvent("theadLabelClickEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerLabelClickEvent",{target:elTarget,event:e});
-                }
-                break;
-            case "th":
-                bKeepBubbling = oSelf.fireEvent("theadCellClickEvent",{target:elTarget,event:e});
-                // Backward compatibility
-                bKeepBubbling = oSelf.fireEvent("headerCellClickEvent",{target:elTarget,event:e});
-                break;
-            case "tr":
-                bKeepBubbling = oSelf.fireEvent("theadRowClickEvent",{target:elTarget,event:e});
-                // Backward compatibility
-                bKeepBubbling = oSelf.fireEvent("headerRowClickEvent",{target:elTarget,event:e});
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableClickEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles click events on the primary TBODY element.
- *
- * @method _onTbodyClick
- * @param e {HTMLEvent} The click event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTbodyClick : function(e, oSelf) {
-    // This blurs the CellEditor
-    if(oSelf._oCellEditor) {
-        if(oSelf._oCellEditor.fireEvent) {
-            oSelf._oCellEditor.fireEvent("blurEvent", {editor: oSelf._oCellEditor});
-        }
-        else if(oSelf._oCellEditor.isActive) {
-            oSelf.fireEvent("editorBlurEvent", {editor:oSelf._oCellEditor});
-        }
-    }
-
-    // Fire Custom Events
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "input":
-                if(elTarget.type.toLowerCase() == "checkbox") {
-                    bKeepBubbling = oSelf.fireEvent("checkboxClickEvent",{target:elTarget,event:e});
-                }
-                else if(elTarget.type.toLowerCase() == "radio") {
-                    bKeepBubbling = oSelf.fireEvent("radioClickEvent",{target:elTarget,event:e});
-                }
-                break;
-            case "a":
-                bKeepBubbling = oSelf.fireEvent("linkClickEvent",{target:elTarget,event:e});
-                break;
-            case "button":
-                bKeepBubbling = oSelf.fireEvent("buttonClickEvent",{target:elTarget,event:e});
-                break;
-            case "td":
-                bKeepBubbling = oSelf.fireEvent("cellClickEvent",{target:elTarget,event:e});
-                break;
-            case "tr":
-                bKeepBubbling = oSelf.fireEvent("rowClickEvent",{target:elTarget,event:e});
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableClickEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles change events on SELECT elements within DataTable.
- *
- * @method _onDropdownChange
- * @param e {HTMLEvent} The change event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onDropdownChange : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-    oSelf.fireEvent("dropdownChangeEvent", {event:e, target:elTarget});
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Returns object literal of initial configs.
- *
- * @property configs
- * @type Object
- * @default {} 
- */
-configs: null,
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Returns unique id assigned to instance, which is a useful prefix for
- * generating unique DOM ID strings.
- *
- * @method getId
- * @return {String} Unique ID of the DataSource instance.
- */
-getId : function() {
-    return this._sId;
-},
-
-/**
- * DataSource instance name, for logging.
- *
- * @method toString
- * @return {String} Unique name of the DataSource instance.
- */
-
-toString : function() {
-    return "DataTable instance " + this._sId;
-},
-
-/**
- * Returns the DataTable instance's DataSource instance.
- *
- * @method getDataSource
- * @return {YAHOO.util.DataSource} DataSource instance.
- */
-getDataSource : function() {
-    return this._oDataSource;
-},
-
-/**
- * Returns the DataTable instance's ColumnSet instance.
- *
- * @method getColumnSet
- * @return {YAHOO.widget.ColumnSet} ColumnSet instance.
- */
-getColumnSet : function() {
-    return this._oColumnSet;
-},
-
-/**
- * Returns the DataTable instance's RecordSet instance.
- *
- * @method getRecordSet
- * @return {YAHOO.widget.RecordSet} RecordSet instance.
- */
-getRecordSet : function() {
-    return this._oRecordSet;
-},
-
-/**
- * Returns on object literal representing the DataTable instance's current
- * state with the following properties:
- * <dl>
- * <dt>pagination</dt>
- * <dd>Instance of YAHOO.widget.Paginator</dd>
- *
- * <dt>sortedBy</dt>
- * <dd>
- *     <dl>
- *         <dt>sortedBy.key</dt>
- *         <dd>{String} Key of sorted Column</dd>
- *         <dt>sortedBy.dir</dt>
- *         <dd>{String} Initial sort direction, either YAHOO.widget.DataTable.CLASS_ASC or YAHOO.widget.DataTable.CLASS_DESC</dd>
- *     </dl>
- * </dd>
- *
- * <dt>selectedRows</dt>
- * <dd>Array of selected rows by Record ID.</dd>
- *
- * <dt>selectedCells</dt>
- * <dd>Selected cells as an array of object literals:
- *     {recordId:sRecordId, columnKey:sColumnKey}</dd>
- * </dl>
- *  
- * @method getState
- * @return {Object} DataTable instance state object literal values.
- */
-getState : function() {
-    return {
-        totalRecords: this.get('paginator') ? this.get('paginator').get("totalRecords") : this._oRecordSet.getLength(),
-        pagination: this.get("paginator") ? this.get("paginator").getState() : null,
-        sortedBy: this.get("sortedBy"),
-        selectedRows: this.getSelectedRows(),
-        selectedCells: this.getSelectedCells()
-    };
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// DOM ACCESSORS
-
-/**
- * Returns DOM reference to the DataTable's container element.
- *
- * @method getContainerEl
- * @return {HTMLElement} Reference to DIV element.
- */
-getContainerEl : function() {
-    return this._elContainer;
-},
-
-/**
- * Returns DOM reference to the DataTable's TABLE element.
- *
- * @method getTableEl
- * @return {HTMLElement} Reference to TABLE element.
- */
-getTableEl : function() {
-    return this._elTable;
-},
-
-/**
- * Returns DOM reference to the DataTable's THEAD element.
- *
- * @method getTheadEl
- * @return {HTMLElement} Reference to THEAD element.
- */
-getTheadEl : function() {
-    return this._elThead;
-},
-
-/**
- * Returns DOM reference to the DataTable's primary TBODY element.
- *
- * @method getTbodyEl
- * @return {HTMLElement} Reference to TBODY element.
- */
-getTbodyEl : function() {
-    return this._elTbody;
-},
-
-/**
- * Returns DOM reference to the DataTable's secondary TBODY element that is
- * used to display messages.
- *
- * @method getMsgTbodyEl
- * @return {HTMLElement} Reference to TBODY element.
- */
-getMsgTbodyEl : function() {
-    return this._elMsgTbody;
-},
-
-/**
- * Returns DOM reference to the TD element within the secondary TBODY that is
- * used to display messages.
- *
- * @method getMsgTdEl
- * @return {HTMLElement} Reference to TD element.
- */
-getMsgTdEl : function() {
-    return this._elMsgTd;
-},
-
-/**
- * Returns the corresponding TR reference for a given DOM element, ID string or
- * directly page row index. If the given identifier is a child of a TR element,
- * then DOM tree is traversed until a parent TR element is returned, otherwise
- * null.
- *
- * @method getTrEl
- * @param row {HTMLElement | String | Number | YAHOO.widget.Record} Which row to
- * get: by element reference, ID string, page row index, or Record.
- * @return {HTMLElement} Reference to TR element, or null.
- */
-getTrEl : function(row) {
-    // By Record
-    if(row instanceof YAHOO.widget.Record) {
-        return document.getElementById(row.getId());
-    }
-    // By page row index
-    else if(lang.isNumber(row)) {
-        var allRows = this._elTbody.rows;
-        return ((row > -1) && (row < allRows.length)) ? allRows[row] : null;
-    }
-    // By ID string or element reference
-    else {
-        var elRow = (lang.isString(row)) ? document.getElementById(row) : row;
-
-        // Validate HTML element
-        if(elRow && (elRow.ownerDocument == document)) {
-            // Validate TR element
-            if(elRow.nodeName.toLowerCase() != "tr") {
-                // Traverse up the DOM to find the corresponding TR element
-                elRow = Dom.getAncestorByTagName(elRow,"tr");
-            }
-
-            // Make sure the TR is in this TBODY
-            if(elRow && (elRow.parentNode == this._elTbody)) {
-                // Now we can return the TR element
-                return elRow;
-            }
-        }
-    }
-
-    return null;
-},
-
-/**
- * Returns DOM reference to the first TR element in the DataTable page, or null.
- *
- * @method getFirstTrEl
- * @return {HTMLElement} Reference to TR element.
- */
-getFirstTrEl : function() {
-    return this._elTbody.rows[0] || null;
-},
-
-/**
- * Returns DOM reference to the last TR element in the DataTable page, or null.
- *
- * @method getLastTrEl
- * @return {HTMLElement} Reference to last TR element.
- */
-getLastTrEl : function() {
-    var allRows = this._elTbody.rows;
-        if(allRows.length > 0) {
-            return allRows[allRows.length-1] || null;
-        }
-},
-
-/**
- * Returns DOM reference to the next TR element from the given TR element, or null.
- *
- * @method getNextTrEl
- * @param row {HTMLElement | String | Number | YAHOO.widget.Record} Element
- * reference, ID string, page row index, or Record from which to get next TR element.
- * @return {HTMLElement} Reference to next TR element.
- */
-getNextTrEl : function(row) {
-    var nThisTrIndex = this.getTrIndex(row);
-    if(nThisTrIndex !== null) {
-        var allRows = this._elTbody.rows;
-        if(nThisTrIndex < allRows.length-1) {
-            return allRows[nThisTrIndex+1];
-        }
-    }
-
-    YAHOO.log("Could not get next TR element for row " + row, "info", this.toString());
-    return null;
-},
-
-/**
- * Returns DOM reference to the previous TR element from the given TR element, or null.
- *
- * @method getPreviousTrEl
- * @param row {HTMLElement | String | Number | YAHOO.widget.Record} Element
- * reference, ID string, page row index, or Record from which to get previous TR element.
- * @return {HTMLElement} Reference to previous TR element.
- */
-getPreviousTrEl : function(row) {
-    var nThisTrIndex = this.getTrIndex(row);
-    if(nThisTrIndex !== null) {
-        var allRows = this._elTbody.rows;
-        if(nThisTrIndex > 0) {
-            return allRows[nThisTrIndex-1];
-        }
-    }
-
-    YAHOO.log("Could not get previous TR element for row " + row, "info", this.toString());
-    return null;
-},
-
-/**
- * Returns DOM reference to a TD liner element.
- *
- * @method getTdLinerEl
- * @param cell {HTMLElement | Object} TD element or child of a TD element, or
- * object literal of syntax {record:oRecord, column:oColumn}.
- * @return {HTMLElement} Reference to TD liner element.
- */
-getTdLinerEl : function(cell) {
-    var elCell = this.getTdEl(cell);
-    return elCell.firstChild || null;
-},
-
-/**
- * Returns DOM reference to a TD element.
- *
- * @method getTdEl
- * @param cell {HTMLElement | String | Object} TD element or child of a TD element, or
- * object literal of syntax {record:oRecord, column:oColumn}.
- * @return {HTMLElement} Reference to TD element.
- */
-getTdEl : function(cell) {
-    var elCell;
-    var el = Dom.get(cell);
-
-    // Validate HTML element
-    if(el && (el.ownerDocument == document)) {
-        // Validate TD element
-        if(el.nodeName.toLowerCase() != "td") {
-            // Traverse up the DOM to find the corresponding TR element
-            elCell = Dom.getAncestorByTagName(el, "td");
-        }
-        else {
-            elCell = el;
-        }
-
-        // Make sure the TD is in this TBODY
-        if(elCell && (elCell.parentNode.parentNode == this._elTbody)) {
-            // Now we can return the TD element
-            return elCell;
-        }
-    }
-    else if(cell) {
-        var oRecord, nColKeyIndex;
-
-        if(lang.isString(cell.columnKey) && lang.isString(cell.recordId)) {
-            oRecord = this.getRecord(cell.recordId);
-            var oColumn = this.getColumn(cell.columnKey);
-            if(oColumn) {
-                nColKeyIndex = oColumn.getKeyIndex();
-            }
-
-        }
-        if(cell.record && cell.column && cell.column.getKeyIndex) {
-            oRecord = cell.record;
-            nColKeyIndex = cell.column.getKeyIndex();
-        }
-        var elRow = this.getTrEl(oRecord);
-        if((nColKeyIndex !== null) && elRow && elRow.cells && elRow.cells.length > 0) {
-            return elRow.cells[nColKeyIndex] || null;
-        }
-    }
-
-    return null;
-},
-
-/**
- * Returns DOM reference to the first TD element in the DataTable page (by default),
- * the first TD element of the optionally given row, or null.
- *
- * @method getFirstTdEl
- * @param row {HTMLElement} (optional) row from which to get first TD
- * @return {HTMLElement} Reference to TD element.
- */
-getFirstTdEl : function(row) {
-    var elRow = this.getTrEl(row) || this.getFirstTrEl();
-    if(elRow && (elRow.cells.length > 0)) {
-        return elRow.cells[0];
-    }
-    YAHOO.log("Could not get first TD element for row " + elRow, "info", this.toString());
-    return null;
-},
-
-/**
- * Returns DOM reference to the last TD element in the DataTable page (by default),
- * the first TD element of the optionally given row, or null.
- *
- * @method getLastTdEl
- * @return {HTMLElement} Reference to last TD element.
- */
-getLastTdEl : function(row) {
-    var elRow = this.getTrEl(row) || this.getLastTrEl();
-    if(elRow && (elRow.cells.length > 0)) {
-        return elRow.cells[elRow.cells.length-1];
-    }
-    YAHOO.log("Could not get last TD element for row " + elRow, "info", this.toString());
-    return null;
-},
-
-/**
- * Returns DOM reference to the next TD element from the given cell, or null.
- *
- * @method getNextTdEl
- * @param cell {HTMLElement | String | Object} DOM element reference or string ID, or
- * object literal of syntax {record:oRecord, column:oColumn} from which to get next TD element.
- * @return {HTMLElement} Reference to next TD element, or null.
- */
-getNextTdEl : function(cell) {
-    var elCell = this.getTdEl(cell);
-    if(elCell) {
-        var nThisTdIndex = elCell.cellIndex;
-        var elRow = this.getTrEl(elCell);
-        if(nThisTdIndex < elRow.cells.length-1) {
-            return elRow.cells[nThisTdIndex+1];
-        }
-        else {
-            var elNextRow = this.getNextTrEl(elRow);
-            if(elNextRow) {
-                return elNextRow.cells[0];
-            }
-        }
-    }
-    YAHOO.log("Could not get next TD element for cell " + cell, "info", this.toString());
-    return null;
-},
-
-/**
- * Returns DOM reference to the previous TD element from the given cell, or null.
- *
- * @method getPreviousTdEl
- * @param cell {HTMLElement | String | Object} DOM element reference or string ID, or
- * object literal of syntax {record:oRecord, column:oColumn} from which to get previous TD element.
- * @return {HTMLElement} Reference to previous TD element, or null.
- */
-getPreviousTdEl : function(cell) {
-    var elCell = this.getTdEl(cell);
-    if(elCell) {
-        var nThisTdIndex = elCell.cellIndex;
-        var elRow = this.getTrEl(elCell);
-        if(nThisTdIndex > 0) {
-            return elRow.cells[nThisTdIndex-1];
-        }
-        else {
-            var elPreviousRow = this.getPreviousTrEl(elRow);
-            if(elPreviousRow) {
-                return this.getLastTdEl(elPreviousRow);
-            }
-        }
-    }
-    YAHOO.log("Could not get next TD element for cell " + cell, "info", this.toString());
-    return null;
-},
-
-/**
- * Returns DOM reference to the above TD element from the given cell, or null.
- *
- * @method getAboveTdEl
- * @param cell {HTMLElement | String | Object} DOM element reference or string ID, or
- * object literal of syntax {record:oRecord, column:oColumn} from which to get next TD element.
- * @return {HTMLElement} Reference to next TD element, or null.
- */
-getAboveTdEl : function(cell) {
-    var elCell = this.getTdEl(cell);
-    if(elCell) {
-        var elPreviousRow = this.getPreviousTrEl(elCell);
-        if(elPreviousRow) {
-            return elPreviousRow.cells[elCell.cellIndex];
-        }
-    }
-    YAHOO.log("Could not get above TD element for cell " + cell, "info", this.toString());
-    return null;
-},
-
-/**
- * Returns DOM reference to the below TD element from the given cell, or null.
- *
- * @method getBelowTdEl
- * @param cell {HTMLElement | String | Object} DOM element reference or string ID, or
- * object literal of syntax {record:oRecord, column:oColumn} from which to get previous TD element.
- * @return {HTMLElement} Reference to previous TD element, or null.
- */
-getBelowTdEl : function(cell) {
-    var elCell = this.getTdEl(cell);
-    if(elCell) {
-        var elNextRow = this.getNextTrEl(elCell);
-        if(elNextRow) {
-            return elNextRow.cells[elCell.cellIndex];
-        }
-    }
-    YAHOO.log("Could not get below TD element for cell " + cell, "info", this.toString());
-    return null;
-},
-
-/**
- * Returns DOM reference to a TH liner element. Needed to normalize for resizeable 
- * Columns, which have an additional resizer liner DIV element between the TH
- * element and the liner DIV element. 
- *
- * @method getThLinerEl
- * @param theadCell {YAHOO.widget.Column | HTMLElement | String} Column instance,
- * DOM element reference, or string ID.
- * @return {HTMLElement} Reference to TH liner element.
- */
-getThLinerEl : function(theadCell) {
-    var oColumn = this.getColumn(theadCell);
-    return (oColumn) ? oColumn.getThLinerEl() : null;
-},
-
-/**
- * Returns DOM reference to a TH element.
- *
- * @method getThEl
- * @param theadCell {YAHOO.widget.Column | HTMLElement | String} Column instance,
- * DOM element reference, or string ID.
- * @return {HTMLElement} Reference to TH element.
- */
-getThEl : function(theadCell) {
-    var elTh;
-
-    // Validate Column instance
-    if(theadCell instanceof YAHOO.widget.Column) {
-        var oColumn = theadCell;
-        elTh = oColumn.getThEl();
-        if(elTh) {
-            return elTh;
-        }
-    }
-    // Validate HTML element
-    else {
-        var el = Dom.get(theadCell);
-
-        if(el && (el.ownerDocument == document)) {
-            // Validate TH element
-            if(el.nodeName.toLowerCase() != "th") {
-                // Traverse up the DOM to find the corresponding TR element
-                elTh = Dom.getAncestorByTagName(el,"th");
-            }
-            else {
-                elTh = el;
-            }
-
-            // Make sure the TH is in this THEAD
-            if(elTh && (elTh.parentNode.parentNode == this._elThead)) {
-                // Now we can return the TD element
-                return elTh;
-            }
-        }
-    }
-
-    return null;
-},
-
-/**
- * Returns the page row index of given row. Returns null if the row is not on the
- * current DataTable page.
- *
- * @method getTrIndex
- * @param row {HTMLElement | String | YAHOO.widget.Record | Number} DOM or ID
- * string reference to an element within the DataTable page, a Record instance,
- * or a Record's RecordSet index.
- * @return {Number} Page row index, or null if row does not exist or is not on current page.
- */
-getTrIndex : function(row) {
-    var nRecordIndex;
-
-    // By Record
-    if(row instanceof YAHOO.widget.Record) {
-        nRecordIndex = this._oRecordSet.getRecordIndex(row);
-        if(nRecordIndex === null) {
-            // Not a valid Record
-            return null;
-        }
-    }
-    // Calculate page row index from Record index
-    else if(lang.isNumber(row)) {
-        nRecordIndex = row;
-    }
-    if(lang.isNumber(nRecordIndex)) {
-        // Validate the number
-        if((nRecordIndex > -1) && (nRecordIndex < this._oRecordSet.getLength())) {
-            // DataTable is paginated
-            var oPaginator = this.get('paginator');
-            if(oPaginator) {
-                // Check the record index is within the indices of the
-                // current page
-                var rng = oPaginator.getPageRecords();
-                if (rng && nRecordIndex >= rng[0] && nRecordIndex <= rng[1]) {
-                    // This Record is on current page
-                    return nRecordIndex - rng[0];
-                }
-                // This Record is not on current page
-                else {
-                    return null;
-                }
-            }
-            // Not paginated, just return the Record index
-            else {
-                return nRecordIndex;
-            }
-        }
-        // RecordSet index is out of range
-        else {
-            return null;
-        }
-    }
-    // By element reference or ID string
-    else {
-        // Validate TR element
-        var elRow = this.getTrEl(row);
-        if(elRow && (elRow.ownerDocument == document) &&
-                (elRow.parentNode == this._elTbody)) {
-            return elRow.sectionRowIndex;
-        }
-    }
-
-    YAHOO.log("Could not get page row index for row " + row, "info", this.toString());
-    return null;
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// TABLE FUNCTIONS
-
-/**
- * Resets a RecordSet with the given data and populates the page view
- * with the new data. Any previous data, and selection and sort states are
- * cleared. New data should be added as a separate step. 
- *
- * @method initializeTable
- */
-initializeTable : function() {
-    // Reset init flag
-    this._bInit = true;
-    
-    // Clear the RecordSet
-    this._oRecordSet.reset();
-
-    // Clear the Paginator's totalRecords if paginating
-    var pag = this.get('paginator');
-    if (pag) {
-        pag.set('totalRecords',0);
-    }
-
-    // Clear selections
-    this._unselectAllTrEls();
-    this._unselectAllTdEls();
-    this._aSelections = null;
-    this._oAnchorRecord = null;
-    this._oAnchorCell = null;
-    
-    // Clear sort
-    this.set("sortedBy", null);
-},
-
-/**
- * Internal wrapper calls run() on render Chain instance.
- *
- * @method _runRenderChain
- * @private 
- */
-_runRenderChain : function() {
-    this._oChainRender.run();
-},
-
-/**
- * Renders the view with existing Records from the RecordSet while
- * maintaining sort, pagination, and selection states. For performance, reuses
- * existing DOM elements when possible while deleting extraneous elements.
- *
- * @method render
- */
-render : function() {
-//YAHOO.example.Performance.trialStart = new Date();
-
-    this._oChainRender.stop();
-    YAHOO.log("DataTable rendering...", "info", this.toString());
-
-    var i, j, k, len, allRecords;
-
-    var oPaginator = this.get('paginator');
-    // Paginator is enabled, show a subset of Records and update Paginator UI
-    if(oPaginator) {
-        allRecords = this._oRecordSet.getRecords(
-                        oPaginator.getStartIndex(),
-                        oPaginator.getRowsPerPage());
-    }
-    // Not paginated, show all records
-    else {
-        allRecords = this._oRecordSet.getRecords();
-    }
-
-
-    /* NEW METHOD */
-    // From the top, update in-place existing rows, so as to reuse DOM elements
-    var elTbody = this._elTbody,
-        loopN = this.get("renderLoopSize"),
-        nRecordsLength = allRecords.length;
-    
-    // Table has rows
-    if(nRecordsLength > 0) {        
-        // So you don't see the borders in random places
-        //this._unsetFirstRow();
-        //this._unsetLastRow();
-        
-        elTbody.style.display = "none";
-        while(elTbody.lastChild) {
-            elTbody.removeChild(elTbody.lastChild);
-        }
-        elTbody.style.display = "";
-
-        // Set up the loop Chain to render rows
-        this._oChainRender.add({
-            method: function(oArg) {
-                if((this instanceof DT) && this._sId) {
-                    var i = oArg.nCurrentRecord,
-                        endRecordIndex = ((oArg.nCurrentRecord+oArg.nLoopLength) > nRecordsLength) ?
-                                nRecordsLength : (oArg.nCurrentRecord+oArg.nLoopLength),
-                        elRow, nextSibling;
-
-                    elTbody.style.display = "none";
-                    
-                    for(; i<endRecordIndex; i++) {
-                        elRow = Dom.get(allRecords[i].getId());
-                        elRow = elRow || this._addTrEl(allRecords[i]);
-                        nextSibling = elTbody.childNodes[i] || null;
-                        elTbody.insertBefore(elRow, nextSibling);
-                    }
-                    elTbody.style.display = "";
-                    
-                    // Set up for the next loop
-                    oArg.nCurrentRecord = i;
-                }
-            },
-            scope: this,
-            iterations: (loopN > 0) ? Math.ceil(nRecordsLength/loopN) : 1,
-            argument: {
-                nCurrentRecord: 0,//nRecordsLength-1,  // Start at first Record
-                nLoopLength: (loopN > 0) ? loopN : nRecordsLength
-            },
-            timeout: (loopN > 0) ? 0 : -1
-        });
-        
-        // Post-render tasks
-        this._oChainRender.add({
-            method: function(oArg) {
-                if((this instanceof DT) && this._sId) {
-                    while(elTbody.rows.length > nRecordsLength) {
-                        elTbody.removeChild(elTbody.lastChild);
-                    }
-                    this._setFirstRow();
-                    this._setLastRow();
-                    this._setRowStripes();
-                    this._setSelections();
-                }
-            },
-            scope: this,
-            timeout: (loopN > 0) ? 0 : -1
-        });
-        
-        // Fire events in separate timeout thread so implementers can
-        // subscribe immediately after the constructor
-        /*this._oChainRender.add({
-            method: function(oArg) {
-                if((this instanceof DT) && this._sId) {
-                    // Fire initEvent for first render
-                    if(this._bInit) {
-                        this._bInit = false;
-                        this.fireEvent("initEvent");
-                    }
-
-                    // Always fire renderEvent
-                    this.fireEvent("renderEvent");
-                    // Backward compatibility
-                    this.fireEvent("refreshEvent");
-                    YAHOO.log("DataTable rendered " + nRecordsLength + " of " + this._oRecordSet.getLength() + " rows", "info", this.toString());
-                
-                    //YAHOO.log("end render","time");
-                }
-            },
-            scope: this
-        });*/
-    }
-    // Table has no rows
-    else {
-        // Set up the loop Chain to delete rows
-        var nTotal = elTbody.rows.length;
-        this._oChainRender.add({
-            method: function(oArg) {
-                if((this instanceof DT) && this._sId) {
-                    var i = oArg.nCurrent,
-                        loopN = oArg.nLoopLength,
-                        nIterEnd = (i - loopN < 0) ? -1 : i - loopN;
-
-                    elTbody.style.display = "none";
-                    
-                    for(; i>nIterEnd; i--) {
-                        elTbody.deleteRow(-1);
-                    }
-                    elTbody.style.display = "";
-                    
-                    // Set up for the next loop
-                    oArg.nCurrent = i;
-                }
-            },
-            scope: this,
-            iterations: (loopN > 0) ? Math.ceil(nTotal/loopN) : 1,
-            argument: {
-                nCurrent: nTotal, 
-                nLoopLength: (loopN > 0) ? loopN : nTotal
-            },
-            timeout: (loopN > 0) ? 0 : -1
-        });
-    }
-    this._runRenderChain();
-},
-
-/**
- * Disables DataTable UI.
- *
- * @method disable
- */
-disable : function() {
-    var elTable = this._elTable;
-    var elMask = this._elMask;
-    elMask.style.width = elTable.offsetWidth + "px";
-    elMask.style.height = elTable.offsetHeight + "px";
-    elMask.style.display = "";
-    this.fireEvent("disableEvent");
-},
-
-/**
- * Undisables DataTable UI.
- *
- * @method undisable
- */
-undisable : function() {
-    this._elMask.style.display = "none";
-    this.fireEvent("undisableEvent");
-},
-
-/**
- * Nulls out the entire DataTable instance and related objects, removes attached
- * event listeners, and clears out DOM elements inside the container. After
- * calling this method, the instance reference should be expliclitly nulled by
- * implementer, as in myDataTable = null. Use with caution!
- *
- * @method destroy
- */
-destroy : function() {
-    // Store for later
-    var instanceName = this.toString();
-
-    this._oChainRender.stop();
-    
-    // Destroy static resizer proxy and column proxy
-    DT._destroyColumnDragTargetEl();
-    DT._destroyColumnResizerProxyEl();
-    
-    // Destroy ColumnDD and ColumnResizers
-    this._destroyColumnHelpers();
-    
-    // Destroy all CellEditors
-    var oCellEditor;
-    for(var i=0, len=this._oColumnSet.flat.length; i<len; i++) {
-        oCellEditor = this._oColumnSet.flat[i].editor;
-        if(oCellEditor && oCellEditor.destroy) {
-            oCellEditor.destroy();
-            this._oColumnSet.flat[i].editor = null;
-        }
-    }
-
-    // Unhook custom events
-    this._oRecordSet.unsubscribeAll();
-    this.unsubscribeAll();
-
-    // Unhook DOM events
-    Ev.removeListener(document, "click", this._onDocumentClick);
-    
-    // Clear out the container
-    this._destroyContainerEl(this._elContainer);
-
-    // Null out objects
-    for(var param in this) {
-        if(lang.hasOwnProperty(this, param)) {
-            this[param] = null;
-        }
-    }
-    
-    // Clean up static values
-    DT._nCurrentCount--;
-    
-    if(DT._nCurrentCount < 1) {
-        if(DT._elDynStyleNode) {
-            document.getElementsByTagName('head')[0].removeChild(DT._elDynStyleNode);
-            DT._elDynStyleNode = null;
-        }
-    }
-
-    YAHOO.log("DataTable instance destroyed: " + instanceName);
-},
-
-/**
- * Displays message within secondary TBODY.
- *
- * @method showTableMessage
- * @param sHTML {String} (optional) Value for innerHTMlang.
- * @param sClassName {String} (optional) Classname.
- */
-showTableMessage : function(sHTML, sClassName) {
-    var elCell = this._elMsgTd;
-    if(lang.isString(sHTML)) {
-        elCell.firstChild.innerHTML = sHTML;
-    }
-    if(lang.isString(sClassName)) {
-        elCell.className = sClassName;
-    }
-
-    this._elMsgTbody.style.display = "";
-
-    this.fireEvent("tableMsgShowEvent", {html:sHTML, className:sClassName});
-    YAHOO.log("DataTable showing message: " + sHTML, "info", this.toString());
-},
-
-/**
- * Hides secondary TBODY.
- *
- * @method hideTableMessage
- */
-hideTableMessage : function() {
-    if(this._elMsgTbody.style.display != "none") {
-        this._elMsgTbody.style.display = "none";
-        this._elMsgTbody.parentNode.style.width = "";
-        this.fireEvent("tableMsgHideEvent");
-        YAHOO.log("DataTable message hidden", "info", this.toString());
-    }
-},
-
-/**
- * Brings focus to the TBODY element. Alias to focusTbodyEl.
- *
- * @method focus
- */
-focus : function() {
-    this.focusTbodyEl();
-},
-
-/**
- * Brings focus to the THEAD element.
- *
- * @method focusTheadEl
- */
-focusTheadEl : function() {
-    this._focusEl(this._elThead);
-},
-
-/**
- * Brings focus to the TBODY element.
- *
- * @method focusTbodyEl
- */
-focusTbodyEl : function() {
-    this._focusEl(this._elTbody);
-},
-
-/**
- * Setting display:none on DataTable or any parent may impact width validations.
- * After setting display back to "", implementers should call this method to 
- * manually perform those validations.
- *
- * @method onShow
- */
-onShow : function() {
-    this.validateColumnWidths();
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// RECORDSET FUNCTIONS
-
-/**
- * Returns Record index for given TR element or page row index.
- *
- * @method getRecordIndex
- * @param row {YAHOO.widget.Record | HTMLElement | Number} Record instance, TR
- * element reference or page row index.
- * @return {Number} Record's RecordSet index, or null.
- */
-getRecordIndex : function(row) {
-    var nTrIndex;
-
-    if(!lang.isNumber(row)) {
-        // By Record
-        if(row instanceof YAHOO.widget.Record) {
-            return this._oRecordSet.getRecordIndex(row);
-        }
-        // By element reference
-        else {
-            // Find the TR element
-            var el = this.getTrEl(row);
-            if(el) {
-                nTrIndex = el.sectionRowIndex;
-            }
-        }
-    }
-    // By page row index
-    else {
-        nTrIndex = row;
-    }
-
-    if(lang.isNumber(nTrIndex)) {
-        var oPaginator = this.get("paginator");
-        if(oPaginator) {
-            return oPaginator.get('recordOffset') + nTrIndex;
-        }
-        else {
-            return nTrIndex;
-        }
-    }
-
-    YAHOO.log("Could not get Record index for row " + row, "info", this.toString());
-    return null;
-},
-
-/**
- * For the given identifier, returns the associated Record instance.
- *
- * @method getRecord
- * @param row {HTMLElement | Number | String} DOM reference to a TR element (or
- * child of a TR element), RecordSet position index, or Record ID.
- * @return {YAHOO.widget.Record} Record instance.
- */
-getRecord : function(row) {
-    var oRecord = this._oRecordSet.getRecord(row);
-
-    if(!oRecord) {
-        // Validate TR element
-        var elRow = this.getTrEl(row);
-        if(elRow) {
-            oRecord = this._oRecordSet.getRecord(this.getRecordIndex(elRow.sectionRowIndex));
-        }
-    }
-
-    if(oRecord instanceof YAHOO.widget.Record) {
-        return this._oRecordSet.getRecord(oRecord);
-    }
-    else {
-        YAHOO.log("Could not get Record for row at " + row, "info", this.toString());
-        return null;
-    }
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// COLUMN FUNCTIONS
-
-/**
- * For the given identifier, returns the associated Column instance. Note: For
- * getting Columns by Column ID string, please use the method getColumnById().
- *
- * @method getColumn
- * @param column {HTMLElement | String | Number} TH/TD element (or child of a
- * TH/TD element), a Column key, or a ColumnSet key index.
- * @return {YAHOO.widget.Column} Column instance.
- */
-getColumn : function(column) {
-    var oColumn = this._oColumnSet.getColumn(column);
-
-    if(!oColumn) {
-        // Validate TD element
-        var elCell = this.getTdEl(column);
-        if(elCell) {
-            oColumn = this._oColumnSet.getColumn(elCell.cellIndex);
-        }
-        // Validate TH element
-        else {
-            elCell = this.getThEl(column);
-            if(elCell) {
-                // Find by TH el ID
-                var allColumns = this._oColumnSet.flat;
-                for(var i=0, len=allColumns.length; i<len; i++) {
-                    if(allColumns[i].getThEl().id === elCell.id) {
-                        oColumn = allColumns[i];
-                    } 
-                }
-            }
-        }
-    }
-    if(!oColumn) {
-        YAHOO.log("Could not get Column for column at " + column, "info", this.toString());
-    }
-    return oColumn;
-},
-
-/**
- * For the given Column ID, returns the associated Column instance. Note: For
- * getting Columns by key, please use the method getColumn().
- *
- * @method getColumnById
- * @param column {String} Column ID string.
- * @return {YAHOO.widget.Column} Column instance.
- */
-getColumnById : function(column) {
-    return this._oColumnSet.getColumnById(column);
-},
-
-/**
- * For the given Column instance, returns next direction to sort.
- *
- * @method getColumnSortDir
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param oSortedBy {Object} (optional) Specify the state, or use current state. 
- * @return {String} YAHOO.widget.DataTable.CLASS_ASC or YAHOO.widget.DataTableCLASS_DESC.
- */
-getColumnSortDir : function(oColumn, oSortedBy) {
-    // Backward compatibility
-    if(oColumn.sortOptions && oColumn.sortOptions.defaultOrder) {
-        if(oColumn.sortOptions.defaultOrder == "asc") {
-            oColumn.sortOptions.defaultDir = DT.CLASS_ASC;
-        }
-        else if (oColumn.sortOptions.defaultOrder == "desc") {
-            oColumn.sortOptions.defaultDir = DT.CLASS_DESC;
-        }
-    }
-    
-    // What is the Column's default sort direction?
-    var sortDir = (oColumn.sortOptions && oColumn.sortOptions.defaultDir) ? oColumn.sortOptions.defaultDir : DT.CLASS_ASC;
-
-    // Is the Column currently sorted?
-    var bSorted = false;
-    oSortedBy = oSortedBy || this.get("sortedBy");
-    if(oSortedBy && (oSortedBy.key === oColumn.key)) {
-        bSorted = true;
-        if(oSortedBy.dir) {
-            sortDir = (oSortedBy.dir === DT.CLASS_ASC) ? DT.CLASS_DESC : DT.CLASS_ASC;
-        }
-        else {
-            sortDir = (sortDir === DT.CLASS_ASC) ? DT.CLASS_DESC : DT.CLASS_ASC;
-        }
-    }
-    return sortDir;
-},
-
-/**
- * Overridable method gives implementers a hook to show loading message before
- * sorting Column.
- *
- * @method doBeforeSortColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param sSortDir {String} YAHOO.widget.DataTable.CLASS_ASC or
- * YAHOO.widget.DataTable.CLASS_DESC.
- * @return {Boolean} Return true to continue sorting Column.
- */
-doBeforeSortColumn : function(oColumn, sSortDir) {
-    this.showTableMessage(this.get("MSG_LOADING"), DT.CLASS_LOADING);
-    return true;
-},
-
-/**
- * Sorts given Column. If "dynamicData" is true, current selections are purged before
- * a request is sent to the DataSource for data for the new state (using the
- * request returned by "generateRequest()").
- *
- * @method sortColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param sDir {String} (Optional) YAHOO.widget.DataTable.CLASS_ASC or
- * YAHOO.widget.DataTable.CLASS_DESC
- */
-sortColumn : function(oColumn, sDir) {
-    if(oColumn && (oColumn instanceof YAHOO.widget.Column)) {
-        if(!oColumn.sortable) {
-            Dom.addClass(this.getThEl(oColumn), DT.CLASS_SORTABLE);
-        }
-        
-        // Validate given direction
-        if(sDir && (sDir !== DT.CLASS_ASC) && (sDir !== DT.CLASS_DESC)) {
-            sDir = null;
-        }
-        
-        // Get the sort dir
-        var sSortDir = sDir || this.getColumnSortDir(oColumn);
-
-        // Is the Column currently sorted?
-        var oSortedBy = this.get("sortedBy") || {};
-        var bSorted = (oSortedBy.key === oColumn.key) ? true : false;
-
-        var ok = this.doBeforeSortColumn(oColumn, sSortDir);
-        if(ok) {
-            // Server-side sort
-            if(this.get("dynamicData")) {
-                // Get current state
-                var oState = this.getState();
-                
-                // Reset record offset, if paginated
-                if(oState.pagination) {
-                    oState.pagination.recordOffset = 0;
-                }
-                
-                // Update sortedBy to new values
-                oState.sortedBy = {
-                    key: oColumn.key,
-                    dir: sSortDir
-                };
-                
-                // Get the request for the new state
-                var request = this.get("generateRequest")(oState, this);
-
-                // Purge selections
-                this.unselectAllRows();
-                this.unselectAllCells();
-
-                // Send request for new data
-                var callback = {
-                    success : this.onDataReturnSetRows,
-                    failure : this.onDataReturnSetRows,
-                    argument : oState, // Pass along the new state to the callback
-                    scope : this
-                };
-                this._oDataSource.sendRequest(request, callback);            
-            }
-            // Client-side sort
-            else {
-                // Sort the Records
-                if(!bSorted || sDir) {
-                    // Get the field to sort
-                    var sField = (oColumn.sortOptions && oColumn.sortOptions.field) ? oColumn.sortOptions.field : oColumn.field;
-                    // Is there a custom sort handler function defined?
-                    var sortFnc = (oColumn.sortOptions && lang.isFunction(oColumn.sortOptions.sortFunction)) ?
-                            // Custom sort function
-                            oColumn.sortOptions.sortFunction :
-        
-                            // Default sort function
-                            function(a, b, desc) {
-                                YAHOO.util.Sort.compare(a.getData(sField),b.getData(sField), desc);
-                                var sorted = YAHOO.util.Sort.compare(a.getData(sField),b.getData(sField), desc);
-                                if(sorted === 0) {
-                                    return YAHOO.util.Sort.compare(a.getCount(),b.getCount(), desc); // Bug 1932978
-                                }
-                                else {
-                                    return sorted;
-                                }
-                            };
-        
-                    this._oRecordSet.sortRecords(sortFnc, ((sSortDir == DT.CLASS_DESC) ? true : false));
-                }
-                // Just reverse the Records
-                else {
-                    this._oRecordSet.reverseRecords();
-                }
-        
-                // Reset to first page if paginated
-                var oPaginator = this.get('paginator');
-                if (oPaginator) {
-                    // Set page silently, so as not to fire change event.
-                    oPaginator.setPage(1,true);
-                }
-        
-                // Update UI via sortedBy
-                this.render();
-                this.set("sortedBy", {key:oColumn.key, dir:sSortDir, column:oColumn}); 
-            }       
-            
-            this.fireEvent("columnSortEvent",{column:oColumn,dir:sSortDir});
-            YAHOO.log("Column \"" + oColumn.key + "\" sorted \"" + sSortDir + "\"", "info", this.toString());
-            return;
-        }
-    }
-    YAHOO.log("Could not sort Column \"" + oColumn.key + "\"", "warn", this.toString());
-},
-
-/**
- * Sets given Column to given pixel width. If new width is less than minimum
- * width, sets to minimum width. Updates oColumn.width value.
- *
- * @method setColumnWidth
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param nWidth {Number} New width in pixels. A null value auto-sizes Column,
- * subject to minWidth and maxAutoWidth validations. 
- */
-setColumnWidth : function(oColumn, nWidth) {
-    if(!(oColumn instanceof YAHOO.widget.Column)) {
-        oColumn = this.getColumn(oColumn);
-    }
-    if(oColumn) {
-        // Validate new width against minimum width
-        if(lang.isNumber(nWidth)) {
-            // This is why we must require a Number... :-|
-            nWidth = (nWidth > oColumn.minWidth) ? nWidth : oColumn.minWidth;
-
-            // Save state
-            oColumn.width = nWidth;
-            
-            // Resize the DOM elements
-            this._setColumnWidth(oColumn, nWidth+"px");
-            
-            this.fireEvent("columnSetWidthEvent",{column:oColumn,width:nWidth});
-            YAHOO.log("Set width of Column " + oColumn + " to " + nWidth + "px", "info", this.toString());
-            return;
-        }
-        // Unsets a width to auto-size
-        else if(nWidth === null) {
-            // Save state
-            oColumn.width = nWidth;
-            
-            // Resize the DOM elements
-            this._setColumnWidth(oColumn, "auto");
-            this.validateColumnWidths(oColumn);
-            this.fireEvent("columnUnsetWidthEvent",{column:oColumn});
-            YAHOO.log("Column " + oColumn + " width unset", "info", this.toString());
-            
-            return;
-        }
-    }
-    YAHOO.log("Could not set width of Column " + oColumn + " to " + nWidth + "px", "warn", this.toString());
-},
-
-/**
- * Sets liner DIV elements of given Column to given width. When value should be
- * auto-calculated to fit content overflow is set to visible, otherwise overflow
- * is set to hidden. No validations against minimum width and no updating
- * Column.width value.
- *
- * @method _setColumnWidth
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param sWidth {String} New width value.
- * @param sOverflow {String} Should be "hidden" when Column width is explicitly
- * being set to a value, but should be "visible" when Column is meant to auto-fit content.  
- * @private
- */
-_setColumnWidth : function(oColumn, sWidth, sOverflow) {
-    if(oColumn && (oColumn.getKeyIndex() !== null)) {
-        sOverflow = sOverflow || (((sWidth === '') || (sWidth === 'auto')) ? 'visible' : 'hidden');
-    
-        // Dynamic style algorithm
-        if(!DT._bDynStylesFallback) {
-            this._setColumnWidthDynStyles(oColumn, sWidth, sOverflow);
-        }
-        // Dynamic function algorithm
-        else {
-            this._setColumnWidthDynFunction(oColumn, sWidth, sOverflow);
-        }
-    }
-    else {
-        YAHOO.log("Could not set width of unknown Column " + oColumn + " to " + sWidth, "warn", this.toString());
-    }
-},
-
-/**
- * Updates width of a Column's liner DIV elements by dynamically creating a
- * STYLE node and writing and updating CSS style rules to it. If this fails during
- * runtime, the fallback method _setColumnWidthDynFunction() will be called.
- * Notes: This technique is not performant in IE6. IE7 crashes if DataTable is
- * nested within another TABLE element. For these cases, it is recommended to
- * use the method _setColumnWidthDynFunction by setting _bDynStylesFallback to TRUE.
- *
- * @method _setColumnWidthDynStyles
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param sWidth {String} New width value.
- * @private
- */
-_setColumnWidthDynStyles : function(oColumn, sWidth, sOverflow) {
-    var s = DT._elDynStyleNode,
-        rule;
-    
-    // Create a new STYLE node
-    if(!s) {
-        s = document.createElement('style');
-        s.type = 'text/css';
-        s = document.getElementsByTagName('head').item(0).appendChild(s);
-        DT._elDynStyleNode = s;
-    }
-    
-    // We have a STYLE node to update
-    if(s) {
-        // Use unique classname for this Column instance as a hook for resizing
-        var sClassname = "." + this.getId() + "-col-" + oColumn.getSanitizedKey() + " ." + DT.CLASS_LINER;
-        
-        // Hide for performance
-        if(this._elTbody) {
-            this._elTbody.style.display = 'none';
-        }
-        
-        rule = DT._oDynStyles[sClassname];
-
-        // The Column does not yet have a rule
-        if(!rule) {
-            if(s.styleSheet && s.styleSheet.addRule) {
-                s.styleSheet.addRule(sClassname,"overflow:"+sOverflow);
-                s.styleSheet.addRule(sClassname,'width:'+sWidth);
-                rule = s.styleSheet.rules[s.styleSheet.rules.length-1];
-                DT._oDynStyles[sClassname] = rule;
-            }
-            else if(s.sheet && s.sheet.insertRule) {
-                s.sheet.insertRule(sClassname+" {overflow:"+sOverflow+";width:"+sWidth+";}",s.sheet.cssRules.length);
-                rule = s.sheet.cssRules[s.sheet.cssRules.length-1];
-                DT._oDynStyles[sClassname] = rule;
-            }
-        }
-        // We have a rule to update
-        else {
-            rule.style.overflow = sOverflow;
-            rule.style.width = sWidth;
-        } 
-        
-        // Unhide
-        if(this._elTbody) {
-            this._elTbody.style.display = '';
-        }
-    }
-    
-    // That was not a success, we must call the fallback routine
-    if(!rule) {
-        DT._bDynStylesFallback = true;
-        this._setColumnWidthDynFunction(oColumn, sWidth);
-    }
-},
-
-/**
- * Updates width of a Column's liner DIV elements by dynamically creating a
- * function to update all element style properties in one pass. Note: This
- * technique is not supported in sandboxed environments that prohibit EVALs.    
- *
- * @method _setColumnWidthDynFunction
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param sWidth {String} New width value.
- * @private
- */
-_setColumnWidthDynFunction : function(oColumn, sWidth, sOverflow) {
-    // TODO: why is this here?
-    if(sWidth == 'auto') {
-        sWidth = ''; 
-    }
-    
-    // Create one function for each value of rows.length
-    var rowslen = this._elTbody ? this._elTbody.rows.length : 0;
-    
-    // Dynamically create the function
-    if (!this._aDynFunctions[rowslen]) {
-        
-        //Compile a custom function to do all the liner div width
-        //assignments at the same time.  A unique function is required
-        //for each unique number of rows in _elTbody.  This will
-        //result in a function declaration like:
-        //function (oColumn,sWidth,sOverflow) {
-        //    var colIdx = oColumn.getKeyIndex();
-        //    oColumn.getThLinerEl().style.overflow =
-        //    this._elTbody.rows[0].cells[colIdx].firstChild.style.overflow =
-        //    this._elTbody.rows[1].cells[colIdx].firstChild.style.overflow =
-        //    ... (for all row indices in this._elTbody.rows.length - 1)
-        //    this._elTbody.rows[99].cells[colIdx].firstChild.style.overflow =
-        //    sOverflow;
-        //    oColumn.getThLinerEl().style.width =
-        //    this._elTbody.rows[0].cells[colIdx].firstChild.style.width =
-        //    this._elTbody.rows[1].cells[colIdx].firstChild.style.width =
-        //    ... (for all row indices in this._elTbody.rows.length - 1)
-        //    this._elTbody.rows[99].cells[colIdx].firstChild.style.width =
-        //    sWidth;
-        //}
-        
-        var i,j,k;
-        var resizerDef = [
-            'var colIdx=oColumn.getKeyIndex();',
-            'oColumn.getThLinerEl().style.overflow='
-        ];
-        for (i=rowslen-1, j=2; i >= 0; --i) {
-            resizerDef[j++] = 'this._elTbody.rows[';
-            resizerDef[j++] = i;
-            resizerDef[j++] = '].cells[colIdx].firstChild.style.overflow=';
-        }
-        resizerDef[j] = 'sOverflow;';
-        resizerDef[j+1] = 'oColumn.getThLinerEl().style.width=';
-        for (i=rowslen-1, k=j+2; i >= 0; --i) {
-            resizerDef[k++] = 'this._elTbody.rows[';
-            resizerDef[k++] = i;
-            resizerDef[k++] = '].cells[colIdx].firstChild.style.width=';
-        }
-        resizerDef[k] = 'sWidth;';
-        this._aDynFunctions[rowslen] =
-            new Function('oColumn','sWidth','sOverflow',resizerDef.join(''));
-    }
-    
-    // Get the function to execute
-    var resizerFn = this._aDynFunctions[rowslen];
-
-    // TODO: Hide TBODY for performance in _setColumnWidthDynFunction?
-    if (resizerFn) {
-        resizerFn.call(this,oColumn,sWidth,sOverflow);
-    }
-},
-
-/**
- * For one or all Columns, when Column is not hidden, width is not set, and minWidth
- * and/or maxAutoWidth is set, validates auto-width against minWidth and maxAutoWidth.
- *
- * @method validateColumnWidths
- * @param oArg.column {YAHOO.widget.Column} (optional) One Column to validate. If null, all Columns' widths are validated.
- */
-validateColumnWidths : function(oColumn) {
-    var elColgroup = this._elColgroup;
-    var elColgroupClone = elColgroup.cloneNode(true);
-    var bNeedsValidation = false;
-    var allKeys = this._oColumnSet.keys;
-    var elThLiner;
-    // Validate just one Column's minWidth and/or maxAutoWidth
-    if(oColumn && !oColumn.hidden && !oColumn.width && (oColumn.getKeyIndex() !== null)) {
-            elThLiner = oColumn.getThLinerEl();
-            if((oColumn.minWidth > 0) && (elThLiner.offsetWidth < oColumn.minWidth)) {
-                elColgroupClone.childNodes[oColumn.getKeyIndex()].style.width = 
-                        oColumn.minWidth + 
-                        (parseInt(Dom.getStyle(elThLiner,"paddingLeft"),10)|0) +
-                        (parseInt(Dom.getStyle(elThLiner,"paddingRight"),10)|0) + "px";
-                bNeedsValidation = true;
-            }
-            else if((oColumn.maxAutoWidth > 0) && (elThLiner.offsetWidth > oColumn.maxAutoWidth)) {
-                this._setColumnWidth(oColumn, oColumn.maxAutoWidth+"px", "hidden");
-            }
-    }
-    // Validate all Columns
-    else {
-        for(var i=0, len=allKeys.length; i<len; i++) {
-            oColumn = allKeys[i];
-            if(!oColumn.hidden && !oColumn.width) {
-                elThLiner = oColumn.getThLinerEl();
-                if((oColumn.minWidth > 0) && (elThLiner.offsetWidth < oColumn.minWidth)) {
-                    elColgroupClone.childNodes[i].style.width = 
-                            oColumn.minWidth + 
-                            (parseInt(Dom.getStyle(elThLiner,"paddingLeft"),10)|0) +
-                            (parseInt(Dom.getStyle(elThLiner,"paddingRight"),10)|0) + "px";
-                    bNeedsValidation = true;
-                }
-                else if((oColumn.maxAutoWidth > 0) && (elThLiner.offsetWidth > oColumn.maxAutoWidth)) {
-                    this._setColumnWidth(oColumn, oColumn.maxAutoWidth+"px", "hidden");
-                }
-            }
-        }
-    }
-    if(bNeedsValidation) {
-        elColgroup.parentNode.replaceChild(elColgroupClone, elColgroup);
-        this._elColgroup = elColgroupClone;
-    }
-},
-
-/**
- * Clears minWidth.
- *
- * @method _clearMinWidth
- * @param oColumn {YAHOO.widget.Column} Which Column.
- * @private
- */
-_clearMinWidth : function(oColumn) {
-    if(oColumn.getKeyIndex() !== null) {
-        this._elColgroup.childNodes[oColumn.getKeyIndex()].style.width = '';
-    }
-},
-
-/**
- * Restores minWidth.
- *
- * @method _restoreMinWidth
- * @param oColumn {YAHOO.widget.Column} Which Column.
- * @private
- */
-_restoreMinWidth : function(oColumn) {
-    if(oColumn.minWidth && (oColumn.getKeyIndex() !== null)) {
-        this._elColgroup.childNodes[oColumn.getKeyIndex()].style.width = oColumn.minWidth + 'px';
-    }
-},
-
-/**
- * Hides given Column. NOTE: You cannot hide/show nested Columns. You can only
- * hide/show non-nested Columns, and top-level parent Columns (which will
- * hide/show all children Columns).
- *
- * @method hideColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- */
-hideColumn : function(oColumn) {
-    if(!(oColumn instanceof YAHOO.widget.Column)) {
-        oColumn = this.getColumn(oColumn);
-    }
-    // Only top-level Columns can get hidden due to issues in FF2 and SF3
-    if(oColumn && !oColumn.hidden && oColumn.getTreeIndex() !== null) {
-        
-        var allrows = this.getTbodyEl().rows;
-        var l = allrows.length;
-        var allDescendants = this._oColumnSet.getDescendants(oColumn);
-        
-        // Hide each nested Column
-        for(var i=0; i<allDescendants.length; i++) {
-            var thisColumn = allDescendants[i];
-            thisColumn.hidden = true;
-
-            // Style the head cell
-            Dom.addClass(thisColumn.getThEl(), DT.CLASS_HIDDEN);
-            
-            // Does this Column have body cells?
-            var thisKeyIndex = thisColumn.getKeyIndex();
-            if(thisKeyIndex !== null) {                    
-                // Clear minWidth
-                this._clearMinWidth(oColumn);
-                
-                // Style the body cells
-                for(var j=0;j<l;j++) {
-                    Dom.addClass(allrows[j].cells[thisKeyIndex],DT.CLASS_HIDDEN);
-                }
-            }
-            
-            this.fireEvent("columnHideEvent",{column:thisColumn});
-            YAHOO.log("Column \"" + oColumn.key + "\" hidden", "info", this.toString());
-        }
-      
-        this._repaintOpera();
-        this._clearTrTemplateEl();
-    }
-    else {
-        YAHOO.log("Could not hide Column \"" + lang.dump(oColumn) + "\". Only non-nested Columns can be hidden", "warn", this.toString());
-    }
-},
-
-/**
- * Shows given Column. NOTE: You cannot hide/show nested Columns. You can only
- * hide/show non-nested Columns, and top-level parent Columns (which will
- * hide/show all children Columns).
- *
- * @method showColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- */
-showColumn : function(oColumn) {
-    if(!(oColumn instanceof YAHOO.widget.Column)) {
-        oColumn = this.getColumn(oColumn);
-    }
-    // Only top-level Columns can get hidden
-    if(oColumn && oColumn.hidden && (oColumn.getTreeIndex() !== null)) {
-        var allrows = this.getTbodyEl().rows;
-        var l = allrows.length;
-        var allDescendants = this._oColumnSet.getDescendants(oColumn);
-        
-        // Show each nested Column
-        for(var i=0; i<allDescendants.length; i++) {
-            var thisColumn = allDescendants[i];
-            thisColumn.hidden = false;
-            
-            // Unstyle the head cell
-            Dom.removeClass(thisColumn.getThEl(), DT.CLASS_HIDDEN);
-
-            // Does this Column have body cells?
-            var thisKeyIndex = thisColumn.getKeyIndex();
-            if(thisKeyIndex !== null) {
-                // Restore minWidth
-                this._restoreMinWidth(oColumn);
-                
-            
-                // Unstyle the body cells
-                for(var j=0;j<l;j++) {
-                    Dom.removeClass(allrows[j].cells[thisKeyIndex],DT.CLASS_HIDDEN);
-                }
-            }
-
-            this.fireEvent("columnShowEvent",{column:thisColumn});
-            YAHOO.log("Column \"" + oColumn.key + "\" shown", "info", this.toString());
-        }
-        this._clearTrTemplateEl();
-    }
-    else {
-        YAHOO.log("Could not show Column \"" + lang.dump(oColumn) + "\". Only non-nested Columns can be shown", "warn", this.toString());
-    }
-},
-
-/**
- * Removes given Column. NOTE: You cannot remove nested Columns. You can only remove
- * non-nested Columns, and top-level parent Columns (which will remove all
- * children Columns).
- *
- * @method removeColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @return oColumn {YAHOO.widget.Column} Removed Column instance.
- */
-removeColumn : function(oColumn) {
-    // Validate Column
-    if(!(oColumn instanceof YAHOO.widget.Column)) {
-        oColumn = this.getColumn(oColumn);
-    }
-    if(oColumn) {
-        var nColTreeIndex = oColumn.getTreeIndex();
-        if(nColTreeIndex !== null) {
-            // Which key index(es)
-            var i, len,
-                aKeyIndexes = oColumn.getKeyIndex();
-            // Must be a parent Column
-            if(aKeyIndexes === null) {
-                var descKeyIndexes = [];
-                var allDescendants = this._oColumnSet.getDescendants(oColumn);
-                for(i=0, len=allDescendants.length; i<len; i++) {
-                    // Is this descendant a key Column?
-                    var thisKey = allDescendants[i].getKeyIndex();
-                    if(thisKey !== null) {
-                        descKeyIndexes[descKeyIndexes.length] = thisKey;
-                    }
-                }
-                if(descKeyIndexes.length > 0) {
-                    aKeyIndexes = descKeyIndexes;
-                }
-            }
-            // Must be a key Column
-            else {
-                aKeyIndexes = [aKeyIndexes];
-            }
-            
-            if(aKeyIndexes !== null) {
-                // Sort the indexes so we can remove from the right
-                aKeyIndexes.sort(function(a, b) {return YAHOO.util.Sort.compare(a, b);});
-                
-                // Destroy previous THEAD
-                this._destroyTheadEl();
-    
-                // Create new THEAD
-                var aOrigColumnDefs = this._oColumnSet.getDefinitions();
-                oColumn = aOrigColumnDefs.splice(nColTreeIndex,1)[0];
-                this._initColumnSet(aOrigColumnDefs);
-                this._initTheadEl();
-                
-                // Remove COL
-                for(i=aKeyIndexes.length-1; i>-1; i--) {
-                    this._removeColgroupColEl(aKeyIndexes[i]);
-                }
-                
-                // Remove TD
-                var allRows = this._elTbody.rows;
-                if(allRows.length > 0) {
-                    var loopN = this.get("renderLoopSize"),
-                        loopEnd = allRows.length;
-                    this._oChainRender.add({
-                        method: function(oArg) {
-                            if((this instanceof DT) && this._sId) {
-                                var i = oArg.nCurrentRow,
-                                    len = loopN > 0 ? Math.min(i + loopN,allRows.length) : allRows.length,
-                                    aIndexes = oArg.aIndexes,
-                                    j;
-                                for(; i < len; ++i) {
-                                    for(j = aIndexes.length-1; j>-1; j--) {
-                                        allRows[i].removeChild(allRows[i].childNodes[aIndexes[j]]);
-                                    }
-                                }
-                                oArg.nCurrentRow = i;
-                            }
-                        },
-                        iterations: (loopN > 0) ? Math.ceil(loopEnd/loopN) : 1,
-                        argument: {nCurrentRow:0, aIndexes:aKeyIndexes},
-                        scope: this,
-                        timeout: (loopN > 0) ? 0 : -1
-                    });
-                    this._runRenderChain();
-                }
-        
-                this.fireEvent("columnRemoveEvent",{column:oColumn});
-                YAHOO.log("Column \"" + oColumn.key + "\" removed", "info", this.toString());
-                return oColumn;
-            }
-        }
-    }
-    YAHOO.log("Could not remove Column \"" + oColumn.key + "\". Only non-nested Columns can be removed", "warn", this.toString());
-},
-
-/**
- * Inserts given Column at the index if given, otherwise at the end. NOTE: You
- * can only add non-nested Columns and top-level parent Columns. You cannot add
- * a nested Column to an existing parent.
- *
- * @method insertColumn
- * @param oColumn {Object | YAHOO.widget.Column} Object literal Column
- * definition or a Column instance.
- * @param index {Number} (optional) New tree index.
- * @return oColumn {YAHOO.widget.Column} Inserted Column instance. 
- */
-insertColumn : function(oColumn, index) {
-    // Validate Column
-    if(oColumn instanceof YAHOO.widget.Column) {
-        oColumn = oColumn.getDefinition();
-    }
-    else if(oColumn.constructor !== Object) {
-        YAHOO.log("Could not insert Column \"" + oColumn + "\" due to invalid argument", "warn", this.toString());
-        return;
-    }
-    
-    // Validate index or append new Column to the end of the ColumnSet
-    var oColumnSet = this._oColumnSet;
-    if(!lang.isValue(index) || !lang.isNumber(index)) {
-        index = oColumnSet.tree[0].length;
-    }
-    
-    // Destroy previous THEAD
-    this._destroyTheadEl();
-    
-    // Create new THEAD
-    var aNewColumnDefs = this._oColumnSet.getDefinitions();
-    aNewColumnDefs.splice(index, 0, oColumn);
-    this._initColumnSet(aNewColumnDefs);
-    this._initTheadEl();
-    
-    // Need to refresh the reference
-    oColumnSet = this._oColumnSet;
-    var oNewColumn = oColumnSet.tree[0][index];
-    
-    // Get key index(es) for new Column
-    var i, len,
-        descKeyIndexes = [];
-    var allDescendants = oColumnSet.getDescendants(oNewColumn);
-    for(i=0, len=allDescendants.length; i<len; i++) {
-        // Is this descendant a key Column?
-        var thisKey = allDescendants[i].getKeyIndex();
-        if(thisKey !== null) {
-            descKeyIndexes[descKeyIndexes.length] = thisKey;
-        }
-    }
-    
-    if(descKeyIndexes.length > 0) {  
-        // Sort the indexes
-        var newIndex = descKeyIndexes.sort(function(a, b) {return YAHOO.util.Sort.compare(a, b);})[0];
-        
-        // Add COL
-        for(i=descKeyIndexes.length-1; i>-1; i--) {
-            this._insertColgroupColEl(descKeyIndexes[i]);
-        }
-            
-        // Add TD
-        var allRows = this._elTbody.rows;
-        if(allRows.length > 0) {
-            var loopN = this.get("renderLoopSize"),
-                loopEnd = allRows.length;
-            
-            // Get templates for each new TD
-            var aTdTemplates = [],
-                elTdTemplate;
-            for(i=0, len=descKeyIndexes.length; i<len; i++) {
-                var thisKeyIndex = descKeyIndexes[i];
-                elTdTemplate = this._getTrTemplateEl().childNodes[i].cloneNode(true);
-                elTdTemplate = this._formatTdEl(this._oColumnSet.keys[thisKeyIndex], elTdTemplate, thisKeyIndex, (thisKeyIndex===this._oColumnSet.keys.length-1));
-                aTdTemplates[thisKeyIndex] = elTdTemplate;
-            }
-            
-            this._oChainRender.add({
-                method: function(oArg) {
-                    if((this instanceof DT) && this._sId) {
-                        var i = oArg.nCurrentRow, j,
-                            descKeyIndexes = oArg.descKeyIndexes,
-                            len = loopN > 0 ? Math.min(i + loopN,allRows.length) : allRows.length,
-                            nextSibling;
-                        for(; i < len; ++i) {
-                            nextSibling = allRows[i].childNodes[newIndex] || null;
-                            for(j=descKeyIndexes.length-1; j>-1; j--) {
-                                allRows[i].insertBefore(oArg.aTdTemplates[descKeyIndexes[j]].cloneNode(true), nextSibling);
-                            }
-                        }
-                        oArg.nCurrentRow = i;
-                    }
-                },
-                iterations: (loopN > 0) ? Math.ceil(loopEnd/loopN) : 1,
-                argument: {nCurrentRow:0,aTdTemplates:aTdTemplates,descKeyIndexes:descKeyIndexes},
-                scope: this,
-                timeout: (loopN > 0) ? 0 : -1
-            });
-            this._runRenderChain(); 
-        }
-
-        this.fireEvent("columnInsertEvent",{column:oColumn,index:index});
-        YAHOO.log("Column \"" + oColumn.key + "\" inserted into index " + index, "info", this.toString());
-        return oNewColumn;
-    }
-},
-
-/**
- * Removes given Column and inserts into given tree index. NOTE: You
- * can only reorder non-nested Columns and top-level parent Columns. You cannot
- * reorder a nested Column to an existing parent.
- *
- * @method reorderColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param index {Number} New tree index.
- * @return oColumn {YAHOO.widget.Column} Reordered Column instance. 
- */
-reorderColumn : function(oColumn, index) {
-    // Validate Column and new index
-    if(!(oColumn instanceof YAHOO.widget.Column)) {
-        oColumn = this.getColumn(oColumn);
-    }
-    if(oColumn && YAHOO.lang.isNumber(index)) {
-        var nOrigTreeIndex = oColumn.getTreeIndex();
-        if((nOrigTreeIndex !== null) && (nOrigTreeIndex !== index)) {
-            // Which key index(es)
-            var i, len,
-                aOrigKeyIndexes = oColumn.getKeyIndex(),
-                allDescendants,
-                descKeyIndexes = [],
-                thisKey;
-            // Must be a parent Column...
-            if(aOrigKeyIndexes === null) {
-                allDescendants = this._oColumnSet.getDescendants(oColumn);
-                for(i=0, len=allDescendants.length; i<len; i++) {
-                    // Is this descendant a key Column?
-                    thisKey = allDescendants[i].getKeyIndex();
-                    if(thisKey !== null) {
-                        descKeyIndexes[descKeyIndexes.length] = thisKey;
-                    }
-                }
-                if(descKeyIndexes.length > 0) {
-                    aOrigKeyIndexes = descKeyIndexes;
-                }
-            }
-            // ...or else must be a key Column
-            else {
-                aOrigKeyIndexes = [aOrigKeyIndexes];
-            }
-            
-            if(aOrigKeyIndexes !== null) {                   
-                // Sort the indexes
-                aOrigKeyIndexes.sort(function(a, b) {return YAHOO.util.Sort.compare(a, b);});
-                
-                // Destroy previous THEAD
-                this._destroyTheadEl();
-    
-                // Create new THEAD
-                var aColumnDefs = this._oColumnSet.getDefinitions();
-                var oColumnDef = aColumnDefs.splice(nOrigTreeIndex,1)[0];
-                aColumnDefs.splice(index, 0, oColumnDef);
-                this._initColumnSet(aColumnDefs);
-                this._initTheadEl();
-                
-                // Need to refresh the reference
-                var oNewColumn = this._oColumnSet.tree[0][index];
-
-                // What are new key index(es)
-                var aNewKeyIndexes = oNewColumn.getKeyIndex();
-                // Must be a parent Column
-                if(aNewKeyIndexes === null) {
-                    descKeyIndexes = [];
-                    allDescendants = this._oColumnSet.getDescendants(oNewColumn);
-                    for(i=0, len=allDescendants.length; i<len; i++) {
-                        // Is this descendant a key Column?
-                        thisKey = allDescendants[i].getKeyIndex();
-                        if(thisKey !== null) {
-                            descKeyIndexes[descKeyIndexes.length] = thisKey;
-                        }
-                    }
-                    if(descKeyIndexes.length > 0) {
-                        aNewKeyIndexes = descKeyIndexes;
-                    }
-                }
-                // Must be a key Column
-                else {
-                    aNewKeyIndexes = [aNewKeyIndexes];
-                }
-                
-                // Sort the new indexes and grab the first one for the new location
-                var newIndex = aNewKeyIndexes.sort(function(a, b) {return YAHOO.util.Sort.compare(a, b);})[0];
-
-                // Reorder COL
-                this._reorderColgroupColEl(aOrigKeyIndexes, newIndex);
-                
-                // Reorder TD
-                var allRows = this._elTbody.rows;
-                if(allRows.length > 0) {
-                    var loopN = this.get("renderLoopSize"),
-                        loopEnd = allRows.length;
-                    this._oChainRender.add({
-                        method: function(oArg) {
-                            if((this instanceof DT) && this._sId) {
-                                var i = oArg.nCurrentRow, j, tmpTds, nextSibling,
-                                    len = loopN > 0 ? Math.min(i + loopN,allRows.length) : allRows.length,
-                                    aIndexes = oArg.aIndexes, thisTr;
-                                // For each row
-                                for(; i < len; ++i) {
-                                    tmpTds = [];
-                                    thisTr = allRows[i];
-                                    
-                                    // Remove each TD
-                                    for(j=aIndexes.length-1; j>-1; j--) {
-                                        tmpTds.push(thisTr.removeChild(thisTr.childNodes[aIndexes[j]]));
-                                    }
-                                    
-                                    // Insert each TD
-                                    nextSibling = thisTr.childNodes[newIndex] || null;
-                                    for(j=tmpTds.length-1; j>-1; j--) {
-                                        thisTr.insertBefore(tmpTds[j], nextSibling);
-                                    }                                    
-                                }
-                                oArg.nCurrentRow = i;
-                            }
-                        },
-                        iterations: (loopN > 0) ? Math.ceil(loopEnd/loopN) : 1,
-                        argument: {nCurrentRow:0, aIndexes:aOrigKeyIndexes},
-                        scope: this,
-                        timeout: (loopN > 0) ? 0 : -1
-                    });
-                    this._runRenderChain();
-                }
-        
-                this.fireEvent("columnReorderEvent",{column:oNewColumn});
-                YAHOO.log("Column \"" + oNewColumn.key + "\" reordered", "info", this.toString());
-                return oNewColumn;
-            }
-        }
-    }
-    YAHOO.log("Could not reorder Column \"" + oColumn.key + "\". Only non-nested Columns can be reordered", "warn", this.toString());
-},
-
-/**
- * Selects given Column. NOTE: You cannot select/unselect nested Columns. You can only
- * select/unselect non-nested Columns, and bottom-level key Columns.
- *
- * @method selectColumn
- * @param column {HTMLElement | String | Number} DOM reference or ID string to a
- * TH/TD element (or child of a TH/TD element), a Column key, or a ColumnSet key index.
- */
-selectColumn : function(oColumn) {
-    oColumn = this.getColumn(oColumn);
-    if(oColumn && !oColumn.selected) {
-        // Only bottom-level Columns can get hidden
-        if(oColumn.getKeyIndex() !== null) {
-            oColumn.selected = true;
-            
-            // Update head cell
-            var elTh = oColumn.getThEl();
-            Dom.addClass(elTh,DT.CLASS_SELECTED);
-
-            // Update body cells
-            var allRows = this.getTbodyEl().rows;
-            var oChainRender = this._oChainRender;
-            oChainRender.add({
-                method: function(oArg) {
-                    if((this instanceof DT) && this._sId && allRows[oArg.rowIndex] && allRows[oArg.rowIndex].cells[oArg.cellIndex]) {
-                        Dom.addClass(allRows[oArg.rowIndex].cells[oArg.cellIndex],DT.CLASS_SELECTED);                    
-                    }
-                    oArg.rowIndex++;
-                },
-                scope: this,
-                iterations: allRows.length,
-                argument: {rowIndex:0,cellIndex:oColumn.getKeyIndex()}
-            });
-
-            this._clearTrTemplateEl();
-            
-            this._elTbody.style.display = "none";
-            this._runRenderChain();
-            this._elTbody.style.display = "";      
-            
-            this.fireEvent("columnSelectEvent",{column:oColumn});
-            YAHOO.log("Column \"" + oColumn.key + "\" selected", "info", this.toString());
-        }
-        else {
-            YAHOO.log("Could not select Column \"" + oColumn.key + "\". Only non-nested Columns can be selected", "warn", this.toString());
-        }
-    }
-},
-
-/**
- * Unselects given Column. NOTE: You cannot select/unselect nested Columns. You can only
- * select/unselect non-nested Columns, and bottom-level key Columns.
- *
- * @method unselectColumn
- * @param column {HTMLElement | String | Number} DOM reference or ID string to a
- * TH/TD element (or child of a TH/TD element), a Column key, or a ColumnSet key index.
- */
-unselectColumn : function(oColumn) {
-    oColumn = this.getColumn(oColumn);
-    if(oColumn && oColumn.selected) {
-        // Only bottom-level Columns can get hidden
-        if(oColumn.getKeyIndex() !== null) {
-            oColumn.selected = false;
-            
-            // Update head cell
-            var elTh = oColumn.getThEl();
-            Dom.removeClass(elTh,DT.CLASS_SELECTED);
-
-            // Update body cells
-            var allRows = this.getTbodyEl().rows;
-            var oChainRender = this._oChainRender;
-            oChainRender.add({
-                method: function(oArg) {
-                    if((this instanceof DT) && this._sId && allRows[oArg.rowIndex] && allRows[oArg.rowIndex].cells[oArg.cellIndex]) {
-                        Dom.removeClass(allRows[oArg.rowIndex].cells[oArg.cellIndex],DT.CLASS_SELECTED); 
-                    }                   
-                    oArg.rowIndex++;
-                },
-                scope: this,
-                iterations:allRows.length,
-                argument: {rowIndex:0,cellIndex:oColumn.getKeyIndex()}
-            });
-            
-            this._clearTrTemplateEl();
-
-            this._elTbody.style.display = "none";
-            this._runRenderChain();
-            this._elTbody.style.display = "";      
-            
-            this.fireEvent("columnUnselectEvent",{column:oColumn});
-            YAHOO.log("Column \"" + oColumn.key + "\" unselected", "info", this.toString());
-        }
-        else {
-            YAHOO.log("Could not unselect Column \"" + oColumn.key + "\". Only non-nested Columns can be unselected", "warn", this.toString());
-        }
-    }
-},
-
-/**
- * Returns an array selected Column instances.
- *
- * @method getSelectedColumns
- * @return {YAHOO.widget.Column[]} Array of Column instances.
- */
-getSelectedColumns : function(oColumn) {
-    var selectedColumns = [];
-    var aKeys = this._oColumnSet.keys;
-    for(var i=0,len=aKeys.length; i<len; i++) {
-        if(aKeys[i].selected) {
-            selectedColumns[selectedColumns.length] = aKeys[i];
-        }
-    }
-    return selectedColumns;
-},
-
-/**
- * Assigns the class YAHOO.widget.DataTable.CLASS_HIGHLIGHTED to cells of the given Column.
- * NOTE: You cannot highlight/unhighlight nested Columns. You can only
- * highlight/unhighlight non-nested Columns, and bottom-level key Columns.
- *
- * @method highlightColumn
- * @param column {HTMLElement | String | Number} DOM reference or ID string to a
- * TH/TD element (or child of a TH/TD element), a Column key, or a ColumnSet key index.
- */
-highlightColumn : function(column) {
-    var oColumn = this.getColumn(column);
-    // Only bottom-level Columns can get highlighted
-    if(oColumn && (oColumn.getKeyIndex() !== null)) {            
-        // Update head cell
-        var elTh = oColumn.getThEl();
-        Dom.addClass(elTh,DT.CLASS_HIGHLIGHTED);
-
-        // Update body cells
-        var allRows = this.getTbodyEl().rows;
-        var oChainRender = this._oChainRender;
-        oChainRender.add({
-            method: function(oArg) {
-                if((this instanceof DT) && this._sId && allRows[oArg.rowIndex] && allRows[oArg.rowIndex].cells[oArg.cellIndex]) {
-                    Dom.addClass(allRows[oArg.rowIndex].cells[oArg.cellIndex],DT.CLASS_HIGHLIGHTED);   
-                }                 
-                oArg.rowIndex++;
-            },
-            scope: this,
-            iterations:allRows.length,
-            argument: {rowIndex:0,cellIndex:oColumn.getKeyIndex()},
-            timeout: -1
-        });
-        this._elTbody.style.display = "none";
-        this._runRenderChain();
-        this._elTbody.style.display = "";      
-            
-        this.fireEvent("columnHighlightEvent",{column:oColumn});
-        YAHOO.log("Column \"" + oColumn.key + "\" highlighed", "info", this.toString());
-    }
-    else {
-        YAHOO.log("Could not highlight Column \"" + oColumn.key + "\". Only non-nested Columns can be highlighted", "warn", this.toString());
-    }
-},
-
-/**
- * Removes the class YAHOO.widget.DataTable.CLASS_HIGHLIGHTED to cells of the given Column.
- * NOTE: You cannot highlight/unhighlight nested Columns. You can only
- * highlight/unhighlight non-nested Columns, and bottom-level key Columns.
- *
- * @method unhighlightColumn
- * @param column {HTMLElement | String | Number} DOM reference or ID string to a
- * TH/TD element (or child of a TH/TD element), a Column key, or a ColumnSet key index.
- */
-unhighlightColumn : function(column) {
-    var oColumn = this.getColumn(column);
-    // Only bottom-level Columns can get highlighted
-    if(oColumn && (oColumn.getKeyIndex() !== null)) {
-        // Update head cell
-        var elTh = oColumn.getThEl();
-        Dom.removeClass(elTh,DT.CLASS_HIGHLIGHTED);
-
-        // Update body cells
-        var allRows = this.getTbodyEl().rows;
-        var oChainRender = this._oChainRender;
-        oChainRender.add({
-            method: function(oArg) {
-                if((this instanceof DT) && this._sId && allRows[oArg.rowIndex] && allRows[oArg.rowIndex].cells[oArg.cellIndex]) {
-                    Dom.removeClass(allRows[oArg.rowIndex].cells[oArg.cellIndex],DT.CLASS_HIGHLIGHTED);
-                }                 
-                oArg.rowIndex++;
-            },
-            scope: this,
-            iterations:allRows.length,
-            argument: {rowIndex:0,cellIndex:oColumn.getKeyIndex()},
-            timeout: -1
-        });
-        this._elTbody.style.display = "none";
-        this._runRenderChain();
-        this._elTbody.style.display = "";     
-            
-        this.fireEvent("columnUnhighlightEvent",{column:oColumn});
-        YAHOO.log("Column \"" + oColumn.key + "\" unhighlighted", "info", this.toString());
-    }
-    else {
-        YAHOO.log("Could not unhighlight Column \"" + oColumn.key + "\". Only non-nested Columns can be unhighlighted", "warn", this.toString());
-    }
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// ROW FUNCTIONS
-
-/**
- * Adds one new Record of data into the RecordSet at the index if given,
- * otherwise at the end. If the new Record is in page view, the
- * corresponding DOM elements are also updated.
- *
- * @method addRow
- * @param oData {Object} Object literal of data for the row.
- * @param index {Number} (optional) RecordSet position index at which to add data.
- */
-addRow : function(oData, index) {
-    if(oData && lang.isObject(oData)) {
-        var oRecord = this._oRecordSet.addRecord(oData, index);
-        if(oRecord) {
-            var recIndex;
-            var oPaginator = this.get('paginator');
-
-            // Paginated
-            if (oPaginator) {     
-                // Update the paginator's totalRecords
-                var totalRecords = oPaginator.get('totalRecords');
-                if (totalRecords !== widget.Paginator.VALUE_UNLIMITED) {
-                    oPaginator.set('totalRecords',totalRecords + 1);
-                }
-
-                recIndex = this.getRecordIndex(oRecord);
-                var endRecIndex = (oPaginator.getPageRecords())[1];
-
-                // New record affects the view
-                if (recIndex <= endRecIndex) {
-                    // Defer UI updates to the render method
-                    this.render();
-                }
-                
-                this.fireEvent("rowAddEvent", {record:oRecord});
-                YAHOO.log("Added a row for Record " + YAHOO.lang.dump(oRecord) + " at RecordSet index " + recIndex, "info", this.toString()); 
-                return;
-            }
-            // Not paginated
-            else {
-                recIndex = this.getTrIndex(oRecord);
-                if(lang.isNumber(recIndex)) {
-                    // Add the TR element
-                    this._oChainRender.add({
-                        method: function(oArg) {
-                            if((this instanceof DT) && this._sId) {
-                                var oRecord = oArg.record;
-                                var recIndex = oArg.recIndex;
-                                var elNewTr = this._addTrEl(oRecord);
-                                if(elNewTr) {
-                                    var elNext = (this._elTbody.rows[recIndex]) ? this._elTbody.rows[recIndex] : null;
-                                    this._elTbody.insertBefore(elNewTr, elNext);
-
-                                    // Set FIRST/LAST
-                                    if(recIndex === 0) {
-                                        this._setFirstRow();
-                                    }
-                                    if(elNext === null) {
-                                        this._setLastRow();
-                                    }
-                                    // Set EVEN/ODD
-                                    this._setRowStripes();                           
-                                    
-                                    this.hideTableMessage();
-            
-                                    this.fireEvent("rowAddEvent", {record:oRecord});
-                                    YAHOO.log("Added a row for Record " + YAHOO.lang.dump(oRecord) + " at RecordSet index " + recIndex, "info", this.toString());
-                                }
-                            }
-                        },
-                        argument: {record: oRecord, recIndex: recIndex},
-                        scope: this,
-                        timeout: (this.get("renderLoopSize") > 0) ? 0 : -1
-                    });
-                    this._runRenderChain();
-                    return;
-                }
-            }            
-        }
-    }
-    YAHOO.log("Could not add row with " + lang.dump(oData), "error", this.toString());
-},
-
-/**
- * Convenience method to add multiple rows.
- *
- * @method addRows
- * @param aData {Object[]} Array of object literal data for the rows.
- * @param index {Number} (optional) RecordSet position index at which to add data.
- */
-addRows : function(aData, index) {
-    if(lang.isArray(aData)) {
-        var aRecords = this._oRecordSet.addRecords(aData, index);
-        if(aRecords) {
-            var recIndex = this.getRecordIndex(aRecords[0]);
-            
-            // Paginated
-            var oPaginator = this.get('paginator');
-            if (oPaginator) {
-                // Update the paginator's totalRecords
-                var totalRecords = oPaginator.get('totalRecords');
-                if (totalRecords !== widget.Paginator.VALUE_UNLIMITED) {
-                    oPaginator.set('totalRecords',totalRecords + aRecords.length);
-                }
-    
-                var endRecIndex = (oPaginator.getPageRecords())[1];
-
-                // At least one of the new records affects the view
-                if (recIndex <= endRecIndex) {
-                    this.render();
-                }
-                
-                this.fireEvent("rowsAddEvent", {records:aRecords});
-                YAHOO.log("Added " + aRecords.length + 
-                        " rows at index " + recIndex +
-                        " with data " + lang.dump(aData), "info", this.toString());
-                return;
-            }
-            // Not paginated
-            else {
-                // Add the TR elements
-                var loopN = this.get("renderLoopSize");
-                var loopEnd = recIndex + aData.length;
-                var nRowsNeeded = (loopEnd - recIndex); // how many needed
-                this._oChainRender.add({
-                    method: function(oArg) {
-                        if((this instanceof DT) && this._sId) {
-                            var aRecords = oArg.aRecords,
-                                i = oArg.nCurrentRow,
-                                j = oArg.nCurrentRecord,
-                                len = loopN > 0 ? Math.min(i + loopN,loopEnd) : loopEnd,
-                                df = document.createDocumentFragment(),
-                                tr;
-                            for(; i < len; ++i,++j) {
-                                df.appendChild(this._addTrEl(aRecords[j]));
-                            }
-                            var elNext = (this._elTbody.rows[index]) ? this._elTbody.rows[index] : null;
-                            this._elTbody.insertBefore(df, elNext);
-                            oArg.nCurrentRow = i;
-                            oArg.nCurrentRecord = j;
-                        }
-                    },
-                    iterations: (loopN > 0) ? Math.ceil(loopEnd/loopN) : 1,
-                    argument: {nCurrentRow:recIndex,nCurrentRecord:0,aRecords:aRecords},
-                    scope: this,
-                    timeout: (loopN > 0) ? 0 : -1
-                });
-                this._oChainRender.add({
-                    method: function(oArg) {
-                        var recIndex = oArg.recIndex;
-                        // Set FIRST/LAST
-                        if(recIndex === 0) {
-                            this._setFirstRow();
-                        }
-                        if(recIndex === this._elTbody.rows.length-1) {
-                            this._setLastRow();
-                        }
-                        // Set EVEN/ODD
-                        this._setRowStripes();                           
-
-                        this.fireEvent("rowsAddEvent", {records:aRecords});
-                        YAHOO.log("Added " + aRecords.length + 
-                                " rows at index " + recIndex +
-                                " with data " + lang.dump(aData), "info", this.toString());
-                    },
-                    argument: {recIndex: recIndex},
-                    scope: this,
-                    timeout: -1 // Needs to run immediately after the DOM insertions above
-                });
-                this._runRenderChain();
-                this.hideTableMessage();                
-                return;
-            }            
-        }
-    }
-    YAHOO.log("Could not add rows with " + lang.dump(aData));    
-},
-
-/**
- * For the given row, updates the associated Record with the given data. If the
- * row is on current page, the corresponding DOM elements are also updated.
- *
- * @method updateRow
- * @param row {YAHOO.widget.Record | Number | HTMLElement | String}
- * Which row to update: By Record instance, by Record's RecordSet
- * position index, by HTMLElement reference to the TR element, or by ID string
- * of the TR element.
- * @param oData {Object} Object literal of data for the row.
- */
-updateRow : function(row, oData) {
-    var oldRecord, oldData, updatedRecord, elRow;
-
-    // Get the Record directly
-    if((row instanceof YAHOO.widget.Record) || (lang.isNumber(row))) {
-        // Get the Record directly
-        oldRecord = this._oRecordSet.getRecord(row);
-
-        // Is this row on current page?
-        elRow = this.getTrEl(oldRecord);
-    }
-    // Get the Record by TR element
-    else {
-        elRow = this.getTrEl(row);
-        if(elRow) {
-            oldRecord = this.getRecord(elRow);
-        }
-    }
-
-    // Update the Record
-    if(oldRecord) {
-        // Copy data from the Record for the event that gets fired later
-        var oRecordData = oldRecord.getData();
-        oldData = YAHOO.widget.DataTable._cloneObject(oRecordData);
-
-        updatedRecord = this._oRecordSet.updateRecord(oldRecord, oData);
-    }
-    else {
-        YAHOO.log("Could not update row " + row + " with the data : " +
-                lang.dump(oData), "error", this.toString());
-        return;
-
-    }
-
-    // Update the TR only if row is on current page
-    if(elRow) {
-        this._oChainRender.add({
-            method: function() {
-                if((this instanceof DT) && this._sId) {
-                    this._updateTrEl(elRow, updatedRecord);
-                    this.fireEvent("rowUpdateEvent", {record:updatedRecord, oldData:oldData});
-                    YAHOO.log("DataTable row updated: Record ID = " + updatedRecord.getId() +
-                            ", Record index = " + this.getRecordIndex(updatedRecord) +
-                            ", page row index = " + this.getTrIndex(updatedRecord), "info", this.toString());
-                }
-            },
-            scope: this,
-            timeout: (this.get("renderLoopSize") > 0) ? 0 : -1
-        });
-        this._runRenderChain();
-    }
-    else {
-        this.fireEvent("rowUpdateEvent", {record:updatedRecord, oldData:oldData});
-        YAHOO.log("DataTable row updated: Record ID = " + updatedRecord.getId() +
-                ", Record index = " + this.getRecordIndex(updatedRecord) +
-                ", page row index = " + this.getTrIndex(updatedRecord), "info", this.toString());   
-    }
-},
-
-/**
- * Deletes the given row's Record from the RecordSet. If the row is on current page,
- * the corresponding DOM elements are also deleted.
- *
- * @method deleteRow
- * @param row {HTMLElement | String | Number} DOM element reference or ID string
- * to DataTable page element or RecordSet index.
- */
-deleteRow : function(row) {
-    var nRecordIndex = this.getRecordIndex(row);
-    if(lang.isNumber(nRecordIndex)) {
-        var oRecord = this.getRecord(nRecordIndex);
-        if(oRecord) {
-            var nTrIndex = this.getTrIndex(nRecordIndex);
-            
-            // Remove from selection tracker if there
-            var sRecordId = oRecord.getId();
-            var tracker = this._aSelections || [];
-            for(var j=tracker.length-1; j>-1; j--) {
-                if((lang.isNumber(tracker[j]) && (tracker[j] === sRecordId)) ||
-                        (lang.isObject(tracker[j]) && (tracker[j].recordId === sRecordId))) {
-                    tracker.splice(j,1);
-                }
-            }
-    
-            // Delete Record from RecordSet
-            var oData = this._oRecordSet.deleteRecord(nRecordIndex);
-    
-            // Update the UI
-            if(oData) {
-                // If paginated and the deleted row was on this or a prior page, just
-                // re-render
-                var oPaginator = this.get('paginator');
-                if (oPaginator) {
-                    // Update the paginator's totalRecords
-                    var totalRecords = oPaginator.get('totalRecords'),
-                        // must capture before the totalRecords change because
-                        // Paginator shifts to previous page automatically
-                        rng = oPaginator.getPageRecords();
-
-                    if (totalRecords !== widget.Paginator.VALUE_UNLIMITED) {
-                        oPaginator.set('totalRecords',totalRecords - 1);
-                    }
-    
-                    // The deleted record was on this or a prior page, re-render
-                    if (!rng || nRecordIndex <= rng[1]) {
-                        this.render();
-                    }
-                    return;
-                }
-                // Not paginated
-                else {
-                    if(lang.isNumber(nTrIndex)) {
-                        this._oChainRender.add({
-                            method: function() {
-                                if((this instanceof DT) && this._sId) {
-                                    var isLast = (nTrIndex == this.getLastTrEl().sectionRowIndex);
-                                    this._deleteTrEl(nTrIndex);
-                    
-                                    // Post-delete tasks
-                                    if(this._elTbody.rows.length > 0) {
-                                        // Set FIRST/LAST
-                                        if(nTrIndex === 0) {
-                                            this._setFirstRow();
-                                        }
-                                        if(isLast) {
-                                            this._setLastRow();
-                                        }
-                                        // Set EVEN/ODD
-                                        if(nTrIndex != this._elTbody.rows.length) {
-                                            this._setRowStripes(nTrIndex);
-                                        }                                
-                                    }
-                    
-                                    this.fireEvent("rowDeleteEvent", {recordIndex:nRecordIndex,
-                                    oldData:oData, trElIndex:nTrIndex});
-                                    YAHOO.log("Deleted row with data " + YAHOO.lang.dump(oData) +
-                                    " at RecordSet index " + nRecordIndex + " and page row index " + nTrIndex, "info", this.toString());     
-                                }
-                            },
-                            scope: this,
-                            timeout: (this.get("renderLoopSize") > 0) ? 0 : -1
-                        });
-                        this._runRenderChain();
-                        return;
-                    }
-                }
-            }
-        }
-    }
-    YAHOO.log("Could not delete row: " + row, "warn", this.toString());
-    return null;
-},
-
-/**
- * Convenience method to delete multiple rows.
- *
- * @method deleteRows
- * @param row {HTMLElement | String | Number} DOM element reference or ID string
- * to DataTable page element or RecordSet index.
- * @param count {Number} (optional) How many rows to delete. A negative value
- * will delete towards the beginning.
- */
-deleteRows : function(row, count) {
-    var nRecordIndex = this.getRecordIndex(row);
-    if(lang.isNumber(nRecordIndex)) {
-        var oRecord = this.getRecord(nRecordIndex);
-        if(oRecord) {
-            var nTrIndex = this.getTrIndex(nRecordIndex);
-            
-            // Remove from selection tracker if there
-            var sRecordId = oRecord.getId();
-            var tracker = this._aSelections || [];
-            for(var j=tracker.length-1; j>-1; j--) {
-                if((lang.isNumber(tracker[j]) && (tracker[j] === sRecordId)) ||
-                        (lang.isObject(tracker[j]) && (tracker[j].recordId === sRecordId))) {
-                    tracker.splice(j,1);
-                }
-            }
-    
-            // Delete Record from RecordSet
-            var highIndex = nRecordIndex;
-            var lowIndex = nRecordIndex;
-        
-            // Validate count and account for negative value
-            if(count && lang.isNumber(count)) {
-                highIndex = (count > 0) ? nRecordIndex + count -1 : nRecordIndex;
-                lowIndex = (count > 0) ? nRecordIndex : nRecordIndex + count + 1;
-                count = (count > 0) ? count : count*-1;
-            }
-            else {
-                count = 1;
-            }
-            
-            var aData = this._oRecordSet.deleteRecords(lowIndex, count);
-    
-            // Update the UI
-            if(aData) {
-                var oPaginator = this.get('paginator');
-                // If paginated and the deleted row was on this or a prior page, just
-                // re-render
-                if (oPaginator) {
-                    // Update the paginator's totalRecords
-                    var totalRecords = oPaginator.get('totalRecords'),
-                        // must capture before the totalRecords change because
-                        // Paginator shifts to previous page automatically
-                        rng = oPaginator.getPageRecords();
-
-                    if (totalRecords !== widget.Paginator.VALUE_UNLIMITED) {
-                        oPaginator.set('totalRecords',totalRecords - aData.length);
-                    }
-    
-                    // The records were on this or a prior page, re-render
-                    if (!rng || lowIndex <= rng[1]) {
-                        this.render();
-                    }
-                    return;
-                }
-                // Not paginated
-                else {
-                    if(lang.isNumber(nTrIndex)) {
-                        // Delete the TR elements starting with highest index
-                        var loopN = this.get("renderLoopSize");
-                        var loopEnd = lowIndex;
-                        var nRowsNeeded = count; // how many needed
-                        this._oChainRender.add({
-                            method: function(oArg) {
-                                if((this instanceof DT) && this._sId) {
-                                    var i = oArg.nCurrentRow,
-                                        len = (loopN > 0) ? (Math.max(i - loopN,loopEnd)-1) : loopEnd-1;
-                                    for(; i>len; --i) {
-                                        this._deleteTrEl(i);
-                                    }
-                                    oArg.nCurrentRow = i;
-                                }
-                            },
-                            iterations: (loopN > 0) ? Math.ceil(count/loopN) : 1,
-                            argument: {nCurrentRow:highIndex},
-                            scope: this,
-                            timeout: (loopN > 0) ? 0 : -1
-                        });
-                        this._oChainRender.add({
-                            method: function() {    
-                                // Post-delete tasks
-                                if(this._elTbody.rows.length > 0) {
-                                    this._setFirstRow();
-                                    this._setLastRow();
-                                    this._setRowStripes();
-                                }
-                                
-                                this.fireEvent("rowsDeleteEvent", {recordIndex:count,
-                                oldData:aData, count:nTrIndex});
-                                YAHOO.log("DataTable row deleted: Record ID = " + sRecordId +
-                                    ", Record index = " + nRecordIndex +
-                                    ", page row index = " + nTrIndex, "info", this.toString());
-                            },
-                            scope: this,
-                            timeout: -1 // Needs to run immediately after the DOM deletions above
-                        });
-                        this._runRenderChain();
-                        return;
-                    }
-                }
-            }
-        }
-    }
-    YAHOO.log("Could not delete " + count + " rows at row " + row, "warn", this.toString());
-    return null;
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// CELL FUNCTIONS
-
-/**
- * Outputs markup into the given TD based on given Record.
- *
- * @method formatCell
- * @param elCell {HTMLElement} The liner DIV element within the TD.
- * @param oRecord {YAHOO.widget.Record} (Optional) Record instance.
- * @param oColumn {YAHOO.widget.Column} (Optional) Column instance.
- */
-formatCell : function(elCell, oRecord, oColumn) {
-    if(!oRecord) {
-        oRecord = this.getRecord(elCell);
-    }
-    if(!oColumn) {
-        oColumn = this.getColumn(elCell.parentNode.cellIndex);
-    }
-
-    if(oRecord && oColumn) {
-        var sField = oColumn.field;
-        var oData = oRecord.getData(sField);
-
-        var fnFormatter = typeof oColumn.formatter === 'function' ?
-                          oColumn.formatter :
-                          DT.Formatter[oColumn.formatter+''] ||
-                          DT.Formatter.defaultFormatter;
-
-        // Apply special formatter
-        if(fnFormatter) {
-            fnFormatter.call(this, elCell, oRecord, oColumn, oData);
-        }
-        else {
-            elCell.innerHTML = oData;
-        }
-
-        this.fireEvent("cellFormatEvent", {record:oRecord, column:oColumn, key:oColumn.key, el:elCell});
-    }
-    else {
-        YAHOO.log("Could not format cell " + elCell, "error", this.toString());
-    }
-},
-
-/**
- * For the given row and column, updates the Record with the given data. If the
- * cell is on current page, the corresponding DOM elements are also updated.
- *
- * @method updateCell
- * @param oRecord {YAHOO.widget.Record} Record instance.
- * @param oColumn {YAHOO.widget.Column | String | Number} A Column key, or a ColumnSet key index.
- * @param oData {Object} Object literal of data for the cell.
- */
-updateCell : function(oRecord, oColumn, oData) {    
-    // Validate Column and Record
-    oColumn = (oColumn instanceof YAHOO.widget.Column) ? oColumn : this.getColumn(oColumn);
-    if(oColumn && oColumn.getKey() && (oRecord instanceof YAHOO.widget.Record)) {
-        // Copy data from the Record for the event that gets fired later
-        var oldData = YAHOO.widget.DataTable._cloneObject(oRecord.getData());
-
-        // Update Record with new data
-        this._oRecordSet.updateRecordValue(oRecord, oColumn.getKey(), oData);
-    
-        // Update the TD only if row is on current page
-        var elTd = this.getTdEl({record: oRecord, column: oColumn});
-        if(elTd) {
-            this._oChainRender.add({
-                method: function() {
-                    if((this instanceof DT) && this._sId) {
-                        this.formatCell(elTd.firstChild);
-                        this.fireEvent("cellUpdateEvent", {record:oRecord, column: oColumn, oldData:oldData});
-                        YAHOO.log("DataTable cell updated: Record ID = " + oRecord.getId() +
-                                ", Record index = " + this.getRecordIndex(oRecord) +
-                                ", page row index = " + this.getTrIndex(oRecord) +
-                                ", Column key = " + oColumn.getKey(), "info", this.toString());
-                    }
-                },
-                scope: this,
-                timeout: (this.get("renderLoopSize") > 0) ? 0 : -1
-            });
-            this._runRenderChain();
-        }
-        else {
-            this.fireEvent("cellUpdateEvent", {record:oRecord, column: oColumn, oldData:oldData});
-            YAHOO.log("DataTable cell updated: Record ID = " + oRecord.getId() +
-                    ", Record index = " + this.getRecordIndex(oRecord) +
-                    ", page row index = " + this.getTrIndex(oRecord) +
-                    ", Column key = " + oColumn.getKey(), "info", this.toString());   
-        }
-    }
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// PAGINATION
-/**
- * Method executed during set() operation for the "paginator" attribute.
- * Adds and/or severs event listeners between DataTable and Paginator
- *
- * @method _updatePaginator
- * @param newPag {Paginator} Paginator instance (or null) for DataTable to use
- * @private
- */
-_updatePaginator : function (newPag) {
-    var oldPag = this.get('paginator');
-    if (oldPag && newPag !== oldPag) {
-        oldPag.unsubscribe('changeRequest', this.onPaginatorChangeRequest, this, true);
-    }
-    if (newPag) {
-        newPag.subscribe('changeRequest', this.onPaginatorChangeRequest, this, true);
-    }
-},
-
-/**
- * Update the UI infrastructure in response to a "paginator" attribute change.
- *
- * @method _handlePaginatorChange
- * @param e {Object} Change event object containing keys 'type','newValue',
- *                   and 'prevValue'
- * @private
- */
-_handlePaginatorChange : function (e) {
-    if (e.prevValue === e.newValue) { return; }
-
-    var newPag     = e.newValue,
-        oldPag     = e.prevValue,
-        containers = this._defaultPaginatorContainers();
-
-    if (oldPag) {
-        if (oldPag.getContainerNodes()[0] == containers[0]) {
-            oldPag.set('containers',[]);
-        }
-        oldPag.destroy();
-
-        // Convenience: share the default containers if possible.
-        // Otherwise, remove the default containers from the DOM.
-        if (containers[0]) {
-            if (newPag && !newPag.getContainerNodes().length) {
-                newPag.set('containers',containers);
-            } else {
-                // No new Paginator to use existing containers, OR new
-                // Paginator has configured containers.
-                for (var i = containers.length - 1; i >= 0; --i) {
-                    if (containers[i]) {
-                        containers[i].parentNode.removeChild(containers[i]);
-                    }
-                }
-            }
-        }
-    }
-
-    if (!this._bInit) {
-        this.render();
-
-    }
-
-    if (newPag) {
-        this.renderPaginator();
-    }
-
-},
-
-/**
- * Returns the default containers used for Paginators.  If create param is
- * passed, the containers will be created and added to the DataTable container.
- *
- * @method _defaultPaginatorContainers
- * @param create {boolean} Create the default containers if not found
- * @private
- */
-_defaultPaginatorContainers : function (create) {
-    var above_id = this._sId + '-paginator0',
-        below_id = this._sId + '-paginator1',
-        above    = Dom.get(above_id),
-        below    = Dom.get(below_id);
-
-    if (create && (!above || !below)) {
-        // One above and one below the table
-        if (!above) {
-            above    = document.createElement('div');
-            above.id = above_id;
-            Dom.addClass(above, DT.CLASS_PAGINATOR);
-
-            this._elContainer.insertBefore(above,this._elContainer.firstChild);
-        }
-
-        if (!below) {
-            below    = document.createElement('div');
-            below.id = below_id;
-            Dom.addClass(below, DT.CLASS_PAGINATOR);
-
-            this._elContainer.appendChild(below);
-        }
-    }
-
-    return [above,below];
-},
-
-/**
- * Renders the Paginator to the DataTable UI
- *
- * @method renderPaginator
- */
-renderPaginator : function () {
-    var pag = this.get("paginator");
-    if (!pag) { return; }
-
-    // Add the containers if the Paginator is not configured with containers
-    if (!pag.getContainerNodes().length) {
-        pag.set('containers',this._defaultPaginatorContainers(true));
-    }
-
-    pag.render();
-},
-
-/**
- * Overridable method gives implementers a hook to show loading message before
- * changing Paginator value.
- *
- * @method doBeforePaginatorChange
- * @param oPaginatorState {Object} An object literal describing the proposed pagination state.
- * @return {Boolean} Return true to continue changing Paginator value.
- */
-doBeforePaginatorChange : function(oPaginatorState) {
-    this.showTableMessage(this.get("MSG_LOADING"), DT.CLASS_LOADING);
-    return true;
-},
-
-/**
- * Responds to new Pagination states. By default, updates the UI to reflect the
- * new state. If "dynamicData" is true, current selections are purged before
- * a request is sent to the DataSource for data for the new state (using the
- * request returned by "generateRequest()").
- *  
- * @method onPaginatorChangeRequest
- * @param oPaginatorState {Object} An object literal describing the proposed pagination state.
- */
-onPaginatorChangeRequest : function (oPaginatorState) {
-    var ok = this.doBeforePaginatorChange(oPaginatorState);
-    if(ok) {
-        // Server-side pagination
-        if(this.get("dynamicData")) {
-            // Get the current state
-            var oState = this.getState();
-            
-            // Update pagination values
-            oState.pagination = oPaginatorState;
-    
-            // Get the request for the new state
-            var request = this.get("generateRequest")(oState, this);
-            
-            // Purge selections
-            this.unselectAllRows();
-            this.unselectAllCells();
-            
-            // Get the new data from the server
-            var callback = {
-                success : this.onDataReturnSetRows,
-                failure : this.onDataReturnSetRows,
-                argument : oState, // Pass along the new state to the callback
-                scope : this
-            };
-            this._oDataSource.sendRequest(request, callback);
-        }
-        // Client-side pagination
-        else {
-            // Set the core pagination values silently (the second param)
-            // to avoid looping back through the changeRequest mechanism
-            oPaginatorState.paginator.setStartIndex(oPaginatorState.recordOffset,true);
-            oPaginatorState.paginator.setRowsPerPage(oPaginatorState.rowsPerPage,true);
-    
-            // Update the UI
-            this.render();
-        }
-    }
-    else {
-        YAHOO.log("Could not change Paginator value \"" + oPaginatorState + "\"", "warn", this.toString());
-    }
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// SELECTION/HIGHLIGHTING
-
-/*
- * Reference to last highlighted cell element
- *
- * @property _elLastHighlightedTd
- * @type HTMLElement
- * @private
- */
-_elLastHighlightedTd : null,
-
-/*
- * ID string of last highlighted row element
- *
- * @property _sLastHighlightedTrElId
- * @type String
- * @private
- */
-//_sLastHighlightedTrElId : null,
-
-/**
- * Array to track row selections (by sRecordId) and/or cell selections
- * (by {recordId:sRecordId, columnKey:sColumnKey})
- *
- * @property _aSelections
- * @type Object[]
- * @private
- */
-_aSelections : null,
-
-/**
- * Record instance of the row selection anchor.
- *
- * @property _oAnchorRecord
- * @type YAHOO.widget.Record
- * @private
- */
-_oAnchorRecord : null,
-
-/**
- * Object literal representing cell selection anchor:
- * {recordId:sRecordId, columnKey:sColumnKey}.
- *
- * @property _oAnchorCell
- * @type Object
- * @private
- */
-_oAnchorCell : null,
-
-/**
- * Convenience method to remove the class YAHOO.widget.DataTable.CLASS_SELECTED
- * from all TR elements on the page.
- *
- * @method _unselectAllTrEls
- * @private
- */
-_unselectAllTrEls : function() {
-    var selectedRows = Dom.getElementsByClassName(DT.CLASS_SELECTED,"tr",this._elTbody);
-    Dom.removeClass(selectedRows, DT.CLASS_SELECTED);
-},
-
-/**
- * Returns object literal of values that represent the selection trigger. Used
- * to determine selection behavior resulting from a key event.
- *
- * @method _getSelectionTrigger
- * @private
- */
-_getSelectionTrigger : function() {
-    var sMode = this.get("selectionMode");
-    var oTrigger = {};
-    var oTriggerCell, oTriggerRecord, nTriggerRecordIndex, elTriggerRow, nTriggerTrIndex;
-
-    // Cell mode
-    if((sMode == "cellblock") || (sMode == "cellrange") || (sMode == "singlecell")) {
-        oTriggerCell = this.getLastSelectedCell();
-        // No selected cells found
-        if(!oTriggerCell) {
-            return null;
-        }
-        else {
-            oTriggerRecord = this.getRecord(oTriggerCell.recordId);
-            nTriggerRecordIndex = this.getRecordIndex(oTriggerRecord);
-            elTriggerRow = this.getTrEl(oTriggerRecord);
-            nTriggerTrIndex = this.getTrIndex(elTriggerRow);
-
-            // Selected cell not found on this page
-            if(nTriggerTrIndex === null) {
-                return null;
-            }
-            else {
-                oTrigger.record = oTriggerRecord;
-                oTrigger.recordIndex = nTriggerRecordIndex;
-                oTrigger.el = this.getTdEl(oTriggerCell);
-                oTrigger.trIndex = nTriggerTrIndex;
-                oTrigger.column = this.getColumn(oTriggerCell.columnKey);
-                oTrigger.colKeyIndex = oTrigger.column.getKeyIndex();
-                oTrigger.cell = oTriggerCell;
-                return oTrigger;
-            }
-        }
-    }
-    // Row mode
-    else {
-        oTriggerRecord = this.getLastSelectedRecord();
-        // No selected rows found
-        if(!oTriggerRecord) {
-                return null;
-        }
-        else {
-            // Selected row found, but is it on current page?
-            oTriggerRecord = this.getRecord(oTriggerRecord);
-            nTriggerRecordIndex = this.getRecordIndex(oTriggerRecord);
-            elTriggerRow = this.getTrEl(oTriggerRecord);
-            nTriggerTrIndex = this.getTrIndex(elTriggerRow);
-
-            // Selected row not found on this page
-            if(nTriggerTrIndex === null) {
-                return null;
-            }
-            else {
-                oTrigger.record = oTriggerRecord;
-                oTrigger.recordIndex = nTriggerRecordIndex;
-                oTrigger.el = elTriggerRow;
-                oTrigger.trIndex = nTriggerTrIndex;
-                return oTrigger;
-            }
-        }
-    }
-},
-
-/**
- * Returns object literal of values that represent the selection anchor. Used
- * to determine selection behavior resulting from a user event.
- *
- * @method _getSelectionAnchor
- * @param oTrigger {Object} (Optional) Object literal of selection trigger values
- * (for key events).
- * @private
- */
-_getSelectionAnchor : function(oTrigger) {
-    var sMode = this.get("selectionMode");
-    var oAnchor = {};
-    var oAnchorRecord, nAnchorRecordIndex, nAnchorTrIndex;
-
-    // Cell mode
-    if((sMode == "cellblock") || (sMode == "cellrange") || (sMode == "singlecell")) {
-        // Validate anchor cell
-        var oAnchorCell = this._oAnchorCell;
-        if(!oAnchorCell) {
-            if(oTrigger) {
-                oAnchorCell = this._oAnchorCell = oTrigger.cell;
-            }
-            else {
-                return null;
-            }
-        }
-        oAnchorRecord = this._oAnchorCell.record;
-        nAnchorRecordIndex = this._oRecordSet.getRecordIndex(oAnchorRecord);
-        nAnchorTrIndex = this.getTrIndex(oAnchorRecord);
-        // If anchor cell is not on this page...
-        if(nAnchorTrIndex === null) {
-            // ...set TR index equal to top TR
-            if(nAnchorRecordIndex < this.getRecordIndex(this.getFirstTrEl())) {
-                nAnchorTrIndex = 0;
-            }
-            // ...set TR index equal to bottom TR
-            else {
-                nAnchorTrIndex = this.getRecordIndex(this.getLastTrEl());
-            }
-        }
-
-        oAnchor.record = oAnchorRecord;
-        oAnchor.recordIndex = nAnchorRecordIndex;
-        oAnchor.trIndex = nAnchorTrIndex;
-        oAnchor.column = this._oAnchorCell.column;
-        oAnchor.colKeyIndex = oAnchor.column.getKeyIndex();
-        oAnchor.cell = oAnchorCell;
-        return oAnchor;
-    }
-    // Row mode
-    else {
-        oAnchorRecord = this._oAnchorRecord;
-        if(!oAnchorRecord) {
-            if(oTrigger) {
-                oAnchorRecord = this._oAnchorRecord = oTrigger.record;
-            }
-            else {
-                return null;
-            }
-        }
-
-        nAnchorRecordIndex = this.getRecordIndex(oAnchorRecord);
-        nAnchorTrIndex = this.getTrIndex(oAnchorRecord);
-        // If anchor row is not on this page...
-        if(nAnchorTrIndex === null) {
-            // ...set TR index equal to top TR
-            if(nAnchorRecordIndex < this.getRecordIndex(this.getFirstTrEl())) {
-                nAnchorTrIndex = 0;
-            }
-            // ...set TR index equal to bottom TR
-            else {
-                nAnchorTrIndex = this.getRecordIndex(this.getLastTrEl());
-            }
-        }
-
-        oAnchor.record = oAnchorRecord;
-        oAnchor.recordIndex = nAnchorRecordIndex;
-        oAnchor.trIndex = nAnchorTrIndex;
-        return oAnchor;
-    }
-},
-
-/**
- * Determines selection behavior resulting from a mouse event when selection mode
- * is set to "standard".
- *
- * @method _handleStandardSelectionByMouse
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- * @private
- */
-_handleStandardSelectionByMouse : function(oArgs) {
-    var elTarget = oArgs.target;
-
-    // Validate target row
-    var elTargetRow = this.getTrEl(elTarget);
-    if(elTargetRow) {
-        var e = oArgs.event;
-        var bSHIFT = e.shiftKey;
-        var bCTRL = e.ctrlKey || ((navigator.userAgent.toLowerCase().indexOf("mac") != -1) && e.metaKey);
-
-        var oTargetRecord = this.getRecord(elTargetRow);
-        var nTargetRecordIndex = this._oRecordSet.getRecordIndex(oTargetRecord);
-
-        var oAnchor = this._getSelectionAnchor();
-
-        var i;
-
-        // Both SHIFT and CTRL
-        if(bSHIFT && bCTRL) {
-            // Validate anchor
-            if(oAnchor) {
-                if(this.isSelected(oAnchor.record)) {
-                    // Select all rows between anchor row and target row, including target row
-                    if(oAnchor.recordIndex < nTargetRecordIndex) {
-                        for(i=oAnchor.recordIndex+1; i<=nTargetRecordIndex; i++) {
-                            if(!this.isSelected(i)) {
-                                this.selectRow(i);
-                            }
-                        }
-                    }
-                    // Select all rows between target row and anchor row, including target row
-                    else {
-                        for(i=oAnchor.recordIndex-1; i>=nTargetRecordIndex; i--) {
-                            if(!this.isSelected(i)) {
-                                this.selectRow(i);
-                            }
-                        }
-                    }
-                }
-                else {
-                    // Unselect all rows between anchor row and target row
-                    if(oAnchor.recordIndex < nTargetRecordIndex) {
-                        for(i=oAnchor.recordIndex+1; i<=nTargetRecordIndex-1; i++) {
-                            if(this.isSelected(i)) {
-                                this.unselectRow(i);
-                            }
-                        }
-                    }
-                    // Unselect all rows between target row and anchor row
-                    else {
-                        for(i=nTargetRecordIndex+1; i<=oAnchor.recordIndex-1; i++) {
-                            if(this.isSelected(i)) {
-                                this.unselectRow(i);
-                            }
-                        }
-                    }
-                    // Select the target row
-                    this.selectRow(oTargetRecord);
-                }
-            }
-            // Invalid anchor
-            else {
-                // Set anchor
-                this._oAnchorRecord = oTargetRecord;
-
-                // Toggle selection of target
-                if(this.isSelected(oTargetRecord)) {
-                    this.unselectRow(oTargetRecord);
-                }
-                else {
-                    this.selectRow(oTargetRecord);
-                }
-            }
-        }
-         // Only SHIFT
-        else if(bSHIFT) {
-            this.unselectAllRows();
-
-            // Validate anchor
-            if(oAnchor) {
-                // Select all rows between anchor row and target row,
-                // including the anchor row and target row
-                if(oAnchor.recordIndex < nTargetRecordIndex) {
-                    for(i=oAnchor.recordIndex; i<=nTargetRecordIndex; i++) {
-                        this.selectRow(i);
-                    }
-                }
-                // Select all rows between target row and anchor row,
-                // including the target row and anchor row
-                else {
-                    for(i=oAnchor.recordIndex; i>=nTargetRecordIndex; i--) {
-                        this.selectRow(i);
-                    }
-                }
-            }
-            // Invalid anchor
-            else {
-                // Set anchor
-                this._oAnchorRecord = oTargetRecord;
-
-                // Select target row only
-                this.selectRow(oTargetRecord);
-            }
-        }
-        // Only CTRL
-        else if(bCTRL) {
-            // Set anchor
-            this._oAnchorRecord = oTargetRecord;
-
-            // Toggle selection of target
-            if(this.isSelected(oTargetRecord)) {
-                this.unselectRow(oTargetRecord);
-            }
-            else {
-                this.selectRow(oTargetRecord);
-            }
-        }
-        // Neither SHIFT nor CTRL
-        else {
-            this._handleSingleSelectionByMouse(oArgs);
-            return;
-        }
-    }
-},
-
-/**
- * Determines selection behavior resulting from a key event when selection mode
- * is set to "standard".
- *
- * @method _handleStandardSelectionByKey
- * @param e {HTMLEvent} Event object.
- * @private
- */
-_handleStandardSelectionByKey : function(e) {
-    var nKey = Ev.getCharCode(e);
-
-    if((nKey == 38) || (nKey == 40)) {
-        var bSHIFT = e.shiftKey;
-
-        // Validate trigger
-        var oTrigger = this._getSelectionTrigger();
-        // Arrow selection only works if last selected row is on current page
-        if(!oTrigger) {
-            return null;
-        }
-
-        Ev.stopEvent(e);
-
-        // Validate anchor
-        var oAnchor = this._getSelectionAnchor(oTrigger);
-
-        // Determine which direction we're going to
-        if(bSHIFT) {
-            // Selecting down away from anchor row
-            if((nKey == 40) && (oAnchor.recordIndex <= oTrigger.trIndex)) {
-                this.selectRow(this.getNextTrEl(oTrigger.el));
-            }
-            // Selecting up away from anchor row
-            else if((nKey == 38) && (oAnchor.recordIndex >= oTrigger.trIndex)) {
-                this.selectRow(this.getPreviousTrEl(oTrigger.el));
-            }
-            // Unselect trigger
-            else {
-                this.unselectRow(oTrigger.el);
-            }
-        }
-        else {
-            this._handleSingleSelectionByKey(e);
-        }
-    }
-},
-
-/**
- * Determines selection behavior resulting from a mouse event when selection mode
- * is set to "single".
- *
- * @method _handleSingleSelectionByMouse
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- * @private
- */
-_handleSingleSelectionByMouse : function(oArgs) {
-    var elTarget = oArgs.target;
-
-    // Validate target row
-    var elTargetRow = this.getTrEl(elTarget);
-    if(elTargetRow) {
-        var oTargetRecord = this.getRecord(elTargetRow);
-
-        // Set anchor
-        this._oAnchorRecord = oTargetRecord;
-
-        // Select only target
-        this.unselectAllRows();
-        this.selectRow(oTargetRecord);
-    }
-},
-
-/**
- * Determines selection behavior resulting from a key event when selection mode
- * is set to "single".
- *
- * @method _handleSingleSelectionByKey
- * @param e {HTMLEvent} Event object.
- * @private
- */
-_handleSingleSelectionByKey : function(e) {
-    var nKey = Ev.getCharCode(e);
-
-    if((nKey == 38) || (nKey == 40)) {
-        // Validate trigger
-        var oTrigger = this._getSelectionTrigger();
-        // Arrow selection only works if last selected row is on current page
-        if(!oTrigger) {
-            return null;
-        }
-
-        Ev.stopEvent(e);
-
-        // Determine the new row to select
-        var elNew;
-        if(nKey == 38) { // arrow up
-            elNew = this.getPreviousTrEl(oTrigger.el);
-
-            // Validate new row
-            if(elNew === null) {
-                //TODO: wrap around to last tr on current page
-                //elNew = this.getLastTrEl();
-
-                //TODO: wrap back to last tr of previous page
-
-                // Top row selection is sticky
-                elNew = this.getFirstTrEl();
-            }
-        }
-        else if(nKey == 40) { // arrow down
-            elNew = this.getNextTrEl(oTrigger.el);
-
-            // Validate new row
-            if(elNew === null) {
-                //TODO: wrap around to first tr on current page
-                //elNew = this.getFirstTrEl();
-
-                //TODO: wrap forward to first tr of previous page
-
-                // Bottom row selection is sticky
-                elNew = this.getLastTrEl();
-            }
-        }
-
-        // Unselect all rows
-        this.unselectAllRows();
-
-        // Select the new row
-        this.selectRow(elNew);
-
-        // Set new anchor
-        this._oAnchorRecord = this.getRecord(elNew);
-    }
-},
-
-/**
- * Determines selection behavior resulting from a mouse event when selection mode
- * is set to "cellblock".
- *
- * @method _handleCellBlockSelectionByMouse
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- * @private
- */
-_handleCellBlockSelectionByMouse : function(oArgs) {
-    var elTarget = oArgs.target;
-
-    // Validate target cell
-    var elTargetCell = this.getTdEl(elTarget);
-    if(elTargetCell) {
-        var e = oArgs.event;
-        var bSHIFT = e.shiftKey;
-        var bCTRL = e.ctrlKey || ((navigator.userAgent.toLowerCase().indexOf("mac") != -1) && e.metaKey);
-
-        var elTargetRow = this.getTrEl(elTargetCell);
-        var nTargetTrIndex = this.getTrIndex(elTargetRow);
-        var oTargetColumn = this.getColumn(elTargetCell);
-        var nTargetColKeyIndex = oTargetColumn.getKeyIndex();
-        var oTargetRecord = this.getRecord(elTargetRow);
-        var nTargetRecordIndex = this._oRecordSet.getRecordIndex(oTargetRecord);
-        var oTargetCell = {record:oTargetRecord, column:oTargetColumn};
-
-        var oAnchor = this._getSelectionAnchor();
-
-        var allRows = this.getTbodyEl().rows;
-        var startIndex, endIndex, currentRow, i, j;
-
-        // Both SHIFT and CTRL
-        if(bSHIFT && bCTRL) {
-
-            // Validate anchor
-            if(oAnchor) {
-                // Anchor is selected
-                if(this.isSelected(oAnchor.cell)) {
-                    // All cells are on the same row
-                    if(oAnchor.recordIndex === nTargetRecordIndex) {
-                        // Select all cells between anchor cell and target cell, including target cell
-                        if(oAnchor.colKeyIndex < nTargetColKeyIndex) {
-                            for(i=oAnchor.colKeyIndex+1; i<=nTargetColKeyIndex; i++) {
-                                this.selectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                        // Select all cells between target cell and anchor cell, including target cell
-                        else if(nTargetColKeyIndex < oAnchor.colKeyIndex) {
-                            for(i=nTargetColKeyIndex; i<oAnchor.colKeyIndex; i++) {
-                                this.selectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                    }
-                    // Anchor row is above target row
-                    else if(oAnchor.recordIndex < nTargetRecordIndex) {
-                        startIndex = Math.min(oAnchor.colKeyIndex, nTargetColKeyIndex);
-                        endIndex = Math.max(oAnchor.colKeyIndex, nTargetColKeyIndex);
-
-                        // Select all cells from startIndex to endIndex on rows between anchor row and target row
-                        for(i=oAnchor.trIndex; i<=nTargetTrIndex; i++) {
-                            for(j=startIndex; j<=endIndex; j++) {
-                                this.selectCell(allRows[i].cells[j]);
-                            }
-                        }
-                    }
-                    // Anchor row is below target row
-                    else {
-                        startIndex = Math.min(oAnchor.trIndex, nTargetColKeyIndex);
-                        endIndex = Math.max(oAnchor.trIndex, nTargetColKeyIndex);
-
-                        // Select all cells from startIndex to endIndex on rows between target row and anchor row
-                        for(i=oAnchor.trIndex; i>=nTargetTrIndex; i--) {
-                            for(j=endIndex; j>=startIndex; j--) {
-                                this.selectCell(allRows[i].cells[j]);
-                            }
-                        }
-                    }
-                }
-                // Anchor cell is unselected
-                else {
-                    // All cells are on the same row
-                    if(oAnchor.recordIndex === nTargetRecordIndex) {
-                        // Unselect all cells between anchor cell and target cell
-                        if(oAnchor.colKeyIndex < nTargetColKeyIndex) {
-                            for(i=oAnchor.colKeyIndex+1; i<nTargetColKeyIndex; i++) {
-                                this.unselectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                        // Select all cells between target cell and anchor cell
-                        else if(nTargetColKeyIndex < oAnchor.colKeyIndex) {
-                            for(i=nTargetColKeyIndex+1; i<oAnchor.colKeyIndex; i++) {
-                                this.unselectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                    }
-                    // Anchor row is above target row
-                    if(oAnchor.recordIndex < nTargetRecordIndex) {
-                        // Unselect all cells from anchor cell to target cell
-                        for(i=oAnchor.trIndex; i<=nTargetTrIndex; i++) {
-                            currentRow = allRows[i];
-                            for(j=0; j<currentRow.cells.length; j++) {
-                                // This is the anchor row, only unselect cells after the anchor cell
-                                if(currentRow.sectionRowIndex === oAnchor.trIndex) {
-                                    if(j>oAnchor.colKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // This is the target row, only unelect cells before the target cell
-                                else if(currentRow.sectionRowIndex === nTargetTrIndex) {
-                                    if(j<nTargetColKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // Unselect all cells on this row
-                                else {
-                                    this.unselectCell(currentRow.cells[j]);
-                                }
-                            }
-                        }
-                    }
-                    // Anchor row is below target row
-                    else {
-                        // Unselect all cells from target cell to anchor cell
-                        for(i=nTargetTrIndex; i<=oAnchor.trIndex; i++) {
-                            currentRow = allRows[i];
-                            for(j=0; j<currentRow.cells.length; j++) {
-                                // This is the target row, only unselect cells after the target cell
-                                if(currentRow.sectionRowIndex == nTargetTrIndex) {
-                                    if(j>nTargetColKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // This is the anchor row, only unselect cells before the anchor cell
-                                else if(currentRow.sectionRowIndex == oAnchor.trIndex) {
-                                    if(j<oAnchor.colKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // Unselect all cells on this row
-                                else {
-                                    this.unselectCell(currentRow.cells[j]);
-                                }
-                            }
-                        }
-                    }
-
-                    // Select the target cell
-                    this.selectCell(elTargetCell);
-                }
-            }
-            // Invalid anchor
-            else {
-                // Set anchor
-                this._oAnchorCell = oTargetCell;
-
-                // Toggle selection of target
-                if(this.isSelected(oTargetCell)) {
-                    this.unselectCell(oTargetCell);
-                }
-                else {
-                    this.selectCell(oTargetCell);
-                }
-            }
-
-        }
-         // Only SHIFT
-        else if(bSHIFT) {
-            this.unselectAllCells();
-
-            // Validate anchor
-            if(oAnchor) {
-                // All cells are on the same row
-                if(oAnchor.recordIndex === nTargetRecordIndex) {
-                    // Select all cells between anchor cell and target cell,
-                    // including the anchor cell and target cell
-                    if(oAnchor.colKeyIndex < nTargetColKeyIndex) {
-                        for(i=oAnchor.colKeyIndex; i<=nTargetColKeyIndex; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-                    }
-                    // Select all cells between target cell and anchor cell
-                    // including the target cell and anchor cell
-                    else if(nTargetColKeyIndex < oAnchor.colKeyIndex) {
-                        for(i=nTargetColKeyIndex; i<=oAnchor.colKeyIndex; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-                    }
-                }
-                // Anchor row is above target row
-                else if(oAnchor.recordIndex < nTargetRecordIndex) {
-                    // Select the cellblock from anchor cell to target cell
-                    // including the anchor cell and the target cell
-                    startIndex = Math.min(oAnchor.colKeyIndex, nTargetColKeyIndex);
-                    endIndex = Math.max(oAnchor.colKeyIndex, nTargetColKeyIndex);
-
-                    for(i=oAnchor.trIndex; i<=nTargetTrIndex; i++) {
-                        for(j=startIndex; j<=endIndex; j++) {
-                            this.selectCell(allRows[i].cells[j]);
-                        }
-                    }
-                }
-                // Anchor row is below target row
-                else {
-                    // Select the cellblock from target cell to anchor cell
-                    // including the target cell and the anchor cell
-                    startIndex = Math.min(oAnchor.colKeyIndex, nTargetColKeyIndex);
-                    endIndex = Math.max(oAnchor.colKeyIndex, nTargetColKeyIndex);
-
-                    for(i=nTargetTrIndex; i<=oAnchor.trIndex; i++) {
-                        for(j=startIndex; j<=endIndex; j++) {
-                            this.selectCell(allRows[i].cells[j]);
-                        }
-                    }
-                }
-            }
-            // Invalid anchor
-            else {
-                // Set anchor
-                this._oAnchorCell = oTargetCell;
-
-                // Select target only
-                this.selectCell(oTargetCell);
-            }
-        }
-        // Only CTRL
-        else if(bCTRL) {
-
-            // Set anchor
-            this._oAnchorCell = oTargetCell;
-
-            // Toggle selection of target
-            if(this.isSelected(oTargetCell)) {
-                this.unselectCell(oTargetCell);
-            }
-            else {
-                this.selectCell(oTargetCell);
-            }
-
-        }
-        // Neither SHIFT nor CTRL
-        else {
-            this._handleSingleCellSelectionByMouse(oArgs);
-        }
-    }
-},
-
-/**
- * Determines selection behavior resulting from a key event when selection mode
- * is set to "cellblock".
- *
- * @method _handleCellBlockSelectionByKey
- * @param e {HTMLEvent} Event object.
- * @private
- */
-_handleCellBlockSelectionByKey : function(e) {
-    var nKey = Ev.getCharCode(e);
-    var bSHIFT = e.shiftKey;
-    if((nKey == 9) || !bSHIFT) {
-        this._handleSingleCellSelectionByKey(e);
-        return;
-    }
-
-    if((nKey > 36) && (nKey < 41)) {
-        // Validate trigger
-        var oTrigger = this._getSelectionTrigger();
-        // Arrow selection only works if last selected row is on current page
-        if(!oTrigger) {
-            return null;
-        }
-
-        Ev.stopEvent(e);
-
-        // Validate anchor
-        var oAnchor = this._getSelectionAnchor(oTrigger);
-
-        var i, startIndex, endIndex, elNew, elNewRow;
-        var allRows = this.getTbodyEl().rows;
-        var elThisRow = oTrigger.el.parentNode;
-
-        // Determine which direction we're going to
-
-        if(nKey == 40) { // arrow down
-            // Selecting away from anchor cell
-            if(oAnchor.recordIndex <= oTrigger.recordIndex) {
-                // Select the horiz block on the next row...
-                // ...making sure there is room below the trigger row
-                elNewRow = this.getNextTrEl(oTrigger.el);
-                if(elNewRow) {
-                    startIndex = oAnchor.colKeyIndex;
-                    endIndex = oTrigger.colKeyIndex;
-                    // ...going left
-                    if(startIndex > endIndex) {
-                        for(i=startIndex; i>=endIndex; i--) {
-                            elNew = elNewRow.cells[i];
-                            this.selectCell(elNew);
-                        }
-                    }
-                    // ... going right
-                    else {
-                        for(i=startIndex; i<=endIndex; i++) {
-                            elNew = elNewRow.cells[i];
-                            this.selectCell(elNew);
-                        }
-                    }
-                }
-            }
-            // Unselecting towards anchor cell
-            else {
-                startIndex = Math.min(oAnchor.colKeyIndex, oTrigger.colKeyIndex);
-                endIndex = Math.max(oAnchor.colKeyIndex, oTrigger.colKeyIndex);
-                // Unselect the horiz block on this row towards the next row
-                for(i=startIndex; i<=endIndex; i++) {
-                    this.unselectCell(elThisRow.cells[i]);
-                }
-            }
-        }
-        // Arrow up
-        else if(nKey == 38) {
-            // Selecting away from anchor cell
-            if(oAnchor.recordIndex >= oTrigger.recordIndex) {
-                // Select the horiz block on the previous row...
-                // ...making sure there is room
-                elNewRow = this.getPreviousTrEl(oTrigger.el);
-                if(elNewRow) {
-                    // Select in order from anchor to trigger...
-                    startIndex = oAnchor.colKeyIndex;
-                    endIndex = oTrigger.colKeyIndex;
-                    // ...going left
-                    if(startIndex > endIndex) {
-                        for(i=startIndex; i>=endIndex; i--) {
-                            elNew = elNewRow.cells[i];
-                            this.selectCell(elNew);
-                        }
-                    }
-                    // ... going right
-                    else {
-                        for(i=startIndex; i<=endIndex; i++) {
-                            elNew = elNewRow.cells[i];
-                            this.selectCell(elNew);
-                        }
-                    }
-                }
-            }
-            // Unselecting towards anchor cell
-            else {
-                startIndex = Math.min(oAnchor.colKeyIndex, oTrigger.colKeyIndex);
-                endIndex = Math.max(oAnchor.colKeyIndex, oTrigger.colKeyIndex);
-                // Unselect the horiz block on this row towards the previous row
-                for(i=startIndex; i<=endIndex; i++) {
-                    this.unselectCell(elThisRow.cells[i]);
-                }
-            }
-        }
-        // Arrow right
-        else if(nKey == 39) {
-            // Selecting away from anchor cell
-            if(oAnchor.colKeyIndex <= oTrigger.colKeyIndex) {
-                // Select the next vert block to the right...
-                // ...making sure there is room
-                if(oTrigger.colKeyIndex < elThisRow.cells.length-1) {
-                    // Select in order from anchor to trigger...
-                    startIndex = oAnchor.trIndex;
-                    endIndex = oTrigger.trIndex;
-                    // ...going up
-                    if(startIndex > endIndex) {
-                        for(i=startIndex; i>=endIndex; i--) {
-                            elNew = allRows[i].cells[oTrigger.colKeyIndex+1];
-                            this.selectCell(elNew);
-                        }
-                    }
-                    // ... going down
-                    else {
-                        for(i=startIndex; i<=endIndex; i++) {
-                            elNew = allRows[i].cells[oTrigger.colKeyIndex+1];
-                            this.selectCell(elNew);
-                        }
-                    }
-                }
-            }
-            // Unselecting towards anchor cell
-            else {
-                // Unselect the vert block on this column towards the right
-                startIndex = Math.min(oAnchor.trIndex, oTrigger.trIndex);
-                endIndex = Math.max(oAnchor.trIndex, oTrigger.trIndex);
-                for(i=startIndex; i<=endIndex; i++) {
-                    this.unselectCell(allRows[i].cells[oTrigger.colKeyIndex]);
-                }
-            }
-        }
-        // Arrow left
-        else if(nKey == 37) {
-            // Selecting away from anchor cell
-            if(oAnchor.colKeyIndex >= oTrigger.colKeyIndex) {
-                //Select the previous vert block to the left
-                if(oTrigger.colKeyIndex > 0) {
-                    // Select in order from anchor to trigger...
-                    startIndex = oAnchor.trIndex;
-                    endIndex = oTrigger.trIndex;
-                    // ...going up
-                    if(startIndex > endIndex) {
-                        for(i=startIndex; i>=endIndex; i--) {
-                            elNew = allRows[i].cells[oTrigger.colKeyIndex-1];
-                            this.selectCell(elNew);
-                        }
-                    }
-                    // ... going down
-                    else {
-                        for(i=startIndex; i<=endIndex; i++) {
-                            elNew = allRows[i].cells[oTrigger.colKeyIndex-1];
-                            this.selectCell(elNew);
-                        }
-                    }
-                }
-            }
-            // Unselecting towards anchor cell
-            else {
-                // Unselect the vert block on this column towards the left
-                startIndex = Math.min(oAnchor.trIndex, oTrigger.trIndex);
-                endIndex = Math.max(oAnchor.trIndex, oTrigger.trIndex);
-                for(i=startIndex; i<=endIndex; i++) {
-                    this.unselectCell(allRows[i].cells[oTrigger.colKeyIndex]);
-                }
-            }
-        }
-    }
-},
-
-/**
- * Determines selection behavior resulting from a mouse event when selection mode
- * is set to "cellrange".
- *
- * @method _handleCellRangeSelectionByMouse
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- * @private
- */
-_handleCellRangeSelectionByMouse : function(oArgs) {
-    var elTarget = oArgs.target;
-
-    // Validate target cell
-    var elTargetCell = this.getTdEl(elTarget);
-    if(elTargetCell) {
-        var e = oArgs.event;
-        var bSHIFT = e.shiftKey;
-        var bCTRL = e.ctrlKey || ((navigator.userAgent.toLowerCase().indexOf("mac") != -1) && e.metaKey);
-
-        var elTargetRow = this.getTrEl(elTargetCell);
-        var nTargetTrIndex = this.getTrIndex(elTargetRow);
-        var oTargetColumn = this.getColumn(elTargetCell);
-        var nTargetColKeyIndex = oTargetColumn.getKeyIndex();
-        var oTargetRecord = this.getRecord(elTargetRow);
-        var nTargetRecordIndex = this._oRecordSet.getRecordIndex(oTargetRecord);
-        var oTargetCell = {record:oTargetRecord, column:oTargetColumn};
-
-        var oAnchor = this._getSelectionAnchor();
-
-        var allRows = this.getTbodyEl().rows;
-        var currentRow, i, j;
-
-        // Both SHIFT and CTRL
-        if(bSHIFT && bCTRL) {
-
-            // Validate anchor
-            if(oAnchor) {
-                // Anchor is selected
-                if(this.isSelected(oAnchor.cell)) {
-                    // All cells are on the same row
-                    if(oAnchor.recordIndex === nTargetRecordIndex) {
-                        // Select all cells between anchor cell and target cell, including target cell
-                        if(oAnchor.colKeyIndex < nTargetColKeyIndex) {
-                            for(i=oAnchor.colKeyIndex+1; i<=nTargetColKeyIndex; i++) {
-                                this.selectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                        // Select all cells between target cell and anchor cell, including target cell
-                        else if(nTargetColKeyIndex < oAnchor.colKeyIndex) {
-                            for(i=nTargetColKeyIndex; i<oAnchor.colKeyIndex; i++) {
-                                this.selectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                    }
-                    // Anchor row is above target row
-                    else if(oAnchor.recordIndex < nTargetRecordIndex) {
-                        // Select all cells on anchor row from anchor cell to the end of the row
-                        for(i=oAnchor.colKeyIndex+1; i<elTargetRow.cells.length; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-
-                        // Select all cells on all rows between anchor row and target row
-                        for(i=oAnchor.trIndex+1; i<nTargetTrIndex; i++) {
-                            for(j=0; j<allRows[i].cells.length; j++){
-                                this.selectCell(allRows[i].cells[j]);
-                            }
-                        }
-
-                        // Select all cells on target row from first cell to the target cell
-                        for(i=0; i<=nTargetColKeyIndex; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-                    }
-                    // Anchor row is below target row
-                    else {
-                        // Select all cells on target row from target cell to the end of the row
-                        for(i=nTargetColKeyIndex; i<elTargetRow.cells.length; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-
-                        // Select all cells on all rows between target row and anchor row
-                        for(i=nTargetTrIndex+1; i<oAnchor.trIndex; i++) {
-                            for(j=0; j<allRows[i].cells.length; j++){
-                                this.selectCell(allRows[i].cells[j]);
-                            }
-                        }
-
-                        // Select all cells on anchor row from first cell to the anchor cell
-                        for(i=0; i<oAnchor.colKeyIndex; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-                    }
-                }
-                // Anchor cell is unselected
-                else {
-                    // All cells are on the same row
-                    if(oAnchor.recordIndex === nTargetRecordIndex) {
-                        // Unselect all cells between anchor cell and target cell
-                        if(oAnchor.colKeyIndex < nTargetColKeyIndex) {
-                            for(i=oAnchor.colKeyIndex+1; i<nTargetColKeyIndex; i++) {
-                                this.unselectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                        // Select all cells between target cell and anchor cell
-                        else if(nTargetColKeyIndex < oAnchor.colKeyIndex) {
-                            for(i=nTargetColKeyIndex+1; i<oAnchor.colKeyIndex; i++) {
-                                this.unselectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                    }
-                    // Anchor row is above target row
-                    if(oAnchor.recordIndex < nTargetRecordIndex) {
-                        // Unselect all cells from anchor cell to target cell
-                        for(i=oAnchor.trIndex; i<=nTargetTrIndex; i++) {
-                            currentRow = allRows[i];
-                            for(j=0; j<currentRow.cells.length; j++) {
-                                // This is the anchor row, only unselect cells after the anchor cell
-                                if(currentRow.sectionRowIndex === oAnchor.trIndex) {
-                                    if(j>oAnchor.colKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // This is the target row, only unelect cells before the target cell
-                                else if(currentRow.sectionRowIndex === nTargetTrIndex) {
-                                    if(j<nTargetColKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // Unselect all cells on this row
-                                else {
-                                    this.unselectCell(currentRow.cells[j]);
-                                }
-                            }
-                        }
-                    }
-                    // Anchor row is below target row
-                    else {
-                        // Unselect all cells from target cell to anchor cell
-                        for(i=nTargetTrIndex; i<=oAnchor.trIndex; i++) {
-                            currentRow = allRows[i];
-                            for(j=0; j<currentRow.cells.length; j++) {
-                                // This is the target row, only unselect cells after the target cell
-                                if(currentRow.sectionRowIndex == nTargetTrIndex) {
-                                    if(j>nTargetColKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // This is the anchor row, only unselect cells before the anchor cell
-                                else if(currentRow.sectionRowIndex == oAnchor.trIndex) {
-                                    if(j<oAnchor.colKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // Unselect all cells on this row
-                                else {
-                                    this.unselectCell(currentRow.cells[j]);
-                                }
-                            }
-                        }
-                    }
-
-                    // Select the target cell
-                    this.selectCell(elTargetCell);
-                }
-            }
-            // Invalid anchor
-            else {
-                // Set anchor
-                this._oAnchorCell = oTargetCell;
-
-                // Toggle selection of target
-                if(this.isSelected(oTargetCell)) {
-                    this.unselectCell(oTargetCell);
-                }
-                else {
-                    this.selectCell(oTargetCell);
-                }
-            }
-        }
-         // Only SHIFT
-        else if(bSHIFT) {
-
-            this.unselectAllCells();
-
-            // Validate anchor
-            if(oAnchor) {
-                // All cells are on the same row
-                if(oAnchor.recordIndex === nTargetRecordIndex) {
-                    // Select all cells between anchor cell and target cell,
-                    // including the anchor cell and target cell
-                    if(oAnchor.colKeyIndex < nTargetColKeyIndex) {
-                        for(i=oAnchor.colKeyIndex; i<=nTargetColKeyIndex; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-                    }
-                    // Select all cells between target cell and anchor cell
-                    // including the target cell and anchor cell
-                    else if(nTargetColKeyIndex < oAnchor.colKeyIndex) {
-                        for(i=nTargetColKeyIndex; i<=oAnchor.colKeyIndex; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-                    }
-                }
-                // Anchor row is above target row
-                else if(oAnchor.recordIndex < nTargetRecordIndex) {
-                    // Select all cells from anchor cell to target cell
-                    // including the anchor cell and target cell
-                    for(i=oAnchor.trIndex; i<=nTargetTrIndex; i++) {
-                        currentRow = allRows[i];
-                        for(j=0; j<currentRow.cells.length; j++) {
-                            // This is the anchor row, only select the anchor cell and after
-                            if(currentRow.sectionRowIndex == oAnchor.trIndex) {
-                                if(j>=oAnchor.colKeyIndex) {
-                                    this.selectCell(currentRow.cells[j]);
-                                }
-                            }
-                            // This is the target row, only select the target cell and before
-                            else if(currentRow.sectionRowIndex == nTargetTrIndex) {
-                                if(j<=nTargetColKeyIndex) {
-                                    this.selectCell(currentRow.cells[j]);
-                                }
-                            }
-                            // Select all cells on this row
-                            else {
-                                this.selectCell(currentRow.cells[j]);
-                            }
-                        }
-                    }
-                }
-                // Anchor row is below target row
-                else {
-                    // Select all cells from target cell to anchor cell,
-                    // including the target cell and anchor cell
-                    for(i=nTargetTrIndex; i<=oAnchor.trIndex; i++) {
-                        currentRow = allRows[i];
-                        for(j=0; j<currentRow.cells.length; j++) {
-                            // This is the target row, only select the target cell and after
-                            if(currentRow.sectionRowIndex == nTargetTrIndex) {
-                                if(j>=nTargetColKeyIndex) {
-                                    this.selectCell(currentRow.cells[j]);
-                                }
-                            }
-                            // This is the anchor row, only select the anchor cell and before
-                            else if(currentRow.sectionRowIndex == oAnchor.trIndex) {
-                                if(j<=oAnchor.colKeyIndex) {
-                                    this.selectCell(currentRow.cells[j]);
-                                }
-                            }
-                            // Select all cells on this row
-                            else {
-                                this.selectCell(currentRow.cells[j]);
-                            }
-                        }
-                    }
-                }
-            }
-            // Invalid anchor
-            else {
-                // Set anchor
-                this._oAnchorCell = oTargetCell;
-
-                // Select target only
-                this.selectCell(oTargetCell);
-            }
-
-
-        }
-        // Only CTRL
-        else if(bCTRL) {
-
-            // Set anchor
-            this._oAnchorCell = oTargetCell;
-
-            // Toggle selection of target
-            if(this.isSelected(oTargetCell)) {
-                this.unselectCell(oTargetCell);
-            }
-            else {
-                this.selectCell(oTargetCell);
-            }
-
-        }
-        // Neither SHIFT nor CTRL
-        else {
-            this._handleSingleCellSelectionByMouse(oArgs);
-        }
-    }
-},
-
-/**
- * Determines selection behavior resulting from a key event when selection mode
- * is set to "cellrange".
- *
- * @method _handleCellRangeSelectionByKey
- * @param e {HTMLEvent} Event object.
- * @private
- */
-_handleCellRangeSelectionByKey : function(e) {
-    var nKey = Ev.getCharCode(e);
-    var bSHIFT = e.shiftKey;
-    if((nKey == 9) || !bSHIFT) {
-        this._handleSingleCellSelectionByKey(e);
-        return;
-    }
-
-    if((nKey > 36) && (nKey < 41)) {
-        // Validate trigger
-        var oTrigger = this._getSelectionTrigger();
-        // Arrow selection only works if last selected row is on current page
-        if(!oTrigger) {
-            return null;
-        }
-
-        Ev.stopEvent(e);
-
-        // Validate anchor
-        var oAnchor = this._getSelectionAnchor(oTrigger);
-
-        var i, elNewRow, elNew;
-        var allRows = this.getTbodyEl().rows;
-        var elThisRow = oTrigger.el.parentNode;
-
-        // Arrow down
-        if(nKey == 40) {
-            elNewRow = this.getNextTrEl(oTrigger.el);
-
-            // Selecting away from anchor cell
-            if(oAnchor.recordIndex <= oTrigger.recordIndex) {
-                // Select all cells to the end of this row
-                for(i=oTrigger.colKeyIndex+1; i<elThisRow.cells.length; i++){
-                    elNew = elThisRow.cells[i];
-                    this.selectCell(elNew);
-                }
-
-                // Select some of the cells on the next row down
-                if(elNewRow) {
-                    for(i=0; i<=oTrigger.colKeyIndex; i++){
-                        elNew = elNewRow.cells[i];
-                        this.selectCell(elNew);
-                    }
-                }
-            }
-            // Unselecting towards anchor cell
-            else {
-                // Unselect all cells to the end of this row
-                for(i=oTrigger.colKeyIndex; i<elThisRow.cells.length; i++){
-                    this.unselectCell(elThisRow.cells[i]);
-                }
-
-                // Unselect some of the cells on the next row down
-                if(elNewRow) {
-                    for(i=0; i<oTrigger.colKeyIndex; i++){
-                        this.unselectCell(elNewRow.cells[i]);
-                    }
-                }
-            }
-        }
-        // Arrow up
-        else if(nKey == 38) {
-            elNewRow = this.getPreviousTrEl(oTrigger.el);
-
-            // Selecting away from anchor cell
-            if(oAnchor.recordIndex >= oTrigger.recordIndex) {
-                // Select all the cells to the beginning of this row
-                for(i=oTrigger.colKeyIndex-1; i>-1; i--){
-                    elNew = elThisRow.cells[i];
-                    this.selectCell(elNew);
-                }
-
-                // Select some of the cells from the end of the previous row
-                if(elNewRow) {
-                    for(i=elThisRow.cells.length-1; i>=oTrigger.colKeyIndex; i--){
-                        elNew = elNewRow.cells[i];
-                        this.selectCell(elNew);
-                    }
-                }
-            }
-            // Unselecting towards anchor cell
-            else {
-                // Unselect all the cells to the beginning of this row
-                for(i=oTrigger.colKeyIndex; i>-1; i--){
-                    this.unselectCell(elThisRow.cells[i]);
-                }
-
-                // Unselect some of the cells from the end of the previous row
-                if(elNewRow) {
-                    for(i=elThisRow.cells.length-1; i>oTrigger.colKeyIndex; i--){
-                        this.unselectCell(elNewRow.cells[i]);
-                    }
-                }
-            }
-        }
-        // Arrow right
-        else if(nKey == 39) {
-            elNewRow = this.getNextTrEl(oTrigger.el);
-
-            // Selecting away from anchor cell
-            if(oAnchor.recordIndex < oTrigger.recordIndex) {
-                // Select the next cell to the right
-                if(oTrigger.colKeyIndex < elThisRow.cells.length-1) {
-                    elNew = elThisRow.cells[oTrigger.colKeyIndex+1];
-                    this.selectCell(elNew);
-                }
-                // Select the first cell of the next row
-                else if(elNewRow) {
-                    elNew = elNewRow.cells[0];
-                    this.selectCell(elNew);
-                }
-            }
-            // Unselecting towards anchor cell
-            else if(oAnchor.recordIndex > oTrigger.recordIndex) {
-                this.unselectCell(elThisRow.cells[oTrigger.colKeyIndex]);
-
-                // Unselect this cell towards the right
-                if(oTrigger.colKeyIndex < elThisRow.cells.length-1) {
-                }
-                // Unselect this cells towards the first cell of the next row
-                else {
-                }
-            }
-            // Anchor is on this row
-            else {
-                // Selecting away from anchor
-                if(oAnchor.colKeyIndex <= oTrigger.colKeyIndex) {
-                    // Select the next cell to the right
-                    if(oTrigger.colKeyIndex < elThisRow.cells.length-1) {
-                        elNew = elThisRow.cells[oTrigger.colKeyIndex+1];
-                        this.selectCell(elNew);
-                    }
-                    // Select the first cell on the next row
-                    else if(oTrigger.trIndex < allRows.length-1){
-                        elNew = elNewRow.cells[0];
-                        this.selectCell(elNew);
-                    }
-                }
-                // Unselecting towards anchor
-                else {
-                    // Unselect this cell towards the right
-                    this.unselectCell(elThisRow.cells[oTrigger.colKeyIndex]);
-                }
-            }
-        }
-        // Arrow left
-        else if(nKey == 37) {
-            elNewRow = this.getPreviousTrEl(oTrigger.el);
-
-            // Unselecting towards the anchor
-            if(oAnchor.recordIndex < oTrigger.recordIndex) {
-                this.unselectCell(elThisRow.cells[oTrigger.colKeyIndex]);
-
-                // Unselect this cell towards the left
-                if(oTrigger.colKeyIndex > 0) {
-                }
-                // Unselect this cell towards the last cell of the previous row
-                else {
-                }
-            }
-            // Selecting towards the anchor
-            else if(oAnchor.recordIndex > oTrigger.recordIndex) {
-                // Select the next cell to the left
-                if(oTrigger.colKeyIndex > 0) {
-                    elNew = elThisRow.cells[oTrigger.colKeyIndex-1];
-                    this.selectCell(elNew);
-                }
-                // Select the last cell of the previous row
-                else if(oTrigger.trIndex > 0){
-                    elNew = elNewRow.cells[elNewRow.cells.length-1];
-                    this.selectCell(elNew);
-                }
-            }
-            // Anchor is on this row
-            else {
-                // Selecting away from anchor cell
-                if(oAnchor.colKeyIndex >= oTrigger.colKeyIndex) {
-                    // Select the next cell to the left
-                    if(oTrigger.colKeyIndex > 0) {
-                        elNew = elThisRow.cells[oTrigger.colKeyIndex-1];
-                        this.selectCell(elNew);
-                    }
-                    // Select the last cell of the previous row
-                    else if(oTrigger.trIndex > 0){
-                        elNew = elNewRow.cells[elNewRow.cells.length-1];
-                        this.selectCell(elNew);
-                    }
-                }
-                // Unselecting towards anchor cell
-                else {
-                    this.unselectCell(elThisRow.cells[oTrigger.colKeyIndex]);
-
-                    // Unselect this cell towards the left
-                    if(oTrigger.colKeyIndex > 0) {
-                    }
-                    // Unselect this cell towards the last cell of the previous row
-                    else {
-                    }
-                }
-            }
-        }
-    }
-},
-
-/**
- * Determines selection behavior resulting from a mouse event when selection mode
- * is set to "singlecell".
- *
- * @method _handleSingleCellSelectionByMouse
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- * @private
- */
-_handleSingleCellSelectionByMouse : function(oArgs) {
-    var elTarget = oArgs.target;
-
-    // Validate target cell
-    var elTargetCell = this.getTdEl(elTarget);
-    if(elTargetCell) {
-        var elTargetRow = this.getTrEl(elTargetCell);
-        var oTargetRecord = this.getRecord(elTargetRow);
-        var oTargetColumn = this.getColumn(elTargetCell);
-        var oTargetCell = {record:oTargetRecord, column:oTargetColumn};
-
-        // Set anchor
-        this._oAnchorCell = oTargetCell;
-
-        // Select only target
-        this.unselectAllCells();
-        this.selectCell(oTargetCell);
-    }
-},
-
-/**
- * Determines selection behavior resulting from a key event when selection mode
- * is set to "singlecell".
- *
- * @method _handleSingleCellSelectionByKey
- * @param e {HTMLEvent} Event object.
- * @private
- */
-_handleSingleCellSelectionByKey : function(e) {
-    var nKey = Ev.getCharCode(e);
-    if((nKey == 9) || ((nKey > 36) && (nKey < 41))) {
-        var bSHIFT = e.shiftKey;
-
-        // Validate trigger
-        var oTrigger = this._getSelectionTrigger();
-        // Arrow selection only works if last selected row is on current page
-        if(!oTrigger) {
-            return null;
-        }
-
-        // Determine the new cell to select
-        var elNew;
-        if(nKey == 40) { // Arrow down
-            elNew = this.getBelowTdEl(oTrigger.el);
-
-            // Validate new cell
-            if(elNew === null) {
-                //TODO: wrap around to first tr on current page
-
-                //TODO: wrap forward to first tr of next page
-
-                // Bottom selection is sticky
-                elNew = oTrigger.el;
-            }
-        }
-        else if(nKey == 38) { // Arrow up
-            elNew = this.getAboveTdEl(oTrigger.el);
-
-            // Validate new cell
-            if(elNew === null) {
-                //TODO: wrap around to last tr on current page
-
-                //TODO: wrap back to last tr of previous page
-
-                // Top selection is sticky
-                elNew = oTrigger.el;
-            }
-        }
-        else if((nKey == 39) || (!bSHIFT && (nKey == 9))) { // Arrow right or tab
-            elNew = this.getNextTdEl(oTrigger.el);
-
-            // Validate new cell
-            if(elNew === null) {
-                //TODO: wrap around to first td on current page
-
-                //TODO: wrap forward to first td of next page
-
-                // Top-left selection is sticky, and release TAB focus
-                //elNew = oTrigger.el;
-                return;
-            }
-        }
-        else if((nKey == 37) || (bSHIFT && (nKey == 9))) { // Arrow left or shift-tab
-            elNew = this.getPreviousTdEl(oTrigger.el);
-
-            // Validate new cell
-            if(elNew === null) {
-                //TODO: wrap around to last td on current page
-
-                //TODO: wrap back to last td of previous page
-
-                // Bottom-right selection is sticky, and release TAB focus
-                //elNew = oTrigger.el;
-                return;
-            }
-        }
-
-        Ev.stopEvent(e);
-        
-        // Unselect all cells
-        this.unselectAllCells();
-
-        // Select the new cell
-        this.selectCell(elNew);
-
-        // Set new anchor
-        this._oAnchorCell = {record:this.getRecord(elNew), column:this.getColumn(elNew)};
-    }
-},
-
-/**
- * Returns array of selected TR elements on the page.
- *
- * @method getSelectedTrEls
- * @return {HTMLElement[]} Array of selected TR elements.
- */
-getSelectedTrEls : function() {
-    return Dom.getElementsByClassName(DT.CLASS_SELECTED,"tr",this._elTbody);
-},
-
-/**
- * Sets given row to the selected state.
- *
- * @method selectRow
- * @param row {HTMLElement | String | YAHOO.widget.Record | Number} HTML element
- * reference or ID string, Record instance, or RecordSet position index.
- */
-selectRow : function(row) {
-    var oRecord, elRow;
-
-    if(row instanceof YAHOO.widget.Record) {
-        oRecord = this._oRecordSet.getRecord(row);
-        elRow = this.getTrEl(oRecord);
-    }
-    else if(lang.isNumber(row)) {
-        oRecord = this.getRecord(row);
-        elRow = this.getTrEl(oRecord);
-    }
-    else {
-        elRow = this.getTrEl(row);
-        oRecord = this.getRecord(elRow);
-    }
-
-    if(oRecord) {
-        // Update selection trackers
-        var tracker = this._aSelections || [];
-        var sRecordId = oRecord.getId();
-        var index = -1;
-
-        // Remove if already there:
-        // Use Array.indexOf if available...
-        /*if(tracker.indexOf && (tracker.indexOf(sRecordId) >  -1)) {
-            tracker.splice(tracker.indexOf(sRecordId),1);
-        }*/
-        if(tracker.indexOf) {
-            index = tracker.indexOf(sRecordId);
-            
-        }
-        // ...or do it the old-fashioned way
-        else {
-            for(var j=tracker.length-1; j>-1; j--) {
-                if(tracker[j] === sRecordId){
-                    index = j;
-                    break;
-                }
-            }
-        }
-        if(index > -1) {
-            tracker.splice(index,1);
-        }
-        
-        // Add to the end
-        tracker.push(sRecordId);
-        this._aSelections = tracker;
-
-        // Update trackers
-        if(!this._oAnchorRecord) {
-            this._oAnchorRecord = oRecord;
-        }
-
-        // Update UI
-        if(elRow) {
-            Dom.addClass(elRow, DT.CLASS_SELECTED);
-        }
-
-        this.fireEvent("rowSelectEvent", {record:oRecord, el:elRow});
-        YAHOO.log("Selected " + elRow, "info", this.toString());
-    }
-    else {
-        YAHOO.log("Could not select row " + row, "warn", this.toString());
-    }
-},
-
-/**
- * Sets given row to the selected state.
- *
- * @method unselectRow
- * @param row {HTMLElement | String | YAHOO.widget.Record | Number} HTML element
- * reference or ID string, Record instance, or RecordSet position index.
- */
-unselectRow : function(row) {
-    var elRow = this.getTrEl(row);
-
-    var oRecord;
-    if(row instanceof YAHOO.widget.Record) {
-        oRecord = this._oRecordSet.getRecord(row);
-    }
-    else if(lang.isNumber(row)) {
-        oRecord = this.getRecord(row);
-    }
-    else {
-        oRecord = this.getRecord(elRow);
-    }
-
-    if(oRecord) {
-        // Update selection trackers
-        var tracker = this._aSelections || [];
-        var sRecordId = oRecord.getId();
-        var index = -1;
-
-        // Use Array.indexOf if available...
-        if(tracker.indexOf) {
-            index = tracker.indexOf(sRecordId);
-        }
-        // ...or do it the old-fashioned way
-        else {
-            for(var j=tracker.length-1; j>-1; j--) {
-                if(tracker[j] === sRecordId){
-                    index = j;
-                    break;
-                }
-            }
-        }
-        if(index > -1) {
-            // Update tracker
-            tracker.splice(index,1);
-            this._aSelections = tracker;
-
-            // Update the UI
-            Dom.removeClass(elRow, DT.CLASS_SELECTED);
-
-            this.fireEvent("rowUnselectEvent", {record:oRecord, el:elRow});
-            YAHOO.log("Unselected " + elRow, "info", this.toString());
-
-            return;
-        }
-    }
-    YAHOO.log("Could not unselect row " + row, "warn", this.toString());
-},
-
-/**
- * Clears out all row selections.
- *
- * @method unselectAllRows
- */
-unselectAllRows : function() {
-    // Remove all rows from tracker
-    var tracker = this._aSelections || [],
-        recId,
-        removed = [];
-    for(var j=tracker.length-1; j>-1; j--) {
-       if(lang.isString(tracker[j])){
-            recId = tracker.splice(j,1);
-            removed[removed.length] = this.getRecord(lang.isArray(recId) ? recId[0] : recId);
-        }
-    }
-
-    // Update tracker
-    this._aSelections = tracker;
-
-    // Update UI
-    this._unselectAllTrEls();
-
-    this.fireEvent("unselectAllRowsEvent", {records: removed});
-    YAHOO.log("Unselected all rows", "info", this.toString());
-},
-
-/**
- * Convenience method to remove the class YAHOO.widget.DataTable.CLASS_SELECTED
- * from all TD elements in the internal tracker.
- *
- * @method _unselectAllTdEls
- * @private
- */
-_unselectAllTdEls : function() {
-    var selectedCells = Dom.getElementsByClassName(DT.CLASS_SELECTED,"td",this._elTbody);
-    Dom.removeClass(selectedCells, DT.CLASS_SELECTED);
-},
-
-/**
- * Returns array of selected TD elements on the page.
- *
- * @method getSelectedTdEls
- * @return {HTMLElement[]} Array of selected TD elements.
- */
-getSelectedTdEls : function() {
-    return Dom.getElementsByClassName(DT.CLASS_SELECTED,"td",this._elTbody);
-},
-
-/**
- * Sets given cell to the selected state.
- *
- * @method selectCell
- * @param cell {HTMLElement | String} DOM element reference or ID string
- * to DataTable page element or RecordSet index.
- */
-selectCell : function(cell) {
-//TODO: accept {record} in selectCell()
-    var elCell = this.getTdEl(cell);
-
-    if(elCell) {
-        var oRecord = this.getRecord(elCell);
-        var sColumnKey = this.getColumn(elCell.cellIndex).getKey();
-
-        if(oRecord && sColumnKey) {
-            // Get Record ID
-            var tracker = this._aSelections || [];
-            var sRecordId = oRecord.getId();
-
-            // Remove if there
-            for(var j=tracker.length-1; j>-1; j--) {
-               if((tracker[j].recordId === sRecordId) && (tracker[j].columnKey === sColumnKey)){
-                    tracker.splice(j,1);
-                    break;
-                }
-            }
-
-            // Add to the end
-            tracker.push({recordId:sRecordId, columnKey:sColumnKey});
-
-            // Update trackers
-            this._aSelections = tracker;
-            if(!this._oAnchorCell) {
-                this._oAnchorCell = {record:oRecord, column:this.getColumn(sColumnKey)};
-            }
-
-            // Update the UI
-            Dom.addClass(elCell, DT.CLASS_SELECTED);
-
-            this.fireEvent("cellSelectEvent", {record:oRecord, column:this.getColumn(elCell.cellIndex), key: this.getColumn(elCell.cellIndex).getKey(), el:elCell});
-            YAHOO.log("Selected " + elCell, "info", this.toString());
-            return;
-        }
-    }
-    YAHOO.log("Could not select cell " + cell, "warn", this.toString());
-},
-
-/**
- * Sets given cell to the unselected state.
- *
- * @method unselectCell
- * @param cell {HTMLElement | String} DOM element reference or ID string
- * to DataTable page element or RecordSet index.
- */
-unselectCell : function(cell) {
-    var elCell = this.getTdEl(cell);
-
-    if(elCell) {
-        var oRecord = this.getRecord(elCell);
-        var sColumnKey = this.getColumn(elCell.cellIndex).getKey();
-
-        if(oRecord && sColumnKey) {
-            // Get Record ID
-            var tracker = this._aSelections || [];
-            var id = oRecord.getId();
-
-            // Is it selected?
-            for(var j=tracker.length-1; j>-1; j--) {
-                if((tracker[j].recordId === id) && (tracker[j].columnKey === sColumnKey)){
-                    // Remove from tracker
-                    tracker.splice(j,1);
-
-                    // Update tracker
-                    this._aSelections = tracker;
-
-                    // Update the UI
-                    Dom.removeClass(elCell, DT.CLASS_SELECTED);
-
-                    this.fireEvent("cellUnselectEvent", {record:oRecord, column: this.getColumn(elCell.cellIndex), key:this.getColumn(elCell.cellIndex).getKey(), el:elCell});
-                    YAHOO.log("Unselected " + elCell, "info", this.toString());
-                    return;
-                }
-            }
-        }
-    }
-    YAHOO.log("Could not unselect cell " + cell, "warn", this.toString());
-},
-
-/**
- * Clears out all cell selections.
- *
- * @method unselectAllCells
- */
-unselectAllCells : function() {
-    // Remove all cells from tracker
-    var tracker = this._aSelections || [];
-    for(var j=tracker.length-1; j>-1; j--) {
-       if(lang.isObject(tracker[j])){
-            tracker.splice(j,1);
-        }
-    }
-
-    // Update tracker
-    this._aSelections = tracker;
-
-    // Update UI
-    this._unselectAllTdEls();
-
-    //TODO: send data to unselectAllCellsEvent handler
-    this.fireEvent("unselectAllCellsEvent");
-    YAHOO.log("Unselected all cells", "info", this.toString());
-},
-
-/**
- * Returns true if given item is selected, false otherwise.
- *
- * @method isSelected
- * @param o {String | HTMLElement | YAHOO.widget.Record | Number
- * {record:YAHOO.widget.Record, column:YAHOO.widget.Column} } TR or TD element by
- * reference or ID string, a Record instance, a RecordSet position index,
- * or an object literal representation
- * of a cell.
- * @return {Boolean} True if item is selected.
- */
-isSelected : function(o) {
-    if(o && (o.ownerDocument == document)) {
-        return (Dom.hasClass(this.getTdEl(o),DT.CLASS_SELECTED) || Dom.hasClass(this.getTrEl(o),DT.CLASS_SELECTED));
-    }
-    else {
-        var oRecord, sRecordId, j;
-        var tracker = this._aSelections;
-        if(tracker && tracker.length > 0) {
-            // Looking for a Record?
-            if(o instanceof YAHOO.widget.Record) {
-                oRecord = o;
-            }
-            else if(lang.isNumber(o)) {
-                oRecord = this.getRecord(o);
-            }
-            if(oRecord) {
-                sRecordId = oRecord.getId();
-
-                // Is it there?
-                // Use Array.indexOf if available...
-                if(tracker.indexOf) {
-                    if(tracker.indexOf(sRecordId) >  -1) {
-                        return true;
-                    }
-                }
-                // ...or do it the old-fashioned way
-                else {
-                    for(j=tracker.length-1; j>-1; j--) {
-                       if(tracker[j] === sRecordId){
-                        return true;
-                       }
-                    }
-                }
-            }
-            // Looking for a cell
-            else if(o.record && o.column){
-                sRecordId = o.record.getId();
-                var sColumnKey = o.column.getKey();
-
-                for(j=tracker.length-1; j>-1; j--) {
-                    if((tracker[j].recordId === sRecordId) && (tracker[j].columnKey === sColumnKey)){
-                        return true;
-                    }
-                }
-            }
-        }
-    }
-    return false;
-},
-
-/**
- * Returns selected rows as an array of Record IDs.
- *
- * @method getSelectedRows
- * @return {String[]} Array of selected rows by Record ID.
- */
-getSelectedRows : function() {
-    var aSelectedRows = [];
-    var tracker = this._aSelections || [];
-    for(var j=0; j<tracker.length; j++) {
-       if(lang.isString(tracker[j])){
-            aSelectedRows.push(tracker[j]);
-        }
-    }
-    return aSelectedRows;
-},
-
-/**
- * Returns selected cells as an array of object literals:
- *     {recordId:sRecordId, columnKey:sColumnKey}.
- *
- * @method getSelectedCells
- * @return {Object[]} Array of selected cells by Record ID and Column ID.
- */
-getSelectedCells : function() {
-    var aSelectedCells = [];
-    var tracker = this._aSelections || [];
-    for(var j=0; j<tracker.length; j++) {
-       if(tracker[j] && lang.isObject(tracker[j])){
-            aSelectedCells.push(tracker[j]);
-        }
-    }
-    return aSelectedCells;
-},
-
-/**
- * Returns last selected Record ID.
- *
- * @method getLastSelectedRecord
- * @return {String} Record ID of last selected row.
- */
-getLastSelectedRecord : function() {
-    var tracker = this._aSelections;
-    if(tracker && tracker.length > 0) {
-        for(var i=tracker.length-1; i>-1; i--) {
-           if(lang.isString(tracker[i])){
-                return tracker[i];
-            }
-        }
-    }
-},
-
-/**
- * Returns last selected cell as an object literal:
- *     {recordId:sRecordId, columnKey:sColumnKey}.
- *
- * @method getLastSelectedCell
- * @return {Object} Object literal representation of a cell.
- */
-getLastSelectedCell : function() {
-    var tracker = this._aSelections;
-    if(tracker && tracker.length > 0) {
-        for(var i=tracker.length-1; i>-1; i--) {
-           if(tracker[i].recordId && tracker[i].columnKey){
-                return tracker[i];
-            }
-        }
-    }
-},
-
-/**
- * Assigns the class YAHOO.widget.DataTable.CLASS_HIGHLIGHTED to the given row.
- *
- * @method highlightRow
- * @param row {HTMLElement | String} DOM element reference or ID string.
- */
-highlightRow : function(row) {
-    var elRow = this.getTrEl(row);
-
-    if(elRow) {
-        // Make sure previous row is unhighlighted
-/*        if(this._sLastHighlightedTrElId) {
-            Dom.removeClass(this._sLastHighlightedTrElId,DT.CLASS_HIGHLIGHTED);
-        }*/
-        var oRecord = this.getRecord(elRow);
-        Dom.addClass(elRow,DT.CLASS_HIGHLIGHTED);
-        //this._sLastHighlightedTrElId = elRow.id;
-        this.fireEvent("rowHighlightEvent", {record:oRecord, el:elRow});
-        YAHOO.log("Highlighted " + elRow, "info", this.toString());
-        return;
-    }
-    YAHOO.log("Could not highlight row " + row, "warn", this.toString());
-},
-
-/**
- * Removes the class YAHOO.widget.DataTable.CLASS_HIGHLIGHTED from the given row.
- *
- * @method unhighlightRow
- * @param row {HTMLElement | String} DOM element reference or ID string.
- */
-unhighlightRow : function(row) {
-    var elRow = this.getTrEl(row);
-
-    if(elRow) {
-        var oRecord = this.getRecord(elRow);
-        Dom.removeClass(elRow,DT.CLASS_HIGHLIGHTED);
-        this.fireEvent("rowUnhighlightEvent", {record:oRecord, el:elRow});
-        YAHOO.log("Unhighlighted " + elRow, "info", this.toString());
-        return;
-    }
-    YAHOO.log("Could not unhighlight row " + row, "warn", this.toString());
-},
-
-/**
- * Assigns the class YAHOO.widget.DataTable.CLASS_HIGHLIGHTED to the given cell.
- *
- * @method highlightCell
- * @param cell {HTMLElement | String} DOM element reference or ID string.
- */
-highlightCell : function(cell) {
-    var elCell = this.getTdEl(cell);
-
-    if(elCell) {
-        // Make sure previous cell is unhighlighted
-        if(this._elLastHighlightedTd) {
-            this.unhighlightCell(this._elLastHighlightedTd);
-        }
-
-        var oRecord = this.getRecord(elCell);
-        var sColumnKey = this.getColumn(elCell.cellIndex).getKey();
-        Dom.addClass(elCell,DT.CLASS_HIGHLIGHTED);
-        this._elLastHighlightedTd = elCell;
-        this.fireEvent("cellHighlightEvent", {record:oRecord, column:this.getColumn(elCell.cellIndex), key:this.getColumn(elCell.cellIndex).getKey(), el:elCell});
-        YAHOO.log("Highlighted " + elCell, "info", this.toString());
-        return;
-    }
-    YAHOO.log("Could not highlight cell " + cell, "warn", this.toString());
-},
-
-/**
- * Removes the class YAHOO.widget.DataTable.CLASS_HIGHLIGHTED from the given cell.
- *
- * @method unhighlightCell
- * @param cell {HTMLElement | String} DOM element reference or ID string.
- */
-unhighlightCell : function(cell) {
-    var elCell = this.getTdEl(cell);
-
-    if(elCell) {
-        var oRecord = this.getRecord(elCell);
-        Dom.removeClass(elCell,DT.CLASS_HIGHLIGHTED);
-        this._elLastHighlightedTd = null;
-        this.fireEvent("cellUnhighlightEvent", {record:oRecord, column:this.getColumn(elCell.cellIndex), key:this.getColumn(elCell.cellIndex).getKey(), el:elCell});
-        YAHOO.log("Unhighlighted " + elCell, "info", this.toString());
-        return;
-    }
-    YAHOO.log("Could not unhighlight cell " + cell, "warn", this.toString());
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// INLINE EDITING
-
-/**
- * Returns current CellEditor instance, or null.
- * @method getCellEditor
- * @return {YAHOO.widget.CellEditor} CellEditor instance.
- */
-getCellEditor : function() {
-    return this._oCellEditor;
-},
-
-
-/**
- * Activates and shows CellEditor instance for the given cell while deactivating and
- * canceling previous CellEditor. It is baked into DataTable that only one CellEditor
- * can be active at any given time. 
- *
- * @method showCellEditor
- * @param elCell {HTMLElement | String} Cell to edit.
- */
-showCellEditor : function(elCell, oRecord, oColumn) {
-    // Get a particular CellEditor
-    elCell = this.getTdEl(elCell);
-    if(elCell) {
-        oColumn = this.getColumn(elCell);
-        if(oColumn && oColumn.editor) {
-            var oCellEditor = this._oCellEditor;
-            // Clean up active CellEditor
-            if(oCellEditor) {
-                if(this._oCellEditor.cancel) {
-                    this._oCellEditor.cancel();
-                }
-                else if(oCellEditor.isActive) {
-                    this.cancelCellEditor();
-                }
-            }
-            
-            if(oColumn.editor instanceof YAHOO.widget.BaseCellEditor) {
-                // Get CellEditor
-                oCellEditor = oColumn.editor;
-                var ok = oCellEditor.attach(this, elCell);
-                if(ok) {
-                    oCellEditor.move();
-                    ok = this.doBeforeShowCellEditor(oCellEditor);
-                    if(ok) {
-                        oCellEditor.show();
-                        this._oCellEditor = oCellEditor;
-                    }
-                }
-            }
-            // Backward compatibility
-            else {
-                    if(!oRecord || !(oRecord instanceof YAHOO.widget.Record)) {
-                        oRecord = this.getRecord(elCell);
-                    }
-                    if(!oColumn || !(oColumn instanceof YAHOO.widget.Column)) {
-                        oColumn = this.getColumn(elCell);
-                    }
-                    if(oRecord && oColumn) {
-                        if(!this._oCellEditor || this._oCellEditor.container) {
-                            this._initCellEditorEl();
-                        }
-                        
-                        // Update Editor values
-                        oCellEditor = this._oCellEditor;
-                        oCellEditor.cell = elCell;
-                        oCellEditor.record = oRecord;
-                        oCellEditor.column = oColumn;
-                        oCellEditor.validator = (oColumn.editorOptions &&
-                                lang.isFunction(oColumn.editorOptions.validator)) ?
-                                oColumn.editorOptions.validator : null;
-                        oCellEditor.value = oRecord.getData(oColumn.key);
-                        oCellEditor.defaultValue = null;
-            
-                        // Move Editor
-                        var elContainer = oCellEditor.container;
-                        var x = Dom.getX(elCell);
-                        var y = Dom.getY(elCell);
-            
-                        // SF doesn't get xy for cells in scrolling table
-                        // when tbody display is set to block
-                        if(isNaN(x) || isNaN(y)) {
-                            x = elCell.offsetLeft + // cell pos relative to table
-                                    Dom.getX(this._elTbody.parentNode) - // plus table pos relative to document
-                                    this._elTbody.scrollLeft; // minus tbody scroll
-                            y = elCell.offsetTop + // cell pos relative to table
-                                    Dom.getY(this._elTbody.parentNode) - // plus table pos relative to document
-                                    this._elTbody.scrollTop + // minus tbody scroll
-                                    this._elThead.offsetHeight; // account for fixed THEAD cells
-                        }
-            
-                        elContainer.style.left = x + "px";
-                        elContainer.style.top = y + "px";
-            
-                        // Hook to customize the UI
-                        this.doBeforeShowCellEditor(this._oCellEditor);
-            
-                        //TODO: This is temporarily up here due so elements can be focused
-                        // Show Editor
-                        elContainer.style.display = "";
-            
-                        // Handle ESC key
-                        Ev.addListener(elContainer, "keydown", function(e, oSelf) {
-                            // ESC hides Cell Editor
-                            if((e.keyCode == 27)) {
-                                oSelf.cancelCellEditor();
-                                oSelf.focusTbodyEl();
-                            }
-                            else {
-                                oSelf.fireEvent("editorKeydownEvent", {editor:oSelf._oCellEditor, event:e});
-                            }
-                        }, this);
-            
-                        // Render Editor markup
-                        var fnEditor;
-                        if(lang.isString(oColumn.editor)) {
-                            switch(oColumn.editor) {
-                                case "checkbox":
-                                    fnEditor = DT.editCheckbox;
-                                    break;
-                                case "date":
-                                    fnEditor = DT.editDate;
-                                    break;
-                                case "dropdown":
-                                    fnEditor = DT.editDropdown;
-                                    break;
-                                case "radio":
-                                    fnEditor = DT.editRadio;
-                                    break;
-                                case "textarea":
-                                    fnEditor = DT.editTextarea;
-                                    break;
-                                case "textbox":
-                                    fnEditor = DT.editTextbox;
-                                    break;
-                                default:
-                                    fnEditor = null;
-                            }
-                        }
-                        else if(lang.isFunction(oColumn.editor)) {
-                            fnEditor = oColumn.editor;
-                        }
-            
-                        if(fnEditor) {
-                            // Create DOM input elements
-                            fnEditor(this._oCellEditor, this);
-            
-                            // Show Save/Cancel buttons
-                            if(!oColumn.editorOptions || !oColumn.editorOptions.disableBtns) {
-                                this.showCellEditorBtns(elContainer);
-                            }
-            
-                            oCellEditor.isActive = true;
-            
-                            //TODO: verify which args to pass
-                            this.fireEvent("editorShowEvent", {editor:oCellEditor});
-                            YAHOO.log("Cell Editor shown for " + elCell, "info", this.toString());
-                            return;
-                        }
-                    }
-
-
-
-            
-            }
-        }
-    }
-},
-
-/**
- * Backward compatibility.
- *
- * @method _initCellEditorEl
- * @private
- * @deprecated 
- */
-_initCellEditorEl : function() {
-    // Attach Cell Editor container element as first child of body
-    var elCellEditor = document.createElement("div");
-    elCellEditor.id = this._sId + "-celleditor";
-    elCellEditor.style.display = "none";
-    elCellEditor.tabIndex = 0;
-    Dom.addClass(elCellEditor, DT.CLASS_EDITOR);
-    var elFirstChild = Dom.getFirstChild(document.body);
-    if(elFirstChild) {
-        elCellEditor = Dom.insertBefore(elCellEditor, elFirstChild);
-    }
-    else {
-        elCellEditor = document.body.appendChild(elCellEditor);
-    }
-    
-    // Internal tracker of Cell Editor values
-    var oCellEditor = {};
-    oCellEditor.container = elCellEditor;
-    oCellEditor.value = null;
-    oCellEditor.isActive = false;
-    this._oCellEditor = oCellEditor;
-},
-
-/**
- * Overridable abstract method to customize CellEditor before showing.
- *
- * @method doBeforeShowCellEditor
- * @param oCellEditor {YAHOO.widget.CellEditor} The CellEditor instance.
- * @return {Boolean} Return true to continue showing CellEditor.
- */
-doBeforeShowCellEditor : function(oCellEditor) {
-    return true;
-},
-
-/**
- * Saves active CellEditor input to Record and upates DOM UI.
- *
- * @method saveCellEditor
- */
-saveCellEditor : function() {
-    if(this._oCellEditor) {
-        if(this._oCellEditor.save) {
-            this._oCellEditor.save();
-        }
-        // Backward compatibility
-        else if(this._oCellEditor.isActive) {
-            var newData = this._oCellEditor.value;
-            // Copy the data to pass to the event
-            var oldData = YAHOO.widget.DataTable._cloneObject(this._oCellEditor.record.getData(this._oCellEditor.column.key));
-    
-            // Validate input data
-            if(this._oCellEditor.validator) {
-                newData = this._oCellEditor.value = this._oCellEditor.validator.call(this, newData, oldData, this._oCellEditor);
-                if(newData === null ) {
-                    this.resetCellEditor();
-                    this.fireEvent("editorRevertEvent",
-                            {editor:this._oCellEditor, oldData:oldData, newData:newData});
-                    YAHOO.log("Could not save Cell Editor input due to invalid data " +
-                            lang.dump(newData), "warn", this.toString());
-                    return;
-                }
-            }
-            // Update the Record
-            this._oRecordSet.updateRecordValue(this._oCellEditor.record, this._oCellEditor.column.key, this._oCellEditor.value);
-            // Update the UI
-            this.formatCell(this._oCellEditor.cell.firstChild);
-            
-            // Bug fix 1764044
-            this._oChainRender.add({
-                method: function() {
-                    this.validateColumnWidths();
-                },
-                scope: this
-            });
-            this._oChainRender.run();
-            // Clear out the Cell Editor
-            this.resetCellEditor();
-    
-            this.fireEvent("editorSaveEvent",
-                    {editor:this._oCellEditor, oldData:oldData, newData:newData});
-            YAHOO.log("Cell Editor input saved", "info", this.toString());
-        }
-    }   
-},
-
-/**
- * Cancels active CellEditor.
- *
- * @method cancelCellEditor
- */
-cancelCellEditor : function() {
-    if(this._oCellEditor) {
-        if(this._oCellEditor.cancel) {
-            this._oCellEditor.cancel();
-        }
-        // Backward compatibility
-        else if(this._oCellEditor.isActive) {
-            this.resetCellEditor();
-            //TODO: preserve values for the event?
-            this.fireEvent("editorCancelEvent", {editor:this._oCellEditor});
-            YAHOO.log("Cell Editor input canceled", "info", this.toString());
-        }
-
-        YAHOO.log("CellEditor input canceled", "info", this.toString());
-    }
-},
-
-/**
- * Destroys active CellEditor instance and UI.
- *
- * @method destroyCellEditor
- */
-destroyCellEditor : function() {
-    if(this._oCellEditor) {
-        this._oCellEditor.destroy();
-        this._oCellEditor = null;
-    }   
-},
-
-/**
- * Passes through showEvent of the active CellEditor.
- *
- * @method _onEditorShowEvent
- * @param oArgs {Object}  Custom Event args.
- * @private 
- */
-_onEditorShowEvent : function(oArgs) {
-    this.fireEvent("editorShowEvent", oArgs);
-},
-
-/**
- * Passes through keydownEvent of the active CellEditor.
- * @param oArgs {Object}  Custom Event args. 
- *
- * @method _onEditorKeydownEvent
- * @private 
- */
-_onEditorKeydownEvent : function(oArgs) {
-    this.fireEvent("editorKeydownEvent", oArgs);
-},
-
-/**
- * Passes through revertEvent of the active CellEditor.
- *
- * @method _onEditorRevertEvent
- * @param oArgs {Object}  Custom Event args. 
- * @private  
- */
-_onEditorRevertEvent : function(oArgs) {
-    this.fireEvent("editorRevertEvent", oArgs);
-},
-
-/**
- * Passes through saveEvent of the active CellEditor.
- *
- * @method _onEditorSaveEvent
- * @param oArgs {Object}  Custom Event args.  
- * @private 
- */
-_onEditorSaveEvent : function(oArgs) {
-    this.fireEvent("editorSaveEvent", oArgs);
-},
-
-/**
- * Passes through cancelEvent of the active CellEditor.
- *
- * @method _onEditorCancelEvent
- * @param oArgs {Object}  Custom Event args.
- * @private   
- */
-_onEditorCancelEvent : function(oArgs) {
-    this.fireEvent("editorCancelEvent", oArgs);
-},
-
-/**
- * Passes through blurEvent of the active CellEditor.
- *
- * @method _onEditorBlurEvent
- * @param oArgs {Object}  Custom Event args. 
- * @private  
- */
-_onEditorBlurEvent : function(oArgs) {
-    this.fireEvent("editorBlurEvent", oArgs);
-},
-
-/**
- * Passes through blockEvent of the active CellEditor.
- *
- * @method _onEditorBlockEvent
- * @param oArgs {Object}  Custom Event args. 
- * @private  
- */
-_onEditorBlockEvent : function(oArgs) {
-    this.fireEvent("editorBlockEvent", oArgs);
-},
-
-/**
- * Passes through unblockEvent of the active CellEditor.
- *
- * @method _onEditorUnblockEvent
- * @param oArgs {Object}  Custom Event args. 
- * @private  
- */
-_onEditorUnblockEvent : function(oArgs) {
-    this.fireEvent("editorUnblockEvent", oArgs);
-},
-
-/**
- * Public handler of the editorBlurEvent. By default, saves on blur if
- * disableBtns is true, otherwise cancels on blur. 
- *
- * @method onEditorBlurEvent
- * @param oArgs {Object}  Custom Event args.  
- */
-onEditorBlurEvent : function(oArgs) {
-    if(oArgs.editor.disableBtns) {
-        // Save on blur
-        if(oArgs.editor.save) { // Backward incompatible
-            oArgs.editor.save();
-        }
-    }      
-    else if(oArgs.editor.cancel) { // Backward incompatible
-        // Cancel on blur
-        oArgs.editor.cancel();
-    }      
-},
-
-/**
- * Public handler of the editorBlockEvent. By default, disables DataTable UI.
- *
- * @method onEditorBlockEvent
- * @param oArgs {Object}  Custom Event args.  
- */
-onEditorBlockEvent : function(oArgs) {
-    this.disable();
-},
-
-/**
- * Public handler of the editorUnblockEvent. By default, undisables DataTable UI.
- *
- * @method onEditorUnblockEvent
- * @param oArgs {Object}  Custom Event args.  
- */
-onEditorUnblockEvent : function(oArgs) {
-    this.undisable();
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// ABSTRACT METHODS
-
-/**
- * Overridable method gives implementers a hook to access data before
- * it gets added to RecordSet and rendered to the TBODY.
- *
- * @method doBeforeLoadData
- * @param sRequest {String} Original request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} additional arguments
- * @return {Boolean} Return true to continue loading data into RecordSet and
- * updating DataTable with new Records, false to cancel.
- */
-doBeforeLoadData : function(sRequest, oResponse, oPayload) {
-    return true;
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public Custom Event Handlers
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Overridable custom event handler to sort Column.
- *
- * @method onEventSortColumn
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventSortColumn : function(oArgs) {
-//TODO: support form elements in sortable columns
-    var evt = oArgs.event;
-    var target = oArgs.target;
-
-    var el = this.getThEl(target) || this.getTdEl(target);
-    if(el) {
-        var oColumn = this.getColumn(el);
-        if(oColumn.sortable) {
-            Ev.stopEvent(evt);
-            this.sortColumn(oColumn);
-        }
-    }
-    else {
-        YAHOO.log("Could not find Column for " + target, "warn", this.toString());
-    }
-},
-
-/**
- * Overridable custom event handler to select Column.
- *
- * @method onEventSelectColumn
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventSelectColumn : function(oArgs) {
-    this.selectColumn(oArgs.target);
-},
-
-/**
- * Overridable custom event handler to highlight Column. Accounts for spurious
- * caused-by-child events. 
- *
- * @method onEventHighlightColumn
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventHighlightColumn : function(oArgs) {
-    //TODO: filter for all spurious events at a lower level
-    if(!Dom.isAncestor(oArgs.target,Ev.getRelatedTarget(oArgs.event))) {
-        this.highlightColumn(oArgs.target);
-    }
-},
-
-/**
- * Overridable custom event handler to unhighlight Column. Accounts for spurious
- * caused-by-child events. 
- *
- * @method onEventUnhighlightColumn
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventUnhighlightColumn : function(oArgs) {
-    //TODO: filter for all spurious events at a lower level
-    if(!Dom.isAncestor(oArgs.target,Ev.getRelatedTarget(oArgs.event))) {
-        this.unhighlightColumn(oArgs.target);
-    }
-},
-
-/**
- * Overridable custom event handler to manage selection according to desktop paradigm.
- *
- * @method onEventSelectRow
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventSelectRow : function(oArgs) {
-    var sMode = this.get("selectionMode");
-    if(sMode == "single") {
-        this._handleSingleSelectionByMouse(oArgs);
-    }
-    else {
-        this._handleStandardSelectionByMouse(oArgs);
-    }
-},
-
-/**
- * Overridable custom event handler to select cell.
- *
- * @method onEventSelectCell
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventSelectCell : function(oArgs) {
-    var sMode = this.get("selectionMode");
-    if(sMode == "cellblock") {
-        this._handleCellBlockSelectionByMouse(oArgs);
-    }
-    else if(sMode == "cellrange") {
-        this._handleCellRangeSelectionByMouse(oArgs);
-    }
-    else {
-        this._handleSingleCellSelectionByMouse(oArgs);
-    }
-},
-
-/**
- * Overridable custom event handler to highlight row. Accounts for spurious
- * caused-by-child events. 
- *
- * @method onEventHighlightRow
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventHighlightRow : function(oArgs) {
-    //TODO: filter for all spurious events at a lower level
-    if(!Dom.isAncestor(oArgs.target,Ev.getRelatedTarget(oArgs.event))) {
-        this.highlightRow(oArgs.target);
-    }
-},
-
-/**
- * Overridable custom event handler to unhighlight row. Accounts for spurious
- * caused-by-child events. 
- *
- * @method onEventUnhighlightRow
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventUnhighlightRow : function(oArgs) {
-    //TODO: filter for all spurious events at a lower level
-    if(!Dom.isAncestor(oArgs.target,Ev.getRelatedTarget(oArgs.event))) {
-        this.unhighlightRow(oArgs.target);
-    }
-},
-
-/**
- * Overridable custom event handler to highlight cell. Accounts for spurious
- * caused-by-child events. 
- *
- * @method onEventHighlightCell
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventHighlightCell : function(oArgs) {
-    //TODO: filter for all spurious events at a lower level
-    if(!Dom.isAncestor(oArgs.target,Ev.getRelatedTarget(oArgs.event))) {
-        this.highlightCell(oArgs.target);
-    }
-},
-
-/**
- * Overridable custom event handler to unhighlight cell. Accounts for spurious
- * caused-by-child events. 
- *
- * @method onEventUnhighlightCell
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventUnhighlightCell : function(oArgs) {
-    //TODO: filter for all spurious events at a lower level
-    if(!Dom.isAncestor(oArgs.target,Ev.getRelatedTarget(oArgs.event))) {
-        this.unhighlightCell(oArgs.target);
-    }
-},
-
-/**
- * Overridable custom event handler to format cell.
- *
- * @method onEventFormatCell
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventFormatCell : function(oArgs) {
-    var target = oArgs.target;
-
-    var elCell = this.getTdEl(target);
-    if(elCell) {
-        var oColumn = this.getColumn(elCell.cellIndex);
-        this.formatCell(elCell.firstChild, this.getRecord(elCell), oColumn);
-    }
-    else {
-        YAHOO.log("Could not format cell " + target, "warn", this.toString());
-    }
-},
-
-/**
- * Overridable custom event handler to edit cell.
- *
- * @method onEventShowCellEditor
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventShowCellEditor : function(oArgs) {
-    this.showCellEditor(oArgs.target);
-},
-
-/**
- * Overridable custom event handler to save active CellEditor input.
- *
- * @method onEventSaveCellEditor
- */
-onEventSaveCellEditor : function(oArgs) {
-    if(this._oCellEditor) {
-        if(this._oCellEditor.save) {
-            this._oCellEditor.save();
-        }
-        // Backward compatibility
-        else {
-            this.saveCellEditor();
-        }
-    }
-},
-
-/**
- * Overridable custom event handler to cancel active CellEditor.
- *
- * @method onEventCancelCellEditor
- */
-onEventCancelCellEditor : function(oArgs) {
-    if(this._oCellEditor) {
-        if(this._oCellEditor.cancel) {
-            this._oCellEditor.cancel();
-        }
-        // Backward compatibility
-        else {
-            this.cancelCellEditor();
-        }
-    }
-},
-
-/**
- * Callback function receives data from DataSource and populates an entire
- * DataTable with Records and TR elements, clearing previous Records, if any.
- *
- * @method onDataReturnInitializeTable
- * @param sRequest {String} Original request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} (optional) Additional argument(s)
- */
-onDataReturnInitializeTable : function(sRequest, oResponse, oPayload) {
-    if((this instanceof DT) && this._sId) {
-        this.initializeTable();
-    
-        this.onDataReturnSetRows(sRequest,oResponse,oPayload);
-    }
-},
-
-/**
- * Callback function receives reponse from DataSource, replaces all existing
- * Records in  RecordSet, updates TR elements with new data, and updates state
- * UI for pagination and sorting from payload data, if necessary. 
- *  
- * @method onDataReturnReplaceRows
- * @param oRequest {MIXED} Original generated request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} (optional) Additional argument(s)
- */
-onDataReturnReplaceRows : function(oRequest, oResponse, oPayload) {
-    if((this instanceof DT) && this._sId) {
-        this.fireEvent("dataReturnEvent", {request:oRequest,response:oResponse,payload:oPayload});
-    
-        // Pass data through abstract method for any transformations
-        var ok    = this.doBeforeLoadData(oRequest, oResponse, oPayload),
-            pag   = this.get('paginator'),
-            index = 0;
-    
-        // Data ok to set
-        if(ok && oResponse && !oResponse.error && lang.isArray(oResponse.results)) {
-            // Update Records
-            this._oRecordSet.reset();
-    
-            if (this.get('dynamicData')) {
-                if (oPayload && oPayload.pagination &&
-                    lang.isNumber(oPayload.pagination.recordOffset)) {
-                    index = oPayload.pagination.recordOffset;
-                } else if (pag) {
-                    index = pag.getStartIndex();
-                }
-            }
-    
-            this._oRecordSet.setRecords(oResponse.results, index | 0);
-            
-            // Update state
-            this._handleDataReturnPayload(oRequest, oResponse, oPayload);
-            
-            // Update UI
-            this.render();    
-        }
-        // Error
-        else if(ok && oResponse.error) {
-            this.showTableMessage(this.get("MSG_ERROR"), DT.CLASS_ERROR);
-        }
-    }
-},
-
-/**
- * Callback function receives data from DataSource and appends to an existing
- * DataTable new Records and, if applicable, creates or updates
- * corresponding TR elements.
- *
- * @method onDataReturnAppendRows
- * @param sRequest {String} Original request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} (optional) Additional argument(s)
- */
-onDataReturnAppendRows : function(sRequest, oResponse, oPayload) {
-    if((this instanceof DT) && this._sId) {
-        this.fireEvent("dataReturnEvent", {request:sRequest,response:oResponse,payload:oPayload});
-    
-        // Pass data through abstract method for any transformations
-        var ok = this.doBeforeLoadData(sRequest, oResponse, oPayload);
-    
-        // Data ok to append
-        if(ok && oResponse && !oResponse.error && lang.isArray(oResponse.results)) {        
-            // Append rows
-            this.addRows(oResponse.results);
-    
-            // Update state
-            this._handleDataReturnPayload(sRequest, oResponse, oPayload);
-        }
-        // Error
-        else if(ok && oResponse.error) {
-            this.showTableMessage(this.get("MSG_ERROR"), DT.CLASS_ERROR);
-        }
-    }
-},
-
-/**
- * Callback function receives data from DataSource and inserts new records
- * starting at the index specified in oPayload.insertIndex. The value for
- * oPayload.insertIndex can be populated when sending the request to the DataSource,
- * or by accessing oPayload.insertIndex with the doBeforeLoadData() method at runtime.
- * If applicable, creates or updates corresponding TR elements.
- *
- * @method onDataReturnInsertRows
- * @param sRequest {String} Original request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} Argument payload, looks in oPayload.insertIndex.
- */
-onDataReturnInsertRows : function(sRequest, oResponse, oPayload) {
-    if((this instanceof DT) && this._sId) {
-        this.fireEvent("dataReturnEvent", {request:sRequest,response:oResponse,payload:oPayload});
-    
-        // Pass data through abstract method for any transformations
-        var ok = this.doBeforeLoadData(sRequest, oResponse, oPayload);
-    
-        // Data ok to append
-        if(ok && oResponse && !oResponse.error && lang.isArray(oResponse.results)) {
-            // Insert rows
-            this.addRows(oResponse.results, oPayload.insertIndex | 0);
-    
-            // Update state
-            this._handleDataReturnPayload(sRequest, oResponse, oPayload);
-        }
-        // Error
-        else if(ok && oResponse.error) {
-            this.showTableMessage(this.get("MSG_ERROR"), DT.CLASS_ERROR);
-        }
-    }
-},
-
-/**
- * Callback function receives reponse from DataSource and populates the
- * RecordSet with the results.
- *  
- * @method onDataReturnSetRows
- * @param oRequest {MIXED} Original generated request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} (optional) Additional argument(s)
- */
-onDataReturnSetRows : function(oRequest, oResponse, oPayload) {
-    if((this instanceof DT) && this._sId) {
-        this.fireEvent("dataReturnEvent", {request:oRequest,response:oResponse,payload:oPayload});
-    
-        // Pass data through abstract method for any transformations
-        var ok    = this.doBeforeLoadData(oRequest, oResponse, oPayload),
-            pag   = this.get('paginator'),
-            index = 0;
-    
-        // Data ok to set
-        if(ok && oResponse && !oResponse.error && lang.isArray(oResponse.results)) {
-            // Update Records
-            if (this.get('dynamicData')) {
-                if (oPayload && oPayload.pagination &&
-                    lang.isNumber(oPayload.pagination.recordOffset)) {
-                    index = oPayload.pagination.recordOffset;
-                } else if (pag) {
-                    index = pag.getStartIndex();
-                }
-            }
-    
-            this._oRecordSet.setRecords(oResponse.results, index | 0);
-    
-            // Update state
-            this._handleDataReturnPayload(oRequest, oResponse, oPayload);
-            
-            // Update UI
-            this.render();
-        }
-        // Error
-        else if(ok && oResponse.error) {
-            this.showTableMessage(this.get("MSG_ERROR"), DT.CLASS_ERROR);
-        }
-    }
-    else {
-        YAHOO.log("Instance destroyed before data returned.","info",this.toString());
-    }
-},
-
-/**
- * Hook to update oPayload before consumption.
- *  
- * @method handleDataReturnPayload
- * @param oRequest {MIXED} Original generated request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} State values.
- * @return oPayload {MIXED} State values.
- */
-handleDataReturnPayload : function (oRequest, oResponse, oPayload) {
-    return oPayload;
-},
-
-/**
- * Updates the DataTable with state data sent in an onDataReturn* payload.
- *  
- * @method handleDataReturnPayload
- * @param oRequest {MIXED} Original generated request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} State values
- */
-_handleDataReturnPayload : function (oRequest, oResponse, oPayload) {
-    oPayload = this.handleDataReturnPayload(oRequest, oResponse, oPayload);
-    if(oPayload) {
-        // Update pagination
-        var oPaginator = this.get('paginator');
-        if (oPaginator) {
-            // Update totalRecords
-            if(this.get("dynamicData")) {
-                if (lang.isNumber(oPayload.totalRecords)) {
-                    oPaginator.set('totalRecords',oPayload.totalRecords);
-                }
-            }
-            else {
-                oPaginator.set('totalRecords',this._oRecordSet.getLength());
-            }
-            // Update other paginator values
-            if (lang.isObject(oPayload.pagination)) {
-                oPaginator.set('rowsPerPage',oPayload.pagination.rowsPerPage);
-                oPaginator.set('recordOffset',oPayload.pagination.recordOffset);
-            }
-        }
-
-        // Update sorting
-        if (oPayload.sortedBy) {
-            // Set the sorting values in preparation for refresh
-            this.set('sortedBy', oPayload.sortedBy);
-        }
-        // Backwards compatibility for sorting
-        else if (oPayload.sorting) {
-            // Set the sorting values in preparation for refresh
-            this.set('sortedBy', oPayload.sorting);
-        }
-    }
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Custom Events
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Fired when the DataTable's rows are rendered from an initialized state.
-     *
-     * @event initEvent
-     */
-
-    /**
-     * Fired when the DataTable's DOM is rendered or modified.
-     *
-     * @event renderEvent
-     */
-
-    /**
-     * Fired when the DataTable's post-render routine is complete, including
-     * Column width validations.
-     *
-     * @event postRenderEvent
-     */
-
-    /**
-     * Fired when the DataTable is disabled.
-     *
-     * @event disableEvent
-     */
-
-    /**
-     * Fired when the DataTable is undisabled.
-     *
-     * @event undisableEvent
-     */
-
-    /**
-     * Fired when data is returned from DataSource but before it is consumed by
-     * DataTable.
-     *
-     * @event dataReturnEvent
-     * @param oArgs.request {String} Original request.
-     * @param oArgs.response {Object} Response object.
-     */
-
-    /**
-     * Fired when the DataTable has a focus event.
-     *
-     * @event tableFocusEvent
-     */
-
-    /**
-     * Fired when the DataTable THEAD element has a focus event.
-     *
-     * @event theadFocusEvent
-     */
-
-    /**
-     * Fired when the DataTable TBODY element has a focus event.
-     *
-     * @event tbodyFocusEvent
-     */
-
-    /**
-     * Fired when the DataTable has a blur event.
-     *
-     * @event tableBlurEvent
-     */
-
-    /*TODO implement theadBlurEvent
-     * Fired when the DataTable THEAD element has a blur event.
-     *
-     * @event theadBlurEvent
-     */
-
-    /*TODO: implement tbodyBlurEvent
-     * Fired when the DataTable TBODY element has a blur event.
-     *
-     * @event tbodyBlurEvent
-     */
-
-    /**
-     * Fired when the DataTable has a key event.
-     *
-     * @event tableKeyEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     */
-
-    /**
-     * Fired when the DataTable THEAD element has a key event.
-     *
-     * @event theadKeyEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     */
-
-    /**
-     * Fired when the DataTable TBODY element has a key event.
-     *
-     * @event tbodyKeyEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     */
-
-    /**
-     * Fired when the DataTable has a mouseover.
-     *
-     * @event tableMouseoverEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     *
-     */
-
-    /**
-     * Fired when the DataTable has a mouseout.
-     *
-     * @event tableMouseoutEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     *
-     */
-
-    /**
-     * Fired when the DataTable has a mousedown.
-     *
-     * @event tableMousedownEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     *
-     */
-
-    /**
-     * Fired when the DataTable has a mouseup.
-     *
-     * @event tableMouseupEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     *
-     */
-
-    /**
-     * Fired when the DataTable has a click.
-     *
-     * @event tableClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     *
-     */
-
-    /**
-     * Fired when the DataTable has a dblclick.
-     *
-     * @event tableDblclickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     *
-     */
-
-    /**
-     * Fired when a message is shown in the DataTable's message element.
-     *
-     * @event tableMsgShowEvent
-     * @param oArgs.html {String} The HTML displayed.
-     * @param oArgs.className {String} The className assigned.
-     *
-     */
-
-    /**
-     * Fired when the DataTable's message element is hidden.
-     *
-     * @event tableMsgHideEvent
-     */
-
-    /**
-     * Fired when a THEAD row has a mouseover.
-     *
-     * @event theadRowMouseoverEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a THEAD row has a mouseout.
-     *
-     * @event theadRowMouseoutEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a THEAD row has a mousedown.
-     *
-     * @event theadRowMousedownEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a THEAD row has a mouseup.
-     *
-     * @event theadRowMouseupEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a THEAD row has a click.
-     *
-     * @event theadRowClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a THEAD row has a dblclick.
-     *
-     * @event theadRowDblclickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a THEAD cell has a mouseover.
-     *
-     * @event theadCellMouseoverEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TH element.
-     *
-     */
-
-    /**
-     * Fired when a THEAD cell has a mouseout.
-     *
-     * @event theadCellMouseoutEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TH element.
-     *
-     */
-
-    /**
-     * Fired when a THEAD cell has a mousedown.
-     *
-     * @event theadCellMousedownEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TH element.
-     */
-
-    /**
-     * Fired when a THEAD cell has a mouseup.
-     *
-     * @event theadCellMouseupEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TH element.
-     */
-
-    /**
-     * Fired when a THEAD cell has a click.
-     *
-     * @event theadCellClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TH element.
-     */
-
-    /**
-     * Fired when a THEAD cell has a dblclick.
-     *
-     * @event theadCellDblclickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TH element.
-     */
-
-    /**
-     * Fired when a THEAD label has a mouseover.
-     *
-     * @event theadLabelMouseoverEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The SPAN element.
-     *
-     */
-
-    /**
-     * Fired when a THEAD label has a mouseout.
-     *
-     * @event theadLabelMouseoutEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The SPAN element.
-     *
-     */
-
-    /**
-     * Fired when a THEAD label has a mousedown.
-     *
-     * @event theadLabelMousedownEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The SPAN element.
-     */
-
-    /**
-     * Fired when a THEAD label has a mouseup.
-     *
-     * @event theadLabelMouseupEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The SPAN element.
-     */
-
-    /**
-     * Fired when a THEAD label has a click.
-     *
-     * @event theadLabelClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The SPAN element.
-     */
-
-    /**
-     * Fired when a THEAD label has a dblclick.
-     *
-     * @event theadLabelDblclickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The SPAN element.
-     */
-
-    /**
-     * Fired when a column is sorted.
-     *
-     * @event columnSortEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     * @param oArgs.dir {String} Sort direction: YAHOO.widget.DataTable.CLASS_ASC
-     * or YAHOO.widget.DataTable.CLASS_DESC.
-     */
-
-    /**
-     * Fired when a column width is set.
-     *
-     * @event columnSetWidthEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     * @param oArgs.width {Number} The width in pixels.
-     */
-
-    /**
-     * Fired when a column width is unset.
-     *
-     * @event columnUnsetWidthEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     */
-
-    /**
-     * Fired when a column is drag-resized.
-     *
-     * @event columnResizeEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     * @param oArgs.target {HTMLElement} The TH element.
-     * @param oArgs.width {Number} Width in pixels.     
-     */
-
-    /**
-     * Fired when a Column is moved to a new index.
-     *
-     * @event columnReorderEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     * @param oArgs.oldIndex {Number} The previous index position.
-     */
-
-    /**
-     * Fired when a column is hidden.
-     *
-     * @event columnHideEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     */
-
-    /**
-     * Fired when a column is shown.
-     *
-     * @event columnShowEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     */
-
-    /**
-     * Fired when a column is selected.
-     *
-     * @event columnSelectEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     */
-
-    /**
-     * Fired when a column is unselected.
-     *
-     * @event columnUnselectEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     */
-    /**
-     * Fired when a column is removed.
-     *
-     * @event columnRemoveEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     */
-
-    /**
-     * Fired when a column is inserted.
-     *
-     * @event columnInsertEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     * @param oArgs.index {Number} The index position.
-     */
-
-    /**
-     * Fired when a column is highlighted.
-     *
-     * @event columnHighlightEvent
-     * @param oArgs.column {YAHOO.widget.Column} The highlighted Column.
-     */
-
-    /**
-     * Fired when a column is unhighlighted.
-     *
-     * @event columnUnhighlightEvent
-     * @param oArgs.column {YAHOO.widget.Column} The unhighlighted Column.
-     */
-
-
-    /**
-     * Fired when a row has a mouseover.
-     *
-     * @event rowMouseoverEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a row has a mouseout.
-     *
-     * @event rowMouseoutEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a row has a mousedown.
-     *
-     * @event rowMousedownEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a row has a mouseup.
-     *
-     * @event rowMouseupEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a row has a click.
-     *
-     * @event rowClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a row has a dblclick.
-     *
-     * @event rowDblclickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a row is added.
-     *
-     * @event rowAddEvent
-     * @param oArgs.record {YAHOO.widget.Record} The added Record.
-     */
-     
-    /**
-     * Fired when rows are added.
-     *
-     * @event rowsAddEvent
-     * @param oArgs.record {YAHOO.widget.Record[]} The added Records.
-     */
-
-    /**
-     * Fired when a row is updated.
-     *
-     * @event rowUpdateEvent
-     * @param oArgs.record {YAHOO.widget.Record} The updated Record.
-     * @param oArgs.oldData {Object} Object literal of the old data.
-     */
-
-    /**
-     * Fired when a row is deleted.
-     *
-     * @event rowDeleteEvent
-     * @param oArgs.oldData {Object} Object literal of the deleted data.
-     * @param oArgs.recordIndex {Number} Index of the deleted Record.
-     * @param oArgs.trElIndex {Number} Index of the deleted TR element, if on current page.
-     */
-     
-    /**
-     * Fired when rows are deleted.
-     *
-     * @event rowsDeleteEvent
-     * @param oArgs.oldData {Object[]} Array of object literals of the deleted data.
-     * @param oArgs.recordIndex {Number} Index of the first deleted Record.
-     * @param oArgs.count {Number} Number of deleted Records.
-     */
-
-    /**
-     * Fired when a row is selected.
-     *
-     * @event rowSelectEvent
-     * @param oArgs.el {HTMLElement} The selected TR element, if applicable.
-     * @param oArgs.record {YAHOO.widget.Record} The selected Record.
-     */
-
-    /**
-     * Fired when a row is unselected.
-     *
-     * @event rowUnselectEvent
-     * @param oArgs.el {HTMLElement} The unselected TR element, if applicable.
-     * @param oArgs.record {YAHOO.widget.Record} The unselected Record.
-     */
-
-    /**
-     * Fired when all row selections are cleared.
-     *
-     * @event unselectAllRowsEvent
-     */
-
-    /**
-     * Fired when a row is highlighted.
-     *
-     * @event rowHighlightEvent
-     * @param oArgs.el {HTMLElement} The highlighted TR element.
-     * @param oArgs.record {YAHOO.widget.Record} The highlighted Record.
-     */
-
-    /**
-     * Fired when a row is unhighlighted.
-     *
-     * @event rowUnhighlightEvent
-     * @param oArgs.el {HTMLElement} The highlighted TR element.
-     * @param oArgs.record {YAHOO.widget.Record} The highlighted Record.
-     */
-
-    /**
-     * Fired when a cell is updated.
-     *
-     * @event cellUpdateEvent
-     * @param oArgs.record {YAHOO.widget.Record} The updated Record.
-     * @param oArgs.column {YAHOO.widget.Column} The updated Column.
-     * @param oArgs.oldData {Object} Object literal of the old data.
-     */
-
-    /**
-     * Fired when a cell has a mouseover.
-     *
-     * @event cellMouseoverEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TD element.
-     */
-
-    /**
-     * Fired when a cell has a mouseout.
-     *
-     * @event cellMouseoutEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TD element.
-     */
-
-    /**
-     * Fired when a cell has a mousedown.
-     *
-     * @event cellMousedownEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TD element.
-     */
-
-    /**
-     * Fired when a cell has a mouseup.
-     *
-     * @event cellMouseupEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TD element.
-     */
-
-    /**
-     * Fired when a cell has a click.
-     *
-     * @event cellClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TD element.
-     */
-
-    /**
-     * Fired when a cell has a dblclick.
-     *
-     * @event cellDblclickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TD element.
-     */
-
-    /**
-     * Fired when a cell is formatted.
-     *
-     * @event cellFormatEvent
-     * @param oArgs.el {HTMLElement} The formatted TD element.
-     * @param oArgs.record {YAHOO.widget.Record} The associated Record instance.
-     * @param oArgs.column {YAHOO.widget.Column} The associated Column instance.
-     * @param oArgs.key {String} (deprecated) The key of the formatted cell.
-     */
-
-    /**
-     * Fired when a cell is selected.
-     *
-     * @event cellSelectEvent
-     * @param oArgs.el {HTMLElement} The selected TD element.
-     * @param oArgs.record {YAHOO.widget.Record} The associated Record instance.
-     * @param oArgs.column {YAHOO.widget.Column} The associated Column instance.
-     * @param oArgs.key {String} (deprecated) The key of the selected cell.
-     */
-
-    /**
-     * Fired when a cell is unselected.
-     *
-     * @event cellUnselectEvent
-     * @param oArgs.el {HTMLElement} The unselected TD element.
-     * @param oArgs.record {YAHOO.widget.Record} The associated Record.
-     * @param oArgs.column {YAHOO.widget.Column} The associated Column instance.
-     * @param oArgs.key {String} (deprecated) The key of the unselected cell.
-
-     */
-
-    /**
-     * Fired when a cell is highlighted.
-     *
-     * @event cellHighlightEvent
-     * @param oArgs.el {HTMLElement} The highlighted TD element.
-     * @param oArgs.record {YAHOO.widget.Record} The associated Record instance.
-     * @param oArgs.column {YAHOO.widget.Column} The associated Column instance.
-     * @param oArgs.key {String} (deprecated) The key of the highlighted cell.
-
-     */
-
-    /**
-     * Fired when a cell is unhighlighted.
-     *
-     * @event cellUnhighlightEvent
-     * @param oArgs.el {HTMLElement} The unhighlighted TD element.
-     * @param oArgs.record {YAHOO.widget.Record} The associated Record instance.
-     * @param oArgs.column {YAHOO.widget.Column} The associated Column instance.
-     * @param oArgs.key {String} (deprecated) The key of the unhighlighted cell.
-
-     */
-
-    /**
-     * Fired when all cell selections are cleared.
-     *
-     * @event unselectAllCellsEvent
-     */
-
-    /**
-     * Fired when a CellEditor is shown.
-     *
-     * @event editorShowEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     */
-
-    /**
-     * Fired when a CellEditor has a keydown.
-     *
-     * @event editorKeydownEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     * @param oArgs.event {HTMLEvent} The event object.
-     */
-
-    /**
-     * Fired when a CellEditor input is reverted.
-     *
-     * @event editorRevertEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     * @param oArgs.newData {Object} New data value from form input field.
-     * @param oArgs.oldData {Object} Old data value.
-     */
-
-    /**
-     * Fired when a CellEditor input is saved.
-     *
-     * @event editorSaveEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     * @param oArgs.newData {Object} New data value from form input field.
-     * @param oArgs.oldData {Object} Old data value.
-     */
-
-    /**
-     * Fired when a CellEditor input is canceled.
-     *
-     * @event editorCancelEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     */
-
-    /**
-     * Fired when a CellEditor has a blur event.
-     *
-     * @event editorBlurEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     */
-
-    /**
-     * Fired when a CellEditor is blocked.
-     *
-     * @event editorBlockEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     */
-
-    /**
-     * Fired when a CellEditor is unblocked.
-     *
-     * @event editorUnblockEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     */
-
-
-
-
-
-    /**
-     * Fired when a link is clicked.
-     *
-     * @event linkClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The A element.
-     */
-
-    /**
-     * Fired when a BUTTON element is clicked.
-     *
-     * @event buttonClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The BUTTON element.
-     */
-
-    /**
-     * Fired when a CHECKBOX element is clicked.
-     *
-     * @event checkboxClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The CHECKBOX element.
-     */
-
-    /**
-     * Fired when a SELECT element is changed.
-     *
-     * @event dropdownChangeEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The SELECT element.
-     */
-
-    /**
-     * Fired when a RADIO element is clicked.
-     *
-     * @event radioClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The RADIO element.
-     */
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Deprecated APIs
-//
-/////////////////////////////////////////////////////////////////////////////
-  
-/*
- * @method showCellEditorBtns
- * @deprecated Use CellEditor.renderBtns() 
- */
-showCellEditorBtns : function(elContainer) {
-    // Buttons
-    var elBtnsDiv = elContainer.appendChild(document.createElement("div"));
-    Dom.addClass(elBtnsDiv, DT.CLASS_BUTTON);
-
-    // Save button
-    var elSaveBtn = elBtnsDiv.appendChild(document.createElement("button"));
-    Dom.addClass(elSaveBtn, DT.CLASS_DEFAULT);
-    elSaveBtn.innerHTML = "OK";
-    Ev.addListener(elSaveBtn, "click", function(oArgs, oSelf) {
-        oSelf.onEventSaveCellEditor(oArgs, oSelf);
-        oSelf.focusTbodyEl();
-    }, this, true);
-
-    // Cancel button
-    var elCancelBtn = elBtnsDiv.appendChild(document.createElement("button"));
-    elCancelBtn.innerHTML = "Cancel";
-    Ev.addListener(elCancelBtn, "click", function(oArgs, oSelf) {
-        oSelf.onEventCancelCellEditor(oArgs, oSelf);
-        oSelf.focusTbodyEl();
-    }, this, true);
-
-    YAHOO.log("The method showCellEditorBtns() has been deprecated." +
-            " Please use the CellEditor class.", "warn", this.toString());
-},
-
-/**
- * @method resetCellEditor
- * @deprecated Use destroyCellEditor 
- */
-resetCellEditor : function() {
-    var elContainer = this._oCellEditor.container;
-    elContainer.style.display = "none";
-    Ev.purgeElement(elContainer, true);
-    elContainer.innerHTML = "";
-    this._oCellEditor.value = null;
-    this._oCellEditor.isActive = false;
-
-    YAHOO.log("The method resetCellEditor() has been deprecated." +
-            " Please use the CellEditor class.", "warn", this.toString());
-},
-
-/**
- * @event editorUpdateEvent
- * @deprecated Use CellEditor class.
- */
-
-/**
- * @method getBody
- * @deprecated Use getTbodyEl().
- */
-getBody : function() {
-    // Backward compatibility
-    YAHOO.log("The method getBody() has been deprecated" +
-            " in favor of getTbodyEl()", "warn", this.toString());
-    return this.getTbodyEl();
-},
-
-/**
- * @method getCell
- * @deprecated Use getTdEl().
- */
-getCell : function(index) {
-    // Backward compatibility
-    YAHOO.log("The method getCell() has been deprecated" +
-            " in favor of getTdEl()", "warn", this.toString());
-    return this.getTdEl(index);
-},
-
-/**
- * @method getRow
- * @deprecated Use getTrEl().
- */
-getRow : function(index) {
-    // Backward compatibility
-    YAHOO.log("The method getRow() has been deprecated" +
-            " in favor of getTrEl()", "warn", this.toString());
-    return this.getTrEl(index);
-},
-
-/**
- * @method refreshView
- * @deprecated Use render.
- */
-refreshView : function() {
-    // Backward compatibility
-    YAHOO.log("The method refreshView() has been deprecated" +
-            " in favor of render()", "warn", this.toString());
-    this.render();
-},
-
-/**
- * @method select
- * @deprecated Use selectRow.
- */
-select : function(els) {
-    // Backward compatibility
-    YAHOO.log("The method select() has been deprecated" +
-            " in favor of selectRow()", "warn", this.toString());
-    if(!lang.isArray(els)) {
-        els = [els];
-    }
-    for(var i=0; i<els.length; i++) {
-        this.selectRow(els[i]);
-    }
-},
-
-/**
- * @method onEventEditCell
- * @deprecated Use onEventShowCellEditor.
- */
-onEventEditCell : function(oArgs) {
-    // Backward compatibility
-    YAHOO.log("The method onEventEditCell() has been deprecated" +
-        " in favor of onEventShowCellEditor()", "warn", this.toString());
-    this.onEventShowCellEditor(oArgs);
-},
-
-/**
- * @method _syncColWidths
- * @deprecated Use validateColumnWidths.
- */
-_syncColWidths : function() {
-    // Backward compatibility
-    YAHOO.log("The method _syncColWidths() has been deprecated" +
-        " in favor of validateColumnWidths()", "warn", this.toString());
-    this.validateColumnWidths();
-}
-
-/**
- * @event headerRowMouseoverEvent
- * @deprecated Use theadRowMouseoverEvent.
- */
-
-/**
- * @event headerRowMouseoutEvent
- * @deprecated Use theadRowMouseoutEvent.
- */
-
-/**
- * @event headerRowMousedownEvent
- * @deprecated Use theadRowMousedownEvent.
- */
-
-/**
- * @event headerRowClickEvent
- * @deprecated Use theadRowClickEvent.
- */
-
-/**
- * @event headerRowDblclickEvent
- * @deprecated Use theadRowDblclickEvent.
- */
-
-/**
- * @event headerCellMouseoverEvent
- * @deprecated Use theadCellMouseoverEvent.
- */
-
-/**
- * @event headerCellMouseoutEvent
- * @deprecated Use theadCellMouseoutEvent.
- */
-
-/**
- * @event headerCellMousedownEvent
- * @deprecated Use theadCellMousedownEvent.
- */
-
-/**
- * @event headerCellClickEvent
- * @deprecated Use theadCellClickEvent.
- */
-
-/**
- * @event headerCellDblclickEvent
- * @deprecated Use theadCellDblclickEvent.
- */
-
-/**
- * @event headerLabelMouseoverEvent
- * @deprecated Use theadLabelMouseoverEvent.
- */
-
-/**
- * @event headerLabelMouseoutEvent
- * @deprecated Use theadLabelMouseoutEvent.
- */
-
-/**
- * @event headerLabelMousedownEvent
- * @deprecated Use theadLabelMousedownEvent.
- */
-
-/**
- * @event headerLabelClickEvent
- * @deprecated Use theadLabelClickEvent.
- */
-
-/**
- * @event headerLabelDbllickEvent
- * @deprecated Use theadLabelDblclickEvent.
- */
-
-});
-
-/**
- * Alias for onDataReturnSetRows for backward compatibility
- * @method onDataReturnSetRecords
- * @deprecated Use onDataReturnSetRows
- */
-DT.prototype.onDataReturnSetRecords = DT.prototype.onDataReturnSetRows;
-
-/**
- * Alias for onPaginatorChange for backward compatibility
- * @method onPaginatorChange
- * @deprecated Use onPaginatorChangeRequest
- */
-DT.prototype.onPaginatorChange = DT.prototype.onPaginatorChangeRequest;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Deprecated static APIs
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * @method DataTable.formatTheadCell
- * @deprecated  Use formatTheadCell.
- */
-DT.formatTheadCell = function() {};
-
-/**
- * @method DataTable.editCheckbox
- * @deprecated  Use YAHOO.widget.CheckboxCellEditor.
- */
-DT.editCheckbox = function() {};
-
-/**
- * @method DataTable.editDate
- * @deprecated Use YAHOO.widget.DateCellEditor.
- */
-DT.editDate = function() {};
-
-/**
- * @method DataTable.editDropdown
- * @deprecated Use YAHOO.widget.DropdownCellEditor.
- */
-DT.editDropdown = function() {};
-
-/**
- * @method DataTable.editRadio
- * @deprecated Use YAHOO.widget.RadioCellEditor.
- */
-DT.editRadio = function() {};
-
-/**
- * @method DataTable.editTextarea
- * @deprecated Use YAHOO.widget.TextareaCellEditor
- */
-DT.editTextarea = function() {};
-
-/**
- * @method DataTable.editTextbox
- * @deprecated Use YAHOO.widget.TextboxCellEditor
- */
-DT.editTextbox= function() {};
-
-})();
-
-(function () {
-
-var lang   = YAHOO.lang,
-    util   = YAHOO.util,
-    widget = YAHOO.widget,
-    ua     = YAHOO.env.ua,
-    
-    Dom    = util.Dom,
-    Ev     = util.Event,
-    DS     = util.DataSourceBase,
-    DT     = widget.DataTable,
-    Pag    = widget.Paginator;
-    
-/**
- * The ScrollingDataTable class extends the DataTable class to provide
- * functionality for x-scrolling, y-scrolling, and xy-scrolling.
- *
- * @namespace YAHOO.widget
- * @class ScrollingDataTable
- * @extends YAHOO.widget.DataTable
- * @constructor
- * @param elContainer {HTMLElement} Container element for the TABLE.
- * @param aColumnDefs {Object[]} Array of object literal Column definitions.
- * @param oDataSource {YAHOO.util.DataSource} DataSource instance.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-widget.ScrollingDataTable = function(elContainer,aColumnDefs,oDataSource,oConfigs) {
-    oConfigs = oConfigs || {};
-    
-    // Prevent infinite loop
-    if(oConfigs.scrollable) {
-        oConfigs.scrollable = false;
-    }
-
-    widget.ScrollingDataTable.superclass.constructor.call(this, elContainer,aColumnDefs,oDataSource,oConfigs); 
-
-    // Once per instance
-    this.subscribe("columnShowEvent", this._onColumnChange);
-};
-
-var SDT = widget.ScrollingDataTable;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public constants
-//
-/////////////////////////////////////////////////////////////////////////////
-lang.augmentObject(SDT, {
-
-    /**
-     * Class name assigned to inner DataTable header container.
-     *
-     * @property DataTable.CLASS_HEADER
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-hd"
-     */
-    CLASS_HEADER : "yui-dt-hd",
-    
-    /**
-     * Class name assigned to inner DataTable body container.
-     *
-     * @property DataTable.CLASS_BODY
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-bd"
-     */
-    CLASS_BODY : "yui-dt-bd"
-});
-
-lang.extend(SDT, DT, {
-
-/**
- * Container for fixed header TABLE element.
- *
- * @property _elHdContainer
- * @type HTMLElement
- * @private
- */
-_elHdContainer : null,
-
-/**
- * Fixed header TABLE element.
- *
- * @property _elHdTable
- * @type HTMLElement
- * @private
- */
-_elHdTable : null,
-
-/**
- * Container for scrolling body TABLE element.
- *
- * @property _elBdContainer
- * @type HTMLElement
- * @private
- */
-_elBdContainer : null,
-
-/**
- * Body THEAD element.
- *
- * @property _elBdThead
- * @type HTMLElement
- * @private
- */
-_elBdThead : null,
-
-/**
- * Offscreen container to temporarily clone SDT for auto-width calculation.
- *
- * @property _elTmpContainer
- * @type HTMLElement
- * @private
- */
-_elTmpContainer : null,
-
-/**
- * Offscreen TABLE element for auto-width calculation.
- *
- * @property _elTmpTable
- * @type HTMLElement
- * @private
- */
-_elTmpTable : null,
-
-/**
- * True if x-scrollbar is currently visible.
- * @property _bScrollbarX
- * @type Boolean
- * @private 
- */
-_bScrollbarX : null,
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Superclass methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Implementation of Element's abstract method. Sets up config values.
- *
- * @method initAttributes
- * @param oConfigs {Object} (Optional) Object literal definition of configuration values.
- * @private
- */
-
-initAttributes : function(oConfigs) {
-    oConfigs = oConfigs || {};
-    SDT.superclass.initAttributes.call(this, oConfigs);
-
-    /**
-    * @attribute width
-    * @description Table width for scrollable tables. Note: When setting width
-    * and height at runtime, please set height first.
-    * @type String
-    */
-    this.setAttributeConfig("width", {
-        value: null,
-        validator: lang.isString,
-        method: function(oParam) {
-            if(this._elHdContainer && this._elBdContainer) {
-                this._elHdContainer.style.width = oParam;
-                this._elBdContainer.style.width = oParam;            
-                this._syncScrollX();      
-                this._syncScrollOverhang();
-            }
-        }
-    });
-
-    /**
-    * @attribute height
-    * @description Table body height for scrollable tables, not including headers.
-    * @type String
-    */
-    this.setAttributeConfig("height", {
-        value: null,
-        validator: lang.isString,
-        method: function(oParam) {
-            if(this._elHdContainer && this._elBdContainer) {
-                this._elBdContainer.style.height = oParam;    
-                this._syncScrollX();   
-                this._syncScrollY();
-                this._syncScrollOverhang();
-            }
-        }
-    });
-
-    /**
-    * @attribute COLOR_COLUMNFILLER
-    * @description CSS color value assigned to header filler on scrollable tables.  
-    * @type String
-    * @default "#F2F2F2"
-    */
-    this.setAttributeConfig("COLOR_COLUMNFILLER", {
-        value: "#F2F2F2",
-        validator: lang.isString,
-        method: function(oParam) {
-            this._elHdContainer.style.backgroundColor = oParam;
-        }
-    });
-},
-
-/**
- * Initializes DOM elements for a ScrollingDataTable, including creation of
- * two separate TABLE elements.
- *
- * @method _initDomElements
- * @param elContainer {HTMLElement | String} HTML DIV element by reference or ID. 
- * return {Boolean} False in case of error, otherwise true 
- * @private
- */
-_initDomElements : function(elContainer) {
-    // Outer and inner containers
-    this._initContainerEl(elContainer);
-    if(this._elContainer && this._elHdContainer && this._elBdContainer) {
-        // TABLEs
-        this._initTableEl();
-        
-        if(this._elHdTable && this._elTable) {
-            // COLGROUPs
-            ///this._initColgroupEl(this._elHdTable, this._elTable);  
-            this._initColgroupEl(this._elHdTable);        
-            
-            // THEADs
-            this._initTheadEl(this._elHdTable, this._elTable);
-            
-            // Primary TBODY
-            this._initTbodyEl(this._elTable);
-            // Message TBODY
-            this._initMsgTbodyEl(this._elTable);            
-        }
-    }
-    if(!this._elContainer || !this._elTable || !this._elColgroup ||  !this._elThead || !this._elTbody || !this._elMsgTbody ||
-            !this._elHdTable || !this._elBdThead) {
-        YAHOO.log("Could not instantiate DataTable due to an invalid DOM elements", "error", this.toString());
-        return false;
-    }
-    else {
-        return true;
-    }
-},
-
-/**
- * Destroy's the DataTable outer and inner container elements, if available.
- *
- * @method _destroyContainerEl
- * @param elContainer {HTMLElement} Reference to the container element. 
- * @private
- */
-_destroyContainerEl : function(elContainer) {
-    Dom.removeClass(elContainer, DT.CLASS_SCROLLABLE);
-    SDT.superclass._destroyContainerEl.call(this, elContainer);
-    this._elHdContainer = null;
-    this._elBdContainer = null;
-},
-
-/**
- * Initializes the DataTable outer container element and creates inner header
- * and body container elements.
- *
- * @method _initContainerEl
- * @param elContainer {HTMLElement | String} HTML DIV element by reference or ID.
- * @private
- */
-_initContainerEl : function(elContainer) {
-    SDT.superclass._initContainerEl.call(this, elContainer);
-    
-    if(this._elContainer) {
-        elContainer = this._elContainer; // was constructor input, now is DOM ref
-        Dom.addClass(elContainer, DT.CLASS_SCROLLABLE);
-        
-        // Container for header TABLE
-        var elHdContainer = document.createElement("div");
-        elHdContainer.style.width = this.get("width") || "";
-        elHdContainer.style.backgroundColor = this.get("COLOR_COLUMNFILLER");
-        Dom.addClass(elHdContainer, SDT.CLASS_HEADER);
-        this._elHdContainer = elHdContainer;
-        elContainer.appendChild(elHdContainer);
-    
-        // Container for body TABLE
-        var elBdContainer = document.createElement("div");
-        elBdContainer.style.width = this.get("width") || "";
-        elBdContainer.style.height = this.get("height") || "";
-        Dom.addClass(elBdContainer, SDT.CLASS_BODY);
-        Ev.addListener(elBdContainer, "scroll", this._onScroll, this); // to sync horiz scroll headers
-        this._elBdContainer = elBdContainer;
-        elContainer.appendChild(elBdContainer);
-    }
-},
-
-/**
- * Creates HTML markup CAPTION element.
- *
- * @method _initCaptionEl
- * @param sCaption {String} Text for caption.
- * @private
- */
-_initCaptionEl : function(sCaption) {
-    // Not yet supported
-    /*if(this._elHdTable && sCaption) {
-        // Create CAPTION element
-        if(!this._elCaption) { 
-            this._elCaption = this._elHdTable.createCaption();
-        }
-        // Set CAPTION value
-        this._elCaption.innerHTML = sCaption;
-    }
-    else if(this._elCaption) {
-        this._elCaption.parentNode.removeChild(this._elCaption);
-    }*/
-},
-
-/**
- * Destroy's the DataTable head TABLE element, if available.
- *
- * @method _destroyHdTableEl
- * @private
- */
-_destroyHdTableEl : function() {
-    var elTable = this._elHdTable;
-    if(elTable) {
-        Ev.purgeElement(elTable, true);
-        elTable.parentNode.removeChild(elTable);
-        
-        // A little out of place, but where else can we null out these extra elements?
-        ///this._elBdColgroup = null;
-        this._elBdThead = null;
-    }
-},
-
-/**
- * Initializes ScrollingDataTable TABLE elements into the two inner containers.
- *
- * @method _initTableEl
- * @private
- */
-_initTableEl : function() {
-    // Head TABLE
-    if(this._elHdContainer) {
-        this._destroyHdTableEl();
-    
-        // Create TABLE
-        this._elHdTable = this._elHdContainer.appendChild(document.createElement("table"));   
-    } 
-    // Body TABLE
-    SDT.superclass._initTableEl.call(this, this._elBdContainer);
-},
-
-/**
- * Initializes ScrollingDataTable THEAD elements into the two inner containers.
- *
- * @method _initTheadEl
- * @param elHdTable {HTMLElement} (optional) Fixed header TABLE element reference.
- * @param elTable {HTMLElement} (optional) TABLE element reference.
- * @private
- */
-_initTheadEl : function(elHdTable, elTable) {
-    elHdTable = elHdTable || this._elHdTable;
-    elTable = elTable || this._elTable;
-    
-    // Scrolling body's THEAD
-    this._initBdTheadEl(elTable);
-    // Standard fixed head THEAD
-    SDT.superclass._initTheadEl.call(this, elHdTable);
-},
-
-/**
- * SDT changes ID so as not to duplicate the accessibility TH IDs.
- *
- * @method _initThEl
- * @param elTh {HTMLElement} TH element reference.
- * @param oColumn {YAHOO.widget.Column} Column object.
- * @private
- */
-_initThEl : function(elTh, oColumn) {
-    SDT.superclass._initThEl.call(this, elTh, oColumn);
-    elTh.id = this.getId() +"-fixedth-" + oColumn.getSanitizedKey(); // Needed for getColumn by TH and ColumnDD
-},
-
-/**
- * Destroy's the DataTable body THEAD element, if available.
- *
- * @method _destroyBdTheadEl
- * @private
- */
-_destroyBdTheadEl : function() {
-    var elBdThead = this._elBdThead;
-    if(elBdThead) {
-        var elTable = elBdThead.parentNode;
-        Ev.purgeElement(elBdThead, true);
-        elTable.removeChild(elBdThead);
-        this._elBdThead = null;
-
-        this._destroyColumnHelpers();
-    }
-},
-
-/**
- * Initializes body THEAD element.
- *
- * @method _initBdTheadEl
- * @param elTable {HTMLElement} TABLE element into which to create THEAD.
- * @return {HTMLElement} Initialized THEAD element. 
- * @private
- */
-_initBdTheadEl : function(elTable) {
-    if(elTable) {
-        // Destroy previous
-        this._destroyBdTheadEl();
-
-        var elThead = elTable.insertBefore(document.createElement("thead"), elTable.firstChild);
-        
-        // Add TRs to the THEAD;
-        var oColumnSet = this._oColumnSet,
-            colTree = oColumnSet.tree,
-            elTh, elTheadTr, oColumn, i, j, k, len;
-
-        for(i=0, k=colTree.length; i<k; i++) {
-            elTheadTr = elThead.appendChild(document.createElement("tr"));
-    
-            // ...and create TH cells
-            for(j=0, len=colTree[i].length; j<len; j++) {
-                oColumn = colTree[i][j];
-                elTh = elTheadTr.appendChild(document.createElement("th"));
-                this._initBdThEl(elTh,oColumn,i,j);
-            }
-        }
-        this._elBdThead = elThead;
-        YAHOO.log("Accessibility TH cells for " + this._oColumnSet.keys.length + " keys created","info",this.toString());
-    }
-},
-
-/**
- * Populates TH element for the body THEAD element.
- *
- * @method _initBdThEl
- * @param elTh {HTMLElement} TH element reference.
- * @param oColumn {YAHOO.widget.Column} Column object.
- * @private
- */
-_initBdThEl : function(elTh, oColumn) {
-    elTh.id = this.getId()+"-th-" + oColumn.getSanitizedKey(); // Needed for accessibility
-    elTh.rowSpan = oColumn.getRowspan();
-    elTh.colSpan = oColumn.getColspan();
-    // Assign abbr attribute
-    if(oColumn.abbr) {
-        elTh.abbr = oColumn.abbr;
-    }
-
-    // TODO: strip links and form elements
-    var sKey = oColumn.getKey();
-    var sLabel = lang.isValue(oColumn.label) ? oColumn.label : sKey;
-    elTh.innerHTML = sLabel;
-},
-
-/**
- * Initializes ScrollingDataTable TBODY element for data
- *
- * @method _initTbodyEl
- * @param elTable {HTMLElement} TABLE element into which to create TBODY .
- * @private
- */
-_initTbodyEl : function(elTable) {
-    SDT.superclass._initTbodyEl.call(this, elTable);
-    
-    // Bug 2105534 - Safari gap
-    elTable.style.marginTop = "-"+this._elTbody.offsetTop+"px";
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/**
- * Sets focus on the given element.
- *
- * @method _focusEl
- * @param el {HTMLElement} Element.
- * @private
- */
-_focusEl : function(el) {
-    el = el || this._elTbody;
-    var oSelf = this;
-    this._storeScrollPositions();
-    // http://developer.mozilla.org/en/docs/index.php?title=Key-navigable_custom_DHTML_widgets
-    // The timeout is necessary in both IE and Firefox 1.5, to prevent scripts from doing
-    // strange unexpected things as the user clicks on buttons and other controls.
-    
-    // Bug 1921135: Wrap the whole thing in a setTimeout
-    setTimeout(function() {
-        setTimeout(function() {
-            try {
-                el.focus();
-                oSelf._restoreScrollPositions();
-            }
-            catch(e) {
-            }
-        },0);
-    }, 0);
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/**
- * Internal wrapper calls run() on render Chain instance.
- *
- * @method _runRenderChain
- * @private 
- */
-_runRenderChain : function() {
-    this._storeScrollPositions();
-    this._oChainRender.run();
-},
-
-/**
- * Stores scroll positions so they can be restored after a render. 
- *
- * @method _storeScrollPositions
- * @private 
- */
- _storeScrollPositions : function() {
-    this._nScrollTop = this._elBdContainer.scrollTop;
-    this._nScrollLeft = this._elBdContainer.scrollLeft;
-},
-
-/**
- * Restores scroll positions to stored value. 
- *
- * @method _retoreScrollPositions
- * @private 
- */
- _restoreScrollPositions : function() {
-    // Reset scroll positions
-    if(this._nScrollTop) {
-        this._elBdContainer.scrollTop = this._nScrollTop;
-        this._nScrollTop = null;
-    } 
-    if(this._nScrollLeft) {
-        this._elBdContainer.scrollLeft = this._nScrollLeft;
-        this._nScrollLeft = null;
-    } 
-},
-
-/**
- * Helper function calculates and sets a validated width for a Column in a ScrollingDataTable.
- *
- * @method _validateColumnWidth
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param elTd {HTMLElement} TD element to validate against.
- * @private
- */
-_validateColumnWidth : function(oColumn, elTd) {
-    // Only Columns without widths that are not hidden
-    if(!oColumn.width && !oColumn.hidden) {
-        var elTh = oColumn.getThEl();
-        // Unset a calculated auto-width
-        if(oColumn._calculatedWidth) {
-            this._setColumnWidth(oColumn, "auto", "visible");
-        }
-        // Compare auto-widths
-        if(elTh.offsetWidth !== elTd.offsetWidth) {
-            var elWider = (elTh.offsetWidth > elTd.offsetWidth) ?
-                    oColumn.getThLinerEl() : elTd.firstChild;               
-
-            // Grab the wider liner width, unless the minWidth is wider
-            var newWidth = Math.max(0,
-                (elWider.offsetWidth -(parseInt(Dom.getStyle(elWider,"paddingLeft"),10)|0) - (parseInt(Dom.getStyle(elWider,"paddingRight"),10)|0)),
-                oColumn.minWidth);
-                
-            var sOverflow = 'visible';
-            
-            // Now validate against maxAutoWidth
-            if((oColumn.maxAutoWidth > 0) && (newWidth > oColumn.maxAutoWidth)) {
-                newWidth = oColumn.maxAutoWidth;
-                sOverflow = "hidden";
-            }
-
-            // Set to the wider auto-width
-            this._elTbody.style.display = "none";
-            this._setColumnWidth(oColumn, newWidth+'px', sOverflow);
-            oColumn._calculatedWidth = newWidth;
-            this._elTbody.style.display = "";
-        }
-    }
-},
-
-/**
- * For one or all Columns of a ScrollingDataTable, when Column is not hidden,
- * and width is not set, syncs widths of header and body cells and 
- * validates that width against minWidth and/or maxAutoWidth as necessary.
- *
- * @method validateColumnWidths
- * @param oArg.column {YAHOO.widget.Column} (optional) One Column to validate. If null, all Columns' widths are validated.
- */
-validateColumnWidths : function(oColumn) {
-    // Validate there is at least one TR with proper TDs
-    var allKeys   = this._oColumnSet.keys,
-        allKeysLength = allKeys.length,
-        elRow     = this.getFirstTrEl();
-
-    // Reset overhang for IE
-    if(ua.ie) {
-        this._setOverhangValue(1);
-    }
-
-    if(allKeys && elRow && (elRow.childNodes.length === allKeysLength)) {
-        // Temporarily unsnap container since it causes inaccurate calculations
-        var sWidth = this.get("width");
-        if(sWidth) {
-            this._elHdContainer.style.width = "";
-            this._elBdContainer.style.width = "";
-        }
-        this._elContainer.style.width = "";
-        
-        //Validate just one Column
-        if(oColumn && lang.isNumber(oColumn.getKeyIndex())) {
-            this._validateColumnWidth(oColumn, elRow.childNodes[oColumn.getKeyIndex()]);
-        }
-        // Iterate through all Columns to unset calculated widths in one pass
-        else {
-            var elTd, todos = [], thisTodo, i, len;
-            for(i=0; i<allKeysLength; i++) {
-                oColumn = allKeys[i];
-                // Only Columns without widths that are not hidden, unset a calculated auto-width
-                if(!oColumn.width && !oColumn.hidden && oColumn._calculatedWidth) {
-                    todos[todos.length] = oColumn;      
-                }
-            }
-            
-            this._elTbody.style.display = "none";
-            for(i=0, len=todos.length; i<len; i++) {
-                this._setColumnWidth(todos[i], "auto", "visible");
-            }
-            this._elTbody.style.display = "";
-            
-            todos = [];
-
-            // Iterate through all Columns and make the store the adjustments to make in one pass
-            for(i=0; i<allKeysLength; i++) {
-                oColumn = allKeys[i];
-                elTd = elRow.childNodes[i];
-                // Only Columns without widths that are not hidden
-                if(!oColumn.width && !oColumn.hidden) {
-                    var elTh = oColumn.getThEl();
-
-                    // Compare auto-widths
-                    if(elTh.offsetWidth !== elTd.offsetWidth) {
-                        var elWider = (elTh.offsetWidth > elTd.offsetWidth) ?
-                                oColumn.getThLinerEl() : elTd.firstChild;               
-                
-                        // Grab the wider liner width, unless the minWidth is wider
-                        var newWidth = Math.max(0,
-                            (elWider.offsetWidth -(parseInt(Dom.getStyle(elWider,"paddingLeft"),10)|0) - (parseInt(Dom.getStyle(elWider,"paddingRight"),10)|0)),
-                            oColumn.minWidth);
-                            
-                        var sOverflow = 'visible';
-                        
-                        // Now validate against maxAutoWidth
-                        if((oColumn.maxAutoWidth > 0) && (newWidth > oColumn.maxAutoWidth)) {
-                            newWidth = oColumn.maxAutoWidth;
-                            sOverflow = "hidden";
-                        }
-                
-                        todos[todos.length] = [oColumn, newWidth, sOverflow];
-                    }
-                }
-            }
-            
-            this._elTbody.style.display = "none";
-            for(i=0, len=todos.length; i<len; i++) {
-                thisTodo = todos[i];
-                // Set to the wider auto-width
-                this._setColumnWidth(thisTodo[0], thisTodo[1]+"px", thisTodo[2]);
-                thisTodo[0]._calculatedWidth = thisTodo[1];
-            }
-            this._elTbody.style.display = "";
-        }
-    
-        // Resnap unsnapped containers
-        if(sWidth) {
-            this._elHdContainer.style.width = sWidth;
-            this._elBdContainer.style.width = sWidth;
-        } 
-    }
-    
-    this._syncScroll();
-    this._restoreScrollPositions();
-},
-
-/**
- * Syncs padding around scrollable tables, including Column header right-padding
- * and container width and height.
- *
- * @method _syncScroll
- * @private 
- */
-_syncScroll : function() {
-    this._syncScrollX();
-    this._syncScrollY();
-    this._syncScrollOverhang();
-    if(ua.opera) {
-        // Bug 1925874
-        this._elHdContainer.scrollLeft = this._elBdContainer.scrollLeft;
-        if(!this.get("width")) {
-            // Bug 1926125
-            document.body.style += '';
-        }
-    }
- },
-
-/**
- * Snaps container width for y-scrolling tables.
- *
- * @method _syncScrollY
- * @private
- */
-_syncScrollY : function() {
-    var elTbody = this._elTbody,
-        elBdContainer = this._elBdContainer;
-    
-    // X-scrolling not enabled
-    if(!this.get("width")) {
-        // Snap outer container width to content
-        this._elContainer.style.width = 
-                (elBdContainer.scrollHeight > elBdContainer.clientHeight) ?
-                // but account for y-scrollbar since it is visible
-                (elTbody.parentNode.clientWidth + 19) + "px" :
-                // no y-scrollbar, just borders
-                (elTbody.parentNode.clientWidth + 2) + "px";
-    }
-},
-
-/**
- * Snaps container height for x-scrolling tables in IE. Syncs message TBODY width.
- *
- * @method _syncScrollX
- * @private
- */
-_syncScrollX : function() {
-    var elTbody = this._elTbody,
-        elBdContainer = this._elBdContainer;
-    
-    // IE 6 and 7 only when y-scrolling not enabled
-    if(!this.get("height") && (ua.ie)) {
-        // Snap outer container height to content
-        elBdContainer.style.height = 
-                // but account for x-scrollbar if it is visible
-                (elBdContainer.scrollWidth > elBdContainer.offsetWidth ) ?
-                (elTbody.parentNode.offsetHeight + 18) + "px" : 
-                elTbody.parentNode.offsetHeight + "px";
-    }
-
-    // Sync message tbody
-    if(this._elTbody.rows.length === 0) {
-        this._elMsgTbody.parentNode.style.width = this.getTheadEl().parentNode.offsetWidth + "px";
-    }
-    else {
-        this._elMsgTbody.parentNode.style.width = "";
-    }
-},
-
-/**
- * Adds/removes Column header overhang as necesary.
- *
- * @method _syncScrollOverhang
- * @private
- */
-_syncScrollOverhang : function() {
-    var elBdContainer = this._elBdContainer,
-        // Overhang should be either 1 (default) or 18px, depending on the location of the right edge of the table
-        nPadding = 1;
-    
-    // Y-scrollbar is visible, which is when the overhang needs to jut out
-    if((elBdContainer.scrollHeight > elBdContainer.clientHeight) &&
-        // X-scrollbar is also visible, which means the right is jagged, not flush with the Column
-        (elBdContainer.scrollWidth > elBdContainer.clientWidth)) {
-        nPadding = 18;
-    }
-    
-    this._setOverhangValue(nPadding);
-    
-},
-
-/**
- * Sets Column header overhang to given width.
- *
- * @method _setOverhangValue
- * @param nBorderWidth {Number} Value of new border for overhang. 
- * @private
- */
-_setOverhangValue : function(nBorderWidth) {
-    var aLastHeaders = this._oColumnSet.headers[this._oColumnSet.headers.length-1] || [],
-        len = aLastHeaders.length,
-        sPrefix = this._sId+"-fixedth-",
-        sValue = nBorderWidth + "px solid " + this.get("COLOR_COLUMNFILLER");
-
-    this._elThead.style.display = "none";
-    for(var i=0; i<len; i++) {
-        Dom.get(sPrefix+aLastHeaders[i]).style.borderRight = sValue;
-    }
-    this._elThead.style.display = "";
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/**
- * Returns DOM reference to the DataTable's fixed header container element.
- *
- * @method getHdContainerEl
- * @return {HTMLElement} Reference to DIV element.
- */
-getHdContainerEl : function() {
-    return this._elHdContainer;
-},
-
-/**
- * Returns DOM reference to the DataTable's scrolling body container element.
- *
- * @method getBdContainerEl
- * @return {HTMLElement} Reference to DIV element.
- */
-getBdContainerEl : function() {
-    return this._elBdContainer;
-},
-
-/**
- * Returns DOM reference to the DataTable's fixed header TABLE element.
- *
- * @method getHdTableEl
- * @return {HTMLElement} Reference to TABLE element.
- */
-getHdTableEl : function() {
-    return this._elHdTable;
-},
-
-/**
- * Returns DOM reference to the DataTable's scrolling body TABLE element.
- *
- * @method getBdTableEl
- * @return {HTMLElement} Reference to TABLE element.
- */
-getBdTableEl : function() {
-    return this._elTable;
-},
-
-/**
- * Disables ScrollingDataTable UI.
- *
- * @method disable
- */
-disable : function() {
-    var elMask = this._elMask;
-    elMask.style.width = this._elBdContainer.offsetWidth + "px";
-    elMask.style.height = this._elHdContainer.offsetHeight + this._elBdContainer.offsetHeight + "px";
-    elMask.style.display = "";
-    this.fireEvent("disableEvent");
-},
-
-/**
- * Removes given Column. NOTE: You cannot remove nested Columns. You can only remove
- * non-nested Columns, and top-level parent Columns (which will remove all
- * children Columns).
- *
- * @method removeColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @return oColumn {YAHOO.widget.Column} Removed Column instance.
- */
-removeColumn : function(oColumn) {
-    // Store scroll pos
-    var hdPos = this._elHdContainer.scrollLeft;
-    var bdPos = this._elBdContainer.scrollLeft;
-    
-    // Call superclass method
-    oColumn = SDT.superclass.removeColumn.call(this, oColumn);
-    
-    // Restore scroll pos
-    this._elHdContainer.scrollLeft = hdPos;
-    this._elBdContainer.scrollLeft = bdPos;
-    
-    return oColumn;
-},
-
-/**
- * Inserts given Column at the index if given, otherwise at the end. NOTE: You
- * can only add non-nested Columns and top-level parent Columns. You cannot add
- * a nested Column to an existing parent.
- *
- * @method insertColumn
- * @param oColumn {Object | YAHOO.widget.Column} Object literal Column
- * definition or a Column instance.
- * @param index {Number} (optional) New tree index.
- * @return oColumn {YAHOO.widget.Column} Inserted Column instance. 
- */
-insertColumn : function(oColumn, index) {
-    // Store scroll pos
-    var hdPos = this._elHdContainer.scrollLeft;
-    var bdPos = this._elBdContainer.scrollLeft;
-    
-    // Call superclass method
-    var oNewColumn = SDT.superclass.insertColumn.call(this, oColumn, index);
-    
-    // Restore scroll pos
-    this._elHdContainer.scrollLeft = hdPos;
-    this._elBdContainer.scrollLeft = bdPos;
-    
-    return oNewColumn;
-},
-
-/**
- * Removes given Column and inserts into given tree index. NOTE: You
- * can only reorder non-nested Columns and top-level parent Columns. You cannot
- * reorder a nested Column to an existing parent.
- *
- * @method reorderColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param index {Number} New tree index.
- */
-reorderColumn : function(oColumn, index) {
-    // Store scroll pos
-    var hdPos = this._elHdContainer.scrollLeft;
-    var bdPos = this._elBdContainer.scrollLeft;
-    
-    // Call superclass method
-    var oNewColumn = SDT.superclass.reorderColumn.call(this, oColumn, index);
-    
-    // Restore scroll pos
-    this._elHdContainer.scrollLeft = hdPos;
-    this._elBdContainer.scrollLeft = bdPos;
-
-    return oNewColumn;
-},
-
-/**
- * Sets given Column to given pixel width. If new width is less than minWidth
- * width, sets to minWidth. Updates oColumn.width value.
- *
- * @method setColumnWidth
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param nWidth {Number} New width in pixels.
- */
-setColumnWidth : function(oColumn, nWidth) {
-    oColumn = this.getColumn(oColumn);
-    if(oColumn) {
-        // Validate new width against minWidth
-        if(lang.isNumber(nWidth)) {
-            nWidth = (nWidth > oColumn.minWidth) ? nWidth : oColumn.minWidth;
-
-            // Save state
-            oColumn.width = nWidth;
-            
-            // Resize the DOM elements
-            this._setColumnWidth(oColumn, nWidth+"px");
-            this._syncScroll();
-            
-            this.fireEvent("columnSetWidthEvent",{column:oColumn,width:nWidth});
-            YAHOO.log("Set width of Column " + oColumn + " to " + nWidth + "px", "info", this.toString());
-            return;
-        }
-        // Unsets a width to auto-size
-        else if(nWidth === null) {
-            // Save state
-            oColumn.width = nWidth;
-            
-            // Resize the DOM elements
-            this._setColumnWidth(oColumn, "auto");
-            this.validateColumnWidths(oColumn);
-            this.fireEvent("columnUnsetWidthEvent",{column:oColumn});
-            YAHOO.log("Column " + oColumn + " width unset", "info", this.toString());
-
-            return;
-        }
-    }
-    YAHOO.log("Could not set width of Column " + oColumn + " to " + nWidth + "px", "warn", this.toString());
-},
-
-/**
- * Displays message within secondary TBODY.
- *
- * @method showTableMessage
- * @param sHTML {String} (optional) Value for innerHTMlang.
- * @param sClassName {String} (optional) Classname.
- */
-showTableMessage : function(sHTML, sClassName) {
-    var elCell = this._elMsgTd;
-    if(lang.isString(sHTML)) {
-        elCell.firstChild.innerHTML = sHTML;
-    }
-    if(lang.isString(sClassName)) {
-        Dom.addClass(elCell.firstChild, sClassName);
-    }
-
-    // Needed for SDT only
-    var elThead = this.getTheadEl();
-    var elTable = elThead.parentNode;
-    var newWidth = elTable.offsetWidth;
-    this._elMsgTbody.parentNode.style.width = this.getTheadEl().parentNode.offsetWidth + "px";
-
-    this._elMsgTbody.style.display = "";
-
-    this.fireEvent("tableMsgShowEvent", {html:sHTML, className:sClassName});
-    YAHOO.log("DataTable showing message: " + sHTML, "info", this.toString());
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private Custom Event Handlers
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Handles Column mutations
- *
- * @method onColumnChange
- * @param oArgs {Object} Custom Event data.
- */
-_onColumnChange : function(oArg) {
-    // Figure out which Column changed
-    var oColumn = (oArg.column) ? oArg.column :
-            (oArg.editor) ? oArg.editor.column : null;
-    this._storeScrollPositions();
-    this.validateColumnWidths(oColumn);
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private DOM Event Handlers
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Syncs scrolltop and scrollleft of all TABLEs.
- *
- * @method _onScroll
- * @param e {HTMLEvent} The scroll event.
- * @param oSelf {YAHOO.widget.ScrollingDataTable} ScrollingDataTable instance.
- * @private
- */
-_onScroll : function(e, oSelf) {
-    oSelf._elHdContainer.scrollLeft = oSelf._elBdContainer.scrollLeft;
-
-    if(oSelf._oCellEditor && oSelf._oCellEditor.isActive) {
-        oSelf.fireEvent("editorBlurEvent", {editor:oSelf._oCellEditor});
-        oSelf.cancelCellEditor();
-    }
-
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    oSelf.fireEvent("tableScrollEvent", {event:e, target:elTarget});
-},
-
-/**
- * Handles keydown events on the THEAD element.
- *
- * @method _onTheadKeydown
- * @param e {HTMLEvent} The key event.
- * @param oSelf {YAHOO.widget.ScrollingDataTable} ScrollingDataTable instance.
- * @private
- */
-_onTheadKeydown : function(e, oSelf) {
-    // If tabbing to next TH label link causes THEAD to scroll,
-    // need to sync scrollLeft with TBODY
-    if(Ev.getCharCode(e) === 9) {
-        setTimeout(function() {
-            if((oSelf instanceof SDT) && oSelf._sId) {
-                oSelf._elBdContainer.scrollLeft = oSelf._elHdContainer.scrollLeft;
-            }
-        },0);
-    }
-    
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "input":
-            case "textarea":
-                // TODO: implement textareaKeyEvent
-                break;
-            case "thead":
-                bKeepBubbling = oSelf.fireEvent("theadKeyEvent",{target:elTarget,event:e});
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableKeyEvent",{target:(elTarget || oSelf._elContainer),event:e});
-}
-
-
-
-
-/**
- * Fired when a fixed scrolling DataTable has a scroll.
- *
- * @event tableScrollEvent
- * @param oArgs.event {HTMLEvent} The event object.
- * @param oArgs.target {HTMLElement} The DataTable's CONTAINER element (in IE)
- * or the DataTable's TBODY element (everyone else).
- *
- */
-
-
-
-
-});
-
-})();
-
-(function () {
-
-var lang   = YAHOO.lang,
-    util   = YAHOO.util,
-    widget = YAHOO.widget,
-    ua     = YAHOO.env.ua,
-    
-    Dom    = util.Dom,
-    Ev     = util.Event,
-    
-    DT     = widget.DataTable;
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * The BaseCellEditor class provides base functionality common to all inline cell
- * editors for a DataTable widget.
- *
- * @namespace YAHOO.widget
- * @class BaseCellEditor
- * @uses YAHOO.util.EventProvider 
- * @constructor
- * @param sType {String} Type indicator, to map to YAHOO.widget.DataTable.Editors.
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.BaseCellEditor = function(sType, oConfigs) {
-    this._sId = this._sId || "yui-ceditor" + YAHOO.widget.BaseCellEditor._nCount++;
-    this._sType = sType;
-    
-    // Validate inputs
-    this._initConfigs(oConfigs); 
-    
-    // Create Custom Events
-    this._initEvents();
-             
-    // Draw UI
-    this.render();
-};
-
-var BCE = widget.BaseCellEditor;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Static members
-//
-/////////////////////////////////////////////////////////////////////////////
-lang.augmentObject(BCE, {
-
-/**
- * Global instance counter.
- *
- * @property CellEditor._nCount
- * @type Number
- * @static
- * @default 0
- * @private 
- */
-_nCount : 0,
-
-/**
- * Class applied to CellEditor container.
- *
- * @property CellEditor.CLASS_CELLEDITOR
- * @type String
- * @static
- * @default "yui-ceditor"
- */
-CLASS_CELLEDITOR : "yui-ceditor"
-
-});
-
-BCE.prototype = {
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private members
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Unique id assigned to instance "yui-ceditorN", useful prefix for generating unique
- * DOM ID strings and log messages.
- *
- * @property _sId
- * @type String
- * @private
- */
-_sId : null,
-
-/**
- * Editor type.
- *
- * @property _sType
- * @type String
- * @private
- */
-_sType : null,
-
-/**
- * DataTable instance.
- *
- * @property _oDataTable
- * @type YAHOO.widget.DataTable
- * @private 
- */
-_oDataTable : null,
-
-/**
- * Column instance.
- *
- * @property _oColumn
- * @type YAHOO.widget.Column
- * @default null
- */
-_oColumn : null,
-
-/**
- * Record instance.
- *
- * @property _oRecord
- * @type YAHOO.widget.Record
- * @default null
- * @private 
- */
-_oRecord : null,
-
-/**
- * TD element.
- *
- * @property _elTd
- * @type HTMLElement
- * @default null
- * @private
- */
-_elTd : null,
-
-/**
- * Container for inline editor.
- *
- * @property _elContainer
- * @type HTMLElement
- * @private 
- */
-_elContainer : null,
-
-/**
- * Reference to Cancel button, if available.
- *
- * @property _elCancelBtn
- * @type HTMLElement
- * @default null
- * @private 
- */
-_elCancelBtn : null,
-
-/**
- * Reference to Save button, if available.
- *
- * @property _elSaveBtn
- * @type HTMLElement
- * @default null
- * @private 
- */
-_elSaveBtn : null,
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Initialize configs.
- *
- * @method _initConfigs
- * @private   
- */
-_initConfigs : function(oConfigs) {
-    // Object literal defines CellEditor configs
-    if(oConfigs && YAHOO.lang.isObject(oConfigs)) {
-        for(var sConfig in oConfigs) {
-            if(sConfig) {
-                this[sConfig] = oConfigs[sConfig];
-            }
-        }
-    }
-},
-
-/**
- * Initialize Custom Events.
- *
- * @method _initEvents
- * @private   
- */
-_initEvents : function() {
-    this.createEvent("showEvent");
-    this.createEvent("keydownEvent");
-    this.createEvent("invalidDataEvent");
-    this.createEvent("revertEvent");
-    this.createEvent("saveEvent");
-    this.createEvent("cancelEvent");
-    this.createEvent("blurEvent");
-    this.createEvent("blockEvent");
-    this.createEvent("unblockEvent");
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Implementer defined function that can submit the input value to a server. This
- * function must accept the arguments fnCallback and oNewValue. When the submission
- * is complete, the function must also call fnCallback(bSuccess, oNewValue) to 
- * finish the save routine in the CellEditor. This function can also be used to 
- * perform extra validation or input value manipulation. 
- *
- * @property asyncSubmitter
- * @type HTMLFunction
- */
-asyncSubmitter : null,
-
-/**
- * Current value.
- *
- * @property value
- * @type MIXED
- */
-value : null,
-
-/**
- * Default value in case Record data is undefined. NB: Null values will not trigger
- * the default value.
- *
- * @property defaultValue
- * @type MIXED
- * @default null
- */
-defaultValue : null,
-
-/**
- * Validator function for input data, called from the DataTable instance scope,
- * receives the arguments (inputValue, currentValue, editorInstance) and returns
- * either the validated (or type-converted) value or undefined.
- *
- * @property validator
- * @type HTMLFunction
- * @default null
- */
-validator : null,
-
-/**
- * True if currently active.
- *
- * @property isActive
- * @type Boolean
- */
-isActive : false,
-
-/**
- * Text to display on Save button.
- *
- * @property LABEL_SAVE
- * @type String
- * @default "Save"
- */
-LABEL_SAVE : "Save",
-
-/**
- * Text to display on Cancel button.
- *
- * @property LABEL_CANCEL
- * @type String
- * @default "Cancel"
- */
-LABEL_CANCEL : "Cancel",
-
-/**
- * True if Save/Cancel buttons should not be displayed in the CellEditor.
- *
- * @property disableBtns
- * @type Boolean
- * @default false
- */
-disableBtns : false,
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * CellEditor instance name, for logging.
- *
- * @method toString
- * @return {String} Unique name of the CellEditor instance.
- */
-
-toString : function() {
-    return "CellEditor instance " + this._sId;
-},
-
-/**
- * CellEditor unique ID.
- *
- * @method getId
- * @return {String} Unique ID of the CellEditor instance.
- */
-
-getId : function() {
-    return this._sId;
-},
-
-/**
- * Returns reference to associated DataTable instance.
- *
- * @method getDataTable
- * @return {YAHOO.widget.DataTable} DataTable instance.
- */
-
-getDataTable : function() {
-    return this._oDataTable;
-},
-
-/**
- * Returns reference to associated Column instance.
- *
- * @method getColumn
- * @return {YAHOO.widget.Column} Column instance.
- */
-
-getColumn : function() {
-    return this._oColumn;
-},
-
-/**
- * Returns reference to associated Record instance.
- *
- * @method getRecord
- * @return {YAHOO.widget.Record} Record instance.
- */
-
-getRecord : function() {
-    return this._oRecord;
-},
-
-
-
-/**
- * Returns reference to associated TD element.
- *
- * @method getTdEl
- * @return {HTMLElement} TD element.
- */
-
-getTdEl : function() {
-    return this._elTd;
-},
-
-/**
- * Returns container element.
- *
- * @method getContainerEl
- * @return {HTMLElement} Reference to container element.
- */
-
-getContainerEl : function() {
-    return this._elContainer;
-},
-
-/**
- * Nulls out the entire CellEditor instance and related objects, removes attached
- * event listeners, and clears out DOM elements inside the container, removes
- * container from the DOM.
- *
- * @method destroy
- */
-destroy : function() {
-    this.unsubscribeAll();
-    
-    // Column is late-binding in attach()
-    var oColumn = this.getColumn();
-    if(oColumn) {
-        this.getColumn().editor = null;
-    }
-    
-    var elContainer = this.getContainerEl();
-    Ev.purgeElement(elContainer, true);
-    elContainer.parentNode.removeChild(elContainer);
-},
-
-/**
- * Renders DOM elements and attaches event listeners.
- *
- * @method render
- */
-render : function() {
-    // Render Cell Editor container element as first child of body
-    var elContainer = document.createElement("div");
-    elContainer.id = this.getId() + "-container"; // Needed for tracking blur event
-    elContainer.style.display = "none";
-    elContainer.tabIndex = 0;
-    elContainer.className = DT.CLASS_EDITOR;
-    document.body.insertBefore(elContainer, document.body.firstChild);
-    this._elContainer = elContainer;
-    
-    // Handle ESC key
-    Ev.addListener(elContainer, "keydown", function(e, oSelf) {
-        // ESC cancels Cell Editor
-        if((e.keyCode == 27)) {
-            oSelf.cancel();
-        }
-        // Pass through event
-        oSelf.fireEvent("keydownEvent", {editor:this, event:e});
-    }, this);
-    
-    this.renderForm();
-
-    // Show Save/Cancel buttons
-    if(!this.disableBtns) {
-        this.renderBtns();
-    }
-    
-    this.doAfterRender();
-},
-
-/**
- * Renders Save/Cancel buttons.
- *
- * @method renderBtns
- */
-renderBtns : function() {
-    // Buttons
-    var elBtnsDiv = this.getContainerEl().appendChild(document.createElement("div"));
-    elBtnsDiv.className = DT.CLASS_BUTTON;
-
-    // Save button
-    var elSaveBtn = elBtnsDiv.appendChild(document.createElement("button"));
-    elSaveBtn.className = DT.CLASS_DEFAULT;
-    elSaveBtn.innerHTML = this.LABEL_SAVE;
-    Ev.addListener(elSaveBtn, "click", function(oArgs) {
-        this.save();
-    }, this, true);
-    this._elSaveBtn = elSaveBtn;
-
-    // Cancel button
-    var elCancelBtn = elBtnsDiv.appendChild(document.createElement("button"));
-    elCancelBtn.innerHTML = this.LABEL_CANCEL;
-    Ev.addListener(elCancelBtn, "click", function(oArgs) {
-        this.cancel();
-    }, this, true);
-    this._elCancelBtn = elCancelBtn;
-},
-
-/**
- * Attach CellEditor for a new interaction.
- *
- * @method attach
- * @param oDataTable {YAHOO.widget.DataTable} Associated DataTable instance.
- * @param elCell {HTMLElement} Cell to edit.  
- */
-attach : function(oDataTable, elCell) {
-    // Validate 
-    if(oDataTable instanceof YAHOO.widget.DataTable) {
-        this._oDataTable = oDataTable;
-        
-        // Validate cell
-        elCell = oDataTable.getTdEl(elCell);
-        if(elCell) {
-            this._elTd = elCell;
-
-            // Validate Column
-            var oColumn = oDataTable.getColumn(elCell);
-            if(oColumn) {
-                this._oColumn = oColumn;
-                
-                // Validate Record
-                var oRecord = oDataTable.getRecord(elCell);
-                if(oRecord) {
-                    this._oRecord = oRecord;
-                    var value = oRecord.getData(this.getColumn().getKey());
-                    this.value = (value !== undefined) ? value : this.defaultValue;
-                    return true;
-                }
-            }            
-        }
-    }
-    YAHOO.log("Could not attach CellEditor","error",this.toString());
-    return false;
-},
-
-/**
- * Moves container into position for display.
- *
- * @method move
- */
-move : function() {
-    // Move Editor
-    var elContainer = this.getContainerEl(),
-        elTd = this.getTdEl(),
-        x = Dom.getX(elTd),
-        y = Dom.getY(elTd);
-
-    //TODO: remove scrolling logic
-    // SF doesn't get xy for cells in scrolling table
-    // when tbody display is set to block
-    if(isNaN(x) || isNaN(y)) {
-        var elTbody = this.getDataTable().getTbodyEl();
-        x = elTd.offsetLeft + // cell pos relative to table
-                Dom.getX(elTbody.parentNode) - // plus table pos relative to document
-                elTbody.scrollLeft; // minus tbody scroll
-        y = elTd.offsetTop + // cell pos relative to table
-                Dom.getY(elTbody.parentNode) - // plus table pos relative to document
-                elTbody.scrollTop + // minus tbody scroll
-                this.getDataTable().getTheadEl().offsetHeight; // account for fixed THEAD cells
-    }
-
-    elContainer.style.left = x + "px";
-    elContainer.style.top = y + "px";
-},
-
-/**
- * Displays CellEditor UI in the correct position.
- *
- * @method show
- */
-show : function() {
-    this.resetForm();
-    this.isActive = true;
-    this.getContainerEl().style.display = "";
-    this.focus();
-    this.fireEvent("showEvent", {editor:this});
-    YAHOO.log("CellEditor shown", "info", this.toString()); 
-},
-
-/**
- * Fires blockEvent
- *
- * @method block
- */
-block : function() {
-    this.fireEvent("blockEvent", {editor:this});
-    YAHOO.log("CellEditor blocked", "info", this.toString()); 
-},
-
-/**
- * Fires unblockEvent
- *
- * @method unblock
- */
-unblock : function() {
-    this.fireEvent("unblockEvent", {editor:this});
-    YAHOO.log("CellEditor unblocked", "info", this.toString()); 
-},
-
-/**
- * Saves value of CellEditor and hides UI.
- *
- * @method save
- */
-save : function() {
-    // Get new value
-    var inputValue = this.getInputValue();
-    var validValue = inputValue;
-    
-    // Validate new value
-    if(this.validator) {
-        validValue = this.validator.call(this.getDataTable(), inputValue, this.value, this);
-        if(validValue === undefined ) {
-            this.resetForm();
-            this.fireEvent("invalidDataEvent",
-                    {editor:this, oldData:this.value, newData:inputValue});
-            YAHOO.log("Could not save Cell Editor input due to invalid data " +
-                    lang.dump(inputValue), "warn", this.toString());
-            return;
-        }
-    }
-        
-    var oSelf = this;
-    var finishSave = function(bSuccess, oNewValue) {
-        var oOrigValue = YAHOO.widget.DataTable._cloneObject(oSelf.value);
-        if(bSuccess) {
-            // Update new value
-            oSelf.value = oNewValue;
-            oSelf.getDataTable().updateCell(oSelf.getRecord(), oSelf.getColumn(), oNewValue);
-            
-            // Hide CellEditor
-            oSelf.getContainerEl().style.display = "none";
-            oSelf.isActive = false;
-            oSelf.getDataTable()._oCellEditor =  null;
-            
-            oSelf.fireEvent("saveEvent",
-                    {editor:oSelf, oldData:oOrigValue, newData:oSelf.value});
-            YAHOO.log("Cell Editor input saved", "info", this.toString());
-        }
-        else {
-            oSelf.resetForm();
-            oSelf.fireEvent("revertEvent",
-                    {editor:oSelf, oldData:oOrigValue, newData:oNewValue});
-            YAHOO.log("Could not save Cell Editor input " +
-                    lang.dump(oNewValue), "warn", oSelf.toString());
-        }
-        oSelf.unblock();
-    };
-    
-    this.block();
-    if(lang.isFunction(this.asyncSubmitter)) {
-        this.asyncSubmitter.call(this, finishSave, validValue);
-    } 
-    else {   
-        finishSave(true, validValue);
-    }
-},
-
-/**
- * Cancels CellEditor input and hides UI.
- *
- * @method cancel
- */
-cancel : function() {
-    if(this.isActive) {
-        this.getContainerEl().style.display = "none";
-        this.isActive = false;
-        this.getDataTable._oCellEditor =  null;
-        this.fireEvent("cancelEvent", {editor:this});
-        YAHOO.log("CellEditor canceled", "info", this.toString());
-    }
-    else {
-        YAHOO.log("Unable to cancel CellEditor", "warn", this.toString());
-    }
-},
-
-/**
- * Renders form elements.
- *
- * @method renderForm
- */
-renderForm : function() {
-    // To be implemented by subclass
-},
-
-/**
- * Access to add additional event listeners.
- *
- * @method doAfterRender
- */
-doAfterRender : function() {
-    // To be implemented by subclass
-},
-
-
-/**
- * After rendering form, if disabledBtns is set to true, then sets up a mechanism
- * to save input without them. 
- *
- * @method handleDisabledBtns
- */
-handleDisabledBtns : function() {
-    // To be implemented by subclass
-},
-
-/**
- * Resets CellEditor UI to initial state.
- *
- * @method resetForm
- */
-resetForm : function() {
-    // To be implemented by subclass
-},
-
-/**
- * Sets focus in CellEditor.
- *
- * @method focus
- */
-focus : function() {
-    // To be implemented by subclass
-},
-
-/**
- * Retrieves input value from CellEditor.
- *
- * @method getInputValue
- */
-getInputValue : function() {
-    // To be implemented by subclass
-}
-
-};
-
-lang.augmentProto(BCE, util.EventProvider);
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Custom Events
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Fired when a CellEditor is shown.
- *
- * @event showEvent
- * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
- */
-
-/**
- * Fired when a CellEditor has a keydown.
- *
- * @event keydownEvent
- * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance. 
- * @param oArgs.event {HTMLEvent} The event object.
- */
-
-/**
- * Fired when a CellEditor input is reverted due to invalid data.
- *
- * @event invalidDataEvent
- * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance. 
- * @param oArgs.newData {Object} New data value from form input field.
- * @param oArgs.oldData {Object} Old data value.
- */
-
-/**
- * Fired when a CellEditor input is reverted due to asyncSubmitter failure.
- *
- * @event revertEvent
- * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance. 
- * @param oArgs.newData {Object} New data value from form input field.
- * @param oArgs.oldData {Object} Old data value.
- */
-
-/**
- * Fired when a CellEditor input is saved.
- *
- * @event saveEvent
- * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance. 
- * @param oArgs.newData {Object} New data value from form input field.
- * @param oArgs.oldData {Object} Old data value.
- */
-
-/**
- * Fired when a CellEditor input is canceled.
- *
- * @event cancelEvent
- * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance. 
- */
-
-/**
- * Fired when a CellEditor has a blur event.
- *
- * @event blurEvent
- * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance. 
- */
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * The CheckboxCellEditor class provides functionality for inline editing
- * DataTable cell data with checkboxes.
- *
- * @namespace YAHOO.widget
- * @class CheckboxCellEditor
- * @extends YAHOO.widget.BaseCellEditor
- * @constructor
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.CheckboxCellEditor = function(oConfigs) {
-    this._sId = "yui-checkboxceditor" + YAHOO.widget.BaseCellEditor._nCount++;
-    widget.CheckboxCellEditor.superclass.constructor.call(this, "checkbox", oConfigs); 
-};
-
-// CheckboxCellEditor extends BaseCellEditor
-lang.extend(widget.CheckboxCellEditor, BCE, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// CheckboxCellEditor public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Array of checkbox values. Can either be a simple array (e.g., ["red","green","blue"])
- * or a an array of objects (e.g., [{label:"red", value:"#FF0000"},
- * {label:"green", value:"#00FF00"}, {label:"blue", value:"#0000FF"}]). 
- *
- * @property checkboxOptions
- * @type String[] | Object[]
- */
-checkboxOptions : null,
-
-/**
- * Reference to the checkbox elements.
- *
- * @property checkboxes
- * @type HTMLElement[] 
- */
-checkboxes : null,
-
-/**
- * Array of checked values
- *
- * @property value
- * @type String[] 
- */
-value : null,
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// CheckboxCellEditor public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Render a form with input(s) type=checkbox.
- *
- * @method renderForm
- */
-renderForm : function() {
-    if(lang.isArray(this.checkboxOptions)) {
-        var checkboxOption, checkboxValue, checkboxId, elLabel, j, len;
-        
-        // Create the checkbox buttons in an IE-friendly way...
-        for(j=0,len=this.checkboxOptions.length; j<len; j++) {
-            checkboxOption = this.checkboxOptions[j];
-            checkboxValue = lang.isValue(checkboxOption.value) ?
-                    checkboxOption.value : checkboxOption;
-
-            checkboxId = this.getId() + "-chk" + j;
-            this.getContainerEl().innerHTML += "<input type=\"checkbox\"" +
-                    " id=\"" + checkboxId + "\"" + // Needed for label
-                    " value=\"" + checkboxValue + "\" />";
-            
-            // Create the labels in an IE-friendly way
-            elLabel = this.getContainerEl().appendChild(document.createElement("label"));
-            elLabel.htmlFor = checkboxId;
-            elLabel.innerHTML = lang.isValue(checkboxOption.label) ?
-                    checkboxOption.label : checkboxOption;
-        }
-        
-        // Store the reference to the checkbox elements
-        var allCheckboxes = [];
-        for(j=0; j<len; j++) {
-            allCheckboxes[allCheckboxes.length] = this.getContainerEl().childNodes[j*2];
-        }
-        this.checkboxes = allCheckboxes;
-
-        if(this.disableBtns) {
-            this.handleDisabledBtns();
-        }
-    }
-    else {
-        YAHOO.log("Could not find checkboxOptions", "error", this.toString());
-    }
-},
-
-/**
- * After rendering form, if disabledBtns is set to true, then sets up a mechanism
- * to save input without them. 
- *
- * @method handleDisabledBtns
- */
-handleDisabledBtns : function() {
-    Ev.addListener(this.getContainerEl(), "click", function(v){
-        if(Ev.getTarget(v).tagName.toLowerCase() === "input") {
-            // Save on blur
-            this.save();
-        }
-    }, this, true);
-},
-
-/**
- * Resets CheckboxCellEditor UI to initial state.
- *
- * @method resetForm
- */
-resetForm : function() {
-    // Normalize to array
-    var originalValues = lang.isArray(this.value) ? this.value : [this.value];
-    
-    // Match checks to value
-    for(var i=0, j=this.checkboxes.length; i<j; i++) {
-        this.checkboxes[i].checked = false;
-        for(var k=0, len=originalValues.length; k<len; k++) {
-            if(this.checkboxes[i].value === originalValues[k]) {
-                this.checkboxes[i].checked = true;
-            }
-        }
-    }
-},
-
-/**
- * Sets focus in CheckboxCellEditor.
- *
- * @method focus
- */
-focus : function() {
-    this.checkboxes[0].focus();
-},
-
-/**
- * Retrieves input value from CheckboxCellEditor.
- *
- * @method getInputValue
- */
-getInputValue : function() {
-    var checkedValues = [];
-    for(var i=0, j=this.checkboxes.length; i<j; i++) {
-        if(this.checkboxes[i].checked) {
-            checkedValues[checkedValues.length] = this.checkboxes[i].value;
-        }
-    }  
-    return checkedValues;
-}
-
-});
-
-// Copy static members to CheckboxCellEditor class
-lang.augmentObject(widget.CheckboxCellEditor, BCE);
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * The DataCellEditor class provides functionality for inline editing
- * DataTable cell data with a YUI Calendar.
- *
- * @namespace YAHOO.widget
- * @class DateCellEditor
- * @extends YAHOO.widget.BaseCellEditor 
- * @constructor
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.DateCellEditor = function(oConfigs) {
-    this._sId = "yui-dateceditor" + YAHOO.widget.BaseCellEditor._nCount++;
-    widget.DateCellEditor.superclass.constructor.call(this, "date", oConfigs); 
-};
-
-// CheckboxCellEditor extends BaseCellEditor
-lang.extend(widget.DateCellEditor, BCE, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DateCellEditor public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Reference to Calendar instance.
- *
- * @property calendar
- * @type YAHOO.widget.Calendar
- */
-calendar : null,
-
-/**
- * Default value.
- *
- * @property defaultValue
- * @type Date
- * @default new Date()
- */
-defaultValue : new Date(),
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DateCellEditor public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Render a Calendar.
- *
- * @method renderForm
- */
-renderForm : function() {
-    // Calendar widget
-    if(YAHOO.widget.Calendar) {
-        var calContainer = this.getContainerEl().appendChild(document.createElement("div"));
-        calContainer.id = this.getId() + "-dateContainer"; // Needed for Calendar constructor
-        var calendar =
-                new YAHOO.widget.Calendar(this.getId() + "-date",
-                calContainer.id);
-        calendar.render();
-        calContainer.style.cssFloat = "none";
-
-        if(ua.ie) {
-            var calFloatClearer = this.getContainerEl().appendChild(document.createElement("br"));
-            calFloatClearer.style.clear = "both";
-        }
-        
-        this.calendar = calendar;
-
-        if(this.disableBtns) {
-            this.handleDisabledBtns();
-        }
-    }
-    else {
-        YAHOO.log("Could not find YUI Calendar", "error", this.toString());
-    }
-    
-},
-
-/**
- * After rendering form, if disabledBtns is set to true, then sets up a mechanism
- * to save input without them. 
- *
- * @method handleDisabledBtns
- */
-handleDisabledBtns : function() {
-    this.calendar.selectEvent.subscribe(function(v){
-        // Save on select
-        this.save();
-    }, this, true);
-},
-
-/**
- * Resets DateCellEditor UI to initial state.
- *
- * @method resetForm
- */
-resetForm : function() {
-    var value = this.value;
-    var selectedValue = (value.getMonth()+1)+"/"+value.getDate()+"/"+value.getFullYear();
-    this.calendar.cfg.setProperty("selected",selectedValue,false);
-	this.calendar.render();
-},
-
-/**
- * Sets focus in DateCellEditor.
- *
- * @method focus
- */
-focus : function() {
-    // To be impmlemented by subclass
-},
-
-/**
- * Retrieves input value from DateCellEditor.
- *
- * @method getInputValue
- */
-getInputValue : function() {
-    return this.calendar.getSelectedDates()[0];
-}
-
-});
-
-// Copy static members to DateCellEditor class
-lang.augmentObject(widget.DateCellEditor, BCE);
-
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * The DropdownCellEditor class provides functionality for inline editing
- * DataTable cell data a SELECT element.
- *
- * @namespace YAHOO.widget
- * @class DropdownCellEditor
- * @extends YAHOO.widget.BaseCellEditor 
- * @constructor
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.DropdownCellEditor = function(oConfigs) {
-    this._sId = "yui-dropdownceditor" + YAHOO.widget.BaseCellEditor._nCount++;
-    widget.DropdownCellEditor.superclass.constructor.call(this, "dropdown", oConfigs); 
-};
-
-// DropdownCellEditor extends BaseCellEditor
-lang.extend(widget.DropdownCellEditor, BCE, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DropdownCellEditor public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Array of dropdown values. Can either be a simple array (e.g., 
- * ["Alabama","Alaska","Arizona","Arkansas"]) or a an array of objects (e.g., 
- * [{label:"Alabama", value:"AL"}, {label:"Alaska", value:"AK"},
- * {label:"Arizona", value:"AZ}, {label:"Arkansas", value:"AR}]). 
- *
- * @property dropdownOptions
- * @type String[] | Object[]
- */
-dropdownOptions : null,
-
-/**
- * Reference to Dropdown element.
- *
- * @property dropdown
- * @type HTMLElement
- */
-dropdown : null,
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DropdownCellEditor public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Render a form with select element.
- *
- * @method renderForm
- */
-renderForm : function() {
-    var elDropdown = this.getContainerEl().appendChild(document.createElement("select"));
-    elDropdown.style.zoom = 1;
-    this.dropdown = elDropdown;
-    
-    if(lang.isArray(this.dropdownOptions)) {
-        var dropdownOption, elOption;
-        for(var i=0, j=this.dropdownOptions.length; i<j; i++) {
-            dropdownOption = this.dropdownOptions[i];
-            elOption = document.createElement("option");
-            elOption.value = (lang.isValue(dropdownOption.value)) ?
-                    dropdownOption.value : dropdownOption;
-            elOption.innerHTML = (lang.isValue(dropdownOption.label)) ?
-                    dropdownOption.label : dropdownOption;
-            elOption = elDropdown.appendChild(elOption);
-        }
-        
-        if(this.disableBtns) {
-            this.handleDisabledBtns();
-        }
-    }
-},
-
-/**
- * After rendering form, if disabledBtns is set to true, then sets up a mechanism
- * to save input without them. 
- *
- * @method handleDisabledBtns
- */
-handleDisabledBtns : function() {
-    Ev.addListener(this.dropdown, "change", function(v){
-        // Save on change
-        this.save();
-    }, this, true);        
-},
-
-/**
- * Resets DropdownCellEditor UI to initial state.
- *
- * @method resetForm
- */
-resetForm : function() {
-    for(var i=0, j=this.dropdown.options.length; i<j; i++) {
-        if(this.value === this.dropdown.options[i].value) {
-            this.dropdown.options[i].selected = true;
-        }
-    }    
-},
-
-/**
- * Sets focus in DropdownCellEditor.
- *
- * @method focus
- */
-focus : function() {
-    this.getDataTable()._focusEl(this.dropdown);
-},
-
-/**
- * Retrieves input value from DropdownCellEditor.
- *
- * @method getInputValue
- */
-getInputValue : function() {
-    return this.dropdown.options[this.dropdown.options.selectedIndex].value;
-}
-
-});
-
-// Copy static members to DropdownCellEditor class
-lang.augmentObject(widget.DropdownCellEditor, BCE);
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * The RadioCellEditor class provides functionality for inline editing
- * DataTable cell data with radio buttons.
- *
- * @namespace YAHOO.widget
- * @class RadioCellEditor
- * @extends YAHOO.widget.BaseCellEditor 
- * @constructor
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.RadioCellEditor = function(oConfigs) {
-    this._sId = "yui-radioceditor" + YAHOO.widget.BaseCellEditor._nCount++;
-    widget.RadioCellEditor.superclass.constructor.call(this, "radio", oConfigs); 
-};
-
-// RadioCellEditor extends BaseCellEditor
-lang.extend(widget.RadioCellEditor, BCE, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// RadioCellEditor public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Reference to radio elements.
- *
- * @property radios
- * @type HTMLElement[]
- */
-radios : null,
-
-/**
- * Array of radio values. Can either be a simple array (e.g., ["yes","no","maybe"])
- * or a an array of objects (e.g., [{label:"yes", value:1}, {label:"no", value:-1},
- * {label:"maybe", value:0}]). 
- *
- * @property radioOptions
- * @type String[] | Object[]
- */
-radioOptions : null,
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// RadioCellEditor public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Render a form with input(s) type=radio.
- *
- * @method renderForm
- */
-renderForm : function() {
-    if(lang.isArray(this.radioOptions)) {
-        var radioOption, radioValue, radioId, elLabel;
-        
-        // Create the radio buttons in an IE-friendly way
-        for(var i=0, len=this.radioOptions.length; i<len; i++) {
-            radioOption = this.radioOptions[i];
-            radioValue = lang.isValue(radioOption.value) ?
-                    radioOption.value : radioOption;
-            radioId = this.getId() + "-radio" + i;
-            this.getContainerEl().innerHTML += "<input type=\"radio\"" +
-                    " name=\"" + this.getId() + "\"" +
-                    " value=\"" + radioValue + "\"" +
-                    " id=\"" +  radioId + "\" />"; // Needed for label
-            
-            // Create the labels in an IE-friendly way
-            elLabel = this.getContainerEl().appendChild(document.createElement("label"));
-            elLabel.htmlFor = radioId;
-            elLabel.innerHTML = (lang.isValue(radioOption.label)) ?
-                    radioOption.label : radioOption;
-        }
-        
-        // Store the reference to the checkbox elements
-        var allRadios = [],
-            elRadio;
-        for(var j=0; j<len; j++) {
-            elRadio = this.getContainerEl().childNodes[j*2];
-            allRadios[allRadios.length] = elRadio;
-        }
-        this.radios = allRadios;
-
-        if(this.disableBtns) {
-            this.handleDisabledBtns();
-        }
-    }
-    else {
-        YAHOO.log("Could not find radioOptions", "error", this.toString());
-    }
-},
-
-/**
- * After rendering form, if disabledBtns is set to true, then sets up a mechanism
- * to save input without them. 
- *
- * @method handleDisabledBtns
- */
-handleDisabledBtns : function() {
-    Ev.addListener(this.getContainerEl(), "click", function(v){
-        if(Ev.getTarget(v).tagName.toLowerCase() === "input") {
-            // Save on blur
-            this.save();
-        }
-    }, this, true);
-},
-
-/**
- * Resets RadioCellEditor UI to initial state.
- *
- * @method resetForm
- */
-resetForm : function() {
-    for(var i=0, j=this.radios.length; i<j; i++) {
-        var elRadio = this.radios[i];
-        if(this.value === elRadio.value) {
-            elRadio.checked = true;
-            return;
-        }
-    }
-},
-
-/**
- * Sets focus in RadioCellEditor.
- *
- * @method focus
- */
-focus : function() {
-    for(var i=0, j=this.radios.length; i<j; i++) {
-        if(this.radios[i].checked) {
-            this.radios[i].focus();
-            return;
-        }
-    }
-},
-
-/**
- * Retrieves input value from RadioCellEditor.
- *
- * @method getInputValue
- */
-getInputValue : function() {
-    for(var i=0, j=this.radios.length; i<j; i++) {
-        if(this.radios[i].checked) {
-            return this.radios[i].value;
-        }
-    }
-}
-
-});
-
-// Copy static members to RadioCellEditor class
-lang.augmentObject(widget.RadioCellEditor, BCE);
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * The TextareaCellEditor class provides functionality for inline editing
- * DataTable cell data with a TEXTAREA element.
- *
- * @namespace YAHOO.widget
- * @class TextareaCellEditor
- * @extends YAHOO.widget.BaseCellEditor 
- * @constructor
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.TextareaCellEditor = function(oConfigs) {
-    this._sId = "yui-textareaceditor" + YAHOO.widget.BaseCellEditor._nCount++;
-    widget.TextareaCellEditor.superclass.constructor.call(this, "textarea", oConfigs); 
-};
-
-// TextareaCellEditor extends BaseCellEditor
-lang.extend(widget.TextareaCellEditor, BCE, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// TextareaCellEditor public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Reference to textarea element.
- *
- * @property textarea
- * @type HTMLElement
- */
-textarea : null,
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// TextareaCellEditor public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Render a form with textarea.
- *
- * @method renderForm
- */
-renderForm : function() {
-    var elTextarea = this.getContainerEl().appendChild(document.createElement("textarea"));
-    this.textarea = elTextarea;
-
-    if(this.disableBtns) {
-        this.handleDisabledBtns();
-    }
-},
-
-/**
- * After rendering form, if disabledBtns is set to true, then sets up a mechanism
- * to save input without them. 
- *
- * @method handleDisabledBtns
- */
-handleDisabledBtns : function() {
-    Ev.addListener(this.textarea, "blur", function(v){
-        // Save on blur
-        this.save();
-    }, this, true);        
-},
-
-/**
- * Moves TextareaCellEditor UI to a cell.
- *
- * @method move
- */
-move : function() {
-    this.textarea.style.width = this.getTdEl().offsetWidth + "px";
-    this.textarea.style.height = "3em";
-    YAHOO.widget.TextareaCellEditor.superclass.move.call(this);
-},
-
-/**
- * Resets TextareaCellEditor UI to initial state.
- *
- * @method resetForm
- */
-resetForm : function() {
-    this.textarea.value = this.value;
-},
-
-/**
- * Sets focus in TextareaCellEditor.
- *
- * @method focus
- */
-focus : function() {
-    this.textarea.focus();
-    this.textarea.select();
-},
-
-/**
- * Retrieves input value from TextareaCellEditor.
- *
- * @method getInputValue
- */
-getInputValue : function() {
-    return this.textarea.value;
-}
-
-});
-
-// Copy static members to TextareaCellEditor class
-lang.augmentObject(widget.TextareaCellEditor, BCE);
-
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * The TextboxCellEditor class provides functionality for inline editing
- * DataTable cell data with an INPUT TYPE=TEXT element.
- *
- * @namespace YAHOO.widget
- * @class TextboxCellEditor
- * @extends YAHOO.widget.BaseCellEditor 
- * @constructor
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.TextboxCellEditor = function(oConfigs) {
-    this._sId = "yui-textboxceditor" + YAHOO.widget.BaseCellEditor._nCount++;
-    widget.TextboxCellEditor.superclass.constructor.call(this, "textbox", oConfigs); 
-};
-
-// TextboxCellEditor extends BaseCellEditor
-lang.extend(widget.TextboxCellEditor, BCE, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// TextboxCellEditor public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Reference to the textbox element.
- *
- * @property textbox
- */
-textbox : null,
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// TextboxCellEditor public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Render a form with input type=text.
- *
- * @method renderForm
- */
-renderForm : function() {
-    var elTextbox;
-    // Bug 1802582: SF3/Mac needs a form element wrapping the input
-    if(ua.webkit>420) {
-        elTextbox = this.getContainerEl().appendChild(document.createElement("form")).appendChild(document.createElement("input"));
-    }
-    else {
-        elTextbox = this.getContainerEl().appendChild(document.createElement("input"));
-    }
-    elTextbox.type = "text";
-    this.textbox = elTextbox;
-
-    // Save on enter by default
-    // Bug: 1802582 Set up a listener on each textbox to track on keypress
-    // since SF/OP can't preventDefault on keydown
-    Ev.addListener(elTextbox, "keypress", function(v){
-        if((v.keyCode === 13)) {
-            // Prevent form submit
-            YAHOO.util.Event.preventDefault(v);
-            this.save();
-        }
-    }, this, true);
-
-    if(this.disableBtns) {
-        // By default this is no-op since enter saves by default
-        this.handleDisabledBtns();
-    }
-},
-
-/**
- * Moves TextboxCellEditor UI to a cell.
- *
- * @method move
- */
-move : function() {
-    this.textbox.style.width = this.getTdEl().offsetWidth + "px";
-    widget.TextboxCellEditor.superclass.move.call(this);
-},
-
-/**
- * Resets TextboxCellEditor UI to initial state.
- *
- * @method resetForm
- */
-resetForm : function() {
-    this.textbox.value = lang.isValue(this.value) ? this.value.toString() : "";
-},
-
-/**
- * Sets focus in TextboxCellEditor.
- *
- * @method focus
- */
-focus : function() {
-    this.textbox.focus();
-    this.textbox.select();
-},
-
-/**
- * Returns new value for TextboxCellEditor.
- *
- * @method getInputValue
- */
-getInputValue : function() {
-    return this.textbox.value;
-}
-
-});
-
-// Copy static members to TextboxCellEditor class
-lang.augmentObject(widget.TextboxCellEditor, BCE);
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DataTable extension
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * CellEditor subclasses.
- * @property DataTable.Editors
- * @type Object
- * @static
- */
-DT.Editors = {
-    checkbox : widget.CheckboxCellEditor,
-    "date"   : widget.DateCellEditor,
-    dropdown : widget.DropdownCellEditor,
-    radio    : widget.RadioCellEditor,
-    textarea : widget.TextareaCellEditor,
-    textbox  : widget.TextboxCellEditor
-};
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * Factory class for instantiating a BaseCellEditor subclass.
- *
- * @namespace YAHOO.widget
- * @class CellEditor
- * @extends YAHOO.widget.BaseCellEditor 
- * @constructor
- * @param sType {String} Type indicator, to map to YAHOO.widget.DataTable.Editors.
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.CellEditor = function(sType, oConfigs) {
-    // Point to one of the subclasses
-    if(sType && DT.Editors[sType]) {
-        lang.augmentObject(BCE, DT.Editors[sType]);
-        return new DT.Editors[sType](oConfigs);
-    }
-    else {
-        return new BCE(null, oConfigs);
-    }
-};
-
-var CE = widget.CellEditor;
-
-// Copy static members to CellEditor class
-lang.augmentObject(CE, BCE);
-
-
-})();
-
-YAHOO.register("datatable", YAHOO.widget.DataTable, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/datatable/datatable-min.js b/eclipse.org-common/yui/2.6.0/build/datatable/datatable-min.js
deleted file mode 100644
index b50b8d3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/datatable/datatable-min.js
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.util.Chain=function(){this.q=[].slice.call(arguments);this.createEvent("end");};YAHOO.util.Chain.prototype={id:0,run:function(){var F=this.q[0],C;if(!F){this.fireEvent("end");return this;}else{if(this.id){return this;}}C=F.method||F;if(typeof C==="function"){var E=F.scope||{},B=F.argument||[],A=F.timeout||0,D=this;if(!(B instanceof Array)){B=[B];}if(A<0){this.id=A;if(F.until){for(;!F.until();){C.apply(E,B);}}else{if(F.iterations){for(;F.iterations-->0;){C.apply(E,B);}}else{C.apply(E,B);}}this.q.shift();this.id=0;return this.run();}else{if(F.until){if(F.until()){this.q.shift();return this.run();}}else{if(!F.iterations||!--F.iterations){this.q.shift();}}this.id=setTimeout(function(){C.apply(E,B);if(D.id){D.id=0;D.run();}},A);}}return this;},add:function(A){this.q.push(A);return this;},pause:function(){clearTimeout(this.id);this.id=0;return this;},stop:function(){this.pause();this.q=[];return this;}};YAHOO.lang.augmentProto(YAHOO.util.Chain,YAHOO.util.EventProvider);YAHOO.widget.ColumnSet=function(A){this._sId="yui-cs"+YAHOO.widget.ColumnSet._nCount;A=YAHOO.widget.DataTable._cloneObject(A);this._init(A);YAHOO.widget.ColumnSet._nCount++;};YAHOO.widget.ColumnSet._nCount=0;YAHOO.widget.ColumnSet.prototype={_sId:null,_aDefinitions:null,tree:null,flat:null,keys:null,headers:null,_init:function(I){var J=[];var A=[];var G=[];var E=[];var C=-1;var B=function(M,S){C++;if(!J[C]){J[C]=[];}for(var O=0;O<M.length;O++){var K=M[O];var Q=new YAHOO.widget.Column(K);K.yuiColumnId=Q._sId;A.push(Q);if(S){Q._oParent=S;}if(YAHOO.lang.isArray(K.children)){Q.children=K.children;var R=0;var P=function(V){var W=V.children;for(var U=0;U<W.length;U++){if(YAHOO.lang.isArray(W[U].children)){P(W[U]);}else{R++;}}};P(K);Q._nColspan=R;var T=K.children;for(var N=0;N<T.length;N++){var L=T[N];if(Q.className&&(L.className===undefined)){L.className=Q.className;}if(Q.editor&&(L.editor===undefined)){L.editor=Q.editor;}if(Q.editorOptions&&(L.editorOptions===undefined)){L.editorOptions=Q.editorOptions;}if(Q.formatter&&(L.formatter===undefined)){L.formatter=Q.formatter;}if(Q.resizeable&&(L.resizeable===undefined)){L.resizeable=Q.resizeable;}if(Q.sortable&&(L.sortable===undefined)){L.sortable=Q.sortable;}if(Q.hidden){L.hidden=true;}if(Q.width&&(L.width===undefined)){L.width=Q.width;}if(Q.minWidth&&(L.minWidth===undefined)){L.minWidth=Q.minWidth;}if(Q.maxAutoWidth&&(L.maxAutoWidth===undefined)){L.maxAutoWidth=Q.maxAutoWidth;}if(Q.type&&(L.type===undefined)){L.type=Q.type;}if(Q.type&&!Q.formatter){Q.formatter=Q.type;}if(Q.text&&!YAHOO.lang.isValue(Q.label)){Q.label=Q.text;}if(Q.parser){}if(Q.sortOptions&&((Q.sortOptions.ascFunction)||(Q.sortOptions.descFunction))){}}if(!J[C+1]){J[C+1]=[];}B(T,Q);}else{Q._nKeyIndex=G.length;Q._nColspan=1;G.push(Q);}J[C].push(Q);}C--;};if(YAHOO.lang.isArray(I)){B(I);this._aDefinitions=I;}else{return null;}var F;var D=function(L){var M=1;var O;var N;var P=function(T,S){S=S||1;for(var U=0;U<T.length;U++){var R=T[U];if(YAHOO.lang.isArray(R.children)){S++;P(R.children,S);S--;}else{if(S>M){M=S;}}}};for(var K=0;K<L.length;K++){O=L[K];P(O);for(var Q=0;Q<O.length;Q++){N=O[Q];if(!YAHOO.lang.isArray(N.children)){N._nRowspan=M;}else{N._nRowspan=1;}}M=1;}};D(J);for(F=0;F<J[0].length;F++){J[0][F]._nTreeIndex=F;}var H=function(K,L){E[K].push(L.getSanitizedKey());if(L._oParent){H(K,L._oParent);}};for(F=0;F<G.length;F++){E[F]=[];H(F,G[F]);E[F]=E[F].reverse();}this.tree=J;this.flat=A;this.keys=G;this.headers=E;},getId:function(){return this._sId;},toString:function(){return"ColumnSet instance "+this._sId;},getDefinitions:function(){var A=this._aDefinitions;var B=function(E,G){for(var D=0;D<E.length;D++){var F=E[D];var I=G.getColumnById(F.yuiColumnId);if(I){var H=I.getDefinition();for(var C in H){if(YAHOO.lang.hasOwnProperty(H,C)){F[C]=H[C];}}}if(YAHOO.lang.isArray(F.children)){B(F.children,G);}}};B(A,this);this._aDefinitions=A;return A;},getColumnById:function(C){if(YAHOO.lang.isString(C)){var A=this.flat;for(var B=A.length-1;B>-1;B--){if(A[B]._sId===C){return A[B];}}}return null;},getColumn:function(C){if(YAHOO.lang.isNumber(C)&&this.keys[C]){return this.keys[C];}else{if(YAHOO.lang.isString(C)){var A=this.flat;var D=[];for(var B=0;B<A.length;B++){if(A[B].key===C){D.push(A[B]);}}if(D.length===1){return D[0];}else{if(D.length>1){return D;}}}}return null;},getDescendants:function(D){var B=this;var C=[];var A;var E=function(F){C.push(F);if(F.children){for(A=0;A<F.children.length;A++){E(B.getColumn(F.children[A].key));}}};E(D);return C;}};YAHOO.widget.Column=function(B){this._sId="yui-col"+YAHOO.widget.Column._nCount;if(B&&YAHOO.lang.isObject(B)){for(var A in B){if(A){this[A]=B[A];}}}if(!YAHOO.lang.isValue(this.key)){this.key="yui-dt-col"+YAHOO.widget.Column._nCount;}if(!YAHOO.lang.isValue(this.field)){this.field=this.key;}YAHOO.widget.Column._nCount++;if(this.width&&!YAHOO.lang.isNumber(this.width)){this.width=null;}if(this.editor&&YAHOO.lang.isString(this.editor)){this.editor=new YAHOO.widget.CellEditor(this.editor,this.editorOptions);}};YAHOO.lang.augmentObject(YAHOO.widget.Column,{_nCount:0,formatCheckbox:function(B,A,C,D){YAHOO.widget.DataTable.formatCheckbox(B,A,C,D);},formatCurrency:function(B,A,C,D){YAHOO.widget.DataTable.formatCurrency(B,A,C,D);},formatDate:function(B,A,C,D){YAHOO.widget.DataTable.formatDate(B,A,C,D);},formatEmail:function(B,A,C,D){YAHOO.widget.DataTable.formatEmail(B,A,C,D);},formatLink:function(B,A,C,D){YAHOO.widget.DataTable.formatLink(B,A,C,D);},formatNumber:function(B,A,C,D){YAHOO.widget.DataTable.formatNumber(B,A,C,D);},formatSelect:function(B,A,C,D){YAHOO.widget.DataTable.formatDropdown(B,A,C,D);}});YAHOO.widget.Column.prototype={_sId:null,_nKeyIndex:null,_nTreeIndex:null,_nColspan:1,_nRowspan:1,_oParent:null,_elTh:null,_elThLiner:null,_elThLabel:null,_elResizer:null,_nWidth:null,_dd:null,_ddResizer:null,key:null,field:null,label:null,abbr:null,children:null,width:null,minWidth:null,maxAutoWidth:null,hidden:false,selected:false,className:null,formatter:null,currencyOptions:null,dateOptions:null,editor:null,resizeable:false,sortable:false,sortOptions:null,getId:function(){return this._sId;
-},toString:function(){return"Column instance "+this._sId;},getDefinition:function(){var A={};A.abbr=this.abbr;A.className=this.className;A.editor=this.editor;A.editorOptions=this.editorOptions;A.field=this.field;A.formatter=this.formatter;A.hidden=this.hidden;A.key=this.key;A.label=this.label;A.minWidth=this.minWidth;A.maxAutoWidth=this.maxAutoWidth;A.resizeable=this.resizeable;A.selected=this.selected;A.sortable=this.sortable;A.sortOptions=this.sortOptions;A.width=this.width;return A;},getKey:function(){return this.key;},getField:function(){return this.field;},getSanitizedKey:function(){return this.getKey().replace(/[^\w\-.:]/g,"");},getKeyIndex:function(){return this._nKeyIndex;},getTreeIndex:function(){return this._nTreeIndex;},getParent:function(){return this._oParent;},getColspan:function(){return this._nColspan;},getColSpan:function(){return this.getColspan();},getRowspan:function(){return this._nRowspan;},getThEl:function(){return this._elTh;},getThLinerEl:function(){return this._elThLiner;},getResizerEl:function(){return this._elResizer;},getColEl:function(){return this.getThEl();},getIndex:function(){return this.getKeyIndex();},format:function(){}};YAHOO.util.Sort={compare:function(B,A,C){if((B===null)||(typeof B=="undefined")){if((A===null)||(typeof A=="undefined")){return 0;}else{return 1;}}else{if((A===null)||(typeof A=="undefined")){return -1;}}if(B.constructor==String){B=B.toLowerCase();}if(A.constructor==String){A=A.toLowerCase();}if(B<A){return(C)?1:-1;}else{if(B>A){return(C)?-1:1;}else{return 0;}}}};YAHOO.widget.ColumnDD=function(D,A,C,B){if(D&&A&&C&&B){this.datatable=D;this.table=D.getTableEl();this.column=A;this.headCell=C;this.pointer=B;this.newIndex=null;this.init(C);this.initFrame();this.invalidHandleTypes={};this.setPadding(10,0,(this.datatable.getTheadEl().offsetHeight+10),0);YAHOO.util.Event.on(window,"resize",function(){this.initConstraints();},this,true);}else{}};if(YAHOO.util.DDProxy){YAHOO.extend(YAHOO.widget.ColumnDD,YAHOO.util.DDProxy,{initConstraints:function(){var G=YAHOO.util.Dom.getRegion(this.table),D=this.getEl(),F=YAHOO.util.Dom.getXY(D),C=parseInt(YAHOO.util.Dom.getStyle(D,"width"),10),A=parseInt(YAHOO.util.Dom.getStyle(D,"height"),10),E=((F[0]-G.left)+15),B=((G.right-F[0]-C)+15);this.setXConstraint(E,B);this.setYConstraint(10,10);},_resizeProxy:function(){this.constructor.superclass._resizeProxy.apply(this,arguments);var A=this.getDragEl(),B=this.getEl();YAHOO.util.Dom.setStyle(this.pointer,"height",(this.table.parentNode.offsetHeight+10)+"px");YAHOO.util.Dom.setStyle(this.pointer,"display","block");var C=YAHOO.util.Dom.getXY(B);YAHOO.util.Dom.setXY(this.pointer,[C[0],(C[1]-5)]);YAHOO.util.Dom.setStyle(A,"height",this.datatable.getContainerEl().offsetHeight+"px");YAHOO.util.Dom.setStyle(A,"width",(parseInt(YAHOO.util.Dom.getStyle(A,"width"),10)+4)+"px");YAHOO.util.Dom.setXY(this.dragEl,C);},onMouseDown:function(){this.initConstraints();this.resetConstraints();},clickValidator:function(B){if(!this.column.hidden){var A=YAHOO.util.Event.getTarget(B);return(this.isValidHandleChild(A)&&(this.id==this.handleElId||this.DDM.handleWasClicked(A,this.id)));}},onDragOver:function(H,A){var F=this.datatable.getColumn(A);if(F){var C=F.getTreeIndex();while((C===null)&&F.getParent()){F=F.getParent();C=F.getTreeIndex();}if(C!==null){var B=F.getThEl();var K=C;var D=YAHOO.util.Event.getPageX(H),I=YAHOO.util.Dom.getX(B),J=I+((YAHOO.util.Dom.get(B).offsetWidth)/2),E=this.column.getTreeIndex();if(D<J){YAHOO.util.Dom.setX(this.pointer,I);}else{var G=parseInt(B.offsetWidth,10);YAHOO.util.Dom.setX(this.pointer,(I+G));K++;}if(C>E){K--;}if(K<0){K=0;}else{if(K>this.datatable.getColumnSet().tree[0].length){K=this.datatable.getColumnSet().tree[0].length;}}this.newIndex=K;}}},onDragDrop:function(){this.datatable.reorderColumn(this.column,this.newIndex);},endDrag:function(){this.newIndex=null;YAHOO.util.Dom.setStyle(this.pointer,"display","none");}});}YAHOO.util.ColumnResizer=function(E,C,D,A,B){if(E&&C&&D&&A){this.datatable=E;this.column=C;this.headCell=D;this.headCellLiner=C.getThLinerEl();this.resizerLiner=D.firstChild;this.init(A,A,{dragOnly:true,dragElId:B.id});this.initFrame();this.resetResizerEl();this.setPadding(0,1,0,0);}else{}};if(YAHOO.util.DD){YAHOO.extend(YAHOO.util.ColumnResizer,YAHOO.util.DDProxy,{resetResizerEl:function(){var A=YAHOO.util.Dom.get(this.handleElId).style;A.left="auto";A.right=0;A.top="auto";A.bottom=0;A.height=this.headCell.offsetHeight+"px";},onMouseUp:function(G){var E=this.datatable.getColumnSet().keys,B;for(var C=0,A=E.length;C<A;C++){B=E[C];if(B._ddResizer){B._ddResizer.resetResizerEl();}}this.resetResizerEl();var D=this.headCellLiner;var F=D.offsetWidth-(parseInt(YAHOO.util.Dom.getStyle(D,"paddingLeft"),10)|0)-(parseInt(YAHOO.util.Dom.getStyle(D,"paddingRight"),10)|0);this.datatable.fireEvent("columnResizeEvent",{column:this.column,target:this.headCell,width:F});},onMouseDown:function(A){this.startWidth=this.headCellLiner.offsetWidth;this.startX=YAHOO.util.Event.getXY(A)[0];this.nLinerPadding=(parseInt(YAHOO.util.Dom.getStyle(this.headCellLiner,"paddingLeft"),10)|0)+(parseInt(YAHOO.util.Dom.getStyle(this.headCellLiner,"paddingRight"),10)|0);},clickValidator:function(B){if(!this.column.hidden){var A=YAHOO.util.Event.getTarget(B);return(this.isValidHandleChild(A)&&(this.id==this.handleElId||this.DDM.handleWasClicked(A,this.id)));}},startDrag:function(){var E=this.datatable.getColumnSet().keys,D=this.column.getKeyIndex(),B;for(var C=0,A=E.length;C<A;C++){B=E[C];if(B._ddResizer){YAHOO.util.Dom.get(B._ddResizer.handleElId).style.height="1em";}}},onDrag:function(C){var D=YAHOO.util.Event.getXY(C)[0];if(D>YAHOO.util.Dom.getX(this.headCellLiner)){var A=D-this.startX;var B=this.startWidth+A-this.nLinerPadding;if(B>0){this.datatable.setColumnWidth(this.column,B);}}}});}(function(){var G=YAHOO.lang,A=YAHOO.util,E=YAHOO.widget,C=A.Dom,F=A.Event,D=E.DataTable;YAHOO.widget.RecordSet=function(H){this._sId="yui-rs"+E.RecordSet._nCount;E.RecordSet._nCount++;this._records=[];
-if(H){if(G.isArray(H)){this.addRecords(H);}else{if(G.isObject(H)){this.addRecord(H);}}}};var B=E.RecordSet;B._nCount=0;B.prototype={_sId:null,_addRecord:function(J,H){var I=new YAHOO.widget.Record(J);if(YAHOO.lang.isNumber(H)&&(H>-1)){this._records.splice(H,0,I);}else{this._records[this._records.length]=I;}return I;},_setRecord:function(I,H){if(!G.isNumber(H)||H<0){H=this._records.length;}return(this._records[H]=new E.Record(I));},_deleteRecord:function(I,H){if(!G.isNumber(H)||(H<0)){H=1;}this._records.splice(I,H);},getId:function(){return this._sId;},toString:function(){return"RecordSet instance "+this._sId;},getLength:function(){return this._records.length;},getRecord:function(H){var I;if(H instanceof E.Record){for(I=0;I<this._records.length;I++){if(this._records[I]&&(this._records[I]._sId===H._sId)){return H;}}}else{if(G.isNumber(H)){if((H>-1)&&(H<this.getLength())){return this._records[H];}}else{if(G.isString(H)){for(I=0;I<this._records.length;I++){if(this._records[I]&&(this._records[I]._sId===H)){return this._records[I];}}}}}return null;},getRecords:function(I,H){if(!G.isNumber(I)){return this._records;}if(!G.isNumber(H)){return this._records.slice(I);}return this._records.slice(I,I+H);},hasRecords:function(I,H){var K=this.getRecords(I,H);for(var J=0;J<H;++J){if(typeof K[J]==="undefined"){return false;}}return true;},getRecordIndex:function(I){if(I){for(var H=this._records.length-1;H>-1;H--){if(this._records[H]&&I.getId()===this._records[H].getId()){return H;}}}return null;},addRecord:function(J,H){if(G.isObject(J)){var I=this._addRecord(J,H);this.fireEvent("recordAddEvent",{record:I,data:J});return I;}else{return null;}},addRecords:function(L,K){if(G.isArray(L)){var O=[],I,M,H;K=G.isNumber(K)?K:this._records.length;I=K;for(M=0,H=L.length;M<H;++M){if(G.isObject(L[M])){var J=this._addRecord(L[M],I++);O.push(J);}}this.fireEvent("recordsAddEvent",{records:O,data:L});return O;}else{if(G.isObject(L)){var N=this._addRecord(L);this.fireEvent("recordsAddEvent",{records:[N],data:L});return N;}else{return null;}}},setRecord:function(J,H){if(G.isObject(J)){var I=this._setRecord(J,H);this.fireEvent("recordSetEvent",{record:I,data:J});return I;}else{return null;}},setRecords:function(L,K){var O=E.Record,I=G.isArray(L)?L:[L],N=[],M=0,H=I.length,J=0;K=parseInt(K,10)|0;for(;M<H;++M){if(typeof I[M]==="object"&&I[M]){N[J++]=this._records[K+M]=new O(I[M]);}}this.fireEvent("recordsSetEvent",{records:N,data:L});this.fireEvent("recordsSet",{records:N,data:L});if(I.length&&!N.length){}return N.length>1?N:N[0];},updateRecord:function(H,L){var J=this.getRecord(H);if(J&&G.isObject(L)){var K={};for(var I in J._oData){if(G.hasOwnProperty(J._oData,I)){K[I]=J._oData[I];}}J._oData=L;this.fireEvent("recordUpdateEvent",{record:J,newData:L,oldData:K});return J;}else{return null;}},updateKey:function(H,I,J){this.updateRecordValue(H,I,J);},updateRecordValue:function(H,K,N){var J=this.getRecord(H);if(J){var M=null;var L=J._oData[K];if(L&&G.isObject(L)){M={};for(var I in L){if(G.hasOwnProperty(L,I)){M[I]=L[I];}}}else{M=L;}J._oData[K]=N;this.fireEvent("keyUpdateEvent",{record:J,key:K,newData:N,oldData:M});this.fireEvent("recordValueUpdateEvent",{record:J,key:K,newData:N,oldData:M});}else{}},replaceRecords:function(H){this.reset();return this.addRecords(H);},sortRecords:function(H,I){return this._records.sort(function(K,J){return H(K,J,I);});},reverseRecords:function(){return this._records.reverse();},deleteRecord:function(H){if(G.isNumber(H)&&(H>-1)&&(H<this.getLength())){var I=E.DataTable._cloneObject(this.getRecord(H).getData());this._deleteRecord(H);this.fireEvent("recordDeleteEvent",{data:I,index:H});return I;}else{return null;}},deleteRecords:function(J,H){if(!G.isNumber(H)){H=1;}if(G.isNumber(J)&&(J>-1)&&(J<this.getLength())){var L=this.getRecords(J,H);var I=[];for(var K=0;K<L.length;K++){I[I.length]=E.DataTable._cloneObject(L[K]);}this._deleteRecord(J,H);this.fireEvent("recordsDeleteEvent",{data:I,index:J});return I;}else{return null;}},reset:function(){this._records=[];this.fireEvent("resetEvent");}};G.augmentProto(B,A.EventProvider);YAHOO.widget.Record=function(H){this._nCount=E.Record._nCount;this._sId="yui-rec"+this._nCount;E.Record._nCount++;this._oData={};if(G.isObject(H)){for(var I in H){if(G.hasOwnProperty(H,I)){this._oData[I]=H[I];}}}};YAHOO.widget.Record._nCount=0;YAHOO.widget.Record.prototype={_nCount:null,_sId:null,_oData:null,getCount:function(){return this._nCount;},getId:function(){return this._sId;},getData:function(H){if(G.isString(H)){return this._oData[H];}else{return this._oData;}},setData:function(H,I){this._oData[H]=I;}};})();(function(){var H=YAHOO.lang,A=YAHOO.util,E=YAHOO.widget,B=YAHOO.env.ua,C=A.Dom,G=A.Event,F=A.DataSourceBase;YAHOO.widget.DataTable=function(I,M,O,K){var L=E.DataTable;if(K&&K.scrollable){return new YAHOO.widget.ScrollingDataTable(I,M,O,K);}this._nIndex=L._nCount;this._sId="yui-dt"+this._nIndex;this._oChainRender=new YAHOO.util.Chain();this._oChainRender.subscribe("end",this._onRenderChainEnd,this,true);this._initConfigs(K);this._initDataSource(O);if(!this._oDataSource){return ;}this._initColumnSet(M);if(!this._oColumnSet){return ;}this._initRecordSet();if(!this._oRecordSet){}L.superclass.constructor.call(this,I,this.configs);var Q=this._initDomElements(I);if(!Q){return ;}this.showTableMessage(this.get("MSG_LOADING"),L.CLASS_LOADING);this._initEvents();L._nCount++;L._nCurrentCount++;var N={success:this.onDataReturnSetRows,failure:this.onDataReturnSetRows,scope:this,argument:this.getState()};var P=this.get("initialLoad");if(P===true){this._oDataSource.sendRequest(this.get("initialRequest"),N);}else{if(P===false){this.showTableMessage(this.get("MSG_EMPTY"),L.CLASS_EMPTY);}else{var J=P||{};N.argument=J.argument||{};this._oDataSource.sendRequest(J.request,N);}}};var D=E.DataTable;H.augmentObject(D,{CLASS_DATATABLE:"yui-dt",CLASS_LINER:"yui-dt-liner",CLASS_LABEL:"yui-dt-label",CLASS_MESSAGE:"yui-dt-message",CLASS_MASK:"yui-dt-mask",CLASS_DATA:"yui-dt-data",CLASS_COLTARGET:"yui-dt-coltarget",CLASS_RESIZER:"yui-dt-resizer",CLASS_RESIZERLINER:"yui-dt-resizerliner",CLASS_RESIZERPROXY:"yui-dt-resizerproxy",CLASS_EDITOR:"yui-dt-editor",CLASS_PAGINATOR:"yui-dt-paginator",CLASS_PAGE:"yui-dt-page",CLASS_DEFAULT:"yui-dt-default",CLASS_PREVIOUS:"yui-dt-previous",CLASS_NEXT:"yui-dt-next",CLASS_FIRST:"yui-dt-first",CLASS_LAST:"yui-dt-last",CLASS_EVEN:"yui-dt-even",CLASS_ODD:"yui-dt-odd",CLASS_SELECTED:"yui-dt-selected",CLASS_HIGHLIGHTED:"yui-dt-highlighted",CLASS_HIDDEN:"yui-dt-hidden",CLASS_DISABLED:"yui-dt-disabled",CLASS_EMPTY:"yui-dt-empty",CLASS_LOADING:"yui-dt-loading",CLASS_ERROR:"yui-dt-error",CLASS_EDITABLE:"yui-dt-editable",CLASS_DRAGGABLE:"yui-dt-draggable",CLASS_RESIZEABLE:"yui-dt-resizeable",CLASS_SCROLLABLE:"yui-dt-scrollable",CLASS_SORTABLE:"yui-dt-sortable",CLASS_ASC:"yui-dt-asc",CLASS_DESC:"yui-dt-desc",CLASS_BUTTON:"yui-dt-button",CLASS_CHECKBOX:"yui-dt-checkbox",CLASS_DROPDOWN:"yui-dt-dropdown",CLASS_RADIO:"yui-dt-radio",_nCount:0,_nCurrentCount:0,_elDynStyleNode:null,_bDynStylesFallback:(B.ie&&(B.ie<7))?true:false,_oDynStyles:{},_elColumnDragTarget:null,_elColumnResizerProxy:null,_cloneObject:function(L){if(!H.isValue(L)){return L;
-}var N={};if(L instanceof YAHOO.widget.BaseCellEditor){N=L;}else{if(H.isFunction(L)){N=L;}else{if(H.isArray(L)){var M=[];for(var K=0,J=L.length;K<J;K++){M[K]=D._cloneObject(L[K]);}N=M;}else{if(H.isObject(L)){for(var I in L){if(H.hasOwnProperty(L,I)){if(H.isValue(L[I])&&H.isObject(L[I])||H.isArray(L[I])){N[I]=D._cloneObject(L[I]);}else{N[I]=L[I];}}}}else{N=L;}}}}return N;},_destroyColumnDragTargetEl:function(){if(D._elColumnDragTarget){var I=D._elColumnDragTarget;YAHOO.util.Event.purgeElement(I);I.parentNode.removeChild(I);D._elColumnDragTarget=null;}},_initColumnDragTargetEl:function(){if(!D._elColumnDragTarget){var I=document.createElement("div");I.className=D.CLASS_COLTARGET;I.style.display="none";document.body.insertBefore(I,document.body.firstChild);D._elColumnDragTarget=I;}return D._elColumnDragTarget;},_destroyColumnResizerProxyEl:function(){if(D._elColumnResizerProxy){var I=D._elColumnResizerProxy;YAHOO.util.Event.purgeElement(I);I.parentNode.removeChild(I);D._elColumnResizerProxy=null;}},_initColumnResizerProxyEl:function(){if(!D._elColumnResizerProxy){var I=document.createElement("div");I.id="yui-dt-colresizerproxy";I.className=D.CLASS_RESIZERPROXY;document.body.insertBefore(I,document.body.firstChild);D._elColumnResizerProxy=I;}return D._elColumnResizerProxy;},formatButton:function(I,J,K,M){var L=H.isValue(M)?M:"Click";I.innerHTML='<button type="button" class="'+D.CLASS_BUTTON+'">'+L+"</button>";},formatCheckbox:function(I,J,K,M){var L=M;L=(L)?' checked="checked"':"";I.innerHTML='<input type="checkbox"'+L+' class="'+D.CLASS_CHECKBOX+'" />';},formatCurrency:function(I,J,K,L){I.innerHTML=A.Number.format(L,K.currencyOptions||this.get("currencyOptions"));},formatDate:function(I,K,L,M){var J=L.dateOptions||this.get("dateOptions");I.innerHTML=A.Date.format(M,J,J.locale);},formatDropdown:function(K,R,P,I){var Q=(H.isValue(I))?I:R.getData(P.field);var S=(H.isArray(P.dropdownOptions))?P.dropdownOptions:null;var J;var O=K.getElementsByTagName("select");if(O.length===0){J=document.createElement("select");J.className=D.CLASS_DROPDOWN;J=K.appendChild(J);G.addListener(J,"change",this._onDropdownChange,this);}J=O[0];if(J){J.innerHTML="";if(S){for(var M=0;M<S.length;M++){var N=S[M];var L=document.createElement("option");L.value=(H.isValue(N.value))?N.value:N;L.innerHTML=(H.isValue(N.text))?N.text:N;L=J.appendChild(L);if(L.value==Q){L.selected=true;}}}else{J.innerHTML='<option selected value="'+Q+'">'+Q+"</option>";}}else{K.innerHTML=H.isValue(I)?I:"";}},formatEmail:function(I,J,K,L){if(H.isString(L)){I.innerHTML='<a href="mailto:'+L+'">'+L+"</a>";}else{I.innerHTML=H.isValue(L)?L:"";}},formatLink:function(I,J,K,L){if(H.isString(L)){I.innerHTML='<a href="'+L+'">'+L+"</a>";}else{I.innerHTML=H.isValue(L)?L:"";}},formatNumber:function(I,J,K,L){I.innerHTML=A.Number.format(L,K.numberOptions||this.get("numberOptions"));},formatRadio:function(I,J,K,M){var L=M;L=(L)?' checked="checked"':"";I.innerHTML='<input type="radio"'+L+' name="'+this.getId()+"-col-"+K.getSanitizedKey()+'"'+' class="'+D.CLASS_RADIO+'" />';},formatText:function(I,J,L,M){var K=(H.isValue(J.getData(L.field)))?J.getData(L.field):"";I.innerHTML=K.toString().replace(/&/g,"&#38;").replace(/</g,"&#60;").replace(/>/g,"&#62;");},formatTextarea:function(J,K,M,N){var L=(H.isValue(K.getData(M.field)))?K.getData(M.field):"";var I="<textarea>"+L+"</textarea>";J.innerHTML=I;},formatTextbox:function(J,K,M,N){var L=(H.isValue(K.getData(M.field)))?K.getData(M.field):"";var I='<input type="text" value="'+L+'" />';J.innerHTML=I;},formatDefault:function(I,J,K,L){I.innerHTML=L===undefined||L===null||(typeof L==="number"&&isNaN(L))?"&#160;":L.toString();},validateNumber:function(J){var I=J*1;if(H.isNumber(I)){return I;}else{return undefined;}}});D.Formatter={button:D.formatButton,checkbox:D.formatCheckbox,currency:D.formatCurrency,"date":D.formatDate,dropdown:D.formatDropdown,email:D.formatEmail,link:D.formatLink,"number":D.formatNumber,radio:D.formatRadio,text:D.formatText,textarea:D.formatTextarea,textbox:D.formatTextbox,defaultFormatter:D.formatDefault};H.extend(D,A.Element,{initAttributes:function(I){I=I||{};D.superclass.initAttributes.call(this,I);this.setAttributeConfig("summary",{value:"",validator:H.isString,method:function(J){if(this._elTable){this._elTable.summary=J;}}});this.setAttributeConfig("selectionMode",{value:"standard",validator:H.isString});this.setAttributeConfig("sortedBy",{value:null,validator:function(J){if(J){return(H.isObject(J)&&J.key);}else{return(J===null);}},method:function(K){var R=this.get("sortedBy");this._configs.sortedBy.value=K;var J,O,M,Q;if(this._elThead){if(R&&R.key&&R.dir){J=this._oColumnSet.getColumn(R.key);O=J.getKeyIndex();var U=J.getThEl();C.removeClass(U,R.dir);this.formatTheadCell(J.getThLinerEl().firstChild,J,K);}if(K){M=(K.column)?K.column:this._oColumnSet.getColumn(K.key);Q=M.getKeyIndex();var V=M.getThEl();if(K.dir&&((K.dir=="asc")||(K.dir=="desc"))){var P=(K.dir=="desc")?D.CLASS_DESC:D.CLASS_ASC;C.addClass(V,P);}else{var L=K.dir||D.CLASS_ASC;C.addClass(V,L);}this.formatTheadCell(M.getThLinerEl().firstChild,M,K);}}if(this._elTbody){this._elTbody.style.display="none";var S=this._elTbody.rows,T;for(var N=S.length-1;N>-1;N--){T=S[N].childNodes;if(T[O]){C.removeClass(T[O],R.dir);}if(T[Q]){C.addClass(T[Q],K.dir);}}this._elTbody.style.display="";}this._clearTrTemplateEl();}});this.setAttributeConfig("paginator",{value:null,validator:function(J){return J===null||J instanceof E.Paginator;},method:function(){this._updatePaginator.apply(this,arguments);}});this.setAttributeConfig("caption",{value:null,validator:H.isString,method:function(J){this._initCaptionEl(J);}});this.setAttributeConfig("draggableColumns",{value:false,validator:H.isBoolean,method:function(J){if(this._elThead){if(J){this._initDraggableColumns();}else{this._destroyDraggableColumns();}}}});this.setAttributeConfig("renderLoopSize",{value:0,validator:H.isNumber});this.setAttributeConfig("formatRow",{value:null,validator:H.isFunction});this.setAttributeConfig("generateRequest",{value:function(K,N){K=K||{pagination:null,sortedBy:null};
-var M=(K.sortedBy)?K.sortedBy.key:N.getColumnSet().keys[0].getKey();var J=(K.sortedBy&&K.sortedBy.dir===D.CLASS_DESC)?"desc":"asc";var O=(K.pagination)?K.pagination.recordOffset:0;var L=(K.pagination)?K.pagination.rowsPerPage:null;return"sort="+M+"&dir="+J+"&startIndex="+O+((L!==null)?"&results="+L:"");},validator:H.isFunction});this.setAttributeConfig("initialRequest",{value:null});this.setAttributeConfig("initialLoad",{value:true});this.setAttributeConfig("dynamicData",{value:false,validator:H.isBoolean});this.setAttributeConfig("MSG_EMPTY",{value:"No records found.",validator:H.isString});this.setAttributeConfig("MSG_LOADING",{value:"Loading...",validator:H.isString});this.setAttributeConfig("MSG_ERROR",{value:"Data error.",validator:H.isString});this.setAttributeConfig("MSG_SORTASC",{value:"Click to sort ascending",validator:H.isString,method:function(K){if(this._elThead){for(var L=0,M=this.getColumnSet().keys,J=M.length;L<J;L++){if(M[L].sortable&&this.getColumnSortDir(M[L])===D.CLASS_ASC){M[L]._elThLabel.firstChild.title=K;}}}}});this.setAttributeConfig("MSG_SORTDESC",{value:"Click to sort descending",validator:H.isString,method:function(K){if(this._elThead){for(var L=0,M=this.getColumnSet().keys,J=M.length;L<J;L++){if(M[L].sortable&&this.getColumnSortDir(M[L])===D.CLASS_DESC){M[L]._elThLabel.firstChild.title=K;}}}}});this.setAttributeConfig("currencySymbol",{value:"$",validator:H.isString});this.setAttributeConfig("currencyOptions",{value:{prefix:this.get("currencySymbol"),decimalPlaces:2,decimalSeparator:".",thousandsSeparator:","}});this.setAttributeConfig("dateOptions",{value:{format:"%m/%d/%Y",locale:"en"}});this.setAttributeConfig("numberOptions",{value:{decimalPlaces:0,thousandsSeparator:","}});},_bInit:true,_nIndex:null,_nTrCount:0,_nTdCount:0,_sId:null,_oChainRender:null,_elContainer:null,_elMask:null,_elTable:null,_elCaption:null,_elColgroup:null,_elThead:null,_elTbody:null,_elMsgTbody:null,_elMsgTr:null,_elMsgTd:null,_oDataSource:null,_oColumnSet:null,_oRecordSet:null,_oCellEditor:null,_sFirstTrId:null,_sLastTrId:null,_elTrTemplate:null,_aDynFunctions:[],clearTextSelection:function(){var I;if(window.getSelection){I=window.getSelection();}else{if(document.getSelection){I=document.getSelection();}else{if(document.selection){I=document.selection;}}}if(I){if(I.empty){I.empty();}else{if(I.removeAllRanges){I.removeAllRanges();}else{if(I.collapse){I.collapse();}}}}},_focusEl:function(I){I=I||this._elTbody;setTimeout(function(){try{I.focus();}catch(J){}},0);},_repaintGecko:(B.gecko)?function(J){J=J||this._elContainer;var I=J.parentNode;var K=J.nextSibling;I.insertBefore(I.removeChild(J),K);}:function(){},_repaintOpera:(B.opera)?function(){if(B.opera){document.documentElement.className+=" ";document.documentElement.className.trim();}}:function(){},_repaintWebkit:(B.webkit)?function(J){J=J||this._elContainer;var I=J.parentNode;var K=J.nextSibling;I.insertBefore(I.removeChild(J),K);}:function(){},_initConfigs:function(I){if(!I||!H.isObject(I)){I={};}this.configs=I;},_initColumnSet:function(M){var L,J,I;if(this._oColumnSet){for(J=0,I=this._oColumnSet.keys.length;J<I;J++){L=this._oColumnSet.keys[J];D._oDynStyles["."+this.getId()+"-col-"+L.getSanitizedKey()+" ."+D.CLASS_LINER]=undefined;if(L.editor&&L.editor.unsubscribeAll){L.editor.unsubscribeAll();}}this._oColumnSet=null;this._clearTrTemplateEl();}if(H.isArray(M)){this._oColumnSet=new YAHOO.widget.ColumnSet(M);}else{if(M instanceof YAHOO.widget.ColumnSet){this._oColumnSet=M;}}var K=this._oColumnSet.keys;for(J=0,I=K.length;J<I;J++){L=K[J];if(L.editor&&L.editor.subscribe){L.editor.subscribe("showEvent",this._onEditorShowEvent,this,true);L.editor.subscribe("keydownEvent",this._onEditorKeydownEvent,this,true);L.editor.subscribe("revertEvent",this._onEditorRevertEvent,this,true);L.editor.subscribe("saveEvent",this._onEditorSaveEvent,this,true);L.editor.subscribe("cancelEvent",this._onEditorCancelEvent,this,true);L.editor.subscribe("blurEvent",this._onEditorBlurEvent,this,true);L.editor.subscribe("blockEvent",this._onEditorBlockEvent,this,true);L.editor.subscribe("unblockEvent",this._onEditorUnblockEvent,this,true);}}},_initDataSource:function(I){this._oDataSource=null;if(I&&(I instanceof F)){this._oDataSource=I;}else{var J=null;var N=this._elContainer;var K=0;if(N.hasChildNodes()){var M=N.childNodes;for(K=0;K<M.length;K++){if(M[K].nodeName&&M[K].nodeName.toLowerCase()=="table"){J=M[K];break;}}if(J){var L=[];for(;K<this._oColumnSet.keys.length;K++){L.push({key:this._oColumnSet.keys[K].key});}this._oDataSource=new F(J);this._oDataSource.responseType=F.TYPE_HTMLTABLE;this._oDataSource.responseSchema={fields:L};}}}},_initRecordSet:function(){if(this._oRecordSet){this._oRecordSet.reset();}else{this._oRecordSet=new YAHOO.widget.RecordSet();}},_initDomElements:function(I){this._initContainerEl(I);this._initTableEl(this._elContainer);this._initColgroupEl(this._elTable);this._initTheadEl(this._elTable);this._initMsgTbodyEl(this._elTable);this._initTbodyEl(this._elTable);if(!this._elContainer||!this._elTable||!this._elColgroup||!this._elThead||!this._elTbody||!this._elMsgTbody){return false;}else{return true;}},_destroyContainerEl:function(I){C.removeClass(I,D.CLASS_DATATABLE);G.purgeElement(I,true);I.innerHTML="";this._elContainer=null;this._elColgroup=null;this._elThead=null;this._elTbody=null;},_initContainerEl:function(J){J=C.get(J);if(J&&J.nodeName&&(J.nodeName.toLowerCase()=="div")){this._destroyContainerEl(J);C.addClass(J,D.CLASS_DATATABLE);G.addListener(J,"focus",this._onTableFocus,this);G.addListener(J,"dblclick",this._onTableDblclick,this);this._elContainer=J;var I=document.createElement("div");I.className=D.CLASS_MASK;I.style.display="none";this._elMask=J.appendChild(I);}},_destroyTableEl:function(){var I=this._elTable;if(I){G.purgeElement(I,true);I.parentNode.removeChild(I);this._elCaption=null;this._elColgroup=null;this._elThead=null;this._elTbody=null;}},_initCaptionEl:function(I){if(this._elTable&&I){if(!this._elCaption){this._elCaption=this._elTable.createCaption();
-}this._elCaption.innerHTML=I;}else{if(this._elCaption){this._elCaption.parentNode.removeChild(this._elCaption);}}},_initTableEl:function(I){if(I){this._destroyTableEl();this._elTable=I.appendChild(document.createElement("table"));this._elTable.summary=this.get("summary");if(this.get("caption")){this._initCaptionEl(this.get("caption"));}}},_destroyColgroupEl:function(){var I=this._elColgroup;if(I){var J=I.parentNode;G.purgeElement(I,true);J.removeChild(I);this._elColgroup=null;}},_initColgroupEl:function(R){if(R){this._destroyColgroupEl();var K=this._aColIds||[],Q=this._oColumnSet.keys,L=0,O=K.length,I,N,P=document.createDocumentFragment(),M=document.createElement("col");for(L=0,O=Q.length;L<O;L++){N=Q[L];I=P.appendChild(M.cloneNode(false));}var J=R.insertBefore(document.createElement("colgroup"),R.firstChild);J.appendChild(P);this._elColgroup=J;}},_insertColgroupColEl:function(I){if(H.isNumber(I)&&this._elColgroup){var J=this._elColgroup.childNodes[I]||null;this._elColgroup.insertBefore(document.createElement("col"),J);}},_removeColgroupColEl:function(I){if(H.isNumber(I)&&this._elColgroup&&this._elColgroup.childNodes[I]){this._elColgroup.removeChild(this._elColgroup.childNodes[I]);}},_reorderColgroupColEl:function(K,J){if(H.isArray(K)&&H.isNumber(J)&&this._elColgroup&&(this._elColgroup.childNodes.length>K[K.length-1])){var I,M=[];for(I=K.length-1;I>-1;I--){M.push(this._elColgroup.removeChild(this._elColgroup.childNodes[K[I]]));}var L=this._elColgroup.childNodes[J]||null;for(I=M.length-1;I>-1;I--){this._elColgroup.insertBefore(M[I],L);}}},_destroyTheadEl:function(){var J=this._elThead;if(J){var I=J.parentNode;G.purgeElement(J,true);this._destroyColumnHelpers();I.removeChild(J);this._elThead=null;}},_initTheadEl:function(S){S=S||this._elTable;if(S){this._destroyTheadEl();var N=(this._elColgroup)?S.insertBefore(document.createElement("thead"),this._elColgroup.nextSibling):S.appendChild(document.createElement("thead"));G.addListener(N,"focus",this._onTheadFocus,this);G.addListener(N,"keydown",this._onTheadKeydown,this);G.addListener(N,"mouseover",this._onTableMouseover,this);G.addListener(N,"mouseout",this._onTableMouseout,this);G.addListener(N,"mousedown",this._onTableMousedown,this);G.addListener(N,"mouseup",this._onTableMouseup,this);G.addListener(N,"click",this._onTheadClick,this);var U=this._oColumnSet,Q,O,M,K;var T=U.tree;var L;for(O=0;O<T.length;O++){var J=N.appendChild(document.createElement("tr"));for(M=0;M<T[O].length;M++){Q=T[O][M];L=J.appendChild(document.createElement("th"));this._initThEl(L,Q);}if(O===0){C.addClass(J,D.CLASS_FIRST);}if(O===(T.length-1)){C.addClass(J,D.CLASS_LAST);}}var I=U.headers[0]||[];for(O=0;O<I.length;O++){C.addClass(C.get(this.getId()+"-th-"+I[O]),D.CLASS_FIRST);}var P=U.headers[U.headers.length-1]||[];for(O=0;O<P.length;O++){C.addClass(C.get(this.getId()+"-th-"+P[O]),D.CLASS_LAST);}if(B.webkit&&B.webkit<420){var R=this;setTimeout(function(){N.style.display="";},0);N.style.display="none";}this._elThead=N;this._initColumnHelpers();}},_initThEl:function(M,L){M.id=this.getId()+"-th-"+L.getSanitizedKey();M.innerHTML="";M.rowSpan=L.getRowspan();M.colSpan=L.getColspan();L._elTh=M;var I=M.appendChild(document.createElement("div"));I.id=M.id+"-liner";I.className=D.CLASS_LINER;L._elThLiner=I;var J=I.appendChild(document.createElement("span"));J.className=D.CLASS_LABEL;if(L.abbr){M.abbr=L.abbr;}if(L.hidden){this._clearMinWidth(L);}M.className=this._getColumnClassNames(L);if(L.width&&!this._bDynStylesFallback){var K=(L.minWidth&&(L.width<L.minWidth))?L.minWidth:L.width;this._setColumnWidthDynStyles(L,K+"px","hidden");}this.formatTheadCell(J,L,this.get("sortedBy"));L._elThLabel=J;},formatTheadCell:function(I,M,K){var Q=M.getKey();var P=H.isValue(M.label)?M.label:Q;if(M.sortable){var N=this.getColumnSortDir(M,K);var J=(N===D.CLASS_DESC);if(K&&(M.key===K.key)){J=!(K.dir===D.CLASS_DESC);}var L=this.getId()+"-href-"+M.getSanitizedKey();var O=(J)?this.get("MSG_SORTDESC"):this.get("MSG_SORTASC");I.innerHTML='<a href="'+L+'" title="'+O+'" class="'+D.CLASS_SORTABLE+'">'+P+"</a>";}else{I.innerHTML=P;}},_destroyDraggableColumns:function(){var K,L;for(var J=0,I=this._oColumnSet.tree[0].length;J<I;J++){K=this._oColumnSet.tree[0][J];if(K._dd){K._dd=K._dd.unreg();C.removeClass(K.getThEl(),D.CLASS_DRAGGABLE);}}},_initDraggableColumns:function(){this._destroyDraggableColumns();if(A.DD){var L,M,J;for(var K=0,I=this._oColumnSet.tree[0].length;K<I;K++){L=this._oColumnSet.tree[0][K];M=L.getThEl();C.addClass(M,D.CLASS_DRAGGABLE);J=D._initColumnDragTargetEl();L._dd=new YAHOO.widget.ColumnDD(this,L,M,J);}}else{}},_destroyResizeableColumns:function(){var J=this._oColumnSet.keys;for(var K=0,I=J.length;K<I;K++){if(J[K]._ddResizer){J[K]._ddResizer=J[K]._ddResizer.unreg();C.removeClass(J[K].getThEl(),D.CLASS_RESIZEABLE);}}},_initResizeableColumns:function(){this._destroyResizeableColumns();if(A.DD){var O,J,M,P,I,Q,L;for(var K=0,N=this._oColumnSet.keys.length;K<N;K++){O=this._oColumnSet.keys[K];if(O.resizeable){J=O.getThEl();C.addClass(J,D.CLASS_RESIZEABLE);M=O.getThLinerEl();P=J.appendChild(document.createElement("div"));P.className=D.CLASS_RESIZERLINER;P.appendChild(M);I=P.appendChild(document.createElement("div"));I.id=J.id+"-resizer";I.className=D.CLASS_RESIZER;O._elResizer=I;Q=D._initColumnResizerProxyEl();O._ddResizer=new YAHOO.util.ColumnResizer(this,O,J,I,Q);L=function(R){G.stopPropagation(R);};G.addListener(I,"click",L);}}}else{}},_destroyColumnHelpers:function(){this._destroyDraggableColumns();this._destroyResizeableColumns();},_initColumnHelpers:function(){if(this.get("draggableColumns")){this._initDraggableColumns();}this._initResizeableColumns();},_destroyTbodyEl:function(){var I=this._elTbody;if(I){var J=I.parentNode;G.purgeElement(I,true);J.removeChild(I);this._elTbody=null;}},_initTbodyEl:function(J){if(J){this._destroyTbodyEl();var I=J.appendChild(document.createElement("tbody"));I.tabIndex=0;I.className=D.CLASS_DATA;G.addListener(I,"focus",this._onTbodyFocus,this);G.addListener(I,"mouseover",this._onTableMouseover,this);
-G.addListener(I,"mouseout",this._onTableMouseout,this);G.addListener(I,"mousedown",this._onTableMousedown,this);G.addListener(I,"mouseup",this._onTableMouseup,this);G.addListener(I,"keydown",this._onTbodyKeydown,this);G.addListener(I,"keypress",this._onTableKeypress,this);G.addListener(I,"click",this._onTbodyClick,this);if(B.ie){I.hideFocus=true;}this._elTbody=I;}},_destroyMsgTbodyEl:function(){var I=this._elMsgTbody;if(I){var J=I.parentNode;G.purgeElement(I,true);J.removeChild(I);this._elTbody=null;}},_initMsgTbodyEl:function(L){if(L){var K=document.createElement("tbody");K.className=D.CLASS_MESSAGE;var J=K.appendChild(document.createElement("tr"));J.className=D.CLASS_FIRST+" "+D.CLASS_LAST;this._elMsgTr=J;var M=J.appendChild(document.createElement("td"));M.colSpan=this._oColumnSet.keys.length;M.className=D.CLASS_FIRST+" "+D.CLASS_LAST;this._elMsgTd=M;K=L.insertBefore(K,this._elTbody);var I=M.appendChild(document.createElement("div"));I.className=D.CLASS_LINER;this._elMsgTbody=K;}},_initEvents:function(){this._initColumnSort();YAHOO.util.Event.addListener(document,"click",this._onDocumentClick,this);this.subscribe("paginatorChange",function(){this._handlePaginatorChange.apply(this,arguments);});this.subscribe("initEvent",function(){this.renderPaginator();});this._initCellEditing();},_initColumnSort:function(){this.subscribe("theadCellClickEvent",this.onEventSortColumn);var I=this.get("sortedBy");if(I){if(I.dir=="desc"){this._configs.sortedBy.value.dir=D.CLASS_DESC;}else{if(I.dir=="asc"){this._configs.sortedBy.value.dir=D.CLASS_ASC;}}}},_initCellEditing:function(){this.subscribe("editorBlurEvent",function(){this.onEditorBlurEvent.apply(this,arguments);});this.subscribe("editorBlockEvent",function(){this.onEditorBlockEvent.apply(this,arguments);});this.subscribe("editorUnblockEvent",function(){this.onEditorUnblockEvent.apply(this,arguments);});},_getColumnClassNames:function(L,K){var I;if(H.isString(L.className)){I=[L.className];}else{if(H.isArray(L.className)){I=L.className;}else{I=[];}}I[I.length]=this.getId()+"-col-"+L.getSanitizedKey();I[I.length]="yui-dt-col-"+L.getSanitizedKey();var J=this.get("sortedBy")||{};if(L.key===J.key){I[I.length]=J.dir||"";}if(L.hidden){I[I.length]=D.CLASS_HIDDEN;}if(L.selected){I[I.length]=D.CLASS_SELECTED;}if(L.sortable){I[I.length]=D.CLASS_SORTABLE;}if(L.resizeable){I[I.length]=D.CLASS_RESIZEABLE;}if(L.editor){I[I.length]=D.CLASS_EDITABLE;}if(K){I=I.concat(K);}return I.join(" ");},_clearTrTemplateEl:function(){this._elTrTemplate=null;},_getTrTemplateEl:function(T,N){if(this._elTrTemplate){return this._elTrTemplate;}else{var P=document,R=P.createElement("tr"),K=P.createElement("td"),J=P.createElement("div");K.appendChild(J);var S=document.createDocumentFragment(),Q=this._oColumnSet.keys,M;var O;for(var L=0,I=Q.length;L<I;L++){M=K.cloneNode(true);M=this._formatTdEl(Q[L],M,L,(L===I-1));S.appendChild(M);}R.appendChild(S);this._elTrTemplate=R;return R;}},_formatTdEl:function(M,O,P,L){var S=this._oColumnSet;var I=S.headers,J=I[P],N="",U;for(var K=0,T=J.length;K<T;K++){U=this._sId+"-th-"+J[K]+" ";N+=U;}O.headers=N;var R=[];if(P===0){R[R.length]=D.CLASS_FIRST;}if(L){R[R.length]=D.CLASS_LAST;}O.className=this._getColumnClassNames(M,R);O.firstChild.className=D.CLASS_LINER;if(M.width&&this._bDynStylesFallback){var Q=(M.minWidth&&(M.width<M.minWidth))?M.minWidth:M.width;O.firstChild.style.overflow="hidden";O.firstChild.style.width=Q+"px";}return O;},_addTrEl:function(K){var J=this._getTrTemplateEl();var I=J.cloneNode(true);return this._updateTrEl(I,K);},_updateTrEl:function(J,N){var M=this.get("formatRow")?this.get("formatRow")(J,N):true;if(M){J.style.display="none";var O=J.childNodes,K;for(var L=0,I=O.length;L<I;++L){K=O[L];this.formatCell(O[L].firstChild,N,this._oColumnSet.keys[L]);}J.style.display="";}J.id=N.getId();return J;},_deleteTrEl:function(I){var J;if(!H.isNumber(I)){J=C.get(I).sectionRowIndex;}else{J=I;}if(H.isNumber(J)&&(J>-2)&&(J<this._elTbody.rows.length)){return this._elTbody.removeChild(this.getTrEl(I));}else{return null;}},_unsetFirstRow:function(){if(this._sFirstTrId){C.removeClass(this._sFirstTrId,D.CLASS_FIRST);this._sFirstTrId=null;}},_setFirstRow:function(){this._unsetFirstRow();var I=this.getFirstTrEl();if(I){C.addClass(I,D.CLASS_FIRST);this._sFirstTrId=I.id;}},_unsetLastRow:function(){if(this._sLastTrId){C.removeClass(this._sLastTrId,D.CLASS_LAST);this._sLastTrId=null;}},_setLastRow:function(){this._unsetLastRow();var I=this.getLastTrEl();if(I){C.addClass(I,D.CLASS_LAST);this._sLastTrId=I.id;}},_setRowStripes:function(S,K){var L=this._elTbody.rows,P=0,R=L.length,O=[],Q=0,M=[],I=0;if((S!==null)&&(S!==undefined)){var N=this.getTrEl(S);if(N){P=N.sectionRowIndex;if(H.isNumber(K)&&(K>1)){R=P+K;}}}for(var J=P;J<R;J++){if(J%2){O[Q++]=L[J];}else{M[I++]=L[J];}}if(O.length){C.replaceClass(O,D.CLASS_EVEN,D.CLASS_ODD);}if(M.length){C.replaceClass(M,D.CLASS_ODD,D.CLASS_EVEN);}},_setSelections:function(){var K=this.getSelectedRows();var M=this.getSelectedCells();if((K.length>0)||(M.length>0)){var L=this._oColumnSet,J;for(var I=0;I<K.length;I++){J=C.get(K[I]);if(J){C.addClass(J,D.CLASS_SELECTED);}}for(I=0;I<M.length;I++){J=C.get(M[I].recordId);if(J){C.addClass(J.childNodes[L.getColumn(M[I].columnKey).getKeyIndex()],D.CLASS_SELECTED);}}}},_onRenderChainEnd:function(){this.hideTableMessage();if(this._elTbody.rows.length===0){this.showTableMessage(this.get("MSG_EMPTY"),D.CLASS_EMPTY);}var I=this;setTimeout(function(){if((I instanceof D)&&I._sId){if(I._bInit){I._bInit=false;I.fireEvent("initEvent");}I.fireEvent("renderEvent");I.fireEvent("refreshEvent");I.validateColumnWidths();I.fireEvent("postRenderEvent");}},0);},_onDocumentClick:function(L,J){var M=G.getTarget(L);var I=M.nodeName.toLowerCase();if(!C.isAncestor(J._elContainer,M)){J.fireEvent("tableBlurEvent");if(J._oCellEditor){if(J._oCellEditor.getContainerEl){var K=J._oCellEditor.getContainerEl();if(!C.isAncestor(K,M)&&(K.id!==M.id)){J._oCellEditor.fireEvent("blurEvent",{editor:J._oCellEditor});}}else{if(J._oCellEditor.isActive){if(!C.isAncestor(J._oCellEditor.container,M)&&(J._oCellEditor.container.id!==M.id)){J.fireEvent("editorBlurEvent",{editor:J._oCellEditor});
-}}}}}},_onTableFocus:function(J,I){I.fireEvent("tableFocusEvent");},_onTheadFocus:function(J,I){I.fireEvent("theadFocusEvent");I.fireEvent("tableFocusEvent");},_onTbodyFocus:function(J,I){I.fireEvent("tbodyFocusEvent");I.fireEvent("tableFocusEvent");},_onTableMouseover:function(L,J){var M=G.getTarget(L);var I=M.nodeName.toLowerCase();var K=true;while(M&&(I!="table")){switch(I){case"body":return ;case"a":break;case"td":K=J.fireEvent("cellMouseoverEvent",{target:M,event:L});break;case"span":if(C.hasClass(M,D.CLASS_LABEL)){K=J.fireEvent("theadLabelMouseoverEvent",{target:M,event:L});K=J.fireEvent("headerLabelMouseoverEvent",{target:M,event:L});}break;case"th":K=J.fireEvent("theadCellMouseoverEvent",{target:M,event:L});K=J.fireEvent("headerCellMouseoverEvent",{target:M,event:L});break;case"tr":if(M.parentNode.nodeName.toLowerCase()=="thead"){K=J.fireEvent("theadRowMouseoverEvent",{target:M,event:L});K=J.fireEvent("headerRowMouseoverEvent",{target:M,event:L});}else{K=J.fireEvent("rowMouseoverEvent",{target:M,event:L});}break;default:break;}if(K===false){return ;}else{M=M.parentNode;if(M){I=M.nodeName.toLowerCase();}}}J.fireEvent("tableMouseoverEvent",{target:(M||J._elContainer),event:L});},_onTableMouseout:function(L,J){var M=G.getTarget(L);var I=M.nodeName.toLowerCase();var K=true;while(M&&(I!="table")){switch(I){case"body":return ;case"a":break;case"td":K=J.fireEvent("cellMouseoutEvent",{target:M,event:L});break;case"span":if(C.hasClass(M,D.CLASS_LABEL)){K=J.fireEvent("theadLabelMouseoutEvent",{target:M,event:L});K=J.fireEvent("headerLabelMouseoutEvent",{target:M,event:L});}break;case"th":K=J.fireEvent("theadCellMouseoutEvent",{target:M,event:L});K=J.fireEvent("headerCellMouseoutEvent",{target:M,event:L});break;case"tr":if(M.parentNode.nodeName.toLowerCase()=="thead"){K=J.fireEvent("theadRowMouseoutEvent",{target:M,event:L});K=J.fireEvent("headerRowMouseoutEvent",{target:M,event:L});}else{K=J.fireEvent("rowMouseoutEvent",{target:M,event:L});}break;default:break;}if(K===false){return ;}else{M=M.parentNode;if(M){I=M.nodeName.toLowerCase();}}}J.fireEvent("tableMouseoutEvent",{target:(M||J._elContainer),event:L});},_onTableMousedown:function(L,J){var M=G.getTarget(L);var I=M.nodeName.toLowerCase();var K=true;while(M&&(I!="table")){switch(I){case"body":return ;case"a":break;case"td":K=J.fireEvent("cellMousedownEvent",{target:M,event:L});break;case"span":if(C.hasClass(M,D.CLASS_LABEL)){K=J.fireEvent("theadLabelMousedownEvent",{target:M,event:L});K=J.fireEvent("headerLabelMousedownEvent",{target:M,event:L});}break;case"th":K=J.fireEvent("theadCellMousedownEvent",{target:M,event:L});K=J.fireEvent("headerCellMousedownEvent",{target:M,event:L});break;case"tr":if(M.parentNode.nodeName.toLowerCase()=="thead"){K=J.fireEvent("theadRowMousedownEvent",{target:M,event:L});K=J.fireEvent("headerRowMousedownEvent",{target:M,event:L});}else{K=J.fireEvent("rowMousedownEvent",{target:M,event:L});}break;default:break;}if(K===false){return ;}else{M=M.parentNode;if(M){I=M.nodeName.toLowerCase();}}}J.fireEvent("tableMousedownEvent",{target:(M||J._elContainer),event:L});},_onTableMouseup:function(L,J){var M=G.getTarget(L);var I=M.nodeName.toLowerCase();var K=true;while(M&&(I!="table")){switch(I){case"body":return ;case"a":break;case"td":K=J.fireEvent("cellMouseupEvent",{target:M,event:L});break;case"span":if(C.hasClass(M,D.CLASS_LABEL)){K=J.fireEvent("theadLabelMouseupEvent",{target:M,event:L});K=J.fireEvent("headerLabelMouseupEvent",{target:M,event:L});}break;case"th":K=J.fireEvent("theadCellMouseupEvent",{target:M,event:L});K=J.fireEvent("headerCellMouseupEvent",{target:M,event:L});break;case"tr":if(M.parentNode.nodeName.toLowerCase()=="thead"){K=J.fireEvent("theadRowMouseupEvent",{target:M,event:L});K=J.fireEvent("headerRowMouseupEvent",{target:M,event:L});}else{K=J.fireEvent("rowMouseupEvent",{target:M,event:L});}break;default:break;}if(K===false){return ;}else{M=M.parentNode;if(M){I=M.nodeName.toLowerCase();}}}J.fireEvent("tableMouseupEvent",{target:(M||J._elContainer),event:L});},_onTableDblclick:function(L,J){var M=G.getTarget(L);var I=M.nodeName.toLowerCase();var K=true;while(M&&(I!="table")){switch(I){case"body":return ;case"td":K=J.fireEvent("cellDblclickEvent",{target:M,event:L});break;case"span":if(C.hasClass(M,D.CLASS_LABEL)){K=J.fireEvent("theadLabelDblclickEvent",{target:M,event:L});K=J.fireEvent("headerLabelDblclickEvent",{target:M,event:L});}break;case"th":K=J.fireEvent("theadCellDblclickEvent",{target:M,event:L});K=J.fireEvent("headerCellDblclickEvent",{target:M,event:L});break;case"tr":if(M.parentNode.nodeName.toLowerCase()=="thead"){K=J.fireEvent("theadRowDblclickEvent",{target:M,event:L});K=J.fireEvent("headerRowDblclickEvent",{target:M,event:L});}else{K=J.fireEvent("rowDblclickEvent",{target:M,event:L});}break;default:break;}if(K===false){return ;}else{M=M.parentNode;if(M){I=M.nodeName.toLowerCase();}}}J.fireEvent("tableDblclickEvent",{target:(M||J._elContainer),event:L});},_onTheadKeydown:function(L,J){var M=G.getTarget(L);var I=M.nodeName.toLowerCase();var K=true;while(M&&(I!="table")){switch(I){case"body":return ;case"input":case"textarea":break;case"thead":K=J.fireEvent("theadKeyEvent",{target:M,event:L});break;default:break;}if(K===false){return ;}else{M=M.parentNode;if(M){I=M.nodeName.toLowerCase();}}}J.fireEvent("tableKeyEvent",{target:(M||J._elContainer),event:L});},_onTbodyKeydown:function(M,K){var J=K.get("selectionMode");if(J=="standard"){K._handleStandardSelectionByKey(M);}else{if(J=="single"){K._handleSingleSelectionByKey(M);}else{if(J=="cellblock"){K._handleCellBlockSelectionByKey(M);}else{if(J=="cellrange"){K._handleCellRangeSelectionByKey(M);}else{if(J=="singlecell"){K._handleSingleCellSelectionByKey(M);}}}}}if(K._oCellEditor){if(K._oCellEditor.fireEvent){K._oCellEditor.fireEvent("blurEvent",{editor:K._oCellEditor});}else{if(K._oCellEditor.isActive){K.fireEvent("editorBlurEvent",{editor:K._oCellEditor});}}}var N=G.getTarget(M);var I=N.nodeName.toLowerCase();var L=true;while(N&&(I!="table")){switch(I){case"body":return ;
-case"tbody":L=K.fireEvent("tbodyKeyEvent",{target:N,event:M});break;default:break;}if(L===false){return ;}else{N=N.parentNode;if(N){I=N.nodeName.toLowerCase();}}}K.fireEvent("tableKeyEvent",{target:(N||K._elContainer),event:M});},_onTableKeypress:function(K,J){if(B.opera||(navigator.userAgent.toLowerCase().indexOf("mac")!==-1)&&(B.webkit<420)){var I=G.getCharCode(K);if(I==40){G.stopEvent(K);}else{if(I==38){G.stopEvent(K);}}}},_onTheadClick:function(L,J){if(J._oCellEditor){if(J._oCellEditor.fireEvent){J._oCellEditor.fireEvent("blurEvent",{editor:J._oCellEditor});}else{if(J._oCellEditor.isActive){J.fireEvent("editorBlurEvent",{editor:J._oCellEditor});}}}var M=G.getTarget(L);var I=M.nodeName.toLowerCase();var K=true;while(M&&(I!="table")){switch(I){case"body":return ;case"input":if(M.type.toLowerCase()=="checkbox"){K=J.fireEvent("theadCheckboxClickEvent",{target:M,event:L});}else{if(M.type.toLowerCase()=="radio"){K=J.fireEvent("theadRadioClickEvent",{target:M,event:L});}}break;case"a":K=J.fireEvent("theadLinkClickEvent",{target:M,event:L});break;case"button":K=J.fireEvent("theadButtonClickEvent",{target:M,event:L});break;case"span":if(C.hasClass(M,D.CLASS_LABEL)){K=J.fireEvent("theadLabelClickEvent",{target:M,event:L});K=J.fireEvent("headerLabelClickEvent",{target:M,event:L});}break;case"th":K=J.fireEvent("theadCellClickEvent",{target:M,event:L});K=J.fireEvent("headerCellClickEvent",{target:M,event:L});break;case"tr":K=J.fireEvent("theadRowClickEvent",{target:M,event:L});K=J.fireEvent("headerRowClickEvent",{target:M,event:L});break;default:break;}if(K===false){return ;}else{M=M.parentNode;if(M){I=M.nodeName.toLowerCase();}}}J.fireEvent("tableClickEvent",{target:(M||J._elContainer),event:L});},_onTbodyClick:function(L,J){if(J._oCellEditor){if(J._oCellEditor.fireEvent){J._oCellEditor.fireEvent("blurEvent",{editor:J._oCellEditor});}else{if(J._oCellEditor.isActive){J.fireEvent("editorBlurEvent",{editor:J._oCellEditor});}}}var M=G.getTarget(L);var I=M.nodeName.toLowerCase();var K=true;while(M&&(I!="table")){switch(I){case"body":return ;case"input":if(M.type.toLowerCase()=="checkbox"){K=J.fireEvent("checkboxClickEvent",{target:M,event:L});}else{if(M.type.toLowerCase()=="radio"){K=J.fireEvent("radioClickEvent",{target:M,event:L});}}break;case"a":K=J.fireEvent("linkClickEvent",{target:M,event:L});break;case"button":K=J.fireEvent("buttonClickEvent",{target:M,event:L});break;case"td":K=J.fireEvent("cellClickEvent",{target:M,event:L});break;case"tr":K=J.fireEvent("rowClickEvent",{target:M,event:L});break;default:break;}if(K===false){return ;}else{M=M.parentNode;if(M){I=M.nodeName.toLowerCase();}}}J.fireEvent("tableClickEvent",{target:(M||J._elContainer),event:L});},_onDropdownChange:function(J,I){var K=G.getTarget(J);I.fireEvent("dropdownChangeEvent",{event:J,target:K});},configs:null,getId:function(){return this._sId;},toString:function(){return"DataTable instance "+this._sId;},getDataSource:function(){return this._oDataSource;},getColumnSet:function(){return this._oColumnSet;},getRecordSet:function(){return this._oRecordSet;},getState:function(){return{totalRecords:this.get("paginator")?this.get("paginator").get("totalRecords"):this._oRecordSet.getLength(),pagination:this.get("paginator")?this.get("paginator").getState():null,sortedBy:this.get("sortedBy"),selectedRows:this.getSelectedRows(),selectedCells:this.getSelectedCells()};},getContainerEl:function(){return this._elContainer;},getTableEl:function(){return this._elTable;},getTheadEl:function(){return this._elThead;},getTbodyEl:function(){return this._elTbody;},getMsgTbodyEl:function(){return this._elMsgTbody;},getMsgTdEl:function(){return this._elMsgTd;},getTrEl:function(K){if(K instanceof YAHOO.widget.Record){return document.getElementById(K.getId());}else{if(H.isNumber(K)){var J=this._elTbody.rows;return((K>-1)&&(K<J.length))?J[K]:null;}else{var I=(H.isString(K))?document.getElementById(K):K;if(I&&(I.ownerDocument==document)){if(I.nodeName.toLowerCase()!="tr"){I=C.getAncestorByTagName(I,"tr");}if(I&&(I.parentNode==this._elTbody)){return I;}}}}return null;},getFirstTrEl:function(){return this._elTbody.rows[0]||null;},getLastTrEl:function(){var I=this._elTbody.rows;if(I.length>0){return I[I.length-1]||null;}},getNextTrEl:function(K){var I=this.getTrIndex(K);if(I!==null){var J=this._elTbody.rows;if(I<J.length-1){return J[I+1];}}return null;},getPreviousTrEl:function(K){var I=this.getTrIndex(K);if(I!==null){var J=this._elTbody.rows;if(I>0){return J[I-1];}}return null;},getTdLinerEl:function(I){var J=this.getTdEl(I);return J.firstChild||null;},getTdEl:function(I){var N;var L=C.get(I);if(L&&(L.ownerDocument==document)){if(L.nodeName.toLowerCase()!="td"){N=C.getAncestorByTagName(L,"td");}else{N=L;}if(N&&(N.parentNode.parentNode==this._elTbody)){return N;}}else{if(I){var M,K;if(H.isString(I.columnKey)&&H.isString(I.recordId)){M=this.getRecord(I.recordId);var O=this.getColumn(I.columnKey);if(O){K=O.getKeyIndex();}}if(I.record&&I.column&&I.column.getKeyIndex){M=I.record;K=I.column.getKeyIndex();}var J=this.getTrEl(M);if((K!==null)&&J&&J.cells&&J.cells.length>0){return J.cells[K]||null;}}}return null;},getFirstTdEl:function(J){var I=this.getTrEl(J)||this.getFirstTrEl();if(I&&(I.cells.length>0)){return I.cells[0];}return null;},getLastTdEl:function(J){var I=this.getTrEl(J)||this.getLastTrEl();if(I&&(I.cells.length>0)){return I.cells[I.cells.length-1];}return null;},getNextTdEl:function(I){var M=this.getTdEl(I);if(M){var K=M.cellIndex;var J=this.getTrEl(M);if(K<J.cells.length-1){return J.cells[K+1];}else{var L=this.getNextTrEl(J);if(L){return L.cells[0];}}}return null;},getPreviousTdEl:function(I){var M=this.getTdEl(I);if(M){var K=M.cellIndex;var J=this.getTrEl(M);if(K>0){return J.cells[K-1];}else{var L=this.getPreviousTrEl(J);if(L){return this.getLastTdEl(L);}}}return null;},getAboveTdEl:function(I){var K=this.getTdEl(I);if(K){var J=this.getPreviousTrEl(K);if(J){return J.cells[K.cellIndex];}}return null;},getBelowTdEl:function(I){var K=this.getTdEl(I);if(K){var J=this.getNextTrEl(K);
-if(J){return J.cells[K.cellIndex];}}return null;},getThLinerEl:function(J){var I=this.getColumn(J);return(I)?I.getThLinerEl():null;},getThEl:function(K){var L;if(K instanceof YAHOO.widget.Column){var J=K;L=J.getThEl();if(L){return L;}}else{var I=C.get(K);if(I&&(I.ownerDocument==document)){if(I.nodeName.toLowerCase()!="th"){L=C.getAncestorByTagName(I,"th");}else{L=I;}if(L&&(L.parentNode.parentNode==this._elThead)){return L;}}}return null;},getTrIndex:function(M){var L;if(M instanceof YAHOO.widget.Record){L=this._oRecordSet.getRecordIndex(M);if(L===null){return null;}}else{if(H.isNumber(M)){L=M;}}if(H.isNumber(L)){if((L>-1)&&(L<this._oRecordSet.getLength())){var K=this.get("paginator");if(K){var J=K.getPageRecords();if(J&&L>=J[0]&&L<=J[1]){return L-J[0];}else{return null;}}else{return L;}}else{return null;}}else{var I=this.getTrEl(M);if(I&&(I.ownerDocument==document)&&(I.parentNode==this._elTbody)){return I.sectionRowIndex;}}return null;},initializeTable:function(){this._bInit=true;this._oRecordSet.reset();var I=this.get("paginator");if(I){I.set("totalRecords",0);}this._unselectAllTrEls();this._unselectAllTdEls();this._aSelections=null;this._oAnchorRecord=null;this._oAnchorCell=null;this.set("sortedBy",null);},_runRenderChain:function(){this._oChainRender.run();},render:function(){this._oChainRender.stop();var O,M,L,P,I;var R=this.get("paginator");if(R){I=this._oRecordSet.getRecords(R.getStartIndex(),R.getRowsPerPage());}else{I=this._oRecordSet.getRecords();}var J=this._elTbody,N=this.get("renderLoopSize"),Q=I.length;if(Q>0){J.style.display="none";while(J.lastChild){J.removeChild(J.lastChild);}J.style.display="";this._oChainRender.add({method:function(U){if((this instanceof D)&&this._sId){var T=U.nCurrentRecord,W=((U.nCurrentRecord+U.nLoopLength)>Q)?Q:(U.nCurrentRecord+U.nLoopLength),S,V;J.style.display="none";for(;T<W;T++){S=C.get(I[T].getId());S=S||this._addTrEl(I[T]);V=J.childNodes[T]||null;J.insertBefore(S,V);}J.style.display="";U.nCurrentRecord=T;}},scope:this,iterations:(N>0)?Math.ceil(Q/N):1,argument:{nCurrentRecord:0,nLoopLength:(N>0)?N:Q},timeout:(N>0)?0:-1});this._oChainRender.add({method:function(S){if((this instanceof D)&&this._sId){while(J.rows.length>Q){J.removeChild(J.lastChild);}this._setFirstRow();this._setLastRow();this._setRowStripes();this._setSelections();}},scope:this,timeout:(N>0)?0:-1});}else{var K=J.rows.length;this._oChainRender.add({method:function(T){if((this instanceof D)&&this._sId){var S=T.nCurrent,V=T.nLoopLength,U=(S-V<0)?-1:S-V;J.style.display="none";for(;S>U;S--){J.deleteRow(-1);}J.style.display="";T.nCurrent=S;}},scope:this,iterations:(N>0)?Math.ceil(K/N):1,argument:{nCurrent:K,nLoopLength:(N>0)?N:K},timeout:(N>0)?0:-1});}this._runRenderChain();},disable:function(){var I=this._elTable;var J=this._elMask;J.style.width=I.offsetWidth+"px";J.style.height=I.offsetHeight+"px";J.style.display="";this.fireEvent("disableEvent");},undisable:function(){this._elMask.style.display="none";this.fireEvent("undisableEvent");},destroy:function(){var J=this.toString();this._oChainRender.stop();D._destroyColumnDragTargetEl();D._destroyColumnResizerProxyEl();this._destroyColumnHelpers();var L;for(var K=0,I=this._oColumnSet.flat.length;K<I;K++){L=this._oColumnSet.flat[K].editor;if(L&&L.destroy){L.destroy();this._oColumnSet.flat[K].editor=null;}}this._oRecordSet.unsubscribeAll();this.unsubscribeAll();G.removeListener(document,"click",this._onDocumentClick);this._destroyContainerEl(this._elContainer);for(var M in this){if(H.hasOwnProperty(this,M)){this[M]=null;}}D._nCurrentCount--;if(D._nCurrentCount<1){if(D._elDynStyleNode){document.getElementsByTagName("head")[0].removeChild(D._elDynStyleNode);D._elDynStyleNode=null;}}},showTableMessage:function(J,I){var K=this._elMsgTd;if(H.isString(J)){K.firstChild.innerHTML=J;}if(H.isString(I)){K.className=I;}this._elMsgTbody.style.display="";this.fireEvent("tableMsgShowEvent",{html:J,className:I});},hideTableMessage:function(){if(this._elMsgTbody.style.display!="none"){this._elMsgTbody.style.display="none";this._elMsgTbody.parentNode.style.width="";this.fireEvent("tableMsgHideEvent");}},focus:function(){this.focusTbodyEl();},focusTheadEl:function(){this._focusEl(this._elThead);},focusTbodyEl:function(){this._focusEl(this._elTbody);},onShow:function(){this.validateColumnWidths();},getRecordIndex:function(L){var K;if(!H.isNumber(L)){if(L instanceof YAHOO.widget.Record){return this._oRecordSet.getRecordIndex(L);}else{var J=this.getTrEl(L);if(J){K=J.sectionRowIndex;}}}else{K=L;}if(H.isNumber(K)){var I=this.get("paginator");if(I){return I.get("recordOffset")+K;}else{return K;}}return null;},getRecord:function(K){var J=this._oRecordSet.getRecord(K);if(!J){var I=this.getTrEl(K);if(I){J=this._oRecordSet.getRecord(this.getRecordIndex(I.sectionRowIndex));}}if(J instanceof YAHOO.widget.Record){return this._oRecordSet.getRecord(J);}else{return null;}},getColumn:function(L){var N=this._oColumnSet.getColumn(L);if(!N){var M=this.getTdEl(L);if(M){N=this._oColumnSet.getColumn(M.cellIndex);}else{M=this.getThEl(L);if(M){var J=this._oColumnSet.flat;for(var K=0,I=J.length;K<I;K++){if(J[K].getThEl().id===M.id){N=J[K];}}}}}if(!N){}return N;},getColumnById:function(I){return this._oColumnSet.getColumnById(I);},getColumnSortDir:function(K,L){if(K.sortOptions&&K.sortOptions.defaultOrder){if(K.sortOptions.defaultOrder=="asc"){K.sortOptions.defaultDir=D.CLASS_ASC;}else{if(K.sortOptions.defaultOrder=="desc"){K.sortOptions.defaultDir=D.CLASS_DESC;}}}var J=(K.sortOptions&&K.sortOptions.defaultDir)?K.sortOptions.defaultDir:D.CLASS_ASC;var I=false;L=L||this.get("sortedBy");if(L&&(L.key===K.key)){I=true;if(L.dir){J=(L.dir===D.CLASS_ASC)?D.CLASS_DESC:D.CLASS_ASC;}else{J=(J===D.CLASS_ASC)?D.CLASS_DESC:D.CLASS_ASC;}}return J;},doBeforeSortColumn:function(J,I){this.showTableMessage(this.get("MSG_LOADING"),D.CLASS_LOADING);return true;},sortColumn:function(M,J){if(M&&(M instanceof YAHOO.widget.Column)){if(!M.sortable){C.addClass(this.getThEl(M),D.CLASS_SORTABLE);}if(J&&(J!==D.CLASS_ASC)&&(J!==D.CLASS_DESC)){J=null;
-}var N=J||this.getColumnSortDir(M);var L=this.get("sortedBy")||{};var T=(L.key===M.key)?true:false;var P=this.doBeforeSortColumn(M,N);if(P){if(this.get("dynamicData")){var S=this.getState();if(S.pagination){S.pagination.recordOffset=0;}S.sortedBy={key:M.key,dir:N};var K=this.get("generateRequest")(S,this);this.unselectAllRows();this.unselectAllCells();var R={success:this.onDataReturnSetRows,failure:this.onDataReturnSetRows,argument:S,scope:this};this._oDataSource.sendRequest(K,R);}else{if(!T||J){var Q=(M.sortOptions&&M.sortOptions.field)?M.sortOptions.field:M.field;var I=(M.sortOptions&&H.isFunction(M.sortOptions.sortFunction))?M.sortOptions.sortFunction:function(V,U,X){YAHOO.util.Sort.compare(V.getData(Q),U.getData(Q),X);var W=YAHOO.util.Sort.compare(V.getData(Q),U.getData(Q),X);if(W===0){return YAHOO.util.Sort.compare(V.getCount(),U.getCount(),X);}else{return W;}};this._oRecordSet.sortRecords(I,((N==D.CLASS_DESC)?true:false));}else{this._oRecordSet.reverseRecords();}var O=this.get("paginator");if(O){O.setPage(1,true);}this.render();this.set("sortedBy",{key:M.key,dir:N,column:M});}this.fireEvent("columnSortEvent",{column:M,dir:N});return ;}}},setColumnWidth:function(J,I){if(!(J instanceof YAHOO.widget.Column)){J=this.getColumn(J);}if(J){if(H.isNumber(I)){I=(I>J.minWidth)?I:J.minWidth;J.width=I;this._setColumnWidth(J,I+"px");this.fireEvent("columnSetWidthEvent",{column:J,width:I});return ;}else{if(I===null){J.width=I;this._setColumnWidth(J,"auto");this.validateColumnWidths(J);this.fireEvent("columnUnsetWidthEvent",{column:J});return ;}}}},_setColumnWidth:function(J,I,K){if(J&&(J.getKeyIndex()!==null)){K=K||(((I==="")||(I==="auto"))?"visible":"hidden");if(!D._bDynStylesFallback){this._setColumnWidthDynStyles(J,I,K);}else{this._setColumnWidthDynFunction(J,I,K);}}else{}},_setColumnWidthDynStyles:function(M,L,N){var J=D._elDynStyleNode,K;if(!J){J=document.createElement("style");J.type="text/css";J=document.getElementsByTagName("head").item(0).appendChild(J);D._elDynStyleNode=J;}if(J){var I="."+this.getId()+"-col-"+M.getSanitizedKey()+" ."+D.CLASS_LINER;if(this._elTbody){this._elTbody.style.display="none";}K=D._oDynStyles[I];if(!K){if(J.styleSheet&&J.styleSheet.addRule){J.styleSheet.addRule(I,"overflow:"+N);J.styleSheet.addRule(I,"width:"+L);K=J.styleSheet.rules[J.styleSheet.rules.length-1];D._oDynStyles[I]=K;}else{if(J.sheet&&J.sheet.insertRule){J.sheet.insertRule(I+" {overflow:"+N+";width:"+L+";}",J.sheet.cssRules.length);K=J.sheet.cssRules[J.sheet.cssRules.length-1];D._oDynStyles[I]=K;}}}else{K.style.overflow=N;K.style.width=L;}if(this._elTbody){this._elTbody.style.display="";}}if(!K){D._bDynStylesFallback=true;this._setColumnWidthDynFunction(M,L);}},_setColumnWidthDynFunction:function(O,J,P){if(J=="auto"){J="";}var I=this._elTbody?this._elTbody.rows.length:0;if(!this._aDynFunctions[I]){var N,M,L;var Q=["var colIdx=oColumn.getKeyIndex();","oColumn.getThLinerEl().style.overflow="];for(N=I-1,M=2;N>=0;--N){Q[M++]="this._elTbody.rows[";Q[M++]=N;Q[M++]="].cells[colIdx].firstChild.style.overflow=";}Q[M]="sOverflow;";Q[M+1]="oColumn.getThLinerEl().style.width=";for(N=I-1,L=M+2;N>=0;--N){Q[L++]="this._elTbody.rows[";Q[L++]=N;Q[L++]="].cells[colIdx].firstChild.style.width=";}Q[L]="sWidth;";this._aDynFunctions[I]=new Function("oColumn","sWidth","sOverflow",Q.join(""));}var K=this._aDynFunctions[I];if(K){K.call(this,O,J,P);}},validateColumnWidths:function(N){var K=this._elColgroup;var P=K.cloneNode(true);var O=false;var M=this._oColumnSet.keys;var J;if(N&&!N.hidden&&!N.width&&(N.getKeyIndex()!==null)){J=N.getThLinerEl();if((N.minWidth>0)&&(J.offsetWidth<N.minWidth)){P.childNodes[N.getKeyIndex()].style.width=N.minWidth+(parseInt(C.getStyle(J,"paddingLeft"),10)|0)+(parseInt(C.getStyle(J,"paddingRight"),10)|0)+"px";O=true;}else{if((N.maxAutoWidth>0)&&(J.offsetWidth>N.maxAutoWidth)){this._setColumnWidth(N,N.maxAutoWidth+"px","hidden");}}}else{for(var L=0,I=M.length;L<I;L++){N=M[L];if(!N.hidden&&!N.width){J=N.getThLinerEl();if((N.minWidth>0)&&(J.offsetWidth<N.minWidth)){P.childNodes[L].style.width=N.minWidth+(parseInt(C.getStyle(J,"paddingLeft"),10)|0)+(parseInt(C.getStyle(J,"paddingRight"),10)|0)+"px";O=true;}else{if((N.maxAutoWidth>0)&&(J.offsetWidth>N.maxAutoWidth)){this._setColumnWidth(N,N.maxAutoWidth+"px","hidden");}}}}}if(O){K.parentNode.replaceChild(P,K);this._elColgroup=P;}},_clearMinWidth:function(I){if(I.getKeyIndex()!==null){this._elColgroup.childNodes[I.getKeyIndex()].style.width="";}},_restoreMinWidth:function(I){if(I.minWidth&&(I.getKeyIndex()!==null)){this._elColgroup.childNodes[I.getKeyIndex()].style.width=I.minWidth+"px";}},hideColumn:function(N){if(!(N instanceof YAHOO.widget.Column)){N=this.getColumn(N);}if(N&&!N.hidden&&N.getTreeIndex()!==null){var O=this.getTbodyEl().rows;var I=O.length;var M=this._oColumnSet.getDescendants(N);for(var L=0;L<M.length;L++){var K=M[L];K.hidden=true;C.addClass(K.getThEl(),D.CLASS_HIDDEN);var P=K.getKeyIndex();if(P!==null){this._clearMinWidth(N);for(var J=0;J<I;J++){C.addClass(O[J].cells[P],D.CLASS_HIDDEN);}}this.fireEvent("columnHideEvent",{column:K});}this._repaintOpera();this._clearTrTemplateEl();}else{}},showColumn:function(N){if(!(N instanceof YAHOO.widget.Column)){N=this.getColumn(N);}if(N&&N.hidden&&(N.getTreeIndex()!==null)){var O=this.getTbodyEl().rows;var I=O.length;var M=this._oColumnSet.getDescendants(N);for(var L=0;L<M.length;L++){var K=M[L];K.hidden=false;C.removeClass(K.getThEl(),D.CLASS_HIDDEN);var P=K.getKeyIndex();if(P!==null){this._restoreMinWidth(N);for(var J=0;J<I;J++){C.removeClass(O[J].cells[P],D.CLASS_HIDDEN);}}this.fireEvent("columnShowEvent",{column:K});}this._clearTrTemplateEl();}else{}},removeColumn:function(O){if(!(O instanceof YAHOO.widget.Column)){O=this.getColumn(O);}if(O){var L=O.getTreeIndex();if(L!==null){var N,Q,P=O.getKeyIndex();if(P===null){var T=[];var I=this._oColumnSet.getDescendants(O);for(N=0,Q=I.length;N<Q;N++){var R=I[N].getKeyIndex();if(R!==null){T[T.length]=R;}}if(T.length>0){P=T;}}else{P=[P];}if(P!==null){P.sort(function(V,U){return YAHOO.util.Sort.compare(V,U);
-});this._destroyTheadEl();var J=this._oColumnSet.getDefinitions();O=J.splice(L,1)[0];this._initColumnSet(J);this._initTheadEl();for(N=P.length-1;N>-1;N--){this._removeColgroupColEl(P[N]);}var S=this._elTbody.rows;if(S.length>0){var M=this.get("renderLoopSize"),K=S.length;this._oChainRender.add({method:function(X){if((this instanceof D)&&this._sId){var W=X.nCurrentRow,U=M>0?Math.min(W+M,S.length):S.length,Y=X.aIndexes,V;for(;W<U;++W){for(V=Y.length-1;V>-1;V--){S[W].removeChild(S[W].childNodes[Y[V]]);}}X.nCurrentRow=W;}},iterations:(M>0)?Math.ceil(K/M):1,argument:{nCurrentRow:0,aIndexes:P},scope:this,timeout:(M>0)?0:-1});this._runRenderChain();}this.fireEvent("columnRemoveEvent",{column:O});return O;}}}},insertColumn:function(Q,R){if(Q instanceof YAHOO.widget.Column){Q=Q.getDefinition();}else{if(Q.constructor!==Object){return ;}}var W=this._oColumnSet;if(!H.isValue(R)||!H.isNumber(R)){R=W.tree[0].length;}this._destroyTheadEl();var Y=this._oColumnSet.getDefinitions();Y.splice(R,0,Q);this._initColumnSet(Y);this._initTheadEl();W=this._oColumnSet;var M=W.tree[0][R];var O,S,V=[];var K=W.getDescendants(M);for(O=0,S=K.length;O<S;O++){var T=K[O].getKeyIndex();if(T!==null){V[V.length]=T;}}if(V.length>0){var X=V.sort(function(c,Z){return YAHOO.util.Sort.compare(c,Z);})[0];for(O=V.length-1;O>-1;O--){this._insertColgroupColEl(V[O]);}var U=this._elTbody.rows;if(U.length>0){var N=this.get("renderLoopSize"),L=U.length;var J=[],P;for(O=0,S=V.length;O<S;O++){var I=V[O];P=this._getTrTemplateEl().childNodes[O].cloneNode(true);P=this._formatTdEl(this._oColumnSet.keys[I],P,I,(I===this._oColumnSet.keys.length-1));J[I]=P;}this._oChainRender.add({method:function(c){if((this instanceof D)&&this._sId){var b=c.nCurrentRow,a,e=c.descKeyIndexes,Z=N>0?Math.min(b+N,U.length):U.length,d;for(;b<Z;++b){d=U[b].childNodes[X]||null;for(a=e.length-1;a>-1;a--){U[b].insertBefore(c.aTdTemplates[e[a]].cloneNode(true),d);}}c.nCurrentRow=b;}},iterations:(N>0)?Math.ceil(L/N):1,argument:{nCurrentRow:0,aTdTemplates:J,descKeyIndexes:V},scope:this,timeout:(N>0)?0:-1});this._runRenderChain();}this.fireEvent("columnInsertEvent",{column:Q,index:R});return M;}},reorderColumn:function(P,Q){if(!(P instanceof YAHOO.widget.Column)){P=this.getColumn(P);}if(P&&YAHOO.lang.isNumber(Q)){var Y=P.getTreeIndex();if((Y!==null)&&(Y!==Q)){var O,R,K=P.getKeyIndex(),J,U=[],S;if(K===null){J=this._oColumnSet.getDescendants(P);for(O=0,R=J.length;O<R;O++){S=J[O].getKeyIndex();if(S!==null){U[U.length]=S;}}if(U.length>0){K=U;}}else{K=[K];}if(K!==null){K.sort(function(c,Z){return YAHOO.util.Sort.compare(c,Z);});this._destroyTheadEl();var V=this._oColumnSet.getDefinitions();var I=V.splice(Y,1)[0];V.splice(Q,0,I);this._initColumnSet(V);this._initTheadEl();var M=this._oColumnSet.tree[0][Q];var X=M.getKeyIndex();if(X===null){U=[];J=this._oColumnSet.getDescendants(M);for(O=0,R=J.length;O<R;O++){S=J[O].getKeyIndex();if(S!==null){U[U.length]=S;}}if(U.length>0){X=U;}}else{X=[X];}var W=X.sort(function(c,Z){return YAHOO.util.Sort.compare(c,Z);})[0];this._reorderColgroupColEl(K,W);var T=this._elTbody.rows;if(T.length>0){var N=this.get("renderLoopSize"),L=T.length;this._oChainRender.add({method:function(c){if((this instanceof D)&&this._sId){var b=c.nCurrentRow,a,e,d,Z=N>0?Math.min(b+N,T.length):T.length,g=c.aIndexes,f;for(;b<Z;++b){e=[];f=T[b];for(a=g.length-1;a>-1;a--){e.push(f.removeChild(f.childNodes[g[a]]));}d=f.childNodes[W]||null;for(a=e.length-1;a>-1;a--){f.insertBefore(e[a],d);}}c.nCurrentRow=b;}},iterations:(N>0)?Math.ceil(L/N):1,argument:{nCurrentRow:0,aIndexes:K},scope:this,timeout:(N>0)?0:-1});this._runRenderChain();}this.fireEvent("columnReorderEvent",{column:M});return M;}}}},selectColumn:function(K){K=this.getColumn(K);if(K&&!K.selected){if(K.getKeyIndex()!==null){K.selected=true;var L=K.getThEl();C.addClass(L,D.CLASS_SELECTED);var J=this.getTbodyEl().rows;var I=this._oChainRender;I.add({method:function(M){if((this instanceof D)&&this._sId&&J[M.rowIndex]&&J[M.rowIndex].cells[M.cellIndex]){C.addClass(J[M.rowIndex].cells[M.cellIndex],D.CLASS_SELECTED);}M.rowIndex++;},scope:this,iterations:J.length,argument:{rowIndex:0,cellIndex:K.getKeyIndex()}});this._clearTrTemplateEl();this._elTbody.style.display="none";this._runRenderChain();this._elTbody.style.display="";this.fireEvent("columnSelectEvent",{column:K});}else{}}},unselectColumn:function(K){K=this.getColumn(K);if(K&&K.selected){if(K.getKeyIndex()!==null){K.selected=false;var L=K.getThEl();C.removeClass(L,D.CLASS_SELECTED);var J=this.getTbodyEl().rows;var I=this._oChainRender;I.add({method:function(M){if((this instanceof D)&&this._sId&&J[M.rowIndex]&&J[M.rowIndex].cells[M.cellIndex]){C.removeClass(J[M.rowIndex].cells[M.cellIndex],D.CLASS_SELECTED);}M.rowIndex++;},scope:this,iterations:J.length,argument:{rowIndex:0,cellIndex:K.getKeyIndex()}});this._clearTrTemplateEl();this._elTbody.style.display="none";this._runRenderChain();this._elTbody.style.display="";this.fireEvent("columnUnselectEvent",{column:K});}else{}}},getSelectedColumns:function(M){var J=[];var K=this._oColumnSet.keys;for(var L=0,I=K.length;L<I;L++){if(K[L].selected){J[J.length]=K[L];}}return J;},highlightColumn:function(I){var L=this.getColumn(I);if(L&&(L.getKeyIndex()!==null)){var M=L.getThEl();C.addClass(M,D.CLASS_HIGHLIGHTED);var K=this.getTbodyEl().rows;var J=this._oChainRender;J.add({method:function(N){if((this instanceof D)&&this._sId&&K[N.rowIndex]&&K[N.rowIndex].cells[N.cellIndex]){C.addClass(K[N.rowIndex].cells[N.cellIndex],D.CLASS_HIGHLIGHTED);}N.rowIndex++;},scope:this,iterations:K.length,argument:{rowIndex:0,cellIndex:L.getKeyIndex()},timeout:-1});this._elTbody.style.display="none";this._runRenderChain();this._elTbody.style.display="";this.fireEvent("columnHighlightEvent",{column:L});}else{}},unhighlightColumn:function(I){var L=this.getColumn(I);if(L&&(L.getKeyIndex()!==null)){var M=L.getThEl();C.removeClass(M,D.CLASS_HIGHLIGHTED);var K=this.getTbodyEl().rows;var J=this._oChainRender;J.add({method:function(N){if((this instanceof D)&&this._sId&&K[N.rowIndex]&&K[N.rowIndex].cells[N.cellIndex]){C.removeClass(K[N.rowIndex].cells[N.cellIndex],D.CLASS_HIGHLIGHTED);
-}N.rowIndex++;},scope:this,iterations:K.length,argument:{rowIndex:0,cellIndex:L.getKeyIndex()},timeout:-1});this._elTbody.style.display="none";this._runRenderChain();this._elTbody.style.display="";this.fireEvent("columnUnhighlightEvent",{column:L});}else{}},addRow:function(O,K){if(O&&H.isObject(O)){var M=this._oRecordSet.addRecord(O,K);if(M){var I;var J=this.get("paginator");if(J){var N=J.get("totalRecords");if(N!==E.Paginator.VALUE_UNLIMITED){J.set("totalRecords",N+1);}I=this.getRecordIndex(M);var L=(J.getPageRecords())[1];if(I<=L){this.render();}this.fireEvent("rowAddEvent",{record:M});return ;}else{I=this.getTrIndex(M);if(H.isNumber(I)){this._oChainRender.add({method:function(R){if((this instanceof D)&&this._sId){var S=R.record;var P=R.recIndex;var T=this._addTrEl(S);if(T){var Q=(this._elTbody.rows[P])?this._elTbody.rows[P]:null;this._elTbody.insertBefore(T,Q);if(P===0){this._setFirstRow();}if(Q===null){this._setLastRow();}this._setRowStripes();this.hideTableMessage();this.fireEvent("rowAddEvent",{record:S});}}},argument:{record:M,recIndex:I},scope:this,timeout:(this.get("renderLoopSize")>0)?0:-1});this._runRenderChain();return ;}}}}},addRows:function(K,M){if(H.isArray(K)){var N=this._oRecordSet.addRecords(K,M);if(N){var R=this.getRecordIndex(N[0]);var Q=this.get("paginator");if(Q){var O=Q.get("totalRecords");if(O!==E.Paginator.VALUE_UNLIMITED){Q.set("totalRecords",O+N.length);}var P=(Q.getPageRecords())[1];if(R<=P){this.render();}this.fireEvent("rowsAddEvent",{records:N});return ;}else{var L=this.get("renderLoopSize");var J=R+K.length;var I=(J-R);this._oChainRender.add({method:function(W){if((this instanceof D)&&this._sId){var Y=W.aRecords,V=W.nCurrentRow,U=W.nCurrentRecord,S=L>0?Math.min(V+L,J):J,Z=document.createDocumentFragment(),X;for(;V<S;++V,++U){Z.appendChild(this._addTrEl(Y[U]));}var T=(this._elTbody.rows[M])?this._elTbody.rows[M]:null;this._elTbody.insertBefore(Z,T);W.nCurrentRow=V;W.nCurrentRecord=U;}},iterations:(L>0)?Math.ceil(J/L):1,argument:{nCurrentRow:R,nCurrentRecord:0,aRecords:N},scope:this,timeout:(L>0)?0:-1});this._oChainRender.add({method:function(T){var S=T.recIndex;if(S===0){this._setFirstRow();}if(S===this._elTbody.rows.length-1){this._setLastRow();}this._setRowStripes();this.fireEvent("rowsAddEvent",{records:N});},argument:{recIndex:R},scope:this,timeout:-1});this._runRenderChain();this.hideTableMessage();return ;}}}},updateRow:function(N,O){var I,M,L,J;if((N instanceof YAHOO.widget.Record)||(H.isNumber(N))){I=this._oRecordSet.getRecord(N);J=this.getTrEl(I);}else{J=this.getTrEl(N);if(J){I=this.getRecord(J);}}if(I){var K=I.getData();M=YAHOO.widget.DataTable._cloneObject(K);L=this._oRecordSet.updateRecord(I,O);}else{return ;}if(J){this._oChainRender.add({method:function(){if((this instanceof D)&&this._sId){this._updateTrEl(J,L);this.fireEvent("rowUpdateEvent",{record:L,oldData:M});}},scope:this,timeout:(this.get("renderLoopSize")>0)?0:-1});this._runRenderChain();}else{this.fireEvent("rowUpdateEvent",{record:L,oldData:M});}},deleteRow:function(R){var J=this.getRecordIndex(R);if(H.isNumber(J)){var S=this.getRecord(J);if(S){var L=this.getTrIndex(J);var O=S.getId();var Q=this._aSelections||[];for(var M=Q.length-1;M>-1;M--){if((H.isNumber(Q[M])&&(Q[M]===O))||(H.isObject(Q[M])&&(Q[M].recordId===O))){Q.splice(M,1);}}var K=this._oRecordSet.deleteRecord(J);if(K){var P=this.get("paginator");if(P){var N=P.get("totalRecords"),I=P.getPageRecords();if(N!==E.Paginator.VALUE_UNLIMITED){P.set("totalRecords",N-1);}if(!I||J<=I[1]){this.render();}return ;}else{if(H.isNumber(L)){this._oChainRender.add({method:function(){if((this instanceof D)&&this._sId){var T=(L==this.getLastTrEl().sectionRowIndex);this._deleteTrEl(L);if(this._elTbody.rows.length>0){if(L===0){this._setFirstRow();}if(T){this._setLastRow();}if(L!=this._elTbody.rows.length){this._setRowStripes(L);}}this.fireEvent("rowDeleteEvent",{recordIndex:J,oldData:K,trElIndex:L});}},scope:this,timeout:(this.get("renderLoopSize")>0)?0:-1});this._runRenderChain();return ;}}}}}return null;},deleteRows:function(X,R){var K=this.getRecordIndex(X);if(H.isNumber(K)){var Y=this.getRecord(K);if(Y){var L=this.getTrIndex(K);var T=Y.getId();var W=this._aSelections||[];for(var P=W.length-1;P>-1;P--){if((H.isNumber(W[P])&&(W[P]===T))||(H.isObject(W[P])&&(W[P].recordId===T))){W.splice(P,1);}}var M=K;var V=K;if(R&&H.isNumber(R)){M=(R>0)?K+R-1:K;V=(R>0)?K:K+R+1;R=(R>0)?R:R*-1;}else{R=1;}var O=this._oRecordSet.deleteRecords(V,R);if(O){var U=this.get("paginator");if(U){var S=U.get("totalRecords"),J=U.getPageRecords();if(S!==E.Paginator.VALUE_UNLIMITED){U.set("totalRecords",S-O.length);}if(!J||V<=J[1]){this.render();}return ;}else{if(H.isNumber(L)){var Q=this.get("renderLoopSize");var N=V;var I=R;this._oChainRender.add({method:function(b){if((this instanceof D)&&this._sId){var a=b.nCurrentRow,Z=(Q>0)?(Math.max(a-Q,N)-1):N-1;for(;a>Z;--a){this._deleteTrEl(a);}b.nCurrentRow=a;}},iterations:(Q>0)?Math.ceil(R/Q):1,argument:{nCurrentRow:M},scope:this,timeout:(Q>0)?0:-1});this._oChainRender.add({method:function(){if(this._elTbody.rows.length>0){this._setFirstRow();this._setLastRow();this._setRowStripes();}this.fireEvent("rowsDeleteEvent",{recordIndex:R,oldData:O,count:L});},scope:this,timeout:-1});this._runRenderChain();return ;}}}}}return null;},formatCell:function(L,K,M){if(!K){K=this.getRecord(L);}if(!M){M=this.getColumn(L.parentNode.cellIndex);}if(K&&M){var I=M.field;var N=K.getData(I);var J=typeof M.formatter==="function"?M.formatter:D.Formatter[M.formatter+""]||D.Formatter.defaultFormatter;if(J){J.call(this,L,K,M,N);}else{L.innerHTML=N;}this.fireEvent("cellFormatEvent",{record:K,column:M,key:M.key,el:L});}else{}},updateCell:function(J,K,M){K=(K instanceof YAHOO.widget.Column)?K:this.getColumn(K);if(K&&K.getKey()&&(J instanceof YAHOO.widget.Record)){var L=YAHOO.widget.DataTable._cloneObject(J.getData());this._oRecordSet.updateRecordValue(J,K.getKey(),M);var I=this.getTdEl({record:J,column:K});if(I){this._oChainRender.add({method:function(){if((this instanceof D)&&this._sId){this.formatCell(I.firstChild);
-this.fireEvent("cellUpdateEvent",{record:J,column:K,oldData:L});}},scope:this,timeout:(this.get("renderLoopSize")>0)?0:-1});this._runRenderChain();}else{this.fireEvent("cellUpdateEvent",{record:J,column:K,oldData:L});}}},_updatePaginator:function(J){var I=this.get("paginator");if(I&&J!==I){I.unsubscribe("changeRequest",this.onPaginatorChangeRequest,this,true);}if(J){J.subscribe("changeRequest",this.onPaginatorChangeRequest,this,true);}},_handlePaginatorChange:function(K){if(K.prevValue===K.newValue){return ;}var M=K.newValue,L=K.prevValue,J=this._defaultPaginatorContainers();if(L){if(L.getContainerNodes()[0]==J[0]){L.set("containers",[]);}L.destroy();if(J[0]){if(M&&!M.getContainerNodes().length){M.set("containers",J);}else{for(var I=J.length-1;I>=0;--I){if(J[I]){J[I].parentNode.removeChild(J[I]);}}}}}if(!this._bInit){this.render();}if(M){this.renderPaginator();}},_defaultPaginatorContainers:function(L){var J=this._sId+"-paginator0",K=this._sId+"-paginator1",I=C.get(J),M=C.get(K);if(L&&(!I||!M)){if(!I){I=document.createElement("div");I.id=J;C.addClass(I,D.CLASS_PAGINATOR);this._elContainer.insertBefore(I,this._elContainer.firstChild);}if(!M){M=document.createElement("div");M.id=K;C.addClass(M,D.CLASS_PAGINATOR);this._elContainer.appendChild(M);}}return[I,M];},renderPaginator:function(){var I=this.get("paginator");if(!I){return ;}if(!I.getContainerNodes().length){I.set("containers",this._defaultPaginatorContainers(true));}I.render();},doBeforePaginatorChange:function(I){this.showTableMessage(this.get("MSG_LOADING"),D.CLASS_LOADING);return true;},onPaginatorChangeRequest:function(L){var J=this.doBeforePaginatorChange(L);if(J){if(this.get("dynamicData")){var I=this.getState();I.pagination=L;var K=this.get("generateRequest")(I,this);this.unselectAllRows();this.unselectAllCells();var M={success:this.onDataReturnSetRows,failure:this.onDataReturnSetRows,argument:I,scope:this};this._oDataSource.sendRequest(K,M);}else{L.paginator.setStartIndex(L.recordOffset,true);L.paginator.setRowsPerPage(L.rowsPerPage,true);this.render();}}else{}},_elLastHighlightedTd:null,_aSelections:null,_oAnchorRecord:null,_oAnchorCell:null,_unselectAllTrEls:function(){var I=C.getElementsByClassName(D.CLASS_SELECTED,"tr",this._elTbody);C.removeClass(I,D.CLASS_SELECTED);},_getSelectionTrigger:function(){var L=this.get("selectionMode");var K={};var O,I,J,N,M;if((L=="cellblock")||(L=="cellrange")||(L=="singlecell")){O=this.getLastSelectedCell();if(!O){return null;}else{I=this.getRecord(O.recordId);J=this.getRecordIndex(I);N=this.getTrEl(I);M=this.getTrIndex(N);if(M===null){return null;}else{K.record=I;K.recordIndex=J;K.el=this.getTdEl(O);K.trIndex=M;K.column=this.getColumn(O.columnKey);K.colKeyIndex=K.column.getKeyIndex();K.cell=O;return K;}}}else{I=this.getLastSelectedRecord();if(!I){return null;}else{I=this.getRecord(I);J=this.getRecordIndex(I);N=this.getTrEl(I);M=this.getTrIndex(N);if(M===null){return null;}else{K.record=I;K.recordIndex=J;K.el=N;K.trIndex=M;return K;}}}},_getSelectionAnchor:function(K){var J=this.get("selectionMode");var L={};var M,O,I;if((J=="cellblock")||(J=="cellrange")||(J=="singlecell")){var N=this._oAnchorCell;if(!N){if(K){N=this._oAnchorCell=K.cell;}else{return null;}}M=this._oAnchorCell.record;O=this._oRecordSet.getRecordIndex(M);I=this.getTrIndex(M);if(I===null){if(O<this.getRecordIndex(this.getFirstTrEl())){I=0;}else{I=this.getRecordIndex(this.getLastTrEl());}}L.record=M;L.recordIndex=O;L.trIndex=I;L.column=this._oAnchorCell.column;L.colKeyIndex=L.column.getKeyIndex();L.cell=N;return L;}else{M=this._oAnchorRecord;if(!M){if(K){M=this._oAnchorRecord=K.record;}else{return null;}}O=this.getRecordIndex(M);I=this.getTrIndex(M);if(I===null){if(O<this.getRecordIndex(this.getFirstTrEl())){I=0;}else{I=this.getRecordIndex(this.getLastTrEl());}}L.record=M;L.recordIndex=O;L.trIndex=I;return L;}},_handleStandardSelectionByMouse:function(J){var I=J.target;var L=this.getTrEl(I);if(L){var O=J.event;var R=O.shiftKey;var N=O.ctrlKey||((navigator.userAgent.toLowerCase().indexOf("mac")!=-1)&&O.metaKey);var Q=this.getRecord(L);var K=this._oRecordSet.getRecordIndex(Q);var P=this._getSelectionAnchor();var M;if(R&&N){if(P){if(this.isSelected(P.record)){if(P.recordIndex<K){for(M=P.recordIndex+1;M<=K;M++){if(!this.isSelected(M)){this.selectRow(M);}}}else{for(M=P.recordIndex-1;M>=K;M--){if(!this.isSelected(M)){this.selectRow(M);}}}}else{if(P.recordIndex<K){for(M=P.recordIndex+1;M<=K-1;M++){if(this.isSelected(M)){this.unselectRow(M);}}}else{for(M=K+1;M<=P.recordIndex-1;M++){if(this.isSelected(M)){this.unselectRow(M);}}}this.selectRow(Q);}}else{this._oAnchorRecord=Q;if(this.isSelected(Q)){this.unselectRow(Q);}else{this.selectRow(Q);}}}else{if(R){this.unselectAllRows();if(P){if(P.recordIndex<K){for(M=P.recordIndex;M<=K;M++){this.selectRow(M);}}else{for(M=P.recordIndex;M>=K;M--){this.selectRow(M);}}}else{this._oAnchorRecord=Q;this.selectRow(Q);}}else{if(N){this._oAnchorRecord=Q;if(this.isSelected(Q)){this.unselectRow(Q);}else{this.selectRow(Q);}}else{this._handleSingleSelectionByMouse(J);return ;}}}}},_handleStandardSelectionByKey:function(M){var I=G.getCharCode(M);if((I==38)||(I==40)){var K=M.shiftKey;var J=this._getSelectionTrigger();if(!J){return null;}G.stopEvent(M);var L=this._getSelectionAnchor(J);if(K){if((I==40)&&(L.recordIndex<=J.trIndex)){this.selectRow(this.getNextTrEl(J.el));}else{if((I==38)&&(L.recordIndex>=J.trIndex)){this.selectRow(this.getPreviousTrEl(J.el));}else{this.unselectRow(J.el);}}}else{this._handleSingleSelectionByKey(M);}}},_handleSingleSelectionByMouse:function(K){var L=K.target;var J=this.getTrEl(L);if(J){var I=this.getRecord(J);this._oAnchorRecord=I;this.unselectAllRows();this.selectRow(I);}},_handleSingleSelectionByKey:function(L){var I=G.getCharCode(L);if((I==38)||(I==40)){var J=this._getSelectionTrigger();if(!J){return null;}G.stopEvent(L);var K;if(I==38){K=this.getPreviousTrEl(J.el);if(K===null){K=this.getFirstTrEl();}}else{if(I==40){K=this.getNextTrEl(J.el);if(K===null){K=this.getLastTrEl();}}}this.unselectAllRows();
-this.selectRow(K);this._oAnchorRecord=this.getRecord(K);}},_handleCellBlockSelectionByMouse:function(Y){var Z=Y.target;var J=this.getTdEl(Z);if(J){var X=Y.event;var O=X.shiftKey;var K=X.ctrlKey||((navigator.userAgent.toLowerCase().indexOf("mac")!=-1)&&X.metaKey);var Q=this.getTrEl(J);var P=this.getTrIndex(Q);var T=this.getColumn(J);var U=T.getKeyIndex();var S=this.getRecord(Q);var b=this._oRecordSet.getRecordIndex(S);var N={record:S,column:T};var R=this._getSelectionAnchor();var M=this.getTbodyEl().rows;var L,I,a,W,V;if(O&&K){if(R){if(this.isSelected(R.cell)){if(R.recordIndex===b){if(R.colKeyIndex<U){for(W=R.colKeyIndex+1;W<=U;W++){this.selectCell(Q.cells[W]);}}else{if(U<R.colKeyIndex){for(W=U;W<R.colKeyIndex;W++){this.selectCell(Q.cells[W]);}}}}else{if(R.recordIndex<b){L=Math.min(R.colKeyIndex,U);I=Math.max(R.colKeyIndex,U);for(W=R.trIndex;W<=P;W++){for(V=L;V<=I;V++){this.selectCell(M[W].cells[V]);}}}else{L=Math.min(R.trIndex,U);I=Math.max(R.trIndex,U);for(W=R.trIndex;W>=P;W--){for(V=I;V>=L;V--){this.selectCell(M[W].cells[V]);}}}}}else{if(R.recordIndex===b){if(R.colKeyIndex<U){for(W=R.colKeyIndex+1;W<U;W++){this.unselectCell(Q.cells[W]);}}else{if(U<R.colKeyIndex){for(W=U+1;W<R.colKeyIndex;W++){this.unselectCell(Q.cells[W]);}}}}if(R.recordIndex<b){for(W=R.trIndex;W<=P;W++){a=M[W];for(V=0;V<a.cells.length;V++){if(a.sectionRowIndex===R.trIndex){if(V>R.colKeyIndex){this.unselectCell(a.cells[V]);}}else{if(a.sectionRowIndex===P){if(V<U){this.unselectCell(a.cells[V]);}}else{this.unselectCell(a.cells[V]);}}}}}else{for(W=P;W<=R.trIndex;W++){a=M[W];for(V=0;V<a.cells.length;V++){if(a.sectionRowIndex==P){if(V>U){this.unselectCell(a.cells[V]);}}else{if(a.sectionRowIndex==R.trIndex){if(V<R.colKeyIndex){this.unselectCell(a.cells[V]);}}else{this.unselectCell(a.cells[V]);}}}}}this.selectCell(J);}}else{this._oAnchorCell=N;if(this.isSelected(N)){this.unselectCell(N);}else{this.selectCell(N);}}}else{if(O){this.unselectAllCells();if(R){if(R.recordIndex===b){if(R.colKeyIndex<U){for(W=R.colKeyIndex;W<=U;W++){this.selectCell(Q.cells[W]);}}else{if(U<R.colKeyIndex){for(W=U;W<=R.colKeyIndex;W++){this.selectCell(Q.cells[W]);}}}}else{if(R.recordIndex<b){L=Math.min(R.colKeyIndex,U);I=Math.max(R.colKeyIndex,U);for(W=R.trIndex;W<=P;W++){for(V=L;V<=I;V++){this.selectCell(M[W].cells[V]);}}}else{L=Math.min(R.colKeyIndex,U);I=Math.max(R.colKeyIndex,U);for(W=P;W<=R.trIndex;W++){for(V=L;V<=I;V++){this.selectCell(M[W].cells[V]);}}}}}else{this._oAnchorCell=N;this.selectCell(N);}}else{if(K){this._oAnchorCell=N;if(this.isSelected(N)){this.unselectCell(N);}else{this.selectCell(N);}}else{this._handleSingleCellSelectionByMouse(Y);}}}}},_handleCellBlockSelectionByKey:function(N){var I=G.getCharCode(N);var S=N.shiftKey;if((I==9)||!S){this._handleSingleCellSelectionByKey(N);return ;}if((I>36)&&(I<41)){var T=this._getSelectionTrigger();if(!T){return null;}G.stopEvent(N);var Q=this._getSelectionAnchor(T);var J,R,K,P,L;var O=this.getTbodyEl().rows;var M=T.el.parentNode;if(I==40){if(Q.recordIndex<=T.recordIndex){L=this.getNextTrEl(T.el);if(L){R=Q.colKeyIndex;K=T.colKeyIndex;if(R>K){for(J=R;J>=K;J--){P=L.cells[J];this.selectCell(P);}}else{for(J=R;J<=K;J++){P=L.cells[J];this.selectCell(P);}}}}else{R=Math.min(Q.colKeyIndex,T.colKeyIndex);K=Math.max(Q.colKeyIndex,T.colKeyIndex);for(J=R;J<=K;J++){this.unselectCell(M.cells[J]);}}}else{if(I==38){if(Q.recordIndex>=T.recordIndex){L=this.getPreviousTrEl(T.el);if(L){R=Q.colKeyIndex;K=T.colKeyIndex;if(R>K){for(J=R;J>=K;J--){P=L.cells[J];this.selectCell(P);}}else{for(J=R;J<=K;J++){P=L.cells[J];this.selectCell(P);}}}}else{R=Math.min(Q.colKeyIndex,T.colKeyIndex);K=Math.max(Q.colKeyIndex,T.colKeyIndex);for(J=R;J<=K;J++){this.unselectCell(M.cells[J]);}}}else{if(I==39){if(Q.colKeyIndex<=T.colKeyIndex){if(T.colKeyIndex<M.cells.length-1){R=Q.trIndex;K=T.trIndex;if(R>K){for(J=R;J>=K;J--){P=O[J].cells[T.colKeyIndex+1];this.selectCell(P);}}else{for(J=R;J<=K;J++){P=O[J].cells[T.colKeyIndex+1];this.selectCell(P);}}}}else{R=Math.min(Q.trIndex,T.trIndex);K=Math.max(Q.trIndex,T.trIndex);for(J=R;J<=K;J++){this.unselectCell(O[J].cells[T.colKeyIndex]);}}}else{if(I==37){if(Q.colKeyIndex>=T.colKeyIndex){if(T.colKeyIndex>0){R=Q.trIndex;K=T.trIndex;if(R>K){for(J=R;J>=K;J--){P=O[J].cells[T.colKeyIndex-1];this.selectCell(P);}}else{for(J=R;J<=K;J++){P=O[J].cells[T.colKeyIndex-1];this.selectCell(P);}}}}else{R=Math.min(Q.trIndex,T.trIndex);K=Math.max(Q.trIndex,T.trIndex);for(J=R;J<=K;J++){this.unselectCell(O[J].cells[T.colKeyIndex]);}}}}}}}},_handleCellRangeSelectionByMouse:function(W){var X=W.target;var I=this.getTdEl(X);if(I){var V=W.event;var M=V.shiftKey;var J=V.ctrlKey||((navigator.userAgent.toLowerCase().indexOf("mac")!=-1)&&V.metaKey);var O=this.getTrEl(I);var N=this.getTrIndex(O);var R=this.getColumn(I);var S=R.getKeyIndex();var Q=this.getRecord(O);var Z=this._oRecordSet.getRecordIndex(Q);var L={record:Q,column:R};var P=this._getSelectionAnchor();var K=this.getTbodyEl().rows;var Y,U,T;if(M&&J){if(P){if(this.isSelected(P.cell)){if(P.recordIndex===Z){if(P.colKeyIndex<S){for(U=P.colKeyIndex+1;U<=S;U++){this.selectCell(O.cells[U]);}}else{if(S<P.colKeyIndex){for(U=S;U<P.colKeyIndex;U++){this.selectCell(O.cells[U]);}}}}else{if(P.recordIndex<Z){for(U=P.colKeyIndex+1;U<O.cells.length;U++){this.selectCell(O.cells[U]);}for(U=P.trIndex+1;U<N;U++){for(T=0;T<K[U].cells.length;T++){this.selectCell(K[U].cells[T]);}}for(U=0;U<=S;U++){this.selectCell(O.cells[U]);}}else{for(U=S;U<O.cells.length;U++){this.selectCell(O.cells[U]);}for(U=N+1;U<P.trIndex;U++){for(T=0;T<K[U].cells.length;T++){this.selectCell(K[U].cells[T]);}}for(U=0;U<P.colKeyIndex;U++){this.selectCell(O.cells[U]);}}}}else{if(P.recordIndex===Z){if(P.colKeyIndex<S){for(U=P.colKeyIndex+1;U<S;U++){this.unselectCell(O.cells[U]);}}else{if(S<P.colKeyIndex){for(U=S+1;U<P.colKeyIndex;U++){this.unselectCell(O.cells[U]);}}}}if(P.recordIndex<Z){for(U=P.trIndex;U<=N;U++){Y=K[U];for(T=0;T<Y.cells.length;T++){if(Y.sectionRowIndex===P.trIndex){if(T>P.colKeyIndex){this.unselectCell(Y.cells[T]);
-}}else{if(Y.sectionRowIndex===N){if(T<S){this.unselectCell(Y.cells[T]);}}else{this.unselectCell(Y.cells[T]);}}}}}else{for(U=N;U<=P.trIndex;U++){Y=K[U];for(T=0;T<Y.cells.length;T++){if(Y.sectionRowIndex==N){if(T>S){this.unselectCell(Y.cells[T]);}}else{if(Y.sectionRowIndex==P.trIndex){if(T<P.colKeyIndex){this.unselectCell(Y.cells[T]);}}else{this.unselectCell(Y.cells[T]);}}}}}this.selectCell(I);}}else{this._oAnchorCell=L;if(this.isSelected(L)){this.unselectCell(L);}else{this.selectCell(L);}}}else{if(M){this.unselectAllCells();if(P){if(P.recordIndex===Z){if(P.colKeyIndex<S){for(U=P.colKeyIndex;U<=S;U++){this.selectCell(O.cells[U]);}}else{if(S<P.colKeyIndex){for(U=S;U<=P.colKeyIndex;U++){this.selectCell(O.cells[U]);}}}}else{if(P.recordIndex<Z){for(U=P.trIndex;U<=N;U++){Y=K[U];for(T=0;T<Y.cells.length;T++){if(Y.sectionRowIndex==P.trIndex){if(T>=P.colKeyIndex){this.selectCell(Y.cells[T]);}}else{if(Y.sectionRowIndex==N){if(T<=S){this.selectCell(Y.cells[T]);}}else{this.selectCell(Y.cells[T]);}}}}}else{for(U=N;U<=P.trIndex;U++){Y=K[U];for(T=0;T<Y.cells.length;T++){if(Y.sectionRowIndex==N){if(T>=S){this.selectCell(Y.cells[T]);}}else{if(Y.sectionRowIndex==P.trIndex){if(T<=P.colKeyIndex){this.selectCell(Y.cells[T]);}}else{this.selectCell(Y.cells[T]);}}}}}}}else{this._oAnchorCell=L;this.selectCell(L);}}else{if(J){this._oAnchorCell=L;if(this.isSelected(L)){this.unselectCell(L);}else{this.selectCell(L);}}else{this._handleSingleCellSelectionByMouse(W);}}}}},_handleCellRangeSelectionByKey:function(M){var I=G.getCharCode(M);var Q=M.shiftKey;if((I==9)||!Q){this._handleSingleCellSelectionByKey(M);return ;}if((I>36)&&(I<41)){var R=this._getSelectionTrigger();if(!R){return null;}G.stopEvent(M);var P=this._getSelectionAnchor(R);var J,K,O;var N=this.getTbodyEl().rows;var L=R.el.parentNode;if(I==40){K=this.getNextTrEl(R.el);if(P.recordIndex<=R.recordIndex){for(J=R.colKeyIndex+1;J<L.cells.length;J++){O=L.cells[J];this.selectCell(O);}if(K){for(J=0;J<=R.colKeyIndex;J++){O=K.cells[J];this.selectCell(O);}}}else{for(J=R.colKeyIndex;J<L.cells.length;J++){this.unselectCell(L.cells[J]);}if(K){for(J=0;J<R.colKeyIndex;J++){this.unselectCell(K.cells[J]);}}}}else{if(I==38){K=this.getPreviousTrEl(R.el);if(P.recordIndex>=R.recordIndex){for(J=R.colKeyIndex-1;J>-1;J--){O=L.cells[J];this.selectCell(O);}if(K){for(J=L.cells.length-1;J>=R.colKeyIndex;J--){O=K.cells[J];this.selectCell(O);}}}else{for(J=R.colKeyIndex;J>-1;J--){this.unselectCell(L.cells[J]);}if(K){for(J=L.cells.length-1;J>R.colKeyIndex;J--){this.unselectCell(K.cells[J]);}}}}else{if(I==39){K=this.getNextTrEl(R.el);if(P.recordIndex<R.recordIndex){if(R.colKeyIndex<L.cells.length-1){O=L.cells[R.colKeyIndex+1];this.selectCell(O);}else{if(K){O=K.cells[0];this.selectCell(O);}}}else{if(P.recordIndex>R.recordIndex){this.unselectCell(L.cells[R.colKeyIndex]);if(R.colKeyIndex<L.cells.length-1){}else{}}else{if(P.colKeyIndex<=R.colKeyIndex){if(R.colKeyIndex<L.cells.length-1){O=L.cells[R.colKeyIndex+1];this.selectCell(O);}else{if(R.trIndex<N.length-1){O=K.cells[0];this.selectCell(O);}}}else{this.unselectCell(L.cells[R.colKeyIndex]);}}}}else{if(I==37){K=this.getPreviousTrEl(R.el);if(P.recordIndex<R.recordIndex){this.unselectCell(L.cells[R.colKeyIndex]);if(R.colKeyIndex>0){}else{}}else{if(P.recordIndex>R.recordIndex){if(R.colKeyIndex>0){O=L.cells[R.colKeyIndex-1];this.selectCell(O);}else{if(R.trIndex>0){O=K.cells[K.cells.length-1];this.selectCell(O);}}}else{if(P.colKeyIndex>=R.colKeyIndex){if(R.colKeyIndex>0){O=L.cells[R.colKeyIndex-1];this.selectCell(O);}else{if(R.trIndex>0){O=K.cells[K.cells.length-1];this.selectCell(O);}}}else{this.unselectCell(L.cells[R.colKeyIndex]);if(R.colKeyIndex>0){}else{}}}}}}}}}},_handleSingleCellSelectionByMouse:function(N){var O=N.target;var K=this.getTdEl(O);if(K){var J=this.getTrEl(K);var I=this.getRecord(J);var M=this.getColumn(K);var L={record:I,column:M};this._oAnchorCell=L;this.unselectAllCells();this.selectCell(L);}},_handleSingleCellSelectionByKey:function(M){var I=G.getCharCode(M);if((I==9)||((I>36)&&(I<41))){var K=M.shiftKey;var J=this._getSelectionTrigger();if(!J){return null;}var L;if(I==40){L=this.getBelowTdEl(J.el);if(L===null){L=J.el;}}else{if(I==38){L=this.getAboveTdEl(J.el);if(L===null){L=J.el;}}else{if((I==39)||(!K&&(I==9))){L=this.getNextTdEl(J.el);if(L===null){return ;}}else{if((I==37)||(K&&(I==9))){L=this.getPreviousTdEl(J.el);if(L===null){return ;}}}}}G.stopEvent(M);this.unselectAllCells();this.selectCell(L);this._oAnchorCell={record:this.getRecord(L),column:this.getColumn(L)};}},getSelectedTrEls:function(){return C.getElementsByClassName(D.CLASS_SELECTED,"tr",this._elTbody);},selectRow:function(O){var N,I;if(O instanceof YAHOO.widget.Record){N=this._oRecordSet.getRecord(O);I=this.getTrEl(N);}else{if(H.isNumber(O)){N=this.getRecord(O);I=this.getTrEl(N);}else{I=this.getTrEl(O);N=this.getRecord(I);}}if(N){var M=this._aSelections||[];var L=N.getId();var K=-1;if(M.indexOf){K=M.indexOf(L);}else{for(var J=M.length-1;J>-1;J--){if(M[J]===L){K=J;break;}}}if(K>-1){M.splice(K,1);}M.push(L);this._aSelections=M;if(!this._oAnchorRecord){this._oAnchorRecord=N;}if(I){C.addClass(I,D.CLASS_SELECTED);}this.fireEvent("rowSelectEvent",{record:N,el:I});}else{}},unselectRow:function(O){var I=this.getTrEl(O);var N;if(O instanceof YAHOO.widget.Record){N=this._oRecordSet.getRecord(O);}else{if(H.isNumber(O)){N=this.getRecord(O);}else{N=this.getRecord(I);}}if(N){var M=this._aSelections||[];var L=N.getId();var K=-1;if(M.indexOf){K=M.indexOf(L);}else{for(var J=M.length-1;J>-1;J--){if(M[J]===L){K=J;break;}}}if(K>-1){M.splice(K,1);this._aSelections=M;C.removeClass(I,D.CLASS_SELECTED);this.fireEvent("rowUnselectEvent",{record:N,el:I});return ;}}},unselectAllRows:function(){var J=this._aSelections||[],L,K=[];for(var I=J.length-1;I>-1;I--){if(H.isString(J[I])){L=J.splice(I,1);K[K.length]=this.getRecord(H.isArray(L)?L[0]:L);}}this._aSelections=J;this._unselectAllTrEls();this.fireEvent("unselectAllRowsEvent",{records:K});},_unselectAllTdEls:function(){var I=C.getElementsByClassName(D.CLASS_SELECTED,"td",this._elTbody);
-C.removeClass(I,D.CLASS_SELECTED);},getSelectedTdEls:function(){return C.getElementsByClassName(D.CLASS_SELECTED,"td",this._elTbody);},selectCell:function(I){var O=this.getTdEl(I);if(O){var N=this.getRecord(O);var L=this.getColumn(O.cellIndex).getKey();if(N&&L){var M=this._aSelections||[];var K=N.getId();for(var J=M.length-1;J>-1;J--){if((M[J].recordId===K)&&(M[J].columnKey===L)){M.splice(J,1);break;}}M.push({recordId:K,columnKey:L});this._aSelections=M;if(!this._oAnchorCell){this._oAnchorCell={record:N,column:this.getColumn(L)};}C.addClass(O,D.CLASS_SELECTED);this.fireEvent("cellSelectEvent",{record:N,column:this.getColumn(O.cellIndex),key:this.getColumn(O.cellIndex).getKey(),el:O});return ;}}},unselectCell:function(I){var N=this.getTdEl(I);if(N){var M=this.getRecord(N);var K=this.getColumn(N.cellIndex).getKey();if(M&&K){var L=this._aSelections||[];var O=M.getId();for(var J=L.length-1;J>-1;J--){if((L[J].recordId===O)&&(L[J].columnKey===K)){L.splice(J,1);this._aSelections=L;C.removeClass(N,D.CLASS_SELECTED);this.fireEvent("cellUnselectEvent",{record:M,column:this.getColumn(N.cellIndex),key:this.getColumn(N.cellIndex).getKey(),el:N});return ;}}}}},unselectAllCells:function(){var J=this._aSelections||[];for(var I=J.length-1;I>-1;I--){if(H.isObject(J[I])){J.splice(I,1);}}this._aSelections=J;this._unselectAllTdEls();this.fireEvent("unselectAllCellsEvent");},isSelected:function(N){if(N&&(N.ownerDocument==document)){return(C.hasClass(this.getTdEl(N),D.CLASS_SELECTED)||C.hasClass(this.getTrEl(N),D.CLASS_SELECTED));}else{var M,J,I;var L=this._aSelections;if(L&&L.length>0){if(N instanceof YAHOO.widget.Record){M=N;}else{if(H.isNumber(N)){M=this.getRecord(N);}}if(M){J=M.getId();if(L.indexOf){if(L.indexOf(J)>-1){return true;}}else{for(I=L.length-1;I>-1;I--){if(L[I]===J){return true;}}}}else{if(N.record&&N.column){J=N.record.getId();var K=N.column.getKey();for(I=L.length-1;I>-1;I--){if((L[I].recordId===J)&&(L[I].columnKey===K)){return true;}}}}}}return false;},getSelectedRows:function(){var I=[];var K=this._aSelections||[];for(var J=0;J<K.length;J++){if(H.isString(K[J])){I.push(K[J]);}}return I;},getSelectedCells:function(){var J=[];var K=this._aSelections||[];for(var I=0;I<K.length;I++){if(K[I]&&H.isObject(K[I])){J.push(K[I]);}}return J;},getLastSelectedRecord:function(){var J=this._aSelections;if(J&&J.length>0){for(var I=J.length-1;I>-1;I--){if(H.isString(J[I])){return J[I];}}}},getLastSelectedCell:function(){var J=this._aSelections;if(J&&J.length>0){for(var I=J.length-1;I>-1;I--){if(J[I].recordId&&J[I].columnKey){return J[I];}}}},highlightRow:function(K){var I=this.getTrEl(K);if(I){var J=this.getRecord(I);C.addClass(I,D.CLASS_HIGHLIGHTED);this.fireEvent("rowHighlightEvent",{record:J,el:I});return ;}},unhighlightRow:function(K){var I=this.getTrEl(K);if(I){var J=this.getRecord(I);C.removeClass(I,D.CLASS_HIGHLIGHTED);this.fireEvent("rowUnhighlightEvent",{record:J,el:I});return ;}},highlightCell:function(I){var L=this.getTdEl(I);if(L){if(this._elLastHighlightedTd){this.unhighlightCell(this._elLastHighlightedTd);}var K=this.getRecord(L);var J=this.getColumn(L.cellIndex).getKey();C.addClass(L,D.CLASS_HIGHLIGHTED);this._elLastHighlightedTd=L;this.fireEvent("cellHighlightEvent",{record:K,column:this.getColumn(L.cellIndex),key:this.getColumn(L.cellIndex).getKey(),el:L});return ;}},unhighlightCell:function(I){var K=this.getTdEl(I);if(K){var J=this.getRecord(K);C.removeClass(K,D.CLASS_HIGHLIGHTED);this._elLastHighlightedTd=null;this.fireEvent("cellUnhighlightEvent",{record:J,column:this.getColumn(K.cellIndex),key:this.getColumn(K.cellIndex).getKey(),el:K});return ;}},getCellEditor:function(){return this._oCellEditor;},showCellEditor:function(P,Q,L){P=this.getTdEl(P);if(P){L=this.getColumn(P);if(L&&L.editor){var J=this._oCellEditor;if(J){if(this._oCellEditor.cancel){this._oCellEditor.cancel();}else{if(J.isActive){this.cancelCellEditor();}}}if(L.editor instanceof YAHOO.widget.BaseCellEditor){J=L.editor;var N=J.attach(this,P);if(N){J.move();N=this.doBeforeShowCellEditor(J);if(N){J.show();this._oCellEditor=J;}}}else{if(!Q||!(Q instanceof YAHOO.widget.Record)){Q=this.getRecord(P);}if(!L||!(L instanceof YAHOO.widget.Column)){L=this.getColumn(P);}if(Q&&L){if(!this._oCellEditor||this._oCellEditor.container){this._initCellEditorEl();}J=this._oCellEditor;J.cell=P;J.record=Q;J.column=L;J.validator=(L.editorOptions&&H.isFunction(L.editorOptions.validator))?L.editorOptions.validator:null;J.value=Q.getData(L.key);J.defaultValue=null;var K=J.container;var O=C.getX(P);var M=C.getY(P);if(isNaN(O)||isNaN(M)){O=P.offsetLeft+C.getX(this._elTbody.parentNode)-this._elTbody.scrollLeft;M=P.offsetTop+C.getY(this._elTbody.parentNode)-this._elTbody.scrollTop+this._elThead.offsetHeight;}K.style.left=O+"px";K.style.top=M+"px";this.doBeforeShowCellEditor(this._oCellEditor);K.style.display="";G.addListener(K,"keydown",function(S,R){if((S.keyCode==27)){R.cancelCellEditor();R.focusTbodyEl();}else{R.fireEvent("editorKeydownEvent",{editor:R._oCellEditor,event:S});}},this);var I;if(H.isString(L.editor)){switch(L.editor){case"checkbox":I=D.editCheckbox;break;case"date":I=D.editDate;break;case"dropdown":I=D.editDropdown;break;case"radio":I=D.editRadio;break;case"textarea":I=D.editTextarea;break;case"textbox":I=D.editTextbox;break;default:I=null;}}else{if(H.isFunction(L.editor)){I=L.editor;}}if(I){I(this._oCellEditor,this);if(!L.editorOptions||!L.editorOptions.disableBtns){this.showCellEditorBtns(K);}J.isActive=true;this.fireEvent("editorShowEvent",{editor:J});return ;}}}}}},_initCellEditorEl:function(){var I=document.createElement("div");I.id=this._sId+"-celleditor";I.style.display="none";I.tabIndex=0;C.addClass(I,D.CLASS_EDITOR);var K=C.getFirstChild(document.body);if(K){I=C.insertBefore(I,K);}else{I=document.body.appendChild(I);}var J={};J.container=I;J.value=null;J.isActive=false;this._oCellEditor=J;},doBeforeShowCellEditor:function(I){return true;},saveCellEditor:function(){if(this._oCellEditor){if(this._oCellEditor.save){this._oCellEditor.save();
-}else{if(this._oCellEditor.isActive){var I=this._oCellEditor.value;var J=YAHOO.widget.DataTable._cloneObject(this._oCellEditor.record.getData(this._oCellEditor.column.key));if(this._oCellEditor.validator){I=this._oCellEditor.value=this._oCellEditor.validator.call(this,I,J,this._oCellEditor);if(I===null){this.resetCellEditor();this.fireEvent("editorRevertEvent",{editor:this._oCellEditor,oldData:J,newData:I});return ;}}this._oRecordSet.updateRecordValue(this._oCellEditor.record,this._oCellEditor.column.key,this._oCellEditor.value);this.formatCell(this._oCellEditor.cell.firstChild);this._oChainRender.add({method:function(){this.validateColumnWidths();},scope:this});this._oChainRender.run();this.resetCellEditor();this.fireEvent("editorSaveEvent",{editor:this._oCellEditor,oldData:J,newData:I});}}}},cancelCellEditor:function(){if(this._oCellEditor){if(this._oCellEditor.cancel){this._oCellEditor.cancel();}else{if(this._oCellEditor.isActive){this.resetCellEditor();this.fireEvent("editorCancelEvent",{editor:this._oCellEditor});}}}},destroyCellEditor:function(){if(this._oCellEditor){this._oCellEditor.destroy();this._oCellEditor=null;}},_onEditorShowEvent:function(I){this.fireEvent("editorShowEvent",I);},_onEditorKeydownEvent:function(I){this.fireEvent("editorKeydownEvent",I);},_onEditorRevertEvent:function(I){this.fireEvent("editorRevertEvent",I);},_onEditorSaveEvent:function(I){this.fireEvent("editorSaveEvent",I);},_onEditorCancelEvent:function(I){this.fireEvent("editorCancelEvent",I);},_onEditorBlurEvent:function(I){this.fireEvent("editorBlurEvent",I);},_onEditorBlockEvent:function(I){this.fireEvent("editorBlockEvent",I);},_onEditorUnblockEvent:function(I){this.fireEvent("editorUnblockEvent",I);},onEditorBlurEvent:function(I){if(I.editor.disableBtns){if(I.editor.save){I.editor.save();}}else{if(I.editor.cancel){I.editor.cancel();}}},onEditorBlockEvent:function(I){this.disable();},onEditorUnblockEvent:function(I){this.undisable();},doBeforeLoadData:function(I,J,K){return true;},onEventSortColumn:function(K){var I=K.event;var M=K.target;var J=this.getThEl(M)||this.getTdEl(M);if(J){var L=this.getColumn(J);if(L.sortable){G.stopEvent(I);this.sortColumn(L);}}else{}},onEventSelectColumn:function(I){this.selectColumn(I.target);},onEventHighlightColumn:function(I){if(!C.isAncestor(I.target,G.getRelatedTarget(I.event))){this.highlightColumn(I.target);}},onEventUnhighlightColumn:function(I){if(!C.isAncestor(I.target,G.getRelatedTarget(I.event))){this.unhighlightColumn(I.target);}},onEventSelectRow:function(J){var I=this.get("selectionMode");if(I=="single"){this._handleSingleSelectionByMouse(J);}else{this._handleStandardSelectionByMouse(J);}},onEventSelectCell:function(J){var I=this.get("selectionMode");if(I=="cellblock"){this._handleCellBlockSelectionByMouse(J);}else{if(I=="cellrange"){this._handleCellRangeSelectionByMouse(J);}else{this._handleSingleCellSelectionByMouse(J);}}},onEventHighlightRow:function(I){if(!C.isAncestor(I.target,G.getRelatedTarget(I.event))){this.highlightRow(I.target);}},onEventUnhighlightRow:function(I){if(!C.isAncestor(I.target,G.getRelatedTarget(I.event))){this.unhighlightRow(I.target);}},onEventHighlightCell:function(I){if(!C.isAncestor(I.target,G.getRelatedTarget(I.event))){this.highlightCell(I.target);}},onEventUnhighlightCell:function(I){if(!C.isAncestor(I.target,G.getRelatedTarget(I.event))){this.unhighlightCell(I.target);}},onEventFormatCell:function(I){var L=I.target;var J=this.getTdEl(L);if(J){var K=this.getColumn(J.cellIndex);this.formatCell(J.firstChild,this.getRecord(J),K);}else{}},onEventShowCellEditor:function(I){this.showCellEditor(I.target);},onEventSaveCellEditor:function(I){if(this._oCellEditor){if(this._oCellEditor.save){this._oCellEditor.save();}else{this.saveCellEditor();}}},onEventCancelCellEditor:function(I){if(this._oCellEditor){if(this._oCellEditor.cancel){this._oCellEditor.cancel();}else{this.cancelCellEditor();}}},onDataReturnInitializeTable:function(I,J,K){if((this instanceof D)&&this._sId){this.initializeTable();this.onDataReturnSetRows(I,J,K);}},onDataReturnReplaceRows:function(M,L,N){if((this instanceof D)&&this._sId){this.fireEvent("dataReturnEvent",{request:M,response:L,payload:N});var J=this.doBeforeLoadData(M,L,N),K=this.get("paginator"),I=0;if(J&&L&&!L.error&&H.isArray(L.results)){this._oRecordSet.reset();if(this.get("dynamicData")){if(N&&N.pagination&&H.isNumber(N.pagination.recordOffset)){I=N.pagination.recordOffset;}else{if(K){I=K.getStartIndex();}}}this._oRecordSet.setRecords(L.results,I|0);this._handleDataReturnPayload(M,L,N);this.render();}else{if(J&&L.error){this.showTableMessage(this.get("MSG_ERROR"),D.CLASS_ERROR);}}}},onDataReturnAppendRows:function(J,K,L){if((this instanceof D)&&this._sId){this.fireEvent("dataReturnEvent",{request:J,response:K,payload:L});var I=this.doBeforeLoadData(J,K,L);if(I&&K&&!K.error&&H.isArray(K.results)){this.addRows(K.results);this._handleDataReturnPayload(J,K,L);}else{if(I&&K.error){this.showTableMessage(this.get("MSG_ERROR"),D.CLASS_ERROR);}}}},onDataReturnInsertRows:function(J,K,L){if((this instanceof D)&&this._sId){this.fireEvent("dataReturnEvent",{request:J,response:K,payload:L});var I=this.doBeforeLoadData(J,K,L);if(I&&K&&!K.error&&H.isArray(K.results)){this.addRows(K.results,L.insertIndex|0);this._handleDataReturnPayload(J,K,L);}else{if(I&&K.error){this.showTableMessage(this.get("MSG_ERROR"),D.CLASS_ERROR);}}}},onDataReturnSetRows:function(M,L,N){if((this instanceof D)&&this._sId){this.fireEvent("dataReturnEvent",{request:M,response:L,payload:N});var J=this.doBeforeLoadData(M,L,N),K=this.get("paginator"),I=0;if(J&&L&&!L.error&&H.isArray(L.results)){if(this.get("dynamicData")){if(N&&N.pagination&&H.isNumber(N.pagination.recordOffset)){I=N.pagination.recordOffset;}else{if(K){I=K.getStartIndex();}}}this._oRecordSet.setRecords(L.results,I|0);this._handleDataReturnPayload(M,L,N);this.render();}else{if(J&&L.error){this.showTableMessage(this.get("MSG_ERROR"),D.CLASS_ERROR);}}}else{}},handleDataReturnPayload:function(J,I,K){return K;
-},_handleDataReturnPayload:function(K,J,L){L=this.handleDataReturnPayload(K,J,L);if(L){var I=this.get("paginator");if(I){if(this.get("dynamicData")){if(H.isNumber(L.totalRecords)){I.set("totalRecords",L.totalRecords);}}else{I.set("totalRecords",this._oRecordSet.getLength());}if(H.isObject(L.pagination)){I.set("rowsPerPage",L.pagination.rowsPerPage);I.set("recordOffset",L.pagination.recordOffset);}}if(L.sortedBy){this.set("sortedBy",L.sortedBy);}else{if(L.sorting){this.set("sortedBy",L.sorting);}}}},showCellEditorBtns:function(K){var L=K.appendChild(document.createElement("div"));C.addClass(L,D.CLASS_BUTTON);var J=L.appendChild(document.createElement("button"));C.addClass(J,D.CLASS_DEFAULT);J.innerHTML="OK";G.addListener(J,"click",function(N,M){M.onEventSaveCellEditor(N,M);M.focusTbodyEl();},this,true);var I=L.appendChild(document.createElement("button"));I.innerHTML="Cancel";G.addListener(I,"click",function(N,M){M.onEventCancelCellEditor(N,M);M.focusTbodyEl();},this,true);},resetCellEditor:function(){var I=this._oCellEditor.container;I.style.display="none";G.purgeElement(I,true);I.innerHTML="";this._oCellEditor.value=null;this._oCellEditor.isActive=false;},getBody:function(){return this.getTbodyEl();},getCell:function(I){return this.getTdEl(I);},getRow:function(I){return this.getTrEl(I);},refreshView:function(){this.render();},select:function(J){if(!H.isArray(J)){J=[J];}for(var I=0;I<J.length;I++){this.selectRow(J[I]);}},onEventEditCell:function(I){this.onEventShowCellEditor(I);},_syncColWidths:function(){this.validateColumnWidths();}});D.prototype.onDataReturnSetRecords=D.prototype.onDataReturnSetRows;D.prototype.onPaginatorChange=D.prototype.onPaginatorChangeRequest;D.formatTheadCell=function(){};D.editCheckbox=function(){};D.editDate=function(){};D.editDropdown=function(){};D.editRadio=function(){};D.editTextarea=function(){};D.editTextbox=function(){};})();(function(){var C=YAHOO.lang,F=YAHOO.util,E=YAHOO.widget,A=YAHOO.env.ua,D=F.Dom,J=F.Event,I=F.DataSourceBase,G=E.DataTable,B=E.Paginator;E.ScrollingDataTable=function(N,M,K,L){L=L||{};if(L.scrollable){L.scrollable=false;}E.ScrollingDataTable.superclass.constructor.call(this,N,M,K,L);this.subscribe("columnShowEvent",this._onColumnChange);};var H=E.ScrollingDataTable;C.augmentObject(H,{CLASS_HEADER:"yui-dt-hd",CLASS_BODY:"yui-dt-bd"});C.extend(H,G,{_elHdContainer:null,_elHdTable:null,_elBdContainer:null,_elBdThead:null,_elTmpContainer:null,_elTmpTable:null,_bScrollbarX:null,initAttributes:function(K){K=K||{};H.superclass.initAttributes.call(this,K);this.setAttributeConfig("width",{value:null,validator:C.isString,method:function(L){if(this._elHdContainer&&this._elBdContainer){this._elHdContainer.style.width=L;this._elBdContainer.style.width=L;this._syncScrollX();this._syncScrollOverhang();}}});this.setAttributeConfig("height",{value:null,validator:C.isString,method:function(L){if(this._elHdContainer&&this._elBdContainer){this._elBdContainer.style.height=L;this._syncScrollX();this._syncScrollY();this._syncScrollOverhang();}}});this.setAttributeConfig("COLOR_COLUMNFILLER",{value:"#F2F2F2",validator:C.isString,method:function(L){this._elHdContainer.style.backgroundColor=L;}});},_initDomElements:function(K){this._initContainerEl(K);if(this._elContainer&&this._elHdContainer&&this._elBdContainer){this._initTableEl();if(this._elHdTable&&this._elTable){this._initColgroupEl(this._elHdTable);this._initTheadEl(this._elHdTable,this._elTable);this._initTbodyEl(this._elTable);this._initMsgTbodyEl(this._elTable);}}if(!this._elContainer||!this._elTable||!this._elColgroup||!this._elThead||!this._elTbody||!this._elMsgTbody||!this._elHdTable||!this._elBdThead){return false;}else{return true;}},_destroyContainerEl:function(K){D.removeClass(K,G.CLASS_SCROLLABLE);H.superclass._destroyContainerEl.call(this,K);this._elHdContainer=null;this._elBdContainer=null;},_initContainerEl:function(L){H.superclass._initContainerEl.call(this,L);if(this._elContainer){L=this._elContainer;D.addClass(L,G.CLASS_SCROLLABLE);var K=document.createElement("div");K.style.width=this.get("width")||"";K.style.backgroundColor=this.get("COLOR_COLUMNFILLER");D.addClass(K,H.CLASS_HEADER);this._elHdContainer=K;L.appendChild(K);var M=document.createElement("div");M.style.width=this.get("width")||"";M.style.height=this.get("height")||"";D.addClass(M,H.CLASS_BODY);J.addListener(M,"scroll",this._onScroll,this);this._elBdContainer=M;L.appendChild(M);}},_initCaptionEl:function(K){},_destroyHdTableEl:function(){var K=this._elHdTable;if(K){J.purgeElement(K,true);K.parentNode.removeChild(K);this._elBdThead=null;}},_initTableEl:function(){if(this._elHdContainer){this._destroyHdTableEl();this._elHdTable=this._elHdContainer.appendChild(document.createElement("table"));}H.superclass._initTableEl.call(this,this._elBdContainer);},_initTheadEl:function(L,K){L=L||this._elHdTable;K=K||this._elTable;this._initBdTheadEl(K);H.superclass._initTheadEl.call(this,L);},_initThEl:function(L,K){H.superclass._initThEl.call(this,L,K);L.id=this.getId()+"-fixedth-"+K.getSanitizedKey();},_destroyBdTheadEl:function(){var K=this._elBdThead;if(K){var L=K.parentNode;J.purgeElement(K,true);L.removeChild(K);this._elBdThead=null;this._destroyColumnHelpers();}},_initBdTheadEl:function(S){if(S){this._destroyBdTheadEl();var O=S.insertBefore(document.createElement("thead"),S.firstChild);var U=this._oColumnSet,T=U.tree,N,K,R,P,M,L,Q;for(P=0,L=T.length;P<L;P++){K=O.appendChild(document.createElement("tr"));for(M=0,Q=T[P].length;M<Q;M++){R=T[P][M];N=K.appendChild(document.createElement("th"));this._initBdThEl(N,R,P,M);}}this._elBdThead=O;}},_initBdThEl:function(N,M){N.id=this.getId()+"-th-"+M.getSanitizedKey();N.rowSpan=M.getRowspan();N.colSpan=M.getColspan();if(M.abbr){N.abbr=M.abbr;}var L=M.getKey();var K=C.isValue(M.label)?M.label:L;N.innerHTML=K;},_initTbodyEl:function(K){H.superclass._initTbodyEl.call(this,K);K.style.marginTop="-"+this._elTbody.offsetTop+"px";},_focusEl:function(L){L=L||this._elTbody;var K=this;this._storeScrollPositions();
-setTimeout(function(){setTimeout(function(){try{L.focus();K._restoreScrollPositions();}catch(M){}},0);},0);},_runRenderChain:function(){this._storeScrollPositions();this._oChainRender.run();},_storeScrollPositions:function(){this._nScrollTop=this._elBdContainer.scrollTop;this._nScrollLeft=this._elBdContainer.scrollLeft;},_restoreScrollPositions:function(){if(this._nScrollTop){this._elBdContainer.scrollTop=this._nScrollTop;this._nScrollTop=null;}if(this._nScrollLeft){this._elBdContainer.scrollLeft=this._nScrollLeft;this._nScrollLeft=null;}},_validateColumnWidth:function(N,K){if(!N.width&&!N.hidden){var P=N.getThEl();if(N._calculatedWidth){this._setColumnWidth(N,"auto","visible");}if(P.offsetWidth!==K.offsetWidth){var M=(P.offsetWidth>K.offsetWidth)?N.getThLinerEl():K.firstChild;var L=Math.max(0,(M.offsetWidth-(parseInt(D.getStyle(M,"paddingLeft"),10)|0)-(parseInt(D.getStyle(M,"paddingRight"),10)|0)),N.minWidth);var O="visible";if((N.maxAutoWidth>0)&&(L>N.maxAutoWidth)){L=N.maxAutoWidth;O="hidden";}this._elTbody.style.display="none";this._setColumnWidth(N,L+"px",O);N._calculatedWidth=L;this._elTbody.style.display="";}}},validateColumnWidths:function(S){var U=this._oColumnSet.keys,W=U.length,L=this.getFirstTrEl();if(A.ie){this._setOverhangValue(1);}if(U&&L&&(L.childNodes.length===W)){var M=this.get("width");if(M){this._elHdContainer.style.width="";this._elBdContainer.style.width="";}this._elContainer.style.width="";if(S&&C.isNumber(S.getKeyIndex())){this._validateColumnWidth(S,L.childNodes[S.getKeyIndex()]);}else{var T,K=[],O,Q,R;for(Q=0;Q<W;Q++){S=U[Q];if(!S.width&&!S.hidden&&S._calculatedWidth){K[K.length]=S;}}this._elTbody.style.display="none";for(Q=0,R=K.length;Q<R;Q++){this._setColumnWidth(K[Q],"auto","visible");}this._elTbody.style.display="";K=[];for(Q=0;Q<W;Q++){S=U[Q];T=L.childNodes[Q];if(!S.width&&!S.hidden){var N=S.getThEl();if(N.offsetWidth!==T.offsetWidth){var V=(N.offsetWidth>T.offsetWidth)?S.getThLinerEl():T.firstChild;var P=Math.max(0,(V.offsetWidth-(parseInt(D.getStyle(V,"paddingLeft"),10)|0)-(parseInt(D.getStyle(V,"paddingRight"),10)|0)),S.minWidth);var X="visible";if((S.maxAutoWidth>0)&&(P>S.maxAutoWidth)){P=S.maxAutoWidth;X="hidden";}K[K.length]=[S,P,X];}}}this._elTbody.style.display="none";for(Q=0,R=K.length;Q<R;Q++){O=K[Q];this._setColumnWidth(O[0],O[1]+"px",O[2]);O[0]._calculatedWidth=O[1];}this._elTbody.style.display="";}if(M){this._elHdContainer.style.width=M;this._elBdContainer.style.width=M;}}this._syncScroll();this._restoreScrollPositions();},_syncScroll:function(){this._syncScrollX();this._syncScrollY();this._syncScrollOverhang();if(A.opera){this._elHdContainer.scrollLeft=this._elBdContainer.scrollLeft;if(!this.get("width")){document.body.style+="";}}},_syncScrollY:function(){var K=this._elTbody,L=this._elBdContainer;if(!this.get("width")){this._elContainer.style.width=(L.scrollHeight>L.clientHeight)?(K.parentNode.clientWidth+19)+"px":(K.parentNode.clientWidth+2)+"px";}},_syncScrollX:function(){var K=this._elTbody,L=this._elBdContainer;if(!this.get("height")&&(A.ie)){L.style.height=(L.scrollWidth>L.offsetWidth)?(K.parentNode.offsetHeight+18)+"px":K.parentNode.offsetHeight+"px";}if(this._elTbody.rows.length===0){this._elMsgTbody.parentNode.style.width=this.getTheadEl().parentNode.offsetWidth+"px";}else{this._elMsgTbody.parentNode.style.width="";}},_syncScrollOverhang:function(){var L=this._elBdContainer,K=1;if((L.scrollHeight>L.clientHeight)&&(L.scrollWidth>L.clientWidth)){K=18;}this._setOverhangValue(K);},_setOverhangValue:function(N){var P=this._oColumnSet.headers[this._oColumnSet.headers.length-1]||[],L=P.length,K=this._sId+"-fixedth-",O=N+"px solid "+this.get("COLOR_COLUMNFILLER");this._elThead.style.display="none";for(var M=0;M<L;M++){D.get(K+P[M]).style.borderRight=O;}this._elThead.style.display="";},getHdContainerEl:function(){return this._elHdContainer;},getBdContainerEl:function(){return this._elBdContainer;},getHdTableEl:function(){return this._elHdTable;},getBdTableEl:function(){return this._elTable;},disable:function(){var K=this._elMask;K.style.width=this._elBdContainer.offsetWidth+"px";K.style.height=this._elHdContainer.offsetHeight+this._elBdContainer.offsetHeight+"px";K.style.display="";this.fireEvent("disableEvent");},removeColumn:function(M){var K=this._elHdContainer.scrollLeft;var L=this._elBdContainer.scrollLeft;M=H.superclass.removeColumn.call(this,M);this._elHdContainer.scrollLeft=K;this._elBdContainer.scrollLeft=L;return M;},insertColumn:function(N,L){var K=this._elHdContainer.scrollLeft;var M=this._elBdContainer.scrollLeft;var O=H.superclass.insertColumn.call(this,N,L);this._elHdContainer.scrollLeft=K;this._elBdContainer.scrollLeft=M;return O;},reorderColumn:function(N,L){var K=this._elHdContainer.scrollLeft;var M=this._elBdContainer.scrollLeft;var O=H.superclass.reorderColumn.call(this,N,L);this._elHdContainer.scrollLeft=K;this._elBdContainer.scrollLeft=M;return O;},setColumnWidth:function(L,K){L=this.getColumn(L);if(L){if(C.isNumber(K)){K=(K>L.minWidth)?K:L.minWidth;L.width=K;this._setColumnWidth(L,K+"px");this._syncScroll();this.fireEvent("columnSetWidthEvent",{column:L,width:K});return ;}else{if(K===null){L.width=K;this._setColumnWidth(L,"auto");this.validateColumnWidths(L);this.fireEvent("columnUnsetWidthEvent",{column:L});return ;}}}},showTableMessage:function(O,K){var P=this._elMsgTd;if(C.isString(O)){P.firstChild.innerHTML=O;}if(C.isString(K)){D.addClass(P.firstChild,K);}var N=this.getTheadEl();var L=N.parentNode;var M=L.offsetWidth;this._elMsgTbody.parentNode.style.width=this.getTheadEl().parentNode.offsetWidth+"px";this._elMsgTbody.style.display="";this.fireEvent("tableMsgShowEvent",{html:O,className:K});},_onColumnChange:function(K){var L=(K.column)?K.column:(K.editor)?K.editor.column:null;this._storeScrollPositions();this.validateColumnWidths(L);},_onScroll:function(M,L){L._elHdContainer.scrollLeft=L._elBdContainer.scrollLeft;if(L._oCellEditor&&L._oCellEditor.isActive){L.fireEvent("editorBlurEvent",{editor:L._oCellEditor});L.cancelCellEditor();
-}var N=J.getTarget(M);var K=N.nodeName.toLowerCase();L.fireEvent("tableScrollEvent",{event:M,target:N});},_onTheadKeydown:function(N,L){if(J.getCharCode(N)===9){setTimeout(function(){if((L instanceof H)&&L._sId){L._elBdContainer.scrollLeft=L._elHdContainer.scrollLeft;}},0);}var O=J.getTarget(N);var K=O.nodeName.toLowerCase();var M=true;while(O&&(K!="table")){switch(K){case"body":return ;case"input":case"textarea":break;case"thead":M=L.fireEvent("theadKeyEvent",{target:O,event:N});break;default:break;}if(M===false){return ;}else{O=O.parentNode;if(O){K=O.nodeName.toLowerCase();}}}L.fireEvent("tableKeyEvent",{target:(O||L._elContainer),event:N});}});})();(function(){var C=YAHOO.lang,F=YAHOO.util,E=YAHOO.widget,B=YAHOO.env.ua,D=F.Dom,I=F.Event,H=E.DataTable;E.BaseCellEditor=function(K,J){this._sId=this._sId||"yui-ceditor"+YAHOO.widget.BaseCellEditor._nCount++;this._sType=K;this._initConfigs(J);this._initEvents();this.render();};var A=E.BaseCellEditor;C.augmentObject(A,{_nCount:0,CLASS_CELLEDITOR:"yui-ceditor"});A.prototype={_sId:null,_sType:null,_oDataTable:null,_oColumn:null,_oRecord:null,_elTd:null,_elContainer:null,_elCancelBtn:null,_elSaveBtn:null,_initConfigs:function(K){if(K&&YAHOO.lang.isObject(K)){for(var J in K){if(J){this[J]=K[J];}}}},_initEvents:function(){this.createEvent("showEvent");this.createEvent("keydownEvent");this.createEvent("invalidDataEvent");this.createEvent("revertEvent");this.createEvent("saveEvent");this.createEvent("cancelEvent");this.createEvent("blurEvent");this.createEvent("blockEvent");this.createEvent("unblockEvent");},asyncSubmitter:null,value:null,defaultValue:null,validator:null,isActive:false,LABEL_SAVE:"Save",LABEL_CANCEL:"Cancel",disableBtns:false,toString:function(){return"CellEditor instance "+this._sId;},getId:function(){return this._sId;},getDataTable:function(){return this._oDataTable;},getColumn:function(){return this._oColumn;},getRecord:function(){return this._oRecord;},getTdEl:function(){return this._elTd;},getContainerEl:function(){return this._elContainer;},destroy:function(){this.unsubscribeAll();var K=this.getColumn();if(K){this.getColumn().editor=null;}var J=this.getContainerEl();I.purgeElement(J,true);J.parentNode.removeChild(J);},render:function(){var J=document.createElement("div");J.id=this.getId()+"-container";J.style.display="none";J.tabIndex=0;J.className=H.CLASS_EDITOR;document.body.insertBefore(J,document.body.firstChild);this._elContainer=J;I.addListener(J,"keydown",function(L,K){if((L.keyCode==27)){K.cancel();}K.fireEvent("keydownEvent",{editor:this,event:L});},this);this.renderForm();if(!this.disableBtns){this.renderBtns();}this.doAfterRender();},renderBtns:function(){var L=this.getContainerEl().appendChild(document.createElement("div"));L.className=H.CLASS_BUTTON;var K=L.appendChild(document.createElement("button"));K.className=H.CLASS_DEFAULT;K.innerHTML=this.LABEL_SAVE;I.addListener(K,"click",function(M){this.save();},this,true);this._elSaveBtn=K;var J=L.appendChild(document.createElement("button"));J.innerHTML=this.LABEL_CANCEL;I.addListener(J,"click",function(M){this.cancel();},this,true);this._elCancelBtn=J;},attach:function(N,L){if(N instanceof YAHOO.widget.DataTable){this._oDataTable=N;L=N.getTdEl(L);if(L){this._elTd=L;var M=N.getColumn(L);if(M){this._oColumn=M;var J=N.getRecord(L);if(J){this._oRecord=J;var K=J.getData(this.getColumn().getKey());this.value=(K!==undefined)?K:this.defaultValue;return true;}}}}return false;},move:function(){var M=this.getContainerEl(),L=this.getTdEl(),J=D.getX(L),N=D.getY(L);if(isNaN(J)||isNaN(N)){var K=this.getDataTable().getTbodyEl();J=L.offsetLeft+D.getX(K.parentNode)-K.scrollLeft;N=L.offsetTop+D.getY(K.parentNode)-K.scrollTop+this.getDataTable().getTheadEl().offsetHeight;}M.style.left=J+"px";M.style.top=N+"px";},show:function(){this.resetForm();this.isActive=true;this.getContainerEl().style.display="";this.focus();this.fireEvent("showEvent",{editor:this});},block:function(){this.fireEvent("blockEvent",{editor:this});},unblock:function(){this.fireEvent("unblockEvent",{editor:this});},save:function(){var K=this.getInputValue();var L=K;if(this.validator){L=this.validator.call(this.getDataTable(),K,this.value,this);if(L===undefined){this.resetForm();this.fireEvent("invalidDataEvent",{editor:this,oldData:this.value,newData:K});return ;}}var M=this;var J=function(O,N){var P=YAHOO.widget.DataTable._cloneObject(M.value);if(O){M.value=N;M.getDataTable().updateCell(M.getRecord(),M.getColumn(),N);M.getContainerEl().style.display="none";M.isActive=false;M.getDataTable()._oCellEditor=null;M.fireEvent("saveEvent",{editor:M,oldData:P,newData:M.value});}else{M.resetForm();M.fireEvent("revertEvent",{editor:M,oldData:P,newData:N});}M.unblock();};this.block();if(C.isFunction(this.asyncSubmitter)){this.asyncSubmitter.call(this,J,L);}else{J(true,L);}},cancel:function(){if(this.isActive){this.getContainerEl().style.display="none";this.isActive=false;this.getDataTable._oCellEditor=null;this.fireEvent("cancelEvent",{editor:this});}else{}},renderForm:function(){},doAfterRender:function(){},handleDisabledBtns:function(){},resetForm:function(){},focus:function(){},getInputValue:function(){}};C.augmentProto(A,F.EventProvider);E.CheckboxCellEditor=function(J){this._sId="yui-checkboxceditor"+YAHOO.widget.BaseCellEditor._nCount++;E.CheckboxCellEditor.superclass.constructor.call(this,"checkbox",J);};C.extend(E.CheckboxCellEditor,A,{checkboxOptions:null,checkboxes:null,value:null,renderForm:function(){if(C.isArray(this.checkboxOptions)){var M,N,P,K,L,J;for(L=0,J=this.checkboxOptions.length;L<J;L++){M=this.checkboxOptions[L];N=C.isValue(M.value)?M.value:M;P=this.getId()+"-chk"+L;this.getContainerEl().innerHTML+='<input type="checkbox"'+' id="'+P+'"'+' value="'+N+'" />';K=this.getContainerEl().appendChild(document.createElement("label"));K.htmlFor=P;K.innerHTML=C.isValue(M.label)?M.label:M;}var O=[];for(L=0;L<J;L++){O[O.length]=this.getContainerEl().childNodes[L*2];}this.checkboxes=O;if(this.disableBtns){this.handleDisabledBtns();
-}}else{}},handleDisabledBtns:function(){I.addListener(this.getContainerEl(),"click",function(J){if(I.getTarget(J).tagName.toLowerCase()==="input"){this.save();}},this,true);},resetForm:function(){var N=C.isArray(this.value)?this.value:[this.value];for(var M=0,L=this.checkboxes.length;M<L;M++){this.checkboxes[M].checked=false;for(var K=0,J=N.length;K<J;K++){if(this.checkboxes[M].value===N[K]){this.checkboxes[M].checked=true;}}}},focus:function(){this.checkboxes[0].focus();},getInputValue:function(){var J=[];for(var L=0,K=this.checkboxes.length;L<K;L++){if(this.checkboxes[L].checked){J[J.length]=this.checkboxes[L].value;}}return J;}});C.augmentObject(E.CheckboxCellEditor,A);E.DateCellEditor=function(J){this._sId="yui-dateceditor"+YAHOO.widget.BaseCellEditor._nCount++;E.DateCellEditor.superclass.constructor.call(this,"date",J);};C.extend(E.DateCellEditor,A,{calendar:null,defaultValue:new Date(),renderForm:function(){if(YAHOO.widget.Calendar){var K=this.getContainerEl().appendChild(document.createElement("div"));K.id=this.getId()+"-dateContainer";var L=new YAHOO.widget.Calendar(this.getId()+"-date",K.id);L.render();K.style.cssFloat="none";if(B.ie){var J=this.getContainerEl().appendChild(document.createElement("br"));J.style.clear="both";}this.calendar=L;if(this.disableBtns){this.handleDisabledBtns();}}else{}},handleDisabledBtns:function(){this.calendar.selectEvent.subscribe(function(J){this.save();},this,true);},resetForm:function(){var K=this.value;var J=(K.getMonth()+1)+"/"+K.getDate()+"/"+K.getFullYear();this.calendar.cfg.setProperty("selected",J,false);this.calendar.render();},focus:function(){},getInputValue:function(){return this.calendar.getSelectedDates()[0];}});C.augmentObject(E.DateCellEditor,A);E.DropdownCellEditor=function(J){this._sId="yui-dropdownceditor"+YAHOO.widget.BaseCellEditor._nCount++;E.DropdownCellEditor.superclass.constructor.call(this,"dropdown",J);};C.extend(E.DropdownCellEditor,A,{dropdownOptions:null,dropdown:null,renderForm:function(){var M=this.getContainerEl().appendChild(document.createElement("select"));M.style.zoom=1;this.dropdown=M;if(C.isArray(this.dropdownOptions)){var N,L;for(var K=0,J=this.dropdownOptions.length;K<J;K++){N=this.dropdownOptions[K];L=document.createElement("option");L.value=(C.isValue(N.value))?N.value:N;L.innerHTML=(C.isValue(N.label))?N.label:N;L=M.appendChild(L);}if(this.disableBtns){this.handleDisabledBtns();}}},handleDisabledBtns:function(){I.addListener(this.dropdown,"change",function(J){this.save();},this,true);},resetForm:function(){for(var K=0,J=this.dropdown.options.length;K<J;K++){if(this.value===this.dropdown.options[K].value){this.dropdown.options[K].selected=true;}}},focus:function(){this.getDataTable()._focusEl(this.dropdown);},getInputValue:function(){return this.dropdown.options[this.dropdown.options.selectedIndex].value;}});C.augmentObject(E.DropdownCellEditor,A);E.RadioCellEditor=function(J){this._sId="yui-radioceditor"+YAHOO.widget.BaseCellEditor._nCount++;E.RadioCellEditor.superclass.constructor.call(this,"radio",J);};C.extend(E.RadioCellEditor,A,{radios:null,radioOptions:null,renderForm:function(){if(C.isArray(this.radioOptions)){var J,K,Q,N;for(var M=0,O=this.radioOptions.length;M<O;M++){J=this.radioOptions[M];K=C.isValue(J.value)?J.value:J;Q=this.getId()+"-radio"+M;this.getContainerEl().innerHTML+='<input type="radio"'+' name="'+this.getId()+'"'+' value="'+K+'"'+' id="'+Q+'" />';N=this.getContainerEl().appendChild(document.createElement("label"));N.htmlFor=Q;N.innerHTML=(C.isValue(J.label))?J.label:J;}var P=[],R;for(var L=0;L<O;L++){R=this.getContainerEl().childNodes[L*2];P[P.length]=R;}this.radios=P;if(this.disableBtns){this.handleDisabledBtns();}}else{}},handleDisabledBtns:function(){I.addListener(this.getContainerEl(),"click",function(J){if(I.getTarget(J).tagName.toLowerCase()==="input"){this.save();}},this,true);},resetForm:function(){for(var L=0,K=this.radios.length;L<K;L++){var J=this.radios[L];if(this.value===J.value){J.checked=true;return ;}}},focus:function(){for(var K=0,J=this.radios.length;K<J;K++){if(this.radios[K].checked){this.radios[K].focus();return ;}}},getInputValue:function(){for(var K=0,J=this.radios.length;K<J;K++){if(this.radios[K].checked){return this.radios[K].value;}}}});C.augmentObject(E.RadioCellEditor,A);E.TextareaCellEditor=function(J){this._sId="yui-textareaceditor"+YAHOO.widget.BaseCellEditor._nCount++;E.TextareaCellEditor.superclass.constructor.call(this,"textarea",J);};C.extend(E.TextareaCellEditor,A,{textarea:null,renderForm:function(){var J=this.getContainerEl().appendChild(document.createElement("textarea"));this.textarea=J;if(this.disableBtns){this.handleDisabledBtns();}},handleDisabledBtns:function(){I.addListener(this.textarea,"blur",function(J){this.save();},this,true);},move:function(){this.textarea.style.width=this.getTdEl().offsetWidth+"px";this.textarea.style.height="3em";YAHOO.widget.TextareaCellEditor.superclass.move.call(this);},resetForm:function(){this.textarea.value=this.value;},focus:function(){this.textarea.focus();this.textarea.select();},getInputValue:function(){return this.textarea.value;}});C.augmentObject(E.TextareaCellEditor,A);E.TextboxCellEditor=function(J){this._sId="yui-textboxceditor"+YAHOO.widget.BaseCellEditor._nCount++;E.TextboxCellEditor.superclass.constructor.call(this,"textbox",J);};C.extend(E.TextboxCellEditor,A,{textbox:null,renderForm:function(){var J;if(B.webkit>420){J=this.getContainerEl().appendChild(document.createElement("form")).appendChild(document.createElement("input"));}else{J=this.getContainerEl().appendChild(document.createElement("input"));}J.type="text";this.textbox=J;I.addListener(J,"keypress",function(K){if((K.keyCode===13)){YAHOO.util.Event.preventDefault(K);this.save();}},this,true);if(this.disableBtns){this.handleDisabledBtns();}},move:function(){this.textbox.style.width=this.getTdEl().offsetWidth+"px";E.TextboxCellEditor.superclass.move.call(this);},resetForm:function(){this.textbox.value=C.isValue(this.value)?this.value.toString():"";
-},focus:function(){this.textbox.focus();this.textbox.select();},getInputValue:function(){return this.textbox.value;}});C.augmentObject(E.TextboxCellEditor,A);H.Editors={checkbox:E.CheckboxCellEditor,"date":E.DateCellEditor,dropdown:E.DropdownCellEditor,radio:E.RadioCellEditor,textarea:E.TextareaCellEditor,textbox:E.TextboxCellEditor};E.CellEditor=function(K,J){if(K&&H.Editors[K]){C.augmentObject(A,H.Editors[K]);return new H.Editors[K](J);}else{return new A(null,J);}};var G=E.CellEditor;C.augmentObject(G,A);})();YAHOO.register("datatable",YAHOO.widget.DataTable,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/datatable/datatable.js b/eclipse.org-common/yui/2.6.0/build/datatable/datatable.js
deleted file mode 100644
index f177251..0000000
--- a/eclipse.org-common/yui/2.6.0/build/datatable/datatable.js
+++ /dev/null
@@ -1,16725 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * Mechanism to execute a series of callbacks in a non-blocking queue.  Each callback is executed via setTimout unless configured with a negative timeout, in which case it is run in blocking mode in the same execution thread as the previous callback.  Callbacks can be function references or object literals with the following keys:
- * <ul>
- *    <li><code>method</code> - {Function} REQUIRED the callback function.</li>
- *    <li><code>scope</code> - {Object} the scope from which to execute the callback.  Default is the global window scope.</li>
- *    <li><code>argument</code> - {Array} parameters to be passed to method as individual arguments.</li>
- *    <li><code>timeout</code> - {number} millisecond delay to wait after previous callback completion before executing this callback.  Negative values cause immediate blocking execution.  Default 0.</li>
- *    <li><code>until</code> - {Function} boolean function executed before each iteration.  Return true to indicate completion and proceed to the next callback.</li>
- *    <li><code>iterations</code> - {Number} number of times to execute the callback before proceeding to the next callback in the chain. Incompatible with <code>until</code>.</li>
- * </ul>
- *
- * @namespace YAHOO.util
- * @class Chain
- * @constructor
- * @param callback* {Function|Object} Any number of callbacks to initialize the queue
-*/
-YAHOO.util.Chain = function () {
-    /**
-     * The callback queue
-     * @property q
-     * @type {Array}
-     * @private
-     */
-    this.q = [].slice.call(arguments);
-
-    /**
-     * Event fired when the callback queue is emptied via execution (not via
-     * a call to chain.stop().
-     * @event end
-     */
-    this.createEvent('end');
-};
-
-YAHOO.util.Chain.prototype = {
-    /**
-     * Timeout id used to pause or stop execution and indicate the execution state of the Chain.  0 indicates paused or stopped, -1 indicates blocking execution, and any positive number indicates non-blocking execution.
-     * @property id
-     * @type {number}
-     * @private
-     */
-    id   : 0,
-
-    /**
-     * Begin executing the chain, or resume execution from the last paused position.
-     * @method run
-     * @return {Chain} the Chain instance
-     */
-    run : function () {
-        // Grab the first callback in the queue
-        var c  = this.q[0],
-            fn;
-
-        // If there is no callback in the queue or the Chain is currently
-        // in an execution mode, return
-        if (!c) {
-            this.fireEvent('end');
-            return this;
-        } else if (this.id) {
-            return this;
-        }
-
-        fn = c.method || c;
-
-        if (typeof fn === 'function') {
-            var o    = c.scope || {},
-                args = c.argument || [],
-                ms   = c.timeout || 0,
-                me   = this;
-                
-            if (!(args instanceof Array)) {
-                args = [args];
-            }
-
-            // Execute immediately if the callback timeout is negative.
-            if (ms < 0) {
-                this.id = ms;
-                if (c.until) {
-                    for (;!c.until();) {
-                        // Execute the callback from scope, with argument
-                        fn.apply(o,args);
-                    }
-                } else if (c.iterations) {
-                    for (;c.iterations-- > 0;) {
-                        fn.apply(o,args);
-                    }
-                } else {
-                    fn.apply(o,args);
-                }
-                this.q.shift();
-                this.id = 0;
-                return this.run();
-            } else {
-                // If the until condition is set, check if we're done
-                if (c.until) {
-                    if (c.until()) {
-                        // Shift this callback from the queue and execute the next
-                        // callback
-                        this.q.shift();
-                        return this.run();
-                    }
-                // Otherwise if either iterations is not set or we're
-                // executing the last iteration, shift callback from the queue
-                } else if (!c.iterations || !--c.iterations) {
-                    this.q.shift();
-                }
-
-                // Otherwise set to execute after the configured timeout
-                this.id = setTimeout(function () {
-                    // Execute the callback from scope, with argument
-                    fn.apply(o,args);
-                    // Check if the Chain was not paused from inside the callback
-                    if (me.id) {
-                        // Indicate ready to run state
-                        me.id = 0;
-                        // Start the fun all over again
-                        me.run();
-                    }
-                },ms);
-            }
-        }
-
-        return this;
-    },
-    
-    /**
-     * Add a callback to the end of the queue
-     * @method add
-     * @param c {Function|Object} the callback function ref or object literal
-     * @return {Chain} the Chain instance
-     */
-    add  : function (c) {
-        this.q.push(c);
-        return this;
-    },
-
-    /**
-     * Pause the execution of the Chain after the current execution of the
-     * current callback completes.  If called interstitially, clears the
-     * timeout for the pending callback. Paused Chains can be restarted with
-     * chain.run()
-     * @method pause
-     * @return {Chain} the Chain instance
-     */
-    pause: function () {
-        clearTimeout(this.id);
-        this.id = 0;
-        return this;
-    },
-
-    /**
-     * Stop and clear the Chain's queue after the current execution of the
-     * current callback completes.
-     * @method stop
-     * @return {Chain} the Chain instance
-     */
-    stop : function () { 
-        this.pause();
-        this.q = [];
-        return this;
-    }
-};
-YAHOO.lang.augmentProto(YAHOO.util.Chain,YAHOO.util.EventProvider);
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The ColumnSet class defines and manages a DataTable's Columns,
- * including nested hierarchies and access to individual Column instances.
- *
- * @namespace YAHOO.widget
- * @class ColumnSet
- * @uses YAHOO.util.EventProvider
- * @constructor
- * @param aDefinitions {Object[]} Array of object literals that define cells in
- * the THEAD.
- */
-YAHOO.widget.ColumnSet = function(aDefinitions) {
-    this._sId = "yui-cs" + YAHOO.widget.ColumnSet._nCount;
-
-    // First clone the defs
-    aDefinitions = YAHOO.widget.DataTable._cloneObject(aDefinitions);
-    this._init(aDefinitions);
-
-    YAHOO.widget.ColumnSet._nCount++;
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Internal class variable to index multiple ColumnSet instances.
- *
- * @property ColumnSet._nCount
- * @type Number
- * @private
- * @static
- */
-YAHOO.widget.ColumnSet._nCount = 0;
-
-YAHOO.widget.ColumnSet.prototype = {
-    /**
-     * Unique instance name.
-     *
-     * @property _sId
-     * @type String
-     * @private
-     */
-    _sId : null,
-
-    /**
-     * Array of object literal Column definitions passed to the constructor.
-     *
-     * @property _aDefinitions
-     * @type Object[]
-     * @private
-     */
-    _aDefinitions : null,
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public member variables
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Top-down tree representation of Column hierarchy.
-     *
-     * @property tree
-     * @type YAHOO.widget.Column[]
-     */
-    tree : null,
-
-    /**
-     * Flattened representation of all Columns.
-     *
-     * @property flat
-     * @type YAHOO.widget.Column[]
-     * @default []
-     */
-    flat : null,
-
-    /**
-     * Array of Columns that map one-to-one to a table column.
-     *
-     * @property keys
-     * @type YAHOO.widget.Column[]
-     * @default []
-     */
-    keys : null,
-
-    /**
-     * ID index of nested parent hierarchies for HEADERS accessibility attribute.
-     *
-     * @property headers
-     * @type String[]
-     * @default []
-     */
-    headers : null,
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Initializes ColumnSet instance with data from Column definitions.
-     *
-     * @method _init
-     * @param aDefinitions {Object[]} Array of object literals that define cells in
-     * the THEAD .
-     * @private
-     */
-
-    _init : function(aDefinitions) {        
-        // DOM tree representation of all Columns
-        var tree = [];
-        // Flat representation of all Columns
-        var flat = [];
-        // Flat representation of only Columns that are meant to display data
-        var keys = [];
-        // Array of HEADERS attribute values for all keys in the "keys" array
-        var headers = [];
-
-        // Tracks current node list depth being tracked
-        var nodeDepth = -1;
-
-        // Internal recursive function to define Column instances
-        var parseColumns = function(nodeList, parent) {
-            // One level down
-            nodeDepth++;
-
-            // Create corresponding tree node if not already there for this depth
-            if(!tree[nodeDepth]) {
-                tree[nodeDepth] = [];
-            }
-
-
-            // Parse each node at this depth for attributes and any children
-            for(var j=0; j<nodeList.length; j++) {
-                var currentNode = nodeList[j];
-
-                // Instantiate a new Column for each node
-                var oColumn = new YAHOO.widget.Column(currentNode);
-                
-                // Cross-reference Column ID back to the original object literal definition
-                currentNode.yuiColumnId = oColumn._sId;
-                
-                // Add the new Column to the flat list
-                flat.push(oColumn);
-
-                // Assign its parent as an attribute, if applicable
-                if(parent) {
-                    oColumn._oParent = parent;
-                }
-
-                // The Column has descendants
-                if(YAHOO.lang.isArray(currentNode.children)) {
-                    oColumn.children = currentNode.children;
-
-                    // Determine COLSPAN value for this Column
-                    var terminalChildNodes = 0;
-                    var countTerminalChildNodes = function(ancestor) {
-                        var descendants = ancestor.children;
-                        // Drill down each branch and count terminal nodes
-                        for(var k=0; k<descendants.length; k++) {
-                            // Keep drilling down
-                            if(YAHOO.lang.isArray(descendants[k].children)) {
-                                countTerminalChildNodes(descendants[k]);
-                            }
-                            // Reached branch terminus
-                            else {
-                                terminalChildNodes++;
-                            }
-                        }
-                    };
-                    countTerminalChildNodes(currentNode);
-                    oColumn._nColspan = terminalChildNodes;
-
-                    // Cascade certain properties to children if not defined on their own
-                    var currentChildren = currentNode.children;
-                    for(var k=0; k<currentChildren.length; k++) {
-                        var child = currentChildren[k];
-                        if(oColumn.className && (child.className === undefined)) {
-                            child.className = oColumn.className;
-                        }
-                        if(oColumn.editor && (child.editor === undefined)) {
-                            child.editor = oColumn.editor;
-                        }
-                        //TODO: Deprecated
-                        if(oColumn.editorOptions && (child.editorOptions === undefined)) {
-                            child.editorOptions = oColumn.editorOptions;
-                        }
-                        if(oColumn.formatter && (child.formatter === undefined)) {
-                            child.formatter = oColumn.formatter;
-                        }
-                        if(oColumn.resizeable && (child.resizeable === undefined)) {
-                            child.resizeable = oColumn.resizeable;
-                        }
-                        if(oColumn.sortable && (child.sortable === undefined)) {
-                            child.sortable = oColumn.sortable;
-                        }
-                        if(oColumn.hidden) {
-                            child.hidden = true;
-                        }
-                        if(oColumn.width && (child.width === undefined)) {
-                            child.width = oColumn.width;
-                        }
-                        if(oColumn.minWidth && (child.minWidth === undefined)) {
-                            child.minWidth = oColumn.minWidth;
-                        }
-                        if(oColumn.maxAutoWidth && (child.maxAutoWidth === undefined)) {
-                            child.maxAutoWidth = oColumn.maxAutoWidth;
-                        }
-                        // Backward compatibility
-                        if(oColumn.type && (child.type === undefined)) {
-                            child.type = oColumn.type;
-                        }
-                        if(oColumn.type && !oColumn.formatter) {
-                            oColumn.formatter = oColumn.type;
-                        }
-                        if(oColumn.text && !YAHOO.lang.isValue(oColumn.label)) {
-                            oColumn.label = oColumn.text;
-                        }
-                        if(oColumn.parser) {
-                        }
-                        if(oColumn.sortOptions && ((oColumn.sortOptions.ascFunction) ||
-                                (oColumn.sortOptions.descFunction))) {
-                        }
-                    }
-
-                    // The children themselves must also be parsed for Column instances
-                    if(!tree[nodeDepth+1]) {
-                        tree[nodeDepth+1] = [];
-                    }
-                    parseColumns(currentChildren, oColumn);
-                }
-                // This Column does not have any children
-                else {
-                    oColumn._nKeyIndex = keys.length;
-                    oColumn._nColspan = 1;
-                    keys.push(oColumn);
-                }
-
-                // Add the Column to the top-down tree
-                tree[nodeDepth].push(oColumn);
-            }
-            nodeDepth--;
-        };
-
-        // Parse out Column instances from the array of object literals
-        if(YAHOO.lang.isArray(aDefinitions)) {
-            parseColumns(aDefinitions);
-
-            // Store the array
-            this._aDefinitions = aDefinitions;
-        }
-        else {
-            return null;
-        }
-
-        var i;
-
-        // Determine ROWSPAN value for each Column in the tree
-        var parseTreeForRowspan = function(tree) {
-            var maxRowDepth = 1;
-            var currentRow;
-            var currentColumn;
-
-            // Calculate the max depth of descendants for this row
-            var countMaxRowDepth = function(row, tmpRowDepth) {
-                tmpRowDepth = tmpRowDepth || 1;
-
-                for(var n=0; n<row.length; n++) {
-                    var col = row[n];
-                    // Column has children, so keep counting
-                    if(YAHOO.lang.isArray(col.children)) {
-                        tmpRowDepth++;
-                        countMaxRowDepth(col.children, tmpRowDepth);
-                        tmpRowDepth--;
-                    }
-                    // No children, is it the max depth?
-                    else {
-                        if(tmpRowDepth > maxRowDepth) {
-                            maxRowDepth = tmpRowDepth;
-                        }
-                    }
-
-                }
-            };
-
-            // Count max row depth for each row
-            for(var m=0; m<tree.length; m++) {
-                currentRow = tree[m];
-                countMaxRowDepth(currentRow);
-
-                // Assign the right ROWSPAN values to each Column in the row
-                for(var p=0; p<currentRow.length; p++) {
-                    currentColumn = currentRow[p];
-                    if(!YAHOO.lang.isArray(currentColumn.children)) {
-                        currentColumn._nRowspan = maxRowDepth;
-                    }
-                    else {
-                        currentColumn._nRowspan = 1;
-                    }
-                }
-
-                // Reset counter for next row
-                maxRowDepth = 1;
-            }
-        };
-        parseTreeForRowspan(tree);
-
-        // Store tree index values
-        for(i=0; i<tree[0].length; i++) {
-            tree[0][i]._nTreeIndex = i;
-        }
-
-        // Store header relationships in an array for HEADERS attribute
-        var recurseAncestorsForHeaders = function(i, oColumn) {
-            headers[i].push(oColumn.getSanitizedKey());
-            if(oColumn._oParent) {
-                recurseAncestorsForHeaders(i, oColumn._oParent);
-            }
-        };
-        for(i=0; i<keys.length; i++) {
-            headers[i] = [];
-            recurseAncestorsForHeaders(i, keys[i]);
-            headers[i] = headers[i].reverse();
-        }
-
-        // Save to the ColumnSet instance
-        this.tree = tree;
-        this.flat = flat;
-        this.keys = keys;
-        this.headers = headers;
-    },
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Returns unique name of the ColumnSet instance.
-     *
-     * @method getId
-     * @return {String} Unique name of the ColumnSet instance.
-     */
-
-    getId : function() {
-        return this._sId;
-    },
-
-    /**
-     * ColumnSet instance name, for logging.
-     *
-     * @method toString
-     * @return {String} Unique name of the ColumnSet instance.
-     */
-
-    toString : function() {
-        return "ColumnSet instance " + this._sId;
-    },
-
-    /**
-     * Public accessor to the definitions array.
-     *
-     * @method getDefinitions
-     * @return {Object[]} Array of object literal Column definitions.
-     */
-
-    getDefinitions : function() {
-        var aDefinitions = this._aDefinitions;
-        
-        // Internal recursive function to define Column instances
-        var parseColumns = function(nodeList, oSelf) {
-            // Parse each node at this depth for attributes and any children
-            for(var j=0; j<nodeList.length; j++) {
-                var currentNode = nodeList[j];
-                
-                // Get the Column for each node
-                var oColumn = oSelf.getColumnById(currentNode.yuiColumnId);
-                
-                if(oColumn) {    
-                    // Update the current values
-                    var oDefinition = oColumn.getDefinition();
-                    for(var name in oDefinition) {
-                        if(YAHOO.lang.hasOwnProperty(oDefinition, name)) {
-                            currentNode[name] = oDefinition[name];
-                        }
-                    }
-                }
-                            
-                // The Column has descendants
-                if(YAHOO.lang.isArray(currentNode.children)) {
-                    // The children themselves must also be parsed for Column instances
-                    parseColumns(currentNode.children, oSelf);
-                }
-            }
-        };
-
-        parseColumns(aDefinitions, this);
-        this._aDefinitions = aDefinitions;
-        return aDefinitions;
-    },
-
-    /**
-     * Returns Column instance with given ID.
-     *
-     * @method getColumnById
-     * @param column {String} Column ID.
-     * @return {YAHOO.widget.Column} Column instance.
-     */
-
-    getColumnById : function(column) {
-        if(YAHOO.lang.isString(column)) {
-            var allColumns = this.flat;
-            for(var i=allColumns.length-1; i>-1; i--) {
-                if(allColumns[i]._sId === column) {
-                    return allColumns[i];
-                }
-            }
-        }
-        return null;
-    },
-
-    /**
-     * Returns Column instance with given key or ColumnSet key index.
-     *
-     * @method getColumn
-     * @param column {String | Number} Column key or ColumnSet key index.
-     * @return {YAHOO.widget.Column} Column instance.
-     */
-
-    getColumn : function(column) {
-        if(YAHOO.lang.isNumber(column) && this.keys[column]) {
-            return this.keys[column];
-        }
-        else if(YAHOO.lang.isString(column)) {
-            var allColumns = this.flat;
-            var aColumns = [];
-            for(var i=0; i<allColumns.length; i++) {
-                if(allColumns[i].key === column) {
-                    aColumns.push(allColumns[i]);
-                }
-            }
-            if(aColumns.length === 1) {
-                return aColumns[0];
-            }
-            else if(aColumns.length > 1) {
-                return aColumns;
-            }
-        }
-        return null;
-    },
-
-    /**
-     * Public accessor returns array of given Column's desendants (if any), including itself.
-     *
-     * @method getDescendants
-     * @parem {YAHOO.widget.Column} Column instance.
-     * @return {Array} Array including the Column itself and all descendants (if any).
-     */
-    getDescendants : function(oColumn) {
-        var oSelf = this;
-        var allDescendants = [];
-        var i;
-
-        // Recursive function to loop thru all children
-        var parse = function(oParent) {
-            allDescendants.push(oParent);
-            // This Column has children
-            if(oParent.children) {
-                for(i=0; i<oParent.children.length; i++) {
-                    parse(oSelf.getColumn(oParent.children[i].key));
-                }
-            }
-        };
-        parse(oColumn);
-
-        return allDescendants;
-    }
-};
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The Column class defines and manages attributes of DataTable Columns
- *
- * @namespace YAHOO.widget
- * @class Column
- * @constructor
- * @param oConfigs {Object} Object literal of definitions.
- */
-YAHOO.widget.Column = function(oConfigs) {
-    this._sId = "yui-col" + YAHOO.widget.Column._nCount;
-    
-    // Object literal defines Column attributes
-    if(oConfigs && YAHOO.lang.isObject(oConfigs)) {
-        for(var sConfig in oConfigs) {
-            if(sConfig) {
-                this[sConfig] = oConfigs[sConfig];
-            }
-        }
-    }
-
-    // Assign a key if not found
-    if(!YAHOO.lang.isValue(this.key)) {
-        this.key = "yui-dt-col" + YAHOO.widget.Column._nCount;
-    }
-    
-    // Assign a field if not found, defaults to key
-    if(!YAHOO.lang.isValue(this.field)) {
-        this.field = this.key;
-    }
-
-    // Increment counter
-    YAHOO.widget.Column._nCount++;
-
-    // Backward compatibility
-    if(this.width && !YAHOO.lang.isNumber(this.width)) {
-        this.width = null;
-    }
-    if(this.editor && YAHOO.lang.isString(this.editor)) {
-        this.editor = new YAHOO.widget.CellEditor(this.editor, this.editorOptions);
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-YAHOO.lang.augmentObject(YAHOO.widget.Column, {
-    /**
-     * Internal class variable to index multiple Column instances.
-     *
-     * @property Column._nCount
-     * @type Number
-     * @private
-     * @static
-     */
-    _nCount : 0,
-
-    formatCheckbox : function(elCell, oRecord, oColumn, oData) {
-        YAHOO.widget.DataTable.formatCheckbox(elCell, oRecord, oColumn, oData);
-    },
-
-    formatCurrency : function(elCell, oRecord, oColumn, oData) {
-        YAHOO.widget.DataTable.formatCurrency(elCell, oRecord, oColumn, oData);
-    },
-
-    formatDate : function(elCell, oRecord, oColumn, oData) {
-        YAHOO.widget.DataTable.formatDate(elCell, oRecord, oColumn, oData);
-    },
-
-    formatEmail : function(elCell, oRecord, oColumn, oData) {
-        YAHOO.widget.DataTable.formatEmail(elCell, oRecord, oColumn, oData);
-    },
-
-    formatLink : function(elCell, oRecord, oColumn, oData) {
-        YAHOO.widget.DataTable.formatLink(elCell, oRecord, oColumn, oData);
-    },
-
-    formatNumber : function(elCell, oRecord, oColumn, oData) {
-        YAHOO.widget.DataTable.formatNumber(elCell, oRecord, oColumn, oData);
-    },
-
-    formatSelect : function(elCell, oRecord, oColumn, oData) {
-        YAHOO.widget.DataTable.formatDropdown(elCell, oRecord, oColumn, oData);
-    }
-});
-
-YAHOO.widget.Column.prototype = {
-    /**
-     * Unique String identifier assigned at instantiation.
-     *
-     * @property _sId
-     * @type String
-     * @private
-     */
-    _sId : null,
-
-    /**
-     * Reference to Column's current position index within its ColumnSet's keys
-     * array, if applicable. This property only applies to non-nested and bottom-
-     * level child Columns.
-     *
-     * @property _nKeyIndex
-     * @type Number
-     * @private
-     */
-    _nKeyIndex : null,
-
-    /**
-     * Reference to Column's current position index within its ColumnSet's tree
-     * array, if applicable. This property only applies to non-nested and top-
-     * level parent Columns.
-     *
-     * @property _nTreeIndex
-     * @type Number
-     * @private
-     */
-    _nTreeIndex : null,
-
-    /**
-     * Number of table cells the Column spans.
-     *
-     * @property _nColspan
-     * @type Number
-     * @private
-     */
-    _nColspan : 1,
-
-    /**
-     * Number of table rows the Column spans.
-     *
-     * @property _nRowspan
-     * @type Number
-     * @private
-     */
-    _nRowspan : 1,
-
-    /**
-     * Column's parent Column instance, or null.
-     *
-     * @property _oParent
-     * @type YAHOO.widget.Column
-     * @private
-     */
-    _oParent : null,
-
-    /**
-     * The DOM reference to the associated TH element.
-     *
-     * @property _elTh
-     * @type HTMLElement
-     * @private
-     */
-    _elTh : null,
-
-    /**
-     * The DOM reference to the associated TH element's liner DIV element.
-     *
-     * @property _elThLiner
-     * @type HTMLElement
-     * @private
-     */
-    _elThLiner : null,
-
-    /**
-     * The DOM reference to the associated TH element's label SPAN element.
-     *
-     * @property _elThLabel
-     * @type HTMLElement
-     * @private
-     */
-    _elThLabel : null,
-
-    /**
-     * The DOM reference to the associated resizerelement (if any).
-     *
-     * @property _elResizer
-     * @type HTMLElement
-     * @private
-     */
-    _elResizer : null,
-
-    /**
-     * Internal width tracker.
-     *
-     * @property _nWidth
-     * @type Number
-     * @private
-     */
-    _nWidth : null,
-
-    /**
-     * For unreg() purposes, a reference to the Column's DragDrop instance.
-     *
-     * @property _dd
-     * @type YAHOO.util.DragDrop
-     * @private
-     */
-    _dd : null,
-
-    /**
-     * For unreg() purposes, a reference to the Column resizer's DragDrop instance.
-     *
-     * @property _ddResizer
-     * @type YAHOO.util.DragDrop
-     * @private
-     */
-    _ddResizer : null,
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public member variables
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Unique name, required.
-     *
-     * @property key
-     * @type String
-     */
-    key : null,
-
-    /**
-     * Associated database field, or null.
-     *
-     * @property field
-     * @type String
-     */
-    field : null,
-
-    /**
-     * Text or HTML for display as Column's label in the TH element.
-     *
-     * @property label
-     * @type String
-     */
-    label : null,
-
-    /**
-     * Column head cell ABBR for accessibility.
-     *
-     * @property abbr
-     * @type String
-     */
-    abbr : null,
-
-    /**
-     * Array of object literals that define children (nested headers) of a Column.
-     *
-     * @property children
-     * @type Object[]
-     */
-    children : null,
-
-    /**
-     * Column width (in pixels).
-     *
-     * @property width
-     * @type Number
-     */
-    width : null,
-
-    /**
-     * Minimum Column width (in pixels).
-     *
-     * @property minWidth
-     * @type Number
-     * @default null
-     */
-    minWidth : null,
-
-    /**
-     * When a width is not defined for a Column, maxAutoWidth defines an upper
-     * limit that the Column should be auto-sized to. If resizeable is enabled, 
-     * users may still resize to a greater width. Most useful for Columns intended
-     * to hold long unbroken, unwrapped Strings, such as URLs, to prevent very
-     * wide Columns from disrupting visual readability by inducing truncation.
-     *
-     * @property maxAutoWidth
-     * @type Number
-     * @default null
-     */
-    maxAutoWidth : null,
-
-    /**
-     * True if Column is in hidden state.
-     *
-     * @property hidden
-     * @type Boolean
-     * @default false     
-     */
-    hidden : false,
-
-    /**
-     * True if Column is in selected state.
-     *
-     * @property selected
-     * @type Boolean
-     * @default false     
-     */
-    selected : false,
-
-    /**
-     * Custom CSS class or array of classes to be applied to every cell in the Column.
-     *
-     * @property className
-     * @type String || String[]
-     */
-    className : null,
-
-    /**
-     * Defines a format function.
-     *
-     * @property formatter
-     * @type String || HTMLFunction
-     */
-    formatter : null,
-    
-    /**
-     * Config passed to YAHOO.util.Number.format() by the 'currency' Column formatter.
-     *
-     * @property currencyOptions
-     * @type Object
-     * @default null
-     */
-    currencyOptions : null,
-
-    /**
-     * Config passed to YAHOO.util.Date.format() by the 'date' Column formatter.
-     *
-     * @property dateOptions
-     * @type Object
-     * @default null
-     */
-    dateOptions : null,
-
-    /**
-     * A CellEditor instance, otherwise Column is not editable.     
-     *
-     * @property editor
-     * @type YAHOO.widget.CellEditor
-     */
-    editor : null,
-
-    /**
-     * True if Column is resizeable, false otherwise. The Drag & Drop Utility is
-     * required to enable this feature. Only bottom-level and non-nested Columns are
-     * resizeble. 
-     *
-     * @property resizeable
-     * @type Boolean
-     * @default false
-     */
-    resizeable : false,
-
-    /**
-     * True if Column is sortable, false otherwise.
-     *
-     * @property sortable
-     * @type Boolean
-     * @default false
-     */
-    sortable : false,
-
-    /**
-     * @property sortOptions.defaultOrder
-     * @deprecated Use sortOptions.defaultDir.
-     */
-    /**
-     * Default sort direction for Column: YAHOO.widget.DataTable.CLASS_ASC or YAHOO.widget.DataTable.CLASS_DESC.
-     *
-     * @property sortOptions.defaultDir
-     * @type String
-     * @default null
-     */
-    /**
-     * Custom field to sort on.
-     *
-     * @property sortOptions.field
-     * @type String
-     * @default null
-     */
-    /**
-     * Custom sort handler.
-     *
-     * @property sortOptions.sortFunction
-     * @type Function
-     * @default null
-     */
-    sortOptions : null,
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Returns unique ID string.
-     *
-     * @method getId
-     * @return {String} Unique ID string.
-     */
-    getId : function() {
-        return this._sId;
-    },
-
-    /**
-     * Column instance name, for logging.
-     *
-     * @method toString
-     * @return {String} Column's unique name.
-     */
-    toString : function() {
-        return "Column instance " + this._sId;
-    },
-
-    /**
-     * Returns object literal definition.
-     *
-     * @method getDefinition
-     * @return {Object} Object literal definition.
-     */
-    getDefinition : function() {
-        var oDefinition = {};
-        
-        // Update the definition
-        oDefinition.abbr = this.abbr;
-        oDefinition.className = this.className;
-        oDefinition.editor = this.editor;
-        oDefinition.editorOptions = this.editorOptions; //TODO: deprecated
-        oDefinition.field = this.field;
-        oDefinition.formatter = this.formatter;
-        oDefinition.hidden = this.hidden;
-        oDefinition.key = this.key;
-        oDefinition.label = this.label;
-        oDefinition.minWidth = this.minWidth;
-        oDefinition.maxAutoWidth = this.maxAutoWidth;
-        oDefinition.resizeable = this.resizeable;
-        oDefinition.selected = this.selected;
-        oDefinition.sortable = this.sortable;
-        oDefinition.sortOptions = this.sortOptions;
-        oDefinition.width = this.width;
-
-        return oDefinition;
-    },
-
-    /**
-     * Returns unique Column key.
-     *
-     * @method getKey
-     * @return {String} Column key.
-     */
-    getKey : function() {
-        return this.key;
-    },
-    
-    /**
-     * Returns field.
-     *
-     * @method getField
-     * @return {String} Column field.
-     */
-    getField : function() {
-        return this.field;
-    },
-    
-    /**
-     * Returns Column key which has been sanitized for DOM (class and ID) usage
-     * starts with letter, contains only letters, numbers, hyphen, or period.
-     *
-     * @method getSanitizedKey
-     * @return {String} Sanitized Column key.
-     */
-    getSanitizedKey : function() {
-        return this.getKey().replace(/[^\w\-.:]/g,"");
-    },
-
-    /**
-     * Public accessor returns Column's current position index within its
-     * ColumnSet's keys array, if applicable. Only non-nested and bottom-level
-     * child Columns will return a value.
-     *
-     * @method getKeyIndex
-     * @return {Number} Position index, or null.
-     */
-    getKeyIndex : function() {
-        return this._nKeyIndex;
-    },
-
-    /**
-     * Public accessor returns Column's current position index within its
-     * ColumnSet's tree array, if applicable. Only non-nested and top-level parent
-     * Columns will return a value;
-     *
-     * @method getTreeIndex
-     * @return {Number} Position index, or null.
-     */
-    getTreeIndex : function() {
-        return this._nTreeIndex;
-    },
-
-    /**
-     * Public accessor returns Column's parent instance if any, or null otherwise.
-     *
-     * @method getParent
-     * @return {YAHOO.widget.Column} Column's parent instance.
-     */
-    getParent : function() {
-        return this._oParent;
-    },
-
-    /**
-     * Public accessor returns Column's calculated COLSPAN value.
-     *
-     * @method getColspan
-     * @return {Number} Column's COLSPAN value.
-     */
-    getColspan : function() {
-        return this._nColspan;
-    },
-    // Backward compatibility
-    getColSpan : function() {
-        return this.getColspan();
-    },
-
-    /**
-     * Public accessor returns Column's calculated ROWSPAN value.
-     *
-     * @method getRowspan
-     * @return {Number} Column's ROWSPAN value.
-     */
-    getRowspan : function() {
-        return this._nRowspan;
-    },
-
-    /**
-     * Returns DOM reference to the key TH element.
-     *
-     * @method getThEl
-     * @return {HTMLElement} TH element.
-     */
-    getThEl : function() {
-        return this._elTh;
-    },
-
-    /**
-     * Returns DOM reference to the TH's liner DIV element. Introduced since
-     * resizeable Columns may have an extra resizer liner, making the DIV liner
-     * not reliably the TH element's first child.               
-     *
-     * @method getThLInerEl
-     * @return {HTMLElement} TH element.
-     */
-    getThLinerEl : function() {
-        return this._elThLiner;
-    },
-    
-    /**
-     * Returns DOM reference to the resizer element, or null.
-     *
-     * @method getResizerEl
-     * @return {HTMLElement} DIV element.
-     */
-    getResizerEl : function() {
-        return this._elResizer;
-    },
-
-    // Backward compatibility
-    /**
-     * @method getColEl
-     * @deprecated Use getThEl
-     */
-    getColEl : function() {
-        return this.getThEl();
-    },
-    getIndex : function() {
-        return this.getKeyIndex();
-    },
-    format : function() {
-    }
-};
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * Sort static utility to support Column sorting.
- *
- * @namespace YAHOO.util
- * @class Sort
- * @static
- */
-YAHOO.util.Sort = {
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Comparator function for simple case-insensitive string sorting.
-     *
-     * @method compare
-     * @param a {Object} First sort argument.
-     * @param b {Object} Second sort argument.
-     * @param desc {Boolean} True if sort direction is descending, false if
-     * sort direction is ascending.
-     */
-    compare: function(a, b, desc) {
-        if((a === null) || (typeof a == "undefined")) {
-            if((b === null) || (typeof b == "undefined")) {
-                return 0;
-            }
-            else {
-                return 1;
-            }
-        }
-        else if((b === null) || (typeof b == "undefined")) {
-            return -1;
-        }
-
-        if(a.constructor == String) {
-            a = a.toLowerCase();
-        }
-        if(b.constructor == String) {
-            b = b.toLowerCase();
-        }
-        if(a < b) {
-            return (desc) ? 1 : -1;
-        }
-        else if (a > b) {
-            return (desc) ? -1 : 1;
-        }
-        else {
-            return 0;
-        }
-    }
-};
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * ColumnDD subclasses DragDrop to support rearrangeable Columns.
- *
- * @namespace YAHOO.util
- * @class ColumnDD
- * @extends YAHOO.util.DDProxy
- * @constructor
- * @param oDataTable {YAHOO.widget.DataTable} DataTable instance.
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param elTh {HTMLElement} TH element reference.
- * @param elTarget {HTMLElement} Drag target element.
- */
-YAHOO.widget.ColumnDD = function(oDataTable, oColumn, elTh, elTarget) {
-    if(oDataTable && oColumn && elTh && elTarget) {
-        this.datatable = oDataTable;
-        this.table = oDataTable.getTableEl();
-        this.column = oColumn;
-        this.headCell = elTh;
-        this.pointer = elTarget;
-        this.newIndex = null;
-        this.init(elTh);
-        this.initFrame(); // Needed for DDProxy
-        this.invalidHandleTypes = {};
-
-        // Set top/bottom padding to account for children of nested columns
-        this.setPadding(10, 0, (this.datatable.getTheadEl().offsetHeight + 10) , 0);
-
-        YAHOO.util.Event.on(window, 'resize', function() {
-            this.initConstraints();
-        }, this, true);
-    }
-    else {
-    }
-};
-
-if(YAHOO.util.DDProxy) {
-    YAHOO.extend(YAHOO.widget.ColumnDD, YAHOO.util.DDProxy, {
-        initConstraints: function() {
-            //Get the top, right, bottom and left positions
-            var region = YAHOO.util.Dom.getRegion(this.table),
-                //Get the element we are working on
-                el = this.getEl(),
-                //Get the xy position of it
-                xy = YAHOO.util.Dom.getXY(el),
-                //Get the width and height
-                width = parseInt(YAHOO.util.Dom.getStyle(el, 'width'), 10),
-                height = parseInt(YAHOO.util.Dom.getStyle(el, 'height'), 10),
-                //Set left to x minus left
-                left = ((xy[0] - region.left) + 15), //Buffer of 15px
-                //Set right to right minus x minus width
-                right = ((region.right - xy[0] - width) + 15);
-    
-            //Set the constraints based on the above calculations
-            this.setXConstraint(left, right);
-            this.setYConstraint(10, 10);            
-        },
-        _resizeProxy: function() {
-            this.constructor.superclass._resizeProxy.apply(this, arguments);
-            var dragEl = this.getDragEl(),
-                el = this.getEl();
-
-            YAHOO.util.Dom.setStyle(this.pointer, 'height', (this.table.parentNode.offsetHeight + 10) + 'px');
-            YAHOO.util.Dom.setStyle(this.pointer, 'display', 'block');
-            var xy = YAHOO.util.Dom.getXY(el);
-            YAHOO.util.Dom.setXY(this.pointer, [xy[0], (xy[1] - 5)]);
-            
-            YAHOO.util.Dom.setStyle(dragEl, 'height', this.datatable.getContainerEl().offsetHeight + "px");
-            YAHOO.util.Dom.setStyle(dragEl, 'width', (parseInt(YAHOO.util.Dom.getStyle(dragEl, 'width'),10) + 4) + 'px');
-            YAHOO.util.Dom.setXY(this.dragEl, xy);
-        },
-        onMouseDown: function() {
-                this.initConstraints();
-                this.resetConstraints();
-        },
-        clickValidator: function(e) {
-            if(!this.column.hidden) {
-                var target = YAHOO.util.Event.getTarget(e);
-                return ( this.isValidHandleChild(target) &&
-                            (this.id == this.handleElId ||
-                                this.DDM.handleWasClicked(target, this.id)) );
-            }
-        },
-        onDragOver: function(ev, id) {
-            // Validate target as a Column
-            var target = this.datatable.getColumn(id);
-            if(target) {                
-                // Validate target as a top-level parent
-                var targetIndex = target.getTreeIndex();
-                while((targetIndex === null) && target.getParent()) {
-                    target = target.getParent();
-                    targetIndex = target.getTreeIndex();
-                }
-                if(targetIndex !== null) {
-                    // Are we placing to left or right of target?
-                    var elTarget = target.getThEl();
-                    var newIndex = targetIndex;
-                    var mouseX = YAHOO.util.Event.getPageX(ev),
-                        targetX = YAHOO.util.Dom.getX(elTarget),
-                        midX = targetX + ((YAHOO.util.Dom.get(elTarget).offsetWidth)/2),
-                        currentIndex =  this.column.getTreeIndex();
-                    
-                    if (mouseX < midX) {
-                       YAHOO.util.Dom.setX(this.pointer, targetX);
-                    } else {
-                        var targetWidth = parseInt(elTarget.offsetWidth, 10);
-                        YAHOO.util.Dom.setX(this.pointer, (targetX + targetWidth));
-                        newIndex++;
-                    }
-                    if (targetIndex > currentIndex) {
-                        newIndex--;
-                    }
-                    if(newIndex < 0) {
-                        newIndex = 0;
-                    }
-                    else if(newIndex > this.datatable.getColumnSet().tree[0].length) {
-                        newIndex = this.datatable.getColumnSet().tree[0].length;
-                    }
-                    this.newIndex = newIndex;
-                }
-            }
-        },
-        onDragDrop: function() {
-            this.datatable.reorderColumn(this.column, this.newIndex);
-        },
-        endDrag: function() {
-            this.newIndex = null;
-            YAHOO.util.Dom.setStyle(this.pointer, 'display', 'none');
-        }
-    });
-}
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * ColumnResizer subclasses DragDrop to support resizeable Columns.
- *
- * @namespace YAHOO.util
- * @class ColumnResizer
- * @extends YAHOO.util.DDProxy
- * @constructor
- * @param oDataTable {YAHOO.widget.DataTable} DataTable instance.
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param elTh {HTMLElement} TH element reference.
- * @param sHandleElId {String} DOM ID of the handle element that causes the resize.
- * @param elProxy {HTMLElement} Resizer proxy element.
- */
-YAHOO.util.ColumnResizer = function(oDataTable, oColumn, elTh, sHandleId, elProxy) {
-    if(oDataTable && oColumn && elTh && sHandleId) {
-        this.datatable = oDataTable;
-        this.column = oColumn;
-        this.headCell = elTh;
-        this.headCellLiner = oColumn.getThLinerEl();
-        this.resizerLiner = elTh.firstChild;
-        this.init(sHandleId, sHandleId, {dragOnly:true, dragElId: elProxy.id});
-        this.initFrame(); // Needed for proxy
-        this.resetResizerEl(); // Needed when rowspan > 0
-
-        // Set right padding for bug 1858462
-        this.setPadding(0, 1, 0, 0);
-    }
-    else {
-    }
-};
-
-if(YAHOO.util.DD) {
-    YAHOO.extend(YAHOO.util.ColumnResizer, YAHOO.util.DDProxy, {
-        /////////////////////////////////////////////////////////////////////////////
-        //
-        // Public methods
-        //
-        /////////////////////////////////////////////////////////////////////////////
-        /**
-         * Resets resizer element.
-         *
-         * @method resetResizerEl
-         */
-        resetResizerEl : function() {
-            var resizerStyle = YAHOO.util.Dom.get(this.handleElId).style;
-            resizerStyle.left = "auto";
-            resizerStyle.right = 0;
-            resizerStyle.top = "auto";
-            resizerStyle.bottom = 0;
-            resizerStyle.height = this.headCell.offsetHeight+"px";
-        },
-    
-        /////////////////////////////////////////////////////////////////////////////
-        //
-        // Public DOM event handlers
-        //
-        /////////////////////////////////////////////////////////////////////////////
-    
-        /**
-         * Handles mouseup events on the Column resizer.
-         *
-         * @method onMouseUp
-         * @param e {string} The mouseup event
-         */
-        onMouseUp : function(e) {
-            // Reset height of all resizer els in case TH's have changed height
-            var allKeys = this.datatable.getColumnSet().keys,
-                col;
-            for(var i=0, len=allKeys.length; i<len; i++) {
-                col = allKeys[i];
-                if(col._ddResizer) {
-                    col._ddResizer.resetResizerEl();
-                }
-            }
-            this.resetResizerEl();
-            
-            var el = this.headCellLiner;
-            var newWidth = el.offsetWidth -
-                (parseInt(YAHOO.util.Dom.getStyle(el,"paddingLeft"),10)|0) -
-                (parseInt(YAHOO.util.Dom.getStyle(el,"paddingRight"),10)|0);
-
-            this.datatable.fireEvent("columnResizeEvent", {column:this.column,target:this.headCell,width:newWidth});
-        },
-    
-        /**
-         * Handles mousedown events on the Column resizer.
-         *
-         * @method onMouseDown
-         * @param e {string} The mousedown event
-         */
-        onMouseDown : function(e) {
-            this.startWidth = this.headCellLiner.offsetWidth;
-            this.startX = YAHOO.util.Event.getXY(e)[0];
-            this.nLinerPadding = (parseInt(YAHOO.util.Dom.getStyle(this.headCellLiner,"paddingLeft"),10)|0) +
-                    (parseInt(YAHOO.util.Dom.getStyle(this.headCellLiner,"paddingRight"),10)|0);
-        },
-    
-        /**
-         * Custom clickValidator to ensure Column is not in hidden state.
-         *
-         * @method clickValidator
-         * @param {Event} e
-         * @private
-         */
-        clickValidator : function(e) {
-            if(!this.column.hidden) {
-                var target = YAHOO.util.Event.getTarget(e);
-                return ( this.isValidHandleChild(target) &&
-                            (this.id == this.handleElId ||
-                                this.DDM.handleWasClicked(target, this.id)) );
-            }
-        },
-    
-        /**
-         * Handles start drag on the Column resizer.
-         *
-         * @method startDrag
-         * @param e {string} The drag event
-         */
-        startDrag : function() {
-            // Shrinks height of all resizer els to not hold open TH els
-            var allKeys = this.datatable.getColumnSet().keys,
-                thisKey = this.column.getKeyIndex(),
-                col;
-            for(var i=0, len=allKeys.length; i<len; i++) {
-                col = allKeys[i];
-                if(col._ddResizer) {
-                    YAHOO.util.Dom.get(col._ddResizer.handleElId).style.height = "1em";
-                }
-            }
-        },
-
-        /**
-         * Handles drag events on the Column resizer.
-         *
-         * @method onDrag
-         * @param e {string} The drag event
-         */
-        onDrag : function(e) {
-            var newX = YAHOO.util.Event.getXY(e)[0];
-            if(newX > YAHOO.util.Dom.getX(this.headCellLiner)) {
-                var offsetX = newX - this.startX;
-                var newWidth = this.startWidth + offsetX - this.nLinerPadding;
-                if(newWidth > 0) {
-                    this.datatable.setColumnWidth(this.column, newWidth);
-                }
-            }
-        }
-    });
-}
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Deprecated
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * @property editorOptions
- * @deprecated Pass configs directly to CellEditor constructor. 
- */
-
-
-(function () {
-
-var lang   = YAHOO.lang,
-    util   = YAHOO.util,
-    widget = YAHOO.widget,
-    
-    Dom    = util.Dom,
-    Ev     = util.Event,
-    DT     = widget.DataTable;
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * A RecordSet defines and manages a set of Records.
- *
- * @namespace YAHOO.widget
- * @class RecordSet
- * @param data {Object || Object[]} An object literal or an array of data.
- * @constructor
- */
-YAHOO.widget.RecordSet = function(data) {
-    // Internal variables
-    this._sId = "yui-rs" + widget.RecordSet._nCount;
-    widget.RecordSet._nCount++;
-    this._records = [];
-    //this._length = 0;
-
-    if(data) {
-        if(lang.isArray(data)) {
-            this.addRecords(data);
-        }
-        else if(lang.isObject(data)) {
-            this.addRecord(data);
-        }
-    }
-
-};
-
-var RS = widget.RecordSet;
-
-/**
- * Internal class variable to name multiple Recordset instances.
- *
- * @property RecordSet._nCount
- * @type Number
- * @private
- * @static
- */
-RS._nCount = 0;
-
-RS.prototype = {
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private member variables
-    //
-    /////////////////////////////////////////////////////////////////////////////
-    /**
-     * Unique String identifier assigned at instantiation.
-     *
-     * @property _sId
-     * @type String
-     * @private
-     */
-    _sId : null,
-
-    /**
-     * Internal counter of how many Records are in the RecordSet.
-     *
-     * @property _length
-     * @type Number
-     * @private
-     * @deprecated No longer used
-     */
-    //_length : null,
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Adds one Record to the RecordSet at the given index. If index is null,
-     * then adds the Record to the end of the RecordSet.
-     *
-     * @method _addRecord
-     * @param oData {Object} An object literal of data.
-     * @param index {Number} (optional) Position index.
-     * @return {YAHOO.widget.Record} A Record instance.
-     * @private
-     */
-    _addRecord : function(oData, index) {
-        var oRecord = new YAHOO.widget.Record(oData);
-        
-        if(YAHOO.lang.isNumber(index) && (index > -1)) {
-            this._records.splice(index,0,oRecord);
-        }
-        else {
-            //index = this.getLength();
-            //this._records[index] = oRecord;
-            this._records[this._records.length] = oRecord;
-        }
-        //this._length++;
-        return oRecord;
-    },
-
-    /**
-     * Sets/replaces one Record to the RecordSet at the given index.  Existing
-     * Records with higher indexes are not shifted.  If no index specified, the
-     * Record is added to the end of the RecordSet.
-     *
-     * @method _setRecord
-     * @param oData {Object} An object literal of data.
-     * @param index {Number} (optional) Position index.
-     * @return {YAHOO.widget.Record} A Record instance.
-     * @private
-     */
-    _setRecord : function(oData, index) {
-        if (!lang.isNumber(index) || index < 0) {
-            index = this._records.length;
-        }
-        return (this._records[index] = new widget.Record(oData));
-        /*
-        if(lang.isNumber(index) && (index > -1)) {
-            this._records[index] = oRecord;
-            if((index+1) > this.getLength()) {
-                this._length = index+1;
-            }
-        }
-        else {
-            this._records[this.getLength()] = oRecord;
-            this._length++;
-        }
-        return oRecord;
-        */
-    },
-
-    /**
-     * Deletes Records from the RecordSet at the given index. If range is null,
-     * then only one Record is deleted.
-     *
-     * @method _deleteRecord
-     * @param index {Number} Position index.
-     * @param range {Number} (optional) How many Records to delete
-     * @private
-     */
-    _deleteRecord : function(index, range) {
-        if(!lang.isNumber(range) || (range < 0)) {
-            range = 1;
-        }
-        this._records.splice(index, range);
-        //this._length = this._length - range;
-    },
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Returns unique name of the RecordSet instance.
-     *
-     * @method getId
-     * @return {String} Unique name of the RecordSet instance.
-     */
-    getId : function() {
-        return this._sId;
-    },
-
-    /**
-     * Public accessor to the unique name of the RecordSet instance.
-     *
-     * @method toString
-     * @return {String} Unique name of the RecordSet instance.
-     */
-    toString : function() {
-        return "RecordSet instance " + this._sId;
-    },
-
-    /**
-     * Returns the number of Records held in the RecordSet.
-     *
-     * @method getLength
-     * @return {Number} Number of records in the RecordSet.
-     */
-    getLength : function() {
-            //return this._length;
-            return this._records.length;
-    },
-
-    /**
-     * Returns Record by ID or RecordSet position index.
-     *
-     * @method getRecord
-     * @param record {YAHOO.widget.Record | Number | String} Record instance,
-     * RecordSet position index, or Record ID.
-     * @return {YAHOO.widget.Record} Record object.
-     */
-    getRecord : function(record) {
-        var i;
-        if(record instanceof widget.Record) {
-            for(i=0; i<this._records.length; i++) {
-                if(this._records[i] && (this._records[i]._sId === record._sId)) {
-                    return record;
-                }
-            }
-        }
-        else if(lang.isNumber(record)) {
-            if((record > -1) && (record < this.getLength())) {
-                return this._records[record];
-            }
-        }
-        else if(lang.isString(record)) {
-            for(i=0; i<this._records.length; i++) {
-                if(this._records[i] && (this._records[i]._sId === record)) {
-                    return this._records[i];
-                }
-            }
-        }
-        // Not a valid Record for this RecordSet
-        return null;
-
-    },
-
-    /**
-     * Returns an array of Records from the RecordSet.
-     *
-     * @method getRecords
-     * @param index {Number} (optional) Recordset position index of which Record to
-     * start at.
-     * @param range {Number} (optional) Number of Records to get.
-     * @return {YAHOO.widget.Record[]} Array of Records starting at given index and
-     * length equal to given range. If index is not given, all Records are returned.
-     */
-    getRecords : function(index, range) {
-        if(!lang.isNumber(index)) {
-            return this._records;
-        }
-        if(!lang.isNumber(range)) {
-            return this._records.slice(index);
-        }
-        return this._records.slice(index, index+range);
-    },
-
-    /**
-     * Returns a boolean indicating whether Records exist in the RecordSet at the
-     * specified index range.  Returns true if and only if a Record exists at each
-     * index in the range.
-     * @method hasRecords
-     * @param index
-     * @param range
-     * @return {Boolean} true if all indices are populated in the RecordSet
-     */
-    hasRecords : function (index, range) {
-        var recs = this.getRecords(index,range);
-        for (var i = 0; i < range; ++i) {
-            if (typeof recs[i] === 'undefined') {
-                return false;
-            }
-        }
-        return true;
-    },
-
-    /**
-     * Returns current position index for the given Record.
-     *
-     * @method getRecordIndex
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @return {Number} Record's RecordSet position index.
-     */
-
-    getRecordIndex : function(oRecord) {
-        if(oRecord) {
-            for(var i=this._records.length-1; i>-1; i--) {
-                if(this._records[i] && oRecord.getId() === this._records[i].getId()) {
-                    return i;
-                }
-            }
-        }
-        return null;
-
-    },
-
-    /**
-     * Adds one Record to the RecordSet at the given index. If index is null,
-     * then adds the Record to the end of the RecordSet.
-     *
-     * @method addRecord
-     * @param oData {Object} An object literal of data.
-     * @param index {Number} (optional) Position index.
-     * @return {YAHOO.widget.Record} A Record instance.
-     */
-    addRecord : function(oData, index) {
-        if(lang.isObject(oData)) {
-            var oRecord = this._addRecord(oData, index);
-            this.fireEvent("recordAddEvent",{record:oRecord,data:oData});
-            return oRecord;
-        }
-        else {
-            return null;
-        }
-    },
-
-    /**
-     * Adds multiple Records at once to the RecordSet at the given index with the
-     * given object literal data. If index is null, then the new Records are
-     * added to the end of the RecordSet.
-     *
-     * @method addRecords
-     * @param aData {Object[]} An object literal data or an array of data object literals.
-     * @param index {Number} (optional) Position index.
-     * @return {YAHOO.widget.Record[]} An array of Record instances.
-     */
-    addRecords : function(aData, index) {
-        if(lang.isArray(aData)) {
-            var newRecords = [],
-                idx,i,len;
-
-            index = lang.isNumber(index) ? index : this._records.length;
-            idx = index;
-
-            // Can't go backwards bc we need to preserve order
-            for(i=0,len=aData.length; i<len; ++i) {
-                if(lang.isObject(aData[i])) {
-                    var record = this._addRecord(aData[i], idx++);
-                    newRecords.push(record);
-                }
-           }
-            this.fireEvent("recordsAddEvent",{records:newRecords,data:aData});
-           return newRecords;
-        }
-        else if(lang.isObject(aData)) {
-            var oRecord = this._addRecord(aData);
-            this.fireEvent("recordsAddEvent",{records:[oRecord],data:aData});
-            return oRecord;
-        }
-        else {
-            return null;
-        }
-    },
-
-    /**
-     * Sets or replaces one Record to the RecordSet at the given index. Unlike
-     * addRecord, an existing Record at that index is not shifted to preserve it.
-     * If no index is specified, it adds the Record to the end of the RecordSet.
-     *
-     * @method setRecord
-     * @param oData {Object} An object literal of data.
-     * @param index {Number} (optional) Position index.
-     * @return {YAHOO.widget.Record} A Record instance.
-     */
-    setRecord : function(oData, index) {
-        if(lang.isObject(oData)) {
-            var oRecord = this._setRecord(oData, index);
-            this.fireEvent("recordSetEvent",{record:oRecord,data:oData});
-            return oRecord;
-        }
-        else {
-            return null;
-        }
-    },
-
-    /**
-     * Sets or replaces multiple Records at once to the RecordSet with the given
-     * data, starting at the given index. If index is not specified, then the new
-     * Records are added to the end of the RecordSet.
-     *
-     * @method setRecords
-     * @param aData {Object[]} An array of object literal data.
-     * @param index {Number} (optional) Position index.
-     * @return {YAHOO.widget.Record[]} An array of Record instances.
-     */
-    setRecords : function(aData, index) {
-        var Rec   = widget.Record,
-            a     = lang.isArray(aData) ? aData : [aData],
-            added = [],
-            i = 0, l = a.length, j = 0;
-
-        index = parseInt(index,10)|0;
-
-        for(; i < l; ++i) {
-            if (typeof a[i] === 'object' && a[i]) {
-                added[j++] = this._records[index + i] = new Rec(a[i]);
-            }
-        }
-
-        this.fireEvent("recordsSetEvent",{records:added,data:aData});
-        // Backward compatibility for bug 1918245
-        this.fireEvent("recordsSet",{records:added,data:aData});
-
-        if (a.length && !added.length) {
-        }
-
-        return added.length > 1 ? added : added[0];
-    },
-
-    /**
-     * Updates given Record with given data.
-     *
-     * @method updateRecord
-     * @param record {YAHOO.widget.Record | Number | String} A Record instance,
-     * a RecordSet position index, or a Record ID.
-     * @param oData {Object} Object literal of new data.
-     * @return {YAHOO.widget.Record} Updated Record, or null.
-     */
-    updateRecord : function(record, oData) {
-        var oRecord = this.getRecord(record);
-        if(oRecord && lang.isObject(oData)) {
-            // Copy data from the Record for the event that gets fired later
-            var oldData = {};
-            for(var key in oRecord._oData) {
-                if(lang.hasOwnProperty(oRecord._oData, key)) {
-                    oldData[key] = oRecord._oData[key];
-                }
-            }
-            oRecord._oData = oData;
-            this.fireEvent("recordUpdateEvent",{record:oRecord,newData:oData,oldData:oldData});
-            return oRecord;
-        }
-        else {
-            return null;
-        }
-    },
-
-    /**
-     * @method updateKey
-     * @deprecated Use updateRecordValue
-     */
-    updateKey : function(record, sKey, oData) {
-        this.updateRecordValue(record, sKey, oData);
-    },
-    /**
-     * Sets given Record at given key to given data.
-     *
-     * @method updateRecordValue
-     * @param record {YAHOO.widget.Record | Number | String} A Record instance,
-     * a RecordSet position index, or a Record ID.
-     * @param sKey {String} Key name.
-     * @param oData {Object} New data.
-     */
-    updateRecordValue : function(record, sKey, oData) {
-        var oRecord = this.getRecord(record);
-        if(oRecord) {
-            var oldData = null;
-            var keyValue = oRecord._oData[sKey];
-            // Copy data from the Record for the event that gets fired later
-            if(keyValue && lang.isObject(keyValue)) {
-                oldData = {};
-                for(var key in keyValue)  {
-                    if(lang.hasOwnProperty(keyValue, key)) {
-                        oldData[key] = keyValue[key];
-                    }
-                }
-            }
-            // Copy by value
-            else {
-                oldData = keyValue;
-            }
-
-            oRecord._oData[sKey] = oData;
-            this.fireEvent("keyUpdateEvent",{record:oRecord,key:sKey,newData:oData,oldData:oldData});
-            this.fireEvent("recordValueUpdateEvent",{record:oRecord,key:sKey,newData:oData,oldData:oldData});
-        }
-        else {
-        }
-    },
-
-    /**
-     * Replaces all Records in RecordSet with new object literal data.
-     *
-     * @method replaceRecords
-     * @param data {Object || Object[]} An object literal of data or an array of
-     * data object literals.
-     * @return {YAHOO.widget.Record || YAHOO.widget.Record[]} A Record instance or
-     * an array of Records.
-     */
-    replaceRecords : function(data) {
-        this.reset();
-        return this.addRecords(data);
-    },
-
-    /**
-     * Sorts all Records by given function. Records keep their unique IDs but will
-     * have new RecordSet position indexes.
-     *
-     * @method sortRecords
-     * @param fnSort {Function} Reference to a sort function.
-     * @param desc {Boolean} True if sort direction is descending, false if sort
-     * direction is ascending.
-     * @return {YAHOO.widget.Record[]} Sorted array of Records.
-     */
-    sortRecords : function(fnSort, desc) {
-        return this._records.sort(function(a, b) {return fnSort(a, b, desc);});
-    },
-
-    /**
-     * Reverses all Records, so ["one", "two", "three"] becomes ["three", "two", "one"].
-     *
-     * @method reverseRecords
-     * @return {YAHOO.widget.Record[]} Reverse-sorted array of Records.
-     */
-    reverseRecords : function() {
-        return this._records.reverse();
-    },
-
-    /**
-     * Removes the Record at the given position index from the RecordSet. If a range
-     * is also provided, removes that many Records, starting from the index. Length
-     * of RecordSet is correspondingly shortened.
-     *
-     * @method deleteRecord
-     * @param index {Number} Record's RecordSet position index.
-     * @param range {Number} (optional) How many Records to delete.
-     * @return {Object} A copy of the data held by the deleted Record.
-     */
-    deleteRecord : function(index) {
-        if(lang.isNumber(index) && (index > -1) && (index < this.getLength())) {
-            // Copy data from the Record for the event that gets fired later
-            var oData = widget.DataTable._cloneObject(this.getRecord(index).getData());
-            
-            this._deleteRecord(index);
-            this.fireEvent("recordDeleteEvent",{data:oData,index:index});
-            return oData;
-        }
-        else {
-            return null;
-        }
-    },
-
-    /**
-     * Removes the Record at the given position index from the RecordSet. If a range
-     * is also provided, removes that many Records, starting from the index. Length
-     * of RecordSet is correspondingly shortened.
-     *
-     * @method deleteRecords
-     * @param index {Number} Record's RecordSet position index.
-     * @param range {Number} (optional) How many Records to delete.
-     * @return {Object[]} An array of copies of the data held by the deleted Records.     
-     */
-    deleteRecords : function(index, range) {
-        if(!lang.isNumber(range)) {
-            range = 1;
-        }
-        if(lang.isNumber(index) && (index > -1) && (index < this.getLength())) {
-            var recordsToDelete = this.getRecords(index, range);
-            // Copy data from each Record for the event that gets fired later
-            var deletedData = [];
-            
-            for(var i=0; i<recordsToDelete.length; i++) {
-                deletedData[deletedData.length] = widget.DataTable._cloneObject(recordsToDelete[i]);
-            }
-            this._deleteRecord(index, range);
-
-            this.fireEvent("recordsDeleteEvent",{data:deletedData,index:index});
-
-            return deletedData;
-        }
-        else {
-            return null;
-        }
-    },
-
-    /**
-     * Deletes all Records from the RecordSet.
-     *
-     * @method reset
-     */
-    reset : function() {
-        this._records = [];
-        //this._length = 0;
-        this.fireEvent("resetEvent");
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Custom Events
-//
-/////////////////////////////////////////////////////////////////////////////
-
-// RecordSet uses EventProvider
-lang.augmentProto(RS, util.EventProvider);
-
-/**
- * Fired when a new Record is added to the RecordSet.
- *
- * @event recordAddEvent
- * @param oArgs.record {YAHOO.widget.Record} The Record instance.
- * @param oArgs.data {Object} Data added.
- */
-
-/**
- * Fired when multiple Records are added to the RecordSet at once.
- *
- * @event recordsAddEvent
- * @param oArgs.records {YAHOO.widget.Record[]} An array of Record instances.
- * @param oArgs.data {Object[]} Data added.
- */
-
-/**
- * Fired when a Record is set in the RecordSet.
- *
- * @event recordSetEvent
- * @param oArgs.record {YAHOO.widget.Record} The Record instance.
- * @param oArgs.data {Object} Data added.
- */
-
-/**
- * Fired when multiple Records are set in the RecordSet at once.
- *
- * @event recordsSetEvent
- * @param oArgs.records {YAHOO.widget.Record[]} An array of Record instances.
- * @param oArgs.data {Object[]} Data added.
- */
-
-/**
- * Fired when a Record is updated with new data.
- *
- * @event recordUpdateEvent
- * @param oArgs.record {YAHOO.widget.Record} The Record instance.
- * @param oArgs.newData {Object} New data.
- * @param oArgs.oldData {Object} Old data.
- */
-
-/**
- * Fired when a Record is deleted from the RecordSet.
- *
- * @event recordDeleteEvent
- * @param oArgs.data {Object} A copy of the data held by the Record,
- * or an array of data object literals if multiple Records were deleted at once.
- * @param oArgs.index {Object} Index of the deleted Record.
- */
-
-/**
- * Fired when multiple Records are deleted from the RecordSet at once.
- *
- * @event recordsDeleteEvent
- * @param oArgs.data {Object[]} An array of data object literals copied
- * from the Records.
- * @param oArgs.index {Object} Index of the first deleted Record.
- */
-
-/**
- * Fired when all Records are deleted from the RecordSet at once.
- *
- * @event resetEvent
- */
-
-/**
- * @event keyUpdateEvent    
- * @deprecated Use recordValueUpdateEvent     
- */
-
-/**
- * Fired when a Record value is updated with new data.
- *
- * @event recordValueUpdateEvent
- * @param oArgs.record {YAHOO.widget.Record} The Record instance.
- * @param oArgs.key {String} The updated key.
- * @param oArgs.newData {Object} New data.
- * @param oArgs.oldData {Object} Old data.
- *
- */
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The Record class defines a DataTable record.
- *
- * @namespace YAHOO.widget
- * @class Record
- * @constructor
- * @param oConfigs {Object} (optional) Object literal of key/value pairs.
- */
-YAHOO.widget.Record = function(oLiteral) {
-    this._nCount = widget.Record._nCount;
-    this._sId = "yui-rec" + this._nCount;
-    widget.Record._nCount++;
-    this._oData = {};
-    if(lang.isObject(oLiteral)) {
-        for(var sKey in oLiteral) {
-            if(lang.hasOwnProperty(oLiteral, sKey)) {
-                this._oData[sKey] = oLiteral[sKey];
-            }
-        }
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Internal class variable to give unique IDs to Record instances.
- *
- * @property Record._nCount
- * @type Number
- * @private
- */
-YAHOO.widget.Record._nCount = 0;
-
-YAHOO.widget.Record.prototype = {
-    /**
-     * Immutable unique count assigned at instantiation. Remains constant while a
-     * Record's position index can change from sorting.
-     *
-     * @property _nCount
-     * @type Number
-     * @private
-     */
-    _nCount : null,
-
-    /**
-     * Immutable unique ID assigned at instantiation. Remains constant while a
-     * Record's position index can change from sorting.
-     *
-     * @property _sId
-     * @type String
-     * @private
-     */
-    _sId : null,
-
-    /**
-     * Holds data for the Record in an object literal.
-     *
-     * @property _oData
-     * @type Object
-     * @private
-     */
-    _oData : null,
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public member variables
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Returns unique count assigned at instantiation.
-     *
-     * @method getCount
-     * @return Number
-     */
-    getCount : function() {
-        return this._nCount;
-    },
-
-    /**
-     * Returns unique ID assigned at instantiation.
-     *
-     * @method getId
-     * @return String
-     */
-    getId : function() {
-        return this._sId;
-    },
-
-    /**
-     * Returns data for the Record for a field if given, or the entire object
-     * literal otherwise.
-     *
-     * @method getData
-     * @param sField {String} (Optional) The field from which to retrieve data value.
-     * @return Object
-     */
-    getData : function(sField) {
-        if(lang.isString(sField)) {
-            return this._oData[sField];
-        }
-        else {
-            return this._oData;
-        }
-    },
-
-    /**
-     * Sets given data at the given key. Use the RecordSet method setValue to trigger
-     * events. 
-     *
-     * @method setData
-     * @param sKey {String} The key of the new value.
-     * @param oData {MIXED} The new value.
-     */
-    setData : function(sKey, oData) {
-        this._oData[sKey] = oData;
-    }
-};
-
-})();
-
-(function () {
-
-var lang   = YAHOO.lang,
-    util   = YAHOO.util,
-    widget = YAHOO.widget,
-    ua     = YAHOO.env.ua,
-    
-    Dom    = util.Dom,
-    Ev     = util.Event,
-    DS     = util.DataSourceBase;
-
-/**
- * The DataTable widget provides a progressively enhanced DHTML control for
- * displaying tabular data across A-grade browsers.
- *
- * @module datatable
- * @requires yahoo, dom, event, element, datasource
- * @optional dragdrop, dragdrop
- * @title DataTable Widget
- * @beta
- */
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * DataTable class for the YUI DataTable widget.
- *
- * @namespace YAHOO.widget
- * @class DataTable
- * @extends Element
- * @constructor
- * @param elContainer {HTMLElement} Container element for the TABLE.
- * @param aColumnDefs {Object[]} Array of object literal Column definitions.
- * @param oDataSource {YAHOO.util.DataSource} DataSource instance.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-YAHOO.widget.DataTable = function(elContainer,aColumnDefs,oDataSource,oConfigs) {
-    var DT = widget.DataTable;
-    
-    ////////////////////////////////////////////////////////////////////////////
-    // Backward compatibility for SDT, but prevent infinite loops
-    
-    if(oConfigs && oConfigs.scrollable) {
-        return new YAHOO.widget.ScrollingDataTable(elContainer,aColumnDefs,oDataSource,oConfigs);
-    }
-    
-    ////////////////////////////////////////////////////////////////////////////
-    // Initialization
-
-    // Internal vars
-    this._nIndex = DT._nCount;
-    this._sId = "yui-dt"+this._nIndex;
-    this._oChainRender = new YAHOO.util.Chain();
-    this._oChainRender.subscribe("end",this._onRenderChainEnd, this, true);
-
-    // Initialize configs
-    this._initConfigs(oConfigs);
-
-    // Initialize DataSource
-    this._initDataSource(oDataSource);
-    if(!this._oDataSource) {
-        return;
-    }
-
-    // Initialize ColumnSet
-    this._initColumnSet(aColumnDefs);
-    if(!this._oColumnSet) {
-        return;
-    }
-
-    // Initialize RecordSet
-    this._initRecordSet();
-    if(!this._oRecordSet) {
-    }
-
-    // Initialize Attributes
-    DT.superclass.constructor.call(this, elContainer, this.configs);
-
-    // Initialize DOM elements
-    var okDom = this._initDomElements(elContainer);
-    if(!okDom) {
-        return;
-    }
-            
-    // Show message as soon as config is available
-    this.showTableMessage(this.get("MSG_LOADING"), DT.CLASS_LOADING);
-    
-    ////////////////////////////////////////////////////////////////////////////
-    // Once per instance
-    this._initEvents();
-
-    DT._nCount++;
-    DT._nCurrentCount++;
-    
-    ////////////////////////////////////////////////////////////////////////////
-    // Data integration
-
-    // Send a simple initial request
-    var oCallback = {
-        success : this.onDataReturnSetRows,
-        failure : this.onDataReturnSetRows,
-        scope   : this,
-        argument: this.getState()
-    };
-    
-    var initialLoad = this.get("initialLoad");
-    if(initialLoad === true) {
-        this._oDataSource.sendRequest(this.get("initialRequest"), oCallback);
-    }
-    // Do not send an initial request at all
-    else if(initialLoad === false) {
-        this.showTableMessage(this.get("MSG_EMPTY"), DT.CLASS_EMPTY);
-    }
-    // Send an initial request with a custom payload
-    else {
-        var oCustom = initialLoad || {};
-        oCallback.argument = oCustom.argument || {};
-        this._oDataSource.sendRequest(oCustom.request, oCallback);
-    }
-};
-
-var DT = widget.DataTable;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public constants
-//
-/////////////////////////////////////////////////////////////////////////////
-
-lang.augmentObject(DT, {
-
-    /**
-     * Class name assigned to outer DataTable container.
-     *
-     * @property DataTable.CLASS_DATATABLE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt"
-     */
-    CLASS_DATATABLE : "yui-dt",
-
-    /**
-     * Class name assigned to liner DIV elements.
-     *
-     * @property DataTable.CLASS_LINER
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-liner"
-     */
-    CLASS_LINER : "yui-dt-liner",
-
-    /**
-     * Class name assigned to display label elements.
-     *
-     * @property DataTable.CLASS_LABEL
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-label"
-     */
-    CLASS_LABEL : "yui-dt-label",
-
-    /**
-     * Class name assigned to messaging elements.
-     *
-     * @property DataTable.CLASS_MESSAGE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-message"
-     */
-    CLASS_MESSAGE : "yui-dt-message",
-
-    /**
-     * Class name assigned to mask element when DataTable is disabled.
-     *
-     * @property DataTable.CLASS_MASK
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-mask"
-     */
-    CLASS_MASK : "yui-dt-mask",
-
-    /**
-     * Class name assigned to data elements.
-     *
-     * @property DataTable.CLASS_DATA
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-data"
-     */
-    CLASS_DATA : "yui-dt-data",
-
-    /**
-     * Class name assigned to Column drag target.
-     *
-     * @property DataTable.CLASS_COLTARGET
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-coltarget"
-     */
-    CLASS_COLTARGET : "yui-dt-coltarget",
-
-    /**
-     * Class name assigned to resizer handle elements.
-     *
-     * @property DataTable.CLASS_RESIZER
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-resizer"
-     */
-    CLASS_RESIZER : "yui-dt-resizer",
-
-    /**
-     * Class name assigned to resizer liner elements.
-     *
-     * @property DataTable.CLASS_RESIZERLINER
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-resizerliner"
-     */
-    CLASS_RESIZERLINER : "yui-dt-resizerliner",
-
-    /**
-     * Class name assigned to resizer proxy elements.
-     *
-     * @property DataTable.CLASS_RESIZERPROXY
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-resizerproxy"
-     */
-    CLASS_RESIZERPROXY : "yui-dt-resizerproxy",
-
-    /**
-     * Class name assigned to CellEditor container elements.
-     *
-     * @property DataTable.CLASS_EDITOR
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-editor"
-     */
-    CLASS_EDITOR : "yui-dt-editor",
-
-    /**
-     * Class name assigned to paginator container elements.
-     *
-     * @property DataTable.CLASS_PAGINATOR
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-paginator"
-     */
-    CLASS_PAGINATOR : "yui-dt-paginator",
-
-    /**
-     * Class name assigned to page number indicators.
-     *
-     * @property DataTable.CLASS_PAGE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-page"
-     */
-    CLASS_PAGE : "yui-dt-page",
-
-    /**
-     * Class name assigned to default indicators.
-     *
-     * @property DataTable.CLASS_DEFAULT
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-default"
-     */
-    CLASS_DEFAULT : "yui-dt-default",
-
-    /**
-     * Class name assigned to previous indicators.
-     *
-     * @property DataTable.CLASS_PREVIOUS
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-previous"
-     */
-    CLASS_PREVIOUS : "yui-dt-previous",
-
-    /**
-     * Class name assigned next indicators.
-     *
-     * @property DataTable.CLASS_NEXT
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-next"
-     */
-    CLASS_NEXT : "yui-dt-next",
-
-    /**
-     * Class name assigned to first elements.
-     *
-     * @property DataTable.CLASS_FIRST
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-first"
-     */
-    CLASS_FIRST : "yui-dt-first",
-
-    /**
-     * Class name assigned to last elements.
-     *
-     * @property DataTable.CLASS_LAST
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-last"
-     */
-    CLASS_LAST : "yui-dt-last",
-
-    /**
-     * Class name assigned to even elements.
-     *
-     * @property DataTable.CLASS_EVEN
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-even"
-     */
-    CLASS_EVEN : "yui-dt-even",
-
-    /**
-     * Class name assigned to odd elements.
-     *
-     * @property DataTable.CLASS_ODD
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-odd"
-     */
-    CLASS_ODD : "yui-dt-odd",
-
-    /**
-     * Class name assigned to selected elements.
-     *
-     * @property DataTable.CLASS_SELECTED
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-selected"
-     */
-    CLASS_SELECTED : "yui-dt-selected",
-
-    /**
-     * Class name assigned to highlighted elements.
-     *
-     * @property DataTable.CLASS_HIGHLIGHTED
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-highlighted"
-     */
-    CLASS_HIGHLIGHTED : "yui-dt-highlighted",
-
-    /**
-     * Class name assigned to hidden elements.
-     *
-     * @property DataTable.CLASS_HIDDEN
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-hidden"
-     */
-    CLASS_HIDDEN : "yui-dt-hidden",
-
-    /**
-     * Class name assigned to disabled elements.
-     *
-     * @property DataTable.CLASS_DISABLED
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-disabled"
-     */
-    CLASS_DISABLED : "yui-dt-disabled",
-
-    /**
-     * Class name assigned to empty indicators.
-     *
-     * @property DataTable.CLASS_EMPTY
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-empty"
-     */
-    CLASS_EMPTY : "yui-dt-empty",
-
-    /**
-     * Class name assigned to loading indicatorx.
-     *
-     * @property DataTable.CLASS_LOADING
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-loading"
-     */
-    CLASS_LOADING : "yui-dt-loading",
-
-    /**
-     * Class name assigned to error indicators.
-     *
-     * @property DataTable.CLASS_ERROR
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-error"
-     */
-    CLASS_ERROR : "yui-dt-error",
-
-    /**
-     * Class name assigned to editable elements.
-     *
-     * @property DataTable.CLASS_EDITABLE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-editable"
-     */
-    CLASS_EDITABLE : "yui-dt-editable",
-
-    /**
-     * Class name assigned to draggable elements.
-     *
-     * @property DataTable.CLASS_DRAGGABLE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-draggable"
-     */
-    CLASS_DRAGGABLE : "yui-dt-draggable",
-
-    /**
-     * Class name assigned to resizeable elements.
-     *
-     * @property DataTable.CLASS_RESIZEABLE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-resizeable"
-     */
-    CLASS_RESIZEABLE : "yui-dt-resizeable",
-
-    /**
-     * Class name assigned to scrollable elements.
-     *
-     * @property DataTable.CLASS_SCROLLABLE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-scrollable"
-     */
-    CLASS_SCROLLABLE : "yui-dt-scrollable",
-
-    /**
-     * Class name assigned to sortable elements.
-     *
-     * @property DataTable.CLASS_SORTABLE
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-sortable"
-     */
-    CLASS_SORTABLE : "yui-dt-sortable",
-
-    /**
-     * Class name assigned to ascending elements.
-     *
-     * @property DataTable.CLASS_ASC
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-asc"
-     */
-    CLASS_ASC : "yui-dt-asc",
-
-    /**
-     * Class name assigned to descending elements.
-     *
-     * @property DataTable.CLASS_DESC
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-desc"
-     */
-    CLASS_DESC : "yui-dt-desc",
-
-    /**
-     * Class name assigned to BUTTON elements and/or container elements.
-     *
-     * @property DataTable.CLASS_BUTTON
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-button"
-     */
-    CLASS_BUTTON : "yui-dt-button",
-
-    /**
-     * Class name assigned to INPUT TYPE=CHECKBOX elements and/or container elements.
-     *
-     * @property DataTable.CLASS_CHECKBOX
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-checkbox"
-     */
-    CLASS_CHECKBOX : "yui-dt-checkbox",
-
-    /**
-     * Class name assigned to SELECT elements and/or container elements.
-     *
-     * @property DataTable.CLASS_DROPDOWN
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-dropdown"
-     */
-    CLASS_DROPDOWN : "yui-dt-dropdown",
-
-    /**
-     * Class name assigned to INPUT TYPE=RADIO elements and/or container elements.
-     *
-     * @property DataTable.CLASS_RADIO
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-radio"
-     */
-    CLASS_RADIO : "yui-dt-radio",
-
-    /////////////////////////////////////////////////////////////////////////
-    //
-    // Private static properties
-    //
-    /////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Internal class variable for indexing multiple DataTable instances.
-     *
-     * @property DataTable._nCount
-     * @type Number
-     * @private
-     * @static
-     */
-    _nCount : 0,
-
-    /**
-     * Internal class variable tracking current number of DataTable instances,
-     * so that certain class values can be reset when all instances are destroyed.          
-     *
-     * @property DataTable._nCurrentCount
-     * @type Number
-     * @private
-     * @static
-     */
-    _nCurrentCount : 0,
-
-    /**
-     * Reference to the STYLE node that is dynamically created and updated
-     * in order to manage Column widths.
-     *
-     * @property DataTable._elDynStyleNode
-     * @type HTMLElement
-     * @private
-     * @static     
-     */
-    _elDynStyleNode : null,
-
-    /**
-     * Set to true if _elDynStyleNode cannot be populated due to browser incompatibility.
-     *
-     * @property DataTable._bDynStylesFallback
-     * @type boolean
-     * @private
-     * @static     
-     */
-    _bDynStylesFallback : (ua.ie && (ua.ie<7)) ? true : false,
-
-    /**
-     * Object literal hash of Columns and their dynamically create style rules.
-     *
-     * @property DataTable._oDynStyles
-     * @type Object
-     * @private
-     * @static     
-     */
-    _oDynStyles : {},
-
-    /**
-     * Element reference to shared Column drag target.
-     *
-     * @property DataTable._elColumnDragTarget
-     * @type HTMLElement
-     * @private
-     * @static 
-     */
-    _elColumnDragTarget : null,
-
-    /**
-     * Element reference to shared Column resizer proxy.
-     *
-     * @property DataTable._elColumnResizerProxy
-     * @type HTMLElement
-     * @private
-     * @static 
-     */
-    _elColumnResizerProxy : null,
-
-    /////////////////////////////////////////////////////////////////////////
-    //
-    // Private static methods
-    //
-    /////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Clones object literal or array of object literals.
-     *
-     * @method DataTable._cloneObject
-     * @param o {Object} Object.
-     * @private
-     * @static     
-     */
-    _cloneObject : function(o) {
-        if(!lang.isValue(o)) {
-            return o;
-        }
-        
-        var copy = {};
-        
-        if(o instanceof YAHOO.widget.BaseCellEditor) {
-            copy = o;
-        }
-        else if(lang.isFunction(o)) {
-            copy = o;
-        }
-        else if(lang.isArray(o)) {
-            var array = [];
-            for(var i=0,len=o.length;i<len;i++) {
-                array[i] = DT._cloneObject(o[i]);
-            }
-            copy = array;
-        }
-        else if(lang.isObject(o)) { 
-            for (var x in o){
-                if(lang.hasOwnProperty(o, x)) {
-                    if(lang.isValue(o[x]) && lang.isObject(o[x]) || lang.isArray(o[x])) {
-                        copy[x] = DT._cloneObject(o[x]);
-                    }
-                    else {
-                        copy[x] = o[x];
-                    }
-                }
-            }
-        }
-        else {
-            copy = o;
-        }
-    
-        return copy;
-    },
-
-    /**
-     * Destroys shared Column drag target.
-     *
-     * @method DataTable._destroyColumnDragTargetEl
-     * @private
-     * @static 
-     */
-    _destroyColumnDragTargetEl : function() {
-        if(DT._elColumnDragTarget) {
-            var el = DT._elColumnDragTarget;
-            YAHOO.util.Event.purgeElement(el);
-            el.parentNode.removeChild(el);
-            DT._elColumnDragTarget = null;
-            
-        }
-    },
-
-    /**
-     * Creates HTML markup for shared Column drag target.
-     *
-     * @method DataTable._initColumnDragTargetEl
-     * @return {HTMLElement} Reference to Column drag target. 
-     * @private
-     * @static 
-     */
-    _initColumnDragTargetEl : function() {
-        if(!DT._elColumnDragTarget) {
-            // Attach Column drag target element as first child of body
-            var elColumnDragTarget = document.createElement('div');
-            elColumnDragTarget.className = DT.CLASS_COLTARGET;
-            elColumnDragTarget.style.display = "none";
-            document.body.insertBefore(elColumnDragTarget, document.body.firstChild);
-
-            // Internal tracker of Column drag target
-            DT._elColumnDragTarget = elColumnDragTarget;
-            
-        }
-        return DT._elColumnDragTarget;
-    },
-
-    /**
-     * Destroys shared Column resizer proxy.
-     *
-     * @method DataTable._destroyColumnResizerProxyEl
-     * @return {HTMLElement} Reference to Column resizer proxy.
-     * @private 
-     * @static 
-     */
-    _destroyColumnResizerProxyEl : function() {
-        if(DT._elColumnResizerProxy) {
-            var el = DT._elColumnResizerProxy;
-            YAHOO.util.Event.purgeElement(el);
-            el.parentNode.removeChild(el);
-            DT._elColumnResizerProxy = null;
-        }
-    },
-
-    /**
-     * Creates HTML markup for shared Column resizer proxy.
-     *
-     * @method DataTable._initColumnResizerProxyEl
-     * @return {HTMLElement} Reference to Column resizer proxy.
-     * @private 
-     * @static 
-     */
-    _initColumnResizerProxyEl : function() {
-        if(!DT._elColumnResizerProxy) {
-            // Attach Column resizer element as first child of body
-            var elColumnResizerProxy = document.createElement("div");
-            elColumnResizerProxy.id = "yui-dt-colresizerproxy"; // Needed for ColumnResizer
-            elColumnResizerProxy.className = DT.CLASS_RESIZERPROXY;
-            document.body.insertBefore(elColumnResizerProxy, document.body.firstChild);
-
-            // Internal tracker of Column resizer proxy
-            DT._elColumnResizerProxy = elColumnResizerProxy;
-        }
-        return DT._elColumnResizerProxy;
-    },
-
-    /**
-     * Formats a BUTTON element.
-     *
-     * @method DataTable.formatButton
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object | Boolean} Data value for the cell. By default, the value
-     * is what gets written to the BUTTON.
-     * @static
-     */
-    formatButton : function(el, oRecord, oColumn, oData) {
-        var sValue = lang.isValue(oData) ? oData : "Click";
-        //TODO: support YAHOO.widget.Button
-        //if(YAHOO.widget.Button) {
-
-        //}
-        //else {
-            el.innerHTML = "<button type=\"button\" class=\""+
-                    DT.CLASS_BUTTON + "\">" + sValue + "</button>";
-        //}
-    },
-
-    /**
-     * Formats a CHECKBOX element.
-     *
-     * @method DataTable.formatCheckbox
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object | Boolean} Data value for the cell. Can be a simple
-     * Boolean to indicate whether checkbox is checked or not. Can be object literal
-     * {checked:bBoolean, label:sLabel}. Other forms of oData require a custom
-     * formatter.
-     * @static
-     */
-    formatCheckbox : function(el, oRecord, oColumn, oData) {
-        var bChecked = oData;
-        bChecked = (bChecked) ? " checked=\"checked\"" : "";
-        el.innerHTML = "<input type=\"checkbox\"" + bChecked +
-                " class=\"" + DT.CLASS_CHECKBOX + "\" />";
-    },
-
-    /**
-     * Formats currency. Default unit is USD.
-     *
-     * @method DataTable.formatCurrency
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Number} Data value for the cell.
-     * @static
-     */
-    formatCurrency : function(el, oRecord, oColumn, oData) {
-        el.innerHTML = util.Number.format(oData, oColumn.currencyOptions || this.get("currencyOptions"));
-    },
-
-    /**
-     * Formats JavaScript Dates.
-     *
-     * @method DataTable.formatDate
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} Data value for the cell, or null.
-     * @static
-     */
-    formatDate : function(el, oRecord, oColumn, oData) {
-        var oConfig = oColumn.dateOptions || this.get("dateOptions");
-        el.innerHTML = util.Date.format(oData, oConfig, oConfig.locale);
-    },
-
-    /**
-     * Formats SELECT elements.
-     *
-     * @method DataTable.formatDropdown
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} Data value for the cell, or null.
-     * @static
-     */
-    formatDropdown : function(el, oRecord, oColumn, oData) {
-        var selectedValue = (lang.isValue(oData)) ? oData : oRecord.getData(oColumn.field);
-        var options = (lang.isArray(oColumn.dropdownOptions)) ?
-                oColumn.dropdownOptions : null;
-
-        var selectEl;
-        var collection = el.getElementsByTagName("select");
-
-        // Create the form element only once, so we can attach the onChange listener
-        if(collection.length === 0) {
-            // Create SELECT element
-            selectEl = document.createElement("select");
-            selectEl.className = DT.CLASS_DROPDOWN;
-            selectEl = el.appendChild(selectEl);
-
-            // Add event listener
-            Ev.addListener(selectEl,"change",this._onDropdownChange,this);
-        }
-
-        selectEl = collection[0];
-
-        // Update the form element
-        if(selectEl) {
-            // Clear out previous options
-            selectEl.innerHTML = "";
-
-            // We have options to populate
-            if(options) {
-                // Create OPTION elements
-                for(var i=0; i<options.length; i++) {
-                    var option = options[i];
-                    var optionEl = document.createElement("option");
-                    optionEl.value = (lang.isValue(option.value)) ?
-                            option.value : option;
-                    optionEl.innerHTML = (lang.isValue(option.text)) ?
-                            option.text : option;
-                    optionEl = selectEl.appendChild(optionEl);
-                    if (optionEl.value == selectedValue) {
-                        optionEl.selected = true;
-                    }
-                }
-            }
-            // Selected value is our only option
-            else {
-                selectEl.innerHTML = "<option selected value=\"" + selectedValue + "\">" + selectedValue + "</option>";
-            }
-        }
-        else {
-            el.innerHTML = lang.isValue(oData) ? oData : "";
-        }
-    },
-
-    /**
-     * Formats emails.
-     *
-     * @method DataTable.formatEmail
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} Data value for the cell, or null.
-     * @static
-     */
-    formatEmail : function(el, oRecord, oColumn, oData) {
-        if(lang.isString(oData)) {
-            el.innerHTML = "<a href=\"mailto:" + oData + "\">" + oData + "</a>";
-        }
-        else {
-            el.innerHTML = lang.isValue(oData) ? oData : "";
-        }
-    },
-
-    /**
-     * Formats links.
-     *
-     * @method DataTable.formatLink
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} Data value for the cell, or null.
-     * @static
-     */
-    formatLink : function(el, oRecord, oColumn, oData) {
-        if(lang.isString(oData)) {
-            el.innerHTML = "<a href=\"" + oData + "\">" + oData + "</a>";
-        }
-        else {
-            el.innerHTML = lang.isValue(oData) ? oData : "";
-        }
-    },
-
-    /**
-     * Formats numbers.
-     *
-     * @method DataTable.formatNumber
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} Data value for the cell, or null.
-     * @static
-     */
-    formatNumber : function(el, oRecord, oColumn, oData) {
-        el.innerHTML = util.Number.format(oData, oColumn.numberOptions || this.get("numberOptions"));
-    },
-
-    /**
-     * Formats INPUT TYPE=RADIO elements.
-     *
-     * @method DataTable.formatRadio
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} (Optional) Data value for the cell.
-     * @static
-     */
-    formatRadio : function(el, oRecord, oColumn, oData) {
-        var bChecked = oData;
-        bChecked = (bChecked) ? " checked=\"checked\"" : "";
-        el.innerHTML = "<input type=\"radio\"" + bChecked +
-                " name=\""+this.getId()+"-col-" + oColumn.getSanitizedKey() + "\"" +
-                " class=\"" + DT.CLASS_RADIO+ "\" />";
-    },
-
-    /**
-     * Formats text strings.
-     *
-     * @method DataTable.formatText
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} (Optional) Data value for the cell.
-     * @static
-     */
-    formatText : function(el, oRecord, oColumn, oData) {
-        var value = (lang.isValue(oRecord.getData(oColumn.field))) ?
-                oRecord.getData(oColumn.field) : "";
-        //TODO: move to util function
-        el.innerHTML = value.toString().replace(/&/g, "&#38;").replace(/</g, "&#60;").replace(/>/g, "&#62;");
-    },
-
-    /**
-     * Formats TEXTAREA elements.
-     *
-     * @method DataTable.formatTextarea
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} (Optional) Data value for the cell.
-     * @static
-     */
-    formatTextarea : function(el, oRecord, oColumn, oData) {
-        var value = (lang.isValue(oRecord.getData(oColumn.field))) ?
-                oRecord.getData(oColumn.field) : "";
-        var markup = "<textarea>" + value + "</textarea>";
-        el.innerHTML = markup;
-    },
-
-    /**
-     * Formats INPUT TYPE=TEXT elements.
-     *
-     * @method DataTable.formatTextbox
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} (Optional) Data value for the cell.
-     * @static
-     */
-    formatTextbox : function(el, oRecord, oColumn, oData) {
-        var value = (lang.isValue(oRecord.getData(oColumn.field))) ?
-                oRecord.getData(oColumn.field) : "";
-        var markup = "<input type=\"text\" value=\"" + value + "\" />";
-        el.innerHTML = markup;
-    },
-
-    /**
-     * Default cell formatter
-     *
-     * @method DataTable.formatDefault
-     * @param el {HTMLElement} The element to format with markup.
-     * @param oRecord {YAHOO.widget.Record} Record instance.
-     * @param oColumn {YAHOO.widget.Column} Column instance.
-     * @param oData {Object} (Optional) Data value for the cell.
-     * @static
-     */
-    formatDefault : function(el, oRecord, oColumn, oData) {
-        el.innerHTML = oData === undefined ||
-                       oData === null ||
-                       (typeof oData === 'number' && isNaN(oData)) ?
-                       "&#160;" : oData.toString();
-    },
-
-    /**
-     * Validates data value to type Number, doing type conversion as
-     * necessary. A valid Number value is return, else null is returned
-     * if input value does not validate.
-     *
-     *
-     * @method DataTable.validateNumber
-     * @param oData {Object} Data to validate.
-     * @static
-    */
-    validateNumber : function(oData) {
-        //Convert to number
-        var number = oData * 1;
-
-        // Validate
-        if(lang.isNumber(number)) {
-            return number;
-        }
-        else {
-            return undefined;
-        }
-    }
-});
-
-// Done in separate step so referenced functions are defined.
-/**
- * Cell formatting functions.
- * @property DataTable.Formatter
- * @type Object
- * @static
- */
-DT.Formatter = {
-    button   : DT.formatButton,
-    checkbox : DT.formatCheckbox,
-    currency : DT.formatCurrency,
-    "date"   : DT.formatDate,
-    dropdown : DT.formatDropdown,
-    email    : DT.formatEmail,
-    link     : DT.formatLink,
-    "number" : DT.formatNumber,
-    radio    : DT.formatRadio,
-    text     : DT.formatText,
-    textarea : DT.formatTextarea,
-    textbox  : DT.formatTextbox,
-
-    defaultFormatter : DT.formatDefault
-};
-
-lang.extend(DT, util.Element, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Superclass methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Implementation of Element's abstract method. Sets up config values.
- *
- * @method initAttributes
- * @param oConfigs {Object} (Optional) Object literal definition of configuration values.
- * @private
- */
-
-initAttributes : function(oConfigs) {
-    oConfigs = oConfigs || {};
-    DT.superclass.initAttributes.call(this, oConfigs);
-
-    /**
-    * @attribute summary
-    * @description Value for the SUMMARY attribute.
-    * @type String
-    * @default ""    
-    */
-    this.setAttributeConfig("summary", {
-        value: "",
-        validator: lang.isString,
-        method: function(sSummary) {
-            if(this._elTable) {
-                this._elTable.summary = sSummary;
-            }
-        }
-    });
-
-    /**
-    * @attribute selectionMode
-    * @description Specifies row or cell selection mode. Accepts the following strings:
-    *    <dl>
-    *      <dt>"standard"</dt>
-    *      <dd>Standard row selection with support for modifier keys to enable
-    *      multiple selections.</dd>
-    *
-    *      <dt>"single"</dt>
-    *      <dd>Row selection with modifier keys disabled to not allow
-    *      multiple selections.</dd>
-    *
-    *      <dt>"singlecell"</dt>
-    *      <dd>Cell selection with modifier keys disabled to not allow
-    *      multiple selections.</dd>
-    *
-    *      <dt>"cellblock"</dt>
-    *      <dd>Cell selection with support for modifier keys to enable multiple
-    *      selections in a block-fashion, like a spreadsheet.</dd>
-    *
-    *      <dt>"cellrange"</dt>
-    *      <dd>Cell selection with support for modifier keys to enable multiple
-    *      selections in a range-fashion, like a calendar.</dd>
-    *    </dl>
-    *
-    * @default "standard"
-    * @type String
-    */
-    this.setAttributeConfig("selectionMode", {
-        value: "standard",
-        validator: lang.isString
-    });
-
-    /**
-    * @attribute sortedBy
-    * @description Object literal provides metadata for initial sort values if
-    * data will arrive pre-sorted:
-    * <dl>
-    *     <dt>sortedBy.key</dt>
-    *     <dd>{String} Key of sorted Column</dd>
-    *     <dt>sortedBy.dir</dt>
-    *     <dd>{String} Initial sort direction, either YAHOO.widget.DataTable.CLASS_ASC or YAHOO.widget.DataTable.CLASS_DESC</dd>
-    * </dl>
-    * @type Object | null
-    */
-    this.setAttributeConfig("sortedBy", {
-        value: null,
-        // TODO: accepted array for nested sorts
-        validator: function(oNewSortedBy) {
-            if(oNewSortedBy) {
-                return (lang.isObject(oNewSortedBy) && oNewSortedBy.key);
-            }
-            else {
-                return (oNewSortedBy === null);
-            }
-        },
-        method: function(oNewSortedBy) {
-            // Stash the previous value
-            var oOldSortedBy = this.get("sortedBy");
-            
-            // Workaround for bug 1827195
-            this._configs.sortedBy.value = oNewSortedBy;
-
-            // Remove ASC/DESC from TH
-            var oOldColumn,
-                nOldColumnKeyIndex,
-                oNewColumn,
-                nNewColumnKeyIndex;
-                
-            if(this._elThead) {
-                if(oOldSortedBy && oOldSortedBy.key && oOldSortedBy.dir) {
-                    oOldColumn = this._oColumnSet.getColumn(oOldSortedBy.key);
-                    nOldColumnKeyIndex = oOldColumn.getKeyIndex();
-                    
-                    // Remove previous UI from THEAD
-                    var elOldTh = oOldColumn.getThEl();
-                    Dom.removeClass(elOldTh, oOldSortedBy.dir);
-                    this.formatTheadCell(oOldColumn.getThLinerEl().firstChild, oOldColumn, oNewSortedBy);
-                }
-                if(oNewSortedBy) {
-                    oNewColumn = (oNewSortedBy.column) ? oNewSortedBy.column : this._oColumnSet.getColumn(oNewSortedBy.key);
-                    nNewColumnKeyIndex = oNewColumn.getKeyIndex();
-    
-                    // Update THEAD with new UI
-                    var elNewTh = oNewColumn.getThEl();
-                    // Backward compatibility
-                    if(oNewSortedBy.dir && ((oNewSortedBy.dir == "asc") ||  (oNewSortedBy.dir == "desc"))) {
-                        var newClass = (oNewSortedBy.dir == "desc") ?
-                                DT.CLASS_DESC :
-                                DT.CLASS_ASC;
-                        Dom.addClass(elNewTh, newClass);
-                    }
-                    else {
-                         var sortClass = oNewSortedBy.dir || DT.CLASS_ASC;
-                         Dom.addClass(elNewTh, sortClass);
-                    }
-                    this.formatTheadCell(oNewColumn.getThLinerEl().firstChild, oNewColumn, oNewSortedBy);
-                }
-            }
-          
-            if(this._elTbody) {
-                // Update TBODY UI
-                this._elTbody.style.display = "none";
-                var allRows = this._elTbody.rows,
-                    allCells;
-                for(var i=allRows.length-1; i>-1; i--) {
-                    allCells = allRows[i].childNodes;
-                    if(allCells[nOldColumnKeyIndex]) {
-                        Dom.removeClass(allCells[nOldColumnKeyIndex], oOldSortedBy.dir);
-                    }
-                    if(allCells[nNewColumnKeyIndex]) {
-                        Dom.addClass(allCells[nNewColumnKeyIndex], oNewSortedBy.dir);
-                    }
-                }
-                this._elTbody.style.display = "";
-            }
-                
-            this._clearTrTemplateEl();
-        }
-    });
-    
-    /**
-    * @attribute paginator
-    * @description An instance of YAHOO.widget.Paginator.
-    * @default null
-    * @type {Object|YAHOO.widget.Paginator}
-    */
-    this.setAttributeConfig("paginator", {
-        value : null,
-        validator : function (val) {
-            return val === null || val instanceof widget.Paginator;
-        },
-        method : function () { this._updatePaginator.apply(this,arguments); }
-    });
-
-    /**
-    * @attribute caption
-    * @description Value for the CAPTION element. NB: Not supported in
-    * ScrollingDataTable.    
-    * @type String
-    */
-    this.setAttributeConfig("caption", {
-        value: null,
-        validator: lang.isString,
-        method: function(sCaption) {
-            this._initCaptionEl(sCaption);
-        }
-    });
-
-    /**
-    * @attribute draggableColumns
-    * @description True if Columns are draggable to reorder, false otherwise.
-    * The Drag & Drop Utility is required to enable this feature. Only top-level
-    * and non-nested Columns are draggable. Write once.
-    * @default false
-    * @type Boolean
-    */
-    this.setAttributeConfig("draggableColumns", {
-        value: false,
-        validator: lang.isBoolean,
-        method: function(oParam) {
-            if(this._elThead) {
-                if(oParam) {
-                    this._initDraggableColumns();
-                }
-                else {
-                    this._destroyDraggableColumns();
-                }
-            }
-        }
-    });
-
-    /**
-    * @attribute renderLoopSize 	 
-    * @description A value greater than 0 enables DOM rendering of rows to be
-    * executed from a non-blocking timeout queue and sets how many rows to be
-    * rendered per timeout. Recommended for very large data sets.     
-    * @type Number 	 
-    * @default 0 	 
-    */ 	 
-     this.setAttributeConfig("renderLoopSize", { 	 
-         value: 0, 	 
-         validator: lang.isNumber 	 
-     }); 	 
-
-    /**
-    * @attribute formatRow
-    * @description A function that accepts a TR element and its associated Record
-    * for custom formatting. The function must return TRUE in order to automatically
-    * continue formatting of child TD elements, else TD elements will not be
-    * automatically formatted.
-    * @type function
-    * @default null
-    */
-    this.setAttributeConfig("formatRow", {
-        value: null,
-        validator: lang.isFunction
-    });
-
-    /**
-    * @attribute generateRequest
-    * @description A function that converts an object literal of desired DataTable
-    * states into a request value which is then passed to the DataSource's
-    * sendRequest method in order to retrieve data for those states. This
-    * function is passed an object literal of state data and a reference to the
-    * DataTable instance:
-    *     
-    * <dl>
-    *   <dt>pagination<dt>
-    *   <dd>        
-    *         <dt>offsetRecord</dt>
-    *         <dd>{Number} Index of the first Record of the desired page</dd>
-    *         <dt>rowsPerPage</dt>
-    *         <dd>{Number} Number of rows per page</dd>
-    *   </dd>
-    *   <dt>sortedBy</dt>
-    *   <dd>                
-    *         <dt>key</dt>
-    *         <dd>{String} Key of sorted Column</dd>
-    *         <dt>dir</dt>
-    *         <dd>{String} Sort direction, either YAHOO.widget.DataTable.CLASS_ASC or YAHOO.widget.DataTable.CLASS_DESC</dd>
-    *   </dd>
-    *   <dt>self</dt>
-    *   <dd>The DataTable instance</dd>
-    * </dl>
-    * 
-    * and by default returns a String of syntax:
-    * "sort={sortColumn}&dir={sortDir}&startIndex={pageStartIndex}&results={rowsPerPage}"
-    * @type function
-    * @default HTMLFunction
-    */
-    this.setAttributeConfig("generateRequest", {
-        value: function(oState, oSelf) {
-            // Set defaults
-            oState = oState || {pagination:null, sortedBy:null};
-            var sort = (oState.sortedBy) ? oState.sortedBy.key : oSelf.getColumnSet().keys[0].getKey();
-            var dir = (oState.sortedBy && oState.sortedBy.dir === DT.CLASS_DESC) ? "desc" : "asc";
-            var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
-            var results = (oState.pagination) ? oState.pagination.rowsPerPage : null;
-            
-            // Build the request
-            return  "sort=" + sort +
-                    "&dir=" + dir +
-                    "&startIndex=" + startIndex +
-                    ((results !== null) ? "&results=" + results : "");
-        },
-        validator: lang.isFunction
-    });
-
-    /**
-    * @attribute initialRequest
-    * @description Defines the initial request that gets sent to the DataSource
-    * during initialization. Value is ignored if initialLoad is set to any value
-    * other than true.    
-    * @type MIXED
-    * @default null
-    */
-    this.setAttributeConfig("initialRequest", {
-        value: null
-    });
-
-    /**
-    * @attribute initialLoad
-    * @description Determines whether or not to load data at instantiation. By
-    * default, will trigger a sendRequest() to the DataSource and pass in the
-    * request defined by initialRequest. If set to false, data will not load
-    * at instantiation. Alternatively, implementers who wish to work with a 
-    * custom payload may pass in an object literal with the following values:
-    *     
-    *    <dl>
-    *      <dt>request (MIXED)</dt>
-    *      <dd>Request value.</dd>
-    *
-    *      <dt>argument (MIXED)</dt>
-    *      <dd>Custom data that will be passed through to the callback function.</dd>
-    *    </dl>
-    *
-    *                    
-    * @type Boolean | Object
-    * @default true
-    */
-    this.setAttributeConfig("initialLoad", {
-        value: true
-    });
-    
-    /**
-    * @attribute dynamicData
-    * @description If true, sorting and pagination are relegated to the DataSource
-    * for handling, using the request returned by the "generateRequest" function.
-    * Each new DataSource response blows away all previous Records. False by default, so 
-    * sorting and pagination will be handled directly on the client side, without
-    * causing any new requests for data from the DataSource.
-    * @type Boolean
-    * @default false
-    */
-    this.setAttributeConfig("dynamicData", {
-        value: false,
-        validator: lang.isBoolean
-    });
-
-    /**
-     * @attribute MSG_EMPTY 	 
-     * @description Message to display if DataTable has no data.     
-     * @type String 	 
-     * @default "No records found." 	 
-     */ 	 
-     this.setAttributeConfig("MSG_EMPTY", { 	 
-         value: "No records found.", 	 
-         validator: lang.isString 	 
-     }); 	 
-
-    /**
-     * @attribute MSG_LOADING	 
-     * @description Message to display while DataTable is loading data.
-     * @type String 	 
-     * @default "Loading..." 	 
-     */ 	 
-     this.setAttributeConfig("MSG_LOADING", { 	 
-         value: "Loading...", 	 
-         validator: lang.isString 	 
-     }); 	 
-
-    /**
-     * @attribute MSG_ERROR	 
-     * @description Message to display while DataTable has data error.
-     * @type String 	 
-     * @default "Data error." 	 
-     */ 	 
-     this.setAttributeConfig("MSG_ERROR", { 	 
-         value: "Data error.", 	 
-         validator: lang.isString 	 
-     }); 	 
-
-    /**
-     * @attribute MSG_SORTASC 
-     * @description Message to display in tooltip to sort Column in ascending order.
-     * @type String 	 
-     * @default "Click to sort ascending" 	 
-     */ 	 
-     this.setAttributeConfig("MSG_SORTASC", { 	 
-         value: "Click to sort ascending", 	 
-         validator: lang.isString,
-         method: function(sParam) {
-            if(this._elThead) {
-                for(var i=0, allKeys=this.getColumnSet().keys, len=allKeys.length; i<len; i++) {
-                    if(allKeys[i].sortable && this.getColumnSortDir(allKeys[i]) === DT.CLASS_ASC) {
-                        allKeys[i]._elThLabel.firstChild.title = sParam;
-                    }
-                }
-            }      
-         }
-     });
-
-    /**
-     * @attribute MSG_SORTDESC 
-     * @description Message to display in tooltip to sort Column in descending order.
-     * @type String 	 
-     * @default "Click to sort descending" 	 
-     */ 	 
-     this.setAttributeConfig("MSG_SORTDESC", { 	 
-         value: "Click to sort descending", 	 
-         validator: lang.isString,
-         method: function(sParam) {
-            if(this._elThead) {
-                for(var i=0, allKeys=this.getColumnSet().keys, len=allKeys.length; i<len; i++) {
-                    if(allKeys[i].sortable && this.getColumnSortDir(allKeys[i]) === DT.CLASS_DESC) {
-                        allKeys[i]._elThLabel.firstChild.title = sParam;
-                    }
-                }
-            }               
-         }
-     });
-     
-    /**
-     * @attribute currencySymbol
-     * @deprecated
-     */
-    this.setAttributeConfig("currencySymbol", {
-        value: "$",
-        validator: lang.isString
-    });
-    
-    /**
-     * Default config passed to YAHOO.util.Number.format() by the 'currency' Column formatter.
-     * @attribute currencyOptions
-     * @type Object
-     * @default {prefix: $, decimalPlaces:2, decimalSeparator:".", thousandsSeparator:","}
-     */
-    this.setAttributeConfig("currencyOptions", {
-        value: {
-            prefix: this.get("currencySymbol"), // TODO: deprecate currencySymbol
-            decimalPlaces:2,
-            decimalSeparator:".",
-            thousandsSeparator:","
-        }
-    });
-    
-    /**
-     * Default config passed to YAHOO.util.Date.format() by the 'date' Column formatter.
-     * @attribute dateOptions
-     * @type Object
-     * @default {format:"%m/%d/%Y", locale:"en"}
-     */
-    this.setAttributeConfig("dateOptions", {
-        value: {format:"%m/%d/%Y", locale:"en"}
-    });
-    
-    /**
-     * Default config passed to YAHOO.util.Number.format() by the 'number' Column formatter.
-     * @attribute numberOptions
-     * @type Object
-     * @default {decimalPlaces:0, thousandsSeparator:","}
-     */
-    this.setAttributeConfig("numberOptions", {
-        value: {
-            decimalPlaces:0,
-            thousandsSeparator:","
-        }
-    });
-
-},
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * True if instance is initialized, so as to fire the initEvent after render.
- *
- * @property _bInit
- * @type Boolean
- * @default true
- * @private
- */
-_bInit : true,
-
-/**
- * Index assigned to instance.
- *
- * @property _nIndex
- * @type Number
- * @private
- */
-_nIndex : null,
-
-/**
- * Counter for IDs assigned to TR elements.
- *
- * @property _nTrCount
- * @type Number
- * @private
- */
-_nTrCount : 0,
-
-/**
- * Counter for IDs assigned to TD elements.
- *
- * @property _nTdCount
- * @type Number
- * @private
- */
-_nTdCount : 0,
-
-/**
- * Unique id assigned to instance "yui-dtN", useful prefix for generating unique
- * DOM ID strings and log messages.
- *
- * @property _sId
- * @type String
- * @private
- */
-_sId : null,
-
-/**
- * Render chain.
- *
- * @property _oChainRender
- * @type YAHOO.util.Chain
- * @private
- */
-_oChainRender : null,
-
-/**
- * DOM reference to the container element for the DataTable instance into which
- * all other elements get created.
- *
- * @property _elContainer
- * @type HTMLElement
- * @private
- */
-_elContainer : null,
-
-/**
- * DOM reference to the mask element for the DataTable instance which disables it.
- *
- * @property _elMask
- * @type HTMLElement
- * @private
- */
-_elMask : null,
-
-/**
- * DOM reference to the TABLE element for the DataTable instance.
- *
- * @property _elTable
- * @type HTMLElement
- * @private
- */
-_elTable : null,
-
-/**
- * DOM reference to the CAPTION element for the DataTable instance.
- *
- * @property _elCaption
- * @type HTMLElement
- * @private
- */
-_elCaption : null,
-
-/**
- * DOM reference to the COLGROUP element for the DataTable instance.
- *
- * @property _elColgroup
- * @type HTMLElement
- * @private
- */
-_elColgroup : null,
-
-/**
- * DOM reference to the THEAD element for the DataTable instance.
- *
- * @property _elThead
- * @type HTMLElement
- * @private
- */
-_elThead : null,
-
-/**
- * DOM reference to the primary TBODY element for the DataTable instance.
- *
- * @property _elTbody
- * @type HTMLElement
- * @private
- */
-_elTbody : null,
-
-/**
- * DOM reference to the secondary TBODY element used to display DataTable messages.
- *
- * @property _elMsgTbody
- * @type HTMLElement
- * @private
- */
-_elMsgTbody : null,
-
-/**
- * DOM reference to the secondary TBODY element's single TR element used to display DataTable messages.
- *
- * @property _elMsgTr
- * @type HTMLElement
- * @private
- */
-_elMsgTr : null,
-
-/**
- * DOM reference to the secondary TBODY element's single TD element used to display DataTable messages.
- *
- * @property _elMsgTd
- * @type HTMLElement
- * @private
- */
-_elMsgTd : null,
-
-/**
- * DataSource instance for the DataTable instance.
- *
- * @property _oDataSource
- * @type YAHOO.util.DataSource
- * @private
- */
-_oDataSource : null,
-
-/**
- * ColumnSet instance for the DataTable instance.
- *
- * @property _oColumnSet
- * @type YAHOO.widget.ColumnSet
- * @private
- */
-_oColumnSet : null,
-
-/**
- * RecordSet instance for the DataTable instance.
- *
- * @property _oRecordSet
- * @type YAHOO.widget.RecordSet
- * @private
- */
-_oRecordSet : null,
-
-/**
- * The active CellEditor instance for the DataTable instance.
- *
- * @property _oCellEditor
- * @type YAHOO.widget.CellEditor
- * @private
- */
-_oCellEditor : null,
-
-/**
- * ID string of first TR element of the current DataTable page.
- *
- * @property _sFirstTrId
- * @type String
- * @private
- */
-_sFirstTrId : null,
-
-/**
- * ID string of the last TR element of the current DataTable page.
- *
- * @property _sLastTrId
- * @type String
- * @private
- */
-_sLastTrId : null,
-
-/**
- * Template row to create all new rows from.
- * @property _elTrTemplate
- * @type {HTMLElement}
- * @private 
- */
-_elTrTemplate : null,
-
-/**
- * Sparse array of custom functions to set column widths for browsers that don't
- * support dynamic CSS rules.  Functions are added at the index representing
- * the number of rows they update.
- *
- * @property _aDynFunctions
- * @type Array
- * @private
- */
-_aDynFunctions : [],
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Clears browser text selection. Useful to call on rowSelectEvent or
- * cellSelectEvent to prevent clicks or dblclicks from selecting text in the
- * browser.
- *
- * @method clearTextSelection
- */
-clearTextSelection : function() {
-    var sel;
-    if(window.getSelection) {
-    	sel = window.getSelection();
-    }
-    else if(document.getSelection) {
-    	sel = document.getSelection();
-    }
-    else if(document.selection) {
-    	sel = document.selection;
-    }
-    if(sel) {
-        if(sel.empty) {
-            sel.empty();
-        }
-        else if (sel.removeAllRanges) {
-            sel.removeAllRanges();
-        }
-        else if(sel.collapse) {
-            sel.collapse();
-        }
-    }
-},
-
-/**
- * Sets focus on the given element.
- *
- * @method _focusEl
- * @param el {HTMLElement} Element.
- * @private
- */
-_focusEl : function(el) {
-    el = el || this._elTbody;
-    // http://developer.mozilla.org/en/docs/index.php?title=Key-navigable_custom_DHTML_widgets
-    // The timeout is necessary in both IE and Firefox 1.5, to prevent scripts from doing
-    // strange unexpected things as the user clicks on buttons and other controls.
-    setTimeout(function() {
-        try {
-            el.focus();
-        }
-        catch(e) {
-        }
-    },0);
-},
-
-/**
- * Forces Gecko repaint.
- *
- * @method _repaintGecko
- * @el {HTMLElement} (Optional) Element to repaint, otherwise entire document body.
- * @private
- */
-_repaintGecko : (ua.gecko) ? 
-    function(el) {
-        el = el || this._elContainer;
-        var parent = el.parentNode;
-        var nextSibling = el.nextSibling;
-        parent.insertBefore(parent.removeChild(el), nextSibling);
-    } : function() {},
-
-/**
- * Forces Opera repaint.
- *
- * @method _repaintOpera
- * @private 
- */
-_repaintOpera : (ua.opera) ? 
-    function() {
-        if(ua.opera) {
-            document.documentElement.className += " ";
-            document.documentElement.className.trim();
-        }
-    } : function() {} ,
-
-/**
- * Forces Webkit repaint.
- *
- * @method _repaintWebkit
- * @el {HTMLElement} (Optional) Element to repaint, otherwise entire document body.
- * @private
- */
-_repaintWebkit : (ua.webkit) ? 
-    function(el) {
-        el = el || this._elContainer;
-        var parent = el.parentNode;
-        var nextSibling = el.nextSibling;
-        parent.insertBefore(parent.removeChild(el), nextSibling);
-    } : function() {},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// INIT FUNCTIONS
-
-/**
- * Initializes object literal of config values.
- *
- * @method _initConfigs
- * @param oConfig {Object} Object literal of config values.
- * @private
- */
-_initConfigs : function(oConfigs) {
-    if(!oConfigs || !lang.isObject(oConfigs)) {
-        oConfigs = {};
-    }
-    this.configs = oConfigs;
-},
-
-/**
- * Initializes ColumnSet.
- *
- * @method _initColumnSet
- * @param aColumnDefs {Object[]} Array of object literal Column definitions.
- * @private
- */
-_initColumnSet : function(aColumnDefs) {
-    var oColumn, i, len;
-    
-    if(this._oColumnSet) {
-        // First clear _oDynStyles for existing ColumnSet and
-        // uregister CellEditor Custom Events
-        for(i=0, len=this._oColumnSet.keys.length; i<len; i++) {
-            oColumn = this._oColumnSet.keys[i];
-            DT._oDynStyles["."+this.getId()+"-col-"+oColumn.getSanitizedKey()+" ."+DT.CLASS_LINER] = undefined;
-            if(oColumn.editor && oColumn.editor.unsubscribeAll) { // Backward compatibility
-                oColumn.editor.unsubscribeAll();
-            }
-        }
-        
-        this._oColumnSet = null;
-        this._clearTrTemplateEl();
-    }
-    
-    if(lang.isArray(aColumnDefs)) {
-        this._oColumnSet =  new YAHOO.widget.ColumnSet(aColumnDefs);
-    }
-    // Backward compatibility
-    else if(aColumnDefs instanceof YAHOO.widget.ColumnSet) {
-        this._oColumnSet =  aColumnDefs;
-    }
-
-    // Register CellEditor Custom Events
-    var allKeys = this._oColumnSet.keys;
-    for(i=0, len=allKeys.length; i<len; i++) {
-        oColumn = allKeys[i];
-        if(oColumn.editor && oColumn.editor.subscribe) { // Backward incompatibility
-            oColumn.editor.subscribe("showEvent", this._onEditorShowEvent, this, true);
-            oColumn.editor.subscribe("keydownEvent", this._onEditorKeydownEvent, this, true);
-            oColumn.editor.subscribe("revertEvent", this._onEditorRevertEvent, this, true);
-            oColumn.editor.subscribe("saveEvent", this._onEditorSaveEvent, this, true);
-            oColumn.editor.subscribe("cancelEvent", this._onEditorCancelEvent, this, true);
-            oColumn.editor.subscribe("blurEvent", this._onEditorBlurEvent, this, true);
-            oColumn.editor.subscribe("blockEvent", this._onEditorBlockEvent, this, true);
-            oColumn.editor.subscribe("unblockEvent", this._onEditorUnblockEvent, this, true);
-        }
-    }
-},
-
-/**
- * Initializes DataSource.
- *
- * @method _initDataSource
- * @param oDataSource {YAHOO.util.DataSource} DataSource instance.
- * @private
- */
-_initDataSource : function(oDataSource) {
-    this._oDataSource = null;
-    if(oDataSource && (oDataSource instanceof DS)) {
-        this._oDataSource = oDataSource;
-    }
-    // Backward compatibility
-    else {
-        var tmpTable = null;
-        var tmpContainer = this._elContainer;
-        var i=0;
-        //TODO: this will break if re-initing DS at runtime for SDT
-        // Peek in container child nodes to see if TABLE already exists
-        if(tmpContainer.hasChildNodes()) {
-            var tmpChildren = tmpContainer.childNodes;
-            for(i=0; i<tmpChildren.length; i++) {
-                if(tmpChildren[i].nodeName && tmpChildren[i].nodeName.toLowerCase() == "table") {
-                    tmpTable = tmpChildren[i];
-                    break;
-                }
-            }
-            if(tmpTable) {
-                var tmpFieldsArray = [];
-                for(; i<this._oColumnSet.keys.length; i++) {
-                    tmpFieldsArray.push({key:this._oColumnSet.keys[i].key});
-                }
-
-                this._oDataSource = new DS(tmpTable);
-                this._oDataSource.responseType = DS.TYPE_HTMLTABLE;
-                this._oDataSource.responseSchema = {fields: tmpFieldsArray};
-            }
-        }
-    }
-},
-
-/**
- * Initializes RecordSet.
- *
- * @method _initRecordSet
- * @private
- */
-_initRecordSet : function() {
-    if(this._oRecordSet) {
-        this._oRecordSet.reset();
-    }
-    else {
-        this._oRecordSet = new YAHOO.widget.RecordSet();
-    }
-},
-
-/**
- * Initializes DOM elements.
- *
- * @method _initDomElements
- * @param elContainer {HTMLElement | String} HTML DIV element by reference or ID. 
- * return {Boolean} False in case of error, otherwise true 
- * @private
- */
-_initDomElements : function(elContainer) {
-    // Outer container
-    this._initContainerEl(elContainer);
-    // TABLE
-    this._initTableEl(this._elContainer);
-    // COLGROUP
-    this._initColgroupEl(this._elTable);
-    // THEAD
-    this._initTheadEl(this._elTable);
-    
-    // Message TBODY
-    this._initMsgTbodyEl(this._elTable);  
-
-    // Primary TBODY
-    this._initTbodyEl(this._elTable);
-
-    if(!this._elContainer || !this._elTable || !this._elColgroup ||  !this._elThead || !this._elTbody || !this._elMsgTbody) {
-        return false;
-    }
-    else {
-        return true;
-    }
-},
-
-/**
- * Destroy's the DataTable outer container element, if available.
- *
- * @method _destroyContainerEl
- * @param elContainer {HTMLElement} Reference to the container element. 
- * @private
- */
-_destroyContainerEl : function(elContainer) {
-    Dom.removeClass(elContainer, DT.CLASS_DATATABLE);
-    Ev.purgeElement(elContainer, true);
-    elContainer.innerHTML = "";
-    
-    this._elContainer = null;
-    this._elColgroup = null;
-    this._elThead = null;
-    this._elTbody = null;
-},
-
-/**
- * Initializes the DataTable outer container element, including a mask.
- *
- * @method _initContainerEl
- * @param elContainer {HTMLElement | String} HTML DIV element by reference or ID.
- * @private
- */
-_initContainerEl : function(elContainer) {
-    // Validate container
-    elContainer = Dom.get(elContainer);
-    
-    if(elContainer && elContainer.nodeName && (elContainer.nodeName.toLowerCase() == "div")) {
-        // Destroy previous
-        this._destroyContainerEl(elContainer);
-
-        Dom.addClass(elContainer, DT.CLASS_DATATABLE);
-        Ev.addListener(elContainer, "focus", this._onTableFocus, this);
-        Ev.addListener(elContainer, "dblclick", this._onTableDblclick, this);
-        this._elContainer = elContainer;
-        
-        var elMask = document.createElement("div");
-        elMask.className = DT.CLASS_MASK;
-        elMask.style.display = "none";
-        this._elMask = elContainer.appendChild(elMask);
-    }
-},
-
-/**
- * Destroy's the DataTable TABLE element, if available.
- *
- * @method _destroyTableEl
- * @private
- */
-_destroyTableEl : function() {
-    var elTable = this._elTable;
-    if(elTable) {
-        Ev.purgeElement(elTable, true);
-        elTable.parentNode.removeChild(elTable);
-        this._elCaption = null;
-        this._elColgroup = null;
-        this._elThead = null;
-        this._elTbody = null;
-    }
-},
-
-/**
- * Creates HTML markup CAPTION element.
- *
- * @method _initCaptionEl
- * @param sCaption {String} Text for caption.
- * @private
- */
-_initCaptionEl : function(sCaption) {
-    if(this._elTable && sCaption) {
-        // Create CAPTION element
-        if(!this._elCaption) { 
-            this._elCaption = this._elTable.createCaption();
-        }
-        // Set CAPTION value
-        this._elCaption.innerHTML = sCaption;
-    }
-    else if(this._elCaption) {
-        this._elCaption.parentNode.removeChild(this._elCaption);
-    }
-},
-
-/**
- * Creates HTML markup for TABLE, COLGROUP, THEAD and TBODY elements in outer
- * container element.
- *
- * @method _initTableEl
- * @param elContainer {HTMLElement} Container element into which to create TABLE.
- * @private
- */
-_initTableEl : function(elContainer) {
-    if(elContainer) {
-        // Destroy previous
-        this._destroyTableEl();
-    
-        // Create TABLE
-        this._elTable = elContainer.appendChild(document.createElement("table"));  
-         
-        // Set SUMMARY attribute
-        this._elTable.summary = this.get("summary");
-        
-        // Create CAPTION element
-        if(this.get("caption")) {
-            this._initCaptionEl(this.get("caption"));
-        }
-    } 
-},
-
-/**
- * Destroy's the DataTable COLGROUP element, if available.
- *
- * @method _destroyColgroupEl
- * @private
- */
-_destroyColgroupEl : function() {
-    var elColgroup = this._elColgroup;
-    if(elColgroup) {
-        var elTable = elColgroup.parentNode;
-        Ev.purgeElement(elColgroup, true);
-        elTable.removeChild(elColgroup);
-        this._elColgroup = null;
-    }
-},
-
-/**
- * Initializes COLGROUP and COL elements for managing minWidth.
- *
- * @method _initColgroupEl
- * @param elTable {HTMLElement} TABLE element into which to create COLGROUP.
- * @private
- */
-_initColgroupEl : function(elTable) {
-    if(elTable) {
-        // Destroy previous
-        this._destroyColgroupEl();
-
-        // Add COLs to DOCUMENT FRAGMENT
-        var allCols = this._aColIds || [],
-            allKeys = this._oColumnSet.keys,
-            i = 0, len = allCols.length,
-            elCol, oColumn,
-            elFragment = document.createDocumentFragment(),
-            elColTemplate = document.createElement("col");
-    
-        for(i=0,len=allKeys.length; i<len; i++) {
-            oColumn = allKeys[i];
-            elCol = elFragment.appendChild(elColTemplate.cloneNode(false));
-        }
-    
-        // Create COLGROUP
-        var elColgroup = elTable.insertBefore(document.createElement("colgroup"), elTable.firstChild);
-        elColgroup.appendChild(elFragment);
-        this._elColgroup = elColgroup;
-    }
-},
-
-/**
- * Adds a COL element to COLGROUP at given index.
- *
- * @method _insertColgroupColEl
- * @param index {Number} Index of new COL element.
- * @private
- */
-_insertColgroupColEl : function(index) {
-    if(lang.isNumber(index)&& this._elColgroup) {
-        var nextSibling = this._elColgroup.childNodes[index] || null;
-        this._elColgroup.insertBefore(document.createElement("col"), nextSibling);
-    }
-},
-
-/**
- * Removes a COL element to COLGROUP at given index.
- *
- * @method _removeColgroupColEl
- * @param index {Number} Index of removed COL element.
- * @private
- */
-_removeColgroupColEl : function(index) {
-    if(lang.isNumber(index) && this._elColgroup && this._elColgroup.childNodes[index]) {
-        this._elColgroup.removeChild(this._elColgroup.childNodes[index]);
-    }
-},
-
-/**
- * Reorders a COL element from old index(es) to new index.
- *
- * @method _reorderColgroupColEl
- * @param aKeyIndexes {Number[]} Array of indexes of removed COL element.
- * @param newIndex {Number} New index. 
- * @private
- */
-_reorderColgroupColEl : function(aKeyIndexes, newIndex) {
-    if(lang.isArray(aKeyIndexes) && lang.isNumber(newIndex) && this._elColgroup && (this._elColgroup.childNodes.length > aKeyIndexes[aKeyIndexes.length-1])) {
-        var i,
-            tmpCols = [];
-        // Remove COL
-        for(i=aKeyIndexes.length-1; i>-1; i--) {
-            tmpCols.push(this._elColgroup.removeChild(this._elColgroup.childNodes[aKeyIndexes[i]]));
-        }
-        // Insert COL
-        var nextSibling = this._elColgroup.childNodes[newIndex] || null;
-        for(i=tmpCols.length-1; i>-1; i--) {
-            this._elColgroup.insertBefore(tmpCols[i], nextSibling);
-        }
-    }
-},
-
-/**
- * Destroy's the DataTable THEAD element, if available.
- *
- * @method _destroyTheadEl
- * @private
- */
-_destroyTheadEl : function() {
-    var elThead = this._elThead;
-    if(elThead) {
-        var elTable = elThead.parentNode;
-        Ev.purgeElement(elThead, true);
-        this._destroyColumnHelpers();
-        elTable.removeChild(elThead);
-        this._elThead = null;
-    }
-},
-
-/**
- * Initializes THEAD element.
- *
- * @method _initTheadEl
- * @param elTable {HTMLElement} TABLE element into which to create COLGROUP.
- * @param {HTMLElement} Initialized THEAD element. 
- * @private
- */
-_initTheadEl : function(elTable) {
-    elTable = elTable || this._elTable;
-    
-    if(elTable) {
-        // Destroy previous
-        this._destroyTheadEl();
-    
-        //TODO: append to DOM later for performance
-        var elThead = (this._elColgroup) ?
-            elTable.insertBefore(document.createElement("thead"), this._elColgroup.nextSibling) :
-            elTable.appendChild(document.createElement("thead"));
-    
-        // Set up DOM events for THEAD
-        Ev.addListener(elThead, "focus", this._onTheadFocus, this);
-        Ev.addListener(elThead, "keydown", this._onTheadKeydown, this);
-        Ev.addListener(elThead, "mouseover", this._onTableMouseover, this);
-        Ev.addListener(elThead, "mouseout", this._onTableMouseout, this);
-        Ev.addListener(elThead, "mousedown", this._onTableMousedown, this);
-        Ev.addListener(elThead, "mouseup", this._onTableMouseup, this);
-        Ev.addListener(elThead, "click", this._onTheadClick, this);
-
-        // Since we can't listen for click and dblclick on the same element...
-        // Attach separately to THEAD and TBODY
-        ///Ev.addListener(elThead, "dblclick", this._onTableDblclick, this);
-        
-       var oColumnSet = this._oColumnSet,
-            oColumn, i,j, l;
-        
-        // Add TRs to the THEAD
-        var colTree = oColumnSet.tree;
-        var elTh;
-        for(i=0; i<colTree.length; i++) {
-            var elTheadTr = elThead.appendChild(document.createElement("tr"));
-    
-            // ...and create TH cells
-            for(j=0; j<colTree[i].length; j++) {
-                oColumn = colTree[i][j];
-                elTh = elTheadTr.appendChild(document.createElement("th"));
-                this._initThEl(elTh,oColumn);
-            }
-    
-                // Set FIRST/LAST on THEAD rows
-                if(i === 0) {
-                    Dom.addClass(elTheadTr, DT.CLASS_FIRST);
-                }
-                if(i === (colTree.length-1)) {
-                    Dom.addClass(elTheadTr, DT.CLASS_LAST);
-                }
-
-        }
-
-        // Set FIRST/LAST on edge TH elements using the values in ColumnSet headers array
-        var aFirstHeaders = oColumnSet.headers[0] || [];
-        for(i=0; i<aFirstHeaders.length; i++) {
-            Dom.addClass(Dom.get(this.getId() +"-th-"+aFirstHeaders[i]), DT.CLASS_FIRST);
-        }
-        var aLastHeaders = oColumnSet.headers[oColumnSet.headers.length-1] || [];
-        for(i=0; i<aLastHeaders.length; i++) {
-            Dom.addClass(Dom.get(this.getId() +"-th-"+aLastHeaders[i]), DT.CLASS_LAST);
-        }
-        
-
-        ///TODO: try _repaintGecko(this._elContainer) instead
-        // Bug 1806891
-        if(ua.webkit && ua.webkit < 420) {
-            var oSelf = this;
-            setTimeout(function() {
-                elThead.style.display = "";
-            },0);
-            elThead.style.display = 'none';
-        }
-        
-        this._elThead = elThead;
-        
-        // Column helpers needs _elThead to exist
-        this._initColumnHelpers();  
-    }
-},
-
-/**
- * Populates TH element as defined by Column.
- *
- * @method _initThEl
- * @param elTh {HTMLElement} TH element reference.
- * @param oColumn {YAHOO.widget.Column} Column object.
- * @private
- */
-_initThEl : function(elTh, oColumn) {
-    elTh.id = this.getId() + "-th-" + oColumn.getSanitizedKey(); // Needed for accessibility, getColumn by TH, and ColumnDD
-    elTh.innerHTML = "";
-    elTh.rowSpan = oColumn.getRowspan();
-    elTh.colSpan = oColumn.getColspan();
-    oColumn._elTh = elTh;
-    
-    var elThLiner = elTh.appendChild(document.createElement("div"));
-    elThLiner.id = elTh.id + "-liner"; // Needed for resizer
-    elThLiner.className = DT.CLASS_LINER;
-    oColumn._elThLiner = elThLiner;
-    
-    var elThLabel = elThLiner.appendChild(document.createElement("span"));
-    elThLabel.className = DT.CLASS_LABEL;    
-
-    // Assign abbr attribute
-    if(oColumn.abbr) {
-        elTh.abbr = oColumn.abbr;
-    }
-    // Clear minWidth on hidden Columns
-    if(oColumn.hidden) {
-        this._clearMinWidth(oColumn);
-    }
-        
-    elTh.className = this._getColumnClassNames(oColumn);
-            
-    // Set Column width for non fallback cases
-    if(oColumn.width && !this._bDynStylesFallback) {
-        // Validate minWidth
-        var nWidth = (oColumn.minWidth && (oColumn.width < oColumn.minWidth)) ?
-                oColumn.minWidth : oColumn.width;
-        this._setColumnWidthDynStyles(oColumn, nWidth + 'px', 'hidden');
-    }
-
-    this.formatTheadCell(elThLabel, oColumn, this.get("sortedBy"));
-    oColumn._elThLabel = elThLabel;
-},
-
-/**
- * Outputs markup into the given TH based on given Column.
- *
- * @method DataTable.formatTheadCell
- * @param elCellLabel {HTMLElement} The label SPAN element within the TH liner,
- * not the liner DIV element.     
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param oSortedBy {Object} Sort state object literal.
-*/
-formatTheadCell : function(elCellLabel, oColumn, oSortedBy) {
-    var sKey = oColumn.getKey();
-    var sLabel = lang.isValue(oColumn.label) ? oColumn.label : sKey;
-
-    // Add accessibility link for sortable Columns
-    if(oColumn.sortable) {
-        // Calculate the direction
-        var sSortClass = this.getColumnSortDir(oColumn, oSortedBy);
-        var bDesc = (sSortClass === DT.CLASS_DESC);
-
-        // This is the sorted Column
-        if(oSortedBy && (oColumn.key === oSortedBy.key)) {
-            bDesc = !(oSortedBy.dir === DT.CLASS_DESC);
-        }
-
-        // Generate a unique HREF for visited status
-        var sHref = this.getId() + "-href-" + oColumn.getSanitizedKey();
-        
-        // Generate a dynamic TITLE for sort status
-        var sTitle = (bDesc) ? this.get("MSG_SORTDESC") : this.get("MSG_SORTASC");
-        
-        // Format the element
-        elCellLabel.innerHTML = "<a href=\"" + sHref + "\" title=\"" + sTitle + "\" class=\"" + DT.CLASS_SORTABLE + "\">" + sLabel + "</a>";
-    }
-    // Just display the label for non-sortable Columns
-    else {
-        elCellLabel.innerHTML = sLabel;
-    }
-},
-
-/**
- * Disables DD from top-level Column TH elements.
- *
- * @method _destroyDraggableColumns
- * @private
- */
-_destroyDraggableColumns : function() {
-    var oColumn, elTh;
-    for(var i=0, len=this._oColumnSet.tree[0].length; i<len; i++) {
-        oColumn = this._oColumnSet.tree[0][i];
-        if(oColumn._dd) {
-            oColumn._dd = oColumn._dd.unreg();
-            Dom.removeClass(oColumn.getThEl(), DT.CLASS_DRAGGABLE);       
-        }
-    }
-},
-
-/**
- * Initializes top-level Column TH elements into DD instances.
- *
- * @method _initDraggableColumns
- * @private
- */
-_initDraggableColumns : function() {
-    this._destroyDraggableColumns();
-    if(util.DD) {
-        var oColumn, elTh, elDragTarget;
-        for(var i=0, len=this._oColumnSet.tree[0].length; i<len; i++) {
-            oColumn = this._oColumnSet.tree[0][i];
-            elTh = oColumn.getThEl();
-            Dom.addClass(elTh, DT.CLASS_DRAGGABLE);
-            elDragTarget = DT._initColumnDragTargetEl();
-            oColumn._dd = new YAHOO.widget.ColumnDD(this, oColumn, elTh, elDragTarget);
-        }
-    }
-    else {
-    }
-},
-
-/**
- * Disables resizeability on key Column TH elements.
- *
- * @method _destroyResizeableColumns
- * @private
- */
-_destroyResizeableColumns : function() {
-    var aKeys = this._oColumnSet.keys;
-    for(var i=0, len=aKeys.length; i<len; i++) {
-        if(aKeys[i]._ddResizer) {
-            aKeys[i]._ddResizer = aKeys[i]._ddResizer.unreg();
-            Dom.removeClass(aKeys[i].getThEl(), DT.CLASS_RESIZEABLE);
-        }
-    }
-},
-
-/**
- * Initializes resizeability on key Column TH elements.
- *
- * @method _initResizeableColumns
- * @private
- */
-_initResizeableColumns : function() {
-    this._destroyResizeableColumns();
-    if(util.DD) {
-        var oColumn, elTh, elThLiner, elThResizerLiner, elThResizer, elResizerProxy, cancelClick;
-        for(var i=0, len=this._oColumnSet.keys.length; i<len; i++) {
-            oColumn = this._oColumnSet.keys[i];
-            if(oColumn.resizeable) {
-                elTh = oColumn.getThEl();
-                Dom.addClass(elTh, DT.CLASS_RESIZEABLE);
-                elThLiner = oColumn.getThLinerEl();
-                
-                // Bug 1915349: So resizer is as tall as TH when rowspan > 1
-                // Create a separate resizer liner with position:relative
-                elThResizerLiner = elTh.appendChild(document.createElement("div"));
-                elThResizerLiner.className = DT.CLASS_RESIZERLINER;
-                
-                // Move TH contents into the new resizer liner
-                elThResizerLiner.appendChild(elThLiner);
-                
-                // Create the resizer
-                elThResizer = elThResizerLiner.appendChild(document.createElement("div"));
-                elThResizer.id = elTh.id + "-resizer"; // Needed for ColumnResizer
-                elThResizer.className = DT.CLASS_RESIZER;
-                oColumn._elResizer = elThResizer;
-
-                // Create the resizer proxy, once globally
-                elResizerProxy = DT._initColumnResizerProxyEl();
-                oColumn._ddResizer = new YAHOO.util.ColumnResizer(
-                        this, oColumn, elTh, elThResizer, elResizerProxy);
-                cancelClick = function(e) {
-                    Ev.stopPropagation(e);
-                };
-                Ev.addListener(elThResizer,"click",cancelClick);
-            }
-        }
-    }
-    else {
-    }
-},
-
-/**
- * Destroys elements associated with Column functionality: ColumnDD and ColumnResizers.
- *
- * @method _destroyColumnHelpers
- * @private
- */
-_destroyColumnHelpers : function() {
-    this._destroyDraggableColumns();
-    this._destroyResizeableColumns();
-},
-
-/**
- * Initializes elements associated with Column functionality: ColumnDD and ColumnResizers.
- *
- * @method _initColumnHelpers
- * @private
- */
-_initColumnHelpers : function() {
-    if(this.get("draggableColumns")) {
-        this._initDraggableColumns();
-    }
-    this._initResizeableColumns();
-},
-
-/**
- * Destroy's the DataTable TBODY element, if available.
- *
- * @method _destroyTbodyEl
- * @private
- */
-_destroyTbodyEl : function() {
-    var elTbody = this._elTbody;
-    if(elTbody) {
-        var elTable = elTbody.parentNode;
-        Ev.purgeElement(elTbody, true);
-        elTable.removeChild(elTbody);
-        this._elTbody = null;
-    }
-},
-
-/**
- * Initializes TBODY element for data.
- *
- * @method _initTbodyEl
- * @param elTable {HTMLElement} TABLE element into which to create TBODY .
- * @private
- */
-_initTbodyEl : function(elTable) {
-    if(elTable) {
-        // Destroy previous
-        this._destroyTbodyEl();
-        
-        // Create TBODY
-        var elTbody = elTable.appendChild(document.createElement("tbody"));
-        elTbody.tabIndex = 0;
-        elTbody.className = DT.CLASS_DATA;
-    
-        // Set up DOM events for TBODY
-        Ev.addListener(elTbody, "focus", this._onTbodyFocus, this);
-        Ev.addListener(elTbody, "mouseover", this._onTableMouseover, this);
-        Ev.addListener(elTbody, "mouseout", this._onTableMouseout, this);
-        Ev.addListener(elTbody, "mousedown", this._onTableMousedown, this);
-        Ev.addListener(elTbody, "mouseup", this._onTableMouseup, this);
-        Ev.addListener(elTbody, "keydown", this._onTbodyKeydown, this);
-        Ev.addListener(elTbody, "keypress", this._onTableKeypress, this);
-        Ev.addListener(elTbody, "click", this._onTbodyClick, this);
-        
-        // Since we can't listen for click and dblclick on the same element...
-        // Attach separately to THEAD and TBODY
-        ///Ev.addListener(elTbody, "dblclick", this._onTableDblclick, this);
-        
-    
-        // IE puts focus outline in the wrong place
-        if(ua.ie) {
-            elTbody.hideFocus=true;
-        }
-
-        this._elTbody = elTbody;
-    }
-},
-
-/**
- * Destroy's the DataTable message TBODY element, if available.
- *
- * @method _destroyMsgTbodyEl
- * @private
- */
-_destroyMsgTbodyEl : function() {
-    var elMsgTbody = this._elMsgTbody;
-    if(elMsgTbody) {
-        var elTable = elMsgTbody.parentNode;
-        Ev.purgeElement(elMsgTbody, true);
-        elTable.removeChild(elMsgTbody);
-        this._elTbody = null;
-    }
-},
-
-/**
- * Initializes TBODY element for messaging.
- *
- * @method _initMsgTbodyEl
- * @param elTable {HTMLElement} TABLE element into which to create TBODY 
- * @private
- */
-_initMsgTbodyEl : function(elTable) {
-    if(elTable) {
-        var elMsgTbody = document.createElement("tbody");
-        elMsgTbody.className = DT.CLASS_MESSAGE;
-        var elMsgTr = elMsgTbody.appendChild(document.createElement("tr"));
-        elMsgTr.className = DT.CLASS_FIRST + " " + DT.CLASS_LAST;
-        this._elMsgTr = elMsgTr;
-        var elMsgTd = elMsgTr.appendChild(document.createElement("td"));
-        elMsgTd.colSpan = this._oColumnSet.keys.length;
-        elMsgTd.className = DT.CLASS_FIRST + " " + DT.CLASS_LAST;
-        this._elMsgTd = elMsgTd;
-        elMsgTbody = elTable.insertBefore(elMsgTbody, this._elTbody);
-        var elMsgLiner = elMsgTd.appendChild(document.createElement("div"));
-        elMsgLiner.className = DT.CLASS_LINER;
-        this._elMsgTbody = elMsgTbody;
-    }
-},
-
-/**
- * Initialize internal event listeners
- *
- * @method _initEvents
- * @private
- */
-_initEvents : function () {
-    // Initialize Column sort
-    this._initColumnSort();
-        
-    // Add the document level click listener
-    YAHOO.util.Event.addListener(document, "click", this._onDocumentClick, this);
-
-    // Paginator integration
-    this.subscribe("paginatorChange",function () {
-        this._handlePaginatorChange.apply(this,arguments);
-    });
-
-    this.subscribe("initEvent",function () {
-        this.renderPaginator();
-    });
-
-    // Initialize CellEditor integration
-    this._initCellEditing();
-},
-
-/** 	 
-  * Initializes Column sorting. 	 
-  * 	 
-  * @method _initColumnSort 	 
-  * @private 	 
-  */ 	 
-_initColumnSort : function() {
-    this.subscribe("theadCellClickEvent", this.onEventSortColumn); 	 
-
-    // Backward compatibility
-    var oSortedBy = this.get("sortedBy");
-    if(oSortedBy) {
-        if(oSortedBy.dir == "desc") {
-            this._configs.sortedBy.value.dir = DT.CLASS_DESC;
-        }
-        else if(oSortedBy.dir == "asc") {
-            this._configs.sortedBy.value.dir = DT.CLASS_ASC;
-        }
-    }
-},
-
-/** 	 
-  * Initializes CellEditor integration. 	 
-  * 	 
-  * @method _initCellEditing 	 
-  * @private 	 
-  */ 	 
-_initCellEditing : function() {
-    this.subscribe("editorBlurEvent",function () {
-        this.onEditorBlurEvent.apply(this,arguments);
-    });
-    this.subscribe("editorBlockEvent",function () {
-        this.onEditorBlockEvent.apply(this,arguments);
-    });
-    this.subscribe("editorUnblockEvent",function () {
-        this.onEditorUnblockEvent.apply(this,arguments);
-    });
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// DOM MUTATION FUNCTIONS
-
-/**
- * Retruns classnames to represent current Column states.
- * @method _getColumnClassnames 
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param aAddClasses {String[]} An array of additional classnames to add to the
- * return value.  
- * @return {String} A String of classnames to be assigned to TH or TD elements
- * for given Column.  
- * @private 
- */
-_getColumnClassNames : function (oColumn, aAddClasses) {
-    var allClasses;
-    
-    // Add CSS classes
-    if(lang.isString(oColumn.className)) {
-        // Single custom class
-        allClasses = [oColumn.className];
-    }
-    else if(lang.isArray(oColumn.className)) {
-        // Array of custom classes
-        allClasses = oColumn.className;
-    }
-    else {
-        // no custom classes
-        allClasses = [];
-    }
-    
-    // Hook for setting width with via dynamic style uses key since ID is too disposable
-    allClasses[allClasses.length] = this.getId() + "-col-" +oColumn.getSanitizedKey();
-
-    // Column key - minus any chars other than "A-Z", "a-z", "0-9", "_", "-", ".", or ":"
-    allClasses[allClasses.length] = "yui-dt-col-" +oColumn.getSanitizedKey();
-
-    var isSortedBy = this.get("sortedBy") || {};
-    // Sorted
-    if(oColumn.key === isSortedBy.key) {
-        allClasses[allClasses.length] = isSortedBy.dir || '';
-    }
-    // Hidden
-    if(oColumn.hidden) {
-        allClasses[allClasses.length] = DT.CLASS_HIDDEN;
-    }
-    // Selected
-    if(oColumn.selected) {
-        allClasses[allClasses.length] = DT.CLASS_SELECTED;
-    }
-    // Sortable
-    if(oColumn.sortable) {
-        allClasses[allClasses.length] = DT.CLASS_SORTABLE;
-    }
-    // Resizeable
-    if(oColumn.resizeable) {
-        allClasses[allClasses.length] = DT.CLASS_RESIZEABLE;
-    }
-    // Editable
-    if(oColumn.editor) {
-        allClasses[allClasses.length] = DT.CLASS_EDITABLE;
-    }
-    
-    // Addtnl classes, including First/Last
-    if(aAddClasses) {
-        allClasses = allClasses.concat(aAddClasses);
-    }
-    
-    return allClasses.join(' ');  
-},
-
-/**
- * Clears TR element template in response to any Column state change.
- * @method _clearTrTemplateEl
- * @private 
- */
-_clearTrTemplateEl : function () {
-    this._elTrTemplate = null;
-},
-
-/**
- * Returns a new TR element template with TD elements classed with current
- * Column states.
- * @method _getTrTemplateEl 
- * @return {HTMLElement} A TR element to be cloned and added to the DOM.
- * @private 
- */
-_getTrTemplateEl : function (oRecord, index) {
-    // Template is already available
-    if(this._elTrTemplate) {
-        return this._elTrTemplate;
-    }
-    // Template needs to be created
-    else {
-        var d   = document,
-            tr  = d.createElement('tr'),
-            td  = d.createElement('td'),
-            div = d.createElement('div');
-    
-        // Append the liner element
-        td.appendChild(div);
-
-        // Create TD elements into DOCUMENT FRAGMENT
-        var df = document.createDocumentFragment(),
-            allKeys = this._oColumnSet.keys,
-            elTd;
-
-        // Set state for each TD;
-        var aAddClasses;
-        for(var i=0, keysLen=allKeys.length; i<keysLen; i++) {
-            // Clone the TD template
-            elTd = td.cloneNode(true);
-
-            // Format the base TD
-            elTd = this._formatTdEl(allKeys[i], elTd, i, (i===keysLen-1));
-                        
-            df.appendChild(elTd);
-        }
-        tr.appendChild(df);
-        this._elTrTemplate = tr;
-        return tr;
-    }   
-},
-
-/**
- * Formats a basic TD element.
- * @method _formatTdEl 
- * @param oColumn {YAHOO.widget.Column} Associated Column instance. 
- * @param elTd {HTMLElement} An unformatted TD element.
- * @param index {Number} Column key index. 
- * @param isLast {Boolean} True if Column is last key of the ColumnSet.
- * @return {HTMLElement} A formatted TD element.
- * @private 
- */
-_formatTdEl : function (oColumn, elTd, index, isLast) {
-    var oColumnSet = this._oColumnSet;
-    
-    // Set the TD's accessibility headers
-    var allHeaders = oColumnSet.headers,
-        allColHeaders = allHeaders[index],
-        sTdHeaders = "",
-        sHeader;
-    for(var j=0, headersLen=allColHeaders.length; j < headersLen; j++) {
-        sHeader = this._sId + "-th-" + allColHeaders[j] + ' ';
-        sTdHeaders += sHeader;
-    }
-    elTd.headers = sTdHeaders;
-    
-    // Class the TD element
-    var aAddClasses = [];
-    if(index === 0) {
-        aAddClasses[aAddClasses.length] = DT.CLASS_FIRST;
-    }
-    if(isLast) {
-        aAddClasses[aAddClasses.length] = DT.CLASS_LAST;
-    }
-    elTd.className = this._getColumnClassNames(oColumn, aAddClasses);
-
-    // Class the liner element
-    elTd.firstChild.className = DT.CLASS_LINER;
-
-    // Set Column width for fallback cases
-    if(oColumn.width && this._bDynStylesFallback) {
-        // Validate minWidth
-        var nWidth = (oColumn.minWidth && (oColumn.width < oColumn.minWidth)) ?
-                oColumn.minWidth : oColumn.width;
-        elTd.firstChild.style.overflow = 'hidden';
-        elTd.firstChild.style.width = nWidth + 'px';
-    }
-    
-    return elTd;
-},
-
-
-/**
- * Create a new TR element for a given Record and appends it with the correct
- * number of Column-state-classed TD elements. Striping is the responsibility of
- * the calling function, which may decide to stripe the single row, a subset of
- * rows, or all the rows.
- * @method _createTrEl
- * @param oRecord {YAHOO.widget.Record} Record instance
- * @return {HTMLElement} The new TR element.  This must be added to the DOM.
- * @private 
- */
-_addTrEl : function (oRecord) {
-    var elTrTemplate = this._getTrTemplateEl();
-    
-    // Clone the TR template.
-    var elTr = elTrTemplate.cloneNode(true);
-    
-    // Populate content
-    return this._updateTrEl(elTr,oRecord);
-},
-
-/**
- * Formats the contents of the given TR's TD elements with data from the given
- * Record. Only innerHTML should change, nothing structural.
- *
- * @method _updateTrEl
- * @param elTr {HTMLElement} The TR element to update.
- * @param oRecord {YAHOO.widget.Record} The associated Record instance.
- * @return {HTMLElement} DOM reference to the new TR element.
- * @private
- */
-_updateTrEl : function(elTr, oRecord) {
-    var ok = this.get("formatRow") ? this.get("formatRow")(elTr, oRecord) : true;
-    if(ok) {
-        // Hide the row to prevent constant reflows
-        elTr.style.display = 'none';
-        
-        // Update TD elements with new data
-        var allTds = elTr.childNodes,
-            elTd;
-        for(var i=0,len=allTds.length; i<len; ++i) {
-            elTd = allTds[i];
-            
-            // Set the cell content
-            this.formatCell(allTds[i].firstChild, oRecord, this._oColumnSet.keys[i]);
-        }
-        
-        // Redisplay the row for reflow
-        elTr.style.display = '';
-    }
-    
-    elTr.id = oRecord.getId(); // Needed for Record association and tracking of FIRST/LAST
-    return elTr;
-},
-
-
-/**
- * Deletes TR element by DOM reference or by DataTable page row index.
- *
- * @method _deleteTrEl
- * @param row {HTMLElement | Number} TR element reference or Datatable page row index.
- * @return {Boolean} Returns true if successful, else returns false.
- * @private
- */
-_deleteTrEl : function(row) {
-    var rowIndex;
-
-    // Get page row index for the element
-    if(!lang.isNumber(row)) {
-        rowIndex = Dom.get(row).sectionRowIndex;
-    }
-    else {
-        rowIndex = row;
-    }
-    if(lang.isNumber(rowIndex) && (rowIndex > -2) && (rowIndex < this._elTbody.rows.length)) {
-        // Cannot use tbody.deleteRow due to IE6 instability
-        //return this._elTbody.deleteRow(rowIndex);
-        return this._elTbody.removeChild(this.getTrEl(row));
-    }
-    else {
-        return null;
-    }
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// CSS/STATE FUNCTIONS
-
-
-
-
-/**
- * Removes the class YAHOO.widget.DataTable.CLASS_FIRST from the first TR element
- * of the DataTable page and updates internal tracker.
- *
- * @method _unsetFirstRow
- * @private
- */
-_unsetFirstRow : function() {
-    // Remove FIRST
-    if(this._sFirstTrId) {
-        Dom.removeClass(this._sFirstTrId, DT.CLASS_FIRST);
-        this._sFirstTrId = null;
-    }
-},
-
-/**
- * Assigns the class YAHOO.widget.DataTable.CLASS_FIRST to the first TR element
- * of the DataTable page and updates internal tracker.
- *
- * @method _setFirstRow
- * @private
- */
-_setFirstRow : function() {
-    this._unsetFirstRow();
-    var elTr = this.getFirstTrEl();
-    if(elTr) {
-        // Set FIRST
-        Dom.addClass(elTr, DT.CLASS_FIRST);
-        this._sFirstTrId = elTr.id;
-    }
-},
-
-/**
- * Removes the class YAHOO.widget.DataTable.CLASS_LAST from the last TR element
- * of the DataTable page and updates internal tracker.
- *
- * @method _unsetLastRow
- * @private
- */
-_unsetLastRow : function() {
-    // Unassign previous class
-    if(this._sLastTrId) {
-        Dom.removeClass(this._sLastTrId, DT.CLASS_LAST);
-        this._sLastTrId = null;
-    }   
-},
-
-/**
- * Assigns the class YAHOO.widget.DataTable.CLASS_LAST to the last TR element
- * of the DataTable page and updates internal tracker.
- *
- * @method _setLastRow
- * @private
- */
-_setLastRow : function() {
-    this._unsetLastRow();
-    var elTr = this.getLastTrEl();
-    if(elTr) {
-        // Assign class
-        Dom.addClass(elTr, DT.CLASS_LAST);
-        this._sLastTrId = elTr.id;
-    }
-},
-
-/**
- * Assigns the classes DT.CLASS_EVEN and DT.CLASS_ODD to one, many, or all TR elements.
- *
- * @method _setRowStripes
- * @param row {HTMLElement | String | Number} (optional) HTML TR element reference
- * or string ID, or page row index of where to start striping.
- * @param range {Number} (optional) If given, how many rows to stripe, otherwise
- * stripe all the rows until the end.
- * @private
- */
-_setRowStripes : function(row, range) {
-    // Default values stripe all rows
-    var allRows = this._elTbody.rows,
-        nStartIndex = 0,
-        nEndIndex = allRows.length,
-        aOdds = [], nOddIdx = 0,
-        aEvens = [], nEvenIdx = 0;
-
-    // Stripe a subset
-    if((row !== null) && (row !== undefined)) {
-        // Validate given start row
-        var elStartRow = this.getTrEl(row);
-        if(elStartRow) {
-            nStartIndex = elStartRow.sectionRowIndex;
-
-            // Validate given range
-            if(lang.isNumber(range) && (range > 1)) {
-                nEndIndex = nStartIndex + range;
-            }
-        }
-    }
-
-    for(var i=nStartIndex; i<nEndIndex; i++) {
-        if(i%2) {
-            aOdds[nOddIdx++] = allRows[i];
-        } else {
-            aEvens[nEvenIdx++] = allRows[i];
-        }
-    }
-
-    if (aOdds.length) {
-        Dom.replaceClass(aOdds, DT.CLASS_EVEN, DT.CLASS_ODD);
-    }
-
-    if (aEvens.length) {
-        Dom.replaceClass(aEvens, DT.CLASS_ODD, DT.CLASS_EVEN);
-    }
-},
-
-/**
- * Assigns the class DT.CLASS_SELECTED to TR and TD elements.
- *
- * @method _setSelections
- * @private
- */
-_setSelections : function() {
-    // Keep track of selected rows
-    var allSelectedRows = this.getSelectedRows();
-    // Keep track of selected cells
-    var allSelectedCells = this.getSelectedCells();
-    // Anything to select?
-    if((allSelectedRows.length>0) || (allSelectedCells.length > 0)) {
-        var oColumnSet = this._oColumnSet,
-            el;
-        // Loop over each row
-        for(var i=0; i<allSelectedRows.length; i++) {
-            el = Dom.get(allSelectedRows[i]);
-            if(el) {
-                Dom.addClass(el, DT.CLASS_SELECTED);
-            }
-        }
-        // Loop over each cell
-        for(i=0; i<allSelectedCells.length; i++) {
-            el = Dom.get(allSelectedCells[i].recordId);
-            if(el) {
-                Dom.addClass(el.childNodes[oColumnSet.getColumn(allSelectedCells[i].columnKey).getKeyIndex()], DT.CLASS_SELECTED);
-            }
-        }
-    }       
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private DOM Event Handlers
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Validates minWidths whenever the render chain ends.
- *
- * @method _onRenderChainEnd
- * @private
- */
-_onRenderChainEnd : function() {
-    // Hide loading message
-    this.hideTableMessage();
-    
-    // Show empty message
-    if(this._elTbody.rows.length === 0) {
-        this.showTableMessage(this.get("MSG_EMPTY"), DT.CLASS_EMPTY);        
-    }
-
-    // Execute in timeout thread to give implementers a chance
-    // to subscribe after the constructor
-    var oSelf = this;
-    setTimeout(function() {
-        if((oSelf instanceof DT) && oSelf._sId) {        
-            // Init event
-            if(oSelf._bInit) {
-                oSelf._bInit = false;
-                oSelf.fireEvent("initEvent");
-            }
-    
-            // Render event
-            oSelf.fireEvent("renderEvent");
-            // Backward compatibility
-            oSelf.fireEvent("refreshEvent");
-    
-            // Post-render routine
-            oSelf.validateColumnWidths();
-    
-            // Post-render event
-            oSelf.fireEvent("postRenderEvent");
-            
-            /*if(YAHOO.example.Performance.trialStart) {
-                YAHOO.example.Performance.trialStart = null;
-            }*/
-            
-        }
-    }, 0);
-},
-
-/**
- * Handles click events on the DOCUMENT.
- *
- * @method _onDocumentClick
- * @param e {HTMLEvent} The click event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onDocumentClick : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-
-    if(!Dom.isAncestor(oSelf._elContainer, elTarget)) {
-        oSelf.fireEvent("tableBlurEvent");
-
-        // Fires editorBlurEvent when click is not within the TABLE.
-        // For cases when click is within the TABLE, due to timing issues,
-        // the editorBlurEvent needs to get fired by the lower-level DOM click
-        // handlers below rather than by the TABLE click handler directly.
-        if(oSelf._oCellEditor) {
-            if(oSelf._oCellEditor.getContainerEl) {
-                var elContainer = oSelf._oCellEditor.getContainerEl();
-                // Only if the click was not within the CellEditor container
-                if(!Dom.isAncestor(elContainer, elTarget) &&
-                        (elContainer.id !== elTarget.id)) {
-                    oSelf._oCellEditor.fireEvent("blurEvent", {editor: oSelf._oCellEditor});
-                }
-            }
-            // Backward Compatibility
-            else if(oSelf._oCellEditor.isActive) {
-                // Only if the click was not within the Cell Editor container
-                if(!Dom.isAncestor(oSelf._oCellEditor.container, elTarget) &&
-                        (oSelf._oCellEditor.container.id !== elTarget.id)) {
-                    oSelf.fireEvent("editorBlurEvent", {editor:oSelf._oCellEditor});
-                }
-            }
-        }
-    }
-},
-
-/**
- * Handles focus events on the DataTable instance.
- *
- * @method _onTableFocus
- * @param e {HTMLEvent} The focus event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTableFocus : function(e, oSelf) {
-    oSelf.fireEvent("tableFocusEvent");
-},
-
-/**
- * Handles focus events on the THEAD element.
- *
- * @method _onTheadFocus
- * @param e {HTMLEvent} The focus event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTheadFocus : function(e, oSelf) {
-    oSelf.fireEvent("theadFocusEvent");
-    oSelf.fireEvent("tableFocusEvent");
-},
-
-/**
- * Handles focus events on the TBODY element.
- *
- * @method _onTbodyFocus
- * @param e {HTMLEvent} The focus event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTbodyFocus : function(e, oSelf) {
-    oSelf.fireEvent("tbodyFocusEvent");
-    oSelf.fireEvent("tableFocusEvent");
-},
-
-/**
- * Handles mouseover events on the DataTable instance.
- *
- * @method _onTableMouseover
- * @param e {HTMLEvent} The mouseover event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTableMouseover : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-        var elTag = elTarget.nodeName.toLowerCase();
-        var bKeepBubbling = true;
-        while(elTarget && (elTag != "table")) {
-            switch(elTag) {
-                case "body":
-                     return;
-                case "a":
-                    break;
-                case "td":
-                    bKeepBubbling = oSelf.fireEvent("cellMouseoverEvent",{target:elTarget,event:e});
-                    break;
-                case "span":
-                    if(Dom.hasClass(elTarget, DT.CLASS_LABEL)) {
-                        bKeepBubbling = oSelf.fireEvent("theadLabelMouseoverEvent",{target:elTarget,event:e});
-                        // Backward compatibility
-                        bKeepBubbling = oSelf.fireEvent("headerLabelMouseoverEvent",{target:elTarget,event:e});
-                    }
-                    break;
-                case "th":
-                    bKeepBubbling = oSelf.fireEvent("theadCellMouseoverEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerCellMouseoverEvent",{target:elTarget,event:e});
-                    break;
-                case "tr":
-                    if(elTarget.parentNode.nodeName.toLowerCase() == "thead") {
-                        bKeepBubbling = oSelf.fireEvent("theadRowMouseoverEvent",{target:elTarget,event:e});
-                        // Backward compatibility
-                        bKeepBubbling = oSelf.fireEvent("headerRowMouseoverEvent",{target:elTarget,event:e});
-                    }
-                    else {
-                        bKeepBubbling = oSelf.fireEvent("rowMouseoverEvent",{target:elTarget,event:e});
-                    }
-                    break;
-                default:
-                    break;
-            }
-            if(bKeepBubbling === false) {
-                return;
-            }
-            else {
-                elTarget = elTarget.parentNode;
-                if(elTarget) {
-                    elTag = elTarget.nodeName.toLowerCase();
-                }
-            }
-        }
-        oSelf.fireEvent("tableMouseoverEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles mouseout events on the DataTable instance.
- *
- * @method _onTableMouseout
- * @param e {HTMLEvent} The mouseout event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTableMouseout : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "a":
-                break;
-            case "td":
-                bKeepBubbling = oSelf.fireEvent("cellMouseoutEvent",{target:elTarget,event:e});
-                break;
-            case "span":
-                if(Dom.hasClass(elTarget, DT.CLASS_LABEL)) {
-                    bKeepBubbling = oSelf.fireEvent("theadLabelMouseoutEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerLabelMouseoutEvent",{target:elTarget,event:e});
-                }
-                break;
-            case "th":
-                bKeepBubbling = oSelf.fireEvent("theadCellMouseoutEvent",{target:elTarget,event:e});
-                // Backward compatibility
-                bKeepBubbling = oSelf.fireEvent("headerCellMouseoutEvent",{target:elTarget,event:e});
-                break;
-            case "tr":
-                if(elTarget.parentNode.nodeName.toLowerCase() == "thead") {
-                    bKeepBubbling = oSelf.fireEvent("theadRowMouseoutEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerRowMouseoutEvent",{target:elTarget,event:e});
-                }
-                else {
-                    bKeepBubbling = oSelf.fireEvent("rowMouseoutEvent",{target:elTarget,event:e});
-                }
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableMouseoutEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles mousedown events on the DataTable instance.
- *
- * @method _onTableMousedown
- * @param e {HTMLEvent} The mousedown event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTableMousedown : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "a":
-                break;
-            case "td":
-                bKeepBubbling = oSelf.fireEvent("cellMousedownEvent",{target:elTarget,event:e});
-                break;
-            case "span":
-                if(Dom.hasClass(elTarget, DT.CLASS_LABEL)) {
-                    bKeepBubbling = oSelf.fireEvent("theadLabelMousedownEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerLabelMousedownEvent",{target:elTarget,event:e});
-                }
-                break;
-            case "th":
-                bKeepBubbling = oSelf.fireEvent("theadCellMousedownEvent",{target:elTarget,event:e});
-                // Backward compatibility
-                bKeepBubbling = oSelf.fireEvent("headerCellMousedownEvent",{target:elTarget,event:e});
-                break;
-            case "tr":
-                if(elTarget.parentNode.nodeName.toLowerCase() == "thead") {
-                    bKeepBubbling = oSelf.fireEvent("theadRowMousedownEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerRowMousedownEvent",{target:elTarget,event:e});
-                }
-                else {
-                    bKeepBubbling = oSelf.fireEvent("rowMousedownEvent",{target:elTarget,event:e});
-                }
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableMousedownEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles mouseup events on the DataTable instance.
- *
- * @method _onTableMouseup
- * @param e {HTMLEvent} The mouseup event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTableMouseup : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "a":
-                break;
-            case "td":
-                bKeepBubbling = oSelf.fireEvent("cellMouseupEvent",{target:elTarget,event:e});
-                break;
-            case "span":
-                if(Dom.hasClass(elTarget, DT.CLASS_LABEL)) {
-                    bKeepBubbling = oSelf.fireEvent("theadLabelMouseupEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerLabelMouseupEvent",{target:elTarget,event:e});
-                }
-                break;
-            case "th":
-                bKeepBubbling = oSelf.fireEvent("theadCellMouseupEvent",{target:elTarget,event:e});
-                // Backward compatibility
-                bKeepBubbling = oSelf.fireEvent("headerCellMouseupEvent",{target:elTarget,event:e});
-                break;
-            case "tr":
-                if(elTarget.parentNode.nodeName.toLowerCase() == "thead") {
-                    bKeepBubbling = oSelf.fireEvent("theadRowMouseupEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerRowMouseupEvent",{target:elTarget,event:e});
-                }
-                else {
-                    bKeepBubbling = oSelf.fireEvent("rowMouseupEvent",{target:elTarget,event:e});
-                }
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableMouseupEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles dblclick events on the DataTable instance.
- *
- * @method _onTableDblclick
- * @param e {HTMLEvent} The dblclick event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTableDblclick : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "td":
-                bKeepBubbling = oSelf.fireEvent("cellDblclickEvent",{target:elTarget,event:e});
-                break;
-            case "span":
-                if(Dom.hasClass(elTarget, DT.CLASS_LABEL)) {
-                    bKeepBubbling = oSelf.fireEvent("theadLabelDblclickEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerLabelDblclickEvent",{target:elTarget,event:e});
-                }
-                break;
-            case "th":
-                bKeepBubbling = oSelf.fireEvent("theadCellDblclickEvent",{target:elTarget,event:e});
-                // Backward compatibility
-                bKeepBubbling = oSelf.fireEvent("headerCellDblclickEvent",{target:elTarget,event:e});
-                break;
-            case "tr":
-                if(elTarget.parentNode.nodeName.toLowerCase() == "thead") {
-                    bKeepBubbling = oSelf.fireEvent("theadRowDblclickEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerRowDblclickEvent",{target:elTarget,event:e});
-                }
-                else {
-                    bKeepBubbling = oSelf.fireEvent("rowDblclickEvent",{target:elTarget,event:e});
-                }
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableDblclickEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-/**
- * Handles keydown events on the THEAD element.
- *
- * @method _onTheadKeydown
- * @param e {HTMLEvent} The key event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTheadKeydown : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "input":
-            case "textarea":
-                // TODO: implement textareaKeyEvent
-                break;
-            case "thead":
-                bKeepBubbling = oSelf.fireEvent("theadKeyEvent",{target:elTarget,event:e});
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableKeyEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles keydown events on the TBODY element. Handles selection behavior,
- * provides hooks for ENTER to edit functionality.
- *
- * @method _onTbodyKeydown
- * @param e {HTMLEvent} The key event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTbodyKeydown : function(e, oSelf) {
-    var sMode = oSelf.get("selectionMode");
-
-    if(sMode == "standard") {
-        oSelf._handleStandardSelectionByKey(e);
-    }
-    else if(sMode == "single") {
-        oSelf._handleSingleSelectionByKey(e);
-    }
-    else if(sMode == "cellblock") {
-        oSelf._handleCellBlockSelectionByKey(e);
-    }
-    else if(sMode == "cellrange") {
-        oSelf._handleCellRangeSelectionByKey(e);
-    }
-    else if(sMode == "singlecell") {
-        oSelf._handleSingleCellSelectionByKey(e);
-    }
-    
-    if(oSelf._oCellEditor) {
-        if(oSelf._oCellEditor.fireEvent) {
-            oSelf._oCellEditor.fireEvent("blurEvent", {editor: oSelf._oCellEditor});
-        }
-        else if(oSelf._oCellEditor.isActive) {
-            oSelf.fireEvent("editorBlurEvent", {editor:oSelf._oCellEditor});
-        }
-    }
-
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "tbody":
-                bKeepBubbling = oSelf.fireEvent("tbodyKeyEvent",{target:elTarget,event:e});
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableKeyEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles keypress events on the TABLE. Mainly to support stopEvent on Mac.
- *
- * @method _onTableKeypress
- * @param e {HTMLEvent} The key event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTableKeypress : function(e, oSelf) {
-    if(ua.opera || (navigator.userAgent.toLowerCase().indexOf("mac") !== -1) && (ua.webkit < 420)) {
-        var nKey = Ev.getCharCode(e);
-        // arrow down
-        if(nKey == 40) {
-            Ev.stopEvent(e);
-        }
-        // arrow up
-        else if(nKey == 38) {
-            Ev.stopEvent(e);
-        }
-    }
-},
-
-/**
- * Handles click events on the THEAD element.
- *
- * @method _onTheadClick
- * @param e {HTMLEvent} The click event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTheadClick : function(e, oSelf) {
-    // This blurs the CellEditor
-    if(oSelf._oCellEditor) {
-        if(oSelf._oCellEditor.fireEvent) {
-            oSelf._oCellEditor.fireEvent("blurEvent", {editor: oSelf._oCellEditor});
-        }
-        // Backward compatibility
-        else if(oSelf._oCellEditor.isActive) {
-            oSelf.fireEvent("editorBlurEvent", {editor:oSelf._oCellEditor});
-        }
-    }
-
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "input":
-                if(elTarget.type.toLowerCase() == "checkbox") {
-                    bKeepBubbling = oSelf.fireEvent("theadCheckboxClickEvent",{target:elTarget,event:e});
-                }
-                else if(elTarget.type.toLowerCase() == "radio") {
-                    bKeepBubbling = oSelf.fireEvent("theadRadioClickEvent",{target:elTarget,event:e});
-                }
-                break;
-            case "a":
-                bKeepBubbling = oSelf.fireEvent("theadLinkClickEvent",{target:elTarget,event:e});
-                break;
-            case "button":
-                bKeepBubbling = oSelf.fireEvent("theadButtonClickEvent",{target:elTarget,event:e});
-                break;
-            case "span":
-                if(Dom.hasClass(elTarget, DT.CLASS_LABEL)) {
-                    bKeepBubbling = oSelf.fireEvent("theadLabelClickEvent",{target:elTarget,event:e});
-                    // Backward compatibility
-                    bKeepBubbling = oSelf.fireEvent("headerLabelClickEvent",{target:elTarget,event:e});
-                }
-                break;
-            case "th":
-                bKeepBubbling = oSelf.fireEvent("theadCellClickEvent",{target:elTarget,event:e});
-                // Backward compatibility
-                bKeepBubbling = oSelf.fireEvent("headerCellClickEvent",{target:elTarget,event:e});
-                break;
-            case "tr":
-                bKeepBubbling = oSelf.fireEvent("theadRowClickEvent",{target:elTarget,event:e});
-                // Backward compatibility
-                bKeepBubbling = oSelf.fireEvent("headerRowClickEvent",{target:elTarget,event:e});
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableClickEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles click events on the primary TBODY element.
- *
- * @method _onTbodyClick
- * @param e {HTMLEvent} The click event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onTbodyClick : function(e, oSelf) {
-    // This blurs the CellEditor
-    if(oSelf._oCellEditor) {
-        if(oSelf._oCellEditor.fireEvent) {
-            oSelf._oCellEditor.fireEvent("blurEvent", {editor: oSelf._oCellEditor});
-        }
-        else if(oSelf._oCellEditor.isActive) {
-            oSelf.fireEvent("editorBlurEvent", {editor:oSelf._oCellEditor});
-        }
-    }
-
-    // Fire Custom Events
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "input":
-                if(elTarget.type.toLowerCase() == "checkbox") {
-                    bKeepBubbling = oSelf.fireEvent("checkboxClickEvent",{target:elTarget,event:e});
-                }
-                else if(elTarget.type.toLowerCase() == "radio") {
-                    bKeepBubbling = oSelf.fireEvent("radioClickEvent",{target:elTarget,event:e});
-                }
-                break;
-            case "a":
-                bKeepBubbling = oSelf.fireEvent("linkClickEvent",{target:elTarget,event:e});
-                break;
-            case "button":
-                bKeepBubbling = oSelf.fireEvent("buttonClickEvent",{target:elTarget,event:e});
-                break;
-            case "td":
-                bKeepBubbling = oSelf.fireEvent("cellClickEvent",{target:elTarget,event:e});
-                break;
-            case "tr":
-                bKeepBubbling = oSelf.fireEvent("rowClickEvent",{target:elTarget,event:e});
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableClickEvent",{target:(elTarget || oSelf._elContainer),event:e});
-},
-
-/**
- * Handles change events on SELECT elements within DataTable.
- *
- * @method _onDropdownChange
- * @param e {HTMLEvent} The change event.
- * @param oSelf {YAHOO.wiget.DataTable} DataTable instance.
- * @private
- */
-_onDropdownChange : function(e, oSelf) {
-    var elTarget = Ev.getTarget(e);
-    oSelf.fireEvent("dropdownChangeEvent", {event:e, target:elTarget});
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Returns object literal of initial configs.
- *
- * @property configs
- * @type Object
- * @default {} 
- */
-configs: null,
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Returns unique id assigned to instance, which is a useful prefix for
- * generating unique DOM ID strings.
- *
- * @method getId
- * @return {String} Unique ID of the DataSource instance.
- */
-getId : function() {
-    return this._sId;
-},
-
-/**
- * DataSource instance name, for logging.
- *
- * @method toString
- * @return {String} Unique name of the DataSource instance.
- */
-
-toString : function() {
-    return "DataTable instance " + this._sId;
-},
-
-/**
- * Returns the DataTable instance's DataSource instance.
- *
- * @method getDataSource
- * @return {YAHOO.util.DataSource} DataSource instance.
- */
-getDataSource : function() {
-    return this._oDataSource;
-},
-
-/**
- * Returns the DataTable instance's ColumnSet instance.
- *
- * @method getColumnSet
- * @return {YAHOO.widget.ColumnSet} ColumnSet instance.
- */
-getColumnSet : function() {
-    return this._oColumnSet;
-},
-
-/**
- * Returns the DataTable instance's RecordSet instance.
- *
- * @method getRecordSet
- * @return {YAHOO.widget.RecordSet} RecordSet instance.
- */
-getRecordSet : function() {
-    return this._oRecordSet;
-},
-
-/**
- * Returns on object literal representing the DataTable instance's current
- * state with the following properties:
- * <dl>
- * <dt>pagination</dt>
- * <dd>Instance of YAHOO.widget.Paginator</dd>
- *
- * <dt>sortedBy</dt>
- * <dd>
- *     <dl>
- *         <dt>sortedBy.key</dt>
- *         <dd>{String} Key of sorted Column</dd>
- *         <dt>sortedBy.dir</dt>
- *         <dd>{String} Initial sort direction, either YAHOO.widget.DataTable.CLASS_ASC or YAHOO.widget.DataTable.CLASS_DESC</dd>
- *     </dl>
- * </dd>
- *
- * <dt>selectedRows</dt>
- * <dd>Array of selected rows by Record ID.</dd>
- *
- * <dt>selectedCells</dt>
- * <dd>Selected cells as an array of object literals:
- *     {recordId:sRecordId, columnKey:sColumnKey}</dd>
- * </dl>
- *  
- * @method getState
- * @return {Object} DataTable instance state object literal values.
- */
-getState : function() {
-    return {
-        totalRecords: this.get('paginator') ? this.get('paginator').get("totalRecords") : this._oRecordSet.getLength(),
-        pagination: this.get("paginator") ? this.get("paginator").getState() : null,
-        sortedBy: this.get("sortedBy"),
-        selectedRows: this.getSelectedRows(),
-        selectedCells: this.getSelectedCells()
-    };
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// DOM ACCESSORS
-
-/**
- * Returns DOM reference to the DataTable's container element.
- *
- * @method getContainerEl
- * @return {HTMLElement} Reference to DIV element.
- */
-getContainerEl : function() {
-    return this._elContainer;
-},
-
-/**
- * Returns DOM reference to the DataTable's TABLE element.
- *
- * @method getTableEl
- * @return {HTMLElement} Reference to TABLE element.
- */
-getTableEl : function() {
-    return this._elTable;
-},
-
-/**
- * Returns DOM reference to the DataTable's THEAD element.
- *
- * @method getTheadEl
- * @return {HTMLElement} Reference to THEAD element.
- */
-getTheadEl : function() {
-    return this._elThead;
-},
-
-/**
- * Returns DOM reference to the DataTable's primary TBODY element.
- *
- * @method getTbodyEl
- * @return {HTMLElement} Reference to TBODY element.
- */
-getTbodyEl : function() {
-    return this._elTbody;
-},
-
-/**
- * Returns DOM reference to the DataTable's secondary TBODY element that is
- * used to display messages.
- *
- * @method getMsgTbodyEl
- * @return {HTMLElement} Reference to TBODY element.
- */
-getMsgTbodyEl : function() {
-    return this._elMsgTbody;
-},
-
-/**
- * Returns DOM reference to the TD element within the secondary TBODY that is
- * used to display messages.
- *
- * @method getMsgTdEl
- * @return {HTMLElement} Reference to TD element.
- */
-getMsgTdEl : function() {
-    return this._elMsgTd;
-},
-
-/**
- * Returns the corresponding TR reference for a given DOM element, ID string or
- * directly page row index. If the given identifier is a child of a TR element,
- * then DOM tree is traversed until a parent TR element is returned, otherwise
- * null.
- *
- * @method getTrEl
- * @param row {HTMLElement | String | Number | YAHOO.widget.Record} Which row to
- * get: by element reference, ID string, page row index, or Record.
- * @return {HTMLElement} Reference to TR element, or null.
- */
-getTrEl : function(row) {
-    // By Record
-    if(row instanceof YAHOO.widget.Record) {
-        return document.getElementById(row.getId());
-    }
-    // By page row index
-    else if(lang.isNumber(row)) {
-        var allRows = this._elTbody.rows;
-        return ((row > -1) && (row < allRows.length)) ? allRows[row] : null;
-    }
-    // By ID string or element reference
-    else {
-        var elRow = (lang.isString(row)) ? document.getElementById(row) : row;
-
-        // Validate HTML element
-        if(elRow && (elRow.ownerDocument == document)) {
-            // Validate TR element
-            if(elRow.nodeName.toLowerCase() != "tr") {
-                // Traverse up the DOM to find the corresponding TR element
-                elRow = Dom.getAncestorByTagName(elRow,"tr");
-            }
-
-            // Make sure the TR is in this TBODY
-            if(elRow && (elRow.parentNode == this._elTbody)) {
-                // Now we can return the TR element
-                return elRow;
-            }
-        }
-    }
-
-    return null;
-},
-
-/**
- * Returns DOM reference to the first TR element in the DataTable page, or null.
- *
- * @method getFirstTrEl
- * @return {HTMLElement} Reference to TR element.
- */
-getFirstTrEl : function() {
-    return this._elTbody.rows[0] || null;
-},
-
-/**
- * Returns DOM reference to the last TR element in the DataTable page, or null.
- *
- * @method getLastTrEl
- * @return {HTMLElement} Reference to last TR element.
- */
-getLastTrEl : function() {
-    var allRows = this._elTbody.rows;
-        if(allRows.length > 0) {
-            return allRows[allRows.length-1] || null;
-        }
-},
-
-/**
- * Returns DOM reference to the next TR element from the given TR element, or null.
- *
- * @method getNextTrEl
- * @param row {HTMLElement | String | Number | YAHOO.widget.Record} Element
- * reference, ID string, page row index, or Record from which to get next TR element.
- * @return {HTMLElement} Reference to next TR element.
- */
-getNextTrEl : function(row) {
-    var nThisTrIndex = this.getTrIndex(row);
-    if(nThisTrIndex !== null) {
-        var allRows = this._elTbody.rows;
-        if(nThisTrIndex < allRows.length-1) {
-            return allRows[nThisTrIndex+1];
-        }
-    }
-
-    return null;
-},
-
-/**
- * Returns DOM reference to the previous TR element from the given TR element, or null.
- *
- * @method getPreviousTrEl
- * @param row {HTMLElement | String | Number | YAHOO.widget.Record} Element
- * reference, ID string, page row index, or Record from which to get previous TR element.
- * @return {HTMLElement} Reference to previous TR element.
- */
-getPreviousTrEl : function(row) {
-    var nThisTrIndex = this.getTrIndex(row);
-    if(nThisTrIndex !== null) {
-        var allRows = this._elTbody.rows;
-        if(nThisTrIndex > 0) {
-            return allRows[nThisTrIndex-1];
-        }
-    }
-
-    return null;
-},
-
-/**
- * Returns DOM reference to a TD liner element.
- *
- * @method getTdLinerEl
- * @param cell {HTMLElement | Object} TD element or child of a TD element, or
- * object literal of syntax {record:oRecord, column:oColumn}.
- * @return {HTMLElement} Reference to TD liner element.
- */
-getTdLinerEl : function(cell) {
-    var elCell = this.getTdEl(cell);
-    return elCell.firstChild || null;
-},
-
-/**
- * Returns DOM reference to a TD element.
- *
- * @method getTdEl
- * @param cell {HTMLElement | String | Object} TD element or child of a TD element, or
- * object literal of syntax {record:oRecord, column:oColumn}.
- * @return {HTMLElement} Reference to TD element.
- */
-getTdEl : function(cell) {
-    var elCell;
-    var el = Dom.get(cell);
-
-    // Validate HTML element
-    if(el && (el.ownerDocument == document)) {
-        // Validate TD element
-        if(el.nodeName.toLowerCase() != "td") {
-            // Traverse up the DOM to find the corresponding TR element
-            elCell = Dom.getAncestorByTagName(el, "td");
-        }
-        else {
-            elCell = el;
-        }
-
-        // Make sure the TD is in this TBODY
-        if(elCell && (elCell.parentNode.parentNode == this._elTbody)) {
-            // Now we can return the TD element
-            return elCell;
-        }
-    }
-    else if(cell) {
-        var oRecord, nColKeyIndex;
-
-        if(lang.isString(cell.columnKey) && lang.isString(cell.recordId)) {
-            oRecord = this.getRecord(cell.recordId);
-            var oColumn = this.getColumn(cell.columnKey);
-            if(oColumn) {
-                nColKeyIndex = oColumn.getKeyIndex();
-            }
-
-        }
-        if(cell.record && cell.column && cell.column.getKeyIndex) {
-            oRecord = cell.record;
-            nColKeyIndex = cell.column.getKeyIndex();
-        }
-        var elRow = this.getTrEl(oRecord);
-        if((nColKeyIndex !== null) && elRow && elRow.cells && elRow.cells.length > 0) {
-            return elRow.cells[nColKeyIndex] || null;
-        }
-    }
-
-    return null;
-},
-
-/**
- * Returns DOM reference to the first TD element in the DataTable page (by default),
- * the first TD element of the optionally given row, or null.
- *
- * @method getFirstTdEl
- * @param row {HTMLElement} (optional) row from which to get first TD
- * @return {HTMLElement} Reference to TD element.
- */
-getFirstTdEl : function(row) {
-    var elRow = this.getTrEl(row) || this.getFirstTrEl();
-    if(elRow && (elRow.cells.length > 0)) {
-        return elRow.cells[0];
-    }
-    return null;
-},
-
-/**
- * Returns DOM reference to the last TD element in the DataTable page (by default),
- * the first TD element of the optionally given row, or null.
- *
- * @method getLastTdEl
- * @return {HTMLElement} Reference to last TD element.
- */
-getLastTdEl : function(row) {
-    var elRow = this.getTrEl(row) || this.getLastTrEl();
-    if(elRow && (elRow.cells.length > 0)) {
-        return elRow.cells[elRow.cells.length-1];
-    }
-    return null;
-},
-
-/**
- * Returns DOM reference to the next TD element from the given cell, or null.
- *
- * @method getNextTdEl
- * @param cell {HTMLElement | String | Object} DOM element reference or string ID, or
- * object literal of syntax {record:oRecord, column:oColumn} from which to get next TD element.
- * @return {HTMLElement} Reference to next TD element, or null.
- */
-getNextTdEl : function(cell) {
-    var elCell = this.getTdEl(cell);
-    if(elCell) {
-        var nThisTdIndex = elCell.cellIndex;
-        var elRow = this.getTrEl(elCell);
-        if(nThisTdIndex < elRow.cells.length-1) {
-            return elRow.cells[nThisTdIndex+1];
-        }
-        else {
-            var elNextRow = this.getNextTrEl(elRow);
-            if(elNextRow) {
-                return elNextRow.cells[0];
-            }
-        }
-    }
-    return null;
-},
-
-/**
- * Returns DOM reference to the previous TD element from the given cell, or null.
- *
- * @method getPreviousTdEl
- * @param cell {HTMLElement | String | Object} DOM element reference or string ID, or
- * object literal of syntax {record:oRecord, column:oColumn} from which to get previous TD element.
- * @return {HTMLElement} Reference to previous TD element, or null.
- */
-getPreviousTdEl : function(cell) {
-    var elCell = this.getTdEl(cell);
-    if(elCell) {
-        var nThisTdIndex = elCell.cellIndex;
-        var elRow = this.getTrEl(elCell);
-        if(nThisTdIndex > 0) {
-            return elRow.cells[nThisTdIndex-1];
-        }
-        else {
-            var elPreviousRow = this.getPreviousTrEl(elRow);
-            if(elPreviousRow) {
-                return this.getLastTdEl(elPreviousRow);
-            }
-        }
-    }
-    return null;
-},
-
-/**
- * Returns DOM reference to the above TD element from the given cell, or null.
- *
- * @method getAboveTdEl
- * @param cell {HTMLElement | String | Object} DOM element reference or string ID, or
- * object literal of syntax {record:oRecord, column:oColumn} from which to get next TD element.
- * @return {HTMLElement} Reference to next TD element, or null.
- */
-getAboveTdEl : function(cell) {
-    var elCell = this.getTdEl(cell);
-    if(elCell) {
-        var elPreviousRow = this.getPreviousTrEl(elCell);
-        if(elPreviousRow) {
-            return elPreviousRow.cells[elCell.cellIndex];
-        }
-    }
-    return null;
-},
-
-/**
- * Returns DOM reference to the below TD element from the given cell, or null.
- *
- * @method getBelowTdEl
- * @param cell {HTMLElement | String | Object} DOM element reference or string ID, or
- * object literal of syntax {record:oRecord, column:oColumn} from which to get previous TD element.
- * @return {HTMLElement} Reference to previous TD element, or null.
- */
-getBelowTdEl : function(cell) {
-    var elCell = this.getTdEl(cell);
-    if(elCell) {
-        var elNextRow = this.getNextTrEl(elCell);
-        if(elNextRow) {
-            return elNextRow.cells[elCell.cellIndex];
-        }
-    }
-    return null;
-},
-
-/**
- * Returns DOM reference to a TH liner element. Needed to normalize for resizeable 
- * Columns, which have an additional resizer liner DIV element between the TH
- * element and the liner DIV element. 
- *
- * @method getThLinerEl
- * @param theadCell {YAHOO.widget.Column | HTMLElement | String} Column instance,
- * DOM element reference, or string ID.
- * @return {HTMLElement} Reference to TH liner element.
- */
-getThLinerEl : function(theadCell) {
-    var oColumn = this.getColumn(theadCell);
-    return (oColumn) ? oColumn.getThLinerEl() : null;
-},
-
-/**
- * Returns DOM reference to a TH element.
- *
- * @method getThEl
- * @param theadCell {YAHOO.widget.Column | HTMLElement | String} Column instance,
- * DOM element reference, or string ID.
- * @return {HTMLElement} Reference to TH element.
- */
-getThEl : function(theadCell) {
-    var elTh;
-
-    // Validate Column instance
-    if(theadCell instanceof YAHOO.widget.Column) {
-        var oColumn = theadCell;
-        elTh = oColumn.getThEl();
-        if(elTh) {
-            return elTh;
-        }
-    }
-    // Validate HTML element
-    else {
-        var el = Dom.get(theadCell);
-
-        if(el && (el.ownerDocument == document)) {
-            // Validate TH element
-            if(el.nodeName.toLowerCase() != "th") {
-                // Traverse up the DOM to find the corresponding TR element
-                elTh = Dom.getAncestorByTagName(el,"th");
-            }
-            else {
-                elTh = el;
-            }
-
-            // Make sure the TH is in this THEAD
-            if(elTh && (elTh.parentNode.parentNode == this._elThead)) {
-                // Now we can return the TD element
-                return elTh;
-            }
-        }
-    }
-
-    return null;
-},
-
-/**
- * Returns the page row index of given row. Returns null if the row is not on the
- * current DataTable page.
- *
- * @method getTrIndex
- * @param row {HTMLElement | String | YAHOO.widget.Record | Number} DOM or ID
- * string reference to an element within the DataTable page, a Record instance,
- * or a Record's RecordSet index.
- * @return {Number} Page row index, or null if row does not exist or is not on current page.
- */
-getTrIndex : function(row) {
-    var nRecordIndex;
-
-    // By Record
-    if(row instanceof YAHOO.widget.Record) {
-        nRecordIndex = this._oRecordSet.getRecordIndex(row);
-        if(nRecordIndex === null) {
-            // Not a valid Record
-            return null;
-        }
-    }
-    // Calculate page row index from Record index
-    else if(lang.isNumber(row)) {
-        nRecordIndex = row;
-    }
-    if(lang.isNumber(nRecordIndex)) {
-        // Validate the number
-        if((nRecordIndex > -1) && (nRecordIndex < this._oRecordSet.getLength())) {
-            // DataTable is paginated
-            var oPaginator = this.get('paginator');
-            if(oPaginator) {
-                // Check the record index is within the indices of the
-                // current page
-                var rng = oPaginator.getPageRecords();
-                if (rng && nRecordIndex >= rng[0] && nRecordIndex <= rng[1]) {
-                    // This Record is on current page
-                    return nRecordIndex - rng[0];
-                }
-                // This Record is not on current page
-                else {
-                    return null;
-                }
-            }
-            // Not paginated, just return the Record index
-            else {
-                return nRecordIndex;
-            }
-        }
-        // RecordSet index is out of range
-        else {
-            return null;
-        }
-    }
-    // By element reference or ID string
-    else {
-        // Validate TR element
-        var elRow = this.getTrEl(row);
-        if(elRow && (elRow.ownerDocument == document) &&
-                (elRow.parentNode == this._elTbody)) {
-            return elRow.sectionRowIndex;
-        }
-    }
-
-    return null;
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// TABLE FUNCTIONS
-
-/**
- * Resets a RecordSet with the given data and populates the page view
- * with the new data. Any previous data, and selection and sort states are
- * cleared. New data should be added as a separate step. 
- *
- * @method initializeTable
- */
-initializeTable : function() {
-    // Reset init flag
-    this._bInit = true;
-    
-    // Clear the RecordSet
-    this._oRecordSet.reset();
-
-    // Clear the Paginator's totalRecords if paginating
-    var pag = this.get('paginator');
-    if (pag) {
-        pag.set('totalRecords',0);
-    }
-
-    // Clear selections
-    this._unselectAllTrEls();
-    this._unselectAllTdEls();
-    this._aSelections = null;
-    this._oAnchorRecord = null;
-    this._oAnchorCell = null;
-    
-    // Clear sort
-    this.set("sortedBy", null);
-},
-
-/**
- * Internal wrapper calls run() on render Chain instance.
- *
- * @method _runRenderChain
- * @private 
- */
-_runRenderChain : function() {
-    this._oChainRender.run();
-},
-
-/**
- * Renders the view with existing Records from the RecordSet while
- * maintaining sort, pagination, and selection states. For performance, reuses
- * existing DOM elements when possible while deleting extraneous elements.
- *
- * @method render
- */
-render : function() {
-//YAHOO.example.Performance.trialStart = new Date();
-
-    this._oChainRender.stop();
-
-    var i, j, k, len, allRecords;
-
-    var oPaginator = this.get('paginator');
-    // Paginator is enabled, show a subset of Records and update Paginator UI
-    if(oPaginator) {
-        allRecords = this._oRecordSet.getRecords(
-                        oPaginator.getStartIndex(),
-                        oPaginator.getRowsPerPage());
-    }
-    // Not paginated, show all records
-    else {
-        allRecords = this._oRecordSet.getRecords();
-    }
-
-
-    /* NEW METHOD */
-    // From the top, update in-place existing rows, so as to reuse DOM elements
-    var elTbody = this._elTbody,
-        loopN = this.get("renderLoopSize"),
-        nRecordsLength = allRecords.length;
-    
-    // Table has rows
-    if(nRecordsLength > 0) {        
-        // So you don't see the borders in random places
-        //this._unsetFirstRow();
-        //this._unsetLastRow();
-        
-        elTbody.style.display = "none";
-        while(elTbody.lastChild) {
-            elTbody.removeChild(elTbody.lastChild);
-        }
-        elTbody.style.display = "";
-
-        // Set up the loop Chain to render rows
-        this._oChainRender.add({
-            method: function(oArg) {
-                if((this instanceof DT) && this._sId) {
-                    var i = oArg.nCurrentRecord,
-                        endRecordIndex = ((oArg.nCurrentRecord+oArg.nLoopLength) > nRecordsLength) ?
-                                nRecordsLength : (oArg.nCurrentRecord+oArg.nLoopLength),
-                        elRow, nextSibling;
-
-                    elTbody.style.display = "none";
-                    
-                    for(; i<endRecordIndex; i++) {
-                        elRow = Dom.get(allRecords[i].getId());
-                        elRow = elRow || this._addTrEl(allRecords[i]);
-                        nextSibling = elTbody.childNodes[i] || null;
-                        elTbody.insertBefore(elRow, nextSibling);
-                    }
-                    elTbody.style.display = "";
-                    
-                    // Set up for the next loop
-                    oArg.nCurrentRecord = i;
-                }
-            },
-            scope: this,
-            iterations: (loopN > 0) ? Math.ceil(nRecordsLength/loopN) : 1,
-            argument: {
-                nCurrentRecord: 0,//nRecordsLength-1,  // Start at first Record
-                nLoopLength: (loopN > 0) ? loopN : nRecordsLength
-            },
-            timeout: (loopN > 0) ? 0 : -1
-        });
-        
-        // Post-render tasks
-        this._oChainRender.add({
-            method: function(oArg) {
-                if((this instanceof DT) && this._sId) {
-                    while(elTbody.rows.length > nRecordsLength) {
-                        elTbody.removeChild(elTbody.lastChild);
-                    }
-                    this._setFirstRow();
-                    this._setLastRow();
-                    this._setRowStripes();
-                    this._setSelections();
-                }
-            },
-            scope: this,
-            timeout: (loopN > 0) ? 0 : -1
-        });
-        
-        // Fire events in separate timeout thread so implementers can
-        // subscribe immediately after the constructor
-        /*this._oChainRender.add({
-            method: function(oArg) {
-                if((this instanceof DT) && this._sId) {
-                    // Fire initEvent for first render
-                    if(this._bInit) {
-                        this._bInit = false;
-                        this.fireEvent("initEvent");
-                    }
-
-                    // Always fire renderEvent
-                    this.fireEvent("renderEvent");
-                    // Backward compatibility
-                    this.fireEvent("refreshEvent");
-                
-                }
-            },
-            scope: this
-        });*/
-    }
-    // Table has no rows
-    else {
-        // Set up the loop Chain to delete rows
-        var nTotal = elTbody.rows.length;
-        this._oChainRender.add({
-            method: function(oArg) {
-                if((this instanceof DT) && this._sId) {
-                    var i = oArg.nCurrent,
-                        loopN = oArg.nLoopLength,
-                        nIterEnd = (i - loopN < 0) ? -1 : i - loopN;
-
-                    elTbody.style.display = "none";
-                    
-                    for(; i>nIterEnd; i--) {
-                        elTbody.deleteRow(-1);
-                    }
-                    elTbody.style.display = "";
-                    
-                    // Set up for the next loop
-                    oArg.nCurrent = i;
-                }
-            },
-            scope: this,
-            iterations: (loopN > 0) ? Math.ceil(nTotal/loopN) : 1,
-            argument: {
-                nCurrent: nTotal, 
-                nLoopLength: (loopN > 0) ? loopN : nTotal
-            },
-            timeout: (loopN > 0) ? 0 : -1
-        });
-    }
-    this._runRenderChain();
-},
-
-/**
- * Disables DataTable UI.
- *
- * @method disable
- */
-disable : function() {
-    var elTable = this._elTable;
-    var elMask = this._elMask;
-    elMask.style.width = elTable.offsetWidth + "px";
-    elMask.style.height = elTable.offsetHeight + "px";
-    elMask.style.display = "";
-    this.fireEvent("disableEvent");
-},
-
-/**
- * Undisables DataTable UI.
- *
- * @method undisable
- */
-undisable : function() {
-    this._elMask.style.display = "none";
-    this.fireEvent("undisableEvent");
-},
-
-/**
- * Nulls out the entire DataTable instance and related objects, removes attached
- * event listeners, and clears out DOM elements inside the container. After
- * calling this method, the instance reference should be expliclitly nulled by
- * implementer, as in myDataTable = null. Use with caution!
- *
- * @method destroy
- */
-destroy : function() {
-    // Store for later
-    var instanceName = this.toString();
-
-    this._oChainRender.stop();
-    
-    // Destroy static resizer proxy and column proxy
-    DT._destroyColumnDragTargetEl();
-    DT._destroyColumnResizerProxyEl();
-    
-    // Destroy ColumnDD and ColumnResizers
-    this._destroyColumnHelpers();
-    
-    // Destroy all CellEditors
-    var oCellEditor;
-    for(var i=0, len=this._oColumnSet.flat.length; i<len; i++) {
-        oCellEditor = this._oColumnSet.flat[i].editor;
-        if(oCellEditor && oCellEditor.destroy) {
-            oCellEditor.destroy();
-            this._oColumnSet.flat[i].editor = null;
-        }
-    }
-
-    // Unhook custom events
-    this._oRecordSet.unsubscribeAll();
-    this.unsubscribeAll();
-
-    // Unhook DOM events
-    Ev.removeListener(document, "click", this._onDocumentClick);
-    
-    // Clear out the container
-    this._destroyContainerEl(this._elContainer);
-
-    // Null out objects
-    for(var param in this) {
-        if(lang.hasOwnProperty(this, param)) {
-            this[param] = null;
-        }
-    }
-    
-    // Clean up static values
-    DT._nCurrentCount--;
-    
-    if(DT._nCurrentCount < 1) {
-        if(DT._elDynStyleNode) {
-            document.getElementsByTagName('head')[0].removeChild(DT._elDynStyleNode);
-            DT._elDynStyleNode = null;
-        }
-    }
-
-},
-
-/**
- * Displays message within secondary TBODY.
- *
- * @method showTableMessage
- * @param sHTML {String} (optional) Value for innerHTMlang.
- * @param sClassName {String} (optional) Classname.
- */
-showTableMessage : function(sHTML, sClassName) {
-    var elCell = this._elMsgTd;
-    if(lang.isString(sHTML)) {
-        elCell.firstChild.innerHTML = sHTML;
-    }
-    if(lang.isString(sClassName)) {
-        elCell.className = sClassName;
-    }
-
-    this._elMsgTbody.style.display = "";
-
-    this.fireEvent("tableMsgShowEvent", {html:sHTML, className:sClassName});
-},
-
-/**
- * Hides secondary TBODY.
- *
- * @method hideTableMessage
- */
-hideTableMessage : function() {
-    if(this._elMsgTbody.style.display != "none") {
-        this._elMsgTbody.style.display = "none";
-        this._elMsgTbody.parentNode.style.width = "";
-        this.fireEvent("tableMsgHideEvent");
-    }
-},
-
-/**
- * Brings focus to the TBODY element. Alias to focusTbodyEl.
- *
- * @method focus
- */
-focus : function() {
-    this.focusTbodyEl();
-},
-
-/**
- * Brings focus to the THEAD element.
- *
- * @method focusTheadEl
- */
-focusTheadEl : function() {
-    this._focusEl(this._elThead);
-},
-
-/**
- * Brings focus to the TBODY element.
- *
- * @method focusTbodyEl
- */
-focusTbodyEl : function() {
-    this._focusEl(this._elTbody);
-},
-
-/**
- * Setting display:none on DataTable or any parent may impact width validations.
- * After setting display back to "", implementers should call this method to 
- * manually perform those validations.
- *
- * @method onShow
- */
-onShow : function() {
-    this.validateColumnWidths();
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// RECORDSET FUNCTIONS
-
-/**
- * Returns Record index for given TR element or page row index.
- *
- * @method getRecordIndex
- * @param row {YAHOO.widget.Record | HTMLElement | Number} Record instance, TR
- * element reference or page row index.
- * @return {Number} Record's RecordSet index, or null.
- */
-getRecordIndex : function(row) {
-    var nTrIndex;
-
-    if(!lang.isNumber(row)) {
-        // By Record
-        if(row instanceof YAHOO.widget.Record) {
-            return this._oRecordSet.getRecordIndex(row);
-        }
-        // By element reference
-        else {
-            // Find the TR element
-            var el = this.getTrEl(row);
-            if(el) {
-                nTrIndex = el.sectionRowIndex;
-            }
-        }
-    }
-    // By page row index
-    else {
-        nTrIndex = row;
-    }
-
-    if(lang.isNumber(nTrIndex)) {
-        var oPaginator = this.get("paginator");
-        if(oPaginator) {
-            return oPaginator.get('recordOffset') + nTrIndex;
-        }
-        else {
-            return nTrIndex;
-        }
-    }
-
-    return null;
-},
-
-/**
- * For the given identifier, returns the associated Record instance.
- *
- * @method getRecord
- * @param row {HTMLElement | Number | String} DOM reference to a TR element (or
- * child of a TR element), RecordSet position index, or Record ID.
- * @return {YAHOO.widget.Record} Record instance.
- */
-getRecord : function(row) {
-    var oRecord = this._oRecordSet.getRecord(row);
-
-    if(!oRecord) {
-        // Validate TR element
-        var elRow = this.getTrEl(row);
-        if(elRow) {
-            oRecord = this._oRecordSet.getRecord(this.getRecordIndex(elRow.sectionRowIndex));
-        }
-    }
-
-    if(oRecord instanceof YAHOO.widget.Record) {
-        return this._oRecordSet.getRecord(oRecord);
-    }
-    else {
-        return null;
-    }
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// COLUMN FUNCTIONS
-
-/**
- * For the given identifier, returns the associated Column instance. Note: For
- * getting Columns by Column ID string, please use the method getColumnById().
- *
- * @method getColumn
- * @param column {HTMLElement | String | Number} TH/TD element (or child of a
- * TH/TD element), a Column key, or a ColumnSet key index.
- * @return {YAHOO.widget.Column} Column instance.
- */
-getColumn : function(column) {
-    var oColumn = this._oColumnSet.getColumn(column);
-
-    if(!oColumn) {
-        // Validate TD element
-        var elCell = this.getTdEl(column);
-        if(elCell) {
-            oColumn = this._oColumnSet.getColumn(elCell.cellIndex);
-        }
-        // Validate TH element
-        else {
-            elCell = this.getThEl(column);
-            if(elCell) {
-                // Find by TH el ID
-                var allColumns = this._oColumnSet.flat;
-                for(var i=0, len=allColumns.length; i<len; i++) {
-                    if(allColumns[i].getThEl().id === elCell.id) {
-                        oColumn = allColumns[i];
-                    } 
-                }
-            }
-        }
-    }
-    if(!oColumn) {
-    }
-    return oColumn;
-},
-
-/**
- * For the given Column ID, returns the associated Column instance. Note: For
- * getting Columns by key, please use the method getColumn().
- *
- * @method getColumnById
- * @param column {String} Column ID string.
- * @return {YAHOO.widget.Column} Column instance.
- */
-getColumnById : function(column) {
-    return this._oColumnSet.getColumnById(column);
-},
-
-/**
- * For the given Column instance, returns next direction to sort.
- *
- * @method getColumnSortDir
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param oSortedBy {Object} (optional) Specify the state, or use current state. 
- * @return {String} YAHOO.widget.DataTable.CLASS_ASC or YAHOO.widget.DataTableCLASS_DESC.
- */
-getColumnSortDir : function(oColumn, oSortedBy) {
-    // Backward compatibility
-    if(oColumn.sortOptions && oColumn.sortOptions.defaultOrder) {
-        if(oColumn.sortOptions.defaultOrder == "asc") {
-            oColumn.sortOptions.defaultDir = DT.CLASS_ASC;
-        }
-        else if (oColumn.sortOptions.defaultOrder == "desc") {
-            oColumn.sortOptions.defaultDir = DT.CLASS_DESC;
-        }
-    }
-    
-    // What is the Column's default sort direction?
-    var sortDir = (oColumn.sortOptions && oColumn.sortOptions.defaultDir) ? oColumn.sortOptions.defaultDir : DT.CLASS_ASC;
-
-    // Is the Column currently sorted?
-    var bSorted = false;
-    oSortedBy = oSortedBy || this.get("sortedBy");
-    if(oSortedBy && (oSortedBy.key === oColumn.key)) {
-        bSorted = true;
-        if(oSortedBy.dir) {
-            sortDir = (oSortedBy.dir === DT.CLASS_ASC) ? DT.CLASS_DESC : DT.CLASS_ASC;
-        }
-        else {
-            sortDir = (sortDir === DT.CLASS_ASC) ? DT.CLASS_DESC : DT.CLASS_ASC;
-        }
-    }
-    return sortDir;
-},
-
-/**
- * Overridable method gives implementers a hook to show loading message before
- * sorting Column.
- *
- * @method doBeforeSortColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param sSortDir {String} YAHOO.widget.DataTable.CLASS_ASC or
- * YAHOO.widget.DataTable.CLASS_DESC.
- * @return {Boolean} Return true to continue sorting Column.
- */
-doBeforeSortColumn : function(oColumn, sSortDir) {
-    this.showTableMessage(this.get("MSG_LOADING"), DT.CLASS_LOADING);
-    return true;
-},
-
-/**
- * Sorts given Column. If "dynamicData" is true, current selections are purged before
- * a request is sent to the DataSource for data for the new state (using the
- * request returned by "generateRequest()").
- *
- * @method sortColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param sDir {String} (Optional) YAHOO.widget.DataTable.CLASS_ASC or
- * YAHOO.widget.DataTable.CLASS_DESC
- */
-sortColumn : function(oColumn, sDir) {
-    if(oColumn && (oColumn instanceof YAHOO.widget.Column)) {
-        if(!oColumn.sortable) {
-            Dom.addClass(this.getThEl(oColumn), DT.CLASS_SORTABLE);
-        }
-        
-        // Validate given direction
-        if(sDir && (sDir !== DT.CLASS_ASC) && (sDir !== DT.CLASS_DESC)) {
-            sDir = null;
-        }
-        
-        // Get the sort dir
-        var sSortDir = sDir || this.getColumnSortDir(oColumn);
-
-        // Is the Column currently sorted?
-        var oSortedBy = this.get("sortedBy") || {};
-        var bSorted = (oSortedBy.key === oColumn.key) ? true : false;
-
-        var ok = this.doBeforeSortColumn(oColumn, sSortDir);
-        if(ok) {
-            // Server-side sort
-            if(this.get("dynamicData")) {
-                // Get current state
-                var oState = this.getState();
-                
-                // Reset record offset, if paginated
-                if(oState.pagination) {
-                    oState.pagination.recordOffset = 0;
-                }
-                
-                // Update sortedBy to new values
-                oState.sortedBy = {
-                    key: oColumn.key,
-                    dir: sSortDir
-                };
-                
-                // Get the request for the new state
-                var request = this.get("generateRequest")(oState, this);
-
-                // Purge selections
-                this.unselectAllRows();
-                this.unselectAllCells();
-
-                // Send request for new data
-                var callback = {
-                    success : this.onDataReturnSetRows,
-                    failure : this.onDataReturnSetRows,
-                    argument : oState, // Pass along the new state to the callback
-                    scope : this
-                };
-                this._oDataSource.sendRequest(request, callback);            
-            }
-            // Client-side sort
-            else {
-                // Sort the Records
-                if(!bSorted || sDir) {
-                    // Get the field to sort
-                    var sField = (oColumn.sortOptions && oColumn.sortOptions.field) ? oColumn.sortOptions.field : oColumn.field;
-                    // Is there a custom sort handler function defined?
-                    var sortFnc = (oColumn.sortOptions && lang.isFunction(oColumn.sortOptions.sortFunction)) ?
-                            // Custom sort function
-                            oColumn.sortOptions.sortFunction :
-        
-                            // Default sort function
-                            function(a, b, desc) {
-                                YAHOO.util.Sort.compare(a.getData(sField),b.getData(sField), desc);
-                                var sorted = YAHOO.util.Sort.compare(a.getData(sField),b.getData(sField), desc);
-                                if(sorted === 0) {
-                                    return YAHOO.util.Sort.compare(a.getCount(),b.getCount(), desc); // Bug 1932978
-                                }
-                                else {
-                                    return sorted;
-                                }
-                            };
-        
-                    this._oRecordSet.sortRecords(sortFnc, ((sSortDir == DT.CLASS_DESC) ? true : false));
-                }
-                // Just reverse the Records
-                else {
-                    this._oRecordSet.reverseRecords();
-                }
-        
-                // Reset to first page if paginated
-                var oPaginator = this.get('paginator');
-                if (oPaginator) {
-                    // Set page silently, so as not to fire change event.
-                    oPaginator.setPage(1,true);
-                }
-        
-                // Update UI via sortedBy
-                this.render();
-                this.set("sortedBy", {key:oColumn.key, dir:sSortDir, column:oColumn}); 
-            }       
-            
-            this.fireEvent("columnSortEvent",{column:oColumn,dir:sSortDir});
-            return;
-        }
-    }
-},
-
-/**
- * Sets given Column to given pixel width. If new width is less than minimum
- * width, sets to minimum width. Updates oColumn.width value.
- *
- * @method setColumnWidth
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param nWidth {Number} New width in pixels. A null value auto-sizes Column,
- * subject to minWidth and maxAutoWidth validations. 
- */
-setColumnWidth : function(oColumn, nWidth) {
-    if(!(oColumn instanceof YAHOO.widget.Column)) {
-        oColumn = this.getColumn(oColumn);
-    }
-    if(oColumn) {
-        // Validate new width against minimum width
-        if(lang.isNumber(nWidth)) {
-            // This is why we must require a Number... :-|
-            nWidth = (nWidth > oColumn.minWidth) ? nWidth : oColumn.minWidth;
-
-            // Save state
-            oColumn.width = nWidth;
-            
-            // Resize the DOM elements
-            this._setColumnWidth(oColumn, nWidth+"px");
-            
-            this.fireEvent("columnSetWidthEvent",{column:oColumn,width:nWidth});
-            return;
-        }
-        // Unsets a width to auto-size
-        else if(nWidth === null) {
-            // Save state
-            oColumn.width = nWidth;
-            
-            // Resize the DOM elements
-            this._setColumnWidth(oColumn, "auto");
-            this.validateColumnWidths(oColumn);
-            this.fireEvent("columnUnsetWidthEvent",{column:oColumn});
-            
-            return;
-        }
-    }
-},
-
-/**
- * Sets liner DIV elements of given Column to given width. When value should be
- * auto-calculated to fit content overflow is set to visible, otherwise overflow
- * is set to hidden. No validations against minimum width and no updating
- * Column.width value.
- *
- * @method _setColumnWidth
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param sWidth {String} New width value.
- * @param sOverflow {String} Should be "hidden" when Column width is explicitly
- * being set to a value, but should be "visible" when Column is meant to auto-fit content.  
- * @private
- */
-_setColumnWidth : function(oColumn, sWidth, sOverflow) {
-    if(oColumn && (oColumn.getKeyIndex() !== null)) {
-        sOverflow = sOverflow || (((sWidth === '') || (sWidth === 'auto')) ? 'visible' : 'hidden');
-    
-        // Dynamic style algorithm
-        if(!DT._bDynStylesFallback) {
-            this._setColumnWidthDynStyles(oColumn, sWidth, sOverflow);
-        }
-        // Dynamic function algorithm
-        else {
-            this._setColumnWidthDynFunction(oColumn, sWidth, sOverflow);
-        }
-    }
-    else {
-    }
-},
-
-/**
- * Updates width of a Column's liner DIV elements by dynamically creating a
- * STYLE node and writing and updating CSS style rules to it. If this fails during
- * runtime, the fallback method _setColumnWidthDynFunction() will be called.
- * Notes: This technique is not performant in IE6. IE7 crashes if DataTable is
- * nested within another TABLE element. For these cases, it is recommended to
- * use the method _setColumnWidthDynFunction by setting _bDynStylesFallback to TRUE.
- *
- * @method _setColumnWidthDynStyles
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param sWidth {String} New width value.
- * @private
- */
-_setColumnWidthDynStyles : function(oColumn, sWidth, sOverflow) {
-    var s = DT._elDynStyleNode,
-        rule;
-    
-    // Create a new STYLE node
-    if(!s) {
-        s = document.createElement('style');
-        s.type = 'text/css';
-        s = document.getElementsByTagName('head').item(0).appendChild(s);
-        DT._elDynStyleNode = s;
-    }
-    
-    // We have a STYLE node to update
-    if(s) {
-        // Use unique classname for this Column instance as a hook for resizing
-        var sClassname = "." + this.getId() + "-col-" + oColumn.getSanitizedKey() + " ." + DT.CLASS_LINER;
-        
-        // Hide for performance
-        if(this._elTbody) {
-            this._elTbody.style.display = 'none';
-        }
-        
-        rule = DT._oDynStyles[sClassname];
-
-        // The Column does not yet have a rule
-        if(!rule) {
-            if(s.styleSheet && s.styleSheet.addRule) {
-                s.styleSheet.addRule(sClassname,"overflow:"+sOverflow);
-                s.styleSheet.addRule(sClassname,'width:'+sWidth);
-                rule = s.styleSheet.rules[s.styleSheet.rules.length-1];
-                DT._oDynStyles[sClassname] = rule;
-            }
-            else if(s.sheet && s.sheet.insertRule) {
-                s.sheet.insertRule(sClassname+" {overflow:"+sOverflow+";width:"+sWidth+";}",s.sheet.cssRules.length);
-                rule = s.sheet.cssRules[s.sheet.cssRules.length-1];
-                DT._oDynStyles[sClassname] = rule;
-            }
-        }
-        // We have a rule to update
-        else {
-            rule.style.overflow = sOverflow;
-            rule.style.width = sWidth;
-        } 
-        
-        // Unhide
-        if(this._elTbody) {
-            this._elTbody.style.display = '';
-        }
-    }
-    
-    // That was not a success, we must call the fallback routine
-    if(!rule) {
-        DT._bDynStylesFallback = true;
-        this._setColumnWidthDynFunction(oColumn, sWidth);
-    }
-},
-
-/**
- * Updates width of a Column's liner DIV elements by dynamically creating a
- * function to update all element style properties in one pass. Note: This
- * technique is not supported in sandboxed environments that prohibit EVALs.    
- *
- * @method _setColumnWidthDynFunction
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param sWidth {String} New width value.
- * @private
- */
-_setColumnWidthDynFunction : function(oColumn, sWidth, sOverflow) {
-    // TODO: why is this here?
-    if(sWidth == 'auto') {
-        sWidth = ''; 
-    }
-    
-    // Create one function for each value of rows.length
-    var rowslen = this._elTbody ? this._elTbody.rows.length : 0;
-    
-    // Dynamically create the function
-    if (!this._aDynFunctions[rowslen]) {
-        
-        //Compile a custom function to do all the liner div width
-        //assignments at the same time.  A unique function is required
-        //for each unique number of rows in _elTbody.  This will
-        //result in a function declaration like:
-        //function (oColumn,sWidth,sOverflow) {
-        //    var colIdx = oColumn.getKeyIndex();
-        //    oColumn.getThLinerEl().style.overflow =
-        //    this._elTbody.rows[0].cells[colIdx].firstChild.style.overflow =
-        //    this._elTbody.rows[1].cells[colIdx].firstChild.style.overflow =
-        //    ... (for all row indices in this._elTbody.rows.length - 1)
-        //    this._elTbody.rows[99].cells[colIdx].firstChild.style.overflow =
-        //    sOverflow;
-        //    oColumn.getThLinerEl().style.width =
-        //    this._elTbody.rows[0].cells[colIdx].firstChild.style.width =
-        //    this._elTbody.rows[1].cells[colIdx].firstChild.style.width =
-        //    ... (for all row indices in this._elTbody.rows.length - 1)
-        //    this._elTbody.rows[99].cells[colIdx].firstChild.style.width =
-        //    sWidth;
-        //}
-        
-        var i,j,k;
-        var resizerDef = [
-            'var colIdx=oColumn.getKeyIndex();',
-            'oColumn.getThLinerEl().style.overflow='
-        ];
-        for (i=rowslen-1, j=2; i >= 0; --i) {
-            resizerDef[j++] = 'this._elTbody.rows[';
-            resizerDef[j++] = i;
-            resizerDef[j++] = '].cells[colIdx].firstChild.style.overflow=';
-        }
-        resizerDef[j] = 'sOverflow;';
-        resizerDef[j+1] = 'oColumn.getThLinerEl().style.width=';
-        for (i=rowslen-1, k=j+2; i >= 0; --i) {
-            resizerDef[k++] = 'this._elTbody.rows[';
-            resizerDef[k++] = i;
-            resizerDef[k++] = '].cells[colIdx].firstChild.style.width=';
-        }
-        resizerDef[k] = 'sWidth;';
-        this._aDynFunctions[rowslen] =
-            new Function('oColumn','sWidth','sOverflow',resizerDef.join(''));
-    }
-    
-    // Get the function to execute
-    var resizerFn = this._aDynFunctions[rowslen];
-
-    // TODO: Hide TBODY for performance in _setColumnWidthDynFunction?
-    if (resizerFn) {
-        resizerFn.call(this,oColumn,sWidth,sOverflow);
-    }
-},
-
-/**
- * For one or all Columns, when Column is not hidden, width is not set, and minWidth
- * and/or maxAutoWidth is set, validates auto-width against minWidth and maxAutoWidth.
- *
- * @method validateColumnWidths
- * @param oArg.column {YAHOO.widget.Column} (optional) One Column to validate. If null, all Columns' widths are validated.
- */
-validateColumnWidths : function(oColumn) {
-    var elColgroup = this._elColgroup;
-    var elColgroupClone = elColgroup.cloneNode(true);
-    var bNeedsValidation = false;
-    var allKeys = this._oColumnSet.keys;
-    var elThLiner;
-    // Validate just one Column's minWidth and/or maxAutoWidth
-    if(oColumn && !oColumn.hidden && !oColumn.width && (oColumn.getKeyIndex() !== null)) {
-            elThLiner = oColumn.getThLinerEl();
-            if((oColumn.minWidth > 0) && (elThLiner.offsetWidth < oColumn.minWidth)) {
-                elColgroupClone.childNodes[oColumn.getKeyIndex()].style.width = 
-                        oColumn.minWidth + 
-                        (parseInt(Dom.getStyle(elThLiner,"paddingLeft"),10)|0) +
-                        (parseInt(Dom.getStyle(elThLiner,"paddingRight"),10)|0) + "px";
-                bNeedsValidation = true;
-            }
-            else if((oColumn.maxAutoWidth > 0) && (elThLiner.offsetWidth > oColumn.maxAutoWidth)) {
-                this._setColumnWidth(oColumn, oColumn.maxAutoWidth+"px", "hidden");
-            }
-    }
-    // Validate all Columns
-    else {
-        for(var i=0, len=allKeys.length; i<len; i++) {
-            oColumn = allKeys[i];
-            if(!oColumn.hidden && !oColumn.width) {
-                elThLiner = oColumn.getThLinerEl();
-                if((oColumn.minWidth > 0) && (elThLiner.offsetWidth < oColumn.minWidth)) {
-                    elColgroupClone.childNodes[i].style.width = 
-                            oColumn.minWidth + 
-                            (parseInt(Dom.getStyle(elThLiner,"paddingLeft"),10)|0) +
-                            (parseInt(Dom.getStyle(elThLiner,"paddingRight"),10)|0) + "px";
-                    bNeedsValidation = true;
-                }
-                else if((oColumn.maxAutoWidth > 0) && (elThLiner.offsetWidth > oColumn.maxAutoWidth)) {
-                    this._setColumnWidth(oColumn, oColumn.maxAutoWidth+"px", "hidden");
-                }
-            }
-        }
-    }
-    if(bNeedsValidation) {
-        elColgroup.parentNode.replaceChild(elColgroupClone, elColgroup);
-        this._elColgroup = elColgroupClone;
-    }
-},
-
-/**
- * Clears minWidth.
- *
- * @method _clearMinWidth
- * @param oColumn {YAHOO.widget.Column} Which Column.
- * @private
- */
-_clearMinWidth : function(oColumn) {
-    if(oColumn.getKeyIndex() !== null) {
-        this._elColgroup.childNodes[oColumn.getKeyIndex()].style.width = '';
-    }
-},
-
-/**
- * Restores minWidth.
- *
- * @method _restoreMinWidth
- * @param oColumn {YAHOO.widget.Column} Which Column.
- * @private
- */
-_restoreMinWidth : function(oColumn) {
-    if(oColumn.minWidth && (oColumn.getKeyIndex() !== null)) {
-        this._elColgroup.childNodes[oColumn.getKeyIndex()].style.width = oColumn.minWidth + 'px';
-    }
-},
-
-/**
- * Hides given Column. NOTE: You cannot hide/show nested Columns. You can only
- * hide/show non-nested Columns, and top-level parent Columns (which will
- * hide/show all children Columns).
- *
- * @method hideColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- */
-hideColumn : function(oColumn) {
-    if(!(oColumn instanceof YAHOO.widget.Column)) {
-        oColumn = this.getColumn(oColumn);
-    }
-    // Only top-level Columns can get hidden due to issues in FF2 and SF3
-    if(oColumn && !oColumn.hidden && oColumn.getTreeIndex() !== null) {
-        
-        var allrows = this.getTbodyEl().rows;
-        var l = allrows.length;
-        var allDescendants = this._oColumnSet.getDescendants(oColumn);
-        
-        // Hide each nested Column
-        for(var i=0; i<allDescendants.length; i++) {
-            var thisColumn = allDescendants[i];
-            thisColumn.hidden = true;
-
-            // Style the head cell
-            Dom.addClass(thisColumn.getThEl(), DT.CLASS_HIDDEN);
-            
-            // Does this Column have body cells?
-            var thisKeyIndex = thisColumn.getKeyIndex();
-            if(thisKeyIndex !== null) {                    
-                // Clear minWidth
-                this._clearMinWidth(oColumn);
-                
-                // Style the body cells
-                for(var j=0;j<l;j++) {
-                    Dom.addClass(allrows[j].cells[thisKeyIndex],DT.CLASS_HIDDEN);
-                }
-            }
-            
-            this.fireEvent("columnHideEvent",{column:thisColumn});
-        }
-      
-        this._repaintOpera();
-        this._clearTrTemplateEl();
-    }
-    else {
-    }
-},
-
-/**
- * Shows given Column. NOTE: You cannot hide/show nested Columns. You can only
- * hide/show non-nested Columns, and top-level parent Columns (which will
- * hide/show all children Columns).
- *
- * @method showColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- */
-showColumn : function(oColumn) {
-    if(!(oColumn instanceof YAHOO.widget.Column)) {
-        oColumn = this.getColumn(oColumn);
-    }
-    // Only top-level Columns can get hidden
-    if(oColumn && oColumn.hidden && (oColumn.getTreeIndex() !== null)) {
-        var allrows = this.getTbodyEl().rows;
-        var l = allrows.length;
-        var allDescendants = this._oColumnSet.getDescendants(oColumn);
-        
-        // Show each nested Column
-        for(var i=0; i<allDescendants.length; i++) {
-            var thisColumn = allDescendants[i];
-            thisColumn.hidden = false;
-            
-            // Unstyle the head cell
-            Dom.removeClass(thisColumn.getThEl(), DT.CLASS_HIDDEN);
-
-            // Does this Column have body cells?
-            var thisKeyIndex = thisColumn.getKeyIndex();
-            if(thisKeyIndex !== null) {
-                // Restore minWidth
-                this._restoreMinWidth(oColumn);
-                
-            
-                // Unstyle the body cells
-                for(var j=0;j<l;j++) {
-                    Dom.removeClass(allrows[j].cells[thisKeyIndex],DT.CLASS_HIDDEN);
-                }
-            }
-
-            this.fireEvent("columnShowEvent",{column:thisColumn});
-        }
-        this._clearTrTemplateEl();
-    }
-    else {
-    }
-},
-
-/**
- * Removes given Column. NOTE: You cannot remove nested Columns. You can only remove
- * non-nested Columns, and top-level parent Columns (which will remove all
- * children Columns).
- *
- * @method removeColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @return oColumn {YAHOO.widget.Column} Removed Column instance.
- */
-removeColumn : function(oColumn) {
-    // Validate Column
-    if(!(oColumn instanceof YAHOO.widget.Column)) {
-        oColumn = this.getColumn(oColumn);
-    }
-    if(oColumn) {
-        var nColTreeIndex = oColumn.getTreeIndex();
-        if(nColTreeIndex !== null) {
-            // Which key index(es)
-            var i, len,
-                aKeyIndexes = oColumn.getKeyIndex();
-            // Must be a parent Column
-            if(aKeyIndexes === null) {
-                var descKeyIndexes = [];
-                var allDescendants = this._oColumnSet.getDescendants(oColumn);
-                for(i=0, len=allDescendants.length; i<len; i++) {
-                    // Is this descendant a key Column?
-                    var thisKey = allDescendants[i].getKeyIndex();
-                    if(thisKey !== null) {
-                        descKeyIndexes[descKeyIndexes.length] = thisKey;
-                    }
-                }
-                if(descKeyIndexes.length > 0) {
-                    aKeyIndexes = descKeyIndexes;
-                }
-            }
-            // Must be a key Column
-            else {
-                aKeyIndexes = [aKeyIndexes];
-            }
-            
-            if(aKeyIndexes !== null) {
-                // Sort the indexes so we can remove from the right
-                aKeyIndexes.sort(function(a, b) {return YAHOO.util.Sort.compare(a, b);});
-                
-                // Destroy previous THEAD
-                this._destroyTheadEl();
-    
-                // Create new THEAD
-                var aOrigColumnDefs = this._oColumnSet.getDefinitions();
-                oColumn = aOrigColumnDefs.splice(nColTreeIndex,1)[0];
-                this._initColumnSet(aOrigColumnDefs);
-                this._initTheadEl();
-                
-                // Remove COL
-                for(i=aKeyIndexes.length-1; i>-1; i--) {
-                    this._removeColgroupColEl(aKeyIndexes[i]);
-                }
-                
-                // Remove TD
-                var allRows = this._elTbody.rows;
-                if(allRows.length > 0) {
-                    var loopN = this.get("renderLoopSize"),
-                        loopEnd = allRows.length;
-                    this._oChainRender.add({
-                        method: function(oArg) {
-                            if((this instanceof DT) && this._sId) {
-                                var i = oArg.nCurrentRow,
-                                    len = loopN > 0 ? Math.min(i + loopN,allRows.length) : allRows.length,
-                                    aIndexes = oArg.aIndexes,
-                                    j;
-                                for(; i < len; ++i) {
-                                    for(j = aIndexes.length-1; j>-1; j--) {
-                                        allRows[i].removeChild(allRows[i].childNodes[aIndexes[j]]);
-                                    }
-                                }
-                                oArg.nCurrentRow = i;
-                            }
-                        },
-                        iterations: (loopN > 0) ? Math.ceil(loopEnd/loopN) : 1,
-                        argument: {nCurrentRow:0, aIndexes:aKeyIndexes},
-                        scope: this,
-                        timeout: (loopN > 0) ? 0 : -1
-                    });
-                    this._runRenderChain();
-                }
-        
-                this.fireEvent("columnRemoveEvent",{column:oColumn});
-                return oColumn;
-            }
-        }
-    }
-},
-
-/**
- * Inserts given Column at the index if given, otherwise at the end. NOTE: You
- * can only add non-nested Columns and top-level parent Columns. You cannot add
- * a nested Column to an existing parent.
- *
- * @method insertColumn
- * @param oColumn {Object | YAHOO.widget.Column} Object literal Column
- * definition or a Column instance.
- * @param index {Number} (optional) New tree index.
- * @return oColumn {YAHOO.widget.Column} Inserted Column instance. 
- */
-insertColumn : function(oColumn, index) {
-    // Validate Column
-    if(oColumn instanceof YAHOO.widget.Column) {
-        oColumn = oColumn.getDefinition();
-    }
-    else if(oColumn.constructor !== Object) {
-        return;
-    }
-    
-    // Validate index or append new Column to the end of the ColumnSet
-    var oColumnSet = this._oColumnSet;
-    if(!lang.isValue(index) || !lang.isNumber(index)) {
-        index = oColumnSet.tree[0].length;
-    }
-    
-    // Destroy previous THEAD
-    this._destroyTheadEl();
-    
-    // Create new THEAD
-    var aNewColumnDefs = this._oColumnSet.getDefinitions();
-    aNewColumnDefs.splice(index, 0, oColumn);
-    this._initColumnSet(aNewColumnDefs);
-    this._initTheadEl();
-    
-    // Need to refresh the reference
-    oColumnSet = this._oColumnSet;
-    var oNewColumn = oColumnSet.tree[0][index];
-    
-    // Get key index(es) for new Column
-    var i, len,
-        descKeyIndexes = [];
-    var allDescendants = oColumnSet.getDescendants(oNewColumn);
-    for(i=0, len=allDescendants.length; i<len; i++) {
-        // Is this descendant a key Column?
-        var thisKey = allDescendants[i].getKeyIndex();
-        if(thisKey !== null) {
-            descKeyIndexes[descKeyIndexes.length] = thisKey;
-        }
-    }
-    
-    if(descKeyIndexes.length > 0) {  
-        // Sort the indexes
-        var newIndex = descKeyIndexes.sort(function(a, b) {return YAHOO.util.Sort.compare(a, b);})[0];
-        
-        // Add COL
-        for(i=descKeyIndexes.length-1; i>-1; i--) {
-            this._insertColgroupColEl(descKeyIndexes[i]);
-        }
-            
-        // Add TD
-        var allRows = this._elTbody.rows;
-        if(allRows.length > 0) {
-            var loopN = this.get("renderLoopSize"),
-                loopEnd = allRows.length;
-            
-            // Get templates for each new TD
-            var aTdTemplates = [],
-                elTdTemplate;
-            for(i=0, len=descKeyIndexes.length; i<len; i++) {
-                var thisKeyIndex = descKeyIndexes[i];
-                elTdTemplate = this._getTrTemplateEl().childNodes[i].cloneNode(true);
-                elTdTemplate = this._formatTdEl(this._oColumnSet.keys[thisKeyIndex], elTdTemplate, thisKeyIndex, (thisKeyIndex===this._oColumnSet.keys.length-1));
-                aTdTemplates[thisKeyIndex] = elTdTemplate;
-            }
-            
-            this._oChainRender.add({
-                method: function(oArg) {
-                    if((this instanceof DT) && this._sId) {
-                        var i = oArg.nCurrentRow, j,
-                            descKeyIndexes = oArg.descKeyIndexes,
-                            len = loopN > 0 ? Math.min(i + loopN,allRows.length) : allRows.length,
-                            nextSibling;
-                        for(; i < len; ++i) {
-                            nextSibling = allRows[i].childNodes[newIndex] || null;
-                            for(j=descKeyIndexes.length-1; j>-1; j--) {
-                                allRows[i].insertBefore(oArg.aTdTemplates[descKeyIndexes[j]].cloneNode(true), nextSibling);
-                            }
-                        }
-                        oArg.nCurrentRow = i;
-                    }
-                },
-                iterations: (loopN > 0) ? Math.ceil(loopEnd/loopN) : 1,
-                argument: {nCurrentRow:0,aTdTemplates:aTdTemplates,descKeyIndexes:descKeyIndexes},
-                scope: this,
-                timeout: (loopN > 0) ? 0 : -1
-            });
-            this._runRenderChain(); 
-        }
-
-        this.fireEvent("columnInsertEvent",{column:oColumn,index:index});
-        return oNewColumn;
-    }
-},
-
-/**
- * Removes given Column and inserts into given tree index. NOTE: You
- * can only reorder non-nested Columns and top-level parent Columns. You cannot
- * reorder a nested Column to an existing parent.
- *
- * @method reorderColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param index {Number} New tree index.
- * @return oColumn {YAHOO.widget.Column} Reordered Column instance. 
- */
-reorderColumn : function(oColumn, index) {
-    // Validate Column and new index
-    if(!(oColumn instanceof YAHOO.widget.Column)) {
-        oColumn = this.getColumn(oColumn);
-    }
-    if(oColumn && YAHOO.lang.isNumber(index)) {
-        var nOrigTreeIndex = oColumn.getTreeIndex();
-        if((nOrigTreeIndex !== null) && (nOrigTreeIndex !== index)) {
-            // Which key index(es)
-            var i, len,
-                aOrigKeyIndexes = oColumn.getKeyIndex(),
-                allDescendants,
-                descKeyIndexes = [],
-                thisKey;
-            // Must be a parent Column...
-            if(aOrigKeyIndexes === null) {
-                allDescendants = this._oColumnSet.getDescendants(oColumn);
-                for(i=0, len=allDescendants.length; i<len; i++) {
-                    // Is this descendant a key Column?
-                    thisKey = allDescendants[i].getKeyIndex();
-                    if(thisKey !== null) {
-                        descKeyIndexes[descKeyIndexes.length] = thisKey;
-                    }
-                }
-                if(descKeyIndexes.length > 0) {
-                    aOrigKeyIndexes = descKeyIndexes;
-                }
-            }
-            // ...or else must be a key Column
-            else {
-                aOrigKeyIndexes = [aOrigKeyIndexes];
-            }
-            
-            if(aOrigKeyIndexes !== null) {                   
-                // Sort the indexes
-                aOrigKeyIndexes.sort(function(a, b) {return YAHOO.util.Sort.compare(a, b);});
-                
-                // Destroy previous THEAD
-                this._destroyTheadEl();
-    
-                // Create new THEAD
-                var aColumnDefs = this._oColumnSet.getDefinitions();
-                var oColumnDef = aColumnDefs.splice(nOrigTreeIndex,1)[0];
-                aColumnDefs.splice(index, 0, oColumnDef);
-                this._initColumnSet(aColumnDefs);
-                this._initTheadEl();
-                
-                // Need to refresh the reference
-                var oNewColumn = this._oColumnSet.tree[0][index];
-
-                // What are new key index(es)
-                var aNewKeyIndexes = oNewColumn.getKeyIndex();
-                // Must be a parent Column
-                if(aNewKeyIndexes === null) {
-                    descKeyIndexes = [];
-                    allDescendants = this._oColumnSet.getDescendants(oNewColumn);
-                    for(i=0, len=allDescendants.length; i<len; i++) {
-                        // Is this descendant a key Column?
-                        thisKey = allDescendants[i].getKeyIndex();
-                        if(thisKey !== null) {
-                            descKeyIndexes[descKeyIndexes.length] = thisKey;
-                        }
-                    }
-                    if(descKeyIndexes.length > 0) {
-                        aNewKeyIndexes = descKeyIndexes;
-                    }
-                }
-                // Must be a key Column
-                else {
-                    aNewKeyIndexes = [aNewKeyIndexes];
-                }
-                
-                // Sort the new indexes and grab the first one for the new location
-                var newIndex = aNewKeyIndexes.sort(function(a, b) {return YAHOO.util.Sort.compare(a, b);})[0];
-
-                // Reorder COL
-                this._reorderColgroupColEl(aOrigKeyIndexes, newIndex);
-                
-                // Reorder TD
-                var allRows = this._elTbody.rows;
-                if(allRows.length > 0) {
-                    var loopN = this.get("renderLoopSize"),
-                        loopEnd = allRows.length;
-                    this._oChainRender.add({
-                        method: function(oArg) {
-                            if((this instanceof DT) && this._sId) {
-                                var i = oArg.nCurrentRow, j, tmpTds, nextSibling,
-                                    len = loopN > 0 ? Math.min(i + loopN,allRows.length) : allRows.length,
-                                    aIndexes = oArg.aIndexes, thisTr;
-                                // For each row
-                                for(; i < len; ++i) {
-                                    tmpTds = [];
-                                    thisTr = allRows[i];
-                                    
-                                    // Remove each TD
-                                    for(j=aIndexes.length-1; j>-1; j--) {
-                                        tmpTds.push(thisTr.removeChild(thisTr.childNodes[aIndexes[j]]));
-                                    }
-                                    
-                                    // Insert each TD
-                                    nextSibling = thisTr.childNodes[newIndex] || null;
-                                    for(j=tmpTds.length-1; j>-1; j--) {
-                                        thisTr.insertBefore(tmpTds[j], nextSibling);
-                                    }                                    
-                                }
-                                oArg.nCurrentRow = i;
-                            }
-                        },
-                        iterations: (loopN > 0) ? Math.ceil(loopEnd/loopN) : 1,
-                        argument: {nCurrentRow:0, aIndexes:aOrigKeyIndexes},
-                        scope: this,
-                        timeout: (loopN > 0) ? 0 : -1
-                    });
-                    this._runRenderChain();
-                }
-        
-                this.fireEvent("columnReorderEvent",{column:oNewColumn});
-                return oNewColumn;
-            }
-        }
-    }
-},
-
-/**
- * Selects given Column. NOTE: You cannot select/unselect nested Columns. You can only
- * select/unselect non-nested Columns, and bottom-level key Columns.
- *
- * @method selectColumn
- * @param column {HTMLElement | String | Number} DOM reference or ID string to a
- * TH/TD element (or child of a TH/TD element), a Column key, or a ColumnSet key index.
- */
-selectColumn : function(oColumn) {
-    oColumn = this.getColumn(oColumn);
-    if(oColumn && !oColumn.selected) {
-        // Only bottom-level Columns can get hidden
-        if(oColumn.getKeyIndex() !== null) {
-            oColumn.selected = true;
-            
-            // Update head cell
-            var elTh = oColumn.getThEl();
-            Dom.addClass(elTh,DT.CLASS_SELECTED);
-
-            // Update body cells
-            var allRows = this.getTbodyEl().rows;
-            var oChainRender = this._oChainRender;
-            oChainRender.add({
-                method: function(oArg) {
-                    if((this instanceof DT) && this._sId && allRows[oArg.rowIndex] && allRows[oArg.rowIndex].cells[oArg.cellIndex]) {
-                        Dom.addClass(allRows[oArg.rowIndex].cells[oArg.cellIndex],DT.CLASS_SELECTED);                    
-                    }
-                    oArg.rowIndex++;
-                },
-                scope: this,
-                iterations: allRows.length,
-                argument: {rowIndex:0,cellIndex:oColumn.getKeyIndex()}
-            });
-
-            this._clearTrTemplateEl();
-            
-            this._elTbody.style.display = "none";
-            this._runRenderChain();
-            this._elTbody.style.display = "";      
-            
-            this.fireEvent("columnSelectEvent",{column:oColumn});
-        }
-        else {
-        }
-    }
-},
-
-/**
- * Unselects given Column. NOTE: You cannot select/unselect nested Columns. You can only
- * select/unselect non-nested Columns, and bottom-level key Columns.
- *
- * @method unselectColumn
- * @param column {HTMLElement | String | Number} DOM reference or ID string to a
- * TH/TD element (or child of a TH/TD element), a Column key, or a ColumnSet key index.
- */
-unselectColumn : function(oColumn) {
-    oColumn = this.getColumn(oColumn);
-    if(oColumn && oColumn.selected) {
-        // Only bottom-level Columns can get hidden
-        if(oColumn.getKeyIndex() !== null) {
-            oColumn.selected = false;
-            
-            // Update head cell
-            var elTh = oColumn.getThEl();
-            Dom.removeClass(elTh,DT.CLASS_SELECTED);
-
-            // Update body cells
-            var allRows = this.getTbodyEl().rows;
-            var oChainRender = this._oChainRender;
-            oChainRender.add({
-                method: function(oArg) {
-                    if((this instanceof DT) && this._sId && allRows[oArg.rowIndex] && allRows[oArg.rowIndex].cells[oArg.cellIndex]) {
-                        Dom.removeClass(allRows[oArg.rowIndex].cells[oArg.cellIndex],DT.CLASS_SELECTED); 
-                    }                   
-                    oArg.rowIndex++;
-                },
-                scope: this,
-                iterations:allRows.length,
-                argument: {rowIndex:0,cellIndex:oColumn.getKeyIndex()}
-            });
-            
-            this._clearTrTemplateEl();
-
-            this._elTbody.style.display = "none";
-            this._runRenderChain();
-            this._elTbody.style.display = "";      
-            
-            this.fireEvent("columnUnselectEvent",{column:oColumn});
-        }
-        else {
-        }
-    }
-},
-
-/**
- * Returns an array selected Column instances.
- *
- * @method getSelectedColumns
- * @return {YAHOO.widget.Column[]} Array of Column instances.
- */
-getSelectedColumns : function(oColumn) {
-    var selectedColumns = [];
-    var aKeys = this._oColumnSet.keys;
-    for(var i=0,len=aKeys.length; i<len; i++) {
-        if(aKeys[i].selected) {
-            selectedColumns[selectedColumns.length] = aKeys[i];
-        }
-    }
-    return selectedColumns;
-},
-
-/**
- * Assigns the class YAHOO.widget.DataTable.CLASS_HIGHLIGHTED to cells of the given Column.
- * NOTE: You cannot highlight/unhighlight nested Columns. You can only
- * highlight/unhighlight non-nested Columns, and bottom-level key Columns.
- *
- * @method highlightColumn
- * @param column {HTMLElement | String | Number} DOM reference or ID string to a
- * TH/TD element (or child of a TH/TD element), a Column key, or a ColumnSet key index.
- */
-highlightColumn : function(column) {
-    var oColumn = this.getColumn(column);
-    // Only bottom-level Columns can get highlighted
-    if(oColumn && (oColumn.getKeyIndex() !== null)) {            
-        // Update head cell
-        var elTh = oColumn.getThEl();
-        Dom.addClass(elTh,DT.CLASS_HIGHLIGHTED);
-
-        // Update body cells
-        var allRows = this.getTbodyEl().rows;
-        var oChainRender = this._oChainRender;
-        oChainRender.add({
-            method: function(oArg) {
-                if((this instanceof DT) && this._sId && allRows[oArg.rowIndex] && allRows[oArg.rowIndex].cells[oArg.cellIndex]) {
-                    Dom.addClass(allRows[oArg.rowIndex].cells[oArg.cellIndex],DT.CLASS_HIGHLIGHTED);   
-                }                 
-                oArg.rowIndex++;
-            },
-            scope: this,
-            iterations:allRows.length,
-            argument: {rowIndex:0,cellIndex:oColumn.getKeyIndex()},
-            timeout: -1
-        });
-        this._elTbody.style.display = "none";
-        this._runRenderChain();
-        this._elTbody.style.display = "";      
-            
-        this.fireEvent("columnHighlightEvent",{column:oColumn});
-    }
-    else {
-    }
-},
-
-/**
- * Removes the class YAHOO.widget.DataTable.CLASS_HIGHLIGHTED to cells of the given Column.
- * NOTE: You cannot highlight/unhighlight nested Columns. You can only
- * highlight/unhighlight non-nested Columns, and bottom-level key Columns.
- *
- * @method unhighlightColumn
- * @param column {HTMLElement | String | Number} DOM reference or ID string to a
- * TH/TD element (or child of a TH/TD element), a Column key, or a ColumnSet key index.
- */
-unhighlightColumn : function(column) {
-    var oColumn = this.getColumn(column);
-    // Only bottom-level Columns can get highlighted
-    if(oColumn && (oColumn.getKeyIndex() !== null)) {
-        // Update head cell
-        var elTh = oColumn.getThEl();
-        Dom.removeClass(elTh,DT.CLASS_HIGHLIGHTED);
-
-        // Update body cells
-        var allRows = this.getTbodyEl().rows;
-        var oChainRender = this._oChainRender;
-        oChainRender.add({
-            method: function(oArg) {
-                if((this instanceof DT) && this._sId && allRows[oArg.rowIndex] && allRows[oArg.rowIndex].cells[oArg.cellIndex]) {
-                    Dom.removeClass(allRows[oArg.rowIndex].cells[oArg.cellIndex],DT.CLASS_HIGHLIGHTED);
-                }                 
-                oArg.rowIndex++;
-            },
-            scope: this,
-            iterations:allRows.length,
-            argument: {rowIndex:0,cellIndex:oColumn.getKeyIndex()},
-            timeout: -1
-        });
-        this._elTbody.style.display = "none";
-        this._runRenderChain();
-        this._elTbody.style.display = "";     
-            
-        this.fireEvent("columnUnhighlightEvent",{column:oColumn});
-    }
-    else {
-    }
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// ROW FUNCTIONS
-
-/**
- * Adds one new Record of data into the RecordSet at the index if given,
- * otherwise at the end. If the new Record is in page view, the
- * corresponding DOM elements are also updated.
- *
- * @method addRow
- * @param oData {Object} Object literal of data for the row.
- * @param index {Number} (optional) RecordSet position index at which to add data.
- */
-addRow : function(oData, index) {
-    if(oData && lang.isObject(oData)) {
-        var oRecord = this._oRecordSet.addRecord(oData, index);
-        if(oRecord) {
-            var recIndex;
-            var oPaginator = this.get('paginator');
-
-            // Paginated
-            if (oPaginator) {     
-                // Update the paginator's totalRecords
-                var totalRecords = oPaginator.get('totalRecords');
-                if (totalRecords !== widget.Paginator.VALUE_UNLIMITED) {
-                    oPaginator.set('totalRecords',totalRecords + 1);
-                }
-
-                recIndex = this.getRecordIndex(oRecord);
-                var endRecIndex = (oPaginator.getPageRecords())[1];
-
-                // New record affects the view
-                if (recIndex <= endRecIndex) {
-                    // Defer UI updates to the render method
-                    this.render();
-                }
-                
-                this.fireEvent("rowAddEvent", {record:oRecord});
-                return;
-            }
-            // Not paginated
-            else {
-                recIndex = this.getTrIndex(oRecord);
-                if(lang.isNumber(recIndex)) {
-                    // Add the TR element
-                    this._oChainRender.add({
-                        method: function(oArg) {
-                            if((this instanceof DT) && this._sId) {
-                                var oRecord = oArg.record;
-                                var recIndex = oArg.recIndex;
-                                var elNewTr = this._addTrEl(oRecord);
-                                if(elNewTr) {
-                                    var elNext = (this._elTbody.rows[recIndex]) ? this._elTbody.rows[recIndex] : null;
-                                    this._elTbody.insertBefore(elNewTr, elNext);
-
-                                    // Set FIRST/LAST
-                                    if(recIndex === 0) {
-                                        this._setFirstRow();
-                                    }
-                                    if(elNext === null) {
-                                        this._setLastRow();
-                                    }
-                                    // Set EVEN/ODD
-                                    this._setRowStripes();                           
-                                    
-                                    this.hideTableMessage();
-            
-                                    this.fireEvent("rowAddEvent", {record:oRecord});
-                                }
-                            }
-                        },
-                        argument: {record: oRecord, recIndex: recIndex},
-                        scope: this,
-                        timeout: (this.get("renderLoopSize") > 0) ? 0 : -1
-                    });
-                    this._runRenderChain();
-                    return;
-                }
-            }            
-        }
-    }
-},
-
-/**
- * Convenience method to add multiple rows.
- *
- * @method addRows
- * @param aData {Object[]} Array of object literal data for the rows.
- * @param index {Number} (optional) RecordSet position index at which to add data.
- */
-addRows : function(aData, index) {
-    if(lang.isArray(aData)) {
-        var aRecords = this._oRecordSet.addRecords(aData, index);
-        if(aRecords) {
-            var recIndex = this.getRecordIndex(aRecords[0]);
-            
-            // Paginated
-            var oPaginator = this.get('paginator');
-            if (oPaginator) {
-                // Update the paginator's totalRecords
-                var totalRecords = oPaginator.get('totalRecords');
-                if (totalRecords !== widget.Paginator.VALUE_UNLIMITED) {
-                    oPaginator.set('totalRecords',totalRecords + aRecords.length);
-                }
-    
-                var endRecIndex = (oPaginator.getPageRecords())[1];
-
-                // At least one of the new records affects the view
-                if (recIndex <= endRecIndex) {
-                    this.render();
-                }
-                
-                this.fireEvent("rowsAddEvent", {records:aRecords});
-                return;
-            }
-            // Not paginated
-            else {
-                // Add the TR elements
-                var loopN = this.get("renderLoopSize");
-                var loopEnd = recIndex + aData.length;
-                var nRowsNeeded = (loopEnd - recIndex); // how many needed
-                this._oChainRender.add({
-                    method: function(oArg) {
-                        if((this instanceof DT) && this._sId) {
-                            var aRecords = oArg.aRecords,
-                                i = oArg.nCurrentRow,
-                                j = oArg.nCurrentRecord,
-                                len = loopN > 0 ? Math.min(i + loopN,loopEnd) : loopEnd,
-                                df = document.createDocumentFragment(),
-                                tr;
-                            for(; i < len; ++i,++j) {
-                                df.appendChild(this._addTrEl(aRecords[j]));
-                            }
-                            var elNext = (this._elTbody.rows[index]) ? this._elTbody.rows[index] : null;
-                            this._elTbody.insertBefore(df, elNext);
-                            oArg.nCurrentRow = i;
-                            oArg.nCurrentRecord = j;
-                        }
-                    },
-                    iterations: (loopN > 0) ? Math.ceil(loopEnd/loopN) : 1,
-                    argument: {nCurrentRow:recIndex,nCurrentRecord:0,aRecords:aRecords},
-                    scope: this,
-                    timeout: (loopN > 0) ? 0 : -1
-                });
-                this._oChainRender.add({
-                    method: function(oArg) {
-                        var recIndex = oArg.recIndex;
-                        // Set FIRST/LAST
-                        if(recIndex === 0) {
-                            this._setFirstRow();
-                        }
-                        if(recIndex === this._elTbody.rows.length-1) {
-                            this._setLastRow();
-                        }
-                        // Set EVEN/ODD
-                        this._setRowStripes();                           
-
-                        this.fireEvent("rowsAddEvent", {records:aRecords});
-                    },
-                    argument: {recIndex: recIndex},
-                    scope: this,
-                    timeout: -1 // Needs to run immediately after the DOM insertions above
-                });
-                this._runRenderChain();
-                this.hideTableMessage();                
-                return;
-            }            
-        }
-    }
-},
-
-/**
- * For the given row, updates the associated Record with the given data. If the
- * row is on current page, the corresponding DOM elements are also updated.
- *
- * @method updateRow
- * @param row {YAHOO.widget.Record | Number | HTMLElement | String}
- * Which row to update: By Record instance, by Record's RecordSet
- * position index, by HTMLElement reference to the TR element, or by ID string
- * of the TR element.
- * @param oData {Object} Object literal of data for the row.
- */
-updateRow : function(row, oData) {
-    var oldRecord, oldData, updatedRecord, elRow;
-
-    // Get the Record directly
-    if((row instanceof YAHOO.widget.Record) || (lang.isNumber(row))) {
-        // Get the Record directly
-        oldRecord = this._oRecordSet.getRecord(row);
-
-        // Is this row on current page?
-        elRow = this.getTrEl(oldRecord);
-    }
-    // Get the Record by TR element
-    else {
-        elRow = this.getTrEl(row);
-        if(elRow) {
-            oldRecord = this.getRecord(elRow);
-        }
-    }
-
-    // Update the Record
-    if(oldRecord) {
-        // Copy data from the Record for the event that gets fired later
-        var oRecordData = oldRecord.getData();
-        oldData = YAHOO.widget.DataTable._cloneObject(oRecordData);
-
-        updatedRecord = this._oRecordSet.updateRecord(oldRecord, oData);
-    }
-    else {
-        return;
-
-    }
-
-    // Update the TR only if row is on current page
-    if(elRow) {
-        this._oChainRender.add({
-            method: function() {
-                if((this instanceof DT) && this._sId) {
-                    this._updateTrEl(elRow, updatedRecord);
-                    this.fireEvent("rowUpdateEvent", {record:updatedRecord, oldData:oldData});
-                }
-            },
-            scope: this,
-            timeout: (this.get("renderLoopSize") > 0) ? 0 : -1
-        });
-        this._runRenderChain();
-    }
-    else {
-        this.fireEvent("rowUpdateEvent", {record:updatedRecord, oldData:oldData});
-    }
-},
-
-/**
- * Deletes the given row's Record from the RecordSet. If the row is on current page,
- * the corresponding DOM elements are also deleted.
- *
- * @method deleteRow
- * @param row {HTMLElement | String | Number} DOM element reference or ID string
- * to DataTable page element or RecordSet index.
- */
-deleteRow : function(row) {
-    var nRecordIndex = this.getRecordIndex(row);
-    if(lang.isNumber(nRecordIndex)) {
-        var oRecord = this.getRecord(nRecordIndex);
-        if(oRecord) {
-            var nTrIndex = this.getTrIndex(nRecordIndex);
-            
-            // Remove from selection tracker if there
-            var sRecordId = oRecord.getId();
-            var tracker = this._aSelections || [];
-            for(var j=tracker.length-1; j>-1; j--) {
-                if((lang.isNumber(tracker[j]) && (tracker[j] === sRecordId)) ||
-                        (lang.isObject(tracker[j]) && (tracker[j].recordId === sRecordId))) {
-                    tracker.splice(j,1);
-                }
-            }
-    
-            // Delete Record from RecordSet
-            var oData = this._oRecordSet.deleteRecord(nRecordIndex);
-    
-            // Update the UI
-            if(oData) {
-                // If paginated and the deleted row was on this or a prior page, just
-                // re-render
-                var oPaginator = this.get('paginator');
-                if (oPaginator) {
-                    // Update the paginator's totalRecords
-                    var totalRecords = oPaginator.get('totalRecords'),
-                        // must capture before the totalRecords change because
-                        // Paginator shifts to previous page automatically
-                        rng = oPaginator.getPageRecords();
-
-                    if (totalRecords !== widget.Paginator.VALUE_UNLIMITED) {
-                        oPaginator.set('totalRecords',totalRecords - 1);
-                    }
-    
-                    // The deleted record was on this or a prior page, re-render
-                    if (!rng || nRecordIndex <= rng[1]) {
-                        this.render();
-                    }
-                    return;
-                }
-                // Not paginated
-                else {
-                    if(lang.isNumber(nTrIndex)) {
-                        this._oChainRender.add({
-                            method: function() {
-                                if((this instanceof DT) && this._sId) {
-                                    var isLast = (nTrIndex == this.getLastTrEl().sectionRowIndex);
-                                    this._deleteTrEl(nTrIndex);
-                    
-                                    // Post-delete tasks
-                                    if(this._elTbody.rows.length > 0) {
-                                        // Set FIRST/LAST
-                                        if(nTrIndex === 0) {
-                                            this._setFirstRow();
-                                        }
-                                        if(isLast) {
-                                            this._setLastRow();
-                                        }
-                                        // Set EVEN/ODD
-                                        if(nTrIndex != this._elTbody.rows.length) {
-                                            this._setRowStripes(nTrIndex);
-                                        }                                
-                                    }
-                    
-                                    this.fireEvent("rowDeleteEvent", {recordIndex:nRecordIndex,
-                                    oldData:oData, trElIndex:nTrIndex});
-                                }
-                            },
-                            scope: this,
-                            timeout: (this.get("renderLoopSize") > 0) ? 0 : -1
-                        });
-                        this._runRenderChain();
-                        return;
-                    }
-                }
-            }
-        }
-    }
-    return null;
-},
-
-/**
- * Convenience method to delete multiple rows.
- *
- * @method deleteRows
- * @param row {HTMLElement | String | Number} DOM element reference or ID string
- * to DataTable page element or RecordSet index.
- * @param count {Number} (optional) How many rows to delete. A negative value
- * will delete towards the beginning.
- */
-deleteRows : function(row, count) {
-    var nRecordIndex = this.getRecordIndex(row);
-    if(lang.isNumber(nRecordIndex)) {
-        var oRecord = this.getRecord(nRecordIndex);
-        if(oRecord) {
-            var nTrIndex = this.getTrIndex(nRecordIndex);
-            
-            // Remove from selection tracker if there
-            var sRecordId = oRecord.getId();
-            var tracker = this._aSelections || [];
-            for(var j=tracker.length-1; j>-1; j--) {
-                if((lang.isNumber(tracker[j]) && (tracker[j] === sRecordId)) ||
-                        (lang.isObject(tracker[j]) && (tracker[j].recordId === sRecordId))) {
-                    tracker.splice(j,1);
-                }
-            }
-    
-            // Delete Record from RecordSet
-            var highIndex = nRecordIndex;
-            var lowIndex = nRecordIndex;
-        
-            // Validate count and account for negative value
-            if(count && lang.isNumber(count)) {
-                highIndex = (count > 0) ? nRecordIndex + count -1 : nRecordIndex;
-                lowIndex = (count > 0) ? nRecordIndex : nRecordIndex + count + 1;
-                count = (count > 0) ? count : count*-1;
-            }
-            else {
-                count = 1;
-            }
-            
-            var aData = this._oRecordSet.deleteRecords(lowIndex, count);
-    
-            // Update the UI
-            if(aData) {
-                var oPaginator = this.get('paginator');
-                // If paginated and the deleted row was on this or a prior page, just
-                // re-render
-                if (oPaginator) {
-                    // Update the paginator's totalRecords
-                    var totalRecords = oPaginator.get('totalRecords'),
-                        // must capture before the totalRecords change because
-                        // Paginator shifts to previous page automatically
-                        rng = oPaginator.getPageRecords();
-
-                    if (totalRecords !== widget.Paginator.VALUE_UNLIMITED) {
-                        oPaginator.set('totalRecords',totalRecords - aData.length);
-                    }
-    
-                    // The records were on this or a prior page, re-render
-                    if (!rng || lowIndex <= rng[1]) {
-                        this.render();
-                    }
-                    return;
-                }
-                // Not paginated
-                else {
-                    if(lang.isNumber(nTrIndex)) {
-                        // Delete the TR elements starting with highest index
-                        var loopN = this.get("renderLoopSize");
-                        var loopEnd = lowIndex;
-                        var nRowsNeeded = count; // how many needed
-                        this._oChainRender.add({
-                            method: function(oArg) {
-                                if((this instanceof DT) && this._sId) {
-                                    var i = oArg.nCurrentRow,
-                                        len = (loopN > 0) ? (Math.max(i - loopN,loopEnd)-1) : loopEnd-1;
-                                    for(; i>len; --i) {
-                                        this._deleteTrEl(i);
-                                    }
-                                    oArg.nCurrentRow = i;
-                                }
-                            },
-                            iterations: (loopN > 0) ? Math.ceil(count/loopN) : 1,
-                            argument: {nCurrentRow:highIndex},
-                            scope: this,
-                            timeout: (loopN > 0) ? 0 : -1
-                        });
-                        this._oChainRender.add({
-                            method: function() {    
-                                // Post-delete tasks
-                                if(this._elTbody.rows.length > 0) {
-                                    this._setFirstRow();
-                                    this._setLastRow();
-                                    this._setRowStripes();
-                                }
-                                
-                                this.fireEvent("rowsDeleteEvent", {recordIndex:count,
-                                oldData:aData, count:nTrIndex});
-                            },
-                            scope: this,
-                            timeout: -1 // Needs to run immediately after the DOM deletions above
-                        });
-                        this._runRenderChain();
-                        return;
-                    }
-                }
-            }
-        }
-    }
-    return null;
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// CELL FUNCTIONS
-
-/**
- * Outputs markup into the given TD based on given Record.
- *
- * @method formatCell
- * @param elCell {HTMLElement} The liner DIV element within the TD.
- * @param oRecord {YAHOO.widget.Record} (Optional) Record instance.
- * @param oColumn {YAHOO.widget.Column} (Optional) Column instance.
- */
-formatCell : function(elCell, oRecord, oColumn) {
-    if(!oRecord) {
-        oRecord = this.getRecord(elCell);
-    }
-    if(!oColumn) {
-        oColumn = this.getColumn(elCell.parentNode.cellIndex);
-    }
-
-    if(oRecord && oColumn) {
-        var sField = oColumn.field;
-        var oData = oRecord.getData(sField);
-
-        var fnFormatter = typeof oColumn.formatter === 'function' ?
-                          oColumn.formatter :
-                          DT.Formatter[oColumn.formatter+''] ||
-                          DT.Formatter.defaultFormatter;
-
-        // Apply special formatter
-        if(fnFormatter) {
-            fnFormatter.call(this, elCell, oRecord, oColumn, oData);
-        }
-        else {
-            elCell.innerHTML = oData;
-        }
-
-        this.fireEvent("cellFormatEvent", {record:oRecord, column:oColumn, key:oColumn.key, el:elCell});
-    }
-    else {
-    }
-},
-
-/**
- * For the given row and column, updates the Record with the given data. If the
- * cell is on current page, the corresponding DOM elements are also updated.
- *
- * @method updateCell
- * @param oRecord {YAHOO.widget.Record} Record instance.
- * @param oColumn {YAHOO.widget.Column | String | Number} A Column key, or a ColumnSet key index.
- * @param oData {Object} Object literal of data for the cell.
- */
-updateCell : function(oRecord, oColumn, oData) {    
-    // Validate Column and Record
-    oColumn = (oColumn instanceof YAHOO.widget.Column) ? oColumn : this.getColumn(oColumn);
-    if(oColumn && oColumn.getKey() && (oRecord instanceof YAHOO.widget.Record)) {
-        // Copy data from the Record for the event that gets fired later
-        var oldData = YAHOO.widget.DataTable._cloneObject(oRecord.getData());
-
-        // Update Record with new data
-        this._oRecordSet.updateRecordValue(oRecord, oColumn.getKey(), oData);
-    
-        // Update the TD only if row is on current page
-        var elTd = this.getTdEl({record: oRecord, column: oColumn});
-        if(elTd) {
-            this._oChainRender.add({
-                method: function() {
-                    if((this instanceof DT) && this._sId) {
-                        this.formatCell(elTd.firstChild);
-                        this.fireEvent("cellUpdateEvent", {record:oRecord, column: oColumn, oldData:oldData});
-                    }
-                },
-                scope: this,
-                timeout: (this.get("renderLoopSize") > 0) ? 0 : -1
-            });
-            this._runRenderChain();
-        }
-        else {
-            this.fireEvent("cellUpdateEvent", {record:oRecord, column: oColumn, oldData:oldData});
-        }
-    }
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// PAGINATION
-/**
- * Method executed during set() operation for the "paginator" attribute.
- * Adds and/or severs event listeners between DataTable and Paginator
- *
- * @method _updatePaginator
- * @param newPag {Paginator} Paginator instance (or null) for DataTable to use
- * @private
- */
-_updatePaginator : function (newPag) {
-    var oldPag = this.get('paginator');
-    if (oldPag && newPag !== oldPag) {
-        oldPag.unsubscribe('changeRequest', this.onPaginatorChangeRequest, this, true);
-    }
-    if (newPag) {
-        newPag.subscribe('changeRequest', this.onPaginatorChangeRequest, this, true);
-    }
-},
-
-/**
- * Update the UI infrastructure in response to a "paginator" attribute change.
- *
- * @method _handlePaginatorChange
- * @param e {Object} Change event object containing keys 'type','newValue',
- *                   and 'prevValue'
- * @private
- */
-_handlePaginatorChange : function (e) {
-    if (e.prevValue === e.newValue) { return; }
-
-    var newPag     = e.newValue,
-        oldPag     = e.prevValue,
-        containers = this._defaultPaginatorContainers();
-
-    if (oldPag) {
-        if (oldPag.getContainerNodes()[0] == containers[0]) {
-            oldPag.set('containers',[]);
-        }
-        oldPag.destroy();
-
-        // Convenience: share the default containers if possible.
-        // Otherwise, remove the default containers from the DOM.
-        if (containers[0]) {
-            if (newPag && !newPag.getContainerNodes().length) {
-                newPag.set('containers',containers);
-            } else {
-                // No new Paginator to use existing containers, OR new
-                // Paginator has configured containers.
-                for (var i = containers.length - 1; i >= 0; --i) {
-                    if (containers[i]) {
-                        containers[i].parentNode.removeChild(containers[i]);
-                    }
-                }
-            }
-        }
-    }
-
-    if (!this._bInit) {
-        this.render();
-
-    }
-
-    if (newPag) {
-        this.renderPaginator();
-    }
-
-},
-
-/**
- * Returns the default containers used for Paginators.  If create param is
- * passed, the containers will be created and added to the DataTable container.
- *
- * @method _defaultPaginatorContainers
- * @param create {boolean} Create the default containers if not found
- * @private
- */
-_defaultPaginatorContainers : function (create) {
-    var above_id = this._sId + '-paginator0',
-        below_id = this._sId + '-paginator1',
-        above    = Dom.get(above_id),
-        below    = Dom.get(below_id);
-
-    if (create && (!above || !below)) {
-        // One above and one below the table
-        if (!above) {
-            above    = document.createElement('div');
-            above.id = above_id;
-            Dom.addClass(above, DT.CLASS_PAGINATOR);
-
-            this._elContainer.insertBefore(above,this._elContainer.firstChild);
-        }
-
-        if (!below) {
-            below    = document.createElement('div');
-            below.id = below_id;
-            Dom.addClass(below, DT.CLASS_PAGINATOR);
-
-            this._elContainer.appendChild(below);
-        }
-    }
-
-    return [above,below];
-},
-
-/**
- * Renders the Paginator to the DataTable UI
- *
- * @method renderPaginator
- */
-renderPaginator : function () {
-    var pag = this.get("paginator");
-    if (!pag) { return; }
-
-    // Add the containers if the Paginator is not configured with containers
-    if (!pag.getContainerNodes().length) {
-        pag.set('containers',this._defaultPaginatorContainers(true));
-    }
-
-    pag.render();
-},
-
-/**
- * Overridable method gives implementers a hook to show loading message before
- * changing Paginator value.
- *
- * @method doBeforePaginatorChange
- * @param oPaginatorState {Object} An object literal describing the proposed pagination state.
- * @return {Boolean} Return true to continue changing Paginator value.
- */
-doBeforePaginatorChange : function(oPaginatorState) {
-    this.showTableMessage(this.get("MSG_LOADING"), DT.CLASS_LOADING);
-    return true;
-},
-
-/**
- * Responds to new Pagination states. By default, updates the UI to reflect the
- * new state. If "dynamicData" is true, current selections are purged before
- * a request is sent to the DataSource for data for the new state (using the
- * request returned by "generateRequest()").
- *  
- * @method onPaginatorChangeRequest
- * @param oPaginatorState {Object} An object literal describing the proposed pagination state.
- */
-onPaginatorChangeRequest : function (oPaginatorState) {
-    var ok = this.doBeforePaginatorChange(oPaginatorState);
-    if(ok) {
-        // Server-side pagination
-        if(this.get("dynamicData")) {
-            // Get the current state
-            var oState = this.getState();
-            
-            // Update pagination values
-            oState.pagination = oPaginatorState;
-    
-            // Get the request for the new state
-            var request = this.get("generateRequest")(oState, this);
-            
-            // Purge selections
-            this.unselectAllRows();
-            this.unselectAllCells();
-            
-            // Get the new data from the server
-            var callback = {
-                success : this.onDataReturnSetRows,
-                failure : this.onDataReturnSetRows,
-                argument : oState, // Pass along the new state to the callback
-                scope : this
-            };
-            this._oDataSource.sendRequest(request, callback);
-        }
-        // Client-side pagination
-        else {
-            // Set the core pagination values silently (the second param)
-            // to avoid looping back through the changeRequest mechanism
-            oPaginatorState.paginator.setStartIndex(oPaginatorState.recordOffset,true);
-            oPaginatorState.paginator.setRowsPerPage(oPaginatorState.rowsPerPage,true);
-    
-            // Update the UI
-            this.render();
-        }
-    }
-    else {
-    }
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// SELECTION/HIGHLIGHTING
-
-/*
- * Reference to last highlighted cell element
- *
- * @property _elLastHighlightedTd
- * @type HTMLElement
- * @private
- */
-_elLastHighlightedTd : null,
-
-/*
- * ID string of last highlighted row element
- *
- * @property _sLastHighlightedTrElId
- * @type String
- * @private
- */
-//_sLastHighlightedTrElId : null,
-
-/**
- * Array to track row selections (by sRecordId) and/or cell selections
- * (by {recordId:sRecordId, columnKey:sColumnKey})
- *
- * @property _aSelections
- * @type Object[]
- * @private
- */
-_aSelections : null,
-
-/**
- * Record instance of the row selection anchor.
- *
- * @property _oAnchorRecord
- * @type YAHOO.widget.Record
- * @private
- */
-_oAnchorRecord : null,
-
-/**
- * Object literal representing cell selection anchor:
- * {recordId:sRecordId, columnKey:sColumnKey}.
- *
- * @property _oAnchorCell
- * @type Object
- * @private
- */
-_oAnchorCell : null,
-
-/**
- * Convenience method to remove the class YAHOO.widget.DataTable.CLASS_SELECTED
- * from all TR elements on the page.
- *
- * @method _unselectAllTrEls
- * @private
- */
-_unselectAllTrEls : function() {
-    var selectedRows = Dom.getElementsByClassName(DT.CLASS_SELECTED,"tr",this._elTbody);
-    Dom.removeClass(selectedRows, DT.CLASS_SELECTED);
-},
-
-/**
- * Returns object literal of values that represent the selection trigger. Used
- * to determine selection behavior resulting from a key event.
- *
- * @method _getSelectionTrigger
- * @private
- */
-_getSelectionTrigger : function() {
-    var sMode = this.get("selectionMode");
-    var oTrigger = {};
-    var oTriggerCell, oTriggerRecord, nTriggerRecordIndex, elTriggerRow, nTriggerTrIndex;
-
-    // Cell mode
-    if((sMode == "cellblock") || (sMode == "cellrange") || (sMode == "singlecell")) {
-        oTriggerCell = this.getLastSelectedCell();
-        // No selected cells found
-        if(!oTriggerCell) {
-            return null;
-        }
-        else {
-            oTriggerRecord = this.getRecord(oTriggerCell.recordId);
-            nTriggerRecordIndex = this.getRecordIndex(oTriggerRecord);
-            elTriggerRow = this.getTrEl(oTriggerRecord);
-            nTriggerTrIndex = this.getTrIndex(elTriggerRow);
-
-            // Selected cell not found on this page
-            if(nTriggerTrIndex === null) {
-                return null;
-            }
-            else {
-                oTrigger.record = oTriggerRecord;
-                oTrigger.recordIndex = nTriggerRecordIndex;
-                oTrigger.el = this.getTdEl(oTriggerCell);
-                oTrigger.trIndex = nTriggerTrIndex;
-                oTrigger.column = this.getColumn(oTriggerCell.columnKey);
-                oTrigger.colKeyIndex = oTrigger.column.getKeyIndex();
-                oTrigger.cell = oTriggerCell;
-                return oTrigger;
-            }
-        }
-    }
-    // Row mode
-    else {
-        oTriggerRecord = this.getLastSelectedRecord();
-        // No selected rows found
-        if(!oTriggerRecord) {
-                return null;
-        }
-        else {
-            // Selected row found, but is it on current page?
-            oTriggerRecord = this.getRecord(oTriggerRecord);
-            nTriggerRecordIndex = this.getRecordIndex(oTriggerRecord);
-            elTriggerRow = this.getTrEl(oTriggerRecord);
-            nTriggerTrIndex = this.getTrIndex(elTriggerRow);
-
-            // Selected row not found on this page
-            if(nTriggerTrIndex === null) {
-                return null;
-            }
-            else {
-                oTrigger.record = oTriggerRecord;
-                oTrigger.recordIndex = nTriggerRecordIndex;
-                oTrigger.el = elTriggerRow;
-                oTrigger.trIndex = nTriggerTrIndex;
-                return oTrigger;
-            }
-        }
-    }
-},
-
-/**
- * Returns object literal of values that represent the selection anchor. Used
- * to determine selection behavior resulting from a user event.
- *
- * @method _getSelectionAnchor
- * @param oTrigger {Object} (Optional) Object literal of selection trigger values
- * (for key events).
- * @private
- */
-_getSelectionAnchor : function(oTrigger) {
-    var sMode = this.get("selectionMode");
-    var oAnchor = {};
-    var oAnchorRecord, nAnchorRecordIndex, nAnchorTrIndex;
-
-    // Cell mode
-    if((sMode == "cellblock") || (sMode == "cellrange") || (sMode == "singlecell")) {
-        // Validate anchor cell
-        var oAnchorCell = this._oAnchorCell;
-        if(!oAnchorCell) {
-            if(oTrigger) {
-                oAnchorCell = this._oAnchorCell = oTrigger.cell;
-            }
-            else {
-                return null;
-            }
-        }
-        oAnchorRecord = this._oAnchorCell.record;
-        nAnchorRecordIndex = this._oRecordSet.getRecordIndex(oAnchorRecord);
-        nAnchorTrIndex = this.getTrIndex(oAnchorRecord);
-        // If anchor cell is not on this page...
-        if(nAnchorTrIndex === null) {
-            // ...set TR index equal to top TR
-            if(nAnchorRecordIndex < this.getRecordIndex(this.getFirstTrEl())) {
-                nAnchorTrIndex = 0;
-            }
-            // ...set TR index equal to bottom TR
-            else {
-                nAnchorTrIndex = this.getRecordIndex(this.getLastTrEl());
-            }
-        }
-
-        oAnchor.record = oAnchorRecord;
-        oAnchor.recordIndex = nAnchorRecordIndex;
-        oAnchor.trIndex = nAnchorTrIndex;
-        oAnchor.column = this._oAnchorCell.column;
-        oAnchor.colKeyIndex = oAnchor.column.getKeyIndex();
-        oAnchor.cell = oAnchorCell;
-        return oAnchor;
-    }
-    // Row mode
-    else {
-        oAnchorRecord = this._oAnchorRecord;
-        if(!oAnchorRecord) {
-            if(oTrigger) {
-                oAnchorRecord = this._oAnchorRecord = oTrigger.record;
-            }
-            else {
-                return null;
-            }
-        }
-
-        nAnchorRecordIndex = this.getRecordIndex(oAnchorRecord);
-        nAnchorTrIndex = this.getTrIndex(oAnchorRecord);
-        // If anchor row is not on this page...
-        if(nAnchorTrIndex === null) {
-            // ...set TR index equal to top TR
-            if(nAnchorRecordIndex < this.getRecordIndex(this.getFirstTrEl())) {
-                nAnchorTrIndex = 0;
-            }
-            // ...set TR index equal to bottom TR
-            else {
-                nAnchorTrIndex = this.getRecordIndex(this.getLastTrEl());
-            }
-        }
-
-        oAnchor.record = oAnchorRecord;
-        oAnchor.recordIndex = nAnchorRecordIndex;
-        oAnchor.trIndex = nAnchorTrIndex;
-        return oAnchor;
-    }
-},
-
-/**
- * Determines selection behavior resulting from a mouse event when selection mode
- * is set to "standard".
- *
- * @method _handleStandardSelectionByMouse
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- * @private
- */
-_handleStandardSelectionByMouse : function(oArgs) {
-    var elTarget = oArgs.target;
-
-    // Validate target row
-    var elTargetRow = this.getTrEl(elTarget);
-    if(elTargetRow) {
-        var e = oArgs.event;
-        var bSHIFT = e.shiftKey;
-        var bCTRL = e.ctrlKey || ((navigator.userAgent.toLowerCase().indexOf("mac") != -1) && e.metaKey);
-
-        var oTargetRecord = this.getRecord(elTargetRow);
-        var nTargetRecordIndex = this._oRecordSet.getRecordIndex(oTargetRecord);
-
-        var oAnchor = this._getSelectionAnchor();
-
-        var i;
-
-        // Both SHIFT and CTRL
-        if(bSHIFT && bCTRL) {
-            // Validate anchor
-            if(oAnchor) {
-                if(this.isSelected(oAnchor.record)) {
-                    // Select all rows between anchor row and target row, including target row
-                    if(oAnchor.recordIndex < nTargetRecordIndex) {
-                        for(i=oAnchor.recordIndex+1; i<=nTargetRecordIndex; i++) {
-                            if(!this.isSelected(i)) {
-                                this.selectRow(i);
-                            }
-                        }
-                    }
-                    // Select all rows between target row and anchor row, including target row
-                    else {
-                        for(i=oAnchor.recordIndex-1; i>=nTargetRecordIndex; i--) {
-                            if(!this.isSelected(i)) {
-                                this.selectRow(i);
-                            }
-                        }
-                    }
-                }
-                else {
-                    // Unselect all rows between anchor row and target row
-                    if(oAnchor.recordIndex < nTargetRecordIndex) {
-                        for(i=oAnchor.recordIndex+1; i<=nTargetRecordIndex-1; i++) {
-                            if(this.isSelected(i)) {
-                                this.unselectRow(i);
-                            }
-                        }
-                    }
-                    // Unselect all rows between target row and anchor row
-                    else {
-                        for(i=nTargetRecordIndex+1; i<=oAnchor.recordIndex-1; i++) {
-                            if(this.isSelected(i)) {
-                                this.unselectRow(i);
-                            }
-                        }
-                    }
-                    // Select the target row
-                    this.selectRow(oTargetRecord);
-                }
-            }
-            // Invalid anchor
-            else {
-                // Set anchor
-                this._oAnchorRecord = oTargetRecord;
-
-                // Toggle selection of target
-                if(this.isSelected(oTargetRecord)) {
-                    this.unselectRow(oTargetRecord);
-                }
-                else {
-                    this.selectRow(oTargetRecord);
-                }
-            }
-        }
-         // Only SHIFT
-        else if(bSHIFT) {
-            this.unselectAllRows();
-
-            // Validate anchor
-            if(oAnchor) {
-                // Select all rows between anchor row and target row,
-                // including the anchor row and target row
-                if(oAnchor.recordIndex < nTargetRecordIndex) {
-                    for(i=oAnchor.recordIndex; i<=nTargetRecordIndex; i++) {
-                        this.selectRow(i);
-                    }
-                }
-                // Select all rows between target row and anchor row,
-                // including the target row and anchor row
-                else {
-                    for(i=oAnchor.recordIndex; i>=nTargetRecordIndex; i--) {
-                        this.selectRow(i);
-                    }
-                }
-            }
-            // Invalid anchor
-            else {
-                // Set anchor
-                this._oAnchorRecord = oTargetRecord;
-
-                // Select target row only
-                this.selectRow(oTargetRecord);
-            }
-        }
-        // Only CTRL
-        else if(bCTRL) {
-            // Set anchor
-            this._oAnchorRecord = oTargetRecord;
-
-            // Toggle selection of target
-            if(this.isSelected(oTargetRecord)) {
-                this.unselectRow(oTargetRecord);
-            }
-            else {
-                this.selectRow(oTargetRecord);
-            }
-        }
-        // Neither SHIFT nor CTRL
-        else {
-            this._handleSingleSelectionByMouse(oArgs);
-            return;
-        }
-    }
-},
-
-/**
- * Determines selection behavior resulting from a key event when selection mode
- * is set to "standard".
- *
- * @method _handleStandardSelectionByKey
- * @param e {HTMLEvent} Event object.
- * @private
- */
-_handleStandardSelectionByKey : function(e) {
-    var nKey = Ev.getCharCode(e);
-
-    if((nKey == 38) || (nKey == 40)) {
-        var bSHIFT = e.shiftKey;
-
-        // Validate trigger
-        var oTrigger = this._getSelectionTrigger();
-        // Arrow selection only works if last selected row is on current page
-        if(!oTrigger) {
-            return null;
-        }
-
-        Ev.stopEvent(e);
-
-        // Validate anchor
-        var oAnchor = this._getSelectionAnchor(oTrigger);
-
-        // Determine which direction we're going to
-        if(bSHIFT) {
-            // Selecting down away from anchor row
-            if((nKey == 40) && (oAnchor.recordIndex <= oTrigger.trIndex)) {
-                this.selectRow(this.getNextTrEl(oTrigger.el));
-            }
-            // Selecting up away from anchor row
-            else if((nKey == 38) && (oAnchor.recordIndex >= oTrigger.trIndex)) {
-                this.selectRow(this.getPreviousTrEl(oTrigger.el));
-            }
-            // Unselect trigger
-            else {
-                this.unselectRow(oTrigger.el);
-            }
-        }
-        else {
-            this._handleSingleSelectionByKey(e);
-        }
-    }
-},
-
-/**
- * Determines selection behavior resulting from a mouse event when selection mode
- * is set to "single".
- *
- * @method _handleSingleSelectionByMouse
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- * @private
- */
-_handleSingleSelectionByMouse : function(oArgs) {
-    var elTarget = oArgs.target;
-
-    // Validate target row
-    var elTargetRow = this.getTrEl(elTarget);
-    if(elTargetRow) {
-        var oTargetRecord = this.getRecord(elTargetRow);
-
-        // Set anchor
-        this._oAnchorRecord = oTargetRecord;
-
-        // Select only target
-        this.unselectAllRows();
-        this.selectRow(oTargetRecord);
-    }
-},
-
-/**
- * Determines selection behavior resulting from a key event when selection mode
- * is set to "single".
- *
- * @method _handleSingleSelectionByKey
- * @param e {HTMLEvent} Event object.
- * @private
- */
-_handleSingleSelectionByKey : function(e) {
-    var nKey = Ev.getCharCode(e);
-
-    if((nKey == 38) || (nKey == 40)) {
-        // Validate trigger
-        var oTrigger = this._getSelectionTrigger();
-        // Arrow selection only works if last selected row is on current page
-        if(!oTrigger) {
-            return null;
-        }
-
-        Ev.stopEvent(e);
-
-        // Determine the new row to select
-        var elNew;
-        if(nKey == 38) { // arrow up
-            elNew = this.getPreviousTrEl(oTrigger.el);
-
-            // Validate new row
-            if(elNew === null) {
-                //TODO: wrap around to last tr on current page
-                //elNew = this.getLastTrEl();
-
-                //TODO: wrap back to last tr of previous page
-
-                // Top row selection is sticky
-                elNew = this.getFirstTrEl();
-            }
-        }
-        else if(nKey == 40) { // arrow down
-            elNew = this.getNextTrEl(oTrigger.el);
-
-            // Validate new row
-            if(elNew === null) {
-                //TODO: wrap around to first tr on current page
-                //elNew = this.getFirstTrEl();
-
-                //TODO: wrap forward to first tr of previous page
-
-                // Bottom row selection is sticky
-                elNew = this.getLastTrEl();
-            }
-        }
-
-        // Unselect all rows
-        this.unselectAllRows();
-
-        // Select the new row
-        this.selectRow(elNew);
-
-        // Set new anchor
-        this._oAnchorRecord = this.getRecord(elNew);
-    }
-},
-
-/**
- * Determines selection behavior resulting from a mouse event when selection mode
- * is set to "cellblock".
- *
- * @method _handleCellBlockSelectionByMouse
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- * @private
- */
-_handleCellBlockSelectionByMouse : function(oArgs) {
-    var elTarget = oArgs.target;
-
-    // Validate target cell
-    var elTargetCell = this.getTdEl(elTarget);
-    if(elTargetCell) {
-        var e = oArgs.event;
-        var bSHIFT = e.shiftKey;
-        var bCTRL = e.ctrlKey || ((navigator.userAgent.toLowerCase().indexOf("mac") != -1) && e.metaKey);
-
-        var elTargetRow = this.getTrEl(elTargetCell);
-        var nTargetTrIndex = this.getTrIndex(elTargetRow);
-        var oTargetColumn = this.getColumn(elTargetCell);
-        var nTargetColKeyIndex = oTargetColumn.getKeyIndex();
-        var oTargetRecord = this.getRecord(elTargetRow);
-        var nTargetRecordIndex = this._oRecordSet.getRecordIndex(oTargetRecord);
-        var oTargetCell = {record:oTargetRecord, column:oTargetColumn};
-
-        var oAnchor = this._getSelectionAnchor();
-
-        var allRows = this.getTbodyEl().rows;
-        var startIndex, endIndex, currentRow, i, j;
-
-        // Both SHIFT and CTRL
-        if(bSHIFT && bCTRL) {
-
-            // Validate anchor
-            if(oAnchor) {
-                // Anchor is selected
-                if(this.isSelected(oAnchor.cell)) {
-                    // All cells are on the same row
-                    if(oAnchor.recordIndex === nTargetRecordIndex) {
-                        // Select all cells between anchor cell and target cell, including target cell
-                        if(oAnchor.colKeyIndex < nTargetColKeyIndex) {
-                            for(i=oAnchor.colKeyIndex+1; i<=nTargetColKeyIndex; i++) {
-                                this.selectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                        // Select all cells between target cell and anchor cell, including target cell
-                        else if(nTargetColKeyIndex < oAnchor.colKeyIndex) {
-                            for(i=nTargetColKeyIndex; i<oAnchor.colKeyIndex; i++) {
-                                this.selectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                    }
-                    // Anchor row is above target row
-                    else if(oAnchor.recordIndex < nTargetRecordIndex) {
-                        startIndex = Math.min(oAnchor.colKeyIndex, nTargetColKeyIndex);
-                        endIndex = Math.max(oAnchor.colKeyIndex, nTargetColKeyIndex);
-
-                        // Select all cells from startIndex to endIndex on rows between anchor row and target row
-                        for(i=oAnchor.trIndex; i<=nTargetTrIndex; i++) {
-                            for(j=startIndex; j<=endIndex; j++) {
-                                this.selectCell(allRows[i].cells[j]);
-                            }
-                        }
-                    }
-                    // Anchor row is below target row
-                    else {
-                        startIndex = Math.min(oAnchor.trIndex, nTargetColKeyIndex);
-                        endIndex = Math.max(oAnchor.trIndex, nTargetColKeyIndex);
-
-                        // Select all cells from startIndex to endIndex on rows between target row and anchor row
-                        for(i=oAnchor.trIndex; i>=nTargetTrIndex; i--) {
-                            for(j=endIndex; j>=startIndex; j--) {
-                                this.selectCell(allRows[i].cells[j]);
-                            }
-                        }
-                    }
-                }
-                // Anchor cell is unselected
-                else {
-                    // All cells are on the same row
-                    if(oAnchor.recordIndex === nTargetRecordIndex) {
-                        // Unselect all cells between anchor cell and target cell
-                        if(oAnchor.colKeyIndex < nTargetColKeyIndex) {
-                            for(i=oAnchor.colKeyIndex+1; i<nTargetColKeyIndex; i++) {
-                                this.unselectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                        // Select all cells between target cell and anchor cell
-                        else if(nTargetColKeyIndex < oAnchor.colKeyIndex) {
-                            for(i=nTargetColKeyIndex+1; i<oAnchor.colKeyIndex; i++) {
-                                this.unselectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                    }
-                    // Anchor row is above target row
-                    if(oAnchor.recordIndex < nTargetRecordIndex) {
-                        // Unselect all cells from anchor cell to target cell
-                        for(i=oAnchor.trIndex; i<=nTargetTrIndex; i++) {
-                            currentRow = allRows[i];
-                            for(j=0; j<currentRow.cells.length; j++) {
-                                // This is the anchor row, only unselect cells after the anchor cell
-                                if(currentRow.sectionRowIndex === oAnchor.trIndex) {
-                                    if(j>oAnchor.colKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // This is the target row, only unelect cells before the target cell
-                                else if(currentRow.sectionRowIndex === nTargetTrIndex) {
-                                    if(j<nTargetColKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // Unselect all cells on this row
-                                else {
-                                    this.unselectCell(currentRow.cells[j]);
-                                }
-                            }
-                        }
-                    }
-                    // Anchor row is below target row
-                    else {
-                        // Unselect all cells from target cell to anchor cell
-                        for(i=nTargetTrIndex; i<=oAnchor.trIndex; i++) {
-                            currentRow = allRows[i];
-                            for(j=0; j<currentRow.cells.length; j++) {
-                                // This is the target row, only unselect cells after the target cell
-                                if(currentRow.sectionRowIndex == nTargetTrIndex) {
-                                    if(j>nTargetColKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // This is the anchor row, only unselect cells before the anchor cell
-                                else if(currentRow.sectionRowIndex == oAnchor.trIndex) {
-                                    if(j<oAnchor.colKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // Unselect all cells on this row
-                                else {
-                                    this.unselectCell(currentRow.cells[j]);
-                                }
-                            }
-                        }
-                    }
-
-                    // Select the target cell
-                    this.selectCell(elTargetCell);
-                }
-            }
-            // Invalid anchor
-            else {
-                // Set anchor
-                this._oAnchorCell = oTargetCell;
-
-                // Toggle selection of target
-                if(this.isSelected(oTargetCell)) {
-                    this.unselectCell(oTargetCell);
-                }
-                else {
-                    this.selectCell(oTargetCell);
-                }
-            }
-
-        }
-         // Only SHIFT
-        else if(bSHIFT) {
-            this.unselectAllCells();
-
-            // Validate anchor
-            if(oAnchor) {
-                // All cells are on the same row
-                if(oAnchor.recordIndex === nTargetRecordIndex) {
-                    // Select all cells between anchor cell and target cell,
-                    // including the anchor cell and target cell
-                    if(oAnchor.colKeyIndex < nTargetColKeyIndex) {
-                        for(i=oAnchor.colKeyIndex; i<=nTargetColKeyIndex; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-                    }
-                    // Select all cells between target cell and anchor cell
-                    // including the target cell and anchor cell
-                    else if(nTargetColKeyIndex < oAnchor.colKeyIndex) {
-                        for(i=nTargetColKeyIndex; i<=oAnchor.colKeyIndex; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-                    }
-                }
-                // Anchor row is above target row
-                else if(oAnchor.recordIndex < nTargetRecordIndex) {
-                    // Select the cellblock from anchor cell to target cell
-                    // including the anchor cell and the target cell
-                    startIndex = Math.min(oAnchor.colKeyIndex, nTargetColKeyIndex);
-                    endIndex = Math.max(oAnchor.colKeyIndex, nTargetColKeyIndex);
-
-                    for(i=oAnchor.trIndex; i<=nTargetTrIndex; i++) {
-                        for(j=startIndex; j<=endIndex; j++) {
-                            this.selectCell(allRows[i].cells[j]);
-                        }
-                    }
-                }
-                // Anchor row is below target row
-                else {
-                    // Select the cellblock from target cell to anchor cell
-                    // including the target cell and the anchor cell
-                    startIndex = Math.min(oAnchor.colKeyIndex, nTargetColKeyIndex);
-                    endIndex = Math.max(oAnchor.colKeyIndex, nTargetColKeyIndex);
-
-                    for(i=nTargetTrIndex; i<=oAnchor.trIndex; i++) {
-                        for(j=startIndex; j<=endIndex; j++) {
-                            this.selectCell(allRows[i].cells[j]);
-                        }
-                    }
-                }
-            }
-            // Invalid anchor
-            else {
-                // Set anchor
-                this._oAnchorCell = oTargetCell;
-
-                // Select target only
-                this.selectCell(oTargetCell);
-            }
-        }
-        // Only CTRL
-        else if(bCTRL) {
-
-            // Set anchor
-            this._oAnchorCell = oTargetCell;
-
-            // Toggle selection of target
-            if(this.isSelected(oTargetCell)) {
-                this.unselectCell(oTargetCell);
-            }
-            else {
-                this.selectCell(oTargetCell);
-            }
-
-        }
-        // Neither SHIFT nor CTRL
-        else {
-            this._handleSingleCellSelectionByMouse(oArgs);
-        }
-    }
-},
-
-/**
- * Determines selection behavior resulting from a key event when selection mode
- * is set to "cellblock".
- *
- * @method _handleCellBlockSelectionByKey
- * @param e {HTMLEvent} Event object.
- * @private
- */
-_handleCellBlockSelectionByKey : function(e) {
-    var nKey = Ev.getCharCode(e);
-    var bSHIFT = e.shiftKey;
-    if((nKey == 9) || !bSHIFT) {
-        this._handleSingleCellSelectionByKey(e);
-        return;
-    }
-
-    if((nKey > 36) && (nKey < 41)) {
-        // Validate trigger
-        var oTrigger = this._getSelectionTrigger();
-        // Arrow selection only works if last selected row is on current page
-        if(!oTrigger) {
-            return null;
-        }
-
-        Ev.stopEvent(e);
-
-        // Validate anchor
-        var oAnchor = this._getSelectionAnchor(oTrigger);
-
-        var i, startIndex, endIndex, elNew, elNewRow;
-        var allRows = this.getTbodyEl().rows;
-        var elThisRow = oTrigger.el.parentNode;
-
-        // Determine which direction we're going to
-
-        if(nKey == 40) { // arrow down
-            // Selecting away from anchor cell
-            if(oAnchor.recordIndex <= oTrigger.recordIndex) {
-                // Select the horiz block on the next row...
-                // ...making sure there is room below the trigger row
-                elNewRow = this.getNextTrEl(oTrigger.el);
-                if(elNewRow) {
-                    startIndex = oAnchor.colKeyIndex;
-                    endIndex = oTrigger.colKeyIndex;
-                    // ...going left
-                    if(startIndex > endIndex) {
-                        for(i=startIndex; i>=endIndex; i--) {
-                            elNew = elNewRow.cells[i];
-                            this.selectCell(elNew);
-                        }
-                    }
-                    // ... going right
-                    else {
-                        for(i=startIndex; i<=endIndex; i++) {
-                            elNew = elNewRow.cells[i];
-                            this.selectCell(elNew);
-                        }
-                    }
-                }
-            }
-            // Unselecting towards anchor cell
-            else {
-                startIndex = Math.min(oAnchor.colKeyIndex, oTrigger.colKeyIndex);
-                endIndex = Math.max(oAnchor.colKeyIndex, oTrigger.colKeyIndex);
-                // Unselect the horiz block on this row towards the next row
-                for(i=startIndex; i<=endIndex; i++) {
-                    this.unselectCell(elThisRow.cells[i]);
-                }
-            }
-        }
-        // Arrow up
-        else if(nKey == 38) {
-            // Selecting away from anchor cell
-            if(oAnchor.recordIndex >= oTrigger.recordIndex) {
-                // Select the horiz block on the previous row...
-                // ...making sure there is room
-                elNewRow = this.getPreviousTrEl(oTrigger.el);
-                if(elNewRow) {
-                    // Select in order from anchor to trigger...
-                    startIndex = oAnchor.colKeyIndex;
-                    endIndex = oTrigger.colKeyIndex;
-                    // ...going left
-                    if(startIndex > endIndex) {
-                        for(i=startIndex; i>=endIndex; i--) {
-                            elNew = elNewRow.cells[i];
-                            this.selectCell(elNew);
-                        }
-                    }
-                    // ... going right
-                    else {
-                        for(i=startIndex; i<=endIndex; i++) {
-                            elNew = elNewRow.cells[i];
-                            this.selectCell(elNew);
-                        }
-                    }
-                }
-            }
-            // Unselecting towards anchor cell
-            else {
-                startIndex = Math.min(oAnchor.colKeyIndex, oTrigger.colKeyIndex);
-                endIndex = Math.max(oAnchor.colKeyIndex, oTrigger.colKeyIndex);
-                // Unselect the horiz block on this row towards the previous row
-                for(i=startIndex; i<=endIndex; i++) {
-                    this.unselectCell(elThisRow.cells[i]);
-                }
-            }
-        }
-        // Arrow right
-        else if(nKey == 39) {
-            // Selecting away from anchor cell
-            if(oAnchor.colKeyIndex <= oTrigger.colKeyIndex) {
-                // Select the next vert block to the right...
-                // ...making sure there is room
-                if(oTrigger.colKeyIndex < elThisRow.cells.length-1) {
-                    // Select in order from anchor to trigger...
-                    startIndex = oAnchor.trIndex;
-                    endIndex = oTrigger.trIndex;
-                    // ...going up
-                    if(startIndex > endIndex) {
-                        for(i=startIndex; i>=endIndex; i--) {
-                            elNew = allRows[i].cells[oTrigger.colKeyIndex+1];
-                            this.selectCell(elNew);
-                        }
-                    }
-                    // ... going down
-                    else {
-                        for(i=startIndex; i<=endIndex; i++) {
-                            elNew = allRows[i].cells[oTrigger.colKeyIndex+1];
-                            this.selectCell(elNew);
-                        }
-                    }
-                }
-            }
-            // Unselecting towards anchor cell
-            else {
-                // Unselect the vert block on this column towards the right
-                startIndex = Math.min(oAnchor.trIndex, oTrigger.trIndex);
-                endIndex = Math.max(oAnchor.trIndex, oTrigger.trIndex);
-                for(i=startIndex; i<=endIndex; i++) {
-                    this.unselectCell(allRows[i].cells[oTrigger.colKeyIndex]);
-                }
-            }
-        }
-        // Arrow left
-        else if(nKey == 37) {
-            // Selecting away from anchor cell
-            if(oAnchor.colKeyIndex >= oTrigger.colKeyIndex) {
-                //Select the previous vert block to the left
-                if(oTrigger.colKeyIndex > 0) {
-                    // Select in order from anchor to trigger...
-                    startIndex = oAnchor.trIndex;
-                    endIndex = oTrigger.trIndex;
-                    // ...going up
-                    if(startIndex > endIndex) {
-                        for(i=startIndex; i>=endIndex; i--) {
-                            elNew = allRows[i].cells[oTrigger.colKeyIndex-1];
-                            this.selectCell(elNew);
-                        }
-                    }
-                    // ... going down
-                    else {
-                        for(i=startIndex; i<=endIndex; i++) {
-                            elNew = allRows[i].cells[oTrigger.colKeyIndex-1];
-                            this.selectCell(elNew);
-                        }
-                    }
-                }
-            }
-            // Unselecting towards anchor cell
-            else {
-                // Unselect the vert block on this column towards the left
-                startIndex = Math.min(oAnchor.trIndex, oTrigger.trIndex);
-                endIndex = Math.max(oAnchor.trIndex, oTrigger.trIndex);
-                for(i=startIndex; i<=endIndex; i++) {
-                    this.unselectCell(allRows[i].cells[oTrigger.colKeyIndex]);
-                }
-            }
-        }
-    }
-},
-
-/**
- * Determines selection behavior resulting from a mouse event when selection mode
- * is set to "cellrange".
- *
- * @method _handleCellRangeSelectionByMouse
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- * @private
- */
-_handleCellRangeSelectionByMouse : function(oArgs) {
-    var elTarget = oArgs.target;
-
-    // Validate target cell
-    var elTargetCell = this.getTdEl(elTarget);
-    if(elTargetCell) {
-        var e = oArgs.event;
-        var bSHIFT = e.shiftKey;
-        var bCTRL = e.ctrlKey || ((navigator.userAgent.toLowerCase().indexOf("mac") != -1) && e.metaKey);
-
-        var elTargetRow = this.getTrEl(elTargetCell);
-        var nTargetTrIndex = this.getTrIndex(elTargetRow);
-        var oTargetColumn = this.getColumn(elTargetCell);
-        var nTargetColKeyIndex = oTargetColumn.getKeyIndex();
-        var oTargetRecord = this.getRecord(elTargetRow);
-        var nTargetRecordIndex = this._oRecordSet.getRecordIndex(oTargetRecord);
-        var oTargetCell = {record:oTargetRecord, column:oTargetColumn};
-
-        var oAnchor = this._getSelectionAnchor();
-
-        var allRows = this.getTbodyEl().rows;
-        var currentRow, i, j;
-
-        // Both SHIFT and CTRL
-        if(bSHIFT && bCTRL) {
-
-            // Validate anchor
-            if(oAnchor) {
-                // Anchor is selected
-                if(this.isSelected(oAnchor.cell)) {
-                    // All cells are on the same row
-                    if(oAnchor.recordIndex === nTargetRecordIndex) {
-                        // Select all cells between anchor cell and target cell, including target cell
-                        if(oAnchor.colKeyIndex < nTargetColKeyIndex) {
-                            for(i=oAnchor.colKeyIndex+1; i<=nTargetColKeyIndex; i++) {
-                                this.selectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                        // Select all cells between target cell and anchor cell, including target cell
-                        else if(nTargetColKeyIndex < oAnchor.colKeyIndex) {
-                            for(i=nTargetColKeyIndex; i<oAnchor.colKeyIndex; i++) {
-                                this.selectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                    }
-                    // Anchor row is above target row
-                    else if(oAnchor.recordIndex < nTargetRecordIndex) {
-                        // Select all cells on anchor row from anchor cell to the end of the row
-                        for(i=oAnchor.colKeyIndex+1; i<elTargetRow.cells.length; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-
-                        // Select all cells on all rows between anchor row and target row
-                        for(i=oAnchor.trIndex+1; i<nTargetTrIndex; i++) {
-                            for(j=0; j<allRows[i].cells.length; j++){
-                                this.selectCell(allRows[i].cells[j]);
-                            }
-                        }
-
-                        // Select all cells on target row from first cell to the target cell
-                        for(i=0; i<=nTargetColKeyIndex; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-                    }
-                    // Anchor row is below target row
-                    else {
-                        // Select all cells on target row from target cell to the end of the row
-                        for(i=nTargetColKeyIndex; i<elTargetRow.cells.length; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-
-                        // Select all cells on all rows between target row and anchor row
-                        for(i=nTargetTrIndex+1; i<oAnchor.trIndex; i++) {
-                            for(j=0; j<allRows[i].cells.length; j++){
-                                this.selectCell(allRows[i].cells[j]);
-                            }
-                        }
-
-                        // Select all cells on anchor row from first cell to the anchor cell
-                        for(i=0; i<oAnchor.colKeyIndex; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-                    }
-                }
-                // Anchor cell is unselected
-                else {
-                    // All cells are on the same row
-                    if(oAnchor.recordIndex === nTargetRecordIndex) {
-                        // Unselect all cells between anchor cell and target cell
-                        if(oAnchor.colKeyIndex < nTargetColKeyIndex) {
-                            for(i=oAnchor.colKeyIndex+1; i<nTargetColKeyIndex; i++) {
-                                this.unselectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                        // Select all cells between target cell and anchor cell
-                        else if(nTargetColKeyIndex < oAnchor.colKeyIndex) {
-                            for(i=nTargetColKeyIndex+1; i<oAnchor.colKeyIndex; i++) {
-                                this.unselectCell(elTargetRow.cells[i]);
-                            }
-                        }
-                    }
-                    // Anchor row is above target row
-                    if(oAnchor.recordIndex < nTargetRecordIndex) {
-                        // Unselect all cells from anchor cell to target cell
-                        for(i=oAnchor.trIndex; i<=nTargetTrIndex; i++) {
-                            currentRow = allRows[i];
-                            for(j=0; j<currentRow.cells.length; j++) {
-                                // This is the anchor row, only unselect cells after the anchor cell
-                                if(currentRow.sectionRowIndex === oAnchor.trIndex) {
-                                    if(j>oAnchor.colKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // This is the target row, only unelect cells before the target cell
-                                else if(currentRow.sectionRowIndex === nTargetTrIndex) {
-                                    if(j<nTargetColKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // Unselect all cells on this row
-                                else {
-                                    this.unselectCell(currentRow.cells[j]);
-                                }
-                            }
-                        }
-                    }
-                    // Anchor row is below target row
-                    else {
-                        // Unselect all cells from target cell to anchor cell
-                        for(i=nTargetTrIndex; i<=oAnchor.trIndex; i++) {
-                            currentRow = allRows[i];
-                            for(j=0; j<currentRow.cells.length; j++) {
-                                // This is the target row, only unselect cells after the target cell
-                                if(currentRow.sectionRowIndex == nTargetTrIndex) {
-                                    if(j>nTargetColKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // This is the anchor row, only unselect cells before the anchor cell
-                                else if(currentRow.sectionRowIndex == oAnchor.trIndex) {
-                                    if(j<oAnchor.colKeyIndex) {
-                                        this.unselectCell(currentRow.cells[j]);
-                                    }
-                                }
-                                // Unselect all cells on this row
-                                else {
-                                    this.unselectCell(currentRow.cells[j]);
-                                }
-                            }
-                        }
-                    }
-
-                    // Select the target cell
-                    this.selectCell(elTargetCell);
-                }
-            }
-            // Invalid anchor
-            else {
-                // Set anchor
-                this._oAnchorCell = oTargetCell;
-
-                // Toggle selection of target
-                if(this.isSelected(oTargetCell)) {
-                    this.unselectCell(oTargetCell);
-                }
-                else {
-                    this.selectCell(oTargetCell);
-                }
-            }
-        }
-         // Only SHIFT
-        else if(bSHIFT) {
-
-            this.unselectAllCells();
-
-            // Validate anchor
-            if(oAnchor) {
-                // All cells are on the same row
-                if(oAnchor.recordIndex === nTargetRecordIndex) {
-                    // Select all cells between anchor cell and target cell,
-                    // including the anchor cell and target cell
-                    if(oAnchor.colKeyIndex < nTargetColKeyIndex) {
-                        for(i=oAnchor.colKeyIndex; i<=nTargetColKeyIndex; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-                    }
-                    // Select all cells between target cell and anchor cell
-                    // including the target cell and anchor cell
-                    else if(nTargetColKeyIndex < oAnchor.colKeyIndex) {
-                        for(i=nTargetColKeyIndex; i<=oAnchor.colKeyIndex; i++) {
-                            this.selectCell(elTargetRow.cells[i]);
-                        }
-                    }
-                }
-                // Anchor row is above target row
-                else if(oAnchor.recordIndex < nTargetRecordIndex) {
-                    // Select all cells from anchor cell to target cell
-                    // including the anchor cell and target cell
-                    for(i=oAnchor.trIndex; i<=nTargetTrIndex; i++) {
-                        currentRow = allRows[i];
-                        for(j=0; j<currentRow.cells.length; j++) {
-                            // This is the anchor row, only select the anchor cell and after
-                            if(currentRow.sectionRowIndex == oAnchor.trIndex) {
-                                if(j>=oAnchor.colKeyIndex) {
-                                    this.selectCell(currentRow.cells[j]);
-                                }
-                            }
-                            // This is the target row, only select the target cell and before
-                            else if(currentRow.sectionRowIndex == nTargetTrIndex) {
-                                if(j<=nTargetColKeyIndex) {
-                                    this.selectCell(currentRow.cells[j]);
-                                }
-                            }
-                            // Select all cells on this row
-                            else {
-                                this.selectCell(currentRow.cells[j]);
-                            }
-                        }
-                    }
-                }
-                // Anchor row is below target row
-                else {
-                    // Select all cells from target cell to anchor cell,
-                    // including the target cell and anchor cell
-                    for(i=nTargetTrIndex; i<=oAnchor.trIndex; i++) {
-                        currentRow = allRows[i];
-                        for(j=0; j<currentRow.cells.length; j++) {
-                            // This is the target row, only select the target cell and after
-                            if(currentRow.sectionRowIndex == nTargetTrIndex) {
-                                if(j>=nTargetColKeyIndex) {
-                                    this.selectCell(currentRow.cells[j]);
-                                }
-                            }
-                            // This is the anchor row, only select the anchor cell and before
-                            else if(currentRow.sectionRowIndex == oAnchor.trIndex) {
-                                if(j<=oAnchor.colKeyIndex) {
-                                    this.selectCell(currentRow.cells[j]);
-                                }
-                            }
-                            // Select all cells on this row
-                            else {
-                                this.selectCell(currentRow.cells[j]);
-                            }
-                        }
-                    }
-                }
-            }
-            // Invalid anchor
-            else {
-                // Set anchor
-                this._oAnchorCell = oTargetCell;
-
-                // Select target only
-                this.selectCell(oTargetCell);
-            }
-
-
-        }
-        // Only CTRL
-        else if(bCTRL) {
-
-            // Set anchor
-            this._oAnchorCell = oTargetCell;
-
-            // Toggle selection of target
-            if(this.isSelected(oTargetCell)) {
-                this.unselectCell(oTargetCell);
-            }
-            else {
-                this.selectCell(oTargetCell);
-            }
-
-        }
-        // Neither SHIFT nor CTRL
-        else {
-            this._handleSingleCellSelectionByMouse(oArgs);
-        }
-    }
-},
-
-/**
- * Determines selection behavior resulting from a key event when selection mode
- * is set to "cellrange".
- *
- * @method _handleCellRangeSelectionByKey
- * @param e {HTMLEvent} Event object.
- * @private
- */
-_handleCellRangeSelectionByKey : function(e) {
-    var nKey = Ev.getCharCode(e);
-    var bSHIFT = e.shiftKey;
-    if((nKey == 9) || !bSHIFT) {
-        this._handleSingleCellSelectionByKey(e);
-        return;
-    }
-
-    if((nKey > 36) && (nKey < 41)) {
-        // Validate trigger
-        var oTrigger = this._getSelectionTrigger();
-        // Arrow selection only works if last selected row is on current page
-        if(!oTrigger) {
-            return null;
-        }
-
-        Ev.stopEvent(e);
-
-        // Validate anchor
-        var oAnchor = this._getSelectionAnchor(oTrigger);
-
-        var i, elNewRow, elNew;
-        var allRows = this.getTbodyEl().rows;
-        var elThisRow = oTrigger.el.parentNode;
-
-        // Arrow down
-        if(nKey == 40) {
-            elNewRow = this.getNextTrEl(oTrigger.el);
-
-            // Selecting away from anchor cell
-            if(oAnchor.recordIndex <= oTrigger.recordIndex) {
-                // Select all cells to the end of this row
-                for(i=oTrigger.colKeyIndex+1; i<elThisRow.cells.length; i++){
-                    elNew = elThisRow.cells[i];
-                    this.selectCell(elNew);
-                }
-
-                // Select some of the cells on the next row down
-                if(elNewRow) {
-                    for(i=0; i<=oTrigger.colKeyIndex; i++){
-                        elNew = elNewRow.cells[i];
-                        this.selectCell(elNew);
-                    }
-                }
-            }
-            // Unselecting towards anchor cell
-            else {
-                // Unselect all cells to the end of this row
-                for(i=oTrigger.colKeyIndex; i<elThisRow.cells.length; i++){
-                    this.unselectCell(elThisRow.cells[i]);
-                }
-
-                // Unselect some of the cells on the next row down
-                if(elNewRow) {
-                    for(i=0; i<oTrigger.colKeyIndex; i++){
-                        this.unselectCell(elNewRow.cells[i]);
-                    }
-                }
-            }
-        }
-        // Arrow up
-        else if(nKey == 38) {
-            elNewRow = this.getPreviousTrEl(oTrigger.el);
-
-            // Selecting away from anchor cell
-            if(oAnchor.recordIndex >= oTrigger.recordIndex) {
-                // Select all the cells to the beginning of this row
-                for(i=oTrigger.colKeyIndex-1; i>-1; i--){
-                    elNew = elThisRow.cells[i];
-                    this.selectCell(elNew);
-                }
-
-                // Select some of the cells from the end of the previous row
-                if(elNewRow) {
-                    for(i=elThisRow.cells.length-1; i>=oTrigger.colKeyIndex; i--){
-                        elNew = elNewRow.cells[i];
-                        this.selectCell(elNew);
-                    }
-                }
-            }
-            // Unselecting towards anchor cell
-            else {
-                // Unselect all the cells to the beginning of this row
-                for(i=oTrigger.colKeyIndex; i>-1; i--){
-                    this.unselectCell(elThisRow.cells[i]);
-                }
-
-                // Unselect some of the cells from the end of the previous row
-                if(elNewRow) {
-                    for(i=elThisRow.cells.length-1; i>oTrigger.colKeyIndex; i--){
-                        this.unselectCell(elNewRow.cells[i]);
-                    }
-                }
-            }
-        }
-        // Arrow right
-        else if(nKey == 39) {
-            elNewRow = this.getNextTrEl(oTrigger.el);
-
-            // Selecting away from anchor cell
-            if(oAnchor.recordIndex < oTrigger.recordIndex) {
-                // Select the next cell to the right
-                if(oTrigger.colKeyIndex < elThisRow.cells.length-1) {
-                    elNew = elThisRow.cells[oTrigger.colKeyIndex+1];
-                    this.selectCell(elNew);
-                }
-                // Select the first cell of the next row
-                else if(elNewRow) {
-                    elNew = elNewRow.cells[0];
-                    this.selectCell(elNew);
-                }
-            }
-            // Unselecting towards anchor cell
-            else if(oAnchor.recordIndex > oTrigger.recordIndex) {
-                this.unselectCell(elThisRow.cells[oTrigger.colKeyIndex]);
-
-                // Unselect this cell towards the right
-                if(oTrigger.colKeyIndex < elThisRow.cells.length-1) {
-                }
-                // Unselect this cells towards the first cell of the next row
-                else {
-                }
-            }
-            // Anchor is on this row
-            else {
-                // Selecting away from anchor
-                if(oAnchor.colKeyIndex <= oTrigger.colKeyIndex) {
-                    // Select the next cell to the right
-                    if(oTrigger.colKeyIndex < elThisRow.cells.length-1) {
-                        elNew = elThisRow.cells[oTrigger.colKeyIndex+1];
-                        this.selectCell(elNew);
-                    }
-                    // Select the first cell on the next row
-                    else if(oTrigger.trIndex < allRows.length-1){
-                        elNew = elNewRow.cells[0];
-                        this.selectCell(elNew);
-                    }
-                }
-                // Unselecting towards anchor
-                else {
-                    // Unselect this cell towards the right
-                    this.unselectCell(elThisRow.cells[oTrigger.colKeyIndex]);
-                }
-            }
-        }
-        // Arrow left
-        else if(nKey == 37) {
-            elNewRow = this.getPreviousTrEl(oTrigger.el);
-
-            // Unselecting towards the anchor
-            if(oAnchor.recordIndex < oTrigger.recordIndex) {
-                this.unselectCell(elThisRow.cells[oTrigger.colKeyIndex]);
-
-                // Unselect this cell towards the left
-                if(oTrigger.colKeyIndex > 0) {
-                }
-                // Unselect this cell towards the last cell of the previous row
-                else {
-                }
-            }
-            // Selecting towards the anchor
-            else if(oAnchor.recordIndex > oTrigger.recordIndex) {
-                // Select the next cell to the left
-                if(oTrigger.colKeyIndex > 0) {
-                    elNew = elThisRow.cells[oTrigger.colKeyIndex-1];
-                    this.selectCell(elNew);
-                }
-                // Select the last cell of the previous row
-                else if(oTrigger.trIndex > 0){
-                    elNew = elNewRow.cells[elNewRow.cells.length-1];
-                    this.selectCell(elNew);
-                }
-            }
-            // Anchor is on this row
-            else {
-                // Selecting away from anchor cell
-                if(oAnchor.colKeyIndex >= oTrigger.colKeyIndex) {
-                    // Select the next cell to the left
-                    if(oTrigger.colKeyIndex > 0) {
-                        elNew = elThisRow.cells[oTrigger.colKeyIndex-1];
-                        this.selectCell(elNew);
-                    }
-                    // Select the last cell of the previous row
-                    else if(oTrigger.trIndex > 0){
-                        elNew = elNewRow.cells[elNewRow.cells.length-1];
-                        this.selectCell(elNew);
-                    }
-                }
-                // Unselecting towards anchor cell
-                else {
-                    this.unselectCell(elThisRow.cells[oTrigger.colKeyIndex]);
-
-                    // Unselect this cell towards the left
-                    if(oTrigger.colKeyIndex > 0) {
-                    }
-                    // Unselect this cell towards the last cell of the previous row
-                    else {
-                    }
-                }
-            }
-        }
-    }
-},
-
-/**
- * Determines selection behavior resulting from a mouse event when selection mode
- * is set to "singlecell".
- *
- * @method _handleSingleCellSelectionByMouse
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- * @private
- */
-_handleSingleCellSelectionByMouse : function(oArgs) {
-    var elTarget = oArgs.target;
-
-    // Validate target cell
-    var elTargetCell = this.getTdEl(elTarget);
-    if(elTargetCell) {
-        var elTargetRow = this.getTrEl(elTargetCell);
-        var oTargetRecord = this.getRecord(elTargetRow);
-        var oTargetColumn = this.getColumn(elTargetCell);
-        var oTargetCell = {record:oTargetRecord, column:oTargetColumn};
-
-        // Set anchor
-        this._oAnchorCell = oTargetCell;
-
-        // Select only target
-        this.unselectAllCells();
-        this.selectCell(oTargetCell);
-    }
-},
-
-/**
- * Determines selection behavior resulting from a key event when selection mode
- * is set to "singlecell".
- *
- * @method _handleSingleCellSelectionByKey
- * @param e {HTMLEvent} Event object.
- * @private
- */
-_handleSingleCellSelectionByKey : function(e) {
-    var nKey = Ev.getCharCode(e);
-    if((nKey == 9) || ((nKey > 36) && (nKey < 41))) {
-        var bSHIFT = e.shiftKey;
-
-        // Validate trigger
-        var oTrigger = this._getSelectionTrigger();
-        // Arrow selection only works if last selected row is on current page
-        if(!oTrigger) {
-            return null;
-        }
-
-        // Determine the new cell to select
-        var elNew;
-        if(nKey == 40) { // Arrow down
-            elNew = this.getBelowTdEl(oTrigger.el);
-
-            // Validate new cell
-            if(elNew === null) {
-                //TODO: wrap around to first tr on current page
-
-                //TODO: wrap forward to first tr of next page
-
-                // Bottom selection is sticky
-                elNew = oTrigger.el;
-            }
-        }
-        else if(nKey == 38) { // Arrow up
-            elNew = this.getAboveTdEl(oTrigger.el);
-
-            // Validate new cell
-            if(elNew === null) {
-                //TODO: wrap around to last tr on current page
-
-                //TODO: wrap back to last tr of previous page
-
-                // Top selection is sticky
-                elNew = oTrigger.el;
-            }
-        }
-        else if((nKey == 39) || (!bSHIFT && (nKey == 9))) { // Arrow right or tab
-            elNew = this.getNextTdEl(oTrigger.el);
-
-            // Validate new cell
-            if(elNew === null) {
-                //TODO: wrap around to first td on current page
-
-                //TODO: wrap forward to first td of next page
-
-                // Top-left selection is sticky, and release TAB focus
-                //elNew = oTrigger.el;
-                return;
-            }
-        }
-        else if((nKey == 37) || (bSHIFT && (nKey == 9))) { // Arrow left or shift-tab
-            elNew = this.getPreviousTdEl(oTrigger.el);
-
-            // Validate new cell
-            if(elNew === null) {
-                //TODO: wrap around to last td on current page
-
-                //TODO: wrap back to last td of previous page
-
-                // Bottom-right selection is sticky, and release TAB focus
-                //elNew = oTrigger.el;
-                return;
-            }
-        }
-
-        Ev.stopEvent(e);
-        
-        // Unselect all cells
-        this.unselectAllCells();
-
-        // Select the new cell
-        this.selectCell(elNew);
-
-        // Set new anchor
-        this._oAnchorCell = {record:this.getRecord(elNew), column:this.getColumn(elNew)};
-    }
-},
-
-/**
- * Returns array of selected TR elements on the page.
- *
- * @method getSelectedTrEls
- * @return {HTMLElement[]} Array of selected TR elements.
- */
-getSelectedTrEls : function() {
-    return Dom.getElementsByClassName(DT.CLASS_SELECTED,"tr",this._elTbody);
-},
-
-/**
- * Sets given row to the selected state.
- *
- * @method selectRow
- * @param row {HTMLElement | String | YAHOO.widget.Record | Number} HTML element
- * reference or ID string, Record instance, or RecordSet position index.
- */
-selectRow : function(row) {
-    var oRecord, elRow;
-
-    if(row instanceof YAHOO.widget.Record) {
-        oRecord = this._oRecordSet.getRecord(row);
-        elRow = this.getTrEl(oRecord);
-    }
-    else if(lang.isNumber(row)) {
-        oRecord = this.getRecord(row);
-        elRow = this.getTrEl(oRecord);
-    }
-    else {
-        elRow = this.getTrEl(row);
-        oRecord = this.getRecord(elRow);
-    }
-
-    if(oRecord) {
-        // Update selection trackers
-        var tracker = this._aSelections || [];
-        var sRecordId = oRecord.getId();
-        var index = -1;
-
-        // Remove if already there:
-        // Use Array.indexOf if available...
-        /*if(tracker.indexOf && (tracker.indexOf(sRecordId) >  -1)) {
-            tracker.splice(tracker.indexOf(sRecordId),1);
-        }*/
-        if(tracker.indexOf) {
-            index = tracker.indexOf(sRecordId);
-            
-        }
-        // ...or do it the old-fashioned way
-        else {
-            for(var j=tracker.length-1; j>-1; j--) {
-                if(tracker[j] === sRecordId){
-                    index = j;
-                    break;
-                }
-            }
-        }
-        if(index > -1) {
-            tracker.splice(index,1);
-        }
-        
-        // Add to the end
-        tracker.push(sRecordId);
-        this._aSelections = tracker;
-
-        // Update trackers
-        if(!this._oAnchorRecord) {
-            this._oAnchorRecord = oRecord;
-        }
-
-        // Update UI
-        if(elRow) {
-            Dom.addClass(elRow, DT.CLASS_SELECTED);
-        }
-
-        this.fireEvent("rowSelectEvent", {record:oRecord, el:elRow});
-    }
-    else {
-    }
-},
-
-/**
- * Sets given row to the selected state.
- *
- * @method unselectRow
- * @param row {HTMLElement | String | YAHOO.widget.Record | Number} HTML element
- * reference or ID string, Record instance, or RecordSet position index.
- */
-unselectRow : function(row) {
-    var elRow = this.getTrEl(row);
-
-    var oRecord;
-    if(row instanceof YAHOO.widget.Record) {
-        oRecord = this._oRecordSet.getRecord(row);
-    }
-    else if(lang.isNumber(row)) {
-        oRecord = this.getRecord(row);
-    }
-    else {
-        oRecord = this.getRecord(elRow);
-    }
-
-    if(oRecord) {
-        // Update selection trackers
-        var tracker = this._aSelections || [];
-        var sRecordId = oRecord.getId();
-        var index = -1;
-
-        // Use Array.indexOf if available...
-        if(tracker.indexOf) {
-            index = tracker.indexOf(sRecordId);
-        }
-        // ...or do it the old-fashioned way
-        else {
-            for(var j=tracker.length-1; j>-1; j--) {
-                if(tracker[j] === sRecordId){
-                    index = j;
-                    break;
-                }
-            }
-        }
-        if(index > -1) {
-            // Update tracker
-            tracker.splice(index,1);
-            this._aSelections = tracker;
-
-            // Update the UI
-            Dom.removeClass(elRow, DT.CLASS_SELECTED);
-
-            this.fireEvent("rowUnselectEvent", {record:oRecord, el:elRow});
-
-            return;
-        }
-    }
-},
-
-/**
- * Clears out all row selections.
- *
- * @method unselectAllRows
- */
-unselectAllRows : function() {
-    // Remove all rows from tracker
-    var tracker = this._aSelections || [],
-        recId,
-        removed = [];
-    for(var j=tracker.length-1; j>-1; j--) {
-       if(lang.isString(tracker[j])){
-            recId = tracker.splice(j,1);
-            removed[removed.length] = this.getRecord(lang.isArray(recId) ? recId[0] : recId);
-        }
-    }
-
-    // Update tracker
-    this._aSelections = tracker;
-
-    // Update UI
-    this._unselectAllTrEls();
-
-    this.fireEvent("unselectAllRowsEvent", {records: removed});
-},
-
-/**
- * Convenience method to remove the class YAHOO.widget.DataTable.CLASS_SELECTED
- * from all TD elements in the internal tracker.
- *
- * @method _unselectAllTdEls
- * @private
- */
-_unselectAllTdEls : function() {
-    var selectedCells = Dom.getElementsByClassName(DT.CLASS_SELECTED,"td",this._elTbody);
-    Dom.removeClass(selectedCells, DT.CLASS_SELECTED);
-},
-
-/**
- * Returns array of selected TD elements on the page.
- *
- * @method getSelectedTdEls
- * @return {HTMLElement[]} Array of selected TD elements.
- */
-getSelectedTdEls : function() {
-    return Dom.getElementsByClassName(DT.CLASS_SELECTED,"td",this._elTbody);
-},
-
-/**
- * Sets given cell to the selected state.
- *
- * @method selectCell
- * @param cell {HTMLElement | String} DOM element reference or ID string
- * to DataTable page element or RecordSet index.
- */
-selectCell : function(cell) {
-//TODO: accept {record} in selectCell()
-    var elCell = this.getTdEl(cell);
-
-    if(elCell) {
-        var oRecord = this.getRecord(elCell);
-        var sColumnKey = this.getColumn(elCell.cellIndex).getKey();
-
-        if(oRecord && sColumnKey) {
-            // Get Record ID
-            var tracker = this._aSelections || [];
-            var sRecordId = oRecord.getId();
-
-            // Remove if there
-            for(var j=tracker.length-1; j>-1; j--) {
-               if((tracker[j].recordId === sRecordId) && (tracker[j].columnKey === sColumnKey)){
-                    tracker.splice(j,1);
-                    break;
-                }
-            }
-
-            // Add to the end
-            tracker.push({recordId:sRecordId, columnKey:sColumnKey});
-
-            // Update trackers
-            this._aSelections = tracker;
-            if(!this._oAnchorCell) {
-                this._oAnchorCell = {record:oRecord, column:this.getColumn(sColumnKey)};
-            }
-
-            // Update the UI
-            Dom.addClass(elCell, DT.CLASS_SELECTED);
-
-            this.fireEvent("cellSelectEvent", {record:oRecord, column:this.getColumn(elCell.cellIndex), key: this.getColumn(elCell.cellIndex).getKey(), el:elCell});
-            return;
-        }
-    }
-},
-
-/**
- * Sets given cell to the unselected state.
- *
- * @method unselectCell
- * @param cell {HTMLElement | String} DOM element reference or ID string
- * to DataTable page element or RecordSet index.
- */
-unselectCell : function(cell) {
-    var elCell = this.getTdEl(cell);
-
-    if(elCell) {
-        var oRecord = this.getRecord(elCell);
-        var sColumnKey = this.getColumn(elCell.cellIndex).getKey();
-
-        if(oRecord && sColumnKey) {
-            // Get Record ID
-            var tracker = this._aSelections || [];
-            var id = oRecord.getId();
-
-            // Is it selected?
-            for(var j=tracker.length-1; j>-1; j--) {
-                if((tracker[j].recordId === id) && (tracker[j].columnKey === sColumnKey)){
-                    // Remove from tracker
-                    tracker.splice(j,1);
-
-                    // Update tracker
-                    this._aSelections = tracker;
-
-                    // Update the UI
-                    Dom.removeClass(elCell, DT.CLASS_SELECTED);
-
-                    this.fireEvent("cellUnselectEvent", {record:oRecord, column: this.getColumn(elCell.cellIndex), key:this.getColumn(elCell.cellIndex).getKey(), el:elCell});
-                    return;
-                }
-            }
-        }
-    }
-},
-
-/**
- * Clears out all cell selections.
- *
- * @method unselectAllCells
- */
-unselectAllCells : function() {
-    // Remove all cells from tracker
-    var tracker = this._aSelections || [];
-    for(var j=tracker.length-1; j>-1; j--) {
-       if(lang.isObject(tracker[j])){
-            tracker.splice(j,1);
-        }
-    }
-
-    // Update tracker
-    this._aSelections = tracker;
-
-    // Update UI
-    this._unselectAllTdEls();
-
-    //TODO: send data to unselectAllCellsEvent handler
-    this.fireEvent("unselectAllCellsEvent");
-},
-
-/**
- * Returns true if given item is selected, false otherwise.
- *
- * @method isSelected
- * @param o {String | HTMLElement | YAHOO.widget.Record | Number
- * {record:YAHOO.widget.Record, column:YAHOO.widget.Column} } TR or TD element by
- * reference or ID string, a Record instance, a RecordSet position index,
- * or an object literal representation
- * of a cell.
- * @return {Boolean} True if item is selected.
- */
-isSelected : function(o) {
-    if(o && (o.ownerDocument == document)) {
-        return (Dom.hasClass(this.getTdEl(o),DT.CLASS_SELECTED) || Dom.hasClass(this.getTrEl(o),DT.CLASS_SELECTED));
-    }
-    else {
-        var oRecord, sRecordId, j;
-        var tracker = this._aSelections;
-        if(tracker && tracker.length > 0) {
-            // Looking for a Record?
-            if(o instanceof YAHOO.widget.Record) {
-                oRecord = o;
-            }
-            else if(lang.isNumber(o)) {
-                oRecord = this.getRecord(o);
-            }
-            if(oRecord) {
-                sRecordId = oRecord.getId();
-
-                // Is it there?
-                // Use Array.indexOf if available...
-                if(tracker.indexOf) {
-                    if(tracker.indexOf(sRecordId) >  -1) {
-                        return true;
-                    }
-                }
-                // ...or do it the old-fashioned way
-                else {
-                    for(j=tracker.length-1; j>-1; j--) {
-                       if(tracker[j] === sRecordId){
-                        return true;
-                       }
-                    }
-                }
-            }
-            // Looking for a cell
-            else if(o.record && o.column){
-                sRecordId = o.record.getId();
-                var sColumnKey = o.column.getKey();
-
-                for(j=tracker.length-1; j>-1; j--) {
-                    if((tracker[j].recordId === sRecordId) && (tracker[j].columnKey === sColumnKey)){
-                        return true;
-                    }
-                }
-            }
-        }
-    }
-    return false;
-},
-
-/**
- * Returns selected rows as an array of Record IDs.
- *
- * @method getSelectedRows
- * @return {String[]} Array of selected rows by Record ID.
- */
-getSelectedRows : function() {
-    var aSelectedRows = [];
-    var tracker = this._aSelections || [];
-    for(var j=0; j<tracker.length; j++) {
-       if(lang.isString(tracker[j])){
-            aSelectedRows.push(tracker[j]);
-        }
-    }
-    return aSelectedRows;
-},
-
-/**
- * Returns selected cells as an array of object literals:
- *     {recordId:sRecordId, columnKey:sColumnKey}.
- *
- * @method getSelectedCells
- * @return {Object[]} Array of selected cells by Record ID and Column ID.
- */
-getSelectedCells : function() {
-    var aSelectedCells = [];
-    var tracker = this._aSelections || [];
-    for(var j=0; j<tracker.length; j++) {
-       if(tracker[j] && lang.isObject(tracker[j])){
-            aSelectedCells.push(tracker[j]);
-        }
-    }
-    return aSelectedCells;
-},
-
-/**
- * Returns last selected Record ID.
- *
- * @method getLastSelectedRecord
- * @return {String} Record ID of last selected row.
- */
-getLastSelectedRecord : function() {
-    var tracker = this._aSelections;
-    if(tracker && tracker.length > 0) {
-        for(var i=tracker.length-1; i>-1; i--) {
-           if(lang.isString(tracker[i])){
-                return tracker[i];
-            }
-        }
-    }
-},
-
-/**
- * Returns last selected cell as an object literal:
- *     {recordId:sRecordId, columnKey:sColumnKey}.
- *
- * @method getLastSelectedCell
- * @return {Object} Object literal representation of a cell.
- */
-getLastSelectedCell : function() {
-    var tracker = this._aSelections;
-    if(tracker && tracker.length > 0) {
-        for(var i=tracker.length-1; i>-1; i--) {
-           if(tracker[i].recordId && tracker[i].columnKey){
-                return tracker[i];
-            }
-        }
-    }
-},
-
-/**
- * Assigns the class YAHOO.widget.DataTable.CLASS_HIGHLIGHTED to the given row.
- *
- * @method highlightRow
- * @param row {HTMLElement | String} DOM element reference or ID string.
- */
-highlightRow : function(row) {
-    var elRow = this.getTrEl(row);
-
-    if(elRow) {
-        // Make sure previous row is unhighlighted
-/*        if(this._sLastHighlightedTrElId) {
-            Dom.removeClass(this._sLastHighlightedTrElId,DT.CLASS_HIGHLIGHTED);
-        }*/
-        var oRecord = this.getRecord(elRow);
-        Dom.addClass(elRow,DT.CLASS_HIGHLIGHTED);
-        //this._sLastHighlightedTrElId = elRow.id;
-        this.fireEvent("rowHighlightEvent", {record:oRecord, el:elRow});
-        return;
-    }
-},
-
-/**
- * Removes the class YAHOO.widget.DataTable.CLASS_HIGHLIGHTED from the given row.
- *
- * @method unhighlightRow
- * @param row {HTMLElement | String} DOM element reference or ID string.
- */
-unhighlightRow : function(row) {
-    var elRow = this.getTrEl(row);
-
-    if(elRow) {
-        var oRecord = this.getRecord(elRow);
-        Dom.removeClass(elRow,DT.CLASS_HIGHLIGHTED);
-        this.fireEvent("rowUnhighlightEvent", {record:oRecord, el:elRow});
-        return;
-    }
-},
-
-/**
- * Assigns the class YAHOO.widget.DataTable.CLASS_HIGHLIGHTED to the given cell.
- *
- * @method highlightCell
- * @param cell {HTMLElement | String} DOM element reference or ID string.
- */
-highlightCell : function(cell) {
-    var elCell = this.getTdEl(cell);
-
-    if(elCell) {
-        // Make sure previous cell is unhighlighted
-        if(this._elLastHighlightedTd) {
-            this.unhighlightCell(this._elLastHighlightedTd);
-        }
-
-        var oRecord = this.getRecord(elCell);
-        var sColumnKey = this.getColumn(elCell.cellIndex).getKey();
-        Dom.addClass(elCell,DT.CLASS_HIGHLIGHTED);
-        this._elLastHighlightedTd = elCell;
-        this.fireEvent("cellHighlightEvent", {record:oRecord, column:this.getColumn(elCell.cellIndex), key:this.getColumn(elCell.cellIndex).getKey(), el:elCell});
-        return;
-    }
-},
-
-/**
- * Removes the class YAHOO.widget.DataTable.CLASS_HIGHLIGHTED from the given cell.
- *
- * @method unhighlightCell
- * @param cell {HTMLElement | String} DOM element reference or ID string.
- */
-unhighlightCell : function(cell) {
-    var elCell = this.getTdEl(cell);
-
-    if(elCell) {
-        var oRecord = this.getRecord(elCell);
-        Dom.removeClass(elCell,DT.CLASS_HIGHLIGHTED);
-        this._elLastHighlightedTd = null;
-        this.fireEvent("cellUnhighlightEvent", {record:oRecord, column:this.getColumn(elCell.cellIndex), key:this.getColumn(elCell.cellIndex).getKey(), el:elCell});
-        return;
-    }
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// INLINE EDITING
-
-/**
- * Returns current CellEditor instance, or null.
- * @method getCellEditor
- * @return {YAHOO.widget.CellEditor} CellEditor instance.
- */
-getCellEditor : function() {
-    return this._oCellEditor;
-},
-
-
-/**
- * Activates and shows CellEditor instance for the given cell while deactivating and
- * canceling previous CellEditor. It is baked into DataTable that only one CellEditor
- * can be active at any given time. 
- *
- * @method showCellEditor
- * @param elCell {HTMLElement | String} Cell to edit.
- */
-showCellEditor : function(elCell, oRecord, oColumn) {
-    // Get a particular CellEditor
-    elCell = this.getTdEl(elCell);
-    if(elCell) {
-        oColumn = this.getColumn(elCell);
-        if(oColumn && oColumn.editor) {
-            var oCellEditor = this._oCellEditor;
-            // Clean up active CellEditor
-            if(oCellEditor) {
-                if(this._oCellEditor.cancel) {
-                    this._oCellEditor.cancel();
-                }
-                else if(oCellEditor.isActive) {
-                    this.cancelCellEditor();
-                }
-            }
-            
-            if(oColumn.editor instanceof YAHOO.widget.BaseCellEditor) {
-                // Get CellEditor
-                oCellEditor = oColumn.editor;
-                var ok = oCellEditor.attach(this, elCell);
-                if(ok) {
-                    oCellEditor.move();
-                    ok = this.doBeforeShowCellEditor(oCellEditor);
-                    if(ok) {
-                        oCellEditor.show();
-                        this._oCellEditor = oCellEditor;
-                    }
-                }
-            }
-            // Backward compatibility
-            else {
-                    if(!oRecord || !(oRecord instanceof YAHOO.widget.Record)) {
-                        oRecord = this.getRecord(elCell);
-                    }
-                    if(!oColumn || !(oColumn instanceof YAHOO.widget.Column)) {
-                        oColumn = this.getColumn(elCell);
-                    }
-                    if(oRecord && oColumn) {
-                        if(!this._oCellEditor || this._oCellEditor.container) {
-                            this._initCellEditorEl();
-                        }
-                        
-                        // Update Editor values
-                        oCellEditor = this._oCellEditor;
-                        oCellEditor.cell = elCell;
-                        oCellEditor.record = oRecord;
-                        oCellEditor.column = oColumn;
-                        oCellEditor.validator = (oColumn.editorOptions &&
-                                lang.isFunction(oColumn.editorOptions.validator)) ?
-                                oColumn.editorOptions.validator : null;
-                        oCellEditor.value = oRecord.getData(oColumn.key);
-                        oCellEditor.defaultValue = null;
-            
-                        // Move Editor
-                        var elContainer = oCellEditor.container;
-                        var x = Dom.getX(elCell);
-                        var y = Dom.getY(elCell);
-            
-                        // SF doesn't get xy for cells in scrolling table
-                        // when tbody display is set to block
-                        if(isNaN(x) || isNaN(y)) {
-                            x = elCell.offsetLeft + // cell pos relative to table
-                                    Dom.getX(this._elTbody.parentNode) - // plus table pos relative to document
-                                    this._elTbody.scrollLeft; // minus tbody scroll
-                            y = elCell.offsetTop + // cell pos relative to table
-                                    Dom.getY(this._elTbody.parentNode) - // plus table pos relative to document
-                                    this._elTbody.scrollTop + // minus tbody scroll
-                                    this._elThead.offsetHeight; // account for fixed THEAD cells
-                        }
-            
-                        elContainer.style.left = x + "px";
-                        elContainer.style.top = y + "px";
-            
-                        // Hook to customize the UI
-                        this.doBeforeShowCellEditor(this._oCellEditor);
-            
-                        //TODO: This is temporarily up here due so elements can be focused
-                        // Show Editor
-                        elContainer.style.display = "";
-            
-                        // Handle ESC key
-                        Ev.addListener(elContainer, "keydown", function(e, oSelf) {
-                            // ESC hides Cell Editor
-                            if((e.keyCode == 27)) {
-                                oSelf.cancelCellEditor();
-                                oSelf.focusTbodyEl();
-                            }
-                            else {
-                                oSelf.fireEvent("editorKeydownEvent", {editor:oSelf._oCellEditor, event:e});
-                            }
-                        }, this);
-            
-                        // Render Editor markup
-                        var fnEditor;
-                        if(lang.isString(oColumn.editor)) {
-                            switch(oColumn.editor) {
-                                case "checkbox":
-                                    fnEditor = DT.editCheckbox;
-                                    break;
-                                case "date":
-                                    fnEditor = DT.editDate;
-                                    break;
-                                case "dropdown":
-                                    fnEditor = DT.editDropdown;
-                                    break;
-                                case "radio":
-                                    fnEditor = DT.editRadio;
-                                    break;
-                                case "textarea":
-                                    fnEditor = DT.editTextarea;
-                                    break;
-                                case "textbox":
-                                    fnEditor = DT.editTextbox;
-                                    break;
-                                default:
-                                    fnEditor = null;
-                            }
-                        }
-                        else if(lang.isFunction(oColumn.editor)) {
-                            fnEditor = oColumn.editor;
-                        }
-            
-                        if(fnEditor) {
-                            // Create DOM input elements
-                            fnEditor(this._oCellEditor, this);
-            
-                            // Show Save/Cancel buttons
-                            if(!oColumn.editorOptions || !oColumn.editorOptions.disableBtns) {
-                                this.showCellEditorBtns(elContainer);
-                            }
-            
-                            oCellEditor.isActive = true;
-            
-                            //TODO: verify which args to pass
-                            this.fireEvent("editorShowEvent", {editor:oCellEditor});
-                            return;
-                        }
-                    }
-
-
-
-            
-            }
-        }
-    }
-},
-
-/**
- * Backward compatibility.
- *
- * @method _initCellEditorEl
- * @private
- * @deprecated 
- */
-_initCellEditorEl : function() {
-    // Attach Cell Editor container element as first child of body
-    var elCellEditor = document.createElement("div");
-    elCellEditor.id = this._sId + "-celleditor";
-    elCellEditor.style.display = "none";
-    elCellEditor.tabIndex = 0;
-    Dom.addClass(elCellEditor, DT.CLASS_EDITOR);
-    var elFirstChild = Dom.getFirstChild(document.body);
-    if(elFirstChild) {
-        elCellEditor = Dom.insertBefore(elCellEditor, elFirstChild);
-    }
-    else {
-        elCellEditor = document.body.appendChild(elCellEditor);
-    }
-    
-    // Internal tracker of Cell Editor values
-    var oCellEditor = {};
-    oCellEditor.container = elCellEditor;
-    oCellEditor.value = null;
-    oCellEditor.isActive = false;
-    this._oCellEditor = oCellEditor;
-},
-
-/**
- * Overridable abstract method to customize CellEditor before showing.
- *
- * @method doBeforeShowCellEditor
- * @param oCellEditor {YAHOO.widget.CellEditor} The CellEditor instance.
- * @return {Boolean} Return true to continue showing CellEditor.
- */
-doBeforeShowCellEditor : function(oCellEditor) {
-    return true;
-},
-
-/**
- * Saves active CellEditor input to Record and upates DOM UI.
- *
- * @method saveCellEditor
- */
-saveCellEditor : function() {
-    if(this._oCellEditor) {
-        if(this._oCellEditor.save) {
-            this._oCellEditor.save();
-        }
-        // Backward compatibility
-        else if(this._oCellEditor.isActive) {
-            var newData = this._oCellEditor.value;
-            // Copy the data to pass to the event
-            var oldData = YAHOO.widget.DataTable._cloneObject(this._oCellEditor.record.getData(this._oCellEditor.column.key));
-    
-            // Validate input data
-            if(this._oCellEditor.validator) {
-                newData = this._oCellEditor.value = this._oCellEditor.validator.call(this, newData, oldData, this._oCellEditor);
-                if(newData === null ) {
-                    this.resetCellEditor();
-                    this.fireEvent("editorRevertEvent",
-                            {editor:this._oCellEditor, oldData:oldData, newData:newData});
-                    return;
-                }
-            }
-            // Update the Record
-            this._oRecordSet.updateRecordValue(this._oCellEditor.record, this._oCellEditor.column.key, this._oCellEditor.value);
-            // Update the UI
-            this.formatCell(this._oCellEditor.cell.firstChild);
-            
-            // Bug fix 1764044
-            this._oChainRender.add({
-                method: function() {
-                    this.validateColumnWidths();
-                },
-                scope: this
-            });
-            this._oChainRender.run();
-            // Clear out the Cell Editor
-            this.resetCellEditor();
-    
-            this.fireEvent("editorSaveEvent",
-                    {editor:this._oCellEditor, oldData:oldData, newData:newData});
-        }
-    }   
-},
-
-/**
- * Cancels active CellEditor.
- *
- * @method cancelCellEditor
- */
-cancelCellEditor : function() {
-    if(this._oCellEditor) {
-        if(this._oCellEditor.cancel) {
-            this._oCellEditor.cancel();
-        }
-        // Backward compatibility
-        else if(this._oCellEditor.isActive) {
-            this.resetCellEditor();
-            //TODO: preserve values for the event?
-            this.fireEvent("editorCancelEvent", {editor:this._oCellEditor});
-        }
-
-    }
-},
-
-/**
- * Destroys active CellEditor instance and UI.
- *
- * @method destroyCellEditor
- */
-destroyCellEditor : function() {
-    if(this._oCellEditor) {
-        this._oCellEditor.destroy();
-        this._oCellEditor = null;
-    }   
-},
-
-/**
- * Passes through showEvent of the active CellEditor.
- *
- * @method _onEditorShowEvent
- * @param oArgs {Object}  Custom Event args.
- * @private 
- */
-_onEditorShowEvent : function(oArgs) {
-    this.fireEvent("editorShowEvent", oArgs);
-},
-
-/**
- * Passes through keydownEvent of the active CellEditor.
- * @param oArgs {Object}  Custom Event args. 
- *
- * @method _onEditorKeydownEvent
- * @private 
- */
-_onEditorKeydownEvent : function(oArgs) {
-    this.fireEvent("editorKeydownEvent", oArgs);
-},
-
-/**
- * Passes through revertEvent of the active CellEditor.
- *
- * @method _onEditorRevertEvent
- * @param oArgs {Object}  Custom Event args. 
- * @private  
- */
-_onEditorRevertEvent : function(oArgs) {
-    this.fireEvent("editorRevertEvent", oArgs);
-},
-
-/**
- * Passes through saveEvent of the active CellEditor.
- *
- * @method _onEditorSaveEvent
- * @param oArgs {Object}  Custom Event args.  
- * @private 
- */
-_onEditorSaveEvent : function(oArgs) {
-    this.fireEvent("editorSaveEvent", oArgs);
-},
-
-/**
- * Passes through cancelEvent of the active CellEditor.
- *
- * @method _onEditorCancelEvent
- * @param oArgs {Object}  Custom Event args.
- * @private   
- */
-_onEditorCancelEvent : function(oArgs) {
-    this.fireEvent("editorCancelEvent", oArgs);
-},
-
-/**
- * Passes through blurEvent of the active CellEditor.
- *
- * @method _onEditorBlurEvent
- * @param oArgs {Object}  Custom Event args. 
- * @private  
- */
-_onEditorBlurEvent : function(oArgs) {
-    this.fireEvent("editorBlurEvent", oArgs);
-},
-
-/**
- * Passes through blockEvent of the active CellEditor.
- *
- * @method _onEditorBlockEvent
- * @param oArgs {Object}  Custom Event args. 
- * @private  
- */
-_onEditorBlockEvent : function(oArgs) {
-    this.fireEvent("editorBlockEvent", oArgs);
-},
-
-/**
- * Passes through unblockEvent of the active CellEditor.
- *
- * @method _onEditorUnblockEvent
- * @param oArgs {Object}  Custom Event args. 
- * @private  
- */
-_onEditorUnblockEvent : function(oArgs) {
-    this.fireEvent("editorUnblockEvent", oArgs);
-},
-
-/**
- * Public handler of the editorBlurEvent. By default, saves on blur if
- * disableBtns is true, otherwise cancels on blur. 
- *
- * @method onEditorBlurEvent
- * @param oArgs {Object}  Custom Event args.  
- */
-onEditorBlurEvent : function(oArgs) {
-    if(oArgs.editor.disableBtns) {
-        // Save on blur
-        if(oArgs.editor.save) { // Backward incompatible
-            oArgs.editor.save();
-        }
-    }      
-    else if(oArgs.editor.cancel) { // Backward incompatible
-        // Cancel on blur
-        oArgs.editor.cancel();
-    }      
-},
-
-/**
- * Public handler of the editorBlockEvent. By default, disables DataTable UI.
- *
- * @method onEditorBlockEvent
- * @param oArgs {Object}  Custom Event args.  
- */
-onEditorBlockEvent : function(oArgs) {
-    this.disable();
-},
-
-/**
- * Public handler of the editorUnblockEvent. By default, undisables DataTable UI.
- *
- * @method onEditorUnblockEvent
- * @param oArgs {Object}  Custom Event args.  
- */
-onEditorUnblockEvent : function(oArgs) {
-    this.undisable();
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// ABSTRACT METHODS
-
-/**
- * Overridable method gives implementers a hook to access data before
- * it gets added to RecordSet and rendered to the TBODY.
- *
- * @method doBeforeLoadData
- * @param sRequest {String} Original request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} additional arguments
- * @return {Boolean} Return true to continue loading data into RecordSet and
- * updating DataTable with new Records, false to cancel.
- */
-doBeforeLoadData : function(sRequest, oResponse, oPayload) {
-    return true;
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public Custom Event Handlers
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Overridable custom event handler to sort Column.
- *
- * @method onEventSortColumn
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventSortColumn : function(oArgs) {
-//TODO: support form elements in sortable columns
-    var evt = oArgs.event;
-    var target = oArgs.target;
-
-    var el = this.getThEl(target) || this.getTdEl(target);
-    if(el) {
-        var oColumn = this.getColumn(el);
-        if(oColumn.sortable) {
-            Ev.stopEvent(evt);
-            this.sortColumn(oColumn);
-        }
-    }
-    else {
-    }
-},
-
-/**
- * Overridable custom event handler to select Column.
- *
- * @method onEventSelectColumn
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventSelectColumn : function(oArgs) {
-    this.selectColumn(oArgs.target);
-},
-
-/**
- * Overridable custom event handler to highlight Column. Accounts for spurious
- * caused-by-child events. 
- *
- * @method onEventHighlightColumn
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventHighlightColumn : function(oArgs) {
-    //TODO: filter for all spurious events at a lower level
-    if(!Dom.isAncestor(oArgs.target,Ev.getRelatedTarget(oArgs.event))) {
-        this.highlightColumn(oArgs.target);
-    }
-},
-
-/**
- * Overridable custom event handler to unhighlight Column. Accounts for spurious
- * caused-by-child events. 
- *
- * @method onEventUnhighlightColumn
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventUnhighlightColumn : function(oArgs) {
-    //TODO: filter for all spurious events at a lower level
-    if(!Dom.isAncestor(oArgs.target,Ev.getRelatedTarget(oArgs.event))) {
-        this.unhighlightColumn(oArgs.target);
-    }
-},
-
-/**
- * Overridable custom event handler to manage selection according to desktop paradigm.
- *
- * @method onEventSelectRow
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventSelectRow : function(oArgs) {
-    var sMode = this.get("selectionMode");
-    if(sMode == "single") {
-        this._handleSingleSelectionByMouse(oArgs);
-    }
-    else {
-        this._handleStandardSelectionByMouse(oArgs);
-    }
-},
-
-/**
- * Overridable custom event handler to select cell.
- *
- * @method onEventSelectCell
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventSelectCell : function(oArgs) {
-    var sMode = this.get("selectionMode");
-    if(sMode == "cellblock") {
-        this._handleCellBlockSelectionByMouse(oArgs);
-    }
-    else if(sMode == "cellrange") {
-        this._handleCellRangeSelectionByMouse(oArgs);
-    }
-    else {
-        this._handleSingleCellSelectionByMouse(oArgs);
-    }
-},
-
-/**
- * Overridable custom event handler to highlight row. Accounts for spurious
- * caused-by-child events. 
- *
- * @method onEventHighlightRow
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventHighlightRow : function(oArgs) {
-    //TODO: filter for all spurious events at a lower level
-    if(!Dom.isAncestor(oArgs.target,Ev.getRelatedTarget(oArgs.event))) {
-        this.highlightRow(oArgs.target);
-    }
-},
-
-/**
- * Overridable custom event handler to unhighlight row. Accounts for spurious
- * caused-by-child events. 
- *
- * @method onEventUnhighlightRow
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventUnhighlightRow : function(oArgs) {
-    //TODO: filter for all spurious events at a lower level
-    if(!Dom.isAncestor(oArgs.target,Ev.getRelatedTarget(oArgs.event))) {
-        this.unhighlightRow(oArgs.target);
-    }
-},
-
-/**
- * Overridable custom event handler to highlight cell. Accounts for spurious
- * caused-by-child events. 
- *
- * @method onEventHighlightCell
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventHighlightCell : function(oArgs) {
-    //TODO: filter for all spurious events at a lower level
-    if(!Dom.isAncestor(oArgs.target,Ev.getRelatedTarget(oArgs.event))) {
-        this.highlightCell(oArgs.target);
-    }
-},
-
-/**
- * Overridable custom event handler to unhighlight cell. Accounts for spurious
- * caused-by-child events. 
- *
- * @method onEventUnhighlightCell
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventUnhighlightCell : function(oArgs) {
-    //TODO: filter for all spurious events at a lower level
-    if(!Dom.isAncestor(oArgs.target,Ev.getRelatedTarget(oArgs.event))) {
-        this.unhighlightCell(oArgs.target);
-    }
-},
-
-/**
- * Overridable custom event handler to format cell.
- *
- * @method onEventFormatCell
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventFormatCell : function(oArgs) {
-    var target = oArgs.target;
-
-    var elCell = this.getTdEl(target);
-    if(elCell) {
-        var oColumn = this.getColumn(elCell.cellIndex);
-        this.formatCell(elCell.firstChild, this.getRecord(elCell), oColumn);
-    }
-    else {
-    }
-},
-
-/**
- * Overridable custom event handler to edit cell.
- *
- * @method onEventShowCellEditor
- * @param oArgs.event {HTMLEvent} Event object.
- * @param oArgs.target {HTMLElement} Target element.
- */
-onEventShowCellEditor : function(oArgs) {
-    this.showCellEditor(oArgs.target);
-},
-
-/**
- * Overridable custom event handler to save active CellEditor input.
- *
- * @method onEventSaveCellEditor
- */
-onEventSaveCellEditor : function(oArgs) {
-    if(this._oCellEditor) {
-        if(this._oCellEditor.save) {
-            this._oCellEditor.save();
-        }
-        // Backward compatibility
-        else {
-            this.saveCellEditor();
-        }
-    }
-},
-
-/**
- * Overridable custom event handler to cancel active CellEditor.
- *
- * @method onEventCancelCellEditor
- */
-onEventCancelCellEditor : function(oArgs) {
-    if(this._oCellEditor) {
-        if(this._oCellEditor.cancel) {
-            this._oCellEditor.cancel();
-        }
-        // Backward compatibility
-        else {
-            this.cancelCellEditor();
-        }
-    }
-},
-
-/**
- * Callback function receives data from DataSource and populates an entire
- * DataTable with Records and TR elements, clearing previous Records, if any.
- *
- * @method onDataReturnInitializeTable
- * @param sRequest {String} Original request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} (optional) Additional argument(s)
- */
-onDataReturnInitializeTable : function(sRequest, oResponse, oPayload) {
-    if((this instanceof DT) && this._sId) {
-        this.initializeTable();
-    
-        this.onDataReturnSetRows(sRequest,oResponse,oPayload);
-    }
-},
-
-/**
- * Callback function receives reponse from DataSource, replaces all existing
- * Records in  RecordSet, updates TR elements with new data, and updates state
- * UI for pagination and sorting from payload data, if necessary. 
- *  
- * @method onDataReturnReplaceRows
- * @param oRequest {MIXED} Original generated request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} (optional) Additional argument(s)
- */
-onDataReturnReplaceRows : function(oRequest, oResponse, oPayload) {
-    if((this instanceof DT) && this._sId) {
-        this.fireEvent("dataReturnEvent", {request:oRequest,response:oResponse,payload:oPayload});
-    
-        // Pass data through abstract method for any transformations
-        var ok    = this.doBeforeLoadData(oRequest, oResponse, oPayload),
-            pag   = this.get('paginator'),
-            index = 0;
-    
-        // Data ok to set
-        if(ok && oResponse && !oResponse.error && lang.isArray(oResponse.results)) {
-            // Update Records
-            this._oRecordSet.reset();
-    
-            if (this.get('dynamicData')) {
-                if (oPayload && oPayload.pagination &&
-                    lang.isNumber(oPayload.pagination.recordOffset)) {
-                    index = oPayload.pagination.recordOffset;
-                } else if (pag) {
-                    index = pag.getStartIndex();
-                }
-            }
-    
-            this._oRecordSet.setRecords(oResponse.results, index | 0);
-            
-            // Update state
-            this._handleDataReturnPayload(oRequest, oResponse, oPayload);
-            
-            // Update UI
-            this.render();    
-        }
-        // Error
-        else if(ok && oResponse.error) {
-            this.showTableMessage(this.get("MSG_ERROR"), DT.CLASS_ERROR);
-        }
-    }
-},
-
-/**
- * Callback function receives data from DataSource and appends to an existing
- * DataTable new Records and, if applicable, creates or updates
- * corresponding TR elements.
- *
- * @method onDataReturnAppendRows
- * @param sRequest {String} Original request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} (optional) Additional argument(s)
- */
-onDataReturnAppendRows : function(sRequest, oResponse, oPayload) {
-    if((this instanceof DT) && this._sId) {
-        this.fireEvent("dataReturnEvent", {request:sRequest,response:oResponse,payload:oPayload});
-    
-        // Pass data through abstract method for any transformations
-        var ok = this.doBeforeLoadData(sRequest, oResponse, oPayload);
-    
-        // Data ok to append
-        if(ok && oResponse && !oResponse.error && lang.isArray(oResponse.results)) {        
-            // Append rows
-            this.addRows(oResponse.results);
-    
-            // Update state
-            this._handleDataReturnPayload(sRequest, oResponse, oPayload);
-        }
-        // Error
-        else if(ok && oResponse.error) {
-            this.showTableMessage(this.get("MSG_ERROR"), DT.CLASS_ERROR);
-        }
-    }
-},
-
-/**
- * Callback function receives data from DataSource and inserts new records
- * starting at the index specified in oPayload.insertIndex. The value for
- * oPayload.insertIndex can be populated when sending the request to the DataSource,
- * or by accessing oPayload.insertIndex with the doBeforeLoadData() method at runtime.
- * If applicable, creates or updates corresponding TR elements.
- *
- * @method onDataReturnInsertRows
- * @param sRequest {String} Original request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} Argument payload, looks in oPayload.insertIndex.
- */
-onDataReturnInsertRows : function(sRequest, oResponse, oPayload) {
-    if((this instanceof DT) && this._sId) {
-        this.fireEvent("dataReturnEvent", {request:sRequest,response:oResponse,payload:oPayload});
-    
-        // Pass data through abstract method for any transformations
-        var ok = this.doBeforeLoadData(sRequest, oResponse, oPayload);
-    
-        // Data ok to append
-        if(ok && oResponse && !oResponse.error && lang.isArray(oResponse.results)) {
-            // Insert rows
-            this.addRows(oResponse.results, oPayload.insertIndex | 0);
-    
-            // Update state
-            this._handleDataReturnPayload(sRequest, oResponse, oPayload);
-        }
-        // Error
-        else if(ok && oResponse.error) {
-            this.showTableMessage(this.get("MSG_ERROR"), DT.CLASS_ERROR);
-        }
-    }
-},
-
-/**
- * Callback function receives reponse from DataSource and populates the
- * RecordSet with the results.
- *  
- * @method onDataReturnSetRows
- * @param oRequest {MIXED} Original generated request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} (optional) Additional argument(s)
- */
-onDataReturnSetRows : function(oRequest, oResponse, oPayload) {
-    if((this instanceof DT) && this._sId) {
-        this.fireEvent("dataReturnEvent", {request:oRequest,response:oResponse,payload:oPayload});
-    
-        // Pass data through abstract method for any transformations
-        var ok    = this.doBeforeLoadData(oRequest, oResponse, oPayload),
-            pag   = this.get('paginator'),
-            index = 0;
-    
-        // Data ok to set
-        if(ok && oResponse && !oResponse.error && lang.isArray(oResponse.results)) {
-            // Update Records
-            if (this.get('dynamicData')) {
-                if (oPayload && oPayload.pagination &&
-                    lang.isNumber(oPayload.pagination.recordOffset)) {
-                    index = oPayload.pagination.recordOffset;
-                } else if (pag) {
-                    index = pag.getStartIndex();
-                }
-            }
-    
-            this._oRecordSet.setRecords(oResponse.results, index | 0);
-    
-            // Update state
-            this._handleDataReturnPayload(oRequest, oResponse, oPayload);
-            
-            // Update UI
-            this.render();
-        }
-        // Error
-        else if(ok && oResponse.error) {
-            this.showTableMessage(this.get("MSG_ERROR"), DT.CLASS_ERROR);
-        }
-    }
-    else {
-    }
-},
-
-/**
- * Hook to update oPayload before consumption.
- *  
- * @method handleDataReturnPayload
- * @param oRequest {MIXED} Original generated request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} State values.
- * @return oPayload {MIXED} State values.
- */
-handleDataReturnPayload : function (oRequest, oResponse, oPayload) {
-    return oPayload;
-},
-
-/**
- * Updates the DataTable with state data sent in an onDataReturn* payload.
- *  
- * @method handleDataReturnPayload
- * @param oRequest {MIXED} Original generated request.
- * @param oResponse {Object} Response object.
- * @param oPayload {MIXED} State values
- */
-_handleDataReturnPayload : function (oRequest, oResponse, oPayload) {
-    oPayload = this.handleDataReturnPayload(oRequest, oResponse, oPayload);
-    if(oPayload) {
-        // Update pagination
-        var oPaginator = this.get('paginator');
-        if (oPaginator) {
-            // Update totalRecords
-            if(this.get("dynamicData")) {
-                if (lang.isNumber(oPayload.totalRecords)) {
-                    oPaginator.set('totalRecords',oPayload.totalRecords);
-                }
-            }
-            else {
-                oPaginator.set('totalRecords',this._oRecordSet.getLength());
-            }
-            // Update other paginator values
-            if (lang.isObject(oPayload.pagination)) {
-                oPaginator.set('rowsPerPage',oPayload.pagination.rowsPerPage);
-                oPaginator.set('recordOffset',oPayload.pagination.recordOffset);
-            }
-        }
-
-        // Update sorting
-        if (oPayload.sortedBy) {
-            // Set the sorting values in preparation for refresh
-            this.set('sortedBy', oPayload.sortedBy);
-        }
-        // Backwards compatibility for sorting
-        else if (oPayload.sorting) {
-            // Set the sorting values in preparation for refresh
-            this.set('sortedBy', oPayload.sorting);
-        }
-    }
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Custom Events
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Fired when the DataTable's rows are rendered from an initialized state.
-     *
-     * @event initEvent
-     */
-
-    /**
-     * Fired when the DataTable's DOM is rendered or modified.
-     *
-     * @event renderEvent
-     */
-
-    /**
-     * Fired when the DataTable's post-render routine is complete, including
-     * Column width validations.
-     *
-     * @event postRenderEvent
-     */
-
-    /**
-     * Fired when the DataTable is disabled.
-     *
-     * @event disableEvent
-     */
-
-    /**
-     * Fired when the DataTable is undisabled.
-     *
-     * @event undisableEvent
-     */
-
-    /**
-     * Fired when data is returned from DataSource but before it is consumed by
-     * DataTable.
-     *
-     * @event dataReturnEvent
-     * @param oArgs.request {String} Original request.
-     * @param oArgs.response {Object} Response object.
-     */
-
-    /**
-     * Fired when the DataTable has a focus event.
-     *
-     * @event tableFocusEvent
-     */
-
-    /**
-     * Fired when the DataTable THEAD element has a focus event.
-     *
-     * @event theadFocusEvent
-     */
-
-    /**
-     * Fired when the DataTable TBODY element has a focus event.
-     *
-     * @event tbodyFocusEvent
-     */
-
-    /**
-     * Fired when the DataTable has a blur event.
-     *
-     * @event tableBlurEvent
-     */
-
-    /*TODO implement theadBlurEvent
-     * Fired when the DataTable THEAD element has a blur event.
-     *
-     * @event theadBlurEvent
-     */
-
-    /*TODO: implement tbodyBlurEvent
-     * Fired when the DataTable TBODY element has a blur event.
-     *
-     * @event tbodyBlurEvent
-     */
-
-    /**
-     * Fired when the DataTable has a key event.
-     *
-     * @event tableKeyEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     */
-
-    /**
-     * Fired when the DataTable THEAD element has a key event.
-     *
-     * @event theadKeyEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     */
-
-    /**
-     * Fired when the DataTable TBODY element has a key event.
-     *
-     * @event tbodyKeyEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     */
-
-    /**
-     * Fired when the DataTable has a mouseover.
-     *
-     * @event tableMouseoverEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     *
-     */
-
-    /**
-     * Fired when the DataTable has a mouseout.
-     *
-     * @event tableMouseoutEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     *
-     */
-
-    /**
-     * Fired when the DataTable has a mousedown.
-     *
-     * @event tableMousedownEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     *
-     */
-
-    /**
-     * Fired when the DataTable has a mouseup.
-     *
-     * @event tableMouseupEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     *
-     */
-
-    /**
-     * Fired when the DataTable has a click.
-     *
-     * @event tableClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     *
-     */
-
-    /**
-     * Fired when the DataTable has a dblclick.
-     *
-     * @event tableDblclickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The DataTable's TABLE element.
-     *
-     */
-
-    /**
-     * Fired when a message is shown in the DataTable's message element.
-     *
-     * @event tableMsgShowEvent
-     * @param oArgs.html {String} The HTML displayed.
-     * @param oArgs.className {String} The className assigned.
-     *
-     */
-
-    /**
-     * Fired when the DataTable's message element is hidden.
-     *
-     * @event tableMsgHideEvent
-     */
-
-    /**
-     * Fired when a THEAD row has a mouseover.
-     *
-     * @event theadRowMouseoverEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a THEAD row has a mouseout.
-     *
-     * @event theadRowMouseoutEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a THEAD row has a mousedown.
-     *
-     * @event theadRowMousedownEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a THEAD row has a mouseup.
-     *
-     * @event theadRowMouseupEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a THEAD row has a click.
-     *
-     * @event theadRowClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a THEAD row has a dblclick.
-     *
-     * @event theadRowDblclickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a THEAD cell has a mouseover.
-     *
-     * @event theadCellMouseoverEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TH element.
-     *
-     */
-
-    /**
-     * Fired when a THEAD cell has a mouseout.
-     *
-     * @event theadCellMouseoutEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TH element.
-     *
-     */
-
-    /**
-     * Fired when a THEAD cell has a mousedown.
-     *
-     * @event theadCellMousedownEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TH element.
-     */
-
-    /**
-     * Fired when a THEAD cell has a mouseup.
-     *
-     * @event theadCellMouseupEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TH element.
-     */
-
-    /**
-     * Fired when a THEAD cell has a click.
-     *
-     * @event theadCellClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TH element.
-     */
-
-    /**
-     * Fired when a THEAD cell has a dblclick.
-     *
-     * @event theadCellDblclickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TH element.
-     */
-
-    /**
-     * Fired when a THEAD label has a mouseover.
-     *
-     * @event theadLabelMouseoverEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The SPAN element.
-     *
-     */
-
-    /**
-     * Fired when a THEAD label has a mouseout.
-     *
-     * @event theadLabelMouseoutEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The SPAN element.
-     *
-     */
-
-    /**
-     * Fired when a THEAD label has a mousedown.
-     *
-     * @event theadLabelMousedownEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The SPAN element.
-     */
-
-    /**
-     * Fired when a THEAD label has a mouseup.
-     *
-     * @event theadLabelMouseupEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The SPAN element.
-     */
-
-    /**
-     * Fired when a THEAD label has a click.
-     *
-     * @event theadLabelClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The SPAN element.
-     */
-
-    /**
-     * Fired when a THEAD label has a dblclick.
-     *
-     * @event theadLabelDblclickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The SPAN element.
-     */
-
-    /**
-     * Fired when a column is sorted.
-     *
-     * @event columnSortEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     * @param oArgs.dir {String} Sort direction: YAHOO.widget.DataTable.CLASS_ASC
-     * or YAHOO.widget.DataTable.CLASS_DESC.
-     */
-
-    /**
-     * Fired when a column width is set.
-     *
-     * @event columnSetWidthEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     * @param oArgs.width {Number} The width in pixels.
-     */
-
-    /**
-     * Fired when a column width is unset.
-     *
-     * @event columnUnsetWidthEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     */
-
-    /**
-     * Fired when a column is drag-resized.
-     *
-     * @event columnResizeEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     * @param oArgs.target {HTMLElement} The TH element.
-     * @param oArgs.width {Number} Width in pixels.     
-     */
-
-    /**
-     * Fired when a Column is moved to a new index.
-     *
-     * @event columnReorderEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     * @param oArgs.oldIndex {Number} The previous index position.
-     */
-
-    /**
-     * Fired when a column is hidden.
-     *
-     * @event columnHideEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     */
-
-    /**
-     * Fired when a column is shown.
-     *
-     * @event columnShowEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     */
-
-    /**
-     * Fired when a column is selected.
-     *
-     * @event columnSelectEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     */
-
-    /**
-     * Fired when a column is unselected.
-     *
-     * @event columnUnselectEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     */
-    /**
-     * Fired when a column is removed.
-     *
-     * @event columnRemoveEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     */
-
-    /**
-     * Fired when a column is inserted.
-     *
-     * @event columnInsertEvent
-     * @param oArgs.column {YAHOO.widget.Column} The Column instance.
-     * @param oArgs.index {Number} The index position.
-     */
-
-    /**
-     * Fired when a column is highlighted.
-     *
-     * @event columnHighlightEvent
-     * @param oArgs.column {YAHOO.widget.Column} The highlighted Column.
-     */
-
-    /**
-     * Fired when a column is unhighlighted.
-     *
-     * @event columnUnhighlightEvent
-     * @param oArgs.column {YAHOO.widget.Column} The unhighlighted Column.
-     */
-
-
-    /**
-     * Fired when a row has a mouseover.
-     *
-     * @event rowMouseoverEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a row has a mouseout.
-     *
-     * @event rowMouseoutEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a row has a mousedown.
-     *
-     * @event rowMousedownEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a row has a mouseup.
-     *
-     * @event rowMouseupEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a row has a click.
-     *
-     * @event rowClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a row has a dblclick.
-     *
-     * @event rowDblclickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TR element.
-     */
-
-    /**
-     * Fired when a row is added.
-     *
-     * @event rowAddEvent
-     * @param oArgs.record {YAHOO.widget.Record} The added Record.
-     */
-     
-    /**
-     * Fired when rows are added.
-     *
-     * @event rowsAddEvent
-     * @param oArgs.record {YAHOO.widget.Record[]} The added Records.
-     */
-
-    /**
-     * Fired when a row is updated.
-     *
-     * @event rowUpdateEvent
-     * @param oArgs.record {YAHOO.widget.Record} The updated Record.
-     * @param oArgs.oldData {Object} Object literal of the old data.
-     */
-
-    /**
-     * Fired when a row is deleted.
-     *
-     * @event rowDeleteEvent
-     * @param oArgs.oldData {Object} Object literal of the deleted data.
-     * @param oArgs.recordIndex {Number} Index of the deleted Record.
-     * @param oArgs.trElIndex {Number} Index of the deleted TR element, if on current page.
-     */
-     
-    /**
-     * Fired when rows are deleted.
-     *
-     * @event rowsDeleteEvent
-     * @param oArgs.oldData {Object[]} Array of object literals of the deleted data.
-     * @param oArgs.recordIndex {Number} Index of the first deleted Record.
-     * @param oArgs.count {Number} Number of deleted Records.
-     */
-
-    /**
-     * Fired when a row is selected.
-     *
-     * @event rowSelectEvent
-     * @param oArgs.el {HTMLElement} The selected TR element, if applicable.
-     * @param oArgs.record {YAHOO.widget.Record} The selected Record.
-     */
-
-    /**
-     * Fired when a row is unselected.
-     *
-     * @event rowUnselectEvent
-     * @param oArgs.el {HTMLElement} The unselected TR element, if applicable.
-     * @param oArgs.record {YAHOO.widget.Record} The unselected Record.
-     */
-
-    /**
-     * Fired when all row selections are cleared.
-     *
-     * @event unselectAllRowsEvent
-     */
-
-    /**
-     * Fired when a row is highlighted.
-     *
-     * @event rowHighlightEvent
-     * @param oArgs.el {HTMLElement} The highlighted TR element.
-     * @param oArgs.record {YAHOO.widget.Record} The highlighted Record.
-     */
-
-    /**
-     * Fired when a row is unhighlighted.
-     *
-     * @event rowUnhighlightEvent
-     * @param oArgs.el {HTMLElement} The highlighted TR element.
-     * @param oArgs.record {YAHOO.widget.Record} The highlighted Record.
-     */
-
-    /**
-     * Fired when a cell is updated.
-     *
-     * @event cellUpdateEvent
-     * @param oArgs.record {YAHOO.widget.Record} The updated Record.
-     * @param oArgs.column {YAHOO.widget.Column} The updated Column.
-     * @param oArgs.oldData {Object} Object literal of the old data.
-     */
-
-    /**
-     * Fired when a cell has a mouseover.
-     *
-     * @event cellMouseoverEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TD element.
-     */
-
-    /**
-     * Fired when a cell has a mouseout.
-     *
-     * @event cellMouseoutEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TD element.
-     */
-
-    /**
-     * Fired when a cell has a mousedown.
-     *
-     * @event cellMousedownEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TD element.
-     */
-
-    /**
-     * Fired when a cell has a mouseup.
-     *
-     * @event cellMouseupEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TD element.
-     */
-
-    /**
-     * Fired when a cell has a click.
-     *
-     * @event cellClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TD element.
-     */
-
-    /**
-     * Fired when a cell has a dblclick.
-     *
-     * @event cellDblclickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The TD element.
-     */
-
-    /**
-     * Fired when a cell is formatted.
-     *
-     * @event cellFormatEvent
-     * @param oArgs.el {HTMLElement} The formatted TD element.
-     * @param oArgs.record {YAHOO.widget.Record} The associated Record instance.
-     * @param oArgs.column {YAHOO.widget.Column} The associated Column instance.
-     * @param oArgs.key {String} (deprecated) The key of the formatted cell.
-     */
-
-    /**
-     * Fired when a cell is selected.
-     *
-     * @event cellSelectEvent
-     * @param oArgs.el {HTMLElement} The selected TD element.
-     * @param oArgs.record {YAHOO.widget.Record} The associated Record instance.
-     * @param oArgs.column {YAHOO.widget.Column} The associated Column instance.
-     * @param oArgs.key {String} (deprecated) The key of the selected cell.
-     */
-
-    /**
-     * Fired when a cell is unselected.
-     *
-     * @event cellUnselectEvent
-     * @param oArgs.el {HTMLElement} The unselected TD element.
-     * @param oArgs.record {YAHOO.widget.Record} The associated Record.
-     * @param oArgs.column {YAHOO.widget.Column} The associated Column instance.
-     * @param oArgs.key {String} (deprecated) The key of the unselected cell.
-
-     */
-
-    /**
-     * Fired when a cell is highlighted.
-     *
-     * @event cellHighlightEvent
-     * @param oArgs.el {HTMLElement} The highlighted TD element.
-     * @param oArgs.record {YAHOO.widget.Record} The associated Record instance.
-     * @param oArgs.column {YAHOO.widget.Column} The associated Column instance.
-     * @param oArgs.key {String} (deprecated) The key of the highlighted cell.
-
-     */
-
-    /**
-     * Fired when a cell is unhighlighted.
-     *
-     * @event cellUnhighlightEvent
-     * @param oArgs.el {HTMLElement} The unhighlighted TD element.
-     * @param oArgs.record {YAHOO.widget.Record} The associated Record instance.
-     * @param oArgs.column {YAHOO.widget.Column} The associated Column instance.
-     * @param oArgs.key {String} (deprecated) The key of the unhighlighted cell.
-
-     */
-
-    /**
-     * Fired when all cell selections are cleared.
-     *
-     * @event unselectAllCellsEvent
-     */
-
-    /**
-     * Fired when a CellEditor is shown.
-     *
-     * @event editorShowEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     */
-
-    /**
-     * Fired when a CellEditor has a keydown.
-     *
-     * @event editorKeydownEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     * @param oArgs.event {HTMLEvent} The event object.
-     */
-
-    /**
-     * Fired when a CellEditor input is reverted.
-     *
-     * @event editorRevertEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     * @param oArgs.newData {Object} New data value from form input field.
-     * @param oArgs.oldData {Object} Old data value.
-     */
-
-    /**
-     * Fired when a CellEditor input is saved.
-     *
-     * @event editorSaveEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     * @param oArgs.newData {Object} New data value from form input field.
-     * @param oArgs.oldData {Object} Old data value.
-     */
-
-    /**
-     * Fired when a CellEditor input is canceled.
-     *
-     * @event editorCancelEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     */
-
-    /**
-     * Fired when a CellEditor has a blur event.
-     *
-     * @event editorBlurEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     */
-
-    /**
-     * Fired when a CellEditor is blocked.
-     *
-     * @event editorBlockEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     */
-
-    /**
-     * Fired when a CellEditor is unblocked.
-     *
-     * @event editorUnblockEvent
-     * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
-     */
-
-
-
-
-
-    /**
-     * Fired when a link is clicked.
-     *
-     * @event linkClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The A element.
-     */
-
-    /**
-     * Fired when a BUTTON element is clicked.
-     *
-     * @event buttonClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The BUTTON element.
-     */
-
-    /**
-     * Fired when a CHECKBOX element is clicked.
-     *
-     * @event checkboxClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The CHECKBOX element.
-     */
-
-    /**
-     * Fired when a SELECT element is changed.
-     *
-     * @event dropdownChangeEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The SELECT element.
-     */
-
-    /**
-     * Fired when a RADIO element is clicked.
-     *
-     * @event radioClickEvent
-     * @param oArgs.event {HTMLEvent} The event object.
-     * @param oArgs.target {HTMLElement} The RADIO element.
-     */
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Deprecated APIs
-//
-/////////////////////////////////////////////////////////////////////////////
-  
-/*
- * @method showCellEditorBtns
- * @deprecated Use CellEditor.renderBtns() 
- */
-showCellEditorBtns : function(elContainer) {
-    // Buttons
-    var elBtnsDiv = elContainer.appendChild(document.createElement("div"));
-    Dom.addClass(elBtnsDiv, DT.CLASS_BUTTON);
-
-    // Save button
-    var elSaveBtn = elBtnsDiv.appendChild(document.createElement("button"));
-    Dom.addClass(elSaveBtn, DT.CLASS_DEFAULT);
-    elSaveBtn.innerHTML = "OK";
-    Ev.addListener(elSaveBtn, "click", function(oArgs, oSelf) {
-        oSelf.onEventSaveCellEditor(oArgs, oSelf);
-        oSelf.focusTbodyEl();
-    }, this, true);
-
-    // Cancel button
-    var elCancelBtn = elBtnsDiv.appendChild(document.createElement("button"));
-    elCancelBtn.innerHTML = "Cancel";
-    Ev.addListener(elCancelBtn, "click", function(oArgs, oSelf) {
-        oSelf.onEventCancelCellEditor(oArgs, oSelf);
-        oSelf.focusTbodyEl();
-    }, this, true);
-
-},
-
-/**
- * @method resetCellEditor
- * @deprecated Use destroyCellEditor 
- */
-resetCellEditor : function() {
-    var elContainer = this._oCellEditor.container;
-    elContainer.style.display = "none";
-    Ev.purgeElement(elContainer, true);
-    elContainer.innerHTML = "";
-    this._oCellEditor.value = null;
-    this._oCellEditor.isActive = false;
-
-},
-
-/**
- * @event editorUpdateEvent
- * @deprecated Use CellEditor class.
- */
-
-/**
- * @method getBody
- * @deprecated Use getTbodyEl().
- */
-getBody : function() {
-    // Backward compatibility
-    return this.getTbodyEl();
-},
-
-/**
- * @method getCell
- * @deprecated Use getTdEl().
- */
-getCell : function(index) {
-    // Backward compatibility
-    return this.getTdEl(index);
-},
-
-/**
- * @method getRow
- * @deprecated Use getTrEl().
- */
-getRow : function(index) {
-    // Backward compatibility
-    return this.getTrEl(index);
-},
-
-/**
- * @method refreshView
- * @deprecated Use render.
- */
-refreshView : function() {
-    // Backward compatibility
-    this.render();
-},
-
-/**
- * @method select
- * @deprecated Use selectRow.
- */
-select : function(els) {
-    // Backward compatibility
-    if(!lang.isArray(els)) {
-        els = [els];
-    }
-    for(var i=0; i<els.length; i++) {
-        this.selectRow(els[i]);
-    }
-},
-
-/**
- * @method onEventEditCell
- * @deprecated Use onEventShowCellEditor.
- */
-onEventEditCell : function(oArgs) {
-    // Backward compatibility
-    this.onEventShowCellEditor(oArgs);
-},
-
-/**
- * @method _syncColWidths
- * @deprecated Use validateColumnWidths.
- */
-_syncColWidths : function() {
-    // Backward compatibility
-    this.validateColumnWidths();
-}
-
-/**
- * @event headerRowMouseoverEvent
- * @deprecated Use theadRowMouseoverEvent.
- */
-
-/**
- * @event headerRowMouseoutEvent
- * @deprecated Use theadRowMouseoutEvent.
- */
-
-/**
- * @event headerRowMousedownEvent
- * @deprecated Use theadRowMousedownEvent.
- */
-
-/**
- * @event headerRowClickEvent
- * @deprecated Use theadRowClickEvent.
- */
-
-/**
- * @event headerRowDblclickEvent
- * @deprecated Use theadRowDblclickEvent.
- */
-
-/**
- * @event headerCellMouseoverEvent
- * @deprecated Use theadCellMouseoverEvent.
- */
-
-/**
- * @event headerCellMouseoutEvent
- * @deprecated Use theadCellMouseoutEvent.
- */
-
-/**
- * @event headerCellMousedownEvent
- * @deprecated Use theadCellMousedownEvent.
- */
-
-/**
- * @event headerCellClickEvent
- * @deprecated Use theadCellClickEvent.
- */
-
-/**
- * @event headerCellDblclickEvent
- * @deprecated Use theadCellDblclickEvent.
- */
-
-/**
- * @event headerLabelMouseoverEvent
- * @deprecated Use theadLabelMouseoverEvent.
- */
-
-/**
- * @event headerLabelMouseoutEvent
- * @deprecated Use theadLabelMouseoutEvent.
- */
-
-/**
- * @event headerLabelMousedownEvent
- * @deprecated Use theadLabelMousedownEvent.
- */
-
-/**
- * @event headerLabelClickEvent
- * @deprecated Use theadLabelClickEvent.
- */
-
-/**
- * @event headerLabelDbllickEvent
- * @deprecated Use theadLabelDblclickEvent.
- */
-
-});
-
-/**
- * Alias for onDataReturnSetRows for backward compatibility
- * @method onDataReturnSetRecords
- * @deprecated Use onDataReturnSetRows
- */
-DT.prototype.onDataReturnSetRecords = DT.prototype.onDataReturnSetRows;
-
-/**
- * Alias for onPaginatorChange for backward compatibility
- * @method onPaginatorChange
- * @deprecated Use onPaginatorChangeRequest
- */
-DT.prototype.onPaginatorChange = DT.prototype.onPaginatorChangeRequest;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Deprecated static APIs
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * @method DataTable.formatTheadCell
- * @deprecated  Use formatTheadCell.
- */
-DT.formatTheadCell = function() {};
-
-/**
- * @method DataTable.editCheckbox
- * @deprecated  Use YAHOO.widget.CheckboxCellEditor.
- */
-DT.editCheckbox = function() {};
-
-/**
- * @method DataTable.editDate
- * @deprecated Use YAHOO.widget.DateCellEditor.
- */
-DT.editDate = function() {};
-
-/**
- * @method DataTable.editDropdown
- * @deprecated Use YAHOO.widget.DropdownCellEditor.
- */
-DT.editDropdown = function() {};
-
-/**
- * @method DataTable.editRadio
- * @deprecated Use YAHOO.widget.RadioCellEditor.
- */
-DT.editRadio = function() {};
-
-/**
- * @method DataTable.editTextarea
- * @deprecated Use YAHOO.widget.TextareaCellEditor
- */
-DT.editTextarea = function() {};
-
-/**
- * @method DataTable.editTextbox
- * @deprecated Use YAHOO.widget.TextboxCellEditor
- */
-DT.editTextbox= function() {};
-
-})();
-
-(function () {
-
-var lang   = YAHOO.lang,
-    util   = YAHOO.util,
-    widget = YAHOO.widget,
-    ua     = YAHOO.env.ua,
-    
-    Dom    = util.Dom,
-    Ev     = util.Event,
-    DS     = util.DataSourceBase,
-    DT     = widget.DataTable,
-    Pag    = widget.Paginator;
-    
-/**
- * The ScrollingDataTable class extends the DataTable class to provide
- * functionality for x-scrolling, y-scrolling, and xy-scrolling.
- *
- * @namespace YAHOO.widget
- * @class ScrollingDataTable
- * @extends YAHOO.widget.DataTable
- * @constructor
- * @param elContainer {HTMLElement} Container element for the TABLE.
- * @param aColumnDefs {Object[]} Array of object literal Column definitions.
- * @param oDataSource {YAHOO.util.DataSource} DataSource instance.
- * @param oConfigs {object} (optional) Object literal of configuration values.
- */
-widget.ScrollingDataTable = function(elContainer,aColumnDefs,oDataSource,oConfigs) {
-    oConfigs = oConfigs || {};
-    
-    // Prevent infinite loop
-    if(oConfigs.scrollable) {
-        oConfigs.scrollable = false;
-    }
-
-    widget.ScrollingDataTable.superclass.constructor.call(this, elContainer,aColumnDefs,oDataSource,oConfigs); 
-
-    // Once per instance
-    this.subscribe("columnShowEvent", this._onColumnChange);
-};
-
-var SDT = widget.ScrollingDataTable;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public constants
-//
-/////////////////////////////////////////////////////////////////////////////
-lang.augmentObject(SDT, {
-
-    /**
-     * Class name assigned to inner DataTable header container.
-     *
-     * @property DataTable.CLASS_HEADER
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-hd"
-     */
-    CLASS_HEADER : "yui-dt-hd",
-    
-    /**
-     * Class name assigned to inner DataTable body container.
-     *
-     * @property DataTable.CLASS_BODY
-     * @type String
-     * @static
-     * @final
-     * @default "yui-dt-bd"
-     */
-    CLASS_BODY : "yui-dt-bd"
-});
-
-lang.extend(SDT, DT, {
-
-/**
- * Container for fixed header TABLE element.
- *
- * @property _elHdContainer
- * @type HTMLElement
- * @private
- */
-_elHdContainer : null,
-
-/**
- * Fixed header TABLE element.
- *
- * @property _elHdTable
- * @type HTMLElement
- * @private
- */
-_elHdTable : null,
-
-/**
- * Container for scrolling body TABLE element.
- *
- * @property _elBdContainer
- * @type HTMLElement
- * @private
- */
-_elBdContainer : null,
-
-/**
- * Body THEAD element.
- *
- * @property _elBdThead
- * @type HTMLElement
- * @private
- */
-_elBdThead : null,
-
-/**
- * Offscreen container to temporarily clone SDT for auto-width calculation.
- *
- * @property _elTmpContainer
- * @type HTMLElement
- * @private
- */
-_elTmpContainer : null,
-
-/**
- * Offscreen TABLE element for auto-width calculation.
- *
- * @property _elTmpTable
- * @type HTMLElement
- * @private
- */
-_elTmpTable : null,
-
-/**
- * True if x-scrollbar is currently visible.
- * @property _bScrollbarX
- * @type Boolean
- * @private 
- */
-_bScrollbarX : null,
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Superclass methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Implementation of Element's abstract method. Sets up config values.
- *
- * @method initAttributes
- * @param oConfigs {Object} (Optional) Object literal definition of configuration values.
- * @private
- */
-
-initAttributes : function(oConfigs) {
-    oConfigs = oConfigs || {};
-    SDT.superclass.initAttributes.call(this, oConfigs);
-
-    /**
-    * @attribute width
-    * @description Table width for scrollable tables. Note: When setting width
-    * and height at runtime, please set height first.
-    * @type String
-    */
-    this.setAttributeConfig("width", {
-        value: null,
-        validator: lang.isString,
-        method: function(oParam) {
-            if(this._elHdContainer && this._elBdContainer) {
-                this._elHdContainer.style.width = oParam;
-                this._elBdContainer.style.width = oParam;            
-                this._syncScrollX();      
-                this._syncScrollOverhang();
-            }
-        }
-    });
-
-    /**
-    * @attribute height
-    * @description Table body height for scrollable tables, not including headers.
-    * @type String
-    */
-    this.setAttributeConfig("height", {
-        value: null,
-        validator: lang.isString,
-        method: function(oParam) {
-            if(this._elHdContainer && this._elBdContainer) {
-                this._elBdContainer.style.height = oParam;    
-                this._syncScrollX();   
-                this._syncScrollY();
-                this._syncScrollOverhang();
-            }
-        }
-    });
-
-    /**
-    * @attribute COLOR_COLUMNFILLER
-    * @description CSS color value assigned to header filler on scrollable tables.  
-    * @type String
-    * @default "#F2F2F2"
-    */
-    this.setAttributeConfig("COLOR_COLUMNFILLER", {
-        value: "#F2F2F2",
-        validator: lang.isString,
-        method: function(oParam) {
-            this._elHdContainer.style.backgroundColor = oParam;
-        }
-    });
-},
-
-/**
- * Initializes DOM elements for a ScrollingDataTable, including creation of
- * two separate TABLE elements.
- *
- * @method _initDomElements
- * @param elContainer {HTMLElement | String} HTML DIV element by reference or ID. 
- * return {Boolean} False in case of error, otherwise true 
- * @private
- */
-_initDomElements : function(elContainer) {
-    // Outer and inner containers
-    this._initContainerEl(elContainer);
-    if(this._elContainer && this._elHdContainer && this._elBdContainer) {
-        // TABLEs
-        this._initTableEl();
-        
-        if(this._elHdTable && this._elTable) {
-            // COLGROUPs
-            ///this._initColgroupEl(this._elHdTable, this._elTable);  
-            this._initColgroupEl(this._elHdTable);        
-            
-            // THEADs
-            this._initTheadEl(this._elHdTable, this._elTable);
-            
-            // Primary TBODY
-            this._initTbodyEl(this._elTable);
-            // Message TBODY
-            this._initMsgTbodyEl(this._elTable);            
-        }
-    }
-    if(!this._elContainer || !this._elTable || !this._elColgroup ||  !this._elThead || !this._elTbody || !this._elMsgTbody ||
-            !this._elHdTable || !this._elBdThead) {
-        return false;
-    }
-    else {
-        return true;
-    }
-},
-
-/**
- * Destroy's the DataTable outer and inner container elements, if available.
- *
- * @method _destroyContainerEl
- * @param elContainer {HTMLElement} Reference to the container element. 
- * @private
- */
-_destroyContainerEl : function(elContainer) {
-    Dom.removeClass(elContainer, DT.CLASS_SCROLLABLE);
-    SDT.superclass._destroyContainerEl.call(this, elContainer);
-    this._elHdContainer = null;
-    this._elBdContainer = null;
-},
-
-/**
- * Initializes the DataTable outer container element and creates inner header
- * and body container elements.
- *
- * @method _initContainerEl
- * @param elContainer {HTMLElement | String} HTML DIV element by reference or ID.
- * @private
- */
-_initContainerEl : function(elContainer) {
-    SDT.superclass._initContainerEl.call(this, elContainer);
-    
-    if(this._elContainer) {
-        elContainer = this._elContainer; // was constructor input, now is DOM ref
-        Dom.addClass(elContainer, DT.CLASS_SCROLLABLE);
-        
-        // Container for header TABLE
-        var elHdContainer = document.createElement("div");
-        elHdContainer.style.width = this.get("width") || "";
-        elHdContainer.style.backgroundColor = this.get("COLOR_COLUMNFILLER");
-        Dom.addClass(elHdContainer, SDT.CLASS_HEADER);
-        this._elHdContainer = elHdContainer;
-        elContainer.appendChild(elHdContainer);
-    
-        // Container for body TABLE
-        var elBdContainer = document.createElement("div");
-        elBdContainer.style.width = this.get("width") || "";
-        elBdContainer.style.height = this.get("height") || "";
-        Dom.addClass(elBdContainer, SDT.CLASS_BODY);
-        Ev.addListener(elBdContainer, "scroll", this._onScroll, this); // to sync horiz scroll headers
-        this._elBdContainer = elBdContainer;
-        elContainer.appendChild(elBdContainer);
-    }
-},
-
-/**
- * Creates HTML markup CAPTION element.
- *
- * @method _initCaptionEl
- * @param sCaption {String} Text for caption.
- * @private
- */
-_initCaptionEl : function(sCaption) {
-    // Not yet supported
-    /*if(this._elHdTable && sCaption) {
-        // Create CAPTION element
-        if(!this._elCaption) { 
-            this._elCaption = this._elHdTable.createCaption();
-        }
-        // Set CAPTION value
-        this._elCaption.innerHTML = sCaption;
-    }
-    else if(this._elCaption) {
-        this._elCaption.parentNode.removeChild(this._elCaption);
-    }*/
-},
-
-/**
- * Destroy's the DataTable head TABLE element, if available.
- *
- * @method _destroyHdTableEl
- * @private
- */
-_destroyHdTableEl : function() {
-    var elTable = this._elHdTable;
-    if(elTable) {
-        Ev.purgeElement(elTable, true);
-        elTable.parentNode.removeChild(elTable);
-        
-        // A little out of place, but where else can we null out these extra elements?
-        ///this._elBdColgroup = null;
-        this._elBdThead = null;
-    }
-},
-
-/**
- * Initializes ScrollingDataTable TABLE elements into the two inner containers.
- *
- * @method _initTableEl
- * @private
- */
-_initTableEl : function() {
-    // Head TABLE
-    if(this._elHdContainer) {
-        this._destroyHdTableEl();
-    
-        // Create TABLE
-        this._elHdTable = this._elHdContainer.appendChild(document.createElement("table"));   
-    } 
-    // Body TABLE
-    SDT.superclass._initTableEl.call(this, this._elBdContainer);
-},
-
-/**
- * Initializes ScrollingDataTable THEAD elements into the two inner containers.
- *
- * @method _initTheadEl
- * @param elHdTable {HTMLElement} (optional) Fixed header TABLE element reference.
- * @param elTable {HTMLElement} (optional) TABLE element reference.
- * @private
- */
-_initTheadEl : function(elHdTable, elTable) {
-    elHdTable = elHdTable || this._elHdTable;
-    elTable = elTable || this._elTable;
-    
-    // Scrolling body's THEAD
-    this._initBdTheadEl(elTable);
-    // Standard fixed head THEAD
-    SDT.superclass._initTheadEl.call(this, elHdTable);
-},
-
-/**
- * SDT changes ID so as not to duplicate the accessibility TH IDs.
- *
- * @method _initThEl
- * @param elTh {HTMLElement} TH element reference.
- * @param oColumn {YAHOO.widget.Column} Column object.
- * @private
- */
-_initThEl : function(elTh, oColumn) {
-    SDT.superclass._initThEl.call(this, elTh, oColumn);
-    elTh.id = this.getId() +"-fixedth-" + oColumn.getSanitizedKey(); // Needed for getColumn by TH and ColumnDD
-},
-
-/**
- * Destroy's the DataTable body THEAD element, if available.
- *
- * @method _destroyBdTheadEl
- * @private
- */
-_destroyBdTheadEl : function() {
-    var elBdThead = this._elBdThead;
-    if(elBdThead) {
-        var elTable = elBdThead.parentNode;
-        Ev.purgeElement(elBdThead, true);
-        elTable.removeChild(elBdThead);
-        this._elBdThead = null;
-
-        this._destroyColumnHelpers();
-    }
-},
-
-/**
- * Initializes body THEAD element.
- *
- * @method _initBdTheadEl
- * @param elTable {HTMLElement} TABLE element into which to create THEAD.
- * @return {HTMLElement} Initialized THEAD element. 
- * @private
- */
-_initBdTheadEl : function(elTable) {
-    if(elTable) {
-        // Destroy previous
-        this._destroyBdTheadEl();
-
-        var elThead = elTable.insertBefore(document.createElement("thead"), elTable.firstChild);
-        
-        // Add TRs to the THEAD;
-        var oColumnSet = this._oColumnSet,
-            colTree = oColumnSet.tree,
-            elTh, elTheadTr, oColumn, i, j, k, len;
-
-        for(i=0, k=colTree.length; i<k; i++) {
-            elTheadTr = elThead.appendChild(document.createElement("tr"));
-    
-            // ...and create TH cells
-            for(j=0, len=colTree[i].length; j<len; j++) {
-                oColumn = colTree[i][j];
-                elTh = elTheadTr.appendChild(document.createElement("th"));
-                this._initBdThEl(elTh,oColumn,i,j);
-            }
-        }
-        this._elBdThead = elThead;
-    }
-},
-
-/**
- * Populates TH element for the body THEAD element.
- *
- * @method _initBdThEl
- * @param elTh {HTMLElement} TH element reference.
- * @param oColumn {YAHOO.widget.Column} Column object.
- * @private
- */
-_initBdThEl : function(elTh, oColumn) {
-    elTh.id = this.getId()+"-th-" + oColumn.getSanitizedKey(); // Needed for accessibility
-    elTh.rowSpan = oColumn.getRowspan();
-    elTh.colSpan = oColumn.getColspan();
-    // Assign abbr attribute
-    if(oColumn.abbr) {
-        elTh.abbr = oColumn.abbr;
-    }
-
-    // TODO: strip links and form elements
-    var sKey = oColumn.getKey();
-    var sLabel = lang.isValue(oColumn.label) ? oColumn.label : sKey;
-    elTh.innerHTML = sLabel;
-},
-
-/**
- * Initializes ScrollingDataTable TBODY element for data
- *
- * @method _initTbodyEl
- * @param elTable {HTMLElement} TABLE element into which to create TBODY .
- * @private
- */
-_initTbodyEl : function(elTable) {
-    SDT.superclass._initTbodyEl.call(this, elTable);
-    
-    // Bug 2105534 - Safari gap
-    elTable.style.marginTop = "-"+this._elTbody.offsetTop+"px";
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/**
- * Sets focus on the given element.
- *
- * @method _focusEl
- * @param el {HTMLElement} Element.
- * @private
- */
-_focusEl : function(el) {
-    el = el || this._elTbody;
-    var oSelf = this;
-    this._storeScrollPositions();
-    // http://developer.mozilla.org/en/docs/index.php?title=Key-navigable_custom_DHTML_widgets
-    // The timeout is necessary in both IE and Firefox 1.5, to prevent scripts from doing
-    // strange unexpected things as the user clicks on buttons and other controls.
-    
-    // Bug 1921135: Wrap the whole thing in a setTimeout
-    setTimeout(function() {
-        setTimeout(function() {
-            try {
-                el.focus();
-                oSelf._restoreScrollPositions();
-            }
-            catch(e) {
-            }
-        },0);
-    }, 0);
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/**
- * Internal wrapper calls run() on render Chain instance.
- *
- * @method _runRenderChain
- * @private 
- */
-_runRenderChain : function() {
-    this._storeScrollPositions();
-    this._oChainRender.run();
-},
-
-/**
- * Stores scroll positions so they can be restored after a render. 
- *
- * @method _storeScrollPositions
- * @private 
- */
- _storeScrollPositions : function() {
-    this._nScrollTop = this._elBdContainer.scrollTop;
-    this._nScrollLeft = this._elBdContainer.scrollLeft;
-},
-
-/**
- * Restores scroll positions to stored value. 
- *
- * @method _retoreScrollPositions
- * @private 
- */
- _restoreScrollPositions : function() {
-    // Reset scroll positions
-    if(this._nScrollTop) {
-        this._elBdContainer.scrollTop = this._nScrollTop;
-        this._nScrollTop = null;
-    } 
-    if(this._nScrollLeft) {
-        this._elBdContainer.scrollLeft = this._nScrollLeft;
-        this._nScrollLeft = null;
-    } 
-},
-
-/**
- * Helper function calculates and sets a validated width for a Column in a ScrollingDataTable.
- *
- * @method _validateColumnWidth
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param elTd {HTMLElement} TD element to validate against.
- * @private
- */
-_validateColumnWidth : function(oColumn, elTd) {
-    // Only Columns without widths that are not hidden
-    if(!oColumn.width && !oColumn.hidden) {
-        var elTh = oColumn.getThEl();
-        // Unset a calculated auto-width
-        if(oColumn._calculatedWidth) {
-            this._setColumnWidth(oColumn, "auto", "visible");
-        }
-        // Compare auto-widths
-        if(elTh.offsetWidth !== elTd.offsetWidth) {
-            var elWider = (elTh.offsetWidth > elTd.offsetWidth) ?
-                    oColumn.getThLinerEl() : elTd.firstChild;               
-
-            // Grab the wider liner width, unless the minWidth is wider
-            var newWidth = Math.max(0,
-                (elWider.offsetWidth -(parseInt(Dom.getStyle(elWider,"paddingLeft"),10)|0) - (parseInt(Dom.getStyle(elWider,"paddingRight"),10)|0)),
-                oColumn.minWidth);
-                
-            var sOverflow = 'visible';
-            
-            // Now validate against maxAutoWidth
-            if((oColumn.maxAutoWidth > 0) && (newWidth > oColumn.maxAutoWidth)) {
-                newWidth = oColumn.maxAutoWidth;
-                sOverflow = "hidden";
-            }
-
-            // Set to the wider auto-width
-            this._elTbody.style.display = "none";
-            this._setColumnWidth(oColumn, newWidth+'px', sOverflow);
-            oColumn._calculatedWidth = newWidth;
-            this._elTbody.style.display = "";
-        }
-    }
-},
-
-/**
- * For one or all Columns of a ScrollingDataTable, when Column is not hidden,
- * and width is not set, syncs widths of header and body cells and 
- * validates that width against minWidth and/or maxAutoWidth as necessary.
- *
- * @method validateColumnWidths
- * @param oArg.column {YAHOO.widget.Column} (optional) One Column to validate. If null, all Columns' widths are validated.
- */
-validateColumnWidths : function(oColumn) {
-    // Validate there is at least one TR with proper TDs
-    var allKeys   = this._oColumnSet.keys,
-        allKeysLength = allKeys.length,
-        elRow     = this.getFirstTrEl();
-
-    // Reset overhang for IE
-    if(ua.ie) {
-        this._setOverhangValue(1);
-    }
-
-    if(allKeys && elRow && (elRow.childNodes.length === allKeysLength)) {
-        // Temporarily unsnap container since it causes inaccurate calculations
-        var sWidth = this.get("width");
-        if(sWidth) {
-            this._elHdContainer.style.width = "";
-            this._elBdContainer.style.width = "";
-        }
-        this._elContainer.style.width = "";
-        
-        //Validate just one Column
-        if(oColumn && lang.isNumber(oColumn.getKeyIndex())) {
-            this._validateColumnWidth(oColumn, elRow.childNodes[oColumn.getKeyIndex()]);
-        }
-        // Iterate through all Columns to unset calculated widths in one pass
-        else {
-            var elTd, todos = [], thisTodo, i, len;
-            for(i=0; i<allKeysLength; i++) {
-                oColumn = allKeys[i];
-                // Only Columns without widths that are not hidden, unset a calculated auto-width
-                if(!oColumn.width && !oColumn.hidden && oColumn._calculatedWidth) {
-                    todos[todos.length] = oColumn;      
-                }
-            }
-            
-            this._elTbody.style.display = "none";
-            for(i=0, len=todos.length; i<len; i++) {
-                this._setColumnWidth(todos[i], "auto", "visible");
-            }
-            this._elTbody.style.display = "";
-            
-            todos = [];
-
-            // Iterate through all Columns and make the store the adjustments to make in one pass
-            for(i=0; i<allKeysLength; i++) {
-                oColumn = allKeys[i];
-                elTd = elRow.childNodes[i];
-                // Only Columns without widths that are not hidden
-                if(!oColumn.width && !oColumn.hidden) {
-                    var elTh = oColumn.getThEl();
-
-                    // Compare auto-widths
-                    if(elTh.offsetWidth !== elTd.offsetWidth) {
-                        var elWider = (elTh.offsetWidth > elTd.offsetWidth) ?
-                                oColumn.getThLinerEl() : elTd.firstChild;               
-                
-                        // Grab the wider liner width, unless the minWidth is wider
-                        var newWidth = Math.max(0,
-                            (elWider.offsetWidth -(parseInt(Dom.getStyle(elWider,"paddingLeft"),10)|0) - (parseInt(Dom.getStyle(elWider,"paddingRight"),10)|0)),
-                            oColumn.minWidth);
-                            
-                        var sOverflow = 'visible';
-                        
-                        // Now validate against maxAutoWidth
-                        if((oColumn.maxAutoWidth > 0) && (newWidth > oColumn.maxAutoWidth)) {
-                            newWidth = oColumn.maxAutoWidth;
-                            sOverflow = "hidden";
-                        }
-                
-                        todos[todos.length] = [oColumn, newWidth, sOverflow];
-                    }
-                }
-            }
-            
-            this._elTbody.style.display = "none";
-            for(i=0, len=todos.length; i<len; i++) {
-                thisTodo = todos[i];
-                // Set to the wider auto-width
-                this._setColumnWidth(thisTodo[0], thisTodo[1]+"px", thisTodo[2]);
-                thisTodo[0]._calculatedWidth = thisTodo[1];
-            }
-            this._elTbody.style.display = "";
-        }
-    
-        // Resnap unsnapped containers
-        if(sWidth) {
-            this._elHdContainer.style.width = sWidth;
-            this._elBdContainer.style.width = sWidth;
-        } 
-    }
-    
-    this._syncScroll();
-    this._restoreScrollPositions();
-},
-
-/**
- * Syncs padding around scrollable tables, including Column header right-padding
- * and container width and height.
- *
- * @method _syncScroll
- * @private 
- */
-_syncScroll : function() {
-    this._syncScrollX();
-    this._syncScrollY();
-    this._syncScrollOverhang();
-    if(ua.opera) {
-        // Bug 1925874
-        this._elHdContainer.scrollLeft = this._elBdContainer.scrollLeft;
-        if(!this.get("width")) {
-            // Bug 1926125
-            document.body.style += '';
-        }
-    }
- },
-
-/**
- * Snaps container width for y-scrolling tables.
- *
- * @method _syncScrollY
- * @private
- */
-_syncScrollY : function() {
-    var elTbody = this._elTbody,
-        elBdContainer = this._elBdContainer;
-    
-    // X-scrolling not enabled
-    if(!this.get("width")) {
-        // Snap outer container width to content
-        this._elContainer.style.width = 
-                (elBdContainer.scrollHeight > elBdContainer.clientHeight) ?
-                // but account for y-scrollbar since it is visible
-                (elTbody.parentNode.clientWidth + 19) + "px" :
-                // no y-scrollbar, just borders
-                (elTbody.parentNode.clientWidth + 2) + "px";
-    }
-},
-
-/**
- * Snaps container height for x-scrolling tables in IE. Syncs message TBODY width.
- *
- * @method _syncScrollX
- * @private
- */
-_syncScrollX : function() {
-    var elTbody = this._elTbody,
-        elBdContainer = this._elBdContainer;
-    
-    // IE 6 and 7 only when y-scrolling not enabled
-    if(!this.get("height") && (ua.ie)) {
-        // Snap outer container height to content
-        elBdContainer.style.height = 
-                // but account for x-scrollbar if it is visible
-                (elBdContainer.scrollWidth > elBdContainer.offsetWidth ) ?
-                (elTbody.parentNode.offsetHeight + 18) + "px" : 
-                elTbody.parentNode.offsetHeight + "px";
-    }
-
-    // Sync message tbody
-    if(this._elTbody.rows.length === 0) {
-        this._elMsgTbody.parentNode.style.width = this.getTheadEl().parentNode.offsetWidth + "px";
-    }
-    else {
-        this._elMsgTbody.parentNode.style.width = "";
-    }
-},
-
-/**
- * Adds/removes Column header overhang as necesary.
- *
- * @method _syncScrollOverhang
- * @private
- */
-_syncScrollOverhang : function() {
-    var elBdContainer = this._elBdContainer,
-        // Overhang should be either 1 (default) or 18px, depending on the location of the right edge of the table
-        nPadding = 1;
-    
-    // Y-scrollbar is visible, which is when the overhang needs to jut out
-    if((elBdContainer.scrollHeight > elBdContainer.clientHeight) &&
-        // X-scrollbar is also visible, which means the right is jagged, not flush with the Column
-        (elBdContainer.scrollWidth > elBdContainer.clientWidth)) {
-        nPadding = 18;
-    }
-    
-    this._setOverhangValue(nPadding);
-    
-},
-
-/**
- * Sets Column header overhang to given width.
- *
- * @method _setOverhangValue
- * @param nBorderWidth {Number} Value of new border for overhang. 
- * @private
- */
-_setOverhangValue : function(nBorderWidth) {
-    var aLastHeaders = this._oColumnSet.headers[this._oColumnSet.headers.length-1] || [],
-        len = aLastHeaders.length,
-        sPrefix = this._sId+"-fixedth-",
-        sValue = nBorderWidth + "px solid " + this.get("COLOR_COLUMNFILLER");
-
-    this._elThead.style.display = "none";
-    for(var i=0; i<len; i++) {
-        Dom.get(sPrefix+aLastHeaders[i]).style.borderRight = sValue;
-    }
-    this._elThead.style.display = "";
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/**
- * Returns DOM reference to the DataTable's fixed header container element.
- *
- * @method getHdContainerEl
- * @return {HTMLElement} Reference to DIV element.
- */
-getHdContainerEl : function() {
-    return this._elHdContainer;
-},
-
-/**
- * Returns DOM reference to the DataTable's scrolling body container element.
- *
- * @method getBdContainerEl
- * @return {HTMLElement} Reference to DIV element.
- */
-getBdContainerEl : function() {
-    return this._elBdContainer;
-},
-
-/**
- * Returns DOM reference to the DataTable's fixed header TABLE element.
- *
- * @method getHdTableEl
- * @return {HTMLElement} Reference to TABLE element.
- */
-getHdTableEl : function() {
-    return this._elHdTable;
-},
-
-/**
- * Returns DOM reference to the DataTable's scrolling body TABLE element.
- *
- * @method getBdTableEl
- * @return {HTMLElement} Reference to TABLE element.
- */
-getBdTableEl : function() {
-    return this._elTable;
-},
-
-/**
- * Disables ScrollingDataTable UI.
- *
- * @method disable
- */
-disable : function() {
-    var elMask = this._elMask;
-    elMask.style.width = this._elBdContainer.offsetWidth + "px";
-    elMask.style.height = this._elHdContainer.offsetHeight + this._elBdContainer.offsetHeight + "px";
-    elMask.style.display = "";
-    this.fireEvent("disableEvent");
-},
-
-/**
- * Removes given Column. NOTE: You cannot remove nested Columns. You can only remove
- * non-nested Columns, and top-level parent Columns (which will remove all
- * children Columns).
- *
- * @method removeColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @return oColumn {YAHOO.widget.Column} Removed Column instance.
- */
-removeColumn : function(oColumn) {
-    // Store scroll pos
-    var hdPos = this._elHdContainer.scrollLeft;
-    var bdPos = this._elBdContainer.scrollLeft;
-    
-    // Call superclass method
-    oColumn = SDT.superclass.removeColumn.call(this, oColumn);
-    
-    // Restore scroll pos
-    this._elHdContainer.scrollLeft = hdPos;
-    this._elBdContainer.scrollLeft = bdPos;
-    
-    return oColumn;
-},
-
-/**
- * Inserts given Column at the index if given, otherwise at the end. NOTE: You
- * can only add non-nested Columns and top-level parent Columns. You cannot add
- * a nested Column to an existing parent.
- *
- * @method insertColumn
- * @param oColumn {Object | YAHOO.widget.Column} Object literal Column
- * definition or a Column instance.
- * @param index {Number} (optional) New tree index.
- * @return oColumn {YAHOO.widget.Column} Inserted Column instance. 
- */
-insertColumn : function(oColumn, index) {
-    // Store scroll pos
-    var hdPos = this._elHdContainer.scrollLeft;
-    var bdPos = this._elBdContainer.scrollLeft;
-    
-    // Call superclass method
-    var oNewColumn = SDT.superclass.insertColumn.call(this, oColumn, index);
-    
-    // Restore scroll pos
-    this._elHdContainer.scrollLeft = hdPos;
-    this._elBdContainer.scrollLeft = bdPos;
-    
-    return oNewColumn;
-},
-
-/**
- * Removes given Column and inserts into given tree index. NOTE: You
- * can only reorder non-nested Columns and top-level parent Columns. You cannot
- * reorder a nested Column to an existing parent.
- *
- * @method reorderColumn
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param index {Number} New tree index.
- */
-reorderColumn : function(oColumn, index) {
-    // Store scroll pos
-    var hdPos = this._elHdContainer.scrollLeft;
-    var bdPos = this._elBdContainer.scrollLeft;
-    
-    // Call superclass method
-    var oNewColumn = SDT.superclass.reorderColumn.call(this, oColumn, index);
-    
-    // Restore scroll pos
-    this._elHdContainer.scrollLeft = hdPos;
-    this._elBdContainer.scrollLeft = bdPos;
-
-    return oNewColumn;
-},
-
-/**
- * Sets given Column to given pixel width. If new width is less than minWidth
- * width, sets to minWidth. Updates oColumn.width value.
- *
- * @method setColumnWidth
- * @param oColumn {YAHOO.widget.Column} Column instance.
- * @param nWidth {Number} New width in pixels.
- */
-setColumnWidth : function(oColumn, nWidth) {
-    oColumn = this.getColumn(oColumn);
-    if(oColumn) {
-        // Validate new width against minWidth
-        if(lang.isNumber(nWidth)) {
-            nWidth = (nWidth > oColumn.minWidth) ? nWidth : oColumn.minWidth;
-
-            // Save state
-            oColumn.width = nWidth;
-            
-            // Resize the DOM elements
-            this._setColumnWidth(oColumn, nWidth+"px");
-            this._syncScroll();
-            
-            this.fireEvent("columnSetWidthEvent",{column:oColumn,width:nWidth});
-            return;
-        }
-        // Unsets a width to auto-size
-        else if(nWidth === null) {
-            // Save state
-            oColumn.width = nWidth;
-            
-            // Resize the DOM elements
-            this._setColumnWidth(oColumn, "auto");
-            this.validateColumnWidths(oColumn);
-            this.fireEvent("columnUnsetWidthEvent",{column:oColumn});
-
-            return;
-        }
-    }
-},
-
-/**
- * Displays message within secondary TBODY.
- *
- * @method showTableMessage
- * @param sHTML {String} (optional) Value for innerHTMlang.
- * @param sClassName {String} (optional) Classname.
- */
-showTableMessage : function(sHTML, sClassName) {
-    var elCell = this._elMsgTd;
-    if(lang.isString(sHTML)) {
-        elCell.firstChild.innerHTML = sHTML;
-    }
-    if(lang.isString(sClassName)) {
-        Dom.addClass(elCell.firstChild, sClassName);
-    }
-
-    // Needed for SDT only
-    var elThead = this.getTheadEl();
-    var elTable = elThead.parentNode;
-    var newWidth = elTable.offsetWidth;
-    this._elMsgTbody.parentNode.style.width = this.getTheadEl().parentNode.offsetWidth + "px";
-
-    this._elMsgTbody.style.display = "";
-
-    this.fireEvent("tableMsgShowEvent", {html:sHTML, className:sClassName});
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private Custom Event Handlers
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Handles Column mutations
- *
- * @method onColumnChange
- * @param oArgs {Object} Custom Event data.
- */
-_onColumnChange : function(oArg) {
-    // Figure out which Column changed
-    var oColumn = (oArg.column) ? oArg.column :
-            (oArg.editor) ? oArg.editor.column : null;
-    this._storeScrollPositions();
-    this.validateColumnWidths(oColumn);
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private DOM Event Handlers
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Syncs scrolltop and scrollleft of all TABLEs.
- *
- * @method _onScroll
- * @param e {HTMLEvent} The scroll event.
- * @param oSelf {YAHOO.widget.ScrollingDataTable} ScrollingDataTable instance.
- * @private
- */
-_onScroll : function(e, oSelf) {
-    oSelf._elHdContainer.scrollLeft = oSelf._elBdContainer.scrollLeft;
-
-    if(oSelf._oCellEditor && oSelf._oCellEditor.isActive) {
-        oSelf.fireEvent("editorBlurEvent", {editor:oSelf._oCellEditor});
-        oSelf.cancelCellEditor();
-    }
-
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    oSelf.fireEvent("tableScrollEvent", {event:e, target:elTarget});
-},
-
-/**
- * Handles keydown events on the THEAD element.
- *
- * @method _onTheadKeydown
- * @param e {HTMLEvent} The key event.
- * @param oSelf {YAHOO.widget.ScrollingDataTable} ScrollingDataTable instance.
- * @private
- */
-_onTheadKeydown : function(e, oSelf) {
-    // If tabbing to next TH label link causes THEAD to scroll,
-    // need to sync scrollLeft with TBODY
-    if(Ev.getCharCode(e) === 9) {
-        setTimeout(function() {
-            if((oSelf instanceof SDT) && oSelf._sId) {
-                oSelf._elBdContainer.scrollLeft = oSelf._elHdContainer.scrollLeft;
-            }
-        },0);
-    }
-    
-    var elTarget = Ev.getTarget(e);
-    var elTag = elTarget.nodeName.toLowerCase();
-    var bKeepBubbling = true;
-    while(elTarget && (elTag != "table")) {
-        switch(elTag) {
-            case "body":
-                return;
-            case "input":
-            case "textarea":
-                // TODO: implement textareaKeyEvent
-                break;
-            case "thead":
-                bKeepBubbling = oSelf.fireEvent("theadKeyEvent",{target:elTarget,event:e});
-                break;
-            default:
-                break;
-        }
-        if(bKeepBubbling === false) {
-            return;
-        }
-        else {
-            elTarget = elTarget.parentNode;
-            if(elTarget) {
-                elTag = elTarget.nodeName.toLowerCase();
-            }
-        }
-    }
-    oSelf.fireEvent("tableKeyEvent",{target:(elTarget || oSelf._elContainer),event:e});
-}
-
-
-
-
-/**
- * Fired when a fixed scrolling DataTable has a scroll.
- *
- * @event tableScrollEvent
- * @param oArgs.event {HTMLEvent} The event object.
- * @param oArgs.target {HTMLElement} The DataTable's CONTAINER element (in IE)
- * or the DataTable's TBODY element (everyone else).
- *
- */
-
-
-
-
-});
-
-})();
-
-(function () {
-
-var lang   = YAHOO.lang,
-    util   = YAHOO.util,
-    widget = YAHOO.widget,
-    ua     = YAHOO.env.ua,
-    
-    Dom    = util.Dom,
-    Ev     = util.Event,
-    
-    DT     = widget.DataTable;
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * The BaseCellEditor class provides base functionality common to all inline cell
- * editors for a DataTable widget.
- *
- * @namespace YAHOO.widget
- * @class BaseCellEditor
- * @uses YAHOO.util.EventProvider 
- * @constructor
- * @param sType {String} Type indicator, to map to YAHOO.widget.DataTable.Editors.
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.BaseCellEditor = function(sType, oConfigs) {
-    this._sId = this._sId || "yui-ceditor" + YAHOO.widget.BaseCellEditor._nCount++;
-    this._sType = sType;
-    
-    // Validate inputs
-    this._initConfigs(oConfigs); 
-    
-    // Create Custom Events
-    this._initEvents();
-             
-    // Draw UI
-    this.render();
-};
-
-var BCE = widget.BaseCellEditor;
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Static members
-//
-/////////////////////////////////////////////////////////////////////////////
-lang.augmentObject(BCE, {
-
-/**
- * Global instance counter.
- *
- * @property CellEditor._nCount
- * @type Number
- * @static
- * @default 0
- * @private 
- */
-_nCount : 0,
-
-/**
- * Class applied to CellEditor container.
- *
- * @property CellEditor.CLASS_CELLEDITOR
- * @type String
- * @static
- * @default "yui-ceditor"
- */
-CLASS_CELLEDITOR : "yui-ceditor"
-
-});
-
-BCE.prototype = {
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private members
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Unique id assigned to instance "yui-ceditorN", useful prefix for generating unique
- * DOM ID strings and log messages.
- *
- * @property _sId
- * @type String
- * @private
- */
-_sId : null,
-
-/**
- * Editor type.
- *
- * @property _sType
- * @type String
- * @private
- */
-_sType : null,
-
-/**
- * DataTable instance.
- *
- * @property _oDataTable
- * @type YAHOO.widget.DataTable
- * @private 
- */
-_oDataTable : null,
-
-/**
- * Column instance.
- *
- * @property _oColumn
- * @type YAHOO.widget.Column
- * @default null
- */
-_oColumn : null,
-
-/**
- * Record instance.
- *
- * @property _oRecord
- * @type YAHOO.widget.Record
- * @default null
- * @private 
- */
-_oRecord : null,
-
-/**
- * TD element.
- *
- * @property _elTd
- * @type HTMLElement
- * @default null
- * @private
- */
-_elTd : null,
-
-/**
- * Container for inline editor.
- *
- * @property _elContainer
- * @type HTMLElement
- * @private 
- */
-_elContainer : null,
-
-/**
- * Reference to Cancel button, if available.
- *
- * @property _elCancelBtn
- * @type HTMLElement
- * @default null
- * @private 
- */
-_elCancelBtn : null,
-
-/**
- * Reference to Save button, if available.
- *
- * @property _elSaveBtn
- * @type HTMLElement
- * @default null
- * @private 
- */
-_elSaveBtn : null,
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Initialize configs.
- *
- * @method _initConfigs
- * @private   
- */
-_initConfigs : function(oConfigs) {
-    // Object literal defines CellEditor configs
-    if(oConfigs && YAHOO.lang.isObject(oConfigs)) {
-        for(var sConfig in oConfigs) {
-            if(sConfig) {
-                this[sConfig] = oConfigs[sConfig];
-            }
-        }
-    }
-},
-
-/**
- * Initialize Custom Events.
- *
- * @method _initEvents
- * @private   
- */
-_initEvents : function() {
-    this.createEvent("showEvent");
-    this.createEvent("keydownEvent");
-    this.createEvent("invalidDataEvent");
-    this.createEvent("revertEvent");
-    this.createEvent("saveEvent");
-    this.createEvent("cancelEvent");
-    this.createEvent("blurEvent");
-    this.createEvent("blockEvent");
-    this.createEvent("unblockEvent");
-},
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Implementer defined function that can submit the input value to a server. This
- * function must accept the arguments fnCallback and oNewValue. When the submission
- * is complete, the function must also call fnCallback(bSuccess, oNewValue) to 
- * finish the save routine in the CellEditor. This function can also be used to 
- * perform extra validation or input value manipulation. 
- *
- * @property asyncSubmitter
- * @type HTMLFunction
- */
-asyncSubmitter : null,
-
-/**
- * Current value.
- *
- * @property value
- * @type MIXED
- */
-value : null,
-
-/**
- * Default value in case Record data is undefined. NB: Null values will not trigger
- * the default value.
- *
- * @property defaultValue
- * @type MIXED
- * @default null
- */
-defaultValue : null,
-
-/**
- * Validator function for input data, called from the DataTable instance scope,
- * receives the arguments (inputValue, currentValue, editorInstance) and returns
- * either the validated (or type-converted) value or undefined.
- *
- * @property validator
- * @type HTMLFunction
- * @default null
- */
-validator : null,
-
-/**
- * True if currently active.
- *
- * @property isActive
- * @type Boolean
- */
-isActive : false,
-
-/**
- * Text to display on Save button.
- *
- * @property LABEL_SAVE
- * @type String
- * @default "Save"
- */
-LABEL_SAVE : "Save",
-
-/**
- * Text to display on Cancel button.
- *
- * @property LABEL_CANCEL
- * @type String
- * @default "Cancel"
- */
-LABEL_CANCEL : "Cancel",
-
-/**
- * True if Save/Cancel buttons should not be displayed in the CellEditor.
- *
- * @property disableBtns
- * @type Boolean
- * @default false
- */
-disableBtns : false,
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * CellEditor instance name, for logging.
- *
- * @method toString
- * @return {String} Unique name of the CellEditor instance.
- */
-
-toString : function() {
-    return "CellEditor instance " + this._sId;
-},
-
-/**
- * CellEditor unique ID.
- *
- * @method getId
- * @return {String} Unique ID of the CellEditor instance.
- */
-
-getId : function() {
-    return this._sId;
-},
-
-/**
- * Returns reference to associated DataTable instance.
- *
- * @method getDataTable
- * @return {YAHOO.widget.DataTable} DataTable instance.
- */
-
-getDataTable : function() {
-    return this._oDataTable;
-},
-
-/**
- * Returns reference to associated Column instance.
- *
- * @method getColumn
- * @return {YAHOO.widget.Column} Column instance.
- */
-
-getColumn : function() {
-    return this._oColumn;
-},
-
-/**
- * Returns reference to associated Record instance.
- *
- * @method getRecord
- * @return {YAHOO.widget.Record} Record instance.
- */
-
-getRecord : function() {
-    return this._oRecord;
-},
-
-
-
-/**
- * Returns reference to associated TD element.
- *
- * @method getTdEl
- * @return {HTMLElement} TD element.
- */
-
-getTdEl : function() {
-    return this._elTd;
-},
-
-/**
- * Returns container element.
- *
- * @method getContainerEl
- * @return {HTMLElement} Reference to container element.
- */
-
-getContainerEl : function() {
-    return this._elContainer;
-},
-
-/**
- * Nulls out the entire CellEditor instance and related objects, removes attached
- * event listeners, and clears out DOM elements inside the container, removes
- * container from the DOM.
- *
- * @method destroy
- */
-destroy : function() {
-    this.unsubscribeAll();
-    
-    // Column is late-binding in attach()
-    var oColumn = this.getColumn();
-    if(oColumn) {
-        this.getColumn().editor = null;
-    }
-    
-    var elContainer = this.getContainerEl();
-    Ev.purgeElement(elContainer, true);
-    elContainer.parentNode.removeChild(elContainer);
-},
-
-/**
- * Renders DOM elements and attaches event listeners.
- *
- * @method render
- */
-render : function() {
-    // Render Cell Editor container element as first child of body
-    var elContainer = document.createElement("div");
-    elContainer.id = this.getId() + "-container"; // Needed for tracking blur event
-    elContainer.style.display = "none";
-    elContainer.tabIndex = 0;
-    elContainer.className = DT.CLASS_EDITOR;
-    document.body.insertBefore(elContainer, document.body.firstChild);
-    this._elContainer = elContainer;
-    
-    // Handle ESC key
-    Ev.addListener(elContainer, "keydown", function(e, oSelf) {
-        // ESC cancels Cell Editor
-        if((e.keyCode == 27)) {
-            oSelf.cancel();
-        }
-        // Pass through event
-        oSelf.fireEvent("keydownEvent", {editor:this, event:e});
-    }, this);
-    
-    this.renderForm();
-
-    // Show Save/Cancel buttons
-    if(!this.disableBtns) {
-        this.renderBtns();
-    }
-    
-    this.doAfterRender();
-},
-
-/**
- * Renders Save/Cancel buttons.
- *
- * @method renderBtns
- */
-renderBtns : function() {
-    // Buttons
-    var elBtnsDiv = this.getContainerEl().appendChild(document.createElement("div"));
-    elBtnsDiv.className = DT.CLASS_BUTTON;
-
-    // Save button
-    var elSaveBtn = elBtnsDiv.appendChild(document.createElement("button"));
-    elSaveBtn.className = DT.CLASS_DEFAULT;
-    elSaveBtn.innerHTML = this.LABEL_SAVE;
-    Ev.addListener(elSaveBtn, "click", function(oArgs) {
-        this.save();
-    }, this, true);
-    this._elSaveBtn = elSaveBtn;
-
-    // Cancel button
-    var elCancelBtn = elBtnsDiv.appendChild(document.createElement("button"));
-    elCancelBtn.innerHTML = this.LABEL_CANCEL;
-    Ev.addListener(elCancelBtn, "click", function(oArgs) {
-        this.cancel();
-    }, this, true);
-    this._elCancelBtn = elCancelBtn;
-},
-
-/**
- * Attach CellEditor for a new interaction.
- *
- * @method attach
- * @param oDataTable {YAHOO.widget.DataTable} Associated DataTable instance.
- * @param elCell {HTMLElement} Cell to edit.  
- */
-attach : function(oDataTable, elCell) {
-    // Validate 
-    if(oDataTable instanceof YAHOO.widget.DataTable) {
-        this._oDataTable = oDataTable;
-        
-        // Validate cell
-        elCell = oDataTable.getTdEl(elCell);
-        if(elCell) {
-            this._elTd = elCell;
-
-            // Validate Column
-            var oColumn = oDataTable.getColumn(elCell);
-            if(oColumn) {
-                this._oColumn = oColumn;
-                
-                // Validate Record
-                var oRecord = oDataTable.getRecord(elCell);
-                if(oRecord) {
-                    this._oRecord = oRecord;
-                    var value = oRecord.getData(this.getColumn().getKey());
-                    this.value = (value !== undefined) ? value : this.defaultValue;
-                    return true;
-                }
-            }            
-        }
-    }
-    return false;
-},
-
-/**
- * Moves container into position for display.
- *
- * @method move
- */
-move : function() {
-    // Move Editor
-    var elContainer = this.getContainerEl(),
-        elTd = this.getTdEl(),
-        x = Dom.getX(elTd),
-        y = Dom.getY(elTd);
-
-    //TODO: remove scrolling logic
-    // SF doesn't get xy for cells in scrolling table
-    // when tbody display is set to block
-    if(isNaN(x) || isNaN(y)) {
-        var elTbody = this.getDataTable().getTbodyEl();
-        x = elTd.offsetLeft + // cell pos relative to table
-                Dom.getX(elTbody.parentNode) - // plus table pos relative to document
-                elTbody.scrollLeft; // minus tbody scroll
-        y = elTd.offsetTop + // cell pos relative to table
-                Dom.getY(elTbody.parentNode) - // plus table pos relative to document
-                elTbody.scrollTop + // minus tbody scroll
-                this.getDataTable().getTheadEl().offsetHeight; // account for fixed THEAD cells
-    }
-
-    elContainer.style.left = x + "px";
-    elContainer.style.top = y + "px";
-},
-
-/**
- * Displays CellEditor UI in the correct position.
- *
- * @method show
- */
-show : function() {
-    this.resetForm();
-    this.isActive = true;
-    this.getContainerEl().style.display = "";
-    this.focus();
-    this.fireEvent("showEvent", {editor:this});
-},
-
-/**
- * Fires blockEvent
- *
- * @method block
- */
-block : function() {
-    this.fireEvent("blockEvent", {editor:this});
-},
-
-/**
- * Fires unblockEvent
- *
- * @method unblock
- */
-unblock : function() {
-    this.fireEvent("unblockEvent", {editor:this});
-},
-
-/**
- * Saves value of CellEditor and hides UI.
- *
- * @method save
- */
-save : function() {
-    // Get new value
-    var inputValue = this.getInputValue();
-    var validValue = inputValue;
-    
-    // Validate new value
-    if(this.validator) {
-        validValue = this.validator.call(this.getDataTable(), inputValue, this.value, this);
-        if(validValue === undefined ) {
-            this.resetForm();
-            this.fireEvent("invalidDataEvent",
-                    {editor:this, oldData:this.value, newData:inputValue});
-            return;
-        }
-    }
-        
-    var oSelf = this;
-    var finishSave = function(bSuccess, oNewValue) {
-        var oOrigValue = YAHOO.widget.DataTable._cloneObject(oSelf.value);
-        if(bSuccess) {
-            // Update new value
-            oSelf.value = oNewValue;
-            oSelf.getDataTable().updateCell(oSelf.getRecord(), oSelf.getColumn(), oNewValue);
-            
-            // Hide CellEditor
-            oSelf.getContainerEl().style.display = "none";
-            oSelf.isActive = false;
-            oSelf.getDataTable()._oCellEditor =  null;
-            
-            oSelf.fireEvent("saveEvent",
-                    {editor:oSelf, oldData:oOrigValue, newData:oSelf.value});
-        }
-        else {
-            oSelf.resetForm();
-            oSelf.fireEvent("revertEvent",
-                    {editor:oSelf, oldData:oOrigValue, newData:oNewValue});
-        }
-        oSelf.unblock();
-    };
-    
-    this.block();
-    if(lang.isFunction(this.asyncSubmitter)) {
-        this.asyncSubmitter.call(this, finishSave, validValue);
-    } 
-    else {   
-        finishSave(true, validValue);
-    }
-},
-
-/**
- * Cancels CellEditor input and hides UI.
- *
- * @method cancel
- */
-cancel : function() {
-    if(this.isActive) {
-        this.getContainerEl().style.display = "none";
-        this.isActive = false;
-        this.getDataTable._oCellEditor =  null;
-        this.fireEvent("cancelEvent", {editor:this});
-    }
-    else {
-    }
-},
-
-/**
- * Renders form elements.
- *
- * @method renderForm
- */
-renderForm : function() {
-    // To be implemented by subclass
-},
-
-/**
- * Access to add additional event listeners.
- *
- * @method doAfterRender
- */
-doAfterRender : function() {
-    // To be implemented by subclass
-},
-
-
-/**
- * After rendering form, if disabledBtns is set to true, then sets up a mechanism
- * to save input without them. 
- *
- * @method handleDisabledBtns
- */
-handleDisabledBtns : function() {
-    // To be implemented by subclass
-},
-
-/**
- * Resets CellEditor UI to initial state.
- *
- * @method resetForm
- */
-resetForm : function() {
-    // To be implemented by subclass
-},
-
-/**
- * Sets focus in CellEditor.
- *
- * @method focus
- */
-focus : function() {
-    // To be implemented by subclass
-},
-
-/**
- * Retrieves input value from CellEditor.
- *
- * @method getInputValue
- */
-getInputValue : function() {
-    // To be implemented by subclass
-}
-
-};
-
-lang.augmentProto(BCE, util.EventProvider);
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Custom Events
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Fired when a CellEditor is shown.
- *
- * @event showEvent
- * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance.
- */
-
-/**
- * Fired when a CellEditor has a keydown.
- *
- * @event keydownEvent
- * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance. 
- * @param oArgs.event {HTMLEvent} The event object.
- */
-
-/**
- * Fired when a CellEditor input is reverted due to invalid data.
- *
- * @event invalidDataEvent
- * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance. 
- * @param oArgs.newData {Object} New data value from form input field.
- * @param oArgs.oldData {Object} Old data value.
- */
-
-/**
- * Fired when a CellEditor input is reverted due to asyncSubmitter failure.
- *
- * @event revertEvent
- * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance. 
- * @param oArgs.newData {Object} New data value from form input field.
- * @param oArgs.oldData {Object} Old data value.
- */
-
-/**
- * Fired when a CellEditor input is saved.
- *
- * @event saveEvent
- * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance. 
- * @param oArgs.newData {Object} New data value from form input field.
- * @param oArgs.oldData {Object} Old data value.
- */
-
-/**
- * Fired when a CellEditor input is canceled.
- *
- * @event cancelEvent
- * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance. 
- */
-
-/**
- * Fired when a CellEditor has a blur event.
- *
- * @event blurEvent
- * @param oArgs.editor {YAHOO.widget.CellEditor} The CellEditor instance. 
- */
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * The CheckboxCellEditor class provides functionality for inline editing
- * DataTable cell data with checkboxes.
- *
- * @namespace YAHOO.widget
- * @class CheckboxCellEditor
- * @extends YAHOO.widget.BaseCellEditor
- * @constructor
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.CheckboxCellEditor = function(oConfigs) {
-    this._sId = "yui-checkboxceditor" + YAHOO.widget.BaseCellEditor._nCount++;
-    widget.CheckboxCellEditor.superclass.constructor.call(this, "checkbox", oConfigs); 
-};
-
-// CheckboxCellEditor extends BaseCellEditor
-lang.extend(widget.CheckboxCellEditor, BCE, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// CheckboxCellEditor public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Array of checkbox values. Can either be a simple array (e.g., ["red","green","blue"])
- * or a an array of objects (e.g., [{label:"red", value:"#FF0000"},
- * {label:"green", value:"#00FF00"}, {label:"blue", value:"#0000FF"}]). 
- *
- * @property checkboxOptions
- * @type String[] | Object[]
- */
-checkboxOptions : null,
-
-/**
- * Reference to the checkbox elements.
- *
- * @property checkboxes
- * @type HTMLElement[] 
- */
-checkboxes : null,
-
-/**
- * Array of checked values
- *
- * @property value
- * @type String[] 
- */
-value : null,
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// CheckboxCellEditor public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Render a form with input(s) type=checkbox.
- *
- * @method renderForm
- */
-renderForm : function() {
-    if(lang.isArray(this.checkboxOptions)) {
-        var checkboxOption, checkboxValue, checkboxId, elLabel, j, len;
-        
-        // Create the checkbox buttons in an IE-friendly way...
-        for(j=0,len=this.checkboxOptions.length; j<len; j++) {
-            checkboxOption = this.checkboxOptions[j];
-            checkboxValue = lang.isValue(checkboxOption.value) ?
-                    checkboxOption.value : checkboxOption;
-
-            checkboxId = this.getId() + "-chk" + j;
-            this.getContainerEl().innerHTML += "<input type=\"checkbox\"" +
-                    " id=\"" + checkboxId + "\"" + // Needed for label
-                    " value=\"" + checkboxValue + "\" />";
-            
-            // Create the labels in an IE-friendly way
-            elLabel = this.getContainerEl().appendChild(document.createElement("label"));
-            elLabel.htmlFor = checkboxId;
-            elLabel.innerHTML = lang.isValue(checkboxOption.label) ?
-                    checkboxOption.label : checkboxOption;
-        }
-        
-        // Store the reference to the checkbox elements
-        var allCheckboxes = [];
-        for(j=0; j<len; j++) {
-            allCheckboxes[allCheckboxes.length] = this.getContainerEl().childNodes[j*2];
-        }
-        this.checkboxes = allCheckboxes;
-
-        if(this.disableBtns) {
-            this.handleDisabledBtns();
-        }
-    }
-    else {
-    }
-},
-
-/**
- * After rendering form, if disabledBtns is set to true, then sets up a mechanism
- * to save input without them. 
- *
- * @method handleDisabledBtns
- */
-handleDisabledBtns : function() {
-    Ev.addListener(this.getContainerEl(), "click", function(v){
-        if(Ev.getTarget(v).tagName.toLowerCase() === "input") {
-            // Save on blur
-            this.save();
-        }
-    }, this, true);
-},
-
-/**
- * Resets CheckboxCellEditor UI to initial state.
- *
- * @method resetForm
- */
-resetForm : function() {
-    // Normalize to array
-    var originalValues = lang.isArray(this.value) ? this.value : [this.value];
-    
-    // Match checks to value
-    for(var i=0, j=this.checkboxes.length; i<j; i++) {
-        this.checkboxes[i].checked = false;
-        for(var k=0, len=originalValues.length; k<len; k++) {
-            if(this.checkboxes[i].value === originalValues[k]) {
-                this.checkboxes[i].checked = true;
-            }
-        }
-    }
-},
-
-/**
- * Sets focus in CheckboxCellEditor.
- *
- * @method focus
- */
-focus : function() {
-    this.checkboxes[0].focus();
-},
-
-/**
- * Retrieves input value from CheckboxCellEditor.
- *
- * @method getInputValue
- */
-getInputValue : function() {
-    var checkedValues = [];
-    for(var i=0, j=this.checkboxes.length; i<j; i++) {
-        if(this.checkboxes[i].checked) {
-            checkedValues[checkedValues.length] = this.checkboxes[i].value;
-        }
-    }  
-    return checkedValues;
-}
-
-});
-
-// Copy static members to CheckboxCellEditor class
-lang.augmentObject(widget.CheckboxCellEditor, BCE);
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * The DataCellEditor class provides functionality for inline editing
- * DataTable cell data with a YUI Calendar.
- *
- * @namespace YAHOO.widget
- * @class DateCellEditor
- * @extends YAHOO.widget.BaseCellEditor 
- * @constructor
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.DateCellEditor = function(oConfigs) {
-    this._sId = "yui-dateceditor" + YAHOO.widget.BaseCellEditor._nCount++;
-    widget.DateCellEditor.superclass.constructor.call(this, "date", oConfigs); 
-};
-
-// CheckboxCellEditor extends BaseCellEditor
-lang.extend(widget.DateCellEditor, BCE, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DateCellEditor public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Reference to Calendar instance.
- *
- * @property calendar
- * @type YAHOO.widget.Calendar
- */
-calendar : null,
-
-/**
- * Default value.
- *
- * @property defaultValue
- * @type Date
- * @default new Date()
- */
-defaultValue : new Date(),
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DateCellEditor public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Render a Calendar.
- *
- * @method renderForm
- */
-renderForm : function() {
-    // Calendar widget
-    if(YAHOO.widget.Calendar) {
-        var calContainer = this.getContainerEl().appendChild(document.createElement("div"));
-        calContainer.id = this.getId() + "-dateContainer"; // Needed for Calendar constructor
-        var calendar =
-                new YAHOO.widget.Calendar(this.getId() + "-date",
-                calContainer.id);
-        calendar.render();
-        calContainer.style.cssFloat = "none";
-
-        if(ua.ie) {
-            var calFloatClearer = this.getContainerEl().appendChild(document.createElement("br"));
-            calFloatClearer.style.clear = "both";
-        }
-        
-        this.calendar = calendar;
-
-        if(this.disableBtns) {
-            this.handleDisabledBtns();
-        }
-    }
-    else {
-    }
-    
-},
-
-/**
- * After rendering form, if disabledBtns is set to true, then sets up a mechanism
- * to save input without them. 
- *
- * @method handleDisabledBtns
- */
-handleDisabledBtns : function() {
-    this.calendar.selectEvent.subscribe(function(v){
-        // Save on select
-        this.save();
-    }, this, true);
-},
-
-/**
- * Resets DateCellEditor UI to initial state.
- *
- * @method resetForm
- */
-resetForm : function() {
-    var value = this.value;
-    var selectedValue = (value.getMonth()+1)+"/"+value.getDate()+"/"+value.getFullYear();
-    this.calendar.cfg.setProperty("selected",selectedValue,false);
-	this.calendar.render();
-},
-
-/**
- * Sets focus in DateCellEditor.
- *
- * @method focus
- */
-focus : function() {
-    // To be impmlemented by subclass
-},
-
-/**
- * Retrieves input value from DateCellEditor.
- *
- * @method getInputValue
- */
-getInputValue : function() {
-    return this.calendar.getSelectedDates()[0];
-}
-
-});
-
-// Copy static members to DateCellEditor class
-lang.augmentObject(widget.DateCellEditor, BCE);
-
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * The DropdownCellEditor class provides functionality for inline editing
- * DataTable cell data a SELECT element.
- *
- * @namespace YAHOO.widget
- * @class DropdownCellEditor
- * @extends YAHOO.widget.BaseCellEditor 
- * @constructor
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.DropdownCellEditor = function(oConfigs) {
-    this._sId = "yui-dropdownceditor" + YAHOO.widget.BaseCellEditor._nCount++;
-    widget.DropdownCellEditor.superclass.constructor.call(this, "dropdown", oConfigs); 
-};
-
-// DropdownCellEditor extends BaseCellEditor
-lang.extend(widget.DropdownCellEditor, BCE, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DropdownCellEditor public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Array of dropdown values. Can either be a simple array (e.g., 
- * ["Alabama","Alaska","Arizona","Arkansas"]) or a an array of objects (e.g., 
- * [{label:"Alabama", value:"AL"}, {label:"Alaska", value:"AK"},
- * {label:"Arizona", value:"AZ}, {label:"Arkansas", value:"AR}]). 
- *
- * @property dropdownOptions
- * @type String[] | Object[]
- */
-dropdownOptions : null,
-
-/**
- * Reference to Dropdown element.
- *
- * @property dropdown
- * @type HTMLElement
- */
-dropdown : null,
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DropdownCellEditor public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Render a form with select element.
- *
- * @method renderForm
- */
-renderForm : function() {
-    var elDropdown = this.getContainerEl().appendChild(document.createElement("select"));
-    elDropdown.style.zoom = 1;
-    this.dropdown = elDropdown;
-    
-    if(lang.isArray(this.dropdownOptions)) {
-        var dropdownOption, elOption;
-        for(var i=0, j=this.dropdownOptions.length; i<j; i++) {
-            dropdownOption = this.dropdownOptions[i];
-            elOption = document.createElement("option");
-            elOption.value = (lang.isValue(dropdownOption.value)) ?
-                    dropdownOption.value : dropdownOption;
-            elOption.innerHTML = (lang.isValue(dropdownOption.label)) ?
-                    dropdownOption.label : dropdownOption;
-            elOption = elDropdown.appendChild(elOption);
-        }
-        
-        if(this.disableBtns) {
-            this.handleDisabledBtns();
-        }
-    }
-},
-
-/**
- * After rendering form, if disabledBtns is set to true, then sets up a mechanism
- * to save input without them. 
- *
- * @method handleDisabledBtns
- */
-handleDisabledBtns : function() {
-    Ev.addListener(this.dropdown, "change", function(v){
-        // Save on change
-        this.save();
-    }, this, true);        
-},
-
-/**
- * Resets DropdownCellEditor UI to initial state.
- *
- * @method resetForm
- */
-resetForm : function() {
-    for(var i=0, j=this.dropdown.options.length; i<j; i++) {
-        if(this.value === this.dropdown.options[i].value) {
-            this.dropdown.options[i].selected = true;
-        }
-    }    
-},
-
-/**
- * Sets focus in DropdownCellEditor.
- *
- * @method focus
- */
-focus : function() {
-    this.getDataTable()._focusEl(this.dropdown);
-},
-
-/**
- * Retrieves input value from DropdownCellEditor.
- *
- * @method getInputValue
- */
-getInputValue : function() {
-    return this.dropdown.options[this.dropdown.options.selectedIndex].value;
-}
-
-});
-
-// Copy static members to DropdownCellEditor class
-lang.augmentObject(widget.DropdownCellEditor, BCE);
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * The RadioCellEditor class provides functionality for inline editing
- * DataTable cell data with radio buttons.
- *
- * @namespace YAHOO.widget
- * @class RadioCellEditor
- * @extends YAHOO.widget.BaseCellEditor 
- * @constructor
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.RadioCellEditor = function(oConfigs) {
-    this._sId = "yui-radioceditor" + YAHOO.widget.BaseCellEditor._nCount++;
-    widget.RadioCellEditor.superclass.constructor.call(this, "radio", oConfigs); 
-};
-
-// RadioCellEditor extends BaseCellEditor
-lang.extend(widget.RadioCellEditor, BCE, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// RadioCellEditor public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Reference to radio elements.
- *
- * @property radios
- * @type HTMLElement[]
- */
-radios : null,
-
-/**
- * Array of radio values. Can either be a simple array (e.g., ["yes","no","maybe"])
- * or a an array of objects (e.g., [{label:"yes", value:1}, {label:"no", value:-1},
- * {label:"maybe", value:0}]). 
- *
- * @property radioOptions
- * @type String[] | Object[]
- */
-radioOptions : null,
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// RadioCellEditor public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Render a form with input(s) type=radio.
- *
- * @method renderForm
- */
-renderForm : function() {
-    if(lang.isArray(this.radioOptions)) {
-        var radioOption, radioValue, radioId, elLabel;
-        
-        // Create the radio buttons in an IE-friendly way
-        for(var i=0, len=this.radioOptions.length; i<len; i++) {
-            radioOption = this.radioOptions[i];
-            radioValue = lang.isValue(radioOption.value) ?
-                    radioOption.value : radioOption;
-            radioId = this.getId() + "-radio" + i;
-            this.getContainerEl().innerHTML += "<input type=\"radio\"" +
-                    " name=\"" + this.getId() + "\"" +
-                    " value=\"" + radioValue + "\"" +
-                    " id=\"" +  radioId + "\" />"; // Needed for label
-            
-            // Create the labels in an IE-friendly way
-            elLabel = this.getContainerEl().appendChild(document.createElement("label"));
-            elLabel.htmlFor = radioId;
-            elLabel.innerHTML = (lang.isValue(radioOption.label)) ?
-                    radioOption.label : radioOption;
-        }
-        
-        // Store the reference to the checkbox elements
-        var allRadios = [],
-            elRadio;
-        for(var j=0; j<len; j++) {
-            elRadio = this.getContainerEl().childNodes[j*2];
-            allRadios[allRadios.length] = elRadio;
-        }
-        this.radios = allRadios;
-
-        if(this.disableBtns) {
-            this.handleDisabledBtns();
-        }
-    }
-    else {
-    }
-},
-
-/**
- * After rendering form, if disabledBtns is set to true, then sets up a mechanism
- * to save input without them. 
- *
- * @method handleDisabledBtns
- */
-handleDisabledBtns : function() {
-    Ev.addListener(this.getContainerEl(), "click", function(v){
-        if(Ev.getTarget(v).tagName.toLowerCase() === "input") {
-            // Save on blur
-            this.save();
-        }
-    }, this, true);
-},
-
-/**
- * Resets RadioCellEditor UI to initial state.
- *
- * @method resetForm
- */
-resetForm : function() {
-    for(var i=0, j=this.radios.length; i<j; i++) {
-        var elRadio = this.radios[i];
-        if(this.value === elRadio.value) {
-            elRadio.checked = true;
-            return;
-        }
-    }
-},
-
-/**
- * Sets focus in RadioCellEditor.
- *
- * @method focus
- */
-focus : function() {
-    for(var i=0, j=this.radios.length; i<j; i++) {
-        if(this.radios[i].checked) {
-            this.radios[i].focus();
-            return;
-        }
-    }
-},
-
-/**
- * Retrieves input value from RadioCellEditor.
- *
- * @method getInputValue
- */
-getInputValue : function() {
-    for(var i=0, j=this.radios.length; i<j; i++) {
-        if(this.radios[i].checked) {
-            return this.radios[i].value;
-        }
-    }
-}
-
-});
-
-// Copy static members to RadioCellEditor class
-lang.augmentObject(widget.RadioCellEditor, BCE);
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * The TextareaCellEditor class provides functionality for inline editing
- * DataTable cell data with a TEXTAREA element.
- *
- * @namespace YAHOO.widget
- * @class TextareaCellEditor
- * @extends YAHOO.widget.BaseCellEditor 
- * @constructor
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.TextareaCellEditor = function(oConfigs) {
-    this._sId = "yui-textareaceditor" + YAHOO.widget.BaseCellEditor._nCount++;
-    widget.TextareaCellEditor.superclass.constructor.call(this, "textarea", oConfigs); 
-};
-
-// TextareaCellEditor extends BaseCellEditor
-lang.extend(widget.TextareaCellEditor, BCE, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// TextareaCellEditor public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Reference to textarea element.
- *
- * @property textarea
- * @type HTMLElement
- */
-textarea : null,
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// TextareaCellEditor public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Render a form with textarea.
- *
- * @method renderForm
- */
-renderForm : function() {
-    var elTextarea = this.getContainerEl().appendChild(document.createElement("textarea"));
-    this.textarea = elTextarea;
-
-    if(this.disableBtns) {
-        this.handleDisabledBtns();
-    }
-},
-
-/**
- * After rendering form, if disabledBtns is set to true, then sets up a mechanism
- * to save input without them. 
- *
- * @method handleDisabledBtns
- */
-handleDisabledBtns : function() {
-    Ev.addListener(this.textarea, "blur", function(v){
-        // Save on blur
-        this.save();
-    }, this, true);        
-},
-
-/**
- * Moves TextareaCellEditor UI to a cell.
- *
- * @method move
- */
-move : function() {
-    this.textarea.style.width = this.getTdEl().offsetWidth + "px";
-    this.textarea.style.height = "3em";
-    YAHOO.widget.TextareaCellEditor.superclass.move.call(this);
-},
-
-/**
- * Resets TextareaCellEditor UI to initial state.
- *
- * @method resetForm
- */
-resetForm : function() {
-    this.textarea.value = this.value;
-},
-
-/**
- * Sets focus in TextareaCellEditor.
- *
- * @method focus
- */
-focus : function() {
-    this.textarea.focus();
-    this.textarea.select();
-},
-
-/**
- * Retrieves input value from TextareaCellEditor.
- *
- * @method getInputValue
- */
-getInputValue : function() {
-    return this.textarea.value;
-}
-
-});
-
-// Copy static members to TextareaCellEditor class
-lang.augmentObject(widget.TextareaCellEditor, BCE);
-
-
-
-
-
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * The TextboxCellEditor class provides functionality for inline editing
- * DataTable cell data with an INPUT TYPE=TEXT element.
- *
- * @namespace YAHOO.widget
- * @class TextboxCellEditor
- * @extends YAHOO.widget.BaseCellEditor 
- * @constructor
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.TextboxCellEditor = function(oConfigs) {
-    this._sId = "yui-textboxceditor" + YAHOO.widget.BaseCellEditor._nCount++;
-    widget.TextboxCellEditor.superclass.constructor.call(this, "textbox", oConfigs); 
-};
-
-// TextboxCellEditor extends BaseCellEditor
-lang.extend(widget.TextboxCellEditor, BCE, {
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// TextboxCellEditor public properties
-//
-/////////////////////////////////////////////////////////////////////////////
-/**
- * Reference to the textbox element.
- *
- * @property textbox
- */
-textbox : null,
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// TextboxCellEditor public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Render a form with input type=text.
- *
- * @method renderForm
- */
-renderForm : function() {
-    var elTextbox;
-    // Bug 1802582: SF3/Mac needs a form element wrapping the input
-    if(ua.webkit>420) {
-        elTextbox = this.getContainerEl().appendChild(document.createElement("form")).appendChild(document.createElement("input"));
-    }
-    else {
-        elTextbox = this.getContainerEl().appendChild(document.createElement("input"));
-    }
-    elTextbox.type = "text";
-    this.textbox = elTextbox;
-
-    // Save on enter by default
-    // Bug: 1802582 Set up a listener on each textbox to track on keypress
-    // since SF/OP can't preventDefault on keydown
-    Ev.addListener(elTextbox, "keypress", function(v){
-        if((v.keyCode === 13)) {
-            // Prevent form submit
-            YAHOO.util.Event.preventDefault(v);
-            this.save();
-        }
-    }, this, true);
-
-    if(this.disableBtns) {
-        // By default this is no-op since enter saves by default
-        this.handleDisabledBtns();
-    }
-},
-
-/**
- * Moves TextboxCellEditor UI to a cell.
- *
- * @method move
- */
-move : function() {
-    this.textbox.style.width = this.getTdEl().offsetWidth + "px";
-    widget.TextboxCellEditor.superclass.move.call(this);
-},
-
-/**
- * Resets TextboxCellEditor UI to initial state.
- *
- * @method resetForm
- */
-resetForm : function() {
-    this.textbox.value = lang.isValue(this.value) ? this.value.toString() : "";
-},
-
-/**
- * Sets focus in TextboxCellEditor.
- *
- * @method focus
- */
-focus : function() {
-    this.textbox.focus();
-    this.textbox.select();
-},
-
-/**
- * Returns new value for TextboxCellEditor.
- *
- * @method getInputValue
- */
-getInputValue : function() {
-    return this.textbox.value;
-}
-
-});
-
-// Copy static members to TextboxCellEditor class
-lang.augmentObject(widget.TextboxCellEditor, BCE);
-
-
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DataTable extension
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * CellEditor subclasses.
- * @property DataTable.Editors
- * @type Object
- * @static
- */
-DT.Editors = {
-    checkbox : widget.CheckboxCellEditor,
-    "date"   : widget.DateCellEditor,
-    dropdown : widget.DropdownCellEditor,
-    radio    : widget.RadioCellEditor,
-    textarea : widget.TextareaCellEditor,
-    textbox  : widget.TextboxCellEditor
-};
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-    
-/**
- * Factory class for instantiating a BaseCellEditor subclass.
- *
- * @namespace YAHOO.widget
- * @class CellEditor
- * @extends YAHOO.widget.BaseCellEditor 
- * @constructor
- * @param sType {String} Type indicator, to map to YAHOO.widget.DataTable.Editors.
- * @param oConfigs {Object} (Optional) Object literal of configs.
- */
-widget.CellEditor = function(sType, oConfigs) {
-    // Point to one of the subclasses
-    if(sType && DT.Editors[sType]) {
-        lang.augmentObject(BCE, DT.Editors[sType]);
-        return new DT.Editors[sType](oConfigs);
-    }
-    else {
-        return new BCE(null, oConfigs);
-    }
-};
-
-var CE = widget.CellEditor;
-
-// Copy static members to CellEditor class
-lang.augmentObject(CE, BCE);
-
-
-})();
-
-YAHOO.register("datatable", YAHOO.widget.DataTable, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/dom/README b/eclipse.org-common/yui/2.6.0/build/dom/README
deleted file mode 100644
index f79dd0d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/dom/README
+++ /dev/null
@@ -1,135 +0,0 @@
-Dom Release Notes
-
-** Known Issues **
-* margin/padding/borders on HTML element cause getXY to misreport
-* margin/borders on BODY element may cause getXY to misreport
-* Fixed postioning causes getXY to misreport in some cases
-
-----------------------------
-*** version 2.6.0 ***
-- now rounding getXY return for clientRect branch
-- now trimming className arg in getElementsByClassName
-- class attribute now removed if empty after removeClass
-- normalized isAncestor (needle === haystack no longer returns true in some browsers) 
-
-*** version 2.5.2 ***
-* no change
-
-*** version 2.5.1 ***
-* getStyle fix for getting computedStyle across documents
-
-*** version 2.5.0 ***
-* get() now correctly handles textNodes
-
-*** version 2.4.0 ***
-* no longer accounting for safari body margin when offsetParent == body
-* isAncestor and inDocument no longer use batch
-* added getClientRegion()
-
-*** version 2.3.1 ***
-* allow batch() to work on array-like object
-* return null from Dom.get(undefined)
-
-*** version 2.3.0 ***
-* added getAncestorBy methods
-* added getChildren methods
-* added getSibling methods
-* trimming added for class mgmt methods
-* fixed getXY inside table for Opera 
-
-*** version 2.3.0 ***
-* added getAncestorBy methods
-* added getChildren methods
-* added getSibling methods
-* trimming added for class mgmt methods
-* fixed getXY inside table for Opera 
-
-*** version 2.2.2 ***
-
-* fixed getXY scroll regression
-
-*** version 2.2.1 ***
-* fixed toCamel propertyCache used by set/getStyle
-* added set/getStyle support for float property
-* optimized get() for common use case
-* fixed getXY for safari when el has absolute ancestors
-* using className property instead of string literal for class mgmt methods
-* added getXY/getRegion support for body element
-
-*** version 2.2.0 ***
-* no change
-
-
-*** version 0.12.2 ***
-* no change
-
-*** version 0.12.1 ***
-
-* getElementsByClassName no longer reverts to document when "root" not found
-* setXY no longer makes a second call to getXY unless noRetry is false
-* minified version no longer strips line breaks
-
-*** version 0.12.0 ***
-
-* fixed getXY for IE null parent
-* branching set/getStyle at load time instead of run time 
-
-*** version 0.11.3 ***
-
-* fixed getX and getY returning incorrect values for collections 
-* fixed getXY incorrectly calculated for Opera inline elements
-* fixed isAncestor failure in safari when 2nd arg is document.documentElement
-* fixed infinite loop in replaceClass when oldClassName == newClassName 
-* getDocumentWidth no longer includes scrollbars 
-
-
-*** version 0.11.2 ***
-* limit depth of parent.document crawl to 1 for getXY
-* test offsetParent instead of parentNode for getXY
-* return null if no el fo r get
-* just addClass if no class to replace for replaceClass
-
-
-*** version 0.11.1 ***
-
-* return null if el is null for get()
-* test offsetParent rather than parentNode for getXY()
-* limit depth of parent.document crawl for IE getXY() to 1
-* if no oldClassName to replace, just addClass for replaceClass()
-
-
-*** version 0.11.0 ***
-* Work around Opera 9 broken currentStyle
-* Removed timeout wrapper from setXY retry
-* Tagname tests now case-insensitive
-* Internal "this" references changed to allow for method shorthand
-* get/setStyle now accept both camel and hyphen case
-* Gecko reverted to crawling offsets for getXY
- 
-
-*** version 0.10.0 ***
-
-* Safari now fails gracefully when querying computedStyle of an unavailable element 
-
-* Class management functions added (hasClass, addClass, removeClass, replaceClass, getElementsByClassName) 
-
-* All methods that accept HTMLElements or IDs now also accept arrays of HTMLElements and/or IDs
-
-* GenerateId method added
-
-* isAncestor method added
-
-* inDocument method added
-
-* getElementsBy method added
-
-* batch method added
-
-* getClientHeight/Width deprecated in favor of getViewportHeight/Width
-
-* getDocumentHeight/Width methods added 
-
-*** version 0.9.0 ***
-
-* Initial release
-
diff --git a/eclipse.org-common/yui/2.6.0/build/dom/dom-debug.js b/eclipse.org-common/yui/2.6.0/build/dom/dom-debug.js
deleted file mode 100644
index 1580ff3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/dom/dom-debug.js
+++ /dev/null
@@ -1,1277 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The dom module provides helper methods for manipulating Dom elements.
- * @module dom
- *
- */
-
-(function() {
-    var Y = YAHOO.util,     // internal shorthand
-        lang = YAHOO.lang,
-        getStyle,           // for load time browser branching
-        setStyle,           // ditto
-        propertyCache = {}, // for faster hyphen converts
-        reClassNameCache = {},          // cache regexes for className
-        document = window.document;     // cache for faster lookups
-    
-    YAHOO.env._id_counter = YAHOO.env._id_counter || 0;     // for use with generateId (global to save state if Dom is overwritten)
-
-    // brower detection
-    var isOpera = YAHOO.env.ua.opera,
-        isSafari = YAHOO.env.ua.webkit, 
-        isGecko = YAHOO.env.ua.gecko,
-        isIE = YAHOO.env.ua.ie; 
-    
-    // regex cache
-    var patterns = {
-        HYPHEN: /(-[a-z])/i, // to normalize get/setStyle
-        ROOT_TAG: /^body|html$/i, // body for quirks mode, html for standards,
-        OP_SCROLL:/^(?:inline|table-row)$/i
-    };
-
-    var toCamel = function(property) {
-        if ( !patterns.HYPHEN.test(property) ) {
-            return property; // no hyphens
-        }
-        
-        if (propertyCache[property]) { // already converted
-            return propertyCache[property];
-        }
-       
-        var converted = property;
- 
-        while( patterns.HYPHEN.exec(converted) ) {
-            converted = converted.replace(RegExp.$1,
-                    RegExp.$1.substr(1).toUpperCase());
-        }
-        
-        propertyCache[property] = converted;
-        return converted;
-        //return property.replace(/-([a-z])/gi, function(m0, m1) {return m1.toUpperCase()}) // cant use function as 2nd arg yet due to safari bug
-    };
-    
-    var getClassRegEx = function(className) {
-        var re = reClassNameCache[className];
-        if (!re) {
-            re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)');
-            reClassNameCache[className] = re;
-        }
-        return re;
-    };
-
-    // branching at load instead of runtime
-    if (document.defaultView && document.defaultView.getComputedStyle) { // W3C DOM method
-        getStyle = function(el, property) {
-            var value = null;
-            
-            if (property == 'float') { // fix reserved word
-                property = 'cssFloat';
-            }
-
-            var computed = el.ownerDocument.defaultView.getComputedStyle(el, '');
-            if (computed) { // test computed before touching for safari
-                value = computed[toCamel(property)];
-            }
-            
-            return el.style[property] || value;
-        };
-    } else if (document.documentElement.currentStyle && isIE) { // IE method
-        getStyle = function(el, property) {                         
-            switch( toCamel(property) ) {
-                case 'opacity' :// IE opacity uses filter
-                    var val = 100;
-                    try { // will error if no DXImageTransform
-                        val = el.filters['DXImageTransform.Microsoft.Alpha'].opacity;
-
-                    } catch(e) {
-                        try { // make sure its in the document
-                            val = el.filters('alpha').opacity;
-                        } catch(e) {
-                            YAHOO.log('getStyle: IE filter failed',
-                                    'error', 'Dom');
-                        }
-                    }
-                    return val / 100;
-                case 'float': // fix reserved word
-                    property = 'styleFloat'; // fall through
-                default: 
-                    // test currentStyle before touching
-                    var value = el.currentStyle ? el.currentStyle[property] : null;
-                    return ( el.style[property] || value );
-            }
-        };
-    } else { // default to inline only
-        getStyle = function(el, property) { return el.style[property]; };
-    }
-    
-    if (isIE) {
-        setStyle = function(el, property, val) {
-            switch (property) {
-                case 'opacity':
-                    if ( lang.isString(el.style.filter) ) { // in case not appended
-                        el.style.filter = 'alpha(opacity=' + val * 100 + ')';
-                        
-                        if (!el.currentStyle || !el.currentStyle.hasLayout) {
-                            el.style.zoom = 1; // when no layout or cant tell
-                        }
-                    }
-                    break;
-                case 'float':
-                    property = 'styleFloat';
-                default:
-                el.style[property] = val;
-            }
-        };
-    } else {
-        setStyle = function(el, property, val) {
-            if (property == 'float') {
-                property = 'cssFloat';
-            }
-            el.style[property] = val;
-        };
-    }
-
-    var testElement = function(node, method) {
-        return node && node.nodeType == 1 && ( !method || method(node) );
-    };
-
-    /**
-     * Provides helper methods for DOM elements.
-     * @namespace YAHOO.util
-     * @class Dom
-     */
-    YAHOO.util.Dom = {
-        /**
-         * Returns an HTMLElement reference.
-         * @method get
-         * @param {String | HTMLElement |Array} el Accepts a string to use as an ID for getting a DOM reference, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @return {HTMLElement | Array} A DOM reference to an HTML element or an array of HTMLElements.
-         */
-        get: function(el) {
-            if (el) {
-                if (el.nodeType || el.item) { // Node, or NodeList
-                    return el;
-                }
-
-                if (typeof el === 'string') { // id
-                    return document.getElementById(el);
-                }
-                
-                if ('length' in el) { // array-like 
-                    var c = [];
-                    for (var i = 0, len = el.length; i < len; ++i) {
-                        c[c.length] = Y.Dom.get(el[i]);
-                    }
-                    
-                    return c;
-                }
-
-                return el; // some other object, just pass it back
-            }
-
-            return null;
-        },
-    
-        /**
-         * Normalizes currentStyle and ComputedStyle.
-         * @method getStyle
-         * @param {String | HTMLElement |Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @param {String} property The style property whose value is returned.
-         * @return {String | Array} The current value of the style property for the element(s).
-         */
-        getStyle: function(el, property) {
-            property = toCamel(property);
-            
-            var f = function(element) {
-                return getStyle(element, property);
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-    
-        /**
-         * Wrapper for setting style properties of HTMLElements.  Normalizes "opacity" across modern browsers.
-         * @method setStyle
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @param {String} property The style property to be set.
-         * @param {String} val The value to apply to the given property.
-         */
-        setStyle: function(el, property, val) {
-            property = toCamel(property);
-            
-            var f = function(element) {
-                setStyle(element, property, val);
-                YAHOO.log('setStyle setting ' + property + ' to ' + val, 'info', 'Dom');
-                
-            };
-            
-            Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Gets the current position of an element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method getXY
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
-         * @return {Array} The XY position of the element(s)
-         */
-        getXY: function(el) {
-            var f = function(el) {
-                // has to be part of document to have pageXY
-                if ( (el.parentNode === null || el.offsetParent === null ||
-                        this.getStyle(el, 'display') == 'none') && el != el.ownerDocument.body) {
-                    YAHOO.log('getXY failed: element not available', 'error', 'Dom');
-                    return false;
-                }
-                
-                YAHOO.log('getXY returning ' + getXY(el), 'info', 'Dom');
-                return getXY(el);
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Gets the current X position of an element based on page coordinates.  The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method getX
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
-         * @return {Number | Array} The X position of the element(s)
-         */
-        getX: function(el) {
-            var f = function(el) {
-                return Y.Dom.getXY(el)[0];
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Gets the current Y position of an element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method getY
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
-         * @return {Number | Array} The Y position of the element(s)
-         */
-        getY: function(el) {
-            var f = function(el) {
-                return Y.Dom.getXY(el)[1];
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Set the position of an html element in page coordinates, regardless of how the element is positioned.
-         * The element(s) must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method setXY
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
-         * @param {Array} pos Contains X & Y values for new position (coordinates are page-based)
-         * @param {Boolean} noRetry By default we try and set the position a second time if the first fails
-         */
-        setXY: function(el, pos, noRetry) {
-            var f = function(el) {
-                var style_pos = this.getStyle(el, 'position');
-                if (style_pos == 'static') { // default to relative
-                    this.setStyle(el, 'position', 'relative');
-                    style_pos = 'relative';
-                }
-
-                var pageXY = this.getXY(el);
-                if (pageXY === false) { // has to be part of doc to have pageXY
-                    YAHOO.log('setXY failed: element not available', 'error', 'Dom');
-                    return false; 
-                }
-                
-                var delta = [ // assuming pixels; if not we will have to retry
-                    parseInt( this.getStyle(el, 'left'), 10 ),
-                    parseInt( this.getStyle(el, 'top'), 10 )
-                ];
-            
-                if ( isNaN(delta[0]) ) {// in case of 'auto'
-                    delta[0] = (style_pos == 'relative') ? 0 : el.offsetLeft;
-                } 
-                if ( isNaN(delta[1]) ) { // in case of 'auto'
-                    delta[1] = (style_pos == 'relative') ? 0 : el.offsetTop;
-                } 
-        
-                if (pos[0] !== null) { el.style.left = pos[0] - pageXY[0] + delta[0] + 'px'; }
-                if (pos[1] !== null) { el.style.top = pos[1] - pageXY[1] + delta[1] + 'px'; }
-              
-                if (!noRetry) {
-                    var newXY = this.getXY(el);
-
-                    // if retry is true, try one more time if we miss 
-                   if ( (pos[0] !== null && newXY[0] != pos[0]) || 
-                        (pos[1] !== null && newXY[1] != pos[1]) ) {
-                       this.setXY(el, pos, true);
-                   }
-                }        
-        
-                YAHOO.log('setXY setting position to ' + pos, 'info', 'Dom');
-            };
-            
-            Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Set the X position of an html element in page coordinates, regardless of how the element is positioned.
-         * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method setX
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @param {Int} x The value to use as the X coordinate for the element(s).
-         */
-        setX: function(el, x) {
-            Y.Dom.setXY(el, [x, null]);
-        },
-        
-        /**
-         * Set the Y position of an html element in page coordinates, regardless of how the element is positioned.
-         * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method setY
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @param {Int} x To use as the Y coordinate for the element(s).
-         */
-        setY: function(el, y) {
-            Y.Dom.setXY(el, [null, y]);
-        },
-        
-        /**
-         * Returns the region position of the given element.
-         * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
-         * @method getRegion
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @return {Region | Array} A Region or array of Region instances containing "top, left, bottom, right" member data.
-         */
-        getRegion: function(el) {
-            var f = function(el) {
-                if ( (el.parentNode === null || el.offsetParent === null ||
-                        this.getStyle(el, 'display') == 'none') && el != el.ownerDocument.body) {
-                    YAHOO.log('getRegion failed: element not available', 'error', 'Dom');
-                    return false;
-                }
-
-                var region = Y.Region.getRegion(el);
-                YAHOO.log('getRegion returning ' + region, 'info', 'Dom');
-                return region;
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Returns the width of the client (viewport).
-         * @method getClientWidth
-         * @deprecated Now using getViewportWidth.  This interface left intact for back compat.
-         * @return {Int} The width of the viewable area of the page.
-         */
-        getClientWidth: function() {
-            return Y.Dom.getViewportWidth();
-        },
-        
-        /**
-         * Returns the height of the client (viewport).
-         * @method getClientHeight
-         * @deprecated Now using getViewportHeight.  This interface left intact for back compat.
-         * @return {Int} The height of the viewable area of the page.
-         */
-        getClientHeight: function() {
-            return Y.Dom.getViewportHeight();
-        },
-
-        /**
-         * Returns a array of HTMLElements with the given class.
-         * For optimized performance, include a tag and/or root node when possible.
-         * Note: This method operates against a live collection, so modifying the 
-         * collection in the callback (removing/appending nodes, etc.) will have
-         * side effects.  Instead you should iterate the returned nodes array,
-         * as you would with the native "getElementsByTagName" method. 
-         * @method getElementsByClassName
-         * @param {String} className The class name to match against
-         * @param {String} tag (optional) The tag name of the elements being collected
-         * @param {String | HTMLElement} root (optional) The HTMLElement or an ID to use as the starting point 
-         * @param {Function} apply (optional) A function to apply to each element when found 
-         * @return {Array} An array of elements that have the given class name
-         */
-        getElementsByClassName: function(className, tag, root, apply) {
-            className = lang.trim(className);
-            tag = tag || '*';
-            root = (root) ? Y.Dom.get(root) : null || document; 
-            if (!root) {
-                return [];
-            }
-
-            var nodes = [],
-                elements = root.getElementsByTagName(tag),
-                re = getClassRegEx(className);
-
-            for (var i = 0, len = elements.length; i < len; ++i) {
-                if ( re.test(elements[i].className) ) {
-                    nodes[nodes.length] = elements[i];
-                    if (apply) {
-                        apply.call(elements[i], elements[i]);
-                    }
-                }
-            }
-            
-            return nodes;
-        },
-
-        /**
-         * Determines whether an HTMLElement has the given className.
-         * @method hasClass
-         * @param {String | HTMLElement | Array} el The element or collection to test
-         * @param {String} className the class name to search for
-         * @return {Boolean | Array} A boolean value or array of boolean values
-         */
-        hasClass: function(el, className) {
-            var re = getClassRegEx(className);
-
-            var f = function(el) {
-                YAHOO.log('hasClass returning ' + re.test(el.className), 'info', 'Dom');
-                return re.test(el.className);
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-    
-        /**
-         * Adds a class name to a given element or collection of elements.
-         * @method addClass         
-         * @param {String | HTMLElement | Array} el The element or collection to add the class to
-         * @param {String} className the class name to add to the class attribute
-         * @return {Boolean | Array} A pass/fail boolean or array of booleans
-         */
-        addClass: function(el, className) {
-            var f = function(el) {
-                if (this.hasClass(el, className)) {
-                    return false; // already present
-                }
-                
-                YAHOO.log('addClass adding ' + className, 'info', 'Dom');
-                
-                el.className = lang.trim([el.className, className].join(' '));
-                return true;
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-    
-        /**
-         * Removes a class name from a given element or collection of elements.
-         * @method removeClass         
-         * @param {String | HTMLElement | Array} el The element or collection to remove the class from
-         * @param {String} className the class name to remove from the class attribute
-         * @return {Boolean | Array} A pass/fail boolean or array of booleans
-         */
-        removeClass: function(el, className) {
-            var re = getClassRegEx(className);
-            
-            var f = function(el) {
-                var ret = false,
-                    current = el.className;
-
-                if (className && current && this.hasClass(el, className)) {
-                    
-                    el.className = current.replace(re, ' ');
-                    if ( this.hasClass(el, className) ) { // in case of multiple adjacent
-                        this.removeClass(el, className);
-                    }
-
-                    el.className = lang.trim(el.className); // remove any trailing spaces
-                    if (el.className === '') { // remove class attribute if empty
-                        var attr = (el.hasAttribute) ? 'class' : 'className';
-                        YAHOO.log('removeClass removing empty class attribute', 'info', 'Dom');
-                        el.removeAttribute(attr);
-                    }
-                    ret = true;
-                }                 
-                YAHOO.log('removeClass ' + className + ' result: ' + ret, 'info', 'Dom');
-                return ret;
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Replace a class with another class for a given element or collection of elements.
-         * If no oldClassName is present, the newClassName is simply added.
-         * @method replaceClass  
-         * @param {String | HTMLElement | Array} el The element or collection to remove the class from
-         * @param {String} oldClassName the class name to be replaced
-         * @param {String} newClassName the class name that will be replacing the old class name
-         * @return {Boolean | Array} A pass/fail boolean or array of booleans
-         */
-        replaceClass: function(el, oldClassName, newClassName) {
-            if (!newClassName || oldClassName === newClassName) { // avoid infinite loop
-                return false;
-            }
-            
-            var re = getClassRegEx(oldClassName);
-
-            var f = function(el) {
-                YAHOO.log('replaceClass replacing ' + oldClassName + ' with ' + newClassName, 'info', 'Dom');
-            
-                if ( !this.hasClass(el, oldClassName) ) {
-                    this.addClass(el, newClassName); // just add it if nothing to replace
-                    return true; // NOTE: return
-                }
-            
-                el.className = el.className.replace(re, ' ' + newClassName + ' ');
-
-                if ( this.hasClass(el, oldClassName) ) { // in case of multiple adjacent
-                    this.removeClass(el, oldClassName);
-                }
-
-                el.className = lang.trim(el.className); // remove any trailing spaces
-                return true;
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Returns an ID and applies it to the element "el", if provided.
-         * @method generateId  
-         * @param {String | HTMLElement | Array} el (optional) An optional element array of elements to add an ID to (no ID is added if one is already present).
-         * @param {String} prefix (optional) an optional prefix to use (defaults to "yui-gen").
-         * @return {String | Array} The generated ID, or array of generated IDs (or original ID if already present on an element)
-         */
-        generateId: function(el, prefix) {
-            prefix = prefix || 'yui-gen';
-
-            var f = function(el) {
-                if (el && el.id) { // do not override existing ID
-                    YAHOO.log('generateId returning existing id ' + el.id, 'info', 'Dom');
-                    return el.id;
-                } 
-
-                var id = prefix + YAHOO.env._id_counter++;
-                YAHOO.log('generateId generating ' + id, 'info', 'Dom');
-
-                if (el) {
-                    el.id = id;
-                }
-                
-                return id;
-            };
-
-            // batch fails when no element, so just generate and return single ID
-            return Y.Dom.batch(el, f, Y.Dom, true) || f.apply(Y.Dom, arguments);
-        },
-        
-        /**
-         * Determines whether an HTMLElement is an ancestor of another HTML element in the DOM hierarchy.
-         * @method isAncestor
-         * @param {String | HTMLElement} haystack The possible ancestor
-         * @param {String | HTMLElement} needle The possible descendent
-         * @return {Boolean} Whether or not the haystack is an ancestor of needle
-         */
-        isAncestor: function(haystack, needle) {
-            haystack = Y.Dom.get(haystack);
-            needle = Y.Dom.get(needle);
-            
-            var ret = false;
-
-            if ( (haystack && needle) && (haystack.nodeType && needle.nodeType) ) {
-                if (haystack.contains && haystack !== needle) { // contains returns true when equal
-                    ret = haystack.contains(needle);
-                }
-                else if (haystack.compareDocumentPosition) { // gecko
-                    ret = !!(haystack.compareDocumentPosition(needle) & 16);
-                }
-            } else {
-                YAHOO.log('isAncestor failed; invalid input: ' + haystack + ',' + needle, 'error', 'Dom');
-            }
-            YAHOO.log('isAncestor(' + haystack + ',' + needle + ' returning ' + ret, 'info', 'Dom');
-            return ret;
-        },
-        
-        /**
-         * Determines whether an HTMLElement is present in the current document.
-         * @method inDocument         
-         * @param {String | HTMLElement} el The element to search for
-         * @return {Boolean} Whether or not the element is present in the current document
-         */
-        inDocument: function(el) {
-            return this.isAncestor(document.documentElement, el);
-        },
-        
-        /**
-         * Returns a array of HTMLElements that pass the test applied by supplied boolean method.
-         * For optimized performance, include a tag and/or root node when possible.
-         * Note: This method operates against a live collection, so modifying the 
-         * collection in the callback (removing/appending nodes, etc.) will have
-         * side effects.  Instead you should iterate the returned nodes array,
-         * as you would with the native "getElementsByTagName" method. 
-         * @method getElementsBy
-         * @param {Function} method - A boolean method for testing elements which receives the element as its only argument.
-         * @param {String} tag (optional) The tag name of the elements being collected
-         * @param {String | HTMLElement} root (optional) The HTMLElement or an ID to use as the starting point 
-         * @param {Function} apply (optional) A function to apply to each element when found 
-         * @return {Array} Array of HTMLElements
-         */
-        getElementsBy: function(method, tag, root, apply) {
-            tag = tag || '*';
-            root = (root) ? Y.Dom.get(root) : null || document; 
-
-            if (!root) {
-                return [];
-            }
-
-            var nodes = [],
-                elements = root.getElementsByTagName(tag);
-            
-            for (var i = 0, len = elements.length; i < len; ++i) {
-                if ( method(elements[i]) ) {
-                    nodes[nodes.length] = elements[i];
-                    if (apply) {
-                        apply(elements[i]);
-                    }
-                }
-            }
-
-            YAHOO.log('getElementsBy returning ' + nodes, 'info', 'Dom');
-            
-            return nodes;
-        },
-        
-        /**
-         * Runs the supplied method against each item in the Collection/Array.
-         * The method is called with the element(s) as the first arg, and the optional param as the second ( method(el, o) ).
-         * @method batch
-         * @param {String | HTMLElement | Array} el (optional) An element or array of elements to apply the method to
-         * @param {Function} method The method to apply to the element(s)
-         * @param {Any} o (optional) An optional arg that is passed to the supplied method
-         * @param {Boolean} override (optional) Whether or not to override the scope of "method" with "o"
-         * @return {Any | Array} The return value(s) from the supplied method
-         */
-        batch: function(el, method, o, override) {
-            el = (el && (el.tagName || el.item)) ? el : Y.Dom.get(el); // skip get() when possible
-
-            if (!el || !method) {
-                YAHOO.log('batch failed: invalid arguments', 'error', 'Dom');
-                return false;
-            } 
-            var scope = (override) ? o : window;
-            
-            if (el.tagName || el.length === undefined) { // element or not array-like 
-                return method.call(scope, el, o);
-            } 
-
-            var collection = [];
-            
-            for (var i = 0, len = el.length; i < len; ++i) {
-                collection[collection.length] = method.call(scope, el[i], o);
-            }
-            
-            return collection;
-        },
-        
-        /**
-         * Returns the height of the document.
-         * @method getDocumentHeight
-         * @return {Int} The height of the actual document (which includes the body and its margin).
-         */
-        getDocumentHeight: function() {
-            var scrollHeight = (document.compatMode != 'CSS1Compat') ? document.body.scrollHeight : document.documentElement.scrollHeight;
-
-            var h = Math.max(scrollHeight, Y.Dom.getViewportHeight());
-            YAHOO.log('getDocumentHeight returning ' + h, 'info', 'Dom');
-            return h;
-        },
-        
-        /**
-         * Returns the width of the document.
-         * @method getDocumentWidth
-         * @return {Int} The width of the actual document (which includes the body and its margin).
-         */
-        getDocumentWidth: function() {
-            var scrollWidth = (document.compatMode != 'CSS1Compat') ? document.body.scrollWidth : document.documentElement.scrollWidth;
-            var w = Math.max(scrollWidth, Y.Dom.getViewportWidth());
-            YAHOO.log('getDocumentWidth returning ' + w, 'info', 'Dom');
-            return w;
-        },
-
-        /**
-         * Returns the current height of the viewport.
-         * @method getViewportHeight
-         * @return {Int} The height of the viewable area of the page (excludes scrollbars).
-         */
-        getViewportHeight: function() {
-            var height = self.innerHeight; // Safari, Opera
-            var mode = document.compatMode;
-        
-            if ( (mode || isIE) && !isOpera ) { // IE, Gecko
-                height = (mode == 'CSS1Compat') ?
-                        document.documentElement.clientHeight : // Standards
-                        document.body.clientHeight; // Quirks
-            }
-        
-            YAHOO.log('getViewportHeight returning ' + height, 'info', 'Dom');
-            return height;
-        },
-        
-        /**
-         * Returns the current width of the viewport.
-         * @method getViewportWidth
-         * @return {Int} The width of the viewable area of the page (excludes scrollbars).
-         */
-        
-        getViewportWidth: function() {
-            var width = self.innerWidth;  // Safari
-            var mode = document.compatMode;
-            
-            if (mode || isIE) { // IE, Gecko, Opera
-                width = (mode == 'CSS1Compat') ?
-                        document.documentElement.clientWidth : // Standards
-                        document.body.clientWidth; // Quirks
-            }
-            YAHOO.log('getViewportWidth returning ' + width, 'info', 'Dom');
-            return width;
-        },
-
-       /**
-         * Returns the nearest ancestor that passes the test applied by supplied boolean method.
-         * For performance reasons, IDs are not accepted and argument validation omitted.
-         * @method getAncestorBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method - A boolean method for testing elements which receives the element as its only argument.
-         * @return {Object} HTMLElement or null if not found
-         */
-        getAncestorBy: function(node, method) {
-            while ( (node = node.parentNode) ) { // NOTE: assignment
-                if ( testElement(node, method) ) {
-                    YAHOO.log('getAncestorBy returning ' + node, 'info', 'Dom');
-                    return node;
-                }
-            } 
-
-            YAHOO.log('getAncestorBy returning null (no ancestor passed test)', 'error', 'Dom');
-            return null;
-        },
-        
-        /**
-         * Returns the nearest ancestor with the given className.
-         * @method getAncestorByClassName
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @param {String} className
-         * @return {Object} HTMLElement
-         */
-        getAncestorByClassName: function(node, className) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                YAHOO.log('getAncestorByClassName failed: invalid node argument', 'error', 'Dom');
-                return null;
-            }
-            var method = function(el) { return Y.Dom.hasClass(el, className); };
-            return Y.Dom.getAncestorBy(node, method);
-        },
-
-        /**
-         * Returns the nearest ancestor with the given tagName.
-         * @method getAncestorByTagName
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @param {String} tagName
-         * @return {Object} HTMLElement
-         */
-        getAncestorByTagName: function(node, tagName) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                YAHOO.log('getAncestorByTagName failed: invalid node argument', 'error', 'Dom');
-                return null;
-            }
-            var method = function(el) {
-                 return el.tagName && el.tagName.toUpperCase() == tagName.toUpperCase();
-            };
-
-            return Y.Dom.getAncestorBy(node, method);
-        },
-
-        /**
-         * Returns the previous sibling that is an HTMLElement. 
-         * For performance reasons, IDs are not accepted and argument validation omitted.
-         * Returns the nearest HTMLElement sibling if no method provided.
-         * @method getPreviousSiblingBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method A boolean function used to test siblings
-         * that receives the sibling node being tested as its only argument
-         * @return {Object} HTMLElement or null if not found
-         */
-        getPreviousSiblingBy: function(node, method) {
-            while (node) {
-                node = node.previousSibling;
-                if ( testElement(node, method) ) {
-                    return node;
-                }
-            }
-            return null;
-        }, 
-
-        /**
-         * Returns the previous sibling that is an HTMLElement 
-         * @method getPreviousSibling
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Object} HTMLElement or null if not found
-         */
-        getPreviousSibling: function(node) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                YAHOO.log('getPreviousSibling failed: invalid node argument', 'error', 'Dom');
-                return null;
-            }
-
-            return Y.Dom.getPreviousSiblingBy(node);
-        }, 
-
-        /**
-         * Returns the next HTMLElement sibling that passes the boolean method. 
-         * For performance reasons, IDs are not accepted and argument validation omitted.
-         * Returns the nearest HTMLElement sibling if no method provided.
-         * @method getNextSiblingBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method A boolean function used to test siblings
-         * that receives the sibling node being tested as its only argument
-         * @return {Object} HTMLElement or null if not found
-         */
-        getNextSiblingBy: function(node, method) {
-            while (node) {
-                node = node.nextSibling;
-                if ( testElement(node, method) ) {
-                    return node;
-                }
-            }
-            return null;
-        }, 
-
-        /**
-         * Returns the next sibling that is an HTMLElement 
-         * @method getNextSibling
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Object} HTMLElement or null if not found
-         */
-        getNextSibling: function(node) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                YAHOO.log('getNextSibling failed: invalid node argument', 'error', 'Dom');
-                return null;
-            }
-
-            return Y.Dom.getNextSiblingBy(node);
-        }, 
-
-        /**
-         * Returns the first HTMLElement child that passes the test method. 
-         * @method getFirstChildBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method A boolean function used to test children
-         * that receives the node being tested as its only argument
-         * @return {Object} HTMLElement or null if not found
-         */
-        getFirstChildBy: function(node, method) {
-            var child = ( testElement(node.firstChild, method) ) ? node.firstChild : null;
-            return child || Y.Dom.getNextSiblingBy(node.firstChild, method);
-        }, 
-
-        /**
-         * Returns the first HTMLElement child. 
-         * @method getFirstChild
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Object} HTMLElement or null if not found
-         */
-        getFirstChild: function(node, method) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                YAHOO.log('getFirstChild failed: invalid node argument', 'error', 'Dom');
-                return null;
-            }
-            return Y.Dom.getFirstChildBy(node);
-        }, 
-
-        /**
-         * Returns the last HTMLElement child that passes the test method. 
-         * @method getLastChildBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method A boolean function used to test children
-         * that receives the node being tested as its only argument
-         * @return {Object} HTMLElement or null if not found
-         */
-        getLastChildBy: function(node, method) {
-            if (!node) {
-                YAHOO.log('getLastChild failed: invalid node argument', 'error', 'Dom');
-                return null;
-            }
-            var child = ( testElement(node.lastChild, method) ) ? node.lastChild : null;
-            return child || Y.Dom.getPreviousSiblingBy(node.lastChild, method);
-        }, 
-
-        /**
-         * Returns the last HTMLElement child. 
-         * @method getLastChild
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Object} HTMLElement or null if not found
-         */
-        getLastChild: function(node) {
-            node = Y.Dom.get(node);
-            return Y.Dom.getLastChildBy(node);
-        }, 
-
-        /**
-         * Returns an array of HTMLElement childNodes that pass the test method. 
-         * @method getChildrenBy
-         * @param {HTMLElement} node The HTMLElement to start from
-         * @param {Function} method A boolean function used to test children
-         * that receives the node being tested as its only argument
-         * @return {Array} A static array of HTMLElements
-         */
-        getChildrenBy: function(node, method) {
-            var child = Y.Dom.getFirstChildBy(node, method);
-            var children = child ? [child] : [];
-
-            Y.Dom.getNextSiblingBy(child, function(node) {
-                if ( !method || method(node) ) {
-                    children[children.length] = node;
-                }
-                return false; // fail test to collect all children
-            });
-
-            return children;
-        },
- 
-        /**
-         * Returns an array of HTMLElement childNodes. 
-         * @method getChildren
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Array} A static array of HTMLElements
-         */
-        getChildren: function(node) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                YAHOO.log('getChildren failed: invalid node argument', 'error', 'Dom');
-            }
-
-            return Y.Dom.getChildrenBy(node);
-        },
- 
-        /**
-         * Returns the left scroll value of the document 
-         * @method getDocumentScrollLeft
-         * @param {HTMLDocument} document (optional) The document to get the scroll value of
-         * @return {Int}  The amount that the document is scrolled to the left
-         */
-        getDocumentScrollLeft: function(doc) {
-            doc = doc || document;
-            return Math.max(doc.documentElement.scrollLeft, doc.body.scrollLeft);
-        }, 
-
-        /**
-         * Returns the top scroll value of the document 
-         * @method getDocumentScrollTop
-         * @param {HTMLDocument} document (optional) The document to get the scroll value of
-         * @return {Int}  The amount that the document is scrolled to the top
-         */
-        getDocumentScrollTop: function(doc) {
-            doc = doc || document;
-            return Math.max(doc.documentElement.scrollTop, doc.body.scrollTop);
-        },
-
-        /**
-         * Inserts the new node as the previous sibling of the reference node 
-         * @method insertBefore
-         * @param {String | HTMLElement} newNode The node to be inserted
-         * @param {String | HTMLElement} referenceNode The node to insert the new node before 
-         * @return {HTMLElement} The node that was inserted (or null if insert fails) 
-         */
-        insertBefore: function(newNode, referenceNode) {
-            newNode = Y.Dom.get(newNode); 
-            referenceNode = Y.Dom.get(referenceNode); 
-            
-            if (!newNode || !referenceNode || !referenceNode.parentNode) {
-                YAHOO.log('insertAfter failed: missing or invalid arg(s)', 'error', 'Dom');
-                return null;
-            }       
-
-            return referenceNode.parentNode.insertBefore(newNode, referenceNode); 
-        },
-
-        /**
-         * Inserts the new node as the next sibling of the reference node 
-         * @method insertAfter
-         * @param {String | HTMLElement} newNode The node to be inserted
-         * @param {String | HTMLElement} referenceNode The node to insert the new node after 
-         * @return {HTMLElement} The node that was inserted (or null if insert fails) 
-         */
-        insertAfter: function(newNode, referenceNode) {
-            newNode = Y.Dom.get(newNode); 
-            referenceNode = Y.Dom.get(referenceNode); 
-            
-            if (!newNode || !referenceNode || !referenceNode.parentNode) {
-                YAHOO.log('insertAfter failed: missing or invalid arg(s)', 'error', 'Dom');
-                return null;
-            }       
-
-            if (referenceNode.nextSibling) {
-                return referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling); 
-            } else {
-                return referenceNode.parentNode.appendChild(newNode);
-            }
-        },
-
-        /**
-         * Creates a Region based on the viewport relative to the document. 
-         * @method getClientRegion
-         * @return {Region} A Region object representing the viewport which accounts for document scroll
-         */
-        getClientRegion: function() {
-            var t = Y.Dom.getDocumentScrollTop(),
-                l = Y.Dom.getDocumentScrollLeft(),
-                r = Y.Dom.getViewportWidth() + l,
-                b = Y.Dom.getViewportHeight() + t;
-
-            return new Y.Region(t, r, b, l);
-        }
-    };
-    
-    var getXY = function() {
-        if (document.documentElement.getBoundingClientRect) { // IE
-            return function(el) {
-                var box = el.getBoundingClientRect(),
-                    round = Math.round;
-
-                var rootNode = el.ownerDocument;
-                return [round(box.left + Y.Dom.getDocumentScrollLeft(rootNode)), round(box.top +
-                        Y.Dom.getDocumentScrollTop(rootNode))];
-            };
-        } else {
-            return function(el) { // manually calculate by crawling up offsetParents
-                var pos = [el.offsetLeft, el.offsetTop];
-                var parentNode = el.offsetParent;
-
-                // safari: subtract body offsets if el is abs (or any offsetParent), unless body is offsetParent
-                var accountForBody = (isSafari &&
-                        Y.Dom.getStyle(el, 'position') == 'absolute' &&
-                        el.offsetParent == el.ownerDocument.body);
-
-                if (parentNode != el) {
-                    while (parentNode) {
-                        pos[0] += parentNode.offsetLeft;
-                        pos[1] += parentNode.offsetTop;
-                        if (!accountForBody && isSafari && 
-                                Y.Dom.getStyle(parentNode,'position') == 'absolute' ) { 
-                            accountForBody = true;
-                        }
-                        parentNode = parentNode.offsetParent;
-                    }
-                }
-
-                if (accountForBody) { //safari doubles in this case
-                    pos[0] -= el.ownerDocument.body.offsetLeft;
-                    pos[1] -= el.ownerDocument.body.offsetTop;
-                } 
-                parentNode = el.parentNode;
-
-                // account for any scrolled ancestors
-                while ( parentNode.tagName && !patterns.ROOT_TAG.test(parentNode.tagName) ) 
-                {
-                    if (parentNode.scrollTop || parentNode.scrollLeft) {
-                        pos[0] -= parentNode.scrollLeft;
-                        pos[1] -= parentNode.scrollTop;
-                    }
-                    
-                    parentNode = parentNode.parentNode; 
-                }
-
-                return pos;
-            };
-        }
-    }() // NOTE: Executing for loadtime branching
-})();
-/**
- * A region is a representation of an object on a grid.  It is defined
- * by the top, right, bottom, left extents, so is rectangular by default.  If 
- * other shapes are required, this class could be extended to support it.
- * @namespace YAHOO.util
- * @class Region
- * @param {Int} t the top extent
- * @param {Int} r the right extent
- * @param {Int} b the bottom extent
- * @param {Int} l the left extent
- * @constructor
- */
-YAHOO.util.Region = function(t, r, b, l) {
-
-    /**
-     * The region's top extent
-     * @property top
-     * @type Int
-     */
-    this.top = t;
-    
-    /**
-     * The region's top extent as index, for symmetry with set/getXY
-     * @property 1
-     * @type Int
-     */
-    this[1] = t;
-
-    /**
-     * The region's right extent
-     * @property right
-     * @type int
-     */
-    this.right = r;
-
-    /**
-     * The region's bottom extent
-     * @property bottom
-     * @type Int
-     */
-    this.bottom = b;
-
-    /**
-     * The region's left extent
-     * @property left
-     * @type Int
-     */
-    this.left = l;
-    
-    /**
-     * The region's left extent as index, for symmetry with set/getXY
-     * @property 0
-     * @type Int
-     */
-    this[0] = l;
-};
-
-/**
- * Returns true if this region contains the region passed in
- * @method contains
- * @param  {Region}  region The region to evaluate
- * @return {Boolean}        True if the region is contained with this region, 
- *                          else false
- */
-YAHOO.util.Region.prototype.contains = function(region) {
-    return ( region.left   >= this.left   && 
-             region.right  <= this.right  && 
-             region.top    >= this.top    && 
-             region.bottom <= this.bottom    );
-
-    // this.logger.debug("does " + this + " contain " + region + " ... " + ret);
-};
-
-/**
- * Returns the area of the region
- * @method getArea
- * @return {Int} the region's area
- */
-YAHOO.util.Region.prototype.getArea = function() {
-    return ( (this.bottom - this.top) * (this.right - this.left) );
-};
-
-/**
- * Returns the region where the passed in region overlaps with this one
- * @method intersect
- * @param  {Region} region The region that intersects
- * @return {Region}        The overlap region, or null if there is no overlap
- */
-YAHOO.util.Region.prototype.intersect = function(region) {
-    var t = Math.max( this.top,    region.top    );
-    var r = Math.min( this.right,  region.right  );
-    var b = Math.min( this.bottom, region.bottom );
-    var l = Math.max( this.left,   region.left   );
-    
-    if (b >= t && r >= l) {
-        return new YAHOO.util.Region(t, r, b, l);
-    } else {
-        return null;
-    }
-};
-
-/**
- * Returns the region representing the smallest region that can contain both
- * the passed in region and this region.
- * @method union
- * @param  {Region} region The region that to create the union with
- * @return {Region}        The union region
- */
-YAHOO.util.Region.prototype.union = function(region) {
-    var t = Math.min( this.top,    region.top    );
-    var r = Math.max( this.right,  region.right  );
-    var b = Math.max( this.bottom, region.bottom );
-    var l = Math.min( this.left,   region.left   );
-
-    return new YAHOO.util.Region(t, r, b, l);
-};
-
-/**
- * toString
- * @method toString
- * @return string the region properties
- */
-YAHOO.util.Region.prototype.toString = function() {
-    return ( "Region {"    +
-             "top: "       + this.top    + 
-             ", right: "   + this.right  + 
-             ", bottom: "  + this.bottom + 
-             ", left: "    + this.left   + 
-             "}" );
-};
-
-/**
- * Returns a region that is occupied by the DOM element
- * @method getRegion
- * @param  {HTMLElement} el The element
- * @return {Region}         The region that the element occupies
- * @static
- */
-YAHOO.util.Region.getRegion = function(el) {
-    var p = YAHOO.util.Dom.getXY(el);
-
-    var t = p[1];
-    var r = p[0] + el.offsetWidth;
-    var b = p[1] + el.offsetHeight;
-    var l = p[0];
-
-    return new YAHOO.util.Region(t, r, b, l);
-};
-
-/////////////////////////////////////////////////////////////////////////////
-
-
-/**
- * A point is a region that is special in that it represents a single point on 
- * the grid.
- * @namespace YAHOO.util
- * @class Point
- * @param {Int} x The X position of the point
- * @param {Int} y The Y position of the point
- * @constructor
- * @extends YAHOO.util.Region
- */
-YAHOO.util.Point = function(x, y) {
-   if (YAHOO.lang.isArray(x)) { // accept input from Dom.getXY, Event.getXY, etc.
-      y = x[1]; // dont blow away x yet
-      x = x[0];
-   }
-   
-    /**
-     * The X position of the point, which is also the right, left and index zero (for Dom.getXY symmetry)
-     * @property x
-     * @type Int
-     */
-
-    this.x = this.right = this.left = this[0] = x;
-     
-    /**
-     * The Y position of the point, which is also the top, bottom and index one (for Dom.getXY symmetry)
-     * @property y
-     * @type Int
-     */
-    this.y = this.top = this.bottom = this[1] = y;
-};
-
-YAHOO.util.Point.prototype = new YAHOO.util.Region();
-
-YAHOO.register("dom", YAHOO.util.Dom, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/dom/dom-min.js b/eclipse.org-common/yui/2.6.0/build/dom/dom-min.js
deleted file mode 100644
index febeea5..0000000
--- a/eclipse.org-common/yui/2.6.0/build/dom/dom-min.js
+++ /dev/null
@@ -1,8 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){var B=YAHOO.util,F=YAHOO.lang,L,J,K={},G={},N=window.document;YAHOO.env._id_counter=YAHOO.env._id_counter||0;var C=YAHOO.env.ua.opera,M=YAHOO.env.ua.webkit,A=YAHOO.env.ua.gecko,H=YAHOO.env.ua.ie;var E={HYPHEN:/(-[a-z])/i,ROOT_TAG:/^body|html$/i,OP_SCROLL:/^(?:inline|table-row)$/i};var O=function(Q){if(!E.HYPHEN.test(Q)){return Q;}if(K[Q]){return K[Q];}var R=Q;while(E.HYPHEN.exec(R)){R=R.replace(RegExp.$1,RegExp.$1.substr(1).toUpperCase());}K[Q]=R;return R;};var P=function(R){var Q=G[R];if(!Q){Q=new RegExp("(?:^|\\s+)"+R+"(?:\\s+|$)");G[R]=Q;}return Q;};if(N.defaultView&&N.defaultView.getComputedStyle){L=function(Q,T){var S=null;if(T=="float"){T="cssFloat";}var R=Q.ownerDocument.defaultView.getComputedStyle(Q,"");if(R){S=R[O(T)];}return Q.style[T]||S;};}else{if(N.documentElement.currentStyle&&H){L=function(Q,S){switch(O(S)){case"opacity":var U=100;try{U=Q.filters["DXImageTransform.Microsoft.Alpha"].opacity;}catch(T){try{U=Q.filters("alpha").opacity;}catch(T){}}return U/100;case"float":S="styleFloat";default:var R=Q.currentStyle?Q.currentStyle[S]:null;return(Q.style[S]||R);}};}else{L=function(Q,R){return Q.style[R];};}}if(H){J=function(Q,R,S){switch(R){case"opacity":if(F.isString(Q.style.filter)){Q.style.filter="alpha(opacity="+S*100+")";if(!Q.currentStyle||!Q.currentStyle.hasLayout){Q.style.zoom=1;}}break;case"float":R="styleFloat";default:Q.style[R]=S;}};}else{J=function(Q,R,S){if(R=="float"){R="cssFloat";}Q.style[R]=S;};}var D=function(Q,R){return Q&&Q.nodeType==1&&(!R||R(Q));};YAHOO.util.Dom={get:function(S){if(S){if(S.nodeType||S.item){return S;}if(typeof S==="string"){return N.getElementById(S);}if("length" in S){var T=[];for(var R=0,Q=S.length;R<Q;++R){T[T.length]=B.Dom.get(S[R]);}return T;}return S;}return null;},getStyle:function(Q,S){S=O(S);var R=function(T){return L(T,S);};return B.Dom.batch(Q,R,B.Dom,true);},setStyle:function(Q,S,T){S=O(S);var R=function(U){J(U,S,T);};B.Dom.batch(Q,R,B.Dom,true);},getXY:function(Q){var R=function(S){if((S.parentNode===null||S.offsetParent===null||this.getStyle(S,"display")=="none")&&S!=S.ownerDocument.body){return false;}return I(S);};return B.Dom.batch(Q,R,B.Dom,true);},getX:function(Q){var R=function(S){return B.Dom.getXY(S)[0];};return B.Dom.batch(Q,R,B.Dom,true);},getY:function(Q){var R=function(S){return B.Dom.getXY(S)[1];};return B.Dom.batch(Q,R,B.Dom,true);},setXY:function(Q,T,S){var R=function(W){var V=this.getStyle(W,"position");if(V=="static"){this.setStyle(W,"position","relative");V="relative";}var Y=this.getXY(W);if(Y===false){return false;}var X=[parseInt(this.getStyle(W,"left"),10),parseInt(this.getStyle(W,"top"),10)];if(isNaN(X[0])){X[0]=(V=="relative")?0:W.offsetLeft;}if(isNaN(X[1])){X[1]=(V=="relative")?0:W.offsetTop;}if(T[0]!==null){W.style.left=T[0]-Y[0]+X[0]+"px";}if(T[1]!==null){W.style.top=T[1]-Y[1]+X[1]+"px";}if(!S){var U=this.getXY(W);if((T[0]!==null&&U[0]!=T[0])||(T[1]!==null&&U[1]!=T[1])){this.setXY(W,T,true);}}};B.Dom.batch(Q,R,B.Dom,true);},setX:function(R,Q){B.Dom.setXY(R,[Q,null]);},setY:function(Q,R){B.Dom.setXY(Q,[null,R]);},getRegion:function(Q){var R=function(S){if((S.parentNode===null||S.offsetParent===null||this.getStyle(S,"display")=="none")&&S!=S.ownerDocument.body){return false;}var T=B.Region.getRegion(S);return T;};return B.Dom.batch(Q,R,B.Dom,true);},getClientWidth:function(){return B.Dom.getViewportWidth();},getClientHeight:function(){return B.Dom.getViewportHeight();},getElementsByClassName:function(U,Y,V,W){U=F.trim(U);Y=Y||"*";V=(V)?B.Dom.get(V):null||N;if(!V){return[];}var R=[],Q=V.getElementsByTagName(Y),X=P(U);for(var S=0,T=Q.length;S<T;++S){if(X.test(Q[S].className)){R[R.length]=Q[S];if(W){W.call(Q[S],Q[S]);}}}return R;},hasClass:function(S,R){var Q=P(R);var T=function(U){return Q.test(U.className);};return B.Dom.batch(S,T,B.Dom,true);},addClass:function(R,Q){var S=function(T){if(this.hasClass(T,Q)){return false;}T.className=F.trim([T.className,Q].join(" "));return true;};return B.Dom.batch(R,S,B.Dom,true);},removeClass:function(S,R){var Q=P(R);var T=function(W){var V=false,X=W.className;if(R&&X&&this.hasClass(W,R)){W.className=X.replace(Q," ");if(this.hasClass(W,R)){this.removeClass(W,R);}W.className=F.trim(W.className);if(W.className===""){var U=(W.hasAttribute)?"class":"className";W.removeAttribute(U);}V=true;}return V;};return B.Dom.batch(S,T,B.Dom,true);},replaceClass:function(T,R,Q){if(!Q||R===Q){return false;}var S=P(R);var U=function(V){if(!this.hasClass(V,R)){this.addClass(V,Q);return true;}V.className=V.className.replace(S," "+Q+" ");if(this.hasClass(V,R)){this.removeClass(V,R);}V.className=F.trim(V.className);return true;};return B.Dom.batch(T,U,B.Dom,true);},generateId:function(Q,S){S=S||"yui-gen";var R=function(T){if(T&&T.id){return T.id;}var U=S+YAHOO.env._id_counter++;if(T){T.id=U;}return U;};return B.Dom.batch(Q,R,B.Dom,true)||R.apply(B.Dom,arguments);},isAncestor:function(R,S){R=B.Dom.get(R);S=B.Dom.get(S);var Q=false;if((R&&S)&&(R.nodeType&&S.nodeType)){if(R.contains&&R!==S){Q=R.contains(S);}else{if(R.compareDocumentPosition){Q=!!(R.compareDocumentPosition(S)&16);}}}else{}return Q;},inDocument:function(Q){return this.isAncestor(N.documentElement,Q);},getElementsBy:function(X,R,S,U){R=R||"*";S=(S)?B.Dom.get(S):null||N;if(!S){return[];}var T=[],W=S.getElementsByTagName(R);for(var V=0,Q=W.length;V<Q;++V){if(X(W[V])){T[T.length]=W[V];if(U){U(W[V]);}}}return T;},batch:function(U,X,W,S){U=(U&&(U.tagName||U.item))?U:B.Dom.get(U);if(!U||!X){return false;}var T=(S)?W:window;if(U.tagName||U.length===undefined){return X.call(T,U,W);}var V=[];for(var R=0,Q=U.length;R<Q;++R){V[V.length]=X.call(T,U[R],W);}return V;},getDocumentHeight:function(){var R=(N.compatMode!="CSS1Compat")?N.body.scrollHeight:N.documentElement.scrollHeight;var Q=Math.max(R,B.Dom.getViewportHeight());return Q;},getDocumentWidth:function(){var R=(N.compatMode!="CSS1Compat")?N.body.scrollWidth:N.documentElement.scrollWidth;var Q=Math.max(R,B.Dom.getViewportWidth());return Q;},getViewportHeight:function(){var Q=self.innerHeight;
-var R=N.compatMode;if((R||H)&&!C){Q=(R=="CSS1Compat")?N.documentElement.clientHeight:N.body.clientHeight;}return Q;},getViewportWidth:function(){var Q=self.innerWidth;var R=N.compatMode;if(R||H){Q=(R=="CSS1Compat")?N.documentElement.clientWidth:N.body.clientWidth;}return Q;},getAncestorBy:function(Q,R){while((Q=Q.parentNode)){if(D(Q,R)){return Q;}}return null;},getAncestorByClassName:function(R,Q){R=B.Dom.get(R);if(!R){return null;}var S=function(T){return B.Dom.hasClass(T,Q);};return B.Dom.getAncestorBy(R,S);},getAncestorByTagName:function(R,Q){R=B.Dom.get(R);if(!R){return null;}var S=function(T){return T.tagName&&T.tagName.toUpperCase()==Q.toUpperCase();};return B.Dom.getAncestorBy(R,S);},getPreviousSiblingBy:function(Q,R){while(Q){Q=Q.previousSibling;if(D(Q,R)){return Q;}}return null;},getPreviousSibling:function(Q){Q=B.Dom.get(Q);if(!Q){return null;}return B.Dom.getPreviousSiblingBy(Q);},getNextSiblingBy:function(Q,R){while(Q){Q=Q.nextSibling;if(D(Q,R)){return Q;}}return null;},getNextSibling:function(Q){Q=B.Dom.get(Q);if(!Q){return null;}return B.Dom.getNextSiblingBy(Q);},getFirstChildBy:function(Q,S){var R=(D(Q.firstChild,S))?Q.firstChild:null;return R||B.Dom.getNextSiblingBy(Q.firstChild,S);},getFirstChild:function(Q,R){Q=B.Dom.get(Q);if(!Q){return null;}return B.Dom.getFirstChildBy(Q);},getLastChildBy:function(Q,S){if(!Q){return null;}var R=(D(Q.lastChild,S))?Q.lastChild:null;return R||B.Dom.getPreviousSiblingBy(Q.lastChild,S);},getLastChild:function(Q){Q=B.Dom.get(Q);return B.Dom.getLastChildBy(Q);},getChildrenBy:function(R,T){var S=B.Dom.getFirstChildBy(R,T);var Q=S?[S]:[];B.Dom.getNextSiblingBy(S,function(U){if(!T||T(U)){Q[Q.length]=U;}return false;});return Q;},getChildren:function(Q){Q=B.Dom.get(Q);if(!Q){}return B.Dom.getChildrenBy(Q);},getDocumentScrollLeft:function(Q){Q=Q||N;return Math.max(Q.documentElement.scrollLeft,Q.body.scrollLeft);},getDocumentScrollTop:function(Q){Q=Q||N;return Math.max(Q.documentElement.scrollTop,Q.body.scrollTop);},insertBefore:function(R,Q){R=B.Dom.get(R);Q=B.Dom.get(Q);if(!R||!Q||!Q.parentNode){return null;}return Q.parentNode.insertBefore(R,Q);},insertAfter:function(R,Q){R=B.Dom.get(R);Q=B.Dom.get(Q);if(!R||!Q||!Q.parentNode){return null;}if(Q.nextSibling){return Q.parentNode.insertBefore(R,Q.nextSibling);}else{return Q.parentNode.appendChild(R);}},getClientRegion:function(){var S=B.Dom.getDocumentScrollTop(),R=B.Dom.getDocumentScrollLeft(),T=B.Dom.getViewportWidth()+R,Q=B.Dom.getViewportHeight()+S;return new B.Region(S,T,Q,R);}};var I=function(){if(N.documentElement.getBoundingClientRect){return function(S){var T=S.getBoundingClientRect(),R=Math.round;var Q=S.ownerDocument;return[R(T.left+B.Dom.getDocumentScrollLeft(Q)),R(T.top+B.Dom.getDocumentScrollTop(Q))];};}else{return function(S){var T=[S.offsetLeft,S.offsetTop];var R=S.offsetParent;var Q=(M&&B.Dom.getStyle(S,"position")=="absolute"&&S.offsetParent==S.ownerDocument.body);if(R!=S){while(R){T[0]+=R.offsetLeft;T[1]+=R.offsetTop;if(!Q&&M&&B.Dom.getStyle(R,"position")=="absolute"){Q=true;}R=R.offsetParent;}}if(Q){T[0]-=S.ownerDocument.body.offsetLeft;T[1]-=S.ownerDocument.body.offsetTop;}R=S.parentNode;while(R.tagName&&!E.ROOT_TAG.test(R.tagName)){if(R.scrollTop||R.scrollLeft){T[0]-=R.scrollLeft;T[1]-=R.scrollTop;}R=R.parentNode;}return T;};}}();})();YAHOO.util.Region=function(C,D,A,B){this.top=C;this[1]=C;this.right=D;this.bottom=A;this.left=B;this[0]=B;};YAHOO.util.Region.prototype.contains=function(A){return(A.left>=this.left&&A.right<=this.right&&A.top>=this.top&&A.bottom<=this.bottom);};YAHOO.util.Region.prototype.getArea=function(){return((this.bottom-this.top)*(this.right-this.left));};YAHOO.util.Region.prototype.intersect=function(E){var C=Math.max(this.top,E.top);var D=Math.min(this.right,E.right);var A=Math.min(this.bottom,E.bottom);var B=Math.max(this.left,E.left);if(A>=C&&D>=B){return new YAHOO.util.Region(C,D,A,B);}else{return null;}};YAHOO.util.Region.prototype.union=function(E){var C=Math.min(this.top,E.top);var D=Math.max(this.right,E.right);var A=Math.max(this.bottom,E.bottom);var B=Math.min(this.left,E.left);return new YAHOO.util.Region(C,D,A,B);};YAHOO.util.Region.prototype.toString=function(){return("Region {"+"top: "+this.top+", right: "+this.right+", bottom: "+this.bottom+", left: "+this.left+"}");};YAHOO.util.Region.getRegion=function(D){var F=YAHOO.util.Dom.getXY(D);var C=F[1];var E=F[0]+D.offsetWidth;var A=F[1]+D.offsetHeight;var B=F[0];return new YAHOO.util.Region(C,E,A,B);};YAHOO.util.Point=function(A,B){if(YAHOO.lang.isArray(A)){B=A[1];A=A[0];}this.x=this.right=this.left=this[0]=A;this.y=this.top=this.bottom=this[1]=B;};YAHOO.util.Point.prototype=new YAHOO.util.Region();YAHOO.register("dom",YAHOO.util.Dom,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/dom/dom.js b/eclipse.org-common/yui/2.6.0/build/dom/dom.js
deleted file mode 100644
index f0bdc38..0000000
--- a/eclipse.org-common/yui/2.6.0/build/dom/dom.js
+++ /dev/null
@@ -1,1241 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The dom module provides helper methods for manipulating Dom elements.
- * @module dom
- *
- */
-
-(function() {
-    var Y = YAHOO.util,     // internal shorthand
-        lang = YAHOO.lang,
-        getStyle,           // for load time browser branching
-        setStyle,           // ditto
-        propertyCache = {}, // for faster hyphen converts
-        reClassNameCache = {},          // cache regexes for className
-        document = window.document;     // cache for faster lookups
-    
-    YAHOO.env._id_counter = YAHOO.env._id_counter || 0;     // for use with generateId (global to save state if Dom is overwritten)
-
-    // brower detection
-    var isOpera = YAHOO.env.ua.opera,
-        isSafari = YAHOO.env.ua.webkit, 
-        isGecko = YAHOO.env.ua.gecko,
-        isIE = YAHOO.env.ua.ie; 
-    
-    // regex cache
-    var patterns = {
-        HYPHEN: /(-[a-z])/i, // to normalize get/setStyle
-        ROOT_TAG: /^body|html$/i, // body for quirks mode, html for standards,
-        OP_SCROLL:/^(?:inline|table-row)$/i
-    };
-
-    var toCamel = function(property) {
-        if ( !patterns.HYPHEN.test(property) ) {
-            return property; // no hyphens
-        }
-        
-        if (propertyCache[property]) { // already converted
-            return propertyCache[property];
-        }
-       
-        var converted = property;
- 
-        while( patterns.HYPHEN.exec(converted) ) {
-            converted = converted.replace(RegExp.$1,
-                    RegExp.$1.substr(1).toUpperCase());
-        }
-        
-        propertyCache[property] = converted;
-        return converted;
-        //return property.replace(/-([a-z])/gi, function(m0, m1) {return m1.toUpperCase()}) // cant use function as 2nd arg yet due to safari bug
-    };
-    
-    var getClassRegEx = function(className) {
-        var re = reClassNameCache[className];
-        if (!re) {
-            re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)');
-            reClassNameCache[className] = re;
-        }
-        return re;
-    };
-
-    // branching at load instead of runtime
-    if (document.defaultView && document.defaultView.getComputedStyle) { // W3C DOM method
-        getStyle = function(el, property) {
-            var value = null;
-            
-            if (property == 'float') { // fix reserved word
-                property = 'cssFloat';
-            }
-
-            var computed = el.ownerDocument.defaultView.getComputedStyle(el, '');
-            if (computed) { // test computed before touching for safari
-                value = computed[toCamel(property)];
-            }
-            
-            return el.style[property] || value;
-        };
-    } else if (document.documentElement.currentStyle && isIE) { // IE method
-        getStyle = function(el, property) {                         
-            switch( toCamel(property) ) {
-                case 'opacity' :// IE opacity uses filter
-                    var val = 100;
-                    try { // will error if no DXImageTransform
-                        val = el.filters['DXImageTransform.Microsoft.Alpha'].opacity;
-
-                    } catch(e) {
-                        try { // make sure its in the document
-                            val = el.filters('alpha').opacity;
-                        } catch(e) {
-                        }
-                    }
-                    return val / 100;
-                case 'float': // fix reserved word
-                    property = 'styleFloat'; // fall through
-                default: 
-                    // test currentStyle before touching
-                    var value = el.currentStyle ? el.currentStyle[property] : null;
-                    return ( el.style[property] || value );
-            }
-        };
-    } else { // default to inline only
-        getStyle = function(el, property) { return el.style[property]; };
-    }
-    
-    if (isIE) {
-        setStyle = function(el, property, val) {
-            switch (property) {
-                case 'opacity':
-                    if ( lang.isString(el.style.filter) ) { // in case not appended
-                        el.style.filter = 'alpha(opacity=' + val * 100 + ')';
-                        
-                        if (!el.currentStyle || !el.currentStyle.hasLayout) {
-                            el.style.zoom = 1; // when no layout or cant tell
-                        }
-                    }
-                    break;
-                case 'float':
-                    property = 'styleFloat';
-                default:
-                el.style[property] = val;
-            }
-        };
-    } else {
-        setStyle = function(el, property, val) {
-            if (property == 'float') {
-                property = 'cssFloat';
-            }
-            el.style[property] = val;
-        };
-    }
-
-    var testElement = function(node, method) {
-        return node && node.nodeType == 1 && ( !method || method(node) );
-    };
-
-    /**
-     * Provides helper methods for DOM elements.
-     * @namespace YAHOO.util
-     * @class Dom
-     */
-    YAHOO.util.Dom = {
-        /**
-         * Returns an HTMLElement reference.
-         * @method get
-         * @param {String | HTMLElement |Array} el Accepts a string to use as an ID for getting a DOM reference, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @return {HTMLElement | Array} A DOM reference to an HTML element or an array of HTMLElements.
-         */
-        get: function(el) {
-            if (el) {
-                if (el.nodeType || el.item) { // Node, or NodeList
-                    return el;
-                }
-
-                if (typeof el === 'string') { // id
-                    return document.getElementById(el);
-                }
-                
-                if ('length' in el) { // array-like 
-                    var c = [];
-                    for (var i = 0, len = el.length; i < len; ++i) {
-                        c[c.length] = Y.Dom.get(el[i]);
-                    }
-                    
-                    return c;
-                }
-
-                return el; // some other object, just pass it back
-            }
-
-            return null;
-        },
-    
-        /**
-         * Normalizes currentStyle and ComputedStyle.
-         * @method getStyle
-         * @param {String | HTMLElement |Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @param {String} property The style property whose value is returned.
-         * @return {String | Array} The current value of the style property for the element(s).
-         */
-        getStyle: function(el, property) {
-            property = toCamel(property);
-            
-            var f = function(element) {
-                return getStyle(element, property);
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-    
-        /**
-         * Wrapper for setting style properties of HTMLElements.  Normalizes "opacity" across modern browsers.
-         * @method setStyle
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @param {String} property The style property to be set.
-         * @param {String} val The value to apply to the given property.
-         */
-        setStyle: function(el, property, val) {
-            property = toCamel(property);
-            
-            var f = function(element) {
-                setStyle(element, property, val);
-                
-            };
-            
-            Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Gets the current position of an element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method getXY
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
-         * @return {Array} The XY position of the element(s)
-         */
-        getXY: function(el) {
-            var f = function(el) {
-                // has to be part of document to have pageXY
-                if ( (el.parentNode === null || el.offsetParent === null ||
-                        this.getStyle(el, 'display') == 'none') && el != el.ownerDocument.body) {
-                    return false;
-                }
-                
-                return getXY(el);
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Gets the current X position of an element based on page coordinates.  The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method getX
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
-         * @return {Number | Array} The X position of the element(s)
-         */
-        getX: function(el) {
-            var f = function(el) {
-                return Y.Dom.getXY(el)[0];
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Gets the current Y position of an element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method getY
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
-         * @return {Number | Array} The Y position of the element(s)
-         */
-        getY: function(el) {
-            var f = function(el) {
-                return Y.Dom.getXY(el)[1];
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Set the position of an html element in page coordinates, regardless of how the element is positioned.
-         * The element(s) must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method setXY
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
-         * @param {Array} pos Contains X & Y values for new position (coordinates are page-based)
-         * @param {Boolean} noRetry By default we try and set the position a second time if the first fails
-         */
-        setXY: function(el, pos, noRetry) {
-            var f = function(el) {
-                var style_pos = this.getStyle(el, 'position');
-                if (style_pos == 'static') { // default to relative
-                    this.setStyle(el, 'position', 'relative');
-                    style_pos = 'relative';
-                }
-
-                var pageXY = this.getXY(el);
-                if (pageXY === false) { // has to be part of doc to have pageXY
-                    return false; 
-                }
-                
-                var delta = [ // assuming pixels; if not we will have to retry
-                    parseInt( this.getStyle(el, 'left'), 10 ),
-                    parseInt( this.getStyle(el, 'top'), 10 )
-                ];
-            
-                if ( isNaN(delta[0]) ) {// in case of 'auto'
-                    delta[0] = (style_pos == 'relative') ? 0 : el.offsetLeft;
-                } 
-                if ( isNaN(delta[1]) ) { // in case of 'auto'
-                    delta[1] = (style_pos == 'relative') ? 0 : el.offsetTop;
-                } 
-        
-                if (pos[0] !== null) { el.style.left = pos[0] - pageXY[0] + delta[0] + 'px'; }
-                if (pos[1] !== null) { el.style.top = pos[1] - pageXY[1] + delta[1] + 'px'; }
-              
-                if (!noRetry) {
-                    var newXY = this.getXY(el);
-
-                    // if retry is true, try one more time if we miss 
-                   if ( (pos[0] !== null && newXY[0] != pos[0]) || 
-                        (pos[1] !== null && newXY[1] != pos[1]) ) {
-                       this.setXY(el, pos, true);
-                   }
-                }        
-        
-            };
-            
-            Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Set the X position of an html element in page coordinates, regardless of how the element is positioned.
-         * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method setX
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @param {Int} x The value to use as the X coordinate for the element(s).
-         */
-        setX: function(el, x) {
-            Y.Dom.setXY(el, [x, null]);
-        },
-        
-        /**
-         * Set the Y position of an html element in page coordinates, regardless of how the element is positioned.
-         * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-         * @method setY
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @param {Int} x To use as the Y coordinate for the element(s).
-         */
-        setY: function(el, y) {
-            Y.Dom.setXY(el, [null, y]);
-        },
-        
-        /**
-         * Returns the region position of the given element.
-         * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
-         * @method getRegion
-         * @param {String | HTMLElement | Array} el Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
-         * @return {Region | Array} A Region or array of Region instances containing "top, left, bottom, right" member data.
-         */
-        getRegion: function(el) {
-            var f = function(el) {
-                if ( (el.parentNode === null || el.offsetParent === null ||
-                        this.getStyle(el, 'display') == 'none') && el != el.ownerDocument.body) {
-                    return false;
-                }
-
-                var region = Y.Region.getRegion(el);
-                return region;
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Returns the width of the client (viewport).
-         * @method getClientWidth
-         * @deprecated Now using getViewportWidth.  This interface left intact for back compat.
-         * @return {Int} The width of the viewable area of the page.
-         */
-        getClientWidth: function() {
-            return Y.Dom.getViewportWidth();
-        },
-        
-        /**
-         * Returns the height of the client (viewport).
-         * @method getClientHeight
-         * @deprecated Now using getViewportHeight.  This interface left intact for back compat.
-         * @return {Int} The height of the viewable area of the page.
-         */
-        getClientHeight: function() {
-            return Y.Dom.getViewportHeight();
-        },
-
-        /**
-         * Returns a array of HTMLElements with the given class.
-         * For optimized performance, include a tag and/or root node when possible.
-         * Note: This method operates against a live collection, so modifying the 
-         * collection in the callback (removing/appending nodes, etc.) will have
-         * side effects.  Instead you should iterate the returned nodes array,
-         * as you would with the native "getElementsByTagName" method. 
-         * @method getElementsByClassName
-         * @param {String} className The class name to match against
-         * @param {String} tag (optional) The tag name of the elements being collected
-         * @param {String | HTMLElement} root (optional) The HTMLElement or an ID to use as the starting point 
-         * @param {Function} apply (optional) A function to apply to each element when found 
-         * @return {Array} An array of elements that have the given class name
-         */
-        getElementsByClassName: function(className, tag, root, apply) {
-            className = lang.trim(className);
-            tag = tag || '*';
-            root = (root) ? Y.Dom.get(root) : null || document; 
-            if (!root) {
-                return [];
-            }
-
-            var nodes = [],
-                elements = root.getElementsByTagName(tag),
-                re = getClassRegEx(className);
-
-            for (var i = 0, len = elements.length; i < len; ++i) {
-                if ( re.test(elements[i].className) ) {
-                    nodes[nodes.length] = elements[i];
-                    if (apply) {
-                        apply.call(elements[i], elements[i]);
-                    }
-                }
-            }
-            
-            return nodes;
-        },
-
-        /**
-         * Determines whether an HTMLElement has the given className.
-         * @method hasClass
-         * @param {String | HTMLElement | Array} el The element or collection to test
-         * @param {String} className the class name to search for
-         * @return {Boolean | Array} A boolean value or array of boolean values
-         */
-        hasClass: function(el, className) {
-            var re = getClassRegEx(className);
-
-            var f = function(el) {
-                return re.test(el.className);
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-    
-        /**
-         * Adds a class name to a given element or collection of elements.
-         * @method addClass         
-         * @param {String | HTMLElement | Array} el The element or collection to add the class to
-         * @param {String} className the class name to add to the class attribute
-         * @return {Boolean | Array} A pass/fail boolean or array of booleans
-         */
-        addClass: function(el, className) {
-            var f = function(el) {
-                if (this.hasClass(el, className)) {
-                    return false; // already present
-                }
-                
-                
-                el.className = lang.trim([el.className, className].join(' '));
-                return true;
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-    
-        /**
-         * Removes a class name from a given element or collection of elements.
-         * @method removeClass         
-         * @param {String | HTMLElement | Array} el The element or collection to remove the class from
-         * @param {String} className the class name to remove from the class attribute
-         * @return {Boolean | Array} A pass/fail boolean or array of booleans
-         */
-        removeClass: function(el, className) {
-            var re = getClassRegEx(className);
-            
-            var f = function(el) {
-                var ret = false,
-                    current = el.className;
-
-                if (className && current && this.hasClass(el, className)) {
-                    
-                    el.className = current.replace(re, ' ');
-                    if ( this.hasClass(el, className) ) { // in case of multiple adjacent
-                        this.removeClass(el, className);
-                    }
-
-                    el.className = lang.trim(el.className); // remove any trailing spaces
-                    if (el.className === '') { // remove class attribute if empty
-                        var attr = (el.hasAttribute) ? 'class' : 'className';
-                        el.removeAttribute(attr);
-                    }
-                    ret = true;
-                }                 
-                return ret;
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Replace a class with another class for a given element or collection of elements.
-         * If no oldClassName is present, the newClassName is simply added.
-         * @method replaceClass  
-         * @param {String | HTMLElement | Array} el The element or collection to remove the class from
-         * @param {String} oldClassName the class name to be replaced
-         * @param {String} newClassName the class name that will be replacing the old class name
-         * @return {Boolean | Array} A pass/fail boolean or array of booleans
-         */
-        replaceClass: function(el, oldClassName, newClassName) {
-            if (!newClassName || oldClassName === newClassName) { // avoid infinite loop
-                return false;
-            }
-            
-            var re = getClassRegEx(oldClassName);
-
-            var f = function(el) {
-            
-                if ( !this.hasClass(el, oldClassName) ) {
-                    this.addClass(el, newClassName); // just add it if nothing to replace
-                    return true; // NOTE: return
-                }
-            
-                el.className = el.className.replace(re, ' ' + newClassName + ' ');
-
-                if ( this.hasClass(el, oldClassName) ) { // in case of multiple adjacent
-                    this.removeClass(el, oldClassName);
-                }
-
-                el.className = lang.trim(el.className); // remove any trailing spaces
-                return true;
-            };
-            
-            return Y.Dom.batch(el, f, Y.Dom, true);
-        },
-        
-        /**
-         * Returns an ID and applies it to the element "el", if provided.
-         * @method generateId  
-         * @param {String | HTMLElement | Array} el (optional) An optional element array of elements to add an ID to (no ID is added if one is already present).
-         * @param {String} prefix (optional) an optional prefix to use (defaults to "yui-gen").
-         * @return {String | Array} The generated ID, or array of generated IDs (or original ID if already present on an element)
-         */
-        generateId: function(el, prefix) {
-            prefix = prefix || 'yui-gen';
-
-            var f = function(el) {
-                if (el && el.id) { // do not override existing ID
-                    return el.id;
-                } 
-
-                var id = prefix + YAHOO.env._id_counter++;
-
-                if (el) {
-                    el.id = id;
-                }
-                
-                return id;
-            };
-
-            // batch fails when no element, so just generate and return single ID
-            return Y.Dom.batch(el, f, Y.Dom, true) || f.apply(Y.Dom, arguments);
-        },
-        
-        /**
-         * Determines whether an HTMLElement is an ancestor of another HTML element in the DOM hierarchy.
-         * @method isAncestor
-         * @param {String | HTMLElement} haystack The possible ancestor
-         * @param {String | HTMLElement} needle The possible descendent
-         * @return {Boolean} Whether or not the haystack is an ancestor of needle
-         */
-        isAncestor: function(haystack, needle) {
-            haystack = Y.Dom.get(haystack);
-            needle = Y.Dom.get(needle);
-            
-            var ret = false;
-
-            if ( (haystack && needle) && (haystack.nodeType && needle.nodeType) ) {
-                if (haystack.contains && haystack !== needle) { // contains returns true when equal
-                    ret = haystack.contains(needle);
-                }
-                else if (haystack.compareDocumentPosition) { // gecko
-                    ret = !!(haystack.compareDocumentPosition(needle) & 16);
-                }
-            } else {
-            }
-            return ret;
-        },
-        
-        /**
-         * Determines whether an HTMLElement is present in the current document.
-         * @method inDocument         
-         * @param {String | HTMLElement} el The element to search for
-         * @return {Boolean} Whether or not the element is present in the current document
-         */
-        inDocument: function(el) {
-            return this.isAncestor(document.documentElement, el);
-        },
-        
-        /**
-         * Returns a array of HTMLElements that pass the test applied by supplied boolean method.
-         * For optimized performance, include a tag and/or root node when possible.
-         * Note: This method operates against a live collection, so modifying the 
-         * collection in the callback (removing/appending nodes, etc.) will have
-         * side effects.  Instead you should iterate the returned nodes array,
-         * as you would with the native "getElementsByTagName" method. 
-         * @method getElementsBy
-         * @param {Function} method - A boolean method for testing elements which receives the element as its only argument.
-         * @param {String} tag (optional) The tag name of the elements being collected
-         * @param {String | HTMLElement} root (optional) The HTMLElement or an ID to use as the starting point 
-         * @param {Function} apply (optional) A function to apply to each element when found 
-         * @return {Array} Array of HTMLElements
-         */
-        getElementsBy: function(method, tag, root, apply) {
-            tag = tag || '*';
-            root = (root) ? Y.Dom.get(root) : null || document; 
-
-            if (!root) {
-                return [];
-            }
-
-            var nodes = [],
-                elements = root.getElementsByTagName(tag);
-            
-            for (var i = 0, len = elements.length; i < len; ++i) {
-                if ( method(elements[i]) ) {
-                    nodes[nodes.length] = elements[i];
-                    if (apply) {
-                        apply(elements[i]);
-                    }
-                }
-            }
-
-            
-            return nodes;
-        },
-        
-        /**
-         * Runs the supplied method against each item in the Collection/Array.
-         * The method is called with the element(s) as the first arg, and the optional param as the second ( method(el, o) ).
-         * @method batch
-         * @param {String | HTMLElement | Array} el (optional) An element or array of elements to apply the method to
-         * @param {Function} method The method to apply to the element(s)
-         * @param {Any} o (optional) An optional arg that is passed to the supplied method
-         * @param {Boolean} override (optional) Whether or not to override the scope of "method" with "o"
-         * @return {Any | Array} The return value(s) from the supplied method
-         */
-        batch: function(el, method, o, override) {
-            el = (el && (el.tagName || el.item)) ? el : Y.Dom.get(el); // skip get() when possible
-
-            if (!el || !method) {
-                return false;
-            } 
-            var scope = (override) ? o : window;
-            
-            if (el.tagName || el.length === undefined) { // element or not array-like 
-                return method.call(scope, el, o);
-            } 
-
-            var collection = [];
-            
-            for (var i = 0, len = el.length; i < len; ++i) {
-                collection[collection.length] = method.call(scope, el[i], o);
-            }
-            
-            return collection;
-        },
-        
-        /**
-         * Returns the height of the document.
-         * @method getDocumentHeight
-         * @return {Int} The height of the actual document (which includes the body and its margin).
-         */
-        getDocumentHeight: function() {
-            var scrollHeight = (document.compatMode != 'CSS1Compat') ? document.body.scrollHeight : document.documentElement.scrollHeight;
-
-            var h = Math.max(scrollHeight, Y.Dom.getViewportHeight());
-            return h;
-        },
-        
-        /**
-         * Returns the width of the document.
-         * @method getDocumentWidth
-         * @return {Int} The width of the actual document (which includes the body and its margin).
-         */
-        getDocumentWidth: function() {
-            var scrollWidth = (document.compatMode != 'CSS1Compat') ? document.body.scrollWidth : document.documentElement.scrollWidth;
-            var w = Math.max(scrollWidth, Y.Dom.getViewportWidth());
-            return w;
-        },
-
-        /**
-         * Returns the current height of the viewport.
-         * @method getViewportHeight
-         * @return {Int} The height of the viewable area of the page (excludes scrollbars).
-         */
-        getViewportHeight: function() {
-            var height = self.innerHeight; // Safari, Opera
-            var mode = document.compatMode;
-        
-            if ( (mode || isIE) && !isOpera ) { // IE, Gecko
-                height = (mode == 'CSS1Compat') ?
-                        document.documentElement.clientHeight : // Standards
-                        document.body.clientHeight; // Quirks
-            }
-        
-            return height;
-        },
-        
-        /**
-         * Returns the current width of the viewport.
-         * @method getViewportWidth
-         * @return {Int} The width of the viewable area of the page (excludes scrollbars).
-         */
-        
-        getViewportWidth: function() {
-            var width = self.innerWidth;  // Safari
-            var mode = document.compatMode;
-            
-            if (mode || isIE) { // IE, Gecko, Opera
-                width = (mode == 'CSS1Compat') ?
-                        document.documentElement.clientWidth : // Standards
-                        document.body.clientWidth; // Quirks
-            }
-            return width;
-        },
-
-       /**
-         * Returns the nearest ancestor that passes the test applied by supplied boolean method.
-         * For performance reasons, IDs are not accepted and argument validation omitted.
-         * @method getAncestorBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method - A boolean method for testing elements which receives the element as its only argument.
-         * @return {Object} HTMLElement or null if not found
-         */
-        getAncestorBy: function(node, method) {
-            while ( (node = node.parentNode) ) { // NOTE: assignment
-                if ( testElement(node, method) ) {
-                    return node;
-                }
-            } 
-
-            return null;
-        },
-        
-        /**
-         * Returns the nearest ancestor with the given className.
-         * @method getAncestorByClassName
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @param {String} className
-         * @return {Object} HTMLElement
-         */
-        getAncestorByClassName: function(node, className) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                return null;
-            }
-            var method = function(el) { return Y.Dom.hasClass(el, className); };
-            return Y.Dom.getAncestorBy(node, method);
-        },
-
-        /**
-         * Returns the nearest ancestor with the given tagName.
-         * @method getAncestorByTagName
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @param {String} tagName
-         * @return {Object} HTMLElement
-         */
-        getAncestorByTagName: function(node, tagName) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                return null;
-            }
-            var method = function(el) {
-                 return el.tagName && el.tagName.toUpperCase() == tagName.toUpperCase();
-            };
-
-            return Y.Dom.getAncestorBy(node, method);
-        },
-
-        /**
-         * Returns the previous sibling that is an HTMLElement. 
-         * For performance reasons, IDs are not accepted and argument validation omitted.
-         * Returns the nearest HTMLElement sibling if no method provided.
-         * @method getPreviousSiblingBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method A boolean function used to test siblings
-         * that receives the sibling node being tested as its only argument
-         * @return {Object} HTMLElement or null if not found
-         */
-        getPreviousSiblingBy: function(node, method) {
-            while (node) {
-                node = node.previousSibling;
-                if ( testElement(node, method) ) {
-                    return node;
-                }
-            }
-            return null;
-        }, 
-
-        /**
-         * Returns the previous sibling that is an HTMLElement 
-         * @method getPreviousSibling
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Object} HTMLElement or null if not found
-         */
-        getPreviousSibling: function(node) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                return null;
-            }
-
-            return Y.Dom.getPreviousSiblingBy(node);
-        }, 
-
-        /**
-         * Returns the next HTMLElement sibling that passes the boolean method. 
-         * For performance reasons, IDs are not accepted and argument validation omitted.
-         * Returns the nearest HTMLElement sibling if no method provided.
-         * @method getNextSiblingBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method A boolean function used to test siblings
-         * that receives the sibling node being tested as its only argument
-         * @return {Object} HTMLElement or null if not found
-         */
-        getNextSiblingBy: function(node, method) {
-            while (node) {
-                node = node.nextSibling;
-                if ( testElement(node, method) ) {
-                    return node;
-                }
-            }
-            return null;
-        }, 
-
-        /**
-         * Returns the next sibling that is an HTMLElement 
-         * @method getNextSibling
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Object} HTMLElement or null if not found
-         */
-        getNextSibling: function(node) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                return null;
-            }
-
-            return Y.Dom.getNextSiblingBy(node);
-        }, 
-
-        /**
-         * Returns the first HTMLElement child that passes the test method. 
-         * @method getFirstChildBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method A boolean function used to test children
-         * that receives the node being tested as its only argument
-         * @return {Object} HTMLElement or null if not found
-         */
-        getFirstChildBy: function(node, method) {
-            var child = ( testElement(node.firstChild, method) ) ? node.firstChild : null;
-            return child || Y.Dom.getNextSiblingBy(node.firstChild, method);
-        }, 
-
-        /**
-         * Returns the first HTMLElement child. 
-         * @method getFirstChild
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Object} HTMLElement or null if not found
-         */
-        getFirstChild: function(node, method) {
-            node = Y.Dom.get(node);
-            if (!node) {
-                return null;
-            }
-            return Y.Dom.getFirstChildBy(node);
-        }, 
-
-        /**
-         * Returns the last HTMLElement child that passes the test method. 
-         * @method getLastChildBy
-         * @param {HTMLElement} node The HTMLElement to use as the starting point 
-         * @param {Function} method A boolean function used to test children
-         * that receives the node being tested as its only argument
-         * @return {Object} HTMLElement or null if not found
-         */
-        getLastChildBy: function(node, method) {
-            if (!node) {
-                return null;
-            }
-            var child = ( testElement(node.lastChild, method) ) ? node.lastChild : null;
-            return child || Y.Dom.getPreviousSiblingBy(node.lastChild, method);
-        }, 
-
-        /**
-         * Returns the last HTMLElement child. 
-         * @method getLastChild
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Object} HTMLElement or null if not found
-         */
-        getLastChild: function(node) {
-            node = Y.Dom.get(node);
-            return Y.Dom.getLastChildBy(node);
-        }, 
-
-        /**
-         * Returns an array of HTMLElement childNodes that pass the test method. 
-         * @method getChildrenBy
-         * @param {HTMLElement} node The HTMLElement to start from
-         * @param {Function} method A boolean function used to test children
-         * that receives the node being tested as its only argument
-         * @return {Array} A static array of HTMLElements
-         */
-        getChildrenBy: function(node, method) {
-            var child = Y.Dom.getFirstChildBy(node, method);
-            var children = child ? [child] : [];
-
-            Y.Dom.getNextSiblingBy(child, function(node) {
-                if ( !method || method(node) ) {
-                    children[children.length] = node;
-                }
-                return false; // fail test to collect all children
-            });
-
-            return children;
-        },
- 
-        /**
-         * Returns an array of HTMLElement childNodes. 
-         * @method getChildren
-         * @param {String | HTMLElement} node The HTMLElement or an ID to use as the starting point 
-         * @return {Array} A static array of HTMLElements
-         */
-        getChildren: function(node) {
-            node = Y.Dom.get(node);
-            if (!node) {
-            }
-
-            return Y.Dom.getChildrenBy(node);
-        },
- 
-        /**
-         * Returns the left scroll value of the document 
-         * @method getDocumentScrollLeft
-         * @param {HTMLDocument} document (optional) The document to get the scroll value of
-         * @return {Int}  The amount that the document is scrolled to the left
-         */
-        getDocumentScrollLeft: function(doc) {
-            doc = doc || document;
-            return Math.max(doc.documentElement.scrollLeft, doc.body.scrollLeft);
-        }, 
-
-        /**
-         * Returns the top scroll value of the document 
-         * @method getDocumentScrollTop
-         * @param {HTMLDocument} document (optional) The document to get the scroll value of
-         * @return {Int}  The amount that the document is scrolled to the top
-         */
-        getDocumentScrollTop: function(doc) {
-            doc = doc || document;
-            return Math.max(doc.documentElement.scrollTop, doc.body.scrollTop);
-        },
-
-        /**
-         * Inserts the new node as the previous sibling of the reference node 
-         * @method insertBefore
-         * @param {String | HTMLElement} newNode The node to be inserted
-         * @param {String | HTMLElement} referenceNode The node to insert the new node before 
-         * @return {HTMLElement} The node that was inserted (or null if insert fails) 
-         */
-        insertBefore: function(newNode, referenceNode) {
-            newNode = Y.Dom.get(newNode); 
-            referenceNode = Y.Dom.get(referenceNode); 
-            
-            if (!newNode || !referenceNode || !referenceNode.parentNode) {
-                return null;
-            }       
-
-            return referenceNode.parentNode.insertBefore(newNode, referenceNode); 
-        },
-
-        /**
-         * Inserts the new node as the next sibling of the reference node 
-         * @method insertAfter
-         * @param {String | HTMLElement} newNode The node to be inserted
-         * @param {String | HTMLElement} referenceNode The node to insert the new node after 
-         * @return {HTMLElement} The node that was inserted (or null if insert fails) 
-         */
-        insertAfter: function(newNode, referenceNode) {
-            newNode = Y.Dom.get(newNode); 
-            referenceNode = Y.Dom.get(referenceNode); 
-            
-            if (!newNode || !referenceNode || !referenceNode.parentNode) {
-                return null;
-            }       
-
-            if (referenceNode.nextSibling) {
-                return referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling); 
-            } else {
-                return referenceNode.parentNode.appendChild(newNode);
-            }
-        },
-
-        /**
-         * Creates a Region based on the viewport relative to the document. 
-         * @method getClientRegion
-         * @return {Region} A Region object representing the viewport which accounts for document scroll
-         */
-        getClientRegion: function() {
-            var t = Y.Dom.getDocumentScrollTop(),
-                l = Y.Dom.getDocumentScrollLeft(),
-                r = Y.Dom.getViewportWidth() + l,
-                b = Y.Dom.getViewportHeight() + t;
-
-            return new Y.Region(t, r, b, l);
-        }
-    };
-    
-    var getXY = function() {
-        if (document.documentElement.getBoundingClientRect) { // IE
-            return function(el) {
-                var box = el.getBoundingClientRect(),
-                    round = Math.round;
-
-                var rootNode = el.ownerDocument;
-                return [round(box.left + Y.Dom.getDocumentScrollLeft(rootNode)), round(box.top +
-                        Y.Dom.getDocumentScrollTop(rootNode))];
-            };
-        } else {
-            return function(el) { // manually calculate by crawling up offsetParents
-                var pos = [el.offsetLeft, el.offsetTop];
-                var parentNode = el.offsetParent;
-
-                // safari: subtract body offsets if el is abs (or any offsetParent), unless body is offsetParent
-                var accountForBody = (isSafari &&
-                        Y.Dom.getStyle(el, 'position') == 'absolute' &&
-                        el.offsetParent == el.ownerDocument.body);
-
-                if (parentNode != el) {
-                    while (parentNode) {
-                        pos[0] += parentNode.offsetLeft;
-                        pos[1] += parentNode.offsetTop;
-                        if (!accountForBody && isSafari && 
-                                Y.Dom.getStyle(parentNode,'position') == 'absolute' ) { 
-                            accountForBody = true;
-                        }
-                        parentNode = parentNode.offsetParent;
-                    }
-                }
-
-                if (accountForBody) { //safari doubles in this case
-                    pos[0] -= el.ownerDocument.body.offsetLeft;
-                    pos[1] -= el.ownerDocument.body.offsetTop;
-                } 
-                parentNode = el.parentNode;
-
-                // account for any scrolled ancestors
-                while ( parentNode.tagName && !patterns.ROOT_TAG.test(parentNode.tagName) ) 
-                {
-                    if (parentNode.scrollTop || parentNode.scrollLeft) {
-                        pos[0] -= parentNode.scrollLeft;
-                        pos[1] -= parentNode.scrollTop;
-                    }
-                    
-                    parentNode = parentNode.parentNode; 
-                }
-
-                return pos;
-            };
-        }
-    }() // NOTE: Executing for loadtime branching
-})();
-/**
- * A region is a representation of an object on a grid.  It is defined
- * by the top, right, bottom, left extents, so is rectangular by default.  If 
- * other shapes are required, this class could be extended to support it.
- * @namespace YAHOO.util
- * @class Region
- * @param {Int} t the top extent
- * @param {Int} r the right extent
- * @param {Int} b the bottom extent
- * @param {Int} l the left extent
- * @constructor
- */
-YAHOO.util.Region = function(t, r, b, l) {
-
-    /**
-     * The region's top extent
-     * @property top
-     * @type Int
-     */
-    this.top = t;
-    
-    /**
-     * The region's top extent as index, for symmetry with set/getXY
-     * @property 1
-     * @type Int
-     */
-    this[1] = t;
-
-    /**
-     * The region's right extent
-     * @property right
-     * @type int
-     */
-    this.right = r;
-
-    /**
-     * The region's bottom extent
-     * @property bottom
-     * @type Int
-     */
-    this.bottom = b;
-
-    /**
-     * The region's left extent
-     * @property left
-     * @type Int
-     */
-    this.left = l;
-    
-    /**
-     * The region's left extent as index, for symmetry with set/getXY
-     * @property 0
-     * @type Int
-     */
-    this[0] = l;
-};
-
-/**
- * Returns true if this region contains the region passed in
- * @method contains
- * @param  {Region}  region The region to evaluate
- * @return {Boolean}        True if the region is contained with this region, 
- *                          else false
- */
-YAHOO.util.Region.prototype.contains = function(region) {
-    return ( region.left   >= this.left   && 
-             region.right  <= this.right  && 
-             region.top    >= this.top    && 
-             region.bottom <= this.bottom    );
-
-};
-
-/**
- * Returns the area of the region
- * @method getArea
- * @return {Int} the region's area
- */
-YAHOO.util.Region.prototype.getArea = function() {
-    return ( (this.bottom - this.top) * (this.right - this.left) );
-};
-
-/**
- * Returns the region where the passed in region overlaps with this one
- * @method intersect
- * @param  {Region} region The region that intersects
- * @return {Region}        The overlap region, or null if there is no overlap
- */
-YAHOO.util.Region.prototype.intersect = function(region) {
-    var t = Math.max( this.top,    region.top    );
-    var r = Math.min( this.right,  region.right  );
-    var b = Math.min( this.bottom, region.bottom );
-    var l = Math.max( this.left,   region.left   );
-    
-    if (b >= t && r >= l) {
-        return new YAHOO.util.Region(t, r, b, l);
-    } else {
-        return null;
-    }
-};
-
-/**
- * Returns the region representing the smallest region that can contain both
- * the passed in region and this region.
- * @method union
- * @param  {Region} region The region that to create the union with
- * @return {Region}        The union region
- */
-YAHOO.util.Region.prototype.union = function(region) {
-    var t = Math.min( this.top,    region.top    );
-    var r = Math.max( this.right,  region.right  );
-    var b = Math.max( this.bottom, region.bottom );
-    var l = Math.min( this.left,   region.left   );
-
-    return new YAHOO.util.Region(t, r, b, l);
-};
-
-/**
- * toString
- * @method toString
- * @return string the region properties
- */
-YAHOO.util.Region.prototype.toString = function() {
-    return ( "Region {"    +
-             "top: "       + this.top    + 
-             ", right: "   + this.right  + 
-             ", bottom: "  + this.bottom + 
-             ", left: "    + this.left   + 
-             "}" );
-};
-
-/**
- * Returns a region that is occupied by the DOM element
- * @method getRegion
- * @param  {HTMLElement} el The element
- * @return {Region}         The region that the element occupies
- * @static
- */
-YAHOO.util.Region.getRegion = function(el) {
-    var p = YAHOO.util.Dom.getXY(el);
-
-    var t = p[1];
-    var r = p[0] + el.offsetWidth;
-    var b = p[1] + el.offsetHeight;
-    var l = p[0];
-
-    return new YAHOO.util.Region(t, r, b, l);
-};
-
-/////////////////////////////////////////////////////////////////////////////
-
-
-/**
- * A point is a region that is special in that it represents a single point on 
- * the grid.
- * @namespace YAHOO.util
- * @class Point
- * @param {Int} x The X position of the point
- * @param {Int} y The Y position of the point
- * @constructor
- * @extends YAHOO.util.Region
- */
-YAHOO.util.Point = function(x, y) {
-   if (YAHOO.lang.isArray(x)) { // accept input from Dom.getXY, Event.getXY, etc.
-      y = x[1]; // dont blow away x yet
-      x = x[0];
-   }
-   
-    /**
-     * The X position of the point, which is also the right, left and index zero (for Dom.getXY symmetry)
-     * @property x
-     * @type Int
-     */
-
-    this.x = this.right = this.left = this[0] = x;
-     
-    /**
-     * The Y position of the point, which is also the top, bottom and index one (for Dom.getXY symmetry)
-     * @property y
-     * @type Int
-     */
-    this.y = this.top = this.bottom = this[1] = y;
-};
-
-YAHOO.util.Point.prototype = new YAHOO.util.Region();
-
-YAHOO.register("dom", YAHOO.util.Dom, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/dragdrop/README b/eclipse.org-common/yui/2.6.0/build/dragdrop/README
deleted file mode 100644
index afcc8db..0000000
--- a/eclipse.org-common/yui/2.6.0/build/dragdrop/README
+++ /dev/null
@@ -1,180 +0,0 @@
-Drag and Drop Release Notes
-
-2.6.0
-    * Fixed issue with loop when mouseup occured outside of an iframe in Internet Explorer
-    * Added useShim flag to DragDropMgr to place a shim over the page during a drag operation.
-        It must be set by hand to be backward compatible. This will allow a draggable element
-        to pass over things like an IFRAME without interrupting the drag movement.
-            YAHOO.util.DDM.useShim = true;
-
-2.5.2
-    * Fixed iframe src attribute for DDProxy (SSL Error in IE6)
-    * Fixed typos in documentation
-    * Fixed potential Stack Overflow with mousedown threshold
-
-2.5.1
-    * No change
-
-2.5.0
-    * Added CustomEvents in addition to method overrides
-        (See API Docs for more information)
-    * Added an IFRAME element to the proxy div (only in IE) to keep select
-        elements and other object from bleeding through
-
-2.4.0
-  * Added configuration option called "dragOnly". If dragOnly is set to true,
-    all event in the fireEvents method will not fire. These events are:
-        onInvalidDrop
-        b4DragOut & onDragOut
-        onDragEnter
-        b4DragOver & onDragOver
-        b4DragDrop & onDragDrop
-    This config option should be used to drag elements that have no need for
-        drop interaction. They are elements that just need to move.
-
-2.3.1
-  * No change
-
-2.3.0
-  * YAHOO.util.DragDropMgr.stopDrag is now public, and can be used to cancel
-    a drag in progress.  An optional "silent" flag was added to skip the
-    onMouseUp and endDrag functions when needed (eliminating the need to
-    supply mouseup page coordinates to these functions).
-  * DDProxy: the position of the proxy is not set before the drag is confirmed,
-    preventing auto-scroll from distrupting the user experience.
-  * Modified the default proxy so that IE properly registers the proxy as
-    the event target during the drag.
-  * If a dd instance is created using a dom reference rather than an id, that
-    reference is stored and used throughout making it possible to control
-    instances outside the current window.
-  * The document mousemove listener no longer returns true.
-
-2.2.2
-  * No change
-
-2.2.1
-
-  * Added YAHOO.util.DragDropMgr.interactionInfo, which is
-    a repository of interaction information accumulated during
-    the current event loop result, and accessible from the
-    handlers for the events.
-  * The region for the dragged element is now cached while
-    processing the drag and drop events
-  * List example supports moving an item to an empty list
-  * Fixed missing html tags in the examples
-  * The debug version now works when included before the logger is included.
-
-2.2.0
-
-  * onMouseDown event is executed before element positions are calculated
-  * refreshCache refreshes everything if groups array is not provided
-  * setX/setYConstraint doesn't fail when presented ints cast as strings
-
-0.12.2
-
-  * No change
-
-0.12.1
-
-  * Added a STRICT_INTERSECT drag and drop interaction mode.  This alters the
-    behavior of DDM::getBestMatch.  INTERSECT mode first tests the cursor
-    location, and if it is over the target that target wins, otherwise it
-    tests the overlap of the elements.  STRICT_INTERSECT mode tests only 
-    the overlap, the largest overlap wins.
-
-  * getBestMatch will work for targeted elements that have no overlap.
-
-0.12.0
-
-   * The logic to determine if a drag should be initiated has been isolated
-     to the clickValidator method.  This method can be overridden to provide
-     custom valdiation logic.  For example, it is possible to specify hotspots
-     of any dimension or shape.  The provided example shows how to make only
-     a circular region in the middle of the element initiate a drag.
-
-   * Added a new drag and drop event: onInvalidDrop.  This is executed when
-     the dragged element in dropped in a location without a target.  Previously
-     this condition could only detected by implementing handlers for three 
-     other events.
-
-   * Now accepts an element reference in lieu of an id.  Ids will
-     be generated if the element does not have one.
-
-   * Fixed horizontal autoscroll when scrollTop is zero.
-
-   * Added hasOuterHandles property to bypass the isOverTarget check in the
-     mousedown validation routine.  Fixes setOuterHandleElId.
-
-0.11.4
-
-   * YAHOO.util.DragDropMgr.swapNode now handles adjacent nodes properly
-   
-   * Fixed missing variable declarations
-
-0.11.3
- 
-   * Fixed a JavaScript error that would be generated when trying to implement
-     DDProxy using the default settings and a tiny element.
-
-   * Fixed an error that resulted when constraints were applied to DragDrop 
-     instances.
-
-0.11.2
-
-   * Drag and drop will no longer interfere with selecting text on elements
-     that are not involved in drag and drop.
-
-   * The shared drag and drop proxy element now resizes correctly when autoResize
-     is enabled.
-
-0.11.1
-
-   * Fixes an issue where the setXY cache could get out of sync if the element's
-     offsetParent is changed during onDragDrop.
-
-0.11.0
-
-   * The Dom.util.setXY calculation for the initial placement of the dragged
-     element is cached during the drag, enhancing the drag performance.
-
-   * DDProxy no longer enforces having a single proxy element for all instances.
-     dragElId can be set in the config object in the constructor.  If the
-     element already exists it will use that element, otherwise a new one will
-     be created with that id.
-
-   * DDProxy->borderWidth has been removed. The value is calculated on the fly
-     instead.
-
-   * Added DragDrop->clearTicks and DragDrop->clearConstraints
-
-   * All drag and drop constructors now have an additional, optional parameter
-     call "config".  It is an object that can contain properties for a
-     number of configuration settings.
-
-   * Drag and drop will not be disabled for elements that cannot have their
-     location determined.
-
-   * isLegalTarget won't return dd objects that are not targetable.
-
-   * Added DragDrop->removeFromGroup.
-
-   * Constraints are now applied properly when determining which drag and drop
-     events should fire.
-
-
-0.10.0
-
-   * Improved the performance when in intersect mode
-
-   * It was possible for the drag and drop initialization to be skipped
-     for very slow loading pages.  This was fixed.
-
-   * New methods to exclude regions within your drag and drop element: 
-     addInvalidHandleId(), addInvalidHandleClass()
-
-   * Added an onAvailable handler that is executed after the initial state is set.
-
-   * Drag and drop is more forgiving when the implementer attempts to create the
-     instance prior to the element being in the document, but after the window
-     load event has fired.
-
diff --git a/eclipse.org-common/yui/2.6.0/build/dragdrop/dragdrop-debug.js b/eclipse.org-common/yui/2.6.0/build/dragdrop/dragdrop-debug.js
deleted file mode 100644
index b28ed8d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/dragdrop/dragdrop-debug.js
+++ /dev/null
@@ -1,3731 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The drag and drop utility provides a framework for building drag and drop
- * applications.  In addition to enabling drag and drop for specific elements,
- * the drag and drop elements are tracked by the manager class, and the
- * interactions between the various elements are tracked during the drag and
- * the implementing code is notified about these important moments.
- * @module dragdrop
- * @title Drag and Drop
- * @requires yahoo,dom,event
- * @namespace YAHOO.util
- */
-
-// Only load the library once.  Rewriting the manager class would orphan 
-// existing drag and drop instances.
-if (!YAHOO.util.DragDropMgr) {
-
-/**
- * DragDropMgr is a singleton that tracks the element interaction for 
- * all DragDrop items in the window.  Generally, you will not call 
- * this class directly, but it does have helper methods that could 
- * be useful in your DragDrop implementations.
- * @class DragDropMgr
- * @static
- */
-YAHOO.util.DragDropMgr = function() {
-
-    var Event = YAHOO.util.Event,
-        Dom = YAHOO.util.Dom;
-
-    return {
-        /**
-        * This property is used to turn on global use of the shim element on all DragDrop instances, defaults to false for backcompat. (Use: YAHOO.util.DDM.useShim = true)
-        * @property useShim
-        * @type Boolean
-        * @static
-        */
-        useShim: false,
-        /**
-        * This property is used to determine if the shim is active over the screen, default false.
-        * @private
-        * @property _shimActive
-        * @type Boolean
-        * @static
-        */
-        _shimActive: false,
-        /**
-        * This property is used when useShim is set on a DragDrop object to store the current state of DDM.useShim so it can be reset when a drag operation is done.
-        * @private
-        * @property _shimState
-        * @type Boolean
-        * @static
-        */
-        _shimState: false,
-        /**
-        * This property is used when useShim is set to true, it will set the opacity on the shim to .5 for debugging. Use: (YAHOO.util.DDM._debugShim = true;)
-        * @private
-        * @property _debugShim
-        * @type Boolean
-        * @static
-        */
-        _debugShim: false,
-        /**
-        * This method will create a shim element (giving it the id of yui-ddm-shim), it also attaches the mousemove and mouseup listeners to it and attaches a scroll listener on the window
-        * @private
-        * @method _sizeShim
-        * @static
-        */
-        _createShim: function() {
-            YAHOO.log('Creating Shim Element', 'info', 'DragDropMgr');
-            var s = document.createElement('div');
-            s.id = 'yui-ddm-shim';
-            if (document.body.firstChild) {
-                document.body.insertBefore(s, document.body.firstChild);
-            } else {
-                document.body.appendChild(s);
-            }
-            s.style.display = 'none';
-            s.style.backgroundColor = 'red';
-            s.style.position = 'absolute';
-            s.style.zIndex = '99999';
-            Dom.setStyle(s, 'opacity', '0');
-            this._shim = s;
-            Event.on(s, "mouseup",   this.handleMouseUp, this, true);
-            Event.on(s, "mousemove", this.handleMouseMove, this, true);
-            Event.on(window, 'scroll', this._sizeShim, this, true);
-        },
-        /**
-        * This method will size the shim, called from activate and on window scroll event
-        * @private
-        * @method _sizeShim
-        * @static
-        */
-        _sizeShim: function() {
-            if (this._shimActive) {
-                YAHOO.log('Sizing Shim', 'info', 'DragDropMgr');
-                var s = this._shim;
-                s.style.height = Dom.getDocumentHeight() + 'px';
-                s.style.width = Dom.getDocumentWidth() + 'px';
-                s.style.top = '0';
-                s.style.left = '0';
-            }
-        },
-        /**
-        * This method will create the shim element if needed, then show the shim element, size the element and set the _shimActive property to true
-        * @private
-        * @method _activateShim
-        * @static
-        */
-        _activateShim: function() {
-            if (this.useShim) {
-                YAHOO.log('Activating Shim', 'info', 'DragDropMgr');
-                if (!this._shim) {
-                    this._createShim();
-                }
-                this._shimActive = true;
-                var s = this._shim,
-                    o = '0';
-                if (this._debugShim) {
-                    o = '.5';
-                }
-                Dom.setStyle(s, 'opacity', o);
-                this._sizeShim();
-                s.style.display = 'block';
-            }
-        },
-        /**
-        * This method will hide the shim element and set the _shimActive property to false
-        * @private
-        * @method _deactivateShim
-        * @static
-        */
-        _deactivateShim: function() {
-            YAHOO.log('Deactivating Shim', 'info', 'DragDropMgr');
-            this._shim.style.display = 'none';
-            this._shimActive = false;
-        },
-        /**
-        * The HTML element created to use as a shim over the document to track mouse movements
-        * @private
-        * @property _shim
-        * @type HTMLElement
-        * @static
-        */
-        _shim: null,
-        /**
-         * Two dimensional Array of registered DragDrop objects.  The first 
-         * dimension is the DragDrop item group, the second the DragDrop 
-         * object.
-         * @property ids
-         * @type {string: string}
-         * @private
-         * @static
-         */
-        ids: {},
-
-        /**
-         * Array of element ids defined as drag handles.  Used to determine 
-         * if the element that generated the mousedown event is actually the 
-         * handle and not the html element itself.
-         * @property handleIds
-         * @type {string: string}
-         * @private
-         * @static
-         */
-        handleIds: {},
-
-        /**
-         * the DragDrop object that is currently being dragged
-         * @property dragCurrent
-         * @type DragDrop
-         * @private
-         * @static
-         **/
-        dragCurrent: null,
-
-        /**
-         * the DragDrop object(s) that are being hovered over
-         * @property dragOvers
-         * @type Array
-         * @private
-         * @static
-         */
-        dragOvers: {},
-
-        /**
-         * the X distance between the cursor and the object being dragged
-         * @property deltaX
-         * @type int
-         * @private
-         * @static
-         */
-        deltaX: 0,
-
-        /**
-         * the Y distance between the cursor and the object being dragged
-         * @property deltaY
-         * @type int
-         * @private
-         * @static
-         */
-        deltaY: 0,
-
-        /**
-         * Flag to determine if we should prevent the default behavior of the
-         * events we define. By default this is true, but this can be set to 
-         * false if you need the default behavior (not recommended)
-         * @property preventDefault
-         * @type boolean
-         * @static
-         */
-        preventDefault: true,
-
-        /**
-         * Flag to determine if we should stop the propagation of the events 
-         * we generate. This is true by default but you may want to set it to
-         * false if the html element contains other features that require the
-         * mouse click.
-         * @property stopPropagation
-         * @type boolean
-         * @static
-         */
-        stopPropagation: true,
-
-        /**
-         * Internal flag that is set to true when drag and drop has been
-         * initialized
-         * @property initialized
-         * @private
-         * @static
-         */
-        initialized: false,
-
-        /**
-         * All drag and drop can be disabled.
-         * @property locked
-         * @private
-         * @static
-         */
-        locked: false,
-
-        /**
-         * Provides additional information about the the current set of
-         * interactions.  Can be accessed from the event handlers. It
-         * contains the following properties:
-         *
-         *       out:       onDragOut interactions
-         *       enter:     onDragEnter interactions
-         *       over:      onDragOver interactions
-         *       drop:      onDragDrop interactions
-         *       point:     The location of the cursor
-         *       draggedRegion: The location of dragged element at the time
-         *                      of the interaction
-         *       sourceRegion: The location of the source elemtn at the time
-         *                     of the interaction
-         *       validDrop: boolean
-         * @property interactionInfo
-         * @type object
-         * @static
-         */
-        interactionInfo: null,
-
-        /**
-         * Called the first time an element is registered.
-         * @method init
-         * @private
-         * @static
-         */
-        init: function() {
-            this.initialized = true;
-        },
-
-        /**
-         * In point mode, drag and drop interaction is defined by the 
-         * location of the cursor during the drag/drop
-         * @property POINT
-         * @type int
-         * @static
-         * @final
-         */
-        POINT: 0,
-
-        /**
-         * In intersect mode, drag and drop interaction is defined by the 
-         * cursor position or the amount of overlap of two or more drag and 
-         * drop objects.
-         * @property INTERSECT
-         * @type int
-         * @static
-         * @final
-         */
-        INTERSECT: 1,
-
-        /**
-         * In intersect mode, drag and drop interaction is defined only by the 
-         * overlap of two or more drag and drop objects.
-         * @property STRICT_INTERSECT
-         * @type int
-         * @static
-         * @final
-         */
-        STRICT_INTERSECT: 2,
-
-        /**
-         * The current drag and drop mode.  Default: POINT
-         * @property mode
-         * @type int
-         * @static
-         */
-        mode: 0,
-
-        /**
-         * Runs method on all drag and drop objects
-         * @method _execOnAll
-         * @private
-         * @static
-         */
-        _execOnAll: function(sMethod, args) {
-            for (var i in this.ids) {
-                for (var j in this.ids[i]) {
-                    var oDD = this.ids[i][j];
-                    if (! this.isTypeOfDD(oDD)) {
-                        continue;
-                    }
-                    oDD[sMethod].apply(oDD, args);
-                }
-            }
-        },
-
-        /**
-         * Drag and drop initialization.  Sets up the global event handlers
-         * @method _onLoad
-         * @private
-         * @static
-         */
-        _onLoad: function() {
-
-            this.init();
-
-            YAHOO.log("DragDropMgr onload", "info", "DragDropMgr");
-            Event.on(document, "mouseup",   this.handleMouseUp, this, true);
-            Event.on(document, "mousemove", this.handleMouseMove, this, true);
-            Event.on(window,   "unload",    this._onUnload, this, true);
-            Event.on(window,   "resize",    this._onResize, this, true);
-            // Event.on(window,   "mouseout",    this._test);
-
-        },
-
-        /**
-         * Reset constraints on all drag and drop objs
-         * @method _onResize
-         * @private
-         * @static
-         */
-        _onResize: function(e) {
-            YAHOO.log("window resize", "info", "DragDropMgr");
-            this._execOnAll("resetConstraints", []);
-        },
-
-        /**
-         * Lock all drag and drop functionality
-         * @method lock
-         * @static
-         */
-        lock: function() { this.locked = true; },
-
-        /**
-         * Unlock all drag and drop functionality
-         * @method unlock
-         * @static
-         */
-        unlock: function() { this.locked = false; },
-
-        /**
-         * Is drag and drop locked?
-         * @method isLocked
-         * @return {boolean} True if drag and drop is locked, false otherwise.
-         * @static
-         */
-        isLocked: function() { return this.locked; },
-
-        /**
-         * Location cache that is set for all drag drop objects when a drag is
-         * initiated, cleared when the drag is finished.
-         * @property locationCache
-         * @private
-         * @static
-         */
-        locationCache: {},
-
-        /**
-         * Set useCache to false if you want to force object the lookup of each
-         * drag and drop linked element constantly during a drag.
-         * @property useCache
-         * @type boolean
-         * @static
-         */
-        useCache: true,
-
-        /**
-         * The number of pixels that the mouse needs to move after the 
-         * mousedown before the drag is initiated.  Default=3;
-         * @property clickPixelThresh
-         * @type int
-         * @static
-         */
-        clickPixelThresh: 3,
-
-        /**
-         * The number of milliseconds after the mousedown event to initiate the
-         * drag if we don't get a mouseup event. Default=1000
-         * @property clickTimeThresh
-         * @type int
-         * @static
-         */
-        clickTimeThresh: 1000,
-
-        /**
-         * Flag that indicates that either the drag pixel threshold or the 
-         * mousdown time threshold has been met
-         * @property dragThreshMet
-         * @type boolean
-         * @private
-         * @static
-         */
-        dragThreshMet: false,
-
-        /**
-         * Timeout used for the click time threshold
-         * @property clickTimeout
-         * @type Object
-         * @private
-         * @static
-         */
-        clickTimeout: null,
-
-        /**
-         * The X position of the mousedown event stored for later use when a 
-         * drag threshold is met.
-         * @property startX
-         * @type int
-         * @private
-         * @static
-         */
-        startX: 0,
-
-        /**
-         * The Y position of the mousedown event stored for later use when a 
-         * drag threshold is met.
-         * @property startY
-         * @type int
-         * @private
-         * @static
-         */
-        startY: 0,
-
-        /**
-         * Flag to determine if the drag event was fired from the click timeout and
-         * not the mouse move threshold.
-         * @property fromTimeout
-         * @type boolean
-         * @private
-         * @static
-         */
-        fromTimeout: false,
-
-        /**
-         * Each DragDrop instance must be registered with the DragDropMgr.  
-         * This is executed in DragDrop.init()
-         * @method regDragDrop
-         * @param {DragDrop} oDD the DragDrop object to register
-         * @param {String} sGroup the name of the group this element belongs to
-         * @static
-         */
-        regDragDrop: function(oDD, sGroup) {
-            if (!this.initialized) { this.init(); }
-            
-            if (!this.ids[sGroup]) {
-                this.ids[sGroup] = {};
-            }
-            this.ids[sGroup][oDD.id] = oDD;
-        },
-
-        /**
-         * Removes the supplied dd instance from the supplied group. Executed
-         * by DragDrop.removeFromGroup, so don't call this function directly.
-         * @method removeDDFromGroup
-         * @private
-         * @static
-         */
-        removeDDFromGroup: function(oDD, sGroup) {
-            if (!this.ids[sGroup]) {
-                this.ids[sGroup] = {};
-            }
-
-            var obj = this.ids[sGroup];
-            if (obj && obj[oDD.id]) {
-                delete obj[oDD.id];
-            }
-        },
-
-        /**
-         * Unregisters a drag and drop item.  This is executed in 
-         * DragDrop.unreg, use that method instead of calling this directly.
-         * @method _remove
-         * @private
-         * @static
-         */
-        _remove: function(oDD) {
-            for (var g in oDD.groups) {
-                if (g) {
-                    var item = this.ids[g];
-                    if (item && item[oDD.id]) {
-                        delete item[oDD.id];
-                    }
-                }
-                
-            }
-            delete this.handleIds[oDD.id];
-        },
-
-        /**
-         * Each DragDrop handle element must be registered.  This is done
-         * automatically when executing DragDrop.setHandleElId()
-         * @method regHandle
-         * @param {String} sDDId the DragDrop id this element is a handle for
-         * @param {String} sHandleId the id of the element that is the drag 
-         * handle
-         * @static
-         */
-        regHandle: function(sDDId, sHandleId) {
-            if (!this.handleIds[sDDId]) {
-                this.handleIds[sDDId] = {};
-            }
-            this.handleIds[sDDId][sHandleId] = sHandleId;
-        },
-
-        /**
-         * Utility function to determine if a given element has been 
-         * registered as a drag drop item.
-         * @method isDragDrop
-         * @param {String} id the element id to check
-         * @return {boolean} true if this element is a DragDrop item, 
-         * false otherwise
-         * @static
-         */
-        isDragDrop: function(id) {
-            return ( this.getDDById(id) ) ? true : false;
-        },
-
-        /**
-         * Returns the drag and drop instances that are in all groups the
-         * passed in instance belongs to.
-         * @method getRelated
-         * @param {DragDrop} p_oDD the obj to get related data for
-         * @param {boolean} bTargetsOnly if true, only return targetable objs
-         * @return {DragDrop[]} the related instances
-         * @static
-         */
-        getRelated: function(p_oDD, bTargetsOnly) {
-            var oDDs = [];
-            for (var i in p_oDD.groups) {
-                for (var j in this.ids[i]) {
-                    var dd = this.ids[i][j];
-                    if (! this.isTypeOfDD(dd)) {
-                        continue;
-                    }
-                    if (!bTargetsOnly || dd.isTarget) {
-                        oDDs[oDDs.length] = dd;
-                    }
-                }
-            }
-
-            return oDDs;
-        },
-
-        /**
-         * Returns true if the specified dd target is a legal target for 
-         * the specifice drag obj
-         * @method isLegalTarget
-         * @param {DragDrop} the drag obj
-         * @param {DragDrop} the target
-         * @return {boolean} true if the target is a legal target for the 
-         * dd obj
-         * @static
-         */
-        isLegalTarget: function (oDD, oTargetDD) {
-            var targets = this.getRelated(oDD, true);
-            for (var i=0, len=targets.length;i<len;++i) {
-                if (targets[i].id == oTargetDD.id) {
-                    return true;
-                }
-            }
-
-            return false;
-        },
-
-        /**
-         * My goal is to be able to transparently determine if an object is
-         * typeof DragDrop, and the exact subclass of DragDrop.  typeof 
-         * returns "object", oDD.constructor.toString() always returns
-         * "DragDrop" and not the name of the subclass.  So for now it just
-         * evaluates a well-known variable in DragDrop.
-         * @method isTypeOfDD
-         * @param {Object} the object to evaluate
-         * @return {boolean} true if typeof oDD = DragDrop
-         * @static
-         */
-        isTypeOfDD: function (oDD) {
-            return (oDD && oDD.__ygDragDrop);
-        },
-
-        /**
-         * Utility function to determine if a given element has been 
-         * registered as a drag drop handle for the given Drag Drop object.
-         * @method isHandle
-         * @param {String} id the element id to check
-         * @return {boolean} true if this element is a DragDrop handle, false 
-         * otherwise
-         * @static
-         */
-        isHandle: function(sDDId, sHandleId) {
-            return ( this.handleIds[sDDId] && 
-                            this.handleIds[sDDId][sHandleId] );
-        },
-
-        /**
-         * Returns the DragDrop instance for a given id
-         * @method getDDById
-         * @param {String} id the id of the DragDrop object
-         * @return {DragDrop} the drag drop object, null if it is not found
-         * @static
-         */
-        getDDById: function(id) {
-            for (var i in this.ids) {
-                if (this.ids[i][id]) {
-                    return this.ids[i][id];
-                }
-            }
-            return null;
-        },
-
-        /**
-         * Fired after a registered DragDrop object gets the mousedown event.
-         * Sets up the events required to track the object being dragged
-         * @method handleMouseDown
-         * @param {Event} e the event
-         * @param oDD the DragDrop object being dragged
-         * @private
-         * @static
-         */
-        handleMouseDown: function(e, oDD) {
-            //this._activateShim();
-
-            this.currentTarget = YAHOO.util.Event.getTarget(e);
-
-            this.dragCurrent = oDD;
-
-            var el = oDD.getEl();
-
-            // track start position
-            this.startX = YAHOO.util.Event.getPageX(e);
-            this.startY = YAHOO.util.Event.getPageY(e);
-
-            this.deltaX = this.startX - el.offsetLeft;
-            this.deltaY = this.startY - el.offsetTop;
-
-            this.dragThreshMet = false;
-
-            this.clickTimeout = setTimeout( 
-                    function() { 
-                        var DDM = YAHOO.util.DDM;
-                        DDM.startDrag(DDM.startX, DDM.startY);
-                        DDM.fromTimeout = true;
-                    }, 
-                    this.clickTimeThresh );
-        },
-
-        /**
-         * Fired when either the drag pixel threshold or the mousedown hold 
-         * time threshold has been met.
-         * @method startDrag
-         * @param x {int} the X position of the original mousedown
-         * @param y {int} the Y position of the original mousedown
-         * @static
-         */
-        startDrag: function(x, y) {
-            if (this.dragCurrent && this.dragCurrent.useShim) {
-                this._shimState = this.useShim;
-                this.useShim = true;
-            }
-            this._activateShim();
-            YAHOO.log("firing drag start events", "info", "DragDropMgr");
-            clearTimeout(this.clickTimeout);
-            var dc = this.dragCurrent;
-            if (dc && dc.events.b4StartDrag) {
-                dc.b4StartDrag(x, y);
-                dc.fireEvent('b4StartDragEvent', { x: x, y: y });
-            }
-            if (dc && dc.events.startDrag) {
-                dc.startDrag(x, y);
-                dc.fireEvent('startDragEvent', { x: x, y: y });
-            }
-            this.dragThreshMet = true;
-        },
-
-        /**
-         * Internal function to handle the mouseup event.  Will be invoked 
-         * from the context of the document.
-         * @method handleMouseUp
-         * @param {Event} e the event
-         * @private
-         * @static
-         */
-        handleMouseUp: function(e) {
-            if (this.dragCurrent) {
-                clearTimeout(this.clickTimeout);
-
-                if (this.dragThreshMet) {
-                    YAHOO.log("mouseup detected - completing drag", "info", "DragDropMgr");
-                    if (this.fromTimeout) {
-                        YAHOO.log('fromTimeout is true (mouse didn\'t move), call handleMouseMove so we can get the dragOver event', 'info', 'DragDropMgr');
-                        this.fromTimeout = false;
-                        this.handleMouseMove(e);
-                    }
-                    this.fromTimeout = false;
-                    this.fireEvents(e, true);
-                } else {
-                    YAHOO.log("drag threshold not met", "info", "DragDropMgr");
-                }
-
-                this.stopDrag(e);
-
-                this.stopEvent(e);
-            }
-        },
-
-        /**
-         * Utility to stop event propagation and event default, if these 
-         * features are turned on.
-         * @method stopEvent
-         * @param {Event} e the event as returned by this.getEvent()
-         * @static
-         */
-        stopEvent: function(e) {
-            if (this.stopPropagation) {
-                YAHOO.util.Event.stopPropagation(e);
-            }
-
-            if (this.preventDefault) {
-                YAHOO.util.Event.preventDefault(e);
-            }
-        },
-
-        /** 
-         * Ends the current drag, cleans up the state, and fires the endDrag
-         * and mouseUp events.  Called internally when a mouseup is detected
-         * during the drag.  Can be fired manually during the drag by passing
-         * either another event (such as the mousemove event received in onDrag)
-         * or a fake event with pageX and pageY defined (so that endDrag and
-         * onMouseUp have usable position data.).  Alternatively, pass true
-         * for the silent parameter so that the endDrag and onMouseUp events
-         * are skipped (so no event data is needed.)
-         *
-         * @method stopDrag
-         * @param {Event} e the mouseup event, another event (or a fake event) 
-         *                  with pageX and pageY defined, or nothing if the 
-         *                  silent parameter is true
-         * @param {boolean} silent skips the enddrag and mouseup events if true
-         * @static
-         */
-        stopDrag: function(e, silent) {
-            // YAHOO.log("mouseup - removing event handlers");
-            var dc = this.dragCurrent;
-            // Fire the drag end event for the item that was dragged
-            if (dc && !silent) {
-                if (this.dragThreshMet) {
-                    YAHOO.log("firing endDrag events", "info", "DragDropMgr");
-                    if (dc.events.b4EndDrag) {
-                        dc.b4EndDrag(e);
-                        dc.fireEvent('b4EndDragEvent', { e: e });
-                    }
-                    if (dc.events.endDrag) {
-                        dc.endDrag(e);
-                        dc.fireEvent('endDragEvent', { e: e });
-                    }
-                }
-                if (dc.events.mouseUp) {
-                    YAHOO.log("firing dragdrop onMouseUp event", "info", "DragDropMgr");
-                    dc.onMouseUp(e);
-                    dc.fireEvent('mouseUpEvent', { e: e });
-                }
-            }
-
-            if (this._shimActive) {
-                this._deactivateShim();
-                if (this.dragCurrent && this.dragCurrent.useShim) {
-                    this.useShim = this._shimState;
-                    this._shimState = false;
-                }
-            }
-
-            this.dragCurrent = null;
-            this.dragOvers = {};
-        },
-
-        /** 
-         * Internal function to handle the mousemove event.  Will be invoked 
-         * from the context of the html element.
-         *
-         * @TODO figure out what we can do about mouse events lost when the 
-         * user drags objects beyond the window boundary.  Currently we can 
-         * detect this in internet explorer by verifying that the mouse is 
-         * down during the mousemove event.  Firefox doesn't give us the 
-         * button state on the mousemove event.
-         * @method handleMouseMove
-         * @param {Event} e the event
-         * @private
-         * @static
-         */
-        handleMouseMove: function(e) {
-            //YAHOO.log("handlemousemove");
-
-            var dc = this.dragCurrent;
-            if (dc) {
-                // YAHOO.log("no current drag obj");
-
-                // var button = e.which || e.button;
-                // YAHOO.log("which: " + e.which + ", button: "+ e.button);
-
-                // check for IE mouseup outside of page boundary
-                if (YAHOO.util.Event.isIE && !e.button) {
-                    YAHOO.log("button failure", "info", "DragDropMgr");
-                    this.stopEvent(e);
-                    return this.handleMouseUp(e);
-                } else {
-                    if (e.clientX < 0 || e.clientY < 0) {
-                        //This will stop the element from leaving the viewport in FF, Opera & Safari
-                        //Not turned on yet
-                        //YAHOO.log("Either clientX or clientY is negative, stop the event.", "info", "DragDropMgr");
-                        //this.stopEvent(e);
-                        //return false;
-                    }
-                }
-
-                if (!this.dragThreshMet) {
-                    var diffX = Math.abs(this.startX - YAHOO.util.Event.getPageX(e));
-                    var diffY = Math.abs(this.startY - YAHOO.util.Event.getPageY(e));
-                    // YAHOO.log("diffX: " + diffX + "diffY: " + diffY);
-                    if (diffX > this.clickPixelThresh || 
-                                diffY > this.clickPixelThresh) {
-                        YAHOO.log("pixel threshold met", "info", "DragDropMgr");
-                        this.startDrag(this.startX, this.startY);
-                    }
-                }
-
-                if (this.dragThreshMet) {
-                    if (dc && dc.events.b4Drag) {
-                        dc.b4Drag(e);
-                        dc.fireEvent('b4DragEvent', { e: e});
-                    }
-                    if (dc && dc.events.drag) {
-                        dc.onDrag(e);
-                        dc.fireEvent('dragEvent', { e: e});
-                    }
-                    if (dc) {
-                        this.fireEvents(e, false);
-                    }
-                }
-
-                this.stopEvent(e);
-            }
-        },
-        
-        /**
-         * Iterates over all of the DragDrop elements to find ones we are 
-         * hovering over or dropping on
-         * @method fireEvents
-         * @param {Event} e the event
-         * @param {boolean} isDrop is this a drop op or a mouseover op?
-         * @private
-         * @static
-         */
-        fireEvents: function(e, isDrop) {
-            var dc = this.dragCurrent;
-
-            // If the user did the mouse up outside of the window, we could 
-            // get here even though we have ended the drag.
-            // If the config option dragOnly is true, bail out and don't fire the events
-            if (!dc || dc.isLocked() || dc.dragOnly) {
-                return;
-            }
-
-            var x = YAHOO.util.Event.getPageX(e),
-                y = YAHOO.util.Event.getPageY(e),
-                pt = new YAHOO.util.Point(x,y),
-                pos = dc.getTargetCoord(pt.x, pt.y),
-                el = dc.getDragEl(),
-                events = ['out', 'over', 'drop', 'enter'],
-                curRegion = new YAHOO.util.Region( pos.y, 
-                                               pos.x + el.offsetWidth,
-                                               pos.y + el.offsetHeight, 
-                                               pos.x ),
-            
-                oldOvers = [], // cache the previous dragOver array
-                inGroupsObj  = {},
-                inGroups  = [],
-                data = {
-                    outEvts: [],
-                    overEvts: [],
-                    dropEvts: [],
-                    enterEvts: []
-                };
-
-
-            // Check to see if the object(s) we were hovering over is no longer 
-            // being hovered over so we can fire the onDragOut event
-            for (var i in this.dragOvers) {
-
-                var ddo = this.dragOvers[i];
-
-                if (! this.isTypeOfDD(ddo)) {
-                    continue;
-                }
-                if (! this.isOverTarget(pt, ddo, this.mode, curRegion)) {
-                    data.outEvts.push( ddo );
-                }
-
-                oldOvers[i] = true;
-                delete this.dragOvers[i];
-            }
-
-            for (var sGroup in dc.groups) {
-                // YAHOO.log("Processing group " + sGroup);
-                
-                if ("string" != typeof sGroup) {
-                    continue;
-                }
-
-                for (i in this.ids[sGroup]) {
-                    var oDD = this.ids[sGroup][i];
-                    if (! this.isTypeOfDD(oDD)) {
-                        continue;
-                    }
-
-                    if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
-                        if (this.isOverTarget(pt, oDD, this.mode, curRegion)) {
-                            inGroupsObj[sGroup] = true;
-                            // look for drop interactions
-                            if (isDrop) {
-                                data.dropEvts.push( oDD );
-                            // look for drag enter and drag over interactions
-                            } else {
-
-                                // initial drag over: dragEnter fires
-                                if (!oldOvers[oDD.id]) {
-                                    data.enterEvts.push( oDD );
-                                // subsequent drag overs: dragOver fires
-                                } else {
-                                    data.overEvts.push( oDD );
-                                }
-
-                                this.dragOvers[oDD.id] = oDD;
-                            }
-                        }
-                    }
-                }
-            }
-
-            this.interactionInfo = {
-                out:       data.outEvts,
-                enter:     data.enterEvts,
-                over:      data.overEvts,
-                drop:      data.dropEvts,
-                point:     pt,
-                draggedRegion:    curRegion,
-                sourceRegion: this.locationCache[dc.id],
-                validDrop: isDrop
-            };
-
-            
-            for (var inG in inGroupsObj) {
-                inGroups.push(inG);
-            }
-
-            // notify about a drop that did not find a target
-            if (isDrop && !data.dropEvts.length) {
-                YAHOO.log(dc.id + " dropped, but not on a target", "info", "DragDropMgr");
-                this.interactionInfo.validDrop = false;
-                if (dc.events.invalidDrop) {
-                    dc.onInvalidDrop(e);
-                    dc.fireEvent('invalidDropEvent', { e: e });
-                }
-            }
-            for (i = 0; i < events.length; i++) {
-                var tmp = null;
-                if (data[events[i] + 'Evts']) {
-                    tmp = data[events[i] + 'Evts'];
-                }
-                if (tmp && tmp.length) {
-                    var type = events[i].charAt(0).toUpperCase() + events[i].substr(1),
-                        ev = 'onDrag' + type,
-                        b4 = 'b4Drag' + type,
-                        cev = 'drag' + type + 'Event',
-                        check = 'drag' + type;
-                    if (this.mode) {
-                        YAHOO.log(dc.id + ' ' + ev + ': ' + tmp, "info", "DragDropMgr");
-                        if (dc.events[b4]) {
-                            dc[b4](e, tmp, inGroups);
-                            dc.fireEvent(b4 + 'Event', { event: e, info: tmp, group: inGroups });
-                            
-                        }
-                        if (dc.events[check]) {
-                            dc[ev](e, tmp, inGroups);
-                            dc.fireEvent(cev, { event: e, info: tmp, group: inGroups });
-                        }
-                    } else {
-                        for (var b = 0, len = tmp.length; b < len; ++b) {
-                            YAHOO.log(dc.id + ' ' + ev + ': ' + tmp[b].id, "info", "DragDropMgr");
-                            if (dc.events[b4]) {
-                                dc[b4](e, tmp[b].id, inGroups[0]);
-                                dc.fireEvent(b4 + 'Event', { event: e, info: tmp[b].id, group: inGroups[0] });
-                            }
-                            if (dc.events[check]) {
-                                dc[ev](e, tmp[b].id, inGroups[0]);
-                                dc.fireEvent(cev, { event: e, info: tmp[b].id, group: inGroups[0] });
-                            }
-                        }
-                    }
-                }
-            }
-        },
-
-        /**
-         * Helper function for getting the best match from the list of drag 
-         * and drop objects returned by the drag and drop events when we are 
-         * in INTERSECT mode.  It returns either the first object that the 
-         * cursor is over, or the object that has the greatest overlap with 
-         * the dragged element.
-         * @method getBestMatch
-         * @param  {DragDrop[]} dds The array of drag and drop objects 
-         * targeted
-         * @return {DragDrop}       The best single match
-         * @static
-         */
-        getBestMatch: function(dds) {
-            var winner = null;
-
-            var len = dds.length;
-
-            if (len == 1) {
-                winner = dds[0];
-            } else {
-                // Loop through the targeted items
-                for (var i=0; i<len; ++i) {
-                    var dd = dds[i];
-                    // If the cursor is over the object, it wins.  If the 
-                    // cursor is over multiple matches, the first one we come
-                    // to wins.
-                    if (this.mode == this.INTERSECT && dd.cursorIsOver) {
-                        winner = dd;
-                        break;
-                    // Otherwise the object with the most overlap wins
-                    } else {
-                        if (!winner || !winner.overlap || (dd.overlap &&
-                            winner.overlap.getArea() < dd.overlap.getArea())) {
-                            winner = dd;
-                        }
-                    }
-                }
-            }
-
-            return winner;
-        },
-
-        /**
-         * Refreshes the cache of the top-left and bottom-right points of the 
-         * drag and drop objects in the specified group(s).  This is in the
-         * format that is stored in the drag and drop instance, so typical 
-         * usage is:
-         * <code>
-         * YAHOO.util.DragDropMgr.refreshCache(ddinstance.groups);
-         * </code>
-         * Alternatively:
-         * <code>
-         * YAHOO.util.DragDropMgr.refreshCache({group1:true, group2:true});
-         * </code>
-         * @TODO this really should be an indexed array.  Alternatively this
-         * method could accept both.
-         * @method refreshCache
-         * @param {Object} groups an associative array of groups to refresh
-         * @static
-         */
-        refreshCache: function(groups) {
-            YAHOO.log("refreshing element location cache", "info", "DragDropMgr");
-
-            // refresh everything if group array is not provided
-            var g = groups || this.ids;
-
-            for (var sGroup in g) {
-                if ("string" != typeof sGroup) {
-                    continue;
-                }
-                for (var i in this.ids[sGroup]) {
-                    var oDD = this.ids[sGroup][i];
-
-                    if (this.isTypeOfDD(oDD)) {
-                        var loc = this.getLocation(oDD);
-                        if (loc) {
-                            this.locationCache[oDD.id] = loc;
-                        } else {
-                            delete this.locationCache[oDD.id];
-YAHOO.log("Could not get the loc for " + oDD.id, "warn", "DragDropMgr");
-                        }
-                    }
-                }
-            }
-        },
-
-        /**
-         * This checks to make sure an element exists and is in the DOM.  The
-         * main purpose is to handle cases where innerHTML is used to remove
-         * drag and drop objects from the DOM.  IE provides an 'unspecified
-         * error' when trying to access the offsetParent of such an element
-         * @method verifyEl
-         * @param {HTMLElement} el the element to check
-         * @return {boolean} true if the element looks usable
-         * @static
-         */
-        verifyEl: function(el) {
-            try {
-                if (el) {
-                    var parent = el.offsetParent;
-                    if (parent) {
-                        return true;
-                    }
-                }
-            } catch(e) {
-                YAHOO.log("detected problem with an element", "info", "DragDropMgr");
-            }
-
-            return false;
-        },
-        
-        /**
-         * Returns a Region object containing the drag and drop element's position
-         * and size, including the padding configured for it
-         * @method getLocation
-         * @param {DragDrop} oDD the drag and drop object to get the 
-         *                       location for
-         * @return {YAHOO.util.Region} a Region object representing the total area
-         *                             the element occupies, including any padding
-         *                             the instance is configured for.
-         * @static
-         */
-        getLocation: function(oDD) {
-            if (! this.isTypeOfDD(oDD)) {
-                YAHOO.log(oDD + " is not a DD obj", "info", "DragDropMgr");
-                return null;
-            }
-
-            var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
-
-            try {
-                pos= YAHOO.util.Dom.getXY(el);
-            } catch (e) { }
-
-            if (!pos) {
-                YAHOO.log("getXY failed", "info", "DragDropMgr");
-                return null;
-            }
-
-            x1 = pos[0];
-            x2 = x1 + el.offsetWidth;
-            y1 = pos[1];
-            y2 = y1 + el.offsetHeight;
-
-            t = y1 - oDD.padding[0];
-            r = x2 + oDD.padding[1];
-            b = y2 + oDD.padding[2];
-            l = x1 - oDD.padding[3];
-
-            return new YAHOO.util.Region( t, r, b, l );
-        },
-
-        /**
-         * Checks the cursor location to see if it over the target
-         * @method isOverTarget
-         * @param {YAHOO.util.Point} pt The point to evaluate
-         * @param {DragDrop} oTarget the DragDrop object we are inspecting
-         * @param {boolean} intersect true if we are in intersect mode
-         * @param {YAHOO.util.Region} pre-cached location of the dragged element
-         * @return {boolean} true if the mouse is over the target
-         * @private
-         * @static
-         */
-        isOverTarget: function(pt, oTarget, intersect, curRegion) {
-            // use cache if available
-            var loc = this.locationCache[oTarget.id];
-            if (!loc || !this.useCache) {
-                YAHOO.log("cache not populated", "info", "DragDropMgr");
-                loc = this.getLocation(oTarget);
-                this.locationCache[oTarget.id] = loc;
-
-                YAHOO.log("cache: " + loc, "info", "DragDropMgr");
-            }
-
-            if (!loc) {
-                YAHOO.log("could not get the location of the element", "info", "DragDropMgr");
-                return false;
-            }
-
-            //YAHOO.log("loc: " + loc + ", pt: " + pt);
-            oTarget.cursorIsOver = loc.contains( pt );
-
-            // DragDrop is using this as a sanity check for the initial mousedown
-            // in this case we are done.  In POINT mode, if the drag obj has no
-            // contraints, we are done. Otherwise we need to evaluate the 
-            // region the target as occupies to determine if the dragged element
-            // overlaps with it.
-            
-            var dc = this.dragCurrent;
-            if (!dc || (!intersect && !dc.constrainX && !dc.constrainY)) {
-
-                //if (oTarget.cursorIsOver) {
-                    //YAHOO.log("over " + oTarget + ", " + loc + ", " + pt, "warn");
-                //}
-                return oTarget.cursorIsOver;
-            }
-
-            oTarget.overlap = null;
-
-
-            // Get the current location of the drag element, this is the
-            // location of the mouse event less the delta that represents
-            // where the original mousedown happened on the element.  We
-            // need to consider constraints and ticks as well.
-
-            if (!curRegion) {
-                var pos = dc.getTargetCoord(pt.x, pt.y);
-                var el = dc.getDragEl();
-                curRegion = new YAHOO.util.Region( pos.y, 
-                                                   pos.x + el.offsetWidth,
-                                                   pos.y + el.offsetHeight, 
-                                                   pos.x );
-            }
-
-            var overlap = curRegion.intersect(loc);
-
-            if (overlap) {
-                oTarget.overlap = overlap;
-                return (intersect) ? true : oTarget.cursorIsOver;
-            } else {
-                return false;
-            }
-        },
-
-        /**
-         * unload event handler
-         * @method _onUnload
-         * @private
-         * @static
-         */
-        _onUnload: function(e, me) {
-            this.unregAll();
-        },
-
-        /**
-         * Cleans up the drag and drop events and objects.
-         * @method unregAll
-         * @private
-         * @static
-         */
-        unregAll: function() {
-            YAHOO.log("unregister all", "info", "DragDropMgr");
-
-            if (this.dragCurrent) {
-                this.stopDrag();
-                this.dragCurrent = null;
-            }
-
-            this._execOnAll("unreg", []);
-
-            //for (var i in this.elementCache) {
-                //delete this.elementCache[i];
-            //}
-            //this.elementCache = {};
-
-            this.ids = {};
-        },
-
-        /**
-         * A cache of DOM elements
-         * @property elementCache
-         * @private
-         * @static
-         * @deprecated elements are not cached now
-         */
-        elementCache: {},
-        
-        /**
-         * Get the wrapper for the DOM element specified
-         * @method getElWrapper
-         * @param {String} id the id of the element to get
-         * @return {YAHOO.util.DDM.ElementWrapper} the wrapped element
-         * @private
-         * @deprecated This wrapper isn't that useful
-         * @static
-         */
-        getElWrapper: function(id) {
-            var oWrapper = this.elementCache[id];
-            if (!oWrapper || !oWrapper.el) {
-                oWrapper = this.elementCache[id] = 
-                    new this.ElementWrapper(YAHOO.util.Dom.get(id));
-            }
-            return oWrapper;
-        },
-
-        /**
-         * Returns the actual DOM element
-         * @method getElement
-         * @param {String} id the id of the elment to get
-         * @return {Object} The element
-         * @deprecated use YAHOO.util.Dom.get instead
-         * @static
-         */
-        getElement: function(id) {
-            return YAHOO.util.Dom.get(id);
-        },
-        
-        /**
-         * Returns the style property for the DOM element (i.e., 
-         * document.getElById(id).style)
-         * @method getCss
-         * @param {String} id the id of the elment to get
-         * @return {Object} The style property of the element
-         * @deprecated use YAHOO.util.Dom instead
-         * @static
-         */
-        getCss: function(id) {
-            var el = YAHOO.util.Dom.get(id);
-            return (el) ? el.style : null;
-        },
-
-        /**
-         * Inner class for cached elements
-         * @class DragDropMgr.ElementWrapper
-         * @for DragDropMgr
-         * @private
-         * @deprecated
-         */
-        ElementWrapper: function(el) {
-                /**
-                 * The element
-                 * @property el
-                 */
-                this.el = el || null;
-                /**
-                 * The element id
-                 * @property id
-                 */
-                this.id = this.el && el.id;
-                /**
-                 * A reference to the style property
-                 * @property css
-                 */
-                this.css = this.el && el.style;
-            },
-
-        /**
-         * Returns the X position of an html element
-         * @method getPosX
-         * @param el the element for which to get the position
-         * @return {int} the X coordinate
-         * @for DragDropMgr
-         * @deprecated use YAHOO.util.Dom.getX instead
-         * @static
-         */
-        getPosX: function(el) {
-            return YAHOO.util.Dom.getX(el);
-        },
-
-        /**
-         * Returns the Y position of an html element
-         * @method getPosY
-         * @param el the element for which to get the position
-         * @return {int} the Y coordinate
-         * @deprecated use YAHOO.util.Dom.getY instead
-         * @static
-         */
-        getPosY: function(el) {
-            return YAHOO.util.Dom.getY(el); 
-        },
-
-        /**
-         * Swap two nodes.  In IE, we use the native method, for others we 
-         * emulate the IE behavior
-         * @method swapNode
-         * @param n1 the first node to swap
-         * @param n2 the other node to swap
-         * @static
-         */
-        swapNode: function(n1, n2) {
-            if (n1.swapNode) {
-                n1.swapNode(n2);
-            } else {
-                var p = n2.parentNode;
-                var s = n2.nextSibling;
-
-                if (s == n1) {
-                    p.insertBefore(n1, n2);
-                } else if (n2 == n1.nextSibling) {
-                    p.insertBefore(n2, n1);
-                } else {
-                    n1.parentNode.replaceChild(n2, n1);
-                    p.insertBefore(n1, s);
-                }
-            }
-        },
-
-        /**
-         * Returns the current scroll position
-         * @method getScroll
-         * @private
-         * @static
-         */
-        getScroll: function () {
-            var t, l, dde=document.documentElement, db=document.body;
-            if (dde && (dde.scrollTop || dde.scrollLeft)) {
-                t = dde.scrollTop;
-                l = dde.scrollLeft;
-            } else if (db) {
-                t = db.scrollTop;
-                l = db.scrollLeft;
-            } else {
-                YAHOO.log("could not get scroll property", "info", "DragDropMgr");
-            }
-            return { top: t, left: l };
-        },
-
-        /**
-         * Returns the specified element style property
-         * @method getStyle
-         * @param {HTMLElement} el          the element
-         * @param {string}      styleProp   the style property
-         * @return {string} The value of the style property
-         * @deprecated use YAHOO.util.Dom.getStyle
-         * @static
-         */
-        getStyle: function(el, styleProp) {
-            return YAHOO.util.Dom.getStyle(el, styleProp);
-        },
-
-        /**
-         * Gets the scrollTop
-         * @method getScrollTop
-         * @return {int} the document's scrollTop
-         * @static
-         */
-        getScrollTop: function () { return this.getScroll().top; },
-
-        /**
-         * Gets the scrollLeft
-         * @method getScrollLeft
-         * @return {int} the document's scrollTop
-         * @static
-         */
-        getScrollLeft: function () { return this.getScroll().left; },
-
-        /**
-         * Sets the x/y position of an element to the location of the
-         * target element.
-         * @method moveToEl
-         * @param {HTMLElement} moveEl      The element to move
-         * @param {HTMLElement} targetEl    The position reference element
-         * @static
-         */
-        moveToEl: function (moveEl, targetEl) {
-            var aCoord = YAHOO.util.Dom.getXY(targetEl);
-            YAHOO.log("moveToEl: " + aCoord, "info", "DragDropMgr");
-            YAHOO.util.Dom.setXY(moveEl, aCoord);
-        },
-
-        /**
-         * Gets the client height
-         * @method getClientHeight
-         * @return {int} client height in px
-         * @deprecated use YAHOO.util.Dom.getViewportHeight instead
-         * @static
-         */
-        getClientHeight: function() {
-            return YAHOO.util.Dom.getViewportHeight();
-        },
-
-        /**
-         * Gets the client width
-         * @method getClientWidth
-         * @return {int} client width in px
-         * @deprecated use YAHOO.util.Dom.getViewportWidth instead
-         * @static
-         */
-        getClientWidth: function() {
-            return YAHOO.util.Dom.getViewportWidth();
-        },
-
-        /**
-         * Numeric array sort function
-         * @method numericSort
-         * @static
-         */
-        numericSort: function(a, b) { return (a - b); },
-
-        /**
-         * Internal counter
-         * @property _timeoutCount
-         * @private
-         * @static
-         */
-        _timeoutCount: 0,
-
-        /**
-         * Trying to make the load order less important.  Without this we get
-         * an error if this file is loaded before the Event Utility.
-         * @method _addListeners
-         * @private
-         * @static
-         */
-        _addListeners: function() {
-            var DDM = YAHOO.util.DDM;
-            if ( YAHOO.util.Event && document ) {
-                DDM._onLoad();
-            } else {
-                if (DDM._timeoutCount > 2000) {
-                    YAHOO.log("DragDrop requires the Event Utility", "error", "DragDropMgr");
-                } else {
-                    setTimeout(DDM._addListeners, 10);
-                    if (document && document.body) {
-                        DDM._timeoutCount += 1;
-                    }
-                }
-            }
-        },
-
-        /**
-         * Recursively searches the immediate parent and all child nodes for 
-         * the handle element in order to determine wheter or not it was 
-         * clicked.
-         * @method handleWasClicked
-         * @param node the html element to inspect
-         * @static
-         */
-        handleWasClicked: function(node, id) {
-            if (this.isHandle(id, node.id)) {
-                YAHOO.log("clicked node is a handle", "info", "DragDropMgr");
-                return true;
-            } else {
-                // check to see if this is a text node child of the one we want
-                var p = node.parentNode;
-                // YAHOO.log("p: " + p);
-
-                while (p) {
-                    if (this.isHandle(id, p.id)) {
-                        return true;
-                    } else {
-                        YAHOO.log(p.id + " is not a handle", "info", "DragDropMgr");
-                        p = p.parentNode;
-                    }
-                }
-            }
-
-            return false;
-        }
-
-    };
-
-}();
-
-// shorter alias, save a few bytes
-YAHOO.util.DDM = YAHOO.util.DragDropMgr;
-YAHOO.util.DDM._addListeners();
-
-}
-
-(function() {
-
-var Event=YAHOO.util.Event; 
-var Dom=YAHOO.util.Dom;
-
-/**
- * Defines the interface and base operation of items that that can be 
- * dragged or can be drop targets.  It was designed to be extended, overriding
- * the event handlers for startDrag, onDrag, onDragOver, onDragOut.
- * Up to three html elements can be associated with a DragDrop instance:
- * <ul>
- * <li>linked element: the element that is passed into the constructor.
- * This is the element which defines the boundaries for interaction with 
- * other DragDrop objects.</li>
- * <li>handle element(s): The drag operation only occurs if the element that 
- * was clicked matches a handle element.  By default this is the linked 
- * element, but there are times that you will want only a portion of the 
- * linked element to initiate the drag operation, and the setHandleElId() 
- * method provides a way to define this.</li>
- * <li>drag element: this represents an the element that would be moved along
- * with the cursor during a drag operation.  By default, this is the linked
- * element itself as in {@link YAHOO.util.DD}.  setDragElId() lets you define
- * a separate element that would be moved, as in {@link YAHOO.util.DDProxy}
- * </li>
- * </ul>
- * This class should not be instantiated until the onload event to ensure that
- * the associated elements are available.
- * The following would define a DragDrop obj that would interact with any 
- * other DragDrop obj in the "group1" group:
- * <pre>
- *  dd = new YAHOO.util.DragDrop("div1", "group1");
- * </pre>
- * Since none of the event handlers have been implemented, nothing would 
- * actually happen if you were to run the code above.  Normally you would 
- * override this class or one of the default implementations, but you can 
- * also override the methods you want on an instance of the class...
- * <pre>
- *  dd.onDragDrop = function(e, id) {
- *  &nbsp;&nbsp;alert("dd was dropped on " + id);
- *  }
- * </pre>
- * @namespace YAHOO.util
- * @class DragDrop
- * @constructor
- * @param {String} id of the element that is linked to this instance
- * @param {String} sGroup the group of related DragDrop objects
- * @param {object} config an object containing configurable attributes
- *                Valid properties for DragDrop: 
- *                    padding, isTarget, maintainOffset, primaryButtonOnly,
- */
-YAHOO.util.DragDrop = function(id, sGroup, config) {
-    if (id) {
-        this.init(id, sGroup, config); 
-    }
-};
-
-YAHOO.util.DragDrop.prototype = {
-    /**
-     * An Object Literal containing the events that we will be using: mouseDown, b4MouseDown, mouseUp, b4StartDrag, startDrag, b4EndDrag, endDrag, mouseUp, drag, b4Drag, invalidDrop, b4DragOut, dragOut, dragEnter, b4DragOver, dragOver, b4DragDrop, dragDrop
-     * By setting any of these to false, then event will not be fired.
-     * @property events
-     * @type object
-     */
-    events: null,
-    /**
-    * @method on
-    * @description Shortcut for EventProvider.subscribe, see <a href="YAHOO.util.EventProvider.html#subscribe">YAHOO.util.EventProvider.subscribe</a>
-    */
-    on: function() {
-        this.subscribe.apply(this, arguments);
-    },
-    /**
-     * The id of the element associated with this object.  This is what we 
-     * refer to as the "linked element" because the size and position of 
-     * this element is used to determine when the drag and drop objects have 
-     * interacted.
-     * @property id
-     * @type String
-     */
-    id: null,
-
-    /**
-     * Configuration attributes passed into the constructor
-     * @property config
-     * @type object
-     */
-    config: null,
-
-    /**
-     * The id of the element that will be dragged.  By default this is same 
-     * as the linked element , but could be changed to another element. Ex: 
-     * YAHOO.util.DDProxy
-     * @property dragElId
-     * @type String
-     * @private
-     */
-    dragElId: null, 
-
-    /**
-     * the id of the element that initiates the drag operation.  By default 
-     * this is the linked element, but could be changed to be a child of this
-     * element.  This lets us do things like only starting the drag when the 
-     * header element within the linked html element is clicked.
-     * @property handleElId
-     * @type String
-     * @private
-     */
-    handleElId: null, 
-
-    /**
-     * An associative array of HTML tags that will be ignored if clicked.
-     * @property invalidHandleTypes
-     * @type {string: string}
-     */
-    invalidHandleTypes: null, 
-
-    /**
-     * An associative array of ids for elements that will be ignored if clicked
-     * @property invalidHandleIds
-     * @type {string: string}
-     */
-    invalidHandleIds: null, 
-
-    /**
-     * An indexted array of css class names for elements that will be ignored
-     * if clicked.
-     * @property invalidHandleClasses
-     * @type string[]
-     */
-    invalidHandleClasses: null, 
-
-    /**
-     * The linked element's absolute X position at the time the drag was 
-     * started
-     * @property startPageX
-     * @type int
-     * @private
-     */
-    startPageX: 0,
-
-    /**
-     * The linked element's absolute X position at the time the drag was 
-     * started
-     * @property startPageY
-     * @type int
-     * @private
-     */
-    startPageY: 0,
-
-    /**
-     * The group defines a logical collection of DragDrop objects that are 
-     * related.  Instances only get events when interacting with other 
-     * DragDrop object in the same group.  This lets us define multiple 
-     * groups using a single DragDrop subclass if we want.
-     * @property groups
-     * @type {string: string}
-     */
-    groups: null,
-
-    /**
-     * Individual drag/drop instances can be locked.  This will prevent 
-     * onmousedown start drag.
-     * @property locked
-     * @type boolean
-     * @private
-     */
-    locked: false,
-
-    /**
-     * Lock this instance
-     * @method lock
-     */
-    lock: function() { this.locked = true; },
-
-    /**
-     * Unlock this instace
-     * @method unlock
-     */
-    unlock: function() { this.locked = false; },
-
-    /**
-     * By default, all instances can be a drop target.  This can be disabled by
-     * setting isTarget to false.
-     * @property isTarget
-     * @type boolean
-     */
-    isTarget: true,
-
-    /**
-     * The padding configured for this drag and drop object for calculating
-     * the drop zone intersection with this object.
-     * @property padding
-     * @type int[]
-     */
-    padding: null,
-    /**
-     * If this flag is true, do not fire drop events. The element is a drag only element (for movement not dropping)
-     * @property dragOnly
-     * @type Boolean
-     */
-    dragOnly: false,
-
-    /**
-     * If this flag is true, a shim will be placed over the screen/viewable area to track mouse events. Should help with dragging elements over iframes and other controls.
-     * @property useShim
-     * @type Boolean
-     */
-    useShim: false,
-
-    /**
-     * Cached reference to the linked element
-     * @property _domRef
-     * @private
-     */
-    _domRef: null,
-
-    /**
-     * Internal typeof flag
-     * @property __ygDragDrop
-     * @private
-     */
-    __ygDragDrop: true,
-
-    /**
-     * Set to true when horizontal contraints are applied
-     * @property constrainX
-     * @type boolean
-     * @private
-     */
-    constrainX: false,
-
-    /**
-     * Set to true when vertical contraints are applied
-     * @property constrainY
-     * @type boolean
-     * @private
-     */
-    constrainY: false,
-
-    /**
-     * The left constraint
-     * @property minX
-     * @type int
-     * @private
-     */
-    minX: 0,
-
-    /**
-     * The right constraint
-     * @property maxX
-     * @type int
-     * @private
-     */
-    maxX: 0,
-
-    /**
-     * The up constraint 
-     * @property minY
-     * @type int
-     * @type int
-     * @private
-     */
-    minY: 0,
-
-    /**
-     * The down constraint 
-     * @property maxY
-     * @type int
-     * @private
-     */
-    maxY: 0,
-
-    /**
-     * The difference between the click position and the source element's location
-     * @property deltaX
-     * @type int
-     * @private
-     */
-    deltaX: 0,
-
-    /**
-     * The difference between the click position and the source element's location
-     * @property deltaY
-     * @type int
-     * @private
-     */
-    deltaY: 0,
-
-    /**
-     * Maintain offsets when we resetconstraints.  Set to true when you want
-     * the position of the element relative to its parent to stay the same
-     * when the page changes
-     *
-     * @property maintainOffset
-     * @type boolean
-     */
-    maintainOffset: false,
-
-    /**
-     * Array of pixel locations the element will snap to if we specified a 
-     * horizontal graduation/interval.  This array is generated automatically
-     * when you define a tick interval.
-     * @property xTicks
-     * @type int[]
-     */
-    xTicks: null,
-
-    /**
-     * Array of pixel locations the element will snap to if we specified a 
-     * vertical graduation/interval.  This array is generated automatically 
-     * when you define a tick interval.
-     * @property yTicks
-     * @type int[]
-     */
-    yTicks: null,
-
-    /**
-     * By default the drag and drop instance will only respond to the primary
-     * button click (left button for a right-handed mouse).  Set to true to
-     * allow drag and drop to start with any mouse click that is propogated
-     * by the browser
-     * @property primaryButtonOnly
-     * @type boolean
-     */
-    primaryButtonOnly: true,
-
-    /**
-     * The availabe property is false until the linked dom element is accessible.
-     * @property available
-     * @type boolean
-     */
-    available: false,
-
-    /**
-     * By default, drags can only be initiated if the mousedown occurs in the
-     * region the linked element is.  This is done in part to work around a
-     * bug in some browsers that mis-report the mousedown if the previous
-     * mouseup happened outside of the window.  This property is set to true
-     * if outer handles are defined.
-     *
-     * @property hasOuterHandles
-     * @type boolean
-     * @default false
-     */
-    hasOuterHandles: false,
-
-    /**
-     * Property that is assigned to a drag and drop object when testing to
-     * see if it is being targeted by another dd object.  This property
-     * can be used in intersect mode to help determine the focus of
-     * the mouse interaction.  DDM.getBestMatch uses this property first to
-     * determine the closest match in INTERSECT mode when multiple targets
-     * are part of the same interaction.
-     * @property cursorIsOver
-     * @type boolean
-     */
-    cursorIsOver: false,
-
-    /**
-     * Property that is assigned to a drag and drop object when testing to
-     * see if it is being targeted by another dd object.  This is a region
-     * that represents the area the draggable element overlaps this target.
-     * DDM.getBestMatch uses this property to compare the size of the overlap
-     * to that of other targets in order to determine the closest match in
-     * INTERSECT mode when multiple targets are part of the same interaction.
-     * @property overlap 
-     * @type YAHOO.util.Region
-     */
-    overlap: null,
-
-    /**
-     * Code that executes immediately before the startDrag event
-     * @method b4StartDrag
-     * @private
-     */
-    b4StartDrag: function(x, y) { },
-
-    /**
-     * Abstract method called after a drag/drop object is clicked
-     * and the drag or mousedown time thresholds have beeen met.
-     * @method startDrag
-     * @param {int} X click location
-     * @param {int} Y click location
-     */
-    startDrag: function(x, y) { /* override this */ },
-
-    /**
-     * Code that executes immediately before the onDrag event
-     * @method b4Drag
-     * @private
-     */
-    b4Drag: function(e) { },
-
-    /**
-     * Abstract method called during the onMouseMove event while dragging an 
-     * object.
-     * @method onDrag
-     * @param {Event} e the mousemove event
-     */
-    onDrag: function(e) { /* override this */ },
-
-    /**
-     * Abstract method called when this element fist begins hovering over 
-     * another DragDrop obj
-     * @method onDragEnter
-     * @param {Event} e the mousemove event
-     * @param {String|DragDrop[]} id In POINT mode, the element
-     * id this is hovering over.  In INTERSECT mode, an array of one or more 
-     * dragdrop items being hovered over.
-     */
-    onDragEnter: function(e, id) { /* override this */ },
-
-    /**
-     * Code that executes immediately before the onDragOver event
-     * @method b4DragOver
-     * @private
-     */
-    b4DragOver: function(e) { },
-
-    /**
-     * Abstract method called when this element is hovering over another 
-     * DragDrop obj
-     * @method onDragOver
-     * @param {Event} e the mousemove event
-     * @param {String|DragDrop[]} id In POINT mode, the element
-     * id this is hovering over.  In INTERSECT mode, an array of dd items 
-     * being hovered over.
-     */
-    onDragOver: function(e, id) { /* override this */ },
-
-    /**
-     * Code that executes immediately before the onDragOut event
-     * @method b4DragOut
-     * @private
-     */
-    b4DragOut: function(e) { },
-
-    /**
-     * Abstract method called when we are no longer hovering over an element
-     * @method onDragOut
-     * @param {Event} e the mousemove event
-     * @param {String|DragDrop[]} id In POINT mode, the element
-     * id this was hovering over.  In INTERSECT mode, an array of dd items 
-     * that the mouse is no longer over.
-     */
-    onDragOut: function(e, id) { /* override this */ },
-
-    /**
-     * Code that executes immediately before the onDragDrop event
-     * @method b4DragDrop
-     * @private
-     */
-    b4DragDrop: function(e) { },
-
-    /**
-     * Abstract method called when this item is dropped on another DragDrop 
-     * obj
-     * @method onDragDrop
-     * @param {Event} e the mouseup event
-     * @param {String|DragDrop[]} id In POINT mode, the element
-     * id this was dropped on.  In INTERSECT mode, an array of dd items this 
-     * was dropped on.
-     */
-    onDragDrop: function(e, id) { /* override this */ },
-
-    /**
-     * Abstract method called when this item is dropped on an area with no
-     * drop target
-     * @method onInvalidDrop
-     * @param {Event} e the mouseup event
-     */
-    onInvalidDrop: function(e) { /* override this */ },
-
-    /**
-     * Code that executes immediately before the endDrag event
-     * @method b4EndDrag
-     * @private
-     */
-    b4EndDrag: function(e) { },
-
-    /**
-     * Fired when we are done dragging the object
-     * @method endDrag
-     * @param {Event} e the mouseup event
-     */
-    endDrag: function(e) { /* override this */ },
-
-    /**
-     * Code executed immediately before the onMouseDown event
-     * @method b4MouseDown
-     * @param {Event} e the mousedown event
-     * @private
-     */
-    b4MouseDown: function(e) {  },
-
-    /**
-     * Event handler that fires when a drag/drop obj gets a mousedown
-     * @method onMouseDown
-     * @param {Event} e the mousedown event
-     */
-    onMouseDown: function(e) { /* override this */ },
-
-    /**
-     * Event handler that fires when a drag/drop obj gets a mouseup
-     * @method onMouseUp
-     * @param {Event} e the mouseup event
-     */
-    onMouseUp: function(e) { /* override this */ },
-   
-    /**
-     * Override the onAvailable method to do what is needed after the initial
-     * position was determined.
-     * @method onAvailable
-     */
-    onAvailable: function () { 
-        //this.logger.log("onAvailable (base)"); 
-    },
-
-    /**
-     * Returns a reference to the linked element
-     * @method getEl
-     * @return {HTMLElement} the html element 
-     */
-    getEl: function() { 
-        if (!this._domRef) {
-            this._domRef = Dom.get(this.id); 
-        }
-
-        return this._domRef;
-    },
-
-    /**
-     * Returns a reference to the actual element to drag.  By default this is
-     * the same as the html element, but it can be assigned to another 
-     * element. An example of this can be found in YAHOO.util.DDProxy
-     * @method getDragEl
-     * @return {HTMLElement} the html element 
-     */
-    getDragEl: function() {
-        return Dom.get(this.dragElId);
-    },
-
-    /**
-     * Sets up the DragDrop object.  Must be called in the constructor of any
-     * YAHOO.util.DragDrop subclass
-     * @method init
-     * @param id the id of the linked element
-     * @param {String} sGroup the group of related items
-     * @param {object} config configuration attributes
-     */
-    init: function(id, sGroup, config) {
-        this.initTarget(id, sGroup, config);
-        Event.on(this._domRef || this.id, "mousedown", 
-                        this.handleMouseDown, this, true);
-
-        // Event.on(this.id, "selectstart", Event.preventDefault);
-        for (var i in this.events) {
-            this.createEvent(i + 'Event');
-        }
-        
-    },
-
-    /**
-     * Initializes Targeting functionality only... the object does not
-     * get a mousedown handler.
-     * @method initTarget
-     * @param id the id of the linked element
-     * @param {String} sGroup the group of related items
-     * @param {object} config configuration attributes
-     */
-    initTarget: function(id, sGroup, config) {
-
-        // configuration attributes 
-        this.config = config || {};
-
-        this.events = {};
-
-        // create a local reference to the drag and drop manager
-        this.DDM = YAHOO.util.DDM;
-
-        // initialize the groups object
-        this.groups = {};
-
-        // assume that we have an element reference instead of an id if the
-        // parameter is not a string
-        if (typeof id !== "string") {
-            YAHOO.log("id is not a string, assuming it is an HTMLElement");
-            this._domRef = id;
-            id = Dom.generateId(id);
-        }
-
-        // set the id
-        this.id = id;
-
-        // add to an interaction group
-        this.addToGroup((sGroup) ? sGroup : "default");
-
-        // We don't want to register this as the handle with the manager
-        // so we just set the id rather than calling the setter.
-        this.handleElId = id;
-
-        Event.onAvailable(id, this.handleOnAvailable, this, true);
-
-        // create a logger instance
-        this.logger = (YAHOO.widget.LogWriter) ? 
-                new YAHOO.widget.LogWriter(this.toString()) : YAHOO;
-
-        // the linked element is the element that gets dragged by default
-        this.setDragElId(id); 
-
-        // by default, clicked anchors will not start drag operations. 
-        // @TODO what else should be here?  Probably form fields.
-        this.invalidHandleTypes = { A: "A" };
-        this.invalidHandleIds = {};
-        this.invalidHandleClasses = [];
-
-        this.applyConfig();
-    },
-
-    /**
-     * Applies the configuration parameters that were passed into the constructor.
-     * This is supposed to happen at each level through the inheritance chain.  So
-     * a DDProxy implentation will execute apply config on DDProxy, DD, and 
-     * DragDrop in order to get all of the parameters that are available in
-     * each object.
-     * @method applyConfig
-     */
-    applyConfig: function() {
-        this.events = {
-            mouseDown: true,
-            b4MouseDown: true,
-            mouseUp: true,
-            b4StartDrag: true,
-            startDrag: true,
-            b4EndDrag: true,
-            endDrag: true,
-            drag: true,
-            b4Drag: true,
-            invalidDrop: true,
-            b4DragOut: true,
-            dragOut: true,
-            dragEnter: true,
-            b4DragOver: true,
-            dragOver: true,
-            b4DragDrop: true,
-            dragDrop: true
-        };
-        
-        if (this.config.events) {
-            for (var i in this.config.events) {
-                if (this.config.events[i] === false) {
-                    this.events[i] = false;
-                }
-            }
-        }
-
-
-        // configurable properties: 
-        //    padding, isTarget, maintainOffset, primaryButtonOnly
-        this.padding           = this.config.padding || [0, 0, 0, 0];
-        this.isTarget          = (this.config.isTarget !== false);
-        this.maintainOffset    = (this.config.maintainOffset);
-        this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
-        this.dragOnly = ((this.config.dragOnly === true) ? true : false);
-        this.useShim = ((this.config.useShim === true) ? true : false);
-    },
-
-    /**
-     * Executed when the linked element is available
-     * @method handleOnAvailable
-     * @private
-     */
-    handleOnAvailable: function() {
-        //this.logger.log("handleOnAvailable");
-        this.available = true;
-        this.resetConstraints();
-        this.onAvailable();
-    },
-
-     /**
-     * Configures the padding for the target zone in px.  Effectively expands
-     * (or reduces) the virtual object size for targeting calculations.  
-     * Supports css-style shorthand; if only one parameter is passed, all sides
-     * will have that padding, and if only two are passed, the top and bottom
-     * will have the first param, the left and right the second.
-     * @method setPadding
-     * @param {int} iTop    Top pad
-     * @param {int} iRight  Right pad
-     * @param {int} iBot    Bot pad
-     * @param {int} iLeft   Left pad
-     */
-    setPadding: function(iTop, iRight, iBot, iLeft) {
-        // this.padding = [iLeft, iRight, iTop, iBot];
-        if (!iRight && 0 !== iRight) {
-            this.padding = [iTop, iTop, iTop, iTop];
-        } else if (!iBot && 0 !== iBot) {
-            this.padding = [iTop, iRight, iTop, iRight];
-        } else {
-            this.padding = [iTop, iRight, iBot, iLeft];
-        }
-    },
-
-    /**
-     * Stores the initial placement of the linked element.
-     * @method setInitialPosition
-     * @param {int} diffX   the X offset, default 0
-     * @param {int} diffY   the Y offset, default 0
-     * @private
-     */
-    setInitPosition: function(diffX, diffY) {
-        var el = this.getEl();
-
-        if (!this.DDM.verifyEl(el)) {
-            if (el && el.style && (el.style.display == 'none')) {
-                this.logger.log(this.id + " can not get initial position, element style is display: none");
-            } else {
-                this.logger.log(this.id + " element is broken");
-            }
-            return;
-        }
-
-        var dx = diffX || 0;
-        var dy = diffY || 0;
-
-        var p = Dom.getXY( el );
-
-        this.initPageX = p[0] - dx;
-        this.initPageY = p[1] - dy;
-
-        this.lastPageX = p[0];
-        this.lastPageY = p[1];
-
-        this.logger.log(this.id + " initial position: " + this.initPageX + 
-                ", " + this.initPageY);
-
-
-        this.setStartPosition(p);
-    },
-
-    /**
-     * Sets the start position of the element.  This is set when the obj
-     * is initialized, the reset when a drag is started.
-     * @method setStartPosition
-     * @param pos current position (from previous lookup)
-     * @private
-     */
-    setStartPosition: function(pos) {
-        var p = pos || Dom.getXY(this.getEl());
-
-        this.deltaSetXY = null;
-
-        this.startPageX = p[0];
-        this.startPageY = p[1];
-    },
-
-    /**
-     * Add this instance to a group of related drag/drop objects.  All 
-     * instances belong to at least one group, and can belong to as many 
-     * groups as needed.
-     * @method addToGroup
-     * @param sGroup {string} the name of the group
-     */
-    addToGroup: function(sGroup) {
-        this.groups[sGroup] = true;
-        this.DDM.regDragDrop(this, sGroup);
-    },
-
-    /**
-     * Remove's this instance from the supplied interaction group
-     * @method removeFromGroup
-     * @param {string}  sGroup  The group to drop
-     */
-    removeFromGroup: function(sGroup) {
-        this.logger.log("Removing from group: " + sGroup);
-        if (this.groups[sGroup]) {
-            delete this.groups[sGroup];
-        }
-
-        this.DDM.removeDDFromGroup(this, sGroup);
-    },
-
-    /**
-     * Allows you to specify that an element other than the linked element 
-     * will be moved with the cursor during a drag
-     * @method setDragElId
-     * @param id {string} the id of the element that will be used to initiate the drag
-     */
-    setDragElId: function(id) {
-        this.dragElId = id;
-    },
-
-    /**
-     * Allows you to specify a child of the linked element that should be 
-     * used to initiate the drag operation.  An example of this would be if 
-     * you have a content div with text and links.  Clicking anywhere in the 
-     * content area would normally start the drag operation.  Use this method
-     * to specify that an element inside of the content div is the element 
-     * that starts the drag operation.
-     * @method setHandleElId
-     * @param id {string} the id of the element that will be used to 
-     * initiate the drag.
-     */
-    setHandleElId: function(id) {
-        if (typeof id !== "string") {
-            YAHOO.log("id is not a string, assuming it is an HTMLElement");
-            id = Dom.generateId(id);
-        }
-        this.handleElId = id;
-        this.DDM.regHandle(this.id, id);
-    },
-
-    /**
-     * Allows you to set an element outside of the linked element as a drag 
-     * handle
-     * @method setOuterHandleElId
-     * @param id the id of the element that will be used to initiate the drag
-     */
-    setOuterHandleElId: function(id) {
-        if (typeof id !== "string") {
-            YAHOO.log("id is not a string, assuming it is an HTMLElement");
-            id = Dom.generateId(id);
-        }
-        this.logger.log("Adding outer handle event: " + id);
-        Event.on(id, "mousedown", 
-                this.handleMouseDown, this, true);
-        this.setHandleElId(id);
-
-        this.hasOuterHandles = true;
-    },
-
-    /**
-     * Remove all drag and drop hooks for this element
-     * @method unreg
-     */
-    unreg: function() {
-        this.logger.log("DragDrop obj cleanup " + this.id);
-        Event.removeListener(this.id, "mousedown", 
-                this.handleMouseDown);
-        this._domRef = null;
-        this.DDM._remove(this);
-    },
-
-    /**
-     * Returns true if this instance is locked, or the drag drop mgr is locked
-     * (meaning that all drag/drop is disabled on the page.)
-     * @method isLocked
-     * @return {boolean} true if this obj or all drag/drop is locked, else 
-     * false
-     */
-    isLocked: function() {
-        return (this.DDM.isLocked() || this.locked);
-    },
-
-    /**
-     * Fired when this object is clicked
-     * @method handleMouseDown
-     * @param {Event} e 
-     * @param {YAHOO.util.DragDrop} oDD the clicked dd object (this dd obj)
-     * @private
-     */
-    handleMouseDown: function(e, oDD) {
-
-        var button = e.which || e.button;
-        this.logger.log("button: " + button);
-
-        if (this.primaryButtonOnly && button > 1) {
-            this.logger.log("Mousedown was not produced by the primary button");
-            return;
-        }
-
-        if (this.isLocked()) {
-            this.logger.log("Drag and drop is disabled, aborting");
-            return;
-        }
-
-        this.logger.log("mousedown " + this.id);
-
-        this.logger.log("firing onMouseDown events");
-
-        // firing the mousedown events prior to calculating positions
-        var b4Return = this.b4MouseDown(e),
-        b4Return2 = true;
-
-        if (this.events.b4MouseDown) {
-            b4Return2 = this.fireEvent('b4MouseDownEvent', e);
-        }
-        var mDownReturn = this.onMouseDown(e),
-            mDownReturn2 = true;
-        if (this.events.mouseDown) {
-            mDownReturn2 = this.fireEvent('mouseDownEvent', e);
-        }
-
-        if ((b4Return === false) || (mDownReturn === false) || (b4Return2 === false) || (mDownReturn2 === false)) {
-            this.logger.log('b4MouseDown or onMouseDown returned false, exiting drag');
-            return;
-        }
-
-        this.DDM.refreshCache(this.groups);
-        // var self = this;
-        // setTimeout( function() { self.DDM.refreshCache(self.groups); }, 0);
-
-        // Only process the event if we really clicked within the linked 
-        // element.  The reason we make this check is that in the case that 
-        // another element was moved between the clicked element and the 
-        // cursor in the time between the mousedown and mouseup events. When 
-        // this happens, the element gets the next mousedown event 
-        // regardless of where on the screen it happened.  
-        var pt = new YAHOO.util.Point(Event.getPageX(e), Event.getPageY(e));
-        if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
-                this.logger.log("Click was not over the element: " + this.id);
-        } else {
-            if (this.clickValidator(e)) {
-
-                this.logger.log("click was a valid handle");
-
-                // set the initial element position
-                this.setStartPosition();
-
-                // start tracking mousemove distance and mousedown time to
-                // determine when to start the actual drag
-                this.DDM.handleMouseDown(e, this);
-
-                // this mousedown is mine
-                this.DDM.stopEvent(e);
-            } else {
-
-this.logger.log("clickValidator returned false, drag not initiated");
-
-            }
-        }
-    },
-
-    /**
-     * @method clickValidator
-     * @description Method validates that the clicked element
-     * was indeed the handle or a valid child of the handle
-     * @param {Event} e 
-     */
-    clickValidator: function(e) {
-        var target = YAHOO.util.Event.getTarget(e);
-        return ( this.isValidHandleChild(target) &&
-                    (this.id == this.handleElId || 
-                        this.DDM.handleWasClicked(target, this.id)) );
-    },
-
-    /**
-     * Finds the location the element should be placed if we want to move
-     * it to where the mouse location less the click offset would place us.
-     * @method getTargetCoord
-     * @param {int} iPageX the X coordinate of the click
-     * @param {int} iPageY the Y coordinate of the click
-     * @return an object that contains the coordinates (Object.x and Object.y)
-     * @private
-     */
-    getTargetCoord: function(iPageX, iPageY) {
-
-        // this.logger.log("getTargetCoord: " + iPageX + ", " + iPageY);
-
-        var x = iPageX - this.deltaX;
-        var y = iPageY - this.deltaY;
-
-        if (this.constrainX) {
-            if (x < this.minX) { x = this.minX; }
-            if (x > this.maxX) { x = this.maxX; }
-        }
-
-        if (this.constrainY) {
-            if (y < this.minY) { y = this.minY; }
-            if (y > this.maxY) { y = this.maxY; }
-        }
-
-        x = this.getTick(x, this.xTicks);
-        y = this.getTick(y, this.yTicks);
-
-        // this.logger.log("getTargetCoord " + 
-                // " iPageX: " + iPageX +
-                // " iPageY: " + iPageY +
-                // " x: " + x + ", y: " + y);
-
-        return {x:x, y:y};
-    },
-
-    /**
-     * Allows you to specify a tag name that should not start a drag operation
-     * when clicked.  This is designed to facilitate embedding links within a
-     * drag handle that do something other than start the drag.
-     * @method addInvalidHandleType
-     * @param {string} tagName the type of element to exclude
-     */
-    addInvalidHandleType: function(tagName) {
-        var type = tagName.toUpperCase();
-        this.invalidHandleTypes[type] = type;
-    },
-
-    /**
-     * Lets you to specify an element id for a child of a drag handle
-     * that should not initiate a drag
-     * @method addInvalidHandleId
-     * @param {string} id the element id of the element you wish to ignore
-     */
-    addInvalidHandleId: function(id) {
-        if (typeof id !== "string") {
-            YAHOO.log("id is not a string, assuming it is an HTMLElement");
-            id = Dom.generateId(id);
-        }
-        this.invalidHandleIds[id] = id;
-    },
-
-
-    /**
-     * Lets you specify a css class of elements that will not initiate a drag
-     * @method addInvalidHandleClass
-     * @param {string} cssClass the class of the elements you wish to ignore
-     */
-    addInvalidHandleClass: function(cssClass) {
-        this.invalidHandleClasses.push(cssClass);
-    },
-
-    /**
-     * Unsets an excluded tag name set by addInvalidHandleType
-     * @method removeInvalidHandleType
-     * @param {string} tagName the type of element to unexclude
-     */
-    removeInvalidHandleType: function(tagName) {
-        var type = tagName.toUpperCase();
-        // this.invalidHandleTypes[type] = null;
-        delete this.invalidHandleTypes[type];
-    },
-    
-    /**
-     * Unsets an invalid handle id
-     * @method removeInvalidHandleId
-     * @param {string} id the id of the element to re-enable
-     */
-    removeInvalidHandleId: function(id) {
-        if (typeof id !== "string") {
-            YAHOO.log("id is not a string, assuming it is an HTMLElement");
-            id = Dom.generateId(id);
-        }
-        delete this.invalidHandleIds[id];
-    },
-
-    /**
-     * Unsets an invalid css class
-     * @method removeInvalidHandleClass
-     * @param {string} cssClass the class of the element(s) you wish to 
-     * re-enable
-     */
-    removeInvalidHandleClass: function(cssClass) {
-        for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
-            if (this.invalidHandleClasses[i] == cssClass) {
-                delete this.invalidHandleClasses[i];
-            }
-        }
-    },
-
-    /**
-     * Checks the tag exclusion list to see if this click should be ignored
-     * @method isValidHandleChild
-     * @param {HTMLElement} node the HTMLElement to evaluate
-     * @return {boolean} true if this is a valid tag type, false if not
-     */
-    isValidHandleChild: function(node) {
-
-        var valid = true;
-        // var n = (node.nodeName == "#text") ? node.parentNode : node;
-        var nodeName;
-        try {
-            nodeName = node.nodeName.toUpperCase();
-        } catch(e) {
-            nodeName = node.nodeName;
-        }
-        valid = valid && !this.invalidHandleTypes[nodeName];
-        valid = valid && !this.invalidHandleIds[node.id];
-
-        for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
-            valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
-        }
-
-        this.logger.log("Valid handle? ... " + valid);
-
-        return valid;
-
-    },
-
-    /**
-     * Create the array of horizontal tick marks if an interval was specified
-     * in setXConstraint().
-     * @method setXTicks
-     * @private
-     */
-    setXTicks: function(iStartX, iTickSize) {
-        this.xTicks = [];
-        this.xTickSize = iTickSize;
-        
-        var tickMap = {};
-
-        for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
-            if (!tickMap[i]) {
-                this.xTicks[this.xTicks.length] = i;
-                tickMap[i] = true;
-            }
-        }
-
-        for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
-            if (!tickMap[i]) {
-                this.xTicks[this.xTicks.length] = i;
-                tickMap[i] = true;
-            }
-        }
-
-        this.xTicks.sort(this.DDM.numericSort) ;
-        this.logger.log("xTicks: " + this.xTicks.join());
-    },
-
-    /**
-     * Create the array of vertical tick marks if an interval was specified in 
-     * setYConstraint().
-     * @method setYTicks
-     * @private
-     */
-    setYTicks: function(iStartY, iTickSize) {
-        // this.logger.log("setYTicks: " + iStartY + ", " + iTickSize
-               // + ", " + this.initPageY + ", " + this.minY + ", " + this.maxY );
-        this.yTicks = [];
-        this.yTickSize = iTickSize;
-
-        var tickMap = {};
-
-        for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
-            if (!tickMap[i]) {
-                this.yTicks[this.yTicks.length] = i;
-                tickMap[i] = true;
-            }
-        }
-
-        for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
-            if (!tickMap[i]) {
-                this.yTicks[this.yTicks.length] = i;
-                tickMap[i] = true;
-            }
-        }
-
-        this.yTicks.sort(this.DDM.numericSort) ;
-        this.logger.log("yTicks: " + this.yTicks.join());
-    },
-
-    /**
-     * By default, the element can be dragged any place on the screen.  Use 
-     * this method to limit the horizontal travel of the element.  Pass in 
-     * 0,0 for the parameters if you want to lock the drag to the y axis.
-     * @method setXConstraint
-     * @param {int} iLeft the number of pixels the element can move to the left
-     * @param {int} iRight the number of pixels the element can move to the 
-     * right
-     * @param {int} iTickSize optional parameter for specifying that the 
-     * element
-     * should move iTickSize pixels at a time.
-     */
-    setXConstraint: function(iLeft, iRight, iTickSize) {
-        this.leftConstraint = parseInt(iLeft, 10);
-        this.rightConstraint = parseInt(iRight, 10);
-
-        this.minX = this.initPageX - this.leftConstraint;
-        this.maxX = this.initPageX + this.rightConstraint;
-        if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
-
-        this.constrainX = true;
-        this.logger.log("initPageX:" + this.initPageX + " minX:" + this.minX + 
-                " maxX:" + this.maxX);
-    },
-
-    /**
-     * Clears any constraints applied to this instance.  Also clears ticks
-     * since they can't exist independent of a constraint at this time.
-     * @method clearConstraints
-     */
-    clearConstraints: function() {
-        this.logger.log("Clearing constraints");
-        this.constrainX = false;
-        this.constrainY = false;
-        this.clearTicks();
-    },
-
-    /**
-     * Clears any tick interval defined for this instance
-     * @method clearTicks
-     */
-    clearTicks: function() {
-        this.logger.log("Clearing ticks");
-        this.xTicks = null;
-        this.yTicks = null;
-        this.xTickSize = 0;
-        this.yTickSize = 0;
-    },
-
-    /**
-     * By default, the element can be dragged any place on the screen.  Set 
-     * this to limit the vertical travel of the element.  Pass in 0,0 for the
-     * parameters if you want to lock the drag to the x axis.
-     * @method setYConstraint
-     * @param {int} iUp the number of pixels the element can move up
-     * @param {int} iDown the number of pixels the element can move down
-     * @param {int} iTickSize optional parameter for specifying that the 
-     * element should move iTickSize pixels at a time.
-     */
-    setYConstraint: function(iUp, iDown, iTickSize) {
-        this.logger.log("setYConstraint: " + iUp + "," + iDown + "," + iTickSize);
-        this.topConstraint = parseInt(iUp, 10);
-        this.bottomConstraint = parseInt(iDown, 10);
-
-        this.minY = this.initPageY - this.topConstraint;
-        this.maxY = this.initPageY + this.bottomConstraint;
-        if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
-
-        this.constrainY = true;
-        
-        this.logger.log("initPageY:" + this.initPageY + " minY:" + this.minY + 
-                " maxY:" + this.maxY);
-    },
-
-    /**
-     * resetConstraints must be called if you manually reposition a dd element.
-     * @method resetConstraints
-     */
-    resetConstraints: function() {
-
-        //this.logger.log("resetConstraints");
-
-        // Maintain offsets if necessary
-        if (this.initPageX || this.initPageX === 0) {
-            //this.logger.log("init pagexy: " + this.initPageX + ", " + 
-                               //this.initPageY);
-            //this.logger.log("last pagexy: " + this.lastPageX + ", " + 
-                               //this.lastPageY);
-            // figure out how much this thing has moved
-            var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
-            var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
-
-            this.setInitPosition(dx, dy);
-
-        // This is the first time we have detected the element's position
-        } else {
-            this.setInitPosition();
-        }
-
-        if (this.constrainX) {
-            this.setXConstraint( this.leftConstraint, 
-                                 this.rightConstraint, 
-                                 this.xTickSize        );
-        }
-
-        if (this.constrainY) {
-            this.setYConstraint( this.topConstraint, 
-                                 this.bottomConstraint, 
-                                 this.yTickSize         );
-        }
-    },
-
-    /**
-     * Normally the drag element is moved pixel by pixel, but we can specify 
-     * that it move a number of pixels at a time.  This method resolves the 
-     * location when we have it set up like this.
-     * @method getTick
-     * @param {int} val where we want to place the object
-     * @param {int[]} tickArray sorted array of valid points
-     * @return {int} the closest tick
-     * @private
-     */
-    getTick: function(val, tickArray) {
-
-        if (!tickArray) {
-            // If tick interval is not defined, it is effectively 1 pixel, 
-            // so we return the value passed to us.
-            return val; 
-        } else if (tickArray[0] >= val) {
-            // The value is lower than the first tick, so we return the first
-            // tick.
-            return tickArray[0];
-        } else {
-            for (var i=0, len=tickArray.length; i<len; ++i) {
-                var next = i + 1;
-                if (tickArray[next] && tickArray[next] >= val) {
-                    var diff1 = val - tickArray[i];
-                    var diff2 = tickArray[next] - val;
-                    return (diff2 > diff1) ? tickArray[i] : tickArray[next];
-                }
-            }
-
-            // The value is larger than the last tick, so we return the last
-            // tick.
-            return tickArray[tickArray.length - 1];
-        }
-    },
-
-    /**
-     * toString method
-     * @method toString
-     * @return {string} string representation of the dd obj
-     */
-    toString: function() {
-        return ("DragDrop " + this.id);
-    }
-
-};
-YAHOO.augment(YAHOO.util.DragDrop, YAHOO.util.EventProvider);
-
-/**
-* @event mouseDownEvent
-* @description Provides access to the mousedown event. The mousedown does not always result in a drag operation.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4MouseDownEvent
-* @description Provides access to the mousedown event, before the mouseDownEvent gets fired. Returning false will cancel the drag.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event mouseUpEvent
-* @description Fired from inside DragDropMgr when the drag operation is finished.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4StartDragEvent
-* @description Fires before the startDragEvent, returning false will cancel the startDrag Event.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event startDragEvent
-* @description Occurs after a mouse down and the drag threshold has been met. The drag threshold default is either 3 pixels of mouse movement or 1 full second of holding the mousedown. 
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4EndDragEvent
-* @description Fires before the endDragEvent. Returning false will cancel.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event endDragEvent
-* @description Fires on the mouseup event after a drag has been initiated (startDrag fired).
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event dragEvent
-* @description Occurs every mousemove event while dragging.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragEvent
-* @description Fires before the dragEvent.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event invalidDropEvent
-* @description Fires when the dragged objects is dropped in a location that contains no drop targets.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragOutEvent
-* @description Fires before the dragOutEvent
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragOutEvent
-* @description Fires when a dragged object is no longer over an object that had the onDragEnter fire. 
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragEnterEvent
-* @description Occurs when the dragged object first interacts with another targettable drag and drop object.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragOverEvent
-* @description Fires before the dragOverEvent.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragOverEvent
-* @description Fires every mousemove event while over a drag and drop object.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragDropEvent 
-* @description Fires before the dragDropEvent
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragDropEvent
-* @description Fires when the dragged objects is dropped on another.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-})();
-/**
- * A DragDrop implementation where the linked element follows the 
- * mouse cursor during a drag.
- * @class DD
- * @extends YAHOO.util.DragDrop
- * @constructor
- * @param {String} id the id of the linked element 
- * @param {String} sGroup the group of related DragDrop items
- * @param {object} config an object containing configurable attributes
- *                Valid properties for DD: 
- *                    scroll
- */
-YAHOO.util.DD = function(id, sGroup, config) {
-    if (id) {
-        this.init(id, sGroup, config);
-    }
-};
-
-YAHOO.extend(YAHOO.util.DD, YAHOO.util.DragDrop, {
-
-    /**
-     * When set to true, the utility automatically tries to scroll the browser
-     * window when a drag and drop element is dragged near the viewport boundary.
-     * Defaults to true.
-     * @property scroll
-     * @type boolean
-     */
-    scroll: true, 
-
-    /**
-     * Sets the pointer offset to the distance between the linked element's top 
-     * left corner and the location the element was clicked
-     * @method autoOffset
-     * @param {int} iPageX the X coordinate of the click
-     * @param {int} iPageY the Y coordinate of the click
-     */
-    autoOffset: function(iPageX, iPageY) {
-        var x = iPageX - this.startPageX;
-        var y = iPageY - this.startPageY;
-        this.setDelta(x, y);
-        // this.logger.log("autoOffset el pos: " + aCoord + ", delta: " + x + "," + y);
-    },
-
-    /** 
-     * Sets the pointer offset.  You can call this directly to force the 
-     * offset to be in a particular location (e.g., pass in 0,0 to set it 
-     * to the center of the object, as done in YAHOO.widget.Slider)
-     * @method setDelta
-     * @param {int} iDeltaX the distance from the left
-     * @param {int} iDeltaY the distance from the top
-     */
-    setDelta: function(iDeltaX, iDeltaY) {
-        this.deltaX = iDeltaX;
-        this.deltaY = iDeltaY;
-        this.logger.log("deltaX:" + this.deltaX + ", deltaY:" + this.deltaY);
-    },
-
-    /**
-     * Sets the drag element to the location of the mousedown or click event, 
-     * maintaining the cursor location relative to the location on the element 
-     * that was clicked.  Override this if you want to place the element in a 
-     * location other than where the cursor is.
-     * @method setDragElPos
-     * @param {int} iPageX the X coordinate of the mousedown or drag event
-     * @param {int} iPageY the Y coordinate of the mousedown or drag event
-     */
-    setDragElPos: function(iPageX, iPageY) {
-        // the first time we do this, we are going to check to make sure
-        // the element has css positioning
-
-        var el = this.getDragEl();
-        this.alignElWithMouse(el, iPageX, iPageY);
-    },
-
-    /**
-     * Sets the element to the location of the mousedown or click event, 
-     * maintaining the cursor location relative to the location on the element 
-     * that was clicked.  Override this if you want to place the element in a 
-     * location other than where the cursor is.
-     * @method alignElWithMouse
-     * @param {HTMLElement} el the element to move
-     * @param {int} iPageX the X coordinate of the mousedown or drag event
-     * @param {int} iPageY the Y coordinate of the mousedown or drag event
-     */
-    alignElWithMouse: function(el, iPageX, iPageY) {
-        var oCoord = this.getTargetCoord(iPageX, iPageY);
-        // this.logger.log("****alignElWithMouse : " + el.id + ", " + aCoord + ", " + el.style.display);
-
-        if (!this.deltaSetXY) {
-            var aCoord = [oCoord.x, oCoord.y];
-            YAHOO.util.Dom.setXY(el, aCoord);
-
-            var newLeft = parseInt( YAHOO.util.Dom.getStyle(el, "left"), 10 );
-            var newTop  = parseInt( YAHOO.util.Dom.getStyle(el, "top" ), 10 );
-
-            this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
-        } else {
-            YAHOO.util.Dom.setStyle(el, "left", (oCoord.x + this.deltaSetXY[0]) + "px");
-            YAHOO.util.Dom.setStyle(el, "top",  (oCoord.y + this.deltaSetXY[1]) + "px");
-        }
-        
-        this.cachePosition(oCoord.x, oCoord.y);
-        var self = this;
-        setTimeout(function() {
-            self.autoScroll.call(self, oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
-        }, 0);
-    },
-
-    /**
-     * Saves the most recent position so that we can reset the constraints and
-     * tick marks on-demand.  We need to know this so that we can calculate the
-     * number of pixels the element is offset from its original position.
-     * @method cachePosition
-     * @param iPageX the current x position (optional, this just makes it so we
-     * don't have to look it up again)
-     * @param iPageY the current y position (optional, this just makes it so we
-     * don't have to look it up again)
-     */
-    cachePosition: function(iPageX, iPageY) {
-        if (iPageX) {
-            this.lastPageX = iPageX;
-            this.lastPageY = iPageY;
-        } else {
-            var aCoord = YAHOO.util.Dom.getXY(this.getEl());
-            this.lastPageX = aCoord[0];
-            this.lastPageY = aCoord[1];
-        }
-    },
-
-    /**
-     * Auto-scroll the window if the dragged object has been moved beyond the 
-     * visible window boundary.
-     * @method autoScroll
-     * @param {int} x the drag element's x position
-     * @param {int} y the drag element's y position
-     * @param {int} h the height of the drag element
-     * @param {int} w the width of the drag element
-     * @private
-     */
-    autoScroll: function(x, y, h, w) {
-
-        if (this.scroll) {
-            // The client height
-            var clientH = this.DDM.getClientHeight();
-
-            // The client width
-            var clientW = this.DDM.getClientWidth();
-
-            // The amt scrolled down
-            var st = this.DDM.getScrollTop();
-
-            // The amt scrolled right
-            var sl = this.DDM.getScrollLeft();
-
-            // Location of the bottom of the element
-            var bot = h + y;
-
-            // Location of the right of the element
-            var right = w + x;
-
-            // The distance from the cursor to the bottom of the visible area, 
-            // adjusted so that we don't scroll if the cursor is beyond the
-            // element drag constraints
-            var toBot = (clientH + st - y - this.deltaY);
-
-            // The distance from the cursor to the right of the visible area
-            var toRight = (clientW + sl - x - this.deltaX);
-
-            // this.logger.log( " x: " + x + " y: " + y + " h: " + h + 
-            // " clientH: " + clientH + " clientW: " + clientW + 
-            // " st: " + st + " sl: " + sl + " bot: " + bot + 
-            // " right: " + right + " toBot: " + toBot + " toRight: " + toRight);
-
-            // How close to the edge the cursor must be before we scroll
-            // var thresh = (document.all) ? 100 : 40;
-            var thresh = 40;
-
-            // How many pixels to scroll per autoscroll op.  This helps to reduce 
-            // clunky scrolling. IE is more sensitive about this ... it needs this 
-            // value to be higher.
-            var scrAmt = (document.all) ? 80 : 30;
-
-            // Scroll down if we are near the bottom of the visible page and the 
-            // obj extends below the crease
-            if ( bot > clientH && toBot < thresh ) { 
-                window.scrollTo(sl, st + scrAmt); 
-            }
-
-            // Scroll up if the window is scrolled down and the top of the object
-            // goes above the top border
-            if ( y < st && st > 0 && y - st < thresh ) { 
-                window.scrollTo(sl, st - scrAmt); 
-            }
-
-            // Scroll right if the obj is beyond the right border and the cursor is
-            // near the border.
-            if ( right > clientW && toRight < thresh ) { 
-                window.scrollTo(sl + scrAmt, st); 
-            }
-
-            // Scroll left if the window has been scrolled to the right and the obj
-            // extends past the left border
-            if ( x < sl && sl > 0 && x - sl < thresh ) { 
-                window.scrollTo(sl - scrAmt, st);
-            }
-        }
-    },
-
-    /*
-     * Sets up config options specific to this class. Overrides
-     * YAHOO.util.DragDrop, but all versions of this method through the 
-     * inheritance chain are called
-     */
-    applyConfig: function() {
-        YAHOO.util.DD.superclass.applyConfig.call(this);
-        this.scroll = (this.config.scroll !== false);
-    },
-
-    /*
-     * Event that fires prior to the onMouseDown event.  Overrides 
-     * YAHOO.util.DragDrop.
-     */
-    b4MouseDown: function(e) {
-        this.setStartPosition();
-        // this.resetConstraints();
-        this.autoOffset(YAHOO.util.Event.getPageX(e), 
-                            YAHOO.util.Event.getPageY(e));
-    },
-
-    /*
-     * Event that fires prior to the onDrag event.  Overrides 
-     * YAHOO.util.DragDrop.
-     */
-    b4Drag: function(e) {
-        this.setDragElPos(YAHOO.util.Event.getPageX(e), 
-                            YAHOO.util.Event.getPageY(e));
-    },
-
-    toString: function() {
-        return ("DD " + this.id);
-    }
-
-    //////////////////////////////////////////////////////////////////////////
-    // Debugging ygDragDrop events that can be overridden
-    //////////////////////////////////////////////////////////////////////////
-    /*
-    startDrag: function(x, y) {
-        this.logger.log(this.id.toString()  + " startDrag");
-    },
-
-    onDrag: function(e) {
-        this.logger.log(this.id.toString() + " onDrag");
-    },
-
-    onDragEnter: function(e, id) {
-        this.logger.log(this.id.toString() + " onDragEnter: " + id);
-    },
-
-    onDragOver: function(e, id) {
-        this.logger.log(this.id.toString() + " onDragOver: " + id);
-    },
-
-    onDragOut: function(e, id) {
-        this.logger.log(this.id.toString() + " onDragOut: " + id);
-    },
-
-    onDragDrop: function(e, id) {
-        this.logger.log(this.id.toString() + " onDragDrop: " + id);
-    },
-
-    endDrag: function(e) {
-        this.logger.log(this.id.toString() + " endDrag");
-    }
-
-    */
-
-/**
-* @event mouseDownEvent
-* @description Provides access to the mousedown event. The mousedown does not always result in a drag operation.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4MouseDownEvent
-* @description Provides access to the mousedown event, before the mouseDownEvent gets fired. Returning false will cancel the drag.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event mouseUpEvent
-* @description Fired from inside DragDropMgr when the drag operation is finished.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4StartDragEvent
-* @description Fires before the startDragEvent, returning false will cancel the startDrag Event.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event startDragEvent
-* @description Occurs after a mouse down and the drag threshold has been met. The drag threshold default is either 3 pixels of mouse movement or 1 full second of holding the mousedown. 
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4EndDragEvent
-* @description Fires before the endDragEvent. Returning false will cancel.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event endDragEvent
-* @description Fires on the mouseup event after a drag has been initiated (startDrag fired).
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event dragEvent
-* @description Occurs every mousemove event while dragging.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragEvent
-* @description Fires before the dragEvent.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event invalidDropEvent
-* @description Fires when the dragged objects is dropped in a location that contains no drop targets.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragOutEvent
-* @description Fires before the dragOutEvent
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragOutEvent
-* @description Fires when a dragged object is no longer over an object that had the onDragEnter fire. 
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragEnterEvent
-* @description Occurs when the dragged object first interacts with another targettable drag and drop object.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragOverEvent
-* @description Fires before the dragOverEvent.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragOverEvent
-* @description Fires every mousemove event while over a drag and drop object.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragDropEvent 
-* @description Fires before the dragDropEvent
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragDropEvent
-* @description Fires when the dragged objects is dropped on another.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-});
-/**
- * A DragDrop implementation that inserts an empty, bordered div into
- * the document that follows the cursor during drag operations.  At the time of
- * the click, the frame div is resized to the dimensions of the linked html
- * element, and moved to the exact location of the linked element.
- *
- * References to the "frame" element refer to the single proxy element that
- * was created to be dragged in place of all DDProxy elements on the
- * page.
- *
- * @class DDProxy
- * @extends YAHOO.util.DD
- * @constructor
- * @param {String} id the id of the linked html element
- * @param {String} sGroup the group of related DragDrop objects
- * @param {object} config an object containing configurable attributes
- *                Valid properties for DDProxy in addition to those in DragDrop: 
- *                   resizeFrame, centerFrame, dragElId
- */
-YAHOO.util.DDProxy = function(id, sGroup, config) {
-    if (id) {
-        this.init(id, sGroup, config);
-        this.initFrame(); 
-    }
-};
-
-/**
- * The default drag frame div id
- * @property YAHOO.util.DDProxy.dragElId
- * @type String
- * @static
- */
-YAHOO.util.DDProxy.dragElId = "ygddfdiv";
-
-YAHOO.extend(YAHOO.util.DDProxy, YAHOO.util.DD, {
-
-    /**
-     * By default we resize the drag frame to be the same size as the element
-     * we want to drag (this is to get the frame effect).  We can turn it off
-     * if we want a different behavior.
-     * @property resizeFrame
-     * @type boolean
-     */
-    resizeFrame: true,
-
-    /**
-     * By default the frame is positioned exactly where the drag element is, so
-     * we use the cursor offset provided by YAHOO.util.DD.  Another option that works only if
-     * you do not have constraints on the obj is to have the drag frame centered
-     * around the cursor.  Set centerFrame to true for this effect.
-     * @property centerFrame
-     * @type boolean
-     */
-    centerFrame: false,
-
-    /**
-     * Creates the proxy element if it does not yet exist
-     * @method createFrame
-     */
-    createFrame: function() {
-        var self=this, body=document.body;
-
-        if (!body || !body.firstChild) {
-            setTimeout( function() { self.createFrame(); }, 50 );
-            return;
-        }
-
-        var div=this.getDragEl(), Dom=YAHOO.util.Dom;
-
-        if (!div) {
-            div    = document.createElement("div");
-            div.id = this.dragElId;
-            var s  = div.style;
-
-            s.position   = "absolute";
-            s.visibility = "hidden";
-            s.cursor     = "move";
-            s.border     = "2px solid #aaa";
-            s.zIndex     = 999;
-            s.height     = "25px";
-            s.width      = "25px";
-
-            var _data = document.createElement('div');
-            Dom.setStyle(_data, 'height', '100%');
-            Dom.setStyle(_data, 'width', '100%');
-            /**
-            * If the proxy element has no background-color, then it is considered to the "transparent" by Internet Explorer.
-            * Since it is "transparent" then the events pass through it to the iframe below.
-            * So creating a "fake" div inside the proxy element and giving it a background-color, then setting it to an
-            * opacity of 0, it appears to not be there, however IE still thinks that it is so the events never pass through.
-            */
-            Dom.setStyle(_data, 'background-color', '#ccc');
-            Dom.setStyle(_data, 'opacity', '0');
-            div.appendChild(_data);
-
-            /**
-            * It seems that IE will fire the mouseup event if you pass a proxy element over a select box
-            * Placing the IFRAME element inside seems to stop this issue
-            */
-            if (YAHOO.env.ua.ie) {
-                //Only needed for Internet Explorer
-                var ifr = document.createElement('iframe');
-                ifr.setAttribute('src', 'javascript: false;');
-                ifr.setAttribute('scrolling', 'no');
-                ifr.setAttribute('frameborder', '0');
-                div.insertBefore(ifr, div.firstChild);
-                Dom.setStyle(ifr, 'height', '100%');
-                Dom.setStyle(ifr, 'width', '100%');
-                Dom.setStyle(ifr, 'position', 'absolute');
-                Dom.setStyle(ifr, 'top', '0');
-                Dom.setStyle(ifr, 'left', '0');
-                Dom.setStyle(ifr, 'opacity', '0');
-                Dom.setStyle(ifr, 'zIndex', '-1');
-                Dom.setStyle(ifr.nextSibling, 'zIndex', '2');
-            }
-
-            // appendChild can blow up IE if invoked prior to the window load event
-            // while rendering a table.  It is possible there are other scenarios 
-            // that would cause this to happen as well.
-            body.insertBefore(div, body.firstChild);
-        }
-    },
-
-    /**
-     * Initialization for the drag frame element.  Must be called in the
-     * constructor of all subclasses
-     * @method initFrame
-     */
-    initFrame: function() {
-        this.createFrame();
-    },
-
-    applyConfig: function() {
-        //this.logger.log("DDProxy applyConfig");
-        YAHOO.util.DDProxy.superclass.applyConfig.call(this);
-
-        this.resizeFrame = (this.config.resizeFrame !== false);
-        this.centerFrame = (this.config.centerFrame);
-        this.setDragElId(this.config.dragElId || YAHOO.util.DDProxy.dragElId);
-    },
-
-    /**
-     * Resizes the drag frame to the dimensions of the clicked object, positions 
-     * it over the object, and finally displays it
-     * @method showFrame
-     * @param {int} iPageX X click position
-     * @param {int} iPageY Y click position
-     * @private
-     */
-    showFrame: function(iPageX, iPageY) {
-        var el = this.getEl();
-        var dragEl = this.getDragEl();
-        var s = dragEl.style;
-
-        this._resizeProxy();
-
-        if (this.centerFrame) {
-            this.setDelta( Math.round(parseInt(s.width,  10)/2), 
-                           Math.round(parseInt(s.height, 10)/2) );
-        }
-
-        this.setDragElPos(iPageX, iPageY);
-
-        YAHOO.util.Dom.setStyle(dragEl, "visibility", "visible"); 
-    },
-
-    /**
-     * The proxy is automatically resized to the dimensions of the linked
-     * element when a drag is initiated, unless resizeFrame is set to false
-     * @method _resizeProxy
-     * @private
-     */
-    _resizeProxy: function() {
-        if (this.resizeFrame) {
-            var DOM    = YAHOO.util.Dom;
-            var el     = this.getEl();
-            var dragEl = this.getDragEl();
-
-            var bt = parseInt( DOM.getStyle(dragEl, "borderTopWidth"    ), 10);
-            var br = parseInt( DOM.getStyle(dragEl, "borderRightWidth"  ), 10);
-            var bb = parseInt( DOM.getStyle(dragEl, "borderBottomWidth" ), 10);
-            var bl = parseInt( DOM.getStyle(dragEl, "borderLeftWidth"   ), 10);
-
-            if (isNaN(bt)) { bt = 0; }
-            if (isNaN(br)) { br = 0; }
-            if (isNaN(bb)) { bb = 0; }
-            if (isNaN(bl)) { bl = 0; }
-
-            this.logger.log("proxy size: " + bt + "  " + br + " " + bb + " " + bl);
-
-            var newWidth  = Math.max(0, el.offsetWidth  - br - bl);                                                                                           
-            var newHeight = Math.max(0, el.offsetHeight - bt - bb);
-
-            this.logger.log("Resizing proxy element");
-
-            DOM.setStyle( dragEl, "width",  newWidth  + "px" );
-            DOM.setStyle( dragEl, "height", newHeight + "px" );
-        }
-    },
-
-    // overrides YAHOO.util.DragDrop
-    b4MouseDown: function(e) {
-        this.setStartPosition();
-        var x = YAHOO.util.Event.getPageX(e);
-        var y = YAHOO.util.Event.getPageY(e);
-        this.autoOffset(x, y);
-
-        // This causes the autoscroll code to kick off, which means autoscroll can
-        // happen prior to the check for a valid drag handle.
-        // this.setDragElPos(x, y);
-    },
-
-    // overrides YAHOO.util.DragDrop
-    b4StartDrag: function(x, y) {
-        // show the drag frame
-        this.logger.log("start drag show frame, x: " + x + ", y: " + y);
-        this.showFrame(x, y);
-    },
-
-    // overrides YAHOO.util.DragDrop
-    b4EndDrag: function(e) {
-        this.logger.log(this.id + " b4EndDrag");
-        YAHOO.util.Dom.setStyle(this.getDragEl(), "visibility", "hidden"); 
-    },
-
-    // overrides YAHOO.util.DragDrop
-    // By default we try to move the element to the last location of the frame.  
-    // This is so that the default behavior mirrors that of YAHOO.util.DD.  
-    endDrag: function(e) {
-        var DOM = YAHOO.util.Dom;
-        this.logger.log(this.id + " endDrag");
-        var lel = this.getEl();
-        var del = this.getDragEl();
-
-        // Show the drag frame briefly so we can get its position
-        // del.style.visibility = "";
-        DOM.setStyle(del, "visibility", ""); 
-
-        // Hide the linked element before the move to get around a Safari 
-        // rendering bug.
-        //lel.style.visibility = "hidden";
-        DOM.setStyle(lel, "visibility", "hidden"); 
-        YAHOO.util.DDM.moveToEl(lel, del);
-        //del.style.visibility = "hidden";
-        DOM.setStyle(del, "visibility", "hidden"); 
-        //lel.style.visibility = "";
-        DOM.setStyle(lel, "visibility", ""); 
-    },
-
-    toString: function() {
-        return ("DDProxy " + this.id);
-    }
-/**
-* @event mouseDownEvent
-* @description Provides access to the mousedown event. The mousedown does not always result in a drag operation.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4MouseDownEvent
-* @description Provides access to the mousedown event, before the mouseDownEvent gets fired. Returning false will cancel the drag.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event mouseUpEvent
-* @description Fired from inside DragDropMgr when the drag operation is finished.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4StartDragEvent
-* @description Fires before the startDragEvent, returning false will cancel the startDrag Event.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event startDragEvent
-* @description Occurs after a mouse down and the drag threshold has been met. The drag threshold default is either 3 pixels of mouse movement or 1 full second of holding the mousedown. 
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4EndDragEvent
-* @description Fires before the endDragEvent. Returning false will cancel.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event endDragEvent
-* @description Fires on the mouseup event after a drag has been initiated (startDrag fired).
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event dragEvent
-* @description Occurs every mousemove event while dragging.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragEvent
-* @description Fires before the dragEvent.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event invalidDropEvent
-* @description Fires when the dragged objects is dropped in a location that contains no drop targets.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragOutEvent
-* @description Fires before the dragOutEvent
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragOutEvent
-* @description Fires when a dragged object is no longer over an object that had the onDragEnter fire. 
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragEnterEvent
-* @description Occurs when the dragged object first interacts with another targettable drag and drop object.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragOverEvent
-* @description Fires before the dragOverEvent.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragOverEvent
-* @description Fires every mousemove event while over a drag and drop object.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragDropEvent 
-* @description Fires before the dragDropEvent
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragDropEvent
-* @description Fires when the dragged objects is dropped on another.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-});
-/**
- * A DragDrop implementation that does not move, but can be a drop 
- * target.  You would get the same result by simply omitting implementation 
- * for the event callbacks, but this way we reduce the processing cost of the 
- * event listener and the callbacks.
- * @class DDTarget
- * @extends YAHOO.util.DragDrop 
- * @constructor
- * @param {String} id the id of the element that is a drop target
- * @param {String} sGroup the group of related DragDrop objects
- * @param {object} config an object containing configurable attributes
- *                 Valid properties for DDTarget in addition to those in 
- *                 DragDrop: 
- *                    none
- */
-YAHOO.util.DDTarget = function(id, sGroup, config) {
-    if (id) {
-        this.initTarget(id, sGroup, config);
-    }
-};
-
-// YAHOO.util.DDTarget.prototype = new YAHOO.util.DragDrop();
-YAHOO.extend(YAHOO.util.DDTarget, YAHOO.util.DragDrop, {
-    toString: function() {
-        return ("DDTarget " + this.id);
-    }
-});
-YAHOO.register("dragdrop", YAHOO.util.DragDropMgr, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/dragdrop/dragdrop-min.js b/eclipse.org-common/yui/2.6.0/build/dragdrop/dragdrop-min.js
deleted file mode 100644
index 2526c53..0000000
--- a/eclipse.org-common/yui/2.6.0/build/dragdrop/dragdrop-min.js
+++ /dev/null
@@ -1,10 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-if(!YAHOO.util.DragDropMgr){YAHOO.util.DragDropMgr=function(){var A=YAHOO.util.Event,B=YAHOO.util.Dom;return{useShim:false,_shimActive:false,_shimState:false,_debugShim:false,_createShim:function(){var C=document.createElement("div");C.id="yui-ddm-shim";if(document.body.firstChild){document.body.insertBefore(C,document.body.firstChild);}else{document.body.appendChild(C);}C.style.display="none";C.style.backgroundColor="red";C.style.position="absolute";C.style.zIndex="99999";B.setStyle(C,"opacity","0");this._shim=C;A.on(C,"mouseup",this.handleMouseUp,this,true);A.on(C,"mousemove",this.handleMouseMove,this,true);A.on(window,"scroll",this._sizeShim,this,true);},_sizeShim:function(){if(this._shimActive){var C=this._shim;C.style.height=B.getDocumentHeight()+"px";C.style.width=B.getDocumentWidth()+"px";C.style.top="0";C.style.left="0";}},_activateShim:function(){if(this.useShim){if(!this._shim){this._createShim();}this._shimActive=true;var C=this._shim,D="0";if(this._debugShim){D=".5";}B.setStyle(C,"opacity",D);this._sizeShim();C.style.display="block";}},_deactivateShim:function(){this._shim.style.display="none";this._shimActive=false;},_shim:null,ids:{},handleIds:{},dragCurrent:null,dragOvers:{},deltaX:0,deltaY:0,preventDefault:true,stopPropagation:true,initialized:false,locked:false,interactionInfo:null,init:function(){this.initialized=true;},POINT:0,INTERSECT:1,STRICT_INTERSECT:2,mode:0,_execOnAll:function(E,D){for(var F in this.ids){for(var C in this.ids[F]){var G=this.ids[F][C];if(!this.isTypeOfDD(G)){continue;}G[E].apply(G,D);}}},_onLoad:function(){this.init();A.on(document,"mouseup",this.handleMouseUp,this,true);A.on(document,"mousemove",this.handleMouseMove,this,true);A.on(window,"unload",this._onUnload,this,true);A.on(window,"resize",this._onResize,this,true);},_onResize:function(C){this._execOnAll("resetConstraints",[]);},lock:function(){this.locked=true;},unlock:function(){this.locked=false;},isLocked:function(){return this.locked;},locationCache:{},useCache:true,clickPixelThresh:3,clickTimeThresh:1000,dragThreshMet:false,clickTimeout:null,startX:0,startY:0,fromTimeout:false,regDragDrop:function(D,C){if(!this.initialized){this.init();}if(!this.ids[C]){this.ids[C]={};}this.ids[C][D.id]=D;},removeDDFromGroup:function(E,C){if(!this.ids[C]){this.ids[C]={};}var D=this.ids[C];if(D&&D[E.id]){delete D[E.id];}},_remove:function(E){for(var D in E.groups){if(D){var C=this.ids[D];if(C&&C[E.id]){delete C[E.id];}}}delete this.handleIds[E.id];},regHandle:function(D,C){if(!this.handleIds[D]){this.handleIds[D]={};}this.handleIds[D][C]=C;},isDragDrop:function(C){return(this.getDDById(C))?true:false;},getRelated:function(H,D){var G=[];for(var F in H.groups){for(var E in this.ids[F]){var C=this.ids[F][E];if(!this.isTypeOfDD(C)){continue;}if(!D||C.isTarget){G[G.length]=C;}}}return G;},isLegalTarget:function(G,F){var D=this.getRelated(G,true);for(var E=0,C=D.length;E<C;++E){if(D[E].id==F.id){return true;}}return false;},isTypeOfDD:function(C){return(C&&C.__ygDragDrop);},isHandle:function(D,C){return(this.handleIds[D]&&this.handleIds[D][C]);},getDDById:function(D){for(var C in this.ids){if(this.ids[C][D]){return this.ids[C][D];}}return null;},handleMouseDown:function(E,D){this.currentTarget=YAHOO.util.Event.getTarget(E);this.dragCurrent=D;var C=D.getEl();this.startX=YAHOO.util.Event.getPageX(E);this.startY=YAHOO.util.Event.getPageY(E);this.deltaX=this.startX-C.offsetLeft;this.deltaY=this.startY-C.offsetTop;this.dragThreshMet=false;this.clickTimeout=setTimeout(function(){var F=YAHOO.util.DDM;F.startDrag(F.startX,F.startY);F.fromTimeout=true;},this.clickTimeThresh);},startDrag:function(C,E){if(this.dragCurrent&&this.dragCurrent.useShim){this._shimState=this.useShim;this.useShim=true;}this._activateShim();clearTimeout(this.clickTimeout);var D=this.dragCurrent;if(D&&D.events.b4StartDrag){D.b4StartDrag(C,E);D.fireEvent("b4StartDragEvent",{x:C,y:E});}if(D&&D.events.startDrag){D.startDrag(C,E);D.fireEvent("startDragEvent",{x:C,y:E});}this.dragThreshMet=true;},handleMouseUp:function(C){if(this.dragCurrent){clearTimeout(this.clickTimeout);if(this.dragThreshMet){if(this.fromTimeout){this.fromTimeout=false;this.handleMouseMove(C);}this.fromTimeout=false;this.fireEvents(C,true);}else{}this.stopDrag(C);this.stopEvent(C);}},stopEvent:function(C){if(this.stopPropagation){YAHOO.util.Event.stopPropagation(C);}if(this.preventDefault){YAHOO.util.Event.preventDefault(C);}},stopDrag:function(E,D){var C=this.dragCurrent;if(C&&!D){if(this.dragThreshMet){if(C.events.b4EndDrag){C.b4EndDrag(E);C.fireEvent("b4EndDragEvent",{e:E});}if(C.events.endDrag){C.endDrag(E);C.fireEvent("endDragEvent",{e:E});}}if(C.events.mouseUp){C.onMouseUp(E);C.fireEvent("mouseUpEvent",{e:E});}}if(this._shimActive){this._deactivateShim();if(this.dragCurrent&&this.dragCurrent.useShim){this.useShim=this._shimState;this._shimState=false;}}this.dragCurrent=null;this.dragOvers={};},handleMouseMove:function(F){var C=this.dragCurrent;if(C){if(YAHOO.util.Event.isIE&&!F.button){this.stopEvent(F);return this.handleMouseUp(F);}else{if(F.clientX<0||F.clientY<0){}}if(!this.dragThreshMet){var E=Math.abs(this.startX-YAHOO.util.Event.getPageX(F));var D=Math.abs(this.startY-YAHOO.util.Event.getPageY(F));if(E>this.clickPixelThresh||D>this.clickPixelThresh){this.startDrag(this.startX,this.startY);}}if(this.dragThreshMet){if(C&&C.events.b4Drag){C.b4Drag(F);C.fireEvent("b4DragEvent",{e:F});}if(C&&C.events.drag){C.onDrag(F);C.fireEvent("dragEvent",{e:F});}if(C){this.fireEvents(F,false);}}this.stopEvent(F);}},fireEvents:function(V,L){var a=this.dragCurrent;if(!a||a.isLocked()||a.dragOnly){return ;}var N=YAHOO.util.Event.getPageX(V),M=YAHOO.util.Event.getPageY(V),P=new YAHOO.util.Point(N,M),K=a.getTargetCoord(P.x,P.y),F=a.getDragEl(),E=["out","over","drop","enter"],U=new YAHOO.util.Region(K.y,K.x+F.offsetWidth,K.y+F.offsetHeight,K.x),I=[],D={},Q=[],c={outEvts:[],overEvts:[],dropEvts:[],enterEvts:[]};for(var S in this.dragOvers){var d=this.dragOvers[S];if(!this.isTypeOfDD(d)){continue;
-}if(!this.isOverTarget(P,d,this.mode,U)){c.outEvts.push(d);}I[S]=true;delete this.dragOvers[S];}for(var R in a.groups){if("string"!=typeof R){continue;}for(S in this.ids[R]){var G=this.ids[R][S];if(!this.isTypeOfDD(G)){continue;}if(G.isTarget&&!G.isLocked()&&G!=a){if(this.isOverTarget(P,G,this.mode,U)){D[R]=true;if(L){c.dropEvts.push(G);}else{if(!I[G.id]){c.enterEvts.push(G);}else{c.overEvts.push(G);}this.dragOvers[G.id]=G;}}}}}this.interactionInfo={out:c.outEvts,enter:c.enterEvts,over:c.overEvts,drop:c.dropEvts,point:P,draggedRegion:U,sourceRegion:this.locationCache[a.id],validDrop:L};for(var C in D){Q.push(C);}if(L&&!c.dropEvts.length){this.interactionInfo.validDrop=false;if(a.events.invalidDrop){a.onInvalidDrop(V);a.fireEvent("invalidDropEvent",{e:V});}}for(S=0;S<E.length;S++){var Y=null;if(c[E[S]+"Evts"]){Y=c[E[S]+"Evts"];}if(Y&&Y.length){var H=E[S].charAt(0).toUpperCase()+E[S].substr(1),X="onDrag"+H,J="b4Drag"+H,O="drag"+H+"Event",W="drag"+H;if(this.mode){if(a.events[J]){a[J](V,Y,Q);a.fireEvent(J+"Event",{event:V,info:Y,group:Q});}if(a.events[W]){a[X](V,Y,Q);a.fireEvent(O,{event:V,info:Y,group:Q});}}else{for(var Z=0,T=Y.length;Z<T;++Z){if(a.events[J]){a[J](V,Y[Z].id,Q[0]);a.fireEvent(J+"Event",{event:V,info:Y[Z].id,group:Q[0]});}if(a.events[W]){a[X](V,Y[Z].id,Q[0]);a.fireEvent(O,{event:V,info:Y[Z].id,group:Q[0]});}}}}}},getBestMatch:function(E){var G=null;var D=E.length;if(D==1){G=E[0];}else{for(var F=0;F<D;++F){var C=E[F];if(this.mode==this.INTERSECT&&C.cursorIsOver){G=C;break;}else{if(!G||!G.overlap||(C.overlap&&G.overlap.getArea()<C.overlap.getArea())){G=C;}}}}return G;},refreshCache:function(D){var F=D||this.ids;for(var C in F){if("string"!=typeof C){continue;}for(var E in this.ids[C]){var G=this.ids[C][E];if(this.isTypeOfDD(G)){var H=this.getLocation(G);if(H){this.locationCache[G.id]=H;}else{delete this.locationCache[G.id];}}}}},verifyEl:function(D){try{if(D){var C=D.offsetParent;if(C){return true;}}}catch(E){}return false;},getLocation:function(H){if(!this.isTypeOfDD(H)){return null;}var F=H.getEl(),K,E,D,M,L,N,C,J,G;try{K=YAHOO.util.Dom.getXY(F);}catch(I){}if(!K){return null;}E=K[0];D=E+F.offsetWidth;M=K[1];L=M+F.offsetHeight;N=M-H.padding[0];C=D+H.padding[1];J=L+H.padding[2];G=E-H.padding[3];return new YAHOO.util.Region(N,C,J,G);},isOverTarget:function(K,C,E,F){var G=this.locationCache[C.id];if(!G||!this.useCache){G=this.getLocation(C);this.locationCache[C.id]=G;}if(!G){return false;}C.cursorIsOver=G.contains(K);var J=this.dragCurrent;if(!J||(!E&&!J.constrainX&&!J.constrainY)){return C.cursorIsOver;}C.overlap=null;if(!F){var H=J.getTargetCoord(K.x,K.y);var D=J.getDragEl();F=new YAHOO.util.Region(H.y,H.x+D.offsetWidth,H.y+D.offsetHeight,H.x);}var I=F.intersect(G);if(I){C.overlap=I;return(E)?true:C.cursorIsOver;}else{return false;}},_onUnload:function(D,C){this.unregAll();},unregAll:function(){if(this.dragCurrent){this.stopDrag();this.dragCurrent=null;}this._execOnAll("unreg",[]);this.ids={};},elementCache:{},getElWrapper:function(D){var C=this.elementCache[D];if(!C||!C.el){C=this.elementCache[D]=new this.ElementWrapper(YAHOO.util.Dom.get(D));}return C;},getElement:function(C){return YAHOO.util.Dom.get(C);},getCss:function(D){var C=YAHOO.util.Dom.get(D);return(C)?C.style:null;},ElementWrapper:function(C){this.el=C||null;this.id=this.el&&C.id;this.css=this.el&&C.style;},getPosX:function(C){return YAHOO.util.Dom.getX(C);},getPosY:function(C){return YAHOO.util.Dom.getY(C);},swapNode:function(E,C){if(E.swapNode){E.swapNode(C);}else{var F=C.parentNode;var D=C.nextSibling;if(D==E){F.insertBefore(E,C);}else{if(C==E.nextSibling){F.insertBefore(C,E);}else{E.parentNode.replaceChild(C,E);F.insertBefore(E,D);}}}},getScroll:function(){var E,C,F=document.documentElement,D=document.body;if(F&&(F.scrollTop||F.scrollLeft)){E=F.scrollTop;C=F.scrollLeft;}else{if(D){E=D.scrollTop;C=D.scrollLeft;}else{}}return{top:E,left:C};},getStyle:function(D,C){return YAHOO.util.Dom.getStyle(D,C);},getScrollTop:function(){return this.getScroll().top;},getScrollLeft:function(){return this.getScroll().left;},moveToEl:function(C,E){var D=YAHOO.util.Dom.getXY(E);YAHOO.util.Dom.setXY(C,D);},getClientHeight:function(){return YAHOO.util.Dom.getViewportHeight();},getClientWidth:function(){return YAHOO.util.Dom.getViewportWidth();},numericSort:function(D,C){return(D-C);},_timeoutCount:0,_addListeners:function(){var C=YAHOO.util.DDM;if(YAHOO.util.Event&&document){C._onLoad();}else{if(C._timeoutCount>2000){}else{setTimeout(C._addListeners,10);if(document&&document.body){C._timeoutCount+=1;}}}},handleWasClicked:function(C,E){if(this.isHandle(E,C.id)){return true;}else{var D=C.parentNode;while(D){if(this.isHandle(E,D.id)){return true;}else{D=D.parentNode;}}}return false;}};}();YAHOO.util.DDM=YAHOO.util.DragDropMgr;YAHOO.util.DDM._addListeners();}(function(){var A=YAHOO.util.Event;var B=YAHOO.util.Dom;YAHOO.util.DragDrop=function(E,C,D){if(E){this.init(E,C,D);}};YAHOO.util.DragDrop.prototype={events:null,on:function(){this.subscribe.apply(this,arguments);},id:null,config:null,dragElId:null,handleElId:null,invalidHandleTypes:null,invalidHandleIds:null,invalidHandleClasses:null,startPageX:0,startPageY:0,groups:null,locked:false,lock:function(){this.locked=true;},unlock:function(){this.locked=false;},isTarget:true,padding:null,dragOnly:false,useShim:false,_domRef:null,__ygDragDrop:true,constrainX:false,constrainY:false,minX:0,maxX:0,minY:0,maxY:0,deltaX:0,deltaY:0,maintainOffset:false,xTicks:null,yTicks:null,primaryButtonOnly:true,available:false,hasOuterHandles:false,cursorIsOver:false,overlap:null,b4StartDrag:function(C,D){},startDrag:function(C,D){},b4Drag:function(C){},onDrag:function(C){},onDragEnter:function(C,D){},b4DragOver:function(C){},onDragOver:function(C,D){},b4DragOut:function(C){},onDragOut:function(C,D){},b4DragDrop:function(C){},onDragDrop:function(C,D){},onInvalidDrop:function(C){},b4EndDrag:function(C){},endDrag:function(C){},b4MouseDown:function(C){},onMouseDown:function(C){},onMouseUp:function(C){},onAvailable:function(){},getEl:function(){if(!this._domRef){this._domRef=B.get(this.id);
-}return this._domRef;},getDragEl:function(){return B.get(this.dragElId);},init:function(F,C,D){this.initTarget(F,C,D);A.on(this._domRef||this.id,"mousedown",this.handleMouseDown,this,true);for(var E in this.events){this.createEvent(E+"Event");}},initTarget:function(E,C,D){this.config=D||{};this.events={};this.DDM=YAHOO.util.DDM;this.groups={};if(typeof E!=="string"){this._domRef=E;E=B.generateId(E);}this.id=E;this.addToGroup((C)?C:"default");this.handleElId=E;A.onAvailable(E,this.handleOnAvailable,this,true);this.setDragElId(E);this.invalidHandleTypes={A:"A"};this.invalidHandleIds={};this.invalidHandleClasses=[];this.applyConfig();},applyConfig:function(){this.events={mouseDown:true,b4MouseDown:true,mouseUp:true,b4StartDrag:true,startDrag:true,b4EndDrag:true,endDrag:true,drag:true,b4Drag:true,invalidDrop:true,b4DragOut:true,dragOut:true,dragEnter:true,b4DragOver:true,dragOver:true,b4DragDrop:true,dragDrop:true};if(this.config.events){for(var C in this.config.events){if(this.config.events[C]===false){this.events[C]=false;}}}this.padding=this.config.padding||[0,0,0,0];this.isTarget=(this.config.isTarget!==false);this.maintainOffset=(this.config.maintainOffset);this.primaryButtonOnly=(this.config.primaryButtonOnly!==false);this.dragOnly=((this.config.dragOnly===true)?true:false);this.useShim=((this.config.useShim===true)?true:false);},handleOnAvailable:function(){this.available=true;this.resetConstraints();this.onAvailable();},setPadding:function(E,C,F,D){if(!C&&0!==C){this.padding=[E,E,E,E];}else{if(!F&&0!==F){this.padding=[E,C,E,C];}else{this.padding=[E,C,F,D];}}},setInitPosition:function(F,E){var G=this.getEl();if(!this.DDM.verifyEl(G)){if(G&&G.style&&(G.style.display=="none")){}else{}return ;}var D=F||0;var C=E||0;var H=B.getXY(G);this.initPageX=H[0]-D;this.initPageY=H[1]-C;this.lastPageX=H[0];this.lastPageY=H[1];this.setStartPosition(H);},setStartPosition:function(D){var C=D||B.getXY(this.getEl());this.deltaSetXY=null;this.startPageX=C[0];this.startPageY=C[1];},addToGroup:function(C){this.groups[C]=true;this.DDM.regDragDrop(this,C);},removeFromGroup:function(C){if(this.groups[C]){delete this.groups[C];}this.DDM.removeDDFromGroup(this,C);},setDragElId:function(C){this.dragElId=C;},setHandleElId:function(C){if(typeof C!=="string"){C=B.generateId(C);}this.handleElId=C;this.DDM.regHandle(this.id,C);},setOuterHandleElId:function(C){if(typeof C!=="string"){C=B.generateId(C);}A.on(C,"mousedown",this.handleMouseDown,this,true);this.setHandleElId(C);this.hasOuterHandles=true;},unreg:function(){A.removeListener(this.id,"mousedown",this.handleMouseDown);this._domRef=null;this.DDM._remove(this);},isLocked:function(){return(this.DDM.isLocked()||this.locked);},handleMouseDown:function(J,I){var D=J.which||J.button;if(this.primaryButtonOnly&&D>1){return ;}if(this.isLocked()){return ;}var C=this.b4MouseDown(J),F=true;if(this.events.b4MouseDown){F=this.fireEvent("b4MouseDownEvent",J);}var E=this.onMouseDown(J),H=true;if(this.events.mouseDown){H=this.fireEvent("mouseDownEvent",J);}if((C===false)||(E===false)||(F===false)||(H===false)){return ;}this.DDM.refreshCache(this.groups);var G=new YAHOO.util.Point(A.getPageX(J),A.getPageY(J));if(!this.hasOuterHandles&&!this.DDM.isOverTarget(G,this)){}else{if(this.clickValidator(J)){this.setStartPosition();this.DDM.handleMouseDown(J,this);this.DDM.stopEvent(J);}else{}}},clickValidator:function(D){var C=YAHOO.util.Event.getTarget(D);return(this.isValidHandleChild(C)&&(this.id==this.handleElId||this.DDM.handleWasClicked(C,this.id)));},getTargetCoord:function(E,D){var C=E-this.deltaX;var F=D-this.deltaY;if(this.constrainX){if(C<this.minX){C=this.minX;}if(C>this.maxX){C=this.maxX;}}if(this.constrainY){if(F<this.minY){F=this.minY;}if(F>this.maxY){F=this.maxY;}}C=this.getTick(C,this.xTicks);F=this.getTick(F,this.yTicks);return{x:C,y:F};},addInvalidHandleType:function(C){var D=C.toUpperCase();this.invalidHandleTypes[D]=D;},addInvalidHandleId:function(C){if(typeof C!=="string"){C=B.generateId(C);}this.invalidHandleIds[C]=C;},addInvalidHandleClass:function(C){this.invalidHandleClasses.push(C);},removeInvalidHandleType:function(C){var D=C.toUpperCase();delete this.invalidHandleTypes[D];},removeInvalidHandleId:function(C){if(typeof C!=="string"){C=B.generateId(C);}delete this.invalidHandleIds[C];},removeInvalidHandleClass:function(D){for(var E=0,C=this.invalidHandleClasses.length;E<C;++E){if(this.invalidHandleClasses[E]==D){delete this.invalidHandleClasses[E];}}},isValidHandleChild:function(F){var E=true;var H;try{H=F.nodeName.toUpperCase();}catch(G){H=F.nodeName;}E=E&&!this.invalidHandleTypes[H];E=E&&!this.invalidHandleIds[F.id];for(var D=0,C=this.invalidHandleClasses.length;E&&D<C;++D){E=!B.hasClass(F,this.invalidHandleClasses[D]);}return E;},setXTicks:function(F,C){this.xTicks=[];this.xTickSize=C;var E={};for(var D=this.initPageX;D>=this.minX;D=D-C){if(!E[D]){this.xTicks[this.xTicks.length]=D;E[D]=true;}}for(D=this.initPageX;D<=this.maxX;D=D+C){if(!E[D]){this.xTicks[this.xTicks.length]=D;E[D]=true;}}this.xTicks.sort(this.DDM.numericSort);},setYTicks:function(F,C){this.yTicks=[];this.yTickSize=C;var E={};for(var D=this.initPageY;D>=this.minY;D=D-C){if(!E[D]){this.yTicks[this.yTicks.length]=D;E[D]=true;}}for(D=this.initPageY;D<=this.maxY;D=D+C){if(!E[D]){this.yTicks[this.yTicks.length]=D;E[D]=true;}}this.yTicks.sort(this.DDM.numericSort);},setXConstraint:function(E,D,C){this.leftConstraint=parseInt(E,10);this.rightConstraint=parseInt(D,10);this.minX=this.initPageX-this.leftConstraint;this.maxX=this.initPageX+this.rightConstraint;if(C){this.setXTicks(this.initPageX,C);}this.constrainX=true;},clearConstraints:function(){this.constrainX=false;this.constrainY=false;this.clearTicks();},clearTicks:function(){this.xTicks=null;this.yTicks=null;this.xTickSize=0;this.yTickSize=0;},setYConstraint:function(C,E,D){this.topConstraint=parseInt(C,10);this.bottomConstraint=parseInt(E,10);this.minY=this.initPageY-this.topConstraint;this.maxY=this.initPageY+this.bottomConstraint;if(D){this.setYTicks(this.initPageY,D);
-}this.constrainY=true;},resetConstraints:function(){if(this.initPageX||this.initPageX===0){var D=(this.maintainOffset)?this.lastPageX-this.initPageX:0;var C=(this.maintainOffset)?this.lastPageY-this.initPageY:0;this.setInitPosition(D,C);}else{this.setInitPosition();}if(this.constrainX){this.setXConstraint(this.leftConstraint,this.rightConstraint,this.xTickSize);}if(this.constrainY){this.setYConstraint(this.topConstraint,this.bottomConstraint,this.yTickSize);}},getTick:function(I,F){if(!F){return I;}else{if(F[0]>=I){return F[0];}else{for(var D=0,C=F.length;D<C;++D){var E=D+1;if(F[E]&&F[E]>=I){var H=I-F[D];var G=F[E]-I;return(G>H)?F[D]:F[E];}}return F[F.length-1];}}},toString:function(){return("DragDrop "+this.id);}};YAHOO.augment(YAHOO.util.DragDrop,YAHOO.util.EventProvider);})();YAHOO.util.DD=function(C,A,B){if(C){this.init(C,A,B);}};YAHOO.extend(YAHOO.util.DD,YAHOO.util.DragDrop,{scroll:true,autoOffset:function(C,B){var A=C-this.startPageX;var D=B-this.startPageY;this.setDelta(A,D);},setDelta:function(B,A){this.deltaX=B;this.deltaY=A;},setDragElPos:function(C,B){var A=this.getDragEl();this.alignElWithMouse(A,C,B);},alignElWithMouse:function(C,G,F){var E=this.getTargetCoord(G,F);if(!this.deltaSetXY){var H=[E.x,E.y];YAHOO.util.Dom.setXY(C,H);var D=parseInt(YAHOO.util.Dom.getStyle(C,"left"),10);var B=parseInt(YAHOO.util.Dom.getStyle(C,"top"),10);this.deltaSetXY=[D-E.x,B-E.y];}else{YAHOO.util.Dom.setStyle(C,"left",(E.x+this.deltaSetXY[0])+"px");YAHOO.util.Dom.setStyle(C,"top",(E.y+this.deltaSetXY[1])+"px");}this.cachePosition(E.x,E.y);var A=this;setTimeout(function(){A.autoScroll.call(A,E.x,E.y,C.offsetHeight,C.offsetWidth);},0);},cachePosition:function(B,A){if(B){this.lastPageX=B;this.lastPageY=A;}else{var C=YAHOO.util.Dom.getXY(this.getEl());this.lastPageX=C[0];this.lastPageY=C[1];}},autoScroll:function(J,I,E,K){if(this.scroll){var L=this.DDM.getClientHeight();var B=this.DDM.getClientWidth();var N=this.DDM.getScrollTop();var D=this.DDM.getScrollLeft();var H=E+I;var M=K+J;var G=(L+N-I-this.deltaY);var F=(B+D-J-this.deltaX);var C=40;var A=(document.all)?80:30;if(H>L&&G<C){window.scrollTo(D,N+A);}if(I<N&&N>0&&I-N<C){window.scrollTo(D,N-A);}if(M>B&&F<C){window.scrollTo(D+A,N);}if(J<D&&D>0&&J-D<C){window.scrollTo(D-A,N);}}},applyConfig:function(){YAHOO.util.DD.superclass.applyConfig.call(this);this.scroll=(this.config.scroll!==false);},b4MouseDown:function(A){this.setStartPosition();this.autoOffset(YAHOO.util.Event.getPageX(A),YAHOO.util.Event.getPageY(A));},b4Drag:function(A){this.setDragElPos(YAHOO.util.Event.getPageX(A),YAHOO.util.Event.getPageY(A));},toString:function(){return("DD "+this.id);}});YAHOO.util.DDProxy=function(C,A,B){if(C){this.init(C,A,B);this.initFrame();}};YAHOO.util.DDProxy.dragElId="ygddfdiv";YAHOO.extend(YAHOO.util.DDProxy,YAHOO.util.DD,{resizeFrame:true,centerFrame:false,createFrame:function(){var B=this,A=document.body;if(!A||!A.firstChild){setTimeout(function(){B.createFrame();},50);return ;}var G=this.getDragEl(),E=YAHOO.util.Dom;if(!G){G=document.createElement("div");G.id=this.dragElId;var D=G.style;D.position="absolute";D.visibility="hidden";D.cursor="move";D.border="2px solid #aaa";D.zIndex=999;D.height="25px";D.width="25px";var C=document.createElement("div");E.setStyle(C,"height","100%");E.setStyle(C,"width","100%");E.setStyle(C,"background-color","#ccc");E.setStyle(C,"opacity","0");G.appendChild(C);if(YAHOO.env.ua.ie){var F=document.createElement("iframe");F.setAttribute("src","javascript: false;");F.setAttribute("scrolling","no");F.setAttribute("frameborder","0");G.insertBefore(F,G.firstChild);E.setStyle(F,"height","100%");E.setStyle(F,"width","100%");E.setStyle(F,"position","absolute");E.setStyle(F,"top","0");E.setStyle(F,"left","0");E.setStyle(F,"opacity","0");E.setStyle(F,"zIndex","-1");E.setStyle(F.nextSibling,"zIndex","2");}A.insertBefore(G,A.firstChild);}},initFrame:function(){this.createFrame();},applyConfig:function(){YAHOO.util.DDProxy.superclass.applyConfig.call(this);this.resizeFrame=(this.config.resizeFrame!==false);this.centerFrame=(this.config.centerFrame);this.setDragElId(this.config.dragElId||YAHOO.util.DDProxy.dragElId);},showFrame:function(E,D){var C=this.getEl();var A=this.getDragEl();var B=A.style;this._resizeProxy();if(this.centerFrame){this.setDelta(Math.round(parseInt(B.width,10)/2),Math.round(parseInt(B.height,10)/2));}this.setDragElPos(E,D);YAHOO.util.Dom.setStyle(A,"visibility","visible");},_resizeProxy:function(){if(this.resizeFrame){var H=YAHOO.util.Dom;var B=this.getEl();var C=this.getDragEl();var G=parseInt(H.getStyle(C,"borderTopWidth"),10);var I=parseInt(H.getStyle(C,"borderRightWidth"),10);var F=parseInt(H.getStyle(C,"borderBottomWidth"),10);var D=parseInt(H.getStyle(C,"borderLeftWidth"),10);if(isNaN(G)){G=0;}if(isNaN(I)){I=0;}if(isNaN(F)){F=0;}if(isNaN(D)){D=0;}var E=Math.max(0,B.offsetWidth-I-D);var A=Math.max(0,B.offsetHeight-G-F);H.setStyle(C,"width",E+"px");H.setStyle(C,"height",A+"px");}},b4MouseDown:function(B){this.setStartPosition();var A=YAHOO.util.Event.getPageX(B);var C=YAHOO.util.Event.getPageY(B);this.autoOffset(A,C);},b4StartDrag:function(A,B){this.showFrame(A,B);},b4EndDrag:function(A){YAHOO.util.Dom.setStyle(this.getDragEl(),"visibility","hidden");},endDrag:function(D){var C=YAHOO.util.Dom;var B=this.getEl();var A=this.getDragEl();C.setStyle(A,"visibility","");C.setStyle(B,"visibility","hidden");YAHOO.util.DDM.moveToEl(B,A);C.setStyle(A,"visibility","hidden");C.setStyle(B,"visibility","");},toString:function(){return("DDProxy "+this.id);}});YAHOO.util.DDTarget=function(C,A,B){if(C){this.initTarget(C,A,B);}};YAHOO.extend(YAHOO.util.DDTarget,YAHOO.util.DragDrop,{toString:function(){return("DDTarget "+this.id);}});YAHOO.register("dragdrop",YAHOO.util.DragDropMgr,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/dragdrop/dragdrop.js b/eclipse.org-common/yui/2.6.0/build/dragdrop/dragdrop.js
deleted file mode 100644
index 1f5c3c5..0000000
--- a/eclipse.org-common/yui/2.6.0/build/dragdrop/dragdrop.js
+++ /dev/null
@@ -1,3622 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The drag and drop utility provides a framework for building drag and drop
- * applications.  In addition to enabling drag and drop for specific elements,
- * the drag and drop elements are tracked by the manager class, and the
- * interactions between the various elements are tracked during the drag and
- * the implementing code is notified about these important moments.
- * @module dragdrop
- * @title Drag and Drop
- * @requires yahoo,dom,event
- * @namespace YAHOO.util
- */
-
-// Only load the library once.  Rewriting the manager class would orphan 
-// existing drag and drop instances.
-if (!YAHOO.util.DragDropMgr) {
-
-/**
- * DragDropMgr is a singleton that tracks the element interaction for 
- * all DragDrop items in the window.  Generally, you will not call 
- * this class directly, but it does have helper methods that could 
- * be useful in your DragDrop implementations.
- * @class DragDropMgr
- * @static
- */
-YAHOO.util.DragDropMgr = function() {
-
-    var Event = YAHOO.util.Event,
-        Dom = YAHOO.util.Dom;
-
-    return {
-        /**
-        * This property is used to turn on global use of the shim element on all DragDrop instances, defaults to false for backcompat. (Use: YAHOO.util.DDM.useShim = true)
-        * @property useShim
-        * @type Boolean
-        * @static
-        */
-        useShim: false,
-        /**
-        * This property is used to determine if the shim is active over the screen, default false.
-        * @private
-        * @property _shimActive
-        * @type Boolean
-        * @static
-        */
-        _shimActive: false,
-        /**
-        * This property is used when useShim is set on a DragDrop object to store the current state of DDM.useShim so it can be reset when a drag operation is done.
-        * @private
-        * @property _shimState
-        * @type Boolean
-        * @static
-        */
-        _shimState: false,
-        /**
-        * This property is used when useShim is set to true, it will set the opacity on the shim to .5 for debugging. Use: (YAHOO.util.DDM._debugShim = true;)
-        * @private
-        * @property _debugShim
-        * @type Boolean
-        * @static
-        */
-        _debugShim: false,
-        /**
-        * This method will create a shim element (giving it the id of yui-ddm-shim), it also attaches the mousemove and mouseup listeners to it and attaches a scroll listener on the window
-        * @private
-        * @method _sizeShim
-        * @static
-        */
-        _createShim: function() {
-            var s = document.createElement('div');
-            s.id = 'yui-ddm-shim';
-            if (document.body.firstChild) {
-                document.body.insertBefore(s, document.body.firstChild);
-            } else {
-                document.body.appendChild(s);
-            }
-            s.style.display = 'none';
-            s.style.backgroundColor = 'red';
-            s.style.position = 'absolute';
-            s.style.zIndex = '99999';
-            Dom.setStyle(s, 'opacity', '0');
-            this._shim = s;
-            Event.on(s, "mouseup",   this.handleMouseUp, this, true);
-            Event.on(s, "mousemove", this.handleMouseMove, this, true);
-            Event.on(window, 'scroll', this._sizeShim, this, true);
-        },
-        /**
-        * This method will size the shim, called from activate and on window scroll event
-        * @private
-        * @method _sizeShim
-        * @static
-        */
-        _sizeShim: function() {
-            if (this._shimActive) {
-                var s = this._shim;
-                s.style.height = Dom.getDocumentHeight() + 'px';
-                s.style.width = Dom.getDocumentWidth() + 'px';
-                s.style.top = '0';
-                s.style.left = '0';
-            }
-        },
-        /**
-        * This method will create the shim element if needed, then show the shim element, size the element and set the _shimActive property to true
-        * @private
-        * @method _activateShim
-        * @static
-        */
-        _activateShim: function() {
-            if (this.useShim) {
-                if (!this._shim) {
-                    this._createShim();
-                }
-                this._shimActive = true;
-                var s = this._shim,
-                    o = '0';
-                if (this._debugShim) {
-                    o = '.5';
-                }
-                Dom.setStyle(s, 'opacity', o);
-                this._sizeShim();
-                s.style.display = 'block';
-            }
-        },
-        /**
-        * This method will hide the shim element and set the _shimActive property to false
-        * @private
-        * @method _deactivateShim
-        * @static
-        */
-        _deactivateShim: function() {
-            this._shim.style.display = 'none';
-            this._shimActive = false;
-        },
-        /**
-        * The HTML element created to use as a shim over the document to track mouse movements
-        * @private
-        * @property _shim
-        * @type HTMLElement
-        * @static
-        */
-        _shim: null,
-        /**
-         * Two dimensional Array of registered DragDrop objects.  The first 
-         * dimension is the DragDrop item group, the second the DragDrop 
-         * object.
-         * @property ids
-         * @type {string: string}
-         * @private
-         * @static
-         */
-        ids: {},
-
-        /**
-         * Array of element ids defined as drag handles.  Used to determine 
-         * if the element that generated the mousedown event is actually the 
-         * handle and not the html element itself.
-         * @property handleIds
-         * @type {string: string}
-         * @private
-         * @static
-         */
-        handleIds: {},
-
-        /**
-         * the DragDrop object that is currently being dragged
-         * @property dragCurrent
-         * @type DragDrop
-         * @private
-         * @static
-         **/
-        dragCurrent: null,
-
-        /**
-         * the DragDrop object(s) that are being hovered over
-         * @property dragOvers
-         * @type Array
-         * @private
-         * @static
-         */
-        dragOvers: {},
-
-        /**
-         * the X distance between the cursor and the object being dragged
-         * @property deltaX
-         * @type int
-         * @private
-         * @static
-         */
-        deltaX: 0,
-
-        /**
-         * the Y distance between the cursor and the object being dragged
-         * @property deltaY
-         * @type int
-         * @private
-         * @static
-         */
-        deltaY: 0,
-
-        /**
-         * Flag to determine if we should prevent the default behavior of the
-         * events we define. By default this is true, but this can be set to 
-         * false if you need the default behavior (not recommended)
-         * @property preventDefault
-         * @type boolean
-         * @static
-         */
-        preventDefault: true,
-
-        /**
-         * Flag to determine if we should stop the propagation of the events 
-         * we generate. This is true by default but you may want to set it to
-         * false if the html element contains other features that require the
-         * mouse click.
-         * @property stopPropagation
-         * @type boolean
-         * @static
-         */
-        stopPropagation: true,
-
-        /**
-         * Internal flag that is set to true when drag and drop has been
-         * initialized
-         * @property initialized
-         * @private
-         * @static
-         */
-        initialized: false,
-
-        /**
-         * All drag and drop can be disabled.
-         * @property locked
-         * @private
-         * @static
-         */
-        locked: false,
-
-        /**
-         * Provides additional information about the the current set of
-         * interactions.  Can be accessed from the event handlers. It
-         * contains the following properties:
-         *
-         *       out:       onDragOut interactions
-         *       enter:     onDragEnter interactions
-         *       over:      onDragOver interactions
-         *       drop:      onDragDrop interactions
-         *       point:     The location of the cursor
-         *       draggedRegion: The location of dragged element at the time
-         *                      of the interaction
-         *       sourceRegion: The location of the source elemtn at the time
-         *                     of the interaction
-         *       validDrop: boolean
-         * @property interactionInfo
-         * @type object
-         * @static
-         */
-        interactionInfo: null,
-
-        /**
-         * Called the first time an element is registered.
-         * @method init
-         * @private
-         * @static
-         */
-        init: function() {
-            this.initialized = true;
-        },
-
-        /**
-         * In point mode, drag and drop interaction is defined by the 
-         * location of the cursor during the drag/drop
-         * @property POINT
-         * @type int
-         * @static
-         * @final
-         */
-        POINT: 0,
-
-        /**
-         * In intersect mode, drag and drop interaction is defined by the 
-         * cursor position or the amount of overlap of two or more drag and 
-         * drop objects.
-         * @property INTERSECT
-         * @type int
-         * @static
-         * @final
-         */
-        INTERSECT: 1,
-
-        /**
-         * In intersect mode, drag and drop interaction is defined only by the 
-         * overlap of two or more drag and drop objects.
-         * @property STRICT_INTERSECT
-         * @type int
-         * @static
-         * @final
-         */
-        STRICT_INTERSECT: 2,
-
-        /**
-         * The current drag and drop mode.  Default: POINT
-         * @property mode
-         * @type int
-         * @static
-         */
-        mode: 0,
-
-        /**
-         * Runs method on all drag and drop objects
-         * @method _execOnAll
-         * @private
-         * @static
-         */
-        _execOnAll: function(sMethod, args) {
-            for (var i in this.ids) {
-                for (var j in this.ids[i]) {
-                    var oDD = this.ids[i][j];
-                    if (! this.isTypeOfDD(oDD)) {
-                        continue;
-                    }
-                    oDD[sMethod].apply(oDD, args);
-                }
-            }
-        },
-
-        /**
-         * Drag and drop initialization.  Sets up the global event handlers
-         * @method _onLoad
-         * @private
-         * @static
-         */
-        _onLoad: function() {
-
-            this.init();
-
-            Event.on(document, "mouseup",   this.handleMouseUp, this, true);
-            Event.on(document, "mousemove", this.handleMouseMove, this, true);
-            Event.on(window,   "unload",    this._onUnload, this, true);
-            Event.on(window,   "resize",    this._onResize, this, true);
-            // Event.on(window,   "mouseout",    this._test);
-
-        },
-
-        /**
-         * Reset constraints on all drag and drop objs
-         * @method _onResize
-         * @private
-         * @static
-         */
-        _onResize: function(e) {
-            this._execOnAll("resetConstraints", []);
-        },
-
-        /**
-         * Lock all drag and drop functionality
-         * @method lock
-         * @static
-         */
-        lock: function() { this.locked = true; },
-
-        /**
-         * Unlock all drag and drop functionality
-         * @method unlock
-         * @static
-         */
-        unlock: function() { this.locked = false; },
-
-        /**
-         * Is drag and drop locked?
-         * @method isLocked
-         * @return {boolean} True if drag and drop is locked, false otherwise.
-         * @static
-         */
-        isLocked: function() { return this.locked; },
-
-        /**
-         * Location cache that is set for all drag drop objects when a drag is
-         * initiated, cleared when the drag is finished.
-         * @property locationCache
-         * @private
-         * @static
-         */
-        locationCache: {},
-
-        /**
-         * Set useCache to false if you want to force object the lookup of each
-         * drag and drop linked element constantly during a drag.
-         * @property useCache
-         * @type boolean
-         * @static
-         */
-        useCache: true,
-
-        /**
-         * The number of pixels that the mouse needs to move after the 
-         * mousedown before the drag is initiated.  Default=3;
-         * @property clickPixelThresh
-         * @type int
-         * @static
-         */
-        clickPixelThresh: 3,
-
-        /**
-         * The number of milliseconds after the mousedown event to initiate the
-         * drag if we don't get a mouseup event. Default=1000
-         * @property clickTimeThresh
-         * @type int
-         * @static
-         */
-        clickTimeThresh: 1000,
-
-        /**
-         * Flag that indicates that either the drag pixel threshold or the 
-         * mousdown time threshold has been met
-         * @property dragThreshMet
-         * @type boolean
-         * @private
-         * @static
-         */
-        dragThreshMet: false,
-
-        /**
-         * Timeout used for the click time threshold
-         * @property clickTimeout
-         * @type Object
-         * @private
-         * @static
-         */
-        clickTimeout: null,
-
-        /**
-         * The X position of the mousedown event stored for later use when a 
-         * drag threshold is met.
-         * @property startX
-         * @type int
-         * @private
-         * @static
-         */
-        startX: 0,
-
-        /**
-         * The Y position of the mousedown event stored for later use when a 
-         * drag threshold is met.
-         * @property startY
-         * @type int
-         * @private
-         * @static
-         */
-        startY: 0,
-
-        /**
-         * Flag to determine if the drag event was fired from the click timeout and
-         * not the mouse move threshold.
-         * @property fromTimeout
-         * @type boolean
-         * @private
-         * @static
-         */
-        fromTimeout: false,
-
-        /**
-         * Each DragDrop instance must be registered with the DragDropMgr.  
-         * This is executed in DragDrop.init()
-         * @method regDragDrop
-         * @param {DragDrop} oDD the DragDrop object to register
-         * @param {String} sGroup the name of the group this element belongs to
-         * @static
-         */
-        regDragDrop: function(oDD, sGroup) {
-            if (!this.initialized) { this.init(); }
-            
-            if (!this.ids[sGroup]) {
-                this.ids[sGroup] = {};
-            }
-            this.ids[sGroup][oDD.id] = oDD;
-        },
-
-        /**
-         * Removes the supplied dd instance from the supplied group. Executed
-         * by DragDrop.removeFromGroup, so don't call this function directly.
-         * @method removeDDFromGroup
-         * @private
-         * @static
-         */
-        removeDDFromGroup: function(oDD, sGroup) {
-            if (!this.ids[sGroup]) {
-                this.ids[sGroup] = {};
-            }
-
-            var obj = this.ids[sGroup];
-            if (obj && obj[oDD.id]) {
-                delete obj[oDD.id];
-            }
-        },
-
-        /**
-         * Unregisters a drag and drop item.  This is executed in 
-         * DragDrop.unreg, use that method instead of calling this directly.
-         * @method _remove
-         * @private
-         * @static
-         */
-        _remove: function(oDD) {
-            for (var g in oDD.groups) {
-                if (g) {
-                    var item = this.ids[g];
-                    if (item && item[oDD.id]) {
-                        delete item[oDD.id];
-                    }
-                }
-                
-            }
-            delete this.handleIds[oDD.id];
-        },
-
-        /**
-         * Each DragDrop handle element must be registered.  This is done
-         * automatically when executing DragDrop.setHandleElId()
-         * @method regHandle
-         * @param {String} sDDId the DragDrop id this element is a handle for
-         * @param {String} sHandleId the id of the element that is the drag 
-         * handle
-         * @static
-         */
-        regHandle: function(sDDId, sHandleId) {
-            if (!this.handleIds[sDDId]) {
-                this.handleIds[sDDId] = {};
-            }
-            this.handleIds[sDDId][sHandleId] = sHandleId;
-        },
-
-        /**
-         * Utility function to determine if a given element has been 
-         * registered as a drag drop item.
-         * @method isDragDrop
-         * @param {String} id the element id to check
-         * @return {boolean} true if this element is a DragDrop item, 
-         * false otherwise
-         * @static
-         */
-        isDragDrop: function(id) {
-            return ( this.getDDById(id) ) ? true : false;
-        },
-
-        /**
-         * Returns the drag and drop instances that are in all groups the
-         * passed in instance belongs to.
-         * @method getRelated
-         * @param {DragDrop} p_oDD the obj to get related data for
-         * @param {boolean} bTargetsOnly if true, only return targetable objs
-         * @return {DragDrop[]} the related instances
-         * @static
-         */
-        getRelated: function(p_oDD, bTargetsOnly) {
-            var oDDs = [];
-            for (var i in p_oDD.groups) {
-                for (var j in this.ids[i]) {
-                    var dd = this.ids[i][j];
-                    if (! this.isTypeOfDD(dd)) {
-                        continue;
-                    }
-                    if (!bTargetsOnly || dd.isTarget) {
-                        oDDs[oDDs.length] = dd;
-                    }
-                }
-            }
-
-            return oDDs;
-        },
-
-        /**
-         * Returns true if the specified dd target is a legal target for 
-         * the specifice drag obj
-         * @method isLegalTarget
-         * @param {DragDrop} the drag obj
-         * @param {DragDrop} the target
-         * @return {boolean} true if the target is a legal target for the 
-         * dd obj
-         * @static
-         */
-        isLegalTarget: function (oDD, oTargetDD) {
-            var targets = this.getRelated(oDD, true);
-            for (var i=0, len=targets.length;i<len;++i) {
-                if (targets[i].id == oTargetDD.id) {
-                    return true;
-                }
-            }
-
-            return false;
-        },
-
-        /**
-         * My goal is to be able to transparently determine if an object is
-         * typeof DragDrop, and the exact subclass of DragDrop.  typeof 
-         * returns "object", oDD.constructor.toString() always returns
-         * "DragDrop" and not the name of the subclass.  So for now it just
-         * evaluates a well-known variable in DragDrop.
-         * @method isTypeOfDD
-         * @param {Object} the object to evaluate
-         * @return {boolean} true if typeof oDD = DragDrop
-         * @static
-         */
-        isTypeOfDD: function (oDD) {
-            return (oDD && oDD.__ygDragDrop);
-        },
-
-        /**
-         * Utility function to determine if a given element has been 
-         * registered as a drag drop handle for the given Drag Drop object.
-         * @method isHandle
-         * @param {String} id the element id to check
-         * @return {boolean} true if this element is a DragDrop handle, false 
-         * otherwise
-         * @static
-         */
-        isHandle: function(sDDId, sHandleId) {
-            return ( this.handleIds[sDDId] && 
-                            this.handleIds[sDDId][sHandleId] );
-        },
-
-        /**
-         * Returns the DragDrop instance for a given id
-         * @method getDDById
-         * @param {String} id the id of the DragDrop object
-         * @return {DragDrop} the drag drop object, null if it is not found
-         * @static
-         */
-        getDDById: function(id) {
-            for (var i in this.ids) {
-                if (this.ids[i][id]) {
-                    return this.ids[i][id];
-                }
-            }
-            return null;
-        },
-
-        /**
-         * Fired after a registered DragDrop object gets the mousedown event.
-         * Sets up the events required to track the object being dragged
-         * @method handleMouseDown
-         * @param {Event} e the event
-         * @param oDD the DragDrop object being dragged
-         * @private
-         * @static
-         */
-        handleMouseDown: function(e, oDD) {
-            //this._activateShim();
-
-            this.currentTarget = YAHOO.util.Event.getTarget(e);
-
-            this.dragCurrent = oDD;
-
-            var el = oDD.getEl();
-
-            // track start position
-            this.startX = YAHOO.util.Event.getPageX(e);
-            this.startY = YAHOO.util.Event.getPageY(e);
-
-            this.deltaX = this.startX - el.offsetLeft;
-            this.deltaY = this.startY - el.offsetTop;
-
-            this.dragThreshMet = false;
-
-            this.clickTimeout = setTimeout( 
-                    function() { 
-                        var DDM = YAHOO.util.DDM;
-                        DDM.startDrag(DDM.startX, DDM.startY);
-                        DDM.fromTimeout = true;
-                    }, 
-                    this.clickTimeThresh );
-        },
-
-        /**
-         * Fired when either the drag pixel threshold or the mousedown hold 
-         * time threshold has been met.
-         * @method startDrag
-         * @param x {int} the X position of the original mousedown
-         * @param y {int} the Y position of the original mousedown
-         * @static
-         */
-        startDrag: function(x, y) {
-            if (this.dragCurrent && this.dragCurrent.useShim) {
-                this._shimState = this.useShim;
-                this.useShim = true;
-            }
-            this._activateShim();
-            clearTimeout(this.clickTimeout);
-            var dc = this.dragCurrent;
-            if (dc && dc.events.b4StartDrag) {
-                dc.b4StartDrag(x, y);
-                dc.fireEvent('b4StartDragEvent', { x: x, y: y });
-            }
-            if (dc && dc.events.startDrag) {
-                dc.startDrag(x, y);
-                dc.fireEvent('startDragEvent', { x: x, y: y });
-            }
-            this.dragThreshMet = true;
-        },
-
-        /**
-         * Internal function to handle the mouseup event.  Will be invoked 
-         * from the context of the document.
-         * @method handleMouseUp
-         * @param {Event} e the event
-         * @private
-         * @static
-         */
-        handleMouseUp: function(e) {
-            if (this.dragCurrent) {
-                clearTimeout(this.clickTimeout);
-
-                if (this.dragThreshMet) {
-                    if (this.fromTimeout) {
-                        this.fromTimeout = false;
-                        this.handleMouseMove(e);
-                    }
-                    this.fromTimeout = false;
-                    this.fireEvents(e, true);
-                } else {
-                }
-
-                this.stopDrag(e);
-
-                this.stopEvent(e);
-            }
-        },
-
-        /**
-         * Utility to stop event propagation and event default, if these 
-         * features are turned on.
-         * @method stopEvent
-         * @param {Event} e the event as returned by this.getEvent()
-         * @static
-         */
-        stopEvent: function(e) {
-            if (this.stopPropagation) {
-                YAHOO.util.Event.stopPropagation(e);
-            }
-
-            if (this.preventDefault) {
-                YAHOO.util.Event.preventDefault(e);
-            }
-        },
-
-        /** 
-         * Ends the current drag, cleans up the state, and fires the endDrag
-         * and mouseUp events.  Called internally when a mouseup is detected
-         * during the drag.  Can be fired manually during the drag by passing
-         * either another event (such as the mousemove event received in onDrag)
-         * or a fake event with pageX and pageY defined (so that endDrag and
-         * onMouseUp have usable position data.).  Alternatively, pass true
-         * for the silent parameter so that the endDrag and onMouseUp events
-         * are skipped (so no event data is needed.)
-         *
-         * @method stopDrag
-         * @param {Event} e the mouseup event, another event (or a fake event) 
-         *                  with pageX and pageY defined, or nothing if the 
-         *                  silent parameter is true
-         * @param {boolean} silent skips the enddrag and mouseup events if true
-         * @static
-         */
-        stopDrag: function(e, silent) {
-            var dc = this.dragCurrent;
-            // Fire the drag end event for the item that was dragged
-            if (dc && !silent) {
-                if (this.dragThreshMet) {
-                    if (dc.events.b4EndDrag) {
-                        dc.b4EndDrag(e);
-                        dc.fireEvent('b4EndDragEvent', { e: e });
-                    }
-                    if (dc.events.endDrag) {
-                        dc.endDrag(e);
-                        dc.fireEvent('endDragEvent', { e: e });
-                    }
-                }
-                if (dc.events.mouseUp) {
-                    dc.onMouseUp(e);
-                    dc.fireEvent('mouseUpEvent', { e: e });
-                }
-            }
-
-            if (this._shimActive) {
-                this._deactivateShim();
-                if (this.dragCurrent && this.dragCurrent.useShim) {
-                    this.useShim = this._shimState;
-                    this._shimState = false;
-                }
-            }
-
-            this.dragCurrent = null;
-            this.dragOvers = {};
-        },
-
-        /** 
-         * Internal function to handle the mousemove event.  Will be invoked 
-         * from the context of the html element.
-         *
-         * @TODO figure out what we can do about mouse events lost when the 
-         * user drags objects beyond the window boundary.  Currently we can 
-         * detect this in internet explorer by verifying that the mouse is 
-         * down during the mousemove event.  Firefox doesn't give us the 
-         * button state on the mousemove event.
-         * @method handleMouseMove
-         * @param {Event} e the event
-         * @private
-         * @static
-         */
-        handleMouseMove: function(e) {
-
-            var dc = this.dragCurrent;
-            if (dc) {
-
-                // var button = e.which || e.button;
-
-                // check for IE mouseup outside of page boundary
-                if (YAHOO.util.Event.isIE && !e.button) {
-                    this.stopEvent(e);
-                    return this.handleMouseUp(e);
-                } else {
-                    if (e.clientX < 0 || e.clientY < 0) {
-                        //This will stop the element from leaving the viewport in FF, Opera & Safari
-                        //Not turned on yet
-                        //this.stopEvent(e);
-                        //return false;
-                    }
-                }
-
-                if (!this.dragThreshMet) {
-                    var diffX = Math.abs(this.startX - YAHOO.util.Event.getPageX(e));
-                    var diffY = Math.abs(this.startY - YAHOO.util.Event.getPageY(e));
-                    if (diffX > this.clickPixelThresh || 
-                                diffY > this.clickPixelThresh) {
-                        this.startDrag(this.startX, this.startY);
-                    }
-                }
-
-                if (this.dragThreshMet) {
-                    if (dc && dc.events.b4Drag) {
-                        dc.b4Drag(e);
-                        dc.fireEvent('b4DragEvent', { e: e});
-                    }
-                    if (dc && dc.events.drag) {
-                        dc.onDrag(e);
-                        dc.fireEvent('dragEvent', { e: e});
-                    }
-                    if (dc) {
-                        this.fireEvents(e, false);
-                    }
-                }
-
-                this.stopEvent(e);
-            }
-        },
-        
-        /**
-         * Iterates over all of the DragDrop elements to find ones we are 
-         * hovering over or dropping on
-         * @method fireEvents
-         * @param {Event} e the event
-         * @param {boolean} isDrop is this a drop op or a mouseover op?
-         * @private
-         * @static
-         */
-        fireEvents: function(e, isDrop) {
-            var dc = this.dragCurrent;
-
-            // If the user did the mouse up outside of the window, we could 
-            // get here even though we have ended the drag.
-            // If the config option dragOnly is true, bail out and don't fire the events
-            if (!dc || dc.isLocked() || dc.dragOnly) {
-                return;
-            }
-
-            var x = YAHOO.util.Event.getPageX(e),
-                y = YAHOO.util.Event.getPageY(e),
-                pt = new YAHOO.util.Point(x,y),
-                pos = dc.getTargetCoord(pt.x, pt.y),
-                el = dc.getDragEl(),
-                events = ['out', 'over', 'drop', 'enter'],
-                curRegion = new YAHOO.util.Region( pos.y, 
-                                               pos.x + el.offsetWidth,
-                                               pos.y + el.offsetHeight, 
-                                               pos.x ),
-            
-                oldOvers = [], // cache the previous dragOver array
-                inGroupsObj  = {},
-                inGroups  = [],
-                data = {
-                    outEvts: [],
-                    overEvts: [],
-                    dropEvts: [],
-                    enterEvts: []
-                };
-
-
-            // Check to see if the object(s) we were hovering over is no longer 
-            // being hovered over so we can fire the onDragOut event
-            for (var i in this.dragOvers) {
-
-                var ddo = this.dragOvers[i];
-
-                if (! this.isTypeOfDD(ddo)) {
-                    continue;
-                }
-                if (! this.isOverTarget(pt, ddo, this.mode, curRegion)) {
-                    data.outEvts.push( ddo );
-                }
-
-                oldOvers[i] = true;
-                delete this.dragOvers[i];
-            }
-
-            for (var sGroup in dc.groups) {
-                
-                if ("string" != typeof sGroup) {
-                    continue;
-                }
-
-                for (i in this.ids[sGroup]) {
-                    var oDD = this.ids[sGroup][i];
-                    if (! this.isTypeOfDD(oDD)) {
-                        continue;
-                    }
-
-                    if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
-                        if (this.isOverTarget(pt, oDD, this.mode, curRegion)) {
-                            inGroupsObj[sGroup] = true;
-                            // look for drop interactions
-                            if (isDrop) {
-                                data.dropEvts.push( oDD );
-                            // look for drag enter and drag over interactions
-                            } else {
-
-                                // initial drag over: dragEnter fires
-                                if (!oldOvers[oDD.id]) {
-                                    data.enterEvts.push( oDD );
-                                // subsequent drag overs: dragOver fires
-                                } else {
-                                    data.overEvts.push( oDD );
-                                }
-
-                                this.dragOvers[oDD.id] = oDD;
-                            }
-                        }
-                    }
-                }
-            }
-
-            this.interactionInfo = {
-                out:       data.outEvts,
-                enter:     data.enterEvts,
-                over:      data.overEvts,
-                drop:      data.dropEvts,
-                point:     pt,
-                draggedRegion:    curRegion,
-                sourceRegion: this.locationCache[dc.id],
-                validDrop: isDrop
-            };
-
-            
-            for (var inG in inGroupsObj) {
-                inGroups.push(inG);
-            }
-
-            // notify about a drop that did not find a target
-            if (isDrop && !data.dropEvts.length) {
-                this.interactionInfo.validDrop = false;
-                if (dc.events.invalidDrop) {
-                    dc.onInvalidDrop(e);
-                    dc.fireEvent('invalidDropEvent', { e: e });
-                }
-            }
-            for (i = 0; i < events.length; i++) {
-                var tmp = null;
-                if (data[events[i] + 'Evts']) {
-                    tmp = data[events[i] + 'Evts'];
-                }
-                if (tmp && tmp.length) {
-                    var type = events[i].charAt(0).toUpperCase() + events[i].substr(1),
-                        ev = 'onDrag' + type,
-                        b4 = 'b4Drag' + type,
-                        cev = 'drag' + type + 'Event',
-                        check = 'drag' + type;
-                    if (this.mode) {
-                        if (dc.events[b4]) {
-                            dc[b4](e, tmp, inGroups);
-                            dc.fireEvent(b4 + 'Event', { event: e, info: tmp, group: inGroups });
-                            
-                        }
-                        if (dc.events[check]) {
-                            dc[ev](e, tmp, inGroups);
-                            dc.fireEvent(cev, { event: e, info: tmp, group: inGroups });
-                        }
-                    } else {
-                        for (var b = 0, len = tmp.length; b < len; ++b) {
-                            if (dc.events[b4]) {
-                                dc[b4](e, tmp[b].id, inGroups[0]);
-                                dc.fireEvent(b4 + 'Event', { event: e, info: tmp[b].id, group: inGroups[0] });
-                            }
-                            if (dc.events[check]) {
-                                dc[ev](e, tmp[b].id, inGroups[0]);
-                                dc.fireEvent(cev, { event: e, info: tmp[b].id, group: inGroups[0] });
-                            }
-                        }
-                    }
-                }
-            }
-        },
-
-        /**
-         * Helper function for getting the best match from the list of drag 
-         * and drop objects returned by the drag and drop events when we are 
-         * in INTERSECT mode.  It returns either the first object that the 
-         * cursor is over, or the object that has the greatest overlap with 
-         * the dragged element.
-         * @method getBestMatch
-         * @param  {DragDrop[]} dds The array of drag and drop objects 
-         * targeted
-         * @return {DragDrop}       The best single match
-         * @static
-         */
-        getBestMatch: function(dds) {
-            var winner = null;
-
-            var len = dds.length;
-
-            if (len == 1) {
-                winner = dds[0];
-            } else {
-                // Loop through the targeted items
-                for (var i=0; i<len; ++i) {
-                    var dd = dds[i];
-                    // If the cursor is over the object, it wins.  If the 
-                    // cursor is over multiple matches, the first one we come
-                    // to wins.
-                    if (this.mode == this.INTERSECT && dd.cursorIsOver) {
-                        winner = dd;
-                        break;
-                    // Otherwise the object with the most overlap wins
-                    } else {
-                        if (!winner || !winner.overlap || (dd.overlap &&
-                            winner.overlap.getArea() < dd.overlap.getArea())) {
-                            winner = dd;
-                        }
-                    }
-                }
-            }
-
-            return winner;
-        },
-
-        /**
-         * Refreshes the cache of the top-left and bottom-right points of the 
-         * drag and drop objects in the specified group(s).  This is in the
-         * format that is stored in the drag and drop instance, so typical 
-         * usage is:
-         * <code>
-         * YAHOO.util.DragDropMgr.refreshCache(ddinstance.groups);
-         * </code>
-         * Alternatively:
-         * <code>
-         * YAHOO.util.DragDropMgr.refreshCache({group1:true, group2:true});
-         * </code>
-         * @TODO this really should be an indexed array.  Alternatively this
-         * method could accept both.
-         * @method refreshCache
-         * @param {Object} groups an associative array of groups to refresh
-         * @static
-         */
-        refreshCache: function(groups) {
-
-            // refresh everything if group array is not provided
-            var g = groups || this.ids;
-
-            for (var sGroup in g) {
-                if ("string" != typeof sGroup) {
-                    continue;
-                }
-                for (var i in this.ids[sGroup]) {
-                    var oDD = this.ids[sGroup][i];
-
-                    if (this.isTypeOfDD(oDD)) {
-                        var loc = this.getLocation(oDD);
-                        if (loc) {
-                            this.locationCache[oDD.id] = loc;
-                        } else {
-                            delete this.locationCache[oDD.id];
-                        }
-                    }
-                }
-            }
-        },
-
-        /**
-         * This checks to make sure an element exists and is in the DOM.  The
-         * main purpose is to handle cases where innerHTML is used to remove
-         * drag and drop objects from the DOM.  IE provides an 'unspecified
-         * error' when trying to access the offsetParent of such an element
-         * @method verifyEl
-         * @param {HTMLElement} el the element to check
-         * @return {boolean} true if the element looks usable
-         * @static
-         */
-        verifyEl: function(el) {
-            try {
-                if (el) {
-                    var parent = el.offsetParent;
-                    if (parent) {
-                        return true;
-                    }
-                }
-            } catch(e) {
-            }
-
-            return false;
-        },
-        
-        /**
-         * Returns a Region object containing the drag and drop element's position
-         * and size, including the padding configured for it
-         * @method getLocation
-         * @param {DragDrop} oDD the drag and drop object to get the 
-         *                       location for
-         * @return {YAHOO.util.Region} a Region object representing the total area
-         *                             the element occupies, including any padding
-         *                             the instance is configured for.
-         * @static
-         */
-        getLocation: function(oDD) {
-            if (! this.isTypeOfDD(oDD)) {
-                return null;
-            }
-
-            var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
-
-            try {
-                pos= YAHOO.util.Dom.getXY(el);
-            } catch (e) { }
-
-            if (!pos) {
-                return null;
-            }
-
-            x1 = pos[0];
-            x2 = x1 + el.offsetWidth;
-            y1 = pos[1];
-            y2 = y1 + el.offsetHeight;
-
-            t = y1 - oDD.padding[0];
-            r = x2 + oDD.padding[1];
-            b = y2 + oDD.padding[2];
-            l = x1 - oDD.padding[3];
-
-            return new YAHOO.util.Region( t, r, b, l );
-        },
-
-        /**
-         * Checks the cursor location to see if it over the target
-         * @method isOverTarget
-         * @param {YAHOO.util.Point} pt The point to evaluate
-         * @param {DragDrop} oTarget the DragDrop object we are inspecting
-         * @param {boolean} intersect true if we are in intersect mode
-         * @param {YAHOO.util.Region} pre-cached location of the dragged element
-         * @return {boolean} true if the mouse is over the target
-         * @private
-         * @static
-         */
-        isOverTarget: function(pt, oTarget, intersect, curRegion) {
-            // use cache if available
-            var loc = this.locationCache[oTarget.id];
-            if (!loc || !this.useCache) {
-                loc = this.getLocation(oTarget);
-                this.locationCache[oTarget.id] = loc;
-
-            }
-
-            if (!loc) {
-                return false;
-            }
-
-            oTarget.cursorIsOver = loc.contains( pt );
-
-            // DragDrop is using this as a sanity check for the initial mousedown
-            // in this case we are done.  In POINT mode, if the drag obj has no
-            // contraints, we are done. Otherwise we need to evaluate the 
-            // region the target as occupies to determine if the dragged element
-            // overlaps with it.
-            
-            var dc = this.dragCurrent;
-            if (!dc || (!intersect && !dc.constrainX && !dc.constrainY)) {
-
-                //if (oTarget.cursorIsOver) {
-                //}
-                return oTarget.cursorIsOver;
-            }
-
-            oTarget.overlap = null;
-
-
-            // Get the current location of the drag element, this is the
-            // location of the mouse event less the delta that represents
-            // where the original mousedown happened on the element.  We
-            // need to consider constraints and ticks as well.
-
-            if (!curRegion) {
-                var pos = dc.getTargetCoord(pt.x, pt.y);
-                var el = dc.getDragEl();
-                curRegion = new YAHOO.util.Region( pos.y, 
-                                                   pos.x + el.offsetWidth,
-                                                   pos.y + el.offsetHeight, 
-                                                   pos.x );
-            }
-
-            var overlap = curRegion.intersect(loc);
-
-            if (overlap) {
-                oTarget.overlap = overlap;
-                return (intersect) ? true : oTarget.cursorIsOver;
-            } else {
-                return false;
-            }
-        },
-
-        /**
-         * unload event handler
-         * @method _onUnload
-         * @private
-         * @static
-         */
-        _onUnload: function(e, me) {
-            this.unregAll();
-        },
-
-        /**
-         * Cleans up the drag and drop events and objects.
-         * @method unregAll
-         * @private
-         * @static
-         */
-        unregAll: function() {
-
-            if (this.dragCurrent) {
-                this.stopDrag();
-                this.dragCurrent = null;
-            }
-
-            this._execOnAll("unreg", []);
-
-            //for (var i in this.elementCache) {
-                //delete this.elementCache[i];
-            //}
-            //this.elementCache = {};
-
-            this.ids = {};
-        },
-
-        /**
-         * A cache of DOM elements
-         * @property elementCache
-         * @private
-         * @static
-         * @deprecated elements are not cached now
-         */
-        elementCache: {},
-        
-        /**
-         * Get the wrapper for the DOM element specified
-         * @method getElWrapper
-         * @param {String} id the id of the element to get
-         * @return {YAHOO.util.DDM.ElementWrapper} the wrapped element
-         * @private
-         * @deprecated This wrapper isn't that useful
-         * @static
-         */
-        getElWrapper: function(id) {
-            var oWrapper = this.elementCache[id];
-            if (!oWrapper || !oWrapper.el) {
-                oWrapper = this.elementCache[id] = 
-                    new this.ElementWrapper(YAHOO.util.Dom.get(id));
-            }
-            return oWrapper;
-        },
-
-        /**
-         * Returns the actual DOM element
-         * @method getElement
-         * @param {String} id the id of the elment to get
-         * @return {Object} The element
-         * @deprecated use YAHOO.util.Dom.get instead
-         * @static
-         */
-        getElement: function(id) {
-            return YAHOO.util.Dom.get(id);
-        },
-        
-        /**
-         * Returns the style property for the DOM element (i.e., 
-         * document.getElById(id).style)
-         * @method getCss
-         * @param {String} id the id of the elment to get
-         * @return {Object} The style property of the element
-         * @deprecated use YAHOO.util.Dom instead
-         * @static
-         */
-        getCss: function(id) {
-            var el = YAHOO.util.Dom.get(id);
-            return (el) ? el.style : null;
-        },
-
-        /**
-         * Inner class for cached elements
-         * @class DragDropMgr.ElementWrapper
-         * @for DragDropMgr
-         * @private
-         * @deprecated
-         */
-        ElementWrapper: function(el) {
-                /**
-                 * The element
-                 * @property el
-                 */
-                this.el = el || null;
-                /**
-                 * The element id
-                 * @property id
-                 */
-                this.id = this.el && el.id;
-                /**
-                 * A reference to the style property
-                 * @property css
-                 */
-                this.css = this.el && el.style;
-            },
-
-        /**
-         * Returns the X position of an html element
-         * @method getPosX
-         * @param el the element for which to get the position
-         * @return {int} the X coordinate
-         * @for DragDropMgr
-         * @deprecated use YAHOO.util.Dom.getX instead
-         * @static
-         */
-        getPosX: function(el) {
-            return YAHOO.util.Dom.getX(el);
-        },
-
-        /**
-         * Returns the Y position of an html element
-         * @method getPosY
-         * @param el the element for which to get the position
-         * @return {int} the Y coordinate
-         * @deprecated use YAHOO.util.Dom.getY instead
-         * @static
-         */
-        getPosY: function(el) {
-            return YAHOO.util.Dom.getY(el); 
-        },
-
-        /**
-         * Swap two nodes.  In IE, we use the native method, for others we 
-         * emulate the IE behavior
-         * @method swapNode
-         * @param n1 the first node to swap
-         * @param n2 the other node to swap
-         * @static
-         */
-        swapNode: function(n1, n2) {
-            if (n1.swapNode) {
-                n1.swapNode(n2);
-            } else {
-                var p = n2.parentNode;
-                var s = n2.nextSibling;
-
-                if (s == n1) {
-                    p.insertBefore(n1, n2);
-                } else if (n2 == n1.nextSibling) {
-                    p.insertBefore(n2, n1);
-                } else {
-                    n1.parentNode.replaceChild(n2, n1);
-                    p.insertBefore(n1, s);
-                }
-            }
-        },
-
-        /**
-         * Returns the current scroll position
-         * @method getScroll
-         * @private
-         * @static
-         */
-        getScroll: function () {
-            var t, l, dde=document.documentElement, db=document.body;
-            if (dde && (dde.scrollTop || dde.scrollLeft)) {
-                t = dde.scrollTop;
-                l = dde.scrollLeft;
-            } else if (db) {
-                t = db.scrollTop;
-                l = db.scrollLeft;
-            } else {
-            }
-            return { top: t, left: l };
-        },
-
-        /**
-         * Returns the specified element style property
-         * @method getStyle
-         * @param {HTMLElement} el          the element
-         * @param {string}      styleProp   the style property
-         * @return {string} The value of the style property
-         * @deprecated use YAHOO.util.Dom.getStyle
-         * @static
-         */
-        getStyle: function(el, styleProp) {
-            return YAHOO.util.Dom.getStyle(el, styleProp);
-        },
-
-        /**
-         * Gets the scrollTop
-         * @method getScrollTop
-         * @return {int} the document's scrollTop
-         * @static
-         */
-        getScrollTop: function () { return this.getScroll().top; },
-
-        /**
-         * Gets the scrollLeft
-         * @method getScrollLeft
-         * @return {int} the document's scrollTop
-         * @static
-         */
-        getScrollLeft: function () { return this.getScroll().left; },
-
-        /**
-         * Sets the x/y position of an element to the location of the
-         * target element.
-         * @method moveToEl
-         * @param {HTMLElement} moveEl      The element to move
-         * @param {HTMLElement} targetEl    The position reference element
-         * @static
-         */
-        moveToEl: function (moveEl, targetEl) {
-            var aCoord = YAHOO.util.Dom.getXY(targetEl);
-            YAHOO.util.Dom.setXY(moveEl, aCoord);
-        },
-
-        /**
-         * Gets the client height
-         * @method getClientHeight
-         * @return {int} client height in px
-         * @deprecated use YAHOO.util.Dom.getViewportHeight instead
-         * @static
-         */
-        getClientHeight: function() {
-            return YAHOO.util.Dom.getViewportHeight();
-        },
-
-        /**
-         * Gets the client width
-         * @method getClientWidth
-         * @return {int} client width in px
-         * @deprecated use YAHOO.util.Dom.getViewportWidth instead
-         * @static
-         */
-        getClientWidth: function() {
-            return YAHOO.util.Dom.getViewportWidth();
-        },
-
-        /**
-         * Numeric array sort function
-         * @method numericSort
-         * @static
-         */
-        numericSort: function(a, b) { return (a - b); },
-
-        /**
-         * Internal counter
-         * @property _timeoutCount
-         * @private
-         * @static
-         */
-        _timeoutCount: 0,
-
-        /**
-         * Trying to make the load order less important.  Without this we get
-         * an error if this file is loaded before the Event Utility.
-         * @method _addListeners
-         * @private
-         * @static
-         */
-        _addListeners: function() {
-            var DDM = YAHOO.util.DDM;
-            if ( YAHOO.util.Event && document ) {
-                DDM._onLoad();
-            } else {
-                if (DDM._timeoutCount > 2000) {
-                } else {
-                    setTimeout(DDM._addListeners, 10);
-                    if (document && document.body) {
-                        DDM._timeoutCount += 1;
-                    }
-                }
-            }
-        },
-
-        /**
-         * Recursively searches the immediate parent and all child nodes for 
-         * the handle element in order to determine wheter or not it was 
-         * clicked.
-         * @method handleWasClicked
-         * @param node the html element to inspect
-         * @static
-         */
-        handleWasClicked: function(node, id) {
-            if (this.isHandle(id, node.id)) {
-                return true;
-            } else {
-                // check to see if this is a text node child of the one we want
-                var p = node.parentNode;
-
-                while (p) {
-                    if (this.isHandle(id, p.id)) {
-                        return true;
-                    } else {
-                        p = p.parentNode;
-                    }
-                }
-            }
-
-            return false;
-        }
-
-    };
-
-}();
-
-// shorter alias, save a few bytes
-YAHOO.util.DDM = YAHOO.util.DragDropMgr;
-YAHOO.util.DDM._addListeners();
-
-}
-
-(function() {
-
-var Event=YAHOO.util.Event; 
-var Dom=YAHOO.util.Dom;
-
-/**
- * Defines the interface and base operation of items that that can be 
- * dragged or can be drop targets.  It was designed to be extended, overriding
- * the event handlers for startDrag, onDrag, onDragOver, onDragOut.
- * Up to three html elements can be associated with a DragDrop instance:
- * <ul>
- * <li>linked element: the element that is passed into the constructor.
- * This is the element which defines the boundaries for interaction with 
- * other DragDrop objects.</li>
- * <li>handle element(s): The drag operation only occurs if the element that 
- * was clicked matches a handle element.  By default this is the linked 
- * element, but there are times that you will want only a portion of the 
- * linked element to initiate the drag operation, and the setHandleElId() 
- * method provides a way to define this.</li>
- * <li>drag element: this represents an the element that would be moved along
- * with the cursor during a drag operation.  By default, this is the linked
- * element itself as in {@link YAHOO.util.DD}.  setDragElId() lets you define
- * a separate element that would be moved, as in {@link YAHOO.util.DDProxy}
- * </li>
- * </ul>
- * This class should not be instantiated until the onload event to ensure that
- * the associated elements are available.
- * The following would define a DragDrop obj that would interact with any 
- * other DragDrop obj in the "group1" group:
- * <pre>
- *  dd = new YAHOO.util.DragDrop("div1", "group1");
- * </pre>
- * Since none of the event handlers have been implemented, nothing would 
- * actually happen if you were to run the code above.  Normally you would 
- * override this class or one of the default implementations, but you can 
- * also override the methods you want on an instance of the class...
- * <pre>
- *  dd.onDragDrop = function(e, id) {
- *  &nbsp;&nbsp;alert("dd was dropped on " + id);
- *  }
- * </pre>
- * @namespace YAHOO.util
- * @class DragDrop
- * @constructor
- * @param {String} id of the element that is linked to this instance
- * @param {String} sGroup the group of related DragDrop objects
- * @param {object} config an object containing configurable attributes
- *                Valid properties for DragDrop: 
- *                    padding, isTarget, maintainOffset, primaryButtonOnly,
- */
-YAHOO.util.DragDrop = function(id, sGroup, config) {
-    if (id) {
-        this.init(id, sGroup, config); 
-    }
-};
-
-YAHOO.util.DragDrop.prototype = {
-    /**
-     * An Object Literal containing the events that we will be using: mouseDown, b4MouseDown, mouseUp, b4StartDrag, startDrag, b4EndDrag, endDrag, mouseUp, drag, b4Drag, invalidDrop, b4DragOut, dragOut, dragEnter, b4DragOver, dragOver, b4DragDrop, dragDrop
-     * By setting any of these to false, then event will not be fired.
-     * @property events
-     * @type object
-     */
-    events: null,
-    /**
-    * @method on
-    * @description Shortcut for EventProvider.subscribe, see <a href="YAHOO.util.EventProvider.html#subscribe">YAHOO.util.EventProvider.subscribe</a>
-    */
-    on: function() {
-        this.subscribe.apply(this, arguments);
-    },
-    /**
-     * The id of the element associated with this object.  This is what we 
-     * refer to as the "linked element" because the size and position of 
-     * this element is used to determine when the drag and drop objects have 
-     * interacted.
-     * @property id
-     * @type String
-     */
-    id: null,
-
-    /**
-     * Configuration attributes passed into the constructor
-     * @property config
-     * @type object
-     */
-    config: null,
-
-    /**
-     * The id of the element that will be dragged.  By default this is same 
-     * as the linked element , but could be changed to another element. Ex: 
-     * YAHOO.util.DDProxy
-     * @property dragElId
-     * @type String
-     * @private
-     */
-    dragElId: null, 
-
-    /**
-     * the id of the element that initiates the drag operation.  By default 
-     * this is the linked element, but could be changed to be a child of this
-     * element.  This lets us do things like only starting the drag when the 
-     * header element within the linked html element is clicked.
-     * @property handleElId
-     * @type String
-     * @private
-     */
-    handleElId: null, 
-
-    /**
-     * An associative array of HTML tags that will be ignored if clicked.
-     * @property invalidHandleTypes
-     * @type {string: string}
-     */
-    invalidHandleTypes: null, 
-
-    /**
-     * An associative array of ids for elements that will be ignored if clicked
-     * @property invalidHandleIds
-     * @type {string: string}
-     */
-    invalidHandleIds: null, 
-
-    /**
-     * An indexted array of css class names for elements that will be ignored
-     * if clicked.
-     * @property invalidHandleClasses
-     * @type string[]
-     */
-    invalidHandleClasses: null, 
-
-    /**
-     * The linked element's absolute X position at the time the drag was 
-     * started
-     * @property startPageX
-     * @type int
-     * @private
-     */
-    startPageX: 0,
-
-    /**
-     * The linked element's absolute X position at the time the drag was 
-     * started
-     * @property startPageY
-     * @type int
-     * @private
-     */
-    startPageY: 0,
-
-    /**
-     * The group defines a logical collection of DragDrop objects that are 
-     * related.  Instances only get events when interacting with other 
-     * DragDrop object in the same group.  This lets us define multiple 
-     * groups using a single DragDrop subclass if we want.
-     * @property groups
-     * @type {string: string}
-     */
-    groups: null,
-
-    /**
-     * Individual drag/drop instances can be locked.  This will prevent 
-     * onmousedown start drag.
-     * @property locked
-     * @type boolean
-     * @private
-     */
-    locked: false,
-
-    /**
-     * Lock this instance
-     * @method lock
-     */
-    lock: function() { this.locked = true; },
-
-    /**
-     * Unlock this instace
-     * @method unlock
-     */
-    unlock: function() { this.locked = false; },
-
-    /**
-     * By default, all instances can be a drop target.  This can be disabled by
-     * setting isTarget to false.
-     * @property isTarget
-     * @type boolean
-     */
-    isTarget: true,
-
-    /**
-     * The padding configured for this drag and drop object for calculating
-     * the drop zone intersection with this object.
-     * @property padding
-     * @type int[]
-     */
-    padding: null,
-    /**
-     * If this flag is true, do not fire drop events. The element is a drag only element (for movement not dropping)
-     * @property dragOnly
-     * @type Boolean
-     */
-    dragOnly: false,
-
-    /**
-     * If this flag is true, a shim will be placed over the screen/viewable area to track mouse events. Should help with dragging elements over iframes and other controls.
-     * @property useShim
-     * @type Boolean
-     */
-    useShim: false,
-
-    /**
-     * Cached reference to the linked element
-     * @property _domRef
-     * @private
-     */
-    _domRef: null,
-
-    /**
-     * Internal typeof flag
-     * @property __ygDragDrop
-     * @private
-     */
-    __ygDragDrop: true,
-
-    /**
-     * Set to true when horizontal contraints are applied
-     * @property constrainX
-     * @type boolean
-     * @private
-     */
-    constrainX: false,
-
-    /**
-     * Set to true when vertical contraints are applied
-     * @property constrainY
-     * @type boolean
-     * @private
-     */
-    constrainY: false,
-
-    /**
-     * The left constraint
-     * @property minX
-     * @type int
-     * @private
-     */
-    minX: 0,
-
-    /**
-     * The right constraint
-     * @property maxX
-     * @type int
-     * @private
-     */
-    maxX: 0,
-
-    /**
-     * The up constraint 
-     * @property minY
-     * @type int
-     * @type int
-     * @private
-     */
-    minY: 0,
-
-    /**
-     * The down constraint 
-     * @property maxY
-     * @type int
-     * @private
-     */
-    maxY: 0,
-
-    /**
-     * The difference between the click position and the source element's location
-     * @property deltaX
-     * @type int
-     * @private
-     */
-    deltaX: 0,
-
-    /**
-     * The difference between the click position and the source element's location
-     * @property deltaY
-     * @type int
-     * @private
-     */
-    deltaY: 0,
-
-    /**
-     * Maintain offsets when we resetconstraints.  Set to true when you want
-     * the position of the element relative to its parent to stay the same
-     * when the page changes
-     *
-     * @property maintainOffset
-     * @type boolean
-     */
-    maintainOffset: false,
-
-    /**
-     * Array of pixel locations the element will snap to if we specified a 
-     * horizontal graduation/interval.  This array is generated automatically
-     * when you define a tick interval.
-     * @property xTicks
-     * @type int[]
-     */
-    xTicks: null,
-
-    /**
-     * Array of pixel locations the element will snap to if we specified a 
-     * vertical graduation/interval.  This array is generated automatically 
-     * when you define a tick interval.
-     * @property yTicks
-     * @type int[]
-     */
-    yTicks: null,
-
-    /**
-     * By default the drag and drop instance will only respond to the primary
-     * button click (left button for a right-handed mouse).  Set to true to
-     * allow drag and drop to start with any mouse click that is propogated
-     * by the browser
-     * @property primaryButtonOnly
-     * @type boolean
-     */
-    primaryButtonOnly: true,
-
-    /**
-     * The availabe property is false until the linked dom element is accessible.
-     * @property available
-     * @type boolean
-     */
-    available: false,
-
-    /**
-     * By default, drags can only be initiated if the mousedown occurs in the
-     * region the linked element is.  This is done in part to work around a
-     * bug in some browsers that mis-report the mousedown if the previous
-     * mouseup happened outside of the window.  This property is set to true
-     * if outer handles are defined.
-     *
-     * @property hasOuterHandles
-     * @type boolean
-     * @default false
-     */
-    hasOuterHandles: false,
-
-    /**
-     * Property that is assigned to a drag and drop object when testing to
-     * see if it is being targeted by another dd object.  This property
-     * can be used in intersect mode to help determine the focus of
-     * the mouse interaction.  DDM.getBestMatch uses this property first to
-     * determine the closest match in INTERSECT mode when multiple targets
-     * are part of the same interaction.
-     * @property cursorIsOver
-     * @type boolean
-     */
-    cursorIsOver: false,
-
-    /**
-     * Property that is assigned to a drag and drop object when testing to
-     * see if it is being targeted by another dd object.  This is a region
-     * that represents the area the draggable element overlaps this target.
-     * DDM.getBestMatch uses this property to compare the size of the overlap
-     * to that of other targets in order to determine the closest match in
-     * INTERSECT mode when multiple targets are part of the same interaction.
-     * @property overlap 
-     * @type YAHOO.util.Region
-     */
-    overlap: null,
-
-    /**
-     * Code that executes immediately before the startDrag event
-     * @method b4StartDrag
-     * @private
-     */
-    b4StartDrag: function(x, y) { },
-
-    /**
-     * Abstract method called after a drag/drop object is clicked
-     * and the drag or mousedown time thresholds have beeen met.
-     * @method startDrag
-     * @param {int} X click location
-     * @param {int} Y click location
-     */
-    startDrag: function(x, y) { /* override this */ },
-
-    /**
-     * Code that executes immediately before the onDrag event
-     * @method b4Drag
-     * @private
-     */
-    b4Drag: function(e) { },
-
-    /**
-     * Abstract method called during the onMouseMove event while dragging an 
-     * object.
-     * @method onDrag
-     * @param {Event} e the mousemove event
-     */
-    onDrag: function(e) { /* override this */ },
-
-    /**
-     * Abstract method called when this element fist begins hovering over 
-     * another DragDrop obj
-     * @method onDragEnter
-     * @param {Event} e the mousemove event
-     * @param {String|DragDrop[]} id In POINT mode, the element
-     * id this is hovering over.  In INTERSECT mode, an array of one or more 
-     * dragdrop items being hovered over.
-     */
-    onDragEnter: function(e, id) { /* override this */ },
-
-    /**
-     * Code that executes immediately before the onDragOver event
-     * @method b4DragOver
-     * @private
-     */
-    b4DragOver: function(e) { },
-
-    /**
-     * Abstract method called when this element is hovering over another 
-     * DragDrop obj
-     * @method onDragOver
-     * @param {Event} e the mousemove event
-     * @param {String|DragDrop[]} id In POINT mode, the element
-     * id this is hovering over.  In INTERSECT mode, an array of dd items 
-     * being hovered over.
-     */
-    onDragOver: function(e, id) { /* override this */ },
-
-    /**
-     * Code that executes immediately before the onDragOut event
-     * @method b4DragOut
-     * @private
-     */
-    b4DragOut: function(e) { },
-
-    /**
-     * Abstract method called when we are no longer hovering over an element
-     * @method onDragOut
-     * @param {Event} e the mousemove event
-     * @param {String|DragDrop[]} id In POINT mode, the element
-     * id this was hovering over.  In INTERSECT mode, an array of dd items 
-     * that the mouse is no longer over.
-     */
-    onDragOut: function(e, id) { /* override this */ },
-
-    /**
-     * Code that executes immediately before the onDragDrop event
-     * @method b4DragDrop
-     * @private
-     */
-    b4DragDrop: function(e) { },
-
-    /**
-     * Abstract method called when this item is dropped on another DragDrop 
-     * obj
-     * @method onDragDrop
-     * @param {Event} e the mouseup event
-     * @param {String|DragDrop[]} id In POINT mode, the element
-     * id this was dropped on.  In INTERSECT mode, an array of dd items this 
-     * was dropped on.
-     */
-    onDragDrop: function(e, id) { /* override this */ },
-
-    /**
-     * Abstract method called when this item is dropped on an area with no
-     * drop target
-     * @method onInvalidDrop
-     * @param {Event} e the mouseup event
-     */
-    onInvalidDrop: function(e) { /* override this */ },
-
-    /**
-     * Code that executes immediately before the endDrag event
-     * @method b4EndDrag
-     * @private
-     */
-    b4EndDrag: function(e) { },
-
-    /**
-     * Fired when we are done dragging the object
-     * @method endDrag
-     * @param {Event} e the mouseup event
-     */
-    endDrag: function(e) { /* override this */ },
-
-    /**
-     * Code executed immediately before the onMouseDown event
-     * @method b4MouseDown
-     * @param {Event} e the mousedown event
-     * @private
-     */
-    b4MouseDown: function(e) {  },
-
-    /**
-     * Event handler that fires when a drag/drop obj gets a mousedown
-     * @method onMouseDown
-     * @param {Event} e the mousedown event
-     */
-    onMouseDown: function(e) { /* override this */ },
-
-    /**
-     * Event handler that fires when a drag/drop obj gets a mouseup
-     * @method onMouseUp
-     * @param {Event} e the mouseup event
-     */
-    onMouseUp: function(e) { /* override this */ },
-   
-    /**
-     * Override the onAvailable method to do what is needed after the initial
-     * position was determined.
-     * @method onAvailable
-     */
-    onAvailable: function () { 
-    },
-
-    /**
-     * Returns a reference to the linked element
-     * @method getEl
-     * @return {HTMLElement} the html element 
-     */
-    getEl: function() { 
-        if (!this._domRef) {
-            this._domRef = Dom.get(this.id); 
-        }
-
-        return this._domRef;
-    },
-
-    /**
-     * Returns a reference to the actual element to drag.  By default this is
-     * the same as the html element, but it can be assigned to another 
-     * element. An example of this can be found in YAHOO.util.DDProxy
-     * @method getDragEl
-     * @return {HTMLElement} the html element 
-     */
-    getDragEl: function() {
-        return Dom.get(this.dragElId);
-    },
-
-    /**
-     * Sets up the DragDrop object.  Must be called in the constructor of any
-     * YAHOO.util.DragDrop subclass
-     * @method init
-     * @param id the id of the linked element
-     * @param {String} sGroup the group of related items
-     * @param {object} config configuration attributes
-     */
-    init: function(id, sGroup, config) {
-        this.initTarget(id, sGroup, config);
-        Event.on(this._domRef || this.id, "mousedown", 
-                        this.handleMouseDown, this, true);
-
-        // Event.on(this.id, "selectstart", Event.preventDefault);
-        for (var i in this.events) {
-            this.createEvent(i + 'Event');
-        }
-        
-    },
-
-    /**
-     * Initializes Targeting functionality only... the object does not
-     * get a mousedown handler.
-     * @method initTarget
-     * @param id the id of the linked element
-     * @param {String} sGroup the group of related items
-     * @param {object} config configuration attributes
-     */
-    initTarget: function(id, sGroup, config) {
-
-        // configuration attributes 
-        this.config = config || {};
-
-        this.events = {};
-
-        // create a local reference to the drag and drop manager
-        this.DDM = YAHOO.util.DDM;
-
-        // initialize the groups object
-        this.groups = {};
-
-        // assume that we have an element reference instead of an id if the
-        // parameter is not a string
-        if (typeof id !== "string") {
-            this._domRef = id;
-            id = Dom.generateId(id);
-        }
-
-        // set the id
-        this.id = id;
-
-        // add to an interaction group
-        this.addToGroup((sGroup) ? sGroup : "default");
-
-        // We don't want to register this as the handle with the manager
-        // so we just set the id rather than calling the setter.
-        this.handleElId = id;
-
-        Event.onAvailable(id, this.handleOnAvailable, this, true);
-
-
-        // the linked element is the element that gets dragged by default
-        this.setDragElId(id); 
-
-        // by default, clicked anchors will not start drag operations. 
-        // @TODO what else should be here?  Probably form fields.
-        this.invalidHandleTypes = { A: "A" };
-        this.invalidHandleIds = {};
-        this.invalidHandleClasses = [];
-
-        this.applyConfig();
-    },
-
-    /**
-     * Applies the configuration parameters that were passed into the constructor.
-     * This is supposed to happen at each level through the inheritance chain.  So
-     * a DDProxy implentation will execute apply config on DDProxy, DD, and 
-     * DragDrop in order to get all of the parameters that are available in
-     * each object.
-     * @method applyConfig
-     */
-    applyConfig: function() {
-        this.events = {
-            mouseDown: true,
-            b4MouseDown: true,
-            mouseUp: true,
-            b4StartDrag: true,
-            startDrag: true,
-            b4EndDrag: true,
-            endDrag: true,
-            drag: true,
-            b4Drag: true,
-            invalidDrop: true,
-            b4DragOut: true,
-            dragOut: true,
-            dragEnter: true,
-            b4DragOver: true,
-            dragOver: true,
-            b4DragDrop: true,
-            dragDrop: true
-        };
-        
-        if (this.config.events) {
-            for (var i in this.config.events) {
-                if (this.config.events[i] === false) {
-                    this.events[i] = false;
-                }
-            }
-        }
-
-
-        // configurable properties: 
-        //    padding, isTarget, maintainOffset, primaryButtonOnly
-        this.padding           = this.config.padding || [0, 0, 0, 0];
-        this.isTarget          = (this.config.isTarget !== false);
-        this.maintainOffset    = (this.config.maintainOffset);
-        this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
-        this.dragOnly = ((this.config.dragOnly === true) ? true : false);
-        this.useShim = ((this.config.useShim === true) ? true : false);
-    },
-
-    /**
-     * Executed when the linked element is available
-     * @method handleOnAvailable
-     * @private
-     */
-    handleOnAvailable: function() {
-        this.available = true;
-        this.resetConstraints();
-        this.onAvailable();
-    },
-
-     /**
-     * Configures the padding for the target zone in px.  Effectively expands
-     * (or reduces) the virtual object size for targeting calculations.  
-     * Supports css-style shorthand; if only one parameter is passed, all sides
-     * will have that padding, and if only two are passed, the top and bottom
-     * will have the first param, the left and right the second.
-     * @method setPadding
-     * @param {int} iTop    Top pad
-     * @param {int} iRight  Right pad
-     * @param {int} iBot    Bot pad
-     * @param {int} iLeft   Left pad
-     */
-    setPadding: function(iTop, iRight, iBot, iLeft) {
-        // this.padding = [iLeft, iRight, iTop, iBot];
-        if (!iRight && 0 !== iRight) {
-            this.padding = [iTop, iTop, iTop, iTop];
-        } else if (!iBot && 0 !== iBot) {
-            this.padding = [iTop, iRight, iTop, iRight];
-        } else {
-            this.padding = [iTop, iRight, iBot, iLeft];
-        }
-    },
-
-    /**
-     * Stores the initial placement of the linked element.
-     * @method setInitialPosition
-     * @param {int} diffX   the X offset, default 0
-     * @param {int} diffY   the Y offset, default 0
-     * @private
-     */
-    setInitPosition: function(diffX, diffY) {
-        var el = this.getEl();
-
-        if (!this.DDM.verifyEl(el)) {
-            if (el && el.style && (el.style.display == 'none')) {
-            } else {
-            }
-            return;
-        }
-
-        var dx = diffX || 0;
-        var dy = diffY || 0;
-
-        var p = Dom.getXY( el );
-
-        this.initPageX = p[0] - dx;
-        this.initPageY = p[1] - dy;
-
-        this.lastPageX = p[0];
-        this.lastPageY = p[1];
-
-
-
-        this.setStartPosition(p);
-    },
-
-    /**
-     * Sets the start position of the element.  This is set when the obj
-     * is initialized, the reset when a drag is started.
-     * @method setStartPosition
-     * @param pos current position (from previous lookup)
-     * @private
-     */
-    setStartPosition: function(pos) {
-        var p = pos || Dom.getXY(this.getEl());
-
-        this.deltaSetXY = null;
-
-        this.startPageX = p[0];
-        this.startPageY = p[1];
-    },
-
-    /**
-     * Add this instance to a group of related drag/drop objects.  All 
-     * instances belong to at least one group, and can belong to as many 
-     * groups as needed.
-     * @method addToGroup
-     * @param sGroup {string} the name of the group
-     */
-    addToGroup: function(sGroup) {
-        this.groups[sGroup] = true;
-        this.DDM.regDragDrop(this, sGroup);
-    },
-
-    /**
-     * Remove's this instance from the supplied interaction group
-     * @method removeFromGroup
-     * @param {string}  sGroup  The group to drop
-     */
-    removeFromGroup: function(sGroup) {
-        if (this.groups[sGroup]) {
-            delete this.groups[sGroup];
-        }
-
-        this.DDM.removeDDFromGroup(this, sGroup);
-    },
-
-    /**
-     * Allows you to specify that an element other than the linked element 
-     * will be moved with the cursor during a drag
-     * @method setDragElId
-     * @param id {string} the id of the element that will be used to initiate the drag
-     */
-    setDragElId: function(id) {
-        this.dragElId = id;
-    },
-
-    /**
-     * Allows you to specify a child of the linked element that should be 
-     * used to initiate the drag operation.  An example of this would be if 
-     * you have a content div with text and links.  Clicking anywhere in the 
-     * content area would normally start the drag operation.  Use this method
-     * to specify that an element inside of the content div is the element 
-     * that starts the drag operation.
-     * @method setHandleElId
-     * @param id {string} the id of the element that will be used to 
-     * initiate the drag.
-     */
-    setHandleElId: function(id) {
-        if (typeof id !== "string") {
-            id = Dom.generateId(id);
-        }
-        this.handleElId = id;
-        this.DDM.regHandle(this.id, id);
-    },
-
-    /**
-     * Allows you to set an element outside of the linked element as a drag 
-     * handle
-     * @method setOuterHandleElId
-     * @param id the id of the element that will be used to initiate the drag
-     */
-    setOuterHandleElId: function(id) {
-        if (typeof id !== "string") {
-            id = Dom.generateId(id);
-        }
-        Event.on(id, "mousedown", 
-                this.handleMouseDown, this, true);
-        this.setHandleElId(id);
-
-        this.hasOuterHandles = true;
-    },
-
-    /**
-     * Remove all drag and drop hooks for this element
-     * @method unreg
-     */
-    unreg: function() {
-        Event.removeListener(this.id, "mousedown", 
-                this.handleMouseDown);
-        this._domRef = null;
-        this.DDM._remove(this);
-    },
-
-    /**
-     * Returns true if this instance is locked, or the drag drop mgr is locked
-     * (meaning that all drag/drop is disabled on the page.)
-     * @method isLocked
-     * @return {boolean} true if this obj or all drag/drop is locked, else 
-     * false
-     */
-    isLocked: function() {
-        return (this.DDM.isLocked() || this.locked);
-    },
-
-    /**
-     * Fired when this object is clicked
-     * @method handleMouseDown
-     * @param {Event} e 
-     * @param {YAHOO.util.DragDrop} oDD the clicked dd object (this dd obj)
-     * @private
-     */
-    handleMouseDown: function(e, oDD) {
-
-        var button = e.which || e.button;
-
-        if (this.primaryButtonOnly && button > 1) {
-            return;
-        }
-
-        if (this.isLocked()) {
-            return;
-        }
-
-
-
-        // firing the mousedown events prior to calculating positions
-        var b4Return = this.b4MouseDown(e),
-        b4Return2 = true;
-
-        if (this.events.b4MouseDown) {
-            b4Return2 = this.fireEvent('b4MouseDownEvent', e);
-        }
-        var mDownReturn = this.onMouseDown(e),
-            mDownReturn2 = true;
-        if (this.events.mouseDown) {
-            mDownReturn2 = this.fireEvent('mouseDownEvent', e);
-        }
-
-        if ((b4Return === false) || (mDownReturn === false) || (b4Return2 === false) || (mDownReturn2 === false)) {
-            return;
-        }
-
-        this.DDM.refreshCache(this.groups);
-        // var self = this;
-        // setTimeout( function() { self.DDM.refreshCache(self.groups); }, 0);
-
-        // Only process the event if we really clicked within the linked 
-        // element.  The reason we make this check is that in the case that 
-        // another element was moved between the clicked element and the 
-        // cursor in the time between the mousedown and mouseup events. When 
-        // this happens, the element gets the next mousedown event 
-        // regardless of where on the screen it happened.  
-        var pt = new YAHOO.util.Point(Event.getPageX(e), Event.getPageY(e));
-        if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
-        } else {
-            if (this.clickValidator(e)) {
-
-
-                // set the initial element position
-                this.setStartPosition();
-
-                // start tracking mousemove distance and mousedown time to
-                // determine when to start the actual drag
-                this.DDM.handleMouseDown(e, this);
-
-                // this mousedown is mine
-                this.DDM.stopEvent(e);
-            } else {
-
-
-            }
-        }
-    },
-
-    /**
-     * @method clickValidator
-     * @description Method validates that the clicked element
-     * was indeed the handle or a valid child of the handle
-     * @param {Event} e 
-     */
-    clickValidator: function(e) {
-        var target = YAHOO.util.Event.getTarget(e);
-        return ( this.isValidHandleChild(target) &&
-                    (this.id == this.handleElId || 
-                        this.DDM.handleWasClicked(target, this.id)) );
-    },
-
-    /**
-     * Finds the location the element should be placed if we want to move
-     * it to where the mouse location less the click offset would place us.
-     * @method getTargetCoord
-     * @param {int} iPageX the X coordinate of the click
-     * @param {int} iPageY the Y coordinate of the click
-     * @return an object that contains the coordinates (Object.x and Object.y)
-     * @private
-     */
-    getTargetCoord: function(iPageX, iPageY) {
-
-
-        var x = iPageX - this.deltaX;
-        var y = iPageY - this.deltaY;
-
-        if (this.constrainX) {
-            if (x < this.minX) { x = this.minX; }
-            if (x > this.maxX) { x = this.maxX; }
-        }
-
-        if (this.constrainY) {
-            if (y < this.minY) { y = this.minY; }
-            if (y > this.maxY) { y = this.maxY; }
-        }
-
-        x = this.getTick(x, this.xTicks);
-        y = this.getTick(y, this.yTicks);
-
-
-        return {x:x, y:y};
-    },
-
-    /**
-     * Allows you to specify a tag name that should not start a drag operation
-     * when clicked.  This is designed to facilitate embedding links within a
-     * drag handle that do something other than start the drag.
-     * @method addInvalidHandleType
-     * @param {string} tagName the type of element to exclude
-     */
-    addInvalidHandleType: function(tagName) {
-        var type = tagName.toUpperCase();
-        this.invalidHandleTypes[type] = type;
-    },
-
-    /**
-     * Lets you to specify an element id for a child of a drag handle
-     * that should not initiate a drag
-     * @method addInvalidHandleId
-     * @param {string} id the element id of the element you wish to ignore
-     */
-    addInvalidHandleId: function(id) {
-        if (typeof id !== "string") {
-            id = Dom.generateId(id);
-        }
-        this.invalidHandleIds[id] = id;
-    },
-
-
-    /**
-     * Lets you specify a css class of elements that will not initiate a drag
-     * @method addInvalidHandleClass
-     * @param {string} cssClass the class of the elements you wish to ignore
-     */
-    addInvalidHandleClass: function(cssClass) {
-        this.invalidHandleClasses.push(cssClass);
-    },
-
-    /**
-     * Unsets an excluded tag name set by addInvalidHandleType
-     * @method removeInvalidHandleType
-     * @param {string} tagName the type of element to unexclude
-     */
-    removeInvalidHandleType: function(tagName) {
-        var type = tagName.toUpperCase();
-        // this.invalidHandleTypes[type] = null;
-        delete this.invalidHandleTypes[type];
-    },
-    
-    /**
-     * Unsets an invalid handle id
-     * @method removeInvalidHandleId
-     * @param {string} id the id of the element to re-enable
-     */
-    removeInvalidHandleId: function(id) {
-        if (typeof id !== "string") {
-            id = Dom.generateId(id);
-        }
-        delete this.invalidHandleIds[id];
-    },
-
-    /**
-     * Unsets an invalid css class
-     * @method removeInvalidHandleClass
-     * @param {string} cssClass the class of the element(s) you wish to 
-     * re-enable
-     */
-    removeInvalidHandleClass: function(cssClass) {
-        for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
-            if (this.invalidHandleClasses[i] == cssClass) {
-                delete this.invalidHandleClasses[i];
-            }
-        }
-    },
-
-    /**
-     * Checks the tag exclusion list to see if this click should be ignored
-     * @method isValidHandleChild
-     * @param {HTMLElement} node the HTMLElement to evaluate
-     * @return {boolean} true if this is a valid tag type, false if not
-     */
-    isValidHandleChild: function(node) {
-
-        var valid = true;
-        // var n = (node.nodeName == "#text") ? node.parentNode : node;
-        var nodeName;
-        try {
-            nodeName = node.nodeName.toUpperCase();
-        } catch(e) {
-            nodeName = node.nodeName;
-        }
-        valid = valid && !this.invalidHandleTypes[nodeName];
-        valid = valid && !this.invalidHandleIds[node.id];
-
-        for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
-            valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
-        }
-
-
-        return valid;
-
-    },
-
-    /**
-     * Create the array of horizontal tick marks if an interval was specified
-     * in setXConstraint().
-     * @method setXTicks
-     * @private
-     */
-    setXTicks: function(iStartX, iTickSize) {
-        this.xTicks = [];
-        this.xTickSize = iTickSize;
-        
-        var tickMap = {};
-
-        for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
-            if (!tickMap[i]) {
-                this.xTicks[this.xTicks.length] = i;
-                tickMap[i] = true;
-            }
-        }
-
-        for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
-            if (!tickMap[i]) {
-                this.xTicks[this.xTicks.length] = i;
-                tickMap[i] = true;
-            }
-        }
-
-        this.xTicks.sort(this.DDM.numericSort) ;
-    },
-
-    /**
-     * Create the array of vertical tick marks if an interval was specified in 
-     * setYConstraint().
-     * @method setYTicks
-     * @private
-     */
-    setYTicks: function(iStartY, iTickSize) {
-        this.yTicks = [];
-        this.yTickSize = iTickSize;
-
-        var tickMap = {};
-
-        for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
-            if (!tickMap[i]) {
-                this.yTicks[this.yTicks.length] = i;
-                tickMap[i] = true;
-            }
-        }
-
-        for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
-            if (!tickMap[i]) {
-                this.yTicks[this.yTicks.length] = i;
-                tickMap[i] = true;
-            }
-        }
-
-        this.yTicks.sort(this.DDM.numericSort) ;
-    },
-
-    /**
-     * By default, the element can be dragged any place on the screen.  Use 
-     * this method to limit the horizontal travel of the element.  Pass in 
-     * 0,0 for the parameters if you want to lock the drag to the y axis.
-     * @method setXConstraint
-     * @param {int} iLeft the number of pixels the element can move to the left
-     * @param {int} iRight the number of pixels the element can move to the 
-     * right
-     * @param {int} iTickSize optional parameter for specifying that the 
-     * element
-     * should move iTickSize pixels at a time.
-     */
-    setXConstraint: function(iLeft, iRight, iTickSize) {
-        this.leftConstraint = parseInt(iLeft, 10);
-        this.rightConstraint = parseInt(iRight, 10);
-
-        this.minX = this.initPageX - this.leftConstraint;
-        this.maxX = this.initPageX + this.rightConstraint;
-        if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
-
-        this.constrainX = true;
-    },
-
-    /**
-     * Clears any constraints applied to this instance.  Also clears ticks
-     * since they can't exist independent of a constraint at this time.
-     * @method clearConstraints
-     */
-    clearConstraints: function() {
-        this.constrainX = false;
-        this.constrainY = false;
-        this.clearTicks();
-    },
-
-    /**
-     * Clears any tick interval defined for this instance
-     * @method clearTicks
-     */
-    clearTicks: function() {
-        this.xTicks = null;
-        this.yTicks = null;
-        this.xTickSize = 0;
-        this.yTickSize = 0;
-    },
-
-    /**
-     * By default, the element can be dragged any place on the screen.  Set 
-     * this to limit the vertical travel of the element.  Pass in 0,0 for the
-     * parameters if you want to lock the drag to the x axis.
-     * @method setYConstraint
-     * @param {int} iUp the number of pixels the element can move up
-     * @param {int} iDown the number of pixels the element can move down
-     * @param {int} iTickSize optional parameter for specifying that the 
-     * element should move iTickSize pixels at a time.
-     */
-    setYConstraint: function(iUp, iDown, iTickSize) {
-        this.topConstraint = parseInt(iUp, 10);
-        this.bottomConstraint = parseInt(iDown, 10);
-
-        this.minY = this.initPageY - this.topConstraint;
-        this.maxY = this.initPageY + this.bottomConstraint;
-        if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
-
-        this.constrainY = true;
-        
-    },
-
-    /**
-     * resetConstraints must be called if you manually reposition a dd element.
-     * @method resetConstraints
-     */
-    resetConstraints: function() {
-
-
-        // Maintain offsets if necessary
-        if (this.initPageX || this.initPageX === 0) {
-            // figure out how much this thing has moved
-            var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
-            var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
-
-            this.setInitPosition(dx, dy);
-
-        // This is the first time we have detected the element's position
-        } else {
-            this.setInitPosition();
-        }
-
-        if (this.constrainX) {
-            this.setXConstraint( this.leftConstraint, 
-                                 this.rightConstraint, 
-                                 this.xTickSize        );
-        }
-
-        if (this.constrainY) {
-            this.setYConstraint( this.topConstraint, 
-                                 this.bottomConstraint, 
-                                 this.yTickSize         );
-        }
-    },
-
-    /**
-     * Normally the drag element is moved pixel by pixel, but we can specify 
-     * that it move a number of pixels at a time.  This method resolves the 
-     * location when we have it set up like this.
-     * @method getTick
-     * @param {int} val where we want to place the object
-     * @param {int[]} tickArray sorted array of valid points
-     * @return {int} the closest tick
-     * @private
-     */
-    getTick: function(val, tickArray) {
-
-        if (!tickArray) {
-            // If tick interval is not defined, it is effectively 1 pixel, 
-            // so we return the value passed to us.
-            return val; 
-        } else if (tickArray[0] >= val) {
-            // The value is lower than the first tick, so we return the first
-            // tick.
-            return tickArray[0];
-        } else {
-            for (var i=0, len=tickArray.length; i<len; ++i) {
-                var next = i + 1;
-                if (tickArray[next] && tickArray[next] >= val) {
-                    var diff1 = val - tickArray[i];
-                    var diff2 = tickArray[next] - val;
-                    return (diff2 > diff1) ? tickArray[i] : tickArray[next];
-                }
-            }
-
-            // The value is larger than the last tick, so we return the last
-            // tick.
-            return tickArray[tickArray.length - 1];
-        }
-    },
-
-    /**
-     * toString method
-     * @method toString
-     * @return {string} string representation of the dd obj
-     */
-    toString: function() {
-        return ("DragDrop " + this.id);
-    }
-
-};
-YAHOO.augment(YAHOO.util.DragDrop, YAHOO.util.EventProvider);
-
-/**
-* @event mouseDownEvent
-* @description Provides access to the mousedown event. The mousedown does not always result in a drag operation.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4MouseDownEvent
-* @description Provides access to the mousedown event, before the mouseDownEvent gets fired. Returning false will cancel the drag.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event mouseUpEvent
-* @description Fired from inside DragDropMgr when the drag operation is finished.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4StartDragEvent
-* @description Fires before the startDragEvent, returning false will cancel the startDrag Event.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event startDragEvent
-* @description Occurs after a mouse down and the drag threshold has been met. The drag threshold default is either 3 pixels of mouse movement or 1 full second of holding the mousedown. 
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4EndDragEvent
-* @description Fires before the endDragEvent. Returning false will cancel.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event endDragEvent
-* @description Fires on the mouseup event after a drag has been initiated (startDrag fired).
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event dragEvent
-* @description Occurs every mousemove event while dragging.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragEvent
-* @description Fires before the dragEvent.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event invalidDropEvent
-* @description Fires when the dragged objects is dropped in a location that contains no drop targets.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragOutEvent
-* @description Fires before the dragOutEvent
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragOutEvent
-* @description Fires when a dragged object is no longer over an object that had the onDragEnter fire. 
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragEnterEvent
-* @description Occurs when the dragged object first interacts with another targettable drag and drop object.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragOverEvent
-* @description Fires before the dragOverEvent.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragOverEvent
-* @description Fires every mousemove event while over a drag and drop object.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragDropEvent 
-* @description Fires before the dragDropEvent
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragDropEvent
-* @description Fires when the dragged objects is dropped on another.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-})();
-/**
- * A DragDrop implementation where the linked element follows the 
- * mouse cursor during a drag.
- * @class DD
- * @extends YAHOO.util.DragDrop
- * @constructor
- * @param {String} id the id of the linked element 
- * @param {String} sGroup the group of related DragDrop items
- * @param {object} config an object containing configurable attributes
- *                Valid properties for DD: 
- *                    scroll
- */
-YAHOO.util.DD = function(id, sGroup, config) {
-    if (id) {
-        this.init(id, sGroup, config);
-    }
-};
-
-YAHOO.extend(YAHOO.util.DD, YAHOO.util.DragDrop, {
-
-    /**
-     * When set to true, the utility automatically tries to scroll the browser
-     * window when a drag and drop element is dragged near the viewport boundary.
-     * Defaults to true.
-     * @property scroll
-     * @type boolean
-     */
-    scroll: true, 
-
-    /**
-     * Sets the pointer offset to the distance between the linked element's top 
-     * left corner and the location the element was clicked
-     * @method autoOffset
-     * @param {int} iPageX the X coordinate of the click
-     * @param {int} iPageY the Y coordinate of the click
-     */
-    autoOffset: function(iPageX, iPageY) {
-        var x = iPageX - this.startPageX;
-        var y = iPageY - this.startPageY;
-        this.setDelta(x, y);
-    },
-
-    /** 
-     * Sets the pointer offset.  You can call this directly to force the 
-     * offset to be in a particular location (e.g., pass in 0,0 to set it 
-     * to the center of the object, as done in YAHOO.widget.Slider)
-     * @method setDelta
-     * @param {int} iDeltaX the distance from the left
-     * @param {int} iDeltaY the distance from the top
-     */
-    setDelta: function(iDeltaX, iDeltaY) {
-        this.deltaX = iDeltaX;
-        this.deltaY = iDeltaY;
-    },
-
-    /**
-     * Sets the drag element to the location of the mousedown or click event, 
-     * maintaining the cursor location relative to the location on the element 
-     * that was clicked.  Override this if you want to place the element in a 
-     * location other than where the cursor is.
-     * @method setDragElPos
-     * @param {int} iPageX the X coordinate of the mousedown or drag event
-     * @param {int} iPageY the Y coordinate of the mousedown or drag event
-     */
-    setDragElPos: function(iPageX, iPageY) {
-        // the first time we do this, we are going to check to make sure
-        // the element has css positioning
-
-        var el = this.getDragEl();
-        this.alignElWithMouse(el, iPageX, iPageY);
-    },
-
-    /**
-     * Sets the element to the location of the mousedown or click event, 
-     * maintaining the cursor location relative to the location on the element 
-     * that was clicked.  Override this if you want to place the element in a 
-     * location other than where the cursor is.
-     * @method alignElWithMouse
-     * @param {HTMLElement} el the element to move
-     * @param {int} iPageX the X coordinate of the mousedown or drag event
-     * @param {int} iPageY the Y coordinate of the mousedown or drag event
-     */
-    alignElWithMouse: function(el, iPageX, iPageY) {
-        var oCoord = this.getTargetCoord(iPageX, iPageY);
-
-        if (!this.deltaSetXY) {
-            var aCoord = [oCoord.x, oCoord.y];
-            YAHOO.util.Dom.setXY(el, aCoord);
-
-            var newLeft = parseInt( YAHOO.util.Dom.getStyle(el, "left"), 10 );
-            var newTop  = parseInt( YAHOO.util.Dom.getStyle(el, "top" ), 10 );
-
-            this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
-        } else {
-            YAHOO.util.Dom.setStyle(el, "left", (oCoord.x + this.deltaSetXY[0]) + "px");
-            YAHOO.util.Dom.setStyle(el, "top",  (oCoord.y + this.deltaSetXY[1]) + "px");
-        }
-        
-        this.cachePosition(oCoord.x, oCoord.y);
-        var self = this;
-        setTimeout(function() {
-            self.autoScroll.call(self, oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
-        }, 0);
-    },
-
-    /**
-     * Saves the most recent position so that we can reset the constraints and
-     * tick marks on-demand.  We need to know this so that we can calculate the
-     * number of pixels the element is offset from its original position.
-     * @method cachePosition
-     * @param iPageX the current x position (optional, this just makes it so we
-     * don't have to look it up again)
-     * @param iPageY the current y position (optional, this just makes it so we
-     * don't have to look it up again)
-     */
-    cachePosition: function(iPageX, iPageY) {
-        if (iPageX) {
-            this.lastPageX = iPageX;
-            this.lastPageY = iPageY;
-        } else {
-            var aCoord = YAHOO.util.Dom.getXY(this.getEl());
-            this.lastPageX = aCoord[0];
-            this.lastPageY = aCoord[1];
-        }
-    },
-
-    /**
-     * Auto-scroll the window if the dragged object has been moved beyond the 
-     * visible window boundary.
-     * @method autoScroll
-     * @param {int} x the drag element's x position
-     * @param {int} y the drag element's y position
-     * @param {int} h the height of the drag element
-     * @param {int} w the width of the drag element
-     * @private
-     */
-    autoScroll: function(x, y, h, w) {
-
-        if (this.scroll) {
-            // The client height
-            var clientH = this.DDM.getClientHeight();
-
-            // The client width
-            var clientW = this.DDM.getClientWidth();
-
-            // The amt scrolled down
-            var st = this.DDM.getScrollTop();
-
-            // The amt scrolled right
-            var sl = this.DDM.getScrollLeft();
-
-            // Location of the bottom of the element
-            var bot = h + y;
-
-            // Location of the right of the element
-            var right = w + x;
-
-            // The distance from the cursor to the bottom of the visible area, 
-            // adjusted so that we don't scroll if the cursor is beyond the
-            // element drag constraints
-            var toBot = (clientH + st - y - this.deltaY);
-
-            // The distance from the cursor to the right of the visible area
-            var toRight = (clientW + sl - x - this.deltaX);
-
-
-            // How close to the edge the cursor must be before we scroll
-            // var thresh = (document.all) ? 100 : 40;
-            var thresh = 40;
-
-            // How many pixels to scroll per autoscroll op.  This helps to reduce 
-            // clunky scrolling. IE is more sensitive about this ... it needs this 
-            // value to be higher.
-            var scrAmt = (document.all) ? 80 : 30;
-
-            // Scroll down if we are near the bottom of the visible page and the 
-            // obj extends below the crease
-            if ( bot > clientH && toBot < thresh ) { 
-                window.scrollTo(sl, st + scrAmt); 
-            }
-
-            // Scroll up if the window is scrolled down and the top of the object
-            // goes above the top border
-            if ( y < st && st > 0 && y - st < thresh ) { 
-                window.scrollTo(sl, st - scrAmt); 
-            }
-
-            // Scroll right if the obj is beyond the right border and the cursor is
-            // near the border.
-            if ( right > clientW && toRight < thresh ) { 
-                window.scrollTo(sl + scrAmt, st); 
-            }
-
-            // Scroll left if the window has been scrolled to the right and the obj
-            // extends past the left border
-            if ( x < sl && sl > 0 && x - sl < thresh ) { 
-                window.scrollTo(sl - scrAmt, st);
-            }
-        }
-    },
-
-    /*
-     * Sets up config options specific to this class. Overrides
-     * YAHOO.util.DragDrop, but all versions of this method through the 
-     * inheritance chain are called
-     */
-    applyConfig: function() {
-        YAHOO.util.DD.superclass.applyConfig.call(this);
-        this.scroll = (this.config.scroll !== false);
-    },
-
-    /*
-     * Event that fires prior to the onMouseDown event.  Overrides 
-     * YAHOO.util.DragDrop.
-     */
-    b4MouseDown: function(e) {
-        this.setStartPosition();
-        // this.resetConstraints();
-        this.autoOffset(YAHOO.util.Event.getPageX(e), 
-                            YAHOO.util.Event.getPageY(e));
-    },
-
-    /*
-     * Event that fires prior to the onDrag event.  Overrides 
-     * YAHOO.util.DragDrop.
-     */
-    b4Drag: function(e) {
-        this.setDragElPos(YAHOO.util.Event.getPageX(e), 
-                            YAHOO.util.Event.getPageY(e));
-    },
-
-    toString: function() {
-        return ("DD " + this.id);
-    }
-
-    //////////////////////////////////////////////////////////////////////////
-    // Debugging ygDragDrop events that can be overridden
-    //////////////////////////////////////////////////////////////////////////
-    /*
-    startDrag: function(x, y) {
-    },
-
-    onDrag: function(e) {
-    },
-
-    onDragEnter: function(e, id) {
-    },
-
-    onDragOver: function(e, id) {
-    },
-
-    onDragOut: function(e, id) {
-    },
-
-    onDragDrop: function(e, id) {
-    },
-
-    endDrag: function(e) {
-    }
-
-    */
-
-/**
-* @event mouseDownEvent
-* @description Provides access to the mousedown event. The mousedown does not always result in a drag operation.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4MouseDownEvent
-* @description Provides access to the mousedown event, before the mouseDownEvent gets fired. Returning false will cancel the drag.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event mouseUpEvent
-* @description Fired from inside DragDropMgr when the drag operation is finished.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4StartDragEvent
-* @description Fires before the startDragEvent, returning false will cancel the startDrag Event.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event startDragEvent
-* @description Occurs after a mouse down and the drag threshold has been met. The drag threshold default is either 3 pixels of mouse movement or 1 full second of holding the mousedown. 
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4EndDragEvent
-* @description Fires before the endDragEvent. Returning false will cancel.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event endDragEvent
-* @description Fires on the mouseup event after a drag has been initiated (startDrag fired).
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event dragEvent
-* @description Occurs every mousemove event while dragging.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragEvent
-* @description Fires before the dragEvent.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event invalidDropEvent
-* @description Fires when the dragged objects is dropped in a location that contains no drop targets.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragOutEvent
-* @description Fires before the dragOutEvent
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragOutEvent
-* @description Fires when a dragged object is no longer over an object that had the onDragEnter fire. 
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragEnterEvent
-* @description Occurs when the dragged object first interacts with another targettable drag and drop object.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragOverEvent
-* @description Fires before the dragOverEvent.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragOverEvent
-* @description Fires every mousemove event while over a drag and drop object.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragDropEvent 
-* @description Fires before the dragDropEvent
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragDropEvent
-* @description Fires when the dragged objects is dropped on another.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-});
-/**
- * A DragDrop implementation that inserts an empty, bordered div into
- * the document that follows the cursor during drag operations.  At the time of
- * the click, the frame div is resized to the dimensions of the linked html
- * element, and moved to the exact location of the linked element.
- *
- * References to the "frame" element refer to the single proxy element that
- * was created to be dragged in place of all DDProxy elements on the
- * page.
- *
- * @class DDProxy
- * @extends YAHOO.util.DD
- * @constructor
- * @param {String} id the id of the linked html element
- * @param {String} sGroup the group of related DragDrop objects
- * @param {object} config an object containing configurable attributes
- *                Valid properties for DDProxy in addition to those in DragDrop: 
- *                   resizeFrame, centerFrame, dragElId
- */
-YAHOO.util.DDProxy = function(id, sGroup, config) {
-    if (id) {
-        this.init(id, sGroup, config);
-        this.initFrame(); 
-    }
-};
-
-/**
- * The default drag frame div id
- * @property YAHOO.util.DDProxy.dragElId
- * @type String
- * @static
- */
-YAHOO.util.DDProxy.dragElId = "ygddfdiv";
-
-YAHOO.extend(YAHOO.util.DDProxy, YAHOO.util.DD, {
-
-    /**
-     * By default we resize the drag frame to be the same size as the element
-     * we want to drag (this is to get the frame effect).  We can turn it off
-     * if we want a different behavior.
-     * @property resizeFrame
-     * @type boolean
-     */
-    resizeFrame: true,
-
-    /**
-     * By default the frame is positioned exactly where the drag element is, so
-     * we use the cursor offset provided by YAHOO.util.DD.  Another option that works only if
-     * you do not have constraints on the obj is to have the drag frame centered
-     * around the cursor.  Set centerFrame to true for this effect.
-     * @property centerFrame
-     * @type boolean
-     */
-    centerFrame: false,
-
-    /**
-     * Creates the proxy element if it does not yet exist
-     * @method createFrame
-     */
-    createFrame: function() {
-        var self=this, body=document.body;
-
-        if (!body || !body.firstChild) {
-            setTimeout( function() { self.createFrame(); }, 50 );
-            return;
-        }
-
-        var div=this.getDragEl(), Dom=YAHOO.util.Dom;
-
-        if (!div) {
-            div    = document.createElement("div");
-            div.id = this.dragElId;
-            var s  = div.style;
-
-            s.position   = "absolute";
-            s.visibility = "hidden";
-            s.cursor     = "move";
-            s.border     = "2px solid #aaa";
-            s.zIndex     = 999;
-            s.height     = "25px";
-            s.width      = "25px";
-
-            var _data = document.createElement('div');
-            Dom.setStyle(_data, 'height', '100%');
-            Dom.setStyle(_data, 'width', '100%');
-            /**
-            * If the proxy element has no background-color, then it is considered to the "transparent" by Internet Explorer.
-            * Since it is "transparent" then the events pass through it to the iframe below.
-            * So creating a "fake" div inside the proxy element and giving it a background-color, then setting it to an
-            * opacity of 0, it appears to not be there, however IE still thinks that it is so the events never pass through.
-            */
-            Dom.setStyle(_data, 'background-color', '#ccc');
-            Dom.setStyle(_data, 'opacity', '0');
-            div.appendChild(_data);
-
-            /**
-            * It seems that IE will fire the mouseup event if you pass a proxy element over a select box
-            * Placing the IFRAME element inside seems to stop this issue
-            */
-            if (YAHOO.env.ua.ie) {
-                //Only needed for Internet Explorer
-                var ifr = document.createElement('iframe');
-                ifr.setAttribute('src', 'javascript: false;');
-                ifr.setAttribute('scrolling', 'no');
-                ifr.setAttribute('frameborder', '0');
-                div.insertBefore(ifr, div.firstChild);
-                Dom.setStyle(ifr, 'height', '100%');
-                Dom.setStyle(ifr, 'width', '100%');
-                Dom.setStyle(ifr, 'position', 'absolute');
-                Dom.setStyle(ifr, 'top', '0');
-                Dom.setStyle(ifr, 'left', '0');
-                Dom.setStyle(ifr, 'opacity', '0');
-                Dom.setStyle(ifr, 'zIndex', '-1');
-                Dom.setStyle(ifr.nextSibling, 'zIndex', '2');
-            }
-
-            // appendChild can blow up IE if invoked prior to the window load event
-            // while rendering a table.  It is possible there are other scenarios 
-            // that would cause this to happen as well.
-            body.insertBefore(div, body.firstChild);
-        }
-    },
-
-    /**
-     * Initialization for the drag frame element.  Must be called in the
-     * constructor of all subclasses
-     * @method initFrame
-     */
-    initFrame: function() {
-        this.createFrame();
-    },
-
-    applyConfig: function() {
-        YAHOO.util.DDProxy.superclass.applyConfig.call(this);
-
-        this.resizeFrame = (this.config.resizeFrame !== false);
-        this.centerFrame = (this.config.centerFrame);
-        this.setDragElId(this.config.dragElId || YAHOO.util.DDProxy.dragElId);
-    },
-
-    /**
-     * Resizes the drag frame to the dimensions of the clicked object, positions 
-     * it over the object, and finally displays it
-     * @method showFrame
-     * @param {int} iPageX X click position
-     * @param {int} iPageY Y click position
-     * @private
-     */
-    showFrame: function(iPageX, iPageY) {
-        var el = this.getEl();
-        var dragEl = this.getDragEl();
-        var s = dragEl.style;
-
-        this._resizeProxy();
-
-        if (this.centerFrame) {
-            this.setDelta( Math.round(parseInt(s.width,  10)/2), 
-                           Math.round(parseInt(s.height, 10)/2) );
-        }
-
-        this.setDragElPos(iPageX, iPageY);
-
-        YAHOO.util.Dom.setStyle(dragEl, "visibility", "visible"); 
-    },
-
-    /**
-     * The proxy is automatically resized to the dimensions of the linked
-     * element when a drag is initiated, unless resizeFrame is set to false
-     * @method _resizeProxy
-     * @private
-     */
-    _resizeProxy: function() {
-        if (this.resizeFrame) {
-            var DOM    = YAHOO.util.Dom;
-            var el     = this.getEl();
-            var dragEl = this.getDragEl();
-
-            var bt = parseInt( DOM.getStyle(dragEl, "borderTopWidth"    ), 10);
-            var br = parseInt( DOM.getStyle(dragEl, "borderRightWidth"  ), 10);
-            var bb = parseInt( DOM.getStyle(dragEl, "borderBottomWidth" ), 10);
-            var bl = parseInt( DOM.getStyle(dragEl, "borderLeftWidth"   ), 10);
-
-            if (isNaN(bt)) { bt = 0; }
-            if (isNaN(br)) { br = 0; }
-            if (isNaN(bb)) { bb = 0; }
-            if (isNaN(bl)) { bl = 0; }
-
-
-            var newWidth  = Math.max(0, el.offsetWidth  - br - bl);                                                                                           
-            var newHeight = Math.max(0, el.offsetHeight - bt - bb);
-
-
-            DOM.setStyle( dragEl, "width",  newWidth  + "px" );
-            DOM.setStyle( dragEl, "height", newHeight + "px" );
-        }
-    },
-
-    // overrides YAHOO.util.DragDrop
-    b4MouseDown: function(e) {
-        this.setStartPosition();
-        var x = YAHOO.util.Event.getPageX(e);
-        var y = YAHOO.util.Event.getPageY(e);
-        this.autoOffset(x, y);
-
-        // This causes the autoscroll code to kick off, which means autoscroll can
-        // happen prior to the check for a valid drag handle.
-        // this.setDragElPos(x, y);
-    },
-
-    // overrides YAHOO.util.DragDrop
-    b4StartDrag: function(x, y) {
-        // show the drag frame
-        this.showFrame(x, y);
-    },
-
-    // overrides YAHOO.util.DragDrop
-    b4EndDrag: function(e) {
-        YAHOO.util.Dom.setStyle(this.getDragEl(), "visibility", "hidden"); 
-    },
-
-    // overrides YAHOO.util.DragDrop
-    // By default we try to move the element to the last location of the frame.  
-    // This is so that the default behavior mirrors that of YAHOO.util.DD.  
-    endDrag: function(e) {
-        var DOM = YAHOO.util.Dom;
-        var lel = this.getEl();
-        var del = this.getDragEl();
-
-        // Show the drag frame briefly so we can get its position
-        // del.style.visibility = "";
-        DOM.setStyle(del, "visibility", ""); 
-
-        // Hide the linked element before the move to get around a Safari 
-        // rendering bug.
-        //lel.style.visibility = "hidden";
-        DOM.setStyle(lel, "visibility", "hidden"); 
-        YAHOO.util.DDM.moveToEl(lel, del);
-        //del.style.visibility = "hidden";
-        DOM.setStyle(del, "visibility", "hidden"); 
-        //lel.style.visibility = "";
-        DOM.setStyle(lel, "visibility", ""); 
-    },
-
-    toString: function() {
-        return ("DDProxy " + this.id);
-    }
-/**
-* @event mouseDownEvent
-* @description Provides access to the mousedown event. The mousedown does not always result in a drag operation.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4MouseDownEvent
-* @description Provides access to the mousedown event, before the mouseDownEvent gets fired. Returning false will cancel the drag.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event mouseUpEvent
-* @description Fired from inside DragDropMgr when the drag operation is finished.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4StartDragEvent
-* @description Fires before the startDragEvent, returning false will cancel the startDrag Event.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event startDragEvent
-* @description Occurs after a mouse down and the drag threshold has been met. The drag threshold default is either 3 pixels of mouse movement or 1 full second of holding the mousedown. 
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event b4EndDragEvent
-* @description Fires before the endDragEvent. Returning false will cancel.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event endDragEvent
-* @description Fires on the mouseup event after a drag has been initiated (startDrag fired).
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-/**
-* @event dragEvent
-* @description Occurs every mousemove event while dragging.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragEvent
-* @description Fires before the dragEvent.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event invalidDropEvent
-* @description Fires when the dragged objects is dropped in a location that contains no drop targets.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragOutEvent
-* @description Fires before the dragOutEvent
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragOutEvent
-* @description Fires when a dragged object is no longer over an object that had the onDragEnter fire. 
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragEnterEvent
-* @description Occurs when the dragged object first interacts with another targettable drag and drop object.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragOverEvent
-* @description Fires before the dragOverEvent.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragOverEvent
-* @description Fires every mousemove event while over a drag and drop object.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event b4DragDropEvent 
-* @description Fires before the dragDropEvent
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-/**
-* @event dragDropEvent
-* @description Fires when the dragged objects is dropped on another.
-* @type YAHOO.util.CustomEvent See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-*/
-
-});
-/**
- * A DragDrop implementation that does not move, but can be a drop 
- * target.  You would get the same result by simply omitting implementation 
- * for the event callbacks, but this way we reduce the processing cost of the 
- * event listener and the callbacks.
- * @class DDTarget
- * @extends YAHOO.util.DragDrop 
- * @constructor
- * @param {String} id the id of the element that is a drop target
- * @param {String} sGroup the group of related DragDrop objects
- * @param {object} config an object containing configurable attributes
- *                 Valid properties for DDTarget in addition to those in 
- *                 DragDrop: 
- *                    none
- */
-YAHOO.util.DDTarget = function(id, sGroup, config) {
-    if (id) {
-        this.initTarget(id, sGroup, config);
-    }
-};
-
-// YAHOO.util.DDTarget.prototype = new YAHOO.util.DragDrop();
-YAHOO.extend(YAHOO.util.DDTarget, YAHOO.util.DragDrop, {
-    toString: function() {
-        return ("DDTarget " + this.id);
-    }
-});
-YAHOO.register("dragdrop", YAHOO.util.DragDropMgr, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/README b/eclipse.org-common/yui/2.6.0/build/editor/README
deleted file mode 100644
index 2c67d67..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/README
+++ /dev/null
@@ -1,270 +0,0 @@
-**** version 2.6.0 ***
-    
-    * Widget promoted to GA - beta flag removed from all files.
-
-    * Firefox
-	    * 1776202 - FF:rich text formatting (italize) lost when color is selected in RTE
-	    * 1886390 - [SF 1946017] Unable to delete text when editor opens (Firefox)
-	    * 2030281 - [SF 2002911] Problem with Header styling in Firefox
-        * 1765001 - [SF 1899196] Firefox button Inconsistencies
-
-    * Internet Explorer
-	    * 1842631 - [SF 1869619] Image Modification Dialog
-	    * 2006122 - [SF 1995892] set('disabled',false) cause IE6 error 
-	    * 2092598 - [SF 2021359] IE7: dbl click image doesn't show settings dialog
-	    * 2093275 - [SF 2026296] Auto Adjusting height bug in IE
-	    * 2093325 - [SF 2025092] IE7:allowNoEdit turned on period '.' doesn't work
-	    * 2099035 - [SF 2027048] keyDown event does not fire in IE after enabling editor
-	    * 2189912 - [SF 2093253] Editor used in HTTPS page will provoke Security warning
-        * 1655240 - [SF 1851177] Text Align not working correctly in IE
-	    * 1984727 - [SF 1986820] Clicking bulleted list before typing creates empty <li> IE7
-	    * 2108127 - [SF 2027073] IE7: editor list items misaligned 
-	    * 1918222 - [SF 1956586] Fontsize is not updating when nodechange in IE
-
-    * Safari
-	    * 1972354 - [SF 1978372] Safari/IE list creation quirk
-	    * 1972367 - [SF 1978350] Safari 3.1 issue with lists
-
-    * All
-        * 1508375 - [SF 1791252, 1964709] Have Undo, Redo functions in Editor  
-	    * 1839296 - [SF 1926238] Editor adds extra </li> tag at the end of a list
-	    * 1844215 - [SF 1928426] filter_invalid_lists
-	    * 1844258 - [SF 1923255] Give descriptive error when container isn't textarea
-	    * 1851344 - [SF 1931768] Relative links automatically converted to absolute links.
-	    * 1870106 - Add a strikethrough/blockquote buttons for the Rich Text Editor
-	    * 1886339 - [SF 1946874] Double clicking in the editor sets "editorDirty" false
-	    * 1892984 - [SF 1919826] Regex matches both <b> and <button>
-	    * 1901545 - Rich Text Editor - Link menu's url encoding "&" to "&amp" 	
-	    * 1908178 - [SF 1954228] Deleting 1+ button from buttonType:advanced fails
-	    * 1926462 - html encoded characters are unencoded
-	    * 1964404 - [SF 1975463] Editor.destroy() doesn't destroy editor windows
-	    * 1984734 - [SF 1986184] error on _formButtonClicked log message
-	    * 2030229 - [SF 2003080] Various widths affect toolbar layout
-	    * 2138168 - [SF 2048035] autoHeight will cause dialog panels to be misaligned
-	    * 2166952 - [SF 2065060] Tab & shift-tab should move focus from the editor
-	    * 2178829 - [SF 2077747] Simple editor losing its format when font color changes
-        * 2015947 - [SF 1998524] Alignment Code doesn't generate
-        * 2118761 - [SF 2035187] Custom Editor body CSS only applies to visited links
-        * 2118723 - [SF 2034544] Image Options Dialog Box needs fixing
-        * 2036613 - [SF 2007145] Removing underline not working in IE6/7, FF3
-        * 2065013 - [SF 2015601] Text in some controls is not vertically centered
-	    * 1918278 - [SF 1955931] font color (background color) doesn't work properly
-	    * 1972427 - [SF 1954095] Bulleting
-        * 1839224 - [SF 1925337] editor indent/outdent inconsistent behavior
-	    * 2006092 - [SF 1996074] Indent changes the font to Arial
-        * 206493 - Handle Submit Failing
-
-
-**** version 2.5.2 ***
-    * Firefox 3
-        * 1898002 - Fixed tabbing issues
-
-    * Internet Explorer
-        * 1898002 - Fixed tabbing issues
-        * 1824259 - [SF 1918308] Rich Text Editor: colouring a word colours the sentence
-
-    * All
-        * 1847813 - [SF 1930871] RTE doesn't load if handleSubmit: false explicitly defined
-        * 1841312 - In the RTE image menu the label for "link Url" and "image URL" aren't the same
-        * Color picker stays active when loses focus (Basic Buttons)
-        * Fixed CSS for toolbar seperators to allow for the groups to float better.
-
-**** version 2.5.1 ***
-
-    * Adobe AIR Support
-        * 1763867 - Adobe AIR: iFrame document open
-        * 1763869 - Adobe AIR: Blank Image insertion fails
-        * 1763872 - Adobe AIR: Setting font-family fails
-        * 1763880 - Adobe AIR: Image Editor should show copy/paste note
-
-    * Internet Explorer
-        * 1556954 - [SF 1816784 ] tabbing troubles...
-        * 1776579 - [SF 1873881 ] IE Bulleting Behavior
-
-    * Safari
-        * 1775802 - [SF 1899803] Links in safari are treated as regular links...
-        * 1777918 - [SF 1898878 ] Safari uses <span> instead of <strong> tags...
-
-    * All
-        * 1776107 - ToolbarButton doesn't have a destroy method
-        * 1776117 - Editor Accessibility Enhancements
-        * 1776539 - [SF 1874009 ] Greedy Regex in RTE Eats embed and other tags
-        * 1777925 - [SF 1878976 ] Regex matches both <i> and <iframe>
-        * 1764038 - [SF 1898886 ] Problem with handleSubmit after move to 2.5.0
-        * 1693686 - [SF 1869619] Image Modification Dialog
-
-
-**** version 2.5.0 ***
-
-    *Examples:
-        1. [1687273] - [SF 1861119 ] Flickr Example code is incorrect
-
-    *Config
-        1. [1556954] - [SF 1816784 ] tabbing troubles...
-            Added a new config option called plainText. (See API docs for more information)
-        2. Removed the requirement for a textarea. If you pass the config as the first argument to the constructor
-            the Editor will create the textarea for you.
-
-    *Internet Explorer
-        1. [1515145] - [SF 1807057 ] RTE _setDesignMode reloads page content
-        2. [1687267] - [SF 1861514 ] editorContentLoaded fires early in IE6/7
-        3. [1687244] - [SF 1866217 ] Editor in frameset causes "unspecified error" in IE6
-        4. [1687278] - [SF 1859031 ] Change Font Color on IE
-        5. [1687283] - [SF 1857798 ] IE7 RTE HTTPS problem
-        6. [1687316] - [SF 1854657 ] IE bullet/number strange behaviour
-    
-    *All
-        1. [1687258] - [SF 1862824 ] Problem with <script> tags in editor content
-        2. [1687292] - [SF 1857235 ] cleanHTML function stripping closing tags
-        3. [1687322] - [SF 1849730 ] Multiple Editors' toolbars conflict
-        4. [1688270] - [SF 1867927] Editor dynamic height adjust
-        5. [1693656] - [SF 1870215] handleSubmit hijacks the value of the submit button
-        6. [1693686] - [SF 1869619] Image Modification Dialog
-        7. [1693719] - [SF 1850814] Editor produces faulty code
-
-
-**** version 2.4.0 ***
-
-* Performance enhancements and bug fixes.
-* Created a new base class called SimpleEditor. Editor now extends SimpleEditor
-* Created 2 new Toolbar Buttons
-    YAHOO.widget.ToolbarButton - No requirement for Button or Menu
-    YAHOO.widget.ToolbarButtonAdvanced - Still Required Button and Menu
-
-    *All
-        1. [1423860] - [SF 1774823] Change text size removes selection highlight
-        2. [1487601] - [SF 1796897] Font size issue
-        3. [1508412] - [SF 1799379] setEditorHTML strips title attribute
-        4. [1528759] - [SF 1810162] [example] Link Options Window appears behind the editor
-            Added a config option "limitCommands" when set to true, the editor will not execute a command that is not bound to a button.
-
-        5. [1544149] - [SF 1808154] add non-editable snippets to YUI-RTE
-            Added a config option "allowNoEdit", when set to true the "_isNonEditalble method is called at the beginning of all event handlers to check if this element or
-                a parent element has the class yui-noedit (this.CLASS_NOEDIT) applied. If it does, then this method will stop the event and return true. The event handlers
-                will then return false and stop the nodeChange from occurring. This method will also disable and enable the Editor's toolbar based on the noedit state.
-
-        6. [1544160] - [SF 1808102] Keep the content of invalidHTML
-            If you set the value of a key in this.invalidHTML to "{ keepContents: true }", then the element will be replaced with a yui-non span to be filtered out when 
-                cleanHTML is called. The only tag that is ignored here is the span tag as it will force the Editor into a loop and freeze the browser. However, all of
-                these tags will be removed in the cleanHTML routine
-
-        7. [1560982] - [SF 1818681] RTE converts input tags to emnput
-        8. [1508390] - [SF 1787357] Split into separate modules
-            Split the Editor into Editor and SimpleEditor. Also split out the execCommand support into several methods for easier overriding and extending.
-
-        9. [1508403] - [SF 1779516] Dirty flag for editor
-            You can now check the editorDirty property on the Editor instance. It will be default false and be set to true when something important happens.
-            You will need to manually change it back to false when you check it.
-
-    *Internet Explorer
-        1. [1508413] - [SF 1804028, 1810362] Omission of DocType at top of page
-            It appears that Internet Explorer doesn't like the page containing the Editor to not have a doctype if the page inside the editor does.
-                The Editor will now check for compatMode and if it is not in standards mode, it will omit the doctype from the editable area.
-                
-        2. [1528733] - [SF 1808818] IE6 reports security violation on secure pages
-        3. [1528766] - [SF 1810362] Will Not Work Without DTD header
-        4. [1496536] - yui editor indentation problem
-        5. [1465375] - [SF 1789702] RTE Image insertion creates timer error
-
-    *Firefox
-        1. [1492573] - Can not get focus on edit box in FF 1.5 on FreeBSD
-
-**** version 2.3.1 ***
-
-* Performance enhancements and bug fixes.
-
-    *All
-        1. [1406169] - Fixed Toolbar performance issues
-        2. [1406176] - You can now set the height and width of the editor after it has been rendered       
-        3. [1413456] - Group Labels can now be turned off after the editor has been rendered
-        4. [1413750] - Editor now supports delayed render (script block above the textarea markup)
-        5. [1416349] - cleanHTML now supports markup config options better (added xhtml option)
-        6. [1422334] - Added a link field to the image property editor
-        7. [1425540] - [SF 1775187] Fixed adding a link to an LI
-        8. [1406370] - [SF 1767246 ] Using Back button causes breaking behavior. Fixed.
-        9. [1435809] - Base href config fails when on a page with a port number. Fixed.
-
-    *Safari
-        1. [1390926] - Fixed Safari handleSubmit issue
-        2. [1433563] - Editor becomes unstable when rendered inside an element set to display: none (added show() method)
-
-    *Opera
-        1. [1396921] - Fixed clicking the Toolbar while typing loses insertion point
-        2. [1406700] - [SF 1767251] Background color can not be overridden in Opera.. Fixed.
-
-    *Gecko
-        1. [1411911] - [SF 1769657] RTE looks strange on Firefox when base.css - Fixed style collisions
-        2. [1433563] - Editor becomes unstable when rendered inside an element set to display: none (added show() method)
-
-    *Internet Explorer
-        1. [1396921] - Fixed clicking the Toolbar while typing loses insertion point
-
-
-**** version 2.3.0 ***
-
-* Beta release.
-
-* Known Issues
-    * All
-        1. Removed the menu for Create Ordered Lists, it now defaults to creating a simple OL with no type.
-     
-    * Safari
-        1. Bug #1390926 - Safari may not inject the editor's HTML into the text area when the config handleSubmit is set to true.
-            You can get around this with the following code (where comment is the id of the textarea):
-                YAHOO.util.Dom.setStyle('comment', 'visibility', 'hidden');
-                YAHOO.util.Dom.setStyle('comment', 'position', 'absolute');
-                YAHOO.util.Dom.setStyle('comment', 'display', 'block');
-                oEditor.saveHTML();
-                window.setTimeout(function() {
-                        YAHOO.util.Dom.get('comment').form.submit();
-                }, 200);
-
-            This issue will be fixed in a later release..
-        2. Unable to get the cursor position inside the editable area.
-            What this means is that when an image/object is inserted into the document
-            we have no way of knowing "exactly" where to put it. So we make an educated guess.
-            If they user clicked on an "element" (HTML Element) in the editor, then we will place
-            the newly inserted element directly after it in the DOM. If there was no element clicked
-            We will append the new element to the body.
-
-        3. Ordered/Unorder Lists are not support natively. So we have built a work around for this.
-            Most browsers will allow you to select a block of text and create a list out of it "automagically"
-            by inserting an LI around blocks that are separated by line breaks, BRs or Ps. In Safari, the 
-            entire text block will be turned into the first LI of the list. The user can then place the cursor
-            at the beginning of each line, and backspace, then hit enter to create the new list item. There are some
-            use cases that this might fail.
-
-        4. Dragging and dropping of selections and images/objects is not supported.
-            Safari will do some weird things if the text in the editable area is selected and dragged and dropped.
-            We prevent this from happening to images inside of the editable area, but we can not prevent it for text.
-            Safari will also give unexpected results if text from another Safari window in selected, then dragged
-            into the editable area.
-
-    * Opera
-        1. Placing the cursor in the editor, then Shift Clicking to highlight will not work. The limitation appear to be in Opera.
-
-        2. Image resize is unavailable, due to limitations in the browser
-
-        3. Shortcut keys are not supported in this release.
-
-        4. Dragging and dropping of selections and images/objects is not supported.
-
-        5. Hitting the back button on the page will not reload the iframe.
-
-        6. Selecting the editable area, then hitting the shortcut keys for "Reload" will
-            cause the current page to be displayed inside the editable area.
-
-
-**** version 2.3.0 Peview Release Notes ***
-
-* The only server side resource required to run the editor, is the blankimage file.
-    The blankimage file is the temporary image loaded into the editor when you click the
-    "Insert Image" button in the toolbar.
-
-    This can be set using:
-
-    var myEditor = new YAHOO.widget.Editor('test', {
-        blankimage: 'MY_IMAGE_PATH'
-    });
-
-* There is a performance issue with Safari on a G4 computer. We will be working to get this resolved before the initial beta release.
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/assets/editor-core.css b/eclipse.org-common/yui/2.6.0/build/editor/assets/editor-core.css
deleted file mode 100644
index cf36be3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/assets/editor-core.css
+++ /dev/null
@@ -1,573 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* Set the cursor to busy when we are doing something */
-.yui-busy {
-    cursor: wait !important;
-}
-.yui-toolbar-container fieldset {
-    padding: 0;
-    margin: 0;
-    border: 0;
-}
-.yui-toolbar-container legend {
-    display: none;
-}
-/* Setup the container with some padding and zoom it for IE's hasLayout */
-.yui-toolbar-container .yui-toolbar-subcont {
-    padding: .25em 0;
-    zoom: 1;
-}
-/* When collapsed set the toolbars container to display none */
-.yui-toolbar-container-collapsed .yui-toolbar-subcont {
-    display: none;
-}
-/* Setup the :after so that compliant browsers don't loose the bounding box */
-.yui-toolbar-container .yui-toolbar-subcont:after { display: block; clear: both; visibility: hidden; content: '.'; height: 0;}
-
-/* Drag handle for the toolbar's draggable property */
-.yui-toolbar-container span.yui-toolbar-draghandle {
-    cursor: move;
-    border-left: 1px solid #999;
-    border-right: 1px solid #999;
-    overflow: hidden;
-    text-indent: 77777px;
-    width: 2px;
-    height: 20px;
-    display: block;
-    clear: none;
-    float: left;
-    margin: 0 0 0 .2em;
-}
-/* If the titlebar is draggable, the set the cursor */
-.yui-toolbar-container .yui-toolbar-titlebar.draggable {
-    cursor: move;
-}
-/* Set the titlebar to relative so we can position the collapse button */
-.yui-toolbar-container .yui-toolbar-titlebar {
-    position: relative;
-}
-/* Toolbar's titlebar styles */
-.yui-toolbar-container .yui-toolbar-titlebar h2 {
-    font-weight: bold;
-    letter-spacing: 0;
-    border: none;
-    color: #000;
-    margin: 0;
-    padding: .2em;
-}
-.yui-toolbar-container .yui-toolbar-titlebar h2 a {
-    text-decoration: none;
-    color: #000;
-    cursor: default;
-}
-/* If the toolbar is grouped the draghandle needs to be bigger */
-.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-draghandle {
-    height: 40px;
-}
-
-/* Float the groups so they position nicely and zoom them for IE */
-.yui-toolbar-container .yui-toolbar-group {
-    float: left;
-    margin-right: .5em;
-    zoom: 1;
-}
-/* Setup the :after so that compliant browsers don't loose the bounding box */
-.yui-toolbar-container .yui-toolbar-group:after { display: block; clear: both; visibility: hidden; content: '.'; height: 0;}
-/* Grouped title styles */
-.yui-toolbar-container .yui-toolbar-group h3 {
-    font-size: 75%;
-    padding: 0 0 0 .25em;
-    margin: 0;
-}
-/* Style the separators with a left border */
-.yui-toolbar-container span.yui-toolbar-separator {
-    width: 2px;
-    padding: 0;
-    height: 18px;
-    margin: .2em 0 .2em .1em;
-    display: none;
-    float: left;
-
-}
-/* Set the height of a grouped separator to a little bit bigger */
-.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-separator {
-    height: 45px;
-    *height: 50px;
-}
-
-/* Reset the height of a separator inside of a group */
-.yui-toolbar-container.yui-toolbar-grouped .yui-toolbar-group span.yui-toolbar-separator {
-    height: 18px;
-    display: block;
-}
-
-/* Kill the default styles of the list */
-.yui-toolbar-container ul li {
-    margin: 0;
-    padding: 0;
-    list-style-type: none;
-}
-/* Hide the group labels when the .yui-toolbar-nogrouplabels class is applied */
-.yui-toolbar-container .yui-toolbar-nogrouplabels h3 {
-    display: none;
-}
-
-/* Setup the default style of a button in the toolbar */
-.yui-toolbar-container .yui-push-button,
-.yui-toolbar-container .yui-color-button,
-.yui-toolbar-container .yui-menu-button {
-/*.yui-toolbar-container .yui-button {*/
-    position: relative;
-    cursor: pointer;
-}
-
-/* setup the default style of the A inside of the toolbar button */
-.yui-toolbar-container .yui-button .first-child, .yui-toolbar-container .yui-button .first-child a {
-    height: 100%;
-    width: 100%;
-    overflow: hidden;
-    font-size: 0px;
-}
-
-/* Setup the disabled state of a button */
-.yui-toolbar-container .yui-button-disabled {
-    cursor: default;
-}
-/* Disable the icon too */
-.yui-toolbar-container .yui-button-disabled .yui-toolbar-icon {
-    opacity: .5;
-    filter: alpha(opacity=50);
-}
-/*Disabled Spin button arrows*/
-.yui-toolbar-container .yui-button-disabled .up,
-.yui-toolbar-container .yui-button-disabled .down {
-    opacity: .5;
-    filter: alpha(opacity=50);
-}
-/* remove any padding from the A */
-.yui-toolbar-container .yui-button a {
-    overflow: hidden;
-}
-
-/* Override the default Button style for select menu*/
-.yui-toolbar-container .yui-toolbar-select .first-child a {
-    cursor: pointer;
-}
-
-/* Font Family Menu Style - This styles the menu items and the selected menu item */
-.yui-toolbar-fontname-arial { font-family: Arial; }
-.yui-toolbar-fontname-arial-black { font-family: Arial Black; }
-.yui-toolbar-fontname-comic-sans-ms { font-family: Comic Sans MS; }
-.yui-toolbar-fontname-courier-new { font-family: Courier New; }
-.yui-toolbar-fontname-times-new-roman { font-family: Times New Roman; }
-.yui-toolbar-fontname-verdana { font-family: Verdana; }
-.yui-toolbar-fontname-impact { font-family: Impact; }
-.yui-toolbar-fontname-lucida-console { font-family: Lucida Console; }
-.yui-toolbar-fontname-tahoma { font-family: Tahoma; }
-.yui-toolbar-fontname-trebuchet-ms { font-family: Trebuchet MS; }
-
-/* Spin Button */
-.yui-toolbar-container .yui-toolbar-spinbutton {
-    position: relative;
-}
-
-/* Setup the default style for the A */
-.yui-toolbar-container .yui-toolbar-spinbutton .first-child a {
-    z-index: 0;
-    opacity: 1;
-}
-
-/* Setup the position and style for the up and down arrows */
-.yui-toolbar-container .yui-toolbar-spinbutton a.up, .yui-toolbar-container .yui-toolbar-spinbutton a.down {
-    position: absolute;
-    display: block
-    right: 0;
-    cursor: pointer;
-    z-index: 1;
-    padding: 0;
-    margin: 0;
-}
-/* Position all panels/overlays as absolute by default */
-.yui-toolbar-container .yui-overlay {
-    position: absolute;
-}
-/* Smash the default style for lists */
-.yui-toolbar-container .yui-overlay ul li {
-    margin: 0;
-    list-style-type: none;
-}
-
-/* Reset the z-index of the toolbar container so that menu's appear over the iframe in IE and Safari */
-.yui-toolbar-container {
-    z-index: 1;
-}
-
-/* The div around the iFrame */
-.yui-editor-container .yui-editor-editable-container {
-    position: relative;
-    z-index: 0;
-    width: 100%;
-}
-/* The disbled state of the Editor */
-.yui-editor-container .yui-editor-masked {
-    background-color: #CCC;
-}
-/* Style the editable iframe to hide it */
-.yui-editor-container iframe {
-    border: 0px;
-    padding: 0;
-    margin: 0;
-    zoom: 1;
-    display: block;
-}
-/* Reset some padding on the editable iframes container */
-.yui-editor-container .yui-editor-editable {
-    padding: 0;
-    margin: 0;
-}
-/* Style the dom path box at the bottom of the editor */
-.yui-editor-container .dompath {
-    font-size: 85%;
-}
-/* Header styles for the Property Editor */
-.yui-editor-panel .hd {
-    text-align: left;
-    position: relative;
-}
-/* Setup some padding around the h3 */
-.yui-editor-panel .hd h3 {
-    font-weight: bold;
-    padding: 0.25em 0pt 0.25em 0.25em;
-    margin: 0;
-}
-
-/* set it to relative so we can position the close button - Zoom it for IE */
-.yui-editor-panel .bd {
-    width: 100%;
-    zoom: 1;
-    position: relative;
-}
-/* Setup some padding for the body container - Zoom it for IE */
-.yui-editor-panel .bd div.yui-editor-body-cont {
-    padding: .25em .1em;
-    zoom: 1;
-}
-/* Get the caret back in Geckp */
-.yui-editor-panel .bd .gecko form {
-    overflow: auto;
-}
-
-/* Setup the :after so that compliant browsers don't loose the bounding box */
-.yui-editor-panel .bd div.yui-editor-body-cont:after { display: block; clear: both; visibility: hidden; content: '.'; height: 0;}
-
-/* style the footer of the property editor */
-.yui-editor-panel .ft {
-    text-align: right;
-    width: 99%;
-    float: left;
-    clear: both;
-}
-
-/* Style the "tip" icon */
-.yui-editor-panel .ft span.tip {
-    display: block;
-    position: relative;
-    padding: .5em .5em .5em 23px;
-    text-align:left;
-    zoom: 1;
-}
-
-
-/* setup some form fields */
-.yui-editor-panel label {
-    clear: both;
-    float: left;
-    padding: 0;
-    width: 100%;
-    text-align: left;
-    zoom: 1;
-}
-/* This fixes the caret issue in Firefox */
-.yui-editor-panel .gecko label {
-    overflow: auto; 
-}
-/* more form fields */
-.yui-editor-panel label strong {
-    float: left;
-    width: 6em;
-}
-
-/* The remove link in the Link Property Editor */
-.yui-editor-panel .removeLink {
-    width: 80%;
-    text-align: right;
-}
-
-/* More form styling */
-.yui-editor-panel label input {
-    margin-left: .25em;
-    float: left;
-}
-
-.yui-editor-panel .yui-toolbar-group {
-    margin-bottom: 0.75em;
-}
-
-/* Image Padding in the Property Editor */
-.yui-editor-panel .yui-toolbar-group-padding {
-}
-
-/* Image Border in the Property Editor */
-.yui-editor-panel .yui-toolbar-group-border {
-}
-
-/* Image Text Flow in the Property Editor */
-.yui-editor-panel .yui-toolbar-group-textflow {
-}
-
-/* Image Height/Width in the Property Editor */
-.yui-editor-panel .height-width {
-    float: left;
-}
-/* Image Height/Width title */
-.yui-editor-panel .height-width h3 {
-}
-/* Image Height/Width container */
-.yui-editor-panel .height-width span {
-    font-style: italic;
-    display: block;
-    float: left;
-    overflow: visible;
-}
-/* Image Height/Width original info container */
-.yui-editor-panel .height-width span.info {
-    font-size: 70%;
-    margin-top: 3px;
-}
-
-/* Border Size/Type button widths */
-.yui-editor-panel .yui-toolbar-bordersize, .yui-editor-panel .yui-toolbar-bordertype {
-    font-size: 75%;
-}
-
-/* Kill the separators in the Property Editor */
-.yui-editor-panel .yui-toolbar-container span.yui-toolbar-separator {
-    border: none;
-}
-
-/* Border Type solid */
-.yui-editor-panel .yui-toolbar-bordersize span a span,
-.yui-editor-panel .yui-toolbar-bordertype span a span {
-    display: block;
-    height: 8px;
-    left: 4px;
-    position: absolute;
-    top: 3px;
-    _top: -5px;
-    width: 24px;
-    text-indent: 52px;
-    font-size: 0%;
-}
-/* Border Type solid */
-.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-solid {
-    border-bottom: 1px solid black;
-}
-/* Border Type dotted */
-.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dotted {
-    border-bottom: 1px dotted black;
-}
-/* Border Type dashed */
-.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dashed {
-    border-bottom: 1px dashed black;
-}
-/* Border Size 0 */
-.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-0 {
-    *top: 0px;
-    text-indent: 0px;
-    font-size: 75%;
-}
-/* Border Size 1 */
-.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-1 {
-    border-bottom: 1px solid black;
-}
-/* Border Size 2 */
-.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-2 {
-    border-bottom: 2px solid black;
-}
-/* Border Size 3 */
-.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-3 {
-    top: 2px;
-    *top: -5px;
-    border-bottom: 3px solid black;
-}
-/* Border Size 4 */
-.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-4 {
-    top: 1px;
-    *top: -5px;
-    border-bottom: 4px solid black;
-}
-/* Border Size 5 */
-.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-5 {
-    top: 1px;
-    *top: -5px;
-    border-bottom: 5px solid black;
-}
-
-/* Border Size menu size */
-.yui-toolbar-container .yui-toolbar-bordersize-menu,
-.yui-toolbar-container .yui-toolbar-bordertype-menu {
-    width: 95px !important;
-}
-/* Border Size menu styles */
-.yui-toolbar-bordersize-menu .yuimenuitemlabel, .yui-toolbar-bordertype-menu .yuimenuitemlabel, 
-.yui-toolbar-bordersize-menu .yuimenuitemlabel, .yui-toolbar-bordertype-menu .yuimenuitemlabel:hover {
-    margin:0px 3px 7px 17px;
-}
-/* Border Size menu styles - Checked */
-.yui-toolbar-bordersize-menu .yuimenuitemlabel .checkedindicator, .yui-toolbar-bordertype-menu .yuimenuitemlabel .checkedindicator {
-    position: absolute;
-    left: -12px;
-    *top: 14px;
-    *left: 0px;
-}
-
-/* Border Size 1 - Menu Item */
-.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-1 a {
-    border-bottom: 1px solid black;
-    height: 14px;
-}
-/* Border Size 2 - Menu Item */
-.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-2 a {
-    border-bottom: 2px solid black;
-    height: 14px;
-}
-/* Border Size 3 - Menu Item */
-.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-3 a {
-    border-bottom: 3px solid black;
-    height: 14px;
-}
-/* Border Size 4 - Menu Item */
-.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-4 a {
-    border-bottom: 4px solid black;
-    height: 14px;
-}
-/* Border Size 5 - Menu Item */
-.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-5 a {
-    border-bottom: 5px solid black;
-    height: 14px;
-}
-
-
-/* Border Type Solid - Menu Item */
-.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-solid a {
-    border-bottom: 1px solid black;
-    height: 14px;
-}
-/* Border Type Dashed - Menu Item */
-.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dashed a {
-    border-bottom: 1px dashed black;
-    height: 14px;
-}
-/* Border Type Dotted - Menu Item */
-.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dotted a {
-    border-bottom: 1px dotted black;
-    height: 14px;
-}
-
-/* Hidden Headers for Accessibility */
-h2.yui-editor-skipheader, h3.yui-editor-skipheader {
-    height: 0;
-    margin: 0;
-    padding: 0;
-    border: none;
-    width: 0;
-    overflow: hidden;
-    position: absolute;
-}
-
-/* Setup the default look of a color menu and Zoom it for IE */
-.yui-toolbar-colors {
-    width: 133px;
-    zoom: 1;
-    display: none;
-    z-index: 100;
-    overflow: hidden;
-}
-
-/* Setup the :after so that compliant browsers don't loose the bounding box */
-.yui-toolbar-colors:after { display: block; clear: both; visibility: hidden; content: '.'; height: 0;}
-/* Style all of the A's so the float properly */
-.yui-toolbar-colors a {
-    height: 9px;
-    width: 9px;
-    float: left;
-    display: block;
-    overflow: hidden;
-    text-indent: 999px;
-    margin: 0;
-    cursor: pointer;
-    border: 1px solid #F6F7EE;
-}
-/* Put a little border around one that is hovered over */
-.yui-toolbar-colors a:hover {
-    border: 1px solid black;
-}
-
-/* Smash the inhertited Menu style */
-.yui-color-button-menu {
-    overflow: visible;
-    background-color: transparent;
-}
-
-/* This is the preview box at the bottom of the menu - Zoom it for IE */
-.yui-toolbar-colors span {
-    position: relative;
-    display: block;
-    padding: 3px;
-    overflow: hidden;
-    float: left;
-    width: 100%;
-    zoom: 1;
-}
-/* Setup the :after so that compliant browsers don't loose the bounding box */
-.yui-toolbar-colors span:after { display: block; clear: both; visibility: hidden; content: '.'; height: 0;}
-
-/* This is the box with the color preview in it */
-.yui-toolbar-colors span em {
-    height: 35px;
-    width: 30px;
-    float: left;
-    display: block;
-    overflow: hidden;
-    text-indent: 999px;
-    margin: 0.75px;
-    border: 1px solid black;
-}
-
-/* The container for the name and hex code */
-.yui-toolbar-colors span strong {
-    font-weight: normal;
-    padding-left: 3px;
-    display: block;
-    font-size: 85%;
-    float: left;
-    width: 65%;
-}
-
-
-.yui-toolbar-group-undoredo h3,
-.yui-toolbar-group-insertitem h3,
-.yui-toolbar-group-indentlist h3 {
-    width: 68px;
-}
-.yui-toolbar-group-indentlist2 h3 {
-    width: 122px;
-}
-.yui-toolbar-group-alignment h3 {
-    width: 130px;
-}
-
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/assets/simpleeditor-core.css b/eclipse.org-common/yui/2.6.0/build/editor/assets/simpleeditor-core.css
deleted file mode 100644
index cf36be3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/assets/simpleeditor-core.css
+++ /dev/null
@@ -1,573 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* Set the cursor to busy when we are doing something */
-.yui-busy {
-    cursor: wait !important;
-}
-.yui-toolbar-container fieldset {
-    padding: 0;
-    margin: 0;
-    border: 0;
-}
-.yui-toolbar-container legend {
-    display: none;
-}
-/* Setup the container with some padding and zoom it for IE's hasLayout */
-.yui-toolbar-container .yui-toolbar-subcont {
-    padding: .25em 0;
-    zoom: 1;
-}
-/* When collapsed set the toolbars container to display none */
-.yui-toolbar-container-collapsed .yui-toolbar-subcont {
-    display: none;
-}
-/* Setup the :after so that compliant browsers don't loose the bounding box */
-.yui-toolbar-container .yui-toolbar-subcont:after { display: block; clear: both; visibility: hidden; content: '.'; height: 0;}
-
-/* Drag handle for the toolbar's draggable property */
-.yui-toolbar-container span.yui-toolbar-draghandle {
-    cursor: move;
-    border-left: 1px solid #999;
-    border-right: 1px solid #999;
-    overflow: hidden;
-    text-indent: 77777px;
-    width: 2px;
-    height: 20px;
-    display: block;
-    clear: none;
-    float: left;
-    margin: 0 0 0 .2em;
-}
-/* If the titlebar is draggable, the set the cursor */
-.yui-toolbar-container .yui-toolbar-titlebar.draggable {
-    cursor: move;
-}
-/* Set the titlebar to relative so we can position the collapse button */
-.yui-toolbar-container .yui-toolbar-titlebar {
-    position: relative;
-}
-/* Toolbar's titlebar styles */
-.yui-toolbar-container .yui-toolbar-titlebar h2 {
-    font-weight: bold;
-    letter-spacing: 0;
-    border: none;
-    color: #000;
-    margin: 0;
-    padding: .2em;
-}
-.yui-toolbar-container .yui-toolbar-titlebar h2 a {
-    text-decoration: none;
-    color: #000;
-    cursor: default;
-}
-/* If the toolbar is grouped the draghandle needs to be bigger */
-.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-draghandle {
-    height: 40px;
-}
-
-/* Float the groups so they position nicely and zoom them for IE */
-.yui-toolbar-container .yui-toolbar-group {
-    float: left;
-    margin-right: .5em;
-    zoom: 1;
-}
-/* Setup the :after so that compliant browsers don't loose the bounding box */
-.yui-toolbar-container .yui-toolbar-group:after { display: block; clear: both; visibility: hidden; content: '.'; height: 0;}
-/* Grouped title styles */
-.yui-toolbar-container .yui-toolbar-group h3 {
-    font-size: 75%;
-    padding: 0 0 0 .25em;
-    margin: 0;
-}
-/* Style the separators with a left border */
-.yui-toolbar-container span.yui-toolbar-separator {
-    width: 2px;
-    padding: 0;
-    height: 18px;
-    margin: .2em 0 .2em .1em;
-    display: none;
-    float: left;
-
-}
-/* Set the height of a grouped separator to a little bit bigger */
-.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-separator {
-    height: 45px;
-    *height: 50px;
-}
-
-/* Reset the height of a separator inside of a group */
-.yui-toolbar-container.yui-toolbar-grouped .yui-toolbar-group span.yui-toolbar-separator {
-    height: 18px;
-    display: block;
-}
-
-/* Kill the default styles of the list */
-.yui-toolbar-container ul li {
-    margin: 0;
-    padding: 0;
-    list-style-type: none;
-}
-/* Hide the group labels when the .yui-toolbar-nogrouplabels class is applied */
-.yui-toolbar-container .yui-toolbar-nogrouplabels h3 {
-    display: none;
-}
-
-/* Setup the default style of a button in the toolbar */
-.yui-toolbar-container .yui-push-button,
-.yui-toolbar-container .yui-color-button,
-.yui-toolbar-container .yui-menu-button {
-/*.yui-toolbar-container .yui-button {*/
-    position: relative;
-    cursor: pointer;
-}
-
-/* setup the default style of the A inside of the toolbar button */
-.yui-toolbar-container .yui-button .first-child, .yui-toolbar-container .yui-button .first-child a {
-    height: 100%;
-    width: 100%;
-    overflow: hidden;
-    font-size: 0px;
-}
-
-/* Setup the disabled state of a button */
-.yui-toolbar-container .yui-button-disabled {
-    cursor: default;
-}
-/* Disable the icon too */
-.yui-toolbar-container .yui-button-disabled .yui-toolbar-icon {
-    opacity: .5;
-    filter: alpha(opacity=50);
-}
-/*Disabled Spin button arrows*/
-.yui-toolbar-container .yui-button-disabled .up,
-.yui-toolbar-container .yui-button-disabled .down {
-    opacity: .5;
-    filter: alpha(opacity=50);
-}
-/* remove any padding from the A */
-.yui-toolbar-container .yui-button a {
-    overflow: hidden;
-}
-
-/* Override the default Button style for select menu*/
-.yui-toolbar-container .yui-toolbar-select .first-child a {
-    cursor: pointer;
-}
-
-/* Font Family Menu Style - This styles the menu items and the selected menu item */
-.yui-toolbar-fontname-arial { font-family: Arial; }
-.yui-toolbar-fontname-arial-black { font-family: Arial Black; }
-.yui-toolbar-fontname-comic-sans-ms { font-family: Comic Sans MS; }
-.yui-toolbar-fontname-courier-new { font-family: Courier New; }
-.yui-toolbar-fontname-times-new-roman { font-family: Times New Roman; }
-.yui-toolbar-fontname-verdana { font-family: Verdana; }
-.yui-toolbar-fontname-impact { font-family: Impact; }
-.yui-toolbar-fontname-lucida-console { font-family: Lucida Console; }
-.yui-toolbar-fontname-tahoma { font-family: Tahoma; }
-.yui-toolbar-fontname-trebuchet-ms { font-family: Trebuchet MS; }
-
-/* Spin Button */
-.yui-toolbar-container .yui-toolbar-spinbutton {
-    position: relative;
-}
-
-/* Setup the default style for the A */
-.yui-toolbar-container .yui-toolbar-spinbutton .first-child a {
-    z-index: 0;
-    opacity: 1;
-}
-
-/* Setup the position and style for the up and down arrows */
-.yui-toolbar-container .yui-toolbar-spinbutton a.up, .yui-toolbar-container .yui-toolbar-spinbutton a.down {
-    position: absolute;
-    display: block
-    right: 0;
-    cursor: pointer;
-    z-index: 1;
-    padding: 0;
-    margin: 0;
-}
-/* Position all panels/overlays as absolute by default */
-.yui-toolbar-container .yui-overlay {
-    position: absolute;
-}
-/* Smash the default style for lists */
-.yui-toolbar-container .yui-overlay ul li {
-    margin: 0;
-    list-style-type: none;
-}
-
-/* Reset the z-index of the toolbar container so that menu's appear over the iframe in IE and Safari */
-.yui-toolbar-container {
-    z-index: 1;
-}
-
-/* The div around the iFrame */
-.yui-editor-container .yui-editor-editable-container {
-    position: relative;
-    z-index: 0;
-    width: 100%;
-}
-/* The disbled state of the Editor */
-.yui-editor-container .yui-editor-masked {
-    background-color: #CCC;
-}
-/* Style the editable iframe to hide it */
-.yui-editor-container iframe {
-    border: 0px;
-    padding: 0;
-    margin: 0;
-    zoom: 1;
-    display: block;
-}
-/* Reset some padding on the editable iframes container */
-.yui-editor-container .yui-editor-editable {
-    padding: 0;
-    margin: 0;
-}
-/* Style the dom path box at the bottom of the editor */
-.yui-editor-container .dompath {
-    font-size: 85%;
-}
-/* Header styles for the Property Editor */
-.yui-editor-panel .hd {
-    text-align: left;
-    position: relative;
-}
-/* Setup some padding around the h3 */
-.yui-editor-panel .hd h3 {
-    font-weight: bold;
-    padding: 0.25em 0pt 0.25em 0.25em;
-    margin: 0;
-}
-
-/* set it to relative so we can position the close button - Zoom it for IE */
-.yui-editor-panel .bd {
-    width: 100%;
-    zoom: 1;
-    position: relative;
-}
-/* Setup some padding for the body container - Zoom it for IE */
-.yui-editor-panel .bd div.yui-editor-body-cont {
-    padding: .25em .1em;
-    zoom: 1;
-}
-/* Get the caret back in Geckp */
-.yui-editor-panel .bd .gecko form {
-    overflow: auto;
-}
-
-/* Setup the :after so that compliant browsers don't loose the bounding box */
-.yui-editor-panel .bd div.yui-editor-body-cont:after { display: block; clear: both; visibility: hidden; content: '.'; height: 0;}
-
-/* style the footer of the property editor */
-.yui-editor-panel .ft {
-    text-align: right;
-    width: 99%;
-    float: left;
-    clear: both;
-}
-
-/* Style the "tip" icon */
-.yui-editor-panel .ft span.tip {
-    display: block;
-    position: relative;
-    padding: .5em .5em .5em 23px;
-    text-align:left;
-    zoom: 1;
-}
-
-
-/* setup some form fields */
-.yui-editor-panel label {
-    clear: both;
-    float: left;
-    padding: 0;
-    width: 100%;
-    text-align: left;
-    zoom: 1;
-}
-/* This fixes the caret issue in Firefox */
-.yui-editor-panel .gecko label {
-    overflow: auto; 
-}
-/* more form fields */
-.yui-editor-panel label strong {
-    float: left;
-    width: 6em;
-}
-
-/* The remove link in the Link Property Editor */
-.yui-editor-panel .removeLink {
-    width: 80%;
-    text-align: right;
-}
-
-/* More form styling */
-.yui-editor-panel label input {
-    margin-left: .25em;
-    float: left;
-}
-
-.yui-editor-panel .yui-toolbar-group {
-    margin-bottom: 0.75em;
-}
-
-/* Image Padding in the Property Editor */
-.yui-editor-panel .yui-toolbar-group-padding {
-}
-
-/* Image Border in the Property Editor */
-.yui-editor-panel .yui-toolbar-group-border {
-}
-
-/* Image Text Flow in the Property Editor */
-.yui-editor-panel .yui-toolbar-group-textflow {
-}
-
-/* Image Height/Width in the Property Editor */
-.yui-editor-panel .height-width {
-    float: left;
-}
-/* Image Height/Width title */
-.yui-editor-panel .height-width h3 {
-}
-/* Image Height/Width container */
-.yui-editor-panel .height-width span {
-    font-style: italic;
-    display: block;
-    float: left;
-    overflow: visible;
-}
-/* Image Height/Width original info container */
-.yui-editor-panel .height-width span.info {
-    font-size: 70%;
-    margin-top: 3px;
-}
-
-/* Border Size/Type button widths */
-.yui-editor-panel .yui-toolbar-bordersize, .yui-editor-panel .yui-toolbar-bordertype {
-    font-size: 75%;
-}
-
-/* Kill the separators in the Property Editor */
-.yui-editor-panel .yui-toolbar-container span.yui-toolbar-separator {
-    border: none;
-}
-
-/* Border Type solid */
-.yui-editor-panel .yui-toolbar-bordersize span a span,
-.yui-editor-panel .yui-toolbar-bordertype span a span {
-    display: block;
-    height: 8px;
-    left: 4px;
-    position: absolute;
-    top: 3px;
-    _top: -5px;
-    width: 24px;
-    text-indent: 52px;
-    font-size: 0%;
-}
-/* Border Type solid */
-.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-solid {
-    border-bottom: 1px solid black;
-}
-/* Border Type dotted */
-.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dotted {
-    border-bottom: 1px dotted black;
-}
-/* Border Type dashed */
-.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dashed {
-    border-bottom: 1px dashed black;
-}
-/* Border Size 0 */
-.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-0 {
-    *top: 0px;
-    text-indent: 0px;
-    font-size: 75%;
-}
-/* Border Size 1 */
-.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-1 {
-    border-bottom: 1px solid black;
-}
-/* Border Size 2 */
-.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-2 {
-    border-bottom: 2px solid black;
-}
-/* Border Size 3 */
-.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-3 {
-    top: 2px;
-    *top: -5px;
-    border-bottom: 3px solid black;
-}
-/* Border Size 4 */
-.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-4 {
-    top: 1px;
-    *top: -5px;
-    border-bottom: 4px solid black;
-}
-/* Border Size 5 */
-.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-5 {
-    top: 1px;
-    *top: -5px;
-    border-bottom: 5px solid black;
-}
-
-/* Border Size menu size */
-.yui-toolbar-container .yui-toolbar-bordersize-menu,
-.yui-toolbar-container .yui-toolbar-bordertype-menu {
-    width: 95px !important;
-}
-/* Border Size menu styles */
-.yui-toolbar-bordersize-menu .yuimenuitemlabel, .yui-toolbar-bordertype-menu .yuimenuitemlabel, 
-.yui-toolbar-bordersize-menu .yuimenuitemlabel, .yui-toolbar-bordertype-menu .yuimenuitemlabel:hover {
-    margin:0px 3px 7px 17px;
-}
-/* Border Size menu styles - Checked */
-.yui-toolbar-bordersize-menu .yuimenuitemlabel .checkedindicator, .yui-toolbar-bordertype-menu .yuimenuitemlabel .checkedindicator {
-    position: absolute;
-    left: -12px;
-    *top: 14px;
-    *left: 0px;
-}
-
-/* Border Size 1 - Menu Item */
-.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-1 a {
-    border-bottom: 1px solid black;
-    height: 14px;
-}
-/* Border Size 2 - Menu Item */
-.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-2 a {
-    border-bottom: 2px solid black;
-    height: 14px;
-}
-/* Border Size 3 - Menu Item */
-.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-3 a {
-    border-bottom: 3px solid black;
-    height: 14px;
-}
-/* Border Size 4 - Menu Item */
-.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-4 a {
-    border-bottom: 4px solid black;
-    height: 14px;
-}
-/* Border Size 5 - Menu Item */
-.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-5 a {
-    border-bottom: 5px solid black;
-    height: 14px;
-}
-
-
-/* Border Type Solid - Menu Item */
-.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-solid a {
-    border-bottom: 1px solid black;
-    height: 14px;
-}
-/* Border Type Dashed - Menu Item */
-.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dashed a {
-    border-bottom: 1px dashed black;
-    height: 14px;
-}
-/* Border Type Dotted - Menu Item */
-.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dotted a {
-    border-bottom: 1px dotted black;
-    height: 14px;
-}
-
-/* Hidden Headers for Accessibility */
-h2.yui-editor-skipheader, h3.yui-editor-skipheader {
-    height: 0;
-    margin: 0;
-    padding: 0;
-    border: none;
-    width: 0;
-    overflow: hidden;
-    position: absolute;
-}
-
-/* Setup the default look of a color menu and Zoom it for IE */
-.yui-toolbar-colors {
-    width: 133px;
-    zoom: 1;
-    display: none;
-    z-index: 100;
-    overflow: hidden;
-}
-
-/* Setup the :after so that compliant browsers don't loose the bounding box */
-.yui-toolbar-colors:after { display: block; clear: both; visibility: hidden; content: '.'; height: 0;}
-/* Style all of the A's so the float properly */
-.yui-toolbar-colors a {
-    height: 9px;
-    width: 9px;
-    float: left;
-    display: block;
-    overflow: hidden;
-    text-indent: 999px;
-    margin: 0;
-    cursor: pointer;
-    border: 1px solid #F6F7EE;
-}
-/* Put a little border around one that is hovered over */
-.yui-toolbar-colors a:hover {
-    border: 1px solid black;
-}
-
-/* Smash the inhertited Menu style */
-.yui-color-button-menu {
-    overflow: visible;
-    background-color: transparent;
-}
-
-/* This is the preview box at the bottom of the menu - Zoom it for IE */
-.yui-toolbar-colors span {
-    position: relative;
-    display: block;
-    padding: 3px;
-    overflow: hidden;
-    float: left;
-    width: 100%;
-    zoom: 1;
-}
-/* Setup the :after so that compliant browsers don't loose the bounding box */
-.yui-toolbar-colors span:after { display: block; clear: both; visibility: hidden; content: '.'; height: 0;}
-
-/* This is the box with the color preview in it */
-.yui-toolbar-colors span em {
-    height: 35px;
-    width: 30px;
-    float: left;
-    display: block;
-    overflow: hidden;
-    text-indent: 999px;
-    margin: 0.75px;
-    border: 1px solid black;
-}
-
-/* The container for the name and hex code */
-.yui-toolbar-colors span strong {
-    font-weight: normal;
-    padding-left: 3px;
-    display: block;
-    font-size: 85%;
-    float: left;
-    width: 65%;
-}
-
-
-.yui-toolbar-group-undoredo h3,
-.yui-toolbar-group-insertitem h3,
-.yui-toolbar-group-indentlist h3 {
-    width: 68px;
-}
-.yui-toolbar-group-indentlist2 h3 {
-    width: 122px;
-}
-.yui-toolbar-group-alignment h3 {
-    width: 130px;
-}
-
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/blankimage.png b/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/blankimage.png
deleted file mode 100644
index b87bb24..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/blankimage.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor-knob.gif b/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor-knob.gif
deleted file mode 100644
index 03feab3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor-knob.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor-skin.css b/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor-skin.css
deleted file mode 100644
index c3d4122..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor-skin.css
+++ /dev/null
@@ -1,707 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* Place the border around the editor */
-.yui-skin-sam .yui-editor-container {
-    border: 1px solid #808080;
-}
-/* Color the border of the container */
-.yui-skin-sam .yui-toolbar-container {
-    zoom: 1;
-}
-/* Load the background image on the Toolbars titlebar */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar {
-    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -200px;
-    position: relative;
-}
-.yui-skin-sam .yui-editor-container .draggable .yui-toolbar-titlebar {
-    cursor: move;
-}
-
-/* Give the titlebar some color and padding */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar h2 {
-    color: #000000;
-    font-weight: bold;
-    margin: 0;
-    padding: 0.3em 1em;
-    font-size: 100%;
-    text-align: left;
-}
-
-/* Give the toolbars groups titles some color and padding */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-group h3 {
-    color: #808080;
-    font-size: 75%;
-    margin: 1em 0 0;
-    padding-bottom: 0;
-    padding-left: 0.25em;
-    text-align: left;
-}
-
-/* Hide all of the sepatators borders */
-.yui-toolbar-container span.yui-toolbar-separator {
-    border: none;
-    text-indent: 33px;
-    overflow: hidden;
-    margin: 0 .25em;
-}
-
-/* Background color of the toolbar */
-.yui-skin-sam .yui-toolbar-container {
-    background-color: #F2F2F2;
-}
-
-/* Add some padding to the toolbars sub container */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-subcont {
-    padding: 0 1em 0.35em;
-    border-bottom:1px solid #808080;
-}
-/* When the collapsed class is added, add a border to the bottom of the titlebar (since the toolbar itself is display none) */
-.yui-skin-sam .yui-toolbar-container-collapsed .yui-toolbar-titlebar {
-    border-bottom:1px solid #808080;
-}
-
-/* Remove the shadows from the menus in the toolbar - Menu.css override */
-.yui-skin-sam .yui-editor-container .visible .yui-menu-shadow,
-.yui-skin-sam .yui-editor-panel .visible .yui-menu-shadow {
-    display: none;
-}
-
-/* Remove padding/margin from lists */
-.yui-skin-sam .yui-editor-container ul {
-    list-style-type: none;
-    margin: 0;
-    padding: 0;
-}
-/* Remove padding/margin from list items */
-.yui-skin-sam .yui-editor-container ul li {
-    list-style-type: none;
-    margin: 0;
-    padding: 0;
-}
-/* Float the LI's that wrap the buttons */
-.yui-skin-sam .yui-toolbar-group ul li.yui-toolbar-groupitem {
-    float: left;
-}
-
-/* Set the color and the border of the dompath container at the bottom of the editor */
-.yui-skin-sam .yui-editor-container .dompath {
-    background-color: #F2F2F2;
-    border-top:1px solid #808080;
-    color: #999;
-    text-align: left;
-    padding: 0.25em;
-}
-
-/* Set the image for the collapse button on the toolbar */
-.yui-skin-sam .yui-toolbar-container .collapse {
-    background: url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -400px;
-}
-/* Position the image and the container */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar span.collapse {
-    cursor: pointer;
-    position: absolute;
-    top: 4px;
-    right: 2px;
-    display: block;
-    overflow: hidden;
-    height: 15px;
-    width: 15px;
-    text-indent: 9999px;
-}
-
-/* Set the default styles for the buttons */
-.yui-skin-sam .yui-toolbar-container .yui-push-button,
-.yui-skin-sam .yui-toolbar-container .yui-color-button,
-.yui-skin-sam .yui-toolbar-container .yui-menu-button {
-    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
-    position: relative;
-    display: block;
-    height: 22px;
-    width: 30px;
-    _font-size: 0;
-    margin: 0;
-    border-color: #808080;
-    color: #f2f2f2;
-    border-style: solid;
-    border-width: 1px 0;
-    zoom: 1;
-}
-/* Set the height of the buttons and pad them on the left for the icon */
-.yui-skin-sam .yui-toolbar-container .yui-push-button a,
-.yui-skin-sam .yui-toolbar-container .yui-color-button a,
-.yui-skin-sam .yui-toolbar-container .yui-menu-button a {
-    padding-left: 35px;
-    height: 20px;
-    text-decoration: none;
-    font-size: 0px;
-    line-height: 2;
-    display: block;
-    color: #000;
-    overflow: hidden;
-    white-space: nowrap;
-}
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a,
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-select a {
-    font-size: 12px;
-}
-/* Set the height of the buttons and pad them on the left for the icon */
-.yui-skin-sam .yui-toolbar-container .yui-push-button .first-child,
-.yui-skin-sam .yui-toolbar-container .yui-color-button .first-child,
-.yui-skin-sam .yui-toolbar-container .yui-menu-button .first-child {
-    border-color: #808080;
-    border-style: solid;
-    border-width: 0 1px;
-    margin: 0 -1px;
-    display: block;
-    position: relative;
-}
-.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled .first-child,
-.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled .first-child,
-.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled .first-child {
-    border-color: #ccc;
-}
-.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled a,
-.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled a,
-.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled a {
-    color: #A6A6A6;
-    cursor: default;
-}
-.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled,
-.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled,
-.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled {
-    border-color: #ccc;
-}
-/* IE needs a little help positioning the first child */
-.yui-skin-sam .yui-toolbar-container .yui-button .first-child {
-    *left: 0px;
-}
-
-/* Font Family Drop Down */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-fontname {
-    width: 135px;
-}
-
-/* Header Drop Down */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-heading {
-    width: 92px;
-}
-
-/* Handle the hover state of the buttons */
-.yui-skin-sam .yui-toolbar-container .yui-button-hover {
-    background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1300px;
-    border-color: #808080;
-}
-
-/* Handle the selected state of the buttons */
-.yui-skin-sam .yui-toolbar-container .yui-button-selected {
-    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1700px;
-    border-color: #808080;
-}
-/* When the nogrouplabels class is applied, set the h3's to display none */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels h3 {
-    display: none;
-}
-/* When not showing the h3 group labels, add some margin to make up for them*/
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels .yui-toolbar-group {
-	margin-top: .75em;
-}
-
-
-/* Handle the icon placeholder for the buttons
-    This is very important - position of this must be absolute.
-    If it is not positioned absolute, IE will place it over the a in the Toolbar
-    Doing this will cause the editor to loose focus and loose the selection.
-*/
-.yui-skin-sam .yui-toolbar-container .yui-push-button span.yui-toolbar-icon,
-.yui-skin-sam .yui-toolbar-container .yui-color-button span.yui-toolbar-icon,
-.yui-skin-sam .yui-toolbar-container .yui-menu-button span.yui-toolbar-icon {
-    display: block;
-    position: absolute;
-    top: 2px;
-    height: 18px;
-    width: 18px;
-    overflow: hidden;
-    background: url(editor-sprite.gif) no-repeat 30px 30px;
-}
-
-/* Swap out the image to an active image */
-.yui-skin-sam .yui-toolbar-container .yui-button-selected span.yui-toolbar-icon, .yui-skin-sam .yui-toolbar-container .yui-button-hover span.yui-toolbar-icon {
-    background-image: url(editor-sprite-active.gif);
-}
-/* Change the defaults to make them look more like the editor */
-.yui-skin-sam .yui-toolbar-container .visible .yuimenuitemlabel {
-    cursor: pointer;
-    color: #000;
-    *position: relative;
-}
-
-/* Set the background color of all menu containers */
-.yui-skin-sam .yui-toolbar-container .yui-button-menu {
-    background-color: #fff;
-}
-/* Adding this style to Menu's allows the scrolled menu to work in IE */
-.yui-skin-sam .yui-toolbar-container .yui-button-menu .yui-menu-body-scrolled {
-    position: relative;
-}
-/* Set the background of all menu items that are selected */
-.yui-skin-sam div.yuimenu li.selected {
-    background-color: #B3D4FF;
-}
-/* Set the color of the hrefs in a selected menu item */
-.yui-skin-sam div.yuimenu li.selected a.selected {
-    color: #000;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-bold span.yui-toolbar-icon {
-    background-position: 0 0;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-strikethrough span.yui-toolbar-icon {
-    background-position: 0 -108px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-italic span.yui-toolbar-icon {
-    background-position: 0 -36px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-undo span.yui-toolbar-icon {
-    background-position: 0 -1326px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-redo span.yui-toolbar-icon {
-    background-position: 0 -1355px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-underline span.yui-toolbar-icon {
-    background-position: 0 -72px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-subscript span.yui-toolbar-icon {
-    background-position: 0 -180px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-superscript span.yui-toolbar-icon {
-    background-position: 0 -144px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-forecolor span.yui-toolbar-icon {
-    background-position: 0 -216px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-backcolor span.yui-toolbar-icon {
-    background-position: 0 -288px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyleft span.yui-toolbar-icon {
-    background-position: 0 -324px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifycenter span.yui-toolbar-icon {
-    background-position: 0 -360px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyright span.yui-toolbar-icon {
-    background-position: 0 -396px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyfull span.yui-toolbar-icon {
-    background-position: 0 -432px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-indent span.yui-toolbar-icon {
-    background-position: 0 -720px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-outdent span.yui-toolbar-icon {
-    background-position: 0 -684px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-createlink span.yui-toolbar-icon {
-    background-position: 0 -792px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertimage span.yui-toolbar-icon {
-    background-position: 1px -756px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-left span.yui-toolbar-icon {
-    background-position: 0 -972px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-right span.yui-toolbar-icon {
-    background-position: 0 -936px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-inline span.yui-toolbar-icon {
-    background-position: 0 -900px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-block span.yui-toolbar-icon {
-    background-position: 0 -864px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-bordercolor span.yui-toolbar-icon {
-    background-position: 0 -252px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-removeformat span.yui-toolbar-icon {
-    background-position: 0 -1080px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-hiddenelements span.yui-toolbar-icon {
-    background-position: 0 -1044px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertunorderedlist span.yui-toolbar-icon {
-    background-position: 0 -468px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertorderedlist span.yui-toolbar-icon {
-    background-position: 0 -504px;
-    left: 5px;
-}
-/* Set the width of the spin buttons */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton,
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child {
-    width: 35px;
-}
-/* Pad the first child */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child a {
-    padding-left: 2px;
-    text-align: left;    
-}
-
-/* Spin Buttons - Remove the icon holder, they don't need it */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton span.yui-toolbar-icon {
-    display: none;
-}
-
-/* Spin Buttons - Prep the arrows */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up,
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down {
-    right: 2px;
-    background: url(editor-sprite.gif) no-repeat 0 -1222px;
-    overflow: hidden;
-    height: 6px;
-    width: 7px;
-    min-height: 0;
-    padding: 0;
-}
-/* Spin Buttons - The up arrow */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up {
-    top: 2px;
-    background-position: 0 -1222px;
-}
-/* Spin Buttons - The down arrow */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down {
-    bottom: 2px;
-    background-position: 0 -1187px;
-}
-/* Handle plain Select Elements */
-.yui-skin-sam .yui-toolbar-container select {
-    height: 22px;
-    border: 1px solid #808080;
-}
-/* Pad and align the Select Menus */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-select .first-child a {
-    padding-left: 5px;
-    text-align: left;    
-}
-/* Set the icon of the select menu for the drop down arrow */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-select span.yui-toolbar-icon {
-    background: url( editor-sprite.gif ) no-repeat 0 -1144px;
-    overflow: hidden;
-    right: -2px;
-    top: 0px;
-    height: 20px;
-}
-/* Fix the color menu background if it's inside a Property Editor */
-.yui-skin-sam .yui-editor-panel .yui-color-button-menu .bd {
-    background-color: transparent;
-    border: none;
-    width: 135px;
-}
-
-/* Place a border around the color menu */
-.yui-skin-sam .yui-color-button-menu .yui-toolbar-colors {
-    border: 1px solid #808080;
-}
-
-
-/* Property Editor Panel styles */
-.yui-skin-sam .yui-editor-panel {
-    padding: 0;
-    margin: 0;
-    border: none;
-    background-color: transparent;
-    overflow: visible;
-    position: absolute;
-}
-
-/* Margins on the header of the Property Editor */
-.yui-skin-sam .yui-editor-panel .hd {
-    margin: 10px 0 0;
-    padding: 0;
-    border: none;
-}
-/* Setup the background image on the title bar
-    We are styling the h3 instead if the div so we can make room
-    for the "knob" that floats on the top of the window.
-*/
-.yui-skin-sam .yui-editor-panel .hd h3 {
-    color: #000;
-    border: 1px solid #808080;
-    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -200px;
-    width: 99%;
-    position: relative;
-    margin: 0;
-    padding: 3px 0 0 0;
-    font-size: 93%;
-    text-indent: 5px;
-    height: 20px;
-}
-/* Style the body of the Property Editor */
-.yui-skin-sam .yui-editor-panel .bd {
-    background-color: #F2F2F2;
-    border-left: 1px solid #808080;
-    border-right: 1px solid #808080;
-    width: 99%;
-    margin: 0;
-    padding: 0;
-    overflow: visible;
-}
-/* Remove the padding/margin on lists in the Property Editor */
-.yui-skin-sam .yui-editor-panel ul {
-    list-style-type: none;
-    margin: 0;
-    padding: 0;
-}
-
-/* Remove the padding/margin on list items in the Property Editor */
-.yui-skin-sam .yui-editor-panel ul li {
-    margin: 0;
-    padding: 0;
-}
-/* IE is havig trouble with our menu sizes here */
-.yui-skin-sam .yui-editor-panel .yuimenu {
-    /**width: 90px !important;*/
-}
-/* Remove the border from the toolbar's container and add some margin to it */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-container .yui-toolbar-subcont {
-    padding: 0;
-    border: none;
-    margin-top: 0.35em;
-}
-/* Set the width of the bordersize and bordertype menu buttons */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-bordersize, .yui-skin-sam .yui-editor-panel .yui-toolbar-bordertype {
-    width: 50px;
-}
-
-/* Form styling */
-.yui-skin-sam .yui-editor-panel label {
-    display: block;
-    float: none;
-    padding: 4px 0;
-    margin-bottom: 7px;
-}
-/* Form styling */
-.yui-skin-sam .yui-editor-panel label strong {
-    font-weight: normal;
-    font-size: 93%;
-    text-align: right;
-    padding-top: 2px;
-}
-
-/* Form styling */
-.yui-skin-sam .yui-editor-panel label input {
-    width: 75%;
-}
-/* Form styling */
-.yui-skin-sam .yui-editor-panel .createlink_target,
-.yui-skin-sam .yui-editor-panel .insertimage_target {
-    width: auto;
-    margin-right: 5px;
-}
-
-/* Form styling */
-.yui-skin-sam .yui-editor-panel .removeLink {
-    width: 98%;
-}
-/* Color the input yellow if it has the warning class applied */
-.yui-skin-sam .yui-editor-panel label input.warning {
-    background-color: #FFEE69;
-}
-
-/* Style the titles of the toolbar groups */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-group h3 {
-    color: #000;
-    float: left;
-    font-weight: normal;
-    font-size: 93%;
-    margin: 5px 0 0 0;
-    padding: 0 3px 0 0;
-    text-align: right;
-}
-/* Style the header for the Height and Width boxes */
-.yui-skin-sam .yui-editor-panel .height-width h3 {
-    margin: 3px 0 0 10px;
-}
-/* Style the height and width container */
-.yui-skin-sam .yui-editor-panel .height-width {
-    margin: 3px 0 0 35px;
-    *margin-left: 14px;
-    width: 42%;
-    *width: 44%;
-}
-/* Give the border group a width */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-group-border {
-    width: 190px;
-}
-.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-border {
-    width: 210px;
-}
-/* Give the padding group a width */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding {
-    width: 203px;
-    _width: 198px;
-}
-.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-padding {
-    width: 172px;
-}
-/* Fix some margins for the H3's */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding h3 {
-    margin-left: 25px;
-    *margin-left: 12px;
-}
-/* Image Properties - Text flow container size */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-group-textflow {
-    width: 182px;
-}
-
-/* Remove the background image set in Panel.css */
-.yui-skin-sam .yui-editor-panel .hd {
-    background: none;
-}
-
-/* Give the footer som color and a border */
-.yui-skin-sam .yui-editor-panel .ft {
-    background-color: #F2F2F2;
-    border: 1px solid #808080;
-    border-top: none;
-    padding: 0;
-    margin: 0 0 2px 0;
-}
-
-/* Style the close button in the Property Editor */
-.yui-skin-sam .yui-editor-panel .hd span.close {
-    background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -300px;
-    cursor:pointer;
-    display:block;
-    height:16px;
-    overflow:hidden;
-    position:absolute;
-    right:5px;
-    text-indent:500px;
-    top:2px;
-    width:26px;
-}
-/* Style the tip in the footer */
-.yui-skin-sam .yui-editor-panel .ft span.tip {
-    background-color: #EDF5FF;
-    border-top: 1px solid #808080;
-    font-size: 85%;
-}
-/* Style the tip in the footer */
-.yui-skin-sam .yui-editor-panel .ft span.tip strong {
-    display: block;
-    float: left;
-    margin: 0 2px 8px 0;
-}
-
-
-/* Setup the icon for a tip */
-.yui-skin-sam .yui-editor-panel .ft span.tip span.icon {
-    background: url( editor-sprite.gif ) no-repeat 0 -1260px;
-    display: block;
-    height: 20px;
-    left: 2px;
-    position: absolute;
-    top: 8px;
-    width: 20px;
-}
-/* Setup the background image for an info icon */
-.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-info {
-    background-position: 2px -1260px;
-}
-/* Setup the background image for a warning icon */
-.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-warn {
-    background-position: 2px -1296px;
-}
-
-/* Handle the knob that floats on top of the panel */
-.yui-skin-sam .yui-editor-panel .hd span.knob {
-    position: absolute;
-    height: 10px;
-    width: 28px;
-    top: -10px;
-    left: 25px;
-    text-indent: 9999px;
-    overflow: hidden;
-    background: url( editor-knob.gif ) no-repeat 0 0;
-}
-/* Reset some styles from the editor toolbar, when a toolbar is inside the Property Editor */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-container {
-    float: left;
-    width: 100%;
-    background-image: none;
-    border: none;
-}
-/* Reset styles for menu buttons inside the Property Editor */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-container .bd {
-    background-color: #ffffff;
-}
-
-/* This image is the one used to place the blankimage placeholder into the editor when you click on Insert an Image */
-.yui-editor-blankimage {
-    background-image: url( blankimage.png );
-}
-
-.yui-skin-sam .yui-editor-container .yui-resize-handle-br {
-    /* Make the handle a little bigger than the default */
-    height: 11px;
-    width: 11px;
-    /* Resposition the image */
-    background-position: -20px -60px;
-    /* Kill the hover on the handle */
-    background-color: transparent;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor-sprite-active.gif b/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor-sprite-active.gif
deleted file mode 100644
index 3e9d420..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor-sprite-active.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor-sprite.gif b/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor-sprite.gif
deleted file mode 100644
index 02042fa..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor-sprite.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor.css b/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor.css
deleted file mode 100644
index 5e2b038..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/editor.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-busy{cursor:wait !important;}.yui-toolbar-container fieldset{padding:0;margin:0;border:0;}.yui-toolbar-container legend{display:none;}.yui-toolbar-container .yui-toolbar-subcont{padding:.25em 0;zoom:1;}.yui-toolbar-container-collapsed .yui-toolbar-subcont{display:none;}.yui-toolbar-container .yui-toolbar-subcont:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-container span.yui-toolbar-draghandle{cursor:move;border-left:1px solid #999;border-right:1px solid #999;overflow:hidden;text-indent:77777px;width:2px;height:20px;display:block;clear:none;float:left;margin:0 0 0 .2em;}.yui-toolbar-container .yui-toolbar-titlebar.draggable{cursor:move;}.yui-toolbar-container .yui-toolbar-titlebar{position:relative;}.yui-toolbar-container .yui-toolbar-titlebar h2{font-weight:bold;letter-spacing:0;border:none;color:#000;margin:0;padding:.2em;}.yui-toolbar-container .yui-toolbar-titlebar h2 a{text-decoration:none;color:#000;cursor:default;}.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-draghandle{height:40px;}.yui-toolbar-container .yui-toolbar-group{float:left;margin-right:.5em;zoom:1;}.yui-toolbar-container .yui-toolbar-group:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-container .yui-toolbar-group h3{font-size:75%;padding:0 0 0 .25em;margin:0;}.yui-toolbar-container span.yui-toolbar-separator{width:2px;padding:0;height:18px;margin:.2em 0 .2em .1em;display:none;float:left;}.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-separator{height:45px;*height:50px;}.yui-toolbar-container.yui-toolbar-grouped .yui-toolbar-group span.yui-toolbar-separator{height:18px;display:block;}.yui-toolbar-container ul li{margin:0;padding:0;list-style-type:none;}.yui-toolbar-container .yui-toolbar-nogrouplabels h3{display:none;}.yui-toolbar-container .yui-push-button,.yui-toolbar-container .yui-color-button,.yui-toolbar-container .yui-menu-button{position:relative;cursor:pointer;}.yui-toolbar-container .yui-button .first-child,.yui-toolbar-container .yui-button .first-child a{height:100%;width:100%;overflow:hidden;font-size:0px;}.yui-toolbar-container .yui-button-disabled{cursor:default;}.yui-toolbar-container .yui-button-disabled .yui-toolbar-icon{opacity:.5;filter:alpha(opacity=50);}.yui-toolbar-container .yui-button-disabled .up,.yui-toolbar-container .yui-button-disabled .down{opacity:.5;filter:alpha(opacity=50);}.yui-toolbar-container .yui-button a{overflow:hidden;}.yui-toolbar-container .yui-toolbar-select .first-child a{cursor:pointer;}.yui-toolbar-fontname-arial{font-family:Arial;}.yui-toolbar-fontname-arial-black{font-family:Arial Black;}.yui-toolbar-fontname-comic-sans-ms{font-family:Comic Sans MS;}.yui-toolbar-fontname-courier-new{font-family:Courier New;}.yui-toolbar-fontname-times-new-roman{font-family:Times New Roman;}.yui-toolbar-fontname-verdana{font-family:Verdana;}.yui-toolbar-fontname-impact{font-family:Impact;}.yui-toolbar-fontname-lucida-console{font-family:Lucida Console;}.yui-toolbar-fontname-tahoma{font-family:Tahoma;}.yui-toolbar-fontname-trebuchet-ms{font-family:Trebuchet MS;}.yui-toolbar-container .yui-toolbar-spinbutton{position:relative;}.yui-toolbar-container .yui-toolbar-spinbutton .first-child a{z-index:0;opacity:1;}.yui-toolbar-container .yui-toolbar-spinbutton a.up,.yui-toolbar-container .yui-toolbar-spinbutton a.down{position:absolute;display:block right:0;cursor:pointer;z-index:1;padding:0;margin:0;}.yui-toolbar-container .yui-overlay{position:absolute;}.yui-toolbar-container .yui-overlay ul li{margin:0;list-style-type:none;}.yui-toolbar-container{z-index:1;}.yui-editor-container .yui-editor-editable-container{position:relative;z-index:0;width:100%;}.yui-editor-container .yui-editor-masked{background-color:#CCC;}.yui-editor-container iframe{border:0px;padding:0;margin:0;zoom:1;display:block;}.yui-editor-container .yui-editor-editable{padding:0;margin:0;}.yui-editor-container .dompath{font-size:85%;}.yui-editor-panel .hd{text-align:left;position:relative;}.yui-editor-panel .hd h3{font-weight:bold;padding:0.25em 0pt 0.25em 0.25em;margin:0;}.yui-editor-panel .bd{width:100%;zoom:1;position:relative;}.yui-editor-panel .bd div.yui-editor-body-cont{padding:.25em .1em;zoom:1;}.yui-editor-panel .bd .gecko form{overflow:auto;}.yui-editor-panel .bd div.yui-editor-body-cont:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-editor-panel .ft{text-align:right;width:99%;float:left;clear:both;}.yui-editor-panel .ft span.tip{display:block;position:relative;padding:.5em .5em .5em 23px;text-align:left;zoom:1;}.yui-editor-panel label{clear:both;float:left;padding:0;width:100%;text-align:left;zoom:1;}.yui-editor-panel .gecko label{overflow:auto;}.yui-editor-panel label strong{float:left;width:6em;}.yui-editor-panel .removeLink{width:80%;text-align:right;}.yui-editor-panel label input{margin-left:.25em;float:left;}.yui-editor-panel .yui-toolbar-group{margin-bottom:0.75em;}.yui-editor-panel .yui-toolbar-group-padding{}.yui-editor-panel .yui-toolbar-group-border{}.yui-editor-panel .yui-toolbar-group-textflow{}.yui-editor-panel .height-width{float:left;}.yui-editor-panel .height-width h3{}.yui-editor-panel .height-width span{font-style:italic;display:block;float:left;overflow:visible;}.yui-editor-panel .height-width span.info{font-size:70%;margin-top:3px;}.yui-editor-panel .yui-toolbar-bordersize,.yui-editor-panel .yui-toolbar-bordertype{font-size:75%;}.yui-editor-panel .yui-toolbar-container span.yui-toolbar-separator{border:none;}.yui-editor-panel .yui-toolbar-bordersize span a span,.yui-editor-panel .yui-toolbar-bordertype span a span{display:block;height:8px;left:4px;position:absolute;top:3px;_top:-5px;width:24px;text-indent:52px;font-size:0%;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-solid{border-bottom:1px solid black;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dotted{border-bottom:1px dotted black;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dashed{border-bottom:1px dashed black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-0{*top:0px;text-indent:0px;font-size:75%;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-1{border-bottom:1px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-2{border-bottom:2px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-3{top:2px;*top:-5px;border-bottom:3px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-4{top:1px;*top:-5px;border-bottom:4px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-5{top:1px;*top:-5px;border-bottom:5px solid black;}.yui-toolbar-container .yui-toolbar-bordersize-menu,.yui-toolbar-container .yui-toolbar-bordertype-menu{width:95px !important;}.yui-toolbar-bordersize-menu .yuimenuitemlabel,.yui-toolbar-bordertype-menu .yuimenuitemlabel,.yui-toolbar-bordersize-menu .yuimenuitemlabel,.yui-toolbar-bordertype-menu .yuimenuitemlabel:hover{margin:0px 3px 7px 17px;}.yui-toolbar-bordersize-menu .yuimenuitemlabel .checkedindicator,.yui-toolbar-bordertype-menu .yuimenuitemlabel .checkedindicator{position:absolute;left:-12px;*top:14px;*left:0px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-1 a{border-bottom:1px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-2 a{border-bottom:2px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-3 a{border-bottom:3px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-4 a{border-bottom:4px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-5 a{border-bottom:5px solid black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-solid a{border-bottom:1px solid black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dashed a{border-bottom:1px dashed black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dotted a{border-bottom:1px dotted black;height:14px;}h2.yui-editor-skipheader,h3.yui-editor-skipheader{height:0;margin:0;padding:0;border:none;width:0;overflow:hidden;position:absolute;}.yui-toolbar-colors{width:133px;zoom:1;display:none;z-index:100;overflow:hidden;}.yui-toolbar-colors:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-colors a{height:9px;width:9px;float:left;display:block;overflow:hidden;text-indent:999px;margin:0;cursor:pointer;border:1px solid #F6F7EE;}.yui-toolbar-colors a:hover{border:1px solid black;}.yui-color-button-menu{overflow:visible;background-color:transparent;}.yui-toolbar-colors span{position:relative;display:block;padding:3px;overflow:hidden;float:left;width:100%;zoom:1;}.yui-toolbar-colors span:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-colors span em{height:35px;width:30px;float:left;display:block;overflow:hidden;text-indent:999px;margin:0.75px;border:1px solid black;}.yui-toolbar-colors span strong{font-weight:normal;padding-left:3px;display:block;font-size:85%;float:left;width:65%;}.yui-toolbar-group-undoredo h3,.yui-toolbar-group-insertitem h3,.yui-toolbar-group-indentlist h3{width:68px;}.yui-toolbar-group-indentlist2 h3{width:122px;}.yui-toolbar-group-alignment h3{width:130px;}.yui-skin-sam .yui-editor-container{border:1px solid #808080;}.yui-skin-sam .yui-toolbar-container{zoom:1;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -200px;position:relative;}.yui-skin-sam .yui-editor-container .draggable .yui-toolbar-titlebar{cursor:move;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar h2{color:#000000;font-weight:bold;margin:0;padding:0.3em 1em;font-size:100%;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-group h3{color:#808080;font-size:75%;margin:1em 0 0;padding-bottom:0;padding-left:0.25em;text-align:left;}.yui-toolbar-container span.yui-toolbar-separator{border:none;text-indent:33px;overflow:hidden;margin:0 .25em;}.yui-skin-sam .yui-toolbar-container{background-color:#F2F2F2;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-subcont{padding:0 1em 0.35em;border-bottom:1px solid #808080;}.yui-skin-sam .yui-toolbar-container-collapsed .yui-toolbar-titlebar{border-bottom:1px solid #808080;}.yui-skin-sam .yui-editor-container .visible .yui-menu-shadow,.yui-skin-sam .yui-editor-panel .visible .yui-menu-shadow{display:none;}.yui-skin-sam .yui-editor-container ul{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-editor-container ul li{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-toolbar-group ul li.yui-toolbar-groupitem{float:left;}.yui-skin-sam .yui-editor-container .dompath{background-color:#F2F2F2;border-top:1px solid #808080;color:#999;text-align:left;padding:0.25em;}.yui-skin-sam .yui-toolbar-container .collapse{background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -400px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar span.collapse{cursor:pointer;position:absolute;top:4px;right:2px;display:block;overflow:hidden;height:15px;width:15px;text-indent:9999px;}.yui-skin-sam .yui-toolbar-container .yui-push-button,.yui-skin-sam .yui-toolbar-container .yui-color-button,.yui-skin-sam .yui-toolbar-container .yui-menu-button{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;position:relative;display:block;height:22px;width:30px;_font-size:0;margin:0;border-color:#808080;color:#f2f2f2;border-style:solid;border-width:1px 0;zoom:1;}.yui-skin-sam .yui-toolbar-container .yui-push-button a,.yui-skin-sam .yui-toolbar-container .yui-color-button a,.yui-skin-sam .yui-toolbar-container .yui-menu-button a{padding-left:35px;height:20px;text-decoration:none;font-size:0px;line-height:2;display:block;color:#000;overflow:hidden;white-space:nowrap;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a,.yui-skin-sam .yui-toolbar-container .yui-toolbar-select a{font-size:12px;}.yui-skin-sam .yui-toolbar-container .yui-push-button .first-child,.yui-skin-sam .yui-toolbar-container .yui-color-button .first-child,.yui-skin-sam .yui-toolbar-container .yui-menu-button .first-child{border-color:#808080;border-style:solid;border-width:0 1px;margin:0 -1px;display:block;position:relative;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled .first-child,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled .first-child,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled .first-child{border-color:#ccc;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled a,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled a,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled a{color:#A6A6A6;cursor:default;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled{border-color:#ccc;}.yui-skin-sam .yui-toolbar-container .yui-button .first-child{*left:0px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-fontname{width:135px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-heading{width:92px;}.yui-skin-sam .yui-toolbar-container .yui-button-hover{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1300px;border-color:#808080;}.yui-skin-sam .yui-toolbar-container .yui-button-selected{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1700px;border-color:#808080;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels h3{display:none;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels .yui-toolbar-group{margin-top:.75em;}.yui-skin-sam .yui-toolbar-container .yui-push-button span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-color-button span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-menu-button span.yui-toolbar-icon{display:block;position:absolute;top:2px;height:18px;width:18px;overflow:hidden;background:url(editor-sprite.gif) no-repeat 30px 30px;}.yui-skin-sam .yui-toolbar-container .yui-button-selected span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-button-hover span.yui-toolbar-icon{background-image:url(editor-sprite-active.gif);}.yui-skin-sam .yui-toolbar-container .visible .yuimenuitemlabel{cursor:pointer;color:#000;*position:relative;}.yui-skin-sam .yui-toolbar-container .yui-button-menu{background-color:#fff;}.yui-skin-sam .yui-toolbar-container .yui-button-menu .yui-menu-body-scrolled{position:relative;}.yui-skin-sam div.yuimenu li.selected{background-color:#B3D4FF;}.yui-skin-sam div.yuimenu li.selected a.selected{color:#000;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-bold span.yui-toolbar-icon{background-position:0 0;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-strikethrough span.yui-toolbar-icon{background-position:0 -108px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-italic span.yui-toolbar-icon{background-position:0 -36px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-undo span.yui-toolbar-icon{background-position:0 -1326px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-redo span.yui-toolbar-icon{background-position:0 -1355px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-underline span.yui-toolbar-icon{background-position:0 -72px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-subscript span.yui-toolbar-icon{background-position:0 -180px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-superscript span.yui-toolbar-icon{background-position:0 -144px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-forecolor span.yui-toolbar-icon{background-position:0 -216px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-backcolor span.yui-toolbar-icon{background-position:0 -288px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyleft span.yui-toolbar-icon{background-position:0 -324px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifycenter span.yui-toolbar-icon{background-position:0 -360px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyright span.yui-toolbar-icon{background-position:0 -396px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyfull span.yui-toolbar-icon{background-position:0 -432px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-indent span.yui-toolbar-icon{background-position:0 -720px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-outdent span.yui-toolbar-icon{background-position:0 -684px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-createlink span.yui-toolbar-icon{background-position:0 -792px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertimage span.yui-toolbar-icon{background-position:1px -756px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-left span.yui-toolbar-icon{background-position:0 -972px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-right span.yui-toolbar-icon{background-position:0 -936px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-inline span.yui-toolbar-icon{background-position:0 -900px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-block span.yui-toolbar-icon{background-position:0 -864px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-bordercolor span.yui-toolbar-icon{background-position:0 -252px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-removeformat span.yui-toolbar-icon{background-position:0 -1080px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-hiddenelements span.yui-toolbar-icon{background-position:0 -1044px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertunorderedlist span.yui-toolbar-icon{background-position:0 -468px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertorderedlist span.yui-toolbar-icon{background-position:0 -504px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton,.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child{width:35px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child a{padding-left:2px;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton span.yui-toolbar-icon{display:none;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up,.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down{right:2px;background:url(editor-sprite.gif) no-repeat 0 -1222px;overflow:hidden;height:6px;width:7px;min-height:0;padding:0;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up{top:2px;background-position:0 -1222px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down{bottom:2px;background-position:0 -1187px;}.yui-skin-sam .yui-toolbar-container select{height:22px;border:1px solid #808080;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-select .first-child a{padding-left:5px;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-select span.yui-toolbar-icon{background:url( editor-sprite.gif ) no-repeat 0 -1144px;overflow:hidden;right:-2px;top:0px;height:20px;}.yui-skin-sam .yui-editor-panel .yui-color-button-menu .bd{background-color:transparent;border:none;width:135px;}.yui-skin-sam .yui-color-button-menu .yui-toolbar-colors{border:1px solid #808080;}.yui-skin-sam .yui-editor-panel{padding:0;margin:0;border:none;background-color:transparent;overflow:visible;position:absolute;}.yui-skin-sam .yui-editor-panel .hd{margin:10px 0 0;padding:0;border:none;}.yui-skin-sam .yui-editor-panel .hd h3{color:#000;border:1px solid #808080;background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -200px;width:99%;position:relative;margin:0;padding:3px 0 0 0;font-size:93%;text-indent:5px;height:20px;}.yui-skin-sam .yui-editor-panel .bd{background-color:#F2F2F2;border-left:1px solid #808080;border-right:1px solid #808080;width:99%;margin:0;padding:0;overflow:visible;}.yui-skin-sam .yui-editor-panel ul{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-editor-panel ul li{margin:0;padding:0;}.yui-skin-sam .yui-editor-panel .yuimenu{}.yui-skin-sam .yui-editor-panel .yui-toolbar-container .yui-toolbar-subcont{padding:0;border:none;margin-top:0.35em;}.yui-skin-sam .yui-editor-panel .yui-toolbar-bordersize,.yui-skin-sam .yui-editor-panel .yui-toolbar-bordertype{width:50px;}.yui-skin-sam .yui-editor-panel label{display:block;float:none;padding:4px 0;margin-bottom:7px;}.yui-skin-sam .yui-editor-panel label strong{font-weight:normal;font-size:93%;text-align:right;padding-top:2px;}.yui-skin-sam .yui-editor-panel label input{width:75%;}.yui-skin-sam .yui-editor-panel .createlink_target,.yui-skin-sam .yui-editor-panel .insertimage_target{width:auto;margin-right:5px;}.yui-skin-sam .yui-editor-panel .removeLink{width:98%;}.yui-skin-sam .yui-editor-panel label input.warning{background-color:#FFEE69;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group h3{color:#000;float:left;font-weight:normal;font-size:93%;margin:5px 0 0 0;padding:0 3px 0 0;text-align:right;}.yui-skin-sam .yui-editor-panel .height-width h3{margin:3px 0 0 10px;}.yui-skin-sam .yui-editor-panel .height-width{margin:3px 0 0 35px;*margin-left:14px;width:42%;*width:44%;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-border{width:190px;}.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-border{width:210px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding{width:203px;_width:198px;}.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-padding{width:172px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding h3{margin-left:25px;*margin-left:12px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-textflow{width:182px;}.yui-skin-sam .yui-editor-panel .hd{background:none;}.yui-skin-sam .yui-editor-panel .ft{background-color:#F2F2F2;border:1px solid #808080;border-top:none;padding:0;margin:0 0 2px 0;}.yui-skin-sam .yui-editor-panel .hd span.close{background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -300px;cursor:pointer;display:block;height:16px;overflow:hidden;position:absolute;right:5px;text-indent:500px;top:2px;width:26px;}.yui-skin-sam .yui-editor-panel .ft span.tip{background-color:#EDF5FF;border-top:1px solid #808080;font-size:85%;}.yui-skin-sam .yui-editor-panel .ft span.tip strong{display:block;float:left;margin:0 2px 8px 0;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon{background:url( editor-sprite.gif ) no-repeat 0 -1260px;display:block;height:20px;left:2px;position:absolute;top:8px;width:20px;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-info{background-position:2px -1260px;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-warn{background-position:2px -1296px;}.yui-skin-sam .yui-editor-panel .hd span.knob{position:absolute;height:10px;width:28px;top:-10px;left:25px;text-indent:9999px;overflow:hidden;background:url( editor-knob.gif ) no-repeat 0 0;}.yui-skin-sam .yui-editor-panel .yui-toolbar-container{float:left;width:100%;background-image:none;border:none;}.yui-skin-sam .yui-editor-panel .yui-toolbar-container .bd{background-color:#ffffff;}.yui-editor-blankimage{background-image:url( blankimage.png );}.yui-skin-sam .yui-editor-container .yui-resize-handle-br{height:11px;width:11px;background-position:-20px -60px;background-color:transparent;}
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/simpleeditor-skin.css b/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/simpleeditor-skin.css
deleted file mode 100644
index c3d4122..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/simpleeditor-skin.css
+++ /dev/null
@@ -1,707 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* Place the border around the editor */
-.yui-skin-sam .yui-editor-container {
-    border: 1px solid #808080;
-}
-/* Color the border of the container */
-.yui-skin-sam .yui-toolbar-container {
-    zoom: 1;
-}
-/* Load the background image on the Toolbars titlebar */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar {
-    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -200px;
-    position: relative;
-}
-.yui-skin-sam .yui-editor-container .draggable .yui-toolbar-titlebar {
-    cursor: move;
-}
-
-/* Give the titlebar some color and padding */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar h2 {
-    color: #000000;
-    font-weight: bold;
-    margin: 0;
-    padding: 0.3em 1em;
-    font-size: 100%;
-    text-align: left;
-}
-
-/* Give the toolbars groups titles some color and padding */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-group h3 {
-    color: #808080;
-    font-size: 75%;
-    margin: 1em 0 0;
-    padding-bottom: 0;
-    padding-left: 0.25em;
-    text-align: left;
-}
-
-/* Hide all of the sepatators borders */
-.yui-toolbar-container span.yui-toolbar-separator {
-    border: none;
-    text-indent: 33px;
-    overflow: hidden;
-    margin: 0 .25em;
-}
-
-/* Background color of the toolbar */
-.yui-skin-sam .yui-toolbar-container {
-    background-color: #F2F2F2;
-}
-
-/* Add some padding to the toolbars sub container */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-subcont {
-    padding: 0 1em 0.35em;
-    border-bottom:1px solid #808080;
-}
-/* When the collapsed class is added, add a border to the bottom of the titlebar (since the toolbar itself is display none) */
-.yui-skin-sam .yui-toolbar-container-collapsed .yui-toolbar-titlebar {
-    border-bottom:1px solid #808080;
-}
-
-/* Remove the shadows from the menus in the toolbar - Menu.css override */
-.yui-skin-sam .yui-editor-container .visible .yui-menu-shadow,
-.yui-skin-sam .yui-editor-panel .visible .yui-menu-shadow {
-    display: none;
-}
-
-/* Remove padding/margin from lists */
-.yui-skin-sam .yui-editor-container ul {
-    list-style-type: none;
-    margin: 0;
-    padding: 0;
-}
-/* Remove padding/margin from list items */
-.yui-skin-sam .yui-editor-container ul li {
-    list-style-type: none;
-    margin: 0;
-    padding: 0;
-}
-/* Float the LI's that wrap the buttons */
-.yui-skin-sam .yui-toolbar-group ul li.yui-toolbar-groupitem {
-    float: left;
-}
-
-/* Set the color and the border of the dompath container at the bottom of the editor */
-.yui-skin-sam .yui-editor-container .dompath {
-    background-color: #F2F2F2;
-    border-top:1px solid #808080;
-    color: #999;
-    text-align: left;
-    padding: 0.25em;
-}
-
-/* Set the image for the collapse button on the toolbar */
-.yui-skin-sam .yui-toolbar-container .collapse {
-    background: url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -400px;
-}
-/* Position the image and the container */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar span.collapse {
-    cursor: pointer;
-    position: absolute;
-    top: 4px;
-    right: 2px;
-    display: block;
-    overflow: hidden;
-    height: 15px;
-    width: 15px;
-    text-indent: 9999px;
-}
-
-/* Set the default styles for the buttons */
-.yui-skin-sam .yui-toolbar-container .yui-push-button,
-.yui-skin-sam .yui-toolbar-container .yui-color-button,
-.yui-skin-sam .yui-toolbar-container .yui-menu-button {
-    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
-    position: relative;
-    display: block;
-    height: 22px;
-    width: 30px;
-    _font-size: 0;
-    margin: 0;
-    border-color: #808080;
-    color: #f2f2f2;
-    border-style: solid;
-    border-width: 1px 0;
-    zoom: 1;
-}
-/* Set the height of the buttons and pad them on the left for the icon */
-.yui-skin-sam .yui-toolbar-container .yui-push-button a,
-.yui-skin-sam .yui-toolbar-container .yui-color-button a,
-.yui-skin-sam .yui-toolbar-container .yui-menu-button a {
-    padding-left: 35px;
-    height: 20px;
-    text-decoration: none;
-    font-size: 0px;
-    line-height: 2;
-    display: block;
-    color: #000;
-    overflow: hidden;
-    white-space: nowrap;
-}
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a,
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-select a {
-    font-size: 12px;
-}
-/* Set the height of the buttons and pad them on the left for the icon */
-.yui-skin-sam .yui-toolbar-container .yui-push-button .first-child,
-.yui-skin-sam .yui-toolbar-container .yui-color-button .first-child,
-.yui-skin-sam .yui-toolbar-container .yui-menu-button .first-child {
-    border-color: #808080;
-    border-style: solid;
-    border-width: 0 1px;
-    margin: 0 -1px;
-    display: block;
-    position: relative;
-}
-.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled .first-child,
-.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled .first-child,
-.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled .first-child {
-    border-color: #ccc;
-}
-.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled a,
-.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled a,
-.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled a {
-    color: #A6A6A6;
-    cursor: default;
-}
-.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled,
-.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled,
-.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled {
-    border-color: #ccc;
-}
-/* IE needs a little help positioning the first child */
-.yui-skin-sam .yui-toolbar-container .yui-button .first-child {
-    *left: 0px;
-}
-
-/* Font Family Drop Down */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-fontname {
-    width: 135px;
-}
-
-/* Header Drop Down */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-heading {
-    width: 92px;
-}
-
-/* Handle the hover state of the buttons */
-.yui-skin-sam .yui-toolbar-container .yui-button-hover {
-    background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1300px;
-    border-color: #808080;
-}
-
-/* Handle the selected state of the buttons */
-.yui-skin-sam .yui-toolbar-container .yui-button-selected {
-    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1700px;
-    border-color: #808080;
-}
-/* When the nogrouplabels class is applied, set the h3's to display none */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels h3 {
-    display: none;
-}
-/* When not showing the h3 group labels, add some margin to make up for them*/
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels .yui-toolbar-group {
-	margin-top: .75em;
-}
-
-
-/* Handle the icon placeholder for the buttons
-    This is very important - position of this must be absolute.
-    If it is not positioned absolute, IE will place it over the a in the Toolbar
-    Doing this will cause the editor to loose focus and loose the selection.
-*/
-.yui-skin-sam .yui-toolbar-container .yui-push-button span.yui-toolbar-icon,
-.yui-skin-sam .yui-toolbar-container .yui-color-button span.yui-toolbar-icon,
-.yui-skin-sam .yui-toolbar-container .yui-menu-button span.yui-toolbar-icon {
-    display: block;
-    position: absolute;
-    top: 2px;
-    height: 18px;
-    width: 18px;
-    overflow: hidden;
-    background: url(editor-sprite.gif) no-repeat 30px 30px;
-}
-
-/* Swap out the image to an active image */
-.yui-skin-sam .yui-toolbar-container .yui-button-selected span.yui-toolbar-icon, .yui-skin-sam .yui-toolbar-container .yui-button-hover span.yui-toolbar-icon {
-    background-image: url(editor-sprite-active.gif);
-}
-/* Change the defaults to make them look more like the editor */
-.yui-skin-sam .yui-toolbar-container .visible .yuimenuitemlabel {
-    cursor: pointer;
-    color: #000;
-    *position: relative;
-}
-
-/* Set the background color of all menu containers */
-.yui-skin-sam .yui-toolbar-container .yui-button-menu {
-    background-color: #fff;
-}
-/* Adding this style to Menu's allows the scrolled menu to work in IE */
-.yui-skin-sam .yui-toolbar-container .yui-button-menu .yui-menu-body-scrolled {
-    position: relative;
-}
-/* Set the background of all menu items that are selected */
-.yui-skin-sam div.yuimenu li.selected {
-    background-color: #B3D4FF;
-}
-/* Set the color of the hrefs in a selected menu item */
-.yui-skin-sam div.yuimenu li.selected a.selected {
-    color: #000;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-bold span.yui-toolbar-icon {
-    background-position: 0 0;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-strikethrough span.yui-toolbar-icon {
-    background-position: 0 -108px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-italic span.yui-toolbar-icon {
-    background-position: 0 -36px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-undo span.yui-toolbar-icon {
-    background-position: 0 -1326px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-redo span.yui-toolbar-icon {
-    background-position: 0 -1355px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-underline span.yui-toolbar-icon {
-    background-position: 0 -72px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-subscript span.yui-toolbar-icon {
-    background-position: 0 -180px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-superscript span.yui-toolbar-icon {
-    background-position: 0 -144px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-forecolor span.yui-toolbar-icon {
-    background-position: 0 -216px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-backcolor span.yui-toolbar-icon {
-    background-position: 0 -288px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyleft span.yui-toolbar-icon {
-    background-position: 0 -324px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifycenter span.yui-toolbar-icon {
-    background-position: 0 -360px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyright span.yui-toolbar-icon {
-    background-position: 0 -396px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyfull span.yui-toolbar-icon {
-    background-position: 0 -432px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-indent span.yui-toolbar-icon {
-    background-position: 0 -720px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-outdent span.yui-toolbar-icon {
-    background-position: 0 -684px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-createlink span.yui-toolbar-icon {
-    background-position: 0 -792px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertimage span.yui-toolbar-icon {
-    background-position: 1px -756px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-left span.yui-toolbar-icon {
-    background-position: 0 -972px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-right span.yui-toolbar-icon {
-    background-position: 0 -936px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-inline span.yui-toolbar-icon {
-    background-position: 0 -900px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-block span.yui-toolbar-icon {
-    background-position: 0 -864px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-bordercolor span.yui-toolbar-icon {
-    background-position: 0 -252px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-removeformat span.yui-toolbar-icon {
-    background-position: 0 -1080px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-hiddenelements span.yui-toolbar-icon {
-    background-position: 0 -1044px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertunorderedlist span.yui-toolbar-icon {
-    background-position: 0 -468px;
-    left: 5px;
-}
-/* Setting the background position of the sprite */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertorderedlist span.yui-toolbar-icon {
-    background-position: 0 -504px;
-    left: 5px;
-}
-/* Set the width of the spin buttons */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton,
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child {
-    width: 35px;
-}
-/* Pad the first child */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child a {
-    padding-left: 2px;
-    text-align: left;    
-}
-
-/* Spin Buttons - Remove the icon holder, they don't need it */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton span.yui-toolbar-icon {
-    display: none;
-}
-
-/* Spin Buttons - Prep the arrows */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up,
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down {
-    right: 2px;
-    background: url(editor-sprite.gif) no-repeat 0 -1222px;
-    overflow: hidden;
-    height: 6px;
-    width: 7px;
-    min-height: 0;
-    padding: 0;
-}
-/* Spin Buttons - The up arrow */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up {
-    top: 2px;
-    background-position: 0 -1222px;
-}
-/* Spin Buttons - The down arrow */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down {
-    bottom: 2px;
-    background-position: 0 -1187px;
-}
-/* Handle plain Select Elements */
-.yui-skin-sam .yui-toolbar-container select {
-    height: 22px;
-    border: 1px solid #808080;
-}
-/* Pad and align the Select Menus */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-select .first-child a {
-    padding-left: 5px;
-    text-align: left;    
-}
-/* Set the icon of the select menu for the drop down arrow */
-.yui-skin-sam .yui-toolbar-container .yui-toolbar-select span.yui-toolbar-icon {
-    background: url( editor-sprite.gif ) no-repeat 0 -1144px;
-    overflow: hidden;
-    right: -2px;
-    top: 0px;
-    height: 20px;
-}
-/* Fix the color menu background if it's inside a Property Editor */
-.yui-skin-sam .yui-editor-panel .yui-color-button-menu .bd {
-    background-color: transparent;
-    border: none;
-    width: 135px;
-}
-
-/* Place a border around the color menu */
-.yui-skin-sam .yui-color-button-menu .yui-toolbar-colors {
-    border: 1px solid #808080;
-}
-
-
-/* Property Editor Panel styles */
-.yui-skin-sam .yui-editor-panel {
-    padding: 0;
-    margin: 0;
-    border: none;
-    background-color: transparent;
-    overflow: visible;
-    position: absolute;
-}
-
-/* Margins on the header of the Property Editor */
-.yui-skin-sam .yui-editor-panel .hd {
-    margin: 10px 0 0;
-    padding: 0;
-    border: none;
-}
-/* Setup the background image on the title bar
-    We are styling the h3 instead if the div so we can make room
-    for the "knob" that floats on the top of the window.
-*/
-.yui-skin-sam .yui-editor-panel .hd h3 {
-    color: #000;
-    border: 1px solid #808080;
-    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -200px;
-    width: 99%;
-    position: relative;
-    margin: 0;
-    padding: 3px 0 0 0;
-    font-size: 93%;
-    text-indent: 5px;
-    height: 20px;
-}
-/* Style the body of the Property Editor */
-.yui-skin-sam .yui-editor-panel .bd {
-    background-color: #F2F2F2;
-    border-left: 1px solid #808080;
-    border-right: 1px solid #808080;
-    width: 99%;
-    margin: 0;
-    padding: 0;
-    overflow: visible;
-}
-/* Remove the padding/margin on lists in the Property Editor */
-.yui-skin-sam .yui-editor-panel ul {
-    list-style-type: none;
-    margin: 0;
-    padding: 0;
-}
-
-/* Remove the padding/margin on list items in the Property Editor */
-.yui-skin-sam .yui-editor-panel ul li {
-    margin: 0;
-    padding: 0;
-}
-/* IE is havig trouble with our menu sizes here */
-.yui-skin-sam .yui-editor-panel .yuimenu {
-    /**width: 90px !important;*/
-}
-/* Remove the border from the toolbar's container and add some margin to it */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-container .yui-toolbar-subcont {
-    padding: 0;
-    border: none;
-    margin-top: 0.35em;
-}
-/* Set the width of the bordersize and bordertype menu buttons */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-bordersize, .yui-skin-sam .yui-editor-panel .yui-toolbar-bordertype {
-    width: 50px;
-}
-
-/* Form styling */
-.yui-skin-sam .yui-editor-panel label {
-    display: block;
-    float: none;
-    padding: 4px 0;
-    margin-bottom: 7px;
-}
-/* Form styling */
-.yui-skin-sam .yui-editor-panel label strong {
-    font-weight: normal;
-    font-size: 93%;
-    text-align: right;
-    padding-top: 2px;
-}
-
-/* Form styling */
-.yui-skin-sam .yui-editor-panel label input {
-    width: 75%;
-}
-/* Form styling */
-.yui-skin-sam .yui-editor-panel .createlink_target,
-.yui-skin-sam .yui-editor-panel .insertimage_target {
-    width: auto;
-    margin-right: 5px;
-}
-
-/* Form styling */
-.yui-skin-sam .yui-editor-panel .removeLink {
-    width: 98%;
-}
-/* Color the input yellow if it has the warning class applied */
-.yui-skin-sam .yui-editor-panel label input.warning {
-    background-color: #FFEE69;
-}
-
-/* Style the titles of the toolbar groups */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-group h3 {
-    color: #000;
-    float: left;
-    font-weight: normal;
-    font-size: 93%;
-    margin: 5px 0 0 0;
-    padding: 0 3px 0 0;
-    text-align: right;
-}
-/* Style the header for the Height and Width boxes */
-.yui-skin-sam .yui-editor-panel .height-width h3 {
-    margin: 3px 0 0 10px;
-}
-/* Style the height and width container */
-.yui-skin-sam .yui-editor-panel .height-width {
-    margin: 3px 0 0 35px;
-    *margin-left: 14px;
-    width: 42%;
-    *width: 44%;
-}
-/* Give the border group a width */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-group-border {
-    width: 190px;
-}
-.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-border {
-    width: 210px;
-}
-/* Give the padding group a width */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding {
-    width: 203px;
-    _width: 198px;
-}
-.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-padding {
-    width: 172px;
-}
-/* Fix some margins for the H3's */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding h3 {
-    margin-left: 25px;
-    *margin-left: 12px;
-}
-/* Image Properties - Text flow container size */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-group-textflow {
-    width: 182px;
-}
-
-/* Remove the background image set in Panel.css */
-.yui-skin-sam .yui-editor-panel .hd {
-    background: none;
-}
-
-/* Give the footer som color and a border */
-.yui-skin-sam .yui-editor-panel .ft {
-    background-color: #F2F2F2;
-    border: 1px solid #808080;
-    border-top: none;
-    padding: 0;
-    margin: 0 0 2px 0;
-}
-
-/* Style the close button in the Property Editor */
-.yui-skin-sam .yui-editor-panel .hd span.close {
-    background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -300px;
-    cursor:pointer;
-    display:block;
-    height:16px;
-    overflow:hidden;
-    position:absolute;
-    right:5px;
-    text-indent:500px;
-    top:2px;
-    width:26px;
-}
-/* Style the tip in the footer */
-.yui-skin-sam .yui-editor-panel .ft span.tip {
-    background-color: #EDF5FF;
-    border-top: 1px solid #808080;
-    font-size: 85%;
-}
-/* Style the tip in the footer */
-.yui-skin-sam .yui-editor-panel .ft span.tip strong {
-    display: block;
-    float: left;
-    margin: 0 2px 8px 0;
-}
-
-
-/* Setup the icon for a tip */
-.yui-skin-sam .yui-editor-panel .ft span.tip span.icon {
-    background: url( editor-sprite.gif ) no-repeat 0 -1260px;
-    display: block;
-    height: 20px;
-    left: 2px;
-    position: absolute;
-    top: 8px;
-    width: 20px;
-}
-/* Setup the background image for an info icon */
-.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-info {
-    background-position: 2px -1260px;
-}
-/* Setup the background image for a warning icon */
-.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-warn {
-    background-position: 2px -1296px;
-}
-
-/* Handle the knob that floats on top of the panel */
-.yui-skin-sam .yui-editor-panel .hd span.knob {
-    position: absolute;
-    height: 10px;
-    width: 28px;
-    top: -10px;
-    left: 25px;
-    text-indent: 9999px;
-    overflow: hidden;
-    background: url( editor-knob.gif ) no-repeat 0 0;
-}
-/* Reset some styles from the editor toolbar, when a toolbar is inside the Property Editor */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-container {
-    float: left;
-    width: 100%;
-    background-image: none;
-    border: none;
-}
-/* Reset styles for menu buttons inside the Property Editor */
-.yui-skin-sam .yui-editor-panel .yui-toolbar-container .bd {
-    background-color: #ffffff;
-}
-
-/* This image is the one used to place the blankimage placeholder into the editor when you click on Insert an Image */
-.yui-editor-blankimage {
-    background-image: url( blankimage.png );
-}
-
-.yui-skin-sam .yui-editor-container .yui-resize-handle-br {
-    /* Make the handle a little bigger than the default */
-    height: 11px;
-    width: 11px;
-    /* Resposition the image */
-    background-position: -20px -60px;
-    /* Kill the hover on the handle */
-    background-color: transparent;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/simpleeditor.css b/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/simpleeditor.css
deleted file mode 100644
index 5e2b038..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/assets/skins/sam/simpleeditor.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-busy{cursor:wait !important;}.yui-toolbar-container fieldset{padding:0;margin:0;border:0;}.yui-toolbar-container legend{display:none;}.yui-toolbar-container .yui-toolbar-subcont{padding:.25em 0;zoom:1;}.yui-toolbar-container-collapsed .yui-toolbar-subcont{display:none;}.yui-toolbar-container .yui-toolbar-subcont:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-container span.yui-toolbar-draghandle{cursor:move;border-left:1px solid #999;border-right:1px solid #999;overflow:hidden;text-indent:77777px;width:2px;height:20px;display:block;clear:none;float:left;margin:0 0 0 .2em;}.yui-toolbar-container .yui-toolbar-titlebar.draggable{cursor:move;}.yui-toolbar-container .yui-toolbar-titlebar{position:relative;}.yui-toolbar-container .yui-toolbar-titlebar h2{font-weight:bold;letter-spacing:0;border:none;color:#000;margin:0;padding:.2em;}.yui-toolbar-container .yui-toolbar-titlebar h2 a{text-decoration:none;color:#000;cursor:default;}.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-draghandle{height:40px;}.yui-toolbar-container .yui-toolbar-group{float:left;margin-right:.5em;zoom:1;}.yui-toolbar-container .yui-toolbar-group:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-container .yui-toolbar-group h3{font-size:75%;padding:0 0 0 .25em;margin:0;}.yui-toolbar-container span.yui-toolbar-separator{width:2px;padding:0;height:18px;margin:.2em 0 .2em .1em;display:none;float:left;}.yui-toolbar-container.yui-toolbar-grouped span.yui-toolbar-separator{height:45px;*height:50px;}.yui-toolbar-container.yui-toolbar-grouped .yui-toolbar-group span.yui-toolbar-separator{height:18px;display:block;}.yui-toolbar-container ul li{margin:0;padding:0;list-style-type:none;}.yui-toolbar-container .yui-toolbar-nogrouplabels h3{display:none;}.yui-toolbar-container .yui-push-button,.yui-toolbar-container .yui-color-button,.yui-toolbar-container .yui-menu-button{position:relative;cursor:pointer;}.yui-toolbar-container .yui-button .first-child,.yui-toolbar-container .yui-button .first-child a{height:100%;width:100%;overflow:hidden;font-size:0px;}.yui-toolbar-container .yui-button-disabled{cursor:default;}.yui-toolbar-container .yui-button-disabled .yui-toolbar-icon{opacity:.5;filter:alpha(opacity=50);}.yui-toolbar-container .yui-button-disabled .up,.yui-toolbar-container .yui-button-disabled .down{opacity:.5;filter:alpha(opacity=50);}.yui-toolbar-container .yui-button a{overflow:hidden;}.yui-toolbar-container .yui-toolbar-select .first-child a{cursor:pointer;}.yui-toolbar-fontname-arial{font-family:Arial;}.yui-toolbar-fontname-arial-black{font-family:Arial Black;}.yui-toolbar-fontname-comic-sans-ms{font-family:Comic Sans MS;}.yui-toolbar-fontname-courier-new{font-family:Courier New;}.yui-toolbar-fontname-times-new-roman{font-family:Times New Roman;}.yui-toolbar-fontname-verdana{font-family:Verdana;}.yui-toolbar-fontname-impact{font-family:Impact;}.yui-toolbar-fontname-lucida-console{font-family:Lucida Console;}.yui-toolbar-fontname-tahoma{font-family:Tahoma;}.yui-toolbar-fontname-trebuchet-ms{font-family:Trebuchet MS;}.yui-toolbar-container .yui-toolbar-spinbutton{position:relative;}.yui-toolbar-container .yui-toolbar-spinbutton .first-child a{z-index:0;opacity:1;}.yui-toolbar-container .yui-toolbar-spinbutton a.up,.yui-toolbar-container .yui-toolbar-spinbutton a.down{position:absolute;display:block right:0;cursor:pointer;z-index:1;padding:0;margin:0;}.yui-toolbar-container .yui-overlay{position:absolute;}.yui-toolbar-container .yui-overlay ul li{margin:0;list-style-type:none;}.yui-toolbar-container{z-index:1;}.yui-editor-container .yui-editor-editable-container{position:relative;z-index:0;width:100%;}.yui-editor-container .yui-editor-masked{background-color:#CCC;}.yui-editor-container iframe{border:0px;padding:0;margin:0;zoom:1;display:block;}.yui-editor-container .yui-editor-editable{padding:0;margin:0;}.yui-editor-container .dompath{font-size:85%;}.yui-editor-panel .hd{text-align:left;position:relative;}.yui-editor-panel .hd h3{font-weight:bold;padding:0.25em 0pt 0.25em 0.25em;margin:0;}.yui-editor-panel .bd{width:100%;zoom:1;position:relative;}.yui-editor-panel .bd div.yui-editor-body-cont{padding:.25em .1em;zoom:1;}.yui-editor-panel .bd .gecko form{overflow:auto;}.yui-editor-panel .bd div.yui-editor-body-cont:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-editor-panel .ft{text-align:right;width:99%;float:left;clear:both;}.yui-editor-panel .ft span.tip{display:block;position:relative;padding:.5em .5em .5em 23px;text-align:left;zoom:1;}.yui-editor-panel label{clear:both;float:left;padding:0;width:100%;text-align:left;zoom:1;}.yui-editor-panel .gecko label{overflow:auto;}.yui-editor-panel label strong{float:left;width:6em;}.yui-editor-panel .removeLink{width:80%;text-align:right;}.yui-editor-panel label input{margin-left:.25em;float:left;}.yui-editor-panel .yui-toolbar-group{margin-bottom:0.75em;}.yui-editor-panel .yui-toolbar-group-padding{}.yui-editor-panel .yui-toolbar-group-border{}.yui-editor-panel .yui-toolbar-group-textflow{}.yui-editor-panel .height-width{float:left;}.yui-editor-panel .height-width h3{}.yui-editor-panel .height-width span{font-style:italic;display:block;float:left;overflow:visible;}.yui-editor-panel .height-width span.info{font-size:70%;margin-top:3px;}.yui-editor-panel .yui-toolbar-bordersize,.yui-editor-panel .yui-toolbar-bordertype{font-size:75%;}.yui-editor-panel .yui-toolbar-container span.yui-toolbar-separator{border:none;}.yui-editor-panel .yui-toolbar-bordersize span a span,.yui-editor-panel .yui-toolbar-bordertype span a span{display:block;height:8px;left:4px;position:absolute;top:3px;_top:-5px;width:24px;text-indent:52px;font-size:0%;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-solid{border-bottom:1px solid black;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dotted{border-bottom:1px dotted black;}.yui-editor-panel .yui-toolbar-bordertype span a span.yui-toolbar-bordertype-dashed{border-bottom:1px dashed black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-0{*top:0px;text-indent:0px;font-size:75%;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-1{border-bottom:1px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-2{border-bottom:2px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-3{top:2px;*top:-5px;border-bottom:3px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-4{top:1px;*top:-5px;border-bottom:4px solid black;}.yui-editor-panel .yui-toolbar-bordersize span a span.yui-toolbar-bordersize-5{top:1px;*top:-5px;border-bottom:5px solid black;}.yui-toolbar-container .yui-toolbar-bordersize-menu,.yui-toolbar-container .yui-toolbar-bordertype-menu{width:95px !important;}.yui-toolbar-bordersize-menu .yuimenuitemlabel,.yui-toolbar-bordertype-menu .yuimenuitemlabel,.yui-toolbar-bordersize-menu .yuimenuitemlabel,.yui-toolbar-bordertype-menu .yuimenuitemlabel:hover{margin:0px 3px 7px 17px;}.yui-toolbar-bordersize-menu .yuimenuitemlabel .checkedindicator,.yui-toolbar-bordertype-menu .yuimenuitemlabel .checkedindicator{position:absolute;left:-12px;*top:14px;*left:0px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-1 a{border-bottom:1px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-2 a{border-bottom:2px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-3 a{border-bottom:3px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-4 a{border-bottom:4px solid black;height:14px;}.yui-toolbar-bordersize-menu li.yui-toolbar-bordersize-5 a{border-bottom:5px solid black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-solid a{border-bottom:1px solid black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dashed a{border-bottom:1px dashed black;height:14px;}.yui-toolbar-bordertype-menu li.yui-toolbar-bordertype-dotted a{border-bottom:1px dotted black;height:14px;}h2.yui-editor-skipheader,h3.yui-editor-skipheader{height:0;margin:0;padding:0;border:none;width:0;overflow:hidden;position:absolute;}.yui-toolbar-colors{width:133px;zoom:1;display:none;z-index:100;overflow:hidden;}.yui-toolbar-colors:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-colors a{height:9px;width:9px;float:left;display:block;overflow:hidden;text-indent:999px;margin:0;cursor:pointer;border:1px solid #F6F7EE;}.yui-toolbar-colors a:hover{border:1px solid black;}.yui-color-button-menu{overflow:visible;background-color:transparent;}.yui-toolbar-colors span{position:relative;display:block;padding:3px;overflow:hidden;float:left;width:100%;zoom:1;}.yui-toolbar-colors span:after{display:block;clear:both;visibility:hidden;content:'.';height:0;}.yui-toolbar-colors span em{height:35px;width:30px;float:left;display:block;overflow:hidden;text-indent:999px;margin:0.75px;border:1px solid black;}.yui-toolbar-colors span strong{font-weight:normal;padding-left:3px;display:block;font-size:85%;float:left;width:65%;}.yui-toolbar-group-undoredo h3,.yui-toolbar-group-insertitem h3,.yui-toolbar-group-indentlist h3{width:68px;}.yui-toolbar-group-indentlist2 h3{width:122px;}.yui-toolbar-group-alignment h3{width:130px;}.yui-skin-sam .yui-editor-container{border:1px solid #808080;}.yui-skin-sam .yui-toolbar-container{zoom:1;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -200px;position:relative;}.yui-skin-sam .yui-editor-container .draggable .yui-toolbar-titlebar{cursor:move;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar h2{color:#000000;font-weight:bold;margin:0;padding:0.3em 1em;font-size:100%;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-group h3{color:#808080;font-size:75%;margin:1em 0 0;padding-bottom:0;padding-left:0.25em;text-align:left;}.yui-toolbar-container span.yui-toolbar-separator{border:none;text-indent:33px;overflow:hidden;margin:0 .25em;}.yui-skin-sam .yui-toolbar-container{background-color:#F2F2F2;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-subcont{padding:0 1em 0.35em;border-bottom:1px solid #808080;}.yui-skin-sam .yui-toolbar-container-collapsed .yui-toolbar-titlebar{border-bottom:1px solid #808080;}.yui-skin-sam .yui-editor-container .visible .yui-menu-shadow,.yui-skin-sam .yui-editor-panel .visible .yui-menu-shadow{display:none;}.yui-skin-sam .yui-editor-container ul{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-editor-container ul li{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-toolbar-group ul li.yui-toolbar-groupitem{float:left;}.yui-skin-sam .yui-editor-container .dompath{background-color:#F2F2F2;border-top:1px solid #808080;color:#999;text-align:left;padding:0.25em;}.yui-skin-sam .yui-toolbar-container .collapse{background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -400px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar span.collapse{cursor:pointer;position:absolute;top:4px;right:2px;display:block;overflow:hidden;height:15px;width:15px;text-indent:9999px;}.yui-skin-sam .yui-toolbar-container .yui-push-button,.yui-skin-sam .yui-toolbar-container .yui-color-button,.yui-skin-sam .yui-toolbar-container .yui-menu-button{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;position:relative;display:block;height:22px;width:30px;_font-size:0;margin:0;border-color:#808080;color:#f2f2f2;border-style:solid;border-width:1px 0;zoom:1;}.yui-skin-sam .yui-toolbar-container .yui-push-button a,.yui-skin-sam .yui-toolbar-container .yui-color-button a,.yui-skin-sam .yui-toolbar-container .yui-menu-button a{padding-left:35px;height:20px;text-decoration:none;font-size:0px;line-height:2;display:block;color:#000;overflow:hidden;white-space:nowrap;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a,.yui-skin-sam .yui-toolbar-container .yui-toolbar-select a{font-size:12px;}.yui-skin-sam .yui-toolbar-container .yui-push-button .first-child,.yui-skin-sam .yui-toolbar-container .yui-color-button .first-child,.yui-skin-sam .yui-toolbar-container .yui-menu-button .first-child{border-color:#808080;border-style:solid;border-width:0 1px;margin:0 -1px;display:block;position:relative;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled .first-child,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled .first-child,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled .first-child{border-color:#ccc;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled a,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled a,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled a{color:#A6A6A6;cursor:default;}.yui-skin-sam .yui-toolbar-container .yui-push-button-disabled,.yui-skin-sam .yui-toolbar-container .yui-color-button-disabled,.yui-skin-sam .yui-toolbar-container .yui-menu-button-disabled{border-color:#ccc;}.yui-skin-sam .yui-toolbar-container .yui-button .first-child{*left:0px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-fontname{width:135px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-heading{width:92px;}.yui-skin-sam .yui-toolbar-container .yui-button-hover{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1300px;border-color:#808080;}.yui-skin-sam .yui-toolbar-container .yui-button-selected{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1700px;border-color:#808080;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels h3{display:none;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-nogrouplabels .yui-toolbar-group{margin-top:.75em;}.yui-skin-sam .yui-toolbar-container .yui-push-button span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-color-button span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-menu-button span.yui-toolbar-icon{display:block;position:absolute;top:2px;height:18px;width:18px;overflow:hidden;background:url(editor-sprite.gif) no-repeat 30px 30px;}.yui-skin-sam .yui-toolbar-container .yui-button-selected span.yui-toolbar-icon,.yui-skin-sam .yui-toolbar-container .yui-button-hover span.yui-toolbar-icon{background-image:url(editor-sprite-active.gif);}.yui-skin-sam .yui-toolbar-container .visible .yuimenuitemlabel{cursor:pointer;color:#000;*position:relative;}.yui-skin-sam .yui-toolbar-container .yui-button-menu{background-color:#fff;}.yui-skin-sam .yui-toolbar-container .yui-button-menu .yui-menu-body-scrolled{position:relative;}.yui-skin-sam div.yuimenu li.selected{background-color:#B3D4FF;}.yui-skin-sam div.yuimenu li.selected a.selected{color:#000;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-bold span.yui-toolbar-icon{background-position:0 0;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-strikethrough span.yui-toolbar-icon{background-position:0 -108px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-italic span.yui-toolbar-icon{background-position:0 -36px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-undo span.yui-toolbar-icon{background-position:0 -1326px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-redo span.yui-toolbar-icon{background-position:0 -1355px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-underline span.yui-toolbar-icon{background-position:0 -72px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-subscript span.yui-toolbar-icon{background-position:0 -180px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-superscript span.yui-toolbar-icon{background-position:0 -144px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-forecolor span.yui-toolbar-icon{background-position:0 -216px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-backcolor span.yui-toolbar-icon{background-position:0 -288px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyleft span.yui-toolbar-icon{background-position:0 -324px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifycenter span.yui-toolbar-icon{background-position:0 -360px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyright span.yui-toolbar-icon{background-position:0 -396px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-justifyfull span.yui-toolbar-icon{background-position:0 -432px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-indent span.yui-toolbar-icon{background-position:0 -720px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-outdent span.yui-toolbar-icon{background-position:0 -684px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-createlink span.yui-toolbar-icon{background-position:0 -792px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertimage span.yui-toolbar-icon{background-position:1px -756px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-left span.yui-toolbar-icon{background-position:0 -972px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-right span.yui-toolbar-icon{background-position:0 -936px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-inline span.yui-toolbar-icon{background-position:0 -900px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-block span.yui-toolbar-icon{background-position:0 -864px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-bordercolor span.yui-toolbar-icon{background-position:0 -252px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-removeformat span.yui-toolbar-icon{background-position:0 -1080px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-hiddenelements span.yui-toolbar-icon{background-position:0 -1044px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertunorderedlist span.yui-toolbar-icon{background-position:0 -468px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-insertorderedlist span.yui-toolbar-icon{background-position:0 -504px;left:5px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton,.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child{width:35px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton .first-child a{padding-left:2px;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton span.yui-toolbar-icon{display:none;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up,.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down{right:2px;background:url(editor-sprite.gif) no-repeat 0 -1222px;overflow:hidden;height:6px;width:7px;min-height:0;padding:0;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.up{top:2px;background-position:0 -1222px;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-spinbutton a.down{bottom:2px;background-position:0 -1187px;}.yui-skin-sam .yui-toolbar-container select{height:22px;border:1px solid #808080;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-select .first-child a{padding-left:5px;text-align:left;}.yui-skin-sam .yui-toolbar-container .yui-toolbar-select span.yui-toolbar-icon{background:url( editor-sprite.gif ) no-repeat 0 -1144px;overflow:hidden;right:-2px;top:0px;height:20px;}.yui-skin-sam .yui-editor-panel .yui-color-button-menu .bd{background-color:transparent;border:none;width:135px;}.yui-skin-sam .yui-color-button-menu .yui-toolbar-colors{border:1px solid #808080;}.yui-skin-sam .yui-editor-panel{padding:0;margin:0;border:none;background-color:transparent;overflow:visible;position:absolute;}.yui-skin-sam .yui-editor-panel .hd{margin:10px 0 0;padding:0;border:none;}.yui-skin-sam .yui-editor-panel .hd h3{color:#000;border:1px solid #808080;background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -200px;width:99%;position:relative;margin:0;padding:3px 0 0 0;font-size:93%;text-indent:5px;height:20px;}.yui-skin-sam .yui-editor-panel .bd{background-color:#F2F2F2;border-left:1px solid #808080;border-right:1px solid #808080;width:99%;margin:0;padding:0;overflow:visible;}.yui-skin-sam .yui-editor-panel ul{list-style-type:none;margin:0;padding:0;}.yui-skin-sam .yui-editor-panel ul li{margin:0;padding:0;}.yui-skin-sam .yui-editor-panel .yuimenu{}.yui-skin-sam .yui-editor-panel .yui-toolbar-container .yui-toolbar-subcont{padding:0;border:none;margin-top:0.35em;}.yui-skin-sam .yui-editor-panel .yui-toolbar-bordersize,.yui-skin-sam .yui-editor-panel .yui-toolbar-bordertype{width:50px;}.yui-skin-sam .yui-editor-panel label{display:block;float:none;padding:4px 0;margin-bottom:7px;}.yui-skin-sam .yui-editor-panel label strong{font-weight:normal;font-size:93%;text-align:right;padding-top:2px;}.yui-skin-sam .yui-editor-panel label input{width:75%;}.yui-skin-sam .yui-editor-panel .createlink_target,.yui-skin-sam .yui-editor-panel .insertimage_target{width:auto;margin-right:5px;}.yui-skin-sam .yui-editor-panel .removeLink{width:98%;}.yui-skin-sam .yui-editor-panel label input.warning{background-color:#FFEE69;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group h3{color:#000;float:left;font-weight:normal;font-size:93%;margin:5px 0 0 0;padding:0 3px 0 0;text-align:right;}.yui-skin-sam .yui-editor-panel .height-width h3{margin:3px 0 0 10px;}.yui-skin-sam .yui-editor-panel .height-width{margin:3px 0 0 35px;*margin-left:14px;width:42%;*width:44%;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-border{width:190px;}.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-border{width:210px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding{width:203px;_width:198px;}.yui-skin-sam .yui-editor-panel .no-button .yui-toolbar-group-padding{width:172px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-padding h3{margin-left:25px;*margin-left:12px;}.yui-skin-sam .yui-editor-panel .yui-toolbar-group-textflow{width:182px;}.yui-skin-sam .yui-editor-panel .hd{background:none;}.yui-skin-sam .yui-editor-panel .ft{background-color:#F2F2F2;border:1px solid #808080;border-top:none;padding:0;margin:0 0 2px 0;}.yui-skin-sam .yui-editor-panel .hd span.close{background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -300px;cursor:pointer;display:block;height:16px;overflow:hidden;position:absolute;right:5px;text-indent:500px;top:2px;width:26px;}.yui-skin-sam .yui-editor-panel .ft span.tip{background-color:#EDF5FF;border-top:1px solid #808080;font-size:85%;}.yui-skin-sam .yui-editor-panel .ft span.tip strong{display:block;float:left;margin:0 2px 8px 0;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon{background:url( editor-sprite.gif ) no-repeat 0 -1260px;display:block;height:20px;left:2px;position:absolute;top:8px;width:20px;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-info{background-position:2px -1260px;}.yui-skin-sam .yui-editor-panel .ft span.tip span.icon-warn{background-position:2px -1296px;}.yui-skin-sam .yui-editor-panel .hd span.knob{position:absolute;height:10px;width:28px;top:-10px;left:25px;text-indent:9999px;overflow:hidden;background:url( editor-knob.gif ) no-repeat 0 0;}.yui-skin-sam .yui-editor-panel .yui-toolbar-container{float:left;width:100%;background-image:none;border:none;}.yui-skin-sam .yui-editor-panel .yui-toolbar-container .bd{background-color:#ffffff;}.yui-editor-blankimage{background-image:url( blankimage.png );}.yui-skin-sam .yui-editor-container .yui-resize-handle-br{height:11px;width:11px;background-position:-20px -60px;background-color:transparent;}
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/editor-debug.js b/eclipse.org-common/yui/2.6.0/build/editor/editor-debug.js
deleted file mode 100644
index 3fa8b06..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/editor-debug.js
+++ /dev/null
@@ -1,8994 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function() {
-    /**
-    * @private
-    **/
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang;
-    /**
-     * @description <p>Creates a rich custom Toolbar Button. Primarily used with the Rich Text Editor's Toolbar</p>
-     * @class ToolbarButtonAdvanced
-     * @namespace YAHOO.widget
-     * @requires yahoo, dom, element, event, container_core, menu, button
-     * @beta
-     * 
-     * Provides a toolbar button based on the button and menu widgets.
-     * @constructor
-     * @param {String/HTMLElement} el The element to turn into a button.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    if (YAHOO.widget.Button) {
-        YAHOO.widget.ToolbarButtonAdvanced = YAHOO.widget.Button;
-        /**
-        * @property buttonType
-        * @private
-        * @description Tells if the Button is a Rich Button or a Simple Button
-        */
-        YAHOO.widget.ToolbarButtonAdvanced.prototype.buttonType = 'rich';
-        /**
-        * @method checkValue
-        * @param {String} value The value of the option that we want to mark as selected
-        * @description Select an option by value
-        */
-        YAHOO.widget.ToolbarButtonAdvanced.prototype.checkValue = function(value) {
-            var _menuItems = this.getMenu().getItems();
-            if (_menuItems.length === 0) {
-                this.getMenu()._onBeforeShow();
-                _menuItems = this.getMenu().getItems();
-            }
-            for (var i = 0; i < _menuItems.length; i++) {
-                _menuItems[i].cfg.setProperty('checked', false);
-                if (_menuItems[i].value == value) {
-                    _menuItems[i].cfg.setProperty('checked', true);
-                }
-            }      
-        };
-    } else {
-        YAHOO.widget.ToolbarButtonAdvanced = function() {};
-    }
-
-
-    /**
-     * @description <p>Creates a basic custom Toolbar Button. Primarily used with the Rich Text Editor's Toolbar</p>
-     * @class ToolbarButton
-     * @namespace YAHOO.widget
-     * @requires yahoo, dom, element, event
-     * @Extends YAHOO.util.Element
-     * @beta
-     * 
-     * Provides a toolbar button based on the button and menu widgets, <select> elements are used in place of menu's.
-     * @constructor
-     * @param {String/HTMLElement} el The element to turn into a button.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-
-    YAHOO.widget.ToolbarButton = function(el, attrs) {
-        YAHOO.log('ToolbarButton Initalizing', 'info', 'ToolbarButton');
-        YAHOO.log(arguments.length + ' arguments passed to constructor', 'info', 'Toolbar');
-        
-        if (Lang.isObject(arguments[0]) && !Dom.get(el).nodeType) {
-            attrs = el;
-        }
-        var local_attrs = (attrs || {});
-
-        var oConfig = {
-            element: null,
-            attributes: local_attrs
-        };
-
-        if (!oConfig.attributes.type) {
-            oConfig.attributes.type = 'push';
-        }
-        
-        oConfig.element = document.createElement('span');
-        oConfig.element.setAttribute('unselectable', 'on');
-        oConfig.element.className = 'yui-button yui-' + oConfig.attributes.type + '-button';
-        oConfig.element.innerHTML = '<span class="first-child"><a href="#">LABEL</a></span>';
-        oConfig.element.firstChild.firstChild.tabIndex = '-1';
-        oConfig.attributes.id = Dom.generateId();
-
-        YAHOO.widget.ToolbarButton.superclass.constructor.call(this, oConfig.element, oConfig.attributes);
-    };
-
-    YAHOO.extend(YAHOO.widget.ToolbarButton, YAHOO.util.Element, {
-        /**
-        * @property buttonType
-        * @private
-        * @description Tells if the Button is a Rich Button or a Simple Button
-        */
-        buttonType: 'normal',
-        /**
-        * @method _handleMouseOver
-        * @private
-        * @description Adds classes to the button elements on mouseover (hover)
-        */
-        _handleMouseOver: function() {
-            if (!this.get('disabled')) {
-                this.addClass('yui-button-hover');
-                this.addClass('yui-' + this.get('type') + '-button-hover');
-            }
-        },
-        /**
-        * @method _handleMouseOut
-        * @private
-        * @description Removes classes from the button elements on mouseout (hover)
-        */
-        _handleMouseOut: function() {
-            this.removeClass('yui-button-hover');
-            this.removeClass('yui-' + this.get('type') + '-button-hover');
-        },
-        /**
-        * @method checkValue
-        * @param {String} value The value of the option that we want to mark as selected
-        * @description Select an option by value
-        */
-        checkValue: function(value) {
-            if (this.get('type') == 'menu') {
-                var opts = this._button.options;
-                for (var i = 0; i < opts.length; i++) {
-                    if (opts[i].value == value) {
-                        opts.selectedIndex = i;
-                    }
-                }
-            }
-        },
-        /** 
-        * @method init
-        * @description The ToolbarButton class's initialization method
-        */        
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.widget.ToolbarButton.superclass.init.call(this, p_oElement, p_oAttributes);
-
-            this.on('mouseover', this._handleMouseOver, this, true);
-            this.on('mouseout', this._handleMouseOut, this, true);
-        },
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create 
-        * the toolbar.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the toolbar.
-        */        
-        initAttributes: function(attr) {
-            YAHOO.widget.ToolbarButton.superclass.initAttributes.call(this, attr);
-            /**
-            * @attribute value
-            * @description The value of the button
-            * @type String
-            */            
-            this.setAttributeConfig('value', {
-                value: attr.value
-            });
-            /**
-            * @attribute menu
-            * @description The menu attribute, see YAHOO.widget.Button
-            * @type Object
-            */            
-            this.setAttributeConfig('menu', {
-                value: attr.menu || false
-            });
-            /**
-            * @attribute type
-            * @description The type of button to create: push, menu, color, select, spin
-            * @type String
-            */            
-            this.setAttributeConfig('type', {
-                value: attr.type,
-                writeOnce: true,
-                method: function(type) {
-                    var el, opt;
-                    if (!this._button) {
-                        this._button = this.get('element').getElementsByTagName('a')[0];
-                    }
-                    switch (type) {
-                        case 'select':
-                        case 'menu':
-                            el = document.createElement('select');
-                            var menu = this.get('menu');
-                            for (var i = 0; i < menu.length; i++) {
-                                opt = document.createElement('option');
-                                opt.innerHTML = menu[i].text;
-                                opt.value = menu[i].value;
-                                if (menu[i].checked) {
-                                    opt.selected = true;
-                                }
-                                el.appendChild(opt);
-                            }
-                            this._button.parentNode.replaceChild(el, this._button);
-                            Event.on(el, 'change', this._handleSelect, this, true);
-                            this._button = el;
-                            break;
-                    }
-                }
-            });
-
-            /**
-            * @attribute disabled
-            * @description Set the button into a disabled state
-            * @type String
-            */            
-            this.setAttributeConfig('disabled', {
-                value: attr.disabled || false,
-                method: function(disabled) {
-                    if (disabled) {
-                        this.addClass('yui-button-disabled');
-                        this.addClass('yui-' + this.get('type') + '-button-disabled');
-                    } else {
-                        this.removeClass('yui-button-disabled');
-                        this.removeClass('yui-' + this.get('type') + '-button-disabled');
-                    }
-                    if (this.get('type') == 'menu') {
-                        this._button.disabled = disabled;
-                    }
-                }
-            });
-
-            /**
-            * @attribute label
-            * @description The text label for the button
-            * @type String
-            */            
-            this.setAttributeConfig('label', {
-                value: attr.label,
-                method: function(label) {
-                    if (!this._button) {
-                        this._button = this.get('element').getElementsByTagName('a')[0];
-                    }
-                    if (this.get('type') == 'push') {
-                        this._button.innerHTML = label;
-                    }
-                }
-            });
-
-            /**
-            * @attribute title
-            * @description The title of the button
-            * @type String
-            */            
-            this.setAttributeConfig('title', {
-                value: attr.title
-            });
-
-            /**
-            * @config container
-            * @description The container that the button is rendered to, handled by Toolbar
-            * @type String
-            */            
-            this.setAttributeConfig('container', {
-                value: null,
-                writeOnce: true,
-                method: function(cont) {
-                    this.appendTo(cont);
-                }
-            });
-
-        },
-        /** 
-        * @private
-        * @method _handleSelect
-        * @description The event fired when a change event gets fired on a select element
-        * @param {Event} ev The change event.
-        */        
-        _handleSelect: function(ev) {
-            var tar = Event.getTarget(ev);
-            var value = tar.options[tar.selectedIndex].value;
-            this.fireEvent('change', {type: 'change', value: value });
-        },
-        /** 
-        * @method getMenu
-        * @description A stub function to mimic YAHOO.widget.Button's getMenu method
-        */        
-        getMenu: function() {
-            return this.get('menu');
-        },
-        /** 
-        * @method destroy
-        * @description Destroy the button
-        */        
-        destroy: function() {
-            Event.purgeElement(this.get('element'), true);
-            this.get('element').parentNode.removeChild(this.get('element'));
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                }
-            }       
-        },
-        /** 
-        * @method fireEvent
-        * @description Overridden fireEvent method to prevent DOM events from firing if the button is disabled.
-        */        
-        fireEvent: function (p_sType , p_aArgs) {
-            //  Disabled buttons should not respond to DOM events
-            if (this.DOM_EVENTS[p_sType] && this.get('disabled')) {
-                return;
-            }
-        
-            YAHOO.widget.ToolbarButton.superclass.fireEvent.call(this, p_sType, p_aArgs);
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the toolbar.
-        * @return {String}
-        */        
-        toString: function() {
-            return 'ToolbarButton (' + this.get('id') + ')';
-        }
-        
-    });
-})();
-/**
- * @description <p>Creates a rich Toolbar widget based on Button. Primarily used with the Rich Text Editor</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event, toolbarbutton
- * @optional container_core, dragdrop
- * @beta
- */
-(function() {
-    /**
-    * @private
-    **/
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang;
-    
-    var getButton = function(id) {
-        var button = id;
-        if (Lang.isString(id)) {
-            button = this.getButtonById(id);
-        }
-        if (Lang.isNumber(id)) {
-            button = this.getButtonByIndex(id);
-        }
-        if ((!(button instanceof YAHOO.widget.ToolbarButton)) && (!(button instanceof YAHOO.widget.ToolbarButtonAdvanced))) {
-            button = this.getButtonByValue(id);
-        }
-        if ((button instanceof YAHOO.widget.ToolbarButton) || (button instanceof YAHOO.widget.ToolbarButtonAdvanced)) {
-            return button;
-        }
-        return false;
-    };
-
-    /**
-     * Provides a rich toolbar widget based on the button and menu widgets
-     * @constructor
-     * @class Toolbar
-     * @extends YAHOO.util.Element
-     * @param {String/HTMLElement} el The element to turn into a toolbar.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    YAHOO.widget.Toolbar = function(el, attrs) {
-        YAHOO.log('Toolbar Initalizing', 'info', 'Toolbar');
-        YAHOO.log(arguments.length + ' arguments passed to constructor', 'info', 'Toolbar');
-        
-        if (Lang.isObject(arguments[0]) && !Dom.get(el).nodeType) {
-            attrs = el;
-        }
-        var local_attrs = {};
-        if (attrs) {
-            Lang.augmentObject(local_attrs, attrs); //Break the config reference
-        }
-        
-
-        var oConfig = {
-            element: null,
-            attributes: local_attrs
-        };
-        
-        
-        if (Lang.isString(el) && Dom.get(el)) {
-            oConfig.element = Dom.get(el);
-        } else if (Lang.isObject(el) && Dom.get(el) && Dom.get(el).nodeType) {  
-            oConfig.element = Dom.get(el);
-        }
-        
-
-        if (!oConfig.element) {
-            YAHOO.log('No element defined, creating toolbar container', 'warn', 'Toolbar');
-            oConfig.element = document.createElement('DIV');
-            oConfig.element.id = Dom.generateId();
-            
-            if (local_attrs.container && Dom.get(local_attrs.container)) {
-                YAHOO.log('Container found in config appending to it (' + Dom.get(local_attrs.container).id + ')', 'info', 'Toolbar');
-                Dom.get(local_attrs.container).appendChild(oConfig.element);
-            }
-        }
-        
-
-        if (!oConfig.element.id) {
-            oConfig.element.id = ((Lang.isString(el)) ? el : Dom.generateId());
-            YAHOO.log('No element ID defined for toolbar container, creating..', 'warn', 'Toolbar');
-        }
-        YAHOO.log('Initing toolbar with id: ' + oConfig.element.id, 'info', 'Toolbar');
-        
-        var fs = document.createElement('fieldset');
-        var lg = document.createElement('legend');
-        lg.innerHTML = 'Toolbar';
-        fs.appendChild(lg);
-        
-        var cont = document.createElement('DIV');
-        oConfig.attributes.cont = cont;
-        Dom.addClass(cont, 'yui-toolbar-subcont');
-        fs.appendChild(cont);
-        oConfig.element.appendChild(fs);
-
-        oConfig.element.tabIndex = -1;
-
-        
-        oConfig.attributes.element = oConfig.element;
-        oConfig.attributes.id = oConfig.element.id;
-
-        YAHOO.widget.Toolbar.superclass.constructor.call(this, oConfig.element, oConfig.attributes);
-         
-    };
-
-    YAHOO.extend(YAHOO.widget.Toolbar, YAHOO.util.Element, {
-        /**
-        * @method _addMenuClasses
-        * @private
-        * @description This method is called from Menu's renderEvent to add a few more classes to the menu items
-        * @param {String} ev The event that fired.
-        * @param {Array} na Array of event information.
-        * @param {Object} o Button config object. 
-        */
-        _addMenuClasses: function(ev, na, o) {
-            Dom.addClass(this.element, 'yui-toolbar-' + o.get('value') + '-menu');
-            if (Dom.hasClass(o._button.parentNode.parentNode, 'yui-toolbar-select')) {
-                Dom.addClass(this.element, 'yui-toolbar-select-menu');
-            }
-            var items = this.getItems();
-            for (var i = 0; i < items.length; i++) {
-                Dom.addClass(items[i].element, 'yui-toolbar-' + o.get('value') + '-' + ((items[i].value) ? items[i].value.replace(/ /g, '-').toLowerCase() : items[i]._oText.nodeValue.replace(/ /g, '-').toLowerCase()));
-                Dom.addClass(items[i].element, 'yui-toolbar-' + o.get('value') + '-' + ((items[i].value) ? items[i].value.replace(/ /g, '-') : items[i]._oText.nodeValue.replace(/ /g, '-')));
-            }
-        },
-        /** 
-        * @property buttonType
-        * @description The default button to use
-        * @type Object
-        */
-        buttonType: YAHOO.widget.ToolbarButton,
-        /** 
-        * @property dd
-        * @description The DragDrop instance associated with the Toolbar
-        * @type Object
-        */
-        dd: null,
-        /** 
-        * @property _colorData
-        * @description Object reference containing colors hex and text values.
-        * @type Object
-        */
-        _colorData: {
-/* {{{ _colorData */
-    '#111111': 'Obsidian',
-    '#2D2D2D': 'Dark Gray',
-    '#434343': 'Shale',
-    '#5B5B5B': 'Flint',
-    '#737373': 'Gray',
-    '#8B8B8B': 'Concrete',
-    '#A2A2A2': 'Gray',
-    '#B9B9B9': 'Titanium',
-    '#000000': 'Black',
-    '#D0D0D0': 'Light Gray',
-    '#E6E6E6': 'Silver',
-    '#FFFFFF': 'White',
-    '#BFBF00': 'Pumpkin',
-    '#FFFF00': 'Yellow',
-    '#FFFF40': 'Banana',
-    '#FFFF80': 'Pale Yellow',
-    '#FFFFBF': 'Butter',
-    '#525330': 'Raw Siena',
-    '#898A49': 'Mildew',
-    '#AEA945': 'Olive',
-    '#7F7F00': 'Paprika',
-    '#C3BE71': 'Earth',
-    '#E0DCAA': 'Khaki',
-    '#FCFAE1': 'Cream',
-    '#60BF00': 'Cactus',
-    '#80FF00': 'Chartreuse',
-    '#A0FF40': 'Green',
-    '#C0FF80': 'Pale Lime',
-    '#DFFFBF': 'Light Mint',
-    '#3B5738': 'Green',
-    '#668F5A': 'Lime Gray',
-    '#7F9757': 'Yellow',
-    '#407F00': 'Clover',
-    '#8A9B55': 'Pistachio',
-    '#B7C296': 'Light Jade',
-    '#E6EBD5': 'Breakwater',
-    '#00BF00': 'Spring Frost',
-    '#00FF80': 'Pastel Green',
-    '#40FFA0': 'Light Emerald',
-    '#80FFC0': 'Sea Foam',
-    '#BFFFDF': 'Sea Mist',
-    '#033D21': 'Dark Forrest',
-    '#438059': 'Moss',
-    '#7FA37C': 'Medium Green',
-    '#007F40': 'Pine',
-    '#8DAE94': 'Yellow Gray Green',
-    '#ACC6B5': 'Aqua Lung',
-    '#DDEBE2': 'Sea Vapor',
-    '#00BFBF': 'Fog',
-    '#00FFFF': 'Cyan',
-    '#40FFFF': 'Turquoise Blue',
-    '#80FFFF': 'Light Aqua',
-    '#BFFFFF': 'Pale Cyan',
-    '#033D3D': 'Dark Teal',
-    '#347D7E': 'Gray Turquoise',
-    '#609A9F': 'Green Blue',
-    '#007F7F': 'Seaweed',
-    '#96BDC4': 'Green Gray',
-    '#B5D1D7': 'Soapstone',
-    '#E2F1F4': 'Light Turquoise',
-    '#0060BF': 'Summer Sky',
-    '#0080FF': 'Sky Blue',
-    '#40A0FF': 'Electric Blue',
-    '#80C0FF': 'Light Azure',
-    '#BFDFFF': 'Ice Blue',
-    '#1B2C48': 'Navy',
-    '#385376': 'Biscay',
-    '#57708F': 'Dusty Blue',
-    '#00407F': 'Sea Blue',
-    '#7792AC': 'Sky Blue Gray',
-    '#A8BED1': 'Morning Sky',
-    '#DEEBF6': 'Vapor',
-    '#0000BF': 'Deep Blue',
-    '#0000FF': 'Blue',
-    '#4040FF': 'Cerulean Blue',
-    '#8080FF': 'Evening Blue',
-    '#BFBFFF': 'Light Blue',
-    '#212143': 'Deep Indigo',
-    '#373E68': 'Sea Blue',
-    '#444F75': 'Night Blue',
-    '#00007F': 'Indigo Blue',
-    '#585E82': 'Dockside',
-    '#8687A4': 'Blue Gray',
-    '#D2D1E1': 'Light Blue Gray',
-    '#6000BF': 'Neon Violet',
-    '#8000FF': 'Blue Violet',
-    '#A040FF': 'Violet Purple',
-    '#C080FF': 'Violet Dusk',
-    '#DFBFFF': 'Pale Lavender',
-    '#302449': 'Cool Shale',
-    '#54466F': 'Dark Indigo',
-    '#655A7F': 'Dark Violet',
-    '#40007F': 'Violet',
-    '#726284': 'Smoky Violet',
-    '#9E8FA9': 'Slate Gray',
-    '#DCD1DF': 'Violet White',
-    '#BF00BF': 'Royal Violet',
-    '#FF00FF': 'Fuchsia',
-    '#FF40FF': 'Magenta',
-    '#FF80FF': 'Orchid',
-    '#FFBFFF': 'Pale Magenta',
-    '#4A234A': 'Dark Purple',
-    '#794A72': 'Medium Purple',
-    '#936386': 'Cool Granite',
-    '#7F007F': 'Purple',
-    '#9D7292': 'Purple Moon',
-    '#C0A0B6': 'Pale Purple',
-    '#ECDAE5': 'Pink Cloud',
-    '#BF005F': 'Hot Pink',
-    '#FF007F': 'Deep Pink',
-    '#FF409F': 'Grape',
-    '#FF80BF': 'Electric Pink',
-    '#FFBFDF': 'Pink',
-    '#451528': 'Purple Red',
-    '#823857': 'Purple Dino',
-    '#A94A76': 'Purple Gray',
-    '#7F003F': 'Rose',
-    '#BC6F95': 'Antique Mauve',
-    '#D8A5BB': 'Cool Marble',
-    '#F7DDE9': 'Pink Granite',
-    '#C00000': 'Apple',
-    '#FF0000': 'Fire Truck',
-    '#FF4040': 'Pale Red',
-    '#FF8080': 'Salmon',
-    '#FFC0C0': 'Warm Pink',
-    '#441415': 'Sepia',
-    '#82393C': 'Rust',
-    '#AA4D4E': 'Brick',
-    '#800000': 'Brick Red',
-    '#BC6E6E': 'Mauve',
-    '#D8A3A4': 'Shrimp Pink',
-    '#F8DDDD': 'Shell Pink',
-    '#BF5F00': 'Dark Orange',
-    '#FF7F00': 'Orange',
-    '#FF9F40': 'Grapefruit',
-    '#FFBF80': 'Canteloupe',
-    '#FFDFBF': 'Wax',
-    '#482C1B': 'Dark Brick',
-    '#855A40': 'Dirt',
-    '#B27C51': 'Tan',
-    '#7F3F00': 'Nutmeg',
-    '#C49B71': 'Mustard',
-    '#E1C4A8': 'Pale Tan',
-    '#FDEEE0': 'Marble'
-/* }}} */
-        },
-        /** 
-        * @property _colorPicker
-        * @description The HTML Element containing the colorPicker
-        * @type HTMLElement
-        */
-        _colorPicker: null,
-        /** 
-        * @property STR_COLLAPSE
-        * @description String for Toolbar Collapse Button
-        * @type String
-        */
-        STR_COLLAPSE: 'Collapse Toolbar',
-        /** 
-        * @property STR_SPIN_LABEL
-        * @description String for spinbutton dynamic label. Note the {VALUE} will be replaced with YAHOO.lang.substitute
-        * @type String
-        */
-        STR_SPIN_LABEL: 'Spin Button with value {VALUE}. Use Control Shift Up Arrow and Control Shift Down arrow keys to increase or decrease the value.',
-        /** 
-        * @property STR_SPIN_UP
-        * @description String for spinbutton up
-        * @type String
-        */
-        STR_SPIN_UP: 'Click to increase the value of this input',
-        /** 
-        * @property STR_SPIN_DOWN
-        * @description String for spinbutton down
-        * @type String
-        */
-        STR_SPIN_DOWN: 'Click to decrease the value of this input',
-        /** 
-        * @property _titlebar
-        * @description Object reference to the titlebar
-        * @type HTMLElement
-        */
-        _titlebar: null,
-        /** 
-        * @property browser
-        * @description Standard browser detection
-        * @type Object
-        */
-        browser: YAHOO.env.ua,
-        /**
-        * @protected
-        * @property _buttonList
-        * @description Internal property list of current buttons in the toolbar
-        * @type Array
-        */
-        _buttonList: null,
-        /**
-        * @protected
-        * @property _buttonGroupList
-        * @description Internal property list of current button groups in the toolbar
-        * @type Array
-        */
-        _buttonGroupList: null,
-        /**
-        * @protected
-        * @property _sep
-        * @description Internal reference to the separator HTML Element for cloning
-        * @type HTMLElement
-        */
-        _sep: null,
-        /**
-        * @protected
-        * @property _sepCount
-        * @description Internal refernce for counting separators, so we can give them a useful class name for styling
-        * @type Number
-        */
-        _sepCount: null,
-        /**
-        * @protected
-        * @property draghandle
-        * @type HTMLElement
-        */
-        _dragHandle: null,
-        /**
-        * @protected
-        * @property _toolbarConfigs
-        * @type Object
-        */
-        _toolbarConfigs: {
-            renderer: true
-        },
-        /**
-        * @protected
-        * @property CLASS_CONTAINER
-        * @description Default CSS class to apply to the toolbar container element
-        * @type String
-        */
-        CLASS_CONTAINER: 'yui-toolbar-container',
-        /**
-        * @protected
-        * @property CLASS_DRAGHANDLE
-        * @description Default CSS class to apply to the toolbar's drag handle element
-        * @type String
-        */
-        CLASS_DRAGHANDLE: 'yui-toolbar-draghandle',
-        /**
-        * @protected
-        * @property CLASS_SEPARATOR
-        * @description Default CSS class to apply to all separators in the toolbar
-        * @type String
-        */
-        CLASS_SEPARATOR: 'yui-toolbar-separator',
-        /**
-        * @protected
-        * @property CLASS_DISABLED
-        * @description Default CSS class to apply when the toolbar is disabled
-        * @type String
-        */
-        CLASS_DISABLED: 'yui-toolbar-disabled',
-        /**
-        * @protected
-        * @property CLASS_PREFIX
-        * @description Default prefix for dynamically created class names
-        * @type String
-        */
-        CLASS_PREFIX: 'yui-toolbar',
-        /** 
-        * @method init
-        * @description The Toolbar class's initialization method
-        */
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.widget.Toolbar.superclass.init.call(this, p_oElement, p_oAttributes);
-
-        },
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create 
-        * the toolbar.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the toolbar.
-        */
-        initAttributes: function(attr) {
-            YAHOO.widget.Toolbar.superclass.initAttributes.call(this, attr);
-            this.addClass(this.CLASS_CONTAINER);
-
-            /**
-            * @attribute buttonType
-            * @description The buttonType to use (advanced or basic)
-            * @type String
-            */
-            this.setAttributeConfig('buttonType', {
-                value: attr.buttonType || 'basic',
-                writeOnce: true,
-                validator: function(type) {
-                    switch (type) {
-                        case 'advanced':
-                        case 'basic':
-                            return true;
-                    }
-                    return false;
-                },
-                method: function(type) {
-                    if (type == 'advanced') {
-                        if (YAHOO.widget.Button) {
-                            this.buttonType = YAHOO.widget.ToolbarButtonAdvanced;
-                        } else {
-                            YAHOO.log('Can not find YAHOO.widget.Button', 'error', 'Toolbar');
-                            this.buttonType = YAHOO.widget.ToolbarButton;
-                        }
-                    } else {
-                        this.buttonType = YAHOO.widget.ToolbarButton;
-                    }
-                }
-            });
-
-
-            /**
-            * @attribute buttons
-            * @description Object specifying the buttons to include in the toolbar
-            * Example:
-            * <code><pre>
-            * {
-            *   { id: 'b3', type: 'button', label: 'Underline', value: 'underline' },
-            *   { type: 'separator' },
-            *   { id: 'b4', type: 'menu', label: 'Align', value: 'align',
-            *       menu: [
-            *           { text: "Left", value: 'alignleft' },
-            *           { text: "Center", value: 'aligncenter' },
-            *           { text: "Right", value: 'alignright' }
-            *       ]
-            *   }
-            * }
-            * </pre></code>
-            * @type Array
-            */
-            
-            this.setAttributeConfig('buttons', {
-                value: [],
-                writeOnce: true,
-                method: function(data) {
-                    for (var i in data) {
-                        if (Lang.hasOwnProperty(data, i)) {
-                            if (data[i].type == 'separator') {
-                                this.addSeparator();
-                            } else if (data[i].group !== undefined) {
-                                this.addButtonGroup(data[i]);
-                            } else {
-                                this.addButton(data[i]);
-                            }
-                        }
-                    }
-                }
-            });
-
-            /**
-            * @attribute disabled
-            * @description Boolean indicating if the toolbar should be disabled. It will also disable the draggable attribute if it is on.
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('disabled', {
-                value: false,
-                method: function(disabled) {
-                    if (this.get('disabled') === disabled) {
-                        return false;
-                    }
-                    if (disabled) {
-                        this.addClass(this.CLASS_DISABLED);
-                        this.set('draggable', false);
-                        this.disableAllButtons();
-                    } else {
-                        this.removeClass(this.CLASS_DISABLED);
-                        if (this._configs.draggable._initialConfig.value) {
-                            //Draggable by default, set it back
-                            this.set('draggable', true);
-                        }
-                        this.resetAllButtons();
-                    }
-                }
-            });
-
-            /**
-            * @config cont
-            * @description The container for the toolbar.
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('cont', {
-                value: attr.cont,
-                readOnly: true
-            });
-
-
-            /**
-            * @attribute grouplabels
-            * @description Boolean indicating if the toolbar should show the group label's text string.
-            * @default true
-            * @type Boolean
-            */
-            this.setAttributeConfig('grouplabels', {
-                value: ((attr.grouplabels === false) ? false : true),
-                method: function(grouplabels) {
-                    if (grouplabels) {
-                        Dom.removeClass(this.get('cont'), (this.CLASS_PREFIX + '-nogrouplabels'));
-                    } else {
-                        Dom.addClass(this.get('cont'), (this.CLASS_PREFIX + '-nogrouplabels'));
-                    }
-                }
-            });
-            /**
-            * @attribute titlebar
-            * @description Boolean indicating if the toolbar should have a titlebar. If
-            * passed a string, it will use that as the titlebar text
-            * @default false
-            * @type Boolean or String
-            */
-            this.setAttributeConfig('titlebar', {
-                value: false,
-                method: function(titlebar) {
-                    if (titlebar) {
-                        if (this._titlebar && this._titlebar.parentNode) {
-                            this._titlebar.parentNode.removeChild(this._titlebar);
-                        }
-                        this._titlebar = document.createElement('DIV');
-                        this._titlebar.tabIndex = '-1';
-                        Event.on(this._titlebar, 'focus', function() {
-                            this._handleFocus();
-                        }, this, true);
-                        Dom.addClass(this._titlebar, this.CLASS_PREFIX + '-titlebar');
-                        if (Lang.isString(titlebar)) {
-                            var h2 = document.createElement('h2');
-                            h2.tabIndex = '-1';
-                            h2.innerHTML = '<a href="#" tabIndex="0">' + titlebar + '</a>';
-                            this._titlebar.appendChild(h2);
-                            Event.on(h2.firstChild, 'click', function(ev) {
-                                Event.stopEvent(ev);
-                            });
-                            Event.on([h2, h2.firstChild], 'focus', function() {
-                                this._handleFocus();
-                            }, this, true);
-                        }
-                        if (this.get('firstChild')) {
-                            this.insertBefore(this._titlebar, this.get('firstChild'));
-                        } else {
-                            this.appendChild(this._titlebar);
-                        }
-                        if (this.get('collapse')) {
-                            this.set('collapse', true);
-                        }
-                    } else if (this._titlebar) {
-                        if (this._titlebar && this._titlebar.parentNode) {
-                            this._titlebar.parentNode.removeChild(this._titlebar);
-                        }
-                    }
-                }
-            });
-
-
-            /**
-            * @attribute collapse
-            * @description Boolean indicating if the the titlebar should have a collapse button.
-            * The collapse button will not remove the toolbar, it will minimize it to the titlebar
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('collapse', {
-                value: false,
-                method: function(collapse) {
-                    if (this._titlebar) {
-                        var collapseEl = null;
-                        var el = Dom.getElementsByClassName('collapse', 'span', this._titlebar);
-                        if (collapse) {
-                            if (el.length > 0) {
-                                //There is already a collapse button
-                                return true;
-                            }
-                            collapseEl = document.createElement('SPAN');
-                            collapseEl.innerHTML = 'X';
-                            collapseEl.title = this.STR_COLLAPSE;
-
-                            Dom.addClass(collapseEl, 'collapse');
-                            this._titlebar.appendChild(collapseEl);
-                            Event.addListener(collapseEl, 'click', function() {
-                                if (Dom.hasClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed')) {
-                                    this.collapse(false); //Expand Toolbar
-                                } else {
-                                    this.collapse(); //Collapse Toolbar
-                                }
-                            }, this, true);
-                        } else {
-                            collapseEl = Dom.getElementsByClassName('collapse', 'span', this._titlebar);
-                            if (collapseEl[0]) {
-                                if (Dom.hasClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed')) {
-                                    //We are closed, reopen the titlebar..
-                                    this.collapse(false); //Expand Toolbar
-                                }
-                                collapseEl[0].parentNode.removeChild(collapseEl[0]);
-                            }
-                        }
-                    }
-                }
-            });
-
-            /**
-            * @attribute draggable
-            * @description Boolean indicating if the toolbar should be draggable.  
-            * @default false
-            * @type Boolean
-            */
-
-            this.setAttributeConfig('draggable', {
-                value: (attr.draggable || false),
-                method: function(draggable) {
-                    if (draggable && !this.get('titlebar')) {
-                        YAHOO.log('Dragging enabled', 'info', 'Toolbar');
-                        if (!this._dragHandle) {
-                            this._dragHandle = document.createElement('SPAN');
-                            this._dragHandle.innerHTML = '|';
-                            this._dragHandle.setAttribute('title', 'Click to drag the toolbar');
-                            this._dragHandle.id = this.get('id') + '_draghandle';
-                            Dom.addClass(this._dragHandle, this.CLASS_DRAGHANDLE);
-                            if (this.get('cont').hasChildNodes()) {
-                                this.get('cont').insertBefore(this._dragHandle, this.get('cont').firstChild);
-                            } else {
-                                this.get('cont').appendChild(this._dragHandle);
-                            }
-                            /**
-                            * @property dd
-                            * @description The DragDrop instance associated with the Toolbar
-                            * @type Object
-                            */
-                            this.dd = new YAHOO.util.DD(this.get('id'));
-                            this.dd.setHandleElId(this._dragHandle.id);
-                            
-                        }
-                    } else {
-                        YAHOO.log('Dragging disabled', 'info', 'Toolbar');
-                        if (this._dragHandle) {
-                            this._dragHandle.parentNode.removeChild(this._dragHandle);
-                            this._dragHandle = null;
-                            this.dd = null;
-                        }
-                    }
-                    if (this._titlebar) {
-                        if (draggable) {
-                            this.dd = new YAHOO.util.DD(this.get('id'));
-                            this.dd.setHandleElId(this._titlebar);
-                            Dom.addClass(this._titlebar, 'draggable');
-                        } else {
-                            Dom.removeClass(this._titlebar, 'draggable');
-                            if (this.dd) {
-                                this.dd.unreg();
-                                this.dd = null;
-                            }
-                        }
-                    }
-                },
-                validator: function(value) {
-                    var ret = true;
-                    if (!YAHOO.util.DD) {
-                        ret = false;
-                    }
-                    return ret;
-                }
-            });
-
-        },
-        /**
-        * @method addButtonGroup
-        * @description Add a new button group to the toolbar. (uses addButton)
-        * @param {Object} oGroup Object literal reference to the Groups Config (contains an array of button configs as well as the group label)
-        */
-        addButtonGroup: function(oGroup) {
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addButtonGroup', arguments];
-                return false;
-            }
-            
-            if (!this.hasClass(this.CLASS_PREFIX + '-grouped')) {
-                this.addClass(this.CLASS_PREFIX + '-grouped');
-            }
-            var div = document.createElement('DIV');
-            Dom.addClass(div, this.CLASS_PREFIX + '-group');
-            Dom.addClass(div, this.CLASS_PREFIX + '-group-' + oGroup.group);
-            if (oGroup.label) {
-                var label = document.createElement('h3');
-                label.innerHTML = oGroup.label;
-                div.appendChild(label);
-            }
-            if (!this.get('grouplabels')) {
-                Dom.addClass(this.get('cont'), this.CLASS_PREFIX, '-nogrouplabels');
-            }
-
-            this.get('cont').appendChild(div);
-
-            //For accessibility, let's put all of the group buttons in an Unordered List
-            var ul = document.createElement('ul');
-            div.appendChild(ul);
-
-            if (!this._buttonGroupList) {
-                this._buttonGroupList = {};
-            }
-            
-            this._buttonGroupList[oGroup.group] = ul;
-
-            for (var i = 0; i < oGroup.buttons.length; i++) {
-                var li = document.createElement('li');
-                li.className = this.CLASS_PREFIX + '-groupitem';
-                ul.appendChild(li);
-                if ((oGroup.buttons[i].type !== undefined) && oGroup.buttons[i].type == 'separator') {
-                    this.addSeparator(li);
-                } else {
-                    oGroup.buttons[i].container = li;
-                    this.addButton(oGroup.buttons[i]);
-                }
-            }
-        },
-        /**
-        * @method addButtonToGroup
-        * @description Add a new button to a toolbar group. Buttons supported:
-        *   push, split, menu, select, color, spin
-        * @param {Object} oButton Object literal reference to the Button's Config
-        * @param {String} group The Group identifier passed into the initial config
-        * @param {HTMLElement} after Optional HTML element to insert this button after in the DOM.
-        */
-        addButtonToGroup: function(oButton, group, after) {
-            var groupCont = this._buttonGroupList[group];
-            var li = document.createElement('li');
-            li.className = this.CLASS_PREFIX + '-groupitem';
-            oButton.container = li;
-            this.addButton(oButton, after);
-            groupCont.appendChild(li);
-        },
-        /**
-        * @method addButton
-        * @description Add a new button to the toolbar. Buttons supported:
-        *   push, split, menu, select, color, spin
-        * @param {Object} oButton Object literal reference to the Button's Config
-        * @param {HTMLElement} after Optional HTML element to insert this button after in the DOM.
-        */
-        addButton: function(oButton, after) {
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addButton', arguments];
-                return false;
-            }
-            if (!this._buttonList) {
-                this._buttonList = [];
-            }
-            YAHOO.log('Adding button of type: ' + oButton.type, 'info', 'Toolbar');
-            if (!oButton.container) {
-                oButton.container = this.get('cont');
-            }
-
-            if ((oButton.type == 'menu') || (oButton.type == 'split') || (oButton.type == 'select')) {
-                if (Lang.isArray(oButton.menu)) {
-                    for (var i in oButton.menu) {
-                        if (Lang.hasOwnProperty(oButton.menu, i)) {
-                            var funcObject = {
-                                fn: function(ev, x, oMenu) {
-                                    if (!oButton.menucmd) {
-                                        oButton.menucmd = oButton.value;
-                                    }
-                                    oButton.value = ((oMenu.value) ? oMenu.value : oMenu._oText.nodeValue);
-                                },
-                                scope: this
-                            };
-                            oButton.menu[i].onclick = funcObject;
-                        }
-                    }
-                }
-            }
-            var _oButton = {}, skip = false;
-            for (var o in oButton) {
-                if (Lang.hasOwnProperty(oButton, o)) {
-                    if (!this._toolbarConfigs[o]) {
-                        _oButton[o] = oButton[o];
-                    }
-                }
-            }
-            if (oButton.type == 'select') {
-                _oButton.type = 'menu';
-            }
-            if (oButton.type == 'spin') {
-                _oButton.type = 'push';
-            }
-            if (_oButton.type == 'color') {
-                if (YAHOO.widget.Overlay) {
-                    _oButton = this._makeColorButton(_oButton);
-                } else {
-                    skip = true;
-                }
-            }
-            if (_oButton.menu) {
-                if ((YAHOO.widget.Overlay) && (oButton.menu instanceof YAHOO.widget.Overlay)) {
-                    oButton.menu.showEvent.subscribe(function() {
-                        this._button = _oButton;
-                    });
-                } else {
-                    for (var m = 0; m < _oButton.menu.length; m++) {
-                        if (!_oButton.menu[m].value) {
-                            _oButton.menu[m].value = _oButton.menu[m].text;
-                        }
-                    }
-                    if (this.browser.webkit) {
-                        _oButton.focusmenu = false;
-                    }
-                }
-            }
-            if (skip) {
-                oButton = false;
-            } else {
-                //Add to .get('buttons') manually
-                this._configs.buttons.value[this._configs.buttons.value.length] = oButton;
-                
-                var tmp = new this.buttonType(_oButton);
-                tmp.get('element').tabIndex = '-1';
-                tmp.get('element').setAttribute('role', 'button');
-                tmp._selected = true;
-                
-                if (this.get('disabled')) {
-                    //Toolbar is disabled, disable the new button too!
-                    tmp.set('disabled', true);
-                }
-                if (!oButton.id) {
-                    oButton.id = tmp.get('id');
-                }
-                YAHOO.log('Button created (' + oButton.type + ')', 'info', 'Toolbar');
-                
-                if (after) {
-                    var el = tmp.get('element');
-                    var nextSib = null;
-                    if (after.get) {
-                        nextSib = after.get('element').nextSibling;
-                    } else if (after.nextSibling) {
-                        nextSib = after.nextSibling;
-                    }
-                    if (nextSib) {
-                        nextSib.parentNode.insertBefore(el, nextSib);
-                    }
-                }
-                tmp.addClass(this.CLASS_PREFIX + '-' + tmp.get('value'));
-
-                var icon = document.createElement('span');
-                icon.className = this.CLASS_PREFIX + '-icon';
-                tmp.get('element').insertBefore(icon, tmp.get('firstChild'));
-                if (tmp._button.tagName.toLowerCase() == 'button') {
-                    tmp.get('element').setAttribute('unselectable', 'on');
-                    //Replace the Button HTML Element with an a href if it exists
-                    var a = document.createElement('a');
-                    a.innerHTML = tmp._button.innerHTML;
-                    a.href = '#';
-                    a.tabIndex = '-1';
-                    Event.on(a, 'click', function(ev) {
-                        Event.stopEvent(ev);
-                    });
-                    tmp._button.parentNode.replaceChild(a, tmp._button);
-                    tmp._button = a;
-                }
-
-                if (oButton.type == 'select') {
-                    if (tmp._button.tagName.toLowerCase() == 'select') {
-                        icon.parentNode.removeChild(icon);
-                        var iel = tmp._button;
-                        var parEl = tmp.get('element');
-                        parEl.parentNode.replaceChild(iel, parEl);
-                    } else {
-                        //Don't put a class on it if it's a real select element
-                        tmp.addClass(this.CLASS_PREFIX + '-select');
-                    }
-                }
-                if (oButton.type == 'spin') {
-                    if (!Lang.isArray(oButton.range)) {
-                        oButton.range = [ 10, 100 ];
-                    }
-                    this._makeSpinButton(tmp, oButton);
-                }
-                tmp.get('element').setAttribute('title', tmp.get('label'));
-                if (oButton.type != 'spin') {
-                    if ((YAHOO.widget.Overlay) && (_oButton.menu instanceof YAHOO.widget.Overlay)) {
-                        var showPicker = function(ev) {
-                            var exec = true;
-                            if (ev.keyCode && (ev.keyCode == 9)) {
-                                exec = false;
-                            }
-                            if (exec) {
-                                if (this._colorPicker) {
-                                    this._colorPicker._button = oButton.value;
-                                }
-                                var menuEL = tmp.getMenu().element;
-                                if (Dom.getStyle(menuEL, 'visibility') == 'hidden') {
-                                    tmp.getMenu().show();
-                                } else {
-                                    tmp.getMenu().hide();
-                                }
-                            }
-                            YAHOO.util.Event.stopEvent(ev);
-                        };
-                        tmp.on('mousedown', showPicker, oButton, this);
-                        tmp.on('keydown', showPicker, oButton, this);
-                        
-                    } else if ((oButton.type != 'menu') && (oButton.type != 'select')) {
-                        tmp.on('keypress', this._buttonClick, oButton, this);
-                        tmp.on('mousedown', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                            this._buttonClick(ev, oButton);
-                        }, oButton, this);
-                        tmp.on('click', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                        });
-                    } else {
-                        //Stop the mousedown event so we can trap the selection in the editor!
-                        tmp.on('mousedown', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                        });
-                        tmp.on('click', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                        });
-                        tmp.on('change', function(ev) {
-                            if (!oButton.menucmd) {
-                                oButton.menucmd = oButton.value;
-                            }
-                            oButton.value = ev.value;
-                            this._buttonClick(ev, oButton);
-                        }, this, true);
-
-                        var self = this;
-                        //Hijack the mousedown event in the menu and make it fire a button click..
-                        tmp.on('appendTo', function() {
-                            var tmp = this;
-                            if (tmp.getMenu() && tmp.getMenu().mouseDownEvent) {
-                                tmp.getMenu().mouseDownEvent.subscribe(function(ev, args) {
-                                    YAHOO.log('mouseDownEvent', 'warn', 'Toolbar');
-                                    var oMenu = args[1];
-                                    YAHOO.util.Event.stopEvent(args[0]);
-                                    tmp._onMenuClick(args[0], tmp);
-                                    if (!oButton.menucmd) {
-                                        oButton.menucmd = oButton.value;
-                                    }
-                                    oButton.value = ((oMenu.value) ? oMenu.value : oMenu._oText.nodeValue);
-                                    self._buttonClick.call(self, args[1], oButton);
-                                    tmp._hideMenu();
-                                    return false;
-                                });
-                                tmp.getMenu().clickEvent.subscribe(function(ev, args) {
-                                    YAHOO.log('clickEvent', 'warn', 'Toolbar');
-                                    YAHOO.util.Event.stopEvent(args[0]);
-                                });
-                                tmp.getMenu().mouseUpEvent.subscribe(function(ev, args) {
-                                    YAHOO.log('mouseUpEvent', 'warn', 'Toolbar');
-                                    YAHOO.util.Event.stopEvent(args[0]);
-                                });
-                            }
-                        });
-                        
-                    }
-                } else {
-                    //Stop the mousedown event so we can trap the selection in the editor!
-                    tmp.on('mousedown', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    });
-                    tmp.on('click', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    });
-                }
-                if (this.browser.ie) {
-                    /*
-                    //Add a couple of new events for IE
-                    tmp.DOM_EVENTS.focusin = true;
-                    tmp.DOM_EVENTS.focusout = true;
-                    
-                    //Stop them so we don't loose focus in the Editor
-                    tmp.on('focusin', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    }, oButton, this);
-                    
-                    tmp.on('focusout', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    }, oButton, this);
-                    tmp.on('click', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    }, oButton, this);
-                    */
-                }
-                if (this.browser.webkit) {
-                    //This will keep the document from gaining focus and the editor from loosing it..
-                    //Forcefully remove the focus calls in button!
-                    tmp.hasFocus = function() {
-                        return true;
-                    };
-                }
-                this._buttonList[this._buttonList.length] = tmp;
-                if ((oButton.type == 'menu') || (oButton.type == 'split') || (oButton.type == 'select')) {
-                    if (Lang.isArray(oButton.menu)) {
-                        YAHOO.log('Button type is (' + oButton.type + '), doing extra renderer work.', 'info', 'Toolbar');
-                        var menu = tmp.getMenu();
-                        if (menu && menu.renderEvent) {
-                            menu.renderEvent.subscribe(this._addMenuClasses, tmp);
-                            if (oButton.renderer) {
-                                menu.renderEvent.subscribe(oButton.renderer, tmp);
-                            }
-                        }
-                    }
-                }
-            }
-            return oButton;
-        },
-        /**
-        * @method addSeparator
-        * @description Add a new button separator to the toolbar.
-        * @param {HTMLElement} cont Optional HTML element to insert this button into.
-        * @param {HTMLElement} after Optional HTML element to insert this button after in the DOM.
-        */
-        addSeparator: function(cont, after) {
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addSeparator', arguments];
-                return false;
-            }
-            var sepCont = ((cont) ? cont : this.get('cont'));
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addSeparator', arguments];
-                return false;
-            }
-            if (this._sepCount === null) {
-                this._sepCount = 0;
-            }
-            if (!this._sep) {
-                YAHOO.log('Separator does not yet exist, creating', 'info', 'Toolbar');
-                this._sep = document.createElement('SPAN');
-                Dom.addClass(this._sep, this.CLASS_SEPARATOR);
-                this._sep.innerHTML = '|';
-            }
-            YAHOO.log('Separator does exist, cloning', 'info', 'Toolbar');
-            var _sep = this._sep.cloneNode(true);
-            this._sepCount++;
-            Dom.addClass(_sep, this.CLASS_SEPARATOR + '-' + this._sepCount);
-            if (after) {
-                var nextSib = null;
-                if (after.get) {
-                    nextSib = after.get('element').nextSibling;
-                } else if (after.nextSibling) {
-                    nextSib = after.nextSibling;
-                } else {
-                    nextSib = after;
-                }
-                if (nextSib) {
-                    if (nextSib == after) {
-                        nextSib.parentNode.appendChild(_sep);
-                    } else {
-                        nextSib.parentNode.insertBefore(_sep, nextSib);
-                    }
-                }
-            } else {
-                sepCont.appendChild(_sep);
-            }
-            return _sep;
-        },
-        /**
-        * @method _createColorPicker
-        * @private
-        * @description Creates the core DOM reference to the color picker menu item.
-        * @param {String} id the id of the toolbar to prefix this DOM container with.
-        */
-        _createColorPicker: function(id) {
-            if (Dom.get(id + '_colors')) {
-               Dom.get(id + '_colors').parentNode.removeChild(Dom.get(id + '_colors'));
-            }
-            var picker = document.createElement('div');
-            picker.className = 'yui-toolbar-colors';
-            picker.id = id + '_colors';
-            picker.style.display = 'none';
-            Event.on(window, 'load', function() {
-                document.body.appendChild(picker);
-            }, this, true);
-
-            this._colorPicker = picker;
-
-            var html = '';
-            for (var i in this._colorData) {
-                if (Lang.hasOwnProperty(this._colorData, i)) {
-                    html += '<a style="background-color: ' + i + '" href="#">' + i.replace('#', '') + '</a>';
-                }
-            }
-            html += '<span><em>X</em><strong></strong></span>';
-            window.setTimeout(function() {
-                picker.innerHTML = html;
-            }, 0);
-
-            Event.on(picker, 'mouseover', function(ev) {
-                var picker = this._colorPicker;
-                var em = picker.getElementsByTagName('em')[0];
-                var strong = picker.getElementsByTagName('strong')[0];
-                var tar = Event.getTarget(ev);
-                if (tar.tagName.toLowerCase() == 'a') {
-                    em.style.backgroundColor = tar.style.backgroundColor;
-                    strong.innerHTML = this._colorData['#' + tar.innerHTML] + '<br>' + tar.innerHTML;
-                }
-            }, this, true);
-            Event.on(picker, 'focus', function(ev) {
-                Event.stopEvent(ev);
-            });
-            Event.on(picker, 'click', function(ev) {
-                Event.stopEvent(ev);
-            });
-            Event.on(picker, 'mousedown', function(ev) {
-                Event.stopEvent(ev);
-                var tar = Event.getTarget(ev);
-                if (tar.tagName.toLowerCase() == 'a') {
-                    var retVal = this.fireEvent('colorPickerClicked', { type: 'colorPickerClicked', target: this, button: this._colorPicker._button, color: tar.innerHTML, colorName: this._colorData['#' + tar.innerHTML] } );
-                    if (retVal !== false) {
-                        var info = {
-                            color: tar.innerHTML,
-                            colorName: this._colorData['#' + tar.innerHTML],
-                            value: this._colorPicker._button 
-                        };
-                    
-                        this.fireEvent('buttonClick', { type: 'buttonClick', target: this.get('element'), button: info });
-                    }
-                    this.getButtonByValue(this._colorPicker._button).getMenu().hide();
-                }
-            }, this, true);
-        },
-        /**
-        * @method _resetColorPicker
-        * @private
-        * @description Clears the currently selected color or mouseover color in the color picker.
-        */
-        _resetColorPicker: function() {
-            var em = this._colorPicker.getElementsByTagName('em')[0];
-            var strong = this._colorPicker.getElementsByTagName('strong')[0];
-            em.style.backgroundColor = 'transparent';
-            strong.innerHTML = '';
-        },
-        /**
-        * @method _makeColorButton
-        * @private
-        * @description Called to turn a "color" button into a menu button with an Overlay for the menu.
-        * @param {Object} _oButton <a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a> reference
-        */
-        _makeColorButton: function(_oButton) {
-            if (!this._colorPicker) {   
-                this._createColorPicker(this.get('id'));
-            }
-            _oButton.type = 'color';
-            _oButton.menu = new YAHOO.widget.Overlay(this.get('id') + '_' + _oButton.value + '_menu', { visible: false, position: 'absolute', iframe: true });
-            _oButton.menu.setBody('');
-            _oButton.menu.render(this.get('cont'));
-            Dom.addClass(_oButton.menu.element, 'yui-button-menu');
-            Dom.addClass(_oButton.menu.element, 'yui-color-button-menu');
-            _oButton.menu.beforeShowEvent.subscribe(function() {
-                _oButton.menu.cfg.setProperty('zindex', 5); //Re Adjust the overlays zIndex.. not sure why.
-                _oButton.menu.cfg.setProperty('context', [this.getButtonById(_oButton.id).get('element'), 'tl', 'bl']); //Re Adjust the overlay.. not sure why.
-                //Move the DOM reference of the color picker to the Overlay that we are about to show.
-                this._resetColorPicker();
-                var _p = this._colorPicker;
-                if (_p.parentNode) {
-                    _p.parentNode.removeChild(_p);
-                }
-                _oButton.menu.setBody('');
-                _oButton.menu.appendToBody(_p);
-                this._colorPicker.style.display = 'block';
-            }, this, true);
-            return _oButton;
-        },
-        /**
-        * @private
-        * @method _makeSpinButton
-        * @description Create a button similar to an OS Spin button.. It has an up/down arrow combo to scroll through a range of int values.
-        * @param {Object} _button <a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a> reference
-        * @param {Object} oButton Object literal containing the buttons initial config
-        */
-        _makeSpinButton: function(_button, oButton) {
-            _button.addClass(this.CLASS_PREFIX + '-spinbutton');
-            var self = this,
-                _par = _button._button.parentNode.parentNode, //parentNode of Button Element for appending child
-                range = oButton.range,
-                _b1 = document.createElement('a'),
-                _b2 = document.createElement('a');
-                _b1.href = '#';
-                _b2.href = '#';
-                _b1.tabIndex = '-1';
-                _b2.tabIndex = '-1';
-            
-            //Setup the up and down arrows
-            _b1.className = 'up';
-            _b1.title = this.STR_SPIN_UP;
-            _b1.innerHTML = this.STR_SPIN_UP;
-            _b2.className = 'down';
-            _b2.title = this.STR_SPIN_DOWN;
-            _b2.innerHTML = this.STR_SPIN_DOWN;
-
-            //Append them to the container
-            _par.appendChild(_b1);
-            _par.appendChild(_b2);
-            
-            var label = YAHOO.lang.substitute(this.STR_SPIN_LABEL, { VALUE: _button.get('label') });
-            _button.set('title', label);
-
-            var cleanVal = function(value) {
-                value = ((value < range[0]) ? range[0] : value);
-                value = ((value > range[1]) ? range[1] : value);
-                return value;
-            };
-
-            var br = this.browser;
-            var tbar = false;
-            var strLabel = this.STR_SPIN_LABEL;
-            if (this._titlebar && this._titlebar.firstChild) {
-                tbar = this._titlebar.firstChild;
-            }
-            
-            var _intUp = function(ev) {
-                YAHOO.util.Event.stopEvent(ev);
-                if (!_button.get('disabled') && (ev.keyCode != 9)) {
-                    var value = parseInt(_button.get('label'), 10);
-                    value++;
-                    value = cleanVal(value);
-                    _button.set('label', ''+value);
-                    var label = YAHOO.lang.substitute(strLabel, { VALUE: _button.get('label') });
-                    _button.set('title', label);
-                    if (!br.webkit && tbar) {
-                        //tbar.focus(); //We do this for accessibility, on the re-focus of the element, a screen reader will re-read the title that was just changed
-                        //_button.focus();
-                    }
-                    self._buttonClick(ev, oButton);
-                }
-            };
-
-            var _intDown = function(ev) {
-                YAHOO.util.Event.stopEvent(ev);
-                if (!_button.get('disabled') && (ev.keyCode != 9)) {
-                    var value = parseInt(_button.get('label'), 10);
-                    value--;
-                    value = cleanVal(value);
-
-                    _button.set('label', ''+value);
-                    var label = YAHOO.lang.substitute(strLabel, { VALUE: _button.get('label') });
-                    _button.set('title', label);
-                    if (!br.webkit && tbar) {
-                        //tbar.focus(); //We do this for accessibility, on the re-focus of the element, a screen reader will re-read the title that was just changed
-                        //_button.focus();
-                    }
-                    self._buttonClick(ev, oButton);
-                }
-            };
-
-            var _intKeyUp = function(ev) {
-                if (ev.keyCode == 38) {
-                    _intUp(ev);
-                } else if (ev.keyCode == 40) {
-                    _intDown(ev);
-                } else if (ev.keyCode == 107 && ev.shiftKey) {  //Plus Key
-                    _intUp(ev);
-                } else if (ev.keyCode == 109 && ev.shiftKey) {  //Minus Key
-                    _intDown(ev);
-                }
-            };
-
-            //Handle arrow keys..
-            _button.on('keydown', _intKeyUp, this, true);
-
-            //Listen for the click on the up button and act on it
-            //Listen for the click on the down button and act on it
-            Event.on(_b1, 'mousedown',function(ev) {
-                Event.stopEvent(ev);
-            }, this, true);
-            Event.on(_b2, 'mousedown', function(ev) {
-                Event.stopEvent(ev);
-            }, this, true);
-            Event.on(_b1, 'click', _intUp, this, true);
-            Event.on(_b2, 'click', _intDown, this, true);
-        },
-        /**
-        * @protected
-        * @method _buttonClick
-        * @description Click handler for all buttons in the toolbar.
-        * @param {String} ev The event that was passed in.
-        * @param {Object} info Object literal of information about the button that was clicked.
-        */
-        _buttonClick: function(ev, info) {
-            var doEvent = true;
-            
-            if (ev && ev.type == 'keypress') {
-                if (ev.keyCode == 9) {
-                    doEvent = false;
-                } else if ((ev.keyCode === 13) || (ev.keyCode === 0) || (ev.keyCode === 32)) {
-                } else {
-                    doEvent = false;
-                }
-            }
-
-            if (doEvent) {
-                var fireNextEvent = true,
-                    retValue = false;
-                    
-                info.isSelected = this.isSelected(info.id);
-
-                if (info.value) {
-                    YAHOO.log('fireEvent::' + info.value + 'Click', 'info', 'Toolbar');
-                    retValue = this.fireEvent(info.value + 'Click', { type: info.value + 'Click', target: this.get('element'), button: info });
-                    if (retValue === false) {
-                        fireNextEvent = false;
-                    }
-                }
-                
-                if (info.menucmd && fireNextEvent) {
-                    YAHOO.log('fireEvent::' + info.menucmd + 'Click', 'info', 'Toolbar');
-                    retValue = this.fireEvent(info.menucmd + 'Click', { type: info.menucmd + 'Click', target: this.get('element'), button: info });
-                    if (retValue === false) {
-                        fireNextEvent = false;
-                    }
-                }
-                if (fireNextEvent) {
-                    YAHOO.log('fireEvent::buttonClick', 'info', 'Toolbar');
-                    this.fireEvent('buttonClick', { type: 'buttonClick', target: this.get('element'), button: info });
-                }
-
-                if (info.type == 'select') {
-                    var button = this.getButtonById(info.id);
-                    if (button.buttonType == 'rich') {
-                        var txt = info.value;
-                        for (var i = 0; i < info.menu.length; i++) {
-                            if (info.menu[i].value == info.value) {
-                                txt = info.menu[i].text;
-                                break;
-                            }
-                        }
-                        button.set('label', '<span class="yui-toolbar-' + info.menucmd + '-' + (info.value).replace(/ /g, '-').toLowerCase() + '">' + txt + '</span>');
-                        var _items = button.getMenu().getItems();
-                        for (var m = 0; m < _items.length; m++) {
-                            if (_items[m].value.toLowerCase() == info.value.toLowerCase()) {
-                                _items[m].cfg.setProperty('checked', true);
-                            } else {
-                                _items[m].cfg.setProperty('checked', false);
-                            }
-                        }
-                    }
-                }
-                if (ev) {
-                    Event.stopEvent(ev);
-                }
-            }
-        },
-        /**
-        * @private
-        * @property _keyNav
-        * @description Flag to determine if the arrow nav listeners have been attached
-        * @type Boolean
-        */
-        _keyNav: null,
-        /**
-        * @private
-        * @property _navCounter
-        * @description Internal counter for walking the buttons in the toolbar with the arrow keys
-        * @type Number
-        */
-        _navCounter: null,
-        /**
-        * @private
-        * @method _navigateButtons
-        * @description Handles the navigation/focus of toolbar buttons with the Arrow Keys
-        * @param {Event} ev The Key Event
-        */
-        _navigateButtons: function(ev) {
-            switch (ev.keyCode) {
-                case 37:
-                case 39:
-                    if (ev.keyCode == 37) {
-                        this._navCounter--;
-                    } else {
-                        this._navCounter++;
-                    }
-                    if (this._navCounter > (this._buttonList.length - 1)) {
-                        this._navCounter = 0;
-                    }
-                    if (this._navCounter < 0) {
-                        this._navCounter = (this._buttonList.length - 1);
-                    }
-                    if (this._buttonList[this._navCounter]) {
-                        var el = this._buttonList[this._navCounter].get('element');
-                        if (this.browser.ie) {
-                            el = this._buttonList[this._navCounter].get('element').getElementsByTagName('a')[0];
-                        }
-                        if (this._buttonList[this._navCounter].get('disabled')) {
-                            this._navigateButtons(ev);
-                        } else {
-                            el.focus();
-                        }
-                    }
-                    break;
-            }
-        },
-        /**
-        * @private
-        * @method _handleFocus
-        * @description Sets up the listeners for the arrow key navigation
-        */
-        _handleFocus: function() {
-            if (!this._keyNav) {
-                var ev = 'keypress';
-                if (this.browser.ie) {
-                    ev = 'keydown';
-                }
-                Event.on(this.get('element'), ev, this._navigateButtons, this, true);
-                this._keyNav = true;
-                this._navCounter = -1;
-            }
-        },
-        /**
-        * @method getButtonById
-        * @description Gets a button instance from the toolbar by is Dom id.
-        * @param {String} id The Dom id to query for.
-        * @return {<a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a>}
-        */
-        getButtonById: function(id) {
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                if (this._buttonList[i] && this._buttonList[i].get('id') == id) {
-                    return this._buttonList[i];
-                }
-            }
-            return false;
-        },
-        /**
-        * @method getButtonByValue
-        * @description Gets a button instance or a menuitem instance from the toolbar by it's value.
-        * @param {String} value The button value to query for.
-        * @return {<a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a> or <a href="YAHOO.widget.MenuItem.html">YAHOO.widget.MenuItem</a>}
-        */
-        getButtonByValue: function(value) {
-            var _buttons = this.get('buttons');
-            var len = _buttons.length;
-            for (var i = 0; i < len; i++) {
-                if (_buttons[i].group !== undefined) {
-                    for (var m = 0; m < _buttons[i].buttons.length; m++) {
-                        if ((_buttons[i].buttons[m].value == value) || (_buttons[i].buttons[m].menucmd == value)) {
-                            return this.getButtonById(_buttons[i].buttons[m].id);
-                        }
-                        if (_buttons[i].buttons[m].menu) { //Menu Button, loop through the values
-                            for (var s = 0; s < _buttons[i].buttons[m].menu.length; s++) {
-                                if (_buttons[i].buttons[m].menu[s].value == value) {
-                                    return this.getButtonById(_buttons[i].buttons[m].id);
-                                }
-                            }
-                        }
-                    }
-                } else {
-                    if ((_buttons[i].value == value) || (_buttons[i].menucmd == value)) {
-                        return this.getButtonById(_buttons[i].id);
-                    }
-                    if (_buttons[i].menu) { //Menu Button, loop through the values
-                        for (var j = 0; j < _buttons[i].menu.length; j++) {
-                            if (_buttons[i].menu[j].value == value) {
-                                return this.getButtonById(_buttons[i].id);
-                            }
-                        }
-                    }
-                }
-            }
-            return false;
-        },
-        /**
-        * @method getButtonByIndex
-        * @description Gets a button instance from the toolbar by is index in _buttonList.
-        * @param {Number} index The index of the button in _buttonList.
-        * @return {<a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a>}
-        */
-        getButtonByIndex: function(index) {
-            if (this._buttonList[index]) {
-                return this._buttonList[index];
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method getButtons
-        * @description Returns an array of buttons in the current toolbar
-        * @return {Array}
-        */
-        getButtons: function() {
-            return this._buttonList;
-        },
-        /**
-        * @method disableButton
-        * @description Disables a button in the toolbar.
-        * @param {String/Number} id Disable a button by it's id, index or value.
-        * @return {Boolean}
-        */
-        disableButton: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                button.set('disabled', true);
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method enableButton
-        * @description Enables a button in the toolbar.
-        * @param {String/Number} id Enable a button by it's id, index or value.
-        * @return {Boolean}
-        */
-        enableButton: function(id) {
-            if (this.get('disabled')) {
-                return false;
-            }
-            var button = getButton.call(this, id);
-            if (button) {
-                if (button.get('disabled')) {
-                    button.set('disabled', false);
-                }
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method isSelected
-        * @description Tells if a button is selected or not.
-        * @param {String/Number} id A button by it's id, index or value.
-        * @return {Boolean}
-        */
-        isSelected: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                return button._selected;
-            }
-            return false;
-        },
-        /**
-        * @method selectButton
-        * @description Selects a button in the toolbar.
-        * @param {String/Number} id Select a button by it's id, index or value.
-        * @param {String} value If this is a Menu Button, check this item in the menu
-        * @return {Boolean}
-        */
-        selectButton: function(id, value) {
-            var button = getButton.call(this, id);
-            if (button) {
-                button.addClass('yui-button-selected');
-                button.addClass('yui-button-' + button.get('value') + '-selected');
-                button._selected = true;
-                if (value) {
-                    if (button.buttonType == 'rich') {
-                        var _items = button.getMenu().getItems();
-                        for (var m = 0; m < _items.length; m++) {
-                            if (_items[m].value == value) {
-                                _items[m].cfg.setProperty('checked', true);
-                                button.set('label', '<span class="yui-toolbar-' + button.get('value') + '-' + (value).replace(/ /g, '-').toLowerCase() + '">' + _items[m]._oText.nodeValue + '</span>');
-                            } else {
-                                _items[m].cfg.setProperty('checked', false);
-                            }
-                        }
-                    }
-                }
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method deselectButton
-        * @description Deselects a button in the toolbar.
-        * @param {String/Number} id Deselect a button by it's id, index or value.
-        * @return {Boolean}
-        */
-        deselectButton: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                button.removeClass('yui-button-selected');
-                button.removeClass('yui-button-' + button.get('value') + '-selected');
-                button.removeClass('yui-button-hover');
-                button._selected = false;
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method deselectAllButtons
-        * @description Deselects all buttons in the toolbar.
-        * @return {Boolean}
-        */
-        deselectAllButtons: function() {
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                this.deselectButton(this._buttonList[i]);
-            }
-        },
-        /**
-        * @method disableAllButtons
-        * @description Disables all buttons in the toolbar.
-        * @return {Boolean}
-        */
-        disableAllButtons: function() {
-            if (this.get('disabled')) {
-                return false;
-            }
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                this.disableButton(this._buttonList[i]);
-            }
-        },
-        /**
-        * @method enableAllButtons
-        * @description Enables all buttons in the toolbar.
-        * @return {Boolean}
-        */
-        enableAllButtons: function() {
-            if (this.get('disabled')) {
-                return false;
-            }
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                this.enableButton(this._buttonList[i]);
-            }
-        },
-        /**
-        * @method resetAllButtons
-        * @description Resets all buttons to their initial state.
-        * @param {Object} _ex Except these buttons
-        * @return {Boolean}
-        */
-        resetAllButtons: function(_ex) {
-            if (!Lang.isObject(_ex)) {
-                _ex = {};
-            }
-            if (this.get('disabled')) {
-                return false;
-            }
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                var _button = this._buttonList[i];
-                if (_button) {
-                    var disabled = _button._configs.disabled._initialConfig.value;
-                    if (_ex[_button.get('id')]) {
-                        this.enableButton(_button);
-                        this.selectButton(_button);
-                    } else {
-                        if (disabled) {
-                            this.disableButton(_button);
-                        } else {
-                            this.enableButton(_button);
-                        }
-                        this.deselectButton(_button);
-                    }
-                }
-            }
-        },
-        /**
-        * @method destroyButton
-        * @description Destroy a button in the toolbar.
-        * @param {String/Number} id Destroy a button by it's id or index.
-        * @return {Boolean}
-        */
-        destroyButton: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                var thisID = button.get('id');
-                button.destroy();
-
-                var len = this._buttonList.length;
-                for (var i = 0; i < len; i++) {
-                    if (this._buttonList[i] && this._buttonList[i].get('id') == thisID) {
-                        this._buttonList[i] = null;
-                    }
-                }
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method destroy
-        * @description Destroys the toolbar, all of it's elements and objects.
-        * @return {Boolean}
-        */
-        destroy: function() {
-            this.get('element').innerHTML = '';
-            this.get('element').className = '';
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                }
-            }
-            return true;
-        },
-        /**
-        * @method collapse
-        * @description Programatically collapse the toolbar.
-        * @param {Boolean} collapse True to collapse, false to expand.
-        */
-        collapse: function(collapse) {
-            var el = Dom.getElementsByClassName('collapse', 'span', this._titlebar);
-            if (collapse === false) {
-                Dom.removeClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed');
-                if (el[0]) {
-                    Dom.removeClass(el[0], 'collapsed');
-                }
-                this.fireEvent('toolbarExpanded', { type: 'toolbarExpanded', target: this });
-            } else {
-                if (el[0]) {
-                    Dom.addClass(el[0], 'collapsed');
-                }
-                Dom.addClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed');
-                this.fireEvent('toolbarCollapsed', { type: 'toolbarCollapsed', target: this });
-            }
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the toolbar.
-        * @return {String}
-        */
-        toString: function() {
-            return 'Toolbar (#' + this.get('element').id + ') with ' + this._buttonList.length + ' buttons.';
-        }
-    });
-/**
-* @event buttonClick
-* @param {Object} o The object passed to this handler is the button config used to create the button.
-* @description Fires when any botton receives a click event. Passes back a single object representing the buttons config object. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event valueClick
-* @param {Object} o The object passed to this handler is the button config used to create the button.
-* @description This is a special dynamic event that is created and dispatched based on the value property
-* of the button config. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* Example:
-* <code><pre>
-* buttons : [
-*   { type: 'button', value: 'test', value: 'testButton' }
-* ]</pre>
-* </code>
-* With the valueClick event you could subscribe to this buttons click event with this:
-* tbar.in('testButtonClick', function() { alert('test button clicked'); })
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event toolbarExpanded
-* @description Fires when the toolbar is expanded via the collapse button. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event toolbarCollapsed
-* @description Fires when the toolbar is collapsed via the collapse button. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-})();
-/**
- * @description <p>The Rich Text Editor is a UI control that replaces a standard HTML textarea; it allows for the rich formatting of text content, including common structural treatments like lists, formatting treatments like bold and italic text, and drag-and-drop inclusion and sizing of images. The Rich Text Editor's toolbar is extensible via a plugin architecture so that advanced implementations can achieve a high degree of customization.</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event, toolbar
- * @optional animation, container_core, resize, dragdrop
- * @beta
- */
-
-(function() {
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang,
-    Toolbar = YAHOO.widget.Toolbar;
-
-    /**
-     * The Rich Text Editor is a UI control that replaces a standard HTML textarea; it allows for the rich formatting of text content, including common structural treatments like lists, formatting treatments like bold and italic text, and drag-and-drop inclusion and sizing of images. The Rich Text Editor's toolbar is extensible via a plugin architecture so that advanced implementations can achieve a high degree of customization.
-     * @constructor
-     * @class SimpleEditor
-     * @extends YAHOO.util.Element
-     * @param {String/HTMLElement} el The textarea element to turn into an editor.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    
-    YAHOO.widget.SimpleEditor = function(el, attrs) {
-        YAHOO.log('SimpleEditor Initalizing', 'info', 'SimpleEditor');
-        
-        var o = {};
-        if (Lang.isObject(el) && (!el.tagName) && !attrs) {
-            Lang.augmentObject(o, el); //Break the config reference
-            el = document.createElement('textarea');
-            this.DOMReady = true;
-            if (o.container) {
-                var c = Dom.get(o.container);
-                c.appendChild(el);
-            } else {
-                document.body.appendChild(el);
-            }
-        } else {
-            if (attrs) {
-                Lang.augmentObject(o, attrs); //Break the config reference
-            }
-        }
-
-        var oConfig = {
-            element: null,
-            attributes: o
-        }, id = null;
-
-        if (Lang.isString(el)) {
-            id = el;
-        } else {
-            if (oConfig.attributes.id) {
-                id = oConfig.attributes.id;
-            } else {
-                this.DOMReady = true;
-                id = Dom.generateId(el);
-            }
-        }
-        oConfig.element = el;
-
-        var element_cont = document.createElement('DIV');
-        oConfig.attributes.element_cont = new YAHOO.util.Element(element_cont, {
-            id: id + '_container'
-        });
-        var div = document.createElement('div');
-        Dom.addClass(div, 'first-child');
-        oConfig.attributes.element_cont.appendChild(div);
-        
-        if (!oConfig.attributes.toolbar_cont) {
-            oConfig.attributes.toolbar_cont = document.createElement('DIV');
-            oConfig.attributes.toolbar_cont.id = id + '_toolbar';
-            div.appendChild(oConfig.attributes.toolbar_cont);
-        }
-        var editorWrapper = document.createElement('DIV');
-        div.appendChild(editorWrapper);
-        oConfig.attributes.editor_wrapper = editorWrapper;
-
-        YAHOO.widget.SimpleEditor.superclass.constructor.call(this, oConfig.element, oConfig.attributes);
-    };
-
-
-    YAHOO.extend(YAHOO.widget.SimpleEditor, YAHOO.util.Element, {
-        /**
-        * @private
-        * @property _resizeConfig
-        * @description The default config for the Resize Utility
-        */
-        _resizeConfig: {
-            handles: ['br'],
-            autoRatio: true,
-            status: true,
-            proxy: true,
-            useShim: true,
-            setSize: false
-        },
-        /**
-        * @private
-        * @method _setupResize
-        * @description Creates the Resize instance and binds its events.
-        */
-        _setupResize: function() {
-            if (!YAHOO.util.DD || !YAHOO.util.Resize) { return false; }
-            if (this.get('resize')) {
-                var config = {};
-                Lang.augmentObject(config, this._resizeConfig); //Break the config reference
-                this.resize = new YAHOO.util.Resize(this.get('element_cont').get('element'), config);
-                this.resize.on('resize', function(args) {
-                    var anim = this.get('animate');
-                    this.set('animate', false);
-                    this.set('width', args.width + 'px');
-                    var h = args.height,
-                        th = (this.toolbar.get('element').clientHeight + 2),
-                        dh = 0;
-                    if (this.dompath) {
-                        dh = (this.dompath.clientHeight + 1); //It has a 1px top border..
-                    }
-                    var newH = (h - th - dh);
-                    this.set('height', newH + 'px');
-                    this.get('element_cont').setStyle('height', '');
-                    this.set('animate', anim);
-                }, this, true);
-            }
-        },
-        /**
-        * @property resize
-        * @description A reference to the Resize object
-        * @type YAHOO.util.Resize
-        */
-        resize: null,
-        _setupDD: function() {
-            if (!YAHOO.util.DD) { return false; }
-            if (this.get('drag')) {
-                YAHOO.log('Attaching DD instance to Editor', 'info', 'SimpleEditor');
-                var d = this.get('drag'),
-                    dd = YAHOO.util.DD;
-                if (d === 'proxy') {
-                    dd = YAHOO.util.DDProxy;
-                }
-
-                this.dd = new dd(this.get('element_cont').get('element'));
-                this.toolbar.addClass('draggable'); 
-                this.dd.setHandleElId(this.toolbar._titlebar); 
-            }
-        },
-        /**
-        * @property dd
-        * @description A reference to the DragDrop object.
-        * @type YAHOO.util.DD/YAHOO.util.DDProxy
-        */
-        dd: null,
-        /**
-        * @private
-        * @property _lastCommand
-        * @description A cache of the last execCommand (used for Undo/Redo so they don't mark an undo level)
-        * @type String
-        */
-        _lastCommand: null,
-        _undoNodeChange: function() {},
-        _storeUndo: function() {},
-        /**
-        * @private
-        * @method _checkKey
-        * @description Checks a keyMap entry against a key event
-        * @param {Object} k The _keyMap object
-        * @param {Event} e The Mouse Event
-        * @return {Boolean}
-        */
-        _checkKey: function(k, e) {
-            var ret = false;
-            if ((e.keyCode === k.key)) {
-                if (k.mods && (k.mods.length > 0)) {
-                    var val = 0;
-                    for (var i = 0; i < k.mods.length; i++) {
-                        if (this.browser.mac) {
-                            if (k.mods[i] == 'ctrl') {
-                                k.mods[i] = 'meta';
-                            }
-                        }
-                        if (e[k.mods[i] + 'Key'] === true) {
-                            val++;
-                        }
-                    }
-                    if (val === k.mods.length) {
-                        ret = true;
-                    }
-                } else {
-                    ret = true;
-                }
-            }
-            //YAHOO.log('Shortcut Key Check: (' + k.key + ') return: ' + ret, 'info', 'SimpleEditor');
-            return ret;
-        },
-        /**
-        * @private
-        * @property _keyMap
-        * @description Named key maps for various actions in the Editor. Example: <code>CLOSE_WINDOW: { key: 87, mods: ['shift', 'ctrl'] }</code>. 
-        * This entry shows that when key 87 (W) is found with the modifiers of shift and control, the window will close. You can customize this object to tweak keyboard shortcuts.
-        * @type {Object/Mixed}
-        */
-        _keyMap: {
-            SELECT_ALL: {
-                key: 65, //A key
-                mods: ['ctrl']
-            },
-            CLOSE_WINDOW: {
-                key: 87, //W key
-                mods: ['shift', 'ctrl']
-            },
-            FOCUS_TOOLBAR: {
-                key: 27,
-                mods: ['shift']
-            },
-            FOCUS_AFTER: {
-                key: 27
-            },
-            CREATE_LINK: {
-                key: 76,
-                mods: ['shift', 'ctrl']
-            },
-            BOLD: {
-                key: 66,
-                mods: ['shift', 'ctrl']
-            },
-            ITALIC: {
-                key: 73,
-                mods: ['shift', 'ctrl']
-            },
-            UNDERLINE: {
-                key: 85,
-                mods: ['shift', 'ctrl']
-            },
-            UNDO: {
-                key: 90,
-                mods: ['ctrl']
-            },
-            REDO: {
-                key: 90,
-                mods: ['shift', 'ctrl']
-            },
-            JUSTIFY_LEFT: {
-                key: 219,
-                mods: ['shift', 'ctrl']
-            },
-            JUSTIFY_CENTER: {
-                key: 220,
-                mods: ['shift', 'ctrl']
-            },
-            JUSTIFY_RIGHT: {
-                key: 221,
-                mods: ['shift', 'ctrl']
-            }
-        },
-        /**
-        * @private
-        * @method _cleanClassName
-        * @description Makes a useable classname from dynamic data, by dropping it to lowercase and replacing spaces with -'s.
-        * @param {String} str The classname to clean up
-        * @return {String}
-        */
-        _cleanClassName: function(str) {
-            return str.replace(/ /g, '-').toLowerCase();
-        },
-        /**
-        * @property _textarea
-        * @description Flag to determine if we are using a textarea or an HTML Node.
-        * @type Boolean
-        */
-        _textarea: null,
-        /**
-        * @property _docType
-        * @description The DOCTYPE to use in the editable container.
-        * @type String
-        */
-        _docType: '<!DOCTYPE HTML PUBLIC "-/'+'/W3C/'+'/DTD HTML 4.01/'+'/EN" "http:/'+'/www.w3.org/TR/html4/strict.dtd">',
-        /**
-        * @property editorDirty
-        * @description This flag will be set when certain things in the Editor happen. It is to be used by the developer to check to see if content has changed.
-        * @type Boolean
-        */
-        editorDirty: null,
-        /**
-        * @property _defaultCSS
-        * @description The default CSS used in the config for 'css'. This way you can add to the config like this: { css: YAHOO.widget.SimpleEditor.prototype._defaultCSS + 'ADD MYY CSS HERE' }
-        * @type String
-        */
-        _defaultCSS: 'html { height: 95%; } body { padding: 7px; background-color: #fff; font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small; } a, a:visited, a:hover { color: blue !important; text-decoration: underline !important; cursor: text !important; } .warning-localfile { border-bottom: 1px dashed red !important; } .yui-busy { cursor: wait !important; } img.selected { border: 2px dotted #808080; } img { cursor: pointer !important; border: none; } body.ptags.webkit div { margin: 11px 0; }',
-        /**
-        * @property _defaultToolbar
-        * @private
-        * @description Default toolbar config.
-        * @type Object
-        */
-        _defaultToolbar: null,
-        /**
-        * @property _lastButton
-        * @private
-        * @description The last button pressed, so we don't disable it.
-        * @type Object
-        */
-        _lastButton: null,
-        /**
-        * @property _baseHREF
-        * @private
-        * @description The base location of the editable page (this page) so that relative paths for image work.
-        * @type String
-        */
-        _baseHREF: function() {
-            var href = document.location.href;
-            if (href.indexOf('?') !== -1) { //Remove the query string
-                href = href.substring(0, href.indexOf('?'));
-            }
-            href = href.substring(0, href.lastIndexOf('/')) + '/';
-            return href;
-        }(),
-        /**
-        * @property _lastImage
-        * @private
-        * @description Safari reference for the last image selected (for styling as selected).
-        * @type HTMLElement
-        */
-        _lastImage: null,
-        /**
-        * @property _blankImageLoaded
-        * @private
-        * @description Don't load the blank image more than once..
-        * @type Boolean
-        */
-        _blankImageLoaded: null,
-        /**
-        * @property _fixNodesTimer
-        * @private
-        * @description Holder for the fixNodes timer
-        * @type Date
-        */
-        _fixNodesTimer: null,
-        /**
-        * @property _nodeChangeTimer
-        * @private
-        * @description Holds a reference to the nodeChange setTimeout call
-        * @type Number
-        */
-        _nodeChangeTimer: null,
-        /**
-        * @property _lastNodeChangeEvent
-        * @private
-        * @description Flag to determine the last event that fired a node change
-        * @type Event
-        */
-        _lastNodeChangeEvent: null,
-        /**
-        * @property _lastNodeChange
-        * @private
-        * @description Flag to determine when the last node change was fired
-        * @type Date
-        */
-        _lastNodeChange: 0,
-        /**
-        * @property _rendered
-        * @private
-        * @description Flag to determine if editor has been rendered or not
-        * @type Boolean
-        */
-        _rendered: null,
-        /**
-        * @property DOMReady
-        * @private
-        * @description Flag to determine if DOM is ready or not
-        * @type Boolean
-        */
-        DOMReady: null,
-        /**
-        * @property _selection
-        * @private
-        * @description Holder for caching iframe selections
-        * @type Object
-        */
-        _selection: null,
-        /**
-        * @property _mask
-        * @private
-        * @description DOM Element holder for the editor Mask when disabled
-        * @type Object
-        */
-        _mask: null,
-        /**
-        * @property _showingHiddenElements
-        * @private
-        * @description Status of the hidden elements button
-        * @type Boolean
-        */
-        _showingHiddenElements: null,
-        /**
-        * @property currentWindow
-        * @description A reference to the currently open EditorWindow
-        * @type Object
-        */
-        currentWindow: null,
-        /**
-        * @property currentEvent
-        * @description A reference to the current editor event
-        * @type Event
-        */
-        currentEvent: null,
-        /**
-        * @property operaEvent
-        * @private
-        * @description setTimeout holder for Opera and Image DoubleClick event..
-        * @type Object
-        */
-        operaEvent: null,
-        /**
-        * @property currentFont
-        * @description A reference to the last font selected from the Toolbar
-        * @type HTMLElement
-        */
-        currentFont: null,
-        /**
-        * @property currentElement
-        * @description A reference to the current working element in the editor
-        * @type Array
-        */
-        currentElement: null,
-        /**
-        * @property dompath
-        * @description A reference to the dompath container for writing the current working dom path to.
-        * @type HTMLElement
-        */
-        dompath: null,
-        /**
-        * @property beforeElement
-        * @description A reference to the H2 placed before the editor for Accessibilty.
-        * @type HTMLElement
-        */
-        beforeElement: null,
-        /**
-        * @property afterElement
-        * @description A reference to the H2 placed after the editor for Accessibilty.
-        * @type HTMLElement
-        */
-        afterElement: null,
-        /**
-        * @property invalidHTML
-        * @description Contains a list of HTML elements that are invalid inside the editor. They will be removed when they are found. If you set the value of a key to "{ keepContents: true }", then the element will be replaced with a yui-non span to be filtered out when cleanHTML is called. The only tag that is ignored here is the span tag as it will force the Editor into a loop and freeze the browser. However.. all of these tags will be removed in the cleanHTML routine.
-        * @type Object
-        */
-        invalidHTML: {
-            form: true,
-            input: true,
-            button: true,
-            select: true,
-            link: true,
-            html: true,
-            body: true,
-            iframe: true,
-            script: true,
-            style: true,
-            textarea: true
-        },
-        /**
-        * @property toolbar
-        * @description Local property containing the <a href="YAHOO.widget.Toolbar.html">YAHOO.widget.Toolbar</a> instance
-        * @type <a href="YAHOO.widget.Toolbar.html">YAHOO.widget.Toolbar</a>
-        */
-        toolbar: null,
-        /**
-        * @private
-        * @property _contentTimer
-        * @description setTimeout holder for documentReady check
-        */
-        _contentTimer: null,
-        /**
-        * @private
-        * @property _contentTimerCounter
-        * @description Counter to check the number of times the body is polled for before giving up
-        * @type Number
-        */
-        _contentTimerCounter: 0,
-        /**
-        * @private
-        * @property _disabled
-        * @description The Toolbar items that should be disabled if there is no selection present in the editor.
-        * @type Array
-        */
-        _disabled: [ 'createlink', 'fontname', 'fontsize', 'forecolor', 'backcolor' ],
-        /**
-        * @private
-        * @property _alwaysDisabled
-        * @description The Toolbar items that should ALWAYS be disabled event if there is a selection present in the editor.
-        * @type Object
-        */
-        _alwaysDisabled: { undo: true, redo: true },
-        /**
-        * @private
-        * @property _alwaysEnabled
-        * @description The Toolbar items that should ALWAYS be enabled event if there isn't a selection present in the editor.
-        * @type Object
-        */
-        _alwaysEnabled: { },
-        /**
-        * @private
-        * @property _semantic
-        * @description The Toolbar commands that we should attempt to make tags out of instead of using styles.
-        * @type Object
-        */
-        _semantic: { 'bold': true, 'italic' : true, 'underline' : true },
-        /**
-        * @private
-        * @property _tag2cmd
-        * @description A tag map of HTML tags to convert to the different types of commands so we can select the proper toolbar button.
-        * @type Object
-        */
-        _tag2cmd: {
-            'b': 'bold',
-            'strong': 'bold',
-            'i': 'italic',
-            'em': 'italic',
-            'u': 'underline',
-            'sup': 'superscript',
-            'sub': 'subscript',
-            'img': 'insertimage',
-            'a' : 'createlink',
-            'ul' : 'insertunorderedlist',
-            'ol' : 'insertorderedlist'
-        },
-
-        /**
-        * @private _createIframe
-        * @description Creates the DOM and YUI Element for the iFrame editor area.
-        * @param {String} id The string ID to prefix the iframe with
-        * @return {Object} iFrame object
-        */
-        _createIframe: function() {
-            var ifrmDom = document.createElement('iframe');
-            ifrmDom.id = this.get('id') + '_editor';
-            var config = {
-                border: '0',
-                frameBorder: '0',
-                marginWidth: '0',
-                marginHeight: '0',
-                leftMargin: '0',
-                topMargin: '0',
-                allowTransparency: 'true',
-                width: '100%'
-            };
-            if (this.get('autoHeight')) {
-                config.scrolling = 'no';
-            }
-            for (var i in config) {
-                if (Lang.hasOwnProperty(config, i)) {
-                    ifrmDom.setAttribute(i, config[i]);
-                }
-            }
-            var isrc = 'javascript:;';
-            if (this.browser.ie) {
-                //isrc = 'about:blank';
-                //TODO - Check this, I have changed it before..
-                isrc = 'javascript:false;';
-            }
-            ifrmDom.setAttribute('src', isrc);
-            var ifrm = new YAHOO.util.Element(ifrmDom);
-            ifrm.setStyle('visibility', 'hidden');
-            return ifrm;
-        },
-        /**
-        * @private _isElement
-        * @description Checks to see if an Element reference is a valid one and has a certain tag type
-        * @param {HTMLElement} el The element to check
-        * @param {String} tag The tag that the element needs to be
-        * @return {Boolean}
-        */
-        _isElement: function(el, tag) {
-            if (el && el.tagName && (el.tagName.toLowerCase() == tag)) {
-                return true;
-            }
-            if (el && el.getAttribute && (el.getAttribute('tag') == tag)) {
-                return true;
-            }
-            return false;
-        },
-        /**
-        * @private _hasParent
-        * @description Checks to see if an Element reference or one of it's parents is a valid one and has a certain tag type
-        * @param {HTMLElement} el The element to check
-        * @param {String} tag The tag that the element needs to be
-        * @return HTMLElement
-        */
-        _hasParent: function(el, tag) {
-            if (!el || !el.parentNode) {
-                return false;
-            }
-            
-            while (el.parentNode) {
-                if (this._isElement(el, tag)) {
-                    return el;
-                }
-                if (el.parentNode) {
-                    el = el.parentNode;
-                } else {
-                    return false;
-                }
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _getDoc
-        * @description Get the Document of the IFRAME
-        * @return {Object}
-        */
-        _getDoc: function() {
-            var value = false;
-            if (this.get) {
-                if (this.get('iframe')) {
-                    if (this.get('iframe').get) {
-                        if (this.get('iframe').get('element')) {
-                            try {
-                                if (this.get('iframe').get('element').contentWindow) {
-                                    if (this.get('iframe').get('element').contentWindow.document) {
-                                        value = this.get('iframe').get('element').contentWindow.document;
-                                        return value;
-                                    }
-                                }
-                            } catch (e) {}
-                        }
-                    }
-                }
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _getWindow
-        * @description Get the Window of the IFRAME
-        * @return {Object}
-        */
-        _getWindow: function() {
-            return this.get('iframe').get('element').contentWindow;
-        },
-        /**
-        * @private
-        * @method _focusWindow
-        * @description Attempt to set the focus of the iframes window.
-        * @param {Boolean} onLoad Safari needs some special care to set the cursor in the iframe
-        */
-        _focusWindow: function(onLoad) {
-            if (this.browser.webkit) {
-                if (onLoad) {
-                    /**
-                    * @knownissue Safari Cursor Position
-                    * @browser Safari 2.x
-                    * @description Can't get Safari to place the cursor at the beginning of the text..
-                    * This workaround at least set's the toolbar into the proper state.
-                    */
-                    this._getSelection().setBaseAndExtent(this._getDoc().body.firstChild, 0, this._getDoc().body.firstChild, 1);
-                    if (this.browser.webkit3) {
-                        this._getSelection().collapseToStart();
-                    } else {
-                        this._getSelection().collapse(false);
-                    }
-                } else {
-                    this._getSelection().setBaseAndExtent(this._getDoc().body, 1, this._getDoc().body, 1);
-                    if (this.browser.webkit3) {
-                        this._getSelection().collapseToStart();
-                    } else {
-                        this._getSelection().collapse(false);
-                    }
-                }
-                this._getWindow().focus();
-            } else {
-                this._getWindow().focus();
-            }
-        },
-        /**
-        * @private
-        * @method _hasSelection
-        * @description Determines if there is a selection in the editor document.
-        * @return {Boolean}
-        */
-        _hasSelection: function() {
-            var sel = this._getSelection();
-            var range = this._getRange();
-            var hasSel = false;
-
-            if (!sel || !range) {
-                return hasSel;
-            }
-
-            //Internet Explorer
-            if (this.browser.ie || this.browser.opera) {
-                if (range.text) {
-                    hasSel = true;
-                }
-                if (range.html) {
-                    hasSel = true;
-                }
-            } else {
-                if (this.browser.webkit) {
-                    if (sel+'' !== '') {
-                        hasSel = true;
-                    }
-                } else {
-                    if (sel && (sel.toString() !== '') && (sel !== undefined)) {
-                        hasSel = true;
-                    }
-                }
-            }
-            return hasSel;
-        },
-        /**
-        * @private
-        * @method _getSelection
-        * @description Handles the different selection objects across the A-Grade list.
-        * @return {Object} Selection Object
-        */
-        _getSelection: function() {
-            var _sel = null;
-            if (this._getDoc() && this._getWindow()) {
-                if (this._getDoc().selection) {
-                    _sel = this._getDoc().selection;
-                } else {
-                    _sel = this._getWindow().getSelection();
-                }
-                //Handle Safari's lack of Selection Object
-                if (this.browser.webkit) {
-                    if (_sel.baseNode) {
-                            this._selection = {};
-                            this._selection.baseNode = _sel.baseNode;
-                            this._selection.baseOffset = _sel.baseOffset;
-                            this._selection.extentNode = _sel.extentNode;
-                            this._selection.extentOffset = _sel.extentOffset;
-                    } else if (this._selection !== null) {
-                        _sel = this._getWindow().getSelection();
-                        _sel.setBaseAndExtent(
-                            this._selection.baseNode,
-                            this._selection.baseOffset,
-                            this._selection.extentNode,
-                            this._selection.extentOffset);
-                        this._selection = null;
-                    }
-                }
-            }
-            return _sel;
-        },
-        /**
-        * @private
-        * @method _selectNode
-        * @description Places the highlight around a given node
-        * @param {HTMLElement} node The node to select
-        */
-        _selectNode: function(node, collapse) {
-            if (!node) {
-                return false;
-            }
-            var sel = this._getSelection(),
-                range = null;
-
-            if (this.browser.ie) {
-                try { //IE freaks out here sometimes..
-                    range = this._getDoc().body.createTextRange();
-                    range.moveToElementText(node);
-                    range.select();
-                } catch (e) {
-                    YAHOO.log('IE failed to select element: ' + node.tagName, 'warn', 'SimpleEditor');
-                }
-            } else if (this.browser.webkit) {
-                if (collapse) {
-				    sel.setBaseAndExtent(node, 1, node, node.innerText.length);
-                } else {
-				    sel.setBaseAndExtent(node, 0, node, node.innerText.length);
-                }
-            } else if (this.browser.opera) {
-                sel = this._getWindow().getSelection();
-                range = this._getDoc().createRange();
-                range.selectNode(node);
-                sel.removeAllRanges();
-                sel.addRange(range);
-            } else {
-                range = this._getDoc().createRange();
-                range.selectNodeContents(node);
-                sel.removeAllRanges();
-                sel.addRange(range);
-            }
-            //TODO - Check Performance
-            this.nodeChange();
-        },
-        /**
-        * @private
-        * @method _getRange
-        * @description Handles the different range objects across the A-Grade list.
-        * @return {Object} Range Object
-        */
-        _getRange: function() {
-            var sel = this._getSelection();
-
-            if (sel === null) {
-                return null;
-            }
-
-            if (this.browser.webkit && !sel.getRangeAt) {
-                var _range = this._getDoc().createRange();
-                try {
-                    _range.setStart(sel.anchorNode, sel.anchorOffset);
-                    _range.setEnd(sel.focusNode, sel.focusOffset);
-                } catch (e) {
-                    _range = this._getWindow().getSelection()+'';
-                }
-                return _range;
-            }
-
-            if (this.browser.ie || this.browser.opera) {
-                try {
-                    return sel.createRange();
-                } catch (e2) {
-                    return null;
-                }
-            }
-
-            if (sel.rangeCount > 0) {
-                return sel.getRangeAt(0);
-            }
-            return null;
-        },
-        /**
-        * @private
-        * @method _setDesignMode
-        * @description Sets the designMode of the iFrame document.
-        * @param {String} state This should be either on or off
-        */
-        _setDesignMode: function(state) {
-            try {
-                var set = true;
-                //SourceForge Bug #1807057
-                if (this.browser.ie && (state.toLowerCase() == 'off')) {
-                    set = false;
-                }
-                if (set) {
-                    this._getDoc().designMode = state;
-                }
-            } catch(e) { }
-        },
-        /**
-        * @private
-        * @method _toggleDesignMode
-        * @description Toggles the designMode of the iFrame document on and off.
-        * @return {String} The state that it was set to.
-        */
-        _toggleDesignMode: function() {
-            var _dMode = this._getDoc().designMode.toLowerCase(),
-                _state = 'on';
-            if (_dMode == 'on') {
-                _state = 'off';
-            }
-            this._setDesignMode(_state);
-            return _state;
-        },
-        /**
-        * @private
-        * @method _initEditorEvents
-        * @description This method sets up the listeners on the Editors document.
-        */
-        _initEditorEvents: function() {
-            //Setup Listeners on iFrame
-            var doc = this._getDoc();
-            Event.on(doc, 'mouseup', this._handleMouseUp, this, true);
-            Event.on(doc, 'mousedown', this._handleMouseDown, this, true);
-            Event.on(doc, 'click', this._handleClick, this, true);
-            Event.on(doc, 'dblclick', this._handleDoubleClick, this, true);
-            Event.on(doc, 'keypress', this._handleKeyPress, this, true);
-            Event.on(doc, 'keyup', this._handleKeyUp, this, true);
-            Event.on(doc, 'keydown', this._handleKeyDown, this, true);
-        },
-        /**
-        * @private
-        * @method _removeEditorEvents
-        * @description This method removes the listeners on the Editors document (for disabling).
-        */
-        _removeEditorEvents: function() {
-            //Remove Listeners on iFrame
-            var doc = this._getDoc();
-            Event.removeListener(doc, 'mouseup', this._handleMouseUp, this, true);
-            Event.removeListener(doc, 'mousedown', this._handleMouseDown, this, true);
-            Event.removeListener(doc, 'click', this._handleClick, this, true);
-            Event.removeListener(doc, 'dblclick', this._handleDoubleClick, this, true);
-            Event.removeListener(doc, 'keypress', this._handleKeyPress, this, true);
-            Event.removeListener(doc, 'keyup', this._handleKeyUp, this, true);
-            Event.removeListener(doc, 'keydown', this._handleKeyDown, this, true);
-        },
-        /**
-        * @private
-        * @method _initEditor
-        * @description This method is fired from _checkLoaded when the document is ready. It turns on designMode and set's up the listeners.
-        */
-        _initEditor: function() {
-            if (this.browser.ie) {
-                this._getDoc().body.style.margin = '0';
-            }
-            if (!this.get('disabled')) {
-                if (this._getDoc().designMode.toLowerCase() != 'on') {
-                    this._setDesignMode('on');
-                    this._contentTimerCounter = 0;
-                }
-            }
-            if (!this._getDoc().body) {
-                YAHOO.log('Body is null, check again', 'error', 'SimpleEditor');
-                this._contentTimerCounter = 0;
-                this._checkLoaded();
-                return false;
-            }
-            
-            YAHOO.log('editorLoaded', 'info', 'SimpleEditor');
-            this.toolbar.on('buttonClick', this._handleToolbarClick, this, true);
-            if (!this.get('disabled')) {
-                this._initEditorEvents();
-                this.toolbar.set('disabled', false);
-            }
-
-            this.fireEvent('editorContentLoaded', { type: 'editorLoaded', target: this });
-            if (this.get('dompath')) {
-                YAHOO.log('Delayed DomPath write', 'info', 'SimpleEditor');
-                var self = this;
-                setTimeout(function() {
-                    self._writeDomPath.call(self);
-                    self._setupResize.call(self);
-                }, 150);
-            }
-            var br = [];
-            for (var i in this.browser) {
-                if (this.browser[i]) {
-                    br.push(i);
-                }
-            }
-            if (this.get('ptags')) {
-                br.push('ptags');
-            }
-            Dom.addClass(this._getDoc().body, br.join(' '));
-            this.nodeChange(true);
-        },
-        /**
-        * @private
-        * @method _checkLoaded
-        * @description Called from a setTimeout loop to check if the iframes body.onload event has fired, then it will init the editor.
-        */
-        _checkLoaded: function() {
-            this._contentTimerCounter++;
-            if (this._contentTimer) {
-                clearTimeout(this._contentTimer);
-            }
-            if (this._contentTimerCounter > 500) {
-                YAHOO.log('ERROR: Body Did Not load', 'error', 'SimpleEditor');
-                return false;
-            }
-            var init = false;
-            try {
-                if (this._getDoc() && this._getDoc().body) {
-                    if (this.browser.ie) {
-                        if (this._getDoc().body.readyState == 'complete') {
-                            init = true;
-                        }
-                    } else {
-                        if (this._getDoc().body._rteLoaded === true) {
-                            init = true;
-                        }
-                    }
-                }
-            } catch (e) {
-                init = false;
-                YAHOO.log('checking body (e)' + e, 'error', 'SimpleEditor');
-            }
-
-            if (init === true) {
-                //The onload event has fired, clean up after ourselves and fire the _initEditor method
-                YAHOO.log('Firing _initEditor', 'info', 'SimpleEditor');
-                this._initEditor();
-            } else {
-                var self = this;
-                this._contentTimer = setTimeout(function() {
-                    self._checkLoaded.call(self);
-                }, 20);
-            }
-        },
-        /**
-        * @private
-        * @method _setInitialContent
-        * @description This method will open the iframes content document and write the textareas value into it, then start the body.onload checking.
-        */
-        _setInitialContent: function() {
-            YAHOO.log('Populating editor body with contents of the text area', 'info', 'SimpleEditor');
-
-            var value = ((this._textarea) ? this.get('element').value : this.get('element').innerHTML),
-                doc = null;
-
-            var html = Lang.substitute(this.get('html'), {
-                TITLE: this.STR_TITLE,
-                CONTENT: this._cleanIncomingHTML(value),
-                CSS: this.get('css'),
-                HIDDEN_CSS: ((this.get('hiddencss')) ? this.get('hiddencss') : '/* No Hidden CSS */'),
-                EXTRA_CSS: ((this.get('extracss')) ? this.get('extracss') : '/* No Extra CSS */')
-            }),
-            check = true;
-            if (document.compatMode != 'BackCompat') {
-                YAHOO.log('Adding Doctype to editable area', 'info', 'SimpleEditor');
-                html = this._docType + "\n" + html;
-            } else {
-                YAHOO.log('DocType skipped because we are in BackCompat Mode.', 'warn', 'SimpleEditor');
-            }
-
-            if (this.browser.ie || this.browser.webkit || this.browser.opera || (navigator.userAgent.indexOf('Firefox/1.5') != -1)) {
-                //Firefox 1.5 doesn't like setting designMode on an document created with a data url
-                try {
-                    //Adobe AIR Code
-                    if (this.browser.air) {
-                        doc = this._getDoc().implementation.createHTMLDocument();
-                        var origDoc = this._getDoc();
-                        origDoc.open();
-                        origDoc.close();
-                        doc.open();
-                        doc.write(html);
-                        doc.close();
-                        var node = origDoc.importNode(doc.getElementsByTagName("html")[0], true);
-                        origDoc.replaceChild(node, origDoc.getElementsByTagName("html")[0]);
-                        origDoc.body._rteLoaded = true;
-                    } else {
-                        doc = this._getDoc();
-                        doc.open();
-                        doc.write(html);
-                        doc.close();
-                    }
-                } catch (e) {
-                    YAHOO.log('Setting doc failed.. (_setInitialContent)', 'error', 'SimpleEditor');
-                    //Safari will only be here if we are hidden
-                    check = false;
-                }
-            } else {
-                //This keeps Firefox 2 from writing the iframe to history preserving the back buttons functionality
-                this.get('iframe').get('element').src = 'data:text/html;charset=utf-8,' + encodeURIComponent(html);
-            }
-            this.get('iframe').setStyle('visibility', '');
-            if (check) {
-                this._checkLoaded();
-            }            
-        },
-        /**
-        * @private
-        * @method _setMarkupType
-        * @param {String} action The action to take. Possible values are: css, default or semantic
-        * @description This method will turn on/off the useCSS execCommand.
-        */
-        _setMarkupType: function(action) {
-            switch (this.get('markup')) {
-                case 'css':
-                    this._setEditorStyle(true);
-                    break;
-                case 'default':
-                    this._setEditorStyle(false);
-                    break;
-                case 'semantic':
-                case 'xhtml':
-                    if (this._semantic[action]) {
-                        this._setEditorStyle(false);
-                    } else {
-                        this._setEditorStyle(true);
-                    }
-                    break;
-            }
-        },
-        /**
-        * Set the editor to use CSS instead of HTML
-        * @param {Booleen} stat True/False
-        */
-        _setEditorStyle: function(stat) {
-            try {
-                this._getDoc().execCommand('useCSS', false, !stat);
-            } catch (ex) {
-            }
-        },
-        /**
-        * @private
-        * @method _getSelectedElement
-        * @description This method will attempt to locate the element that was last interacted with, either via selection, location or event.
-        * @return {HTMLElement} The currently selected element.
-        */
-        _getSelectedElement: function() {
-            var doc = this._getDoc(),
-                range = null,
-                sel = null,
-                elm = null,
-                check = true;
-
-            if (this.browser.ie) {
-                this.currentEvent = this._getWindow().event; //Event utility assumes window.event, so we need to reset it to this._getWindow().event;
-                range = this._getRange();
-                if (range) {
-                    elm = range.item ? range.item(0) : range.parentElement();
-                    if (this._hasSelection()) {
-                        //TODO
-                        //WTF.. Why can't I get an element reference here?!??!
-                    }
-                    if (elm === doc.body) {
-                        elm = null;
-                    }
-                }
-                if ((this.currentEvent !== null) && (this.currentEvent.keyCode === 0)) {
-                    elm = Event.getTarget(this.currentEvent);
-                }
-            } else {
-                sel = this._getSelection();
-                range = this._getRange();
-
-                if (!sel || !range) {
-                    return null;
-                }
-                //TODO
-                if (!this._hasSelection() && this.browser.webkit3) {
-                    //check = false;
-                }
-                if (this.browser.gecko) {
-                    //Added in 2.6.0
-                    if (range.startContainer) {
-                        check = false;
-                        if (range.startContainer.nodeType === 3) {
-                            elm = range.startContainer.parentNode;
-                        } else if (range.startContainer.nodeType === 1) {
-                            elm = range.startContainer;
-                        } else {
-                            check = true;
-                        }
-                        if (!check) {
-                            this.currentEvent = null;
-                        }
-                    }
-                }
-                if (check) {
-                    if (sel.anchorNode && (sel.anchorNode.nodeType == 3)) {
-                        if (sel.anchorNode.parentNode) { //next check parentNode
-                            elm = sel.anchorNode.parentNode;
-                        }
-                        if (sel.anchorNode.nextSibling != sel.focusNode.nextSibling) {
-                            elm = sel.anchorNode.nextSibling;
-                        }
-                    }
-                    if (this._isElement(elm, 'br')) {
-                        elm = null;
-                    }
-                    if (!elm) {
-                        elm = range.commonAncestorContainer;
-                        if (!range.collapsed) {
-                            if (range.startContainer == range.endContainer) {
-                                if (range.startOffset - range.endOffset < 2) {
-                                    if (range.startContainer.hasChildNodes()) {
-                                        elm = range.startContainer.childNodes[range.startOffset];
-                                    }
-                                }
-                            }
-                        }
-                    }
-               }
-            }
-            
-            if (this.currentEvent !== null) {
-                try {
-                    switch (this.currentEvent.type) {
-                        case 'click':
-                        case 'mousedown':
-                        case 'mouseup':
-                            if (this.browser.webkit) {
-                                elm = Event.getTarget(this.currentEvent);
-                            }
-                            break;
-                        default:
-                            //Do nothing
-                            break;
-                    }
-                } catch (e) {
-                    YAHOO.log('Firefox 1.5 errors here: ' + e, 'error', 'SimpleEditor');
-                }
-            } else if ((this.currentElement && this.currentElement[0]) && (!this.browser.ie)) {
-                //TODO is this still needed?
-                //elm = this.currentElement[0];
-            }
-
-
-            if (this.browser.opera || this.browser.webkit) {
-                if (this.currentEvent && !elm) {
-                    elm = YAHOO.util.Event.getTarget(this.currentEvent);
-                }
-            }
-            if (!elm || !elm.tagName) {
-                elm = doc.body;
-            }
-            if (this._isElement(elm, 'html')) {
-                //Safari sometimes gives us the HTML node back..
-                elm = doc.body;
-            }
-            if (this._isElement(elm, 'body')) {
-                //make sure that body means this body not the parent..
-                elm = doc.body;
-            }
-            if (elm && !elm.parentNode) { //Not in document
-                elm = doc.body;
-            }
-            if (elm === undefined) {
-                elm = null;
-            }
-            return elm;
-        },
-        /**
-        * @private
-        * @method _getDomPath
-        * @description This method will attempt to build the DOM path from the currently selected element.
-        * @param HTMLElement el The element to start with, if not provided _getSelectedElement is used
-        * @return {Array} An array of node references that will create the DOM Path.
-        */
-        _getDomPath: function(el) {
-            if (!el) {
-			    el = this._getSelectedElement();
-            }
-			var domPath = [];
-            while (el !== null) {
-                if (el.ownerDocument != this._getDoc()) {
-                    el = null;
-                    break;
-                }
-                //Check to see if we get el.nodeName and nodeType
-                if (el.nodeName && el.nodeType && (el.nodeType == 1)) {
-                    domPath[domPath.length] = el;
-                }
-
-                if (this._isElement(el, 'body')) {
-                    break;
-                }
-
-                el = el.parentNode;
-            }
-            if (domPath.length === 0) {
-                if (this._getDoc() && this._getDoc().body) {
-                    domPath[0] = this._getDoc().body;
-                }
-            }
-            return domPath.reverse();
-        },
-        /**
-        * @private
-        * @method _writeDomPath
-        * @description Write the current DOM path out to the dompath container below the editor.
-        */
-        _writeDomPath: function() { 
-            var path = this._getDomPath(),
-                pathArr = [],
-                classPath = '',
-                pathStr = '';
-            for (var i = 0; i < path.length; i++) {
-                var tag = path[i].tagName.toLowerCase();
-                if ((tag == 'ol') && (path[i].type)) {
-                    tag += ':' + path[i].type;
-                }
-                if (Dom.hasClass(path[i], 'yui-tag')) {
-                    tag = path[i].getAttribute('tag');
-                }
-                if ((this.get('markup') == 'semantic') || (this.get('markup') == 'xhtml')) {
-                    switch (tag) {
-                        case 'b': tag = 'strong'; break;
-                        case 'i': tag = 'em'; break;
-                    }
-                }
-                if (!Dom.hasClass(path[i], 'yui-non')) {
-                    if (Dom.hasClass(path[i], 'yui-tag')) {
-                        pathStr = tag;
-                    } else {
-                        classPath = ((path[i].className !== '') ? '.' + path[i].className.replace(/ /g, '.') : '');
-                        if ((classPath.indexOf('yui') != -1) || (classPath.toLowerCase().indexOf('apple-style-span') != -1)) {
-                            classPath = '';
-                        }
-                        pathStr = tag + ((path[i].id) ? '#' + path[i].id : '') + classPath;
-                    }
-                    switch (tag) {
-                        case 'body':
-                            pathStr = 'body';
-                            break;
-                        case 'a':
-                            if (path[i].getAttribute('href', 2)) {
-                                pathStr += ':' + path[i].getAttribute('href', 2).replace('mailto:', '').replace('http:/'+'/', '').replace('https:/'+'/', ''); //May need to add others here ftp
-                            }
-                            break;
-                        case 'img':
-                            var h = path[i].height;
-                            var w = path[i].width;
-                            if (path[i].style.height) {
-                                h = parseInt(path[i].style.height, 10);
-                            }
-                            if (path[i].style.width) {
-                                w = parseInt(path[i].style.width, 10);
-                            }
-                            pathStr += '(' + w + 'x' + h + ')';
-                        break;
-                    }
-
-                    if (pathStr.length > 10) {
-                        pathStr = '<span title="' + pathStr + '">' + pathStr.substring(0, 10) + '...' + '</span>';
-                    } else {
-                        pathStr = '<span title="' + pathStr + '">' + pathStr + '</span>';
-                    }
-                    pathArr[pathArr.length] = pathStr;
-                }
-            }
-            var str = pathArr.join(' ' + this.SEP_DOMPATH + ' ');
-            //Prevent flickering
-            if (this.dompath.innerHTML != str) {
-                this.dompath.innerHTML = str;
-            }
-        },
-        /**
-        * @private
-        * @method _fixNodes
-        * @description Fix href and imgs as well as remove invalid HTML.
-        */
-        _fixNodes: function() {
-            var doc = this._getDoc(),
-                els = [];
-
-            for (var v in this.invalidHTML) {
-                if (YAHOO.lang.hasOwnProperty(this.invalidHTML, v)) {
-                    if (v.toLowerCase() != 'span') {
-                        var tags = doc.body.getElementsByTagName(v);
-                        if (tags.length) {
-                            for (var i = 0; i < tags.length; i++) {
-                                els.push(tags[i]);
-                            }
-                        }
-                    }
-                }
-            }
-            for (var h = 0; h < els.length; h++) {
-                if (els[h].parentNode) {
-                    if (Lang.isObject(this.invalidHTML[els[h].tagName.toLowerCase()]) && this.invalidHTML[els[h].tagName.toLowerCase()].keepContents) {
-                        this._swapEl(els[h], 'span', function(el) {
-                            el.className = 'yui-non';
-                        });
-                    } else {
-                        els[h].parentNode.removeChild(els[h]);
-                    }
-                }
-            }
-            var imgs = this._getDoc().getElementsByTagName('img');
-            Dom.addClass(imgs, 'yui-img');   
-        },
-        /**
-        * @private
-        * @method _isNonEditable
-        * @param Event ev The Dom event being checked
-        * @description Method is called at the beginning of all event handlers to check if this element or a parent element has the class yui-noedit (this.CLASS_NOEDIT) applied.
-        * If it does, then this method will stop the event and return true. The event handlers will then return false and stop the nodeChange from occuring. This method will also
-        * disable and enable the Editor's toolbar based on the noedit state.
-        * @return Boolean
-        */
-        _isNonEditable: function(ev) {
-            if (this.get('allowNoEdit')) {
-                var el = Event.getTarget(ev);
-                if (this._isElement(el, 'html')) {
-                    el = null;
-                }
-                var path = this._getDomPath(el);
-                for (var i = (path.length - 1); i > -1; i--) {
-                    if (Dom.hasClass(path[i], this.CLASS_NOEDIT)) {
-                        //if (this.toolbar.get('disabled') === false) {
-                        //    this.toolbar.set('disabled', true);
-                        //}
-                        try {
-                             this._getDoc().execCommand('enableObjectResizing', false, 'false');
-                        } catch (e) {}
-                        this.nodeChange();
-                        Event.stopEvent(ev);
-                        YAHOO.log('CLASS_NOEDIT found in DOM Path, stopping event', 'info', 'SimpleEditor');
-                        return true;
-                    }
-                }
-                //if (this.toolbar.get('disabled') === true) {
-                    //Should only happen once..
-                    //this.toolbar.set('disabled', false);
-                    try {
-                         this._getDoc().execCommand('enableObjectResizing', false, 'true');
-                    } catch (e2) {}
-                //}
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _setCurrentEvent
-        * @param {Event} ev The event to cache
-        * @description Sets the current event property
-        */
-        _setCurrentEvent: function(ev) {
-            this.currentEvent = ev;
-        },
-        /**
-        * @private
-        * @method _handleClick
-        * @param {Event} ev The event we are working on.
-        * @description Handles all click events inside the iFrame document.
-        */
-        _handleClick: function(ev) {
-            var ret = this.fireEvent('beforeEditorClick', { type: 'beforeEditorClick', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this.browser.webkit) {
-                var tar =Event.getTarget(ev);
-                if (this._isElement(tar, 'a') || this._isElement(tar.parentNode, 'a')) {
-                    Event.stopEvent(ev);
-                    this.nodeChange();
-                }
-            } else {
-                this.nodeChange();
-            }
-            this.fireEvent('editorClick', { type: 'editorClick', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleMouseUp
-        * @param {Event} ev The event we are working on.
-        * @description Handles all mouseup events inside the iFrame document.
-        */
-        _handleMouseUp: function(ev) {
-            var ret = this.fireEvent('beforeEditorMouseUp', { type: 'beforeEditorMouseUp', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            //Don't set current event for mouseup.
-            //It get's fired after a menu is closed and gives up a bogus event to work with
-            //this._setCurrentEvent(ev);
-            var self = this;
-            if (this.browser.opera) {
-                /**
-                * @knownissue Opera appears to stop the MouseDown, Click and DoubleClick events on an image inside of a document with designMode on..
-                * @browser Opera
-                * @description This work around traps the MouseUp event and sets a timer to check if another MouseUp event fires in so many seconds. If another event is fired, they we internally fire the DoubleClick event.
-                */
-                var sel = Event.getTarget(ev);
-                if (this._isElement(sel, 'img')) {
-                    this.nodeChange();
-                    if (this.operaEvent) {
-                        clearTimeout(this.operaEvent);
-                        this.operaEvent = null;
-                        this._handleDoubleClick(ev);
-                    } else {
-                        this.operaEvent = window.setTimeout(function() {
-                            self.operaEvent = false;
-                        }, 700);
-                    }
-                }
-            }
-            //This will stop Safari from selecting the entire document if you select all the text in the editor
-            if (this.browser.webkit || this.browser.opera) {
-                if (this.browser.webkit) {
-                    Event.stopEvent(ev);
-                }
-            }
-            this.nodeChange();
-            this.fireEvent('editorMouseUp', { type: 'editorMouseUp', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleMouseDown
-        * @param {Event} ev The event we are working on.
-        * @description Handles all mousedown events inside the iFrame document.
-        */
-        _handleMouseDown: function(ev) {
-            var ret = this.fireEvent('beforeEditorMouseDown', { type: 'beforeEditorMouseDown', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            var sel = Event.getTarget(ev);
-            if (this.browser.webkit && this._hasSelection()) {
-                var _sel = this._getSelection();
-                if (!this.browser.webkit3) {
-                    _sel.collapse(true);
-                } else {
-                    _sel.collapseToStart();
-                }
-            }
-            if (this.browser.webkit && this._lastImage) {
-                Dom.removeClass(this._lastImage, 'selected');
-                this._lastImage = null;
-            }
-            if (this._isElement(sel, 'img') || this._isElement(sel, 'a')) {
-                if (this.browser.webkit) {
-                    Event.stopEvent(ev);
-                    if (this._isElement(sel, 'img')) {
-                        Dom.addClass(sel, 'selected');
-                        this._lastImage = sel;
-                    }
-                }
-                if (this.currentWindow) {
-                    this.closeWindow();
-                }
-                this.nodeChange();
-            }
-            this.fireEvent('editorMouseDown', { type: 'editorMouseDown', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleDoubleClick
-        * @param {Event} ev The event we are working on.
-        * @description Handles all doubleclick events inside the iFrame document.
-        */
-        _handleDoubleClick: function(ev) {
-            var ret = this.fireEvent('beforeEditorDoubleClick', { type: 'beforeEditorDoubleClick', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            var sel = Event.getTarget(ev);
-            if (this._isElement(sel, 'img')) {
-                this.currentElement[0] = sel;
-                this.toolbar.fireEvent('insertimageClick', { type: 'insertimageClick', target: this.toolbar });
-                this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-            } else if (this._hasParent(sel, 'a')) { //Handle elements inside an a
-                this.currentElement[0] = this._hasParent(sel, 'a');
-                this.toolbar.fireEvent('createlinkClick', { type: 'createlinkClick', target: this.toolbar });
-                this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-            }
-            this.nodeChange();
-            this.fireEvent('editorDoubleClick', { type: 'editorDoubleClick', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleKeyUp
-        * @param {Event} ev The event we are working on.
-        * @description Handles all keyup events inside the iFrame document.
-        */
-        _handleKeyUp: function(ev) {
-            var ret = this.fireEvent('beforeEditorKeyUp', { type: 'beforeEditorKeyUp', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            switch (ev.keyCode) {
-                case this._keyMap.SELECT_ALL.key:
-                    if (this._checkKey(this._keyMap.SELECT_ALL, ev)) {
-                        this.nodeChange();
-                    }
-                    break;
-                case 32: //Space Bar
-                case 35: //End
-                case 36: //Home
-                case 37: //Left Arrow
-                case 38: //Up Arrow
-                case 39: //Right Arrow
-                case 40: //Down Arrow
-                case 46: //Forward Delete
-                case 8: //Delete
-                case this._keyMap.CLOSE_WINDOW.key: //W key if window is open
-                    if ((ev.keyCode == this._keyMap.CLOSE_WINDOW.key) && this.currentWindow) {
-                        if (this._checkKey(this._keyMap.CLOSE_WINDOW, ev)) {
-                            this.closeWindow();
-                        }
-                    } else {
-                        if (!this.browser.ie) {
-                            if (this._nodeChangeTimer) {
-                                clearTimeout(this._nodeChangeTimer);
-                            }
-                            var self = this;
-                            this._nodeChangeTimer = setTimeout(function() {
-                                self._nodeChangeTimer = null;
-                                self.nodeChange.call(self);
-                            }, 100);
-                        } else {
-                            this.nodeChange();
-                        }
-                        this.editorDirty = true;
-                    }
-                    break;
-            }
-            this.fireEvent('editorKeyUp', { type: 'editorKeyUp', target: this, ev: ev });
-            this._storeUndo();
-        },
-        /**
-        * @private
-        * @method _handleKeyPress
-        * @param {Event} ev The event we are working on.
-        * @description Handles all keypress events inside the iFrame document.
-        */
-        _handleKeyPress: function(ev) {
-            var ret = this.fireEvent('beforeEditorKeyPress', { type: 'beforeEditorKeyPress', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-
-            if (this.get('allowNoEdit')) {
-                //if (ev && ev.keyCode && ((ev.keyCode == 46) || ev.keyCode == 63272)) {
-                if (ev && ev.keyCode && (ev.keyCode == 63272)) {
-                    //Forward delete key
-                    YAHOO.log('allowNoEdit is set, forward delete key has been disabled', 'warn', 'SimpleEditor');
-                    Event.stopEvent(ev);
-                }
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            if (this.browser.opera) {
-                if (ev.keyCode === 13) {
-                    var tar = this._getSelectedElement();
-                    if (!this._isElement(tar, 'li')) {
-                        this.execCommand('inserthtml', '<br>');
-                        Event.stopEvent(ev);
-                    }
-                }
-            }
-            if (this.browser.webkit) {
-                if (!this.browser.webkit3) {
-                    if (ev.keyCode && (ev.keyCode == 122) && (ev.metaKey)) {
-                        //This is CMD + z (for undo)
-                        if (this._hasParent(this._getSelectedElement(), 'li')) {
-                            YAHOO.log('We are in an LI and we found CMD + z, stopping the event', 'warn', 'SimpleEditor');
-                            Event.stopEvent(ev);
-                        }
-                    }
-                }
-                this._listFix(ev);
-            }
-            this.fireEvent('editorKeyPress', { type: 'editorKeyPress', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleKeyDown
-        * @param {Event} ev The event we are working on.
-        * @description Handles all keydown events inside the iFrame document.
-        */
-        _handleKeyDown: function(ev) {
-            var ret = this.fireEvent('beforeEditorKeyDown', { type: 'beforeEditorKeyDown', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            var tar = null, _range = null;
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            var doExec = false,
-                action = null,
-                exec = false;
-
-            //YAHOO.log('keyCode: ' + ev.keyCode, 'info', 'SimpleEditor');
-
-            switch (ev.keyCode) {
-                case this._keyMap.FOCUS_TOOLBAR.key:
-                    if (this._checkKey(this._keyMap.FOCUS_TOOLBAR, ev)) {
-                        var h = this.toolbar.getElementsByTagName('h2')[0];
-                        if (h && h.firstChild) {
-                            h.firstChild.focus();
-                        }
-                    } else if (this._checkKey(this._keyMap.FOCUS_AFTER, ev)) {
-                        //Focus After Element - Esc
-                        this.afterElement.focus();
-                    }
-                    Event.stopEvent(ev);
-                    doExec = false;
-                    break;
-                //case 76: //L
-                case this._keyMap.CREATE_LINK.key: //L
-                    if (this._hasSelection()) {
-                        if (this._checkKey(this._keyMap.CREATE_LINK, ev)) {
-                            var makeLink = true;
-                            if (this.get('limitCommands')) {
-                                if (!this.toolbar.getButtonByValue('createlink')) {
-                                    YAHOO.log('Toolbar Button for (createlink) was not found, skipping exec.', 'info', 'SimpleEditor');
-                                    makeLink = false;
-                                }
-                            }
-                            if (makeLink) {
-                                this.execCommand('createlink', '');
-                                this.toolbar.fireEvent('createlinkClick', { type: 'createlinkClick', target: this.toolbar });
-                                this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-                                doExec = false;
-                            }
-                        }
-                    }
-                    break;
-                //case 90: //Z
-                case this._keyMap.UNDO.key:
-                case this._keyMap.REDO.key:
-                    if (this._checkKey(this._keyMap.REDO, ev)) {
-                        action = 'redo';
-                        doExec = true;
-                    } else if (this._checkKey(this._keyMap.UNDO, ev)) {
-                        action = 'undo';
-                        doExec = true;
-                    }
-                    break;
-                //case 66: //B
-                case this._keyMap.BOLD.key:
-                    if (this._checkKey(this._keyMap.BOLD, ev)) {
-                        action = 'bold';
-                        doExec = true;
-                    }
-                    break;
-                //case 73: //I
-                case this._keyMap.ITALIC.key:
-                    if (this._checkKey(this._keyMap.ITALIC, ev)) {
-                        action = 'italic';
-                        doExec = true;
-                    }
-                    break;
-                //case 85: //U
-                case this._keyMap.UNDERLINE.key:
-                    if (this._checkKey(this._keyMap.UNDERLINE, ev)) {
-                        action = 'underline';
-                        doExec = true;
-                    }
-                    break;
-                case 9:
-                    if (this.browser.ie) {
-                        //Insert a tab in Internet Explorer
-                        _range = this._getRange();
-                        tar = this._getSelectedElement();
-                        if (!this._isElement(tar, 'li')) {
-                            if (_range) {
-                                _range.pasteHTML('&nbsp;&nbsp;&nbsp;&nbsp;');
-                                _range.collapse(false);
-                                _range.select();
-                            }
-                            Event.stopEvent(ev);
-                        }
-                    }
-                    //Firefox 3 code
-                    if (this.browser.gecko > 1.8) {
-                        tar = this._getSelectedElement();
-                        if (this._isElement(tar, 'li')) {
-                            if (ev.shiftKey) {
-                                this._getDoc().execCommand('outdent', null, '');
-                            } else {
-                                this._getDoc().execCommand('indent', null, '');
-                            }
-                            
-                        } else if (!this._hasSelection()) {
-                            this.execCommand('inserthtml', '&nbsp;&nbsp;&nbsp;&nbsp;');
-                        }
-                        Event.stopEvent(ev);
-                    }
-                    break;
-                case 13:
-                    if (this.get('ptags') && !ev.shiftKey) {
-                        if (this.browser.gecko) {
-                            tar = this._getSelectedElement();
-                            if (!this._isElement(tar, 'li')) {
-                                doExec = true;
-                                action = 'insertparagraph';
-                                Event.stopEvent(ev);
-                            }
-                        }
-                        if (this.browser.webkit) {
-                            tar = this._getSelectedElement();
-                            if (!this._hasParent(tar, 'li')) {
-                                doExec = true;
-                                action = 'insertparagraph';
-                                Event.stopEvent(ev);
-                            }
-                        }
-                    } else {
-                        if (this.browser.ie) {
-                            YAHOO.log('Stopping P tags', 'info', 'SimpleEditor');
-                            //Insert a <br> instead of a <p></p> in Internet Explorer
-                            _range = this._getRange();
-                            tar = this._getSelectedElement();
-                            if (!this._isElement(tar, 'li')) {
-                                if (_range) {
-                                    _range.pasteHTML('<br>');
-                                    _range.collapse(false);
-                                    _range.select();
-                                }
-                                Event.stopEvent(ev);
-                            }
-                        }
-                    }
-                    break;
-            }
-            if (this.browser.ie) {
-                this._listFix(ev);
-            }
-            if (doExec && action) {
-                this.execCommand(action, null);
-                Event.stopEvent(ev);
-                this.nodeChange();
-            }
-            this.fireEvent('editorKeyDown', { type: 'editorKeyDown', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _listFix
-        * @param {Event} ev The event we are working on.
-        * @description Handles the Enter key, Tab Key and Shift + Tab keys for List Items.
-        */
-        _listFix: function(ev) {
-            //YAHOO.log('Lists Fix (' + ev.keyCode + ')', 'info', 'SimpleEditor');
-            var testLi = null, par = null, preContent = false, range = null;
-            //Enter Key
-            if (this.browser.webkit) {
-                if (ev.keyCode && (ev.keyCode == 13)) {
-                    if (this._hasParent(this._getSelectedElement(), 'li')) {
-                        var tar = this._hasParent(this._getSelectedElement(), 'li');
-                        if (tar.previousSibling) {
-                            if (tar.firstChild && (tar.firstChild.length == 1)) {
-                                this._selectNode(tar);
-                            }
-                        }
-                    }
-                }
-            }
-            //Shift + Tab Key
-            if (ev.keyCode && ((!this.browser.webkit3 && (ev.keyCode == 25)) || ((this.browser.webkit3 || !this.browser.webkit) && ((ev.keyCode == 9) && ev.shiftKey)))) {
-                testLi = this._getSelectedElement();
-                if (this._hasParent(testLi, 'li')) {
-                    testLi = this._hasParent(testLi, 'li');
-                    YAHOO.log('We have a SHIFT tab in an LI, reverse it..', 'info', 'SimpleEditor');
-                    if (this._hasParent(testLi, 'ul') || this._hasParent(testLi, 'ol')) {
-                        YAHOO.log('We have a double parent, move up a level', 'info', 'SimpleEditor');
-                        par = this._hasParent(testLi, 'ul');
-                        if (!par) {
-                            par = this._hasParent(testLi, 'ol');
-                        }
-                        //YAHOO.log(par.previousSibling + ' :: ' + par.previousSibling.innerHTML);
-                        if (this._isElement(par.previousSibling, 'li')) {
-                            par.removeChild(testLi);
-                            par.parentNode.insertBefore(testLi, par.nextSibling);
-                            if (this.browser.ie) {
-                                range = this._getDoc().body.createTextRange();
-                                range.moveToElementText(testLi);
-                                range.collapse(false);
-                                range.select();
-                            }
-                            if (this.browser.webkit) {
-                                this._selectNode(testLi.firstChild);
-                            }
-                            Event.stopEvent(ev);
-                        }
-                    }
-                }
-            }
-            //Tab Key
-            if (ev.keyCode && ((ev.keyCode == 9) && (!ev.shiftKey))) {
-                YAHOO.log('List Fix - Tab', 'info', 'SimpleEditor');
-                var preLi = this._getSelectedElement();
-                if (this._hasParent(preLi, 'li')) {
-                    preContent = this._hasParent(preLi, 'li').innerHTML;
-                }
-                //YAHOO.log('preLI: ' + preLi.tagName + ' :: ' + preLi.innerHTML);
-                if (this.browser.webkit) {
-                    this._getDoc().execCommand('inserttext', false, '\t');
-                }
-                testLi = this._getSelectedElement();
-                if (this._hasParent(testLi, 'li')) {
-                    YAHOO.log('We have a tab in an LI', 'info', 'SimpleEditor');
-                    par = this._hasParent(testLi, 'li');
-                    YAHOO.log('parLI: ' + par.tagName + ' :: ' + par.innerHTML);
-                    var newUl = this._getDoc().createElement(par.parentNode.tagName.toLowerCase());
-                    if (this.browser.webkit) {
-                        var span = Dom.getElementsByClassName('Apple-tab-span', 'span', par);
-                        //Remove the span element that Safari puts in
-                        if (span[0]) {
-                            par.removeChild(span[0]);
-                            par.innerHTML = Lang.trim(par.innerHTML);
-                            //Put the HTML from the LI into this new LI
-                            if (preContent) {
-                                par.innerHTML = '<span class="yui-non">' + preContent + '</span>&nbsp;';
-                            } else {
-                                par.innerHTML = '<span class="yui-non">&nbsp;</span>&nbsp;';
-                            }
-                        }
-                    } else {
-                        if (preContent) {
-                            par.innerHTML = preContent + '&nbsp;';
-                        } else {
-                            par.innerHTML = '&nbsp;';
-                        }
-                    }
-
-                    par.parentNode.replaceChild(newUl, par);
-                    newUl.appendChild(par);
-                    if (this.browser.webkit) {
-                        this._getSelection().setBaseAndExtent(par.firstChild, 1, par.firstChild, par.firstChild.innerText.length);
-                        if (!this.browser.webkit3) {
-                            par.parentNode.parentNode.style.display = 'list-item';
-                            setTimeout(function() {
-                                par.parentNode.parentNode.style.display = 'block';
-                            }, 1);
-                        }
-                    } else if (this.browser.ie) {
-                        range = this._getDoc().body.createTextRange();
-                        range.moveToElementText(par);
-                        range.collapse(false);
-                        range.select();
-                    } else {
-                        this._selectNode(par);
-                    }
-                    Event.stopEvent(ev);
-                }
-                if (this.browser.webkit) {
-                    Event.stopEvent(ev);
-                }
-                this.nodeChange();
-            }
-        },
-        /**
-        * @method nodeChange
-        * @param {Boolean} force Optional paramenter to skip the threshold counter
-        * @description Handles setting up the toolbar buttons, getting the Dom path, fixing nodes.
-        */
-        nodeChange: function(force) {
-            var NCself = this;
-            this._storeUndo();
-            if (this.get('nodeChangeDelay')) {
-                window.setTimeout(function() {
-                    NCself._nodeChange.apply(NCself, arguments);
-                }, 0);
-            } else {
-                this._nodeChange();
-            }
-        },
-        /**
-        * @private
-        * @method _nodeChange
-        * @param {Boolean} force Optional paramenter to skip the threshold counter
-        * @description Fired from nodeChange in a setTimeout.
-        */
-        _nodeChange: function(force) {
-            var threshold = parseInt(this.get('nodeChangeThreshold'), 10),
-                thisNodeChange = Math.round(new Date().getTime() / 1000),
-                self = this;
-
-            if (force === true) {
-                this._lastNodeChange = 0;
-            }
-            
-            if ((this._lastNodeChange + threshold) < thisNodeChange) {
-                if (this._fixNodesTimer === null) {
-                    this._fixNodesTimer = window.setTimeout(function() {
-                        self._fixNodes.call(self);
-                        self._fixNodesTimer = null;
-                    }, 0);
-                }
-            }
-            this._lastNodeChange = thisNodeChange;
-            if (this.currentEvent) {
-                try {
-                    this._lastNodeChangeEvent = this.currentEvent.type;
-                } catch (e) {}
-            }
-
-            var beforeNodeChange = this.fireEvent('beforeNodeChange', { type: 'beforeNodeChange', target: this });
-            if (beforeNodeChange === false) {
-                return false;
-            }
-            if (this.get('dompath')) {
-                window.setTimeout(function() {
-                    self._writeDomPath.call(self);
-                }, 0);
-            }
-            //Check to see if we are disabled before continuing
-            if (!this.get('disabled')) {
-                if (this.STOP_NODE_CHANGE) {
-                    //Reset this var for next action
-                    this.STOP_NODE_CHANGE = false;
-                    return false;
-                } else {
-                    var sel = this._getSelection(),
-                        range = this._getRange(),
-                        el = this._getSelectedElement(),
-                        fn_button = this.toolbar.getButtonByValue('fontname'),
-                        fs_button = this.toolbar.getButtonByValue('fontsize'),
-                        undo_button = this.toolbar.getButtonByValue('undo'),
-                        redo_button = this.toolbar.getButtonByValue('redo');
-
-                    //Handle updating the toolbar with active buttons
-                    var _ex = {};
-                    if (this._lastButton) {
-                        _ex[this._lastButton.id] = true;
-                        //this._lastButton = null;
-                    }
-                    if (!this._isElement(el, 'body')) {
-                        if (fn_button) {
-                            _ex[fn_button.get('id')] = true;
-                        }
-                        if (fs_button) {
-                            _ex[fs_button.get('id')] = true;
-                        }
-                    }
-                    if (redo_button) {
-                        delete _ex[redo_button.get('id')];
-                    }
-                    this.toolbar.resetAllButtons(_ex);
-
-                    //Handle disabled buttons
-                    for (var d = 0; d < this._disabled.length; d++) {
-                        var _button = this.toolbar.getButtonByValue(this._disabled[d]);
-                        if (_button && _button.get) {
-                            if (this._lastButton && (_button.get('id') === this._lastButton.id)) {
-                                //Skip
-                            } else {
-                                if (!this._hasSelection() && !this.get('insert')) {
-                                    switch (this._disabled[d]) {
-                                        case 'fontname':
-                                        case 'fontsize':
-                                            break;
-                                        default:
-                                            //No Selection - disable
-                                            this.toolbar.disableButton(_button);
-                                    }
-                                } else {
-                                    if (!this._alwaysDisabled[this._disabled[d]]) {
-                                        this.toolbar.enableButton(_button);
-                                    }
-                                }
-                                if (!this._alwaysEnabled[this._disabled[d]]) {
-                                    this.toolbar.deselectButton(_button);
-                                }
-                            }
-                        }
-                    }
-                    var path = this._getDomPath();
-                    var tag = null, cmd = null;
-                    for (var i = 0; i < path.length; i++) {
-                        tag = path[i].tagName.toLowerCase();
-                        if (path[i].getAttribute('tag')) {
-                            tag = path[i].getAttribute('tag').toLowerCase();
-                        }
-                        cmd = this._tag2cmd[tag];
-                        if (cmd === undefined) {
-                            cmd = [];
-                        }
-                        if (!Lang.isArray(cmd)) {
-                            cmd = [cmd];
-                        }
-
-                        //Bold and Italic styles
-                        if (path[i].style.fontWeight.toLowerCase() == 'bold') {
-                            cmd[cmd.length] = 'bold';
-                        }
-                        if (path[i].style.fontStyle.toLowerCase() == 'italic') {
-                            cmd[cmd.length] = 'italic';
-                        }
-                        if (path[i].style.textDecoration.toLowerCase() == 'underline') {
-                            cmd[cmd.length] = 'underline';
-                        }
-                        if (path[i].style.textDecoration.toLowerCase() == 'line-through') {
-                            cmd[cmd.length] = 'strikethrough';
-                        }
-                        if (cmd.length > 0) {
-                            for (var j = 0; j < cmd.length; j++) {
-                                this.toolbar.selectButton(cmd[j]);
-                                this.toolbar.enableButton(cmd[j]);
-                            }
-                        }
-                        //Handle Alignment
-                        switch (path[i].style.textAlign.toLowerCase()) {
-                            case 'left':
-                            case 'right':
-                            case 'center':
-                            case 'justify':
-                                var alignType = path[i].style.textAlign.toLowerCase();
-                                if (path[i].style.textAlign.toLowerCase() == 'justify') {
-                                    alignType = 'full';
-                                }
-                                this.toolbar.selectButton('justify' + alignType);
-                                this.toolbar.enableButton('justify' + alignType);
-                                break;
-                        }
-                    }
-                    //After for loop
-
-                    //Reset Font Family and Size to the inital configs
-                    if (fn_button) {
-                        var family = fn_button._configs.label._initialConfig.value;
-                        fn_button.set('label', '<span class="yui-toolbar-fontname-' + this._cleanClassName(family) + '">' + family + '</span>');
-                        this._updateMenuChecked('fontname', family);
-                    }
-
-                    if (fs_button) {
-                        fs_button.set('label', fs_button._configs.label._initialConfig.value);
-                    }
-
-                    var hd_button = this.toolbar.getButtonByValue('heading');
-                    if (hd_button) {
-                        hd_button.set('label', hd_button._configs.label._initialConfig.value);
-                        this._updateMenuChecked('heading', 'none');
-                    }
-                    var img_button = this.toolbar.getButtonByValue('insertimage');
-                    if (img_button && this.currentWindow && (this.currentWindow.name == 'insertimage')) {
-                        this.toolbar.disableButton(img_button);
-                    }
-                    if (this._lastButton && this._lastButton.isSelected) {
-                        this.toolbar.deselectButton(this._lastButton.id);
-                    }
-                    this._undoNodeChange();
-                }
-            }
-
-            this.fireEvent('afterNodeChange', { type: 'afterNodeChange', target: this });
-        },
-        /**
-        * @private
-        * @method _updateMenuChecked
-        * @param {Object} button The command identifier of the button you want to check
-        * @param {String} value The value of the menu item you want to check
-        * @param {<a href="YAHOO.widget.Toolbar.html">YAHOO.widget.Toolbar</a>} The Toolbar instance the button belongs to (defaults to this.toolbar) 
-        * @description Gets the menu from a button instance, if the menu is not rendered it will render it. It will then search the menu for the specified value, unchecking all other items and checking the specified on.
-        */
-        _updateMenuChecked: function(button, value, tbar) {
-            if (!tbar) {
-                tbar = this.toolbar;
-            }
-            var _button = tbar.getButtonByValue(button);
-            _button.checkValue(value);
-        },
-        /**
-        * @private
-        * @method _handleToolbarClick
-        * @param {Event} ev The event that triggered the button click
-        * @description This is an event handler attached to the Toolbar's buttonClick event. It will fire execCommand with the command identifier from the Toolbar Button.
-        */
-        _handleToolbarClick: function(ev) {
-            var value = '';
-            var str = '';
-            var cmd = ev.button.value;
-            if (ev.button.menucmd) {
-                value = cmd;
-                cmd = ev.button.menucmd;
-            }
-            this._lastButton = ev.button;
-            if (this.STOP_EXEC_COMMAND) {
-                YAHOO.log('execCommand skipped because we found the STOP_EXEC_COMMAND flag set to true', 'warn', 'SimpleEditor');
-                YAHOO.log('NOEXEC::execCommand::(' + cmd + '), (' + value + ')', 'warn', 'SimpleEditor');
-                this.STOP_EXEC_COMMAND = false;
-                return false;
-            } else {
-                this.execCommand(cmd, value);
-                if (!this.browser.webkit) {
-                     var Fself = this;
-                     setTimeout(function() {
-                         Fself._focusWindow.call(Fself);
-                     }, 5);
-                 }
-            }
-            Event.stopEvent(ev);
-        },
-        /**
-        * @private
-        * @method _setupAfterElement
-        * @description Creates the accessibility h2 header and places it after the iframe in the Dom for navigation.
-        */
-        _setupAfterElement: function() {
-            if (!this.beforeElement) {
-                this.beforeElement = document.createElement('h2');
-                this.beforeElement.className = 'yui-editor-skipheader';
-                this.beforeElement.tabIndex = '-1';
-                this.beforeElement.innerHTML = this.STR_BEFORE_EDITOR;
-                this.get('element_cont').get('firstChild').insertBefore(this.beforeElement, this.toolbar.get('nextSibling'));
-            }
-            if (!this.afterElement) {
-                this.afterElement = document.createElement('h2');
-                this.afterElement.className = 'yui-editor-skipheader';
-                this.afterElement.tabIndex = '-1';
-                this.afterElement.innerHTML = this.STR_LEAVE_EDITOR;
-                this.get('element_cont').get('firstChild').appendChild(this.afterElement);
-            }
-        },
-        /**
-        * @private
-        * @method _disableEditor
-        * @param {Boolean} disabled Pass true to disable, false to enable
-        * @description Creates a mask to place over the Editor.
-        */
-        _disableEditor: function(disabled) {
-            if (disabled) {
-                this._removeEditorEvents();
-                if (!this._mask) {
-                    if (!!this.browser.ie) {
-                        this._setDesignMode('off');
-                    }
-                    if (this.toolbar) {
-                        this.toolbar.set('disabled', true);
-                    }
-                    this._mask = document.createElement('DIV');
-                    Dom.setStyle(this._mask, 'height', '100%');
-                    Dom.setStyle(this._mask, 'width', '100%');
-                    Dom.setStyle(this._mask, 'position', 'absolute');
-                    Dom.setStyle(this._mask, 'top', '0');
-                    Dom.setStyle(this._mask, 'left', '0');
-                    Dom.setStyle(this._mask, 'opacity', '.5');
-                    Dom.addClass(this._mask, 'yui-editor-masked');
-                    this.get('iframe').get('parentNode').appendChild(this._mask);
-                }
-            } else {
-                this._initEditorEvents();
-                if (this._mask) {
-                    this._mask.parentNode.removeChild(this._mask);
-                    this._mask = null;
-                    if (this.toolbar) {
-                        this.toolbar.set('disabled', false);
-                    }
-                    this._setDesignMode('on');
-                    this._focusWindow();
-                    var self = this;
-                    window.setTimeout(function() {
-                        self.nodeChange.call(self);
-                    }, 100);
-                }
-            }
-        },
-        /**
-        * @property SEP_DOMPATH
-        * @description The value to place in between the Dom path items
-        * @type String
-        */
-        SEP_DOMPATH: '<',
-        /**
-        * @property STR_LEAVE_EDITOR
-        * @description The accessibility string for the element after the iFrame
-        * @type String
-        */
-        STR_LEAVE_EDITOR: 'You have left the Rich Text Editor.',
-        /**
-        * @property STR_BEFORE_EDITOR
-        * @description The accessibility string for the element before the iFrame
-        * @type String
-        */
-        STR_BEFORE_EDITOR: 'This text field can contain stylized text and graphics. To cycle through all formatting options, use the keyboard shortcut Shift + Escape to place focus on the toolbar and navigate between options with your arrow keys. To exit this text editor use the Escape key and continue tabbing. <h4>Common formatting keyboard shortcuts:</h4><ul><li>Control Shift B sets text to bold</li> <li>Control Shift I sets text to italic</li> <li>Control Shift U underlines text</li> <li>Control Shift L adds an HTML link</li></ul>',
-        /**
-        * @property STR_TITLE
-        * @description The Title of the HTML document that is created in the iFrame
-        * @type String
-        */
-        STR_TITLE: 'Rich Text Area.',
-        /**
-        * @property STR_IMAGE_HERE
-        * @description The text to place in the URL textbox when using the blankimage.
-        * @type String
-        */
-        STR_IMAGE_HERE: 'Image URL Here',
-        /**
-        * @property STR_LINK_URL
-        * @description The label string for the Link URL.
-        * @type String
-        */
-        STR_LINK_URL: 'Link URL',
-        /**
-        * @protected
-        * @property STOP_EXEC_COMMAND
-        * @description Set to true when you want the default execCommand function to not process anything
-        * @type Boolean
-        */
-        STOP_EXEC_COMMAND: false,
-        /**
-        * @protected
-        * @property STOP_NODE_CHANGE
-        * @description Set to true when you want the default nodeChange function to not process anything
-        * @type Boolean
-        */
-        STOP_NODE_CHANGE: false,
-        /**
-        * @protected
-        * @property CLASS_NOEDIT
-        * @description CSS class applied to elements that are not editable.
-        * @type String
-        */
-        CLASS_NOEDIT: 'yui-noedit',
-        /**
-        * @protected
-        * @property CLASS_CONTAINER
-        * @description Default CSS class to apply to the editors container element
-        * @type String
-        */
-        CLASS_CONTAINER: 'yui-editor-container',
-        /**
-        * @protected
-        * @property CLASS_EDITABLE
-        * @description Default CSS class to apply to the editors iframe element
-        * @type String
-        */
-        CLASS_EDITABLE: 'yui-editor-editable',
-        /**
-        * @protected
-        * @property CLASS_EDITABLE_CONT
-        * @description Default CSS class to apply to the editors iframe's parent element
-        * @type String
-        */
-        CLASS_EDITABLE_CONT: 'yui-editor-editable-container',
-        /**
-        * @protected
-        * @property CLASS_PREFIX
-        * @description Default prefix for dynamically created class names
-        * @type String
-        */
-        CLASS_PREFIX: 'yui-editor',
-        /** 
-        * @property browser
-        * @description Standard browser detection
-        * @type Object
-        */
-        browser: function() {
-            var br = YAHOO.env.ua;
-            //Check for webkit3
-            if (br.webkit >= 420) {
-                br.webkit3 = br.webkit;
-            } else {
-                br.webkit3 = 0;
-            }
-            br.mac = false;
-            //Check for Mac
-            if (navigator.userAgent.indexOf('Macintosh') !== -1) {
-                br.mac = true;
-            }
-
-            return br;
-        }(),
-        /** 
-        * @method init
-        * @description The Editor class' initialization method
-        */
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.log('init', 'info', 'SimpleEditor');
-
-            if (!this._defaultToolbar) {
-                this._defaultToolbar = {
-                    collapse: true,
-                    titlebar: 'Text Editing Tools',
-                    draggable: false,
-                    buttons: [
-                        { group: 'fontstyle', label: 'Font Name and Size',
-                            buttons: [
-                                { type: 'select', label: 'Arial', value: 'fontname', disabled: true,
-                                    menu: [
-                                        { text: 'Arial', checked: true },
-                                        { text: 'Arial Black' },
-                                        { text: 'Comic Sans MS' },
-                                        { text: 'Courier New' },
-                                        { text: 'Lucida Console' },
-                                        { text: 'Tahoma' },
-                                        { text: 'Times New Roman' },
-                                        { text: 'Trebuchet MS' },
-                                        { text: 'Verdana' }
-                                    ]
-                                },
-                                { type: 'spin', label: '13', value: 'fontsize', range: [ 9, 75 ], disabled: true }
-                            ]
-                        },
-                        { type: 'separator' },
-                        { group: 'textstyle', label: 'Font Style',
-                            buttons: [
-                                { type: 'push', label: 'Bold CTRL + SHIFT + B', value: 'bold' },
-                                { type: 'push', label: 'Italic CTRL + SHIFT + I', value: 'italic' },
-                                { type: 'push', label: 'Underline CTRL + SHIFT + U', value: 'underline' },
-                                { type: 'push', label: 'Strike Through', value: 'strikethrough' },
-                                { type: 'separator' },
-                                { type: 'color', label: 'Font Color', value: 'forecolor', disabled: true },
-                                { type: 'color', label: 'Background Color', value: 'backcolor', disabled: true }
-                                
-                            ]
-                        },
-                        { type: 'separator' },
-                        { group: 'indentlist', label: 'Lists',
-                            buttons: [
-                                { type: 'push', label: 'Create an Unordered List', value: 'insertunorderedlist' },
-                                { type: 'push', label: 'Create an Ordered List', value: 'insertorderedlist' }
-                            ]
-                        },
-                        { type: 'separator' },
-                        { group: 'insertitem', label: 'Insert Item',
-                            buttons: [
-                                { type: 'push', label: 'HTML Link CTRL + SHIFT + L', value: 'createlink', disabled: true },
-                                { type: 'push', label: 'Insert Image', value: 'insertimage' }
-                            ]
-                        }
-                    ]
-                };
-            }
-
-            YAHOO.widget.SimpleEditor.superclass.init.call(this, p_oElement, p_oAttributes);
-            YAHOO.widget.EditorInfo._instances[this.get('id')] = this;
-
-
-            this.currentElement = [];
-            this.on('contentReady', function() {
-                this.DOMReady = true;
-                this.fireQueue();
-            }, this, true);
-
-        },
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create 
-        * the editor.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the editor.
-        */
-        initAttributes: function(attr) {
-            YAHOO.widget.SimpleEditor.superclass.initAttributes.call(this, attr);
-            var self = this;
-
-            /**
-            * @config nodeChangeDelay
-            * @description Do we wrap the nodeChange method in a timeout for performance, default: true.
-            * @default true
-            * @type Number
-            */
-            this.setAttributeConfig('nodeChangeDelay', {
-                value: ((attr.nodeChangeDelay === false) ? false : true)
-            });
-            /**
-            * @config maxUndo
-            * @description The max number of undo levels to store.
-            * @default 30
-            * @type Number
-            */
-            this.setAttributeConfig('maxUndo', {
-                writeOnce: true,
-                value: attr.maxUndo || 30
-            });
-
-            /**
-            * @config ptags
-            * @description If true, the editor uses <P> tags instead of <br> tags. (Use Shift + Enter to get a <br>)
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('ptags', {
-                writeOnce: true,
-                value: attr.ptags || false
-            });
-            /**
-            * @config insert
-            * @description If true, selection is not required for: fontname, fontsize, forecolor, backcolor.
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('insert', {
-                writeOnce: true,
-                value: attr.insert || false,
-                method: function(insert) {
-                    if (insert) {
-                        var buttons = {
-                            fontname: true,
-                            fontsize: true,
-                            forecolor: true,
-                            backcolor: true
-                        };
-                        var tmp = this._defaultToolbar.buttons;
-                        for (var i = 0; i < tmp.length; i++) {
-                            if (tmp[i].buttons) {
-                                for (var a = 0; a < tmp[i].buttons.length; a++) {
-                                    if (tmp[i].buttons[a].value) {
-                                        if (buttons[tmp[i].buttons[a].value]) {
-                                            delete tmp[i].buttons[a].disabled;
-                                        }
-                                    }
-                                }
-                            }
-                        }
-                    }
-                }
-            });
-            /**
-            * @config container
-            * @description Used when dynamically creating the Editor from Javascript with no default textarea.
-            * We will create one and place it in this container. If no container is passed we will append to document.body.
-            * @default false
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('container', {
-                writeOnce: true,
-                value: attr.container || false
-            });
-            /**
-            * @config plainText
-            * @description Process the inital textarea data as if it was plain text. Accounting for spaces, tabs and line feeds.
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('plainText', {
-                writeOnce: true,
-                value: attr.plainText || false
-            });
-            /**
-            * @private
-            * @config iframe
-            * @description Internal config for holding the iframe element.
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('iframe', {
-                value: null
-            });
-            /**
-            * @private
-            * @depreciated
-            * @config textarea
-            * @description Internal config for holding the textarea element (replaced with element).
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('textarea', {
-                value: null,
-                writeOnce: true
-            });
-            /**
-            * @private
-            * @config container
-            * @description Internal config for holding a reference to the container to append a dynamic editor to.
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('container', {
-                readOnly: true,
-                value: null
-            });
-            /**
-            * @config nodeChangeThreshold
-            * @description The number of seconds that need to be in between nodeChange processing
-            * @default 3
-            * @type Number
-            */            
-            this.setAttributeConfig('nodeChangeThreshold', {
-                value: attr.nodeChangeThreshold || 3,
-                validator: YAHOO.lang.isNumber
-            });
-            /**
-            * @config allowNoEdit
-            * @description Should the editor check for non-edit fields. It should be noted that this technique is not perfect. If the user does the right things, they will still be able to make changes.
-            * Such as highlighting an element below and above the content and hitting a toolbar button or a shortcut key.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('allowNoEdit', {
-                value: attr.allowNoEdit || false,
-                validator: YAHOO.lang.isBoolean
-            });
-            /**
-            * @config limitCommands
-            * @description Should the Editor limit the allowed execCommands to the ones available in the toolbar. If true, then execCommand and keyboard shortcuts will fail if they are not defined in the toolbar.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('limitCommands', {
-                value: attr.limitCommands || false,
-                validator: YAHOO.lang.isBoolean
-            });
-            /**
-            * @config element_cont
-            * @description Internal config for the editors container
-            * @default false
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('element_cont', {
-                value: attr.element_cont
-            });
-            /**
-            * @private
-            * @config editor_wrapper
-            * @description The outter wrapper for the entire editor.
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('editor_wrapper', {
-                value: attr.editor_wrapper || null,
-                writeOnce: true
-            });
-            /**
-            * @attribute height
-            * @description The height of the editor iframe container, not including the toolbar..
-            * @default Best guessed size of the textarea, for best results use CSS to style the height of the textarea or pass it in as an argument
-            * @type String
-            */
-            this.setAttributeConfig('height', {
-                value: attr.height || Dom.getStyle(self.get('element'), 'height'),
-                method: function(height) {
-                    if (this._rendered) {
-                        //We have been rendered, change the height
-                        if (this.get('animate')) {
-                            var anim = new YAHOO.util.Anim(this.get('iframe').get('parentNode'), {
-                                height: {
-                                    to: parseInt(height, 10)
-                                }
-                            }, 0.5);
-                            anim.animate();
-                        } else {
-                            Dom.setStyle(this.get('iframe').get('parentNode'), 'height', height);
-                        }
-                    }
-                }
-            });
-            /**
-            * @config autoHeight
-            * @description Remove the scrollbars from the edit area and resize it to fit the content. It will not go any lower than the current config height.
-            * @default false
-            * @type Boolean || Number
-            */
-            this.setAttributeConfig('autoHeight', {
-                value: attr.autoHeight || false,
-                method: function(a) {
-                    if (a) {
-                        if (this.get('iframe')) {
-                            this.get('iframe').get('element').setAttribute('scrolling', 'no');
-                        }
-                        this.on('afterNodeChange', this._handleAutoHeight, this, true);
-                        this.on('editorKeyDown', this._handleAutoHeight, this, true);
-                        this.on('editorKeyPress', this._handleAutoHeight, this, true);
-                    } else {
-                        if (this.get('iframe')) {
-                            this.get('iframe').get('element').setAttribute('scrolling', 'auto');
-                        }
-                        this.unsubscribe('afterNodeChange', this._handleAutoHeight);
-                        this.unsubscribe('editorKeyDown', this._handleAutoHeight);
-                        this.unsubscribe('editorKeyPress', this._handleAutoHeight);
-                    }
-                }
-            });
-            /**
-            * @attribute width
-            * @description The width of the editor container.
-            * @default Best guessed size of the textarea, for best results use CSS to style the width of the textarea or pass it in as an argument
-            * @type String
-            */            
-            this.setAttributeConfig('width', {
-                value: attr.width || Dom.getStyle(this.get('element'), 'width'),
-                method: function(width) {
-                    if (this._rendered) {
-                        //We have been rendered, change the width
-                        if (this.get('animate')) {
-                            var anim = new YAHOO.util.Anim(this.get('element_cont').get('element'), {
-                                width: {
-                                    to: parseInt(width, 10)
-                                }
-                            }, 0.5);
-                            anim.animate();
-                        } else {
-                            this.get('element_cont').setStyle('width', width);
-                        }
-                    }
-                }
-            });
-                        
-            /**
-            * @attribute blankimage
-            * @description The URL for the image placeholder to put in when inserting an image.
-            * @default The yahooapis.com address for the current release + 'assets/blankimage.png'
-            * @type String
-            */            
-            this.setAttributeConfig('blankimage', {
-                value: attr.blankimage || this._getBlankImage()
-            });
-            /**
-            * @attribute css
-            * @description The Base CSS used to format the content of the editor
-            * @default <code><pre>html {
-                height: 95%;
-            }
-            body {
-                height: 100%;
-                padding: 7px; background-color: #fff; font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;
-            }
-            a {
-                color: blue;
-                text-decoration: underline;
-                cursor: pointer;
-            }
-            .warning-localfile {
-                border-bottom: 1px dashed red !important;
-            }
-            .yui-busy {
-                cursor: wait !important;
-            }
-            img.selected { //Safari image selection
-                border: 2px dotted #808080;
-            }
-            img {
-                cursor: pointer !important;
-                border: none;
-            }
-            </pre></code>
-            * @type String
-            */            
-            this.setAttributeConfig('css', {
-                value: attr.css || this._defaultCSS,
-                writeOnce: true
-            });
-            /**
-            * @attribute html
-            * @description The default HTML to be written to the iframe document before the contents are loaded (Note that the DOCTYPE attr will be added at render item)
-            * @default This HTML requires a few things if you are to override:
-                <p><code>{TITLE}, {CSS}, {HIDDEN_CSS}, {EXTRA_CSS}</code> and <code>{CONTENT}</code> need to be there, they are passed to YAHOO.lang.substitute to be replace with other strings.<p>
-                <p><code>onload="document.body._rteLoaded = true;"</code> : the onload statement must be there or the editor will not finish loading.</p>
-                <code>
-                <pre>
-                &lt;html&gt;
-                    &lt;head&gt;
-                        &lt;title&gt;{TITLE}&lt;/title&gt;
-                        &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt;
-                        &lt;style&gt;
-                        {CSS}
-                        &lt;/style&gt;
-                        &lt;style&gt;
-                        {HIDDEN_CSS}
-                        &lt;/style&gt;
-                        &lt;style&gt;
-                        {EXTRA_CSS}
-                        &lt;/style&gt;
-                    &lt;/head&gt;
-                &lt;body onload="document.body._rteLoaded = true;"&gt;
-                {CONTENT}
-                &lt;/body&gt;
-                &lt;/html&gt;
-                </pre>
-                </code>
-            * @type String
-            */            
-            this.setAttributeConfig('html', {
-                value: attr.html || '<html><head><title>{TITLE}</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><base href="' + this._baseHREF + '"><style>{CSS}</style><style>{HIDDEN_CSS}</style><style>{EXTRA_CSS}</style></head><body onload="document.body._rteLoaded = true;">{CONTENT}</body></html>',
-                writeOnce: true
-            });
-
-            /**
-            * @attribute extracss
-            * @description Extra user defined css to load after the default SimpleEditor CSS
-            * @default ''
-            * @type String
-            */            
-            this.setAttributeConfig('extracss', {
-                value: attr.extracss || '',
-                writeOnce: true
-            });
-
-            /**
-            * @attribute handleSubmit
-            * @description Config handles if the editor will attach itself to the textareas parent form's submit handler.
-            If it is set to true, the editor will attempt to attach a submit listener to the textareas parent form.
-            Then it will trigger the editors save handler and place the new content back into the text area before the form is submitted.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('handleSubmit', {
-                value: attr.handleSubmit || false,
-                method: function(exec) {
-                    if (this.get('element').form) {
-                        if (!this._formButtons) {
-                            this._formButtons = [];
-                        }
-                        if (exec) {
-                            Event.on(this.get('element').form, 'submit', this._handleFormSubmit, this, true);
-                            var i = this.get('element').form.getElementsByTagName('input');
-                            for (var s = 0; s < i.length; s++) {
-                                var type = i[s].getAttribute('type');
-                                if (type && (type.toLowerCase() == 'submit')) {
-                                    Event.on(i[s], 'click', this._handleFormButtonClick, this, true);
-                                    this._formButtons[this._formButtons.length] = i[s];
-                                }
-                            }
-                        } else {
-                            Event.removeListener(this.get('element').form, 'submit', this._handleFormSubmit);
-                            if (this._formButtons) {
-                                Event.removeListener(this._formButtons, 'click', this._handleFormButtonClick);
-                            }
-                        }
-                    }
-                }
-            });
-            /**
-            * @attribute disabled
-            * @description This will toggle the editor's disabled state. When the editor is disabled, designMode is turned off and a mask is placed over the iframe so no interaction can take place.
-            All Toolbar buttons are also disabled so they cannot be used.
-            * @default false
-            * @type Boolean
-            */
-
-            this.setAttributeConfig('disabled', {
-                value: false,
-                method: function(disabled) {
-                    if (this._rendered) {
-                        this._disableEditor(disabled);
-                    }
-                }
-            });
-            /**
-            * @config saveEl
-            * @description When save HTML is called, this element will be updated as well as the source of data.
-            * @default element
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('saveEl', {
-                value: this.get('element')
-            });
-            /**
-            * @config toolbar_cont
-            * @description Internal config for the toolbars container
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('toolbar_cont', {
-                value: null,
-                writeOnce: true
-            });
-            /**
-            * @attribute toolbar
-            * @description The default toolbar config.
-            * @type Object
-            */            
-            this.setAttributeConfig('toolbar', {
-                value: attr.toolbar || this._defaultToolbar,
-                writeOnce: true,
-                method: function(toolbar) {
-                    if (!toolbar.buttonType) {
-                        toolbar.buttonType = this._defaultToolbar.buttonType;
-                    }
-                    this._defaultToolbar = toolbar;
-                }
-            });
-            /**
-            * @attribute animate
-            * @description Should the editor animate window movements
-            * @default false unless Animation is found, then true
-            * @type Boolean
-            */            
-            this.setAttributeConfig('animate', {
-                value: ((attr.animate) ? ((YAHOO.util.Anim) ? true : false) : false),
-                validator: function(value) {
-                    var ret = true;
-                    if (!YAHOO.util.Anim) {
-                        ret = false;
-                    }
-                    return ret;
-                }
-            });
-            /**
-            * @config panel
-            * @description A reference to the panel we are using for windows.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('panel', {
-                value: null,
-                writeOnce: true,
-                validator: function(value) {
-                    var ret = true;
-                    if (!YAHOO.widget.Overlay) {
-                        ret = false;
-                    }
-                    return ret;
-                }               
-            });
-            /**
-            * @attribute focusAtStart
-            * @description Should we focus the window when the content is ready?
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('focusAtStart', {
-                value: attr.focusAtStart || false,
-                writeOnce: true,
-                method: function(fs) {
-                    if (fs) {
-                        this.on('editorContentLoaded', function() {
-                            var self = this;
-                            setTimeout(function() {
-                                self._focusWindow.call(self, true);
-                                self.editorDirty = false;
-                            }, 400);
-                        }, this, true);
-                    }
-                }
-            });
-            /**
-            * @attribute dompath
-            * @description Toggle the display of the current Dom path below the editor
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('dompath', {
-                value: attr.dompath || false,
-                method: function(dompath) {
-                    if (dompath && !this.dompath) {
-                        this.dompath = document.createElement('DIV');
-                        this.dompath.id = this.get('id') + '_dompath';
-                        Dom.addClass(this.dompath, 'dompath');
-                        this.get('element_cont').get('firstChild').appendChild(this.dompath);
-                        if (this.get('iframe')) {
-                            this._writeDomPath();
-                        }
-                    } else if (!dompath && this.dompath) {
-                        this.dompath.parentNode.removeChild(this.dompath);
-                        this.dompath = null;
-                    }
-                }
-            });
-            /**
-            * @attribute markup
-            * @description Should we try to adjust the markup for the following types: semantic, css, default or xhtml
-            * @default "semantic"
-            * @type String
-            */            
-            this.setAttributeConfig('markup', {
-                value: attr.markup || 'semantic',
-                validator: function(markup) {
-                    switch (markup.toLowerCase()) {
-                        case 'semantic':
-                        case 'css':
-                        case 'default':
-                        case 'xhtml':
-                        return true;
-                    }
-                    return false;
-                }
-            });
-            /**
-            * @attribute removeLineBreaks
-            * @description Should we remove linebreaks and extra spaces on cleanup
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('removeLineBreaks', {
-                value: attr.removeLineBreaks || false,
-                validator: YAHOO.lang.isBoolean
-            });
-            
-            /**
-            * @config drag
-            * @description Set this config to make the Editor draggable, pass 'proxy' to make use YAHOO.util.DDProxy.
-            * @type {Boolean/String}
-            */
-            this.setAttributeConfig('drag', {
-                writeOnce: true,
-                value: attr.drag || false
-            });
-
-            /**
-            * @config resize
-            * @description Set this to true to make the Editor Resizable with YAHOO.util.Resize. The default config is available: myEditor._resizeConfig
-            * Animation will be ignored while performing this resize to allow for the dynamic change in size of the toolbar.
-            * @type Boolean
-            */
-            this.setAttributeConfig('resize', {
-                writeOnce: true,
-                value: attr.resize || false
-            });
-        },
-        /**
-        * @private
-        * @method _getBlankImage
-        * @description Retrieves the full url of the image to use as the blank image.
-        * @return {String} The URL to the blank image
-        */
-        _getBlankImage: function() {
-            if (!this.DOMReady) {
-                this._queue[this._queue.length] = ['_getBlankImage', arguments];
-                return '';
-            }
-            var img = '';
-            if (!this._blankImageLoaded) {
-                if (YAHOO.widget.EditorInfo.blankImage) {
-                    this.set('blankimage', YAHOO.widget.EditorInfo.blankImage);
-                    this._blankImageLoaded = true;
-                } else {
-                    var div = document.createElement('div');
-                    div.style.position = 'absolute';
-                    div.style.top = '-9999px';
-                    div.style.left = '-9999px';
-                    div.className = this.CLASS_PREFIX + '-blankimage';
-                    document.body.appendChild(div);
-                    img = YAHOO.util.Dom.getStyle(div, 'background-image');
-                    img = img.replace('url(', '').replace(')', '').replace(/"/g, '');
-                    //Adobe AIR Code
-                    img = img.replace('app:/', '');             
-                    this.set('blankimage', img);
-                    this._blankImageLoaded = true;
-                    div.parentNode.removeChild(div);
-                    YAHOO.widget.EditorInfo.blankImage = img;
-                }
-            } else {
-                img = this.get('blankimage');
-            }
-            return img;
-        },
-        /**
-        * @private
-        * @method _handleAutoHeight
-        * @description Handles resizing the editor's height based on the content
-        */
-        _handleAutoHeight: function() {
-            var doc = this._getDoc(),
-                body = doc.body,
-                docEl = doc.documentElement;
-
-            var height = parseInt(Dom.getStyle(this.get('editor_wrapper'), 'height'), 10);
-            var newHeight = body.scrollHeight;
-            if (this.browser.webkit) {
-                newHeight = docEl.scrollHeight;
-            }
-            if (newHeight < parseInt(this.get('height'), 10)) {
-                newHeight = parseInt(this.get('height'), 10);
-            }
-            if ((height != newHeight) && (newHeight >= parseInt(this.get('height'), 10))) {   
-                Dom.setStyle(this.get('editor_wrapper'), 'height', newHeight + 'px');
-                if (this.browser.ie) {
-                    //Internet Explorer needs this
-                    this.get('iframe').setStyle('height', '99%');
-                    this.get('iframe').setStyle('zoom', '1');
-                    var self = this;
-                    window.setTimeout(function() {
-                        self.get('iframe').setStyle('height', '100%');
-                    }, 1);
-                }
-            }
-        },
-        /**
-        * @private
-        * @property _formButtons
-        * @description Array of buttons that are in the Editor's parent form (for handleSubmit)
-        * @type Array
-        */
-        _formButtons: null,
-        /**
-        * @private
-        * @property _formButtonClicked
-        * @description The form button that was clicked to submit the form.
-        * @type HTMLElement
-        */
-        _formButtonClicked: null,
-        /**
-        * @private
-        * @method _handleFormButtonClick
-        * @description The click listener assigned to each submit button in the Editor's parent form.
-        * @param {Event} ev The click event
-        */
-        _handleFormButtonClick: function(ev) {
-            var tar = Event.getTarget(ev);
-            this._formButtonClicked = tar;
-        },
-        /**
-        * @private
-        * @method _handleFormSubmit
-        * @description Handles the form submission.
-        * @param {Object} ev The Form Submit Event
-        */
-        _handleFormSubmit: function(ev) {
-            this.saveHTML();
-
-            var form = this.get('element').form,
-                tar = this._formButtonClicked || false;
-
-            Event.removeListener(form, 'submit', this._handleFormSubmit);
-            if (YAHOO.env.ua.ie) {
-                //form.fireEvent("onsubmit");
-                if (tar && !tar.disabled) {
-                    tar.click();
-                }
-            } else {  // Gecko, Opera, and Safari
-                if (tar && !tar.disabled) {
-                    tar.click();
-                }
-                var oEvent = document.createEvent("HTMLEvents");
-                oEvent.initEvent("submit", true, true);
-                form.dispatchEvent(oEvent);
-                if (YAHOO.env.ua.webkit) {
-                    if (YAHOO.lang.isFunction(form.submit)) {
-                        form.submit();
-                    }
-                }
-            }
-            //2.6.0
-            //Removed this, not need since removing Safari 2.x
-            //Event.stopEvent(ev);
-        },
-        /**
-        * @private
-        * @method _handleFontSize
-        * @description Handles the font size button in the toolbar.
-        * @param {Object} o Object returned from Toolbar's buttonClick Event
-        */
-        _handleFontSize: function(o) {
-            var button = this.toolbar.getButtonById(o.button.id);
-            var value = button.get('label') + 'px';
-            this.execCommand('fontsize', value);
-            this.STOP_EXEC_COMMAND = true;
-        },
-        /**
-        * @private
-        * @description Handles the colorpicker buttons in the toolbar.
-        * @param {Object} o Object returned from Toolbar's buttonClick Event
-        */
-        _handleColorPicker: function(o) {
-            var cmd = o.button;
-            var value = '#' + o.color;
-            if ((cmd == 'forecolor') || (cmd == 'backcolor')) {
-                this.execCommand(cmd, value);
-            }
-        },
-        /**
-        * @private
-        * @method _handleAlign
-        * @description Handles the alignment buttons in the toolbar.
-        * @param {Object} o Object returned from Toolbar's buttonClick Event
-        */
-        _handleAlign: function(o) {
-            var cmd = null;
-            for (var i = 0; i < o.button.menu.length; i++) {
-                if (o.button.menu[i].value == o.button.value) {
-                    cmd = o.button.menu[i].value;
-                }
-            }
-            var value = this._getSelection();
-
-            this.execCommand(cmd, value);
-            this.STOP_EXEC_COMMAND = true;
-        },
-        /**
-        * @private
-        * @method _handleAfterNodeChange
-        * @description Fires after a nodeChange happens to setup the things that where reset on the node change (button state).
-        */
-        _handleAfterNodeChange: function() {
-            var path = this._getDomPath(),
-                elm = null,
-                family = null,
-                fontsize = null,
-                validFont = false,
-                fn_button = this.toolbar.getButtonByValue('fontname'),
-                fs_button = this.toolbar.getButtonByValue('fontsize'),
-                hd_button = this.toolbar.getButtonByValue('heading');
-
-            for (var i = 0; i < path.length; i++) {
-                elm = path[i];
-
-                var tag = elm.tagName.toLowerCase();
-
-
-                if (elm.getAttribute('tag')) {
-                    tag = elm.getAttribute('tag');
-                }
-
-                family = elm.getAttribute('face');
-                if (Dom.getStyle(elm, 'font-family')) {
-                    family = Dom.getStyle(elm, 'font-family');
-                    //Adobe AIR Code
-                    family = family.replace(/'/g, '');                    
-                }
-
-                if (tag.substring(0, 1) == 'h') {
-                    if (hd_button) {
-                        for (var h = 0; h < hd_button._configs.menu.value.length; h++) {
-                            if (hd_button._configs.menu.value[h].value.toLowerCase() == tag) {
-                                hd_button.set('label', hd_button._configs.menu.value[h].text);
-                            }
-                        }
-                        this._updateMenuChecked('heading', tag);
-                    }
-                }
-            }
-
-            if (fn_button) {
-                for (var b = 0; b < fn_button._configs.menu.value.length; b++) {
-                    if (family && fn_button._configs.menu.value[b].text.toLowerCase() == family.toLowerCase()) {
-                        validFont = true;
-                        family = fn_button._configs.menu.value[b].text; //Put the proper menu name in the button
-                    }
-                }
-                if (!validFont) {
-                    family = fn_button._configs.label._initialConfig.value;
-                }
-                var familyLabel = '<span class="yui-toolbar-fontname-' + this._cleanClassName(family) + '">' + family + '</span>';
-                if (fn_button.get('label') != familyLabel) {
-                    fn_button.set('label', familyLabel);
-                    this._updateMenuChecked('fontname', family);
-                }
-            }
-
-            if (fs_button) {
-                fontsize = parseInt(Dom.getStyle(elm, 'fontSize'), 10);
-                if ((fontsize === null) || isNaN(fontsize)) {
-                    fontsize = fs_button._configs.label._initialConfig.value;
-                }
-                fs_button.set('label', ''+fontsize);
-            }
-            
-            if (!this._isElement(elm, 'body') && !this._isElement(elm, 'img')) {
-                this.toolbar.enableButton(fn_button);
-                this.toolbar.enableButton(fs_button);
-                this.toolbar.enableButton('forecolor');
-                this.toolbar.enableButton('backcolor');
-            }
-            if (this._isElement(elm, 'img')) {
-                if (YAHOO.widget.Overlay) {
-                    this.toolbar.enableButton('createlink');
-                }
-            }
-            if (this._hasParent(elm, 'blockquote')) {
-                this.toolbar.selectButton('indent');
-                this.toolbar.disableButton('indent');
-                this.toolbar.enableButton('outdent');
-            }
-            if (this._hasParent(elm, 'ol') || this._hasParent(elm, 'ul')) {
-                this.toolbar.disableButton('indent');
-            }
-            this._lastButton = null;
-            
-        },
-        /**
-        * @private
-        * @method _handleInsertImageClick
-        * @description Opens the Image Properties Window when the insert Image button is clicked or an Image is Double Clicked.
-        */
-        _handleInsertImageClick: function() {
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue('insertimage')) {
-                    YAHOO.log('Toolbar Button for (insertimage) was not found, skipping exec.', 'info', 'SimpleEditor');
-                    return false;
-                }
-            }
-        
-            this.toolbar.set('disabled', true); //Disable the toolbar when the prompt is showing
-            this.on('afterExecCommand', function() {
-                var el = this.currentElement[0],
-                    src = 'http://';
-                if (!el) {
-                    el = this._getSelectedElement();
-                }
-                if (el) {
-                    if (el.getAttribute('src')) {
-                        src = el.getAttribute('src', 2);
-                        if (src.indexOf(this.get('blankimage')) != -1) {
-                            src = this.STR_IMAGE_HERE;
-                        }
-                    }
-                }
-                var str = prompt(this.STR_LINK_URL + ': ', src);
-                if ((str !== '') && (str !== null)) {
-                    el.setAttribute('src', str);
-                } else if (str === null) {
-                    el.parentNode.removeChild(el);
-                    this.currentElement = [];
-                    this.nodeChange();
-                }
-                this.closeWindow();
-                this.toolbar.set('disabled', false);
-            }, this, true);
-        },
-        /**
-        * @private
-        * @method _handleInsertImageWindowClose
-        * @description Handles the closing of the Image Properties Window.
-        */
-        _handleInsertImageWindowClose: function() {
-            this.nodeChange();
-        },
-        /**
-        * @private
-        * @method _isLocalFile
-        * @param {String} url THe url/string to check
-        * @description Checks to see if a string (href or img src) is possibly a local file reference..
-        */
-        _isLocalFile: function(url) {
-            if ((url) && (url !== '') && ((url.indexOf('file:/') != -1) || (url.indexOf(':\\') != -1))) {
-                return true;
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _handleCreateLinkClick
-        * @description Handles the opening of the Link Properties Window when the Create Link button is clicked or an href is doubleclicked.
-        */
-        _handleCreateLinkClick: function() {
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue('createlink')) {
-                    YAHOO.log('Toolbar Button for (createlink) was not found, skipping exec.', 'info', 'SimpleEditor');
-                    return false;
-                }
-            }
-        
-            this.toolbar.set('disabled', true); //Disable the toolbar when the prompt is showing
-
-            this.on('afterExecCommand', function() {
-                var el = this.currentElement[0],
-                    url = '';
-
-                if (el) {
-                    if (el.getAttribute('href', 2) !== null) {
-                        url = el.getAttribute('href', 2);
-                    }
-                }
-                var str = prompt(this.STR_LINK_URL + ': ', url);
-                if ((str !== '') && (str !== null)) {
-                    var urlValue = str;
-                    if ((urlValue.indexOf(':/'+'/') == -1) && (urlValue.substring(0,1) != '/') && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                        if ((urlValue.indexOf('@') != -1) && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                            //Found an @ sign, prefix with mailto:
-                            urlValue = 'mailto:' + urlValue;
-                        } else {
-                            /* :// not found adding */
-                            if (urlValue.substring(0, 1) != '#') {
-                                //urlValue = 'http:/'+'/' + urlValue;
-                            }
-                        }
-                    }
-                    el.setAttribute('href', urlValue);
-                } else if (str !== null) {
-                    var _span = this._getDoc().createElement('span');
-                    _span.innerHTML = el.innerHTML;
-                    Dom.addClass(_span, 'yui-non');
-                    el.parentNode.replaceChild(_span, el);
-                }
-                this.closeWindow();
-                this.toolbar.set('disabled', false);
-            }, this);
-
-        },
-        /**
-        * @private
-        * @method _handleCreateLinkWindowClose
-        * @description Handles the closing of the Link Properties Window.
-        */
-        _handleCreateLinkWindowClose: function() {
-            this.nodeChange();
-            this.currentElement = [];
-        },
-        /**
-        * @method render
-        * @description Calls the private method _render in a setTimeout to allow for other things on the page to continue to load.
-        */
-        render: function() {
-            if (this._rendered) {
-                return false;
-            }
-            YAHOO.log('Render', 'info', 'SimpleEditor');
-            if (!this.DOMReady) {
-                YAHOO.log('!DOMReady', 'info', 'SimpleEditor');
-                this._queue[this._queue.length] = ['render', arguments];
-                return false;
-            }
-            if (this.get('element')) {
-                if (this.get('element').tagName) {
-                    this._textarea = true;
-                    if (this.get('element').tagName.toLowerCase() !== 'textarea') {
-                        this._textarea = false;
-                    }
-                } else {
-                    YAHOO.log('No Valid Element', 'error', 'SimpleEditor');
-                    return false;
-                }
-            } else {
-                YAHOO.log('No Element', 'error', 'SimpleEditor');
-                return false;
-            }
-            this._rendered = true;
-            var self = this;
-            window.setTimeout(function() {
-                self._render.call(self);
-            }, 4);
-        },
-        /**
-        * @private
-        * @method _render
-        * @description Causes the toolbar and the editor to render and replace the textarea.
-        */
-        _render: function() {
-            var self = this;
-            this.set('textarea', this.get('element'));
-
-            this.get('element_cont').setStyle('display', 'none');
-            this.get('element_cont').addClass(this.CLASS_CONTAINER);
-
-            this.set('iframe', this._createIframe());
-            window.setTimeout(function() {
-                self._setInitialContent.call(self);
-            }, 10);
-
-            this.get('editor_wrapper').appendChild(this.get('iframe').get('element'));
-
-            if (this.get('disabled')) {
-                this._disableEditor(true);
-            }
-
-            var tbarConf = this.get('toolbar');
-            //Create Toolbar instance
-            if (tbarConf instanceof Toolbar) {
-                this.toolbar = tbarConf;
-                //Set the toolbar to disabled until content is loaded
-                this.toolbar.set('disabled', true);
-            } else {
-                //Set the toolbar to disabled until content is loaded
-                tbarConf.disabled = true;
-                this.toolbar = new Toolbar(this.get('toolbar_cont'), tbarConf);
-            }
-
-            YAHOO.log('fireEvent::toolbarLoaded', 'info', 'SimpleEditor');
-            this.fireEvent('toolbarLoaded', { type: 'toolbarLoaded', target: this.toolbar });
-
-            
-            this.toolbar.on('toolbarCollapsed', function() {
-                if (this.currentWindow) {
-                    this.moveWindow();
-                }
-            }, this, true);
-            this.toolbar.on('toolbarExpanded', function() {
-                if (this.currentWindow) {
-                    this.moveWindow();
-                }
-            }, this, true);
-            this.toolbar.on('fontsizeClick', this._handleFontSize, this, true);
-            
-            this.toolbar.on('colorPickerClicked', function(o) {
-                this._handleColorPicker(o);
-                return false; //Stop the buttonClick event
-            }, this, true);
-
-            this.toolbar.on('alignClick', this._handleAlign, this, true);
-            this.on('afterNodeChange', this._handleAfterNodeChange, this, true);
-            this.toolbar.on('insertimageClick', this._handleInsertImageClick, this, true);
-            this.on('windowinsertimageClose', this._handleInsertImageWindowClose, this, true);
-            this.toolbar.on('createlinkClick', this._handleCreateLinkClick, this, true);
-            this.on('windowcreatelinkClose', this._handleCreateLinkWindowClose, this, true);
-            
-
-            //Replace Textarea with editable area
-            this.get('parentNode').replaceChild(this.get('element_cont').get('element'), this.get('element'));
-
-            
-            this.setStyle('visibility', 'hidden');
-            this.setStyle('position', 'absolute');
-            this.setStyle('top', '-9999px');
-            this.setStyle('left', '-9999px');
-            this.get('element_cont').appendChild(this.get('element'));
-            this.get('element_cont').setStyle('display', 'block');
-
-
-            Dom.addClass(this.get('iframe').get('parentNode'), this.CLASS_EDITABLE_CONT);
-            this.get('iframe').addClass(this.CLASS_EDITABLE);
-
-            //Set height and width of editor container
-            this.get('element_cont').setStyle('width', this.get('width'));
-            Dom.setStyle(this.get('iframe').get('parentNode'), 'height', this.get('height'));
-
-            this.get('iframe').setStyle('width', '100%'); //WIDTH
-            this.get('iframe').setStyle('height', '100%');
-
-            this._setupDD();
-
-            window.setTimeout(function() {
-                self._setupAfterElement.call(self);
-            }, 0);
-            this.fireEvent('afterRender', { type: 'afterRender', target: this });
-        },
-        /**
-        * @method execCommand
-        * @param {String} action The "execCommand" action to try to execute (Example: bold, insertimage, inserthtml)
-        * @param {String} value (optional) The value for a given action such as action: fontname value: 'Verdana'
-        * @description This method attempts to try and level the differences in the various browsers and their support for execCommand actions
-        */
-        execCommand: function(action, value) {
-            var beforeExec = this.fireEvent('beforeExecCommand', { type: 'beforeExecCommand', target: this, args: arguments });
-            if ((beforeExec === false) || (this.STOP_EXEC_COMMAND)) {
-                this.STOP_EXEC_COMMAND = false;
-                return false;
-            }
-            this._lastCommand = action;
-            this._setMarkupType(action);
-            if (this.browser.ie) {
-                this._getWindow().focus();
-            }
-            var exec = true;
-            
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue(action)) {
-                    YAHOO.log('Toolbar Button for (' + action + ') was not found, skipping exec.', 'info', 'SimpleEditor');
-                    exec = false;
-                }
-            }
-
-            this.editorDirty = true;
-            
-            if ((typeof this['cmd_' + action.toLowerCase()] == 'function') && exec) {
-                YAHOO.log('Found execCommand override method: (cmd_' + action.toLowerCase() + ')', 'info', 'SimpleEditor');
-                var retValue = this['cmd_' + action.toLowerCase()](value);
-                exec = retValue[0];
-                if (retValue[1]) {
-                    action = retValue[1];
-                }
-                if (retValue[2]) {
-                    value = retValue[2];
-                }
-            }
-            if (exec) {
-                YAHOO.log('execCommand::(' + action + '), (' + value + ')', 'info', 'SimpleEditor');
-                try {
-                    this._getDoc().execCommand(action, false, value);
-                } catch(e) {
-                    YAHOO.log('execCommand Failed', 'error', 'SimpleEditor');
-                }
-            } else {
-                YAHOO.log('OVERRIDE::execCommand::(' + action + '),(' + value + ') skipped', 'warn', 'SimpleEditor');
-            }
-            this.on('afterExecCommand', function() {
-                this.unsubscribeAll('afterExecCommand');
-                this.nodeChange();
-            }, this, true);
-            this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-            
-        },
-    /* {{{  Command Overrides */
-
-        /**
-        * @method cmd_underline
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('underline') is used.
-        */
-        cmd_underline: function(value) {
-            if (!this.browser.webkit) {
-                var el = this._getSelectedElement();
-                if (el && this._isElement(el, 'span')) {
-                    if (el.style.textDecoration == 'underline') {
-                        el.style.textDecoration = 'none';
-                    } else {
-                        el.style.textDecoration = 'underline';
-                    }
-                    return [false];
-                }
-            }
-            return [true];
-        },
-        /**
-        * @method cmd_backcolor
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('backcolor') is used.
-        */
-        cmd_backcolor: function(value) {
-            var exec = true,
-                el = this._getSelectedElement(),
-                action = 'backcolor';
-
-            if (this.browser.gecko || this.browser.opera) {
-                this._setEditorStyle(true);
-                action = 'hilitecolor';
-            }
-
-            if (!this._isElement(el, 'body') && !this._hasSelection()) {
-                Dom.setStyle(el, 'background-color', value);
-                this._selectNode(el);
-                exec = false;
-            } else if (!this._isElement(el, 'body') && this._hasSelection()) {
-                Dom.setStyle(el, 'background-color', value);
-                this._selectNode(el);
-                exec = false;
-            } else {
-                if (this.get('insert')) {
-                    el = this._createInsertElement({ backgroundColor: value });
-                } else {
-                    this._createCurrentElement('span', { backgroundColor: value });
-                    this._selectNode(this.currentElement[0]);
-                }
-                exec = false;
-            }
-
-            return [exec, action];
-        },
-        /**
-        * @method cmd_forecolor
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('forecolor') is used.
-        */
-        cmd_forecolor: function(value) {
-            var exec = true,
-                el = this._getSelectedElement();
-                
-
-                if (!this._isElement(el, 'body') && !this._hasSelection()) {
-                    Dom.setStyle(el, 'color', value);
-                    this._selectNode(el);
-                    exec = false;
-                } else if (!this._isElement(el, 'body') && this._hasSelection()) {
-                    Dom.setStyle(el, 'color', value);
-                    this._selectNode(el);
-                    exec = false;
-                } else {
-                    if (this.get('insert')) {
-                        el = this._createInsertElement({ color: value });
-                    } else {
-                        this._createCurrentElement('span', { color: value });
-                        this._selectNode(this.currentElement[0]);
-                    }
-                    exec = false;
-                }
-                return [exec];
-        },
-        /**
-        * @method cmd_unlink
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('unlink') is used.
-        */
-        cmd_unlink: function(value) {
-            this._swapEl(this.currentElement[0], 'span', function(el) {
-                el.className = 'yui-non';
-            });
-            return [false];
-        },
-        /**
-        * @method cmd_createlink
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('createlink') is used.
-        */
-        cmd_createlink: function(value) {
-            var el = this._getSelectedElement(), _a = null;
-            if (this._hasParent(el, 'a')) {
-                this.currentElement[0] = this._hasParent(el, 'a');
-            } else if (!this._isElement(el, 'a')) {
-                this._createCurrentElement('a');
-                _a = this._swapEl(this.currentElement[0], 'a');
-                this.currentElement[0] = _a;
-            } else {
-                this.currentElement[0] = el;
-            }
-            return [false];
-        },
-        /**
-        * @method cmd_insertimage
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('insertimage') is used.
-        */
-        cmd_insertimage: function(value) {
-            var exec = true, _img = null, action = 'insertimage',
-                el = this._getSelectedElement();
-
-            if (value === '') {
-                value = this.get('blankimage');
-            }
-
-            /**
-            * @knownissue
-            * @browser Safari 2.x
-            * @description The issue here is that we have no way of knowing where the cursor position is
-            * inside of the iframe, so we have to place the newly inserted data in the best place that we can.
-            */
-            
-            YAHOO.log('InsertImage: ' + el.tagName, 'info', 'SimpleEditor');
-            if (this._isElement(el, 'img')) {
-                this.currentElement[0] = el;
-                exec = false;
-            } else {
-                if (this._getDoc().queryCommandEnabled(action)) {
-                    this._getDoc().execCommand('insertimage', false, value);
-                    var imgs = this._getDoc().getElementsByTagName('img');
-                    for (var i = 0; i < imgs.length; i++) {
-                        if (!YAHOO.util.Dom.hasClass(imgs[i], 'yui-img')) {
-                            YAHOO.util.Dom.addClass(imgs[i], 'yui-img');
-                            this.currentElement[0] = imgs[i];
-                        }
-                    }
-                    exec = false;
-                } else {
-                    if (el == this._getDoc().body) {
-                        _img = this._getDoc().createElement('img');
-                        _img.setAttribute('src', value);
-                        YAHOO.util.Dom.addClass(_img, 'yui-img');
-                        this._getDoc().body.appendChild(_img);
-                    } else {
-                        this._createCurrentElement('img');
-                        _img = this._getDoc().createElement('img');
-                        _img.setAttribute('src', value);
-                        YAHOO.util.Dom.addClass(_img, 'yui-img');
-                        this.currentElement[0].parentNode.replaceChild(_img, this.currentElement[0]);
-                    }
-                    this.currentElement[0] = _img;
-                    exec = false;
-                }
-            }
-            return [exec];
-        },
-        /**
-        * @method cmd_inserthtml
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('inserthtml') is used.
-        */
-        cmd_inserthtml: function(value) {
-            var exec = true, action = 'inserthtml', _span = null, _range = null;
-            /**
-            * @knownissue
-            * @browser Safari 2.x
-            * @description The issue here is that we have no way of knowing where the cursor position is
-            * inside of the iframe, so we have to place the newly inserted data in the best place that we can.
-            */
-            if (this.browser.webkit && !this._getDoc().queryCommandEnabled(action)) {
-                YAHOO.log('More Safari DOM tricks (inserthtml)', 'info', 'EditorSafari');
-                this._createCurrentElement('img');
-                _span = this._getDoc().createElement('span');
-                _span.innerHTML = value;
-                this.currentElement[0].parentNode.replaceChild(_span, this.currentElement[0]);
-                exec = false;
-            } else if (this.browser.ie) {
-                _range = this._getRange();
-                if (_range.item) {
-                    _range.item(0).outerHTML = value;
-                } else {
-                    _range.pasteHTML(value);
-                }
-                exec = false;                    
-            }
-            return [exec];
-        },
-        /**
-        * @method cmd_list
-        * @param tag The tag of the list you want to create (eg, ul or ol)
-        * @description This is a combined execCommand override method. It is called from the cmd_insertorderedlist and cmd_insertunorderedlist methods.
-        */
-        cmd_list: function(tag) {
-            var exec = true, list = null, li = 0, el = null, str = '',
-                selEl = this._getSelectedElement(), action = 'insertorderedlist';
-                if (tag == 'ul') {
-                    action = 'insertunorderedlist';
-                }
-            /**
-            * @knownissue Safari 2.+ doesn't support ordered and unordered lists
-            * @browser Safari 2.x
-            * The issue with this workaround is that when applied to a set of text
-            * that has BR's in it, Safari may or may not pick up the individual items as
-            * list items. This is fixed in WebKit (Safari 3)
-            * 2.6.0: Seems there are still some issues with List Creation and Safari 3, reverting to previously working Safari 2.x code
-            */
-            //if ((this.browser.webkit && !this._getDoc().queryCommandEnabled(action))) {
-            if (this.browser.webkit) {
-                if (this._isElement(selEl, 'li') && this._isElement(selEl.parentNode, tag)) {
-                    YAHOO.log('We already have a list, undo it', 'info', 'SimpleEditor');
-                    el = selEl.parentNode;
-                    list = this._getDoc().createElement('span');
-                    YAHOO.util.Dom.addClass(list, 'yui-non');
-                    str = '';
-                    var lis = el.getElementsByTagName('li');
-                    for (li = 0; li < lis.length; li++) {
-                        str += '<div>' + lis[li].innerHTML + '</div>';
-                    }
-                    list.innerHTML = str;
-                    this.currentElement[0] = el;
-                    this.currentElement[0].parentNode.replaceChild(list, this.currentElement[0]);
-                } else {
-                    YAHOO.log('Create list item', 'info', 'SimpleEditor');
-                    this._createCurrentElement(tag.toLowerCase());
-                    list = this._getDoc().createElement(tag);
-                    for (li = 0; li < this.currentElement.length; li++) {
-                        var newli = this._getDoc().createElement('li');
-                        newli.innerHTML = this.currentElement[li].innerHTML + '<span class="yui-non">&nbsp;</span>&nbsp;';
-                        list.appendChild(newli);
-                        if (li > 0) {
-                            this.currentElement[li].parentNode.removeChild(this.currentElement[li]);
-                        }
-                    }
-                    this.currentElement[0].parentNode.replaceChild(list, this.currentElement[0]);
-                    this.currentElement[0] = list;
-                    var _h = this.currentElement[0].firstChild;
-                    _h = Dom.getElementsByClassName('yui-non', 'span', _h)[0];
-                    this._getSelection().setBaseAndExtent(_h, 1, _h, _h.innerText.length);
-                }
-                exec = false;
-            } else {
-                el = this._getSelectedElement();
-                YAHOO.log(el.tagName);
-                if (this._isElement(el, 'li') && this._isElement(el.parentNode, tag) || (this.browser.ie && this._isElement(this._getRange().parentElement, 'li')) || (this.browser.ie && this._isElement(el, 'ul')) || (this.browser.ie && this._isElement(el, 'ol'))) { //we are in a list..
-                    YAHOO.log('We already have a list, undo it', 'info', 'SimpleEditor');
-                    if (this.browser.ie) {
-                        if ((this.browser.ie && this._isElement(el, 'ul')) || (this.browser.ie && this._isElement(el, 'ol'))) {
-                            el = el.getElementsByTagName('li')[0];
-                        }
-                        YAHOO.log('Undo IE', 'info', 'SimpleEditor');
-                        str = '';
-                        var lis2 = el.parentNode.getElementsByTagName('li');
-                        for (var j = 0; j < lis2.length; j++) {
-                            str += lis2[j].innerHTML + '<br>';
-                        }
-                        var newEl = this._getDoc().createElement('span');
-                        newEl.innerHTML = str;
-                        el.parentNode.parentNode.replaceChild(newEl, el.parentNode);
-                    } else {
-                        this.nodeChange();
-                        this._getDoc().execCommand(action, '', el.parentNode);
-                        this.nodeChange();
-                    }
-                    exec = false;
-                }
-                if (this.browser.opera) {
-                    var self = this;
-                    window.setTimeout(function() {
-                        var liso = self._getDoc().getElementsByTagName('li');
-                        for (var i = 0; i < liso.length; i++) {
-                            if (liso[i].innerHTML.toLowerCase() == '<br>') {
-                                liso[i].parentNode.parentNode.removeChild(liso[i].parentNode);
-                            }
-                        }
-                    },30);
-                }
-                if (this.browser.ie && exec) {
-                    var html = '';
-                    if (this._getRange().html) {
-                        html = '<li>' + this._getRange().html+ '</li>';
-                    } else {
-                        var t = this._getRange().text.split('\n');
-                        if (t.length > 1) {
-                            html = '';
-                            for (var ie = 0; ie < t.length; ie++) {
-                                html += '<li>' + t[ie] + '</li>';
-                            }
-                        } else {
-                            var txt = this._getRange().text;
-                            if (txt === '') {
-                                html = '<li id="new_list_item">' + txt + '</li>';
-                            } else {
-                                html = '<li>' + txt + '</li>';
-                            }
-                        }
-                    }
-                    this._getRange().pasteHTML('<' + tag + '>' + html + '</' + tag + '>');
-                    var new_item = this._getDoc().getElementById('new_list_item');
-                    if (new_item) {
-                        var range = this._getDoc().body.createTextRange();
-                        range.moveToElementText(new_item);
-                        range.collapse(false);
-                        range.select();                       
-                        new_item.id = '';
-                    }
-                    exec = false;
-                }
-            }
-            return exec;
-        },
-        /**
-        * @method cmd_insertorderedlist
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('insertorderedlist ') is used.
-        */
-        cmd_insertorderedlist: function(value) {
-            return [this.cmd_list('ol')];
-        },
-        /**
-        * @method cmd_insertunorderedlist 
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('insertunorderedlist') is used.
-        */
-        cmd_insertunorderedlist: function(value) {
-            return [this.cmd_list('ul')];
-        },
-        /**
-        * @method cmd_fontname
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('fontname') is used.
-        */
-        cmd_fontname: function(value) {
-            var exec = true,
-                selEl = this._getSelectedElement();
-
-            this.currentFont = value;
-            if (selEl && selEl.tagName && !this._hasSelection() && !this._isElement(selEl, 'body') && !this.get('insert')) {
-                YAHOO.util.Dom.setStyle(selEl, 'font-family', value);
-                exec = false;
-            } else if (this.get('insert') && !this._hasSelection()) {
-                YAHOO.log('No selection and no selected element and we are in insert mode', 'info', 'SimpleEditor');
-                var el = this._createInsertElement({ fontFamily: value });
-                exec = false;
-            }
-            return [exec];
-        },
-        /**
-        * @method cmd_fontsize
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('fontsize') is used.
-        */
-        cmd_fontsize: function(value) {
-            var el = null;
-            if (this.currentElement && (this.currentElement.length > 0) && (!this._hasSelection()) && (!this.get('insert'))) {
-                YAHOO.util.Dom.setStyle(this.currentElement, 'fontSize', value);
-            } else if (!this._isElement(this._getSelectedElement(), 'body')) {
-                el = this._getSelectedElement();
-                YAHOO.util.Dom.setStyle(el, 'fontSize', value);
-                if (this.get('insert') && this.browser.ie) {
-                    var r = this._getRange();
-                    r.collapse(false);
-                    r.select();
-                } else {
-                    this._selectNode(el);
-                }
-            } else {
-                if (this.get('insert') && !this._hasSelection()) {
-                    el = this._createInsertElement({ fontSize: value });
-                    this.currentElement[0] = el;
-                    this._selectNode(this.currentElement[0]);
-                } else {
-                    this._createCurrentElement('span', {'fontSize': value });
-                    this._selectNode(this.currentElement[0]);
-                }
-            }
-            return [false];
-        },
-    /* }}} */
-        /**
-        * @private
-        * @method _swapEl
-        * @param {HTMLElement} el The element to swap with
-        * @param {String} tagName The tagname of the element that you wish to create
-        * @param {Function} callback (optional) A function to run on the element after it is created, but before it is replaced. An element reference is passed to this function.
-        * @description This function will create a new element in the DOM and populate it with the contents of another element. Then it will assume it's place.
-        */
-        _swapEl: function(el, tagName, callback) {
-            var _el = this._getDoc().createElement(tagName);
-            if (el) {
-                _el.innerHTML = el.innerHTML;
-            }
-            if (typeof callback == 'function') {
-                callback.call(this, _el);
-            }
-            if (el) {
-                el.parentNode.replaceChild(_el, el);
-            }
-            return _el;
-        },
-        /**
-        * @private
-        * @method _createInsertElement
-        * @description Creates a new "currentElement" then adds some text (and other things) to make it selectable and stylable. Then the user can continue typing.
-        * @param {Object} css (optional) Object literal containing styles to apply to the new element.
-        * @return
-        */
-        _createInsertElement: function(css) {
-            this._createCurrentElement('span', css);
-            var el = this.currentElement[0];
-            if (this.browser.webkit) {
-                //Little Safari Hackery here..
-                el.innerHTML = '<span class="yui-non">&nbsp;</span>';
-                el = el.firstChild;
-                this._getSelection().setBaseAndExtent(el, 1, el, el.innerText.length);                    
-            } else if (this.browser.ie || this.browser.opera) {
-                el.innerHTML = '&nbsp;';
-            }
-            this._focusWindow();
-            this._selectNode(el, true);
-            return el;
-        },
-        /**
-        * @private
-        * @method _createCurrentElement
-        * @param {String} tagName (optional defaults to a) The tagname of the element that you wish to create
-        * @param {Object} tagStyle (optional) Object literal containing styles to apply to the new element.
-        * @description This is a work around for the various browser issues with execCommand. This method will run <code>execCommand('fontname', false, 'yui-tmp')</code> on the given selection.
-        * It will then search the document for an element with the font-family set to <strong>yui-tmp</strong> and replace that with another span that has other information in it, then assign the new span to the 
-        * <code>this.currentElement</code> array, so we now have element references to the elements that were just modified. At this point we can use standard DOM manipulation to change them as we see fit.
-        */
-        _createCurrentElement: function(tagName, tagStyle) {
-            tagName = ((tagName) ? tagName : 'a');
-            var tar = null,
-                el = [],
-                _doc = this._getDoc();
-            
-            if (this.currentFont) {
-                if (!tagStyle) {
-                    tagStyle = {};
-                }
-                tagStyle.fontFamily = this.currentFont;
-                this.currentFont = null;
-            }
-            this.currentElement = [];
-
-            var _elCreate = function(tagName, tagStyle) {
-                var el = null;
-                tagName = ((tagName) ? tagName : 'span');
-                tagName = tagName.toLowerCase();
-                switch (tagName) {
-                    case 'h1':
-                    case 'h2':
-                    case 'h3':
-                    case 'h4':
-                    case 'h5':
-                    case 'h6':
-                        el = _doc.createElement(tagName);
-                        break;
-                    default:
-                        el = _doc.createElement(tagName);
-                        if (tagName === 'span') {
-                            YAHOO.util.Dom.addClass(el, 'yui-tag-' + tagName);
-                            YAHOO.util.Dom.addClass(el, 'yui-tag');
-                            el.setAttribute('tag', tagName);
-                        }
-
-                        for (var k in tagStyle) {
-                            if (YAHOO.lang.hasOwnProperty(tagStyle, k)) {
-                                el.style[k] = tagStyle[k];
-                            }
-                        }
-                        break;
-                }
-                return el;
-            };
-
-            if (!this._hasSelection()) {
-                if (this._getDoc().queryCommandEnabled('insertimage')) {
-                    this._getDoc().execCommand('insertimage', false, 'yui-tmp-img');
-                    var imgs = this._getDoc().getElementsByTagName('img');
-                    for (var j = 0; j < imgs.length; j++) {
-                        if (imgs[j].getAttribute('src', 2) == 'yui-tmp-img') {
-                            el = _elCreate(tagName, tagStyle);
-                            imgs[j].parentNode.replaceChild(el, imgs[j]);
-                            this.currentElement[this.currentElement.length] = el;
-                        }
-                    }
-                } else {
-                    if (this.currentEvent) {
-                        tar = YAHOO.util.Event.getTarget(this.currentEvent);
-                    } else {
-                        //For Safari..
-                        tar = this._getDoc().body;                        
-                    }
-                }
-                if (tar) {
-                    /**
-                    * @knownissue
-                    * @browser Safari 2.x
-                    * @description The issue here is that we have no way of knowing where the cursor position is
-                    * inside of the iframe, so we have to place the newly inserted data in the best place that we can.
-                    */
-                    el = _elCreate(tagName, tagStyle);
-                    if (this._isElement(tar, 'body') || this._isElement(tar, 'html')) {
-                        if (this._isElement(tar, 'html')) {
-                            tar = this._getDoc().body;
-                        }
-                        tar.appendChild(el);
-                    } else if (tar.nextSibling) {
-                        tar.parentNode.insertBefore(el, tar.nextSibling);
-                    } else {
-                        tar.parentNode.appendChild(el);
-                    }
-                    //this.currentElement = el;
-                    this.currentElement[this.currentElement.length] = el;
-                    this.currentEvent = null;
-                    if (this.browser.webkit) {
-                        //Force Safari to focus the new element
-                        this._getSelection().setBaseAndExtent(el, 0, el, 0);
-                        if (this.browser.webkit3) {
-                            this._getSelection().collapseToStart();
-                        } else {
-                            this._getSelection().collapse(true);
-                        }
-                    }
-                }
-            } else {
-                //Force CSS Styling for this action...
-                this._setEditorStyle(true);
-                this._getDoc().execCommand('fontname', false, 'yui-tmp');
-                var _tmp = [], __tmp, __els = ['font', 'span', 'i', 'b', 'u'];
-
-                if (!this._isElement(this._getSelectedElement(), 'body')) {
-                    __els[__els.length] = this._getDoc().getElementsByTagName(this._getSelectedElement().tagName);
-                    __els[__els.length] = this._getDoc().getElementsByTagName(this._getSelectedElement().parentNode.tagName);
-                }
-                for (var _els = 0; _els < __els.length; _els++) {
-                    var _tmp1 = this._getDoc().getElementsByTagName(__els[_els]);
-                    for (var e = 0; e < _tmp1.length; e++) {
-                        _tmp[_tmp.length] = _tmp1[e];
-                    }
-                }
-                
-                for (var i = 0; i < _tmp.length; i++) {
-                    if ((YAHOO.util.Dom.getStyle(_tmp[i], 'font-family') == 'yui-tmp') || (_tmp[i].face && (_tmp[i].face == 'yui-tmp'))) {
-                        //TODO Why is this here?!?
-                        //el = _elCreate(_tmp[i].tagName, tagStyle);
-                        el = _elCreate(tagName, tagStyle);
-                        el.innerHTML = _tmp[i].innerHTML;
-                        if (this._isElement(_tmp[i], 'ol') || (this._isElement(_tmp[i], 'ul'))) {
-                            var fc = _tmp[i].getElementsByTagName('li')[0];
-                            _tmp[i].style.fontFamily = 'inherit';
-                            fc.style.fontFamily = 'inherit';
-                            el.innerHTML = fc.innerHTML;
-                            fc.innerHTML = '';
-                            fc.appendChild(el);
-                            this.currentElement[this.currentElement.length] = el;
-                        } else if (this._isElement(_tmp[i], 'li')) {
-                            _tmp[i].innerHTML = '';
-                            _tmp[i].appendChild(el);
-                            _tmp[i].style.fontFamily = 'inherit';
-                            this.currentElement[this.currentElement.length] = el;
-                        } else {
-                            if (_tmp[i].parentNode) {
-                                _tmp[i].parentNode.replaceChild(el, _tmp[i]);
-                                this.currentElement[this.currentElement.length] = el;
-                                this.currentEvent = null;
-                                if (this.browser.webkit) {
-                                    //Force Safari to focus the new element
-                                    this._getSelection().setBaseAndExtent(el, 0, el, 0);
-                                    if (this.browser.webkit3) {
-                                        this._getSelection().collapseToStart();
-                                    } else {
-                                        this._getSelection().collapse(true);
-                                    }
-                                }
-                                if (this.browser.ie && tagStyle && tagStyle.fontSize) {
-                                    this._getSelection().empty();
-                                }
-                                if (this.browser.gecko) {
-                                    this._getSelection().collapseToStart();
-                                }
-                            }
-                        }
-                    }
-                }
-                var len = this.currentElement.length;
-                for (var o = 0; o < len; o++) {
-                    if ((o + 1) != len) { //Skip the last one in the list
-                        if (this.currentElement[o] && this.currentElement[o].nextSibling) {
-                            if (this._isElement(this.currentElement[o], 'br')) {
-                                this.currentElement[this.currentElement.length] = this.currentElement[o].nextSibling;
-                            }
-                        }
-                    }
-                }
-            }
-        },
-        /**
-        * @method saveHTML
-        * @description Cleans the HTML with the cleanHTML method then places that string back into the textarea.
-        * @return String
-        */
-        saveHTML: function() {
-            var html = this.cleanHTML();
-            if (this._textarea) {
-                this.get('element').value = html;
-            } else {
-                this.get('element').innerHTML = html;
-            }
-            if (this.get('saveEl') !== this.get('element')) {
-                var out = this.get('saveEl');
-                if (Lang.isString(out)) {
-                    out = Dom.get(out);
-                }
-                if (out) {
-                    if (out.tagName.toLowerCase() === 'textarea') {
-                        out.value = html;
-                    } else {
-                        out.innerHTML = html;
-                    }
-                }
-            }
-            return html;
-        },
-        /**
-        * @method setEditorHTML
-        * @param {String} incomingHTML The html content to load into the editor
-        * @description Loads HTML into the editors body
-        */
-        setEditorHTML: function(incomingHTML) {
-            var html = this._cleanIncomingHTML(incomingHTML);
-            this._getDoc().body.innerHTML = html;
-            this.nodeChange();
-        },
-        /**
-        * @method getEditorHTML
-        * @description Gets the unprocessed/unfiltered HTML from the editor
-        */
-        getEditorHTML: function() {
-            var b = this._getDoc().body;
-            if (b === null) {
-                YAHOO.log('Body is null, returning null.', 'error', 'SimpleEditor');
-                return null;
-            }
-            return this._getDoc().body.innerHTML;
-        },
-        /**
-        * @method show
-        * @description This method needs to be called if the Editor was hidden (like in a TabView or Panel). It is used to reset the editor after being in a container that was set to display none.
-        */
-        show: function() {
-            if (this.browser.gecko) {
-                this._setDesignMode('on');
-                this._focusWindow();
-            }
-            if (this.browser.webkit) {
-                var self = this;
-                window.setTimeout(function() {
-                    self._setInitialContent.call(self);
-                }, 10);
-            }
-            //Adding this will close all other Editor window's when showing this one.
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            //Put the iframe back in place
-            this.get('iframe').setStyle('position', 'static');
-            this.get('iframe').setStyle('left', '');
-        },
-        /**
-        * @method hide
-        * @description This method needs to be called if the Editor is to be hidden (like in a TabView or Panel). It should be called to clear timeouts and close open editor windows.
-        */
-        hide: function() {
-            //Adding this will close all other Editor window's.
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this._fixNodesTimer) {
-                clearTimeout(this._fixNodesTimer);
-                this._fixNodesTimer = null;
-            }
-            if (this._nodeChangeTimer) {
-                clearTimeout(this._nodeChangeTimer);
-                this._nodeChangeTimer = null;
-            }
-            this._lastNodeChange = 0;
-            //Move the iframe off of the screen, so that in containers with visiblity hidden, IE will not cover other elements.
-            this.get('iframe').setStyle('position', 'absolute');
-            this.get('iframe').setStyle('left', '-9999px');
-        },
-        /**
-        * @method _cleanIncomingHTML
-        * @param {String} html The unfiltered HTML
-        * @description Process the HTML with a few regexes to clean it up and stabilize the input
-        * @return {String} The filtered HTML
-        */
-        _cleanIncomingHTML: function(html) {
-            html = html.replace(/<strong([^>]*)>/gi, '<b$1>');
-            html = html.replace(/<\/strong>/gi, '</b>');   
-
-            //replace embed before em check
-            html = html.replace(/<embed([^>]*)>/gi, '<YUI_EMBED$1>');
-            html = html.replace(/<\/embed>/gi, '</YUI_EMBED>');
-
-            html = html.replace(/<em([^>]*)>/gi, '<i$1>');
-            html = html.replace(/<\/em>/gi, '</i>');
-            
-            //Put embed tags back in..
-            html = html.replace(/<YUI_EMBED([^>]*)>/gi, '<embed$1>');
-            html = html.replace(/<\/YUI_EMBED>/gi, '</embed>');
-            if (this.get('plainText')) {
-                YAHOO.log('Filtering as plain text', 'info', 'SimpleEditor');
-                html = html.replace(/\n/g, '<br>').replace(/\r/g, '<br>');
-                html = html.replace(/  /gi, '&nbsp;&nbsp;'); //Replace all double spaces
-                html = html.replace(/\t/gi, '&nbsp;&nbsp;&nbsp;&nbsp;'); //Replace all tabs
-            }
-            //Removing Script Tags from the Editor
-            html = html.replace(/<script([^>]*)>/gi, '<bad>');
-            html = html.replace(/<\/script([^>]*)>/gi, '</bad>');
-            html = html.replace(/&lt;script([^>]*)&gt;/gi, '<bad>');
-            html = html.replace(/&lt;\/script([^>]*)&gt;/gi, '</bad>');
-            //Replace the line feeds
-            html = html.replace(/\n/g, '<YUI_LF>').replace(/\r/g, '<YUI_LF>');
-            //Remove Bad HTML elements (used to be script nodes)
-            html = html.replace(new RegExp('<bad([^>]*)>(.*?)<\/bad>', 'gi'), '');
-            //Replace the lines feeds
-            html = html.replace(/<YUI_LF>/g, '\n');
-            return html;
-        },
-        /**
-        * @method cleanHTML
-        * @param {String} html The unfiltered HTML
-        * @description Process the HTML with a few regexes to clean it up and stabilize the output
-        * @return {String} The filtered HTML
-        */
-        cleanHTML: function(html) {
-            //Start Filtering Output
-            //Begin RegExs..
-            if (!html) { 
-                html = this.getEditorHTML();
-            }
-            var markup = this.get('markup');
-            //Make some backups...
-            html = this.pre_filter_linebreaks(html, markup);
-
-		    html = html.replace(/<img([^>]*)\/>/gi, '<YUI_IMG$1>');
-		    html = html.replace(/<img([^>]*)>/gi, '<YUI_IMG$1>');
-
-		    html = html.replace(/<input([^>]*)\/>/gi, '<YUI_INPUT$1>');
-		    html = html.replace(/<input([^>]*)>/gi, '<YUI_INPUT$1>');
-
-		    html = html.replace(/<ul([^>]*)>/gi, '<YUI_UL$1>');
-		    html = html.replace(/<\/ul>/gi, '<\/YUI_UL>');
-		    html = html.replace(/<blockquote([^>]*)>/gi, '<YUI_BQ$1>');
-		    html = html.replace(/<\/blockquote>/gi, '<\/YUI_BQ>');
-
-		    html = html.replace(/<embed([^>]*)>/gi, '<YUI_EMBED$1>');
-		    html = html.replace(/<\/embed>/gi, '<\/YUI_EMBED>');
-
-            //Convert b and i tags to strong and em tags
-            if ((markup == 'semantic') || (markup == 'xhtml')) {
-                html = html.replace(/<i(\s+[^>]*)?>/gi, '<em$1>');
-                html = html.replace(/<\/i>/gi, '</em>');
-                html = html.replace(/<b(\s+[^>]*)?>/gi, '<strong$1>');
-                html = html.replace(/<\/b>/gi, '</strong>');
-            }
-            
-            //Case Changing
-		    html = html.replace(/<font/gi, '<font');
-		    html = html.replace(/<\/font>/gi, '</font>');
-		    html = html.replace(/<span/gi, '<span');
-		    html = html.replace(/<\/span>/gi, '</span>');
-            if ((markup == 'semantic') || (markup == 'xhtml') || (markup == 'css')) {
-                html = html.replace(new RegExp('<font([^>]*)face="([^>]*)">(.*?)<\/font>', 'gi'), '<span $1 style="font-family: $2;">$3</span>');
-                html = html.replace(/<u/gi, '<span style="text-decoration: underline;"');
-                if (this.browser.webkit) {
-                    html = html.replace(new RegExp('<span class="Apple-style-span" style="font-weight: bold;">([^>]*)<\/span>', 'gi'), '<strong>$1</strong>');
-                    html = html.replace(new RegExp('<span class="Apple-style-span" style="font-style: italic;">([^>]*)<\/span>', 'gi'), '<em>$1</em>');
-                }
-                html = html.replace(/\/u>/gi, '/span>');
-                if (markup == 'css') {
-                    html = html.replace(/<em([^>]*)>/gi, '<i$1>');
-                    html = html.replace(/<\/em>/gi, '</i>');
-                    html = html.replace(/<strong([^>]*)>/gi, '<b$1>');
-                    html = html.replace(/<\/strong>/gi, '</b>');
-                    html = html.replace(/<b/gi, '<span style="font-weight: bold;"');
-                    html = html.replace(/\/b>/gi, '/span>');
-                    html = html.replace(/<i/gi, '<span style="font-style: italic;"');
-                    html = html.replace(/\/i>/gi, '/span>');
-                }
-                html = html.replace(/  /gi, ' '); //Replace all double spaces and replace with a single
-            } else {
-		        html = html.replace(/<u/gi, '<u');
-		        html = html.replace(/\/u>/gi, '/u>');
-            }
-		    html = html.replace(/<ol([^>]*)>/gi, '<ol$1>');
-		    html = html.replace(/\/ol>/gi, '/ol>');
-		    html = html.replace(/<li/gi, '<li');
-		    html = html.replace(/\/li>/gi, '/li>');
-            html = this.filter_safari(html);
-
-            html = this.filter_internals(html);
-
-            html = this.filter_all_rgb(html);
-
-            //Replace our backups with the real thing
-            html = this.post_filter_linebreaks(html, markup);
-
-            if (markup == 'xhtml') {
-		        html = html.replace(/<YUI_IMG([^>]*)>/g, '<img $1 />');
-		        html = html.replace(/<YUI_INPUT([^>]*)>/g, '<input $1 />');
-            } else {
-		        html = html.replace(/<YUI_IMG([^>]*)>/g, '<img $1>');
-		        html = html.replace(/<YUI_INPUT([^>]*)>/g, '<input $1>');
-            }
-		    html = html.replace(/<YUI_UL([^>]*)>/g, '<ul$1>');
-		    html = html.replace(/<\/YUI_UL>/g, '<\/ul>');
-
-            html = this.filter_invalid_lists(html);
-
-		    html = html.replace(/<YUI_BQ([^>]*)>/g, '<blockquote$1>');
-		    html = html.replace(/<\/YUI_BQ>/g, '<\/blockquote>');
-
-		    html = html.replace(/<YUI_EMBED([^>]*)>/g, '<embed$1>');
-		    html = html.replace(/<\/YUI_EMBED>/g, '<\/embed>');
-            
-            //This should fix &amp;s in URL's
-            html = html.replace(' &amp; ', 'YUI_AMP');
-            html = html.replace('&amp;', '&');
-            html = html.replace('YUI_AMP', '&amp;');
-
-            //Trim the output, removing whitespace from the beginning and end
-            html = YAHOO.lang.trim(html);
-
-            if (this.get('removeLineBreaks')) {
-                html = html.replace(/\n/g, '').replace(/\r/g, '');
-                html = html.replace(/  /gi, ' '); //Replace all double spaces and replace with a single
-            }
-            
-            //First empty span
-            if (html.substring(0, 6).toLowerCase() == '<span>')  {
-                html = html.substring(6);
-                //Last empty span
-                if (html.substring(html.length - 7, html.length).toLowerCase() == '</span>')  {
-                    html = html.substring(0, html.length - 7);
-                }
-            }
-
-            for (var v in this.invalidHTML) {
-                if (YAHOO.lang.hasOwnProperty(this.invalidHTML, v)) {
-                    if (Lang.isObject(v) && v.keepContents) {
-                        html = html.replace(new RegExp('<' + v + '([^>]*)>(.*?)<\/' + v + '>', 'gi'), '$1');
-                    } else {
-                        html = html.replace(new RegExp('<' + v + '([^>]*)>(.*?)<\/' + v + '>', 'gi'), '');
-                    }
-                }
-            }
-
-            this.fireEvent('cleanHTML', { type: 'cleanHTML', target: this, html: html });
-
-            return html;
-        },
-        /**
-        * @method filter_invalid_lists
-        * @param String html The HTML string to filter
-        * @description Filters invalid ol and ul list markup, converts this: <li></li><ol>..</ol> to this: <li></li><li><ol>..</ol></li>
-        */
-        filter_invalid_lists: function(html) {
-            html = html.replace(/<\/li>\n/gi, '</li>');
-
-            html = html.replace(/<\/li><ol>/gi, '</li><li><ol>');
-            html = html.replace(/<\/ol>/gi, '</ol></li>');
-            html = html.replace(/<\/ol><\/li>\n/gi, "</ol>\n");
-
-            html = html.replace(/<\/li><ul>/gi, '</li><li><ul>');
-            html = html.replace(/<\/ul>/gi, '</ul></li>');
-            html = html.replace(/<\/ul><\/li>\n?/gi, "</ul>\n");
-
-            html = html.replace(/<\/li>/gi, "</li>\n");
-            html = html.replace(/<\/ol>/gi, "</ol>\n");
-            html = html.replace(/<ol>/gi, "<ol>\n");
-            html = html.replace(/<ul>/gi, "<ul>\n");
-            return html;
-        },
-        /**
-        * @method filter_safari
-        * @param String html The HTML string to filter
-        * @description Filters strings specific to Safari
-        * @return String
-        */
-        filter_safari: function(html) {
-            if (this.browser.webkit) {
-                //<span class="Apple-tab-span" style="white-space:pre">	</span>
-                html = html.replace(/<span class="Apple-tab-span" style="white-space:pre">([^>])<\/span>/gi, '&nbsp;&nbsp;&nbsp;&nbsp;');
-                html = html.replace(/Apple-style-span/gi, '');
-                html = html.replace(/style="line-height: normal;"/gi, '');
-                //Remove bogus LI's
-                html = html.replace(/<li><\/li>/gi, '');
-                html = html.replace(/<li> <\/li>/gi, '');
-                html = html.replace(/<li>  <\/li>/gi, '');
-                //Remove bogus DIV's - updated from just removing the div's to replacing /div with a break
-                if (this.get('ptags')) {
-		            html = html.replace(/<div([^>]*)>/g, '<p$1>');
-				    html = html.replace(/<\/div>/gi, '</p>');
-                } else {
-                    html = html.replace(/<div>/gi, '');
-				    html = html.replace(/<\/div>/gi, '<br>');
-                }
-            }
-            return html;
-        },
-        /**
-        * @method filter_internals
-        * @param String html The HTML string to filter
-        * @description Filters internal RTE strings and bogus attrs we don't want
-        * @return String
-        */
-        filter_internals: function(html) {
-		    html = html.replace(/\r/g, '');
-            //Fix stuff we don't want
-	        html = html.replace(/<\/?(body|head|html)[^>]*>/gi, '');
-            //Fix last BR in LI
-		    html = html.replace(/<YUI_BR><\/li>/gi, '</li>');
-
-		    html = html.replace(/yui-tag-span/gi, '');
-		    html = html.replace(/yui-tag/gi, '');
-		    html = html.replace(/yui-non/gi, '');
-		    html = html.replace(/yui-img/gi, '');
-		    html = html.replace(/ tag="span"/gi, '');
-		    html = html.replace(/ class=""/gi, '');
-		    html = html.replace(/ style=""/gi, '');
-		    html = html.replace(/ class=" "/gi, '');
-		    html = html.replace(/ class="  "/gi, '');
-		    html = html.replace(/ target=""/gi, '');
-		    html = html.replace(/ title=""/gi, '');
-
-            if (this.browser.ie) {
-		        html = html.replace(/ class= /gi, '');
-		        html = html.replace(/ class= >/gi, '');
-		        html = html.replace(/_height="([^>])"/gi, '');
-		        html = html.replace(/_width="([^>])"/gi, '');
-            }
-            
-            return html;
-        },
-        /**
-        * @method filter_all_rgb
-        * @param String str The HTML string to filter
-        * @description Converts all RGB color strings found in passed string to a hex color, example: style="color: rgb(0, 255, 0)" converts to style="color: #00ff00"
-        * @return String
-        */
-        filter_all_rgb: function(str) {
-            var exp = new RegExp("rgb\\s*?\\(\\s*?([0-9]+).*?,\\s*?([0-9]+).*?,\\s*?([0-9]+).*?\\)", "gi");
-            var arr = str.match(exp);
-            if (Lang.isArray(arr)) {
-                for (var i = 0; i < arr.length; i++) {
-                    var color = this.filter_rgb(arr[i]);
-                    str = str.replace(arr[i].toString(), color);
-                }
-            }
-            
-            return str;
-        },
-        /**
-        * @method filter_rgb
-        * @param String css The CSS string containing rgb(#,#,#);
-        * @description Converts an RGB color string to a hex color, example: rgb(0, 255, 0) converts to #00ff00
-        * @return String
-        */
-        filter_rgb: function(css) {
-            if (css.toLowerCase().indexOf('rgb') != -1) {
-                var exp = new RegExp("(.*?)rgb\\s*?\\(\\s*?([0-9]+).*?,\\s*?([0-9]+).*?,\\s*?([0-9]+).*?\\)(.*?)", "gi");
-                var rgb = css.replace(exp, "$1,$2,$3,$4,$5").split(',');
-            
-                if (rgb.length == 5) {
-                    var r = parseInt(rgb[1], 10).toString(16);
-                    var g = parseInt(rgb[2], 10).toString(16);
-                    var b = parseInt(rgb[3], 10).toString(16);
-
-                    r = r.length == 1 ? '0' + r : r;
-                    g = g.length == 1 ? '0' + g : g;
-                    b = b.length == 1 ? '0' + b : b;
-
-                    css = "#" + r + g + b;
-                }
-            }
-            return css;
-        },
-        /**
-        * @method pre_filter_linebreaks
-        * @param String html The HTML to filter
-        * @param String markup The markup type to filter to
-        * @description HTML Pre Filter
-        * @return String
-        */
-        pre_filter_linebreaks: function(html, markup) {
-            if (this.browser.webkit) {
-		        html = html.replace(/<br class="khtml-block-placeholder">/gi, '<YUI_BR>');
-		        html = html.replace(/<br class="webkit-block-placeholder">/gi, '<YUI_BR>');
-            }
-		    html = html.replace(/<br>/gi, '<YUI_BR>');
-		    html = html.replace(/<br (.*?)>/gi, '<YUI_BR>');
-		    html = html.replace(/<br\/>/gi, '<YUI_BR>');
-		    html = html.replace(/<br \/>/gi, '<YUI_BR>');
-		    html = html.replace(/<div><YUI_BR><\/div>/gi, '<YUI_BR>');
-		    html = html.replace(/<p>(&nbsp;|&#160;)<\/p>/g, '<YUI_BR>');            
-		    html = html.replace(/<p><br>&nbsp;<\/p>/gi, '<YUI_BR>');
-		    html = html.replace(/<p>&nbsp;<\/p>/gi, '<YUI_BR>');
-            //Fix last BR
-	        html = html.replace(/<YUI_BR>$/, '');
-            //Fix last BR in P
-	        html = html.replace(/<YUI_BR><\/p>/g, '</p>');
-            if (this.browser.ie) {
-	            html = html.replace(/&nbsp;&nbsp;&nbsp;&nbsp;/g, '\t');
-            }
-            return html;
-        },
-        /**
-        * @method post_filter_linebreaks
-        * @param String html The HTML to filter
-        * @param String markup The markup type to filter to
-        * @description HTML Pre Filter
-        * @return String
-        */
-        post_filter_linebreaks: function(html, markup) {
-            if (markup == 'xhtml') {
-		        html = html.replace(/<YUI_BR>/g, '<br />');
-            } else {
-		        html = html.replace(/<YUI_BR>/g, '<br>');
-            }
-            return html;
-        },
-        /**
-        * @method clearEditorDoc
-        * @description Clear the doc of the Editor
-        */
-        clearEditorDoc: function() {
-            this._getDoc().body.innerHTML = '&nbsp;';
-        },
-        /**
-        * @method openWindow
-        * @description Override Method for Advanced Editor
-        */
-        openWindow: function(win) {
-        },
-        /**
-        * @method moveWindow
-        * @description Override Method for Advanced Editor
-        */
-        moveWindow: function() {
-        },
-        /**
-        * @private
-        * @method _closeWindow
-        * @description Override Method for Advanced Editor
-        */
-        _closeWindow: function() {
-        },
-        /**
-        * @method closeWindow
-        * @description Override Method for Advanced Editor
-        */
-        closeWindow: function() {
-            //this.unsubscribeAll('afterExecCommand');
-            this.toolbar.resetAllButtons();
-            this._focusWindow();        
-        },
-        /**
-        * @method destroy
-        * @description Destroys the editor, all of it's elements and objects.
-        * @return {Boolean}
-        */
-        destroy: function() {
-            YAHOO.log('Destroying Editor', 'warn', 'SimpleEditor');
-            if (this.resize) {
-                YAHOO.log('Destroying Resize', 'warn', 'SimpleEditor');
-                this.resize.destroy();
-            }
-            if (this.dd) {
-                YAHOO.log('Unreg DragDrop Instance', 'warn', 'SimpleEditor');
-                this.dd.unreg();
-            }
-            if (this.get('panel')) {
-                YAHOO.log('Destroying Editor Panel', 'warn', 'SimpleEditor');
-                this.get('panel').destroy();
-            }
-            this.saveHTML();
-            this.toolbar.destroy();
-            YAHOO.log('Restoring TextArea', 'info', 'SimpleEditor');
-            this.setStyle('visibility', 'visible');
-            this.setStyle('position', 'static');
-            this.setStyle('top', '');
-            this.setStyle('left', '');
-            var textArea = this.get('element');
-            this.get('element_cont').get('parentNode').replaceChild(textArea, this.get('element_cont').get('element'));
-            this.get('element_cont').get('element').innerHTML = '';
-            this.set('handleSubmit', false); //Remove the submit handler
-            return true;
-        },        
-        /**
-        * @method toString
-        * @description Returns a string representing the editor.
-        * @return {String}
-        */
-        toString: function() {
-            var str = 'SimpleEditor';
-            if (this.get && this.get('element_cont')) {
-                str = 'SimpleEditor (#' + this.get('element_cont').get('id') + ')' + ((this.get('disabled') ? ' Disabled' : ''));
-            }
-            return str;
-        }
-    });
-
-/**
-* @event toolbarLoaded
-* @description Event is fired during the render process directly after the Toolbar is loaded. Allowing you to attach events to the toolbar. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event cleanHTML
-* @description Event is fired after the cleanHTML method is called.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event afterRender
-* @description Event is fired after the render process finishes. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorContentLoaded
-* @description Event is fired after the editor iframe's document fully loads and fires it's onload event. From here you can start injecting your own things into the document. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeNodeChange
-* @description Event fires at the beginning of the nodeChange process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event afterNodeChange
-* @description Event fires at the end of the nodeChange process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeExecCommand
-* @description Event fires at the beginning of the execCommand process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event afterExecCommand
-* @description Event fires at the end of the execCommand process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorMouseUp
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorMouseDown
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorDoubleClick
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorClick
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorKeyUp
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorKeyPress
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorKeyDown
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorMouseUp
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorMouseDown
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorDoubleClick
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorClick
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorKeyUp
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorKeyPress
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorKeyDown
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-    /**
-     * @description Singleton object used to track the open window objects and panels across the various open editors
-     * @class EditorInfo
-     * @static
-    */
-    YAHOO.widget.EditorInfo = {
-        /**
-        * @private
-        * @property _instances
-        * @description A reference to all editors on the page.
-        * @type Object
-        */
-        _instances: {},
-        /**
-        * @private
-        * @property blankImage
-        * @description A reference to the blankImage url
-        * @type String 
-        */
-        blankImage: '',
-        /**
-        * @private
-        * @property window
-        * @description A reference to the currently open window object in any editor on the page.
-        * @type Object <a href="YAHOO.widget.EditorWindow.html">YAHOO.widget.EditorWindow</a>
-        */
-        window: {},
-        /**
-        * @private
-        * @property panel
-        * @description A reference to the currently open panel in any editor on the page.
-        * @type Object <a href="YAHOO.widget.Overlay.html">YAHOO.widget.Overlay</a>
-        */
-        panel: null,
-        /**
-        * @method getEditorById
-        * @description Returns a reference to the Editor object associated with the given textarea
-        * @param {String/HTMLElement} id The id or reference of the textarea to return the Editor instance of
-        * @return Object <a href="YAHOO.widget.Editor.html">YAHOO.widget.Editor</a>
-        */
-        getEditorById: function(id) {
-            if (!YAHOO.lang.isString(id)) {
-                //Not a string, assume a node Reference
-                id = id.id;
-            }
-            if (this._instances[id]) {
-                return this._instances[id];
-            }
-            return false;
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the EditorInfo.
-        * @return {String}
-        */
-        toString: function() {
-            var len = 0;
-            for (var i in this._instances) {
-                if (Lang.hasOwnProperty(this._instances, i)) {
-                    len++;
-                }
-            }
-            return 'Editor Info (' + len + ' registered intance' + ((len > 1) ? 's' : '') + ')';
-        }
-    };
-
-
-
-    
-})();
-/**
- * @module editor
- * @description <p>The Rich Text Editor is a UI control that replaces a standard HTML textarea; it allows for the rich formatting of text content, including common structural treatments like lists, formatting treatments like bold and italic text, and drag-and-drop inclusion and sizing of images. The Rich Text Editor's toolbar is extensible via a plugin architecture so that advanced implementations can achieve a high degree of customization.</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event, container_core, simpleeditor
- * @optional dragdrop, animation, menu, button
- * @beta
- */
-
-(function() {
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang,
-    Toolbar = YAHOO.widget.Toolbar;
-
-    /**
-     * The Rich Text Editor is a UI control that replaces a standard HTML textarea; it allows for the rich formatting of text content, including common structural treatments like lists, formatting treatments like bold and italic text, and drag-and-drop inclusion and sizing of images. The Rich Text Editor's toolbar is extensible via a plugin architecture so that advanced implementations can achieve a high degree of customization.
-     * @constructor
-     * @class Editor
-     * @extends YAHOO.widget.SimpleEditor
-     * @param {String/HTMLElement} el The textarea element to turn into an editor.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    
-    YAHOO.widget.Editor = function(el, attrs) {
-        YAHOO.log('Editor Initalizing', 'info', 'Editor');
-        YAHOO.widget.Editor.superclass.constructor.call(this, el, attrs);
-    };
-
-    YAHOO.extend(YAHOO.widget.Editor, YAHOO.widget.SimpleEditor, {
-        /**
-        * @private
-        * @property _undoCache
-        * @description An Array hash of the Undo Levels.
-        * @type Array
-        */
-        _undoCache: null,
-        /**
-        * @private
-        * @property _undoLevel
-        * @description The index of the current undo state.
-        * @type Number
-        */
-        _undoLevel: null,    
-        /**
-        * @private
-        * @method _hasUndoLevel
-        * @description Checks to see if we have an undo level available
-        * @return Boolean
-        */
-        _hasUndoLevel: function() {
-            return (this._undoCache.length && this._undoLevel);
-        },
-        /**
-        * @private
-        * @method _undoNodeChange
-        * @description nodeChange listener for undo processing
-        */
-        _undoNodeChange: function() {
-            var undo_button = this.toolbar.getButtonByValue('undo'),
-                redo_button = this.toolbar.getButtonByValue('redo');
-            if (undo_button && redo_button) {
-                if (this._hasUndoLevel()) {
-                    this.toolbar.enableButton(undo_button);
-                }
-                if (this._undoLevel < this._undoCache.length) {
-                    this.toolbar.enableButton(redo_button);
-                }
-            }
-        },
-        /**
-        * @private
-        * @method _checkUndo
-        * @description Prunes the undo cache when it reaches the maxUndo config
-        */
-        _checkUndo: function() {
-            var len = this._undoCache.length,
-            tmp = [];
-            if (len >= this.get('maxUndo')) {
-                //YAHOO.log('Undo cache too large (' + len + '), pruning..', 'info', 'SimpleEditor');
-                for (var i = (len - this.get('maxUndo')); i < len; i++) {
-                    tmp.push(this._undoCache[i]);
-                }
-                this._undoCache = tmp;
-            }
-        },
-        /**
-        * @private
-        * @method _putUndo
-        * @description Puts the content of the Editor into the _undoCache.
-        * //TODO Convert the hash to a series of TEXTAREAS to store state in.
-        * @param {String} str The content of the Editor
-        */
-        _putUndo: function(str) {
-            this._undoCache.push(str);
-        },
-        /**
-        * @private
-        * @method _getUndo
-        * @description Get's a level from the undo cache.
-        * @param {Number} index The index of the undo level we want to get.
-        * @return {String}
-        */
-        _getUndo: function(index) {
-            return this._undoCache[index];
-        },
-        /**
-        * @private
-        * @method _storeUndo
-        * @description Method to call when you want to store an undo state. Currently called from nodeChange and _handleKeyUp
-        */
-        _storeUndo: function() {
-            if (this._lastCommand === 'undo' || this._lastCommand === 'redo') {
-                return false;
-            }
-            if (!this._undoCache) {
-                this._undoCache = [];
-            }
-            this._checkUndo();
-            var str = this.getEditorHTML();
-            var last = this._undoCache[this._undoCache.length - 1];
-            if (last) {
-                if (str !== last) {
-                    //YAHOO.log('Storing Undo', 'info', 'SimpleEditor');
-                    this._putUndo(str);
-                }
-            } else {
-                //YAHOO.log('Storing Undo', 'info', 'SimpleEditor');
-                this._putUndo(str);
-            }
-            this._undoLevel = this._undoCache.length;
-            this._undoNodeChange();
-        },    
-        /**
-        * @property STR_BEFORE_EDITOR
-        * @description The accessibility string for the element before the iFrame
-        * @type String
-        */
-        STR_BEFORE_EDITOR: 'This text field can contain stylized text and graphics. To cycle through all formatting options, use the keyboard shortcut Control + Shift + T to place focus on the toolbar and navigate between option heading names. <h4>Common formatting keyboard shortcuts:</h4><ul><li>Control Shift B sets text to bold</li> <li>Control Shift I sets text to italic</li> <li>Control Shift U underlines text</li> <li>Control Shift [ aligns text left</li> <li>Control Shift | centers text</li> <li>Control Shift ] aligns text right</li> <li>Control Shift L adds an HTML link</li> <li>To exit this text editor use the keyboard shortcut Control + Shift + ESC.</li></ul>',    
-        /**
-        * @property STR_CLOSE_WINDOW
-        * @description The Title of the close button in the Editor Window
-        * @type String
-        */
-        STR_CLOSE_WINDOW: 'Close Window',
-        /**
-        * @property STR_CLOSE_WINDOW_NOTE
-        * @description A note appearing in the Editor Window to tell the user that the Escape key will close the window
-        * @type String
-        */
-        STR_CLOSE_WINDOW_NOTE: 'To close this window use the Control + Shift + W key',
-        /**
-        * @property STR_IMAGE_PROP_TITLE
-        * @description The title for the Image Property Editor Window
-        * @type String
-        */
-        STR_IMAGE_PROP_TITLE: 'Image Options',
-        /**
-        * @property STR_IMAGE_URL
-        * @description The label string for Image URL
-        * @type String
-        */
-        STR_IMAGE_URL: 'Image URL',
-        /**
-        * @property STR_IMAGE_TITLE
-        * @description The label string for Image Description
-        * @type String
-        */
-        STR_IMAGE_TITLE: 'Description',
-        /**
-        * @property STR_IMAGE_SIZE
-        * @description The label string for Image Size
-        * @type String
-        */
-        STR_IMAGE_SIZE: 'Size',
-        /**
-        * @property STR_IMAGE_ORIG_SIZE
-        * @description The label string for Original Image Size
-        * @type String
-        */
-        STR_IMAGE_ORIG_SIZE: 'Original Size',
-        /**
-        * @property STR_IMAGE_COPY
-        * @description The label string for the image copy and paste message for Opera and Safari
-        * @type String
-        */
-        STR_IMAGE_COPY: '<span class="tip"><span class="icon icon-info"></span><strong>Note:</strong>To move this image just highlight it, cut, and paste where ever you\'d like.</span>',
-        /**
-        * @property STR_IMAGE_PADDING
-        * @description The label string for the image padding.
-        * @type String
-        */
-        STR_IMAGE_PADDING: 'Padding',
-        /**
-        * @property STR_IMAGE_BORDER
-        * @description The label string for the image border.
-        * @type String
-        */
-        STR_IMAGE_BORDER: 'Border',
-        /**
-        * @property STR_IMAGE_BORDER_SIZE
-        * @description The label string for the image border size.
-        * @type String
-        */
-        STR_IMAGE_BORDER_SIZE: 'Border Size',
-        /**
-        * @property STR_IMAGE_BORDER_TYPE
-        * @description The label string for the image border type.
-        * @type String
-        */
-        STR_IMAGE_BORDER_TYPE: 'Border Type',
-        /**
-        * @property STR_IMAGE_TEXTFLOW
-        * @description The label string for the image text flow.
-        * @type String
-        */
-        STR_IMAGE_TEXTFLOW: 'Text Flow',
-        /**
-        * @property STR_LOCAL_FILE_WARNING
-        * @description The label string for the local file warning.
-        * @type String
-        */
-        STR_LOCAL_FILE_WARNING: '<span class="tip"><span class="icon icon-warn"></span><strong>Note:</strong>This image/link points to a file on your computer and will not be accessible to others on the internet.</span>',
-        /**
-        * @property STR_LINK_PROP_TITLE
-        * @description The label string for the Link Property Editor Window.
-        * @type String
-        */
-        STR_LINK_PROP_TITLE: 'Link Options',
-        /**
-        * @property STR_LINK_PROP_REMOVE
-        * @description The label string for the Remove link from text link inside the property editor.
-        * @type String
-        */
-        STR_LINK_PROP_REMOVE: 'Remove link from text',
-        /**
-        * @property STR_LINK_NEW_WINDOW
-        * @description The string for the open in a new window label.
-        * @type String
-        */
-        STR_LINK_NEW_WINDOW: 'Open in a new window.',
-        /**
-        * @property STR_LINK_TITLE
-        * @description The string for the link description.
-        * @type String
-        */
-        STR_LINK_TITLE: 'Description',
-        /**
-        * @protected
-        * @property CLASS_LOCAL_FILE
-        * @description CSS class applied to an element when it's found to have a local url.
-        * @type String
-        */
-        CLASS_LOCAL_FILE: 'warning-localfile',
-        /**
-        * @protected
-        * @property CLASS_HIDDEN
-        * @description CSS class applied to the body when the hiddenelements button is pressed.
-        * @type String
-        */
-        CLASS_HIDDEN: 'yui-hidden',
-        /** 
-        * @method init
-        * @description The Editor class' initialization method
-        */
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.log('init', 'info', 'Editor');
-            
-            this._windows = {};
-            this._defaultToolbar = {
-                collapse: true,
-                titlebar: 'Text Editing Tools',
-                draggable: false,
-                buttonType: 'advanced',
-                buttons: [
-                    { group: 'fontstyle', label: 'Font Name and Size',
-                        buttons: [
-                            { type: 'select', label: 'Arial', value: 'fontname', disabled: true,
-                                menu: [
-                                    { text: 'Arial', checked: true },
-                                    { text: 'Arial Black' },
-                                    { text: 'Comic Sans MS' },
-                                    { text: 'Courier New' },
-                                    { text: 'Lucida Console' },
-                                    { text: 'Tahoma' },
-                                    { text: 'Times New Roman' },
-                                    { text: 'Trebuchet MS' },
-                                    { text: 'Verdana' }
-                                ]
-                            },
-                            { type: 'spin', label: '13', value: 'fontsize', range: [ 9, 75 ], disabled: true }
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'textstyle', label: 'Font Style',
-                        buttons: [
-                            { type: 'push', label: 'Bold CTRL + SHIFT + B', value: 'bold' },
-                            { type: 'push', label: 'Italic CTRL + SHIFT + I', value: 'italic' },
-                            { type: 'push', label: 'Underline CTRL + SHIFT + U', value: 'underline' },
-                            { type: 'separator' },
-                            { type: 'push', label: 'Subscript', value: 'subscript', disabled: true },
-                            { type: 'push', label: 'Superscript', value: 'superscript', disabled: true }
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'textstyle2', label: '&nbsp;',
-                        buttons: [
-                            { type: 'color', label: 'Font Color', value: 'forecolor', disabled: true },
-                            { type: 'color', label: 'Background Color', value: 'backcolor', disabled: true },
-                            { type: 'separator' },
-                            { type: 'push', label: 'Remove Formatting', value: 'removeformat', disabled: true },
-                            { type: 'push', label: 'Show/Hide Hidden Elements', value: 'hiddenelements' }
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'undoredo', label: 'Undo/Redo',
-                        buttons: [
-                            { type: 'push', label: 'Undo', value: 'undo', disabled: true },
-                            { type: 'push', label: 'Redo', value: 'redo', disabled: true }
-                            
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'alignment', label: 'Alignment',
-                        buttons: [
-                            { type: 'push', label: 'Align Left CTRL + SHIFT + [', value: 'justifyleft' },
-                            { type: 'push', label: 'Align Center CTRL + SHIFT + |', value: 'justifycenter' },
-                            { type: 'push', label: 'Align Right CTRL + SHIFT + ]', value: 'justifyright' },
-                            { type: 'push', label: 'Justify', value: 'justifyfull' }
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'parastyle', label: 'Paragraph Style',
-                        buttons: [
-                        { type: 'select', label: 'Normal', value: 'heading', disabled: true,
-                            menu: [
-                                { text: 'Normal', value: 'none', checked: true },
-                                { text: 'Header 1', value: 'h1' },
-                                { text: 'Header 2', value: 'h2' },
-                                { text: 'Header 3', value: 'h3' },
-                                { text: 'Header 4', value: 'h4' },
-                                { text: 'Header 5', value: 'h5' },
-                                { text: 'Header 6', value: 'h6' }
-                            ]
-                        }
-                        ]
-                    },
-                    { type: 'separator' },
-                    
-                    { group: 'indentlist2', label: 'Indenting and Lists',
-                        buttons: [
-                            { type: 'push', label: 'Indent', value: 'indent', disabled: true },
-                            { type: 'push', label: 'Outdent', value: 'outdent', disabled: true },
-                            { type: 'push', label: 'Create an Unordered List', value: 'insertunorderedlist' },
-                            { type: 'push', label: 'Create an Ordered List', value: 'insertorderedlist' }
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'insertitem', label: 'Insert Item',
-                        buttons: [
-                            { type: 'push', label: 'HTML Link CTRL + SHIFT + L', value: 'createlink', disabled: true },
-                            { type: 'push', label: 'Insert Image', value: 'insertimage' }
-                        ]
-                    }
-                ]
-            };
-
-            this._defaultImageToolbarConfig = {
-                buttonType: this._defaultToolbar.buttonType,
-                buttons: [
-                    { group: 'textflow', label: this.STR_IMAGE_TEXTFLOW + ':',
-                        buttons: [
-                            { type: 'push', label: 'Left', value: 'left' },
-                            { type: 'push', label: 'Inline', value: 'inline' },
-                            { type: 'push', label: 'Block', value: 'block' },
-                            { type: 'push', label: 'Right', value: 'right' }
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'padding', label: this.STR_IMAGE_PADDING + ':',
-                        buttons: [
-                            { type: 'spin', label: '0', value: 'padding', range: [0, 50] }
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'border', label: this.STR_IMAGE_BORDER + ':',
-                        buttons: [
-                            { type: 'select', label: this.STR_IMAGE_BORDER_SIZE, value: 'bordersize',
-                                menu: [
-                                    { text: 'none', value: '0', checked: true },
-                                    { text: '1px', value: '1' },
-                                    { text: '2px', value: '2' },
-                                    { text: '3px', value: '3' },
-                                    { text: '4px', value: '4' },
-                                    { text: '5px', value: '5' }
-                                ]
-                            },
-                            { type: 'select', label: this.STR_IMAGE_BORDER_TYPE, value: 'bordertype', disabled: true,
-                                menu: [
-                                    { text: 'Solid', value: 'solid', checked: true },
-                                    { text: 'Dashed', value: 'dashed' },
-                                    { text: 'Dotted', value: 'dotted' }
-                                ]
-                            },
-                            { type: 'color', label: 'Border Color', value: 'bordercolor', disabled: true }
-                        ]
-                    }
-                ]
-            };
-
-            YAHOO.widget.Editor.superclass.init.call(this, p_oElement, p_oAttributes);
-        },
-        _render: function() {
-            YAHOO.widget.Editor.superclass._render.apply(this, arguments);
-            var self = this;
-            //Render the panel in another thread and delay it a little..
-            window.setTimeout(function() {
-                self._renderPanel.call(self);
-            }, 800);
-        },
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create 
-        * the editor.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the editor.
-        */
-        initAttributes: function(attr) {
-            YAHOO.widget.Editor.superclass.initAttributes.call(this, attr);
-
-            /**
-            * @attribute localFileWarning
-            * @description Should we throw the warning if we detect a file that is local to their machine?
-            * @default true
-            * @type Boolean
-            */            
-            this.setAttributeConfig('localFileWarning', {
-                value: attr.locaFileWarning || true
-            });
-
-            /**
-            * @attribute hiddencss
-            * @description The CSS used to show/hide hidden elements on the page, these rules must be prefixed with the class provided in <code>this.CLASS_HIDDEN</code>
-            * @default <code><pre>
-            .yui-hidden font, .yui-hidden strong, .yui-hidden b, .yui-hidden em, .yui-hidden i, .yui-hidden u, .yui-hidden div, .yui-hidden p, .yui-hidden span, .yui-hidden img, .yui-hidden ul, .yui-hidden ol, .yui-hidden li, .yui-hidden table {
-                border: 1px dotted #ccc;
-            }
-            .yui-hidden .yui-non {
-                border: none;
-            }
-            .yui-hidden img {
-                padding: 2px;
-            }</pre></code>
-            * @type String
-            */            
-            this.setAttributeConfig('hiddencss', {
-                value: attr.hiddencss || '.yui-hidden font, .yui-hidden strong, .yui-hidden b, .yui-hidden em, .yui-hidden i, .yui-hidden u, .yui-hidden div,.yui-hidden p,.yui-hidden span,.yui-hidden img, .yui-hidden ul, .yui-hidden ol, .yui-hidden li, .yui-hidden table { border: 1px dotted #ccc; } .yui-hidden .yui-non { border: none; } .yui-hidden img { padding: 2px; }',
-                writeOnce: true
-            });
-           
-        },
-        /**
-        * @private
-        * @method _windows
-        * @description A reference to the HTML elements used for the body of Editor Windows.
-        */
-        _windows: null,
-        /**
-        * @private
-        * @method _defaultImageToolbar
-        * @description A reference to the Toolbar Object inside Image Editor Window.
-        */
-        _defaultImageToolbar: null,
-        /**
-        * @private
-        * @method _defaultImageToolbarConfig
-        * @description Config to be used for the default Image Editor Window.
-        */
-        _defaultImageToolbarConfig: null,
-        /**
-        * @private
-        * @method _fixNodes
-        * @description Fix href and imgs as well as remove invalid HTML.
-        */
-        _fixNodes: function() {
-            YAHOO.widget.Editor.superclass._fixNodes.call(this);
-            var url = '';
-
-            var imgs = this._getDoc().getElementsByTagName('img');
-            for (var im = 0; im < imgs.length; im++) {
-                if (imgs[im].getAttribute('href', 2)) {
-                    url = imgs[im].getAttribute('src', 2);
-                    if (this._isLocalFile(url)) {
-                        Dom.addClass(imgs[im], this.CLASS_LOCAL_FILE);
-                    } else {
-                        Dom.removeClass(imgs[im], this.CLASS_LOCAL_FILE);
-                    }
-                }
-            }
-            var fakeAs = this._getDoc().body.getElementsByTagName('a');
-            for (var a = 0; a < fakeAs.length; a++) {
-                if (fakeAs[a].getAttribute('href', 2)) {
-                    url = fakeAs[a].getAttribute('href', 2);
-                    if (this._isLocalFile(url)) {
-                        Dom.addClass(fakeAs[a], this.CLASS_LOCAL_FILE);
-                    } else {
-                        Dom.removeClass(fakeAs[a], this.CLASS_LOCAL_FILE);
-                    }
-                }
-            }
-        },
-        /**
-        * @private
-        * @property _disabled
-        * @description The Toolbar items that should be disabled if there is no selection present in the editor.
-        * @type Array
-        */
-        _disabled: [ 'createlink', 'forecolor', 'backcolor', 'fontname', 'fontsize', 'superscript', 'subscript', 'removeformat', 'heading', 'indent' ],
-        /**
-        * @private
-        * @property _alwaysDisabled
-        * @description The Toolbar items that should ALWAYS be disabled event if there is a selection present in the editor.
-        * @type Object
-        */
-        _alwaysDisabled: { 'outdent': true },
-        /**
-        * @private
-        * @property _alwaysEnabled
-        * @description The Toolbar items that should ALWAYS be enabled event if there isn't a selection present in the editor.
-        * @type Object
-        */
-        _alwaysEnabled: { hiddenelements: true },
-        /**
-        * @private
-        * @method _handleKeyDown
-        * @param {Event} ev The event we are working on.
-        * @description Override method that handles some new keydown events inside the iFrame document.
-        */
-        _handleKeyDown: function(ev) {
-            YAHOO.widget.Editor.superclass._handleKeyDown.call(this, ev);
-            var doExec = false,
-                action = null,
-                exec = false;
-
-            switch (ev.keyCode) {
-                //case 219: //Left
-                case this._keyMap.JUSTIFY_LEFT.key: //Left
-                    if (this._checkKey(this._keyMap.JUSTIFY_LEFT, ev)) {
-                        action = 'justifyleft';
-                        doExec = true;
-                    }
-                    break;
-                //case 220: //Center
-                case this._keyMap.JUSTIFY_CENTER.key:
-                    if (this._checkKey(this._keyMap.JUSTIFY_CENTER, ev)) {
-                        action = 'justifycenter';
-                        doExec = true;
-                    }
-                    break;
-                case 221: //Right
-                case this._keyMap.JUSTIFY_RIGHT.key:
-                    if (this._checkKey(this._keyMap.JUSTIFY_RIGHT, ev)) {
-                        action = 'justifyright';
-                        doExec = true;
-                    }
-                    break;
-            }
-            if (doExec && action) {
-                this.execCommand(action, null);
-                Event.stopEvent(ev);
-                this.nodeChange();
-            }
-        },        
-        /**
-        * @private
-        * @method _renderCreateLinkWindow
-        * @description Pre renders the CreateLink window so we get faster window opening.
-        */
-        _renderCreateLinkWindow: function() {
-                var str = '<label for="' + this.get('id') + '_createlink_url"><strong>' + this.STR_LINK_URL + ':</strong> <input type="text" name="' + this.get('id') + '_createlink_url" id="' + this.get('id') + '_createlink_url" value=""></label>';
-                str += '<label for="' + this.get('id') + '_createlink_target"><strong>&nbsp;</strong><input type="checkbox" name="' + this.get('id') + '_createlink_target" id="' + this.get('id') + '_createlink_target" value="_blank" class="createlink_target"> ' + this.STR_LINK_NEW_WINDOW + '</label>';
-                str += '<label for="' + this.get('id') + '_createlink_title"><strong>' + this.STR_LINK_TITLE + ':</strong> <input type="text" name="' + this.get('id') + '_createlink_title" id="' + this.get('id') + '_createlink_title" value=""></label>';
-                
-                var body = document.createElement('div');
-                body.innerHTML = str;
-
-                var unlinkCont = document.createElement('div');
-                unlinkCont.className = 'removeLink';
-                var unlink = document.createElement('a');
-                unlink.href = '#';
-                unlink.innerHTML = this.STR_LINK_PROP_REMOVE;
-                unlink.title = this.STR_LINK_PROP_REMOVE;
-                Event.on(unlink, 'click', function(ev) {
-                    Event.stopEvent(ev);
-                    this.execCommand('unlink');
-                    this.closeWindow();
-                }, this, true);
-                unlinkCont.appendChild(unlink);
-                body.appendChild(unlinkCont);
-                
-                this._windows.createlink = {};
-                this._windows.createlink.body = body;
-                body.style.display = 'none';
-                this.get('panel').editor_form.appendChild(body);
-                this.fireEvent('windowCreateLinkRender', { type: 'windowCreateLinkRender', panel: this.get('panel'), body: body });
-                return body;
-        },
-        _handleCreateLinkClick: function() {
-            var el = this._getSelectedElement();
-            if (this._isElement(el, 'img')) {
-                this.STOP_EXEC_COMMAND = true;
-                this.currentElement[0] = el;
-                this.toolbar.fireEvent('insertimageClick', { type: 'insertimageClick', target: this.toolbar });
-                this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-                return false;
-            }
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue('createlink')) {
-                    YAHOO.log('Toolbar Button for (createlink) was not found, skipping exec.', 'info', 'Editor');
-                    return false;
-                }
-            }
-            
-            this.on('afterExecCommand', function() {
-                var win = new YAHOO.widget.EditorWindow('createlink', {
-                    width: '350px'
-                });
-                
-                var el = this.currentElement[0],
-                    url = '',
-                    title = '',
-                    target = '',
-                    localFile = false;
-                if (el) {
-                    win.el = el;
-                    if (el.getAttribute('href', 2) !== null) {
-                        url = el.getAttribute('href', 2);
-                        if (this._isLocalFile(url)) {
-                            //Local File throw Warning
-                            YAHOO.log('Local file reference found, show local warning', 'warn', 'Editor');
-                            win.setFooter(this.STR_LOCAL_FILE_WARNING);
-                            localFile = true;
-                        } else {
-                            win.setFooter(' ');
-                        }
-                    }
-                    if (el.getAttribute('title') !== null) {
-                        title = el.getAttribute('title');
-                    }
-                    if (el.getAttribute('target') !== null) {
-                        target = el.getAttribute('target');
-                    }
-                }
-                var body = null;
-                if (this._windows.createlink && this._windows.createlink.body) {
-                    body = this._windows.createlink.body;
-                } else {
-                    body = this._renderCreateLinkWindow();
-                }
-
-                win.setHeader(this.STR_LINK_PROP_TITLE);
-                win.setBody(body);
-
-                Event.purgeElement(this.get('id') + '_createlink_url');
-
-                Dom.get(this.get('id') + '_createlink_url').value = url;
-                Dom.get(this.get('id') + '_createlink_title').value = title;
-                Dom.get(this.get('id') + '_createlink_target').checked = ((target) ? true : false);
-                
-
-                Event.onAvailable(this.get('id') + '_createlink_url', function() {
-                    var id = this.get('id');
-                    window.setTimeout(function() {
-                        try {
-                            YAHOO.util.Dom.get(id + '_createlink_url').focus();
-                        } catch (e) {}
-                    }, 50);
-
-                    if (this._isLocalFile(url)) {
-                        //Local File throw Warning
-                        Dom.addClass(this.get('id') + '_createlink_url', 'warning');
-                        YAHOO.log('Local file reference found, show local warning', 'warn', 'Editor');
-                        this.get('panel').setFooter(this.STR_LOCAL_FILE_WARNING);
-                    } else {
-                        Dom.removeClass(this.get('id') + '_createlink_url', 'warning');
-                        this.get('panel').setFooter(' ');
-                    }
-                    Event.on(this.get('id') + '_createlink_url', 'blur', function() {
-                        var url = Dom.get(this.get('id') + '_createlink_url');
-                        if (this._isLocalFile(url.value)) {
-                            //Local File throw Warning
-                            Dom.addClass(url, 'warning');
-                            YAHOO.log('Local file reference found, show local warning', 'warn', 'Editor');
-                            this.get('panel').setFooter(this.STR_LOCAL_FILE_WARNING);
-                        } else {
-                            Dom.removeClass(url, 'warning');
-                            this.get('panel').setFooter(' ');
-                        }
-                    }, this, true);
-                }, this, true);
-                
-                this.openWindow(win);
-
-            });
-        },
-        /**
-        * @private
-        * @method _handleCreateLinkWindowClose
-        * @description Handles the closing of the Link Properties Window.
-        */
-        _handleCreateLinkWindowClose: function() {
-            
-            var url = Dom.get(this.get('id') + '_createlink_url'),
-                target = Dom.get(this.get('id') + '_createlink_target'),
-                title = Dom.get(this.get('id') + '_createlink_title'),
-                el = arguments[0].win.el,
-                a = el;
-
-            if (url && url.value) {
-                var urlValue = url.value;
-                if ((urlValue.indexOf(':/'+'/') == -1) && (urlValue.substring(0,1) != '/') && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                    if ((urlValue.indexOf('@') != -1) && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                        //Found an @ sign, prefix with mailto:
-                        urlValue = 'mailto:' + urlValue;
-                    } else {
-                        // :// not found adding
-                        if (urlValue.substring(0, 1) != '#') {
-                            urlValue = 'http:/'+'/' + urlValue;
-                        }
-                        
-                    }
-                }
-                el.setAttribute('href', urlValue);
-                if (target.checked) {
-                    el.setAttribute('target', target.value);
-                } else {
-                    el.setAttribute('target', '');
-                }
-                el.setAttribute('title', ((title.value) ? title.value : ''));
-
-            } else {
-                var _span = this._getDoc().createElement('span');
-                _span.innerHTML = el.innerHTML;
-                Dom.addClass(_span, 'yui-non');
-                el.parentNode.replaceChild(_span, el);
-            }
-            Dom.removeClass(url, 'warning');
-            Dom.get(this.get('id') + '_createlink_url').value = '';
-            Dom.get(this.get('id') + '_createlink_title').value = '';
-            Dom.get(this.get('id') + '_createlink_target').checked = false;
-            this.nodeChange();
-            this.currentElement = [];
-            
-        },
-        /**
-        * @private
-        * @method _renderInsertImageWindow
-        * @description Pre renders the InsertImage window so we get faster window opening.
-        */
-        _renderInsertImageWindow: function() {
-                var el = this.currentElement[0];
-                var str = '<label for="' + this.get('id') + '_insertimage_url"><strong>' + this.STR_IMAGE_URL + ':</strong> <input type="text" id="' + this.get('id') + '_insertimage_url" value="" size="40"></label>';
-                var body = document.createElement('div');
-                body.innerHTML = str;
-
-                var tbarCont = document.createElement('div');
-                tbarCont.id = this.get('id') + '_img_toolbar';
-                body.appendChild(tbarCont);
-
-                var str2 = '<label for="' + this.get('id') + '_insertimage_title"><strong>' + this.STR_IMAGE_TITLE + ':</strong> <input type="text" id="' + this.get('id') + '_insertimage_title" value="" size="40"></label>';
-                str2 += '<label for="' + this.get('id') + '_insertimage_link"><strong>' + this.STR_LINK_URL + ':</strong> <input type="text" name="' + this.get('id') + '_insertimage_link" id="' + this.get('id') + '_insertimage_link" value=""></label>';
-                str2 += '<label for="' + this.get('id') + '_insertimage_target"><strong>&nbsp;</strong><input type="checkbox" name="' + this.get('id') + '_insertimage_target_" id="' + this.get('id') + '_insertimage_target" value="_blank" class="insertimage_target"> ' + this.STR_LINK_NEW_WINDOW + '</label>';
-                var div = document.createElement('div');
-                div.innerHTML = str2;
-                body.appendChild(div);
-
-                var o = {};
-                Lang.augmentObject(o, this._defaultImageToolbarConfig); //Break the config reference
-
-                var tbar = new YAHOO.widget.Toolbar(tbarCont, o);
-                tbar.editor_el = el;
-                this._defaultImageToolbar = tbar;
-                
-                var cont = tbar.get('cont');
-                var hw = document.createElement('div');
-                hw.className = 'yui-toolbar-group yui-toolbar-group-height-width height-width';
-                hw.innerHTML = '<h3>' + this.STR_IMAGE_SIZE + ':</h3>';
-                /*
-                var orgSize = '';
-                if ((height != oheight) || (width != owidth)) {
-                    orgSize = '<span class="info">' + this.STR_IMAGE_ORIG_SIZE + '<br>'+ owidth +' x ' + oheight + '</span>';
-                }
-                */
-                hw.innerHTML += '<span tabIndex="-1"><input type="text" size="3" value="" id="' + this.get('id') + '_insertimage_width"> x <input type="text" size="3" value="" id="' + this.get('id') + '_insertimage_height"></span>';
-                cont.insertBefore(hw, cont.firstChild);
-
-                Event.onAvailable(this.get('id') + '_insertimage_width', function() {
-                    Event.on(this.get('id') + '_insertimage_width', 'blur', function() {
-                        var value = parseInt(Dom.get(this.get('id') + '_insertimage_width').value, 10);
-                        if (value > 5) {
-                           this._defaultImageToolbar.editor_el.style.width = value + 'px';
-                            //Removed moveWindow call so the window doesn't jump
-                            //this.moveWindow();
-                        }
-                    }, this, true);
-                }, this, true);
-                Event.onAvailable(this.get('id') + '_insertimage_height', function() {
-                    Event.on(this.get('id') + '_insertimage_height', 'blur', function() {
-                        var value = parseInt(Dom.get(this.get('id') + '_insertimage_height').value, 10);
-                        if (value > 5) {
-                            this._defaultImageToolbar.editor_el.style.height = value + 'px';
-                            //Removed moveWindow call so the window doesn't jump
-                            //this.moveWindow();
-                        }
-                    }, this, true);
-                }, this, true);
-
-
-                tbar.on('colorPickerClicked', function(o) {
-                    var size = '1', type = 'solid', color = 'black', el = this._defaultImageToolbar.editor_el;
-
-                    if (el.style.borderLeftWidth) {
-                        size = parseInt(el.style.borderLeftWidth, 10);
-                    }
-                    if (el.style.borderLeftStyle) {
-                        type = el.style.borderLeftStyle;
-                    }
-                    if (el.style.borderLeftColor) {
-                        color = el.style.borderLeftColor;
-                    }
-                    var borderString = size + 'px ' + type + ' #' + o.color;
-                    el.style.border = borderString;
-                }, this, true);
-
-                tbar.on('buttonClick', function(o) {
-                    var value = o.button.value,
-                        el = this._defaultImageToolbar.editor_el,
-                        borderString = '';
-                    if (o.button.menucmd) {
-                        value = o.button.menucmd;
-                    }
-                    var size = '1', type = 'solid', color = 'black';
-
-                    /* All border calcs are done on the left border
-                        since our default interface only supports
-                        one border size/type and color */
-                    if (el.style.borderLeftWidth) {
-                        size = parseInt(el.style.borderLeftWidth, 10);
-                    }
-                    if (el.style.borderLeftStyle) {
-                        type = el.style.borderLeftStyle;
-                    }
-                    if (el.style.borderLeftColor) {
-                        color = el.style.borderLeftColor;
-                    }
-                    switch(value) {
-                        case 'bordersize':
-                            if (this.browser.webkit && this._lastImage) {
-                                Dom.removeClass(this._lastImage, 'selected');
-                                this._lastImage = null;
-                            }
-
-                            borderString = parseInt(o.button.value, 10) + 'px ' + type + ' ' + color;
-                            el.style.border = borderString;
-                            if (parseInt(o.button.value, 10) > 0) {
-                                tbar.enableButton('bordertype');
-                                tbar.enableButton('bordercolor');
-                            } else {
-                                tbar.disableButton('bordertype');
-                                tbar.disableButton('bordercolor');
-                            }
-                            break;
-                        case 'bordertype':
-                            if (this.browser.webkit && this._lastImage) {
-                                Dom.removeClass(this._lastImage, 'selected');
-                                this._lastImage = null;
-                            }
-                            borderString = size + 'px ' + o.button.value + ' ' + color;
-                            el.style.border = borderString;
-                            break;
-                        case 'right':
-                        case 'left':
-                            tbar.deselectAllButtons();
-                            el.style.display = '';
-                            el.align = o.button.value;
-                            break;
-                        case 'inline':
-                            tbar.deselectAllButtons();
-                            el.style.display = '';
-                            el.align = '';
-                            break;
-                        case 'block':
-                            tbar.deselectAllButtons();
-                            el.style.display = 'block';
-                            el.align = 'center';
-                            break;
-                        case 'padding':
-                            var _button = tbar.getButtonById(o.button.id);
-                            el.style.margin = _button.get('label') + 'px';
-                            break;
-                    }
-                    tbar.selectButton(o.button.value);
-                    if (value !== 'padding') {
-                        this.moveWindow();
-                    }
-                }, this, true);
-
-
-
-                if (this.get('localFileWarning')) {
-                    Event.on(this.get('id') + '_insertimage_link', 'blur', function() {
-                        var url = Dom.get(this.get('id') + '_insertimage_link');
-                        if (this._isLocalFile(url.value)) {
-                            //Local File throw Warning
-                            Dom.addClass(url, 'warning');
-                            YAHOO.log('Local file reference found, show local warning', 'warn', 'Editor');
-                            this.get('panel').setFooter(this.STR_LOCAL_FILE_WARNING);
-                        } else {
-                            Dom.removeClass(url, 'warning');
-                            this.get('panel').setFooter(' ');
-                            //Adobe AIR Code
-                            if ((this.browser.webkit && !this.browser.webkit3 || this.browser.air) || this.browser.opera) {                
-                                this.get('panel').setFooter(this.STR_IMAGE_COPY);
-                            }
-                        }
-                    }, this, true);
-                }
-
-                Event.on(this.get('id') + '_insertimage_url', 'blur', function() {
-                    var url = Dom.get(this.get('id') + '_insertimage_url');
-                    if (url.value && el) {
-                        if (url.value == el.getAttribute('src', 2)) {
-                            YAHOO.log('Images are the same, bail on blur handler', 'info', 'Editor');
-                            return false;
-                        }
-                    }
-                    YAHOO.log('Images are different, process blur handler', 'info', 'Editor');
-                    if (this._isLocalFile(url.value)) {
-                        //Local File throw Warning
-                        Dom.addClass(url, 'warning');
-                        YAHOO.log('Local file reference found, show local warning', 'warn', 'Editor');
-                        this.get('panel').setFooter(this.STR_LOCAL_FILE_WARNING);
-                    } else if (this.currentElement[0]) {
-                        Dom.removeClass(url, 'warning');
-                        this.get('panel').setFooter(' ');
-                        //Adobe AIR Code
-                        if ((this.browser.webkit && !this.browser.webkit3 || this.browser.air) || this.browser.opera) {                
-                            this.get('panel').setFooter(this.STR_IMAGE_COPY);
-                        }
-                        
-                        if (url && url.value && (url.value != this.STR_IMAGE_HERE)) {
-                            this.currentElement[0].setAttribute('src', url.value);
-                            var self = this,
-                                img = new Image();
-
-                            img.onerror = function() {
-                                url.value = self.STR_IMAGE_HERE;
-                                img.setAttribute('src', self.get('blankimage'));
-                                self.currentElement[0].setAttribute('src', self.get('blankimage'));
-                                YAHOO.util.Dom.get(self.get('id') + '_insertimage_height').value = img.height;
-                                YAHOO.util.Dom.get(self.get('id') + '_insertimage_width').value = img.width;
-                            };
-                            var id = this.get('id');
-                            window.setTimeout(function() {
-                                YAHOO.util.Dom.get(id + '_insertimage_height').value = img.height;
-                                YAHOO.util.Dom.get(id + '_insertimage_width').value = img.width;
-                                if (self.currentElement && self.currentElement[0]) {
-                                    if (!self.currentElement[0]._height) {
-                                        self.currentElement[0]._height = img.height;
-                                    }
-                                    if (!self.currentElement[0]._width) {
-                                        self.currentElement[0]._width = img.width;
-                                    }
-                                }
-                                //Removed moveWindow call so the window doesn't jump
-                                //self.moveWindow();
-                            }, 800); //Bumped the timeout up to account for larger images..
-
-                            if (url.value != this.STR_IMAGE_HERE) {
-                                img.src = url.value;
-                            }
-                        }
-                    }
-                    }, this, true);
-
-
-
-                this._windows.insertimage = {};
-                this._windows.insertimage.body = body;
-                body.style.display = 'none';
-                this.get('panel').editor_form.appendChild(body);
-                this.fireEvent('windowInsertImageRender', { type: 'windowInsertImageRender', panel: this.get('panel'), body: body, toolbar: tbar });
-                return body;
-        },
-        /**
-        * @private
-        * @method _handleInsertImageClick
-        * @description Opens the Image Properties Window when the insert Image button is clicked or an Image is Double Clicked.
-        */
-        _handleInsertImageClick: function() {
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue('insertimage')) {
-                    YAHOO.log('Toolbar Button for (insertimage) was not found, skipping exec.', 'info', 'Editor');
-                    return false;
-                }
-            }
-            this.on('afterExecCommand', function() {
-                var el = this.currentElement[0],
-                    body = null,
-                    link = '',
-                    target = '',
-                    tbar = null,
-                    title = '',
-                    src = '',
-                    align = '',
-                    height = 75,
-                    width = 75,
-                    padding = 0,
-                    oheight = 0,
-                    owidth = 0,
-                    blankimage = false,
-                    win = new YAHOO.widget.EditorWindow('insertimage', {
-                        width: '415px'
-                    });
-
-                if (!el) {
-                    el = this._getSelectedElement();
-                }
-                if (el) {
-                    win.el = el;
-                    if (el.getAttribute('src')) {
-                        src = el.getAttribute('src', 2);
-                        if (src.indexOf(this.get('blankimage')) != -1) {
-                            src = this.STR_IMAGE_HERE;
-                            blankimage = true;
-                        }
-                    }
-                    if (el.getAttribute('alt', 2)) {
-                        title = el.getAttribute('alt', 2);
-                    }
-                    if (el.getAttribute('title', 2)) {
-                        title = el.getAttribute('title', 2);
-                    }
-
-                    if (el.parentNode && this._isElement(el.parentNode, 'a')) {
-                        link = el.parentNode.getAttribute('href', 2);
-                        if (el.parentNode.getAttribute('target') !== null) {
-                            target = el.parentNode.getAttribute('target');
-                        }
-                    }
-                    height = parseInt(el.height, 10);
-                    width = parseInt(el.width, 10);
-                    if (el.style.height) {
-                        height = parseInt(el.style.height, 10);
-                    }
-                    if (el.style.width) {
-                        width = parseInt(el.style.width, 10);
-                    }
-                    if (el.style.margin) {
-                        padding = parseInt(el.style.margin, 10);
-                    }
-                    if (!el._height) {
-                        el._height = height;
-                    }
-                    if (!el._width) {
-                        el._width = width;
-                    }
-                    oheight = el._height;
-                    owidth = el._width;
-                }
-                if (this._windows.insertimage && this._windows.insertimage.body) {
-                    body = this._windows.insertimage.body;
-                    this._defaultImageToolbar.resetAllButtons();
-                } else {
-                    body = this._renderInsertImageWindow();
-                }
-
-                tbar = this._defaultImageToolbar;
-                tbar.editor_el = el;
-                
-
-                var bsize = '0';
-                var btype = 'solid';
-                if (el.style.borderLeftWidth) {
-                    bsize = parseInt(el.style.borderLeftWidth, 10);
-                }
-                if (el.style.borderLeftStyle) {
-                    btype = el.style.borderLeftStyle;
-                }
-                var bs_button = tbar.getButtonByValue('bordersize');
-                var bSizeStr = ((parseInt(bsize, 10) > 0) ? '' : 'none');
-                bs_button.set('label', '<span class="yui-toolbar-bordersize-' + bsize + '">'+bSizeStr+'</span>');
-                this._updateMenuChecked('bordersize', bsize, tbar);
-
-                var bt_button = tbar.getButtonByValue('bordertype');
-                bt_button.set('label', '<span class="yui-toolbar-bordertype-' + btype + '"></span>');
-                this._updateMenuChecked('bordertype', btype, tbar);
-                if (parseInt(bsize, 10) > 0) {
-                    tbar.enableButton(bt_button);
-                    tbar.enableButton(bs_button);
-                    tbar.enableButton('bordercolor');
-                }
-
-                if ((el.align == 'right') || (el.align == 'left')) {
-                    tbar.selectButton(el.align);
-                } else if (el.style.display == 'block') {
-                    tbar.selectButton('block');
-                } else {
-                    tbar.selectButton('inline');
-                }
-                if (parseInt(el.style.marginLeft, 10) > 0) {
-                     tbar.getButtonByValue('padding').set('label', ''+parseInt(el.style.marginLeft, 10));
-                }
-                if (el.style.borderSize) {
-                    tbar.selectButton('bordersize');
-                    tbar.selectButton(parseInt(el.style.borderSize, 10));
-                }
-                tbar.getButtonByValue('padding').set('label', ''+padding);
-
-
-
-                win.setHeader(this.STR_IMAGE_PROP_TITLE);
-                win.setBody(body);
-                //Adobe AIR Code
-                if ((this.browser.webkit && !this.browser.webkit3 || this.browser.air) || this.browser.opera) {                
-                    win.setFooter(this.STR_IMAGE_COPY);
-                }
-                this.openWindow(win);
-                Dom.get(this.get('id') + '_insertimage_url').value = src;
-                Dom.get(this.get('id') + '_insertimage_title').value = title;
-                Dom.get(this.get('id') + '_insertimage_link').value = link;
-                Dom.get(this.get('id') + '_insertimage_target').checked = ((target) ? true : false);
-                Dom.get(this.get('id') + '_insertimage_width').value = width;
-                Dom.get(this.get('id') + '_insertimage_height').value = height;
-
-
-                var orgSize = '';
-                if ((height != oheight) || (width != owidth)) {
-                    var s = document.createElement('span');
-                    s.className = 'info';
-                    //s.innerHTML = this.STR_IMAGE_ORIG_SIZE + '<br>'+ owidth +' x ' + oheight;
-                    s.innerHTML = this.STR_IMAGE_ORIG_SIZE + ': ('+ owidth +' x ' + oheight + ')';
-                    if (Dom.get(this.get('id') + '_insertimage_height').nextSibling) {
-                        var old = Dom.get(this.get('id') + '_insertimage_height').nextSibling;
-                        old.parentNode.removeChild(old);
-                    }
-                    Dom.get(this.get('id') + '_insertimage_height').parentNode.appendChild(s);
-                }
-
-                this.toolbar.selectButton('insertimage');
-                var id = this.get('id');
-                window.setTimeout(function() {
-                    try {
-                        YAHOO.util.Dom.get(id + '_insertimage_url').focus();
-                        if (blankimage) {
-                            YAHOO.util.Dom.get(id + '_insertimage_url').select();
-                        }
-                    } catch (e) {}
-                }, 50);
-
-            });
-        },
-        /**
-        * @private
-        * @method _handleInsertImageWindowClose
-        * @description Handles the closing of the Image Properties Window.
-        */
-        _handleInsertImageWindowClose: function() {
-            var url = Dom.get(this.get('id') + '_insertimage_url'),
-                title = Dom.get(this.get('id') + '_insertimage_title'),
-                link = Dom.get(this.get('id') + '_insertimage_link'),
-                target = Dom.get(this.get('id') + '_insertimage_target'),
-                el = arguments[0].win.el;
-
-            if (url && url.value && (url.value != this.STR_IMAGE_HERE)) {
-                el.setAttribute('src', url.value);
-                el.setAttribute('title', title.value);
-                el.setAttribute('alt', title.value);
-                var par = el.parentNode;
-                if (link.value) {
-                    var urlValue = link.value;
-                    if ((urlValue.indexOf(':/'+'/') == -1) && (urlValue.substring(0,1) != '/') && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                        if ((urlValue.indexOf('@') != -1) && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                            //Found an @ sign, prefix with mailto:
-                            urlValue = 'mailto:' + urlValue;
-                        } else {
-                            // :// not found adding
-                            urlValue = 'http:/'+'/' + urlValue;
-                        }
-                    }
-                    if (par && this._isElement(par, 'a')) {
-                        par.setAttribute('href', urlValue);
-                        if (target.checked) {
-                            par.setAttribute('target', target.value);
-                        } else {
-                            par.setAttribute('target', '');
-                        }
-                    } else {
-                        var _a = this._getDoc().createElement('a');
-                        _a.setAttribute('href', urlValue);
-                        if (target.checked) {
-                            _a.setAttribute('target', target.value);
-                        } else {
-                            _a.setAttribute('target', '');
-                        }
-                        el.parentNode.replaceChild(_a, el);
-                        _a.appendChild(el);
-                    }
-                } else {
-                    if (par && this._isElement(par, 'a')) {
-                        par.parentNode.replaceChild(el, par);
-                    }
-                }
-            } else {
-                //No url/src given, remove the node from the document
-                el.parentNode.removeChild(el);
-            }
-            Dom.get(this.get('id') + '_insertimage_url').value = '';
-            Dom.get(this.get('id') + '_insertimage_title').value = '';
-            Dom.get(this.get('id') + '_insertimage_link').value = '';
-            Dom.get(this.get('id') + '_insertimage_target').checked = false;
-            Dom.get(this.get('id') + '_insertimage_width').value = 0;
-            Dom.get(this.get('id') + '_insertimage_height').value = 0;
-            this._defaultImageToolbar.resetAllButtons();
-            this.currentElement = [];
-            this.nodeChange();
-        },
-        /**
-        * @property EDITOR_PANEL_ID
-        * @description HTML id to give the properties window in the DOM.
-        * @type String
-        */
-        EDITOR_PANEL_ID: '-panel',
-        /**
-        * @private
-        * @method _renderPanel
-        * @description Renders the panel used for Editor Windows to the document so we can start using it..
-        * @return {<a href="YAHOO.widget.Overlay.html">YAHOO.widget.Overlay</a>}
-        */
-        _renderPanel: function() {
-            var panel = new YAHOO.widget.Overlay(this.get('id') + this.EDITOR_PANEL_ID, {
-                    width: '300px',
-                    iframe: true,
-                    visible: false,
-                    underlay: 'none',
-                    draggable: false,
-                    close: false
-                });
-            this.set('panel', panel);
-
-            this.get('panel').setBody('---');
-            this.get('panel').setHeader(' ');
-            this.get('panel').setFooter(' ');
-
-
-            var body = document.createElement('div');
-            body.className = this.CLASS_PREFIX + '-body-cont';
-            for (var b in this.browser) {
-                if (this.browser[b]) {
-                    Dom.addClass(body, b);
-                    break;
-                }
-            }
-            Dom.addClass(body, ((YAHOO.widget.Button && (this._defaultToolbar.buttonType == 'advanced')) ? 'good-button' : 'no-button'));
-
-            var _note = document.createElement('h3');
-            _note.className = 'yui-editor-skipheader';
-            _note.innerHTML = this.STR_CLOSE_WINDOW_NOTE;
-            body.appendChild(_note);
-            var form = document.createElement('form');
-            form.setAttribute('method', 'GET');
-            panel.editor_form = form;
-
-            Event.on(form, 'submit', function(ev) {
-                Event.stopEvent(ev);
-            }, this, true);
-            body.appendChild(form);
-            var _close = document.createElement('span');
-            _close.innerHTML = 'X';
-            _close.title = this.STR_CLOSE_WINDOW;
-            _close.className = 'close';
-            
-            Event.on(_close, 'click', this.closeWindow, this, true);
-
-            var _knob = document.createElement('span');
-            _knob.innerHTML = '^';
-            _knob.className = 'knob';
-            panel.editor_knob = _knob;
-
-            var _header = document.createElement('h3');
-            panel.editor_header = _header;
-            _header.innerHTML = '<span></span>';
-
-            panel.setHeader(' '); //Clear the current header
-            panel.appendToHeader(_header);
-            _header.appendChild(_close);
-            _header.appendChild(_knob);
-            panel.setBody(' '); //Clear the current body
-            panel.setFooter(' '); //Clear the current footer
-            panel.appendToBody(body); //Append the new DOM node to it
-
-            Event.on(panel.element, 'click', function(ev) {
-                Event.stopPropagation(ev);
-            });
-
-            var fireShowEvent = function() {
-                //panel.bringToTop();
-            };
-            panel.showEvent.subscribe(fireShowEvent, this, true);
-            panel.renderEvent.subscribe(function() {
-                this._renderInsertImageWindow();
-                this._renderCreateLinkWindow();
-                this.fireEvent('windowRender', { type: 'windowRender', panel: panel });
-            }, this, true);
-
-            if (this.DOMReady) {
-                this.get('panel').render(document.body);
-                //Render to the element_cont so we can skin it better
-                //this.get('panel').render(this.get('element_cont').get('element'));
-                Dom.addClass(this.get('panel').element, 'yui-editor-panel');
-            } else {
-                Event.onDOMReady(function() {
-                    this.get('panel').render(document.body);
-                    //Render to the element_cont so we can skin it better
-                    //this.get('panel').render(this.get('element_cont').get('element'));
-                    Dom.addClass(this.get('panel').element, 'yui-editor-panel');
-                }, this, true);
-            }
-            this.get('panel').showEvent.subscribe(function() {
-                YAHOO.util.Dom.setStyle(this.element, 'display', 'block');
-            });
-            return this.get('panel');
-        },
-        /**
-        * @method openWindow
-        * @param {<a href="YAHOO.widget.EditorWindow.html">YAHOO.widget.EditorWindow</a>} win A <a href="YAHOO.widget.EditorWindow.html">YAHOO.widget.EditorWindow</a> instance
-        * @description Opens a new "window/panel"
-        */
-        openWindow: function(win) {
-            YAHOO.log('openWindow: ' + win.name, 'info', 'Editor');
-            var self = this;
-            window.setTimeout(function() {
-                self.toolbar.set('disabled', true); //Disable the toolbar when an editor window is open..
-            }, 10);
-            Event.on(document, 'keydown', this._closeWindow, this, true);
-            
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            
-
-            var xy = Dom.getXY(this.currentElement[0]),
-            elXY = Dom.getXY(this.get('iframe').get('element')),
-            panel = this.get('panel'),
-            newXY = [(xy[0] + elXY[0] - 20), (xy[1] + elXY[1] + 10)],
-            wWidth = (parseInt(win.attrs.width, 10) / 2),
-            align = 'center',
-            body = null;
-
-            this.fireEvent('beforeOpenWindow', { type: 'beforeOpenWindow', win: win, panel: panel });
-
-            var form = panel.editor_form;
-            
-            var wins = this._windows;
-            for (var b in wins) {
-                if (Lang.hasOwnProperty(wins, b)) {
-                    if (wins[b] && wins[b].body) {
-                        if (b == win.name) {
-                            Dom.setStyle(wins[b].body, 'display', 'block');
-                        } else {
-                            Dom.setStyle(wins[b].body, 'display', 'none');
-                        }
-                    }
-                }
-            }
-            
-            if (this._windows[win.name].body) {
-                Dom.setStyle(this._windows[win.name].body, 'display', 'block');
-                form.appendChild(this._windows[win.name].body);
-            } else {
-                if (Lang.isObject(win.body)) { //Assume it's a reference
-                    form.appendChild(win.body);
-                } else { //Assume it's a string
-                    var _tmp = document.createElement('div');
-                    _tmp.innerHTML = win.body;
-                    form.appendChild(_tmp);
-                }
-            }
-            panel.editor_header.firstChild.innerHTML = win.header;
-            if (win.footer !== null) {
-                panel.setFooter(win.footer);
-                Dom.addClass(panel.footer, 'open');
-            } else {
-                Dom.removeClass(panel.footer, 'open');
-            }
-            panel.cfg.setProperty('width', win.attrs.width);
-
-            this.currentWindow = win;
-            this.moveWindow(true);
-            panel.show();
-            this.fireEvent('afterOpenWindow', { type: 'afterOpenWindow', win: win, panel: panel });
-        },
-        /**
-        * @method moveWindow
-        * @param {Boolean} force Boolean to tell it to move but not use any animation (Usually done the first time the window is loaded.)
-        * @description Realign the window with the currentElement and reposition the knob above the panel.
-        */
-        moveWindow: function(force) {
-            if (!this.currentWindow) {
-                return false;
-            }
-            var win = this.currentWindow,
-                xy = Dom.getXY(this.currentElement[0]),
-                elXY = Dom.getXY(this.get('iframe').get('element')),
-                panel = this.get('panel'),
-                //newXY = [(xy[0] + elXY[0] - 20), (xy[1] + elXY[1] + 10)],
-                newXY = [(xy[0] + elXY[0]), (xy[1] + elXY[1])],
-                wWidth = (parseInt(win.attrs.width, 10) / 2),
-                align = 'center',
-                orgXY = panel.cfg.getProperty('xy') || [0,0],
-                _knob = panel.editor_knob,
-                xDiff = 0,
-                yDiff = 0,
-                anim = false;
-
-
-            newXY[0] = ((newXY[0] - wWidth) + 20);
-            //Account for the Scroll bars in a scrolled editor window.
-            newXY[0] = newXY[0] - Dom.getDocumentScrollLeft(this._getDoc());
-            newXY[1] = newXY[1] - Dom.getDocumentScrollTop(this._getDoc());
-            
-            if (this._isElement(this.currentElement[0], 'img')) {
-                if (this.currentElement[0].src.indexOf(this.get('blankimage')) != -1) {
-                    newXY[0] = (newXY[0] + (75 / 2)); //Placeholder size
-                    newXY[1] = (newXY[1] + 75); //Placeholder sizea
-                } else {
-                    var w = parseInt(this.currentElement[0].width, 10);
-                    var h = parseInt(this.currentElement[0].height, 10);
-                    newXY[0] = (newXY[0] + (w / 2));
-                    newXY[1] = (newXY[1] + h);
-                }
-                newXY[1] = newXY[1] + 15;
-            } else {
-                var fs = Dom.getStyle(this.currentElement[0], 'fontSize');
-                if (fs && fs.indexOf && fs.indexOf('px') != -1) {
-                    newXY[1] = newXY[1] + parseInt(Dom.getStyle(this.currentElement[0], 'fontSize'), 10) + 5;
-                } else {
-                    newXY[1] = newXY[1] + 20;
-                }
-            }
-            if (newXY[0] < elXY[0]) {
-                newXY[0] = elXY[0] + 5;
-                align = 'left';
-            }
-
-            if ((newXY[0] + (wWidth * 2)) > (elXY[0] + parseInt(this.get('iframe').get('element').clientWidth, 10))) {
-                newXY[0] = ((elXY[0] + parseInt(this.get('iframe').get('element').clientWidth, 10)) - (wWidth * 2) - 5);
-                align = 'right';
-            }
-            
-            try {
-                xDiff = (newXY[0] - orgXY[0]);
-                yDiff = (newXY[1] - orgXY[1]);
-            } catch (e) {}
-
-
-            if (this.get('autoHeight') === false) {
-                var iTop = elXY[1] + parseInt(this.get('height'), 10);
-                var iLeft = elXY[0] + parseInt(this.get('width'), 10);
-                if (newXY[1] > iTop) {
-                    newXY[1] = iTop;
-                }
-                if (newXY[0] > iLeft) {
-                    newXY[0] = (iLeft / 2);
-                }
-            }
-            
-            //Convert negative numbers to positive so we can get the difference in distance
-            xDiff = ((xDiff < 0) ? (xDiff * -1) : xDiff);
-            yDiff = ((yDiff < 0) ? (yDiff * -1) : yDiff);
-
-            if (((xDiff > 10) || (yDiff > 10)) || force) { //Only move the window if it's supposed to move more than 10px or force was passed (new window)
-                var _knobLeft = 0,
-                    elW = 0;
-
-                if (this.currentElement[0].width) {
-                    elW = (parseInt(this.currentElement[0].width, 10) / 2);
-                }
-
-                var leftOffset = xy[0] + elXY[0] + elW;
-                _knobLeft = leftOffset - newXY[0];
-                //Check to see if the knob will go off either side & reposition it
-                if (_knobLeft > (parseInt(win.attrs.width, 10) - 1)) {
-                    _knobLeft = ((parseInt(win.attrs.width, 10) - 30) - 1);
-                } else if (_knobLeft < 40) {
-                    _knobLeft = 1;
-                }
-                if (isNaN(_knobLeft)) {
-                    _knobLeft = 1;
-                }
-                if (force) {
-                    if (_knob) {
-                        _knob.style.left = _knobLeft + 'px';
-                    }
-                    //Removed Animation from a forced move..
-                    panel.cfg.setProperty('xy', newXY);
-                } else {
-                    if (this.get('animate')) {
-                        anim = new YAHOO.util.Anim(panel.element, {}, 0.5, YAHOO.util.Easing.easeOut);
-                        anim.attributes = {
-                            top: {
-                                to: newXY[1]
-                            },
-                            left: {
-                                to: newXY[0]
-                            }
-                        };
-                        anim.onComplete.subscribe(function() {
-                            panel.cfg.setProperty('xy', newXY);
-                        });
-                        //We have to animate the iframe shim at the same time as the panel or we get scrollbar bleed ..
-                        var iframeAnim = new YAHOO.util.Anim(panel.iframe, anim.attributes, 0.5, YAHOO.util.Easing.easeOut);
-
-                        var _knobAnim = new YAHOO.util.Anim(_knob, {
-                            left: {
-                                to: _knobLeft
-                            }
-                        }, 0.6, YAHOO.util.Easing.easeOut);
-                        anim.animate();
-                        iframeAnim.animate();
-                        _knobAnim.animate();
-                    } else {
-                        _knob.style.left = _knobLeft + 'px';
-                        panel.cfg.setProperty('xy', newXY);
-                    }
-                }
-            }
-        },
-        /**
-        * @private
-        * @method _closeWindow
-        * @description Close the currently open EditorWindow with the Escape key.
-        * @param {Event} ev The keypress Event that we are trapping
-        */
-        _closeWindow: function(ev) {
-            //if ((ev.charCode == 87) && ev.shiftKey && ev.ctrlKey) {
-            if (this._checkKey(this._keyMap.CLOSE_WINDOW, ev)) {            
-                if (this.currentWindow) {
-                    this.closeWindow();
-                }
-            }
-        },
-        /**
-        * @method closeWindow
-        * @description Close the currently open EditorWindow.
-        */
-        closeWindow: function(keepOpen) {
-            YAHOO.log('closeWindow: ' + this.currentWindow.name, 'info', 'Editor');
-            //YAHOO.widget.EditorInfo.window = {};
-            this.fireEvent('window' + this.currentWindow.name + 'Close', { type: 'window' + this.currentWindow.name + 'Close', win: this.currentWindow, el: this.currentElement[0] });
-            this.fireEvent('closeWindow', { type: 'closeWindow', win: this.currentWindow });
-            this.currentWindow = null;
-            this.get('panel').hide();
-            this.get('panel').cfg.setProperty('xy', [-900,-900]);
-            this.get('panel').syncIframe(); //Needed to move the iframe with the hidden panel
-            this.unsubscribeAll('afterExecCommand');
-            this.toolbar.set('disabled', false); //enable the toolbar now that the window is closed
-            this.toolbar.resetAllButtons();
-            this._focusWindow();
-            Event.removeListener(document, 'keydown', this._closeWindow);
-        },
-
-        /* {{{  Command Overrides - These commands are only over written when we are using the advanced version */
-        
-        /**
-        * @method cmd_undo
-        * @description Pulls an item from the Undo stack and updates the Editor
-        * @param value Value passed from the execCommand method
-        */
-        cmd_undo: function(value) {
-            if (this._hasUndoLevel()) {
-                if (!this._undoLevel) {
-                    this._undoLevel = this._undoCache.length;
-                }
-                this._undoLevel = (this._undoLevel - 1);
-                if (this._undoCache[this._undoLevel]) {
-                    var html = this._getUndo(this._undoLevel);
-                    this.setEditorHTML(html);
-                } else {
-                    this._undoLevel = null;
-                    this.toolbar.disableButton('undo');
-                }
-            }
-            return [false];
-        },
-
-        /**
-        * @method cmd_redo
-        * @description Pulls an item from the Undo stack and updates the Editor
-        * @param value Value passed from the execCommand method
-        */
-        cmd_redo: function(value) {
-            this._undoLevel = this._undoLevel + 1;
-            if (this._undoLevel >= this._undoCache.length) {
-                this._undoLevel = this._undoCache.length;
-            }
-            YAHOO.log(this._undoLevel + ' :: ' + this._undoCache.length, 'warn', 'SimpleEditor');
-            if (this._undoCache[this._undoLevel]) {
-                var html = this._getUndo(this._undoLevel);
-                this.setEditorHTML(html);
-            } else {
-                this.toolbar.disableButton('redo');
-            }
-            return [false];
-        },       
-        
-        /**
-        * @method cmd_heading
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('heading') is used.
-        */
-        cmd_heading: function(value) {
-            var exec = true,
-                el = null,
-                action = 'heading',
-                _sel = this._getSelection(),
-                _selEl = this._getSelectedElement();
-
-            if (_selEl) {
-                _sel = _selEl;
-            }
-            
-            if (this.browser.ie) {
-                action = 'formatblock';
-            }
-            if (value == 'none') {
-                if ((_sel && _sel.tagName && (_sel.tagName.toLowerCase().substring(0,1) == 'h')) || (_sel && _sel.parentNode && _sel.parentNode.tagName && (_sel.parentNode.tagName.toLowerCase().substring(0,1) == 'h'))) {
-                    if (_sel.parentNode.tagName.toLowerCase().substring(0,1) == 'h') {
-                        _sel = _sel.parentNode;
-                    }
-                    if (this._isElement(_sel, 'html')) {
-                        return [false];
-                    }
-                    el = this._swapEl(_selEl, 'span', function(el) {
-                        el.className = 'yui-non';
-                    });
-                    this._selectNode(el);
-                    this.currentElement[0] = el;
-                }
-                exec = false;
-            } else {
-                if (this._isElement(_selEl, 'h1') || this._isElement(_selEl, 'h2') || this._isElement(_selEl, 'h3') || this._isElement(_selEl, 'h4') || this._isElement(_selEl, 'h5') || this._isElement(_selEl, 'h6')) {
-                    el = this._swapEl(_selEl, value);
-                    this._selectNode(el);
-                    this.currentElement[0] = el;
-                } else {
-                    this._createCurrentElement(value);
-                    this._selectNode(this.currentElement[0]);
-                }
-                exec = false;
-            }
-            return [exec, action];
-        },
-        /**
-        * @method cmd_hiddenelements
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('hiddenelements') is used.
-        */
-        cmd_hiddenelements: function(value) {
-            if (this._showingHiddenElements) {
-                //Don't auto highlight the hidden button
-                this._lastButton = null;
-                YAHOO.log('Enabling hidden CSS File', 'info', 'SimpleEditor');
-                this._showingHiddenElements = false;
-                this.toolbar.deselectButton('hiddenelements');
-                Dom.removeClass(this._getDoc().body, this.CLASS_HIDDEN);
-            } else {
-                YAHOO.log('Disabling hidden CSS File', 'info', 'SimpleEditor');
-                this._showingHiddenElements = true;
-                Dom.addClass(this._getDoc().body, this.CLASS_HIDDEN);
-                this.toolbar.selectButton('hiddenelements');
-            }
-            return [false];
-        },
-        /**
-        * @method cmd_removeformat
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('removeformat') is used.
-        */
-        cmd_removeformat: function(value) {
-            var exec = true;
-            /**
-            * @knownissue Remove Format issue
-            * @browser Safari 2.x
-            * @description There is an issue here with Safari, that it may not always remove the format of the item that is selected.
-            * Due to the way that Safari 2.x handles ranges, it is very difficult to determine what the selection holds.
-            * So here we are making the best possible guess and acting on it.
-            */
-            if (this.browser.webkit && !this._getDoc().queryCommandEnabled('removeformat')) {
-                var _txt = this._getSelection()+'';
-                this._createCurrentElement('span');
-                this.currentElement[0].className = 'yui-non';
-                this.currentElement[0].innerHTML = _txt;
-                for (var i = 1; i < this.currentElement.length; i++) {
-                    this.currentElement[i].parentNode.removeChild(this.currentElement[i]);
-                }
-                /*
-                this._createCurrentElement('span');
-                YAHOO.util.Dom.addClass(this.currentElement[0], 'yui-non');
-                var re= /<\S[^><]*>/g;
-                var str = this.currentElement[0].innerHTML.replace(re, '');
-                var _txt = this._getDoc().createTextNode(str);
-                this.currentElement[0].parentNode.parentNode.replaceChild(_txt, this.currentElement[0].parentNode);
-                */
-                
-                exec = false;
-            }
-            return [exec];
-        },
-        /**
-        * @method cmd_script
-        * @param action action passed from the execCommand method
-        * @param value Value passed from the execCommand method
-        * @description This is a combined execCommand override method. It is called from the cmd_superscript and cmd_subscript methods.
-        */
-        cmd_script: function(action, value) {
-            var exec = true, tag = action.toLowerCase().substring(0, 3),
-                _span = null, _selEl = this._getSelectedElement();
-
-            if (this.browser.webkit) {
-                YAHOO.log('Safari dom fun again (' + action + ')..', 'info', 'EditorSafari');
-                if (this._isElement(_selEl, tag)) {
-                    YAHOO.log('we are a child of tag (' + tag + '), reverse process', 'info', 'EditorSafari');
-                    _span = this._swapEl(this.currentElement[0], 'span', function(el) {
-                        el.className = 'yui-non';
-                    });
-                    this._selectNode(_span);
-                } else {
-                    this._createCurrentElement(tag);
-                    var _sub = this._swapEl(this.currentElement[0], tag);
-                    this._selectNode(_sub);
-                    this.currentElement[0] = _sub;
-                }
-                exec = false;
-            }
-            return exec;
-        },
-        /**
-        * @method cmd_superscript
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('superscript') is used.
-        */
-        cmd_superscript: function(value) {
-            return [this.cmd_script('superscript', value)];
-        },
-        /**
-        * @method cmd_subscript
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('subscript') is used.
-        */
-        cmd_subscript: function(value) {
-            return [this.cmd_script('subscript', value)];
-        },
-        /**
-        * @method cmd_indent
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('indent') is used.
-        */
-        cmd_indent: function(value) {
-            var exec = true, selEl = this._getSelectedElement(), _bq = null;
-
-            //if (this.browser.webkit || this.browser.ie || this.browser.gecko) {
-            //if (this.browser.webkit || this.browser.ie) {
-            if (this.browser.ie) {
-                if (this._isElement(selEl, 'blockquote')) {
-                    _bq = this._getDoc().createElement('blockquote');
-                    _bq.innerHTML = selEl.innerHTML;
-                    selEl.innerHTML = '';
-                    selEl.appendChild(_bq);
-                    this._selectNode(_bq);
-                } else {
-                    _bq = this._getDoc().createElement('blockquote');
-                    var html = this._getRange().htmlText;
-                    _bq.innerHTML = html;
-                    this._createCurrentElement('blockquote');
-                    /*
-                    for (var i = 0; i < this.currentElement.length; i++) {
-                        _bq = this._getDoc().createElement('blockquote');
-                        _bq.innerHTML = this.currentElement[i].innerHTML;
-                        this.currentElement[i].parentNode.replaceChild(_bq, this.currentElement[i]);
-                        this.currentElement[i] = _bq;
-                    }
-                    */
-                    this.currentElement[0].parentNode.replaceChild(_bq, this.currentElement[0]);
-                    this.currentElement[0] = _bq;
-                    this._selectNode(this.currentElement[0]);
-                }
-                exec = false;
-            } else {
-                value = 'blockquote';
-            }
-            return [exec, 'formatblock', value];
-        },
-        /**
-        * @method cmd_outdent
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('outdent') is used.
-        */
-        cmd_outdent: function(value) {
-            var exec = true, selEl = this._getSelectedElement(), _bq = null, _span = null;
-            //if (this.browser.webkit || this.browser.ie || this.browser.gecko) {
-            if (this.browser.webkit || this.browser.ie) {
-            //if (this.browser.ie) {
-                selEl = this._getSelectedElement();
-                if (this._isElement(selEl, 'blockquote')) {
-                    var par = selEl.parentNode;
-                    if (this._isElement(selEl.parentNode, 'blockquote')) {
-                        par.innerHTML = selEl.innerHTML;
-                        this._selectNode(par);
-                    } else {
-                        _span = this._getDoc().createElement('span');
-                        _span.innerHTML = selEl.innerHTML;
-                        YAHOO.util.Dom.addClass(_span, 'yui-non');
-                        par.replaceChild(_span, selEl);
-                        this._selectNode(_span);
-                    }
-                } else {
-                    YAHOO.log('Can not outdent, we are not inside a blockquote', 'warn', 'Editor');
-                }
-                exec = false;
-            } else {
-                value = false;
-            }
-            return [exec, 'outdent', value];
-        },
-        /**
-        * @method cmd_justify
-        * @param dir The direction to justify
-        * @description This is a factory method for the justify family of commands.
-        */
-        cmd_justify: function(dir) {
-            if (this.browser.ie) {
-                if (this._hasSelection()) {
-                    this._createCurrentElement('span');
-                    this._swapEl(this.currentElement[0], 'div', function(el) {
-                        el.style.textAlign = dir;
-                    });
-                    
-                    return [false];
-                }
-            }
-            return [true, 'justify' + dir, ''];
-        },
-        /**
-        * @method cmd_justifycenter
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('justifycenter') is used.
-        */
-        cmd_justifycenter: function() {
-            return [this.cmd_justify('center')];
-        },
-        /**
-        * @method cmd_justifyleft
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('justifyleft') is used.
-        */
-        cmd_justifyleft: function() {
-            return [this.cmd_justify('left')];
-        },
-        /**
-        * @method cmd_justifyright
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('justifyright') is used.
-        */
-        cmd_justifyright: function() {
-            return [this.cmd_justify('right')];
-        },
-        /* }}}*/        
-        /**
-        * @method toString
-        * @description Returns a string representing the editor.
-        * @return {String}
-        */
-        toString: function() {
-            var str = 'Editor';
-            if (this.get && this.get('element_cont')) {
-                str = 'Editor (#' + this.get('element_cont').get('id') + ')' + ((this.get('disabled') ? ' Disabled' : ''));
-            }
-            return str;
-        }
-    });
-    /**
-     * @description Class to hold Window information between uses. We use the same panel to show the windows, so using this will allow you to configure a window before it is shown.
-     * This is what you pass to Editor.openWindow();. These parameters will not take effect until the openWindow() is called in the editor.
-     * @class EditorWindow
-     * @param {String} name The name of the window.
-     * @param {Object} attrs Attributes for the window. Current attributes used are : height and width
-    */
-    YAHOO.widget.EditorWindow = function(name, attrs) {
-        /**
-        * @private
-        * @property name
-        * @description A unique name for the window
-        */
-        this.name = name.replace(' ', '_');
-        /**
-        * @private
-        * @property attrs
-        * @description The window attributes
-        */
-        this.attrs = attrs;
-    };
-
-    YAHOO.widget.EditorWindow.prototype = {
-        /**
-        * @private
-        * @property header
-        * @description Holder for the header of the window, used in Editor.openWindow
-        */
-        header: null,
-        /**
-        * @private
-        * @property body
-        * @description Holder for the body of the window, used in Editor.openWindow
-        */
-        body: null,
-        /**
-        * @private
-        * @property footer
-        * @description Holder for the footer of the window, used in Editor.openWindow
-        */
-        footer: null,
-        /**
-        * @method setHeader
-        * @description Sets the header for the window.
-        * @param {String/HTMLElement} str The string or DOM reference to be used as the windows header.
-        */
-        setHeader: function(str) {
-            this.header = str;
-        },
-        /**
-        * @method setBody
-        * @description Sets the body for the window.
-        * @param {String/HTMLElement} str The string or DOM reference to be used as the windows body.
-        */
-        setBody: function(str) {
-            this.body = str;
-        },
-        /**
-        * @method setFooter
-        * @description Sets the footer for the window.
-        * @param {String/HTMLElement} str The string or DOM reference to be used as the windows footer.
-        */
-        setFooter: function(str) {
-            this.footer = str;
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the EditorWindow.
-        * @return {String}
-        */
-        toString: function() {
-            return 'Editor Window (' + this.name + ')';
-        }
-    };
-/**
-* @event beforeOpenWindow
-* @param {<a href="YAHOO.widget.EditorWindow.html">EditorWindow</a>} win The EditorWindow object
-* @param {Overlay} panel The Overlay object that is used to create the window.
-* @description Event fires before an Editor Window is opened. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event afterOpenWindow
-* @param {<a href="YAHOO.widget.EditorWindow.html">EditorWindow</a>} win The EditorWindow object
-* @param {Overlay} panel The Overlay object that is used to create the window.
-* @description Event fires after an Editor Window is opened. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event closeWindow
-* @param {<a href="YAHOO.widget.EditorWindow.html">EditorWindow</a>} win The EditorWindow object
-* @description Event fires after an Editor Window is closed. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event windowCMDOpen
-* @param {<a href="YAHOO.widget.EditorWindow.html">EditorWindow</a>} win The EditorWindow object
-* @param {Overlay} panel The Overlay object that is used to create the window.
-* @description Dynamic event fired when an <a href="YAHOO.widget.EditorWindow.html">EditorWindow</a> is opened.. The dynamic event is based on the name of the window. Example Window: createlink, opening this window would fire the windowcreatelinkOpen event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event windowCMDClose
-* @param {<a href="YAHOO.widget.EditorWindow.html">EditorWindow</a>} win The EditorWindow object
-* @param {Overlay} panel The Overlay object that is used to create the window.
-* @description Dynamic event fired when an <a href="YAHOO.widget.EditorWindow.html">EditorWindow</a> is closed.. The dynamic event is based on the name of the window. Example Window: createlink, opening this window would fire the windowcreatelinkClose event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event windowRender
-* @param {<a href="YAHOO.widget.EditorWindow.html">EditorWindow</a>} win The EditorWindow object
-* @param {Overlay} panel The Overlay object that is used to create the window.
-* @description Event fired when the initial Overlay is rendered. Can be used to manipulate the content of the panel.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event windowInsertImageRender
-* @param {Overlay} panel The Overlay object that is used to create the window.
-* @param {HTMLElement} body The HTML element used as the body of the window..
-* @param {Toolbar} toolbar A reference to the toolbar object used inside this window.
-* @description Event fired when the pre render of the Insert Image window has finished.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event windowCreateLinkRender
-* @param {Overlay} panel The Overlay object that is used to create the window.
-* @param {HTMLElement} body The HTML element used as the body of the window..
-* @description Event fired when the pre render of the Create Link window has finished.
-* @type YAHOO.util.CustomEvent
-*/
-
-})();
-YAHOO.register("editor", YAHOO.widget.Editor, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/editor-min.js b/eclipse.org-common/yui/2.6.0/build/editor/editor-min.js
deleted file mode 100644
index 4f4e199..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/editor-min.js
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){var B=YAHOO.util.Dom,A=YAHOO.util.Event,C=YAHOO.lang;if(YAHOO.widget.Button){YAHOO.widget.ToolbarButtonAdvanced=YAHOO.widget.Button;YAHOO.widget.ToolbarButtonAdvanced.prototype.buttonType="rich";YAHOO.widget.ToolbarButtonAdvanced.prototype.checkValue=function(F){var E=this.getMenu().getItems();if(E.length===0){this.getMenu()._onBeforeShow();E=this.getMenu().getItems();}for(var D=0;D<E.length;D++){E[D].cfg.setProperty("checked",false);if(E[D].value==F){E[D].cfg.setProperty("checked",true);}}};}else{YAHOO.widget.ToolbarButtonAdvanced=function(){};}YAHOO.widget.ToolbarButton=function(E,D){if(C.isObject(arguments[0])&&!B.get(E).nodeType){D=E;}var G=(D||{});var F={element:null,attributes:G};if(!F.attributes.type){F.attributes.type="push";}F.element=document.createElement("span");F.element.setAttribute("unselectable","on");F.element.className="yui-button yui-"+F.attributes.type+"-button";F.element.innerHTML='<span class="first-child"><a href="#">LABEL</a></span>';F.element.firstChild.firstChild.tabIndex="-1";F.attributes.id=B.generateId();YAHOO.widget.ToolbarButton.superclass.constructor.call(this,F.element,F.attributes);};YAHOO.extend(YAHOO.widget.ToolbarButton,YAHOO.util.Element,{buttonType:"normal",_handleMouseOver:function(){if(!this.get("disabled")){this.addClass("yui-button-hover");this.addClass("yui-"+this.get("type")+"-button-hover");}},_handleMouseOut:function(){this.removeClass("yui-button-hover");this.removeClass("yui-"+this.get("type")+"-button-hover");},checkValue:function(F){if(this.get("type")=="menu"){var E=this._button.options;for(var D=0;D<E.length;D++){if(E[D].value==F){E.selectedIndex=D;}}}},init:function(E,D){YAHOO.widget.ToolbarButton.superclass.init.call(this,E,D);this.on("mouseover",this._handleMouseOver,this,true);this.on("mouseout",this._handleMouseOut,this,true);},initAttributes:function(D){YAHOO.widget.ToolbarButton.superclass.initAttributes.call(this,D);this.setAttributeConfig("value",{value:D.value});this.setAttributeConfig("menu",{value:D.menu||false});this.setAttributeConfig("type",{value:D.type,writeOnce:true,method:function(H){var G,F;if(!this._button){this._button=this.get("element").getElementsByTagName("a")[0];}switch(H){case"select":case"menu":G=document.createElement("select");var I=this.get("menu");for(var E=0;E<I.length;E++){F=document.createElement("option");F.innerHTML=I[E].text;F.value=I[E].value;if(I[E].checked){F.selected=true;}G.appendChild(F);}this._button.parentNode.replaceChild(G,this._button);A.on(G,"change",this._handleSelect,this,true);this._button=G;break;}}});this.setAttributeConfig("disabled",{value:D.disabled||false,method:function(E){if(E){this.addClass("yui-button-disabled");this.addClass("yui-"+this.get("type")+"-button-disabled");}else{this.removeClass("yui-button-disabled");this.removeClass("yui-"+this.get("type")+"-button-disabled");}if(this.get("type")=="menu"){this._button.disabled=E;}}});this.setAttributeConfig("label",{value:D.label,method:function(E){if(!this._button){this._button=this.get("element").getElementsByTagName("a")[0];}if(this.get("type")=="push"){this._button.innerHTML=E;}}});this.setAttributeConfig("title",{value:D.title});this.setAttributeConfig("container",{value:null,writeOnce:true,method:function(E){this.appendTo(E);}});},_handleSelect:function(E){var D=A.getTarget(E);var F=D.options[D.selectedIndex].value;this.fireEvent("change",{type:"change",value:F});},getMenu:function(){return this.get("menu");},destroy:function(){A.purgeElement(this.get("element"),true);this.get("element").parentNode.removeChild(this.get("element"));for(var D in this){if(C.hasOwnProperty(this,D)){this[D]=null;}}},fireEvent:function(E,D){if(this.DOM_EVENTS[E]&&this.get("disabled")){return ;}YAHOO.widget.ToolbarButton.superclass.fireEvent.call(this,E,D);},toString:function(){return"ToolbarButton ("+this.get("id")+")";}});})();(function(){var C=YAHOO.util.Dom,A=YAHOO.util.Event,D=YAHOO.lang;var B=function(F){var E=F;if(D.isString(F)){E=this.getButtonById(F);}if(D.isNumber(F)){E=this.getButtonByIndex(F);}if((!(E instanceof YAHOO.widget.ToolbarButton))&&(!(E instanceof YAHOO.widget.ToolbarButtonAdvanced))){E=this.getButtonByValue(F);}if((E instanceof YAHOO.widget.ToolbarButton)||(E instanceof YAHOO.widget.ToolbarButtonAdvanced)){return E;}return false;};YAHOO.widget.Toolbar=function(I,H){if(D.isObject(arguments[0])&&!C.get(I).nodeType){H=I;}var K={};if(H){D.augmentObject(K,H);}var J={element:null,attributes:K};if(D.isString(I)&&C.get(I)){J.element=C.get(I);}else{if(D.isObject(I)&&C.get(I)&&C.get(I).nodeType){J.element=C.get(I);}}if(!J.element){J.element=document.createElement("DIV");J.element.id=C.generateId();if(K.container&&C.get(K.container)){C.get(K.container).appendChild(J.element);}}if(!J.element.id){J.element.id=((D.isString(I))?I:C.generateId());}var F=document.createElement("fieldset");var G=document.createElement("legend");G.innerHTML="Toolbar";F.appendChild(G);var E=document.createElement("DIV");J.attributes.cont=E;C.addClass(E,"yui-toolbar-subcont");F.appendChild(E);J.element.appendChild(F);J.element.tabIndex=-1;J.attributes.element=J.element;J.attributes.id=J.element.id;YAHOO.widget.Toolbar.superclass.constructor.call(this,J.element,J.attributes);};YAHOO.extend(YAHOO.widget.Toolbar,YAHOO.util.Element,{_addMenuClasses:function(H,E,I){C.addClass(this.element,"yui-toolbar-"+I.get("value")+"-menu");if(C.hasClass(I._button.parentNode.parentNode,"yui-toolbar-select")){C.addClass(this.element,"yui-toolbar-select-menu");}var F=this.getItems();for(var G=0;G<F.length;G++){C.addClass(F[G].element,"yui-toolbar-"+I.get("value")+"-"+((F[G].value)?F[G].value.replace(/ /g,"-").toLowerCase():F[G]._oText.nodeValue.replace(/ /g,"-").toLowerCase()));C.addClass(F[G].element,"yui-toolbar-"+I.get("value")+"-"+((F[G].value)?F[G].value.replace(/ /g,"-"):F[G]._oText.nodeValue.replace(/ /g,"-")));}},buttonType:YAHOO.widget.ToolbarButton,dd:null,_colorData:{"#111111":"Obsidian","#2D2D2D":"Dark Gray","#434343":"Shale","#5B5B5B":"Flint","#737373":"Gray","#8B8B8B":"Concrete","#A2A2A2":"Gray","#B9B9B9":"Titanium","#000000":"Black","#D0D0D0":"Light Gray","#E6E6E6":"Silver","#FFFFFF":"White","#BFBF00":"Pumpkin","#FFFF00":"Yellow","#FFFF40":"Banana","#FFFF80":"Pale Yellow","#FFFFBF":"Butter","#525330":"Raw Siena","#898A49":"Mildew","#AEA945":"Olive","#7F7F00":"Paprika","#C3BE71":"Earth","#E0DCAA":"Khaki","#FCFAE1":"Cream","#60BF00":"Cactus","#80FF00":"Chartreuse","#A0FF40":"Green","#C0FF80":"Pale Lime","#DFFFBF":"Light Mint","#3B5738":"Green","#668F5A":"Lime Gray","#7F9757":"Yellow","#407F00":"Clover","#8A9B55":"Pistachio","#B7C296":"Light Jade","#E6EBD5":"Breakwater","#00BF00":"Spring Frost","#00FF80":"Pastel Green","#40FFA0":"Light Emerald","#80FFC0":"Sea Foam","#BFFFDF":"Sea Mist","#033D21":"Dark Forrest","#438059":"Moss","#7FA37C":"Medium Green","#007F40":"Pine","#8DAE94":"Yellow Gray Green","#ACC6B5":"Aqua Lung","#DDEBE2":"Sea Vapor","#00BFBF":"Fog","#00FFFF":"Cyan","#40FFFF":"Turquoise Blue","#80FFFF":"Light Aqua","#BFFFFF":"Pale Cyan","#033D3D":"Dark Teal","#347D7E":"Gray Turquoise","#609A9F":"Green Blue","#007F7F":"Seaweed","#96BDC4":"Green Gray","#B5D1D7":"Soapstone","#E2F1F4":"Light Turquoise","#0060BF":"Summer Sky","#0080FF":"Sky Blue","#40A0FF":"Electric Blue","#80C0FF":"Light Azure","#BFDFFF":"Ice Blue","#1B2C48":"Navy","#385376":"Biscay","#57708F":"Dusty Blue","#00407F":"Sea Blue","#7792AC":"Sky Blue Gray","#A8BED1":"Morning Sky","#DEEBF6":"Vapor","#0000BF":"Deep Blue","#0000FF":"Blue","#4040FF":"Cerulean Blue","#8080FF":"Evening Blue","#BFBFFF":"Light Blue","#212143":"Deep Indigo","#373E68":"Sea Blue","#444F75":"Night Blue","#00007F":"Indigo Blue","#585E82":"Dockside","#8687A4":"Blue Gray","#D2D1E1":"Light Blue Gray","#6000BF":"Neon Violet","#8000FF":"Blue Violet","#A040FF":"Violet Purple","#C080FF":"Violet Dusk","#DFBFFF":"Pale Lavender","#302449":"Cool Shale","#54466F":"Dark Indigo","#655A7F":"Dark Violet","#40007F":"Violet","#726284":"Smoky Violet","#9E8FA9":"Slate Gray","#DCD1DF":"Violet White","#BF00BF":"Royal Violet","#FF00FF":"Fuchsia","#FF40FF":"Magenta","#FF80FF":"Orchid","#FFBFFF":"Pale Magenta","#4A234A":"Dark Purple","#794A72":"Medium Purple","#936386":"Cool Granite","#7F007F":"Purple","#9D7292":"Purple Moon","#C0A0B6":"Pale Purple","#ECDAE5":"Pink Cloud","#BF005F":"Hot Pink","#FF007F":"Deep Pink","#FF409F":"Grape","#FF80BF":"Electric Pink","#FFBFDF":"Pink","#451528":"Purple Red","#823857":"Purple Dino","#A94A76":"Purple Gray","#7F003F":"Rose","#BC6F95":"Antique Mauve","#D8A5BB":"Cool Marble","#F7DDE9":"Pink Granite","#C00000":"Apple","#FF0000":"Fire Truck","#FF4040":"Pale Red","#FF8080":"Salmon","#FFC0C0":"Warm Pink","#441415":"Sepia","#82393C":"Rust","#AA4D4E":"Brick","#800000":"Brick Red","#BC6E6E":"Mauve","#D8A3A4":"Shrimp Pink","#F8DDDD":"Shell Pink","#BF5F00":"Dark Orange","#FF7F00":"Orange","#FF9F40":"Grapefruit","#FFBF80":"Canteloupe","#FFDFBF":"Wax","#482C1B":"Dark Brick","#855A40":"Dirt","#B27C51":"Tan","#7F3F00":"Nutmeg","#C49B71":"Mustard","#E1C4A8":"Pale Tan","#FDEEE0":"Marble"},_colorPicker:null,STR_COLLAPSE:"Collapse Toolbar",STR_SPIN_LABEL:"Spin Button with value {VALUE}. Use Control Shift Up Arrow and Control Shift Down arrow keys to increase or decrease the value.",STR_SPIN_UP:"Click to increase the value of this input",STR_SPIN_DOWN:"Click to decrease the value of this input",_titlebar:null,browser:YAHOO.env.ua,_buttonList:null,_buttonGroupList:null,_sep:null,_sepCount:null,_dragHandle:null,_toolbarConfigs:{renderer:true},CLASS_CONTAINER:"yui-toolbar-container",CLASS_DRAGHANDLE:"yui-toolbar-draghandle",CLASS_SEPARATOR:"yui-toolbar-separator",CLASS_DISABLED:"yui-toolbar-disabled",CLASS_PREFIX:"yui-toolbar",init:function(F,E){YAHOO.widget.Toolbar.superclass.init.call(this,F,E);
-},initAttributes:function(E){YAHOO.widget.Toolbar.superclass.initAttributes.call(this,E);this.addClass(this.CLASS_CONTAINER);this.setAttributeConfig("buttonType",{value:E.buttonType||"basic",writeOnce:true,validator:function(F){switch(F){case"advanced":case"basic":return true;}return false;},method:function(F){if(F=="advanced"){if(YAHOO.widget.Button){this.buttonType=YAHOO.widget.ToolbarButtonAdvanced;}else{this.buttonType=YAHOO.widget.ToolbarButton;}}else{this.buttonType=YAHOO.widget.ToolbarButton;}}});this.setAttributeConfig("buttons",{value:[],writeOnce:true,method:function(G){for(var F in G){if(D.hasOwnProperty(G,F)){if(G[F].type=="separator"){this.addSeparator();}else{if(G[F].group!==undefined){this.addButtonGroup(G[F]);}else{this.addButton(G[F]);}}}}}});this.setAttributeConfig("disabled",{value:false,method:function(F){if(this.get("disabled")===F){return false;}if(F){this.addClass(this.CLASS_DISABLED);this.set("draggable",false);this.disableAllButtons();}else{this.removeClass(this.CLASS_DISABLED);if(this._configs.draggable._initialConfig.value){this.set("draggable",true);}this.resetAllButtons();}}});this.setAttributeConfig("cont",{value:E.cont,readOnly:true});this.setAttributeConfig("grouplabels",{value:((E.grouplabels===false)?false:true),method:function(F){if(F){C.removeClass(this.get("cont"),(this.CLASS_PREFIX+"-nogrouplabels"));}else{C.addClass(this.get("cont"),(this.CLASS_PREFIX+"-nogrouplabels"));}}});this.setAttributeConfig("titlebar",{value:false,method:function(G){if(G){if(this._titlebar&&this._titlebar.parentNode){this._titlebar.parentNode.removeChild(this._titlebar);}this._titlebar=document.createElement("DIV");this._titlebar.tabIndex="-1";A.on(this._titlebar,"focus",function(){this._handleFocus();},this,true);C.addClass(this._titlebar,this.CLASS_PREFIX+"-titlebar");if(D.isString(G)){var F=document.createElement("h2");F.tabIndex="-1";F.innerHTML='<a href="#" tabIndex="0">'+G+"</a>";this._titlebar.appendChild(F);A.on(F.firstChild,"click",function(H){A.stopEvent(H);});A.on([F,F.firstChild],"focus",function(){this._handleFocus();},this,true);}if(this.get("firstChild")){this.insertBefore(this._titlebar,this.get("firstChild"));}else{this.appendChild(this._titlebar);}if(this.get("collapse")){this.set("collapse",true);}}else{if(this._titlebar){if(this._titlebar&&this._titlebar.parentNode){this._titlebar.parentNode.removeChild(this._titlebar);}}}}});this.setAttributeConfig("collapse",{value:false,method:function(H){if(this._titlebar){var G=null;var F=C.getElementsByClassName("collapse","span",this._titlebar);if(H){if(F.length>0){return true;}G=document.createElement("SPAN");G.innerHTML="X";G.title=this.STR_COLLAPSE;C.addClass(G,"collapse");this._titlebar.appendChild(G);A.addListener(G,"click",function(){if(C.hasClass(this.get("cont").parentNode,"yui-toolbar-container-collapsed")){this.collapse(false);}else{this.collapse();}},this,true);}else{G=C.getElementsByClassName("collapse","span",this._titlebar);if(G[0]){if(C.hasClass(this.get("cont").parentNode,"yui-toolbar-container-collapsed")){this.collapse(false);}G[0].parentNode.removeChild(G[0]);}}}}});this.setAttributeConfig("draggable",{value:(E.draggable||false),method:function(F){if(F&&!this.get("titlebar")){if(!this._dragHandle){this._dragHandle=document.createElement("SPAN");this._dragHandle.innerHTML="|";this._dragHandle.setAttribute("title","Click to drag the toolbar");this._dragHandle.id=this.get("id")+"_draghandle";C.addClass(this._dragHandle,this.CLASS_DRAGHANDLE);if(this.get("cont").hasChildNodes()){this.get("cont").insertBefore(this._dragHandle,this.get("cont").firstChild);}else{this.get("cont").appendChild(this._dragHandle);}this.dd=new YAHOO.util.DD(this.get("id"));this.dd.setHandleElId(this._dragHandle.id);}}else{if(this._dragHandle){this._dragHandle.parentNode.removeChild(this._dragHandle);this._dragHandle=null;this.dd=null;}}if(this._titlebar){if(F){this.dd=new YAHOO.util.DD(this.get("id"));this.dd.setHandleElId(this._titlebar);C.addClass(this._titlebar,"draggable");}else{C.removeClass(this._titlebar,"draggable");if(this.dd){this.dd.unreg();this.dd=null;}}}},validator:function(G){var F=true;if(!YAHOO.util.DD){F=false;}return F;}});},addButtonGroup:function(I){if(!this.get("element")){this._queue[this._queue.length]=["addButtonGroup",arguments];return false;}if(!this.hasClass(this.CLASS_PREFIX+"-grouped")){this.addClass(this.CLASS_PREFIX+"-grouped");}var J=document.createElement("DIV");C.addClass(J,this.CLASS_PREFIX+"-group");C.addClass(J,this.CLASS_PREFIX+"-group-"+I.group);if(I.label){var F=document.createElement("h3");F.innerHTML=I.label;J.appendChild(F);}if(!this.get("grouplabels")){C.addClass(this.get("cont"),this.CLASS_PREFIX,"-nogrouplabels");}this.get("cont").appendChild(J);var H=document.createElement("ul");J.appendChild(H);if(!this._buttonGroupList){this._buttonGroupList={};}this._buttonGroupList[I.group]=H;for(var G=0;G<I.buttons.length;G++){var E=document.createElement("li");E.className=this.CLASS_PREFIX+"-groupitem";H.appendChild(E);if((I.buttons[G].type!==undefined)&&I.buttons[G].type=="separator"){this.addSeparator(E);}else{I.buttons[G].container=E;this.addButton(I.buttons[G]);}}},addButtonToGroup:function(G,H,I){var F=this._buttonGroupList[H];var E=document.createElement("li");E.className=this.CLASS_PREFIX+"-groupitem";G.container=E;this.addButton(G,I);F.appendChild(E);},addButton:function(J,I){if(!this.get("element")){this._queue[this._queue.length]=["addButton",arguments];return false;}if(!this._buttonList){this._buttonList=[];}if(!J.container){J.container=this.get("cont");}if((J.type=="menu")||(J.type=="split")||(J.type=="select")){if(D.isArray(J.menu)){for(var P in J.menu){if(D.hasOwnProperty(J.menu,P)){var V={fn:function(Y,W,X){if(!J.menucmd){J.menucmd=J.value;}J.value=((X.value)?X.value:X._oText.nodeValue);},scope:this};J.menu[P].onclick=V;}}}}var Q={},N=false;for(var L in J){if(D.hasOwnProperty(J,L)){if(!this._toolbarConfigs[L]){Q[L]=J[L];}}}if(J.type=="select"){Q.type="menu";}if(J.type=="spin"){Q.type="push";
-}if(Q.type=="color"){if(YAHOO.widget.Overlay){Q=this._makeColorButton(Q);}else{N=true;}}if(Q.menu){if((YAHOO.widget.Overlay)&&(J.menu instanceof YAHOO.widget.Overlay)){J.menu.showEvent.subscribe(function(){this._button=Q;});}else{for(var O=0;O<Q.menu.length;O++){if(!Q.menu[O].value){Q.menu[O].value=Q.menu[O].text;}}if(this.browser.webkit){Q.focusmenu=false;}}}if(N){J=false;}else{this._configs.buttons.value[this._configs.buttons.value.length]=J;var T=new this.buttonType(Q);T.get("element").tabIndex="-1";T.get("element").setAttribute("role","button");T._selected=true;if(this.get("disabled")){T.set("disabled",true);}if(!J.id){J.id=T.get("id");}if(I){var F=T.get("element");var M=null;if(I.get){M=I.get("element").nextSibling;}else{if(I.nextSibling){M=I.nextSibling;}}if(M){M.parentNode.insertBefore(F,M);}}T.addClass(this.CLASS_PREFIX+"-"+T.get("value"));var S=document.createElement("span");S.className=this.CLASS_PREFIX+"-icon";T.get("element").insertBefore(S,T.get("firstChild"));if(T._button.tagName.toLowerCase()=="button"){T.get("element").setAttribute("unselectable","on");var U=document.createElement("a");U.innerHTML=T._button.innerHTML;U.href="#";U.tabIndex="-1";A.on(U,"click",function(W){A.stopEvent(W);});T._button.parentNode.replaceChild(U,T._button);T._button=U;}if(J.type=="select"){if(T._button.tagName.toLowerCase()=="select"){S.parentNode.removeChild(S);var G=T._button;var R=T.get("element");R.parentNode.replaceChild(G,R);}else{T.addClass(this.CLASS_PREFIX+"-select");}}if(J.type=="spin"){if(!D.isArray(J.range)){J.range=[10,100];}this._makeSpinButton(T,J);}T.get("element").setAttribute("title",T.get("label"));if(J.type!="spin"){if((YAHOO.widget.Overlay)&&(Q.menu instanceof YAHOO.widget.Overlay)){var H=function(Y){var W=true;if(Y.keyCode&&(Y.keyCode==9)){W=false;}if(W){if(this._colorPicker){this._colorPicker._button=J.value;}var X=T.getMenu().element;if(C.getStyle(X,"visibility")=="hidden"){T.getMenu().show();}else{T.getMenu().hide();}}YAHOO.util.Event.stopEvent(Y);};T.on("mousedown",H,J,this);T.on("keydown",H,J,this);}else{if((J.type!="menu")&&(J.type!="select")){T.on("keypress",this._buttonClick,J,this);T.on("mousedown",function(W){YAHOO.util.Event.stopEvent(W);this._buttonClick(W,J);},J,this);T.on("click",function(W){YAHOO.util.Event.stopEvent(W);});}else{T.on("mousedown",function(W){YAHOO.util.Event.stopEvent(W);});T.on("click",function(W){YAHOO.util.Event.stopEvent(W);});T.on("change",function(W){if(!J.menucmd){J.menucmd=J.value;}J.value=W.value;this._buttonClick(W,J);},this,true);var K=this;T.on("appendTo",function(){var W=this;if(W.getMenu()&&W.getMenu().mouseDownEvent){W.getMenu().mouseDownEvent.subscribe(function(Z,Y){var X=Y[1];YAHOO.util.Event.stopEvent(Y[0]);W._onMenuClick(Y[0],W);if(!J.menucmd){J.menucmd=J.value;}J.value=((X.value)?X.value:X._oText.nodeValue);K._buttonClick.call(K,Y[1],J);W._hideMenu();return false;});W.getMenu().clickEvent.subscribe(function(Y,X){YAHOO.util.Event.stopEvent(X[0]);});W.getMenu().mouseUpEvent.subscribe(function(Y,X){YAHOO.util.Event.stopEvent(X[0]);});}});}}}else{T.on("mousedown",function(W){YAHOO.util.Event.stopEvent(W);});T.on("click",function(W){YAHOO.util.Event.stopEvent(W);});}if(this.browser.ie){}if(this.browser.webkit){T.hasFocus=function(){return true;};}this._buttonList[this._buttonList.length]=T;if((J.type=="menu")||(J.type=="split")||(J.type=="select")){if(D.isArray(J.menu)){var E=T.getMenu();if(E&&E.renderEvent){E.renderEvent.subscribe(this._addMenuClasses,T);if(J.renderer){E.renderEvent.subscribe(J.renderer,T);}}}}}return J;},addSeparator:function(E,H){if(!this.get("element")){this._queue[this._queue.length]=["addSeparator",arguments];return false;}var F=((E)?E:this.get("cont"));if(!this.get("element")){this._queue[this._queue.length]=["addSeparator",arguments];return false;}if(this._sepCount===null){this._sepCount=0;}if(!this._sep){this._sep=document.createElement("SPAN");C.addClass(this._sep,this.CLASS_SEPARATOR);this._sep.innerHTML="|";}var G=this._sep.cloneNode(true);this._sepCount++;C.addClass(G,this.CLASS_SEPARATOR+"-"+this._sepCount);if(H){var I=null;if(H.get){I=H.get("element").nextSibling;}else{if(H.nextSibling){I=H.nextSibling;}else{I=H;}}if(I){if(I==H){I.parentNode.appendChild(G);}else{I.parentNode.insertBefore(G,I);}}}else{F.appendChild(G);}return G;},_createColorPicker:function(H){if(C.get(H+"_colors")){C.get(H+"_colors").parentNode.removeChild(C.get(H+"_colors"));}var E=document.createElement("div");E.className="yui-toolbar-colors";E.id=H+"_colors";E.style.display="none";A.on(window,"load",function(){document.body.appendChild(E);},this,true);this._colorPicker=E;var G="";for(var F in this._colorData){if(D.hasOwnProperty(this._colorData,F)){G+='<a style="background-color: '+F+'" href="#">'+F.replace("#","")+"</a>";}}G+="<span><em>X</em><strong></strong></span>";window.setTimeout(function(){E.innerHTML=G;},0);A.on(E,"mouseover",function(M){var K=this._colorPicker;var L=K.getElementsByTagName("em")[0];var J=K.getElementsByTagName("strong")[0];var I=A.getTarget(M);if(I.tagName.toLowerCase()=="a"){L.style.backgroundColor=I.style.backgroundColor;J.innerHTML=this._colorData["#"+I.innerHTML]+"<br>"+I.innerHTML;}},this,true);A.on(E,"focus",function(I){A.stopEvent(I);});A.on(E,"click",function(I){A.stopEvent(I);});A.on(E,"mousedown",function(J){A.stopEvent(J);var I=A.getTarget(J);if(I.tagName.toLowerCase()=="a"){var L=this.fireEvent("colorPickerClicked",{type:"colorPickerClicked",target:this,button:this._colorPicker._button,color:I.innerHTML,colorName:this._colorData["#"+I.innerHTML]});if(L!==false){var K={color:I.innerHTML,colorName:this._colorData["#"+I.innerHTML],value:this._colorPicker._button};this.fireEvent("buttonClick",{type:"buttonClick",target:this.get("element"),button:K});}this.getButtonByValue(this._colorPicker._button).getMenu().hide();}},this,true);},_resetColorPicker:function(){var F=this._colorPicker.getElementsByTagName("em")[0];var E=this._colorPicker.getElementsByTagName("strong")[0];F.style.backgroundColor="transparent";
-E.innerHTML="";},_makeColorButton:function(E){if(!this._colorPicker){this._createColorPicker(this.get("id"));}E.type="color";E.menu=new YAHOO.widget.Overlay(this.get("id")+"_"+E.value+"_menu",{visible:false,position:"absolute",iframe:true});E.menu.setBody("");E.menu.render(this.get("cont"));C.addClass(E.menu.element,"yui-button-menu");C.addClass(E.menu.element,"yui-color-button-menu");E.menu.beforeShowEvent.subscribe(function(){E.menu.cfg.setProperty("zindex",5);E.menu.cfg.setProperty("context",[this.getButtonById(E.id).get("element"),"tl","bl"]);this._resetColorPicker();var F=this._colorPicker;if(F.parentNode){F.parentNode.removeChild(F);}E.menu.setBody("");E.menu.appendToBody(F);this._colorPicker.style.display="block";},this,true);return E;},_makeSpinButton:function(R,L){R.addClass(this.CLASS_PREFIX+"-spinbutton");var S=this,N=R._button.parentNode.parentNode,I=L.range,H=document.createElement("a"),G=document.createElement("a");H.href="#";G.href="#";H.tabIndex="-1";G.tabIndex="-1";H.className="up";H.title=this.STR_SPIN_UP;H.innerHTML=this.STR_SPIN_UP;G.className="down";G.title=this.STR_SPIN_DOWN;G.innerHTML=this.STR_SPIN_DOWN;N.appendChild(H);N.appendChild(G);var M=YAHOO.lang.substitute(this.STR_SPIN_LABEL,{VALUE:R.get("label")});R.set("title",M);var Q=function(T){T=((T<I[0])?I[0]:T);T=((T>I[1])?I[1]:T);return T;};var P=this.browser;var F=false;var K=this.STR_SPIN_LABEL;if(this._titlebar&&this._titlebar.firstChild){F=this._titlebar.firstChild;}var E=function(U){YAHOO.util.Event.stopEvent(U);if(!R.get("disabled")&&(U.keyCode!=9)){var V=parseInt(R.get("label"),10);V++;V=Q(V);R.set("label",""+V);var T=YAHOO.lang.substitute(K,{VALUE:R.get("label")});R.set("title",T);if(!P.webkit&&F){}S._buttonClick(U,L);}};var O=function(U){YAHOO.util.Event.stopEvent(U);if(!R.get("disabled")&&(U.keyCode!=9)){var V=parseInt(R.get("label"),10);V--;V=Q(V);R.set("label",""+V);var T=YAHOO.lang.substitute(K,{VALUE:R.get("label")});R.set("title",T);if(!P.webkit&&F){}S._buttonClick(U,L);}};var J=function(T){if(T.keyCode==38){E(T);}else{if(T.keyCode==40){O(T);}else{if(T.keyCode==107&&T.shiftKey){E(T);}else{if(T.keyCode==109&&T.shiftKey){O(T);}}}}};R.on("keydown",J,this,true);A.on(H,"mousedown",function(T){A.stopEvent(T);},this,true);A.on(G,"mousedown",function(T){A.stopEvent(T);},this,true);A.on(H,"click",E,this,true);A.on(G,"click",O,this,true);},_buttonClick:function(L,F){var E=true;if(L&&L.type=="keypress"){if(L.keyCode==9){E=false;}else{if((L.keyCode===13)||(L.keyCode===0)||(L.keyCode===32)){}else{E=false;}}}if(E){var N=true,H=false;F.isSelected=this.isSelected(F.id);if(F.value){H=this.fireEvent(F.value+"Click",{type:F.value+"Click",target:this.get("element"),button:F});if(H===false){N=false;}}if(F.menucmd&&N){H=this.fireEvent(F.menucmd+"Click",{type:F.menucmd+"Click",target:this.get("element"),button:F});if(H===false){N=false;}}if(N){this.fireEvent("buttonClick",{type:"buttonClick",target:this.get("element"),button:F});}if(F.type=="select"){var K=this.getButtonById(F.id);if(K.buttonType=="rich"){var J=F.value;for(var I=0;I<F.menu.length;I++){if(F.menu[I].value==F.value){J=F.menu[I].text;break;}}K.set("label",'<span class="yui-toolbar-'+F.menucmd+"-"+(F.value).replace(/ /g,"-").toLowerCase()+'">'+J+"</span>");var M=K.getMenu().getItems();for(var G=0;G<M.length;G++){if(M[G].value.toLowerCase()==F.value.toLowerCase()){M[G].cfg.setProperty("checked",true);}else{M[G].cfg.setProperty("checked",false);}}}}if(L){A.stopEvent(L);}}},_keyNav:null,_navCounter:null,_navigateButtons:function(F){switch(F.keyCode){case 37:case 39:if(F.keyCode==37){this._navCounter--;}else{this._navCounter++;}if(this._navCounter>(this._buttonList.length-1)){this._navCounter=0;}if(this._navCounter<0){this._navCounter=(this._buttonList.length-1);}if(this._buttonList[this._navCounter]){var E=this._buttonList[this._navCounter].get("element");if(this.browser.ie){E=this._buttonList[this._navCounter].get("element").getElementsByTagName("a")[0];}if(this._buttonList[this._navCounter].get("disabled")){this._navigateButtons(F);}else{E.focus();}}break;}},_handleFocus:function(){if(!this._keyNav){var E="keypress";if(this.browser.ie){E="keydown";}A.on(this.get("element"),E,this._navigateButtons,this,true);this._keyNav=true;this._navCounter=-1;}},getButtonById:function(G){var E=this._buttonList.length;for(var F=0;F<E;F++){if(this._buttonList[F]&&this._buttonList[F].get("id")==G){return this._buttonList[F];}}return false;},getButtonByValue:function(K){var H=this.get("buttons");var F=H.length;for(var I=0;I<F;I++){if(H[I].group!==undefined){for(var E=0;E<H[I].buttons.length;E++){if((H[I].buttons[E].value==K)||(H[I].buttons[E].menucmd==K)){return this.getButtonById(H[I].buttons[E].id);}if(H[I].buttons[E].menu){for(var J=0;J<H[I].buttons[E].menu.length;J++){if(H[I].buttons[E].menu[J].value==K){return this.getButtonById(H[I].buttons[E].id);}}}}}else{if((H[I].value==K)||(H[I].menucmd==K)){return this.getButtonById(H[I].id);}if(H[I].menu){for(var G=0;G<H[I].menu.length;G++){if(H[I].menu[G].value==K){return this.getButtonById(H[I].id);}}}}}return false;},getButtonByIndex:function(E){if(this._buttonList[E]){return this._buttonList[E];}else{return false;}},getButtons:function(){return this._buttonList;},disableButton:function(F){var E=B.call(this,F);if(E){E.set("disabled",true);}else{return false;}},enableButton:function(F){if(this.get("disabled")){return false;}var E=B.call(this,F);if(E){if(E.get("disabled")){E.set("disabled",false);}}else{return false;}},isSelected:function(F){var E=B.call(this,F);if(E){return E._selected;}return false;},selectButton:function(I,G){var F=B.call(this,I);if(F){F.addClass("yui-button-selected");F.addClass("yui-button-"+F.get("value")+"-selected");F._selected=true;if(G){if(F.buttonType=="rich"){var H=F.getMenu().getItems();for(var E=0;E<H.length;E++){if(H[E].value==G){H[E].cfg.setProperty("checked",true);F.set("label",'<span class="yui-toolbar-'+F.get("value")+"-"+(G).replace(/ /g,"-").toLowerCase()+'">'+H[E]._oText.nodeValue+"</span>");}else{H[E].cfg.setProperty("checked",false);
-}}}}}else{return false;}},deselectButton:function(F){var E=B.call(this,F);if(E){E.removeClass("yui-button-selected");E.removeClass("yui-button-"+E.get("value")+"-selected");E.removeClass("yui-button-hover");E._selected=false;}else{return false;}},deselectAllButtons:function(){var E=this._buttonList.length;for(var F=0;F<E;F++){this.deselectButton(this._buttonList[F]);}},disableAllButtons:function(){if(this.get("disabled")){return false;}var E=this._buttonList.length;for(var F=0;F<E;F++){this.disableButton(this._buttonList[F]);}},enableAllButtons:function(){if(this.get("disabled")){return false;}var E=this._buttonList.length;for(var F=0;F<E;F++){this.enableButton(this._buttonList[F]);}},resetAllButtons:function(I){if(!D.isObject(I)){I={};}if(this.get("disabled")){return false;}var E=this._buttonList.length;for(var F=0;F<E;F++){var H=this._buttonList[F];if(H){var G=H._configs.disabled._initialConfig.value;if(I[H.get("id")]){this.enableButton(H);this.selectButton(H);}else{if(G){this.disableButton(H);}else{this.enableButton(H);}this.deselectButton(H);}}}},destroyButton:function(I){var G=B.call(this,I);if(G){var H=G.get("id");G.destroy();var E=this._buttonList.length;for(var F=0;F<E;F++){if(this._buttonList[F]&&this._buttonList[F].get("id")==H){this._buttonList[F]=null;}}}else{return false;}},destroy:function(){this.get("element").innerHTML="";this.get("element").className="";for(var E in this){if(D.hasOwnProperty(this,E)){this[E]=null;}}return true;},collapse:function(F){var E=C.getElementsByClassName("collapse","span",this._titlebar);if(F===false){C.removeClass(this.get("cont").parentNode,"yui-toolbar-container-collapsed");if(E[0]){C.removeClass(E[0],"collapsed");}this.fireEvent("toolbarExpanded",{type:"toolbarExpanded",target:this});}else{if(E[0]){C.addClass(E[0],"collapsed");}C.addClass(this.get("cont").parentNode,"yui-toolbar-container-collapsed");this.fireEvent("toolbarCollapsed",{type:"toolbarCollapsed",target:this});}},toString:function(){return"Toolbar (#"+this.get("element").id+") with "+this._buttonList.length+" buttons.";}});})();(function(){var C=YAHOO.util.Dom,A=YAHOO.util.Event,D=YAHOO.lang,B=YAHOO.widget.Toolbar;YAHOO.widget.SimpleEditor=function(H,M){var G={};if(D.isObject(H)&&(!H.tagName)&&!M){D.augmentObject(G,H);H=document.createElement("textarea");this.DOMReady=true;if(G.container){var K=C.get(G.container);K.appendChild(H);}else{document.body.appendChild(H);}}else{if(M){D.augmentObject(G,M);}}var I={element:null,attributes:G},F=null;if(D.isString(H)){F=H;}else{if(I.attributes.id){F=I.attributes.id;}else{this.DOMReady=true;F=C.generateId(H);}}I.element=H;var J=document.createElement("DIV");I.attributes.element_cont=new YAHOO.util.Element(J,{id:F+"_container"});var E=document.createElement("div");C.addClass(E,"first-child");I.attributes.element_cont.appendChild(E);if(!I.attributes.toolbar_cont){I.attributes.toolbar_cont=document.createElement("DIV");I.attributes.toolbar_cont.id=F+"_toolbar";E.appendChild(I.attributes.toolbar_cont);}var L=document.createElement("DIV");E.appendChild(L);I.attributes.editor_wrapper=L;YAHOO.widget.SimpleEditor.superclass.constructor.call(this,I.element,I.attributes);};YAHOO.extend(YAHOO.widget.SimpleEditor,YAHOO.util.Element,{_resizeConfig:{handles:["br"],autoRatio:true,status:true,proxy:true,useShim:true,setSize:false},_setupResize:function(){if(!YAHOO.util.DD||!YAHOO.util.Resize){return false;}if(this.get("resize")){var E={};D.augmentObject(E,this._resizeConfig);this.resize=new YAHOO.util.Resize(this.get("element_cont").get("element"),E);this.resize.on("resize",function(G){var K=this.get("animate");this.set("animate",false);this.set("width",G.width+"px");var H=G.height,I=(this.toolbar.get("element").clientHeight+2),J=0;if(this.dompath){J=(this.dompath.clientHeight+1);}var F=(H-I-J);this.set("height",F+"px");this.get("element_cont").setStyle("height","");this.set("animate",K);},this,true);}},resize:null,_setupDD:function(){if(!YAHOO.util.DD){return false;}if(this.get("drag")){var F=this.get("drag"),E=YAHOO.util.DD;if(F==="proxy"){E=YAHOO.util.DDProxy;}this.dd=new E(this.get("element_cont").get("element"));this.toolbar.addClass("draggable");this.dd.setHandleElId(this.toolbar._titlebar);}},dd:null,_lastCommand:null,_undoNodeChange:function(){},_storeUndo:function(){},_checkKey:function(E,H){var F=false;if((H.keyCode===E.key)){if(E.mods&&(E.mods.length>0)){var I=0;for(var G=0;G<E.mods.length;G++){if(this.browser.mac){if(E.mods[G]=="ctrl"){E.mods[G]="meta";}}if(H[E.mods[G]+"Key"]===true){I++;}}if(I===E.mods.length){F=true;}}else{F=true;}}return F;},_keyMap:{SELECT_ALL:{key:65,mods:["ctrl"]},CLOSE_WINDOW:{key:87,mods:["shift","ctrl"]},FOCUS_TOOLBAR:{key:27,mods:["shift"]},FOCUS_AFTER:{key:27},CREATE_LINK:{key:76,mods:["shift","ctrl"]},BOLD:{key:66,mods:["shift","ctrl"]},ITALIC:{key:73,mods:["shift","ctrl"]},UNDERLINE:{key:85,mods:["shift","ctrl"]},UNDO:{key:90,mods:["ctrl"]},REDO:{key:90,mods:["shift","ctrl"]},JUSTIFY_LEFT:{key:219,mods:["shift","ctrl"]},JUSTIFY_CENTER:{key:220,mods:["shift","ctrl"]},JUSTIFY_RIGHT:{key:221,mods:["shift","ctrl"]}},_cleanClassName:function(E){return E.replace(/ /g,"-").toLowerCase();},_textarea:null,_docType:'<!DOCTYPE HTML PUBLIC "-/'+"/W3C/"+"/DTD HTML 4.01/"+'/EN" "http:/'+'/www.w3.org/TR/html4/strict.dtd">',editorDirty:null,_defaultCSS:"html { height: 95%; } body { padding: 7px; background-color: #fff; font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small; } a, a:visited, a:hover { color: blue !important; text-decoration: underline !important; cursor: text !important; } .warning-localfile { border-bottom: 1px dashed red !important; } .yui-busy { cursor: wait !important; } img.selected { border: 2px dotted #808080; } img { cursor: pointer !important; border: none; } body.ptags.webkit div { margin: 11px 0; }",_defaultToolbar:null,_lastButton:null,_baseHREF:function(){var E=document.location.href;if(E.indexOf("?")!==-1){E=E.substring(0,E.indexOf("?"));}E=E.substring(0,E.lastIndexOf("/"))+"/";return E;
-}(),_lastImage:null,_blankImageLoaded:null,_fixNodesTimer:null,_nodeChangeTimer:null,_lastNodeChangeEvent:null,_lastNodeChange:0,_rendered:null,DOMReady:null,_selection:null,_mask:null,_showingHiddenElements:null,currentWindow:null,currentEvent:null,operaEvent:null,currentFont:null,currentElement:null,dompath:null,beforeElement:null,afterElement:null,invalidHTML:{form:true,input:true,button:true,select:true,link:true,html:true,body:true,iframe:true,script:true,style:true,textarea:true},toolbar:null,_contentTimer:null,_contentTimerCounter:0,_disabled:["createlink","fontname","fontsize","forecolor","backcolor"],_alwaysDisabled:{undo:true,redo:true},_alwaysEnabled:{},_semantic:{"bold":true,"italic":true,"underline":true},_tag2cmd:{"b":"bold","strong":"bold","i":"italic","em":"italic","u":"underline","sup":"superscript","sub":"subscript","img":"insertimage","a":"createlink","ul":"insertunorderedlist","ol":"insertorderedlist"},_createIframe:function(){var I=document.createElement("iframe");I.id=this.get("id")+"_editor";var G={border:"0",frameBorder:"0",marginWidth:"0",marginHeight:"0",leftMargin:"0",topMargin:"0",allowTransparency:"true",width:"100%"};if(this.get("autoHeight")){G.scrolling="no";}for(var H in G){if(D.hasOwnProperty(G,H)){I.setAttribute(H,G[H]);}}var F="javascript:;";if(this.browser.ie){F="javascript:false;";}I.setAttribute("src",F);var E=new YAHOO.util.Element(I);E.setStyle("visibility","hidden");return E;},_isElement:function(F,E){if(F&&F.tagName&&(F.tagName.toLowerCase()==E)){return true;}if(F&&F.getAttribute&&(F.getAttribute("tag")==E)){return true;}return false;},_hasParent:function(F,E){if(!F||!F.parentNode){return false;}while(F.parentNode){if(this._isElement(F,E)){return F;}if(F.parentNode){F=F.parentNode;}else{return false;}}return false;},_getDoc:function(){var E=false;if(this.get){if(this.get("iframe")){if(this.get("iframe").get){if(this.get("iframe").get("element")){try{if(this.get("iframe").get("element").contentWindow){if(this.get("iframe").get("element").contentWindow.document){E=this.get("iframe").get("element").contentWindow.document;return E;}}}catch(F){}}}}}return false;},_getWindow:function(){return this.get("iframe").get("element").contentWindow;},_focusWindow:function(E){if(this.browser.webkit){if(E){this._getSelection().setBaseAndExtent(this._getDoc().body.firstChild,0,this._getDoc().body.firstChild,1);if(this.browser.webkit3){this._getSelection().collapseToStart();}else{this._getSelection().collapse(false);}}else{this._getSelection().setBaseAndExtent(this._getDoc().body,1,this._getDoc().body,1);if(this.browser.webkit3){this._getSelection().collapseToStart();}else{this._getSelection().collapse(false);}}this._getWindow().focus();}else{this._getWindow().focus();}},_hasSelection:function(){var G=this._getSelection();var E=this._getRange();var F=false;if(!G||!E){return F;}if(this.browser.ie||this.browser.opera){if(E.text){F=true;}if(E.html){F=true;}}else{if(this.browser.webkit){if(G+""!==""){F=true;}}else{if(G&&(G.toString()!=="")&&(G!==undefined)){F=true;}}}return F;},_getSelection:function(){var E=null;if(this._getDoc()&&this._getWindow()){if(this._getDoc().selection){E=this._getDoc().selection;}else{E=this._getWindow().getSelection();}if(this.browser.webkit){if(E.baseNode){this._selection={};this._selection.baseNode=E.baseNode;this._selection.baseOffset=E.baseOffset;this._selection.extentNode=E.extentNode;this._selection.extentOffset=E.extentOffset;}else{if(this._selection!==null){E=this._getWindow().getSelection();E.setBaseAndExtent(this._selection.baseNode,this._selection.baseOffset,this._selection.extentNode,this._selection.extentOffset);this._selection=null;}}}}return E;},_selectNode:function(F,I){if(!F){return false;}var G=this._getSelection(),E=null;if(this.browser.ie){try{E=this._getDoc().body.createTextRange();E.moveToElementText(F);E.select();}catch(H){}}else{if(this.browser.webkit){if(I){G.setBaseAndExtent(F,1,F,F.innerText.length);}else{G.setBaseAndExtent(F,0,F,F.innerText.length);}}else{if(this.browser.opera){G=this._getWindow().getSelection();E=this._getDoc().createRange();E.selectNode(F);G.removeAllRanges();G.addRange(E);}else{E=this._getDoc().createRange();E.selectNodeContents(F);G.removeAllRanges();G.addRange(E);}}}this.nodeChange();},_getRange:function(){var E=this._getSelection();if(E===null){return null;}if(this.browser.webkit&&!E.getRangeAt){var H=this._getDoc().createRange();try{H.setStart(E.anchorNode,E.anchorOffset);H.setEnd(E.focusNode,E.focusOffset);}catch(G){H=this._getWindow().getSelection()+"";}return H;}if(this.browser.ie||this.browser.opera){try{return E.createRange();}catch(F){return null;}}if(E.rangeCount>0){return E.getRangeAt(0);}return null;},_setDesignMode:function(E){try{var G=true;if(this.browser.ie&&(E.toLowerCase()=="off")){G=false;}if(G){this._getDoc().designMode=E;}}catch(F){}},_toggleDesignMode:function(){var F=this._getDoc().designMode.toLowerCase(),E="on";if(F=="on"){E="off";}this._setDesignMode(E);return E;},_initEditorEvents:function(){var E=this._getDoc();A.on(E,"mouseup",this._handleMouseUp,this,true);A.on(E,"mousedown",this._handleMouseDown,this,true);A.on(E,"click",this._handleClick,this,true);A.on(E,"dblclick",this._handleDoubleClick,this,true);A.on(E,"keypress",this._handleKeyPress,this,true);A.on(E,"keyup",this._handleKeyUp,this,true);A.on(E,"keydown",this._handleKeyDown,this,true);},_removeEditorEvents:function(){var E=this._getDoc();A.removeListener(E,"mouseup",this._handleMouseUp,this,true);A.removeListener(E,"mousedown",this._handleMouseDown,this,true);A.removeListener(E,"click",this._handleClick,this,true);A.removeListener(E,"dblclick",this._handleDoubleClick,this,true);A.removeListener(E,"keypress",this._handleKeyPress,this,true);A.removeListener(E,"keyup",this._handleKeyUp,this,true);A.removeListener(E,"keydown",this._handleKeyDown,this,true);},_initEditor:function(){if(this.browser.ie){this._getDoc().body.style.margin="0";}if(!this.get("disabled")){if(this._getDoc().designMode.toLowerCase()!="on"){this._setDesignMode("on");
-this._contentTimerCounter=0;}}if(!this._getDoc().body){this._contentTimerCounter=0;this._checkLoaded();return false;}this.toolbar.on("buttonClick",this._handleToolbarClick,this,true);if(!this.get("disabled")){this._initEditorEvents();this.toolbar.set("disabled",false);}this.fireEvent("editorContentLoaded",{type:"editorLoaded",target:this});if(this.get("dompath")){var E=this;setTimeout(function(){E._writeDomPath.call(E);E._setupResize.call(E);},150);}var G=[];for(var F in this.browser){if(this.browser[F]){G.push(F);}}if(this.get("ptags")){G.push("ptags");}C.addClass(this._getDoc().body,G.join(" "));this.nodeChange(true);},_checkLoaded:function(){this._contentTimerCounter++;if(this._contentTimer){clearTimeout(this._contentTimer);}if(this._contentTimerCounter>500){return false;}var G=false;try{if(this._getDoc()&&this._getDoc().body){if(this.browser.ie){if(this._getDoc().body.readyState=="complete"){G=true;}}else{if(this._getDoc().body._rteLoaded===true){G=true;}}}}catch(F){G=false;}if(G===true){this._initEditor();}else{var E=this;this._contentTimer=setTimeout(function(){E._checkLoaded.call(E);},20);}},_setInitialContent:function(){var H=((this._textarea)?this.get("element").value:this.get("element").innerHTML),J=null;var F=D.substitute(this.get("html"),{TITLE:this.STR_TITLE,CONTENT:this._cleanIncomingHTML(H),CSS:this.get("css"),HIDDEN_CSS:((this.get("hiddencss"))?this.get("hiddencss"):"/* No Hidden CSS */"),EXTRA_CSS:((this.get("extracss"))?this.get("extracss"):"/* No Extra CSS */")}),E=true;if(document.compatMode!="BackCompat"){F=this._docType+"\n"+F;}else{}if(this.browser.ie||this.browser.webkit||this.browser.opera||(navigator.userAgent.indexOf("Firefox/1.5")!=-1)){try{if(this.browser.air){J=this._getDoc().implementation.createHTMLDocument();var K=this._getDoc();K.open();K.close();J.open();J.write(F);J.close();var G=K.importNode(J.getElementsByTagName("html")[0],true);K.replaceChild(G,K.getElementsByTagName("html")[0]);K.body._rteLoaded=true;}else{J=this._getDoc();J.open();J.write(F);J.close();}}catch(I){E=false;}}else{this.get("iframe").get("element").src="data:text/html;charset=utf-8,"+encodeURIComponent(F);}this.get("iframe").setStyle("visibility","");if(E){this._checkLoaded();}},_setMarkupType:function(E){switch(this.get("markup")){case"css":this._setEditorStyle(true);break;case"default":this._setEditorStyle(false);break;case"semantic":case"xhtml":if(this._semantic[E]){this._setEditorStyle(false);}else{this._setEditorStyle(true);}break;}},_setEditorStyle:function(F){try{this._getDoc().execCommand("useCSS",false,!F);}catch(E){}},_getSelectedElement:function(){var I=this._getDoc(),F=null,G=null,J=null,E=true;if(this.browser.ie){this.currentEvent=this._getWindow().event;F=this._getRange();if(F){J=F.item?F.item(0):F.parentElement();if(this._hasSelection()){}if(J===I.body){J=null;}}if((this.currentEvent!==null)&&(this.currentEvent.keyCode===0)){J=A.getTarget(this.currentEvent);}}else{G=this._getSelection();F=this._getRange();if(!G||!F){return null;}if(!this._hasSelection()&&this.browser.webkit3){}if(this.browser.gecko){if(F.startContainer){E=false;if(F.startContainer.nodeType===3){J=F.startContainer.parentNode;}else{if(F.startContainer.nodeType===1){J=F.startContainer;}else{E=true;}}if(!E){this.currentEvent=null;}}}if(E){if(G.anchorNode&&(G.anchorNode.nodeType==3)){if(G.anchorNode.parentNode){J=G.anchorNode.parentNode;}if(G.anchorNode.nextSibling!=G.focusNode.nextSibling){J=G.anchorNode.nextSibling;}}if(this._isElement(J,"br")){J=null;}if(!J){J=F.commonAncestorContainer;if(!F.collapsed){if(F.startContainer==F.endContainer){if(F.startOffset-F.endOffset<2){if(F.startContainer.hasChildNodes()){J=F.startContainer.childNodes[F.startOffset];}}}}}}}if(this.currentEvent!==null){try{switch(this.currentEvent.type){case"click":case"mousedown":case"mouseup":if(this.browser.webkit){J=A.getTarget(this.currentEvent);}break;default:break;}}catch(H){}}else{if((this.currentElement&&this.currentElement[0])&&(!this.browser.ie)){}}if(this.browser.opera||this.browser.webkit){if(this.currentEvent&&!J){J=YAHOO.util.Event.getTarget(this.currentEvent);}}if(!J||!J.tagName){J=I.body;}if(this._isElement(J,"html")){J=I.body;}if(this._isElement(J,"body")){J=I.body;}if(J&&!J.parentNode){J=I.body;}if(J===undefined){J=null;}return J;},_getDomPath:function(E){if(!E){E=this._getSelectedElement();}var F=[];while(E!==null){if(E.ownerDocument!=this._getDoc()){E=null;break;}if(E.nodeName&&E.nodeType&&(E.nodeType==1)){F[F.length]=E;}if(this._isElement(E,"body")){break;}E=E.parentNode;}if(F.length===0){if(this._getDoc()&&this._getDoc().body){F[0]=this._getDoc().body;}}return F.reverse();},_writeDomPath:function(){var K=this._getDomPath(),I=[],G="",L="";for(var E=0;E<K.length;E++){var M=K[E].tagName.toLowerCase();if((M=="ol")&&(K[E].type)){M+=":"+K[E].type;}if(C.hasClass(K[E],"yui-tag")){M=K[E].getAttribute("tag");}if((this.get("markup")=="semantic")||(this.get("markup")=="xhtml")){switch(M){case"b":M="strong";break;case"i":M="em";break;}}if(!C.hasClass(K[E],"yui-non")){if(C.hasClass(K[E],"yui-tag")){L=M;}else{G=((K[E].className!=="")?"."+K[E].className.replace(/ /g,"."):"");if((G.indexOf("yui")!=-1)||(G.toLowerCase().indexOf("apple-style-span")!=-1)){G="";}L=M+((K[E].id)?"#"+K[E].id:"")+G;}switch(M){case"body":L="body";break;case"a":if(K[E].getAttribute("href",2)){L+=":"+K[E].getAttribute("href",2).replace("mailto:","").replace("http:/"+"/","").replace("https:/"+"/","");}break;case"img":var F=K[E].height;var J=K[E].width;if(K[E].style.height){F=parseInt(K[E].style.height,10);}if(K[E].style.width){J=parseInt(K[E].style.width,10);}L+="("+J+"x"+F+")";break;}if(L.length>10){L='<span title="'+L+'">'+L.substring(0,10)+"..."+"</span>";}else{L='<span title="'+L+'">'+L+"</span>";}I[I.length]=L;}}var H=I.join(" "+this.SEP_DOMPATH+" ");if(this.dompath.innerHTML!=H){this.dompath.innerHTML=H;}},_fixNodes:function(){var J=this._getDoc(),H=[];for(var E in this.invalidHTML){if(YAHOO.lang.hasOwnProperty(this.invalidHTML,E)){if(E.toLowerCase()!="span"){var F=J.body.getElementsByTagName(E);
-if(F.length){for(var G=0;G<F.length;G++){H.push(F[G]);}}}}}for(var I=0;I<H.length;I++){if(H[I].parentNode){if(D.isObject(this.invalidHTML[H[I].tagName.toLowerCase()])&&this.invalidHTML[H[I].tagName.toLowerCase()].keepContents){this._swapEl(H[I],"span",function(L){L.className="yui-non";});}else{H[I].parentNode.removeChild(H[I]);}}}var K=this._getDoc().getElementsByTagName("img");C.addClass(K,"yui-img");},_isNonEditable:function(G){if(this.get("allowNoEdit")){var F=A.getTarget(G);if(this._isElement(F,"html")){F=null;}var J=this._getDomPath(F);for(var E=(J.length-1);E>-1;E--){if(C.hasClass(J[E],this.CLASS_NOEDIT)){try{this._getDoc().execCommand("enableObjectResizing",false,"false");}catch(I){}this.nodeChange();A.stopEvent(G);return true;}}try{this._getDoc().execCommand("enableObjectResizing",false,"true");}catch(H){}}return false;},_setCurrentEvent:function(E){this.currentEvent=E;},_handleClick:function(G){var F=this.fireEvent("beforeEditorClick",{type:"beforeEditorClick",target:this,ev:G});if(F===false){return false;}if(this._isNonEditable(G)){return false;}this._setCurrentEvent(G);if(this.currentWindow){this.closeWindow();}if(this.currentWindow){this.closeWindow();}if(this.browser.webkit){var E=A.getTarget(G);if(this._isElement(E,"a")||this._isElement(E.parentNode,"a")){A.stopEvent(G);this.nodeChange();}}else{this.nodeChange();}this.fireEvent("editorClick",{type:"editorClick",target:this,ev:G});},_handleMouseUp:function(G){var F=this.fireEvent("beforeEditorMouseUp",{type:"beforeEditorMouseUp",target:this,ev:G});if(F===false){return false;}if(this._isNonEditable(G)){return false;}var E=this;if(this.browser.opera){var H=A.getTarget(G);if(this._isElement(H,"img")){this.nodeChange();if(this.operaEvent){clearTimeout(this.operaEvent);this.operaEvent=null;this._handleDoubleClick(G);}else{this.operaEvent=window.setTimeout(function(){E.operaEvent=false;},700);}}}if(this.browser.webkit||this.browser.opera){if(this.browser.webkit){A.stopEvent(G);}}this.nodeChange();this.fireEvent("editorMouseUp",{type:"editorMouseUp",target:this,ev:G});},_handleMouseDown:function(F){var E=this.fireEvent("beforeEditorMouseDown",{type:"beforeEditorMouseDown",target:this,ev:F});if(E===false){return false;}if(this._isNonEditable(F)){return false;}this._setCurrentEvent(F);var G=A.getTarget(F);if(this.browser.webkit&&this._hasSelection()){var H=this._getSelection();if(!this.browser.webkit3){H.collapse(true);}else{H.collapseToStart();}}if(this.browser.webkit&&this._lastImage){C.removeClass(this._lastImage,"selected");this._lastImage=null;}if(this._isElement(G,"img")||this._isElement(G,"a")){if(this.browser.webkit){A.stopEvent(F);if(this._isElement(G,"img")){C.addClass(G,"selected");this._lastImage=G;}}if(this.currentWindow){this.closeWindow();}this.nodeChange();}this.fireEvent("editorMouseDown",{type:"editorMouseDown",target:this,ev:F});},_handleDoubleClick:function(F){var E=this.fireEvent("beforeEditorDoubleClick",{type:"beforeEditorDoubleClick",target:this,ev:F});if(E===false){return false;}if(this._isNonEditable(F)){return false;}this._setCurrentEvent(F);var G=A.getTarget(F);if(this._isElement(G,"img")){this.currentElement[0]=G;this.toolbar.fireEvent("insertimageClick",{type:"insertimageClick",target:this.toolbar});this.fireEvent("afterExecCommand",{type:"afterExecCommand",target:this});}else{if(this._hasParent(G,"a")){this.currentElement[0]=this._hasParent(G,"a");this.toolbar.fireEvent("createlinkClick",{type:"createlinkClick",target:this.toolbar});this.fireEvent("afterExecCommand",{type:"afterExecCommand",target:this});}}this.nodeChange();this.fireEvent("editorDoubleClick",{type:"editorDoubleClick",target:this,ev:F});},_handleKeyUp:function(G){var F=this.fireEvent("beforeEditorKeyUp",{type:"beforeEditorKeyUp",target:this,ev:G});if(F===false){return false;}if(this._isNonEditable(G)){return false;}this._setCurrentEvent(G);switch(G.keyCode){case this._keyMap.SELECT_ALL.key:if(this._checkKey(this._keyMap.SELECT_ALL,G)){this.nodeChange();}break;case 32:case 35:case 36:case 37:case 38:case 39:case 40:case 46:case 8:case this._keyMap.CLOSE_WINDOW.key:if((G.keyCode==this._keyMap.CLOSE_WINDOW.key)&&this.currentWindow){if(this._checkKey(this._keyMap.CLOSE_WINDOW,G)){this.closeWindow();}}else{if(!this.browser.ie){if(this._nodeChangeTimer){clearTimeout(this._nodeChangeTimer);}var E=this;this._nodeChangeTimer=setTimeout(function(){E._nodeChangeTimer=null;E.nodeChange.call(E);},100);}else{this.nodeChange();}this.editorDirty=true;}break;}this.fireEvent("editorKeyUp",{type:"editorKeyUp",target:this,ev:G});this._storeUndo();},_handleKeyPress:function(G){var F=this.fireEvent("beforeEditorKeyPress",{type:"beforeEditorKeyPress",target:this,ev:G});if(F===false){return false;}if(this.get("allowNoEdit")){if(G&&G.keyCode&&(G.keyCode==63272)){A.stopEvent(G);}}if(this._isNonEditable(G)){return false;}this._setCurrentEvent(G);if(this.browser.opera){if(G.keyCode===13){var E=this._getSelectedElement();if(!this._isElement(E,"li")){this.execCommand("inserthtml","<br>");A.stopEvent(G);}}}if(this.browser.webkit){if(!this.browser.webkit3){if(G.keyCode&&(G.keyCode==122)&&(G.metaKey)){if(this._hasParent(this._getSelectedElement(),"li")){A.stopEvent(G);}}}this._listFix(G);}this.fireEvent("editorKeyPress",{type:"editorKeyPress",target:this,ev:G});},_handleKeyDown:function(M){var J=this.fireEvent("beforeEditorKeyDown",{type:"beforeEditorKeyDown",target:this,ev:M});if(J===false){return false;}var I=null,K=null;if(this._isNonEditable(M)){return false;}this._setCurrentEvent(M);if(this.currentWindow){this.closeWindow();}if(this.currentWindow){this.closeWindow();}var L=false,G=null,F=false;switch(M.keyCode){case this._keyMap.FOCUS_TOOLBAR.key:if(this._checkKey(this._keyMap.FOCUS_TOOLBAR,M)){var H=this.toolbar.getElementsByTagName("h2")[0];if(H&&H.firstChild){H.firstChild.focus();}}else{if(this._checkKey(this._keyMap.FOCUS_AFTER,M)){this.afterElement.focus();}}A.stopEvent(M);L=false;break;case this._keyMap.CREATE_LINK.key:if(this._hasSelection()){if(this._checkKey(this._keyMap.CREATE_LINK,M)){var E=true;
-if(this.get("limitCommands")){if(!this.toolbar.getButtonByValue("createlink")){E=false;}}if(E){this.execCommand("createlink","");this.toolbar.fireEvent("createlinkClick",{type:"createlinkClick",target:this.toolbar});this.fireEvent("afterExecCommand",{type:"afterExecCommand",target:this});L=false;}}}break;case this._keyMap.UNDO.key:case this._keyMap.REDO.key:if(this._checkKey(this._keyMap.REDO,M)){G="redo";L=true;}else{if(this._checkKey(this._keyMap.UNDO,M)){G="undo";L=true;}}break;case this._keyMap.BOLD.key:if(this._checkKey(this._keyMap.BOLD,M)){G="bold";L=true;}break;case this._keyMap.ITALIC.key:if(this._checkKey(this._keyMap.ITALIC,M)){G="italic";L=true;}break;case this._keyMap.UNDERLINE.key:if(this._checkKey(this._keyMap.UNDERLINE,M)){G="underline";L=true;}break;case 9:if(this.browser.ie){K=this._getRange();I=this._getSelectedElement();if(!this._isElement(I,"li")){if(K){K.pasteHTML("&nbsp;&nbsp;&nbsp;&nbsp;");K.collapse(false);K.select();}A.stopEvent(M);}}if(this.browser.gecko>1.8){I=this._getSelectedElement();if(this._isElement(I,"li")){if(M.shiftKey){this._getDoc().execCommand("outdent",null,"");}else{this._getDoc().execCommand("indent",null,"");}}else{if(!this._hasSelection()){this.execCommand("inserthtml","&nbsp;&nbsp;&nbsp;&nbsp;");}}A.stopEvent(M);}break;case 13:if(this.get("ptags")&&!M.shiftKey){if(this.browser.gecko){I=this._getSelectedElement();if(!this._isElement(I,"li")){L=true;G="insertparagraph";A.stopEvent(M);}}if(this.browser.webkit){I=this._getSelectedElement();if(!this._hasParent(I,"li")){L=true;G="insertparagraph";A.stopEvent(M);}}}else{if(this.browser.ie){K=this._getRange();I=this._getSelectedElement();if(!this._isElement(I,"li")){if(K){K.pasteHTML("<br>");K.collapse(false);K.select();}A.stopEvent(M);}}}break;}if(this.browser.ie){this._listFix(M);}if(L&&G){this.execCommand(G,null);A.stopEvent(M);this.nodeChange();}this.fireEvent("editorKeyDown",{type:"editorKeyDown",target:this,ev:M});},_listFix:function(K){var M=null,I=null,E=false,G=null;if(this.browser.webkit){if(K.keyCode&&(K.keyCode==13)){if(this._hasParent(this._getSelectedElement(),"li")){var H=this._hasParent(this._getSelectedElement(),"li");if(H.previousSibling){if(H.firstChild&&(H.firstChild.length==1)){this._selectNode(H);}}}}}if(K.keyCode&&((!this.browser.webkit3&&(K.keyCode==25))||((this.browser.webkit3||!this.browser.webkit)&&((K.keyCode==9)&&K.shiftKey)))){M=this._getSelectedElement();if(this._hasParent(M,"li")){M=this._hasParent(M,"li");if(this._hasParent(M,"ul")||this._hasParent(M,"ol")){I=this._hasParent(M,"ul");if(!I){I=this._hasParent(M,"ol");}if(this._isElement(I.previousSibling,"li")){I.removeChild(M);I.parentNode.insertBefore(M,I.nextSibling);if(this.browser.ie){G=this._getDoc().body.createTextRange();G.moveToElementText(M);G.collapse(false);G.select();}if(this.browser.webkit){this._selectNode(M.firstChild);}A.stopEvent(K);}}}}if(K.keyCode&&((K.keyCode==9)&&(!K.shiftKey))){var F=this._getSelectedElement();if(this._hasParent(F,"li")){E=this._hasParent(F,"li").innerHTML;}if(this.browser.webkit){this._getDoc().execCommand("inserttext",false,"\t");}M=this._getSelectedElement();if(this._hasParent(M,"li")){I=this._hasParent(M,"li");var J=this._getDoc().createElement(I.parentNode.tagName.toLowerCase());if(this.browser.webkit){var L=C.getElementsByClassName("Apple-tab-span","span",I);if(L[0]){I.removeChild(L[0]);I.innerHTML=D.trim(I.innerHTML);if(E){I.innerHTML='<span class="yui-non">'+E+"</span>&nbsp;";}else{I.innerHTML='<span class="yui-non">&nbsp;</span>&nbsp;';}}}else{if(E){I.innerHTML=E+"&nbsp;";}else{I.innerHTML="&nbsp;";}}I.parentNode.replaceChild(J,I);J.appendChild(I);if(this.browser.webkit){this._getSelection().setBaseAndExtent(I.firstChild,1,I.firstChild,I.firstChild.innerText.length);if(!this.browser.webkit3){I.parentNode.parentNode.style.display="list-item";setTimeout(function(){I.parentNode.parentNode.style.display="block";},1);}}else{if(this.browser.ie){G=this._getDoc().body.createTextRange();G.moveToElementText(I);G.collapse(false);G.select();}else{this._selectNode(I);}}A.stopEvent(K);}if(this.browser.webkit){A.stopEvent(K);}this.nodeChange();}},nodeChange:function(E){var F=this;this._storeUndo();if(this.get("nodeChangeDelay")){window.setTimeout(function(){F._nodeChange.apply(F,arguments);},0);}else{this._nodeChange();}},_nodeChange:function(F){var H=parseInt(this.get("nodeChangeThreshold"),10),O=Math.round(new Date().getTime()/1000),R=this;if(F===true){this._lastNodeChange=0;}if((this._lastNodeChange+H)<O){if(this._fixNodesTimer===null){this._fixNodesTimer=window.setTimeout(function(){R._fixNodes.call(R);R._fixNodesTimer=null;},0);}}this._lastNodeChange=O;if(this.currentEvent){try{this._lastNodeChangeEvent=this.currentEvent.type;}catch(a){}}var Z=this.fireEvent("beforeNodeChange",{type:"beforeNodeChange",target:this});if(Z===false){return false;}if(this.get("dompath")){window.setTimeout(function(){R._writeDomPath.call(R);},0);}if(!this.get("disabled")){if(this.STOP_NODE_CHANGE){this.STOP_NODE_CHANGE=false;return false;}else{var T=this._getSelection(),Q=this._getRange(),E=this._getSelectedElement(),M=this.toolbar.getButtonByValue("fontname"),L=this.toolbar.getButtonByValue("fontsize"),J=this.toolbar.getButtonByValue("undo"),G=this.toolbar.getButtonByValue("redo");var N={};if(this._lastButton){N[this._lastButton.id]=true;}if(!this._isElement(E,"body")){if(M){N[M.get("id")]=true;}if(L){N[L.get("id")]=true;}}if(G){delete N[G.get("id")];}this.toolbar.resetAllButtons(N);for(var b=0;b<this._disabled.length;b++){var P=this.toolbar.getButtonByValue(this._disabled[b]);if(P&&P.get){if(this._lastButton&&(P.get("id")===this._lastButton.id)){}else{if(!this._hasSelection()&&!this.get("insert")){switch(this._disabled[b]){case"fontname":case"fontsize":break;default:this.toolbar.disableButton(P);}}else{if(!this._alwaysDisabled[this._disabled[b]]){this.toolbar.enableButton(P);}}if(!this._alwaysEnabled[this._disabled[b]]){this.toolbar.deselectButton(P);}}}}var S=this._getDomPath();var c=null,W=null;for(var X=0;
-X<S.length;X++){c=S[X].tagName.toLowerCase();if(S[X].getAttribute("tag")){c=S[X].getAttribute("tag").toLowerCase();}W=this._tag2cmd[c];if(W===undefined){W=[];}if(!D.isArray(W)){W=[W];}if(S[X].style.fontWeight.toLowerCase()=="bold"){W[W.length]="bold";}if(S[X].style.fontStyle.toLowerCase()=="italic"){W[W.length]="italic";}if(S[X].style.textDecoration.toLowerCase()=="underline"){W[W.length]="underline";}if(S[X].style.textDecoration.toLowerCase()=="line-through"){W[W.length]="strikethrough";}if(W.length>0){for(var V=0;V<W.length;V++){this.toolbar.selectButton(W[V]);this.toolbar.enableButton(W[V]);}}switch(S[X].style.textAlign.toLowerCase()){case"left":case"right":case"center":case"justify":var U=S[X].style.textAlign.toLowerCase();if(S[X].style.textAlign.toLowerCase()=="justify"){U="full";}this.toolbar.selectButton("justify"+U);this.toolbar.enableButton("justify"+U);break;}}if(M){var Y=M._configs.label._initialConfig.value;M.set("label",'<span class="yui-toolbar-fontname-'+this._cleanClassName(Y)+'">'+Y+"</span>");this._updateMenuChecked("fontname",Y);}if(L){L.set("label",L._configs.label._initialConfig.value);}var K=this.toolbar.getButtonByValue("heading");if(K){K.set("label",K._configs.label._initialConfig.value);this._updateMenuChecked("heading","none");}var I=this.toolbar.getButtonByValue("insertimage");if(I&&this.currentWindow&&(this.currentWindow.name=="insertimage")){this.toolbar.disableButton(I);}if(this._lastButton&&this._lastButton.isSelected){this.toolbar.deselectButton(this._lastButton.id);}this._undoNodeChange();}}this.fireEvent("afterNodeChange",{type:"afterNodeChange",target:this});},_updateMenuChecked:function(E,F,H){if(!H){H=this.toolbar;}var G=H.getButtonByValue(E);G.checkValue(F);},_handleToolbarClick:function(F){var H="";var I="";var G=F.button.value;if(F.button.menucmd){H=G;G=F.button.menucmd;}this._lastButton=F.button;if(this.STOP_EXEC_COMMAND){this.STOP_EXEC_COMMAND=false;return false;}else{this.execCommand(G,H);if(!this.browser.webkit){var E=this;setTimeout(function(){E._focusWindow.call(E);},5);}}A.stopEvent(F);},_setupAfterElement:function(){if(!this.beforeElement){this.beforeElement=document.createElement("h2");this.beforeElement.className="yui-editor-skipheader";this.beforeElement.tabIndex="-1";this.beforeElement.innerHTML=this.STR_BEFORE_EDITOR;this.get("element_cont").get("firstChild").insertBefore(this.beforeElement,this.toolbar.get("nextSibling"));}if(!this.afterElement){this.afterElement=document.createElement("h2");this.afterElement.className="yui-editor-skipheader";this.afterElement.tabIndex="-1";this.afterElement.innerHTML=this.STR_LEAVE_EDITOR;this.get("element_cont").get("firstChild").appendChild(this.afterElement);}},_disableEditor:function(F){if(F){this._removeEditorEvents();if(!this._mask){if(!!this.browser.ie){this._setDesignMode("off");}if(this.toolbar){this.toolbar.set("disabled",true);}this._mask=document.createElement("DIV");C.setStyle(this._mask,"height","100%");C.setStyle(this._mask,"width","100%");C.setStyle(this._mask,"position","absolute");C.setStyle(this._mask,"top","0");C.setStyle(this._mask,"left","0");C.setStyle(this._mask,"opacity",".5");C.addClass(this._mask,"yui-editor-masked");this.get("iframe").get("parentNode").appendChild(this._mask);}}else{this._initEditorEvents();if(this._mask){this._mask.parentNode.removeChild(this._mask);this._mask=null;if(this.toolbar){this.toolbar.set("disabled",false);}this._setDesignMode("on");this._focusWindow();var E=this;window.setTimeout(function(){E.nodeChange.call(E);},100);}}},SEP_DOMPATH:"<",STR_LEAVE_EDITOR:"You have left the Rich Text Editor.",STR_BEFORE_EDITOR:"This text field can contain stylized text and graphics. To cycle through all formatting options, use the keyboard shortcut Shift + Escape to place focus on the toolbar and navigate between options with your arrow keys. To exit this text editor use the Escape key and continue tabbing. <h4>Common formatting keyboard shortcuts:</h4><ul><li>Control Shift B sets text to bold</li> <li>Control Shift I sets text to italic</li> <li>Control Shift U underlines text</li> <li>Control Shift L adds an HTML link</li></ul>",STR_TITLE:"Rich Text Area.",STR_IMAGE_HERE:"Image URL Here",STR_LINK_URL:"Link URL",STOP_EXEC_COMMAND:false,STOP_NODE_CHANGE:false,CLASS_NOEDIT:"yui-noedit",CLASS_CONTAINER:"yui-editor-container",CLASS_EDITABLE:"yui-editor-editable",CLASS_EDITABLE_CONT:"yui-editor-editable-container",CLASS_PREFIX:"yui-editor",browser:function(){var E=YAHOO.env.ua;if(E.webkit>=420){E.webkit3=E.webkit;}else{E.webkit3=0;}E.mac=false;if(navigator.userAgent.indexOf("Macintosh")!==-1){E.mac=true;}return E;}(),init:function(F,E){if(!this._defaultToolbar){this._defaultToolbar={collapse:true,titlebar:"Text Editing Tools",draggable:false,buttons:[{group:"fontstyle",label:"Font Name and Size",buttons:[{type:"select",label:"Arial",value:"fontname",disabled:true,menu:[{text:"Arial",checked:true},{text:"Arial Black"},{text:"Comic Sans MS"},{text:"Courier New"},{text:"Lucida Console"},{text:"Tahoma"},{text:"Times New Roman"},{text:"Trebuchet MS"},{text:"Verdana"}]},{type:"spin",label:"13",value:"fontsize",range:[9,75],disabled:true}]},{type:"separator"},{group:"textstyle",label:"Font Style",buttons:[{type:"push",label:"Bold CTRL + SHIFT + B",value:"bold"},{type:"push",label:"Italic CTRL + SHIFT + I",value:"italic"},{type:"push",label:"Underline CTRL + SHIFT + U",value:"underline"},{type:"push",label:"Strike Through",value:"strikethrough"},{type:"separator"},{type:"color",label:"Font Color",value:"forecolor",disabled:true},{type:"color",label:"Background Color",value:"backcolor",disabled:true}]},{type:"separator"},{group:"indentlist",label:"Lists",buttons:[{type:"push",label:"Create an Unordered List",value:"insertunorderedlist"},{type:"push",label:"Create an Ordered List",value:"insertorderedlist"}]},{type:"separator"},{group:"insertitem",label:"Insert Item",buttons:[{type:"push",label:"HTML Link CTRL + SHIFT + L",value:"createlink",disabled:true},{type:"push",label:"Insert Image",value:"insertimage"}]}]};
-}YAHOO.widget.SimpleEditor.superclass.init.call(this,F,E);YAHOO.widget.EditorInfo._instances[this.get("id")]=this;this.currentElement=[];this.on("contentReady",function(){this.DOMReady=true;this.fireQueue();},this,true);},initAttributes:function(E){YAHOO.widget.SimpleEditor.superclass.initAttributes.call(this,E);var F=this;this.setAttributeConfig("nodeChangeDelay",{value:((E.nodeChangeDelay===false)?false:true)});this.setAttributeConfig("maxUndo",{writeOnce:true,value:E.maxUndo||30});this.setAttributeConfig("ptags",{writeOnce:true,value:E.ptags||false});this.setAttributeConfig("insert",{writeOnce:true,value:E.insert||false,method:function(K){if(K){var J={fontname:true,fontsize:true,forecolor:true,backcolor:true};var I=this._defaultToolbar.buttons;for(var H=0;H<I.length;H++){if(I[H].buttons){for(var G=0;G<I[H].buttons.length;G++){if(I[H].buttons[G].value){if(J[I[H].buttons[G].value]){delete I[H].buttons[G].disabled;}}}}}}}});this.setAttributeConfig("container",{writeOnce:true,value:E.container||false});this.setAttributeConfig("plainText",{writeOnce:true,value:E.plainText||false});this.setAttributeConfig("iframe",{value:null});this.setAttributeConfig("textarea",{value:null,writeOnce:true});this.setAttributeConfig("container",{readOnly:true,value:null});this.setAttributeConfig("nodeChangeThreshold",{value:E.nodeChangeThreshold||3,validator:YAHOO.lang.isNumber});this.setAttributeConfig("allowNoEdit",{value:E.allowNoEdit||false,validator:YAHOO.lang.isBoolean});this.setAttributeConfig("limitCommands",{value:E.limitCommands||false,validator:YAHOO.lang.isBoolean});this.setAttributeConfig("element_cont",{value:E.element_cont});this.setAttributeConfig("editor_wrapper",{value:E.editor_wrapper||null,writeOnce:true});this.setAttributeConfig("height",{value:E.height||C.getStyle(F.get("element"),"height"),method:function(G){if(this._rendered){if(this.get("animate")){var H=new YAHOO.util.Anim(this.get("iframe").get("parentNode"),{height:{to:parseInt(G,10)}},0.5);H.animate();}else{C.setStyle(this.get("iframe").get("parentNode"),"height",G);}}}});this.setAttributeConfig("autoHeight",{value:E.autoHeight||false,method:function(G){if(G){if(this.get("iframe")){this.get("iframe").get("element").setAttribute("scrolling","no");}this.on("afterNodeChange",this._handleAutoHeight,this,true);this.on("editorKeyDown",this._handleAutoHeight,this,true);this.on("editorKeyPress",this._handleAutoHeight,this,true);}else{if(this.get("iframe")){this.get("iframe").get("element").setAttribute("scrolling","auto");}this.unsubscribe("afterNodeChange",this._handleAutoHeight);this.unsubscribe("editorKeyDown",this._handleAutoHeight);this.unsubscribe("editorKeyPress",this._handleAutoHeight);}}});this.setAttributeConfig("width",{value:E.width||C.getStyle(this.get("element"),"width"),method:function(G){if(this._rendered){if(this.get("animate")){var H=new YAHOO.util.Anim(this.get("element_cont").get("element"),{width:{to:parseInt(G,10)}},0.5);H.animate();}else{this.get("element_cont").setStyle("width",G);}}}});this.setAttributeConfig("blankimage",{value:E.blankimage||this._getBlankImage()});this.setAttributeConfig("css",{value:E.css||this._defaultCSS,writeOnce:true});this.setAttributeConfig("html",{value:E.html||'<html><head><title>{TITLE}</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><base href="'+this._baseHREF+'"><style>{CSS}</style><style>{HIDDEN_CSS}</style><style>{EXTRA_CSS}</style></head><body onload="document.body._rteLoaded = true;">{CONTENT}</body></html>',writeOnce:true});this.setAttributeConfig("extracss",{value:E.extracss||"",writeOnce:true});this.setAttributeConfig("handleSubmit",{value:E.handleSubmit||false,method:function(G){if(this.get("element").form){if(!this._formButtons){this._formButtons=[];}if(G){A.on(this.get("element").form,"submit",this._handleFormSubmit,this,true);var H=this.get("element").form.getElementsByTagName("input");for(var J=0;J<H.length;J++){var I=H[J].getAttribute("type");if(I&&(I.toLowerCase()=="submit")){A.on(H[J],"click",this._handleFormButtonClick,this,true);this._formButtons[this._formButtons.length]=H[J];}}}else{A.removeListener(this.get("element").form,"submit",this._handleFormSubmit);if(this._formButtons){A.removeListener(this._formButtons,"click",this._handleFormButtonClick);}}}}});this.setAttributeConfig("disabled",{value:false,method:function(G){if(this._rendered){this._disableEditor(G);}}});this.setAttributeConfig("saveEl",{value:this.get("element")});this.setAttributeConfig("toolbar_cont",{value:null,writeOnce:true});this.setAttributeConfig("toolbar",{value:E.toolbar||this._defaultToolbar,writeOnce:true,method:function(G){if(!G.buttonType){G.buttonType=this._defaultToolbar.buttonType;}this._defaultToolbar=G;}});this.setAttributeConfig("animate",{value:((E.animate)?((YAHOO.util.Anim)?true:false):false),validator:function(H){var G=true;if(!YAHOO.util.Anim){G=false;}return G;}});this.setAttributeConfig("panel",{value:null,writeOnce:true,validator:function(H){var G=true;if(!YAHOO.widget.Overlay){G=false;}return G;}});this.setAttributeConfig("focusAtStart",{value:E.focusAtStart||false,writeOnce:true,method:function(G){if(G){this.on("editorContentLoaded",function(){var H=this;setTimeout(function(){H._focusWindow.call(H,true);H.editorDirty=false;},400);},this,true);}}});this.setAttributeConfig("dompath",{value:E.dompath||false,method:function(G){if(G&&!this.dompath){this.dompath=document.createElement("DIV");this.dompath.id=this.get("id")+"_dompath";C.addClass(this.dompath,"dompath");this.get("element_cont").get("firstChild").appendChild(this.dompath);if(this.get("iframe")){this._writeDomPath();}}else{if(!G&&this.dompath){this.dompath.parentNode.removeChild(this.dompath);this.dompath=null;}}}});this.setAttributeConfig("markup",{value:E.markup||"semantic",validator:function(G){switch(G.toLowerCase()){case"semantic":case"css":case"default":case"xhtml":return true;}return false;}});this.setAttributeConfig("removeLineBreaks",{value:E.removeLineBreaks||false,validator:YAHOO.lang.isBoolean});
-this.setAttributeConfig("drag",{writeOnce:true,value:E.drag||false});this.setAttributeConfig("resize",{writeOnce:true,value:E.resize||false});},_getBlankImage:function(){if(!this.DOMReady){this._queue[this._queue.length]=["_getBlankImage",arguments];return"";}var E="";if(!this._blankImageLoaded){if(YAHOO.widget.EditorInfo.blankImage){this.set("blankimage",YAHOO.widget.EditorInfo.blankImage);this._blankImageLoaded=true;}else{var F=document.createElement("div");F.style.position="absolute";F.style.top="-9999px";F.style.left="-9999px";F.className=this.CLASS_PREFIX+"-blankimage";document.body.appendChild(F);E=YAHOO.util.Dom.getStyle(F,"background-image");E=E.replace("url(","").replace(")","").replace(/"/g,"");E=E.replace("app:/","");this.set("blankimage",E);this._blankImageLoaded=true;F.parentNode.removeChild(F);YAHOO.widget.EditorInfo.blankImage=E;}}else{E=this.get("blankimage");}return E;},_handleAutoHeight:function(){var I=this._getDoc(),F=I.body,J=I.documentElement;var E=parseInt(C.getStyle(this.get("editor_wrapper"),"height"),10);var G=F.scrollHeight;if(this.browser.webkit){G=J.scrollHeight;}if(G<parseInt(this.get("height"),10)){G=parseInt(this.get("height"),10);}if((E!=G)&&(G>=parseInt(this.get("height"),10))){C.setStyle(this.get("editor_wrapper"),"height",G+"px");if(this.browser.ie){this.get("iframe").setStyle("height","99%");this.get("iframe").setStyle("zoom","1");var H=this;window.setTimeout(function(){H.get("iframe").setStyle("height","100%");},1);}}},_formButtons:null,_formButtonClicked:null,_handleFormButtonClick:function(F){var E=A.getTarget(F);this._formButtonClicked=E;},_handleFormSubmit:function(H){this.saveHTML();var G=this.get("element").form,E=this._formButtonClicked||false;A.removeListener(G,"submit",this._handleFormSubmit);if(YAHOO.env.ua.ie){if(E&&!E.disabled){E.click();}}else{if(E&&!E.disabled){E.click();}var F=document.createEvent("HTMLEvents");F.initEvent("submit",true,true);G.dispatchEvent(F);if(YAHOO.env.ua.webkit){if(YAHOO.lang.isFunction(G.submit)){G.submit();}}}},_handleFontSize:function(G){var E=this.toolbar.getButtonById(G.button.id);var F=E.get("label")+"px";this.execCommand("fontsize",F);this.STOP_EXEC_COMMAND=true;},_handleColorPicker:function(G){var F=G.button;var E="#"+G.color;if((F=="forecolor")||(F=="backcolor")){this.execCommand(F,E);}},_handleAlign:function(H){var G=null;for(var E=0;E<H.button.menu.length;E++){if(H.button.menu[E].value==H.button.value){G=H.button.menu[E].value;}}var F=this._getSelection();this.execCommand(G,F);this.STOP_EXEC_COMMAND=true;},_handleAfterNodeChange:function(){var Q=this._getDomPath(),L=null,H=null,M=null,F=false,J=this.toolbar.getButtonByValue("fontname"),K=this.toolbar.getButtonByValue("fontsize"),E=this.toolbar.getButtonByValue("heading");for(var G=0;G<Q.length;G++){L=Q[G];var P=L.tagName.toLowerCase();if(L.getAttribute("tag")){P=L.getAttribute("tag");}H=L.getAttribute("face");if(C.getStyle(L,"font-family")){H=C.getStyle(L,"font-family");H=H.replace(/'/g,"");}if(P.substring(0,1)=="h"){if(E){for(var I=0;I<E._configs.menu.value.length;I++){if(E._configs.menu.value[I].value.toLowerCase()==P){E.set("label",E._configs.menu.value[I].text);}}this._updateMenuChecked("heading",P);}}}if(J){for(var O=0;O<J._configs.menu.value.length;O++){if(H&&J._configs.menu.value[O].text.toLowerCase()==H.toLowerCase()){F=true;H=J._configs.menu.value[O].text;}}if(!F){H=J._configs.label._initialConfig.value;}var N='<span class="yui-toolbar-fontname-'+this._cleanClassName(H)+'">'+H+"</span>";if(J.get("label")!=N){J.set("label",N);this._updateMenuChecked("fontname",H);}}if(K){M=parseInt(C.getStyle(L,"fontSize"),10);if((M===null)||isNaN(M)){M=K._configs.label._initialConfig.value;}K.set("label",""+M);}if(!this._isElement(L,"body")&&!this._isElement(L,"img")){this.toolbar.enableButton(J);this.toolbar.enableButton(K);this.toolbar.enableButton("forecolor");this.toolbar.enableButton("backcolor");}if(this._isElement(L,"img")){if(YAHOO.widget.Overlay){this.toolbar.enableButton("createlink");}}if(this._hasParent(L,"blockquote")){this.toolbar.selectButton("indent");this.toolbar.disableButton("indent");this.toolbar.enableButton("outdent");}if(this._hasParent(L,"ol")||this._hasParent(L,"ul")){this.toolbar.disableButton("indent");}this._lastButton=null;},_handleInsertImageClick:function(){if(this.get("limitCommands")){if(!this.toolbar.getButtonByValue("insertimage")){return false;}}this.toolbar.set("disabled",true);this.on("afterExecCommand",function(){var E=this.currentElement[0],G="http://";if(!E){E=this._getSelectedElement();}if(E){if(E.getAttribute("src")){G=E.getAttribute("src",2);if(G.indexOf(this.get("blankimage"))!=-1){G=this.STR_IMAGE_HERE;}}}var F=prompt(this.STR_LINK_URL+": ",G);if((F!=="")&&(F!==null)){E.setAttribute("src",F);}else{if(F===null){E.parentNode.removeChild(E);this.currentElement=[];this.nodeChange();}}this.closeWindow();this.toolbar.set("disabled",false);},this,true);},_handleInsertImageWindowClose:function(){this.nodeChange();},_isLocalFile:function(E){if((E)&&(E!=="")&&((E.indexOf("file:/")!=-1)||(E.indexOf(":\\")!=-1))){return true;}return false;},_handleCreateLinkClick:function(){if(this.get("limitCommands")){if(!this.toolbar.getButtonByValue("createlink")){return false;}}this.toolbar.set("disabled",true);this.on("afterExecCommand",function(){var G=this.currentElement[0],F="";if(G){if(G.getAttribute("href",2)!==null){F=G.getAttribute("href",2);}}var I=prompt(this.STR_LINK_URL+": ",F);if((I!=="")&&(I!==null)){var H=I;if((H.indexOf(":/"+"/")==-1)&&(H.substring(0,1)!="/")&&(H.substring(0,6).toLowerCase()!="mailto")){if((H.indexOf("@")!=-1)&&(H.substring(0,6).toLowerCase()!="mailto")){H="mailto:"+H;}else{if(H.substring(0,1)!="#"){}}}G.setAttribute("href",H);}else{if(I!==null){var E=this._getDoc().createElement("span");E.innerHTML=G.innerHTML;C.addClass(E,"yui-non");G.parentNode.replaceChild(E,G);}}this.closeWindow();this.toolbar.set("disabled",false);},this);},_handleCreateLinkWindowClose:function(){this.nodeChange();this.currentElement=[];
-},render:function(){if(this._rendered){return false;}if(!this.DOMReady){this._queue[this._queue.length]=["render",arguments];return false;}if(this.get("element")){if(this.get("element").tagName){this._textarea=true;if(this.get("element").tagName.toLowerCase()!=="textarea"){this._textarea=false;}}else{return false;}}else{return false;}this._rendered=true;var E=this;window.setTimeout(function(){E._render.call(E);},4);},_render:function(){var E=this;this.set("textarea",this.get("element"));this.get("element_cont").setStyle("display","none");this.get("element_cont").addClass(this.CLASS_CONTAINER);this.set("iframe",this._createIframe());window.setTimeout(function(){E._setInitialContent.call(E);},10);this.get("editor_wrapper").appendChild(this.get("iframe").get("element"));if(this.get("disabled")){this._disableEditor(true);}var F=this.get("toolbar");if(F instanceof B){this.toolbar=F;this.toolbar.set("disabled",true);}else{F.disabled=true;this.toolbar=new B(this.get("toolbar_cont"),F);}this.fireEvent("toolbarLoaded",{type:"toolbarLoaded",target:this.toolbar});this.toolbar.on("toolbarCollapsed",function(){if(this.currentWindow){this.moveWindow();}},this,true);this.toolbar.on("toolbarExpanded",function(){if(this.currentWindow){this.moveWindow();}},this,true);this.toolbar.on("fontsizeClick",this._handleFontSize,this,true);this.toolbar.on("colorPickerClicked",function(G){this._handleColorPicker(G);return false;},this,true);this.toolbar.on("alignClick",this._handleAlign,this,true);this.on("afterNodeChange",this._handleAfterNodeChange,this,true);this.toolbar.on("insertimageClick",this._handleInsertImageClick,this,true);this.on("windowinsertimageClose",this._handleInsertImageWindowClose,this,true);this.toolbar.on("createlinkClick",this._handleCreateLinkClick,this,true);this.on("windowcreatelinkClose",this._handleCreateLinkWindowClose,this,true);this.get("parentNode").replaceChild(this.get("element_cont").get("element"),this.get("element"));this.setStyle("visibility","hidden");this.setStyle("position","absolute");this.setStyle("top","-9999px");this.setStyle("left","-9999px");this.get("element_cont").appendChild(this.get("element"));this.get("element_cont").setStyle("display","block");C.addClass(this.get("iframe").get("parentNode"),this.CLASS_EDITABLE_CONT);this.get("iframe").addClass(this.CLASS_EDITABLE);this.get("element_cont").setStyle("width",this.get("width"));C.setStyle(this.get("iframe").get("parentNode"),"height",this.get("height"));this.get("iframe").setStyle("width","100%");this.get("iframe").setStyle("height","100%");this._setupDD();window.setTimeout(function(){E._setupAfterElement.call(E);},0);this.fireEvent("afterRender",{type:"afterRender",target:this});},execCommand:function(G,F){var J=this.fireEvent("beforeExecCommand",{type:"beforeExecCommand",target:this,args:arguments});if((J===false)||(this.STOP_EXEC_COMMAND)){this.STOP_EXEC_COMMAND=false;return false;}this._lastCommand=G;this._setMarkupType(G);if(this.browser.ie){this._getWindow().focus();}var E=true;if(this.get("limitCommands")){if(!this.toolbar.getButtonByValue(G)){E=false;}}this.editorDirty=true;if((typeof this["cmd_"+G.toLowerCase()]=="function")&&E){var I=this["cmd_"+G.toLowerCase()](F);E=I[0];if(I[1]){G=I[1];}if(I[2]){F=I[2];}}if(E){try{this._getDoc().execCommand(G,false,F);}catch(H){}}else{}this.on("afterExecCommand",function(){this.unsubscribeAll("afterExecCommand");this.nodeChange();},this,true);this.fireEvent("afterExecCommand",{type:"afterExecCommand",target:this});},cmd_underline:function(F){if(!this.browser.webkit){var E=this._getSelectedElement();if(E&&this._isElement(E,"span")){if(E.style.textDecoration=="underline"){E.style.textDecoration="none";}else{E.style.textDecoration="underline";}return[false];}}return[true];},cmd_backcolor:function(H){var E=true,F=this._getSelectedElement(),G="backcolor";if(this.browser.gecko||this.browser.opera){this._setEditorStyle(true);G="hilitecolor";}if(!this._isElement(F,"body")&&!this._hasSelection()){C.setStyle(F,"background-color",H);this._selectNode(F);E=false;}else{if(!this._isElement(F,"body")&&this._hasSelection()){C.setStyle(F,"background-color",H);this._selectNode(F);E=false;}else{if(this.get("insert")){F=this._createInsertElement({backgroundColor:H});}else{this._createCurrentElement("span",{backgroundColor:H});this._selectNode(this.currentElement[0]);}E=false;}}return[E,G];},cmd_forecolor:function(G){var E=true,F=this._getSelectedElement();if(!this._isElement(F,"body")&&!this._hasSelection()){C.setStyle(F,"color",G);this._selectNode(F);E=false;}else{if(!this._isElement(F,"body")&&this._hasSelection()){C.setStyle(F,"color",G);this._selectNode(F);E=false;}else{if(this.get("insert")){F=this._createInsertElement({color:G});}else{this._createCurrentElement("span",{color:G});this._selectNode(this.currentElement[0]);}E=false;}}return[E];},cmd_unlink:function(E){this._swapEl(this.currentElement[0],"span",function(F){F.className="yui-non";});return[false];},cmd_createlink:function(G){var F=this._getSelectedElement(),E=null;if(this._hasParent(F,"a")){this.currentElement[0]=this._hasParent(F,"a");}else{if(!this._isElement(F,"a")){this._createCurrentElement("a");E=this._swapEl(this.currentElement[0],"a");this.currentElement[0]=E;}else{this.currentElement[0]=F;}}return[false];},cmd_insertimage:function(J){var E=true,F=null,I="insertimage",H=this._getSelectedElement();if(J===""){J=this.get("blankimage");}if(this._isElement(H,"img")){this.currentElement[0]=H;E=false;}else{if(this._getDoc().queryCommandEnabled(I)){this._getDoc().execCommand("insertimage",false,J);var K=this._getDoc().getElementsByTagName("img");for(var G=0;G<K.length;G++){if(!YAHOO.util.Dom.hasClass(K[G],"yui-img")){YAHOO.util.Dom.addClass(K[G],"yui-img");this.currentElement[0]=K[G];}}E=false;}else{if(H==this._getDoc().body){F=this._getDoc().createElement("img");F.setAttribute("src",J);YAHOO.util.Dom.addClass(F,"yui-img");this._getDoc().body.appendChild(F);}else{this._createCurrentElement("img");F=this._getDoc().createElement("img");
-F.setAttribute("src",J);YAHOO.util.Dom.addClass(F,"yui-img");this.currentElement[0].parentNode.replaceChild(F,this.currentElement[0]);}this.currentElement[0]=F;E=false;}}return[E];},cmd_inserthtml:function(H){var E=true,G="inserthtml",F=null,I=null;if(this.browser.webkit&&!this._getDoc().queryCommandEnabled(G)){this._createCurrentElement("img");F=this._getDoc().createElement("span");F.innerHTML=H;this.currentElement[0].parentNode.replaceChild(F,this.currentElement[0]);E=false;}else{if(this.browser.ie){I=this._getRange();if(I.item){I.item(0).outerHTML=H;}else{I.pasteHTML(H);}E=false;}}return[E];},cmd_list:function(Y){var S=true,V=null,M=0,G=null,R="",W=this._getSelectedElement(),T="insertorderedlist";if(Y=="ul"){T="insertunorderedlist";}if(this.browser.webkit){if(this._isElement(W,"li")&&this._isElement(W.parentNode,Y)){G=W.parentNode;V=this._getDoc().createElement("span");YAHOO.util.Dom.addClass(V,"yui-non");R="";var F=G.getElementsByTagName("li");for(M=0;M<F.length;M++){R+="<div>"+F[M].innerHTML+"</div>";}V.innerHTML=R;this.currentElement[0]=G;this.currentElement[0].parentNode.replaceChild(V,this.currentElement[0]);}else{this._createCurrentElement(Y.toLowerCase());V=this._getDoc().createElement(Y);for(M=0;M<this.currentElement.length;M++){var J=this._getDoc().createElement("li");J.innerHTML=this.currentElement[M].innerHTML+'<span class="yui-non">&nbsp;</span>&nbsp;';V.appendChild(J);if(M>0){this.currentElement[M].parentNode.removeChild(this.currentElement[M]);}}this.currentElement[0].parentNode.replaceChild(V,this.currentElement[0]);this.currentElement[0]=V;var H=this.currentElement[0].firstChild;H=C.getElementsByClassName("yui-non","span",H)[0];this._getSelection().setBaseAndExtent(H,1,H,H.innerText.length);}S=false;}else{G=this._getSelectedElement();if(this._isElement(G,"li")&&this._isElement(G.parentNode,Y)||(this.browser.ie&&this._isElement(this._getRange().parentElement,"li"))||(this.browser.ie&&this._isElement(G,"ul"))||(this.browser.ie&&this._isElement(G,"ol"))){if(this.browser.ie){if((this.browser.ie&&this._isElement(G,"ul"))||(this.browser.ie&&this._isElement(G,"ol"))){G=G.getElementsByTagName("li")[0];}R="";var I=G.parentNode.getElementsByTagName("li");for(var U=0;U<I.length;U++){R+=I[U].innerHTML+"<br>";}var X=this._getDoc().createElement("span");X.innerHTML=R;G.parentNode.parentNode.replaceChild(X,G.parentNode);}else{this.nodeChange();this._getDoc().execCommand(T,"",G.parentNode);this.nodeChange();}S=false;}if(this.browser.opera){var Q=this;window.setTimeout(function(){var Z=Q._getDoc().getElementsByTagName("li");for(var a=0;a<Z.length;a++){if(Z[a].innerHTML.toLowerCase()=="<br>"){Z[a].parentNode.parentNode.removeChild(Z[a].parentNode);}}},30);}if(this.browser.ie&&S){var K="";if(this._getRange().html){K="<li>"+this._getRange().html+"</li>";}else{var L=this._getRange().text.split("\n");if(L.length>1){K="";for(var P=0;P<L.length;P++){K+="<li>"+L[P]+"</li>";}}else{var O=this._getRange().text;if(O===""){K='<li id="new_list_item">'+O+"</li>";}else{K="<li>"+O+"</li>";}}}this._getRange().pasteHTML("<"+Y+">"+K+"</"+Y+">");var E=this._getDoc().getElementById("new_list_item");if(E){var N=this._getDoc().body.createTextRange();N.moveToElementText(E);N.collapse(false);N.select();E.id="";}S=false;}}return S;},cmd_insertorderedlist:function(E){return[this.cmd_list("ol")];},cmd_insertunorderedlist:function(E){return[this.cmd_list("ul")];},cmd_fontname:function(H){var E=true,G=this._getSelectedElement();this.currentFont=H;if(G&&G.tagName&&!this._hasSelection()&&!this._isElement(G,"body")&&!this.get("insert")){YAHOO.util.Dom.setStyle(G,"font-family",H);E=false;}else{if(this.get("insert")&&!this._hasSelection()){var F=this._createInsertElement({fontFamily:H});E=false;}}return[E];},cmd_fontsize:function(G){var E=null;if(this.currentElement&&(this.currentElement.length>0)&&(!this._hasSelection())&&(!this.get("insert"))){YAHOO.util.Dom.setStyle(this.currentElement,"fontSize",G);}else{if(!this._isElement(this._getSelectedElement(),"body")){E=this._getSelectedElement();YAHOO.util.Dom.setStyle(E,"fontSize",G);if(this.get("insert")&&this.browser.ie){var F=this._getRange();F.collapse(false);F.select();}else{this._selectNode(E);}}else{if(this.get("insert")&&!this._hasSelection()){E=this._createInsertElement({fontSize:G});this.currentElement[0]=E;this._selectNode(this.currentElement[0]);}else{this._createCurrentElement("span",{"fontSize":G});this._selectNode(this.currentElement[0]);}}}return[false];},_swapEl:function(F,E,H){var G=this._getDoc().createElement(E);if(F){G.innerHTML=F.innerHTML;}if(typeof H=="function"){H.call(this,G);}if(F){F.parentNode.replaceChild(G,F);}return G;},_createInsertElement:function(E){this._createCurrentElement("span",E);var F=this.currentElement[0];if(this.browser.webkit){F.innerHTML='<span class="yui-non">&nbsp;</span>';F=F.firstChild;this._getSelection().setBaseAndExtent(F,1,F,F.innerText.length);}else{if(this.browser.ie||this.browser.opera){F.innerHTML="&nbsp;";}}this._focusWindow();this._selectNode(F,true);return F;},_createCurrentElement:function(G,J){G=((G)?G:"a");var R=null,F=[],H=this._getDoc();if(this.currentFont){if(!J){J={};}J.fontFamily=this.currentFont;this.currentFont=null;}this.currentElement=[];var M=function(X,Z){var Y=null;X=((X)?X:"span");X=X.toLowerCase();switch(X){case"h1":case"h2":case"h3":case"h4":case"h5":case"h6":Y=H.createElement(X);break;default:Y=H.createElement(X);if(X==="span"){YAHOO.util.Dom.addClass(Y,"yui-tag-"+X);YAHOO.util.Dom.addClass(Y,"yui-tag");Y.setAttribute("tag",X);}for(var W in Z){if(YAHOO.lang.hasOwnProperty(Z,W)){Y.style[W]=Z[W];}}break;}return Y;};if(!this._hasSelection()){if(this._getDoc().queryCommandEnabled("insertimage")){this._getDoc().execCommand("insertimage",false,"yui-tmp-img");var L=this._getDoc().getElementsByTagName("img");for(var Q=0;Q<L.length;Q++){if(L[Q].getAttribute("src",2)=="yui-tmp-img"){F=M(G,J);L[Q].parentNode.replaceChild(F,L[Q]);this.currentElement[this.currentElement.length]=F;}}}else{if(this.currentEvent){R=YAHOO.util.Event.getTarget(this.currentEvent);
-}else{R=this._getDoc().body;}}if(R){F=M(G,J);if(this._isElement(R,"body")||this._isElement(R,"html")){if(this._isElement(R,"html")){R=this._getDoc().body;}R.appendChild(F);}else{if(R.nextSibling){R.parentNode.insertBefore(F,R.nextSibling);}else{R.parentNode.appendChild(F);}}this.currentElement[this.currentElement.length]=F;this.currentEvent=null;if(this.browser.webkit){this._getSelection().setBaseAndExtent(F,0,F,0);if(this.browser.webkit3){this._getSelection().collapseToStart();}else{this._getSelection().collapse(true);}}}}else{this._setEditorStyle(true);this._getDoc().execCommand("fontname",false,"yui-tmp");var E=[],P,V=["font","span","i","b","u"];if(!this._isElement(this._getSelectedElement(),"body")){V[V.length]=this._getDoc().getElementsByTagName(this._getSelectedElement().tagName);V[V.length]=this._getDoc().getElementsByTagName(this._getSelectedElement().parentNode.tagName);}for(var K=0;K<V.length;K++){var I=this._getDoc().getElementsByTagName(V[K]);for(var U=0;U<I.length;U++){E[E.length]=I[U];}}for(var S=0;S<E.length;S++){if((YAHOO.util.Dom.getStyle(E[S],"font-family")=="yui-tmp")||(E[S].face&&(E[S].face=="yui-tmp"))){F=M(G,J);F.innerHTML=E[S].innerHTML;if(this._isElement(E[S],"ol")||(this._isElement(E[S],"ul"))){var N=E[S].getElementsByTagName("li")[0];E[S].style.fontFamily="inherit";N.style.fontFamily="inherit";F.innerHTML=N.innerHTML;N.innerHTML="";N.appendChild(F);this.currentElement[this.currentElement.length]=F;}else{if(this._isElement(E[S],"li")){E[S].innerHTML="";E[S].appendChild(F);E[S].style.fontFamily="inherit";this.currentElement[this.currentElement.length]=F;}else{if(E[S].parentNode){E[S].parentNode.replaceChild(F,E[S]);this.currentElement[this.currentElement.length]=F;this.currentEvent=null;if(this.browser.webkit){this._getSelection().setBaseAndExtent(F,0,F,0);if(this.browser.webkit3){this._getSelection().collapseToStart();}else{this._getSelection().collapse(true);}}if(this.browser.ie&&J&&J.fontSize){this._getSelection().empty();}if(this.browser.gecko){this._getSelection().collapseToStart();}}}}}}var T=this.currentElement.length;for(var O=0;O<T;O++){if((O+1)!=T){if(this.currentElement[O]&&this.currentElement[O].nextSibling){if(this._isElement(this.currentElement[O],"br")){this.currentElement[this.currentElement.length]=this.currentElement[O].nextSibling;}}}}}},saveHTML:function(){var F=this.cleanHTML();if(this._textarea){this.get("element").value=F;}else{this.get("element").innerHTML=F;}if(this.get("saveEl")!==this.get("element")){var E=this.get("saveEl");if(D.isString(E)){E=C.get(E);}if(E){if(E.tagName.toLowerCase()==="textarea"){E.value=F;}else{E.innerHTML=F;}}}return F;},setEditorHTML:function(F){var E=this._cleanIncomingHTML(F);this._getDoc().body.innerHTML=E;this.nodeChange();},getEditorHTML:function(){var E=this._getDoc().body;if(E===null){return null;}return this._getDoc().body.innerHTML;},show:function(){if(this.browser.gecko){this._setDesignMode("on");this._focusWindow();}if(this.browser.webkit){var E=this;window.setTimeout(function(){E._setInitialContent.call(E);},10);}if(this.currentWindow){this.closeWindow();}this.get("iframe").setStyle("position","static");this.get("iframe").setStyle("left","");},hide:function(){if(this.currentWindow){this.closeWindow();}if(this._fixNodesTimer){clearTimeout(this._fixNodesTimer);this._fixNodesTimer=null;}if(this._nodeChangeTimer){clearTimeout(this._nodeChangeTimer);this._nodeChangeTimer=null;}this._lastNodeChange=0;this.get("iframe").setStyle("position","absolute");this.get("iframe").setStyle("left","-9999px");},_cleanIncomingHTML:function(E){E=E.replace(/<strong([^>]*)>/gi,"<b$1>");E=E.replace(/<\/strong>/gi,"</b>");E=E.replace(/<embed([^>]*)>/gi,"<YUI_EMBED$1>");E=E.replace(/<\/embed>/gi,"</YUI_EMBED>");E=E.replace(/<em([^>]*)>/gi,"<i$1>");E=E.replace(/<\/em>/gi,"</i>");E=E.replace(/<YUI_EMBED([^>]*)>/gi,"<embed$1>");E=E.replace(/<\/YUI_EMBED>/gi,"</embed>");if(this.get("plainText")){E=E.replace(/\n/g,"<br>").replace(/\r/g,"<br>");E=E.replace(/  /gi,"&nbsp;&nbsp;");E=E.replace(/\t/gi,"&nbsp;&nbsp;&nbsp;&nbsp;");}E=E.replace(/<script([^>]*)>/gi,"<bad>");E=E.replace(/<\/script([^>]*)>/gi,"</bad>");E=E.replace(/&lt;script([^>]*)&gt;/gi,"<bad>");E=E.replace(/&lt;\/script([^>]*)&gt;/gi,"</bad>");E=E.replace(/\n/g,"<YUI_LF>").replace(/\r/g,"<YUI_LF>");E=E.replace(new RegExp("<bad([^>]*)>(.*?)</bad>","gi"),"");E=E.replace(/<YUI_LF>/g,"\n");return E;},cleanHTML:function(G){if(!G){G=this.getEditorHTML();}var F=this.get("markup");G=this.pre_filter_linebreaks(G,F);G=G.replace(/<img([^>]*)\/>/gi,"<YUI_IMG$1>");G=G.replace(/<img([^>]*)>/gi,"<YUI_IMG$1>");G=G.replace(/<input([^>]*)\/>/gi,"<YUI_INPUT$1>");G=G.replace(/<input([^>]*)>/gi,"<YUI_INPUT$1>");G=G.replace(/<ul([^>]*)>/gi,"<YUI_UL$1>");G=G.replace(/<\/ul>/gi,"</YUI_UL>");G=G.replace(/<blockquote([^>]*)>/gi,"<YUI_BQ$1>");G=G.replace(/<\/blockquote>/gi,"</YUI_BQ>");G=G.replace(/<embed([^>]*)>/gi,"<YUI_EMBED$1>");G=G.replace(/<\/embed>/gi,"</YUI_EMBED>");if((F=="semantic")||(F=="xhtml")){G=G.replace(/<i(\s+[^>]*)?>/gi,"<em$1>");G=G.replace(/<\/i>/gi,"</em>");G=G.replace(/<b(\s+[^>]*)?>/gi,"<strong$1>");G=G.replace(/<\/b>/gi,"</strong>");}G=G.replace(/<font/gi,"<font");G=G.replace(/<\/font>/gi,"</font>");G=G.replace(/<span/gi,"<span");G=G.replace(/<\/span>/gi,"</span>");if((F=="semantic")||(F=="xhtml")||(F=="css")){G=G.replace(new RegExp('<font([^>]*)face="([^>]*)">(.*?)</font>',"gi"),'<span $1 style="font-family: $2;">$3</span>');G=G.replace(/<u/gi,'<span style="text-decoration: underline;"');if(this.browser.webkit){G=G.replace(new RegExp('<span class="Apple-style-span" style="font-weight: bold;">([^>]*)</span>',"gi"),"<strong>$1</strong>");G=G.replace(new RegExp('<span class="Apple-style-span" style="font-style: italic;">([^>]*)</span>',"gi"),"<em>$1</em>");}G=G.replace(/\/u>/gi,"/span>");if(F=="css"){G=G.replace(/<em([^>]*)>/gi,"<i$1>");G=G.replace(/<\/em>/gi,"</i>");G=G.replace(/<strong([^>]*)>/gi,"<b$1>");G=G.replace(/<\/strong>/gi,"</b>");G=G.replace(/<b/gi,'<span style="font-weight: bold;"');
-G=G.replace(/\/b>/gi,"/span>");G=G.replace(/<i/gi,'<span style="font-style: italic;"');G=G.replace(/\/i>/gi,"/span>");}G=G.replace(/  /gi," ");}else{G=G.replace(/<u/gi,"<u");G=G.replace(/\/u>/gi,"/u>");}G=G.replace(/<ol([^>]*)>/gi,"<ol$1>");G=G.replace(/\/ol>/gi,"/ol>");G=G.replace(/<li/gi,"<li");G=G.replace(/\/li>/gi,"/li>");G=this.filter_safari(G);G=this.filter_internals(G);G=this.filter_all_rgb(G);G=this.post_filter_linebreaks(G,F);if(F=="xhtml"){G=G.replace(/<YUI_IMG([^>]*)>/g,"<img $1 />");G=G.replace(/<YUI_INPUT([^>]*)>/g,"<input $1 />");}else{G=G.replace(/<YUI_IMG([^>]*)>/g,"<img $1>");G=G.replace(/<YUI_INPUT([^>]*)>/g,"<input $1>");}G=G.replace(/<YUI_UL([^>]*)>/g,"<ul$1>");G=G.replace(/<\/YUI_UL>/g,"</ul>");G=this.filter_invalid_lists(G);G=G.replace(/<YUI_BQ([^>]*)>/g,"<blockquote$1>");G=G.replace(/<\/YUI_BQ>/g,"</blockquote>");G=G.replace(/<YUI_EMBED([^>]*)>/g,"<embed$1>");G=G.replace(/<\/YUI_EMBED>/g,"</embed>");G=G.replace(" &amp; ","YUI_AMP");G=G.replace("&amp;","&");G=G.replace("YUI_AMP","&amp;");G=YAHOO.lang.trim(G);if(this.get("removeLineBreaks")){G=G.replace(/\n/g,"").replace(/\r/g,"");G=G.replace(/  /gi," ");}if(G.substring(0,6).toLowerCase()=="<span>"){G=G.substring(6);if(G.substring(G.length-7,G.length).toLowerCase()=="</span>"){G=G.substring(0,G.length-7);}}for(var E in this.invalidHTML){if(YAHOO.lang.hasOwnProperty(this.invalidHTML,E)){if(D.isObject(E)&&E.keepContents){G=G.replace(new RegExp("<"+E+"([^>]*)>(.*?)</"+E+">","gi"),"$1");}else{G=G.replace(new RegExp("<"+E+"([^>]*)>(.*?)</"+E+">","gi"),"");}}}this.fireEvent("cleanHTML",{type:"cleanHTML",target:this,html:G});return G;},filter_invalid_lists:function(E){E=E.replace(/<\/li>\n/gi,"</li>");E=E.replace(/<\/li><ol>/gi,"</li><li><ol>");E=E.replace(/<\/ol>/gi,"</ol></li>");E=E.replace(/<\/ol><\/li>\n/gi,"</ol>\n");E=E.replace(/<\/li><ul>/gi,"</li><li><ul>");E=E.replace(/<\/ul>/gi,"</ul></li>");E=E.replace(/<\/ul><\/li>\n?/gi,"</ul>\n");E=E.replace(/<\/li>/gi,"</li>\n");E=E.replace(/<\/ol>/gi,"</ol>\n");E=E.replace(/<ol>/gi,"<ol>\n");E=E.replace(/<ul>/gi,"<ul>\n");return E;},filter_safari:function(E){if(this.browser.webkit){E=E.replace(/<span class="Apple-tab-span" style="white-space:pre">([^>])<\/span>/gi,"&nbsp;&nbsp;&nbsp;&nbsp;");E=E.replace(/Apple-style-span/gi,"");E=E.replace(/style="line-height: normal;"/gi,"");E=E.replace(/<li><\/li>/gi,"");E=E.replace(/<li> <\/li>/gi,"");E=E.replace(/<li>  <\/li>/gi,"");if(this.get("ptags")){E=E.replace(/<div([^>]*)>/g,"<p$1>");E=E.replace(/<\/div>/gi,"</p>");}else{E=E.replace(/<div>/gi,"");E=E.replace(/<\/div>/gi,"<br>");}}return E;},filter_internals:function(E){E=E.replace(/\r/g,"");E=E.replace(/<\/?(body|head|html)[^>]*>/gi,"");E=E.replace(/<YUI_BR><\/li>/gi,"</li>");E=E.replace(/yui-tag-span/gi,"");E=E.replace(/yui-tag/gi,"");E=E.replace(/yui-non/gi,"");E=E.replace(/yui-img/gi,"");E=E.replace(/ tag="span"/gi,"");E=E.replace(/ class=""/gi,"");E=E.replace(/ style=""/gi,"");E=E.replace(/ class=" "/gi,"");E=E.replace(/ class="  "/gi,"");E=E.replace(/ target=""/gi,"");E=E.replace(/ title=""/gi,"");if(this.browser.ie){E=E.replace(/ class= /gi,"");E=E.replace(/ class= >/gi,"");E=E.replace(/_height="([^>])"/gi,"");E=E.replace(/_width="([^>])"/gi,"");}return E;},filter_all_rgb:function(I){var H=new RegExp("rgb\\s*?\\(\\s*?([0-9]+).*?,\\s*?([0-9]+).*?,\\s*?([0-9]+).*?\\)","gi");var E=I.match(H);if(D.isArray(E)){for(var G=0;G<E.length;G++){var F=this.filter_rgb(E[G]);I=I.replace(E[G].toString(),F);}}return I;},filter_rgb:function(G){if(G.toLowerCase().indexOf("rgb")!=-1){var J=new RegExp("(.*?)rgb\\s*?\\(\\s*?([0-9]+).*?,\\s*?([0-9]+).*?,\\s*?([0-9]+).*?\\)(.*?)","gi");var F=G.replace(J,"$1,$2,$3,$4,$5").split(",");if(F.length==5){var I=parseInt(F[1],10).toString(16);var H=parseInt(F[2],10).toString(16);var E=parseInt(F[3],10).toString(16);I=I.length==1?"0"+I:I;H=H.length==1?"0"+H:H;E=E.length==1?"0"+E:E;G="#"+I+H+E;}}return G;},pre_filter_linebreaks:function(F,E){if(this.browser.webkit){F=F.replace(/<br class="khtml-block-placeholder">/gi,"<YUI_BR>");F=F.replace(/<br class="webkit-block-placeholder">/gi,"<YUI_BR>");}F=F.replace(/<br>/gi,"<YUI_BR>");F=F.replace(/<br (.*?)>/gi,"<YUI_BR>");F=F.replace(/<br\/>/gi,"<YUI_BR>");F=F.replace(/<br \/>/gi,"<YUI_BR>");F=F.replace(/<div><YUI_BR><\/div>/gi,"<YUI_BR>");F=F.replace(/<p>(&nbsp;|&#160;)<\/p>/g,"<YUI_BR>");F=F.replace(/<p><br>&nbsp;<\/p>/gi,"<YUI_BR>");F=F.replace(/<p>&nbsp;<\/p>/gi,"<YUI_BR>");F=F.replace(/<YUI_BR>$/,"");F=F.replace(/<YUI_BR><\/p>/g,"</p>");if(this.browser.ie){F=F.replace(/&nbsp;&nbsp;&nbsp;&nbsp;/g,"\t");}return F;},post_filter_linebreaks:function(F,E){if(E=="xhtml"){F=F.replace(/<YUI_BR>/g,"<br />");}else{F=F.replace(/<YUI_BR>/g,"<br>");}return F;},clearEditorDoc:function(){this._getDoc().body.innerHTML="&nbsp;";},openWindow:function(E){},moveWindow:function(){},_closeWindow:function(){},closeWindow:function(){this.toolbar.resetAllButtons();this._focusWindow();},destroy:function(){if(this.resize){this.resize.destroy();}if(this.dd){this.dd.unreg();}if(this.get("panel")){this.get("panel").destroy();}this.saveHTML();this.toolbar.destroy();this.setStyle("visibility","visible");this.setStyle("position","static");this.setStyle("top","");this.setStyle("left","");var E=this.get("element");this.get("element_cont").get("parentNode").replaceChild(E,this.get("element_cont").get("element"));this.get("element_cont").get("element").innerHTML="";this.set("handleSubmit",false);return true;},toString:function(){var E="SimpleEditor";if(this.get&&this.get("element_cont")){E="SimpleEditor (#"+this.get("element_cont").get("id")+")"+((this.get("disabled")?" Disabled":""));}return E;}});YAHOO.widget.EditorInfo={_instances:{},blankImage:"",window:{},panel:null,getEditorById:function(E){if(!YAHOO.lang.isString(E)){E=E.id;}if(this._instances[E]){return this._instances[E];}return false;},toString:function(){var E=0;for(var F in this._instances){if(D.hasOwnProperty(this._instances,F)){E++;}}return"Editor Info ("+E+" registered intance"+((E>1)?"s":"")+")";
-}};})();(function(){var C=YAHOO.util.Dom,A=YAHOO.util.Event,D=YAHOO.lang,B=YAHOO.widget.Toolbar;YAHOO.widget.Editor=function(F,E){YAHOO.widget.Editor.superclass.constructor.call(this,F,E);};YAHOO.extend(YAHOO.widget.Editor,YAHOO.widget.SimpleEditor,{_undoCache:null,_undoLevel:null,_hasUndoLevel:function(){return(this._undoCache.length&&this._undoLevel);},_undoNodeChange:function(){var E=this.toolbar.getButtonByValue("undo"),F=this.toolbar.getButtonByValue("redo");if(E&&F){if(this._hasUndoLevel()){this.toolbar.enableButton(E);}if(this._undoLevel<this._undoCache.length){this.toolbar.enableButton(F);}}},_checkUndo:function(){var E=this._undoCache.length,G=[];if(E>=this.get("maxUndo")){for(var F=(E-this.get("maxUndo"));F<E;F++){G.push(this._undoCache[F]);}this._undoCache=G;}},_putUndo:function(E){this._undoCache.push(E);},_getUndo:function(E){return this._undoCache[E];},_storeUndo:function(){if(this._lastCommand==="undo"||this._lastCommand==="redo"){return false;}if(!this._undoCache){this._undoCache=[];}this._checkUndo();var F=this.getEditorHTML();var E=this._undoCache[this._undoCache.length-1];if(E){if(F!==E){this._putUndo(F);}}else{this._putUndo(F);}this._undoLevel=this._undoCache.length;this._undoNodeChange();},STR_BEFORE_EDITOR:"This text field can contain stylized text and graphics. To cycle through all formatting options, use the keyboard shortcut Control + Shift + T to place focus on the toolbar and navigate between option heading names. <h4>Common formatting keyboard shortcuts:</h4><ul><li>Control Shift B sets text to bold</li> <li>Control Shift I sets text to italic</li> <li>Control Shift U underlines text</li> <li>Control Shift [ aligns text left</li> <li>Control Shift | centers text</li> <li>Control Shift ] aligns text right</li> <li>Control Shift L adds an HTML link</li> <li>To exit this text editor use the keyboard shortcut Control + Shift + ESC.</li></ul>",STR_CLOSE_WINDOW:"Close Window",STR_CLOSE_WINDOW_NOTE:"To close this window use the Control + Shift + W key",STR_IMAGE_PROP_TITLE:"Image Options",STR_IMAGE_URL:"Image URL",STR_IMAGE_TITLE:"Description",STR_IMAGE_SIZE:"Size",STR_IMAGE_ORIG_SIZE:"Original Size",STR_IMAGE_COPY:'<span class="tip"><span class="icon icon-info"></span><strong>Note:</strong>To move this image just highlight it, cut, and paste where ever you\'d like.</span>',STR_IMAGE_PADDING:"Padding",STR_IMAGE_BORDER:"Border",STR_IMAGE_BORDER_SIZE:"Border Size",STR_IMAGE_BORDER_TYPE:"Border Type",STR_IMAGE_TEXTFLOW:"Text Flow",STR_LOCAL_FILE_WARNING:'<span class="tip"><span class="icon icon-warn"></span><strong>Note:</strong>This image/link points to a file on your computer and will not be accessible to others on the internet.</span>',STR_LINK_PROP_TITLE:"Link Options",STR_LINK_PROP_REMOVE:"Remove link from text",STR_LINK_NEW_WINDOW:"Open in a new window.",STR_LINK_TITLE:"Description",CLASS_LOCAL_FILE:"warning-localfile",CLASS_HIDDEN:"yui-hidden",init:function(F,E){this._windows={};this._defaultToolbar={collapse:true,titlebar:"Text Editing Tools",draggable:false,buttonType:"advanced",buttons:[{group:"fontstyle",label:"Font Name and Size",buttons:[{type:"select",label:"Arial",value:"fontname",disabled:true,menu:[{text:"Arial",checked:true},{text:"Arial Black"},{text:"Comic Sans MS"},{text:"Courier New"},{text:"Lucida Console"},{text:"Tahoma"},{text:"Times New Roman"},{text:"Trebuchet MS"},{text:"Verdana"}]},{type:"spin",label:"13",value:"fontsize",range:[9,75],disabled:true}]},{type:"separator"},{group:"textstyle",label:"Font Style",buttons:[{type:"push",label:"Bold CTRL + SHIFT + B",value:"bold"},{type:"push",label:"Italic CTRL + SHIFT + I",value:"italic"},{type:"push",label:"Underline CTRL + SHIFT + U",value:"underline"},{type:"separator"},{type:"push",label:"Subscript",value:"subscript",disabled:true},{type:"push",label:"Superscript",value:"superscript",disabled:true}]},{type:"separator"},{group:"textstyle2",label:"&nbsp;",buttons:[{type:"color",label:"Font Color",value:"forecolor",disabled:true},{type:"color",label:"Background Color",value:"backcolor",disabled:true},{type:"separator"},{type:"push",label:"Remove Formatting",value:"removeformat",disabled:true},{type:"push",label:"Show/Hide Hidden Elements",value:"hiddenelements"}]},{type:"separator"},{group:"undoredo",label:"Undo/Redo",buttons:[{type:"push",label:"Undo",value:"undo",disabled:true},{type:"push",label:"Redo",value:"redo",disabled:true}]},{type:"separator"},{group:"alignment",label:"Alignment",buttons:[{type:"push",label:"Align Left CTRL + SHIFT + [",value:"justifyleft"},{type:"push",label:"Align Center CTRL + SHIFT + |",value:"justifycenter"},{type:"push",label:"Align Right CTRL + SHIFT + ]",value:"justifyright"},{type:"push",label:"Justify",value:"justifyfull"}]},{type:"separator"},{group:"parastyle",label:"Paragraph Style",buttons:[{type:"select",label:"Normal",value:"heading",disabled:true,menu:[{text:"Normal",value:"none",checked:true},{text:"Header 1",value:"h1"},{text:"Header 2",value:"h2"},{text:"Header 3",value:"h3"},{text:"Header 4",value:"h4"},{text:"Header 5",value:"h5"},{text:"Header 6",value:"h6"}]}]},{type:"separator"},{group:"indentlist2",label:"Indenting and Lists",buttons:[{type:"push",label:"Indent",value:"indent",disabled:true},{type:"push",label:"Outdent",value:"outdent",disabled:true},{type:"push",label:"Create an Unordered List",value:"insertunorderedlist"},{type:"push",label:"Create an Ordered List",value:"insertorderedlist"}]},{type:"separator"},{group:"insertitem",label:"Insert Item",buttons:[{type:"push",label:"HTML Link CTRL + SHIFT + L",value:"createlink",disabled:true},{type:"push",label:"Insert Image",value:"insertimage"}]}]};this._defaultImageToolbarConfig={buttonType:this._defaultToolbar.buttonType,buttons:[{group:"textflow",label:this.STR_IMAGE_TEXTFLOW+":",buttons:[{type:"push",label:"Left",value:"left"},{type:"push",label:"Inline",value:"inline"},{type:"push",label:"Block",value:"block"},{type:"push",label:"Right",value:"right"}]},{type:"separator"},{group:"padding",label:this.STR_IMAGE_PADDING+":",buttons:[{type:"spin",label:"0",value:"padding",range:[0,50]}]},{type:"separator"},{group:"border",label:this.STR_IMAGE_BORDER+":",buttons:[{type:"select",label:this.STR_IMAGE_BORDER_SIZE,value:"bordersize",menu:[{text:"none",value:"0",checked:true},{text:"1px",value:"1"},{text:"2px",value:"2"},{text:"3px",value:"3"},{text:"4px",value:"4"},{text:"5px",value:"5"}]},{type:"select",label:this.STR_IMAGE_BORDER_TYPE,value:"bordertype",disabled:true,menu:[{text:"Solid",value:"solid",checked:true},{text:"Dashed",value:"dashed"},{text:"Dotted",value:"dotted"}]},{type:"color",label:"Border Color",value:"bordercolor",disabled:true}]}]};
-YAHOO.widget.Editor.superclass.init.call(this,F,E);},_render:function(){YAHOO.widget.Editor.superclass._render.apply(this,arguments);var E=this;window.setTimeout(function(){E._renderPanel.call(E);},800);},initAttributes:function(E){YAHOO.widget.Editor.superclass.initAttributes.call(this,E);this.setAttributeConfig("localFileWarning",{value:E.locaFileWarning||true});this.setAttributeConfig("hiddencss",{value:E.hiddencss||".yui-hidden font, .yui-hidden strong, .yui-hidden b, .yui-hidden em, .yui-hidden i, .yui-hidden u, .yui-hidden div,.yui-hidden p,.yui-hidden span,.yui-hidden img, .yui-hidden ul, .yui-hidden ol, .yui-hidden li, .yui-hidden table { border: 1px dotted #ccc; } .yui-hidden .yui-non { border: none; } .yui-hidden img { padding: 2px; }",writeOnce:true});},_windows:null,_defaultImageToolbar:null,_defaultImageToolbarConfig:null,_fixNodes:function(){YAHOO.widget.Editor.superclass._fixNodes.call(this);var H="";var I=this._getDoc().getElementsByTagName("img");for(var F=0;F<I.length;F++){if(I[F].getAttribute("href",2)){H=I[F].getAttribute("src",2);if(this._isLocalFile(H)){C.addClass(I[F],this.CLASS_LOCAL_FILE);}else{C.removeClass(I[F],this.CLASS_LOCAL_FILE);}}}var G=this._getDoc().body.getElementsByTagName("a");for(var E=0;E<G.length;E++){if(G[E].getAttribute("href",2)){H=G[E].getAttribute("href",2);if(this._isLocalFile(H)){C.addClass(G[E],this.CLASS_LOCAL_FILE);}else{C.removeClass(G[E],this.CLASS_LOCAL_FILE);}}}},_disabled:["createlink","forecolor","backcolor","fontname","fontsize","superscript","subscript","removeformat","heading","indent"],_alwaysDisabled:{"outdent":true},_alwaysEnabled:{hiddenelements:true},_handleKeyDown:function(G){YAHOO.widget.Editor.superclass._handleKeyDown.call(this,G);var F=false,H=null,E=false;switch(G.keyCode){case this._keyMap.JUSTIFY_LEFT.key:if(this._checkKey(this._keyMap.JUSTIFY_LEFT,G)){H="justifyleft";F=true;}break;case this._keyMap.JUSTIFY_CENTER.key:if(this._checkKey(this._keyMap.JUSTIFY_CENTER,G)){H="justifycenter";F=true;}break;case 221:case this._keyMap.JUSTIFY_RIGHT.key:if(this._checkKey(this._keyMap.JUSTIFY_RIGHT,G)){H="justifyright";F=true;}break;}if(F&&H){this.execCommand(H,null);A.stopEvent(G);this.nodeChange();}},_renderCreateLinkWindow:function(){var H='<label for="'+this.get("id")+'_createlink_url"><strong>'+this.STR_LINK_URL+':</strong> <input type="text" name="'+this.get("id")+'_createlink_url" id="'+this.get("id")+'_createlink_url" value=""></label>';H+='<label for="'+this.get("id")+'_createlink_target"><strong>&nbsp;</strong><input type="checkbox" name="'+this.get("id")+'_createlink_target" id="'+this.get("id")+'_createlink_target" value="_blank" class="createlink_target"> '+this.STR_LINK_NEW_WINDOW+"</label>";H+='<label for="'+this.get("id")+'_createlink_title"><strong>'+this.STR_LINK_TITLE+':</strong> <input type="text" name="'+this.get("id")+'_createlink_title" id="'+this.get("id")+'_createlink_title" value=""></label>';var E=document.createElement("div");E.innerHTML=H;var G=document.createElement("div");G.className="removeLink";var F=document.createElement("a");F.href="#";F.innerHTML=this.STR_LINK_PROP_REMOVE;F.title=this.STR_LINK_PROP_REMOVE;A.on(F,"click",function(I){A.stopEvent(I);this.execCommand("unlink");this.closeWindow();},this,true);G.appendChild(F);E.appendChild(G);this._windows.createlink={};this._windows.createlink.body=E;E.style.display="none";this.get("panel").editor_form.appendChild(E);this.fireEvent("windowCreateLinkRender",{type:"windowCreateLinkRender",panel:this.get("panel"),body:E});return E;},_handleCreateLinkClick:function(){var E=this._getSelectedElement();if(this._isElement(E,"img")){this.STOP_EXEC_COMMAND=true;this.currentElement[0]=E;this.toolbar.fireEvent("insertimageClick",{type:"insertimageClick",target:this.toolbar});this.fireEvent("afterExecCommand",{type:"afterExecCommand",target:this});return false;}if(this.get("limitCommands")){if(!this.toolbar.getButtonByValue("createlink")){return false;}}this.on("afterExecCommand",function(){var K=new YAHOO.widget.EditorWindow("createlink",{width:"350px"});var I=this.currentElement[0],H="",L="",J="",G=false;if(I){K.el=I;if(I.getAttribute("href",2)!==null){H=I.getAttribute("href",2);if(this._isLocalFile(H)){K.setFooter(this.STR_LOCAL_FILE_WARNING);G=true;}else{K.setFooter(" ");}}if(I.getAttribute("title")!==null){L=I.getAttribute("title");}if(I.getAttribute("target")!==null){J=I.getAttribute("target");}}var F=null;if(this._windows.createlink&&this._windows.createlink.body){F=this._windows.createlink.body;}else{F=this._renderCreateLinkWindow();}K.setHeader(this.STR_LINK_PROP_TITLE);K.setBody(F);A.purgeElement(this.get("id")+"_createlink_url");C.get(this.get("id")+"_createlink_url").value=H;C.get(this.get("id")+"_createlink_title").value=L;C.get(this.get("id")+"_createlink_target").checked=((J)?true:false);A.onAvailable(this.get("id")+"_createlink_url",function(){var M=this.get("id");window.setTimeout(function(){try{YAHOO.util.Dom.get(M+"_createlink_url").focus();}catch(N){}},50);if(this._isLocalFile(H)){C.addClass(this.get("id")+"_createlink_url","warning");this.get("panel").setFooter(this.STR_LOCAL_FILE_WARNING);}else{C.removeClass(this.get("id")+"_createlink_url","warning");this.get("panel").setFooter(" ");}A.on(this.get("id")+"_createlink_url","blur",function(){var N=C.get(this.get("id")+"_createlink_url");if(this._isLocalFile(N.value)){C.addClass(N,"warning");this.get("panel").setFooter(this.STR_LOCAL_FILE_WARNING);}else{C.removeClass(N,"warning");this.get("panel").setFooter(" ");}},this,true);},this,true);this.openWindow(K);});},_handleCreateLinkWindowClose:function(){var G=C.get(this.get("id")+"_createlink_url"),I=C.get(this.get("id")+"_createlink_target"),K=C.get(this.get("id")+"_createlink_title"),H=arguments[0].win.el,E=H;if(G&&G.value){var J=G.value;if((J.indexOf(":/"+"/")==-1)&&(J.substring(0,1)!="/")&&(J.substring(0,6).toLowerCase()!="mailto")){if((J.indexOf("@")!=-1)&&(J.substring(0,6).toLowerCase()!="mailto")){J="mailto:"+J;}else{if(J.substring(0,1)!="#"){J="http:/"+"/"+J;
-}}}H.setAttribute("href",J);if(I.checked){H.setAttribute("target",I.value);}else{H.setAttribute("target","");}H.setAttribute("title",((K.value)?K.value:""));}else{var F=this._getDoc().createElement("span");F.innerHTML=H.innerHTML;C.addClass(F,"yui-non");H.parentNode.replaceChild(F,H);}C.removeClass(G,"warning");C.get(this.get("id")+"_createlink_url").value="";C.get(this.get("id")+"_createlink_title").value="";C.get(this.get("id")+"_createlink_target").checked=false;this.nodeChange();this.currentElement=[];},_renderInsertImageWindow:function(){var G=this.currentElement[0];var M='<label for="'+this.get("id")+'_insertimage_url"><strong>'+this.STR_IMAGE_URL+':</strong> <input type="text" id="'+this.get("id")+'_insertimage_url" value="" size="40"></label>';var K=document.createElement("div");K.innerHTML=M;var J=document.createElement("div");J.id=this.get("id")+"_img_toolbar";K.appendChild(J);var I='<label for="'+this.get("id")+'_insertimage_title"><strong>'+this.STR_IMAGE_TITLE+':</strong> <input type="text" id="'+this.get("id")+'_insertimage_title" value="" size="40"></label>';I+='<label for="'+this.get("id")+'_insertimage_link"><strong>'+this.STR_LINK_URL+':</strong> <input type="text" name="'+this.get("id")+'_insertimage_link" id="'+this.get("id")+'_insertimage_link" value=""></label>';I+='<label for="'+this.get("id")+'_insertimage_target"><strong>&nbsp;</strong><input type="checkbox" name="'+this.get("id")+'_insertimage_target_" id="'+this.get("id")+'_insertimage_target" value="_blank" class="insertimage_target"> '+this.STR_LINK_NEW_WINDOW+"</label>";var E=document.createElement("div");E.innerHTML=I;K.appendChild(E);var F={};D.augmentObject(F,this._defaultImageToolbarConfig);var H=new YAHOO.widget.Toolbar(J,F);H.editor_el=G;this._defaultImageToolbar=H;var N=H.get("cont");var L=document.createElement("div");L.className="yui-toolbar-group yui-toolbar-group-height-width height-width";L.innerHTML="<h3>"+this.STR_IMAGE_SIZE+":</h3>";L.innerHTML+='<span tabIndex="-1"><input type="text" size="3" value="" id="'+this.get("id")+'_insertimage_width"> x <input type="text" size="3" value="" id="'+this.get("id")+'_insertimage_height"></span>';N.insertBefore(L,N.firstChild);A.onAvailable(this.get("id")+"_insertimage_width",function(){A.on(this.get("id")+"_insertimage_width","blur",function(){var O=parseInt(C.get(this.get("id")+"_insertimage_width").value,10);if(O>5){this._defaultImageToolbar.editor_el.style.width=O+"px";}},this,true);},this,true);A.onAvailable(this.get("id")+"_insertimage_height",function(){A.on(this.get("id")+"_insertimage_height","blur",function(){var O=parseInt(C.get(this.get("id")+"_insertimage_height").value,10);if(O>5){this._defaultImageToolbar.editor_el.style.height=O+"px";}},this,true);},this,true);H.on("colorPickerClicked",function(T){var P="1",S="solid",O="black",R=this._defaultImageToolbar.editor_el;if(R.style.borderLeftWidth){P=parseInt(R.style.borderLeftWidth,10);}if(R.style.borderLeftStyle){S=R.style.borderLeftStyle;}if(R.style.borderLeftColor){O=R.style.borderLeftColor;}var Q=P+"px "+S+" #"+T.color;R.style.border=Q;},this,true);H.on("buttonClick",function(V){var T=V.button.value,S=this._defaultImageToolbar.editor_el,R="";if(V.button.menucmd){T=V.button.menucmd;}var P="1",Q="solid",O="black";if(S.style.borderLeftWidth){P=parseInt(S.style.borderLeftWidth,10);}if(S.style.borderLeftStyle){Q=S.style.borderLeftStyle;}if(S.style.borderLeftColor){O=S.style.borderLeftColor;}switch(T){case"bordersize":if(this.browser.webkit&&this._lastImage){C.removeClass(this._lastImage,"selected");this._lastImage=null;}R=parseInt(V.button.value,10)+"px "+Q+" "+O;S.style.border=R;if(parseInt(V.button.value,10)>0){H.enableButton("bordertype");H.enableButton("bordercolor");}else{H.disableButton("bordertype");H.disableButton("bordercolor");}break;case"bordertype":if(this.browser.webkit&&this._lastImage){C.removeClass(this._lastImage,"selected");this._lastImage=null;}R=P+"px "+V.button.value+" "+O;S.style.border=R;break;case"right":case"left":H.deselectAllButtons();S.style.display="";S.align=V.button.value;break;case"inline":H.deselectAllButtons();S.style.display="";S.align="";break;case"block":H.deselectAllButtons();S.style.display="block";S.align="center";break;case"padding":var U=H.getButtonById(V.button.id);S.style.margin=U.get("label")+"px";break;}H.selectButton(V.button.value);if(T!=="padding"){this.moveWindow();}},this,true);if(this.get("localFileWarning")){A.on(this.get("id")+"_insertimage_link","blur",function(){var O=C.get(this.get("id")+"_insertimage_link");if(this._isLocalFile(O.value)){C.addClass(O,"warning");this.get("panel").setFooter(this.STR_LOCAL_FILE_WARNING);}else{C.removeClass(O,"warning");this.get("panel").setFooter(" ");if((this.browser.webkit&&!this.browser.webkit3||this.browser.air)||this.browser.opera){this.get("panel").setFooter(this.STR_IMAGE_COPY);}}},this,true);}A.on(this.get("id")+"_insertimage_url","blur",function(){var Q=C.get(this.get("id")+"_insertimage_url");if(Q.value&&G){if(Q.value==G.getAttribute("src",2)){return false;}}if(this._isLocalFile(Q.value)){C.addClass(Q,"warning");this.get("panel").setFooter(this.STR_LOCAL_FILE_WARNING);}else{if(this.currentElement[0]){C.removeClass(Q,"warning");this.get("panel").setFooter(" ");if((this.browser.webkit&&!this.browser.webkit3||this.browser.air)||this.browser.opera){this.get("panel").setFooter(this.STR_IMAGE_COPY);}if(Q&&Q.value&&(Q.value!=this.STR_IMAGE_HERE)){this.currentElement[0].setAttribute("src",Q.value);var P=this,O=new Image();O.onerror=function(){Q.value=P.STR_IMAGE_HERE;O.setAttribute("src",P.get("blankimage"));P.currentElement[0].setAttribute("src",P.get("blankimage"));YAHOO.util.Dom.get(P.get("id")+"_insertimage_height").value=O.height;YAHOO.util.Dom.get(P.get("id")+"_insertimage_width").value=O.width;};var R=this.get("id");window.setTimeout(function(){YAHOO.util.Dom.get(R+"_insertimage_height").value=O.height;YAHOO.util.Dom.get(R+"_insertimage_width").value=O.width;if(P.currentElement&&P.currentElement[0]){if(!P.currentElement[0]._height){P.currentElement[0]._height=O.height;
-}if(!P.currentElement[0]._width){P.currentElement[0]._width=O.width;}}},800);if(Q.value!=this.STR_IMAGE_HERE){O.src=Q.value;}}}}},this,true);this._windows.insertimage={};this._windows.insertimage.body=K;K.style.display="none";this.get("panel").editor_form.appendChild(K);this.fireEvent("windowInsertImageRender",{type:"windowInsertImageRender",panel:this.get("panel"),body:K,toolbar:H});return K;},_handleInsertImageClick:function(){if(this.get("limitCommands")){if(!this.toolbar.getButtonByValue("insertimage")){return false;}}this.on("afterExecCommand",function(){var H=this.currentElement[0],P=null,M="",a="",G=null,b="",L="",Y="",S=75,W=75,R=0,N=0,K=0,T=false,J=new YAHOO.widget.EditorWindow("insertimage",{width:"415px"});if(!H){H=this._getSelectedElement();}if(H){J.el=H;if(H.getAttribute("src")){L=H.getAttribute("src",2);if(L.indexOf(this.get("blankimage"))!=-1){L=this.STR_IMAGE_HERE;T=true;}}if(H.getAttribute("alt",2)){b=H.getAttribute("alt",2);}if(H.getAttribute("title",2)){b=H.getAttribute("title",2);}if(H.parentNode&&this._isElement(H.parentNode,"a")){M=H.parentNode.getAttribute("href",2);if(H.parentNode.getAttribute("target")!==null){a=H.parentNode.getAttribute("target");}}S=parseInt(H.height,10);W=parseInt(H.width,10);if(H.style.height){S=parseInt(H.style.height,10);}if(H.style.width){W=parseInt(H.style.width,10);}if(H.style.margin){R=parseInt(H.style.margin,10);}if(!H._height){H._height=S;}if(!H._width){H._width=W;}N=H._height;K=H._width;}if(this._windows.insertimage&&this._windows.insertimage.body){P=this._windows.insertimage.body;this._defaultImageToolbar.resetAllButtons();}else{P=this._renderInsertImageWindow();}G=this._defaultImageToolbar;G.editor_el=H;var F="0";var V="solid";if(H.style.borderLeftWidth){F=parseInt(H.style.borderLeftWidth,10);}if(H.style.borderLeftStyle){V=H.style.borderLeftStyle;}var Z=G.getButtonByValue("bordersize");var X=((parseInt(F,10)>0)?"":"none");Z.set("label",'<span class="yui-toolbar-bordersize-'+F+'">'+X+"</span>");this._updateMenuChecked("bordersize",F,G);var O=G.getButtonByValue("bordertype");O.set("label",'<span class="yui-toolbar-bordertype-'+V+'"></span>');this._updateMenuChecked("bordertype",V,G);if(parseInt(F,10)>0){G.enableButton(O);G.enableButton(Z);G.enableButton("bordercolor");}if((H.align=="right")||(H.align=="left")){G.selectButton(H.align);}else{if(H.style.display=="block"){G.selectButton("block");}else{G.selectButton("inline");}}if(parseInt(H.style.marginLeft,10)>0){G.getButtonByValue("padding").set("label",""+parseInt(H.style.marginLeft,10));}if(H.style.borderSize){G.selectButton("bordersize");G.selectButton(parseInt(H.style.borderSize,10));}G.getButtonByValue("padding").set("label",""+R);J.setHeader(this.STR_IMAGE_PROP_TITLE);J.setBody(P);if((this.browser.webkit&&!this.browser.webkit3||this.browser.air)||this.browser.opera){J.setFooter(this.STR_IMAGE_COPY);}this.openWindow(J);C.get(this.get("id")+"_insertimage_url").value=L;C.get(this.get("id")+"_insertimage_title").value=b;C.get(this.get("id")+"_insertimage_link").value=M;C.get(this.get("id")+"_insertimage_target").checked=((a)?true:false);C.get(this.get("id")+"_insertimage_width").value=W;C.get(this.get("id")+"_insertimage_height").value=S;var I="";if((S!=N)||(W!=K)){var Q=document.createElement("span");Q.className="info";Q.innerHTML=this.STR_IMAGE_ORIG_SIZE+": ("+K+" x "+N+")";if(C.get(this.get("id")+"_insertimage_height").nextSibling){var E=C.get(this.get("id")+"_insertimage_height").nextSibling;E.parentNode.removeChild(E);}C.get(this.get("id")+"_insertimage_height").parentNode.appendChild(Q);}this.toolbar.selectButton("insertimage");var U=this.get("id");window.setTimeout(function(){try{YAHOO.util.Dom.get(U+"_insertimage_url").focus();if(T){YAHOO.util.Dom.get(U+"_insertimage_url").select();}}catch(c){}},50);});},_handleInsertImageWindowClose:function(){var E=C.get(this.get("id")+"_insertimage_url"),L=C.get(this.get("id")+"_insertimage_title"),I=C.get(this.get("id")+"_insertimage_link"),J=C.get(this.get("id")+"_insertimage_target"),H=arguments[0].win.el;if(E&&E.value&&(E.value!=this.STR_IMAGE_HERE)){H.setAttribute("src",E.value);H.setAttribute("title",L.value);H.setAttribute("alt",L.value);var G=H.parentNode;if(I.value){var K=I.value;if((K.indexOf(":/"+"/")==-1)&&(K.substring(0,1)!="/")&&(K.substring(0,6).toLowerCase()!="mailto")){if((K.indexOf("@")!=-1)&&(K.substring(0,6).toLowerCase()!="mailto")){K="mailto:"+K;}else{K="http:/"+"/"+K;}}if(G&&this._isElement(G,"a")){G.setAttribute("href",K);if(J.checked){G.setAttribute("target",J.value);}else{G.setAttribute("target","");}}else{var F=this._getDoc().createElement("a");F.setAttribute("href",K);if(J.checked){F.setAttribute("target",J.value);}else{F.setAttribute("target","");}H.parentNode.replaceChild(F,H);F.appendChild(H);}}else{if(G&&this._isElement(G,"a")){G.parentNode.replaceChild(H,G);}}}else{H.parentNode.removeChild(H);}C.get(this.get("id")+"_insertimage_url").value="";C.get(this.get("id")+"_insertimage_title").value="";C.get(this.get("id")+"_insertimage_link").value="";C.get(this.get("id")+"_insertimage_target").checked=false;C.get(this.get("id")+"_insertimage_width").value=0;C.get(this.get("id")+"_insertimage_height").value=0;this._defaultImageToolbar.resetAllButtons();this.currentElement=[];this.nodeChange();},EDITOR_PANEL_ID:"-panel",_renderPanel:function(){var E=new YAHOO.widget.Overlay(this.get("id")+this.EDITOR_PANEL_ID,{width:"300px",iframe:true,visible:false,underlay:"none",draggable:false,close:false});this.set("panel",E);this.get("panel").setBody("---");this.get("panel").setHeader(" ");this.get("panel").setFooter(" ");var J=document.createElement("div");J.className=this.CLASS_PREFIX+"-body-cont";for(var K in this.browser){if(this.browser[K]){C.addClass(J,K);break;}}C.addClass(J,((YAHOO.widget.Button&&(this._defaultToolbar.buttonType=="advanced"))?"good-button":"no-button"));var H=document.createElement("h3");H.className="yui-editor-skipheader";H.innerHTML=this.STR_CLOSE_WINDOW_NOTE;J.appendChild(H);var F=document.createElement("form");
-F.setAttribute("method","GET");E.editor_form=F;A.on(F,"submit",function(N){A.stopEvent(N);},this,true);J.appendChild(F);var G=document.createElement("span");G.innerHTML="X";G.title=this.STR_CLOSE_WINDOW;G.className="close";A.on(G,"click",this.closeWindow,this,true);var L=document.createElement("span");L.innerHTML="^";L.className="knob";E.editor_knob=L;var M=document.createElement("h3");E.editor_header=M;M.innerHTML="<span></span>";E.setHeader(" ");E.appendToHeader(M);M.appendChild(G);M.appendChild(L);E.setBody(" ");E.setFooter(" ");E.appendToBody(J);A.on(E.element,"click",function(N){A.stopPropagation(N);});var I=function(){};E.showEvent.subscribe(I,this,true);E.renderEvent.subscribe(function(){this._renderInsertImageWindow();this._renderCreateLinkWindow();this.fireEvent("windowRender",{type:"windowRender",panel:E});},this,true);if(this.DOMReady){this.get("panel").render(document.body);C.addClass(this.get("panel").element,"yui-editor-panel");}else{A.onDOMReady(function(){this.get("panel").render(document.body);C.addClass(this.get("panel").element,"yui-editor-panel");},this,true);}this.get("panel").showEvent.subscribe(function(){YAHOO.util.Dom.setStyle(this.element,"display","block");});return this.get("panel");},openWindow:function(K){var P=this;window.setTimeout(function(){P.toolbar.set("disabled",true);},10);A.on(document,"keydown",this._closeWindow,this,true);if(this.currentWindow){this.closeWindow();}var Q=C.getXY(this.currentElement[0]),N=C.getXY(this.get("iframe").get("element")),E=this.get("panel"),H=[(Q[0]+N[0]-20),(Q[1]+N[1]+10)],G=(parseInt(K.attrs.width,10)/2),L="center",J=null;this.fireEvent("beforeOpenWindow",{type:"beforeOpenWindow",win:K,panel:E});var F=E.editor_form;var I=this._windows;for(var O in I){if(D.hasOwnProperty(I,O)){if(I[O]&&I[O].body){if(O==K.name){C.setStyle(I[O].body,"display","block");}else{C.setStyle(I[O].body,"display","none");}}}}if(this._windows[K.name].body){C.setStyle(this._windows[K.name].body,"display","block");F.appendChild(this._windows[K.name].body);}else{if(D.isObject(K.body)){F.appendChild(K.body);}else{var M=document.createElement("div");M.innerHTML=K.body;F.appendChild(M);}}E.editor_header.firstChild.innerHTML=K.header;if(K.footer!==null){E.setFooter(K.footer);C.addClass(E.footer,"open");}else{C.removeClass(E.footer,"open");}E.cfg.setProperty("width",K.attrs.width);this.currentWindow=K;this.moveWindow(true);E.show();this.fireEvent("afterOpenWindow",{type:"afterOpenWindow",win:K,panel:E});},moveWindow:function(F){if(!this.currentWindow){return false;}var I=this.currentWindow,J=C.getXY(this.currentElement[0]),a=C.getXY(this.get("iframe").get("element")),O=this.get("panel"),Y=[(J[0]+a[0]),(J[1]+a[1])],R=(parseInt(I.attrs.width,10)/2),U="center",Q=O.cfg.getProperty("xy")||[0,0],G=O.editor_knob,X=0,L=0,T=false;Y[0]=((Y[0]-R)+20);Y[0]=Y[0]-C.getDocumentScrollLeft(this._getDoc());Y[1]=Y[1]-C.getDocumentScrollTop(this._getDoc());if(this._isElement(this.currentElement[0],"img")){if(this.currentElement[0].src.indexOf(this.get("blankimage"))!=-1){Y[0]=(Y[0]+(75/2));Y[1]=(Y[1]+75);}else{var N=parseInt(this.currentElement[0].width,10);var W=parseInt(this.currentElement[0].height,10);Y[0]=(Y[0]+(N/2));Y[1]=(Y[1]+W);}Y[1]=Y[1]+15;}else{var K=C.getStyle(this.currentElement[0],"fontSize");if(K&&K.indexOf&&K.indexOf("px")!=-1){Y[1]=Y[1]+parseInt(C.getStyle(this.currentElement[0],"fontSize"),10)+5;}else{Y[1]=Y[1]+20;}}if(Y[0]<a[0]){Y[0]=a[0]+5;U="left";}if((Y[0]+(R*2))>(a[0]+parseInt(this.get("iframe").get("element").clientWidth,10))){Y[0]=((a[0]+parseInt(this.get("iframe").get("element").clientWidth,10))-(R*2)-5);U="right";}try{X=(Y[0]-Q[0]);L=(Y[1]-Q[1]);}catch(b){}if(this.get("autoHeight")===false){var P=a[1]+parseInt(this.get("height"),10);var H=a[0]+parseInt(this.get("width"),10);if(Y[1]>P){Y[1]=P;}if(Y[0]>H){Y[0]=(H/2);}}X=((X<0)?(X*-1):X);L=((L<0)?(L*-1):L);if(((X>10)||(L>10))||F){var S=0,V=0;if(this.currentElement[0].width){V=(parseInt(this.currentElement[0].width,10)/2);}var M=J[0]+a[0]+V;S=M-Y[0];if(S>(parseInt(I.attrs.width,10)-1)){S=((parseInt(I.attrs.width,10)-30)-1);}else{if(S<40){S=1;}}if(isNaN(S)){S=1;}if(F){if(G){G.style.left=S+"px";}O.cfg.setProperty("xy",Y);}else{if(this.get("animate")){T=new YAHOO.util.Anim(O.element,{},0.5,YAHOO.util.Easing.easeOut);T.attributes={top:{to:Y[1]},left:{to:Y[0]}};T.onComplete.subscribe(function(){O.cfg.setProperty("xy",Y);});var Z=new YAHOO.util.Anim(O.iframe,T.attributes,0.5,YAHOO.util.Easing.easeOut);var E=new YAHOO.util.Anim(G,{left:{to:S}},0.6,YAHOO.util.Easing.easeOut);T.animate();Z.animate();E.animate();}else{G.style.left=S+"px";O.cfg.setProperty("xy",Y);}}}},_closeWindow:function(E){if(this._checkKey(this._keyMap.CLOSE_WINDOW,E)){if(this.currentWindow){this.closeWindow();}}},closeWindow:function(E){this.fireEvent("window"+this.currentWindow.name+"Close",{type:"window"+this.currentWindow.name+"Close",win:this.currentWindow,el:this.currentElement[0]});this.fireEvent("closeWindow",{type:"closeWindow",win:this.currentWindow});this.currentWindow=null;this.get("panel").hide();this.get("panel").cfg.setProperty("xy",[-900,-900]);this.get("panel").syncIframe();this.unsubscribeAll("afterExecCommand");this.toolbar.set("disabled",false);this.toolbar.resetAllButtons();this._focusWindow();A.removeListener(document,"keydown",this._closeWindow);},cmd_undo:function(F){if(this._hasUndoLevel()){if(!this._undoLevel){this._undoLevel=this._undoCache.length;}this._undoLevel=(this._undoLevel-1);if(this._undoCache[this._undoLevel]){var E=this._getUndo(this._undoLevel);this.setEditorHTML(E);}else{this._undoLevel=null;this.toolbar.disableButton("undo");}}return[false];},cmd_redo:function(F){this._undoLevel=this._undoLevel+1;if(this._undoLevel>=this._undoCache.length){this._undoLevel=this._undoCache.length;}if(this._undoCache[this._undoLevel]){var E=this._getUndo(this._undoLevel);this.setEditorHTML(E);}else{this.toolbar.disableButton("redo");}return[false];},cmd_heading:function(I){var F=true,G=null,H="heading",J=this._getSelection(),E=this._getSelectedElement();
-if(E){J=E;}if(this.browser.ie){H="formatblock";}if(I=="none"){if((J&&J.tagName&&(J.tagName.toLowerCase().substring(0,1)=="h"))||(J&&J.parentNode&&J.parentNode.tagName&&(J.parentNode.tagName.toLowerCase().substring(0,1)=="h"))){if(J.parentNode.tagName.toLowerCase().substring(0,1)=="h"){J=J.parentNode;}if(this._isElement(J,"html")){return[false];}G=this._swapEl(E,"span",function(K){K.className="yui-non";});this._selectNode(G);this.currentElement[0]=G;}F=false;}else{if(this._isElement(E,"h1")||this._isElement(E,"h2")||this._isElement(E,"h3")||this._isElement(E,"h4")||this._isElement(E,"h5")||this._isElement(E,"h6")){G=this._swapEl(E,I);this._selectNode(G);this.currentElement[0]=G;}else{this._createCurrentElement(I);this._selectNode(this.currentElement[0]);}F=false;}return[F,H];},cmd_hiddenelements:function(E){if(this._showingHiddenElements){this._lastButton=null;this._showingHiddenElements=false;this.toolbar.deselectButton("hiddenelements");C.removeClass(this._getDoc().body,this.CLASS_HIDDEN);}else{this._showingHiddenElements=true;C.addClass(this._getDoc().body,this.CLASS_HIDDEN);this.toolbar.selectButton("hiddenelements");}return[false];},cmd_removeformat:function(H){var F=true;if(this.browser.webkit&&!this._getDoc().queryCommandEnabled("removeformat")){var E=this._getSelection()+"";this._createCurrentElement("span");this.currentElement[0].className="yui-non";this.currentElement[0].innerHTML=E;for(var G=1;G<this.currentElement.length;G++){this.currentElement[G].parentNode.removeChild(this.currentElement[G]);}F=false;}return[F];},cmd_script:function(K,J){var G=true,E=K.toLowerCase().substring(0,3),H=null,F=this._getSelectedElement();if(this.browser.webkit){if(this._isElement(F,E)){H=this._swapEl(this.currentElement[0],"span",function(L){L.className="yui-non";});this._selectNode(H);}else{this._createCurrentElement(E);var I=this._swapEl(this.currentElement[0],E);this._selectNode(I);this.currentElement[0]=I;}G=false;}return G;},cmd_superscript:function(E){return[this.cmd_script("superscript",E)];},cmd_subscript:function(E){return[this.cmd_script("subscript",E)];},cmd_indent:function(H){var E=true,G=this._getSelectedElement(),I=null;if(this.browser.ie){if(this._isElement(G,"blockquote")){I=this._getDoc().createElement("blockquote");I.innerHTML=G.innerHTML;G.innerHTML="";G.appendChild(I);this._selectNode(I);}else{I=this._getDoc().createElement("blockquote");var F=this._getRange().htmlText;I.innerHTML=F;this._createCurrentElement("blockquote");this.currentElement[0].parentNode.replaceChild(I,this.currentElement[0]);this.currentElement[0]=I;this._selectNode(this.currentElement[0]);}E=false;}else{H="blockquote";}return[E,"formatblock",H];},cmd_outdent:function(I){var E=true,H=this._getSelectedElement(),J=null,F=null;if(this.browser.webkit||this.browser.ie){H=this._getSelectedElement();if(this._isElement(H,"blockquote")){var G=H.parentNode;if(this._isElement(H.parentNode,"blockquote")){G.innerHTML=H.innerHTML;this._selectNode(G);}else{F=this._getDoc().createElement("span");F.innerHTML=H.innerHTML;YAHOO.util.Dom.addClass(F,"yui-non");G.replaceChild(F,H);this._selectNode(F);}}else{}E=false;}else{I=false;}return[E,"outdent",I];},cmd_justify:function(E){if(this.browser.ie){if(this._hasSelection()){this._createCurrentElement("span");this._swapEl(this.currentElement[0],"div",function(F){F.style.textAlign=E;});return[false];}}return[true,"justify"+E,""];},cmd_justifycenter:function(){return[this.cmd_justify("center")];},cmd_justifyleft:function(){return[this.cmd_justify("left")];},cmd_justifyright:function(){return[this.cmd_justify("right")];},toString:function(){var E="Editor";if(this.get&&this.get("element_cont")){E="Editor (#"+this.get("element_cont").get("id")+")"+((this.get("disabled")?" Disabled":""));}return E;}});YAHOO.widget.EditorWindow=function(F,E){this.name=F.replace(" ","_");this.attrs=E;};YAHOO.widget.EditorWindow.prototype={header:null,body:null,footer:null,setHeader:function(E){this.header=E;},setBody:function(E){this.body=E;},setFooter:function(E){this.footer=E;},toString:function(){return"Editor Window ("+this.name+")";}};})();YAHOO.register("editor",YAHOO.widget.Editor,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/editor.js b/eclipse.org-common/yui/2.6.0/build/editor/editor.js
deleted file mode 100644
index f16b173..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/editor.js
+++ /dev/null
@@ -1,8891 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function() {
-    /**
-    * @private
-    **/
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang;
-    /**
-     * @description <p>Creates a rich custom Toolbar Button. Primarily used with the Rich Text Editor's Toolbar</p>
-     * @class ToolbarButtonAdvanced
-     * @namespace YAHOO.widget
-     * @requires yahoo, dom, element, event, container_core, menu, button
-     * @beta
-     * 
-     * Provides a toolbar button based on the button and menu widgets.
-     * @constructor
-     * @param {String/HTMLElement} el The element to turn into a button.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    if (YAHOO.widget.Button) {
-        YAHOO.widget.ToolbarButtonAdvanced = YAHOO.widget.Button;
-        /**
-        * @property buttonType
-        * @private
-        * @description Tells if the Button is a Rich Button or a Simple Button
-        */
-        YAHOO.widget.ToolbarButtonAdvanced.prototype.buttonType = 'rich';
-        /**
-        * @method checkValue
-        * @param {String} value The value of the option that we want to mark as selected
-        * @description Select an option by value
-        */
-        YAHOO.widget.ToolbarButtonAdvanced.prototype.checkValue = function(value) {
-            var _menuItems = this.getMenu().getItems();
-            if (_menuItems.length === 0) {
-                this.getMenu()._onBeforeShow();
-                _menuItems = this.getMenu().getItems();
-            }
-            for (var i = 0; i < _menuItems.length; i++) {
-                _menuItems[i].cfg.setProperty('checked', false);
-                if (_menuItems[i].value == value) {
-                    _menuItems[i].cfg.setProperty('checked', true);
-                }
-            }      
-        };
-    } else {
-        YAHOO.widget.ToolbarButtonAdvanced = function() {};
-    }
-
-
-    /**
-     * @description <p>Creates a basic custom Toolbar Button. Primarily used with the Rich Text Editor's Toolbar</p>
-     * @class ToolbarButton
-     * @namespace YAHOO.widget
-     * @requires yahoo, dom, element, event
-     * @Extends YAHOO.util.Element
-     * @beta
-     * 
-     * Provides a toolbar button based on the button and menu widgets, <select> elements are used in place of menu's.
-     * @constructor
-     * @param {String/HTMLElement} el The element to turn into a button.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-
-    YAHOO.widget.ToolbarButton = function(el, attrs) {
-        
-        if (Lang.isObject(arguments[0]) && !Dom.get(el).nodeType) {
-            attrs = el;
-        }
-        var local_attrs = (attrs || {});
-
-        var oConfig = {
-            element: null,
-            attributes: local_attrs
-        };
-
-        if (!oConfig.attributes.type) {
-            oConfig.attributes.type = 'push';
-        }
-        
-        oConfig.element = document.createElement('span');
-        oConfig.element.setAttribute('unselectable', 'on');
-        oConfig.element.className = 'yui-button yui-' + oConfig.attributes.type + '-button';
-        oConfig.element.innerHTML = '<span class="first-child"><a href="#">LABEL</a></span>';
-        oConfig.element.firstChild.firstChild.tabIndex = '-1';
-        oConfig.attributes.id = Dom.generateId();
-
-        YAHOO.widget.ToolbarButton.superclass.constructor.call(this, oConfig.element, oConfig.attributes);
-    };
-
-    YAHOO.extend(YAHOO.widget.ToolbarButton, YAHOO.util.Element, {
-        /**
-        * @property buttonType
-        * @private
-        * @description Tells if the Button is a Rich Button or a Simple Button
-        */
-        buttonType: 'normal',
-        /**
-        * @method _handleMouseOver
-        * @private
-        * @description Adds classes to the button elements on mouseover (hover)
-        */
-        _handleMouseOver: function() {
-            if (!this.get('disabled')) {
-                this.addClass('yui-button-hover');
-                this.addClass('yui-' + this.get('type') + '-button-hover');
-            }
-        },
-        /**
-        * @method _handleMouseOut
-        * @private
-        * @description Removes classes from the button elements on mouseout (hover)
-        */
-        _handleMouseOut: function() {
-            this.removeClass('yui-button-hover');
-            this.removeClass('yui-' + this.get('type') + '-button-hover');
-        },
-        /**
-        * @method checkValue
-        * @param {String} value The value of the option that we want to mark as selected
-        * @description Select an option by value
-        */
-        checkValue: function(value) {
-            if (this.get('type') == 'menu') {
-                var opts = this._button.options;
-                for (var i = 0; i < opts.length; i++) {
-                    if (opts[i].value == value) {
-                        opts.selectedIndex = i;
-                    }
-                }
-            }
-        },
-        /** 
-        * @method init
-        * @description The ToolbarButton class's initialization method
-        */        
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.widget.ToolbarButton.superclass.init.call(this, p_oElement, p_oAttributes);
-
-            this.on('mouseover', this._handleMouseOver, this, true);
-            this.on('mouseout', this._handleMouseOut, this, true);
-        },
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create 
-        * the toolbar.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the toolbar.
-        */        
-        initAttributes: function(attr) {
-            YAHOO.widget.ToolbarButton.superclass.initAttributes.call(this, attr);
-            /**
-            * @attribute value
-            * @description The value of the button
-            * @type String
-            */            
-            this.setAttributeConfig('value', {
-                value: attr.value
-            });
-            /**
-            * @attribute menu
-            * @description The menu attribute, see YAHOO.widget.Button
-            * @type Object
-            */            
-            this.setAttributeConfig('menu', {
-                value: attr.menu || false
-            });
-            /**
-            * @attribute type
-            * @description The type of button to create: push, menu, color, select, spin
-            * @type String
-            */            
-            this.setAttributeConfig('type', {
-                value: attr.type,
-                writeOnce: true,
-                method: function(type) {
-                    var el, opt;
-                    if (!this._button) {
-                        this._button = this.get('element').getElementsByTagName('a')[0];
-                    }
-                    switch (type) {
-                        case 'select':
-                        case 'menu':
-                            el = document.createElement('select');
-                            var menu = this.get('menu');
-                            for (var i = 0; i < menu.length; i++) {
-                                opt = document.createElement('option');
-                                opt.innerHTML = menu[i].text;
-                                opt.value = menu[i].value;
-                                if (menu[i].checked) {
-                                    opt.selected = true;
-                                }
-                                el.appendChild(opt);
-                            }
-                            this._button.parentNode.replaceChild(el, this._button);
-                            Event.on(el, 'change', this._handleSelect, this, true);
-                            this._button = el;
-                            break;
-                    }
-                }
-            });
-
-            /**
-            * @attribute disabled
-            * @description Set the button into a disabled state
-            * @type String
-            */            
-            this.setAttributeConfig('disabled', {
-                value: attr.disabled || false,
-                method: function(disabled) {
-                    if (disabled) {
-                        this.addClass('yui-button-disabled');
-                        this.addClass('yui-' + this.get('type') + '-button-disabled');
-                    } else {
-                        this.removeClass('yui-button-disabled');
-                        this.removeClass('yui-' + this.get('type') + '-button-disabled');
-                    }
-                    if (this.get('type') == 'menu') {
-                        this._button.disabled = disabled;
-                    }
-                }
-            });
-
-            /**
-            * @attribute label
-            * @description The text label for the button
-            * @type String
-            */            
-            this.setAttributeConfig('label', {
-                value: attr.label,
-                method: function(label) {
-                    if (!this._button) {
-                        this._button = this.get('element').getElementsByTagName('a')[0];
-                    }
-                    if (this.get('type') == 'push') {
-                        this._button.innerHTML = label;
-                    }
-                }
-            });
-
-            /**
-            * @attribute title
-            * @description The title of the button
-            * @type String
-            */            
-            this.setAttributeConfig('title', {
-                value: attr.title
-            });
-
-            /**
-            * @config container
-            * @description The container that the button is rendered to, handled by Toolbar
-            * @type String
-            */            
-            this.setAttributeConfig('container', {
-                value: null,
-                writeOnce: true,
-                method: function(cont) {
-                    this.appendTo(cont);
-                }
-            });
-
-        },
-        /** 
-        * @private
-        * @method _handleSelect
-        * @description The event fired when a change event gets fired on a select element
-        * @param {Event} ev The change event.
-        */        
-        _handleSelect: function(ev) {
-            var tar = Event.getTarget(ev);
-            var value = tar.options[tar.selectedIndex].value;
-            this.fireEvent('change', {type: 'change', value: value });
-        },
-        /** 
-        * @method getMenu
-        * @description A stub function to mimic YAHOO.widget.Button's getMenu method
-        */        
-        getMenu: function() {
-            return this.get('menu');
-        },
-        /** 
-        * @method destroy
-        * @description Destroy the button
-        */        
-        destroy: function() {
-            Event.purgeElement(this.get('element'), true);
-            this.get('element').parentNode.removeChild(this.get('element'));
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                }
-            }       
-        },
-        /** 
-        * @method fireEvent
-        * @description Overridden fireEvent method to prevent DOM events from firing if the button is disabled.
-        */        
-        fireEvent: function (p_sType , p_aArgs) {
-            //  Disabled buttons should not respond to DOM events
-            if (this.DOM_EVENTS[p_sType] && this.get('disabled')) {
-                return;
-            }
-        
-            YAHOO.widget.ToolbarButton.superclass.fireEvent.call(this, p_sType, p_aArgs);
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the toolbar.
-        * @return {String}
-        */        
-        toString: function() {
-            return 'ToolbarButton (' + this.get('id') + ')';
-        }
-        
-    });
-})();
-/**
- * @description <p>Creates a rich Toolbar widget based on Button. Primarily used with the Rich Text Editor</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event, toolbarbutton
- * @optional container_core, dragdrop
- * @beta
- */
-(function() {
-    /**
-    * @private
-    **/
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang;
-    
-    var getButton = function(id) {
-        var button = id;
-        if (Lang.isString(id)) {
-            button = this.getButtonById(id);
-        }
-        if (Lang.isNumber(id)) {
-            button = this.getButtonByIndex(id);
-        }
-        if ((!(button instanceof YAHOO.widget.ToolbarButton)) && (!(button instanceof YAHOO.widget.ToolbarButtonAdvanced))) {
-            button = this.getButtonByValue(id);
-        }
-        if ((button instanceof YAHOO.widget.ToolbarButton) || (button instanceof YAHOO.widget.ToolbarButtonAdvanced)) {
-            return button;
-        }
-        return false;
-    };
-
-    /**
-     * Provides a rich toolbar widget based on the button and menu widgets
-     * @constructor
-     * @class Toolbar
-     * @extends YAHOO.util.Element
-     * @param {String/HTMLElement} el The element to turn into a toolbar.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    YAHOO.widget.Toolbar = function(el, attrs) {
-        
-        if (Lang.isObject(arguments[0]) && !Dom.get(el).nodeType) {
-            attrs = el;
-        }
-        var local_attrs = {};
-        if (attrs) {
-            Lang.augmentObject(local_attrs, attrs); //Break the config reference
-        }
-        
-
-        var oConfig = {
-            element: null,
-            attributes: local_attrs
-        };
-        
-        
-        if (Lang.isString(el) && Dom.get(el)) {
-            oConfig.element = Dom.get(el);
-        } else if (Lang.isObject(el) && Dom.get(el) && Dom.get(el).nodeType) {  
-            oConfig.element = Dom.get(el);
-        }
-        
-
-        if (!oConfig.element) {
-            oConfig.element = document.createElement('DIV');
-            oConfig.element.id = Dom.generateId();
-            
-            if (local_attrs.container && Dom.get(local_attrs.container)) {
-                Dom.get(local_attrs.container).appendChild(oConfig.element);
-            }
-        }
-        
-
-        if (!oConfig.element.id) {
-            oConfig.element.id = ((Lang.isString(el)) ? el : Dom.generateId());
-        }
-        
-        var fs = document.createElement('fieldset');
-        var lg = document.createElement('legend');
-        lg.innerHTML = 'Toolbar';
-        fs.appendChild(lg);
-        
-        var cont = document.createElement('DIV');
-        oConfig.attributes.cont = cont;
-        Dom.addClass(cont, 'yui-toolbar-subcont');
-        fs.appendChild(cont);
-        oConfig.element.appendChild(fs);
-
-        oConfig.element.tabIndex = -1;
-
-        
-        oConfig.attributes.element = oConfig.element;
-        oConfig.attributes.id = oConfig.element.id;
-
-        YAHOO.widget.Toolbar.superclass.constructor.call(this, oConfig.element, oConfig.attributes);
-         
-    };
-
-    YAHOO.extend(YAHOO.widget.Toolbar, YAHOO.util.Element, {
-        /**
-        * @method _addMenuClasses
-        * @private
-        * @description This method is called from Menu's renderEvent to add a few more classes to the menu items
-        * @param {String} ev The event that fired.
-        * @param {Array} na Array of event information.
-        * @param {Object} o Button config object. 
-        */
-        _addMenuClasses: function(ev, na, o) {
-            Dom.addClass(this.element, 'yui-toolbar-' + o.get('value') + '-menu');
-            if (Dom.hasClass(o._button.parentNode.parentNode, 'yui-toolbar-select')) {
-                Dom.addClass(this.element, 'yui-toolbar-select-menu');
-            }
-            var items = this.getItems();
-            for (var i = 0; i < items.length; i++) {
-                Dom.addClass(items[i].element, 'yui-toolbar-' + o.get('value') + '-' + ((items[i].value) ? items[i].value.replace(/ /g, '-').toLowerCase() : items[i]._oText.nodeValue.replace(/ /g, '-').toLowerCase()));
-                Dom.addClass(items[i].element, 'yui-toolbar-' + o.get('value') + '-' + ((items[i].value) ? items[i].value.replace(/ /g, '-') : items[i]._oText.nodeValue.replace(/ /g, '-')));
-            }
-        },
-        /** 
-        * @property buttonType
-        * @description The default button to use
-        * @type Object
-        */
-        buttonType: YAHOO.widget.ToolbarButton,
-        /** 
-        * @property dd
-        * @description The DragDrop instance associated with the Toolbar
-        * @type Object
-        */
-        dd: null,
-        /** 
-        * @property _colorData
-        * @description Object reference containing colors hex and text values.
-        * @type Object
-        */
-        _colorData: {
-/* {{{ _colorData */
-    '#111111': 'Obsidian',
-    '#2D2D2D': 'Dark Gray',
-    '#434343': 'Shale',
-    '#5B5B5B': 'Flint',
-    '#737373': 'Gray',
-    '#8B8B8B': 'Concrete',
-    '#A2A2A2': 'Gray',
-    '#B9B9B9': 'Titanium',
-    '#000000': 'Black',
-    '#D0D0D0': 'Light Gray',
-    '#E6E6E6': 'Silver',
-    '#FFFFFF': 'White',
-    '#BFBF00': 'Pumpkin',
-    '#FFFF00': 'Yellow',
-    '#FFFF40': 'Banana',
-    '#FFFF80': 'Pale Yellow',
-    '#FFFFBF': 'Butter',
-    '#525330': 'Raw Siena',
-    '#898A49': 'Mildew',
-    '#AEA945': 'Olive',
-    '#7F7F00': 'Paprika',
-    '#C3BE71': 'Earth',
-    '#E0DCAA': 'Khaki',
-    '#FCFAE1': 'Cream',
-    '#60BF00': 'Cactus',
-    '#80FF00': 'Chartreuse',
-    '#A0FF40': 'Green',
-    '#C0FF80': 'Pale Lime',
-    '#DFFFBF': 'Light Mint',
-    '#3B5738': 'Green',
-    '#668F5A': 'Lime Gray',
-    '#7F9757': 'Yellow',
-    '#407F00': 'Clover',
-    '#8A9B55': 'Pistachio',
-    '#B7C296': 'Light Jade',
-    '#E6EBD5': 'Breakwater',
-    '#00BF00': 'Spring Frost',
-    '#00FF80': 'Pastel Green',
-    '#40FFA0': 'Light Emerald',
-    '#80FFC0': 'Sea Foam',
-    '#BFFFDF': 'Sea Mist',
-    '#033D21': 'Dark Forrest',
-    '#438059': 'Moss',
-    '#7FA37C': 'Medium Green',
-    '#007F40': 'Pine',
-    '#8DAE94': 'Yellow Gray Green',
-    '#ACC6B5': 'Aqua Lung',
-    '#DDEBE2': 'Sea Vapor',
-    '#00BFBF': 'Fog',
-    '#00FFFF': 'Cyan',
-    '#40FFFF': 'Turquoise Blue',
-    '#80FFFF': 'Light Aqua',
-    '#BFFFFF': 'Pale Cyan',
-    '#033D3D': 'Dark Teal',
-    '#347D7E': 'Gray Turquoise',
-    '#609A9F': 'Green Blue',
-    '#007F7F': 'Seaweed',
-    '#96BDC4': 'Green Gray',
-    '#B5D1D7': 'Soapstone',
-    '#E2F1F4': 'Light Turquoise',
-    '#0060BF': 'Summer Sky',
-    '#0080FF': 'Sky Blue',
-    '#40A0FF': 'Electric Blue',
-    '#80C0FF': 'Light Azure',
-    '#BFDFFF': 'Ice Blue',
-    '#1B2C48': 'Navy',
-    '#385376': 'Biscay',
-    '#57708F': 'Dusty Blue',
-    '#00407F': 'Sea Blue',
-    '#7792AC': 'Sky Blue Gray',
-    '#A8BED1': 'Morning Sky',
-    '#DEEBF6': 'Vapor',
-    '#0000BF': 'Deep Blue',
-    '#0000FF': 'Blue',
-    '#4040FF': 'Cerulean Blue',
-    '#8080FF': 'Evening Blue',
-    '#BFBFFF': 'Light Blue',
-    '#212143': 'Deep Indigo',
-    '#373E68': 'Sea Blue',
-    '#444F75': 'Night Blue',
-    '#00007F': 'Indigo Blue',
-    '#585E82': 'Dockside',
-    '#8687A4': 'Blue Gray',
-    '#D2D1E1': 'Light Blue Gray',
-    '#6000BF': 'Neon Violet',
-    '#8000FF': 'Blue Violet',
-    '#A040FF': 'Violet Purple',
-    '#C080FF': 'Violet Dusk',
-    '#DFBFFF': 'Pale Lavender',
-    '#302449': 'Cool Shale',
-    '#54466F': 'Dark Indigo',
-    '#655A7F': 'Dark Violet',
-    '#40007F': 'Violet',
-    '#726284': 'Smoky Violet',
-    '#9E8FA9': 'Slate Gray',
-    '#DCD1DF': 'Violet White',
-    '#BF00BF': 'Royal Violet',
-    '#FF00FF': 'Fuchsia',
-    '#FF40FF': 'Magenta',
-    '#FF80FF': 'Orchid',
-    '#FFBFFF': 'Pale Magenta',
-    '#4A234A': 'Dark Purple',
-    '#794A72': 'Medium Purple',
-    '#936386': 'Cool Granite',
-    '#7F007F': 'Purple',
-    '#9D7292': 'Purple Moon',
-    '#C0A0B6': 'Pale Purple',
-    '#ECDAE5': 'Pink Cloud',
-    '#BF005F': 'Hot Pink',
-    '#FF007F': 'Deep Pink',
-    '#FF409F': 'Grape',
-    '#FF80BF': 'Electric Pink',
-    '#FFBFDF': 'Pink',
-    '#451528': 'Purple Red',
-    '#823857': 'Purple Dino',
-    '#A94A76': 'Purple Gray',
-    '#7F003F': 'Rose',
-    '#BC6F95': 'Antique Mauve',
-    '#D8A5BB': 'Cool Marble',
-    '#F7DDE9': 'Pink Granite',
-    '#C00000': 'Apple',
-    '#FF0000': 'Fire Truck',
-    '#FF4040': 'Pale Red',
-    '#FF8080': 'Salmon',
-    '#FFC0C0': 'Warm Pink',
-    '#441415': 'Sepia',
-    '#82393C': 'Rust',
-    '#AA4D4E': 'Brick',
-    '#800000': 'Brick Red',
-    '#BC6E6E': 'Mauve',
-    '#D8A3A4': 'Shrimp Pink',
-    '#F8DDDD': 'Shell Pink',
-    '#BF5F00': 'Dark Orange',
-    '#FF7F00': 'Orange',
-    '#FF9F40': 'Grapefruit',
-    '#FFBF80': 'Canteloupe',
-    '#FFDFBF': 'Wax',
-    '#482C1B': 'Dark Brick',
-    '#855A40': 'Dirt',
-    '#B27C51': 'Tan',
-    '#7F3F00': 'Nutmeg',
-    '#C49B71': 'Mustard',
-    '#E1C4A8': 'Pale Tan',
-    '#FDEEE0': 'Marble'
-/* }}} */
-        },
-        /** 
-        * @property _colorPicker
-        * @description The HTML Element containing the colorPicker
-        * @type HTMLElement
-        */
-        _colorPicker: null,
-        /** 
-        * @property STR_COLLAPSE
-        * @description String for Toolbar Collapse Button
-        * @type String
-        */
-        STR_COLLAPSE: 'Collapse Toolbar',
-        /** 
-        * @property STR_SPIN_LABEL
-        * @description String for spinbutton dynamic label. Note the {VALUE} will be replaced with YAHOO.lang.substitute
-        * @type String
-        */
-        STR_SPIN_LABEL: 'Spin Button with value {VALUE}. Use Control Shift Up Arrow and Control Shift Down arrow keys to increase or decrease the value.',
-        /** 
-        * @property STR_SPIN_UP
-        * @description String for spinbutton up
-        * @type String
-        */
-        STR_SPIN_UP: 'Click to increase the value of this input',
-        /** 
-        * @property STR_SPIN_DOWN
-        * @description String for spinbutton down
-        * @type String
-        */
-        STR_SPIN_DOWN: 'Click to decrease the value of this input',
-        /** 
-        * @property _titlebar
-        * @description Object reference to the titlebar
-        * @type HTMLElement
-        */
-        _titlebar: null,
-        /** 
-        * @property browser
-        * @description Standard browser detection
-        * @type Object
-        */
-        browser: YAHOO.env.ua,
-        /**
-        * @protected
-        * @property _buttonList
-        * @description Internal property list of current buttons in the toolbar
-        * @type Array
-        */
-        _buttonList: null,
-        /**
-        * @protected
-        * @property _buttonGroupList
-        * @description Internal property list of current button groups in the toolbar
-        * @type Array
-        */
-        _buttonGroupList: null,
-        /**
-        * @protected
-        * @property _sep
-        * @description Internal reference to the separator HTML Element for cloning
-        * @type HTMLElement
-        */
-        _sep: null,
-        /**
-        * @protected
-        * @property _sepCount
-        * @description Internal refernce for counting separators, so we can give them a useful class name for styling
-        * @type Number
-        */
-        _sepCount: null,
-        /**
-        * @protected
-        * @property draghandle
-        * @type HTMLElement
-        */
-        _dragHandle: null,
-        /**
-        * @protected
-        * @property _toolbarConfigs
-        * @type Object
-        */
-        _toolbarConfigs: {
-            renderer: true
-        },
-        /**
-        * @protected
-        * @property CLASS_CONTAINER
-        * @description Default CSS class to apply to the toolbar container element
-        * @type String
-        */
-        CLASS_CONTAINER: 'yui-toolbar-container',
-        /**
-        * @protected
-        * @property CLASS_DRAGHANDLE
-        * @description Default CSS class to apply to the toolbar's drag handle element
-        * @type String
-        */
-        CLASS_DRAGHANDLE: 'yui-toolbar-draghandle',
-        /**
-        * @protected
-        * @property CLASS_SEPARATOR
-        * @description Default CSS class to apply to all separators in the toolbar
-        * @type String
-        */
-        CLASS_SEPARATOR: 'yui-toolbar-separator',
-        /**
-        * @protected
-        * @property CLASS_DISABLED
-        * @description Default CSS class to apply when the toolbar is disabled
-        * @type String
-        */
-        CLASS_DISABLED: 'yui-toolbar-disabled',
-        /**
-        * @protected
-        * @property CLASS_PREFIX
-        * @description Default prefix for dynamically created class names
-        * @type String
-        */
-        CLASS_PREFIX: 'yui-toolbar',
-        /** 
-        * @method init
-        * @description The Toolbar class's initialization method
-        */
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.widget.Toolbar.superclass.init.call(this, p_oElement, p_oAttributes);
-
-        },
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create 
-        * the toolbar.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the toolbar.
-        */
-        initAttributes: function(attr) {
-            YAHOO.widget.Toolbar.superclass.initAttributes.call(this, attr);
-            this.addClass(this.CLASS_CONTAINER);
-
-            /**
-            * @attribute buttonType
-            * @description The buttonType to use (advanced or basic)
-            * @type String
-            */
-            this.setAttributeConfig('buttonType', {
-                value: attr.buttonType || 'basic',
-                writeOnce: true,
-                validator: function(type) {
-                    switch (type) {
-                        case 'advanced':
-                        case 'basic':
-                            return true;
-                    }
-                    return false;
-                },
-                method: function(type) {
-                    if (type == 'advanced') {
-                        if (YAHOO.widget.Button) {
-                            this.buttonType = YAHOO.widget.ToolbarButtonAdvanced;
-                        } else {
-                            this.buttonType = YAHOO.widget.ToolbarButton;
-                        }
-                    } else {
-                        this.buttonType = YAHOO.widget.ToolbarButton;
-                    }
-                }
-            });
-
-
-            /**
-            * @attribute buttons
-            * @description Object specifying the buttons to include in the toolbar
-            * Example:
-            * <code><pre>
-            * {
-            *   { id: 'b3', type: 'button', label: 'Underline', value: 'underline' },
-            *   { type: 'separator' },
-            *   { id: 'b4', type: 'menu', label: 'Align', value: 'align',
-            *       menu: [
-            *           { text: "Left", value: 'alignleft' },
-            *           { text: "Center", value: 'aligncenter' },
-            *           { text: "Right", value: 'alignright' }
-            *       ]
-            *   }
-            * }
-            * </pre></code>
-            * @type Array
-            */
-            
-            this.setAttributeConfig('buttons', {
-                value: [],
-                writeOnce: true,
-                method: function(data) {
-                    for (var i in data) {
-                        if (Lang.hasOwnProperty(data, i)) {
-                            if (data[i].type == 'separator') {
-                                this.addSeparator();
-                            } else if (data[i].group !== undefined) {
-                                this.addButtonGroup(data[i]);
-                            } else {
-                                this.addButton(data[i]);
-                            }
-                        }
-                    }
-                }
-            });
-
-            /**
-            * @attribute disabled
-            * @description Boolean indicating if the toolbar should be disabled. It will also disable the draggable attribute if it is on.
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('disabled', {
-                value: false,
-                method: function(disabled) {
-                    if (this.get('disabled') === disabled) {
-                        return false;
-                    }
-                    if (disabled) {
-                        this.addClass(this.CLASS_DISABLED);
-                        this.set('draggable', false);
-                        this.disableAllButtons();
-                    } else {
-                        this.removeClass(this.CLASS_DISABLED);
-                        if (this._configs.draggable._initialConfig.value) {
-                            //Draggable by default, set it back
-                            this.set('draggable', true);
-                        }
-                        this.resetAllButtons();
-                    }
-                }
-            });
-
-            /**
-            * @config cont
-            * @description The container for the toolbar.
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('cont', {
-                value: attr.cont,
-                readOnly: true
-            });
-
-
-            /**
-            * @attribute grouplabels
-            * @description Boolean indicating if the toolbar should show the group label's text string.
-            * @default true
-            * @type Boolean
-            */
-            this.setAttributeConfig('grouplabels', {
-                value: ((attr.grouplabels === false) ? false : true),
-                method: function(grouplabels) {
-                    if (grouplabels) {
-                        Dom.removeClass(this.get('cont'), (this.CLASS_PREFIX + '-nogrouplabels'));
-                    } else {
-                        Dom.addClass(this.get('cont'), (this.CLASS_PREFIX + '-nogrouplabels'));
-                    }
-                }
-            });
-            /**
-            * @attribute titlebar
-            * @description Boolean indicating if the toolbar should have a titlebar. If
-            * passed a string, it will use that as the titlebar text
-            * @default false
-            * @type Boolean or String
-            */
-            this.setAttributeConfig('titlebar', {
-                value: false,
-                method: function(titlebar) {
-                    if (titlebar) {
-                        if (this._titlebar && this._titlebar.parentNode) {
-                            this._titlebar.parentNode.removeChild(this._titlebar);
-                        }
-                        this._titlebar = document.createElement('DIV');
-                        this._titlebar.tabIndex = '-1';
-                        Event.on(this._titlebar, 'focus', function() {
-                            this._handleFocus();
-                        }, this, true);
-                        Dom.addClass(this._titlebar, this.CLASS_PREFIX + '-titlebar');
-                        if (Lang.isString(titlebar)) {
-                            var h2 = document.createElement('h2');
-                            h2.tabIndex = '-1';
-                            h2.innerHTML = '<a href="#" tabIndex="0">' + titlebar + '</a>';
-                            this._titlebar.appendChild(h2);
-                            Event.on(h2.firstChild, 'click', function(ev) {
-                                Event.stopEvent(ev);
-                            });
-                            Event.on([h2, h2.firstChild], 'focus', function() {
-                                this._handleFocus();
-                            }, this, true);
-                        }
-                        if (this.get('firstChild')) {
-                            this.insertBefore(this._titlebar, this.get('firstChild'));
-                        } else {
-                            this.appendChild(this._titlebar);
-                        }
-                        if (this.get('collapse')) {
-                            this.set('collapse', true);
-                        }
-                    } else if (this._titlebar) {
-                        if (this._titlebar && this._titlebar.parentNode) {
-                            this._titlebar.parentNode.removeChild(this._titlebar);
-                        }
-                    }
-                }
-            });
-
-
-            /**
-            * @attribute collapse
-            * @description Boolean indicating if the the titlebar should have a collapse button.
-            * The collapse button will not remove the toolbar, it will minimize it to the titlebar
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('collapse', {
-                value: false,
-                method: function(collapse) {
-                    if (this._titlebar) {
-                        var collapseEl = null;
-                        var el = Dom.getElementsByClassName('collapse', 'span', this._titlebar);
-                        if (collapse) {
-                            if (el.length > 0) {
-                                //There is already a collapse button
-                                return true;
-                            }
-                            collapseEl = document.createElement('SPAN');
-                            collapseEl.innerHTML = 'X';
-                            collapseEl.title = this.STR_COLLAPSE;
-
-                            Dom.addClass(collapseEl, 'collapse');
-                            this._titlebar.appendChild(collapseEl);
-                            Event.addListener(collapseEl, 'click', function() {
-                                if (Dom.hasClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed')) {
-                                    this.collapse(false); //Expand Toolbar
-                                } else {
-                                    this.collapse(); //Collapse Toolbar
-                                }
-                            }, this, true);
-                        } else {
-                            collapseEl = Dom.getElementsByClassName('collapse', 'span', this._titlebar);
-                            if (collapseEl[0]) {
-                                if (Dom.hasClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed')) {
-                                    //We are closed, reopen the titlebar..
-                                    this.collapse(false); //Expand Toolbar
-                                }
-                                collapseEl[0].parentNode.removeChild(collapseEl[0]);
-                            }
-                        }
-                    }
-                }
-            });
-
-            /**
-            * @attribute draggable
-            * @description Boolean indicating if the toolbar should be draggable.  
-            * @default false
-            * @type Boolean
-            */
-
-            this.setAttributeConfig('draggable', {
-                value: (attr.draggable || false),
-                method: function(draggable) {
-                    if (draggable && !this.get('titlebar')) {
-                        if (!this._dragHandle) {
-                            this._dragHandle = document.createElement('SPAN');
-                            this._dragHandle.innerHTML = '|';
-                            this._dragHandle.setAttribute('title', 'Click to drag the toolbar');
-                            this._dragHandle.id = this.get('id') + '_draghandle';
-                            Dom.addClass(this._dragHandle, this.CLASS_DRAGHANDLE);
-                            if (this.get('cont').hasChildNodes()) {
-                                this.get('cont').insertBefore(this._dragHandle, this.get('cont').firstChild);
-                            } else {
-                                this.get('cont').appendChild(this._dragHandle);
-                            }
-                            /**
-                            * @property dd
-                            * @description The DragDrop instance associated with the Toolbar
-                            * @type Object
-                            */
-                            this.dd = new YAHOO.util.DD(this.get('id'));
-                            this.dd.setHandleElId(this._dragHandle.id);
-                            
-                        }
-                    } else {
-                        if (this._dragHandle) {
-                            this._dragHandle.parentNode.removeChild(this._dragHandle);
-                            this._dragHandle = null;
-                            this.dd = null;
-                        }
-                    }
-                    if (this._titlebar) {
-                        if (draggable) {
-                            this.dd = new YAHOO.util.DD(this.get('id'));
-                            this.dd.setHandleElId(this._titlebar);
-                            Dom.addClass(this._titlebar, 'draggable');
-                        } else {
-                            Dom.removeClass(this._titlebar, 'draggable');
-                            if (this.dd) {
-                                this.dd.unreg();
-                                this.dd = null;
-                            }
-                        }
-                    }
-                },
-                validator: function(value) {
-                    var ret = true;
-                    if (!YAHOO.util.DD) {
-                        ret = false;
-                    }
-                    return ret;
-                }
-            });
-
-        },
-        /**
-        * @method addButtonGroup
-        * @description Add a new button group to the toolbar. (uses addButton)
-        * @param {Object} oGroup Object literal reference to the Groups Config (contains an array of button configs as well as the group label)
-        */
-        addButtonGroup: function(oGroup) {
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addButtonGroup', arguments];
-                return false;
-            }
-            
-            if (!this.hasClass(this.CLASS_PREFIX + '-grouped')) {
-                this.addClass(this.CLASS_PREFIX + '-grouped');
-            }
-            var div = document.createElement('DIV');
-            Dom.addClass(div, this.CLASS_PREFIX + '-group');
-            Dom.addClass(div, this.CLASS_PREFIX + '-group-' + oGroup.group);
-            if (oGroup.label) {
-                var label = document.createElement('h3');
-                label.innerHTML = oGroup.label;
-                div.appendChild(label);
-            }
-            if (!this.get('grouplabels')) {
-                Dom.addClass(this.get('cont'), this.CLASS_PREFIX, '-nogrouplabels');
-            }
-
-            this.get('cont').appendChild(div);
-
-            //For accessibility, let's put all of the group buttons in an Unordered List
-            var ul = document.createElement('ul');
-            div.appendChild(ul);
-
-            if (!this._buttonGroupList) {
-                this._buttonGroupList = {};
-            }
-            
-            this._buttonGroupList[oGroup.group] = ul;
-
-            for (var i = 0; i < oGroup.buttons.length; i++) {
-                var li = document.createElement('li');
-                li.className = this.CLASS_PREFIX + '-groupitem';
-                ul.appendChild(li);
-                if ((oGroup.buttons[i].type !== undefined) && oGroup.buttons[i].type == 'separator') {
-                    this.addSeparator(li);
-                } else {
-                    oGroup.buttons[i].container = li;
-                    this.addButton(oGroup.buttons[i]);
-                }
-            }
-        },
-        /**
-        * @method addButtonToGroup
-        * @description Add a new button to a toolbar group. Buttons supported:
-        *   push, split, menu, select, color, spin
-        * @param {Object} oButton Object literal reference to the Button's Config
-        * @param {String} group The Group identifier passed into the initial config
-        * @param {HTMLElement} after Optional HTML element to insert this button after in the DOM.
-        */
-        addButtonToGroup: function(oButton, group, after) {
-            var groupCont = this._buttonGroupList[group];
-            var li = document.createElement('li');
-            li.className = this.CLASS_PREFIX + '-groupitem';
-            oButton.container = li;
-            this.addButton(oButton, after);
-            groupCont.appendChild(li);
-        },
-        /**
-        * @method addButton
-        * @description Add a new button to the toolbar. Buttons supported:
-        *   push, split, menu, select, color, spin
-        * @param {Object} oButton Object literal reference to the Button's Config
-        * @param {HTMLElement} after Optional HTML element to insert this button after in the DOM.
-        */
-        addButton: function(oButton, after) {
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addButton', arguments];
-                return false;
-            }
-            if (!this._buttonList) {
-                this._buttonList = [];
-            }
-            if (!oButton.container) {
-                oButton.container = this.get('cont');
-            }
-
-            if ((oButton.type == 'menu') || (oButton.type == 'split') || (oButton.type == 'select')) {
-                if (Lang.isArray(oButton.menu)) {
-                    for (var i in oButton.menu) {
-                        if (Lang.hasOwnProperty(oButton.menu, i)) {
-                            var funcObject = {
-                                fn: function(ev, x, oMenu) {
-                                    if (!oButton.menucmd) {
-                                        oButton.menucmd = oButton.value;
-                                    }
-                                    oButton.value = ((oMenu.value) ? oMenu.value : oMenu._oText.nodeValue);
-                                },
-                                scope: this
-                            };
-                            oButton.menu[i].onclick = funcObject;
-                        }
-                    }
-                }
-            }
-            var _oButton = {}, skip = false;
-            for (var o in oButton) {
-                if (Lang.hasOwnProperty(oButton, o)) {
-                    if (!this._toolbarConfigs[o]) {
-                        _oButton[o] = oButton[o];
-                    }
-                }
-            }
-            if (oButton.type == 'select') {
-                _oButton.type = 'menu';
-            }
-            if (oButton.type == 'spin') {
-                _oButton.type = 'push';
-            }
-            if (_oButton.type == 'color') {
-                if (YAHOO.widget.Overlay) {
-                    _oButton = this._makeColorButton(_oButton);
-                } else {
-                    skip = true;
-                }
-            }
-            if (_oButton.menu) {
-                if ((YAHOO.widget.Overlay) && (oButton.menu instanceof YAHOO.widget.Overlay)) {
-                    oButton.menu.showEvent.subscribe(function() {
-                        this._button = _oButton;
-                    });
-                } else {
-                    for (var m = 0; m < _oButton.menu.length; m++) {
-                        if (!_oButton.menu[m].value) {
-                            _oButton.menu[m].value = _oButton.menu[m].text;
-                        }
-                    }
-                    if (this.browser.webkit) {
-                        _oButton.focusmenu = false;
-                    }
-                }
-            }
-            if (skip) {
-                oButton = false;
-            } else {
-                //Add to .get('buttons') manually
-                this._configs.buttons.value[this._configs.buttons.value.length] = oButton;
-                
-                var tmp = new this.buttonType(_oButton);
-                tmp.get('element').tabIndex = '-1';
-                tmp.get('element').setAttribute('role', 'button');
-                tmp._selected = true;
-                
-                if (this.get('disabled')) {
-                    //Toolbar is disabled, disable the new button too!
-                    tmp.set('disabled', true);
-                }
-                if (!oButton.id) {
-                    oButton.id = tmp.get('id');
-                }
-                
-                if (after) {
-                    var el = tmp.get('element');
-                    var nextSib = null;
-                    if (after.get) {
-                        nextSib = after.get('element').nextSibling;
-                    } else if (after.nextSibling) {
-                        nextSib = after.nextSibling;
-                    }
-                    if (nextSib) {
-                        nextSib.parentNode.insertBefore(el, nextSib);
-                    }
-                }
-                tmp.addClass(this.CLASS_PREFIX + '-' + tmp.get('value'));
-
-                var icon = document.createElement('span');
-                icon.className = this.CLASS_PREFIX + '-icon';
-                tmp.get('element').insertBefore(icon, tmp.get('firstChild'));
-                if (tmp._button.tagName.toLowerCase() == 'button') {
-                    tmp.get('element').setAttribute('unselectable', 'on');
-                    //Replace the Button HTML Element with an a href if it exists
-                    var a = document.createElement('a');
-                    a.innerHTML = tmp._button.innerHTML;
-                    a.href = '#';
-                    a.tabIndex = '-1';
-                    Event.on(a, 'click', function(ev) {
-                        Event.stopEvent(ev);
-                    });
-                    tmp._button.parentNode.replaceChild(a, tmp._button);
-                    tmp._button = a;
-                }
-
-                if (oButton.type == 'select') {
-                    if (tmp._button.tagName.toLowerCase() == 'select') {
-                        icon.parentNode.removeChild(icon);
-                        var iel = tmp._button;
-                        var parEl = tmp.get('element');
-                        parEl.parentNode.replaceChild(iel, parEl);
-                    } else {
-                        //Don't put a class on it if it's a real select element
-                        tmp.addClass(this.CLASS_PREFIX + '-select');
-                    }
-                }
-                if (oButton.type == 'spin') {
-                    if (!Lang.isArray(oButton.range)) {
-                        oButton.range = [ 10, 100 ];
-                    }
-                    this._makeSpinButton(tmp, oButton);
-                }
-                tmp.get('element').setAttribute('title', tmp.get('label'));
-                if (oButton.type != 'spin') {
-                    if ((YAHOO.widget.Overlay) && (_oButton.menu instanceof YAHOO.widget.Overlay)) {
-                        var showPicker = function(ev) {
-                            var exec = true;
-                            if (ev.keyCode && (ev.keyCode == 9)) {
-                                exec = false;
-                            }
-                            if (exec) {
-                                if (this._colorPicker) {
-                                    this._colorPicker._button = oButton.value;
-                                }
-                                var menuEL = tmp.getMenu().element;
-                                if (Dom.getStyle(menuEL, 'visibility') == 'hidden') {
-                                    tmp.getMenu().show();
-                                } else {
-                                    tmp.getMenu().hide();
-                                }
-                            }
-                            YAHOO.util.Event.stopEvent(ev);
-                        };
-                        tmp.on('mousedown', showPicker, oButton, this);
-                        tmp.on('keydown', showPicker, oButton, this);
-                        
-                    } else if ((oButton.type != 'menu') && (oButton.type != 'select')) {
-                        tmp.on('keypress', this._buttonClick, oButton, this);
-                        tmp.on('mousedown', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                            this._buttonClick(ev, oButton);
-                        }, oButton, this);
-                        tmp.on('click', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                        });
-                    } else {
-                        //Stop the mousedown event so we can trap the selection in the editor!
-                        tmp.on('mousedown', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                        });
-                        tmp.on('click', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                        });
-                        tmp.on('change', function(ev) {
-                            if (!oButton.menucmd) {
-                                oButton.menucmd = oButton.value;
-                            }
-                            oButton.value = ev.value;
-                            this._buttonClick(ev, oButton);
-                        }, this, true);
-
-                        var self = this;
-                        //Hijack the mousedown event in the menu and make it fire a button click..
-                        tmp.on('appendTo', function() {
-                            var tmp = this;
-                            if (tmp.getMenu() && tmp.getMenu().mouseDownEvent) {
-                                tmp.getMenu().mouseDownEvent.subscribe(function(ev, args) {
-                                    var oMenu = args[1];
-                                    YAHOO.util.Event.stopEvent(args[0]);
-                                    tmp._onMenuClick(args[0], tmp);
-                                    if (!oButton.menucmd) {
-                                        oButton.menucmd = oButton.value;
-                                    }
-                                    oButton.value = ((oMenu.value) ? oMenu.value : oMenu._oText.nodeValue);
-                                    self._buttonClick.call(self, args[1], oButton);
-                                    tmp._hideMenu();
-                                    return false;
-                                });
-                                tmp.getMenu().clickEvent.subscribe(function(ev, args) {
-                                    YAHOO.util.Event.stopEvent(args[0]);
-                                });
-                                tmp.getMenu().mouseUpEvent.subscribe(function(ev, args) {
-                                    YAHOO.util.Event.stopEvent(args[0]);
-                                });
-                            }
-                        });
-                        
-                    }
-                } else {
-                    //Stop the mousedown event so we can trap the selection in the editor!
-                    tmp.on('mousedown', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    });
-                    tmp.on('click', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    });
-                }
-                if (this.browser.ie) {
-                    /*
-                    //Add a couple of new events for IE
-                    tmp.DOM_EVENTS.focusin = true;
-                    tmp.DOM_EVENTS.focusout = true;
-                    
-                    //Stop them so we don't loose focus in the Editor
-                    tmp.on('focusin', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    }, oButton, this);
-                    
-                    tmp.on('focusout', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    }, oButton, this);
-                    tmp.on('click', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    }, oButton, this);
-                    */
-                }
-                if (this.browser.webkit) {
-                    //This will keep the document from gaining focus and the editor from loosing it..
-                    //Forcefully remove the focus calls in button!
-                    tmp.hasFocus = function() {
-                        return true;
-                    };
-                }
-                this._buttonList[this._buttonList.length] = tmp;
-                if ((oButton.type == 'menu') || (oButton.type == 'split') || (oButton.type == 'select')) {
-                    if (Lang.isArray(oButton.menu)) {
-                        var menu = tmp.getMenu();
-                        if (menu && menu.renderEvent) {
-                            menu.renderEvent.subscribe(this._addMenuClasses, tmp);
-                            if (oButton.renderer) {
-                                menu.renderEvent.subscribe(oButton.renderer, tmp);
-                            }
-                        }
-                    }
-                }
-            }
-            return oButton;
-        },
-        /**
-        * @method addSeparator
-        * @description Add a new button separator to the toolbar.
-        * @param {HTMLElement} cont Optional HTML element to insert this button into.
-        * @param {HTMLElement} after Optional HTML element to insert this button after in the DOM.
-        */
-        addSeparator: function(cont, after) {
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addSeparator', arguments];
-                return false;
-            }
-            var sepCont = ((cont) ? cont : this.get('cont'));
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addSeparator', arguments];
-                return false;
-            }
-            if (this._sepCount === null) {
-                this._sepCount = 0;
-            }
-            if (!this._sep) {
-                this._sep = document.createElement('SPAN');
-                Dom.addClass(this._sep, this.CLASS_SEPARATOR);
-                this._sep.innerHTML = '|';
-            }
-            var _sep = this._sep.cloneNode(true);
-            this._sepCount++;
-            Dom.addClass(_sep, this.CLASS_SEPARATOR + '-' + this._sepCount);
-            if (after) {
-                var nextSib = null;
-                if (after.get) {
-                    nextSib = after.get('element').nextSibling;
-                } else if (after.nextSibling) {
-                    nextSib = after.nextSibling;
-                } else {
-                    nextSib = after;
-                }
-                if (nextSib) {
-                    if (nextSib == after) {
-                        nextSib.parentNode.appendChild(_sep);
-                    } else {
-                        nextSib.parentNode.insertBefore(_sep, nextSib);
-                    }
-                }
-            } else {
-                sepCont.appendChild(_sep);
-            }
-            return _sep;
-        },
-        /**
-        * @method _createColorPicker
-        * @private
-        * @description Creates the core DOM reference to the color picker menu item.
-        * @param {String} id the id of the toolbar to prefix this DOM container with.
-        */
-        _createColorPicker: function(id) {
-            if (Dom.get(id + '_colors')) {
-               Dom.get(id + '_colors').parentNode.removeChild(Dom.get(id + '_colors'));
-            }
-            var picker = document.createElement('div');
-            picker.className = 'yui-toolbar-colors';
-            picker.id = id + '_colors';
-            picker.style.display = 'none';
-            Event.on(window, 'load', function() {
-                document.body.appendChild(picker);
-            }, this, true);
-
-            this._colorPicker = picker;
-
-            var html = '';
-            for (var i in this._colorData) {
-                if (Lang.hasOwnProperty(this._colorData, i)) {
-                    html += '<a style="background-color: ' + i + '" href="#">' + i.replace('#', '') + '</a>';
-                }
-            }
-            html += '<span><em>X</em><strong></strong></span>';
-            window.setTimeout(function() {
-                picker.innerHTML = html;
-            }, 0);
-
-            Event.on(picker, 'mouseover', function(ev) {
-                var picker = this._colorPicker;
-                var em = picker.getElementsByTagName('em')[0];
-                var strong = picker.getElementsByTagName('strong')[0];
-                var tar = Event.getTarget(ev);
-                if (tar.tagName.toLowerCase() == 'a') {
-                    em.style.backgroundColor = tar.style.backgroundColor;
-                    strong.innerHTML = this._colorData['#' + tar.innerHTML] + '<br>' + tar.innerHTML;
-                }
-            }, this, true);
-            Event.on(picker, 'focus', function(ev) {
-                Event.stopEvent(ev);
-            });
-            Event.on(picker, 'click', function(ev) {
-                Event.stopEvent(ev);
-            });
-            Event.on(picker, 'mousedown', function(ev) {
-                Event.stopEvent(ev);
-                var tar = Event.getTarget(ev);
-                if (tar.tagName.toLowerCase() == 'a') {
-                    var retVal = this.fireEvent('colorPickerClicked', { type: 'colorPickerClicked', target: this, button: this._colorPicker._button, color: tar.innerHTML, colorName: this._colorData['#' + tar.innerHTML] } );
-                    if (retVal !== false) {
-                        var info = {
-                            color: tar.innerHTML,
-                            colorName: this._colorData['#' + tar.innerHTML],
-                            value: this._colorPicker._button 
-                        };
-                    
-                        this.fireEvent('buttonClick', { type: 'buttonClick', target: this.get('element'), button: info });
-                    }
-                    this.getButtonByValue(this._colorPicker._button).getMenu().hide();
-                }
-            }, this, true);
-        },
-        /**
-        * @method _resetColorPicker
-        * @private
-        * @description Clears the currently selected color or mouseover color in the color picker.
-        */
-        _resetColorPicker: function() {
-            var em = this._colorPicker.getElementsByTagName('em')[0];
-            var strong = this._colorPicker.getElementsByTagName('strong')[0];
-            em.style.backgroundColor = 'transparent';
-            strong.innerHTML = '';
-        },
-        /**
-        * @method _makeColorButton
-        * @private
-        * @description Called to turn a "color" button into a menu button with an Overlay for the menu.
-        * @param {Object} _oButton <a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a> reference
-        */
-        _makeColorButton: function(_oButton) {
-            if (!this._colorPicker) {   
-                this._createColorPicker(this.get('id'));
-            }
-            _oButton.type = 'color';
-            _oButton.menu = new YAHOO.widget.Overlay(this.get('id') + '_' + _oButton.value + '_menu', { visible: false, position: 'absolute', iframe: true });
-            _oButton.menu.setBody('');
-            _oButton.menu.render(this.get('cont'));
-            Dom.addClass(_oButton.menu.element, 'yui-button-menu');
-            Dom.addClass(_oButton.menu.element, 'yui-color-button-menu');
-            _oButton.menu.beforeShowEvent.subscribe(function() {
-                _oButton.menu.cfg.setProperty('zindex', 5); //Re Adjust the overlays zIndex.. not sure why.
-                _oButton.menu.cfg.setProperty('context', [this.getButtonById(_oButton.id).get('element'), 'tl', 'bl']); //Re Adjust the overlay.. not sure why.
-                //Move the DOM reference of the color picker to the Overlay that we are about to show.
-                this._resetColorPicker();
-                var _p = this._colorPicker;
-                if (_p.parentNode) {
-                    _p.parentNode.removeChild(_p);
-                }
-                _oButton.menu.setBody('');
-                _oButton.menu.appendToBody(_p);
-                this._colorPicker.style.display = 'block';
-            }, this, true);
-            return _oButton;
-        },
-        /**
-        * @private
-        * @method _makeSpinButton
-        * @description Create a button similar to an OS Spin button.. It has an up/down arrow combo to scroll through a range of int values.
-        * @param {Object} _button <a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a> reference
-        * @param {Object} oButton Object literal containing the buttons initial config
-        */
-        _makeSpinButton: function(_button, oButton) {
-            _button.addClass(this.CLASS_PREFIX + '-spinbutton');
-            var self = this,
-                _par = _button._button.parentNode.parentNode, //parentNode of Button Element for appending child
-                range = oButton.range,
-                _b1 = document.createElement('a'),
-                _b2 = document.createElement('a');
-                _b1.href = '#';
-                _b2.href = '#';
-                _b1.tabIndex = '-1';
-                _b2.tabIndex = '-1';
-            
-            //Setup the up and down arrows
-            _b1.className = 'up';
-            _b1.title = this.STR_SPIN_UP;
-            _b1.innerHTML = this.STR_SPIN_UP;
-            _b2.className = 'down';
-            _b2.title = this.STR_SPIN_DOWN;
-            _b2.innerHTML = this.STR_SPIN_DOWN;
-
-            //Append them to the container
-            _par.appendChild(_b1);
-            _par.appendChild(_b2);
-            
-            var label = YAHOO.lang.substitute(this.STR_SPIN_LABEL, { VALUE: _button.get('label') });
-            _button.set('title', label);
-
-            var cleanVal = function(value) {
-                value = ((value < range[0]) ? range[0] : value);
-                value = ((value > range[1]) ? range[1] : value);
-                return value;
-            };
-
-            var br = this.browser;
-            var tbar = false;
-            var strLabel = this.STR_SPIN_LABEL;
-            if (this._titlebar && this._titlebar.firstChild) {
-                tbar = this._titlebar.firstChild;
-            }
-            
-            var _intUp = function(ev) {
-                YAHOO.util.Event.stopEvent(ev);
-                if (!_button.get('disabled') && (ev.keyCode != 9)) {
-                    var value = parseInt(_button.get('label'), 10);
-                    value++;
-                    value = cleanVal(value);
-                    _button.set('label', ''+value);
-                    var label = YAHOO.lang.substitute(strLabel, { VALUE: _button.get('label') });
-                    _button.set('title', label);
-                    if (!br.webkit && tbar) {
-                        //tbar.focus(); //We do this for accessibility, on the re-focus of the element, a screen reader will re-read the title that was just changed
-                        //_button.focus();
-                    }
-                    self._buttonClick(ev, oButton);
-                }
-            };
-
-            var _intDown = function(ev) {
-                YAHOO.util.Event.stopEvent(ev);
-                if (!_button.get('disabled') && (ev.keyCode != 9)) {
-                    var value = parseInt(_button.get('label'), 10);
-                    value--;
-                    value = cleanVal(value);
-
-                    _button.set('label', ''+value);
-                    var label = YAHOO.lang.substitute(strLabel, { VALUE: _button.get('label') });
-                    _button.set('title', label);
-                    if (!br.webkit && tbar) {
-                        //tbar.focus(); //We do this for accessibility, on the re-focus of the element, a screen reader will re-read the title that was just changed
-                        //_button.focus();
-                    }
-                    self._buttonClick(ev, oButton);
-                }
-            };
-
-            var _intKeyUp = function(ev) {
-                if (ev.keyCode == 38) {
-                    _intUp(ev);
-                } else if (ev.keyCode == 40) {
-                    _intDown(ev);
-                } else if (ev.keyCode == 107 && ev.shiftKey) {  //Plus Key
-                    _intUp(ev);
-                } else if (ev.keyCode == 109 && ev.shiftKey) {  //Minus Key
-                    _intDown(ev);
-                }
-            };
-
-            //Handle arrow keys..
-            _button.on('keydown', _intKeyUp, this, true);
-
-            //Listen for the click on the up button and act on it
-            //Listen for the click on the down button and act on it
-            Event.on(_b1, 'mousedown',function(ev) {
-                Event.stopEvent(ev);
-            }, this, true);
-            Event.on(_b2, 'mousedown', function(ev) {
-                Event.stopEvent(ev);
-            }, this, true);
-            Event.on(_b1, 'click', _intUp, this, true);
-            Event.on(_b2, 'click', _intDown, this, true);
-        },
-        /**
-        * @protected
-        * @method _buttonClick
-        * @description Click handler for all buttons in the toolbar.
-        * @param {String} ev The event that was passed in.
-        * @param {Object} info Object literal of information about the button that was clicked.
-        */
-        _buttonClick: function(ev, info) {
-            var doEvent = true;
-            
-            if (ev && ev.type == 'keypress') {
-                if (ev.keyCode == 9) {
-                    doEvent = false;
-                } else if ((ev.keyCode === 13) || (ev.keyCode === 0) || (ev.keyCode === 32)) {
-                } else {
-                    doEvent = false;
-                }
-            }
-
-            if (doEvent) {
-                var fireNextEvent = true,
-                    retValue = false;
-                    
-                info.isSelected = this.isSelected(info.id);
-
-                if (info.value) {
-                    retValue = this.fireEvent(info.value + 'Click', { type: info.value + 'Click', target: this.get('element'), button: info });
-                    if (retValue === false) {
-                        fireNextEvent = false;
-                    }
-                }
-                
-                if (info.menucmd && fireNextEvent) {
-                    retValue = this.fireEvent(info.menucmd + 'Click', { type: info.menucmd + 'Click', target: this.get('element'), button: info });
-                    if (retValue === false) {
-                        fireNextEvent = false;
-                    }
-                }
-                if (fireNextEvent) {
-                    this.fireEvent('buttonClick', { type: 'buttonClick', target: this.get('element'), button: info });
-                }
-
-                if (info.type == 'select') {
-                    var button = this.getButtonById(info.id);
-                    if (button.buttonType == 'rich') {
-                        var txt = info.value;
-                        for (var i = 0; i < info.menu.length; i++) {
-                            if (info.menu[i].value == info.value) {
-                                txt = info.menu[i].text;
-                                break;
-                            }
-                        }
-                        button.set('label', '<span class="yui-toolbar-' + info.menucmd + '-' + (info.value).replace(/ /g, '-').toLowerCase() + '">' + txt + '</span>');
-                        var _items = button.getMenu().getItems();
-                        for (var m = 0; m < _items.length; m++) {
-                            if (_items[m].value.toLowerCase() == info.value.toLowerCase()) {
-                                _items[m].cfg.setProperty('checked', true);
-                            } else {
-                                _items[m].cfg.setProperty('checked', false);
-                            }
-                        }
-                    }
-                }
-                if (ev) {
-                    Event.stopEvent(ev);
-                }
-            }
-        },
-        /**
-        * @private
-        * @property _keyNav
-        * @description Flag to determine if the arrow nav listeners have been attached
-        * @type Boolean
-        */
-        _keyNav: null,
-        /**
-        * @private
-        * @property _navCounter
-        * @description Internal counter for walking the buttons in the toolbar with the arrow keys
-        * @type Number
-        */
-        _navCounter: null,
-        /**
-        * @private
-        * @method _navigateButtons
-        * @description Handles the navigation/focus of toolbar buttons with the Arrow Keys
-        * @param {Event} ev The Key Event
-        */
-        _navigateButtons: function(ev) {
-            switch (ev.keyCode) {
-                case 37:
-                case 39:
-                    if (ev.keyCode == 37) {
-                        this._navCounter--;
-                    } else {
-                        this._navCounter++;
-                    }
-                    if (this._navCounter > (this._buttonList.length - 1)) {
-                        this._navCounter = 0;
-                    }
-                    if (this._navCounter < 0) {
-                        this._navCounter = (this._buttonList.length - 1);
-                    }
-                    if (this._buttonList[this._navCounter]) {
-                        var el = this._buttonList[this._navCounter].get('element');
-                        if (this.browser.ie) {
-                            el = this._buttonList[this._navCounter].get('element').getElementsByTagName('a')[0];
-                        }
-                        if (this._buttonList[this._navCounter].get('disabled')) {
-                            this._navigateButtons(ev);
-                        } else {
-                            el.focus();
-                        }
-                    }
-                    break;
-            }
-        },
-        /**
-        * @private
-        * @method _handleFocus
-        * @description Sets up the listeners for the arrow key navigation
-        */
-        _handleFocus: function() {
-            if (!this._keyNav) {
-                var ev = 'keypress';
-                if (this.browser.ie) {
-                    ev = 'keydown';
-                }
-                Event.on(this.get('element'), ev, this._navigateButtons, this, true);
-                this._keyNav = true;
-                this._navCounter = -1;
-            }
-        },
-        /**
-        * @method getButtonById
-        * @description Gets a button instance from the toolbar by is Dom id.
-        * @param {String} id The Dom id to query for.
-        * @return {<a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a>}
-        */
-        getButtonById: function(id) {
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                if (this._buttonList[i] && this._buttonList[i].get('id') == id) {
-                    return this._buttonList[i];
-                }
-            }
-            return false;
-        },
-        /**
-        * @method getButtonByValue
-        * @description Gets a button instance or a menuitem instance from the toolbar by it's value.
-        * @param {String} value The button value to query for.
-        * @return {<a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a> or <a href="YAHOO.widget.MenuItem.html">YAHOO.widget.MenuItem</a>}
-        */
-        getButtonByValue: function(value) {
-            var _buttons = this.get('buttons');
-            var len = _buttons.length;
-            for (var i = 0; i < len; i++) {
-                if (_buttons[i].group !== undefined) {
-                    for (var m = 0; m < _buttons[i].buttons.length; m++) {
-                        if ((_buttons[i].buttons[m].value == value) || (_buttons[i].buttons[m].menucmd == value)) {
-                            return this.getButtonById(_buttons[i].buttons[m].id);
-                        }
-                        if (_buttons[i].buttons[m].menu) { //Menu Button, loop through the values
-                            for (var s = 0; s < _buttons[i].buttons[m].menu.length; s++) {
-                                if (_buttons[i].buttons[m].menu[s].value == value) {
-                                    return this.getButtonById(_buttons[i].buttons[m].id);
-                                }
-                            }
-                        }
-                    }
-                } else {
-                    if ((_buttons[i].value == value) || (_buttons[i].menucmd == value)) {
-                        return this.getButtonById(_buttons[i].id);
-                    }
-                    if (_buttons[i].menu) { //Menu Button, loop through the values
-                        for (var j = 0; j < _buttons[i].menu.length; j++) {
-                            if (_buttons[i].menu[j].value == value) {
-                                return this.getButtonById(_buttons[i].id);
-                            }
-                        }
-                    }
-                }
-            }
-            return false;
-        },
-        /**
-        * @method getButtonByIndex
-        * @description Gets a button instance from the toolbar by is index in _buttonList.
-        * @param {Number} index The index of the button in _buttonList.
-        * @return {<a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a>}
-        */
-        getButtonByIndex: function(index) {
-            if (this._buttonList[index]) {
-                return this._buttonList[index];
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method getButtons
-        * @description Returns an array of buttons in the current toolbar
-        * @return {Array}
-        */
-        getButtons: function() {
-            return this._buttonList;
-        },
-        /**
-        * @method disableButton
-        * @description Disables a button in the toolbar.
-        * @param {String/Number} id Disable a button by it's id, index or value.
-        * @return {Boolean}
-        */
-        disableButton: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                button.set('disabled', true);
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method enableButton
-        * @description Enables a button in the toolbar.
-        * @param {String/Number} id Enable a button by it's id, index or value.
-        * @return {Boolean}
-        */
-        enableButton: function(id) {
-            if (this.get('disabled')) {
-                return false;
-            }
-            var button = getButton.call(this, id);
-            if (button) {
-                if (button.get('disabled')) {
-                    button.set('disabled', false);
-                }
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method isSelected
-        * @description Tells if a button is selected or not.
-        * @param {String/Number} id A button by it's id, index or value.
-        * @return {Boolean}
-        */
-        isSelected: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                return button._selected;
-            }
-            return false;
-        },
-        /**
-        * @method selectButton
-        * @description Selects a button in the toolbar.
-        * @param {String/Number} id Select a button by it's id, index or value.
-        * @param {String} value If this is a Menu Button, check this item in the menu
-        * @return {Boolean}
-        */
-        selectButton: function(id, value) {
-            var button = getButton.call(this, id);
-            if (button) {
-                button.addClass('yui-button-selected');
-                button.addClass('yui-button-' + button.get('value') + '-selected');
-                button._selected = true;
-                if (value) {
-                    if (button.buttonType == 'rich') {
-                        var _items = button.getMenu().getItems();
-                        for (var m = 0; m < _items.length; m++) {
-                            if (_items[m].value == value) {
-                                _items[m].cfg.setProperty('checked', true);
-                                button.set('label', '<span class="yui-toolbar-' + button.get('value') + '-' + (value).replace(/ /g, '-').toLowerCase() + '">' + _items[m]._oText.nodeValue + '</span>');
-                            } else {
-                                _items[m].cfg.setProperty('checked', false);
-                            }
-                        }
-                    }
-                }
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method deselectButton
-        * @description Deselects a button in the toolbar.
-        * @param {String/Number} id Deselect a button by it's id, index or value.
-        * @return {Boolean}
-        */
-        deselectButton: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                button.removeClass('yui-button-selected');
-                button.removeClass('yui-button-' + button.get('value') + '-selected');
-                button.removeClass('yui-button-hover');
-                button._selected = false;
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method deselectAllButtons
-        * @description Deselects all buttons in the toolbar.
-        * @return {Boolean}
-        */
-        deselectAllButtons: function() {
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                this.deselectButton(this._buttonList[i]);
-            }
-        },
-        /**
-        * @method disableAllButtons
-        * @description Disables all buttons in the toolbar.
-        * @return {Boolean}
-        */
-        disableAllButtons: function() {
-            if (this.get('disabled')) {
-                return false;
-            }
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                this.disableButton(this._buttonList[i]);
-            }
-        },
-        /**
-        * @method enableAllButtons
-        * @description Enables all buttons in the toolbar.
-        * @return {Boolean}
-        */
-        enableAllButtons: function() {
-            if (this.get('disabled')) {
-                return false;
-            }
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                this.enableButton(this._buttonList[i]);
-            }
-        },
-        /**
-        * @method resetAllButtons
-        * @description Resets all buttons to their initial state.
-        * @param {Object} _ex Except these buttons
-        * @return {Boolean}
-        */
-        resetAllButtons: function(_ex) {
-            if (!Lang.isObject(_ex)) {
-                _ex = {};
-            }
-            if (this.get('disabled')) {
-                return false;
-            }
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                var _button = this._buttonList[i];
-                if (_button) {
-                    var disabled = _button._configs.disabled._initialConfig.value;
-                    if (_ex[_button.get('id')]) {
-                        this.enableButton(_button);
-                        this.selectButton(_button);
-                    } else {
-                        if (disabled) {
-                            this.disableButton(_button);
-                        } else {
-                            this.enableButton(_button);
-                        }
-                        this.deselectButton(_button);
-                    }
-                }
-            }
-        },
-        /**
-        * @method destroyButton
-        * @description Destroy a button in the toolbar.
-        * @param {String/Number} id Destroy a button by it's id or index.
-        * @return {Boolean}
-        */
-        destroyButton: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                var thisID = button.get('id');
-                button.destroy();
-
-                var len = this._buttonList.length;
-                for (var i = 0; i < len; i++) {
-                    if (this._buttonList[i] && this._buttonList[i].get('id') == thisID) {
-                        this._buttonList[i] = null;
-                    }
-                }
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method destroy
-        * @description Destroys the toolbar, all of it's elements and objects.
-        * @return {Boolean}
-        */
-        destroy: function() {
-            this.get('element').innerHTML = '';
-            this.get('element').className = '';
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                }
-            }
-            return true;
-        },
-        /**
-        * @method collapse
-        * @description Programatically collapse the toolbar.
-        * @param {Boolean} collapse True to collapse, false to expand.
-        */
-        collapse: function(collapse) {
-            var el = Dom.getElementsByClassName('collapse', 'span', this._titlebar);
-            if (collapse === false) {
-                Dom.removeClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed');
-                if (el[0]) {
-                    Dom.removeClass(el[0], 'collapsed');
-                }
-                this.fireEvent('toolbarExpanded', { type: 'toolbarExpanded', target: this });
-            } else {
-                if (el[0]) {
-                    Dom.addClass(el[0], 'collapsed');
-                }
-                Dom.addClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed');
-                this.fireEvent('toolbarCollapsed', { type: 'toolbarCollapsed', target: this });
-            }
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the toolbar.
-        * @return {String}
-        */
-        toString: function() {
-            return 'Toolbar (#' + this.get('element').id + ') with ' + this._buttonList.length + ' buttons.';
-        }
-    });
-/**
-* @event buttonClick
-* @param {Object} o The object passed to this handler is the button config used to create the button.
-* @description Fires when any botton receives a click event. Passes back a single object representing the buttons config object. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event valueClick
-* @param {Object} o The object passed to this handler is the button config used to create the button.
-* @description This is a special dynamic event that is created and dispatched based on the value property
-* of the button config. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* Example:
-* <code><pre>
-* buttons : [
-*   { type: 'button', value: 'test', value: 'testButton' }
-* ]</pre>
-* </code>
-* With the valueClick event you could subscribe to this buttons click event with this:
-* tbar.in('testButtonClick', function() { alert('test button clicked'); })
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event toolbarExpanded
-* @description Fires when the toolbar is expanded via the collapse button. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event toolbarCollapsed
-* @description Fires when the toolbar is collapsed via the collapse button. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-})();
-/**
- * @description <p>The Rich Text Editor is a UI control that replaces a standard HTML textarea; it allows for the rich formatting of text content, including common structural treatments like lists, formatting treatments like bold and italic text, and drag-and-drop inclusion and sizing of images. The Rich Text Editor's toolbar is extensible via a plugin architecture so that advanced implementations can achieve a high degree of customization.</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event, toolbar
- * @optional animation, container_core, resize, dragdrop
- * @beta
- */
-
-(function() {
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang,
-    Toolbar = YAHOO.widget.Toolbar;
-
-    /**
-     * The Rich Text Editor is a UI control that replaces a standard HTML textarea; it allows for the rich formatting of text content, including common structural treatments like lists, formatting treatments like bold and italic text, and drag-and-drop inclusion and sizing of images. The Rich Text Editor's toolbar is extensible via a plugin architecture so that advanced implementations can achieve a high degree of customization.
-     * @constructor
-     * @class SimpleEditor
-     * @extends YAHOO.util.Element
-     * @param {String/HTMLElement} el The textarea element to turn into an editor.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    
-    YAHOO.widget.SimpleEditor = function(el, attrs) {
-        
-        var o = {};
-        if (Lang.isObject(el) && (!el.tagName) && !attrs) {
-            Lang.augmentObject(o, el); //Break the config reference
-            el = document.createElement('textarea');
-            this.DOMReady = true;
-            if (o.container) {
-                var c = Dom.get(o.container);
-                c.appendChild(el);
-            } else {
-                document.body.appendChild(el);
-            }
-        } else {
-            if (attrs) {
-                Lang.augmentObject(o, attrs); //Break the config reference
-            }
-        }
-
-        var oConfig = {
-            element: null,
-            attributes: o
-        }, id = null;
-
-        if (Lang.isString(el)) {
-            id = el;
-        } else {
-            if (oConfig.attributes.id) {
-                id = oConfig.attributes.id;
-            } else {
-                this.DOMReady = true;
-                id = Dom.generateId(el);
-            }
-        }
-        oConfig.element = el;
-
-        var element_cont = document.createElement('DIV');
-        oConfig.attributes.element_cont = new YAHOO.util.Element(element_cont, {
-            id: id + '_container'
-        });
-        var div = document.createElement('div');
-        Dom.addClass(div, 'first-child');
-        oConfig.attributes.element_cont.appendChild(div);
-        
-        if (!oConfig.attributes.toolbar_cont) {
-            oConfig.attributes.toolbar_cont = document.createElement('DIV');
-            oConfig.attributes.toolbar_cont.id = id + '_toolbar';
-            div.appendChild(oConfig.attributes.toolbar_cont);
-        }
-        var editorWrapper = document.createElement('DIV');
-        div.appendChild(editorWrapper);
-        oConfig.attributes.editor_wrapper = editorWrapper;
-
-        YAHOO.widget.SimpleEditor.superclass.constructor.call(this, oConfig.element, oConfig.attributes);
-    };
-
-
-    YAHOO.extend(YAHOO.widget.SimpleEditor, YAHOO.util.Element, {
-        /**
-        * @private
-        * @property _resizeConfig
-        * @description The default config for the Resize Utility
-        */
-        _resizeConfig: {
-            handles: ['br'],
-            autoRatio: true,
-            status: true,
-            proxy: true,
-            useShim: true,
-            setSize: false
-        },
-        /**
-        * @private
-        * @method _setupResize
-        * @description Creates the Resize instance and binds its events.
-        */
-        _setupResize: function() {
-            if (!YAHOO.util.DD || !YAHOO.util.Resize) { return false; }
-            if (this.get('resize')) {
-                var config = {};
-                Lang.augmentObject(config, this._resizeConfig); //Break the config reference
-                this.resize = new YAHOO.util.Resize(this.get('element_cont').get('element'), config);
-                this.resize.on('resize', function(args) {
-                    var anim = this.get('animate');
-                    this.set('animate', false);
-                    this.set('width', args.width + 'px');
-                    var h = args.height,
-                        th = (this.toolbar.get('element').clientHeight + 2),
-                        dh = 0;
-                    if (this.dompath) {
-                        dh = (this.dompath.clientHeight + 1); //It has a 1px top border..
-                    }
-                    var newH = (h - th - dh);
-                    this.set('height', newH + 'px');
-                    this.get('element_cont').setStyle('height', '');
-                    this.set('animate', anim);
-                }, this, true);
-            }
-        },
-        /**
-        * @property resize
-        * @description A reference to the Resize object
-        * @type YAHOO.util.Resize
-        */
-        resize: null,
-        _setupDD: function() {
-            if (!YAHOO.util.DD) { return false; }
-            if (this.get('drag')) {
-                var d = this.get('drag'),
-                    dd = YAHOO.util.DD;
-                if (d === 'proxy') {
-                    dd = YAHOO.util.DDProxy;
-                }
-
-                this.dd = new dd(this.get('element_cont').get('element'));
-                this.toolbar.addClass('draggable'); 
-                this.dd.setHandleElId(this.toolbar._titlebar); 
-            }
-        },
-        /**
-        * @property dd
-        * @description A reference to the DragDrop object.
-        * @type YAHOO.util.DD/YAHOO.util.DDProxy
-        */
-        dd: null,
-        /**
-        * @private
-        * @property _lastCommand
-        * @description A cache of the last execCommand (used for Undo/Redo so they don't mark an undo level)
-        * @type String
-        */
-        _lastCommand: null,
-        _undoNodeChange: function() {},
-        _storeUndo: function() {},
-        /**
-        * @private
-        * @method _checkKey
-        * @description Checks a keyMap entry against a key event
-        * @param {Object} k The _keyMap object
-        * @param {Event} e The Mouse Event
-        * @return {Boolean}
-        */
-        _checkKey: function(k, e) {
-            var ret = false;
-            if ((e.keyCode === k.key)) {
-                if (k.mods && (k.mods.length > 0)) {
-                    var val = 0;
-                    for (var i = 0; i < k.mods.length; i++) {
-                        if (this.browser.mac) {
-                            if (k.mods[i] == 'ctrl') {
-                                k.mods[i] = 'meta';
-                            }
-                        }
-                        if (e[k.mods[i] + 'Key'] === true) {
-                            val++;
-                        }
-                    }
-                    if (val === k.mods.length) {
-                        ret = true;
-                    }
-                } else {
-                    ret = true;
-                }
-            }
-            return ret;
-        },
-        /**
-        * @private
-        * @property _keyMap
-        * @description Named key maps for various actions in the Editor. Example: <code>CLOSE_WINDOW: { key: 87, mods: ['shift', 'ctrl'] }</code>. 
-        * This entry shows that when key 87 (W) is found with the modifiers of shift and control, the window will close. You can customize this object to tweak keyboard shortcuts.
-        * @type {Object/Mixed}
-        */
-        _keyMap: {
-            SELECT_ALL: {
-                key: 65, //A key
-                mods: ['ctrl']
-            },
-            CLOSE_WINDOW: {
-                key: 87, //W key
-                mods: ['shift', 'ctrl']
-            },
-            FOCUS_TOOLBAR: {
-                key: 27,
-                mods: ['shift']
-            },
-            FOCUS_AFTER: {
-                key: 27
-            },
-            CREATE_LINK: {
-                key: 76,
-                mods: ['shift', 'ctrl']
-            },
-            BOLD: {
-                key: 66,
-                mods: ['shift', 'ctrl']
-            },
-            ITALIC: {
-                key: 73,
-                mods: ['shift', 'ctrl']
-            },
-            UNDERLINE: {
-                key: 85,
-                mods: ['shift', 'ctrl']
-            },
-            UNDO: {
-                key: 90,
-                mods: ['ctrl']
-            },
-            REDO: {
-                key: 90,
-                mods: ['shift', 'ctrl']
-            },
-            JUSTIFY_LEFT: {
-                key: 219,
-                mods: ['shift', 'ctrl']
-            },
-            JUSTIFY_CENTER: {
-                key: 220,
-                mods: ['shift', 'ctrl']
-            },
-            JUSTIFY_RIGHT: {
-                key: 221,
-                mods: ['shift', 'ctrl']
-            }
-        },
-        /**
-        * @private
-        * @method _cleanClassName
-        * @description Makes a useable classname from dynamic data, by dropping it to lowercase and replacing spaces with -'s.
-        * @param {String} str The classname to clean up
-        * @return {String}
-        */
-        _cleanClassName: function(str) {
-            return str.replace(/ /g, '-').toLowerCase();
-        },
-        /**
-        * @property _textarea
-        * @description Flag to determine if we are using a textarea or an HTML Node.
-        * @type Boolean
-        */
-        _textarea: null,
-        /**
-        * @property _docType
-        * @description The DOCTYPE to use in the editable container.
-        * @type String
-        */
-        _docType: '<!DOCTYPE HTML PUBLIC "-/'+'/W3C/'+'/DTD HTML 4.01/'+'/EN" "http:/'+'/www.w3.org/TR/html4/strict.dtd">',
-        /**
-        * @property editorDirty
-        * @description This flag will be set when certain things in the Editor happen. It is to be used by the developer to check to see if content has changed.
-        * @type Boolean
-        */
-        editorDirty: null,
-        /**
-        * @property _defaultCSS
-        * @description The default CSS used in the config for 'css'. This way you can add to the config like this: { css: YAHOO.widget.SimpleEditor.prototype._defaultCSS + 'ADD MYY CSS HERE' }
-        * @type String
-        */
-        _defaultCSS: 'html { height: 95%; } body { padding: 7px; background-color: #fff; font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small; } a, a:visited, a:hover { color: blue !important; text-decoration: underline !important; cursor: text !important; } .warning-localfile { border-bottom: 1px dashed red !important; } .yui-busy { cursor: wait !important; } img.selected { border: 2px dotted #808080; } img { cursor: pointer !important; border: none; } body.ptags.webkit div { margin: 11px 0; }',
-        /**
-        * @property _defaultToolbar
-        * @private
-        * @description Default toolbar config.
-        * @type Object
-        */
-        _defaultToolbar: null,
-        /**
-        * @property _lastButton
-        * @private
-        * @description The last button pressed, so we don't disable it.
-        * @type Object
-        */
-        _lastButton: null,
-        /**
-        * @property _baseHREF
-        * @private
-        * @description The base location of the editable page (this page) so that relative paths for image work.
-        * @type String
-        */
-        _baseHREF: function() {
-            var href = document.location.href;
-            if (href.indexOf('?') !== -1) { //Remove the query string
-                href = href.substring(0, href.indexOf('?'));
-            }
-            href = href.substring(0, href.lastIndexOf('/')) + '/';
-            return href;
-        }(),
-        /**
-        * @property _lastImage
-        * @private
-        * @description Safari reference for the last image selected (for styling as selected).
-        * @type HTMLElement
-        */
-        _lastImage: null,
-        /**
-        * @property _blankImageLoaded
-        * @private
-        * @description Don't load the blank image more than once..
-        * @type Boolean
-        */
-        _blankImageLoaded: null,
-        /**
-        * @property _fixNodesTimer
-        * @private
-        * @description Holder for the fixNodes timer
-        * @type Date
-        */
-        _fixNodesTimer: null,
-        /**
-        * @property _nodeChangeTimer
-        * @private
-        * @description Holds a reference to the nodeChange setTimeout call
-        * @type Number
-        */
-        _nodeChangeTimer: null,
-        /**
-        * @property _lastNodeChangeEvent
-        * @private
-        * @description Flag to determine the last event that fired a node change
-        * @type Event
-        */
-        _lastNodeChangeEvent: null,
-        /**
-        * @property _lastNodeChange
-        * @private
-        * @description Flag to determine when the last node change was fired
-        * @type Date
-        */
-        _lastNodeChange: 0,
-        /**
-        * @property _rendered
-        * @private
-        * @description Flag to determine if editor has been rendered or not
-        * @type Boolean
-        */
-        _rendered: null,
-        /**
-        * @property DOMReady
-        * @private
-        * @description Flag to determine if DOM is ready or not
-        * @type Boolean
-        */
-        DOMReady: null,
-        /**
-        * @property _selection
-        * @private
-        * @description Holder for caching iframe selections
-        * @type Object
-        */
-        _selection: null,
-        /**
-        * @property _mask
-        * @private
-        * @description DOM Element holder for the editor Mask when disabled
-        * @type Object
-        */
-        _mask: null,
-        /**
-        * @property _showingHiddenElements
-        * @private
-        * @description Status of the hidden elements button
-        * @type Boolean
-        */
-        _showingHiddenElements: null,
-        /**
-        * @property currentWindow
-        * @description A reference to the currently open EditorWindow
-        * @type Object
-        */
-        currentWindow: null,
-        /**
-        * @property currentEvent
-        * @description A reference to the current editor event
-        * @type Event
-        */
-        currentEvent: null,
-        /**
-        * @property operaEvent
-        * @private
-        * @description setTimeout holder for Opera and Image DoubleClick event..
-        * @type Object
-        */
-        operaEvent: null,
-        /**
-        * @property currentFont
-        * @description A reference to the last font selected from the Toolbar
-        * @type HTMLElement
-        */
-        currentFont: null,
-        /**
-        * @property currentElement
-        * @description A reference to the current working element in the editor
-        * @type Array
-        */
-        currentElement: null,
-        /**
-        * @property dompath
-        * @description A reference to the dompath container for writing the current working dom path to.
-        * @type HTMLElement
-        */
-        dompath: null,
-        /**
-        * @property beforeElement
-        * @description A reference to the H2 placed before the editor for Accessibilty.
-        * @type HTMLElement
-        */
-        beforeElement: null,
-        /**
-        * @property afterElement
-        * @description A reference to the H2 placed after the editor for Accessibilty.
-        * @type HTMLElement
-        */
-        afterElement: null,
-        /**
-        * @property invalidHTML
-        * @description Contains a list of HTML elements that are invalid inside the editor. They will be removed when they are found. If you set the value of a key to "{ keepContents: true }", then the element will be replaced with a yui-non span to be filtered out when cleanHTML is called. The only tag that is ignored here is the span tag as it will force the Editor into a loop and freeze the browser. However.. all of these tags will be removed in the cleanHTML routine.
-        * @type Object
-        */
-        invalidHTML: {
-            form: true,
-            input: true,
-            button: true,
-            select: true,
-            link: true,
-            html: true,
-            body: true,
-            iframe: true,
-            script: true,
-            style: true,
-            textarea: true
-        },
-        /**
-        * @property toolbar
-        * @description Local property containing the <a href="YAHOO.widget.Toolbar.html">YAHOO.widget.Toolbar</a> instance
-        * @type <a href="YAHOO.widget.Toolbar.html">YAHOO.widget.Toolbar</a>
-        */
-        toolbar: null,
-        /**
-        * @private
-        * @property _contentTimer
-        * @description setTimeout holder for documentReady check
-        */
-        _contentTimer: null,
-        /**
-        * @private
-        * @property _contentTimerCounter
-        * @description Counter to check the number of times the body is polled for before giving up
-        * @type Number
-        */
-        _contentTimerCounter: 0,
-        /**
-        * @private
-        * @property _disabled
-        * @description The Toolbar items that should be disabled if there is no selection present in the editor.
-        * @type Array
-        */
-        _disabled: [ 'createlink', 'fontname', 'fontsize', 'forecolor', 'backcolor' ],
-        /**
-        * @private
-        * @property _alwaysDisabled
-        * @description The Toolbar items that should ALWAYS be disabled event if there is a selection present in the editor.
-        * @type Object
-        */
-        _alwaysDisabled: { undo: true, redo: true },
-        /**
-        * @private
-        * @property _alwaysEnabled
-        * @description The Toolbar items that should ALWAYS be enabled event if there isn't a selection present in the editor.
-        * @type Object
-        */
-        _alwaysEnabled: { },
-        /**
-        * @private
-        * @property _semantic
-        * @description The Toolbar commands that we should attempt to make tags out of instead of using styles.
-        * @type Object
-        */
-        _semantic: { 'bold': true, 'italic' : true, 'underline' : true },
-        /**
-        * @private
-        * @property _tag2cmd
-        * @description A tag map of HTML tags to convert to the different types of commands so we can select the proper toolbar button.
-        * @type Object
-        */
-        _tag2cmd: {
-            'b': 'bold',
-            'strong': 'bold',
-            'i': 'italic',
-            'em': 'italic',
-            'u': 'underline',
-            'sup': 'superscript',
-            'sub': 'subscript',
-            'img': 'insertimage',
-            'a' : 'createlink',
-            'ul' : 'insertunorderedlist',
-            'ol' : 'insertorderedlist'
-        },
-
-        /**
-        * @private _createIframe
-        * @description Creates the DOM and YUI Element for the iFrame editor area.
-        * @param {String} id The string ID to prefix the iframe with
-        * @return {Object} iFrame object
-        */
-        _createIframe: function() {
-            var ifrmDom = document.createElement('iframe');
-            ifrmDom.id = this.get('id') + '_editor';
-            var config = {
-                border: '0',
-                frameBorder: '0',
-                marginWidth: '0',
-                marginHeight: '0',
-                leftMargin: '0',
-                topMargin: '0',
-                allowTransparency: 'true',
-                width: '100%'
-            };
-            if (this.get('autoHeight')) {
-                config.scrolling = 'no';
-            }
-            for (var i in config) {
-                if (Lang.hasOwnProperty(config, i)) {
-                    ifrmDom.setAttribute(i, config[i]);
-                }
-            }
-            var isrc = 'javascript:;';
-            if (this.browser.ie) {
-                //isrc = 'about:blank';
-                //TODO - Check this, I have changed it before..
-                isrc = 'javascript:false;';
-            }
-            ifrmDom.setAttribute('src', isrc);
-            var ifrm = new YAHOO.util.Element(ifrmDom);
-            ifrm.setStyle('visibility', 'hidden');
-            return ifrm;
-        },
-        /**
-        * @private _isElement
-        * @description Checks to see if an Element reference is a valid one and has a certain tag type
-        * @param {HTMLElement} el The element to check
-        * @param {String} tag The tag that the element needs to be
-        * @return {Boolean}
-        */
-        _isElement: function(el, tag) {
-            if (el && el.tagName && (el.tagName.toLowerCase() == tag)) {
-                return true;
-            }
-            if (el && el.getAttribute && (el.getAttribute('tag') == tag)) {
-                return true;
-            }
-            return false;
-        },
-        /**
-        * @private _hasParent
-        * @description Checks to see if an Element reference or one of it's parents is a valid one and has a certain tag type
-        * @param {HTMLElement} el The element to check
-        * @param {String} tag The tag that the element needs to be
-        * @return HTMLElement
-        */
-        _hasParent: function(el, tag) {
-            if (!el || !el.parentNode) {
-                return false;
-            }
-            
-            while (el.parentNode) {
-                if (this._isElement(el, tag)) {
-                    return el;
-                }
-                if (el.parentNode) {
-                    el = el.parentNode;
-                } else {
-                    return false;
-                }
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _getDoc
-        * @description Get the Document of the IFRAME
-        * @return {Object}
-        */
-        _getDoc: function() {
-            var value = false;
-            if (this.get) {
-                if (this.get('iframe')) {
-                    if (this.get('iframe').get) {
-                        if (this.get('iframe').get('element')) {
-                            try {
-                                if (this.get('iframe').get('element').contentWindow) {
-                                    if (this.get('iframe').get('element').contentWindow.document) {
-                                        value = this.get('iframe').get('element').contentWindow.document;
-                                        return value;
-                                    }
-                                }
-                            } catch (e) {}
-                        }
-                    }
-                }
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _getWindow
-        * @description Get the Window of the IFRAME
-        * @return {Object}
-        */
-        _getWindow: function() {
-            return this.get('iframe').get('element').contentWindow;
-        },
-        /**
-        * @private
-        * @method _focusWindow
-        * @description Attempt to set the focus of the iframes window.
-        * @param {Boolean} onLoad Safari needs some special care to set the cursor in the iframe
-        */
-        _focusWindow: function(onLoad) {
-            if (this.browser.webkit) {
-                if (onLoad) {
-                    /**
-                    * @knownissue Safari Cursor Position
-                    * @browser Safari 2.x
-                    * @description Can't get Safari to place the cursor at the beginning of the text..
-                    * This workaround at least set's the toolbar into the proper state.
-                    */
-                    this._getSelection().setBaseAndExtent(this._getDoc().body.firstChild, 0, this._getDoc().body.firstChild, 1);
-                    if (this.browser.webkit3) {
-                        this._getSelection().collapseToStart();
-                    } else {
-                        this._getSelection().collapse(false);
-                    }
-                } else {
-                    this._getSelection().setBaseAndExtent(this._getDoc().body, 1, this._getDoc().body, 1);
-                    if (this.browser.webkit3) {
-                        this._getSelection().collapseToStart();
-                    } else {
-                        this._getSelection().collapse(false);
-                    }
-                }
-                this._getWindow().focus();
-            } else {
-                this._getWindow().focus();
-            }
-        },
-        /**
-        * @private
-        * @method _hasSelection
-        * @description Determines if there is a selection in the editor document.
-        * @return {Boolean}
-        */
-        _hasSelection: function() {
-            var sel = this._getSelection();
-            var range = this._getRange();
-            var hasSel = false;
-
-            if (!sel || !range) {
-                return hasSel;
-            }
-
-            //Internet Explorer
-            if (this.browser.ie || this.browser.opera) {
-                if (range.text) {
-                    hasSel = true;
-                }
-                if (range.html) {
-                    hasSel = true;
-                }
-            } else {
-                if (this.browser.webkit) {
-                    if (sel+'' !== '') {
-                        hasSel = true;
-                    }
-                } else {
-                    if (sel && (sel.toString() !== '') && (sel !== undefined)) {
-                        hasSel = true;
-                    }
-                }
-            }
-            return hasSel;
-        },
-        /**
-        * @private
-        * @method _getSelection
-        * @description Handles the different selection objects across the A-Grade list.
-        * @return {Object} Selection Object
-        */
-        _getSelection: function() {
-            var _sel = null;
-            if (this._getDoc() && this._getWindow()) {
-                if (this._getDoc().selection) {
-                    _sel = this._getDoc().selection;
-                } else {
-                    _sel = this._getWindow().getSelection();
-                }
-                //Handle Safari's lack of Selection Object
-                if (this.browser.webkit) {
-                    if (_sel.baseNode) {
-                            this._selection = {};
-                            this._selection.baseNode = _sel.baseNode;
-                            this._selection.baseOffset = _sel.baseOffset;
-                            this._selection.extentNode = _sel.extentNode;
-                            this._selection.extentOffset = _sel.extentOffset;
-                    } else if (this._selection !== null) {
-                        _sel = this._getWindow().getSelection();
-                        _sel.setBaseAndExtent(
-                            this._selection.baseNode,
-                            this._selection.baseOffset,
-                            this._selection.extentNode,
-                            this._selection.extentOffset);
-                        this._selection = null;
-                    }
-                }
-            }
-            return _sel;
-        },
-        /**
-        * @private
-        * @method _selectNode
-        * @description Places the highlight around a given node
-        * @param {HTMLElement} node The node to select
-        */
-        _selectNode: function(node, collapse) {
-            if (!node) {
-                return false;
-            }
-            var sel = this._getSelection(),
-                range = null;
-
-            if (this.browser.ie) {
-                try { //IE freaks out here sometimes..
-                    range = this._getDoc().body.createTextRange();
-                    range.moveToElementText(node);
-                    range.select();
-                } catch (e) {
-                }
-            } else if (this.browser.webkit) {
-                if (collapse) {
-				    sel.setBaseAndExtent(node, 1, node, node.innerText.length);
-                } else {
-				    sel.setBaseAndExtent(node, 0, node, node.innerText.length);
-                }
-            } else if (this.browser.opera) {
-                sel = this._getWindow().getSelection();
-                range = this._getDoc().createRange();
-                range.selectNode(node);
-                sel.removeAllRanges();
-                sel.addRange(range);
-            } else {
-                range = this._getDoc().createRange();
-                range.selectNodeContents(node);
-                sel.removeAllRanges();
-                sel.addRange(range);
-            }
-            //TODO - Check Performance
-            this.nodeChange();
-        },
-        /**
-        * @private
-        * @method _getRange
-        * @description Handles the different range objects across the A-Grade list.
-        * @return {Object} Range Object
-        */
-        _getRange: function() {
-            var sel = this._getSelection();
-
-            if (sel === null) {
-                return null;
-            }
-
-            if (this.browser.webkit && !sel.getRangeAt) {
-                var _range = this._getDoc().createRange();
-                try {
-                    _range.setStart(sel.anchorNode, sel.anchorOffset);
-                    _range.setEnd(sel.focusNode, sel.focusOffset);
-                } catch (e) {
-                    _range = this._getWindow().getSelection()+'';
-                }
-                return _range;
-            }
-
-            if (this.browser.ie || this.browser.opera) {
-                try {
-                    return sel.createRange();
-                } catch (e2) {
-                    return null;
-                }
-            }
-
-            if (sel.rangeCount > 0) {
-                return sel.getRangeAt(0);
-            }
-            return null;
-        },
-        /**
-        * @private
-        * @method _setDesignMode
-        * @description Sets the designMode of the iFrame document.
-        * @param {String} state This should be either on or off
-        */
-        _setDesignMode: function(state) {
-            try {
-                var set = true;
-                //SourceForge Bug #1807057
-                if (this.browser.ie && (state.toLowerCase() == 'off')) {
-                    set = false;
-                }
-                if (set) {
-                    this._getDoc().designMode = state;
-                }
-            } catch(e) { }
-        },
-        /**
-        * @private
-        * @method _toggleDesignMode
-        * @description Toggles the designMode of the iFrame document on and off.
-        * @return {String} The state that it was set to.
-        */
-        _toggleDesignMode: function() {
-            var _dMode = this._getDoc().designMode.toLowerCase(),
-                _state = 'on';
-            if (_dMode == 'on') {
-                _state = 'off';
-            }
-            this._setDesignMode(_state);
-            return _state;
-        },
-        /**
-        * @private
-        * @method _initEditorEvents
-        * @description This method sets up the listeners on the Editors document.
-        */
-        _initEditorEvents: function() {
-            //Setup Listeners on iFrame
-            var doc = this._getDoc();
-            Event.on(doc, 'mouseup', this._handleMouseUp, this, true);
-            Event.on(doc, 'mousedown', this._handleMouseDown, this, true);
-            Event.on(doc, 'click', this._handleClick, this, true);
-            Event.on(doc, 'dblclick', this._handleDoubleClick, this, true);
-            Event.on(doc, 'keypress', this._handleKeyPress, this, true);
-            Event.on(doc, 'keyup', this._handleKeyUp, this, true);
-            Event.on(doc, 'keydown', this._handleKeyDown, this, true);
-        },
-        /**
-        * @private
-        * @method _removeEditorEvents
-        * @description This method removes the listeners on the Editors document (for disabling).
-        */
-        _removeEditorEvents: function() {
-            //Remove Listeners on iFrame
-            var doc = this._getDoc();
-            Event.removeListener(doc, 'mouseup', this._handleMouseUp, this, true);
-            Event.removeListener(doc, 'mousedown', this._handleMouseDown, this, true);
-            Event.removeListener(doc, 'click', this._handleClick, this, true);
-            Event.removeListener(doc, 'dblclick', this._handleDoubleClick, this, true);
-            Event.removeListener(doc, 'keypress', this._handleKeyPress, this, true);
-            Event.removeListener(doc, 'keyup', this._handleKeyUp, this, true);
-            Event.removeListener(doc, 'keydown', this._handleKeyDown, this, true);
-        },
-        /**
-        * @private
-        * @method _initEditor
-        * @description This method is fired from _checkLoaded when the document is ready. It turns on designMode and set's up the listeners.
-        */
-        _initEditor: function() {
-            if (this.browser.ie) {
-                this._getDoc().body.style.margin = '0';
-            }
-            if (!this.get('disabled')) {
-                if (this._getDoc().designMode.toLowerCase() != 'on') {
-                    this._setDesignMode('on');
-                    this._contentTimerCounter = 0;
-                }
-            }
-            if (!this._getDoc().body) {
-                this._contentTimerCounter = 0;
-                this._checkLoaded();
-                return false;
-            }
-            
-            this.toolbar.on('buttonClick', this._handleToolbarClick, this, true);
-            if (!this.get('disabled')) {
-                this._initEditorEvents();
-                this.toolbar.set('disabled', false);
-            }
-
-            this.fireEvent('editorContentLoaded', { type: 'editorLoaded', target: this });
-            if (this.get('dompath')) {
-                var self = this;
-                setTimeout(function() {
-                    self._writeDomPath.call(self);
-                    self._setupResize.call(self);
-                }, 150);
-            }
-            var br = [];
-            for (var i in this.browser) {
-                if (this.browser[i]) {
-                    br.push(i);
-                }
-            }
-            if (this.get('ptags')) {
-                br.push('ptags');
-            }
-            Dom.addClass(this._getDoc().body, br.join(' '));
-            this.nodeChange(true);
-        },
-        /**
-        * @private
-        * @method _checkLoaded
-        * @description Called from a setTimeout loop to check if the iframes body.onload event has fired, then it will init the editor.
-        */
-        _checkLoaded: function() {
-            this._contentTimerCounter++;
-            if (this._contentTimer) {
-                clearTimeout(this._contentTimer);
-            }
-            if (this._contentTimerCounter > 500) {
-                return false;
-            }
-            var init = false;
-            try {
-                if (this._getDoc() && this._getDoc().body) {
-                    if (this.browser.ie) {
-                        if (this._getDoc().body.readyState == 'complete') {
-                            init = true;
-                        }
-                    } else {
-                        if (this._getDoc().body._rteLoaded === true) {
-                            init = true;
-                        }
-                    }
-                }
-            } catch (e) {
-                init = false;
-            }
-
-            if (init === true) {
-                //The onload event has fired, clean up after ourselves and fire the _initEditor method
-                this._initEditor();
-            } else {
-                var self = this;
-                this._contentTimer = setTimeout(function() {
-                    self._checkLoaded.call(self);
-                }, 20);
-            }
-        },
-        /**
-        * @private
-        * @method _setInitialContent
-        * @description This method will open the iframes content document and write the textareas value into it, then start the body.onload checking.
-        */
-        _setInitialContent: function() {
-
-            var value = ((this._textarea) ? this.get('element').value : this.get('element').innerHTML),
-                doc = null;
-
-            var html = Lang.substitute(this.get('html'), {
-                TITLE: this.STR_TITLE,
-                CONTENT: this._cleanIncomingHTML(value),
-                CSS: this.get('css'),
-                HIDDEN_CSS: ((this.get('hiddencss')) ? this.get('hiddencss') : '/* No Hidden CSS */'),
-                EXTRA_CSS: ((this.get('extracss')) ? this.get('extracss') : '/* No Extra CSS */')
-            }),
-            check = true;
-            if (document.compatMode != 'BackCompat') {
-                html = this._docType + "\n" + html;
-            } else {
-            }
-
-            if (this.browser.ie || this.browser.webkit || this.browser.opera || (navigator.userAgent.indexOf('Firefox/1.5') != -1)) {
-                //Firefox 1.5 doesn't like setting designMode on an document created with a data url
-                try {
-                    //Adobe AIR Code
-                    if (this.browser.air) {
-                        doc = this._getDoc().implementation.createHTMLDocument();
-                        var origDoc = this._getDoc();
-                        origDoc.open();
-                        origDoc.close();
-                        doc.open();
-                        doc.write(html);
-                        doc.close();
-                        var node = origDoc.importNode(doc.getElementsByTagName("html")[0], true);
-                        origDoc.replaceChild(node, origDoc.getElementsByTagName("html")[0]);
-                        origDoc.body._rteLoaded = true;
-                    } else {
-                        doc = this._getDoc();
-                        doc.open();
-                        doc.write(html);
-                        doc.close();
-                    }
-                } catch (e) {
-                    //Safari will only be here if we are hidden
-                    check = false;
-                }
-            } else {
-                //This keeps Firefox 2 from writing the iframe to history preserving the back buttons functionality
-                this.get('iframe').get('element').src = 'data:text/html;charset=utf-8,' + encodeURIComponent(html);
-            }
-            this.get('iframe').setStyle('visibility', '');
-            if (check) {
-                this._checkLoaded();
-            }            
-        },
-        /**
-        * @private
-        * @method _setMarkupType
-        * @param {String} action The action to take. Possible values are: css, default or semantic
-        * @description This method will turn on/off the useCSS execCommand.
-        */
-        _setMarkupType: function(action) {
-            switch (this.get('markup')) {
-                case 'css':
-                    this._setEditorStyle(true);
-                    break;
-                case 'default':
-                    this._setEditorStyle(false);
-                    break;
-                case 'semantic':
-                case 'xhtml':
-                    if (this._semantic[action]) {
-                        this._setEditorStyle(false);
-                    } else {
-                        this._setEditorStyle(true);
-                    }
-                    break;
-            }
-        },
-        /**
-        * Set the editor to use CSS instead of HTML
-        * @param {Booleen} stat True/False
-        */
-        _setEditorStyle: function(stat) {
-            try {
-                this._getDoc().execCommand('useCSS', false, !stat);
-            } catch (ex) {
-            }
-        },
-        /**
-        * @private
-        * @method _getSelectedElement
-        * @description This method will attempt to locate the element that was last interacted with, either via selection, location or event.
-        * @return {HTMLElement} The currently selected element.
-        */
-        _getSelectedElement: function() {
-            var doc = this._getDoc(),
-                range = null,
-                sel = null,
-                elm = null,
-                check = true;
-
-            if (this.browser.ie) {
-                this.currentEvent = this._getWindow().event; //Event utility assumes window.event, so we need to reset it to this._getWindow().event;
-                range = this._getRange();
-                if (range) {
-                    elm = range.item ? range.item(0) : range.parentElement();
-                    if (this._hasSelection()) {
-                        //TODO
-                        //WTF.. Why can't I get an element reference here?!??!
-                    }
-                    if (elm === doc.body) {
-                        elm = null;
-                    }
-                }
-                if ((this.currentEvent !== null) && (this.currentEvent.keyCode === 0)) {
-                    elm = Event.getTarget(this.currentEvent);
-                }
-            } else {
-                sel = this._getSelection();
-                range = this._getRange();
-
-                if (!sel || !range) {
-                    return null;
-                }
-                //TODO
-                if (!this._hasSelection() && this.browser.webkit3) {
-                    //check = false;
-                }
-                if (this.browser.gecko) {
-                    //Added in 2.6.0
-                    if (range.startContainer) {
-                        check = false;
-                        if (range.startContainer.nodeType === 3) {
-                            elm = range.startContainer.parentNode;
-                        } else if (range.startContainer.nodeType === 1) {
-                            elm = range.startContainer;
-                        } else {
-                            check = true;
-                        }
-                        if (!check) {
-                            this.currentEvent = null;
-                        }
-                    }
-                }
-                if (check) {
-                    if (sel.anchorNode && (sel.anchorNode.nodeType == 3)) {
-                        if (sel.anchorNode.parentNode) { //next check parentNode
-                            elm = sel.anchorNode.parentNode;
-                        }
-                        if (sel.anchorNode.nextSibling != sel.focusNode.nextSibling) {
-                            elm = sel.anchorNode.nextSibling;
-                        }
-                    }
-                    if (this._isElement(elm, 'br')) {
-                        elm = null;
-                    }
-                    if (!elm) {
-                        elm = range.commonAncestorContainer;
-                        if (!range.collapsed) {
-                            if (range.startContainer == range.endContainer) {
-                                if (range.startOffset - range.endOffset < 2) {
-                                    if (range.startContainer.hasChildNodes()) {
-                                        elm = range.startContainer.childNodes[range.startOffset];
-                                    }
-                                }
-                            }
-                        }
-                    }
-               }
-            }
-            
-            if (this.currentEvent !== null) {
-                try {
-                    switch (this.currentEvent.type) {
-                        case 'click':
-                        case 'mousedown':
-                        case 'mouseup':
-                            if (this.browser.webkit) {
-                                elm = Event.getTarget(this.currentEvent);
-                            }
-                            break;
-                        default:
-                            //Do nothing
-                            break;
-                    }
-                } catch (e) {
-                }
-            } else if ((this.currentElement && this.currentElement[0]) && (!this.browser.ie)) {
-                //TODO is this still needed?
-                //elm = this.currentElement[0];
-            }
-
-
-            if (this.browser.opera || this.browser.webkit) {
-                if (this.currentEvent && !elm) {
-                    elm = YAHOO.util.Event.getTarget(this.currentEvent);
-                }
-            }
-            if (!elm || !elm.tagName) {
-                elm = doc.body;
-            }
-            if (this._isElement(elm, 'html')) {
-                //Safari sometimes gives us the HTML node back..
-                elm = doc.body;
-            }
-            if (this._isElement(elm, 'body')) {
-                //make sure that body means this body not the parent..
-                elm = doc.body;
-            }
-            if (elm && !elm.parentNode) { //Not in document
-                elm = doc.body;
-            }
-            if (elm === undefined) {
-                elm = null;
-            }
-            return elm;
-        },
-        /**
-        * @private
-        * @method _getDomPath
-        * @description This method will attempt to build the DOM path from the currently selected element.
-        * @param HTMLElement el The element to start with, if not provided _getSelectedElement is used
-        * @return {Array} An array of node references that will create the DOM Path.
-        */
-        _getDomPath: function(el) {
-            if (!el) {
-			    el = this._getSelectedElement();
-            }
-			var domPath = [];
-            while (el !== null) {
-                if (el.ownerDocument != this._getDoc()) {
-                    el = null;
-                    break;
-                }
-                //Check to see if we get el.nodeName and nodeType
-                if (el.nodeName && el.nodeType && (el.nodeType == 1)) {
-                    domPath[domPath.length] = el;
-                }
-
-                if (this._isElement(el, 'body')) {
-                    break;
-                }
-
-                el = el.parentNode;
-            }
-            if (domPath.length === 0) {
-                if (this._getDoc() && this._getDoc().body) {
-                    domPath[0] = this._getDoc().body;
-                }
-            }
-            return domPath.reverse();
-        },
-        /**
-        * @private
-        * @method _writeDomPath
-        * @description Write the current DOM path out to the dompath container below the editor.
-        */
-        _writeDomPath: function() { 
-            var path = this._getDomPath(),
-                pathArr = [],
-                classPath = '',
-                pathStr = '';
-            for (var i = 0; i < path.length; i++) {
-                var tag = path[i].tagName.toLowerCase();
-                if ((tag == 'ol') && (path[i].type)) {
-                    tag += ':' + path[i].type;
-                }
-                if (Dom.hasClass(path[i], 'yui-tag')) {
-                    tag = path[i].getAttribute('tag');
-                }
-                if ((this.get('markup') == 'semantic') || (this.get('markup') == 'xhtml')) {
-                    switch (tag) {
-                        case 'b': tag = 'strong'; break;
-                        case 'i': tag = 'em'; break;
-                    }
-                }
-                if (!Dom.hasClass(path[i], 'yui-non')) {
-                    if (Dom.hasClass(path[i], 'yui-tag')) {
-                        pathStr = tag;
-                    } else {
-                        classPath = ((path[i].className !== '') ? '.' + path[i].className.replace(/ /g, '.') : '');
-                        if ((classPath.indexOf('yui') != -1) || (classPath.toLowerCase().indexOf('apple-style-span') != -1)) {
-                            classPath = '';
-                        }
-                        pathStr = tag + ((path[i].id) ? '#' + path[i].id : '') + classPath;
-                    }
-                    switch (tag) {
-                        case 'body':
-                            pathStr = 'body';
-                            break;
-                        case 'a':
-                            if (path[i].getAttribute('href', 2)) {
-                                pathStr += ':' + path[i].getAttribute('href', 2).replace('mailto:', '').replace('http:/'+'/', '').replace('https:/'+'/', ''); //May need to add others here ftp
-                            }
-                            break;
-                        case 'img':
-                            var h = path[i].height;
-                            var w = path[i].width;
-                            if (path[i].style.height) {
-                                h = parseInt(path[i].style.height, 10);
-                            }
-                            if (path[i].style.width) {
-                                w = parseInt(path[i].style.width, 10);
-                            }
-                            pathStr += '(' + w + 'x' + h + ')';
-                        break;
-                    }
-
-                    if (pathStr.length > 10) {
-                        pathStr = '<span title="' + pathStr + '">' + pathStr.substring(0, 10) + '...' + '</span>';
-                    } else {
-                        pathStr = '<span title="' + pathStr + '">' + pathStr + '</span>';
-                    }
-                    pathArr[pathArr.length] = pathStr;
-                }
-            }
-            var str = pathArr.join(' ' + this.SEP_DOMPATH + ' ');
-            //Prevent flickering
-            if (this.dompath.innerHTML != str) {
-                this.dompath.innerHTML = str;
-            }
-        },
-        /**
-        * @private
-        * @method _fixNodes
-        * @description Fix href and imgs as well as remove invalid HTML.
-        */
-        _fixNodes: function() {
-            var doc = this._getDoc(),
-                els = [];
-
-            for (var v in this.invalidHTML) {
-                if (YAHOO.lang.hasOwnProperty(this.invalidHTML, v)) {
-                    if (v.toLowerCase() != 'span') {
-                        var tags = doc.body.getElementsByTagName(v);
-                        if (tags.length) {
-                            for (var i = 0; i < tags.length; i++) {
-                                els.push(tags[i]);
-                            }
-                        }
-                    }
-                }
-            }
-            for (var h = 0; h < els.length; h++) {
-                if (els[h].parentNode) {
-                    if (Lang.isObject(this.invalidHTML[els[h].tagName.toLowerCase()]) && this.invalidHTML[els[h].tagName.toLowerCase()].keepContents) {
-                        this._swapEl(els[h], 'span', function(el) {
-                            el.className = 'yui-non';
-                        });
-                    } else {
-                        els[h].parentNode.removeChild(els[h]);
-                    }
-                }
-            }
-            var imgs = this._getDoc().getElementsByTagName('img');
-            Dom.addClass(imgs, 'yui-img');   
-        },
-        /**
-        * @private
-        * @method _isNonEditable
-        * @param Event ev The Dom event being checked
-        * @description Method is called at the beginning of all event handlers to check if this element or a parent element has the class yui-noedit (this.CLASS_NOEDIT) applied.
-        * If it does, then this method will stop the event and return true. The event handlers will then return false and stop the nodeChange from occuring. This method will also
-        * disable and enable the Editor's toolbar based on the noedit state.
-        * @return Boolean
-        */
-        _isNonEditable: function(ev) {
-            if (this.get('allowNoEdit')) {
-                var el = Event.getTarget(ev);
-                if (this._isElement(el, 'html')) {
-                    el = null;
-                }
-                var path = this._getDomPath(el);
-                for (var i = (path.length - 1); i > -1; i--) {
-                    if (Dom.hasClass(path[i], this.CLASS_NOEDIT)) {
-                        //if (this.toolbar.get('disabled') === false) {
-                        //    this.toolbar.set('disabled', true);
-                        //}
-                        try {
-                             this._getDoc().execCommand('enableObjectResizing', false, 'false');
-                        } catch (e) {}
-                        this.nodeChange();
-                        Event.stopEvent(ev);
-                        return true;
-                    }
-                }
-                //if (this.toolbar.get('disabled') === true) {
-                    //Should only happen once..
-                    //this.toolbar.set('disabled', false);
-                    try {
-                         this._getDoc().execCommand('enableObjectResizing', false, 'true');
-                    } catch (e2) {}
-                //}
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _setCurrentEvent
-        * @param {Event} ev The event to cache
-        * @description Sets the current event property
-        */
-        _setCurrentEvent: function(ev) {
-            this.currentEvent = ev;
-        },
-        /**
-        * @private
-        * @method _handleClick
-        * @param {Event} ev The event we are working on.
-        * @description Handles all click events inside the iFrame document.
-        */
-        _handleClick: function(ev) {
-            var ret = this.fireEvent('beforeEditorClick', { type: 'beforeEditorClick', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this.browser.webkit) {
-                var tar =Event.getTarget(ev);
-                if (this._isElement(tar, 'a') || this._isElement(tar.parentNode, 'a')) {
-                    Event.stopEvent(ev);
-                    this.nodeChange();
-                }
-            } else {
-                this.nodeChange();
-            }
-            this.fireEvent('editorClick', { type: 'editorClick', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleMouseUp
-        * @param {Event} ev The event we are working on.
-        * @description Handles all mouseup events inside the iFrame document.
-        */
-        _handleMouseUp: function(ev) {
-            var ret = this.fireEvent('beforeEditorMouseUp', { type: 'beforeEditorMouseUp', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            //Don't set current event for mouseup.
-            //It get's fired after a menu is closed and gives up a bogus event to work with
-            //this._setCurrentEvent(ev);
-            var self = this;
-            if (this.browser.opera) {
-                /**
-                * @knownissue Opera appears to stop the MouseDown, Click and DoubleClick events on an image inside of a document with designMode on..
-                * @browser Opera
-                * @description This work around traps the MouseUp event and sets a timer to check if another MouseUp event fires in so many seconds. If another event is fired, they we internally fire the DoubleClick event.
-                */
-                var sel = Event.getTarget(ev);
-                if (this._isElement(sel, 'img')) {
-                    this.nodeChange();
-                    if (this.operaEvent) {
-                        clearTimeout(this.operaEvent);
-                        this.operaEvent = null;
-                        this._handleDoubleClick(ev);
-                    } else {
-                        this.operaEvent = window.setTimeout(function() {
-                            self.operaEvent = false;
-                        }, 700);
-                    }
-                }
-            }
-            //This will stop Safari from selecting the entire document if you select all the text in the editor
-            if (this.browser.webkit || this.browser.opera) {
-                if (this.browser.webkit) {
-                    Event.stopEvent(ev);
-                }
-            }
-            this.nodeChange();
-            this.fireEvent('editorMouseUp', { type: 'editorMouseUp', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleMouseDown
-        * @param {Event} ev The event we are working on.
-        * @description Handles all mousedown events inside the iFrame document.
-        */
-        _handleMouseDown: function(ev) {
-            var ret = this.fireEvent('beforeEditorMouseDown', { type: 'beforeEditorMouseDown', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            var sel = Event.getTarget(ev);
-            if (this.browser.webkit && this._hasSelection()) {
-                var _sel = this._getSelection();
-                if (!this.browser.webkit3) {
-                    _sel.collapse(true);
-                } else {
-                    _sel.collapseToStart();
-                }
-            }
-            if (this.browser.webkit && this._lastImage) {
-                Dom.removeClass(this._lastImage, 'selected');
-                this._lastImage = null;
-            }
-            if (this._isElement(sel, 'img') || this._isElement(sel, 'a')) {
-                if (this.browser.webkit) {
-                    Event.stopEvent(ev);
-                    if (this._isElement(sel, 'img')) {
-                        Dom.addClass(sel, 'selected');
-                        this._lastImage = sel;
-                    }
-                }
-                if (this.currentWindow) {
-                    this.closeWindow();
-                }
-                this.nodeChange();
-            }
-            this.fireEvent('editorMouseDown', { type: 'editorMouseDown', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleDoubleClick
-        * @param {Event} ev The event we are working on.
-        * @description Handles all doubleclick events inside the iFrame document.
-        */
-        _handleDoubleClick: function(ev) {
-            var ret = this.fireEvent('beforeEditorDoubleClick', { type: 'beforeEditorDoubleClick', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            var sel = Event.getTarget(ev);
-            if (this._isElement(sel, 'img')) {
-                this.currentElement[0] = sel;
-                this.toolbar.fireEvent('insertimageClick', { type: 'insertimageClick', target: this.toolbar });
-                this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-            } else if (this._hasParent(sel, 'a')) { //Handle elements inside an a
-                this.currentElement[0] = this._hasParent(sel, 'a');
-                this.toolbar.fireEvent('createlinkClick', { type: 'createlinkClick', target: this.toolbar });
-                this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-            }
-            this.nodeChange();
-            this.fireEvent('editorDoubleClick', { type: 'editorDoubleClick', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleKeyUp
-        * @param {Event} ev The event we are working on.
-        * @description Handles all keyup events inside the iFrame document.
-        */
-        _handleKeyUp: function(ev) {
-            var ret = this.fireEvent('beforeEditorKeyUp', { type: 'beforeEditorKeyUp', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            switch (ev.keyCode) {
-                case this._keyMap.SELECT_ALL.key:
-                    if (this._checkKey(this._keyMap.SELECT_ALL, ev)) {
-                        this.nodeChange();
-                    }
-                    break;
-                case 32: //Space Bar
-                case 35: //End
-                case 36: //Home
-                case 37: //Left Arrow
-                case 38: //Up Arrow
-                case 39: //Right Arrow
-                case 40: //Down Arrow
-                case 46: //Forward Delete
-                case 8: //Delete
-                case this._keyMap.CLOSE_WINDOW.key: //W key if window is open
-                    if ((ev.keyCode == this._keyMap.CLOSE_WINDOW.key) && this.currentWindow) {
-                        if (this._checkKey(this._keyMap.CLOSE_WINDOW, ev)) {
-                            this.closeWindow();
-                        }
-                    } else {
-                        if (!this.browser.ie) {
-                            if (this._nodeChangeTimer) {
-                                clearTimeout(this._nodeChangeTimer);
-                            }
-                            var self = this;
-                            this._nodeChangeTimer = setTimeout(function() {
-                                self._nodeChangeTimer = null;
-                                self.nodeChange.call(self);
-                            }, 100);
-                        } else {
-                            this.nodeChange();
-                        }
-                        this.editorDirty = true;
-                    }
-                    break;
-            }
-            this.fireEvent('editorKeyUp', { type: 'editorKeyUp', target: this, ev: ev });
-            this._storeUndo();
-        },
-        /**
-        * @private
-        * @method _handleKeyPress
-        * @param {Event} ev The event we are working on.
-        * @description Handles all keypress events inside the iFrame document.
-        */
-        _handleKeyPress: function(ev) {
-            var ret = this.fireEvent('beforeEditorKeyPress', { type: 'beforeEditorKeyPress', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-
-            if (this.get('allowNoEdit')) {
-                //if (ev && ev.keyCode && ((ev.keyCode == 46) || ev.keyCode == 63272)) {
-                if (ev && ev.keyCode && (ev.keyCode == 63272)) {
-                    //Forward delete key
-                    Event.stopEvent(ev);
-                }
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            if (this.browser.opera) {
-                if (ev.keyCode === 13) {
-                    var tar = this._getSelectedElement();
-                    if (!this._isElement(tar, 'li')) {
-                        this.execCommand('inserthtml', '<br>');
-                        Event.stopEvent(ev);
-                    }
-                }
-            }
-            if (this.browser.webkit) {
-                if (!this.browser.webkit3) {
-                    if (ev.keyCode && (ev.keyCode == 122) && (ev.metaKey)) {
-                        //This is CMD + z (for undo)
-                        if (this._hasParent(this._getSelectedElement(), 'li')) {
-                            Event.stopEvent(ev);
-                        }
-                    }
-                }
-                this._listFix(ev);
-            }
-            this.fireEvent('editorKeyPress', { type: 'editorKeyPress', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleKeyDown
-        * @param {Event} ev The event we are working on.
-        * @description Handles all keydown events inside the iFrame document.
-        */
-        _handleKeyDown: function(ev) {
-            var ret = this.fireEvent('beforeEditorKeyDown', { type: 'beforeEditorKeyDown', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            var tar = null, _range = null;
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            var doExec = false,
-                action = null,
-                exec = false;
-
-
-            switch (ev.keyCode) {
-                case this._keyMap.FOCUS_TOOLBAR.key:
-                    if (this._checkKey(this._keyMap.FOCUS_TOOLBAR, ev)) {
-                        var h = this.toolbar.getElementsByTagName('h2')[0];
-                        if (h && h.firstChild) {
-                            h.firstChild.focus();
-                        }
-                    } else if (this._checkKey(this._keyMap.FOCUS_AFTER, ev)) {
-                        //Focus After Element - Esc
-                        this.afterElement.focus();
-                    }
-                    Event.stopEvent(ev);
-                    doExec = false;
-                    break;
-                //case 76: //L
-                case this._keyMap.CREATE_LINK.key: //L
-                    if (this._hasSelection()) {
-                        if (this._checkKey(this._keyMap.CREATE_LINK, ev)) {
-                            var makeLink = true;
-                            if (this.get('limitCommands')) {
-                                if (!this.toolbar.getButtonByValue('createlink')) {
-                                    makeLink = false;
-                                }
-                            }
-                            if (makeLink) {
-                                this.execCommand('createlink', '');
-                                this.toolbar.fireEvent('createlinkClick', { type: 'createlinkClick', target: this.toolbar });
-                                this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-                                doExec = false;
-                            }
-                        }
-                    }
-                    break;
-                //case 90: //Z
-                case this._keyMap.UNDO.key:
-                case this._keyMap.REDO.key:
-                    if (this._checkKey(this._keyMap.REDO, ev)) {
-                        action = 'redo';
-                        doExec = true;
-                    } else if (this._checkKey(this._keyMap.UNDO, ev)) {
-                        action = 'undo';
-                        doExec = true;
-                    }
-                    break;
-                //case 66: //B
-                case this._keyMap.BOLD.key:
-                    if (this._checkKey(this._keyMap.BOLD, ev)) {
-                        action = 'bold';
-                        doExec = true;
-                    }
-                    break;
-                //case 73: //I
-                case this._keyMap.ITALIC.key:
-                    if (this._checkKey(this._keyMap.ITALIC, ev)) {
-                        action = 'italic';
-                        doExec = true;
-                    }
-                    break;
-                //case 85: //U
-                case this._keyMap.UNDERLINE.key:
-                    if (this._checkKey(this._keyMap.UNDERLINE, ev)) {
-                        action = 'underline';
-                        doExec = true;
-                    }
-                    break;
-                case 9:
-                    if (this.browser.ie) {
-                        //Insert a tab in Internet Explorer
-                        _range = this._getRange();
-                        tar = this._getSelectedElement();
-                        if (!this._isElement(tar, 'li')) {
-                            if (_range) {
-                                _range.pasteHTML('&nbsp;&nbsp;&nbsp;&nbsp;');
-                                _range.collapse(false);
-                                _range.select();
-                            }
-                            Event.stopEvent(ev);
-                        }
-                    }
-                    //Firefox 3 code
-                    if (this.browser.gecko > 1.8) {
-                        tar = this._getSelectedElement();
-                        if (this._isElement(tar, 'li')) {
-                            if (ev.shiftKey) {
-                                this._getDoc().execCommand('outdent', null, '');
-                            } else {
-                                this._getDoc().execCommand('indent', null, '');
-                            }
-                            
-                        } else if (!this._hasSelection()) {
-                            this.execCommand('inserthtml', '&nbsp;&nbsp;&nbsp;&nbsp;');
-                        }
-                        Event.stopEvent(ev);
-                    }
-                    break;
-                case 13:
-                    if (this.get('ptags') && !ev.shiftKey) {
-                        if (this.browser.gecko) {
-                            tar = this._getSelectedElement();
-                            if (!this._isElement(tar, 'li')) {
-                                doExec = true;
-                                action = 'insertparagraph';
-                                Event.stopEvent(ev);
-                            }
-                        }
-                        if (this.browser.webkit) {
-                            tar = this._getSelectedElement();
-                            if (!this._hasParent(tar, 'li')) {
-                                doExec = true;
-                                action = 'insertparagraph';
-                                Event.stopEvent(ev);
-                            }
-                        }
-                    } else {
-                        if (this.browser.ie) {
-                            //Insert a <br> instead of a <p></p> in Internet Explorer
-                            _range = this._getRange();
-                            tar = this._getSelectedElement();
-                            if (!this._isElement(tar, 'li')) {
-                                if (_range) {
-                                    _range.pasteHTML('<br>');
-                                    _range.collapse(false);
-                                    _range.select();
-                                }
-                                Event.stopEvent(ev);
-                            }
-                        }
-                    }
-                    break;
-            }
-            if (this.browser.ie) {
-                this._listFix(ev);
-            }
-            if (doExec && action) {
-                this.execCommand(action, null);
-                Event.stopEvent(ev);
-                this.nodeChange();
-            }
-            this.fireEvent('editorKeyDown', { type: 'editorKeyDown', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _listFix
-        * @param {Event} ev The event we are working on.
-        * @description Handles the Enter key, Tab Key and Shift + Tab keys for List Items.
-        */
-        _listFix: function(ev) {
-            var testLi = null, par = null, preContent = false, range = null;
-            //Enter Key
-            if (this.browser.webkit) {
-                if (ev.keyCode && (ev.keyCode == 13)) {
-                    if (this._hasParent(this._getSelectedElement(), 'li')) {
-                        var tar = this._hasParent(this._getSelectedElement(), 'li');
-                        if (tar.previousSibling) {
-                            if (tar.firstChild && (tar.firstChild.length == 1)) {
-                                this._selectNode(tar);
-                            }
-                        }
-                    }
-                }
-            }
-            //Shift + Tab Key
-            if (ev.keyCode && ((!this.browser.webkit3 && (ev.keyCode == 25)) || ((this.browser.webkit3 || !this.browser.webkit) && ((ev.keyCode == 9) && ev.shiftKey)))) {
-                testLi = this._getSelectedElement();
-                if (this._hasParent(testLi, 'li')) {
-                    testLi = this._hasParent(testLi, 'li');
-                    if (this._hasParent(testLi, 'ul') || this._hasParent(testLi, 'ol')) {
-                        par = this._hasParent(testLi, 'ul');
-                        if (!par) {
-                            par = this._hasParent(testLi, 'ol');
-                        }
-                        if (this._isElement(par.previousSibling, 'li')) {
-                            par.removeChild(testLi);
-                            par.parentNode.insertBefore(testLi, par.nextSibling);
-                            if (this.browser.ie) {
-                                range = this._getDoc().body.createTextRange();
-                                range.moveToElementText(testLi);
-                                range.collapse(false);
-                                range.select();
-                            }
-                            if (this.browser.webkit) {
-                                this._selectNode(testLi.firstChild);
-                            }
-                            Event.stopEvent(ev);
-                        }
-                    }
-                }
-            }
-            //Tab Key
-            if (ev.keyCode && ((ev.keyCode == 9) && (!ev.shiftKey))) {
-                var preLi = this._getSelectedElement();
-                if (this._hasParent(preLi, 'li')) {
-                    preContent = this._hasParent(preLi, 'li').innerHTML;
-                }
-                if (this.browser.webkit) {
-                    this._getDoc().execCommand('inserttext', false, '\t');
-                }
-                testLi = this._getSelectedElement();
-                if (this._hasParent(testLi, 'li')) {
-                    par = this._hasParent(testLi, 'li');
-                    var newUl = this._getDoc().createElement(par.parentNode.tagName.toLowerCase());
-                    if (this.browser.webkit) {
-                        var span = Dom.getElementsByClassName('Apple-tab-span', 'span', par);
-                        //Remove the span element that Safari puts in
-                        if (span[0]) {
-                            par.removeChild(span[0]);
-                            par.innerHTML = Lang.trim(par.innerHTML);
-                            //Put the HTML from the LI into this new LI
-                            if (preContent) {
-                                par.innerHTML = '<span class="yui-non">' + preContent + '</span>&nbsp;';
-                            } else {
-                                par.innerHTML = '<span class="yui-non">&nbsp;</span>&nbsp;';
-                            }
-                        }
-                    } else {
-                        if (preContent) {
-                            par.innerHTML = preContent + '&nbsp;';
-                        } else {
-                            par.innerHTML = '&nbsp;';
-                        }
-                    }
-
-                    par.parentNode.replaceChild(newUl, par);
-                    newUl.appendChild(par);
-                    if (this.browser.webkit) {
-                        this._getSelection().setBaseAndExtent(par.firstChild, 1, par.firstChild, par.firstChild.innerText.length);
-                        if (!this.browser.webkit3) {
-                            par.parentNode.parentNode.style.display = 'list-item';
-                            setTimeout(function() {
-                                par.parentNode.parentNode.style.display = 'block';
-                            }, 1);
-                        }
-                    } else if (this.browser.ie) {
-                        range = this._getDoc().body.createTextRange();
-                        range.moveToElementText(par);
-                        range.collapse(false);
-                        range.select();
-                    } else {
-                        this._selectNode(par);
-                    }
-                    Event.stopEvent(ev);
-                }
-                if (this.browser.webkit) {
-                    Event.stopEvent(ev);
-                }
-                this.nodeChange();
-            }
-        },
-        /**
-        * @method nodeChange
-        * @param {Boolean} force Optional paramenter to skip the threshold counter
-        * @description Handles setting up the toolbar buttons, getting the Dom path, fixing nodes.
-        */
-        nodeChange: function(force) {
-            var NCself = this;
-            this._storeUndo();
-            if (this.get('nodeChangeDelay')) {
-                window.setTimeout(function() {
-                    NCself._nodeChange.apply(NCself, arguments);
-                }, 0);
-            } else {
-                this._nodeChange();
-            }
-        },
-        /**
-        * @private
-        * @method _nodeChange
-        * @param {Boolean} force Optional paramenter to skip the threshold counter
-        * @description Fired from nodeChange in a setTimeout.
-        */
-        _nodeChange: function(force) {
-            var threshold = parseInt(this.get('nodeChangeThreshold'), 10),
-                thisNodeChange = Math.round(new Date().getTime() / 1000),
-                self = this;
-
-            if (force === true) {
-                this._lastNodeChange = 0;
-            }
-            
-            if ((this._lastNodeChange + threshold) < thisNodeChange) {
-                if (this._fixNodesTimer === null) {
-                    this._fixNodesTimer = window.setTimeout(function() {
-                        self._fixNodes.call(self);
-                        self._fixNodesTimer = null;
-                    }, 0);
-                }
-            }
-            this._lastNodeChange = thisNodeChange;
-            if (this.currentEvent) {
-                try {
-                    this._lastNodeChangeEvent = this.currentEvent.type;
-                } catch (e) {}
-            }
-
-            var beforeNodeChange = this.fireEvent('beforeNodeChange', { type: 'beforeNodeChange', target: this });
-            if (beforeNodeChange === false) {
-                return false;
-            }
-            if (this.get('dompath')) {
-                window.setTimeout(function() {
-                    self._writeDomPath.call(self);
-                }, 0);
-            }
-            //Check to see if we are disabled before continuing
-            if (!this.get('disabled')) {
-                if (this.STOP_NODE_CHANGE) {
-                    //Reset this var for next action
-                    this.STOP_NODE_CHANGE = false;
-                    return false;
-                } else {
-                    var sel = this._getSelection(),
-                        range = this._getRange(),
-                        el = this._getSelectedElement(),
-                        fn_button = this.toolbar.getButtonByValue('fontname'),
-                        fs_button = this.toolbar.getButtonByValue('fontsize'),
-                        undo_button = this.toolbar.getButtonByValue('undo'),
-                        redo_button = this.toolbar.getButtonByValue('redo');
-
-                    //Handle updating the toolbar with active buttons
-                    var _ex = {};
-                    if (this._lastButton) {
-                        _ex[this._lastButton.id] = true;
-                        //this._lastButton = null;
-                    }
-                    if (!this._isElement(el, 'body')) {
-                        if (fn_button) {
-                            _ex[fn_button.get('id')] = true;
-                        }
-                        if (fs_button) {
-                            _ex[fs_button.get('id')] = true;
-                        }
-                    }
-                    if (redo_button) {
-                        delete _ex[redo_button.get('id')];
-                    }
-                    this.toolbar.resetAllButtons(_ex);
-
-                    //Handle disabled buttons
-                    for (var d = 0; d < this._disabled.length; d++) {
-                        var _button = this.toolbar.getButtonByValue(this._disabled[d]);
-                        if (_button && _button.get) {
-                            if (this._lastButton && (_button.get('id') === this._lastButton.id)) {
-                                //Skip
-                            } else {
-                                if (!this._hasSelection() && !this.get('insert')) {
-                                    switch (this._disabled[d]) {
-                                        case 'fontname':
-                                        case 'fontsize':
-                                            break;
-                                        default:
-                                            //No Selection - disable
-                                            this.toolbar.disableButton(_button);
-                                    }
-                                } else {
-                                    if (!this._alwaysDisabled[this._disabled[d]]) {
-                                        this.toolbar.enableButton(_button);
-                                    }
-                                }
-                                if (!this._alwaysEnabled[this._disabled[d]]) {
-                                    this.toolbar.deselectButton(_button);
-                                }
-                            }
-                        }
-                    }
-                    var path = this._getDomPath();
-                    var tag = null, cmd = null;
-                    for (var i = 0; i < path.length; i++) {
-                        tag = path[i].tagName.toLowerCase();
-                        if (path[i].getAttribute('tag')) {
-                            tag = path[i].getAttribute('tag').toLowerCase();
-                        }
-                        cmd = this._tag2cmd[tag];
-                        if (cmd === undefined) {
-                            cmd = [];
-                        }
-                        if (!Lang.isArray(cmd)) {
-                            cmd = [cmd];
-                        }
-
-                        //Bold and Italic styles
-                        if (path[i].style.fontWeight.toLowerCase() == 'bold') {
-                            cmd[cmd.length] = 'bold';
-                        }
-                        if (path[i].style.fontStyle.toLowerCase() == 'italic') {
-                            cmd[cmd.length] = 'italic';
-                        }
-                        if (path[i].style.textDecoration.toLowerCase() == 'underline') {
-                            cmd[cmd.length] = 'underline';
-                        }
-                        if (path[i].style.textDecoration.toLowerCase() == 'line-through') {
-                            cmd[cmd.length] = 'strikethrough';
-                        }
-                        if (cmd.length > 0) {
-                            for (var j = 0; j < cmd.length; j++) {
-                                this.toolbar.selectButton(cmd[j]);
-                                this.toolbar.enableButton(cmd[j]);
-                            }
-                        }
-                        //Handle Alignment
-                        switch (path[i].style.textAlign.toLowerCase()) {
-                            case 'left':
-                            case 'right':
-                            case 'center':
-                            case 'justify':
-                                var alignType = path[i].style.textAlign.toLowerCase();
-                                if (path[i].style.textAlign.toLowerCase() == 'justify') {
-                                    alignType = 'full';
-                                }
-                                this.toolbar.selectButton('justify' + alignType);
-                                this.toolbar.enableButton('justify' + alignType);
-                                break;
-                        }
-                    }
-                    //After for loop
-
-                    //Reset Font Family and Size to the inital configs
-                    if (fn_button) {
-                        var family = fn_button._configs.label._initialConfig.value;
-                        fn_button.set('label', '<span class="yui-toolbar-fontname-' + this._cleanClassName(family) + '">' + family + '</span>');
-                        this._updateMenuChecked('fontname', family);
-                    }
-
-                    if (fs_button) {
-                        fs_button.set('label', fs_button._configs.label._initialConfig.value);
-                    }
-
-                    var hd_button = this.toolbar.getButtonByValue('heading');
-                    if (hd_button) {
-                        hd_button.set('label', hd_button._configs.label._initialConfig.value);
-                        this._updateMenuChecked('heading', 'none');
-                    }
-                    var img_button = this.toolbar.getButtonByValue('insertimage');
-                    if (img_button && this.currentWindow && (this.currentWindow.name == 'insertimage')) {
-                        this.toolbar.disableButton(img_button);
-                    }
-                    if (this._lastButton && this._lastButton.isSelected) {
-                        this.toolbar.deselectButton(this._lastButton.id);
-                    }
-                    this._undoNodeChange();
-                }
-            }
-
-            this.fireEvent('afterNodeChange', { type: 'afterNodeChange', target: this });
-        },
-        /**
-        * @private
-        * @method _updateMenuChecked
-        * @param {Object} button The command identifier of the button you want to check
-        * @param {String} value The value of the menu item you want to check
-        * @param {<a href="YAHOO.widget.Toolbar.html">YAHOO.widget.Toolbar</a>} The Toolbar instance the button belongs to (defaults to this.toolbar) 
-        * @description Gets the menu from a button instance, if the menu is not rendered it will render it. It will then search the menu for the specified value, unchecking all other items and checking the specified on.
-        */
-        _updateMenuChecked: function(button, value, tbar) {
-            if (!tbar) {
-                tbar = this.toolbar;
-            }
-            var _button = tbar.getButtonByValue(button);
-            _button.checkValue(value);
-        },
-        /**
-        * @private
-        * @method _handleToolbarClick
-        * @param {Event} ev The event that triggered the button click
-        * @description This is an event handler attached to the Toolbar's buttonClick event. It will fire execCommand with the command identifier from the Toolbar Button.
-        */
-        _handleToolbarClick: function(ev) {
-            var value = '';
-            var str = '';
-            var cmd = ev.button.value;
-            if (ev.button.menucmd) {
-                value = cmd;
-                cmd = ev.button.menucmd;
-            }
-            this._lastButton = ev.button;
-            if (this.STOP_EXEC_COMMAND) {
-                this.STOP_EXEC_COMMAND = false;
-                return false;
-            } else {
-                this.execCommand(cmd, value);
-                if (!this.browser.webkit) {
-                     var Fself = this;
-                     setTimeout(function() {
-                         Fself._focusWindow.call(Fself);
-                     }, 5);
-                 }
-            }
-            Event.stopEvent(ev);
-        },
-        /**
-        * @private
-        * @method _setupAfterElement
-        * @description Creates the accessibility h2 header and places it after the iframe in the Dom for navigation.
-        */
-        _setupAfterElement: function() {
-            if (!this.beforeElement) {
-                this.beforeElement = document.createElement('h2');
-                this.beforeElement.className = 'yui-editor-skipheader';
-                this.beforeElement.tabIndex = '-1';
-                this.beforeElement.innerHTML = this.STR_BEFORE_EDITOR;
-                this.get('element_cont').get('firstChild').insertBefore(this.beforeElement, this.toolbar.get('nextSibling'));
-            }
-            if (!this.afterElement) {
-                this.afterElement = document.createElement('h2');
-                this.afterElement.className = 'yui-editor-skipheader';
-                this.afterElement.tabIndex = '-1';
-                this.afterElement.innerHTML = this.STR_LEAVE_EDITOR;
-                this.get('element_cont').get('firstChild').appendChild(this.afterElement);
-            }
-        },
-        /**
-        * @private
-        * @method _disableEditor
-        * @param {Boolean} disabled Pass true to disable, false to enable
-        * @description Creates a mask to place over the Editor.
-        */
-        _disableEditor: function(disabled) {
-            if (disabled) {
-                this._removeEditorEvents();
-                if (!this._mask) {
-                    if (!!this.browser.ie) {
-                        this._setDesignMode('off');
-                    }
-                    if (this.toolbar) {
-                        this.toolbar.set('disabled', true);
-                    }
-                    this._mask = document.createElement('DIV');
-                    Dom.setStyle(this._mask, 'height', '100%');
-                    Dom.setStyle(this._mask, 'width', '100%');
-                    Dom.setStyle(this._mask, 'position', 'absolute');
-                    Dom.setStyle(this._mask, 'top', '0');
-                    Dom.setStyle(this._mask, 'left', '0');
-                    Dom.setStyle(this._mask, 'opacity', '.5');
-                    Dom.addClass(this._mask, 'yui-editor-masked');
-                    this.get('iframe').get('parentNode').appendChild(this._mask);
-                }
-            } else {
-                this._initEditorEvents();
-                if (this._mask) {
-                    this._mask.parentNode.removeChild(this._mask);
-                    this._mask = null;
-                    if (this.toolbar) {
-                        this.toolbar.set('disabled', false);
-                    }
-                    this._setDesignMode('on');
-                    this._focusWindow();
-                    var self = this;
-                    window.setTimeout(function() {
-                        self.nodeChange.call(self);
-                    }, 100);
-                }
-            }
-        },
-        /**
-        * @property SEP_DOMPATH
-        * @description The value to place in between the Dom path items
-        * @type String
-        */
-        SEP_DOMPATH: '<',
-        /**
-        * @property STR_LEAVE_EDITOR
-        * @description The accessibility string for the element after the iFrame
-        * @type String
-        */
-        STR_LEAVE_EDITOR: 'You have left the Rich Text Editor.',
-        /**
-        * @property STR_BEFORE_EDITOR
-        * @description The accessibility string for the element before the iFrame
-        * @type String
-        */
-        STR_BEFORE_EDITOR: 'This text field can contain stylized text and graphics. To cycle through all formatting options, use the keyboard shortcut Shift + Escape to place focus on the toolbar and navigate between options with your arrow keys. To exit this text editor use the Escape key and continue tabbing. <h4>Common formatting keyboard shortcuts:</h4><ul><li>Control Shift B sets text to bold</li> <li>Control Shift I sets text to italic</li> <li>Control Shift U underlines text</li> <li>Control Shift L adds an HTML link</li></ul>',
-        /**
-        * @property STR_TITLE
-        * @description The Title of the HTML document that is created in the iFrame
-        * @type String
-        */
-        STR_TITLE: 'Rich Text Area.',
-        /**
-        * @property STR_IMAGE_HERE
-        * @description The text to place in the URL textbox when using the blankimage.
-        * @type String
-        */
-        STR_IMAGE_HERE: 'Image URL Here',
-        /**
-        * @property STR_LINK_URL
-        * @description The label string for the Link URL.
-        * @type String
-        */
-        STR_LINK_URL: 'Link URL',
-        /**
-        * @protected
-        * @property STOP_EXEC_COMMAND
-        * @description Set to true when you want the default execCommand function to not process anything
-        * @type Boolean
-        */
-        STOP_EXEC_COMMAND: false,
-        /**
-        * @protected
-        * @property STOP_NODE_CHANGE
-        * @description Set to true when you want the default nodeChange function to not process anything
-        * @type Boolean
-        */
-        STOP_NODE_CHANGE: false,
-        /**
-        * @protected
-        * @property CLASS_NOEDIT
-        * @description CSS class applied to elements that are not editable.
-        * @type String
-        */
-        CLASS_NOEDIT: 'yui-noedit',
-        /**
-        * @protected
-        * @property CLASS_CONTAINER
-        * @description Default CSS class to apply to the editors container element
-        * @type String
-        */
-        CLASS_CONTAINER: 'yui-editor-container',
-        /**
-        * @protected
-        * @property CLASS_EDITABLE
-        * @description Default CSS class to apply to the editors iframe element
-        * @type String
-        */
-        CLASS_EDITABLE: 'yui-editor-editable',
-        /**
-        * @protected
-        * @property CLASS_EDITABLE_CONT
-        * @description Default CSS class to apply to the editors iframe's parent element
-        * @type String
-        */
-        CLASS_EDITABLE_CONT: 'yui-editor-editable-container',
-        /**
-        * @protected
-        * @property CLASS_PREFIX
-        * @description Default prefix for dynamically created class names
-        * @type String
-        */
-        CLASS_PREFIX: 'yui-editor',
-        /** 
-        * @property browser
-        * @description Standard browser detection
-        * @type Object
-        */
-        browser: function() {
-            var br = YAHOO.env.ua;
-            //Check for webkit3
-            if (br.webkit >= 420) {
-                br.webkit3 = br.webkit;
-            } else {
-                br.webkit3 = 0;
-            }
-            br.mac = false;
-            //Check for Mac
-            if (navigator.userAgent.indexOf('Macintosh') !== -1) {
-                br.mac = true;
-            }
-
-            return br;
-        }(),
-        /** 
-        * @method init
-        * @description The Editor class' initialization method
-        */
-        init: function(p_oElement, p_oAttributes) {
-
-            if (!this._defaultToolbar) {
-                this._defaultToolbar = {
-                    collapse: true,
-                    titlebar: 'Text Editing Tools',
-                    draggable: false,
-                    buttons: [
-                        { group: 'fontstyle', label: 'Font Name and Size',
-                            buttons: [
-                                { type: 'select', label: 'Arial', value: 'fontname', disabled: true,
-                                    menu: [
-                                        { text: 'Arial', checked: true },
-                                        { text: 'Arial Black' },
-                                        { text: 'Comic Sans MS' },
-                                        { text: 'Courier New' },
-                                        { text: 'Lucida Console' },
-                                        { text: 'Tahoma' },
-                                        { text: 'Times New Roman' },
-                                        { text: 'Trebuchet MS' },
-                                        { text: 'Verdana' }
-                                    ]
-                                },
-                                { type: 'spin', label: '13', value: 'fontsize', range: [ 9, 75 ], disabled: true }
-                            ]
-                        },
-                        { type: 'separator' },
-                        { group: 'textstyle', label: 'Font Style',
-                            buttons: [
-                                { type: 'push', label: 'Bold CTRL + SHIFT + B', value: 'bold' },
-                                { type: 'push', label: 'Italic CTRL + SHIFT + I', value: 'italic' },
-                                { type: 'push', label: 'Underline CTRL + SHIFT + U', value: 'underline' },
-                                { type: 'push', label: 'Strike Through', value: 'strikethrough' },
-                                { type: 'separator' },
-                                { type: 'color', label: 'Font Color', value: 'forecolor', disabled: true },
-                                { type: 'color', label: 'Background Color', value: 'backcolor', disabled: true }
-                                
-                            ]
-                        },
-                        { type: 'separator' },
-                        { group: 'indentlist', label: 'Lists',
-                            buttons: [
-                                { type: 'push', label: 'Create an Unordered List', value: 'insertunorderedlist' },
-                                { type: 'push', label: 'Create an Ordered List', value: 'insertorderedlist' }
-                            ]
-                        },
-                        { type: 'separator' },
-                        { group: 'insertitem', label: 'Insert Item',
-                            buttons: [
-                                { type: 'push', label: 'HTML Link CTRL + SHIFT + L', value: 'createlink', disabled: true },
-                                { type: 'push', label: 'Insert Image', value: 'insertimage' }
-                            ]
-                        }
-                    ]
-                };
-            }
-
-            YAHOO.widget.SimpleEditor.superclass.init.call(this, p_oElement, p_oAttributes);
-            YAHOO.widget.EditorInfo._instances[this.get('id')] = this;
-
-
-            this.currentElement = [];
-            this.on('contentReady', function() {
-                this.DOMReady = true;
-                this.fireQueue();
-            }, this, true);
-
-        },
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create 
-        * the editor.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the editor.
-        */
-        initAttributes: function(attr) {
-            YAHOO.widget.SimpleEditor.superclass.initAttributes.call(this, attr);
-            var self = this;
-
-            /**
-            * @config nodeChangeDelay
-            * @description Do we wrap the nodeChange method in a timeout for performance, default: true.
-            * @default true
-            * @type Number
-            */
-            this.setAttributeConfig('nodeChangeDelay', {
-                value: ((attr.nodeChangeDelay === false) ? false : true)
-            });
-            /**
-            * @config maxUndo
-            * @description The max number of undo levels to store.
-            * @default 30
-            * @type Number
-            */
-            this.setAttributeConfig('maxUndo', {
-                writeOnce: true,
-                value: attr.maxUndo || 30
-            });
-
-            /**
-            * @config ptags
-            * @description If true, the editor uses <P> tags instead of <br> tags. (Use Shift + Enter to get a <br>)
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('ptags', {
-                writeOnce: true,
-                value: attr.ptags || false
-            });
-            /**
-            * @config insert
-            * @description If true, selection is not required for: fontname, fontsize, forecolor, backcolor.
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('insert', {
-                writeOnce: true,
-                value: attr.insert || false,
-                method: function(insert) {
-                    if (insert) {
-                        var buttons = {
-                            fontname: true,
-                            fontsize: true,
-                            forecolor: true,
-                            backcolor: true
-                        };
-                        var tmp = this._defaultToolbar.buttons;
-                        for (var i = 0; i < tmp.length; i++) {
-                            if (tmp[i].buttons) {
-                                for (var a = 0; a < tmp[i].buttons.length; a++) {
-                                    if (tmp[i].buttons[a].value) {
-                                        if (buttons[tmp[i].buttons[a].value]) {
-                                            delete tmp[i].buttons[a].disabled;
-                                        }
-                                    }
-                                }
-                            }
-                        }
-                    }
-                }
-            });
-            /**
-            * @config container
-            * @description Used when dynamically creating the Editor from Javascript with no default textarea.
-            * We will create one and place it in this container. If no container is passed we will append to document.body.
-            * @default false
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('container', {
-                writeOnce: true,
-                value: attr.container || false
-            });
-            /**
-            * @config plainText
-            * @description Process the inital textarea data as if it was plain text. Accounting for spaces, tabs and line feeds.
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('plainText', {
-                writeOnce: true,
-                value: attr.plainText || false
-            });
-            /**
-            * @private
-            * @config iframe
-            * @description Internal config for holding the iframe element.
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('iframe', {
-                value: null
-            });
-            /**
-            * @private
-            * @depreciated
-            * @config textarea
-            * @description Internal config for holding the textarea element (replaced with element).
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('textarea', {
-                value: null,
-                writeOnce: true
-            });
-            /**
-            * @private
-            * @config container
-            * @description Internal config for holding a reference to the container to append a dynamic editor to.
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('container', {
-                readOnly: true,
-                value: null
-            });
-            /**
-            * @config nodeChangeThreshold
-            * @description The number of seconds that need to be in between nodeChange processing
-            * @default 3
-            * @type Number
-            */            
-            this.setAttributeConfig('nodeChangeThreshold', {
-                value: attr.nodeChangeThreshold || 3,
-                validator: YAHOO.lang.isNumber
-            });
-            /**
-            * @config allowNoEdit
-            * @description Should the editor check for non-edit fields. It should be noted that this technique is not perfect. If the user does the right things, they will still be able to make changes.
-            * Such as highlighting an element below and above the content and hitting a toolbar button or a shortcut key.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('allowNoEdit', {
-                value: attr.allowNoEdit || false,
-                validator: YAHOO.lang.isBoolean
-            });
-            /**
-            * @config limitCommands
-            * @description Should the Editor limit the allowed execCommands to the ones available in the toolbar. If true, then execCommand and keyboard shortcuts will fail if they are not defined in the toolbar.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('limitCommands', {
-                value: attr.limitCommands || false,
-                validator: YAHOO.lang.isBoolean
-            });
-            /**
-            * @config element_cont
-            * @description Internal config for the editors container
-            * @default false
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('element_cont', {
-                value: attr.element_cont
-            });
-            /**
-            * @private
-            * @config editor_wrapper
-            * @description The outter wrapper for the entire editor.
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('editor_wrapper', {
-                value: attr.editor_wrapper || null,
-                writeOnce: true
-            });
-            /**
-            * @attribute height
-            * @description The height of the editor iframe container, not including the toolbar..
-            * @default Best guessed size of the textarea, for best results use CSS to style the height of the textarea or pass it in as an argument
-            * @type String
-            */
-            this.setAttributeConfig('height', {
-                value: attr.height || Dom.getStyle(self.get('element'), 'height'),
-                method: function(height) {
-                    if (this._rendered) {
-                        //We have been rendered, change the height
-                        if (this.get('animate')) {
-                            var anim = new YAHOO.util.Anim(this.get('iframe').get('parentNode'), {
-                                height: {
-                                    to: parseInt(height, 10)
-                                }
-                            }, 0.5);
-                            anim.animate();
-                        } else {
-                            Dom.setStyle(this.get('iframe').get('parentNode'), 'height', height);
-                        }
-                    }
-                }
-            });
-            /**
-            * @config autoHeight
-            * @description Remove the scrollbars from the edit area and resize it to fit the content. It will not go any lower than the current config height.
-            * @default false
-            * @type Boolean || Number
-            */
-            this.setAttributeConfig('autoHeight', {
-                value: attr.autoHeight || false,
-                method: function(a) {
-                    if (a) {
-                        if (this.get('iframe')) {
-                            this.get('iframe').get('element').setAttribute('scrolling', 'no');
-                        }
-                        this.on('afterNodeChange', this._handleAutoHeight, this, true);
-                        this.on('editorKeyDown', this._handleAutoHeight, this, true);
-                        this.on('editorKeyPress', this._handleAutoHeight, this, true);
-                    } else {
-                        if (this.get('iframe')) {
-                            this.get('iframe').get('element').setAttribute('scrolling', 'auto');
-                        }
-                        this.unsubscribe('afterNodeChange', this._handleAutoHeight);
-                        this.unsubscribe('editorKeyDown', this._handleAutoHeight);
-                        this.unsubscribe('editorKeyPress', this._handleAutoHeight);
-                    }
-                }
-            });
-            /**
-            * @attribute width
-            * @description The width of the editor container.
-            * @default Best guessed size of the textarea, for best results use CSS to style the width of the textarea or pass it in as an argument
-            * @type String
-            */            
-            this.setAttributeConfig('width', {
-                value: attr.width || Dom.getStyle(this.get('element'), 'width'),
-                method: function(width) {
-                    if (this._rendered) {
-                        //We have been rendered, change the width
-                        if (this.get('animate')) {
-                            var anim = new YAHOO.util.Anim(this.get('element_cont').get('element'), {
-                                width: {
-                                    to: parseInt(width, 10)
-                                }
-                            }, 0.5);
-                            anim.animate();
-                        } else {
-                            this.get('element_cont').setStyle('width', width);
-                        }
-                    }
-                }
-            });
-                        
-            /**
-            * @attribute blankimage
-            * @description The URL for the image placeholder to put in when inserting an image.
-            * @default The yahooapis.com address for the current release + 'assets/blankimage.png'
-            * @type String
-            */            
-            this.setAttributeConfig('blankimage', {
-                value: attr.blankimage || this._getBlankImage()
-            });
-            /**
-            * @attribute css
-            * @description The Base CSS used to format the content of the editor
-            * @default <code><pre>html {
-                height: 95%;
-            }
-            body {
-                height: 100%;
-                padding: 7px; background-color: #fff; font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;
-            }
-            a {
-                color: blue;
-                text-decoration: underline;
-                cursor: pointer;
-            }
-            .warning-localfile {
-                border-bottom: 1px dashed red !important;
-            }
-            .yui-busy {
-                cursor: wait !important;
-            }
-            img.selected { //Safari image selection
-                border: 2px dotted #808080;
-            }
-            img {
-                cursor: pointer !important;
-                border: none;
-            }
-            </pre></code>
-            * @type String
-            */            
-            this.setAttributeConfig('css', {
-                value: attr.css || this._defaultCSS,
-                writeOnce: true
-            });
-            /**
-            * @attribute html
-            * @description The default HTML to be written to the iframe document before the contents are loaded (Note that the DOCTYPE attr will be added at render item)
-            * @default This HTML requires a few things if you are to override:
-                <p><code>{TITLE}, {CSS}, {HIDDEN_CSS}, {EXTRA_CSS}</code> and <code>{CONTENT}</code> need to be there, they are passed to YAHOO.lang.substitute to be replace with other strings.<p>
-                <p><code>onload="document.body._rteLoaded = true;"</code> : the onload statement must be there or the editor will not finish loading.</p>
-                <code>
-                <pre>
-                &lt;html&gt;
-                    &lt;head&gt;
-                        &lt;title&gt;{TITLE}&lt;/title&gt;
-                        &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt;
-                        &lt;style&gt;
-                        {CSS}
-                        &lt;/style&gt;
-                        &lt;style&gt;
-                        {HIDDEN_CSS}
-                        &lt;/style&gt;
-                        &lt;style&gt;
-                        {EXTRA_CSS}
-                        &lt;/style&gt;
-                    &lt;/head&gt;
-                &lt;body onload="document.body._rteLoaded = true;"&gt;
-                {CONTENT}
-                &lt;/body&gt;
-                &lt;/html&gt;
-                </pre>
-                </code>
-            * @type String
-            */            
-            this.setAttributeConfig('html', {
-                value: attr.html || '<html><head><title>{TITLE}</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><base href="' + this._baseHREF + '"><style>{CSS}</style><style>{HIDDEN_CSS}</style><style>{EXTRA_CSS}</style></head><body onload="document.body._rteLoaded = true;">{CONTENT}</body></html>',
-                writeOnce: true
-            });
-
-            /**
-            * @attribute extracss
-            * @description Extra user defined css to load after the default SimpleEditor CSS
-            * @default ''
-            * @type String
-            */            
-            this.setAttributeConfig('extracss', {
-                value: attr.extracss || '',
-                writeOnce: true
-            });
-
-            /**
-            * @attribute handleSubmit
-            * @description Config handles if the editor will attach itself to the textareas parent form's submit handler.
-            If it is set to true, the editor will attempt to attach a submit listener to the textareas parent form.
-            Then it will trigger the editors save handler and place the new content back into the text area before the form is submitted.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('handleSubmit', {
-                value: attr.handleSubmit || false,
-                method: function(exec) {
-                    if (this.get('element').form) {
-                        if (!this._formButtons) {
-                            this._formButtons = [];
-                        }
-                        if (exec) {
-                            Event.on(this.get('element').form, 'submit', this._handleFormSubmit, this, true);
-                            var i = this.get('element').form.getElementsByTagName('input');
-                            for (var s = 0; s < i.length; s++) {
-                                var type = i[s].getAttribute('type');
-                                if (type && (type.toLowerCase() == 'submit')) {
-                                    Event.on(i[s], 'click', this._handleFormButtonClick, this, true);
-                                    this._formButtons[this._formButtons.length] = i[s];
-                                }
-                            }
-                        } else {
-                            Event.removeListener(this.get('element').form, 'submit', this._handleFormSubmit);
-                            if (this._formButtons) {
-                                Event.removeListener(this._formButtons, 'click', this._handleFormButtonClick);
-                            }
-                        }
-                    }
-                }
-            });
-            /**
-            * @attribute disabled
-            * @description This will toggle the editor's disabled state. When the editor is disabled, designMode is turned off and a mask is placed over the iframe so no interaction can take place.
-            All Toolbar buttons are also disabled so they cannot be used.
-            * @default false
-            * @type Boolean
-            */
-
-            this.setAttributeConfig('disabled', {
-                value: false,
-                method: function(disabled) {
-                    if (this._rendered) {
-                        this._disableEditor(disabled);
-                    }
-                }
-            });
-            /**
-            * @config saveEl
-            * @description When save HTML is called, this element will be updated as well as the source of data.
-            * @default element
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('saveEl', {
-                value: this.get('element')
-            });
-            /**
-            * @config toolbar_cont
-            * @description Internal config for the toolbars container
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('toolbar_cont', {
-                value: null,
-                writeOnce: true
-            });
-            /**
-            * @attribute toolbar
-            * @description The default toolbar config.
-            * @type Object
-            */            
-            this.setAttributeConfig('toolbar', {
-                value: attr.toolbar || this._defaultToolbar,
-                writeOnce: true,
-                method: function(toolbar) {
-                    if (!toolbar.buttonType) {
-                        toolbar.buttonType = this._defaultToolbar.buttonType;
-                    }
-                    this._defaultToolbar = toolbar;
-                }
-            });
-            /**
-            * @attribute animate
-            * @description Should the editor animate window movements
-            * @default false unless Animation is found, then true
-            * @type Boolean
-            */            
-            this.setAttributeConfig('animate', {
-                value: ((attr.animate) ? ((YAHOO.util.Anim) ? true : false) : false),
-                validator: function(value) {
-                    var ret = true;
-                    if (!YAHOO.util.Anim) {
-                        ret = false;
-                    }
-                    return ret;
-                }
-            });
-            /**
-            * @config panel
-            * @description A reference to the panel we are using for windows.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('panel', {
-                value: null,
-                writeOnce: true,
-                validator: function(value) {
-                    var ret = true;
-                    if (!YAHOO.widget.Overlay) {
-                        ret = false;
-                    }
-                    return ret;
-                }               
-            });
-            /**
-            * @attribute focusAtStart
-            * @description Should we focus the window when the content is ready?
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('focusAtStart', {
-                value: attr.focusAtStart || false,
-                writeOnce: true,
-                method: function(fs) {
-                    if (fs) {
-                        this.on('editorContentLoaded', function() {
-                            var self = this;
-                            setTimeout(function() {
-                                self._focusWindow.call(self, true);
-                                self.editorDirty = false;
-                            }, 400);
-                        }, this, true);
-                    }
-                }
-            });
-            /**
-            * @attribute dompath
-            * @description Toggle the display of the current Dom path below the editor
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('dompath', {
-                value: attr.dompath || false,
-                method: function(dompath) {
-                    if (dompath && !this.dompath) {
-                        this.dompath = document.createElement('DIV');
-                        this.dompath.id = this.get('id') + '_dompath';
-                        Dom.addClass(this.dompath, 'dompath');
-                        this.get('element_cont').get('firstChild').appendChild(this.dompath);
-                        if (this.get('iframe')) {
-                            this._writeDomPath();
-                        }
-                    } else if (!dompath && this.dompath) {
-                        this.dompath.parentNode.removeChild(this.dompath);
-                        this.dompath = null;
-                    }
-                }
-            });
-            /**
-            * @attribute markup
-            * @description Should we try to adjust the markup for the following types: semantic, css, default or xhtml
-            * @default "semantic"
-            * @type String
-            */            
-            this.setAttributeConfig('markup', {
-                value: attr.markup || 'semantic',
-                validator: function(markup) {
-                    switch (markup.toLowerCase()) {
-                        case 'semantic':
-                        case 'css':
-                        case 'default':
-                        case 'xhtml':
-                        return true;
-                    }
-                    return false;
-                }
-            });
-            /**
-            * @attribute removeLineBreaks
-            * @description Should we remove linebreaks and extra spaces on cleanup
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('removeLineBreaks', {
-                value: attr.removeLineBreaks || false,
-                validator: YAHOO.lang.isBoolean
-            });
-            
-            /**
-            * @config drag
-            * @description Set this config to make the Editor draggable, pass 'proxy' to make use YAHOO.util.DDProxy.
-            * @type {Boolean/String}
-            */
-            this.setAttributeConfig('drag', {
-                writeOnce: true,
-                value: attr.drag || false
-            });
-
-            /**
-            * @config resize
-            * @description Set this to true to make the Editor Resizable with YAHOO.util.Resize. The default config is available: myEditor._resizeConfig
-            * Animation will be ignored while performing this resize to allow for the dynamic change in size of the toolbar.
-            * @type Boolean
-            */
-            this.setAttributeConfig('resize', {
-                writeOnce: true,
-                value: attr.resize || false
-            });
-        },
-        /**
-        * @private
-        * @method _getBlankImage
-        * @description Retrieves the full url of the image to use as the blank image.
-        * @return {String} The URL to the blank image
-        */
-        _getBlankImage: function() {
-            if (!this.DOMReady) {
-                this._queue[this._queue.length] = ['_getBlankImage', arguments];
-                return '';
-            }
-            var img = '';
-            if (!this._blankImageLoaded) {
-                if (YAHOO.widget.EditorInfo.blankImage) {
-                    this.set('blankimage', YAHOO.widget.EditorInfo.blankImage);
-                    this._blankImageLoaded = true;
-                } else {
-                    var div = document.createElement('div');
-                    div.style.position = 'absolute';
-                    div.style.top = '-9999px';
-                    div.style.left = '-9999px';
-                    div.className = this.CLASS_PREFIX + '-blankimage';
-                    document.body.appendChild(div);
-                    img = YAHOO.util.Dom.getStyle(div, 'background-image');
-                    img = img.replace('url(', '').replace(')', '').replace(/"/g, '');
-                    //Adobe AIR Code
-                    img = img.replace('app:/', '');             
-                    this.set('blankimage', img);
-                    this._blankImageLoaded = true;
-                    div.parentNode.removeChild(div);
-                    YAHOO.widget.EditorInfo.blankImage = img;
-                }
-            } else {
-                img = this.get('blankimage');
-            }
-            return img;
-        },
-        /**
-        * @private
-        * @method _handleAutoHeight
-        * @description Handles resizing the editor's height based on the content
-        */
-        _handleAutoHeight: function() {
-            var doc = this._getDoc(),
-                body = doc.body,
-                docEl = doc.documentElement;
-
-            var height = parseInt(Dom.getStyle(this.get('editor_wrapper'), 'height'), 10);
-            var newHeight = body.scrollHeight;
-            if (this.browser.webkit) {
-                newHeight = docEl.scrollHeight;
-            }
-            if (newHeight < parseInt(this.get('height'), 10)) {
-                newHeight = parseInt(this.get('height'), 10);
-            }
-            if ((height != newHeight) && (newHeight >= parseInt(this.get('height'), 10))) {   
-                Dom.setStyle(this.get('editor_wrapper'), 'height', newHeight + 'px');
-                if (this.browser.ie) {
-                    //Internet Explorer needs this
-                    this.get('iframe').setStyle('height', '99%');
-                    this.get('iframe').setStyle('zoom', '1');
-                    var self = this;
-                    window.setTimeout(function() {
-                        self.get('iframe').setStyle('height', '100%');
-                    }, 1);
-                }
-            }
-        },
-        /**
-        * @private
-        * @property _formButtons
-        * @description Array of buttons that are in the Editor's parent form (for handleSubmit)
-        * @type Array
-        */
-        _formButtons: null,
-        /**
-        * @private
-        * @property _formButtonClicked
-        * @description The form button that was clicked to submit the form.
-        * @type HTMLElement
-        */
-        _formButtonClicked: null,
-        /**
-        * @private
-        * @method _handleFormButtonClick
-        * @description The click listener assigned to each submit button in the Editor's parent form.
-        * @param {Event} ev The click event
-        */
-        _handleFormButtonClick: function(ev) {
-            var tar = Event.getTarget(ev);
-            this._formButtonClicked = tar;
-        },
-        /**
-        * @private
-        * @method _handleFormSubmit
-        * @description Handles the form submission.
-        * @param {Object} ev The Form Submit Event
-        */
-        _handleFormSubmit: function(ev) {
-            this.saveHTML();
-
-            var form = this.get('element').form,
-                tar = this._formButtonClicked || false;
-
-            Event.removeListener(form, 'submit', this._handleFormSubmit);
-            if (YAHOO.env.ua.ie) {
-                //form.fireEvent("onsubmit");
-                if (tar && !tar.disabled) {
-                    tar.click();
-                }
-            } else {  // Gecko, Opera, and Safari
-                if (tar && !tar.disabled) {
-                    tar.click();
-                }
-                var oEvent = document.createEvent("HTMLEvents");
-                oEvent.initEvent("submit", true, true);
-                form.dispatchEvent(oEvent);
-                if (YAHOO.env.ua.webkit) {
-                    if (YAHOO.lang.isFunction(form.submit)) {
-                        form.submit();
-                    }
-                }
-            }
-            //2.6.0
-            //Removed this, not need since removing Safari 2.x
-            //Event.stopEvent(ev);
-        },
-        /**
-        * @private
-        * @method _handleFontSize
-        * @description Handles the font size button in the toolbar.
-        * @param {Object} o Object returned from Toolbar's buttonClick Event
-        */
-        _handleFontSize: function(o) {
-            var button = this.toolbar.getButtonById(o.button.id);
-            var value = button.get('label') + 'px';
-            this.execCommand('fontsize', value);
-            this.STOP_EXEC_COMMAND = true;
-        },
-        /**
-        * @private
-        * @description Handles the colorpicker buttons in the toolbar.
-        * @param {Object} o Object returned from Toolbar's buttonClick Event
-        */
-        _handleColorPicker: function(o) {
-            var cmd = o.button;
-            var value = '#' + o.color;
-            if ((cmd == 'forecolor') || (cmd == 'backcolor')) {
-                this.execCommand(cmd, value);
-            }
-        },
-        /**
-        * @private
-        * @method _handleAlign
-        * @description Handles the alignment buttons in the toolbar.
-        * @param {Object} o Object returned from Toolbar's buttonClick Event
-        */
-        _handleAlign: function(o) {
-            var cmd = null;
-            for (var i = 0; i < o.button.menu.length; i++) {
-                if (o.button.menu[i].value == o.button.value) {
-                    cmd = o.button.menu[i].value;
-                }
-            }
-            var value = this._getSelection();
-
-            this.execCommand(cmd, value);
-            this.STOP_EXEC_COMMAND = true;
-        },
-        /**
-        * @private
-        * @method _handleAfterNodeChange
-        * @description Fires after a nodeChange happens to setup the things that where reset on the node change (button state).
-        */
-        _handleAfterNodeChange: function() {
-            var path = this._getDomPath(),
-                elm = null,
-                family = null,
-                fontsize = null,
-                validFont = false,
-                fn_button = this.toolbar.getButtonByValue('fontname'),
-                fs_button = this.toolbar.getButtonByValue('fontsize'),
-                hd_button = this.toolbar.getButtonByValue('heading');
-
-            for (var i = 0; i < path.length; i++) {
-                elm = path[i];
-
-                var tag = elm.tagName.toLowerCase();
-
-
-                if (elm.getAttribute('tag')) {
-                    tag = elm.getAttribute('tag');
-                }
-
-                family = elm.getAttribute('face');
-                if (Dom.getStyle(elm, 'font-family')) {
-                    family = Dom.getStyle(elm, 'font-family');
-                    //Adobe AIR Code
-                    family = family.replace(/'/g, '');                    
-                }
-
-                if (tag.substring(0, 1) == 'h') {
-                    if (hd_button) {
-                        for (var h = 0; h < hd_button._configs.menu.value.length; h++) {
-                            if (hd_button._configs.menu.value[h].value.toLowerCase() == tag) {
-                                hd_button.set('label', hd_button._configs.menu.value[h].text);
-                            }
-                        }
-                        this._updateMenuChecked('heading', tag);
-                    }
-                }
-            }
-
-            if (fn_button) {
-                for (var b = 0; b < fn_button._configs.menu.value.length; b++) {
-                    if (family && fn_button._configs.menu.value[b].text.toLowerCase() == family.toLowerCase()) {
-                        validFont = true;
-                        family = fn_button._configs.menu.value[b].text; //Put the proper menu name in the button
-                    }
-                }
-                if (!validFont) {
-                    family = fn_button._configs.label._initialConfig.value;
-                }
-                var familyLabel = '<span class="yui-toolbar-fontname-' + this._cleanClassName(family) + '">' + family + '</span>';
-                if (fn_button.get('label') != familyLabel) {
-                    fn_button.set('label', familyLabel);
-                    this._updateMenuChecked('fontname', family);
-                }
-            }
-
-            if (fs_button) {
-                fontsize = parseInt(Dom.getStyle(elm, 'fontSize'), 10);
-                if ((fontsize === null) || isNaN(fontsize)) {
-                    fontsize = fs_button._configs.label._initialConfig.value;
-                }
-                fs_button.set('label', ''+fontsize);
-            }
-            
-            if (!this._isElement(elm, 'body') && !this._isElement(elm, 'img')) {
-                this.toolbar.enableButton(fn_button);
-                this.toolbar.enableButton(fs_button);
-                this.toolbar.enableButton('forecolor');
-                this.toolbar.enableButton('backcolor');
-            }
-            if (this._isElement(elm, 'img')) {
-                if (YAHOO.widget.Overlay) {
-                    this.toolbar.enableButton('createlink');
-                }
-            }
-            if (this._hasParent(elm, 'blockquote')) {
-                this.toolbar.selectButton('indent');
-                this.toolbar.disableButton('indent');
-                this.toolbar.enableButton('outdent');
-            }
-            if (this._hasParent(elm, 'ol') || this._hasParent(elm, 'ul')) {
-                this.toolbar.disableButton('indent');
-            }
-            this._lastButton = null;
-            
-        },
-        /**
-        * @private
-        * @method _handleInsertImageClick
-        * @description Opens the Image Properties Window when the insert Image button is clicked or an Image is Double Clicked.
-        */
-        _handleInsertImageClick: function() {
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue('insertimage')) {
-                    return false;
-                }
-            }
-        
-            this.toolbar.set('disabled', true); //Disable the toolbar when the prompt is showing
-            this.on('afterExecCommand', function() {
-                var el = this.currentElement[0],
-                    src = 'http://';
-                if (!el) {
-                    el = this._getSelectedElement();
-                }
-                if (el) {
-                    if (el.getAttribute('src')) {
-                        src = el.getAttribute('src', 2);
-                        if (src.indexOf(this.get('blankimage')) != -1) {
-                            src = this.STR_IMAGE_HERE;
-                        }
-                    }
-                }
-                var str = prompt(this.STR_LINK_URL + ': ', src);
-                if ((str !== '') && (str !== null)) {
-                    el.setAttribute('src', str);
-                } else if (str === null) {
-                    el.parentNode.removeChild(el);
-                    this.currentElement = [];
-                    this.nodeChange();
-                }
-                this.closeWindow();
-                this.toolbar.set('disabled', false);
-            }, this, true);
-        },
-        /**
-        * @private
-        * @method _handleInsertImageWindowClose
-        * @description Handles the closing of the Image Properties Window.
-        */
-        _handleInsertImageWindowClose: function() {
-            this.nodeChange();
-        },
-        /**
-        * @private
-        * @method _isLocalFile
-        * @param {String} url THe url/string to check
-        * @description Checks to see if a string (href or img src) is possibly a local file reference..
-        */
-        _isLocalFile: function(url) {
-            if ((url) && (url !== '') && ((url.indexOf('file:/') != -1) || (url.indexOf(':\\') != -1))) {
-                return true;
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _handleCreateLinkClick
-        * @description Handles the opening of the Link Properties Window when the Create Link button is clicked or an href is doubleclicked.
-        */
-        _handleCreateLinkClick: function() {
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue('createlink')) {
-                    return false;
-                }
-            }
-        
-            this.toolbar.set('disabled', true); //Disable the toolbar when the prompt is showing
-
-            this.on('afterExecCommand', function() {
-                var el = this.currentElement[0],
-                    url = '';
-
-                if (el) {
-                    if (el.getAttribute('href', 2) !== null) {
-                        url = el.getAttribute('href', 2);
-                    }
-                }
-                var str = prompt(this.STR_LINK_URL + ': ', url);
-                if ((str !== '') && (str !== null)) {
-                    var urlValue = str;
-                    if ((urlValue.indexOf(':/'+'/') == -1) && (urlValue.substring(0,1) != '/') && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                        if ((urlValue.indexOf('@') != -1) && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                            //Found an @ sign, prefix with mailto:
-                            urlValue = 'mailto:' + urlValue;
-                        } else {
-                            /* :// not found adding */
-                            if (urlValue.substring(0, 1) != '#') {
-                                //urlValue = 'http:/'+'/' + urlValue;
-                            }
-                        }
-                    }
-                    el.setAttribute('href', urlValue);
-                } else if (str !== null) {
-                    var _span = this._getDoc().createElement('span');
-                    _span.innerHTML = el.innerHTML;
-                    Dom.addClass(_span, 'yui-non');
-                    el.parentNode.replaceChild(_span, el);
-                }
-                this.closeWindow();
-                this.toolbar.set('disabled', false);
-            }, this);
-
-        },
-        /**
-        * @private
-        * @method _handleCreateLinkWindowClose
-        * @description Handles the closing of the Link Properties Window.
-        */
-        _handleCreateLinkWindowClose: function() {
-            this.nodeChange();
-            this.currentElement = [];
-        },
-        /**
-        * @method render
-        * @description Calls the private method _render in a setTimeout to allow for other things on the page to continue to load.
-        */
-        render: function() {
-            if (this._rendered) {
-                return false;
-            }
-            if (!this.DOMReady) {
-                this._queue[this._queue.length] = ['render', arguments];
-                return false;
-            }
-            if (this.get('element')) {
-                if (this.get('element').tagName) {
-                    this._textarea = true;
-                    if (this.get('element').tagName.toLowerCase() !== 'textarea') {
-                        this._textarea = false;
-                    }
-                } else {
-                    return false;
-                }
-            } else {
-                return false;
-            }
-            this._rendered = true;
-            var self = this;
-            window.setTimeout(function() {
-                self._render.call(self);
-            }, 4);
-        },
-        /**
-        * @private
-        * @method _render
-        * @description Causes the toolbar and the editor to render and replace the textarea.
-        */
-        _render: function() {
-            var self = this;
-            this.set('textarea', this.get('element'));
-
-            this.get('element_cont').setStyle('display', 'none');
-            this.get('element_cont').addClass(this.CLASS_CONTAINER);
-
-            this.set('iframe', this._createIframe());
-            window.setTimeout(function() {
-                self._setInitialContent.call(self);
-            }, 10);
-
-            this.get('editor_wrapper').appendChild(this.get('iframe').get('element'));
-
-            if (this.get('disabled')) {
-                this._disableEditor(true);
-            }
-
-            var tbarConf = this.get('toolbar');
-            //Create Toolbar instance
-            if (tbarConf instanceof Toolbar) {
-                this.toolbar = tbarConf;
-                //Set the toolbar to disabled until content is loaded
-                this.toolbar.set('disabled', true);
-            } else {
-                //Set the toolbar to disabled until content is loaded
-                tbarConf.disabled = true;
-                this.toolbar = new Toolbar(this.get('toolbar_cont'), tbarConf);
-            }
-
-            this.fireEvent('toolbarLoaded', { type: 'toolbarLoaded', target: this.toolbar });
-
-            
-            this.toolbar.on('toolbarCollapsed', function() {
-                if (this.currentWindow) {
-                    this.moveWindow();
-                }
-            }, this, true);
-            this.toolbar.on('toolbarExpanded', function() {
-                if (this.currentWindow) {
-                    this.moveWindow();
-                }
-            }, this, true);
-            this.toolbar.on('fontsizeClick', this._handleFontSize, this, true);
-            
-            this.toolbar.on('colorPickerClicked', function(o) {
-                this._handleColorPicker(o);
-                return false; //Stop the buttonClick event
-            }, this, true);
-
-            this.toolbar.on('alignClick', this._handleAlign, this, true);
-            this.on('afterNodeChange', this._handleAfterNodeChange, this, true);
-            this.toolbar.on('insertimageClick', this._handleInsertImageClick, this, true);
-            this.on('windowinsertimageClose', this._handleInsertImageWindowClose, this, true);
-            this.toolbar.on('createlinkClick', this._handleCreateLinkClick, this, true);
-            this.on('windowcreatelinkClose', this._handleCreateLinkWindowClose, this, true);
-            
-
-            //Replace Textarea with editable area
-            this.get('parentNode').replaceChild(this.get('element_cont').get('element'), this.get('element'));
-
-            
-            this.setStyle('visibility', 'hidden');
-            this.setStyle('position', 'absolute');
-            this.setStyle('top', '-9999px');
-            this.setStyle('left', '-9999px');
-            this.get('element_cont').appendChild(this.get('element'));
-            this.get('element_cont').setStyle('display', 'block');
-
-
-            Dom.addClass(this.get('iframe').get('parentNode'), this.CLASS_EDITABLE_CONT);
-            this.get('iframe').addClass(this.CLASS_EDITABLE);
-
-            //Set height and width of editor container
-            this.get('element_cont').setStyle('width', this.get('width'));
-            Dom.setStyle(this.get('iframe').get('parentNode'), 'height', this.get('height'));
-
-            this.get('iframe').setStyle('width', '100%'); //WIDTH
-            this.get('iframe').setStyle('height', '100%');
-
-            this._setupDD();
-
-            window.setTimeout(function() {
-                self._setupAfterElement.call(self);
-            }, 0);
-            this.fireEvent('afterRender', { type: 'afterRender', target: this });
-        },
-        /**
-        * @method execCommand
-        * @param {String} action The "execCommand" action to try to execute (Example: bold, insertimage, inserthtml)
-        * @param {String} value (optional) The value for a given action such as action: fontname value: 'Verdana'
-        * @description This method attempts to try and level the differences in the various browsers and their support for execCommand actions
-        */
-        execCommand: function(action, value) {
-            var beforeExec = this.fireEvent('beforeExecCommand', { type: 'beforeExecCommand', target: this, args: arguments });
-            if ((beforeExec === false) || (this.STOP_EXEC_COMMAND)) {
-                this.STOP_EXEC_COMMAND = false;
-                return false;
-            }
-            this._lastCommand = action;
-            this._setMarkupType(action);
-            if (this.browser.ie) {
-                this._getWindow().focus();
-            }
-            var exec = true;
-            
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue(action)) {
-                    exec = false;
-                }
-            }
-
-            this.editorDirty = true;
-            
-            if ((typeof this['cmd_' + action.toLowerCase()] == 'function') && exec) {
-                var retValue = this['cmd_' + action.toLowerCase()](value);
-                exec = retValue[0];
-                if (retValue[1]) {
-                    action = retValue[1];
-                }
-                if (retValue[2]) {
-                    value = retValue[2];
-                }
-            }
-            if (exec) {
-                try {
-                    this._getDoc().execCommand(action, false, value);
-                } catch(e) {
-                }
-            } else {
-            }
-            this.on('afterExecCommand', function() {
-                this.unsubscribeAll('afterExecCommand');
-                this.nodeChange();
-            }, this, true);
-            this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-            
-        },
-    /* {{{  Command Overrides */
-
-        /**
-        * @method cmd_underline
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('underline') is used.
-        */
-        cmd_underline: function(value) {
-            if (!this.browser.webkit) {
-                var el = this._getSelectedElement();
-                if (el && this._isElement(el, 'span')) {
-                    if (el.style.textDecoration == 'underline') {
-                        el.style.textDecoration = 'none';
-                    } else {
-                        el.style.textDecoration = 'underline';
-                    }
-                    return [false];
-                }
-            }
-            return [true];
-        },
-        /**
-        * @method cmd_backcolor
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('backcolor') is used.
-        */
-        cmd_backcolor: function(value) {
-            var exec = true,
-                el = this._getSelectedElement(),
-                action = 'backcolor';
-
-            if (this.browser.gecko || this.browser.opera) {
-                this._setEditorStyle(true);
-                action = 'hilitecolor';
-            }
-
-            if (!this._isElement(el, 'body') && !this._hasSelection()) {
-                Dom.setStyle(el, 'background-color', value);
-                this._selectNode(el);
-                exec = false;
-            } else if (!this._isElement(el, 'body') && this._hasSelection()) {
-                Dom.setStyle(el, 'background-color', value);
-                this._selectNode(el);
-                exec = false;
-            } else {
-                if (this.get('insert')) {
-                    el = this._createInsertElement({ backgroundColor: value });
-                } else {
-                    this._createCurrentElement('span', { backgroundColor: value });
-                    this._selectNode(this.currentElement[0]);
-                }
-                exec = false;
-            }
-
-            return [exec, action];
-        },
-        /**
-        * @method cmd_forecolor
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('forecolor') is used.
-        */
-        cmd_forecolor: function(value) {
-            var exec = true,
-                el = this._getSelectedElement();
-                
-
-                if (!this._isElement(el, 'body') && !this._hasSelection()) {
-                    Dom.setStyle(el, 'color', value);
-                    this._selectNode(el);
-                    exec = false;
-                } else if (!this._isElement(el, 'body') && this._hasSelection()) {
-                    Dom.setStyle(el, 'color', value);
-                    this._selectNode(el);
-                    exec = false;
-                } else {
-                    if (this.get('insert')) {
-                        el = this._createInsertElement({ color: value });
-                    } else {
-                        this._createCurrentElement('span', { color: value });
-                        this._selectNode(this.currentElement[0]);
-                    }
-                    exec = false;
-                }
-                return [exec];
-        },
-        /**
-        * @method cmd_unlink
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('unlink') is used.
-        */
-        cmd_unlink: function(value) {
-            this._swapEl(this.currentElement[0], 'span', function(el) {
-                el.className = 'yui-non';
-            });
-            return [false];
-        },
-        /**
-        * @method cmd_createlink
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('createlink') is used.
-        */
-        cmd_createlink: function(value) {
-            var el = this._getSelectedElement(), _a = null;
-            if (this._hasParent(el, 'a')) {
-                this.currentElement[0] = this._hasParent(el, 'a');
-            } else if (!this._isElement(el, 'a')) {
-                this._createCurrentElement('a');
-                _a = this._swapEl(this.currentElement[0], 'a');
-                this.currentElement[0] = _a;
-            } else {
-                this.currentElement[0] = el;
-            }
-            return [false];
-        },
-        /**
-        * @method cmd_insertimage
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('insertimage') is used.
-        */
-        cmd_insertimage: function(value) {
-            var exec = true, _img = null, action = 'insertimage',
-                el = this._getSelectedElement();
-
-            if (value === '') {
-                value = this.get('blankimage');
-            }
-
-            /**
-            * @knownissue
-            * @browser Safari 2.x
-            * @description The issue here is that we have no way of knowing where the cursor position is
-            * inside of the iframe, so we have to place the newly inserted data in the best place that we can.
-            */
-            
-            if (this._isElement(el, 'img')) {
-                this.currentElement[0] = el;
-                exec = false;
-            } else {
-                if (this._getDoc().queryCommandEnabled(action)) {
-                    this._getDoc().execCommand('insertimage', false, value);
-                    var imgs = this._getDoc().getElementsByTagName('img');
-                    for (var i = 0; i < imgs.length; i++) {
-                        if (!YAHOO.util.Dom.hasClass(imgs[i], 'yui-img')) {
-                            YAHOO.util.Dom.addClass(imgs[i], 'yui-img');
-                            this.currentElement[0] = imgs[i];
-                        }
-                    }
-                    exec = false;
-                } else {
-                    if (el == this._getDoc().body) {
-                        _img = this._getDoc().createElement('img');
-                        _img.setAttribute('src', value);
-                        YAHOO.util.Dom.addClass(_img, 'yui-img');
-                        this._getDoc().body.appendChild(_img);
-                    } else {
-                        this._createCurrentElement('img');
-                        _img = this._getDoc().createElement('img');
-                        _img.setAttribute('src', value);
-                        YAHOO.util.Dom.addClass(_img, 'yui-img');
-                        this.currentElement[0].parentNode.replaceChild(_img, this.currentElement[0]);
-                    }
-                    this.currentElement[0] = _img;
-                    exec = false;
-                }
-            }
-            return [exec];
-        },
-        /**
-        * @method cmd_inserthtml
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('inserthtml') is used.
-        */
-        cmd_inserthtml: function(value) {
-            var exec = true, action = 'inserthtml', _span = null, _range = null;
-            /**
-            * @knownissue
-            * @browser Safari 2.x
-            * @description The issue here is that we have no way of knowing where the cursor position is
-            * inside of the iframe, so we have to place the newly inserted data in the best place that we can.
-            */
-            if (this.browser.webkit && !this._getDoc().queryCommandEnabled(action)) {
-                this._createCurrentElement('img');
-                _span = this._getDoc().createElement('span');
-                _span.innerHTML = value;
-                this.currentElement[0].parentNode.replaceChild(_span, this.currentElement[0]);
-                exec = false;
-            } else if (this.browser.ie) {
-                _range = this._getRange();
-                if (_range.item) {
-                    _range.item(0).outerHTML = value;
-                } else {
-                    _range.pasteHTML(value);
-                }
-                exec = false;                    
-            }
-            return [exec];
-        },
-        /**
-        * @method cmd_list
-        * @param tag The tag of the list you want to create (eg, ul or ol)
-        * @description This is a combined execCommand override method. It is called from the cmd_insertorderedlist and cmd_insertunorderedlist methods.
-        */
-        cmd_list: function(tag) {
-            var exec = true, list = null, li = 0, el = null, str = '',
-                selEl = this._getSelectedElement(), action = 'insertorderedlist';
-                if (tag == 'ul') {
-                    action = 'insertunorderedlist';
-                }
-            /**
-            * @knownissue Safari 2.+ doesn't support ordered and unordered lists
-            * @browser Safari 2.x
-            * The issue with this workaround is that when applied to a set of text
-            * that has BR's in it, Safari may or may not pick up the individual items as
-            * list items. This is fixed in WebKit (Safari 3)
-            * 2.6.0: Seems there are still some issues with List Creation and Safari 3, reverting to previously working Safari 2.x code
-            */
-            //if ((this.browser.webkit && !this._getDoc().queryCommandEnabled(action))) {
-            if (this.browser.webkit) {
-                if (this._isElement(selEl, 'li') && this._isElement(selEl.parentNode, tag)) {
-                    el = selEl.parentNode;
-                    list = this._getDoc().createElement('span');
-                    YAHOO.util.Dom.addClass(list, 'yui-non');
-                    str = '';
-                    var lis = el.getElementsByTagName('li');
-                    for (li = 0; li < lis.length; li++) {
-                        str += '<div>' + lis[li].innerHTML + '</div>';
-                    }
-                    list.innerHTML = str;
-                    this.currentElement[0] = el;
-                    this.currentElement[0].parentNode.replaceChild(list, this.currentElement[0]);
-                } else {
-                    this._createCurrentElement(tag.toLowerCase());
-                    list = this._getDoc().createElement(tag);
-                    for (li = 0; li < this.currentElement.length; li++) {
-                        var newli = this._getDoc().createElement('li');
-                        newli.innerHTML = this.currentElement[li].innerHTML + '<span class="yui-non">&nbsp;</span>&nbsp;';
-                        list.appendChild(newli);
-                        if (li > 0) {
-                            this.currentElement[li].parentNode.removeChild(this.currentElement[li]);
-                        }
-                    }
-                    this.currentElement[0].parentNode.replaceChild(list, this.currentElement[0]);
-                    this.currentElement[0] = list;
-                    var _h = this.currentElement[0].firstChild;
-                    _h = Dom.getElementsByClassName('yui-non', 'span', _h)[0];
-                    this._getSelection().setBaseAndExtent(_h, 1, _h, _h.innerText.length);
-                }
-                exec = false;
-            } else {
-                el = this._getSelectedElement();
-                if (this._isElement(el, 'li') && this._isElement(el.parentNode, tag) || (this.browser.ie && this._isElement(this._getRange().parentElement, 'li')) || (this.browser.ie && this._isElement(el, 'ul')) || (this.browser.ie && this._isElement(el, 'ol'))) { //we are in a list..
-                    if (this.browser.ie) {
-                        if ((this.browser.ie && this._isElement(el, 'ul')) || (this.browser.ie && this._isElement(el, 'ol'))) {
-                            el = el.getElementsByTagName('li')[0];
-                        }
-                        str = '';
-                        var lis2 = el.parentNode.getElementsByTagName('li');
-                        for (var j = 0; j < lis2.length; j++) {
-                            str += lis2[j].innerHTML + '<br>';
-                        }
-                        var newEl = this._getDoc().createElement('span');
-                        newEl.innerHTML = str;
-                        el.parentNode.parentNode.replaceChild(newEl, el.parentNode);
-                    } else {
-                        this.nodeChange();
-                        this._getDoc().execCommand(action, '', el.parentNode);
-                        this.nodeChange();
-                    }
-                    exec = false;
-                }
-                if (this.browser.opera) {
-                    var self = this;
-                    window.setTimeout(function() {
-                        var liso = self._getDoc().getElementsByTagName('li');
-                        for (var i = 0; i < liso.length; i++) {
-                            if (liso[i].innerHTML.toLowerCase() == '<br>') {
-                                liso[i].parentNode.parentNode.removeChild(liso[i].parentNode);
-                            }
-                        }
-                    },30);
-                }
-                if (this.browser.ie && exec) {
-                    var html = '';
-                    if (this._getRange().html) {
-                        html = '<li>' + this._getRange().html+ '</li>';
-                    } else {
-                        var t = this._getRange().text.split('\n');
-                        if (t.length > 1) {
-                            html = '';
-                            for (var ie = 0; ie < t.length; ie++) {
-                                html += '<li>' + t[ie] + '</li>';
-                            }
-                        } else {
-                            var txt = this._getRange().text;
-                            if (txt === '') {
-                                html = '<li id="new_list_item">' + txt + '</li>';
-                            } else {
-                                html = '<li>' + txt + '</li>';
-                            }
-                        }
-                    }
-                    this._getRange().pasteHTML('<' + tag + '>' + html + '</' + tag + '>');
-                    var new_item = this._getDoc().getElementById('new_list_item');
-                    if (new_item) {
-                        var range = this._getDoc().body.createTextRange();
-                        range.moveToElementText(new_item);
-                        range.collapse(false);
-                        range.select();                       
-                        new_item.id = '';
-                    }
-                    exec = false;
-                }
-            }
-            return exec;
-        },
-        /**
-        * @method cmd_insertorderedlist
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('insertorderedlist ') is used.
-        */
-        cmd_insertorderedlist: function(value) {
-            return [this.cmd_list('ol')];
-        },
-        /**
-        * @method cmd_insertunorderedlist 
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('insertunorderedlist') is used.
-        */
-        cmd_insertunorderedlist: function(value) {
-            return [this.cmd_list('ul')];
-        },
-        /**
-        * @method cmd_fontname
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('fontname') is used.
-        */
-        cmd_fontname: function(value) {
-            var exec = true,
-                selEl = this._getSelectedElement();
-
-            this.currentFont = value;
-            if (selEl && selEl.tagName && !this._hasSelection() && !this._isElement(selEl, 'body') && !this.get('insert')) {
-                YAHOO.util.Dom.setStyle(selEl, 'font-family', value);
-                exec = false;
-            } else if (this.get('insert') && !this._hasSelection()) {
-                var el = this._createInsertElement({ fontFamily: value });
-                exec = false;
-            }
-            return [exec];
-        },
-        /**
-        * @method cmd_fontsize
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('fontsize') is used.
-        */
-        cmd_fontsize: function(value) {
-            var el = null;
-            if (this.currentElement && (this.currentElement.length > 0) && (!this._hasSelection()) && (!this.get('insert'))) {
-                YAHOO.util.Dom.setStyle(this.currentElement, 'fontSize', value);
-            } else if (!this._isElement(this._getSelectedElement(), 'body')) {
-                el = this._getSelectedElement();
-                YAHOO.util.Dom.setStyle(el, 'fontSize', value);
-                if (this.get('insert') && this.browser.ie) {
-                    var r = this._getRange();
-                    r.collapse(false);
-                    r.select();
-                } else {
-                    this._selectNode(el);
-                }
-            } else {
-                if (this.get('insert') && !this._hasSelection()) {
-                    el = this._createInsertElement({ fontSize: value });
-                    this.currentElement[0] = el;
-                    this._selectNode(this.currentElement[0]);
-                } else {
-                    this._createCurrentElement('span', {'fontSize': value });
-                    this._selectNode(this.currentElement[0]);
-                }
-            }
-            return [false];
-        },
-    /* }}} */
-        /**
-        * @private
-        * @method _swapEl
-        * @param {HTMLElement} el The element to swap with
-        * @param {String} tagName The tagname of the element that you wish to create
-        * @param {Function} callback (optional) A function to run on the element after it is created, but before it is replaced. An element reference is passed to this function.
-        * @description This function will create a new element in the DOM and populate it with the contents of another element. Then it will assume it's place.
-        */
-        _swapEl: function(el, tagName, callback) {
-            var _el = this._getDoc().createElement(tagName);
-            if (el) {
-                _el.innerHTML = el.innerHTML;
-            }
-            if (typeof callback == 'function') {
-                callback.call(this, _el);
-            }
-            if (el) {
-                el.parentNode.replaceChild(_el, el);
-            }
-            return _el;
-        },
-        /**
-        * @private
-        * @method _createInsertElement
-        * @description Creates a new "currentElement" then adds some text (and other things) to make it selectable and stylable. Then the user can continue typing.
-        * @param {Object} css (optional) Object literal containing styles to apply to the new element.
-        * @return
-        */
-        _createInsertElement: function(css) {
-            this._createCurrentElement('span', css);
-            var el = this.currentElement[0];
-            if (this.browser.webkit) {
-                //Little Safari Hackery here..
-                el.innerHTML = '<span class="yui-non">&nbsp;</span>';
-                el = el.firstChild;
-                this._getSelection().setBaseAndExtent(el, 1, el, el.innerText.length);                    
-            } else if (this.browser.ie || this.browser.opera) {
-                el.innerHTML = '&nbsp;';
-            }
-            this._focusWindow();
-            this._selectNode(el, true);
-            return el;
-        },
-        /**
-        * @private
-        * @method _createCurrentElement
-        * @param {String} tagName (optional defaults to a) The tagname of the element that you wish to create
-        * @param {Object} tagStyle (optional) Object literal containing styles to apply to the new element.
-        * @description This is a work around for the various browser issues with execCommand. This method will run <code>execCommand('fontname', false, 'yui-tmp')</code> on the given selection.
-        * It will then search the document for an element with the font-family set to <strong>yui-tmp</strong> and replace that with another span that has other information in it, then assign the new span to the 
-        * <code>this.currentElement</code> array, so we now have element references to the elements that were just modified. At this point we can use standard DOM manipulation to change them as we see fit.
-        */
-        _createCurrentElement: function(tagName, tagStyle) {
-            tagName = ((tagName) ? tagName : 'a');
-            var tar = null,
-                el = [],
-                _doc = this._getDoc();
-            
-            if (this.currentFont) {
-                if (!tagStyle) {
-                    tagStyle = {};
-                }
-                tagStyle.fontFamily = this.currentFont;
-                this.currentFont = null;
-            }
-            this.currentElement = [];
-
-            var _elCreate = function(tagName, tagStyle) {
-                var el = null;
-                tagName = ((tagName) ? tagName : 'span');
-                tagName = tagName.toLowerCase();
-                switch (tagName) {
-                    case 'h1':
-                    case 'h2':
-                    case 'h3':
-                    case 'h4':
-                    case 'h5':
-                    case 'h6':
-                        el = _doc.createElement(tagName);
-                        break;
-                    default:
-                        el = _doc.createElement(tagName);
-                        if (tagName === 'span') {
-                            YAHOO.util.Dom.addClass(el, 'yui-tag-' + tagName);
-                            YAHOO.util.Dom.addClass(el, 'yui-tag');
-                            el.setAttribute('tag', tagName);
-                        }
-
-                        for (var k in tagStyle) {
-                            if (YAHOO.lang.hasOwnProperty(tagStyle, k)) {
-                                el.style[k] = tagStyle[k];
-                            }
-                        }
-                        break;
-                }
-                return el;
-            };
-
-            if (!this._hasSelection()) {
-                if (this._getDoc().queryCommandEnabled('insertimage')) {
-                    this._getDoc().execCommand('insertimage', false, 'yui-tmp-img');
-                    var imgs = this._getDoc().getElementsByTagName('img');
-                    for (var j = 0; j < imgs.length; j++) {
-                        if (imgs[j].getAttribute('src', 2) == 'yui-tmp-img') {
-                            el = _elCreate(tagName, tagStyle);
-                            imgs[j].parentNode.replaceChild(el, imgs[j]);
-                            this.currentElement[this.currentElement.length] = el;
-                        }
-                    }
-                } else {
-                    if (this.currentEvent) {
-                        tar = YAHOO.util.Event.getTarget(this.currentEvent);
-                    } else {
-                        //For Safari..
-                        tar = this._getDoc().body;                        
-                    }
-                }
-                if (tar) {
-                    /**
-                    * @knownissue
-                    * @browser Safari 2.x
-                    * @description The issue here is that we have no way of knowing where the cursor position is
-                    * inside of the iframe, so we have to place the newly inserted data in the best place that we can.
-                    */
-                    el = _elCreate(tagName, tagStyle);
-                    if (this._isElement(tar, 'body') || this._isElement(tar, 'html')) {
-                        if (this._isElement(tar, 'html')) {
-                            tar = this._getDoc().body;
-                        }
-                        tar.appendChild(el);
-                    } else if (tar.nextSibling) {
-                        tar.parentNode.insertBefore(el, tar.nextSibling);
-                    } else {
-                        tar.parentNode.appendChild(el);
-                    }
-                    //this.currentElement = el;
-                    this.currentElement[this.currentElement.length] = el;
-                    this.currentEvent = null;
-                    if (this.browser.webkit) {
-                        //Force Safari to focus the new element
-                        this._getSelection().setBaseAndExtent(el, 0, el, 0);
-                        if (this.browser.webkit3) {
-                            this._getSelection().collapseToStart();
-                        } else {
-                            this._getSelection().collapse(true);
-                        }
-                    }
-                }
-            } else {
-                //Force CSS Styling for this action...
-                this._setEditorStyle(true);
-                this._getDoc().execCommand('fontname', false, 'yui-tmp');
-                var _tmp = [], __tmp, __els = ['font', 'span', 'i', 'b', 'u'];
-
-                if (!this._isElement(this._getSelectedElement(), 'body')) {
-                    __els[__els.length] = this._getDoc().getElementsByTagName(this._getSelectedElement().tagName);
-                    __els[__els.length] = this._getDoc().getElementsByTagName(this._getSelectedElement().parentNode.tagName);
-                }
-                for (var _els = 0; _els < __els.length; _els++) {
-                    var _tmp1 = this._getDoc().getElementsByTagName(__els[_els]);
-                    for (var e = 0; e < _tmp1.length; e++) {
-                        _tmp[_tmp.length] = _tmp1[e];
-                    }
-                }
-                
-                for (var i = 0; i < _tmp.length; i++) {
-                    if ((YAHOO.util.Dom.getStyle(_tmp[i], 'font-family') == 'yui-tmp') || (_tmp[i].face && (_tmp[i].face == 'yui-tmp'))) {
-                        //TODO Why is this here?!?
-                        //el = _elCreate(_tmp[i].tagName, tagStyle);
-                        el = _elCreate(tagName, tagStyle);
-                        el.innerHTML = _tmp[i].innerHTML;
-                        if (this._isElement(_tmp[i], 'ol') || (this._isElement(_tmp[i], 'ul'))) {
-                            var fc = _tmp[i].getElementsByTagName('li')[0];
-                            _tmp[i].style.fontFamily = 'inherit';
-                            fc.style.fontFamily = 'inherit';
-                            el.innerHTML = fc.innerHTML;
-                            fc.innerHTML = '';
-                            fc.appendChild(el);
-                            this.currentElement[this.currentElement.length] = el;
-                        } else if (this._isElement(_tmp[i], 'li')) {
-                            _tmp[i].innerHTML = '';
-                            _tmp[i].appendChild(el);
-                            _tmp[i].style.fontFamily = 'inherit';
-                            this.currentElement[this.currentElement.length] = el;
-                        } else {
-                            if (_tmp[i].parentNode) {
-                                _tmp[i].parentNode.replaceChild(el, _tmp[i]);
-                                this.currentElement[this.currentElement.length] = el;
-                                this.currentEvent = null;
-                                if (this.browser.webkit) {
-                                    //Force Safari to focus the new element
-                                    this._getSelection().setBaseAndExtent(el, 0, el, 0);
-                                    if (this.browser.webkit3) {
-                                        this._getSelection().collapseToStart();
-                                    } else {
-                                        this._getSelection().collapse(true);
-                                    }
-                                }
-                                if (this.browser.ie && tagStyle && tagStyle.fontSize) {
-                                    this._getSelection().empty();
-                                }
-                                if (this.browser.gecko) {
-                                    this._getSelection().collapseToStart();
-                                }
-                            }
-                        }
-                    }
-                }
-                var len = this.currentElement.length;
-                for (var o = 0; o < len; o++) {
-                    if ((o + 1) != len) { //Skip the last one in the list
-                        if (this.currentElement[o] && this.currentElement[o].nextSibling) {
-                            if (this._isElement(this.currentElement[o], 'br')) {
-                                this.currentElement[this.currentElement.length] = this.currentElement[o].nextSibling;
-                            }
-                        }
-                    }
-                }
-            }
-        },
-        /**
-        * @method saveHTML
-        * @description Cleans the HTML with the cleanHTML method then places that string back into the textarea.
-        * @return String
-        */
-        saveHTML: function() {
-            var html = this.cleanHTML();
-            if (this._textarea) {
-                this.get('element').value = html;
-            } else {
-                this.get('element').innerHTML = html;
-            }
-            if (this.get('saveEl') !== this.get('element')) {
-                var out = this.get('saveEl');
-                if (Lang.isString(out)) {
-                    out = Dom.get(out);
-                }
-                if (out) {
-                    if (out.tagName.toLowerCase() === 'textarea') {
-                        out.value = html;
-                    } else {
-                        out.innerHTML = html;
-                    }
-                }
-            }
-            return html;
-        },
-        /**
-        * @method setEditorHTML
-        * @param {String} incomingHTML The html content to load into the editor
-        * @description Loads HTML into the editors body
-        */
-        setEditorHTML: function(incomingHTML) {
-            var html = this._cleanIncomingHTML(incomingHTML);
-            this._getDoc().body.innerHTML = html;
-            this.nodeChange();
-        },
-        /**
-        * @method getEditorHTML
-        * @description Gets the unprocessed/unfiltered HTML from the editor
-        */
-        getEditorHTML: function() {
-            var b = this._getDoc().body;
-            if (b === null) {
-                return null;
-            }
-            return this._getDoc().body.innerHTML;
-        },
-        /**
-        * @method show
-        * @description This method needs to be called if the Editor was hidden (like in a TabView or Panel). It is used to reset the editor after being in a container that was set to display none.
-        */
-        show: function() {
-            if (this.browser.gecko) {
-                this._setDesignMode('on');
-                this._focusWindow();
-            }
-            if (this.browser.webkit) {
-                var self = this;
-                window.setTimeout(function() {
-                    self._setInitialContent.call(self);
-                }, 10);
-            }
-            //Adding this will close all other Editor window's when showing this one.
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            //Put the iframe back in place
-            this.get('iframe').setStyle('position', 'static');
-            this.get('iframe').setStyle('left', '');
-        },
-        /**
-        * @method hide
-        * @description This method needs to be called if the Editor is to be hidden (like in a TabView or Panel). It should be called to clear timeouts and close open editor windows.
-        */
-        hide: function() {
-            //Adding this will close all other Editor window's.
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this._fixNodesTimer) {
-                clearTimeout(this._fixNodesTimer);
-                this._fixNodesTimer = null;
-            }
-            if (this._nodeChangeTimer) {
-                clearTimeout(this._nodeChangeTimer);
-                this._nodeChangeTimer = null;
-            }
-            this._lastNodeChange = 0;
-            //Move the iframe off of the screen, so that in containers with visiblity hidden, IE will not cover other elements.
-            this.get('iframe').setStyle('position', 'absolute');
-            this.get('iframe').setStyle('left', '-9999px');
-        },
-        /**
-        * @method _cleanIncomingHTML
-        * @param {String} html The unfiltered HTML
-        * @description Process the HTML with a few regexes to clean it up and stabilize the input
-        * @return {String} The filtered HTML
-        */
-        _cleanIncomingHTML: function(html) {
-            html = html.replace(/<strong([^>]*)>/gi, '<b$1>');
-            html = html.replace(/<\/strong>/gi, '</b>');   
-
-            //replace embed before em check
-            html = html.replace(/<embed([^>]*)>/gi, '<YUI_EMBED$1>');
-            html = html.replace(/<\/embed>/gi, '</YUI_EMBED>');
-
-            html = html.replace(/<em([^>]*)>/gi, '<i$1>');
-            html = html.replace(/<\/em>/gi, '</i>');
-            
-            //Put embed tags back in..
-            html = html.replace(/<YUI_EMBED([^>]*)>/gi, '<embed$1>');
-            html = html.replace(/<\/YUI_EMBED>/gi, '</embed>');
-            if (this.get('plainText')) {
-                html = html.replace(/\n/g, '<br>').replace(/\r/g, '<br>');
-                html = html.replace(/  /gi, '&nbsp;&nbsp;'); //Replace all double spaces
-                html = html.replace(/\t/gi, '&nbsp;&nbsp;&nbsp;&nbsp;'); //Replace all tabs
-            }
-            //Removing Script Tags from the Editor
-            html = html.replace(/<script([^>]*)>/gi, '<bad>');
-            html = html.replace(/<\/script([^>]*)>/gi, '</bad>');
-            html = html.replace(/&lt;script([^>]*)&gt;/gi, '<bad>');
-            html = html.replace(/&lt;\/script([^>]*)&gt;/gi, '</bad>');
-            //Replace the line feeds
-            html = html.replace(/\n/g, '<YUI_LF>').replace(/\r/g, '<YUI_LF>');
-            //Remove Bad HTML elements (used to be script nodes)
-            html = html.replace(new RegExp('<bad([^>]*)>(.*?)<\/bad>', 'gi'), '');
-            //Replace the lines feeds
-            html = html.replace(/<YUI_LF>/g, '\n');
-            return html;
-        },
-        /**
-        * @method cleanHTML
-        * @param {String} html The unfiltered HTML
-        * @description Process the HTML with a few regexes to clean it up and stabilize the output
-        * @return {String} The filtered HTML
-        */
-        cleanHTML: function(html) {
-            //Start Filtering Output
-            //Begin RegExs..
-            if (!html) { 
-                html = this.getEditorHTML();
-            }
-            var markup = this.get('markup');
-            //Make some backups...
-            html = this.pre_filter_linebreaks(html, markup);
-
-		    html = html.replace(/<img([^>]*)\/>/gi, '<YUI_IMG$1>');
-		    html = html.replace(/<img([^>]*)>/gi, '<YUI_IMG$1>');
-
-		    html = html.replace(/<input([^>]*)\/>/gi, '<YUI_INPUT$1>');
-		    html = html.replace(/<input([^>]*)>/gi, '<YUI_INPUT$1>');
-
-		    html = html.replace(/<ul([^>]*)>/gi, '<YUI_UL$1>');
-		    html = html.replace(/<\/ul>/gi, '<\/YUI_UL>');
-		    html = html.replace(/<blockquote([^>]*)>/gi, '<YUI_BQ$1>');
-		    html = html.replace(/<\/blockquote>/gi, '<\/YUI_BQ>');
-
-		    html = html.replace(/<embed([^>]*)>/gi, '<YUI_EMBED$1>');
-		    html = html.replace(/<\/embed>/gi, '<\/YUI_EMBED>');
-
-            //Convert b and i tags to strong and em tags
-            if ((markup == 'semantic') || (markup == 'xhtml')) {
-                html = html.replace(/<i(\s+[^>]*)?>/gi, '<em$1>');
-                html = html.replace(/<\/i>/gi, '</em>');
-                html = html.replace(/<b(\s+[^>]*)?>/gi, '<strong$1>');
-                html = html.replace(/<\/b>/gi, '</strong>');
-            }
-            
-            //Case Changing
-		    html = html.replace(/<font/gi, '<font');
-		    html = html.replace(/<\/font>/gi, '</font>');
-		    html = html.replace(/<span/gi, '<span');
-		    html = html.replace(/<\/span>/gi, '</span>');
-            if ((markup == 'semantic') || (markup == 'xhtml') || (markup == 'css')) {
-                html = html.replace(new RegExp('<font([^>]*)face="([^>]*)">(.*?)<\/font>', 'gi'), '<span $1 style="font-family: $2;">$3</span>');
-                html = html.replace(/<u/gi, '<span style="text-decoration: underline;"');
-                if (this.browser.webkit) {
-                    html = html.replace(new RegExp('<span class="Apple-style-span" style="font-weight: bold;">([^>]*)<\/span>', 'gi'), '<strong>$1</strong>');
-                    html = html.replace(new RegExp('<span class="Apple-style-span" style="font-style: italic;">([^>]*)<\/span>', 'gi'), '<em>$1</em>');
-                }
-                html = html.replace(/\/u>/gi, '/span>');
-                if (markup == 'css') {
-                    html = html.replace(/<em([^>]*)>/gi, '<i$1>');
-                    html = html.replace(/<\/em>/gi, '</i>');
-                    html = html.replace(/<strong([^>]*)>/gi, '<b$1>');
-                    html = html.replace(/<\/strong>/gi, '</b>');
-                    html = html.replace(/<b/gi, '<span style="font-weight: bold;"');
-                    html = html.replace(/\/b>/gi, '/span>');
-                    html = html.replace(/<i/gi, '<span style="font-style: italic;"');
-                    html = html.replace(/\/i>/gi, '/span>');
-                }
-                html = html.replace(/  /gi, ' '); //Replace all double spaces and replace with a single
-            } else {
-		        html = html.replace(/<u/gi, '<u');
-		        html = html.replace(/\/u>/gi, '/u>');
-            }
-		    html = html.replace(/<ol([^>]*)>/gi, '<ol$1>');
-		    html = html.replace(/\/ol>/gi, '/ol>');
-		    html = html.replace(/<li/gi, '<li');
-		    html = html.replace(/\/li>/gi, '/li>');
-            html = this.filter_safari(html);
-
-            html = this.filter_internals(html);
-
-            html = this.filter_all_rgb(html);
-
-            //Replace our backups with the real thing
-            html = this.post_filter_linebreaks(html, markup);
-
-            if (markup == 'xhtml') {
-		        html = html.replace(/<YUI_IMG([^>]*)>/g, '<img $1 />');
-		        html = html.replace(/<YUI_INPUT([^>]*)>/g, '<input $1 />');
-            } else {
-		        html = html.replace(/<YUI_IMG([^>]*)>/g, '<img $1>');
-		        html = html.replace(/<YUI_INPUT([^>]*)>/g, '<input $1>');
-            }
-		    html = html.replace(/<YUI_UL([^>]*)>/g, '<ul$1>');
-		    html = html.replace(/<\/YUI_UL>/g, '<\/ul>');
-
-            html = this.filter_invalid_lists(html);
-
-		    html = html.replace(/<YUI_BQ([^>]*)>/g, '<blockquote$1>');
-		    html = html.replace(/<\/YUI_BQ>/g, '<\/blockquote>');
-
-		    html = html.replace(/<YUI_EMBED([^>]*)>/g, '<embed$1>');
-		    html = html.replace(/<\/YUI_EMBED>/g, '<\/embed>');
-            
-            //This should fix &amp;s in URL's
-            html = html.replace(' &amp; ', 'YUI_AMP');
-            html = html.replace('&amp;', '&');
-            html = html.replace('YUI_AMP', '&amp;');
-
-            //Trim the output, removing whitespace from the beginning and end
-            html = YAHOO.lang.trim(html);
-
-            if (this.get('removeLineBreaks')) {
-                html = html.replace(/\n/g, '').replace(/\r/g, '');
-                html = html.replace(/  /gi, ' '); //Replace all double spaces and replace with a single
-            }
-            
-            //First empty span
-            if (html.substring(0, 6).toLowerCase() == '<span>')  {
-                html = html.substring(6);
-                //Last empty span
-                if (html.substring(html.length - 7, html.length).toLowerCase() == '</span>')  {
-                    html = html.substring(0, html.length - 7);
-                }
-            }
-
-            for (var v in this.invalidHTML) {
-                if (YAHOO.lang.hasOwnProperty(this.invalidHTML, v)) {
-                    if (Lang.isObject(v) && v.keepContents) {
-                        html = html.replace(new RegExp('<' + v + '([^>]*)>(.*?)<\/' + v + '>', 'gi'), '$1');
-                    } else {
-                        html = html.replace(new RegExp('<' + v + '([^>]*)>(.*?)<\/' + v + '>', 'gi'), '');
-                    }
-                }
-            }
-
-            this.fireEvent('cleanHTML', { type: 'cleanHTML', target: this, html: html });
-
-            return html;
-        },
-        /**
-        * @method filter_invalid_lists
-        * @param String html The HTML string to filter
-        * @description Filters invalid ol and ul list markup, converts this: <li></li><ol>..</ol> to this: <li></li><li><ol>..</ol></li>
-        */
-        filter_invalid_lists: function(html) {
-            html = html.replace(/<\/li>\n/gi, '</li>');
-
-            html = html.replace(/<\/li><ol>/gi, '</li><li><ol>');
-            html = html.replace(/<\/ol>/gi, '</ol></li>');
-            html = html.replace(/<\/ol><\/li>\n/gi, "</ol>\n");
-
-            html = html.replace(/<\/li><ul>/gi, '</li><li><ul>');
-            html = html.replace(/<\/ul>/gi, '</ul></li>');
-            html = html.replace(/<\/ul><\/li>\n?/gi, "</ul>\n");
-
-            html = html.replace(/<\/li>/gi, "</li>\n");
-            html = html.replace(/<\/ol>/gi, "</ol>\n");
-            html = html.replace(/<ol>/gi, "<ol>\n");
-            html = html.replace(/<ul>/gi, "<ul>\n");
-            return html;
-        },
-        /**
-        * @method filter_safari
-        * @param String html The HTML string to filter
-        * @description Filters strings specific to Safari
-        * @return String
-        */
-        filter_safari: function(html) {
-            if (this.browser.webkit) {
-                //<span class="Apple-tab-span" style="white-space:pre">	</span>
-                html = html.replace(/<span class="Apple-tab-span" style="white-space:pre">([^>])<\/span>/gi, '&nbsp;&nbsp;&nbsp;&nbsp;');
-                html = html.replace(/Apple-style-span/gi, '');
-                html = html.replace(/style="line-height: normal;"/gi, '');
-                //Remove bogus LI's
-                html = html.replace(/<li><\/li>/gi, '');
-                html = html.replace(/<li> <\/li>/gi, '');
-                html = html.replace(/<li>  <\/li>/gi, '');
-                //Remove bogus DIV's - updated from just removing the div's to replacing /div with a break
-                if (this.get('ptags')) {
-		            html = html.replace(/<div([^>]*)>/g, '<p$1>');
-				    html = html.replace(/<\/div>/gi, '</p>');
-                } else {
-                    html = html.replace(/<div>/gi, '');
-				    html = html.replace(/<\/div>/gi, '<br>');
-                }
-            }
-            return html;
-        },
-        /**
-        * @method filter_internals
-        * @param String html The HTML string to filter
-        * @description Filters internal RTE strings and bogus attrs we don't want
-        * @return String
-        */
-        filter_internals: function(html) {
-		    html = html.replace(/\r/g, '');
-            //Fix stuff we don't want
-	        html = html.replace(/<\/?(body|head|html)[^>]*>/gi, '');
-            //Fix last BR in LI
-		    html = html.replace(/<YUI_BR><\/li>/gi, '</li>');
-
-		    html = html.replace(/yui-tag-span/gi, '');
-		    html = html.replace(/yui-tag/gi, '');
-		    html = html.replace(/yui-non/gi, '');
-		    html = html.replace(/yui-img/gi, '');
-		    html = html.replace(/ tag="span"/gi, '');
-		    html = html.replace(/ class=""/gi, '');
-		    html = html.replace(/ style=""/gi, '');
-		    html = html.replace(/ class=" "/gi, '');
-		    html = html.replace(/ class="  "/gi, '');
-		    html = html.replace(/ target=""/gi, '');
-		    html = html.replace(/ title=""/gi, '');
-
-            if (this.browser.ie) {
-		        html = html.replace(/ class= /gi, '');
-		        html = html.replace(/ class= >/gi, '');
-		        html = html.replace(/_height="([^>])"/gi, '');
-		        html = html.replace(/_width="([^>])"/gi, '');
-            }
-            
-            return html;
-        },
-        /**
-        * @method filter_all_rgb
-        * @param String str The HTML string to filter
-        * @description Converts all RGB color strings found in passed string to a hex color, example: style="color: rgb(0, 255, 0)" converts to style="color: #00ff00"
-        * @return String
-        */
-        filter_all_rgb: function(str) {
-            var exp = new RegExp("rgb\\s*?\\(\\s*?([0-9]+).*?,\\s*?([0-9]+).*?,\\s*?([0-9]+).*?\\)", "gi");
-            var arr = str.match(exp);
-            if (Lang.isArray(arr)) {
-                for (var i = 0; i < arr.length; i++) {
-                    var color = this.filter_rgb(arr[i]);
-                    str = str.replace(arr[i].toString(), color);
-                }
-            }
-            
-            return str;
-        },
-        /**
-        * @method filter_rgb
-        * @param String css The CSS string containing rgb(#,#,#);
-        * @description Converts an RGB color string to a hex color, example: rgb(0, 255, 0) converts to #00ff00
-        * @return String
-        */
-        filter_rgb: function(css) {
-            if (css.toLowerCase().indexOf('rgb') != -1) {
-                var exp = new RegExp("(.*?)rgb\\s*?\\(\\s*?([0-9]+).*?,\\s*?([0-9]+).*?,\\s*?([0-9]+).*?\\)(.*?)", "gi");
-                var rgb = css.replace(exp, "$1,$2,$3,$4,$5").split(',');
-            
-                if (rgb.length == 5) {
-                    var r = parseInt(rgb[1], 10).toString(16);
-                    var g = parseInt(rgb[2], 10).toString(16);
-                    var b = parseInt(rgb[3], 10).toString(16);
-
-                    r = r.length == 1 ? '0' + r : r;
-                    g = g.length == 1 ? '0' + g : g;
-                    b = b.length == 1 ? '0' + b : b;
-
-                    css = "#" + r + g + b;
-                }
-            }
-            return css;
-        },
-        /**
-        * @method pre_filter_linebreaks
-        * @param String html The HTML to filter
-        * @param String markup The markup type to filter to
-        * @description HTML Pre Filter
-        * @return String
-        */
-        pre_filter_linebreaks: function(html, markup) {
-            if (this.browser.webkit) {
-		        html = html.replace(/<br class="khtml-block-placeholder">/gi, '<YUI_BR>');
-		        html = html.replace(/<br class="webkit-block-placeholder">/gi, '<YUI_BR>');
-            }
-		    html = html.replace(/<br>/gi, '<YUI_BR>');
-		    html = html.replace(/<br (.*?)>/gi, '<YUI_BR>');
-		    html = html.replace(/<br\/>/gi, '<YUI_BR>');
-		    html = html.replace(/<br \/>/gi, '<YUI_BR>');
-		    html = html.replace(/<div><YUI_BR><\/div>/gi, '<YUI_BR>');
-		    html = html.replace(/<p>(&nbsp;|&#160;)<\/p>/g, '<YUI_BR>');            
-		    html = html.replace(/<p><br>&nbsp;<\/p>/gi, '<YUI_BR>');
-		    html = html.replace(/<p>&nbsp;<\/p>/gi, '<YUI_BR>');
-            //Fix last BR
-	        html = html.replace(/<YUI_BR>$/, '');
-            //Fix last BR in P
-	        html = html.replace(/<YUI_BR><\/p>/g, '</p>');
-            if (this.browser.ie) {
-	            html = html.replace(/&nbsp;&nbsp;&nbsp;&nbsp;/g, '\t');
-            }
-            return html;
-        },
-        /**
-        * @method post_filter_linebreaks
-        * @param String html The HTML to filter
-        * @param String markup The markup type to filter to
-        * @description HTML Pre Filter
-        * @return String
-        */
-        post_filter_linebreaks: function(html, markup) {
-            if (markup == 'xhtml') {
-		        html = html.replace(/<YUI_BR>/g, '<br />');
-            } else {
-		        html = html.replace(/<YUI_BR>/g, '<br>');
-            }
-            return html;
-        },
-        /**
-        * @method clearEditorDoc
-        * @description Clear the doc of the Editor
-        */
-        clearEditorDoc: function() {
-            this._getDoc().body.innerHTML = '&nbsp;';
-        },
-        /**
-        * @method openWindow
-        * @description Override Method for Advanced Editor
-        */
-        openWindow: function(win) {
-        },
-        /**
-        * @method moveWindow
-        * @description Override Method for Advanced Editor
-        */
-        moveWindow: function() {
-        },
-        /**
-        * @private
-        * @method _closeWindow
-        * @description Override Method for Advanced Editor
-        */
-        _closeWindow: function() {
-        },
-        /**
-        * @method closeWindow
-        * @description Override Method for Advanced Editor
-        */
-        closeWindow: function() {
-            //this.unsubscribeAll('afterExecCommand');
-            this.toolbar.resetAllButtons();
-            this._focusWindow();        
-        },
-        /**
-        * @method destroy
-        * @description Destroys the editor, all of it's elements and objects.
-        * @return {Boolean}
-        */
-        destroy: function() {
-            if (this.resize) {
-                this.resize.destroy();
-            }
-            if (this.dd) {
-                this.dd.unreg();
-            }
-            if (this.get('panel')) {
-                this.get('panel').destroy();
-            }
-            this.saveHTML();
-            this.toolbar.destroy();
-            this.setStyle('visibility', 'visible');
-            this.setStyle('position', 'static');
-            this.setStyle('top', '');
-            this.setStyle('left', '');
-            var textArea = this.get('element');
-            this.get('element_cont').get('parentNode').replaceChild(textArea, this.get('element_cont').get('element'));
-            this.get('element_cont').get('element').innerHTML = '';
-            this.set('handleSubmit', false); //Remove the submit handler
-            return true;
-        },        
-        /**
-        * @method toString
-        * @description Returns a string representing the editor.
-        * @return {String}
-        */
-        toString: function() {
-            var str = 'SimpleEditor';
-            if (this.get && this.get('element_cont')) {
-                str = 'SimpleEditor (#' + this.get('element_cont').get('id') + ')' + ((this.get('disabled') ? ' Disabled' : ''));
-            }
-            return str;
-        }
-    });
-
-/**
-* @event toolbarLoaded
-* @description Event is fired during the render process directly after the Toolbar is loaded. Allowing you to attach events to the toolbar. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event cleanHTML
-* @description Event is fired after the cleanHTML method is called.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event afterRender
-* @description Event is fired after the render process finishes. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorContentLoaded
-* @description Event is fired after the editor iframe's document fully loads and fires it's onload event. From here you can start injecting your own things into the document. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeNodeChange
-* @description Event fires at the beginning of the nodeChange process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event afterNodeChange
-* @description Event fires at the end of the nodeChange process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeExecCommand
-* @description Event fires at the beginning of the execCommand process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event afterExecCommand
-* @description Event fires at the end of the execCommand process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorMouseUp
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorMouseDown
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorDoubleClick
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorClick
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorKeyUp
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorKeyPress
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorKeyDown
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorMouseUp
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorMouseDown
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorDoubleClick
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorClick
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorKeyUp
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorKeyPress
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorKeyDown
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-    /**
-     * @description Singleton object used to track the open window objects and panels across the various open editors
-     * @class EditorInfo
-     * @static
-    */
-    YAHOO.widget.EditorInfo = {
-        /**
-        * @private
-        * @property _instances
-        * @description A reference to all editors on the page.
-        * @type Object
-        */
-        _instances: {},
-        /**
-        * @private
-        * @property blankImage
-        * @description A reference to the blankImage url
-        * @type String 
-        */
-        blankImage: '',
-        /**
-        * @private
-        * @property window
-        * @description A reference to the currently open window object in any editor on the page.
-        * @type Object <a href="YAHOO.widget.EditorWindow.html">YAHOO.widget.EditorWindow</a>
-        */
-        window: {},
-        /**
-        * @private
-        * @property panel
-        * @description A reference to the currently open panel in any editor on the page.
-        * @type Object <a href="YAHOO.widget.Overlay.html">YAHOO.widget.Overlay</a>
-        */
-        panel: null,
-        /**
-        * @method getEditorById
-        * @description Returns a reference to the Editor object associated with the given textarea
-        * @param {String/HTMLElement} id The id or reference of the textarea to return the Editor instance of
-        * @return Object <a href="YAHOO.widget.Editor.html">YAHOO.widget.Editor</a>
-        */
-        getEditorById: function(id) {
-            if (!YAHOO.lang.isString(id)) {
-                //Not a string, assume a node Reference
-                id = id.id;
-            }
-            if (this._instances[id]) {
-                return this._instances[id];
-            }
-            return false;
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the EditorInfo.
-        * @return {String}
-        */
-        toString: function() {
-            var len = 0;
-            for (var i in this._instances) {
-                if (Lang.hasOwnProperty(this._instances, i)) {
-                    len++;
-                }
-            }
-            return 'Editor Info (' + len + ' registered intance' + ((len > 1) ? 's' : '') + ')';
-        }
-    };
-
-
-
-    
-})();
-/**
- * @module editor
- * @description <p>The Rich Text Editor is a UI control that replaces a standard HTML textarea; it allows for the rich formatting of text content, including common structural treatments like lists, formatting treatments like bold and italic text, and drag-and-drop inclusion and sizing of images. The Rich Text Editor's toolbar is extensible via a plugin architecture so that advanced implementations can achieve a high degree of customization.</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event, container_core, simpleeditor
- * @optional dragdrop, animation, menu, button
- * @beta
- */
-
-(function() {
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang,
-    Toolbar = YAHOO.widget.Toolbar;
-
-    /**
-     * The Rich Text Editor is a UI control that replaces a standard HTML textarea; it allows for the rich formatting of text content, including common structural treatments like lists, formatting treatments like bold and italic text, and drag-and-drop inclusion and sizing of images. The Rich Text Editor's toolbar is extensible via a plugin architecture so that advanced implementations can achieve a high degree of customization.
-     * @constructor
-     * @class Editor
-     * @extends YAHOO.widget.SimpleEditor
-     * @param {String/HTMLElement} el The textarea element to turn into an editor.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    
-    YAHOO.widget.Editor = function(el, attrs) {
-        YAHOO.widget.Editor.superclass.constructor.call(this, el, attrs);
-    };
-
-    YAHOO.extend(YAHOO.widget.Editor, YAHOO.widget.SimpleEditor, {
-        /**
-        * @private
-        * @property _undoCache
-        * @description An Array hash of the Undo Levels.
-        * @type Array
-        */
-        _undoCache: null,
-        /**
-        * @private
-        * @property _undoLevel
-        * @description The index of the current undo state.
-        * @type Number
-        */
-        _undoLevel: null,    
-        /**
-        * @private
-        * @method _hasUndoLevel
-        * @description Checks to see if we have an undo level available
-        * @return Boolean
-        */
-        _hasUndoLevel: function() {
-            return (this._undoCache.length && this._undoLevel);
-        },
-        /**
-        * @private
-        * @method _undoNodeChange
-        * @description nodeChange listener for undo processing
-        */
-        _undoNodeChange: function() {
-            var undo_button = this.toolbar.getButtonByValue('undo'),
-                redo_button = this.toolbar.getButtonByValue('redo');
-            if (undo_button && redo_button) {
-                if (this._hasUndoLevel()) {
-                    this.toolbar.enableButton(undo_button);
-                }
-                if (this._undoLevel < this._undoCache.length) {
-                    this.toolbar.enableButton(redo_button);
-                }
-            }
-        },
-        /**
-        * @private
-        * @method _checkUndo
-        * @description Prunes the undo cache when it reaches the maxUndo config
-        */
-        _checkUndo: function() {
-            var len = this._undoCache.length,
-            tmp = [];
-            if (len >= this.get('maxUndo')) {
-                for (var i = (len - this.get('maxUndo')); i < len; i++) {
-                    tmp.push(this._undoCache[i]);
-                }
-                this._undoCache = tmp;
-            }
-        },
-        /**
-        * @private
-        * @method _putUndo
-        * @description Puts the content of the Editor into the _undoCache.
-        * //TODO Convert the hash to a series of TEXTAREAS to store state in.
-        * @param {String} str The content of the Editor
-        */
-        _putUndo: function(str) {
-            this._undoCache.push(str);
-        },
-        /**
-        * @private
-        * @method _getUndo
-        * @description Get's a level from the undo cache.
-        * @param {Number} index The index of the undo level we want to get.
-        * @return {String}
-        */
-        _getUndo: function(index) {
-            return this._undoCache[index];
-        },
-        /**
-        * @private
-        * @method _storeUndo
-        * @description Method to call when you want to store an undo state. Currently called from nodeChange and _handleKeyUp
-        */
-        _storeUndo: function() {
-            if (this._lastCommand === 'undo' || this._lastCommand === 'redo') {
-                return false;
-            }
-            if (!this._undoCache) {
-                this._undoCache = [];
-            }
-            this._checkUndo();
-            var str = this.getEditorHTML();
-            var last = this._undoCache[this._undoCache.length - 1];
-            if (last) {
-                if (str !== last) {
-                    this._putUndo(str);
-                }
-            } else {
-                this._putUndo(str);
-            }
-            this._undoLevel = this._undoCache.length;
-            this._undoNodeChange();
-        },    
-        /**
-        * @property STR_BEFORE_EDITOR
-        * @description The accessibility string for the element before the iFrame
-        * @type String
-        */
-        STR_BEFORE_EDITOR: 'This text field can contain stylized text and graphics. To cycle through all formatting options, use the keyboard shortcut Control + Shift + T to place focus on the toolbar and navigate between option heading names. <h4>Common formatting keyboard shortcuts:</h4><ul><li>Control Shift B sets text to bold</li> <li>Control Shift I sets text to italic</li> <li>Control Shift U underlines text</li> <li>Control Shift [ aligns text left</li> <li>Control Shift | centers text</li> <li>Control Shift ] aligns text right</li> <li>Control Shift L adds an HTML link</li> <li>To exit this text editor use the keyboard shortcut Control + Shift + ESC.</li></ul>',    
-        /**
-        * @property STR_CLOSE_WINDOW
-        * @description The Title of the close button in the Editor Window
-        * @type String
-        */
-        STR_CLOSE_WINDOW: 'Close Window',
-        /**
-        * @property STR_CLOSE_WINDOW_NOTE
-        * @description A note appearing in the Editor Window to tell the user that the Escape key will close the window
-        * @type String
-        */
-        STR_CLOSE_WINDOW_NOTE: 'To close this window use the Control + Shift + W key',
-        /**
-        * @property STR_IMAGE_PROP_TITLE
-        * @description The title for the Image Property Editor Window
-        * @type String
-        */
-        STR_IMAGE_PROP_TITLE: 'Image Options',
-        /**
-        * @property STR_IMAGE_URL
-        * @description The label string for Image URL
-        * @type String
-        */
-        STR_IMAGE_URL: 'Image URL',
-        /**
-        * @property STR_IMAGE_TITLE
-        * @description The label string for Image Description
-        * @type String
-        */
-        STR_IMAGE_TITLE: 'Description',
-        /**
-        * @property STR_IMAGE_SIZE
-        * @description The label string for Image Size
-        * @type String
-        */
-        STR_IMAGE_SIZE: 'Size',
-        /**
-        * @property STR_IMAGE_ORIG_SIZE
-        * @description The label string for Original Image Size
-        * @type String
-        */
-        STR_IMAGE_ORIG_SIZE: 'Original Size',
-        /**
-        * @property STR_IMAGE_COPY
-        * @description The label string for the image copy and paste message for Opera and Safari
-        * @type String
-        */
-        STR_IMAGE_COPY: '<span class="tip"><span class="icon icon-info"></span><strong>Note:</strong>To move this image just highlight it, cut, and paste where ever you\'d like.</span>',
-        /**
-        * @property STR_IMAGE_PADDING
-        * @description The label string for the image padding.
-        * @type String
-        */
-        STR_IMAGE_PADDING: 'Padding',
-        /**
-        * @property STR_IMAGE_BORDER
-        * @description The label string for the image border.
-        * @type String
-        */
-        STR_IMAGE_BORDER: 'Border',
-        /**
-        * @property STR_IMAGE_BORDER_SIZE
-        * @description The label string for the image border size.
-        * @type String
-        */
-        STR_IMAGE_BORDER_SIZE: 'Border Size',
-        /**
-        * @property STR_IMAGE_BORDER_TYPE
-        * @description The label string for the image border type.
-        * @type String
-        */
-        STR_IMAGE_BORDER_TYPE: 'Border Type',
-        /**
-        * @property STR_IMAGE_TEXTFLOW
-        * @description The label string for the image text flow.
-        * @type String
-        */
-        STR_IMAGE_TEXTFLOW: 'Text Flow',
-        /**
-        * @property STR_LOCAL_FILE_WARNING
-        * @description The label string for the local file warning.
-        * @type String
-        */
-        STR_LOCAL_FILE_WARNING: '<span class="tip"><span class="icon icon-warn"></span><strong>Note:</strong>This image/link points to a file on your computer and will not be accessible to others on the internet.</span>',
-        /**
-        * @property STR_LINK_PROP_TITLE
-        * @description The label string for the Link Property Editor Window.
-        * @type String
-        */
-        STR_LINK_PROP_TITLE: 'Link Options',
-        /**
-        * @property STR_LINK_PROP_REMOVE
-        * @description The label string for the Remove link from text link inside the property editor.
-        * @type String
-        */
-        STR_LINK_PROP_REMOVE: 'Remove link from text',
-        /**
-        * @property STR_LINK_NEW_WINDOW
-        * @description The string for the open in a new window label.
-        * @type String
-        */
-        STR_LINK_NEW_WINDOW: 'Open in a new window.',
-        /**
-        * @property STR_LINK_TITLE
-        * @description The string for the link description.
-        * @type String
-        */
-        STR_LINK_TITLE: 'Description',
-        /**
-        * @protected
-        * @property CLASS_LOCAL_FILE
-        * @description CSS class applied to an element when it's found to have a local url.
-        * @type String
-        */
-        CLASS_LOCAL_FILE: 'warning-localfile',
-        /**
-        * @protected
-        * @property CLASS_HIDDEN
-        * @description CSS class applied to the body when the hiddenelements button is pressed.
-        * @type String
-        */
-        CLASS_HIDDEN: 'yui-hidden',
-        /** 
-        * @method init
-        * @description The Editor class' initialization method
-        */
-        init: function(p_oElement, p_oAttributes) {
-            
-            this._windows = {};
-            this._defaultToolbar = {
-                collapse: true,
-                titlebar: 'Text Editing Tools',
-                draggable: false,
-                buttonType: 'advanced',
-                buttons: [
-                    { group: 'fontstyle', label: 'Font Name and Size',
-                        buttons: [
-                            { type: 'select', label: 'Arial', value: 'fontname', disabled: true,
-                                menu: [
-                                    { text: 'Arial', checked: true },
-                                    { text: 'Arial Black' },
-                                    { text: 'Comic Sans MS' },
-                                    { text: 'Courier New' },
-                                    { text: 'Lucida Console' },
-                                    { text: 'Tahoma' },
-                                    { text: 'Times New Roman' },
-                                    { text: 'Trebuchet MS' },
-                                    { text: 'Verdana' }
-                                ]
-                            },
-                            { type: 'spin', label: '13', value: 'fontsize', range: [ 9, 75 ], disabled: true }
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'textstyle', label: 'Font Style',
-                        buttons: [
-                            { type: 'push', label: 'Bold CTRL + SHIFT + B', value: 'bold' },
-                            { type: 'push', label: 'Italic CTRL + SHIFT + I', value: 'italic' },
-                            { type: 'push', label: 'Underline CTRL + SHIFT + U', value: 'underline' },
-                            { type: 'separator' },
-                            { type: 'push', label: 'Subscript', value: 'subscript', disabled: true },
-                            { type: 'push', label: 'Superscript', value: 'superscript', disabled: true }
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'textstyle2', label: '&nbsp;',
-                        buttons: [
-                            { type: 'color', label: 'Font Color', value: 'forecolor', disabled: true },
-                            { type: 'color', label: 'Background Color', value: 'backcolor', disabled: true },
-                            { type: 'separator' },
-                            { type: 'push', label: 'Remove Formatting', value: 'removeformat', disabled: true },
-                            { type: 'push', label: 'Show/Hide Hidden Elements', value: 'hiddenelements' }
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'undoredo', label: 'Undo/Redo',
-                        buttons: [
-                            { type: 'push', label: 'Undo', value: 'undo', disabled: true },
-                            { type: 'push', label: 'Redo', value: 'redo', disabled: true }
-                            
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'alignment', label: 'Alignment',
-                        buttons: [
-                            { type: 'push', label: 'Align Left CTRL + SHIFT + [', value: 'justifyleft' },
-                            { type: 'push', label: 'Align Center CTRL + SHIFT + |', value: 'justifycenter' },
-                            { type: 'push', label: 'Align Right CTRL + SHIFT + ]', value: 'justifyright' },
-                            { type: 'push', label: 'Justify', value: 'justifyfull' }
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'parastyle', label: 'Paragraph Style',
-                        buttons: [
-                        { type: 'select', label: 'Normal', value: 'heading', disabled: true,
-                            menu: [
-                                { text: 'Normal', value: 'none', checked: true },
-                                { text: 'Header 1', value: 'h1' },
-                                { text: 'Header 2', value: 'h2' },
-                                { text: 'Header 3', value: 'h3' },
-                                { text: 'Header 4', value: 'h4' },
-                                { text: 'Header 5', value: 'h5' },
-                                { text: 'Header 6', value: 'h6' }
-                            ]
-                        }
-                        ]
-                    },
-                    { type: 'separator' },
-                    
-                    { group: 'indentlist2', label: 'Indenting and Lists',
-                        buttons: [
-                            { type: 'push', label: 'Indent', value: 'indent', disabled: true },
-                            { type: 'push', label: 'Outdent', value: 'outdent', disabled: true },
-                            { type: 'push', label: 'Create an Unordered List', value: 'insertunorderedlist' },
-                            { type: 'push', label: 'Create an Ordered List', value: 'insertorderedlist' }
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'insertitem', label: 'Insert Item',
-                        buttons: [
-                            { type: 'push', label: 'HTML Link CTRL + SHIFT + L', value: 'createlink', disabled: true },
-                            { type: 'push', label: 'Insert Image', value: 'insertimage' }
-                        ]
-                    }
-                ]
-            };
-
-            this._defaultImageToolbarConfig = {
-                buttonType: this._defaultToolbar.buttonType,
-                buttons: [
-                    { group: 'textflow', label: this.STR_IMAGE_TEXTFLOW + ':',
-                        buttons: [
-                            { type: 'push', label: 'Left', value: 'left' },
-                            { type: 'push', label: 'Inline', value: 'inline' },
-                            { type: 'push', label: 'Block', value: 'block' },
-                            { type: 'push', label: 'Right', value: 'right' }
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'padding', label: this.STR_IMAGE_PADDING + ':',
-                        buttons: [
-                            { type: 'spin', label: '0', value: 'padding', range: [0, 50] }
-                        ]
-                    },
-                    { type: 'separator' },
-                    { group: 'border', label: this.STR_IMAGE_BORDER + ':',
-                        buttons: [
-                            { type: 'select', label: this.STR_IMAGE_BORDER_SIZE, value: 'bordersize',
-                                menu: [
-                                    { text: 'none', value: '0', checked: true },
-                                    { text: '1px', value: '1' },
-                                    { text: '2px', value: '2' },
-                                    { text: '3px', value: '3' },
-                                    { text: '4px', value: '4' },
-                                    { text: '5px', value: '5' }
-                                ]
-                            },
-                            { type: 'select', label: this.STR_IMAGE_BORDER_TYPE, value: 'bordertype', disabled: true,
-                                menu: [
-                                    { text: 'Solid', value: 'solid', checked: true },
-                                    { text: 'Dashed', value: 'dashed' },
-                                    { text: 'Dotted', value: 'dotted' }
-                                ]
-                            },
-                            { type: 'color', label: 'Border Color', value: 'bordercolor', disabled: true }
-                        ]
-                    }
-                ]
-            };
-
-            YAHOO.widget.Editor.superclass.init.call(this, p_oElement, p_oAttributes);
-        },
-        _render: function() {
-            YAHOO.widget.Editor.superclass._render.apply(this, arguments);
-            var self = this;
-            //Render the panel in another thread and delay it a little..
-            window.setTimeout(function() {
-                self._renderPanel.call(self);
-            }, 800);
-        },
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create 
-        * the editor.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the editor.
-        */
-        initAttributes: function(attr) {
-            YAHOO.widget.Editor.superclass.initAttributes.call(this, attr);
-
-            /**
-            * @attribute localFileWarning
-            * @description Should we throw the warning if we detect a file that is local to their machine?
-            * @default true
-            * @type Boolean
-            */            
-            this.setAttributeConfig('localFileWarning', {
-                value: attr.locaFileWarning || true
-            });
-
-            /**
-            * @attribute hiddencss
-            * @description The CSS used to show/hide hidden elements on the page, these rules must be prefixed with the class provided in <code>this.CLASS_HIDDEN</code>
-            * @default <code><pre>
-            .yui-hidden font, .yui-hidden strong, .yui-hidden b, .yui-hidden em, .yui-hidden i, .yui-hidden u, .yui-hidden div, .yui-hidden p, .yui-hidden span, .yui-hidden img, .yui-hidden ul, .yui-hidden ol, .yui-hidden li, .yui-hidden table {
-                border: 1px dotted #ccc;
-            }
-            .yui-hidden .yui-non {
-                border: none;
-            }
-            .yui-hidden img {
-                padding: 2px;
-            }</pre></code>
-            * @type String
-            */            
-            this.setAttributeConfig('hiddencss', {
-                value: attr.hiddencss || '.yui-hidden font, .yui-hidden strong, .yui-hidden b, .yui-hidden em, .yui-hidden i, .yui-hidden u, .yui-hidden div,.yui-hidden p,.yui-hidden span,.yui-hidden img, .yui-hidden ul, .yui-hidden ol, .yui-hidden li, .yui-hidden table { border: 1px dotted #ccc; } .yui-hidden .yui-non { border: none; } .yui-hidden img { padding: 2px; }',
-                writeOnce: true
-            });
-           
-        },
-        /**
-        * @private
-        * @method _windows
-        * @description A reference to the HTML elements used for the body of Editor Windows.
-        */
-        _windows: null,
-        /**
-        * @private
-        * @method _defaultImageToolbar
-        * @description A reference to the Toolbar Object inside Image Editor Window.
-        */
-        _defaultImageToolbar: null,
-        /**
-        * @private
-        * @method _defaultImageToolbarConfig
-        * @description Config to be used for the default Image Editor Window.
-        */
-        _defaultImageToolbarConfig: null,
-        /**
-        * @private
-        * @method _fixNodes
-        * @description Fix href and imgs as well as remove invalid HTML.
-        */
-        _fixNodes: function() {
-            YAHOO.widget.Editor.superclass._fixNodes.call(this);
-            var url = '';
-
-            var imgs = this._getDoc().getElementsByTagName('img');
-            for (var im = 0; im < imgs.length; im++) {
-                if (imgs[im].getAttribute('href', 2)) {
-                    url = imgs[im].getAttribute('src', 2);
-                    if (this._isLocalFile(url)) {
-                        Dom.addClass(imgs[im], this.CLASS_LOCAL_FILE);
-                    } else {
-                        Dom.removeClass(imgs[im], this.CLASS_LOCAL_FILE);
-                    }
-                }
-            }
-            var fakeAs = this._getDoc().body.getElementsByTagName('a');
-            for (var a = 0; a < fakeAs.length; a++) {
-                if (fakeAs[a].getAttribute('href', 2)) {
-                    url = fakeAs[a].getAttribute('href', 2);
-                    if (this._isLocalFile(url)) {
-                        Dom.addClass(fakeAs[a], this.CLASS_LOCAL_FILE);
-                    } else {
-                        Dom.removeClass(fakeAs[a], this.CLASS_LOCAL_FILE);
-                    }
-                }
-            }
-        },
-        /**
-        * @private
-        * @property _disabled
-        * @description The Toolbar items that should be disabled if there is no selection present in the editor.
-        * @type Array
-        */
-        _disabled: [ 'createlink', 'forecolor', 'backcolor', 'fontname', 'fontsize', 'superscript', 'subscript', 'removeformat', 'heading', 'indent' ],
-        /**
-        * @private
-        * @property _alwaysDisabled
-        * @description The Toolbar items that should ALWAYS be disabled event if there is a selection present in the editor.
-        * @type Object
-        */
-        _alwaysDisabled: { 'outdent': true },
-        /**
-        * @private
-        * @property _alwaysEnabled
-        * @description The Toolbar items that should ALWAYS be enabled event if there isn't a selection present in the editor.
-        * @type Object
-        */
-        _alwaysEnabled: { hiddenelements: true },
-        /**
-        * @private
-        * @method _handleKeyDown
-        * @param {Event} ev The event we are working on.
-        * @description Override method that handles some new keydown events inside the iFrame document.
-        */
-        _handleKeyDown: function(ev) {
-            YAHOO.widget.Editor.superclass._handleKeyDown.call(this, ev);
-            var doExec = false,
-                action = null,
-                exec = false;
-
-            switch (ev.keyCode) {
-                //case 219: //Left
-                case this._keyMap.JUSTIFY_LEFT.key: //Left
-                    if (this._checkKey(this._keyMap.JUSTIFY_LEFT, ev)) {
-                        action = 'justifyleft';
-                        doExec = true;
-                    }
-                    break;
-                //case 220: //Center
-                case this._keyMap.JUSTIFY_CENTER.key:
-                    if (this._checkKey(this._keyMap.JUSTIFY_CENTER, ev)) {
-                        action = 'justifycenter';
-                        doExec = true;
-                    }
-                    break;
-                case 221: //Right
-                case this._keyMap.JUSTIFY_RIGHT.key:
-                    if (this._checkKey(this._keyMap.JUSTIFY_RIGHT, ev)) {
-                        action = 'justifyright';
-                        doExec = true;
-                    }
-                    break;
-            }
-            if (doExec && action) {
-                this.execCommand(action, null);
-                Event.stopEvent(ev);
-                this.nodeChange();
-            }
-        },        
-        /**
-        * @private
-        * @method _renderCreateLinkWindow
-        * @description Pre renders the CreateLink window so we get faster window opening.
-        */
-        _renderCreateLinkWindow: function() {
-                var str = '<label for="' + this.get('id') + '_createlink_url"><strong>' + this.STR_LINK_URL + ':</strong> <input type="text" name="' + this.get('id') + '_createlink_url" id="' + this.get('id') + '_createlink_url" value=""></label>';
-                str += '<label for="' + this.get('id') + '_createlink_target"><strong>&nbsp;</strong><input type="checkbox" name="' + this.get('id') + '_createlink_target" id="' + this.get('id') + '_createlink_target" value="_blank" class="createlink_target"> ' + this.STR_LINK_NEW_WINDOW + '</label>';
-                str += '<label for="' + this.get('id') + '_createlink_title"><strong>' + this.STR_LINK_TITLE + ':</strong> <input type="text" name="' + this.get('id') + '_createlink_title" id="' + this.get('id') + '_createlink_title" value=""></label>';
-                
-                var body = document.createElement('div');
-                body.innerHTML = str;
-
-                var unlinkCont = document.createElement('div');
-                unlinkCont.className = 'removeLink';
-                var unlink = document.createElement('a');
-                unlink.href = '#';
-                unlink.innerHTML = this.STR_LINK_PROP_REMOVE;
-                unlink.title = this.STR_LINK_PROP_REMOVE;
-                Event.on(unlink, 'click', function(ev) {
-                    Event.stopEvent(ev);
-                    this.execCommand('unlink');
-                    this.closeWindow();
-                }, this, true);
-                unlinkCont.appendChild(unlink);
-                body.appendChild(unlinkCont);
-                
-                this._windows.createlink = {};
-                this._windows.createlink.body = body;
-                body.style.display = 'none';
-                this.get('panel').editor_form.appendChild(body);
-                this.fireEvent('windowCreateLinkRender', { type: 'windowCreateLinkRender', panel: this.get('panel'), body: body });
-                return body;
-        },
-        _handleCreateLinkClick: function() {
-            var el = this._getSelectedElement();
-            if (this._isElement(el, 'img')) {
-                this.STOP_EXEC_COMMAND = true;
-                this.currentElement[0] = el;
-                this.toolbar.fireEvent('insertimageClick', { type: 'insertimageClick', target: this.toolbar });
-                this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-                return false;
-            }
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue('createlink')) {
-                    return false;
-                }
-            }
-            
-            this.on('afterExecCommand', function() {
-                var win = new YAHOO.widget.EditorWindow('createlink', {
-                    width: '350px'
-                });
-                
-                var el = this.currentElement[0],
-                    url = '',
-                    title = '',
-                    target = '',
-                    localFile = false;
-                if (el) {
-                    win.el = el;
-                    if (el.getAttribute('href', 2) !== null) {
-                        url = el.getAttribute('href', 2);
-                        if (this._isLocalFile(url)) {
-                            //Local File throw Warning
-                            win.setFooter(this.STR_LOCAL_FILE_WARNING);
-                            localFile = true;
-                        } else {
-                            win.setFooter(' ');
-                        }
-                    }
-                    if (el.getAttribute('title') !== null) {
-                        title = el.getAttribute('title');
-                    }
-                    if (el.getAttribute('target') !== null) {
-                        target = el.getAttribute('target');
-                    }
-                }
-                var body = null;
-                if (this._windows.createlink && this._windows.createlink.body) {
-                    body = this._windows.createlink.body;
-                } else {
-                    body = this._renderCreateLinkWindow();
-                }
-
-                win.setHeader(this.STR_LINK_PROP_TITLE);
-                win.setBody(body);
-
-                Event.purgeElement(this.get('id') + '_createlink_url');
-
-                Dom.get(this.get('id') + '_createlink_url').value = url;
-                Dom.get(this.get('id') + '_createlink_title').value = title;
-                Dom.get(this.get('id') + '_createlink_target').checked = ((target) ? true : false);
-                
-
-                Event.onAvailable(this.get('id') + '_createlink_url', function() {
-                    var id = this.get('id');
-                    window.setTimeout(function() {
-                        try {
-                            YAHOO.util.Dom.get(id + '_createlink_url').focus();
-                        } catch (e) {}
-                    }, 50);
-
-                    if (this._isLocalFile(url)) {
-                        //Local File throw Warning
-                        Dom.addClass(this.get('id') + '_createlink_url', 'warning');
-                        this.get('panel').setFooter(this.STR_LOCAL_FILE_WARNING);
-                    } else {
-                        Dom.removeClass(this.get('id') + '_createlink_url', 'warning');
-                        this.get('panel').setFooter(' ');
-                    }
-                    Event.on(this.get('id') + '_createlink_url', 'blur', function() {
-                        var url = Dom.get(this.get('id') + '_createlink_url');
-                        if (this._isLocalFile(url.value)) {
-                            //Local File throw Warning
-                            Dom.addClass(url, 'warning');
-                            this.get('panel').setFooter(this.STR_LOCAL_FILE_WARNING);
-                        } else {
-                            Dom.removeClass(url, 'warning');
-                            this.get('panel').setFooter(' ');
-                        }
-                    }, this, true);
-                }, this, true);
-                
-                this.openWindow(win);
-
-            });
-        },
-        /**
-        * @private
-        * @method _handleCreateLinkWindowClose
-        * @description Handles the closing of the Link Properties Window.
-        */
-        _handleCreateLinkWindowClose: function() {
-            
-            var url = Dom.get(this.get('id') + '_createlink_url'),
-                target = Dom.get(this.get('id') + '_createlink_target'),
-                title = Dom.get(this.get('id') + '_createlink_title'),
-                el = arguments[0].win.el,
-                a = el;
-
-            if (url && url.value) {
-                var urlValue = url.value;
-                if ((urlValue.indexOf(':/'+'/') == -1) && (urlValue.substring(0,1) != '/') && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                    if ((urlValue.indexOf('@') != -1) && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                        //Found an @ sign, prefix with mailto:
-                        urlValue = 'mailto:' + urlValue;
-                    } else {
-                        // :// not found adding
-                        if (urlValue.substring(0, 1) != '#') {
-                            urlValue = 'http:/'+'/' + urlValue;
-                        }
-                        
-                    }
-                }
-                el.setAttribute('href', urlValue);
-                if (target.checked) {
-                    el.setAttribute('target', target.value);
-                } else {
-                    el.setAttribute('target', '');
-                }
-                el.setAttribute('title', ((title.value) ? title.value : ''));
-
-            } else {
-                var _span = this._getDoc().createElement('span');
-                _span.innerHTML = el.innerHTML;
-                Dom.addClass(_span, 'yui-non');
-                el.parentNode.replaceChild(_span, el);
-            }
-            Dom.removeClass(url, 'warning');
-            Dom.get(this.get('id') + '_createlink_url').value = '';
-            Dom.get(this.get('id') + '_createlink_title').value = '';
-            Dom.get(this.get('id') + '_createlink_target').checked = false;
-            this.nodeChange();
-            this.currentElement = [];
-            
-        },
-        /**
-        * @private
-        * @method _renderInsertImageWindow
-        * @description Pre renders the InsertImage window so we get faster window opening.
-        */
-        _renderInsertImageWindow: function() {
-                var el = this.currentElement[0];
-                var str = '<label for="' + this.get('id') + '_insertimage_url"><strong>' + this.STR_IMAGE_URL + ':</strong> <input type="text" id="' + this.get('id') + '_insertimage_url" value="" size="40"></label>';
-                var body = document.createElement('div');
-                body.innerHTML = str;
-
-                var tbarCont = document.createElement('div');
-                tbarCont.id = this.get('id') + '_img_toolbar';
-                body.appendChild(tbarCont);
-
-                var str2 = '<label for="' + this.get('id') + '_insertimage_title"><strong>' + this.STR_IMAGE_TITLE + ':</strong> <input type="text" id="' + this.get('id') + '_insertimage_title" value="" size="40"></label>';
-                str2 += '<label for="' + this.get('id') + '_insertimage_link"><strong>' + this.STR_LINK_URL + ':</strong> <input type="text" name="' + this.get('id') + '_insertimage_link" id="' + this.get('id') + '_insertimage_link" value=""></label>';
-                str2 += '<label for="' + this.get('id') + '_insertimage_target"><strong>&nbsp;</strong><input type="checkbox" name="' + this.get('id') + '_insertimage_target_" id="' + this.get('id') + '_insertimage_target" value="_blank" class="insertimage_target"> ' + this.STR_LINK_NEW_WINDOW + '</label>';
-                var div = document.createElement('div');
-                div.innerHTML = str2;
-                body.appendChild(div);
-
-                var o = {};
-                Lang.augmentObject(o, this._defaultImageToolbarConfig); //Break the config reference
-
-                var tbar = new YAHOO.widget.Toolbar(tbarCont, o);
-                tbar.editor_el = el;
-                this._defaultImageToolbar = tbar;
-                
-                var cont = tbar.get('cont');
-                var hw = document.createElement('div');
-                hw.className = 'yui-toolbar-group yui-toolbar-group-height-width height-width';
-                hw.innerHTML = '<h3>' + this.STR_IMAGE_SIZE + ':</h3>';
-                /*
-                var orgSize = '';
-                if ((height != oheight) || (width != owidth)) {
-                    orgSize = '<span class="info">' + this.STR_IMAGE_ORIG_SIZE + '<br>'+ owidth +' x ' + oheight + '</span>';
-                }
-                */
-                hw.innerHTML += '<span tabIndex="-1"><input type="text" size="3" value="" id="' + this.get('id') + '_insertimage_width"> x <input type="text" size="3" value="" id="' + this.get('id') + '_insertimage_height"></span>';
-                cont.insertBefore(hw, cont.firstChild);
-
-                Event.onAvailable(this.get('id') + '_insertimage_width', function() {
-                    Event.on(this.get('id') + '_insertimage_width', 'blur', function() {
-                        var value = parseInt(Dom.get(this.get('id') + '_insertimage_width').value, 10);
-                        if (value > 5) {
-                           this._defaultImageToolbar.editor_el.style.width = value + 'px';
-                            //Removed moveWindow call so the window doesn't jump
-                            //this.moveWindow();
-                        }
-                    }, this, true);
-                }, this, true);
-                Event.onAvailable(this.get('id') + '_insertimage_height', function() {
-                    Event.on(this.get('id') + '_insertimage_height', 'blur', function() {
-                        var value = parseInt(Dom.get(this.get('id') + '_insertimage_height').value, 10);
-                        if (value > 5) {
-                            this._defaultImageToolbar.editor_el.style.height = value + 'px';
-                            //Removed moveWindow call so the window doesn't jump
-                            //this.moveWindow();
-                        }
-                    }, this, true);
-                }, this, true);
-
-
-                tbar.on('colorPickerClicked', function(o) {
-                    var size = '1', type = 'solid', color = 'black', el = this._defaultImageToolbar.editor_el;
-
-                    if (el.style.borderLeftWidth) {
-                        size = parseInt(el.style.borderLeftWidth, 10);
-                    }
-                    if (el.style.borderLeftStyle) {
-                        type = el.style.borderLeftStyle;
-                    }
-                    if (el.style.borderLeftColor) {
-                        color = el.style.borderLeftColor;
-                    }
-                    var borderString = size + 'px ' + type + ' #' + o.color;
-                    el.style.border = borderString;
-                }, this, true);
-
-                tbar.on('buttonClick', function(o) {
-                    var value = o.button.value,
-                        el = this._defaultImageToolbar.editor_el,
-                        borderString = '';
-                    if (o.button.menucmd) {
-                        value = o.button.menucmd;
-                    }
-                    var size = '1', type = 'solid', color = 'black';
-
-                    /* All border calcs are done on the left border
-                        since our default interface only supports
-                        one border size/type and color */
-                    if (el.style.borderLeftWidth) {
-                        size = parseInt(el.style.borderLeftWidth, 10);
-                    }
-                    if (el.style.borderLeftStyle) {
-                        type = el.style.borderLeftStyle;
-                    }
-                    if (el.style.borderLeftColor) {
-                        color = el.style.borderLeftColor;
-                    }
-                    switch(value) {
-                        case 'bordersize':
-                            if (this.browser.webkit && this._lastImage) {
-                                Dom.removeClass(this._lastImage, 'selected');
-                                this._lastImage = null;
-                            }
-
-                            borderString = parseInt(o.button.value, 10) + 'px ' + type + ' ' + color;
-                            el.style.border = borderString;
-                            if (parseInt(o.button.value, 10) > 0) {
-                                tbar.enableButton('bordertype');
-                                tbar.enableButton('bordercolor');
-                            } else {
-                                tbar.disableButton('bordertype');
-                                tbar.disableButton('bordercolor');
-                            }
-                            break;
-                        case 'bordertype':
-                            if (this.browser.webkit && this._lastImage) {
-                                Dom.removeClass(this._lastImage, 'selected');
-                                this._lastImage = null;
-                            }
-                            borderString = size + 'px ' + o.button.value + ' ' + color;
-                            el.style.border = borderString;
-                            break;
-                        case 'right':
-                        case 'left':
-                            tbar.deselectAllButtons();
-                            el.style.display = '';
-                            el.align = o.button.value;
-                            break;
-                        case 'inline':
-                            tbar.deselectAllButtons();
-                            el.style.display = '';
-                            el.align = '';
-                            break;
-                        case 'block':
-                            tbar.deselectAllButtons();
-                            el.style.display = 'block';
-                            el.align = 'center';
-                            break;
-                        case 'padding':
-                            var _button = tbar.getButtonById(o.button.id);
-                            el.style.margin = _button.get('label') + 'px';
-                            break;
-                    }
-                    tbar.selectButton(o.button.value);
-                    if (value !== 'padding') {
-                        this.moveWindow();
-                    }
-                }, this, true);
-
-
-
-                if (this.get('localFileWarning')) {
-                    Event.on(this.get('id') + '_insertimage_link', 'blur', function() {
-                        var url = Dom.get(this.get('id') + '_insertimage_link');
-                        if (this._isLocalFile(url.value)) {
-                            //Local File throw Warning
-                            Dom.addClass(url, 'warning');
-                            this.get('panel').setFooter(this.STR_LOCAL_FILE_WARNING);
-                        } else {
-                            Dom.removeClass(url, 'warning');
-                            this.get('panel').setFooter(' ');
-                            //Adobe AIR Code
-                            if ((this.browser.webkit && !this.browser.webkit3 || this.browser.air) || this.browser.opera) {                
-                                this.get('panel').setFooter(this.STR_IMAGE_COPY);
-                            }
-                        }
-                    }, this, true);
-                }
-
-                Event.on(this.get('id') + '_insertimage_url', 'blur', function() {
-                    var url = Dom.get(this.get('id') + '_insertimage_url');
-                    if (url.value && el) {
-                        if (url.value == el.getAttribute('src', 2)) {
-                            return false;
-                        }
-                    }
-                    if (this._isLocalFile(url.value)) {
-                        //Local File throw Warning
-                        Dom.addClass(url, 'warning');
-                        this.get('panel').setFooter(this.STR_LOCAL_FILE_WARNING);
-                    } else if (this.currentElement[0]) {
-                        Dom.removeClass(url, 'warning');
-                        this.get('panel').setFooter(' ');
-                        //Adobe AIR Code
-                        if ((this.browser.webkit && !this.browser.webkit3 || this.browser.air) || this.browser.opera) {                
-                            this.get('panel').setFooter(this.STR_IMAGE_COPY);
-                        }
-                        
-                        if (url && url.value && (url.value != this.STR_IMAGE_HERE)) {
-                            this.currentElement[0].setAttribute('src', url.value);
-                            var self = this,
-                                img = new Image();
-
-                            img.onerror = function() {
-                                url.value = self.STR_IMAGE_HERE;
-                                img.setAttribute('src', self.get('blankimage'));
-                                self.currentElement[0].setAttribute('src', self.get('blankimage'));
-                                YAHOO.util.Dom.get(self.get('id') + '_insertimage_height').value = img.height;
-                                YAHOO.util.Dom.get(self.get('id') + '_insertimage_width').value = img.width;
-                            };
-                            var id = this.get('id');
-                            window.setTimeout(function() {
-                                YAHOO.util.Dom.get(id + '_insertimage_height').value = img.height;
-                                YAHOO.util.Dom.get(id + '_insertimage_width').value = img.width;
-                                if (self.currentElement && self.currentElement[0]) {
-                                    if (!self.currentElement[0]._height) {
-                                        self.currentElement[0]._height = img.height;
-                                    }
-                                    if (!self.currentElement[0]._width) {
-                                        self.currentElement[0]._width = img.width;
-                                    }
-                                }
-                                //Removed moveWindow call so the window doesn't jump
-                                //self.moveWindow();
-                            }, 800); //Bumped the timeout up to account for larger images..
-
-                            if (url.value != this.STR_IMAGE_HERE) {
-                                img.src = url.value;
-                            }
-                        }
-                    }
-                    }, this, true);
-
-
-
-                this._windows.insertimage = {};
-                this._windows.insertimage.body = body;
-                body.style.display = 'none';
-                this.get('panel').editor_form.appendChild(body);
-                this.fireEvent('windowInsertImageRender', { type: 'windowInsertImageRender', panel: this.get('panel'), body: body, toolbar: tbar });
-                return body;
-        },
-        /**
-        * @private
-        * @method _handleInsertImageClick
-        * @description Opens the Image Properties Window when the insert Image button is clicked or an Image is Double Clicked.
-        */
-        _handleInsertImageClick: function() {
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue('insertimage')) {
-                    return false;
-                }
-            }
-            this.on('afterExecCommand', function() {
-                var el = this.currentElement[0],
-                    body = null,
-                    link = '',
-                    target = '',
-                    tbar = null,
-                    title = '',
-                    src = '',
-                    align = '',
-                    height = 75,
-                    width = 75,
-                    padding = 0,
-                    oheight = 0,
-                    owidth = 0,
-                    blankimage = false,
-                    win = new YAHOO.widget.EditorWindow('insertimage', {
-                        width: '415px'
-                    });
-
-                if (!el) {
-                    el = this._getSelectedElement();
-                }
-                if (el) {
-                    win.el = el;
-                    if (el.getAttribute('src')) {
-                        src = el.getAttribute('src', 2);
-                        if (src.indexOf(this.get('blankimage')) != -1) {
-                            src = this.STR_IMAGE_HERE;
-                            blankimage = true;
-                        }
-                    }
-                    if (el.getAttribute('alt', 2)) {
-                        title = el.getAttribute('alt', 2);
-                    }
-                    if (el.getAttribute('title', 2)) {
-                        title = el.getAttribute('title', 2);
-                    }
-
-                    if (el.parentNode && this._isElement(el.parentNode, 'a')) {
-                        link = el.parentNode.getAttribute('href', 2);
-                        if (el.parentNode.getAttribute('target') !== null) {
-                            target = el.parentNode.getAttribute('target');
-                        }
-                    }
-                    height = parseInt(el.height, 10);
-                    width = parseInt(el.width, 10);
-                    if (el.style.height) {
-                        height = parseInt(el.style.height, 10);
-                    }
-                    if (el.style.width) {
-                        width = parseInt(el.style.width, 10);
-                    }
-                    if (el.style.margin) {
-                        padding = parseInt(el.style.margin, 10);
-                    }
-                    if (!el._height) {
-                        el._height = height;
-                    }
-                    if (!el._width) {
-                        el._width = width;
-                    }
-                    oheight = el._height;
-                    owidth = el._width;
-                }
-                if (this._windows.insertimage && this._windows.insertimage.body) {
-                    body = this._windows.insertimage.body;
-                    this._defaultImageToolbar.resetAllButtons();
-                } else {
-                    body = this._renderInsertImageWindow();
-                }
-
-                tbar = this._defaultImageToolbar;
-                tbar.editor_el = el;
-                
-
-                var bsize = '0';
-                var btype = 'solid';
-                if (el.style.borderLeftWidth) {
-                    bsize = parseInt(el.style.borderLeftWidth, 10);
-                }
-                if (el.style.borderLeftStyle) {
-                    btype = el.style.borderLeftStyle;
-                }
-                var bs_button = tbar.getButtonByValue('bordersize');
-                var bSizeStr = ((parseInt(bsize, 10) > 0) ? '' : 'none');
-                bs_button.set('label', '<span class="yui-toolbar-bordersize-' + bsize + '">'+bSizeStr+'</span>');
-                this._updateMenuChecked('bordersize', bsize, tbar);
-
-                var bt_button = tbar.getButtonByValue('bordertype');
-                bt_button.set('label', '<span class="yui-toolbar-bordertype-' + btype + '"></span>');
-                this._updateMenuChecked('bordertype', btype, tbar);
-                if (parseInt(bsize, 10) > 0) {
-                    tbar.enableButton(bt_button);
-                    tbar.enableButton(bs_button);
-                    tbar.enableButton('bordercolor');
-                }
-
-                if ((el.align == 'right') || (el.align == 'left')) {
-                    tbar.selectButton(el.align);
-                } else if (el.style.display == 'block') {
-                    tbar.selectButton('block');
-                } else {
-                    tbar.selectButton('inline');
-                }
-                if (parseInt(el.style.marginLeft, 10) > 0) {
-                     tbar.getButtonByValue('padding').set('label', ''+parseInt(el.style.marginLeft, 10));
-                }
-                if (el.style.borderSize) {
-                    tbar.selectButton('bordersize');
-                    tbar.selectButton(parseInt(el.style.borderSize, 10));
-                }
-                tbar.getButtonByValue('padding').set('label', ''+padding);
-
-
-
-                win.setHeader(this.STR_IMAGE_PROP_TITLE);
-                win.setBody(body);
-                //Adobe AIR Code
-                if ((this.browser.webkit && !this.browser.webkit3 || this.browser.air) || this.browser.opera) {                
-                    win.setFooter(this.STR_IMAGE_COPY);
-                }
-                this.openWindow(win);
-                Dom.get(this.get('id') + '_insertimage_url').value = src;
-                Dom.get(this.get('id') + '_insertimage_title').value = title;
-                Dom.get(this.get('id') + '_insertimage_link').value = link;
-                Dom.get(this.get('id') + '_insertimage_target').checked = ((target) ? true : false);
-                Dom.get(this.get('id') + '_insertimage_width').value = width;
-                Dom.get(this.get('id') + '_insertimage_height').value = height;
-
-
-                var orgSize = '';
-                if ((height != oheight) || (width != owidth)) {
-                    var s = document.createElement('span');
-                    s.className = 'info';
-                    //s.innerHTML = this.STR_IMAGE_ORIG_SIZE + '<br>'+ owidth +' x ' + oheight;
-                    s.innerHTML = this.STR_IMAGE_ORIG_SIZE + ': ('+ owidth +' x ' + oheight + ')';
-                    if (Dom.get(this.get('id') + '_insertimage_height').nextSibling) {
-                        var old = Dom.get(this.get('id') + '_insertimage_height').nextSibling;
-                        old.parentNode.removeChild(old);
-                    }
-                    Dom.get(this.get('id') + '_insertimage_height').parentNode.appendChild(s);
-                }
-
-                this.toolbar.selectButton('insertimage');
-                var id = this.get('id');
-                window.setTimeout(function() {
-                    try {
-                        YAHOO.util.Dom.get(id + '_insertimage_url').focus();
-                        if (blankimage) {
-                            YAHOO.util.Dom.get(id + '_insertimage_url').select();
-                        }
-                    } catch (e) {}
-                }, 50);
-
-            });
-        },
-        /**
-        * @private
-        * @method _handleInsertImageWindowClose
-        * @description Handles the closing of the Image Properties Window.
-        */
-        _handleInsertImageWindowClose: function() {
-            var url = Dom.get(this.get('id') + '_insertimage_url'),
-                title = Dom.get(this.get('id') + '_insertimage_title'),
-                link = Dom.get(this.get('id') + '_insertimage_link'),
-                target = Dom.get(this.get('id') + '_insertimage_target'),
-                el = arguments[0].win.el;
-
-            if (url && url.value && (url.value != this.STR_IMAGE_HERE)) {
-                el.setAttribute('src', url.value);
-                el.setAttribute('title', title.value);
-                el.setAttribute('alt', title.value);
-                var par = el.parentNode;
-                if (link.value) {
-                    var urlValue = link.value;
-                    if ((urlValue.indexOf(':/'+'/') == -1) && (urlValue.substring(0,1) != '/') && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                        if ((urlValue.indexOf('@') != -1) && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                            //Found an @ sign, prefix with mailto:
-                            urlValue = 'mailto:' + urlValue;
-                        } else {
-                            // :// not found adding
-                            urlValue = 'http:/'+'/' + urlValue;
-                        }
-                    }
-                    if (par && this._isElement(par, 'a')) {
-                        par.setAttribute('href', urlValue);
-                        if (target.checked) {
-                            par.setAttribute('target', target.value);
-                        } else {
-                            par.setAttribute('target', '');
-                        }
-                    } else {
-                        var _a = this._getDoc().createElement('a');
-                        _a.setAttribute('href', urlValue);
-                        if (target.checked) {
-                            _a.setAttribute('target', target.value);
-                        } else {
-                            _a.setAttribute('target', '');
-                        }
-                        el.parentNode.replaceChild(_a, el);
-                        _a.appendChild(el);
-                    }
-                } else {
-                    if (par && this._isElement(par, 'a')) {
-                        par.parentNode.replaceChild(el, par);
-                    }
-                }
-            } else {
-                //No url/src given, remove the node from the document
-                el.parentNode.removeChild(el);
-            }
-            Dom.get(this.get('id') + '_insertimage_url').value = '';
-            Dom.get(this.get('id') + '_insertimage_title').value = '';
-            Dom.get(this.get('id') + '_insertimage_link').value = '';
-            Dom.get(this.get('id') + '_insertimage_target').checked = false;
-            Dom.get(this.get('id') + '_insertimage_width').value = 0;
-            Dom.get(this.get('id') + '_insertimage_height').value = 0;
-            this._defaultImageToolbar.resetAllButtons();
-            this.currentElement = [];
-            this.nodeChange();
-        },
-        /**
-        * @property EDITOR_PANEL_ID
-        * @description HTML id to give the properties window in the DOM.
-        * @type String
-        */
-        EDITOR_PANEL_ID: '-panel',
-        /**
-        * @private
-        * @method _renderPanel
-        * @description Renders the panel used for Editor Windows to the document so we can start using it..
-        * @return {<a href="YAHOO.widget.Overlay.html">YAHOO.widget.Overlay</a>}
-        */
-        _renderPanel: function() {
-            var panel = new YAHOO.widget.Overlay(this.get('id') + this.EDITOR_PANEL_ID, {
-                    width: '300px',
-                    iframe: true,
-                    visible: false,
-                    underlay: 'none',
-                    draggable: false,
-                    close: false
-                });
-            this.set('panel', panel);
-
-            this.get('panel').setBody('---');
-            this.get('panel').setHeader(' ');
-            this.get('panel').setFooter(' ');
-
-
-            var body = document.createElement('div');
-            body.className = this.CLASS_PREFIX + '-body-cont';
-            for (var b in this.browser) {
-                if (this.browser[b]) {
-                    Dom.addClass(body, b);
-                    break;
-                }
-            }
-            Dom.addClass(body, ((YAHOO.widget.Button && (this._defaultToolbar.buttonType == 'advanced')) ? 'good-button' : 'no-button'));
-
-            var _note = document.createElement('h3');
-            _note.className = 'yui-editor-skipheader';
-            _note.innerHTML = this.STR_CLOSE_WINDOW_NOTE;
-            body.appendChild(_note);
-            var form = document.createElement('form');
-            form.setAttribute('method', 'GET');
-            panel.editor_form = form;
-
-            Event.on(form, 'submit', function(ev) {
-                Event.stopEvent(ev);
-            }, this, true);
-            body.appendChild(form);
-            var _close = document.createElement('span');
-            _close.innerHTML = 'X';
-            _close.title = this.STR_CLOSE_WINDOW;
-            _close.className = 'close';
-            
-            Event.on(_close, 'click', this.closeWindow, this, true);
-
-            var _knob = document.createElement('span');
-            _knob.innerHTML = '^';
-            _knob.className = 'knob';
-            panel.editor_knob = _knob;
-
-            var _header = document.createElement('h3');
-            panel.editor_header = _header;
-            _header.innerHTML = '<span></span>';
-
-            panel.setHeader(' '); //Clear the current header
-            panel.appendToHeader(_header);
-            _header.appendChild(_close);
-            _header.appendChild(_knob);
-            panel.setBody(' '); //Clear the current body
-            panel.setFooter(' '); //Clear the current footer
-            panel.appendToBody(body); //Append the new DOM node to it
-
-            Event.on(panel.element, 'click', function(ev) {
-                Event.stopPropagation(ev);
-            });
-
-            var fireShowEvent = function() {
-                //panel.bringToTop();
-            };
-            panel.showEvent.subscribe(fireShowEvent, this, true);
-            panel.renderEvent.subscribe(function() {
-                this._renderInsertImageWindow();
-                this._renderCreateLinkWindow();
-                this.fireEvent('windowRender', { type: 'windowRender', panel: panel });
-            }, this, true);
-
-            if (this.DOMReady) {
-                this.get('panel').render(document.body);
-                //Render to the element_cont so we can skin it better
-                //this.get('panel').render(this.get('element_cont').get('element'));
-                Dom.addClass(this.get('panel').element, 'yui-editor-panel');
-            } else {
-                Event.onDOMReady(function() {
-                    this.get('panel').render(document.body);
-                    //Render to the element_cont so we can skin it better
-                    //this.get('panel').render(this.get('element_cont').get('element'));
-                    Dom.addClass(this.get('panel').element, 'yui-editor-panel');
-                }, this, true);
-            }
-            this.get('panel').showEvent.subscribe(function() {
-                YAHOO.util.Dom.setStyle(this.element, 'display', 'block');
-            });
-            return this.get('panel');
-        },
-        /**
-        * @method openWindow
-        * @param {<a href="YAHOO.widget.EditorWindow.html">YAHOO.widget.EditorWindow</a>} win A <a href="YAHOO.widget.EditorWindow.html">YAHOO.widget.EditorWindow</a> instance
-        * @description Opens a new "window/panel"
-        */
-        openWindow: function(win) {
-            var self = this;
-            window.setTimeout(function() {
-                self.toolbar.set('disabled', true); //Disable the toolbar when an editor window is open..
-            }, 10);
-            Event.on(document, 'keydown', this._closeWindow, this, true);
-            
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            
-
-            var xy = Dom.getXY(this.currentElement[0]),
-            elXY = Dom.getXY(this.get('iframe').get('element')),
-            panel = this.get('panel'),
-            newXY = [(xy[0] + elXY[0] - 20), (xy[1] + elXY[1] + 10)],
-            wWidth = (parseInt(win.attrs.width, 10) / 2),
-            align = 'center',
-            body = null;
-
-            this.fireEvent('beforeOpenWindow', { type: 'beforeOpenWindow', win: win, panel: panel });
-
-            var form = panel.editor_form;
-            
-            var wins = this._windows;
-            for (var b in wins) {
-                if (Lang.hasOwnProperty(wins, b)) {
-                    if (wins[b] && wins[b].body) {
-                        if (b == win.name) {
-                            Dom.setStyle(wins[b].body, 'display', 'block');
-                        } else {
-                            Dom.setStyle(wins[b].body, 'display', 'none');
-                        }
-                    }
-                }
-            }
-            
-            if (this._windows[win.name].body) {
-                Dom.setStyle(this._windows[win.name].body, 'display', 'block');
-                form.appendChild(this._windows[win.name].body);
-            } else {
-                if (Lang.isObject(win.body)) { //Assume it's a reference
-                    form.appendChild(win.body);
-                } else { //Assume it's a string
-                    var _tmp = document.createElement('div');
-                    _tmp.innerHTML = win.body;
-                    form.appendChild(_tmp);
-                }
-            }
-            panel.editor_header.firstChild.innerHTML = win.header;
-            if (win.footer !== null) {
-                panel.setFooter(win.footer);
-                Dom.addClass(panel.footer, 'open');
-            } else {
-                Dom.removeClass(panel.footer, 'open');
-            }
-            panel.cfg.setProperty('width', win.attrs.width);
-
-            this.currentWindow = win;
-            this.moveWindow(true);
-            panel.show();
-            this.fireEvent('afterOpenWindow', { type: 'afterOpenWindow', win: win, panel: panel });
-        },
-        /**
-        * @method moveWindow
-        * @param {Boolean} force Boolean to tell it to move but not use any animation (Usually done the first time the window is loaded.)
-        * @description Realign the window with the currentElement and reposition the knob above the panel.
-        */
-        moveWindow: function(force) {
-            if (!this.currentWindow) {
-                return false;
-            }
-            var win = this.currentWindow,
-                xy = Dom.getXY(this.currentElement[0]),
-                elXY = Dom.getXY(this.get('iframe').get('element')),
-                panel = this.get('panel'),
-                //newXY = [(xy[0] + elXY[0] - 20), (xy[1] + elXY[1] + 10)],
-                newXY = [(xy[0] + elXY[0]), (xy[1] + elXY[1])],
-                wWidth = (parseInt(win.attrs.width, 10) / 2),
-                align = 'center',
-                orgXY = panel.cfg.getProperty('xy') || [0,0],
-                _knob = panel.editor_knob,
-                xDiff = 0,
-                yDiff = 0,
-                anim = false;
-
-
-            newXY[0] = ((newXY[0] - wWidth) + 20);
-            //Account for the Scroll bars in a scrolled editor window.
-            newXY[0] = newXY[0] - Dom.getDocumentScrollLeft(this._getDoc());
-            newXY[1] = newXY[1] - Dom.getDocumentScrollTop(this._getDoc());
-            
-            if (this._isElement(this.currentElement[0], 'img')) {
-                if (this.currentElement[0].src.indexOf(this.get('blankimage')) != -1) {
-                    newXY[0] = (newXY[0] + (75 / 2)); //Placeholder size
-                    newXY[1] = (newXY[1] + 75); //Placeholder sizea
-                } else {
-                    var w = parseInt(this.currentElement[0].width, 10);
-                    var h = parseInt(this.currentElement[0].height, 10);
-                    newXY[0] = (newXY[0] + (w / 2));
-                    newXY[1] = (newXY[1] + h);
-                }
-                newXY[1] = newXY[1] + 15;
-            } else {
-                var fs = Dom.getStyle(this.currentElement[0], 'fontSize');
-                if (fs && fs.indexOf && fs.indexOf('px') != -1) {
-                    newXY[1] = newXY[1] + parseInt(Dom.getStyle(this.currentElement[0], 'fontSize'), 10) + 5;
-                } else {
-                    newXY[1] = newXY[1] + 20;
-                }
-            }
-            if (newXY[0] < elXY[0]) {
-                newXY[0] = elXY[0] + 5;
-                align = 'left';
-            }
-
-            if ((newXY[0] + (wWidth * 2)) > (elXY[0] + parseInt(this.get('iframe').get('element').clientWidth, 10))) {
-                newXY[0] = ((elXY[0] + parseInt(this.get('iframe').get('element').clientWidth, 10)) - (wWidth * 2) - 5);
-                align = 'right';
-            }
-            
-            try {
-                xDiff = (newXY[0] - orgXY[0]);
-                yDiff = (newXY[1] - orgXY[1]);
-            } catch (e) {}
-
-
-            if (this.get('autoHeight') === false) {
-                var iTop = elXY[1] + parseInt(this.get('height'), 10);
-                var iLeft = elXY[0] + parseInt(this.get('width'), 10);
-                if (newXY[1] > iTop) {
-                    newXY[1] = iTop;
-                }
-                if (newXY[0] > iLeft) {
-                    newXY[0] = (iLeft / 2);
-                }
-            }
-            
-            //Convert negative numbers to positive so we can get the difference in distance
-            xDiff = ((xDiff < 0) ? (xDiff * -1) : xDiff);
-            yDiff = ((yDiff < 0) ? (yDiff * -1) : yDiff);
-
-            if (((xDiff > 10) || (yDiff > 10)) || force) { //Only move the window if it's supposed to move more than 10px or force was passed (new window)
-                var _knobLeft = 0,
-                    elW = 0;
-
-                if (this.currentElement[0].width) {
-                    elW = (parseInt(this.currentElement[0].width, 10) / 2);
-                }
-
-                var leftOffset = xy[0] + elXY[0] + elW;
-                _knobLeft = leftOffset - newXY[0];
-                //Check to see if the knob will go off either side & reposition it
-                if (_knobLeft > (parseInt(win.attrs.width, 10) - 1)) {
-                    _knobLeft = ((parseInt(win.attrs.width, 10) - 30) - 1);
-                } else if (_knobLeft < 40) {
-                    _knobLeft = 1;
-                }
-                if (isNaN(_knobLeft)) {
-                    _knobLeft = 1;
-                }
-                if (force) {
-                    if (_knob) {
-                        _knob.style.left = _knobLeft + 'px';
-                    }
-                    //Removed Animation from a forced move..
-                    panel.cfg.setProperty('xy', newXY);
-                } else {
-                    if (this.get('animate')) {
-                        anim = new YAHOO.util.Anim(panel.element, {}, 0.5, YAHOO.util.Easing.easeOut);
-                        anim.attributes = {
-                            top: {
-                                to: newXY[1]
-                            },
-                            left: {
-                                to: newXY[0]
-                            }
-                        };
-                        anim.onComplete.subscribe(function() {
-                            panel.cfg.setProperty('xy', newXY);
-                        });
-                        //We have to animate the iframe shim at the same time as the panel or we get scrollbar bleed ..
-                        var iframeAnim = new YAHOO.util.Anim(panel.iframe, anim.attributes, 0.5, YAHOO.util.Easing.easeOut);
-
-                        var _knobAnim = new YAHOO.util.Anim(_knob, {
-                            left: {
-                                to: _knobLeft
-                            }
-                        }, 0.6, YAHOO.util.Easing.easeOut);
-                        anim.animate();
-                        iframeAnim.animate();
-                        _knobAnim.animate();
-                    } else {
-                        _knob.style.left = _knobLeft + 'px';
-                        panel.cfg.setProperty('xy', newXY);
-                    }
-                }
-            }
-        },
-        /**
-        * @private
-        * @method _closeWindow
-        * @description Close the currently open EditorWindow with the Escape key.
-        * @param {Event} ev The keypress Event that we are trapping
-        */
-        _closeWindow: function(ev) {
-            //if ((ev.charCode == 87) && ev.shiftKey && ev.ctrlKey) {
-            if (this._checkKey(this._keyMap.CLOSE_WINDOW, ev)) {            
-                if (this.currentWindow) {
-                    this.closeWindow();
-                }
-            }
-        },
-        /**
-        * @method closeWindow
-        * @description Close the currently open EditorWindow.
-        */
-        closeWindow: function(keepOpen) {
-            //YAHOO.widget.EditorInfo.window = {};
-            this.fireEvent('window' + this.currentWindow.name + 'Close', { type: 'window' + this.currentWindow.name + 'Close', win: this.currentWindow, el: this.currentElement[0] });
-            this.fireEvent('closeWindow', { type: 'closeWindow', win: this.currentWindow });
-            this.currentWindow = null;
-            this.get('panel').hide();
-            this.get('panel').cfg.setProperty('xy', [-900,-900]);
-            this.get('panel').syncIframe(); //Needed to move the iframe with the hidden panel
-            this.unsubscribeAll('afterExecCommand');
-            this.toolbar.set('disabled', false); //enable the toolbar now that the window is closed
-            this.toolbar.resetAllButtons();
-            this._focusWindow();
-            Event.removeListener(document, 'keydown', this._closeWindow);
-        },
-
-        /* {{{  Command Overrides - These commands are only over written when we are using the advanced version */
-        
-        /**
-        * @method cmd_undo
-        * @description Pulls an item from the Undo stack and updates the Editor
-        * @param value Value passed from the execCommand method
-        */
-        cmd_undo: function(value) {
-            if (this._hasUndoLevel()) {
-                if (!this._undoLevel) {
-                    this._undoLevel = this._undoCache.length;
-                }
-                this._undoLevel = (this._undoLevel - 1);
-                if (this._undoCache[this._undoLevel]) {
-                    var html = this._getUndo(this._undoLevel);
-                    this.setEditorHTML(html);
-                } else {
-                    this._undoLevel = null;
-                    this.toolbar.disableButton('undo');
-                }
-            }
-            return [false];
-        },
-
-        /**
-        * @method cmd_redo
-        * @description Pulls an item from the Undo stack and updates the Editor
-        * @param value Value passed from the execCommand method
-        */
-        cmd_redo: function(value) {
-            this._undoLevel = this._undoLevel + 1;
-            if (this._undoLevel >= this._undoCache.length) {
-                this._undoLevel = this._undoCache.length;
-            }
-            if (this._undoCache[this._undoLevel]) {
-                var html = this._getUndo(this._undoLevel);
-                this.setEditorHTML(html);
-            } else {
-                this.toolbar.disableButton('redo');
-            }
-            return [false];
-        },       
-        
-        /**
-        * @method cmd_heading
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('heading') is used.
-        */
-        cmd_heading: function(value) {
-            var exec = true,
-                el = null,
-                action = 'heading',
-                _sel = this._getSelection(),
-                _selEl = this._getSelectedElement();
-
-            if (_selEl) {
-                _sel = _selEl;
-            }
-            
-            if (this.browser.ie) {
-                action = 'formatblock';
-            }
-            if (value == 'none') {
-                if ((_sel && _sel.tagName && (_sel.tagName.toLowerCase().substring(0,1) == 'h')) || (_sel && _sel.parentNode && _sel.parentNode.tagName && (_sel.parentNode.tagName.toLowerCase().substring(0,1) == 'h'))) {
-                    if (_sel.parentNode.tagName.toLowerCase().substring(0,1) == 'h') {
-                        _sel = _sel.parentNode;
-                    }
-                    if (this._isElement(_sel, 'html')) {
-                        return [false];
-                    }
-                    el = this._swapEl(_selEl, 'span', function(el) {
-                        el.className = 'yui-non';
-                    });
-                    this._selectNode(el);
-                    this.currentElement[0] = el;
-                }
-                exec = false;
-            } else {
-                if (this._isElement(_selEl, 'h1') || this._isElement(_selEl, 'h2') || this._isElement(_selEl, 'h3') || this._isElement(_selEl, 'h4') || this._isElement(_selEl, 'h5') || this._isElement(_selEl, 'h6')) {
-                    el = this._swapEl(_selEl, value);
-                    this._selectNode(el);
-                    this.currentElement[0] = el;
-                } else {
-                    this._createCurrentElement(value);
-                    this._selectNode(this.currentElement[0]);
-                }
-                exec = false;
-            }
-            return [exec, action];
-        },
-        /**
-        * @method cmd_hiddenelements
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('hiddenelements') is used.
-        */
-        cmd_hiddenelements: function(value) {
-            if (this._showingHiddenElements) {
-                //Don't auto highlight the hidden button
-                this._lastButton = null;
-                this._showingHiddenElements = false;
-                this.toolbar.deselectButton('hiddenelements');
-                Dom.removeClass(this._getDoc().body, this.CLASS_HIDDEN);
-            } else {
-                this._showingHiddenElements = true;
-                Dom.addClass(this._getDoc().body, this.CLASS_HIDDEN);
-                this.toolbar.selectButton('hiddenelements');
-            }
-            return [false];
-        },
-        /**
-        * @method cmd_removeformat
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('removeformat') is used.
-        */
-        cmd_removeformat: function(value) {
-            var exec = true;
-            /**
-            * @knownissue Remove Format issue
-            * @browser Safari 2.x
-            * @description There is an issue here with Safari, that it may not always remove the format of the item that is selected.
-            * Due to the way that Safari 2.x handles ranges, it is very difficult to determine what the selection holds.
-            * So here we are making the best possible guess and acting on it.
-            */
-            if (this.browser.webkit && !this._getDoc().queryCommandEnabled('removeformat')) {
-                var _txt = this._getSelection()+'';
-                this._createCurrentElement('span');
-                this.currentElement[0].className = 'yui-non';
-                this.currentElement[0].innerHTML = _txt;
-                for (var i = 1; i < this.currentElement.length; i++) {
-                    this.currentElement[i].parentNode.removeChild(this.currentElement[i]);
-                }
-                /*
-                this._createCurrentElement('span');
-                YAHOO.util.Dom.addClass(this.currentElement[0], 'yui-non');
-                var re= /<\S[^><]*>/g;
-                var str = this.currentElement[0].innerHTML.replace(re, '');
-                var _txt = this._getDoc().createTextNode(str);
-                this.currentElement[0].parentNode.parentNode.replaceChild(_txt, this.currentElement[0].parentNode);
-                */
-                
-                exec = false;
-            }
-            return [exec];
-        },
-        /**
-        * @method cmd_script
-        * @param action action passed from the execCommand method
-        * @param value Value passed from the execCommand method
-        * @description This is a combined execCommand override method. It is called from the cmd_superscript and cmd_subscript methods.
-        */
-        cmd_script: function(action, value) {
-            var exec = true, tag = action.toLowerCase().substring(0, 3),
-                _span = null, _selEl = this._getSelectedElement();
-
-            if (this.browser.webkit) {
-                if (this._isElement(_selEl, tag)) {
-                    _span = this._swapEl(this.currentElement[0], 'span', function(el) {
-                        el.className = 'yui-non';
-                    });
-                    this._selectNode(_span);
-                } else {
-                    this._createCurrentElement(tag);
-                    var _sub = this._swapEl(this.currentElement[0], tag);
-                    this._selectNode(_sub);
-                    this.currentElement[0] = _sub;
-                }
-                exec = false;
-            }
-            return exec;
-        },
-        /**
-        * @method cmd_superscript
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('superscript') is used.
-        */
-        cmd_superscript: function(value) {
-            return [this.cmd_script('superscript', value)];
-        },
-        /**
-        * @method cmd_subscript
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('subscript') is used.
-        */
-        cmd_subscript: function(value) {
-            return [this.cmd_script('subscript', value)];
-        },
-        /**
-        * @method cmd_indent
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('indent') is used.
-        */
-        cmd_indent: function(value) {
-            var exec = true, selEl = this._getSelectedElement(), _bq = null;
-
-            //if (this.browser.webkit || this.browser.ie || this.browser.gecko) {
-            //if (this.browser.webkit || this.browser.ie) {
-            if (this.browser.ie) {
-                if (this._isElement(selEl, 'blockquote')) {
-                    _bq = this._getDoc().createElement('blockquote');
-                    _bq.innerHTML = selEl.innerHTML;
-                    selEl.innerHTML = '';
-                    selEl.appendChild(_bq);
-                    this._selectNode(_bq);
-                } else {
-                    _bq = this._getDoc().createElement('blockquote');
-                    var html = this._getRange().htmlText;
-                    _bq.innerHTML = html;
-                    this._createCurrentElement('blockquote');
-                    /*
-                    for (var i = 0; i < this.currentElement.length; i++) {
-                        _bq = this._getDoc().createElement('blockquote');
-                        _bq.innerHTML = this.currentElement[i].innerHTML;
-                        this.currentElement[i].parentNode.replaceChild(_bq, this.currentElement[i]);
-                        this.currentElement[i] = _bq;
-                    }
-                    */
-                    this.currentElement[0].parentNode.replaceChild(_bq, this.currentElement[0]);
-                    this.currentElement[0] = _bq;
-                    this._selectNode(this.currentElement[0]);
-                }
-                exec = false;
-            } else {
-                value = 'blockquote';
-            }
-            return [exec, 'formatblock', value];
-        },
-        /**
-        * @method cmd_outdent
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('outdent') is used.
-        */
-        cmd_outdent: function(value) {
-            var exec = true, selEl = this._getSelectedElement(), _bq = null, _span = null;
-            //if (this.browser.webkit || this.browser.ie || this.browser.gecko) {
-            if (this.browser.webkit || this.browser.ie) {
-            //if (this.browser.ie) {
-                selEl = this._getSelectedElement();
-                if (this._isElement(selEl, 'blockquote')) {
-                    var par = selEl.parentNode;
-                    if (this._isElement(selEl.parentNode, 'blockquote')) {
-                        par.innerHTML = selEl.innerHTML;
-                        this._selectNode(par);
-                    } else {
-                        _span = this._getDoc().createElement('span');
-                        _span.innerHTML = selEl.innerHTML;
-                        YAHOO.util.Dom.addClass(_span, 'yui-non');
-                        par.replaceChild(_span, selEl);
-                        this._selectNode(_span);
-                    }
-                } else {
-                }
-                exec = false;
-            } else {
-                value = false;
-            }
-            return [exec, 'outdent', value];
-        },
-        /**
-        * @method cmd_justify
-        * @param dir The direction to justify
-        * @description This is a factory method for the justify family of commands.
-        */
-        cmd_justify: function(dir) {
-            if (this.browser.ie) {
-                if (this._hasSelection()) {
-                    this._createCurrentElement('span');
-                    this._swapEl(this.currentElement[0], 'div', function(el) {
-                        el.style.textAlign = dir;
-                    });
-                    
-                    return [false];
-                }
-            }
-            return [true, 'justify' + dir, ''];
-        },
-        /**
-        * @method cmd_justifycenter
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('justifycenter') is used.
-        */
-        cmd_justifycenter: function() {
-            return [this.cmd_justify('center')];
-        },
-        /**
-        * @method cmd_justifyleft
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('justifyleft') is used.
-        */
-        cmd_justifyleft: function() {
-            return [this.cmd_justify('left')];
-        },
-        /**
-        * @method cmd_justifyright
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('justifyright') is used.
-        */
-        cmd_justifyright: function() {
-            return [this.cmd_justify('right')];
-        },
-        /* }}}*/        
-        /**
-        * @method toString
-        * @description Returns a string representing the editor.
-        * @return {String}
-        */
-        toString: function() {
-            var str = 'Editor';
-            if (this.get && this.get('element_cont')) {
-                str = 'Editor (#' + this.get('element_cont').get('id') + ')' + ((this.get('disabled') ? ' Disabled' : ''));
-            }
-            return str;
-        }
-    });
-    /**
-     * @description Class to hold Window information between uses. We use the same panel to show the windows, so using this will allow you to configure a window before it is shown.
-     * This is what you pass to Editor.openWindow();. These parameters will not take effect until the openWindow() is called in the editor.
-     * @class EditorWindow
-     * @param {String} name The name of the window.
-     * @param {Object} attrs Attributes for the window. Current attributes used are : height and width
-    */
-    YAHOO.widget.EditorWindow = function(name, attrs) {
-        /**
-        * @private
-        * @property name
-        * @description A unique name for the window
-        */
-        this.name = name.replace(' ', '_');
-        /**
-        * @private
-        * @property attrs
-        * @description The window attributes
-        */
-        this.attrs = attrs;
-    };
-
-    YAHOO.widget.EditorWindow.prototype = {
-        /**
-        * @private
-        * @property header
-        * @description Holder for the header of the window, used in Editor.openWindow
-        */
-        header: null,
-        /**
-        * @private
-        * @property body
-        * @description Holder for the body of the window, used in Editor.openWindow
-        */
-        body: null,
-        /**
-        * @private
-        * @property footer
-        * @description Holder for the footer of the window, used in Editor.openWindow
-        */
-        footer: null,
-        /**
-        * @method setHeader
-        * @description Sets the header for the window.
-        * @param {String/HTMLElement} str The string or DOM reference to be used as the windows header.
-        */
-        setHeader: function(str) {
-            this.header = str;
-        },
-        /**
-        * @method setBody
-        * @description Sets the body for the window.
-        * @param {String/HTMLElement} str The string or DOM reference to be used as the windows body.
-        */
-        setBody: function(str) {
-            this.body = str;
-        },
-        /**
-        * @method setFooter
-        * @description Sets the footer for the window.
-        * @param {String/HTMLElement} str The string or DOM reference to be used as the windows footer.
-        */
-        setFooter: function(str) {
-            this.footer = str;
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the EditorWindow.
-        * @return {String}
-        */
-        toString: function() {
-            return 'Editor Window (' + this.name + ')';
-        }
-    };
-/**
-* @event beforeOpenWindow
-* @param {<a href="YAHOO.widget.EditorWindow.html">EditorWindow</a>} win The EditorWindow object
-* @param {Overlay} panel The Overlay object that is used to create the window.
-* @description Event fires before an Editor Window is opened. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event afterOpenWindow
-* @param {<a href="YAHOO.widget.EditorWindow.html">EditorWindow</a>} win The EditorWindow object
-* @param {Overlay} panel The Overlay object that is used to create the window.
-* @description Event fires after an Editor Window is opened. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event closeWindow
-* @param {<a href="YAHOO.widget.EditorWindow.html">EditorWindow</a>} win The EditorWindow object
-* @description Event fires after an Editor Window is closed. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event windowCMDOpen
-* @param {<a href="YAHOO.widget.EditorWindow.html">EditorWindow</a>} win The EditorWindow object
-* @param {Overlay} panel The Overlay object that is used to create the window.
-* @description Dynamic event fired when an <a href="YAHOO.widget.EditorWindow.html">EditorWindow</a> is opened.. The dynamic event is based on the name of the window. Example Window: createlink, opening this window would fire the windowcreatelinkOpen event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event windowCMDClose
-* @param {<a href="YAHOO.widget.EditorWindow.html">EditorWindow</a>} win The EditorWindow object
-* @param {Overlay} panel The Overlay object that is used to create the window.
-* @description Dynamic event fired when an <a href="YAHOO.widget.EditorWindow.html">EditorWindow</a> is closed.. The dynamic event is based on the name of the window. Example Window: createlink, opening this window would fire the windowcreatelinkClose event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event windowRender
-* @param {<a href="YAHOO.widget.EditorWindow.html">EditorWindow</a>} win The EditorWindow object
-* @param {Overlay} panel The Overlay object that is used to create the window.
-* @description Event fired when the initial Overlay is rendered. Can be used to manipulate the content of the panel.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event windowInsertImageRender
-* @param {Overlay} panel The Overlay object that is used to create the window.
-* @param {HTMLElement} body The HTML element used as the body of the window..
-* @param {Toolbar} toolbar A reference to the toolbar object used inside this window.
-* @description Event fired when the pre render of the Insert Image window has finished.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event windowCreateLinkRender
-* @param {Overlay} panel The Overlay object that is used to create the window.
-* @param {HTMLElement} body The HTML element used as the body of the window..
-* @description Event fired when the pre render of the Create Link window has finished.
-* @type YAHOO.util.CustomEvent
-*/
-
-})();
-YAHOO.register("editor", YAHOO.widget.Editor, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/simpleeditor-debug.js b/eclipse.org-common/yui/2.6.0/build/editor/simpleeditor-debug.js
deleted file mode 100644
index e4257e8..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/simpleeditor-debug.js
+++ /dev/null
@@ -1,6971 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function() {
-    /**
-    * @private
-    **/
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang;
-    /**
-     * @description <p>Creates a rich custom Toolbar Button. Primarily used with the Rich Text Editor's Toolbar</p>
-     * @class ToolbarButtonAdvanced
-     * @namespace YAHOO.widget
-     * @requires yahoo, dom, element, event, container_core, menu, button
-     * @beta
-     * 
-     * Provides a toolbar button based on the button and menu widgets.
-     * @constructor
-     * @param {String/HTMLElement} el The element to turn into a button.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    if (YAHOO.widget.Button) {
-        YAHOO.widget.ToolbarButtonAdvanced = YAHOO.widget.Button;
-        /**
-        * @property buttonType
-        * @private
-        * @description Tells if the Button is a Rich Button or a Simple Button
-        */
-        YAHOO.widget.ToolbarButtonAdvanced.prototype.buttonType = 'rich';
-        /**
-        * @method checkValue
-        * @param {String} value The value of the option that we want to mark as selected
-        * @description Select an option by value
-        */
-        YAHOO.widget.ToolbarButtonAdvanced.prototype.checkValue = function(value) {
-            var _menuItems = this.getMenu().getItems();
-            if (_menuItems.length === 0) {
-                this.getMenu()._onBeforeShow();
-                _menuItems = this.getMenu().getItems();
-            }
-            for (var i = 0; i < _menuItems.length; i++) {
-                _menuItems[i].cfg.setProperty('checked', false);
-                if (_menuItems[i].value == value) {
-                    _menuItems[i].cfg.setProperty('checked', true);
-                }
-            }      
-        };
-    } else {
-        YAHOO.widget.ToolbarButtonAdvanced = function() {};
-    }
-
-
-    /**
-     * @description <p>Creates a basic custom Toolbar Button. Primarily used with the Rich Text Editor's Toolbar</p>
-     * @class ToolbarButton
-     * @namespace YAHOO.widget
-     * @requires yahoo, dom, element, event
-     * @Extends YAHOO.util.Element
-     * @beta
-     * 
-     * Provides a toolbar button based on the button and menu widgets, <select> elements are used in place of menu's.
-     * @constructor
-     * @param {String/HTMLElement} el The element to turn into a button.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-
-    YAHOO.widget.ToolbarButton = function(el, attrs) {
-        YAHOO.log('ToolbarButton Initalizing', 'info', 'ToolbarButton');
-        YAHOO.log(arguments.length + ' arguments passed to constructor', 'info', 'Toolbar');
-        
-        if (Lang.isObject(arguments[0]) && !Dom.get(el).nodeType) {
-            attrs = el;
-        }
-        var local_attrs = (attrs || {});
-
-        var oConfig = {
-            element: null,
-            attributes: local_attrs
-        };
-
-        if (!oConfig.attributes.type) {
-            oConfig.attributes.type = 'push';
-        }
-        
-        oConfig.element = document.createElement('span');
-        oConfig.element.setAttribute('unselectable', 'on');
-        oConfig.element.className = 'yui-button yui-' + oConfig.attributes.type + '-button';
-        oConfig.element.innerHTML = '<span class="first-child"><a href="#">LABEL</a></span>';
-        oConfig.element.firstChild.firstChild.tabIndex = '-1';
-        oConfig.attributes.id = Dom.generateId();
-
-        YAHOO.widget.ToolbarButton.superclass.constructor.call(this, oConfig.element, oConfig.attributes);
-    };
-
-    YAHOO.extend(YAHOO.widget.ToolbarButton, YAHOO.util.Element, {
-        /**
-        * @property buttonType
-        * @private
-        * @description Tells if the Button is a Rich Button or a Simple Button
-        */
-        buttonType: 'normal',
-        /**
-        * @method _handleMouseOver
-        * @private
-        * @description Adds classes to the button elements on mouseover (hover)
-        */
-        _handleMouseOver: function() {
-            if (!this.get('disabled')) {
-                this.addClass('yui-button-hover');
-                this.addClass('yui-' + this.get('type') + '-button-hover');
-            }
-        },
-        /**
-        * @method _handleMouseOut
-        * @private
-        * @description Removes classes from the button elements on mouseout (hover)
-        */
-        _handleMouseOut: function() {
-            this.removeClass('yui-button-hover');
-            this.removeClass('yui-' + this.get('type') + '-button-hover');
-        },
-        /**
-        * @method checkValue
-        * @param {String} value The value of the option that we want to mark as selected
-        * @description Select an option by value
-        */
-        checkValue: function(value) {
-            if (this.get('type') == 'menu') {
-                var opts = this._button.options;
-                for (var i = 0; i < opts.length; i++) {
-                    if (opts[i].value == value) {
-                        opts.selectedIndex = i;
-                    }
-                }
-            }
-        },
-        /** 
-        * @method init
-        * @description The ToolbarButton class's initialization method
-        */        
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.widget.ToolbarButton.superclass.init.call(this, p_oElement, p_oAttributes);
-
-            this.on('mouseover', this._handleMouseOver, this, true);
-            this.on('mouseout', this._handleMouseOut, this, true);
-        },
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create 
-        * the toolbar.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the toolbar.
-        */        
-        initAttributes: function(attr) {
-            YAHOO.widget.ToolbarButton.superclass.initAttributes.call(this, attr);
-            /**
-            * @attribute value
-            * @description The value of the button
-            * @type String
-            */            
-            this.setAttributeConfig('value', {
-                value: attr.value
-            });
-            /**
-            * @attribute menu
-            * @description The menu attribute, see YAHOO.widget.Button
-            * @type Object
-            */            
-            this.setAttributeConfig('menu', {
-                value: attr.menu || false
-            });
-            /**
-            * @attribute type
-            * @description The type of button to create: push, menu, color, select, spin
-            * @type String
-            */            
-            this.setAttributeConfig('type', {
-                value: attr.type,
-                writeOnce: true,
-                method: function(type) {
-                    var el, opt;
-                    if (!this._button) {
-                        this._button = this.get('element').getElementsByTagName('a')[0];
-                    }
-                    switch (type) {
-                        case 'select':
-                        case 'menu':
-                            el = document.createElement('select');
-                            var menu = this.get('menu');
-                            for (var i = 0; i < menu.length; i++) {
-                                opt = document.createElement('option');
-                                opt.innerHTML = menu[i].text;
-                                opt.value = menu[i].value;
-                                if (menu[i].checked) {
-                                    opt.selected = true;
-                                }
-                                el.appendChild(opt);
-                            }
-                            this._button.parentNode.replaceChild(el, this._button);
-                            Event.on(el, 'change', this._handleSelect, this, true);
-                            this._button = el;
-                            break;
-                    }
-                }
-            });
-
-            /**
-            * @attribute disabled
-            * @description Set the button into a disabled state
-            * @type String
-            */            
-            this.setAttributeConfig('disabled', {
-                value: attr.disabled || false,
-                method: function(disabled) {
-                    if (disabled) {
-                        this.addClass('yui-button-disabled');
-                        this.addClass('yui-' + this.get('type') + '-button-disabled');
-                    } else {
-                        this.removeClass('yui-button-disabled');
-                        this.removeClass('yui-' + this.get('type') + '-button-disabled');
-                    }
-                    if (this.get('type') == 'menu') {
-                        this._button.disabled = disabled;
-                    }
-                }
-            });
-
-            /**
-            * @attribute label
-            * @description The text label for the button
-            * @type String
-            */            
-            this.setAttributeConfig('label', {
-                value: attr.label,
-                method: function(label) {
-                    if (!this._button) {
-                        this._button = this.get('element').getElementsByTagName('a')[0];
-                    }
-                    if (this.get('type') == 'push') {
-                        this._button.innerHTML = label;
-                    }
-                }
-            });
-
-            /**
-            * @attribute title
-            * @description The title of the button
-            * @type String
-            */            
-            this.setAttributeConfig('title', {
-                value: attr.title
-            });
-
-            /**
-            * @config container
-            * @description The container that the button is rendered to, handled by Toolbar
-            * @type String
-            */            
-            this.setAttributeConfig('container', {
-                value: null,
-                writeOnce: true,
-                method: function(cont) {
-                    this.appendTo(cont);
-                }
-            });
-
-        },
-        /** 
-        * @private
-        * @method _handleSelect
-        * @description The event fired when a change event gets fired on a select element
-        * @param {Event} ev The change event.
-        */        
-        _handleSelect: function(ev) {
-            var tar = Event.getTarget(ev);
-            var value = tar.options[tar.selectedIndex].value;
-            this.fireEvent('change', {type: 'change', value: value });
-        },
-        /** 
-        * @method getMenu
-        * @description A stub function to mimic YAHOO.widget.Button's getMenu method
-        */        
-        getMenu: function() {
-            return this.get('menu');
-        },
-        /** 
-        * @method destroy
-        * @description Destroy the button
-        */        
-        destroy: function() {
-            Event.purgeElement(this.get('element'), true);
-            this.get('element').parentNode.removeChild(this.get('element'));
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                }
-            }       
-        },
-        /** 
-        * @method fireEvent
-        * @description Overridden fireEvent method to prevent DOM events from firing if the button is disabled.
-        */        
-        fireEvent: function (p_sType , p_aArgs) {
-            //  Disabled buttons should not respond to DOM events
-            if (this.DOM_EVENTS[p_sType] && this.get('disabled')) {
-                return;
-            }
-        
-            YAHOO.widget.ToolbarButton.superclass.fireEvent.call(this, p_sType, p_aArgs);
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the toolbar.
-        * @return {String}
-        */        
-        toString: function() {
-            return 'ToolbarButton (' + this.get('id') + ')';
-        }
-        
-    });
-})();
-/**
- * @description <p>Creates a rich Toolbar widget based on Button. Primarily used with the Rich Text Editor</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event, toolbarbutton
- * @optional container_core, dragdrop
- * @beta
- */
-(function() {
-    /**
-    * @private
-    **/
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang;
-    
-    var getButton = function(id) {
-        var button = id;
-        if (Lang.isString(id)) {
-            button = this.getButtonById(id);
-        }
-        if (Lang.isNumber(id)) {
-            button = this.getButtonByIndex(id);
-        }
-        if ((!(button instanceof YAHOO.widget.ToolbarButton)) && (!(button instanceof YAHOO.widget.ToolbarButtonAdvanced))) {
-            button = this.getButtonByValue(id);
-        }
-        if ((button instanceof YAHOO.widget.ToolbarButton) || (button instanceof YAHOO.widget.ToolbarButtonAdvanced)) {
-            return button;
-        }
-        return false;
-    };
-
-    /**
-     * Provides a rich toolbar widget based on the button and menu widgets
-     * @constructor
-     * @class Toolbar
-     * @extends YAHOO.util.Element
-     * @param {String/HTMLElement} el The element to turn into a toolbar.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    YAHOO.widget.Toolbar = function(el, attrs) {
-        YAHOO.log('Toolbar Initalizing', 'info', 'Toolbar');
-        YAHOO.log(arguments.length + ' arguments passed to constructor', 'info', 'Toolbar');
-        
-        if (Lang.isObject(arguments[0]) && !Dom.get(el).nodeType) {
-            attrs = el;
-        }
-        var local_attrs = {};
-        if (attrs) {
-            Lang.augmentObject(local_attrs, attrs); //Break the config reference
-        }
-        
-
-        var oConfig = {
-            element: null,
-            attributes: local_attrs
-        };
-        
-        
-        if (Lang.isString(el) && Dom.get(el)) {
-            oConfig.element = Dom.get(el);
-        } else if (Lang.isObject(el) && Dom.get(el) && Dom.get(el).nodeType) {  
-            oConfig.element = Dom.get(el);
-        }
-        
-
-        if (!oConfig.element) {
-            YAHOO.log('No element defined, creating toolbar container', 'warn', 'Toolbar');
-            oConfig.element = document.createElement('DIV');
-            oConfig.element.id = Dom.generateId();
-            
-            if (local_attrs.container && Dom.get(local_attrs.container)) {
-                YAHOO.log('Container found in config appending to it (' + Dom.get(local_attrs.container).id + ')', 'info', 'Toolbar');
-                Dom.get(local_attrs.container).appendChild(oConfig.element);
-            }
-        }
-        
-
-        if (!oConfig.element.id) {
-            oConfig.element.id = ((Lang.isString(el)) ? el : Dom.generateId());
-            YAHOO.log('No element ID defined for toolbar container, creating..', 'warn', 'Toolbar');
-        }
-        YAHOO.log('Initing toolbar with id: ' + oConfig.element.id, 'info', 'Toolbar');
-        
-        var fs = document.createElement('fieldset');
-        var lg = document.createElement('legend');
-        lg.innerHTML = 'Toolbar';
-        fs.appendChild(lg);
-        
-        var cont = document.createElement('DIV');
-        oConfig.attributes.cont = cont;
-        Dom.addClass(cont, 'yui-toolbar-subcont');
-        fs.appendChild(cont);
-        oConfig.element.appendChild(fs);
-
-        oConfig.element.tabIndex = -1;
-
-        
-        oConfig.attributes.element = oConfig.element;
-        oConfig.attributes.id = oConfig.element.id;
-
-        YAHOO.widget.Toolbar.superclass.constructor.call(this, oConfig.element, oConfig.attributes);
-         
-    };
-
-    YAHOO.extend(YAHOO.widget.Toolbar, YAHOO.util.Element, {
-        /**
-        * @method _addMenuClasses
-        * @private
-        * @description This method is called from Menu's renderEvent to add a few more classes to the menu items
-        * @param {String} ev The event that fired.
-        * @param {Array} na Array of event information.
-        * @param {Object} o Button config object. 
-        */
-        _addMenuClasses: function(ev, na, o) {
-            Dom.addClass(this.element, 'yui-toolbar-' + o.get('value') + '-menu');
-            if (Dom.hasClass(o._button.parentNode.parentNode, 'yui-toolbar-select')) {
-                Dom.addClass(this.element, 'yui-toolbar-select-menu');
-            }
-            var items = this.getItems();
-            for (var i = 0; i < items.length; i++) {
-                Dom.addClass(items[i].element, 'yui-toolbar-' + o.get('value') + '-' + ((items[i].value) ? items[i].value.replace(/ /g, '-').toLowerCase() : items[i]._oText.nodeValue.replace(/ /g, '-').toLowerCase()));
-                Dom.addClass(items[i].element, 'yui-toolbar-' + o.get('value') + '-' + ((items[i].value) ? items[i].value.replace(/ /g, '-') : items[i]._oText.nodeValue.replace(/ /g, '-')));
-            }
-        },
-        /** 
-        * @property buttonType
-        * @description The default button to use
-        * @type Object
-        */
-        buttonType: YAHOO.widget.ToolbarButton,
-        /** 
-        * @property dd
-        * @description The DragDrop instance associated with the Toolbar
-        * @type Object
-        */
-        dd: null,
-        /** 
-        * @property _colorData
-        * @description Object reference containing colors hex and text values.
-        * @type Object
-        */
-        _colorData: {
-/* {{{ _colorData */
-    '#111111': 'Obsidian',
-    '#2D2D2D': 'Dark Gray',
-    '#434343': 'Shale',
-    '#5B5B5B': 'Flint',
-    '#737373': 'Gray',
-    '#8B8B8B': 'Concrete',
-    '#A2A2A2': 'Gray',
-    '#B9B9B9': 'Titanium',
-    '#000000': 'Black',
-    '#D0D0D0': 'Light Gray',
-    '#E6E6E6': 'Silver',
-    '#FFFFFF': 'White',
-    '#BFBF00': 'Pumpkin',
-    '#FFFF00': 'Yellow',
-    '#FFFF40': 'Banana',
-    '#FFFF80': 'Pale Yellow',
-    '#FFFFBF': 'Butter',
-    '#525330': 'Raw Siena',
-    '#898A49': 'Mildew',
-    '#AEA945': 'Olive',
-    '#7F7F00': 'Paprika',
-    '#C3BE71': 'Earth',
-    '#E0DCAA': 'Khaki',
-    '#FCFAE1': 'Cream',
-    '#60BF00': 'Cactus',
-    '#80FF00': 'Chartreuse',
-    '#A0FF40': 'Green',
-    '#C0FF80': 'Pale Lime',
-    '#DFFFBF': 'Light Mint',
-    '#3B5738': 'Green',
-    '#668F5A': 'Lime Gray',
-    '#7F9757': 'Yellow',
-    '#407F00': 'Clover',
-    '#8A9B55': 'Pistachio',
-    '#B7C296': 'Light Jade',
-    '#E6EBD5': 'Breakwater',
-    '#00BF00': 'Spring Frost',
-    '#00FF80': 'Pastel Green',
-    '#40FFA0': 'Light Emerald',
-    '#80FFC0': 'Sea Foam',
-    '#BFFFDF': 'Sea Mist',
-    '#033D21': 'Dark Forrest',
-    '#438059': 'Moss',
-    '#7FA37C': 'Medium Green',
-    '#007F40': 'Pine',
-    '#8DAE94': 'Yellow Gray Green',
-    '#ACC6B5': 'Aqua Lung',
-    '#DDEBE2': 'Sea Vapor',
-    '#00BFBF': 'Fog',
-    '#00FFFF': 'Cyan',
-    '#40FFFF': 'Turquoise Blue',
-    '#80FFFF': 'Light Aqua',
-    '#BFFFFF': 'Pale Cyan',
-    '#033D3D': 'Dark Teal',
-    '#347D7E': 'Gray Turquoise',
-    '#609A9F': 'Green Blue',
-    '#007F7F': 'Seaweed',
-    '#96BDC4': 'Green Gray',
-    '#B5D1D7': 'Soapstone',
-    '#E2F1F4': 'Light Turquoise',
-    '#0060BF': 'Summer Sky',
-    '#0080FF': 'Sky Blue',
-    '#40A0FF': 'Electric Blue',
-    '#80C0FF': 'Light Azure',
-    '#BFDFFF': 'Ice Blue',
-    '#1B2C48': 'Navy',
-    '#385376': 'Biscay',
-    '#57708F': 'Dusty Blue',
-    '#00407F': 'Sea Blue',
-    '#7792AC': 'Sky Blue Gray',
-    '#A8BED1': 'Morning Sky',
-    '#DEEBF6': 'Vapor',
-    '#0000BF': 'Deep Blue',
-    '#0000FF': 'Blue',
-    '#4040FF': 'Cerulean Blue',
-    '#8080FF': 'Evening Blue',
-    '#BFBFFF': 'Light Blue',
-    '#212143': 'Deep Indigo',
-    '#373E68': 'Sea Blue',
-    '#444F75': 'Night Blue',
-    '#00007F': 'Indigo Blue',
-    '#585E82': 'Dockside',
-    '#8687A4': 'Blue Gray',
-    '#D2D1E1': 'Light Blue Gray',
-    '#6000BF': 'Neon Violet',
-    '#8000FF': 'Blue Violet',
-    '#A040FF': 'Violet Purple',
-    '#C080FF': 'Violet Dusk',
-    '#DFBFFF': 'Pale Lavender',
-    '#302449': 'Cool Shale',
-    '#54466F': 'Dark Indigo',
-    '#655A7F': 'Dark Violet',
-    '#40007F': 'Violet',
-    '#726284': 'Smoky Violet',
-    '#9E8FA9': 'Slate Gray',
-    '#DCD1DF': 'Violet White',
-    '#BF00BF': 'Royal Violet',
-    '#FF00FF': 'Fuchsia',
-    '#FF40FF': 'Magenta',
-    '#FF80FF': 'Orchid',
-    '#FFBFFF': 'Pale Magenta',
-    '#4A234A': 'Dark Purple',
-    '#794A72': 'Medium Purple',
-    '#936386': 'Cool Granite',
-    '#7F007F': 'Purple',
-    '#9D7292': 'Purple Moon',
-    '#C0A0B6': 'Pale Purple',
-    '#ECDAE5': 'Pink Cloud',
-    '#BF005F': 'Hot Pink',
-    '#FF007F': 'Deep Pink',
-    '#FF409F': 'Grape',
-    '#FF80BF': 'Electric Pink',
-    '#FFBFDF': 'Pink',
-    '#451528': 'Purple Red',
-    '#823857': 'Purple Dino',
-    '#A94A76': 'Purple Gray',
-    '#7F003F': 'Rose',
-    '#BC6F95': 'Antique Mauve',
-    '#D8A5BB': 'Cool Marble',
-    '#F7DDE9': 'Pink Granite',
-    '#C00000': 'Apple',
-    '#FF0000': 'Fire Truck',
-    '#FF4040': 'Pale Red',
-    '#FF8080': 'Salmon',
-    '#FFC0C0': 'Warm Pink',
-    '#441415': 'Sepia',
-    '#82393C': 'Rust',
-    '#AA4D4E': 'Brick',
-    '#800000': 'Brick Red',
-    '#BC6E6E': 'Mauve',
-    '#D8A3A4': 'Shrimp Pink',
-    '#F8DDDD': 'Shell Pink',
-    '#BF5F00': 'Dark Orange',
-    '#FF7F00': 'Orange',
-    '#FF9F40': 'Grapefruit',
-    '#FFBF80': 'Canteloupe',
-    '#FFDFBF': 'Wax',
-    '#482C1B': 'Dark Brick',
-    '#855A40': 'Dirt',
-    '#B27C51': 'Tan',
-    '#7F3F00': 'Nutmeg',
-    '#C49B71': 'Mustard',
-    '#E1C4A8': 'Pale Tan',
-    '#FDEEE0': 'Marble'
-/* }}} */
-        },
-        /** 
-        * @property _colorPicker
-        * @description The HTML Element containing the colorPicker
-        * @type HTMLElement
-        */
-        _colorPicker: null,
-        /** 
-        * @property STR_COLLAPSE
-        * @description String for Toolbar Collapse Button
-        * @type String
-        */
-        STR_COLLAPSE: 'Collapse Toolbar',
-        /** 
-        * @property STR_SPIN_LABEL
-        * @description String for spinbutton dynamic label. Note the {VALUE} will be replaced with YAHOO.lang.substitute
-        * @type String
-        */
-        STR_SPIN_LABEL: 'Spin Button with value {VALUE}. Use Control Shift Up Arrow and Control Shift Down arrow keys to increase or decrease the value.',
-        /** 
-        * @property STR_SPIN_UP
-        * @description String for spinbutton up
-        * @type String
-        */
-        STR_SPIN_UP: 'Click to increase the value of this input',
-        /** 
-        * @property STR_SPIN_DOWN
-        * @description String for spinbutton down
-        * @type String
-        */
-        STR_SPIN_DOWN: 'Click to decrease the value of this input',
-        /** 
-        * @property _titlebar
-        * @description Object reference to the titlebar
-        * @type HTMLElement
-        */
-        _titlebar: null,
-        /** 
-        * @property browser
-        * @description Standard browser detection
-        * @type Object
-        */
-        browser: YAHOO.env.ua,
-        /**
-        * @protected
-        * @property _buttonList
-        * @description Internal property list of current buttons in the toolbar
-        * @type Array
-        */
-        _buttonList: null,
-        /**
-        * @protected
-        * @property _buttonGroupList
-        * @description Internal property list of current button groups in the toolbar
-        * @type Array
-        */
-        _buttonGroupList: null,
-        /**
-        * @protected
-        * @property _sep
-        * @description Internal reference to the separator HTML Element for cloning
-        * @type HTMLElement
-        */
-        _sep: null,
-        /**
-        * @protected
-        * @property _sepCount
-        * @description Internal refernce for counting separators, so we can give them a useful class name for styling
-        * @type Number
-        */
-        _sepCount: null,
-        /**
-        * @protected
-        * @property draghandle
-        * @type HTMLElement
-        */
-        _dragHandle: null,
-        /**
-        * @protected
-        * @property _toolbarConfigs
-        * @type Object
-        */
-        _toolbarConfigs: {
-            renderer: true
-        },
-        /**
-        * @protected
-        * @property CLASS_CONTAINER
-        * @description Default CSS class to apply to the toolbar container element
-        * @type String
-        */
-        CLASS_CONTAINER: 'yui-toolbar-container',
-        /**
-        * @protected
-        * @property CLASS_DRAGHANDLE
-        * @description Default CSS class to apply to the toolbar's drag handle element
-        * @type String
-        */
-        CLASS_DRAGHANDLE: 'yui-toolbar-draghandle',
-        /**
-        * @protected
-        * @property CLASS_SEPARATOR
-        * @description Default CSS class to apply to all separators in the toolbar
-        * @type String
-        */
-        CLASS_SEPARATOR: 'yui-toolbar-separator',
-        /**
-        * @protected
-        * @property CLASS_DISABLED
-        * @description Default CSS class to apply when the toolbar is disabled
-        * @type String
-        */
-        CLASS_DISABLED: 'yui-toolbar-disabled',
-        /**
-        * @protected
-        * @property CLASS_PREFIX
-        * @description Default prefix for dynamically created class names
-        * @type String
-        */
-        CLASS_PREFIX: 'yui-toolbar',
-        /** 
-        * @method init
-        * @description The Toolbar class's initialization method
-        */
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.widget.Toolbar.superclass.init.call(this, p_oElement, p_oAttributes);
-
-        },
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create 
-        * the toolbar.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the toolbar.
-        */
-        initAttributes: function(attr) {
-            YAHOO.widget.Toolbar.superclass.initAttributes.call(this, attr);
-            this.addClass(this.CLASS_CONTAINER);
-
-            /**
-            * @attribute buttonType
-            * @description The buttonType to use (advanced or basic)
-            * @type String
-            */
-            this.setAttributeConfig('buttonType', {
-                value: attr.buttonType || 'basic',
-                writeOnce: true,
-                validator: function(type) {
-                    switch (type) {
-                        case 'advanced':
-                        case 'basic':
-                            return true;
-                    }
-                    return false;
-                },
-                method: function(type) {
-                    if (type == 'advanced') {
-                        if (YAHOO.widget.Button) {
-                            this.buttonType = YAHOO.widget.ToolbarButtonAdvanced;
-                        } else {
-                            YAHOO.log('Can not find YAHOO.widget.Button', 'error', 'Toolbar');
-                            this.buttonType = YAHOO.widget.ToolbarButton;
-                        }
-                    } else {
-                        this.buttonType = YAHOO.widget.ToolbarButton;
-                    }
-                }
-            });
-
-
-            /**
-            * @attribute buttons
-            * @description Object specifying the buttons to include in the toolbar
-            * Example:
-            * <code><pre>
-            * {
-            *   { id: 'b3', type: 'button', label: 'Underline', value: 'underline' },
-            *   { type: 'separator' },
-            *   { id: 'b4', type: 'menu', label: 'Align', value: 'align',
-            *       menu: [
-            *           { text: "Left", value: 'alignleft' },
-            *           { text: "Center", value: 'aligncenter' },
-            *           { text: "Right", value: 'alignright' }
-            *       ]
-            *   }
-            * }
-            * </pre></code>
-            * @type Array
-            */
-            
-            this.setAttributeConfig('buttons', {
-                value: [],
-                writeOnce: true,
-                method: function(data) {
-                    for (var i in data) {
-                        if (Lang.hasOwnProperty(data, i)) {
-                            if (data[i].type == 'separator') {
-                                this.addSeparator();
-                            } else if (data[i].group !== undefined) {
-                                this.addButtonGroup(data[i]);
-                            } else {
-                                this.addButton(data[i]);
-                            }
-                        }
-                    }
-                }
-            });
-
-            /**
-            * @attribute disabled
-            * @description Boolean indicating if the toolbar should be disabled. It will also disable the draggable attribute if it is on.
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('disabled', {
-                value: false,
-                method: function(disabled) {
-                    if (this.get('disabled') === disabled) {
-                        return false;
-                    }
-                    if (disabled) {
-                        this.addClass(this.CLASS_DISABLED);
-                        this.set('draggable', false);
-                        this.disableAllButtons();
-                    } else {
-                        this.removeClass(this.CLASS_DISABLED);
-                        if (this._configs.draggable._initialConfig.value) {
-                            //Draggable by default, set it back
-                            this.set('draggable', true);
-                        }
-                        this.resetAllButtons();
-                    }
-                }
-            });
-
-            /**
-            * @config cont
-            * @description The container for the toolbar.
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('cont', {
-                value: attr.cont,
-                readOnly: true
-            });
-
-
-            /**
-            * @attribute grouplabels
-            * @description Boolean indicating if the toolbar should show the group label's text string.
-            * @default true
-            * @type Boolean
-            */
-            this.setAttributeConfig('grouplabels', {
-                value: ((attr.grouplabels === false) ? false : true),
-                method: function(grouplabels) {
-                    if (grouplabels) {
-                        Dom.removeClass(this.get('cont'), (this.CLASS_PREFIX + '-nogrouplabels'));
-                    } else {
-                        Dom.addClass(this.get('cont'), (this.CLASS_PREFIX + '-nogrouplabels'));
-                    }
-                }
-            });
-            /**
-            * @attribute titlebar
-            * @description Boolean indicating if the toolbar should have a titlebar. If
-            * passed a string, it will use that as the titlebar text
-            * @default false
-            * @type Boolean or String
-            */
-            this.setAttributeConfig('titlebar', {
-                value: false,
-                method: function(titlebar) {
-                    if (titlebar) {
-                        if (this._titlebar && this._titlebar.parentNode) {
-                            this._titlebar.parentNode.removeChild(this._titlebar);
-                        }
-                        this._titlebar = document.createElement('DIV');
-                        this._titlebar.tabIndex = '-1';
-                        Event.on(this._titlebar, 'focus', function() {
-                            this._handleFocus();
-                        }, this, true);
-                        Dom.addClass(this._titlebar, this.CLASS_PREFIX + '-titlebar');
-                        if (Lang.isString(titlebar)) {
-                            var h2 = document.createElement('h2');
-                            h2.tabIndex = '-1';
-                            h2.innerHTML = '<a href="#" tabIndex="0">' + titlebar + '</a>';
-                            this._titlebar.appendChild(h2);
-                            Event.on(h2.firstChild, 'click', function(ev) {
-                                Event.stopEvent(ev);
-                            });
-                            Event.on([h2, h2.firstChild], 'focus', function() {
-                                this._handleFocus();
-                            }, this, true);
-                        }
-                        if (this.get('firstChild')) {
-                            this.insertBefore(this._titlebar, this.get('firstChild'));
-                        } else {
-                            this.appendChild(this._titlebar);
-                        }
-                        if (this.get('collapse')) {
-                            this.set('collapse', true);
-                        }
-                    } else if (this._titlebar) {
-                        if (this._titlebar && this._titlebar.parentNode) {
-                            this._titlebar.parentNode.removeChild(this._titlebar);
-                        }
-                    }
-                }
-            });
-
-
-            /**
-            * @attribute collapse
-            * @description Boolean indicating if the the titlebar should have a collapse button.
-            * The collapse button will not remove the toolbar, it will minimize it to the titlebar
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('collapse', {
-                value: false,
-                method: function(collapse) {
-                    if (this._titlebar) {
-                        var collapseEl = null;
-                        var el = Dom.getElementsByClassName('collapse', 'span', this._titlebar);
-                        if (collapse) {
-                            if (el.length > 0) {
-                                //There is already a collapse button
-                                return true;
-                            }
-                            collapseEl = document.createElement('SPAN');
-                            collapseEl.innerHTML = 'X';
-                            collapseEl.title = this.STR_COLLAPSE;
-
-                            Dom.addClass(collapseEl, 'collapse');
-                            this._titlebar.appendChild(collapseEl);
-                            Event.addListener(collapseEl, 'click', function() {
-                                if (Dom.hasClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed')) {
-                                    this.collapse(false); //Expand Toolbar
-                                } else {
-                                    this.collapse(); //Collapse Toolbar
-                                }
-                            }, this, true);
-                        } else {
-                            collapseEl = Dom.getElementsByClassName('collapse', 'span', this._titlebar);
-                            if (collapseEl[0]) {
-                                if (Dom.hasClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed')) {
-                                    //We are closed, reopen the titlebar..
-                                    this.collapse(false); //Expand Toolbar
-                                }
-                                collapseEl[0].parentNode.removeChild(collapseEl[0]);
-                            }
-                        }
-                    }
-                }
-            });
-
-            /**
-            * @attribute draggable
-            * @description Boolean indicating if the toolbar should be draggable.  
-            * @default false
-            * @type Boolean
-            */
-
-            this.setAttributeConfig('draggable', {
-                value: (attr.draggable || false),
-                method: function(draggable) {
-                    if (draggable && !this.get('titlebar')) {
-                        YAHOO.log('Dragging enabled', 'info', 'Toolbar');
-                        if (!this._dragHandle) {
-                            this._dragHandle = document.createElement('SPAN');
-                            this._dragHandle.innerHTML = '|';
-                            this._dragHandle.setAttribute('title', 'Click to drag the toolbar');
-                            this._dragHandle.id = this.get('id') + '_draghandle';
-                            Dom.addClass(this._dragHandle, this.CLASS_DRAGHANDLE);
-                            if (this.get('cont').hasChildNodes()) {
-                                this.get('cont').insertBefore(this._dragHandle, this.get('cont').firstChild);
-                            } else {
-                                this.get('cont').appendChild(this._dragHandle);
-                            }
-                            /**
-                            * @property dd
-                            * @description The DragDrop instance associated with the Toolbar
-                            * @type Object
-                            */
-                            this.dd = new YAHOO.util.DD(this.get('id'));
-                            this.dd.setHandleElId(this._dragHandle.id);
-                            
-                        }
-                    } else {
-                        YAHOO.log('Dragging disabled', 'info', 'Toolbar');
-                        if (this._dragHandle) {
-                            this._dragHandle.parentNode.removeChild(this._dragHandle);
-                            this._dragHandle = null;
-                            this.dd = null;
-                        }
-                    }
-                    if (this._titlebar) {
-                        if (draggable) {
-                            this.dd = new YAHOO.util.DD(this.get('id'));
-                            this.dd.setHandleElId(this._titlebar);
-                            Dom.addClass(this._titlebar, 'draggable');
-                        } else {
-                            Dom.removeClass(this._titlebar, 'draggable');
-                            if (this.dd) {
-                                this.dd.unreg();
-                                this.dd = null;
-                            }
-                        }
-                    }
-                },
-                validator: function(value) {
-                    var ret = true;
-                    if (!YAHOO.util.DD) {
-                        ret = false;
-                    }
-                    return ret;
-                }
-            });
-
-        },
-        /**
-        * @method addButtonGroup
-        * @description Add a new button group to the toolbar. (uses addButton)
-        * @param {Object} oGroup Object literal reference to the Groups Config (contains an array of button configs as well as the group label)
-        */
-        addButtonGroup: function(oGroup) {
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addButtonGroup', arguments];
-                return false;
-            }
-            
-            if (!this.hasClass(this.CLASS_PREFIX + '-grouped')) {
-                this.addClass(this.CLASS_PREFIX + '-grouped');
-            }
-            var div = document.createElement('DIV');
-            Dom.addClass(div, this.CLASS_PREFIX + '-group');
-            Dom.addClass(div, this.CLASS_PREFIX + '-group-' + oGroup.group);
-            if (oGroup.label) {
-                var label = document.createElement('h3');
-                label.innerHTML = oGroup.label;
-                div.appendChild(label);
-            }
-            if (!this.get('grouplabels')) {
-                Dom.addClass(this.get('cont'), this.CLASS_PREFIX, '-nogrouplabels');
-            }
-
-            this.get('cont').appendChild(div);
-
-            //For accessibility, let's put all of the group buttons in an Unordered List
-            var ul = document.createElement('ul');
-            div.appendChild(ul);
-
-            if (!this._buttonGroupList) {
-                this._buttonGroupList = {};
-            }
-            
-            this._buttonGroupList[oGroup.group] = ul;
-
-            for (var i = 0; i < oGroup.buttons.length; i++) {
-                var li = document.createElement('li');
-                li.className = this.CLASS_PREFIX + '-groupitem';
-                ul.appendChild(li);
-                if ((oGroup.buttons[i].type !== undefined) && oGroup.buttons[i].type == 'separator') {
-                    this.addSeparator(li);
-                } else {
-                    oGroup.buttons[i].container = li;
-                    this.addButton(oGroup.buttons[i]);
-                }
-            }
-        },
-        /**
-        * @method addButtonToGroup
-        * @description Add a new button to a toolbar group. Buttons supported:
-        *   push, split, menu, select, color, spin
-        * @param {Object} oButton Object literal reference to the Button's Config
-        * @param {String} group The Group identifier passed into the initial config
-        * @param {HTMLElement} after Optional HTML element to insert this button after in the DOM.
-        */
-        addButtonToGroup: function(oButton, group, after) {
-            var groupCont = this._buttonGroupList[group];
-            var li = document.createElement('li');
-            li.className = this.CLASS_PREFIX + '-groupitem';
-            oButton.container = li;
-            this.addButton(oButton, after);
-            groupCont.appendChild(li);
-        },
-        /**
-        * @method addButton
-        * @description Add a new button to the toolbar. Buttons supported:
-        *   push, split, menu, select, color, spin
-        * @param {Object} oButton Object literal reference to the Button's Config
-        * @param {HTMLElement} after Optional HTML element to insert this button after in the DOM.
-        */
-        addButton: function(oButton, after) {
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addButton', arguments];
-                return false;
-            }
-            if (!this._buttonList) {
-                this._buttonList = [];
-            }
-            YAHOO.log('Adding button of type: ' + oButton.type, 'info', 'Toolbar');
-            if (!oButton.container) {
-                oButton.container = this.get('cont');
-            }
-
-            if ((oButton.type == 'menu') || (oButton.type == 'split') || (oButton.type == 'select')) {
-                if (Lang.isArray(oButton.menu)) {
-                    for (var i in oButton.menu) {
-                        if (Lang.hasOwnProperty(oButton.menu, i)) {
-                            var funcObject = {
-                                fn: function(ev, x, oMenu) {
-                                    if (!oButton.menucmd) {
-                                        oButton.menucmd = oButton.value;
-                                    }
-                                    oButton.value = ((oMenu.value) ? oMenu.value : oMenu._oText.nodeValue);
-                                },
-                                scope: this
-                            };
-                            oButton.menu[i].onclick = funcObject;
-                        }
-                    }
-                }
-            }
-            var _oButton = {}, skip = false;
-            for (var o in oButton) {
-                if (Lang.hasOwnProperty(oButton, o)) {
-                    if (!this._toolbarConfigs[o]) {
-                        _oButton[o] = oButton[o];
-                    }
-                }
-            }
-            if (oButton.type == 'select') {
-                _oButton.type = 'menu';
-            }
-            if (oButton.type == 'spin') {
-                _oButton.type = 'push';
-            }
-            if (_oButton.type == 'color') {
-                if (YAHOO.widget.Overlay) {
-                    _oButton = this._makeColorButton(_oButton);
-                } else {
-                    skip = true;
-                }
-            }
-            if (_oButton.menu) {
-                if ((YAHOO.widget.Overlay) && (oButton.menu instanceof YAHOO.widget.Overlay)) {
-                    oButton.menu.showEvent.subscribe(function() {
-                        this._button = _oButton;
-                    });
-                } else {
-                    for (var m = 0; m < _oButton.menu.length; m++) {
-                        if (!_oButton.menu[m].value) {
-                            _oButton.menu[m].value = _oButton.menu[m].text;
-                        }
-                    }
-                    if (this.browser.webkit) {
-                        _oButton.focusmenu = false;
-                    }
-                }
-            }
-            if (skip) {
-                oButton = false;
-            } else {
-                //Add to .get('buttons') manually
-                this._configs.buttons.value[this._configs.buttons.value.length] = oButton;
-                
-                var tmp = new this.buttonType(_oButton);
-                tmp.get('element').tabIndex = '-1';
-                tmp.get('element').setAttribute('role', 'button');
-                tmp._selected = true;
-                
-                if (this.get('disabled')) {
-                    //Toolbar is disabled, disable the new button too!
-                    tmp.set('disabled', true);
-                }
-                if (!oButton.id) {
-                    oButton.id = tmp.get('id');
-                }
-                YAHOO.log('Button created (' + oButton.type + ')', 'info', 'Toolbar');
-                
-                if (after) {
-                    var el = tmp.get('element');
-                    var nextSib = null;
-                    if (after.get) {
-                        nextSib = after.get('element').nextSibling;
-                    } else if (after.nextSibling) {
-                        nextSib = after.nextSibling;
-                    }
-                    if (nextSib) {
-                        nextSib.parentNode.insertBefore(el, nextSib);
-                    }
-                }
-                tmp.addClass(this.CLASS_PREFIX + '-' + tmp.get('value'));
-
-                var icon = document.createElement('span');
-                icon.className = this.CLASS_PREFIX + '-icon';
-                tmp.get('element').insertBefore(icon, tmp.get('firstChild'));
-                if (tmp._button.tagName.toLowerCase() == 'button') {
-                    tmp.get('element').setAttribute('unselectable', 'on');
-                    //Replace the Button HTML Element with an a href if it exists
-                    var a = document.createElement('a');
-                    a.innerHTML = tmp._button.innerHTML;
-                    a.href = '#';
-                    a.tabIndex = '-1';
-                    Event.on(a, 'click', function(ev) {
-                        Event.stopEvent(ev);
-                    });
-                    tmp._button.parentNode.replaceChild(a, tmp._button);
-                    tmp._button = a;
-                }
-
-                if (oButton.type == 'select') {
-                    if (tmp._button.tagName.toLowerCase() == 'select') {
-                        icon.parentNode.removeChild(icon);
-                        var iel = tmp._button;
-                        var parEl = tmp.get('element');
-                        parEl.parentNode.replaceChild(iel, parEl);
-                    } else {
-                        //Don't put a class on it if it's a real select element
-                        tmp.addClass(this.CLASS_PREFIX + '-select');
-                    }
-                }
-                if (oButton.type == 'spin') {
-                    if (!Lang.isArray(oButton.range)) {
-                        oButton.range = [ 10, 100 ];
-                    }
-                    this._makeSpinButton(tmp, oButton);
-                }
-                tmp.get('element').setAttribute('title', tmp.get('label'));
-                if (oButton.type != 'spin') {
-                    if ((YAHOO.widget.Overlay) && (_oButton.menu instanceof YAHOO.widget.Overlay)) {
-                        var showPicker = function(ev) {
-                            var exec = true;
-                            if (ev.keyCode && (ev.keyCode == 9)) {
-                                exec = false;
-                            }
-                            if (exec) {
-                                if (this._colorPicker) {
-                                    this._colorPicker._button = oButton.value;
-                                }
-                                var menuEL = tmp.getMenu().element;
-                                if (Dom.getStyle(menuEL, 'visibility') == 'hidden') {
-                                    tmp.getMenu().show();
-                                } else {
-                                    tmp.getMenu().hide();
-                                }
-                            }
-                            YAHOO.util.Event.stopEvent(ev);
-                        };
-                        tmp.on('mousedown', showPicker, oButton, this);
-                        tmp.on('keydown', showPicker, oButton, this);
-                        
-                    } else if ((oButton.type != 'menu') && (oButton.type != 'select')) {
-                        tmp.on('keypress', this._buttonClick, oButton, this);
-                        tmp.on('mousedown', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                            this._buttonClick(ev, oButton);
-                        }, oButton, this);
-                        tmp.on('click', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                        });
-                    } else {
-                        //Stop the mousedown event so we can trap the selection in the editor!
-                        tmp.on('mousedown', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                        });
-                        tmp.on('click', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                        });
-                        tmp.on('change', function(ev) {
-                            if (!oButton.menucmd) {
-                                oButton.menucmd = oButton.value;
-                            }
-                            oButton.value = ev.value;
-                            this._buttonClick(ev, oButton);
-                        }, this, true);
-
-                        var self = this;
-                        //Hijack the mousedown event in the menu and make it fire a button click..
-                        tmp.on('appendTo', function() {
-                            var tmp = this;
-                            if (tmp.getMenu() && tmp.getMenu().mouseDownEvent) {
-                                tmp.getMenu().mouseDownEvent.subscribe(function(ev, args) {
-                                    YAHOO.log('mouseDownEvent', 'warn', 'Toolbar');
-                                    var oMenu = args[1];
-                                    YAHOO.util.Event.stopEvent(args[0]);
-                                    tmp._onMenuClick(args[0], tmp);
-                                    if (!oButton.menucmd) {
-                                        oButton.menucmd = oButton.value;
-                                    }
-                                    oButton.value = ((oMenu.value) ? oMenu.value : oMenu._oText.nodeValue);
-                                    self._buttonClick.call(self, args[1], oButton);
-                                    tmp._hideMenu();
-                                    return false;
-                                });
-                                tmp.getMenu().clickEvent.subscribe(function(ev, args) {
-                                    YAHOO.log('clickEvent', 'warn', 'Toolbar');
-                                    YAHOO.util.Event.stopEvent(args[0]);
-                                });
-                                tmp.getMenu().mouseUpEvent.subscribe(function(ev, args) {
-                                    YAHOO.log('mouseUpEvent', 'warn', 'Toolbar');
-                                    YAHOO.util.Event.stopEvent(args[0]);
-                                });
-                            }
-                        });
-                        
-                    }
-                } else {
-                    //Stop the mousedown event so we can trap the selection in the editor!
-                    tmp.on('mousedown', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    });
-                    tmp.on('click', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    });
-                }
-                if (this.browser.ie) {
-                    /*
-                    //Add a couple of new events for IE
-                    tmp.DOM_EVENTS.focusin = true;
-                    tmp.DOM_EVENTS.focusout = true;
-                    
-                    //Stop them so we don't loose focus in the Editor
-                    tmp.on('focusin', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    }, oButton, this);
-                    
-                    tmp.on('focusout', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    }, oButton, this);
-                    tmp.on('click', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    }, oButton, this);
-                    */
-                }
-                if (this.browser.webkit) {
-                    //This will keep the document from gaining focus and the editor from loosing it..
-                    //Forcefully remove the focus calls in button!
-                    tmp.hasFocus = function() {
-                        return true;
-                    };
-                }
-                this._buttonList[this._buttonList.length] = tmp;
-                if ((oButton.type == 'menu') || (oButton.type == 'split') || (oButton.type == 'select')) {
-                    if (Lang.isArray(oButton.menu)) {
-                        YAHOO.log('Button type is (' + oButton.type + '), doing extra renderer work.', 'info', 'Toolbar');
-                        var menu = tmp.getMenu();
-                        if (menu && menu.renderEvent) {
-                            menu.renderEvent.subscribe(this._addMenuClasses, tmp);
-                            if (oButton.renderer) {
-                                menu.renderEvent.subscribe(oButton.renderer, tmp);
-                            }
-                        }
-                    }
-                }
-            }
-            return oButton;
-        },
-        /**
-        * @method addSeparator
-        * @description Add a new button separator to the toolbar.
-        * @param {HTMLElement} cont Optional HTML element to insert this button into.
-        * @param {HTMLElement} after Optional HTML element to insert this button after in the DOM.
-        */
-        addSeparator: function(cont, after) {
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addSeparator', arguments];
-                return false;
-            }
-            var sepCont = ((cont) ? cont : this.get('cont'));
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addSeparator', arguments];
-                return false;
-            }
-            if (this._sepCount === null) {
-                this._sepCount = 0;
-            }
-            if (!this._sep) {
-                YAHOO.log('Separator does not yet exist, creating', 'info', 'Toolbar');
-                this._sep = document.createElement('SPAN');
-                Dom.addClass(this._sep, this.CLASS_SEPARATOR);
-                this._sep.innerHTML = '|';
-            }
-            YAHOO.log('Separator does exist, cloning', 'info', 'Toolbar');
-            var _sep = this._sep.cloneNode(true);
-            this._sepCount++;
-            Dom.addClass(_sep, this.CLASS_SEPARATOR + '-' + this._sepCount);
-            if (after) {
-                var nextSib = null;
-                if (after.get) {
-                    nextSib = after.get('element').nextSibling;
-                } else if (after.nextSibling) {
-                    nextSib = after.nextSibling;
-                } else {
-                    nextSib = after;
-                }
-                if (nextSib) {
-                    if (nextSib == after) {
-                        nextSib.parentNode.appendChild(_sep);
-                    } else {
-                        nextSib.parentNode.insertBefore(_sep, nextSib);
-                    }
-                }
-            } else {
-                sepCont.appendChild(_sep);
-            }
-            return _sep;
-        },
-        /**
-        * @method _createColorPicker
-        * @private
-        * @description Creates the core DOM reference to the color picker menu item.
-        * @param {String} id the id of the toolbar to prefix this DOM container with.
-        */
-        _createColorPicker: function(id) {
-            if (Dom.get(id + '_colors')) {
-               Dom.get(id + '_colors').parentNode.removeChild(Dom.get(id + '_colors'));
-            }
-            var picker = document.createElement('div');
-            picker.className = 'yui-toolbar-colors';
-            picker.id = id + '_colors';
-            picker.style.display = 'none';
-            Event.on(window, 'load', function() {
-                document.body.appendChild(picker);
-            }, this, true);
-
-            this._colorPicker = picker;
-
-            var html = '';
-            for (var i in this._colorData) {
-                if (Lang.hasOwnProperty(this._colorData, i)) {
-                    html += '<a style="background-color: ' + i + '" href="#">' + i.replace('#', '') + '</a>';
-                }
-            }
-            html += '<span><em>X</em><strong></strong></span>';
-            window.setTimeout(function() {
-                picker.innerHTML = html;
-            }, 0);
-
-            Event.on(picker, 'mouseover', function(ev) {
-                var picker = this._colorPicker;
-                var em = picker.getElementsByTagName('em')[0];
-                var strong = picker.getElementsByTagName('strong')[0];
-                var tar = Event.getTarget(ev);
-                if (tar.tagName.toLowerCase() == 'a') {
-                    em.style.backgroundColor = tar.style.backgroundColor;
-                    strong.innerHTML = this._colorData['#' + tar.innerHTML] + '<br>' + tar.innerHTML;
-                }
-            }, this, true);
-            Event.on(picker, 'focus', function(ev) {
-                Event.stopEvent(ev);
-            });
-            Event.on(picker, 'click', function(ev) {
-                Event.stopEvent(ev);
-            });
-            Event.on(picker, 'mousedown', function(ev) {
-                Event.stopEvent(ev);
-                var tar = Event.getTarget(ev);
-                if (tar.tagName.toLowerCase() == 'a') {
-                    var retVal = this.fireEvent('colorPickerClicked', { type: 'colorPickerClicked', target: this, button: this._colorPicker._button, color: tar.innerHTML, colorName: this._colorData['#' + tar.innerHTML] } );
-                    if (retVal !== false) {
-                        var info = {
-                            color: tar.innerHTML,
-                            colorName: this._colorData['#' + tar.innerHTML],
-                            value: this._colorPicker._button 
-                        };
-                    
-                        this.fireEvent('buttonClick', { type: 'buttonClick', target: this.get('element'), button: info });
-                    }
-                    this.getButtonByValue(this._colorPicker._button).getMenu().hide();
-                }
-            }, this, true);
-        },
-        /**
-        * @method _resetColorPicker
-        * @private
-        * @description Clears the currently selected color or mouseover color in the color picker.
-        */
-        _resetColorPicker: function() {
-            var em = this._colorPicker.getElementsByTagName('em')[0];
-            var strong = this._colorPicker.getElementsByTagName('strong')[0];
-            em.style.backgroundColor = 'transparent';
-            strong.innerHTML = '';
-        },
-        /**
-        * @method _makeColorButton
-        * @private
-        * @description Called to turn a "color" button into a menu button with an Overlay for the menu.
-        * @param {Object} _oButton <a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a> reference
-        */
-        _makeColorButton: function(_oButton) {
-            if (!this._colorPicker) {   
-                this._createColorPicker(this.get('id'));
-            }
-            _oButton.type = 'color';
-            _oButton.menu = new YAHOO.widget.Overlay(this.get('id') + '_' + _oButton.value + '_menu', { visible: false, position: 'absolute', iframe: true });
-            _oButton.menu.setBody('');
-            _oButton.menu.render(this.get('cont'));
-            Dom.addClass(_oButton.menu.element, 'yui-button-menu');
-            Dom.addClass(_oButton.menu.element, 'yui-color-button-menu');
-            _oButton.menu.beforeShowEvent.subscribe(function() {
-                _oButton.menu.cfg.setProperty('zindex', 5); //Re Adjust the overlays zIndex.. not sure why.
-                _oButton.menu.cfg.setProperty('context', [this.getButtonById(_oButton.id).get('element'), 'tl', 'bl']); //Re Adjust the overlay.. not sure why.
-                //Move the DOM reference of the color picker to the Overlay that we are about to show.
-                this._resetColorPicker();
-                var _p = this._colorPicker;
-                if (_p.parentNode) {
-                    _p.parentNode.removeChild(_p);
-                }
-                _oButton.menu.setBody('');
-                _oButton.menu.appendToBody(_p);
-                this._colorPicker.style.display = 'block';
-            }, this, true);
-            return _oButton;
-        },
-        /**
-        * @private
-        * @method _makeSpinButton
-        * @description Create a button similar to an OS Spin button.. It has an up/down arrow combo to scroll through a range of int values.
-        * @param {Object} _button <a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a> reference
-        * @param {Object} oButton Object literal containing the buttons initial config
-        */
-        _makeSpinButton: function(_button, oButton) {
-            _button.addClass(this.CLASS_PREFIX + '-spinbutton');
-            var self = this,
-                _par = _button._button.parentNode.parentNode, //parentNode of Button Element for appending child
-                range = oButton.range,
-                _b1 = document.createElement('a'),
-                _b2 = document.createElement('a');
-                _b1.href = '#';
-                _b2.href = '#';
-                _b1.tabIndex = '-1';
-                _b2.tabIndex = '-1';
-            
-            //Setup the up and down arrows
-            _b1.className = 'up';
-            _b1.title = this.STR_SPIN_UP;
-            _b1.innerHTML = this.STR_SPIN_UP;
-            _b2.className = 'down';
-            _b2.title = this.STR_SPIN_DOWN;
-            _b2.innerHTML = this.STR_SPIN_DOWN;
-
-            //Append them to the container
-            _par.appendChild(_b1);
-            _par.appendChild(_b2);
-            
-            var label = YAHOO.lang.substitute(this.STR_SPIN_LABEL, { VALUE: _button.get('label') });
-            _button.set('title', label);
-
-            var cleanVal = function(value) {
-                value = ((value < range[0]) ? range[0] : value);
-                value = ((value > range[1]) ? range[1] : value);
-                return value;
-            };
-
-            var br = this.browser;
-            var tbar = false;
-            var strLabel = this.STR_SPIN_LABEL;
-            if (this._titlebar && this._titlebar.firstChild) {
-                tbar = this._titlebar.firstChild;
-            }
-            
-            var _intUp = function(ev) {
-                YAHOO.util.Event.stopEvent(ev);
-                if (!_button.get('disabled') && (ev.keyCode != 9)) {
-                    var value = parseInt(_button.get('label'), 10);
-                    value++;
-                    value = cleanVal(value);
-                    _button.set('label', ''+value);
-                    var label = YAHOO.lang.substitute(strLabel, { VALUE: _button.get('label') });
-                    _button.set('title', label);
-                    if (!br.webkit && tbar) {
-                        //tbar.focus(); //We do this for accessibility, on the re-focus of the element, a screen reader will re-read the title that was just changed
-                        //_button.focus();
-                    }
-                    self._buttonClick(ev, oButton);
-                }
-            };
-
-            var _intDown = function(ev) {
-                YAHOO.util.Event.stopEvent(ev);
-                if (!_button.get('disabled') && (ev.keyCode != 9)) {
-                    var value = parseInt(_button.get('label'), 10);
-                    value--;
-                    value = cleanVal(value);
-
-                    _button.set('label', ''+value);
-                    var label = YAHOO.lang.substitute(strLabel, { VALUE: _button.get('label') });
-                    _button.set('title', label);
-                    if (!br.webkit && tbar) {
-                        //tbar.focus(); //We do this for accessibility, on the re-focus of the element, a screen reader will re-read the title that was just changed
-                        //_button.focus();
-                    }
-                    self._buttonClick(ev, oButton);
-                }
-            };
-
-            var _intKeyUp = function(ev) {
-                if (ev.keyCode == 38) {
-                    _intUp(ev);
-                } else if (ev.keyCode == 40) {
-                    _intDown(ev);
-                } else if (ev.keyCode == 107 && ev.shiftKey) {  //Plus Key
-                    _intUp(ev);
-                } else if (ev.keyCode == 109 && ev.shiftKey) {  //Minus Key
-                    _intDown(ev);
-                }
-            };
-
-            //Handle arrow keys..
-            _button.on('keydown', _intKeyUp, this, true);
-
-            //Listen for the click on the up button and act on it
-            //Listen for the click on the down button and act on it
-            Event.on(_b1, 'mousedown',function(ev) {
-                Event.stopEvent(ev);
-            }, this, true);
-            Event.on(_b2, 'mousedown', function(ev) {
-                Event.stopEvent(ev);
-            }, this, true);
-            Event.on(_b1, 'click', _intUp, this, true);
-            Event.on(_b2, 'click', _intDown, this, true);
-        },
-        /**
-        * @protected
-        * @method _buttonClick
-        * @description Click handler for all buttons in the toolbar.
-        * @param {String} ev The event that was passed in.
-        * @param {Object} info Object literal of information about the button that was clicked.
-        */
-        _buttonClick: function(ev, info) {
-            var doEvent = true;
-            
-            if (ev && ev.type == 'keypress') {
-                if (ev.keyCode == 9) {
-                    doEvent = false;
-                } else if ((ev.keyCode === 13) || (ev.keyCode === 0) || (ev.keyCode === 32)) {
-                } else {
-                    doEvent = false;
-                }
-            }
-
-            if (doEvent) {
-                var fireNextEvent = true,
-                    retValue = false;
-                    
-                info.isSelected = this.isSelected(info.id);
-
-                if (info.value) {
-                    YAHOO.log('fireEvent::' + info.value + 'Click', 'info', 'Toolbar');
-                    retValue = this.fireEvent(info.value + 'Click', { type: info.value + 'Click', target: this.get('element'), button: info });
-                    if (retValue === false) {
-                        fireNextEvent = false;
-                    }
-                }
-                
-                if (info.menucmd && fireNextEvent) {
-                    YAHOO.log('fireEvent::' + info.menucmd + 'Click', 'info', 'Toolbar');
-                    retValue = this.fireEvent(info.menucmd + 'Click', { type: info.menucmd + 'Click', target: this.get('element'), button: info });
-                    if (retValue === false) {
-                        fireNextEvent = false;
-                    }
-                }
-                if (fireNextEvent) {
-                    YAHOO.log('fireEvent::buttonClick', 'info', 'Toolbar');
-                    this.fireEvent('buttonClick', { type: 'buttonClick', target: this.get('element'), button: info });
-                }
-
-                if (info.type == 'select') {
-                    var button = this.getButtonById(info.id);
-                    if (button.buttonType == 'rich') {
-                        var txt = info.value;
-                        for (var i = 0; i < info.menu.length; i++) {
-                            if (info.menu[i].value == info.value) {
-                                txt = info.menu[i].text;
-                                break;
-                            }
-                        }
-                        button.set('label', '<span class="yui-toolbar-' + info.menucmd + '-' + (info.value).replace(/ /g, '-').toLowerCase() + '">' + txt + '</span>');
-                        var _items = button.getMenu().getItems();
-                        for (var m = 0; m < _items.length; m++) {
-                            if (_items[m].value.toLowerCase() == info.value.toLowerCase()) {
-                                _items[m].cfg.setProperty('checked', true);
-                            } else {
-                                _items[m].cfg.setProperty('checked', false);
-                            }
-                        }
-                    }
-                }
-                if (ev) {
-                    Event.stopEvent(ev);
-                }
-            }
-        },
-        /**
-        * @private
-        * @property _keyNav
-        * @description Flag to determine if the arrow nav listeners have been attached
-        * @type Boolean
-        */
-        _keyNav: null,
-        /**
-        * @private
-        * @property _navCounter
-        * @description Internal counter for walking the buttons in the toolbar with the arrow keys
-        * @type Number
-        */
-        _navCounter: null,
-        /**
-        * @private
-        * @method _navigateButtons
-        * @description Handles the navigation/focus of toolbar buttons with the Arrow Keys
-        * @param {Event} ev The Key Event
-        */
-        _navigateButtons: function(ev) {
-            switch (ev.keyCode) {
-                case 37:
-                case 39:
-                    if (ev.keyCode == 37) {
-                        this._navCounter--;
-                    } else {
-                        this._navCounter++;
-                    }
-                    if (this._navCounter > (this._buttonList.length - 1)) {
-                        this._navCounter = 0;
-                    }
-                    if (this._navCounter < 0) {
-                        this._navCounter = (this._buttonList.length - 1);
-                    }
-                    if (this._buttonList[this._navCounter]) {
-                        var el = this._buttonList[this._navCounter].get('element');
-                        if (this.browser.ie) {
-                            el = this._buttonList[this._navCounter].get('element').getElementsByTagName('a')[0];
-                        }
-                        if (this._buttonList[this._navCounter].get('disabled')) {
-                            this._navigateButtons(ev);
-                        } else {
-                            el.focus();
-                        }
-                    }
-                    break;
-            }
-        },
-        /**
-        * @private
-        * @method _handleFocus
-        * @description Sets up the listeners for the arrow key navigation
-        */
-        _handleFocus: function() {
-            if (!this._keyNav) {
-                var ev = 'keypress';
-                if (this.browser.ie) {
-                    ev = 'keydown';
-                }
-                Event.on(this.get('element'), ev, this._navigateButtons, this, true);
-                this._keyNav = true;
-                this._navCounter = -1;
-            }
-        },
-        /**
-        * @method getButtonById
-        * @description Gets a button instance from the toolbar by is Dom id.
-        * @param {String} id The Dom id to query for.
-        * @return {<a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a>}
-        */
-        getButtonById: function(id) {
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                if (this._buttonList[i] && this._buttonList[i].get('id') == id) {
-                    return this._buttonList[i];
-                }
-            }
-            return false;
-        },
-        /**
-        * @method getButtonByValue
-        * @description Gets a button instance or a menuitem instance from the toolbar by it's value.
-        * @param {String} value The button value to query for.
-        * @return {<a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a> or <a href="YAHOO.widget.MenuItem.html">YAHOO.widget.MenuItem</a>}
-        */
-        getButtonByValue: function(value) {
-            var _buttons = this.get('buttons');
-            var len = _buttons.length;
-            for (var i = 0; i < len; i++) {
-                if (_buttons[i].group !== undefined) {
-                    for (var m = 0; m < _buttons[i].buttons.length; m++) {
-                        if ((_buttons[i].buttons[m].value == value) || (_buttons[i].buttons[m].menucmd == value)) {
-                            return this.getButtonById(_buttons[i].buttons[m].id);
-                        }
-                        if (_buttons[i].buttons[m].menu) { //Menu Button, loop through the values
-                            for (var s = 0; s < _buttons[i].buttons[m].menu.length; s++) {
-                                if (_buttons[i].buttons[m].menu[s].value == value) {
-                                    return this.getButtonById(_buttons[i].buttons[m].id);
-                                }
-                            }
-                        }
-                    }
-                } else {
-                    if ((_buttons[i].value == value) || (_buttons[i].menucmd == value)) {
-                        return this.getButtonById(_buttons[i].id);
-                    }
-                    if (_buttons[i].menu) { //Menu Button, loop through the values
-                        for (var j = 0; j < _buttons[i].menu.length; j++) {
-                            if (_buttons[i].menu[j].value == value) {
-                                return this.getButtonById(_buttons[i].id);
-                            }
-                        }
-                    }
-                }
-            }
-            return false;
-        },
-        /**
-        * @method getButtonByIndex
-        * @description Gets a button instance from the toolbar by is index in _buttonList.
-        * @param {Number} index The index of the button in _buttonList.
-        * @return {<a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a>}
-        */
-        getButtonByIndex: function(index) {
-            if (this._buttonList[index]) {
-                return this._buttonList[index];
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method getButtons
-        * @description Returns an array of buttons in the current toolbar
-        * @return {Array}
-        */
-        getButtons: function() {
-            return this._buttonList;
-        },
-        /**
-        * @method disableButton
-        * @description Disables a button in the toolbar.
-        * @param {String/Number} id Disable a button by it's id, index or value.
-        * @return {Boolean}
-        */
-        disableButton: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                button.set('disabled', true);
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method enableButton
-        * @description Enables a button in the toolbar.
-        * @param {String/Number} id Enable a button by it's id, index or value.
-        * @return {Boolean}
-        */
-        enableButton: function(id) {
-            if (this.get('disabled')) {
-                return false;
-            }
-            var button = getButton.call(this, id);
-            if (button) {
-                if (button.get('disabled')) {
-                    button.set('disabled', false);
-                }
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method isSelected
-        * @description Tells if a button is selected or not.
-        * @param {String/Number} id A button by it's id, index or value.
-        * @return {Boolean}
-        */
-        isSelected: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                return button._selected;
-            }
-            return false;
-        },
-        /**
-        * @method selectButton
-        * @description Selects a button in the toolbar.
-        * @param {String/Number} id Select a button by it's id, index or value.
-        * @param {String} value If this is a Menu Button, check this item in the menu
-        * @return {Boolean}
-        */
-        selectButton: function(id, value) {
-            var button = getButton.call(this, id);
-            if (button) {
-                button.addClass('yui-button-selected');
-                button.addClass('yui-button-' + button.get('value') + '-selected');
-                button._selected = true;
-                if (value) {
-                    if (button.buttonType == 'rich') {
-                        var _items = button.getMenu().getItems();
-                        for (var m = 0; m < _items.length; m++) {
-                            if (_items[m].value == value) {
-                                _items[m].cfg.setProperty('checked', true);
-                                button.set('label', '<span class="yui-toolbar-' + button.get('value') + '-' + (value).replace(/ /g, '-').toLowerCase() + '">' + _items[m]._oText.nodeValue + '</span>');
-                            } else {
-                                _items[m].cfg.setProperty('checked', false);
-                            }
-                        }
-                    }
-                }
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method deselectButton
-        * @description Deselects a button in the toolbar.
-        * @param {String/Number} id Deselect a button by it's id, index or value.
-        * @return {Boolean}
-        */
-        deselectButton: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                button.removeClass('yui-button-selected');
-                button.removeClass('yui-button-' + button.get('value') + '-selected');
-                button.removeClass('yui-button-hover');
-                button._selected = false;
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method deselectAllButtons
-        * @description Deselects all buttons in the toolbar.
-        * @return {Boolean}
-        */
-        deselectAllButtons: function() {
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                this.deselectButton(this._buttonList[i]);
-            }
-        },
-        /**
-        * @method disableAllButtons
-        * @description Disables all buttons in the toolbar.
-        * @return {Boolean}
-        */
-        disableAllButtons: function() {
-            if (this.get('disabled')) {
-                return false;
-            }
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                this.disableButton(this._buttonList[i]);
-            }
-        },
-        /**
-        * @method enableAllButtons
-        * @description Enables all buttons in the toolbar.
-        * @return {Boolean}
-        */
-        enableAllButtons: function() {
-            if (this.get('disabled')) {
-                return false;
-            }
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                this.enableButton(this._buttonList[i]);
-            }
-        },
-        /**
-        * @method resetAllButtons
-        * @description Resets all buttons to their initial state.
-        * @param {Object} _ex Except these buttons
-        * @return {Boolean}
-        */
-        resetAllButtons: function(_ex) {
-            if (!Lang.isObject(_ex)) {
-                _ex = {};
-            }
-            if (this.get('disabled')) {
-                return false;
-            }
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                var _button = this._buttonList[i];
-                if (_button) {
-                    var disabled = _button._configs.disabled._initialConfig.value;
-                    if (_ex[_button.get('id')]) {
-                        this.enableButton(_button);
-                        this.selectButton(_button);
-                    } else {
-                        if (disabled) {
-                            this.disableButton(_button);
-                        } else {
-                            this.enableButton(_button);
-                        }
-                        this.deselectButton(_button);
-                    }
-                }
-            }
-        },
-        /**
-        * @method destroyButton
-        * @description Destroy a button in the toolbar.
-        * @param {String/Number} id Destroy a button by it's id or index.
-        * @return {Boolean}
-        */
-        destroyButton: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                var thisID = button.get('id');
-                button.destroy();
-
-                var len = this._buttonList.length;
-                for (var i = 0; i < len; i++) {
-                    if (this._buttonList[i] && this._buttonList[i].get('id') == thisID) {
-                        this._buttonList[i] = null;
-                    }
-                }
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method destroy
-        * @description Destroys the toolbar, all of it's elements and objects.
-        * @return {Boolean}
-        */
-        destroy: function() {
-            this.get('element').innerHTML = '';
-            this.get('element').className = '';
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                }
-            }
-            return true;
-        },
-        /**
-        * @method collapse
-        * @description Programatically collapse the toolbar.
-        * @param {Boolean} collapse True to collapse, false to expand.
-        */
-        collapse: function(collapse) {
-            var el = Dom.getElementsByClassName('collapse', 'span', this._titlebar);
-            if (collapse === false) {
-                Dom.removeClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed');
-                if (el[0]) {
-                    Dom.removeClass(el[0], 'collapsed');
-                }
-                this.fireEvent('toolbarExpanded', { type: 'toolbarExpanded', target: this });
-            } else {
-                if (el[0]) {
-                    Dom.addClass(el[0], 'collapsed');
-                }
-                Dom.addClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed');
-                this.fireEvent('toolbarCollapsed', { type: 'toolbarCollapsed', target: this });
-            }
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the toolbar.
-        * @return {String}
-        */
-        toString: function() {
-            return 'Toolbar (#' + this.get('element').id + ') with ' + this._buttonList.length + ' buttons.';
-        }
-    });
-/**
-* @event buttonClick
-* @param {Object} o The object passed to this handler is the button config used to create the button.
-* @description Fires when any botton receives a click event. Passes back a single object representing the buttons config object. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event valueClick
-* @param {Object} o The object passed to this handler is the button config used to create the button.
-* @description This is a special dynamic event that is created and dispatched based on the value property
-* of the button config. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* Example:
-* <code><pre>
-* buttons : [
-*   { type: 'button', value: 'test', value: 'testButton' }
-* ]</pre>
-* </code>
-* With the valueClick event you could subscribe to this buttons click event with this:
-* tbar.in('testButtonClick', function() { alert('test button clicked'); })
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event toolbarExpanded
-* @description Fires when the toolbar is expanded via the collapse button. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event toolbarCollapsed
-* @description Fires when the toolbar is collapsed via the collapse button. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-})();
-/**
- * @description <p>The Rich Text Editor is a UI control that replaces a standard HTML textarea; it allows for the rich formatting of text content, including common structural treatments like lists, formatting treatments like bold and italic text, and drag-and-drop inclusion and sizing of images. The Rich Text Editor's toolbar is extensible via a plugin architecture so that advanced implementations can achieve a high degree of customization.</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event, toolbar
- * @optional animation, container_core, resize, dragdrop
- * @beta
- */
-
-(function() {
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang,
-    Toolbar = YAHOO.widget.Toolbar;
-
-    /**
-     * The Rich Text Editor is a UI control that replaces a standard HTML textarea; it allows for the rich formatting of text content, including common structural treatments like lists, formatting treatments like bold and italic text, and drag-and-drop inclusion and sizing of images. The Rich Text Editor's toolbar is extensible via a plugin architecture so that advanced implementations can achieve a high degree of customization.
-     * @constructor
-     * @class SimpleEditor
-     * @extends YAHOO.util.Element
-     * @param {String/HTMLElement} el The textarea element to turn into an editor.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    
-    YAHOO.widget.SimpleEditor = function(el, attrs) {
-        YAHOO.log('SimpleEditor Initalizing', 'info', 'SimpleEditor');
-        
-        var o = {};
-        if (Lang.isObject(el) && (!el.tagName) && !attrs) {
-            Lang.augmentObject(o, el); //Break the config reference
-            el = document.createElement('textarea');
-            this.DOMReady = true;
-            if (o.container) {
-                var c = Dom.get(o.container);
-                c.appendChild(el);
-            } else {
-                document.body.appendChild(el);
-            }
-        } else {
-            if (attrs) {
-                Lang.augmentObject(o, attrs); //Break the config reference
-            }
-        }
-
-        var oConfig = {
-            element: null,
-            attributes: o
-        }, id = null;
-
-        if (Lang.isString(el)) {
-            id = el;
-        } else {
-            if (oConfig.attributes.id) {
-                id = oConfig.attributes.id;
-            } else {
-                this.DOMReady = true;
-                id = Dom.generateId(el);
-            }
-        }
-        oConfig.element = el;
-
-        var element_cont = document.createElement('DIV');
-        oConfig.attributes.element_cont = new YAHOO.util.Element(element_cont, {
-            id: id + '_container'
-        });
-        var div = document.createElement('div');
-        Dom.addClass(div, 'first-child');
-        oConfig.attributes.element_cont.appendChild(div);
-        
-        if (!oConfig.attributes.toolbar_cont) {
-            oConfig.attributes.toolbar_cont = document.createElement('DIV');
-            oConfig.attributes.toolbar_cont.id = id + '_toolbar';
-            div.appendChild(oConfig.attributes.toolbar_cont);
-        }
-        var editorWrapper = document.createElement('DIV');
-        div.appendChild(editorWrapper);
-        oConfig.attributes.editor_wrapper = editorWrapper;
-
-        YAHOO.widget.SimpleEditor.superclass.constructor.call(this, oConfig.element, oConfig.attributes);
-    };
-
-
-    YAHOO.extend(YAHOO.widget.SimpleEditor, YAHOO.util.Element, {
-        /**
-        * @private
-        * @property _resizeConfig
-        * @description The default config for the Resize Utility
-        */
-        _resizeConfig: {
-            handles: ['br'],
-            autoRatio: true,
-            status: true,
-            proxy: true,
-            useShim: true,
-            setSize: false
-        },
-        /**
-        * @private
-        * @method _setupResize
-        * @description Creates the Resize instance and binds its events.
-        */
-        _setupResize: function() {
-            if (!YAHOO.util.DD || !YAHOO.util.Resize) { return false; }
-            if (this.get('resize')) {
-                var config = {};
-                Lang.augmentObject(config, this._resizeConfig); //Break the config reference
-                this.resize = new YAHOO.util.Resize(this.get('element_cont').get('element'), config);
-                this.resize.on('resize', function(args) {
-                    var anim = this.get('animate');
-                    this.set('animate', false);
-                    this.set('width', args.width + 'px');
-                    var h = args.height,
-                        th = (this.toolbar.get('element').clientHeight + 2),
-                        dh = 0;
-                    if (this.dompath) {
-                        dh = (this.dompath.clientHeight + 1); //It has a 1px top border..
-                    }
-                    var newH = (h - th - dh);
-                    this.set('height', newH + 'px');
-                    this.get('element_cont').setStyle('height', '');
-                    this.set('animate', anim);
-                }, this, true);
-            }
-        },
-        /**
-        * @property resize
-        * @description A reference to the Resize object
-        * @type YAHOO.util.Resize
-        */
-        resize: null,
-        _setupDD: function() {
-            if (!YAHOO.util.DD) { return false; }
-            if (this.get('drag')) {
-                YAHOO.log('Attaching DD instance to Editor', 'info', 'SimpleEditor');
-                var d = this.get('drag'),
-                    dd = YAHOO.util.DD;
-                if (d === 'proxy') {
-                    dd = YAHOO.util.DDProxy;
-                }
-
-                this.dd = new dd(this.get('element_cont').get('element'));
-                this.toolbar.addClass('draggable'); 
-                this.dd.setHandleElId(this.toolbar._titlebar); 
-            }
-        },
-        /**
-        * @property dd
-        * @description A reference to the DragDrop object.
-        * @type YAHOO.util.DD/YAHOO.util.DDProxy
-        */
-        dd: null,
-        /**
-        * @private
-        * @property _lastCommand
-        * @description A cache of the last execCommand (used for Undo/Redo so they don't mark an undo level)
-        * @type String
-        */
-        _lastCommand: null,
-        _undoNodeChange: function() {},
-        _storeUndo: function() {},
-        /**
-        * @private
-        * @method _checkKey
-        * @description Checks a keyMap entry against a key event
-        * @param {Object} k The _keyMap object
-        * @param {Event} e The Mouse Event
-        * @return {Boolean}
-        */
-        _checkKey: function(k, e) {
-            var ret = false;
-            if ((e.keyCode === k.key)) {
-                if (k.mods && (k.mods.length > 0)) {
-                    var val = 0;
-                    for (var i = 0; i < k.mods.length; i++) {
-                        if (this.browser.mac) {
-                            if (k.mods[i] == 'ctrl') {
-                                k.mods[i] = 'meta';
-                            }
-                        }
-                        if (e[k.mods[i] + 'Key'] === true) {
-                            val++;
-                        }
-                    }
-                    if (val === k.mods.length) {
-                        ret = true;
-                    }
-                } else {
-                    ret = true;
-                }
-            }
-            //YAHOO.log('Shortcut Key Check: (' + k.key + ') return: ' + ret, 'info', 'SimpleEditor');
-            return ret;
-        },
-        /**
-        * @private
-        * @property _keyMap
-        * @description Named key maps for various actions in the Editor. Example: <code>CLOSE_WINDOW: { key: 87, mods: ['shift', 'ctrl'] }</code>. 
-        * This entry shows that when key 87 (W) is found with the modifiers of shift and control, the window will close. You can customize this object to tweak keyboard shortcuts.
-        * @type {Object/Mixed}
-        */
-        _keyMap: {
-            SELECT_ALL: {
-                key: 65, //A key
-                mods: ['ctrl']
-            },
-            CLOSE_WINDOW: {
-                key: 87, //W key
-                mods: ['shift', 'ctrl']
-            },
-            FOCUS_TOOLBAR: {
-                key: 27,
-                mods: ['shift']
-            },
-            FOCUS_AFTER: {
-                key: 27
-            },
-            CREATE_LINK: {
-                key: 76,
-                mods: ['shift', 'ctrl']
-            },
-            BOLD: {
-                key: 66,
-                mods: ['shift', 'ctrl']
-            },
-            ITALIC: {
-                key: 73,
-                mods: ['shift', 'ctrl']
-            },
-            UNDERLINE: {
-                key: 85,
-                mods: ['shift', 'ctrl']
-            },
-            UNDO: {
-                key: 90,
-                mods: ['ctrl']
-            },
-            REDO: {
-                key: 90,
-                mods: ['shift', 'ctrl']
-            },
-            JUSTIFY_LEFT: {
-                key: 219,
-                mods: ['shift', 'ctrl']
-            },
-            JUSTIFY_CENTER: {
-                key: 220,
-                mods: ['shift', 'ctrl']
-            },
-            JUSTIFY_RIGHT: {
-                key: 221,
-                mods: ['shift', 'ctrl']
-            }
-        },
-        /**
-        * @private
-        * @method _cleanClassName
-        * @description Makes a useable classname from dynamic data, by dropping it to lowercase and replacing spaces with -'s.
-        * @param {String} str The classname to clean up
-        * @return {String}
-        */
-        _cleanClassName: function(str) {
-            return str.replace(/ /g, '-').toLowerCase();
-        },
-        /**
-        * @property _textarea
-        * @description Flag to determine if we are using a textarea or an HTML Node.
-        * @type Boolean
-        */
-        _textarea: null,
-        /**
-        * @property _docType
-        * @description The DOCTYPE to use in the editable container.
-        * @type String
-        */
-        _docType: '<!DOCTYPE HTML PUBLIC "-/'+'/W3C/'+'/DTD HTML 4.01/'+'/EN" "http:/'+'/www.w3.org/TR/html4/strict.dtd">',
-        /**
-        * @property editorDirty
-        * @description This flag will be set when certain things in the Editor happen. It is to be used by the developer to check to see if content has changed.
-        * @type Boolean
-        */
-        editorDirty: null,
-        /**
-        * @property _defaultCSS
-        * @description The default CSS used in the config for 'css'. This way you can add to the config like this: { css: YAHOO.widget.SimpleEditor.prototype._defaultCSS + 'ADD MYY CSS HERE' }
-        * @type String
-        */
-        _defaultCSS: 'html { height: 95%; } body { padding: 7px; background-color: #fff; font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small; } a, a:visited, a:hover { color: blue !important; text-decoration: underline !important; cursor: text !important; } .warning-localfile { border-bottom: 1px dashed red !important; } .yui-busy { cursor: wait !important; } img.selected { border: 2px dotted #808080; } img { cursor: pointer !important; border: none; } body.ptags.webkit div { margin: 11px 0; }',
-        /**
-        * @property _defaultToolbar
-        * @private
-        * @description Default toolbar config.
-        * @type Object
-        */
-        _defaultToolbar: null,
-        /**
-        * @property _lastButton
-        * @private
-        * @description The last button pressed, so we don't disable it.
-        * @type Object
-        */
-        _lastButton: null,
-        /**
-        * @property _baseHREF
-        * @private
-        * @description The base location of the editable page (this page) so that relative paths for image work.
-        * @type String
-        */
-        _baseHREF: function() {
-            var href = document.location.href;
-            if (href.indexOf('?') !== -1) { //Remove the query string
-                href = href.substring(0, href.indexOf('?'));
-            }
-            href = href.substring(0, href.lastIndexOf('/')) + '/';
-            return href;
-        }(),
-        /**
-        * @property _lastImage
-        * @private
-        * @description Safari reference for the last image selected (for styling as selected).
-        * @type HTMLElement
-        */
-        _lastImage: null,
-        /**
-        * @property _blankImageLoaded
-        * @private
-        * @description Don't load the blank image more than once..
-        * @type Boolean
-        */
-        _blankImageLoaded: null,
-        /**
-        * @property _fixNodesTimer
-        * @private
-        * @description Holder for the fixNodes timer
-        * @type Date
-        */
-        _fixNodesTimer: null,
-        /**
-        * @property _nodeChangeTimer
-        * @private
-        * @description Holds a reference to the nodeChange setTimeout call
-        * @type Number
-        */
-        _nodeChangeTimer: null,
-        /**
-        * @property _lastNodeChangeEvent
-        * @private
-        * @description Flag to determine the last event that fired a node change
-        * @type Event
-        */
-        _lastNodeChangeEvent: null,
-        /**
-        * @property _lastNodeChange
-        * @private
-        * @description Flag to determine when the last node change was fired
-        * @type Date
-        */
-        _lastNodeChange: 0,
-        /**
-        * @property _rendered
-        * @private
-        * @description Flag to determine if editor has been rendered or not
-        * @type Boolean
-        */
-        _rendered: null,
-        /**
-        * @property DOMReady
-        * @private
-        * @description Flag to determine if DOM is ready or not
-        * @type Boolean
-        */
-        DOMReady: null,
-        /**
-        * @property _selection
-        * @private
-        * @description Holder for caching iframe selections
-        * @type Object
-        */
-        _selection: null,
-        /**
-        * @property _mask
-        * @private
-        * @description DOM Element holder for the editor Mask when disabled
-        * @type Object
-        */
-        _mask: null,
-        /**
-        * @property _showingHiddenElements
-        * @private
-        * @description Status of the hidden elements button
-        * @type Boolean
-        */
-        _showingHiddenElements: null,
-        /**
-        * @property currentWindow
-        * @description A reference to the currently open EditorWindow
-        * @type Object
-        */
-        currentWindow: null,
-        /**
-        * @property currentEvent
-        * @description A reference to the current editor event
-        * @type Event
-        */
-        currentEvent: null,
-        /**
-        * @property operaEvent
-        * @private
-        * @description setTimeout holder for Opera and Image DoubleClick event..
-        * @type Object
-        */
-        operaEvent: null,
-        /**
-        * @property currentFont
-        * @description A reference to the last font selected from the Toolbar
-        * @type HTMLElement
-        */
-        currentFont: null,
-        /**
-        * @property currentElement
-        * @description A reference to the current working element in the editor
-        * @type Array
-        */
-        currentElement: null,
-        /**
-        * @property dompath
-        * @description A reference to the dompath container for writing the current working dom path to.
-        * @type HTMLElement
-        */
-        dompath: null,
-        /**
-        * @property beforeElement
-        * @description A reference to the H2 placed before the editor for Accessibilty.
-        * @type HTMLElement
-        */
-        beforeElement: null,
-        /**
-        * @property afterElement
-        * @description A reference to the H2 placed after the editor for Accessibilty.
-        * @type HTMLElement
-        */
-        afterElement: null,
-        /**
-        * @property invalidHTML
-        * @description Contains a list of HTML elements that are invalid inside the editor. They will be removed when they are found. If you set the value of a key to "{ keepContents: true }", then the element will be replaced with a yui-non span to be filtered out when cleanHTML is called. The only tag that is ignored here is the span tag as it will force the Editor into a loop and freeze the browser. However.. all of these tags will be removed in the cleanHTML routine.
-        * @type Object
-        */
-        invalidHTML: {
-            form: true,
-            input: true,
-            button: true,
-            select: true,
-            link: true,
-            html: true,
-            body: true,
-            iframe: true,
-            script: true,
-            style: true,
-            textarea: true
-        },
-        /**
-        * @property toolbar
-        * @description Local property containing the <a href="YAHOO.widget.Toolbar.html">YAHOO.widget.Toolbar</a> instance
-        * @type <a href="YAHOO.widget.Toolbar.html">YAHOO.widget.Toolbar</a>
-        */
-        toolbar: null,
-        /**
-        * @private
-        * @property _contentTimer
-        * @description setTimeout holder for documentReady check
-        */
-        _contentTimer: null,
-        /**
-        * @private
-        * @property _contentTimerCounter
-        * @description Counter to check the number of times the body is polled for before giving up
-        * @type Number
-        */
-        _contentTimerCounter: 0,
-        /**
-        * @private
-        * @property _disabled
-        * @description The Toolbar items that should be disabled if there is no selection present in the editor.
-        * @type Array
-        */
-        _disabled: [ 'createlink', 'fontname', 'fontsize', 'forecolor', 'backcolor' ],
-        /**
-        * @private
-        * @property _alwaysDisabled
-        * @description The Toolbar items that should ALWAYS be disabled event if there is a selection present in the editor.
-        * @type Object
-        */
-        _alwaysDisabled: { undo: true, redo: true },
-        /**
-        * @private
-        * @property _alwaysEnabled
-        * @description The Toolbar items that should ALWAYS be enabled event if there isn't a selection present in the editor.
-        * @type Object
-        */
-        _alwaysEnabled: { },
-        /**
-        * @private
-        * @property _semantic
-        * @description The Toolbar commands that we should attempt to make tags out of instead of using styles.
-        * @type Object
-        */
-        _semantic: { 'bold': true, 'italic' : true, 'underline' : true },
-        /**
-        * @private
-        * @property _tag2cmd
-        * @description A tag map of HTML tags to convert to the different types of commands so we can select the proper toolbar button.
-        * @type Object
-        */
-        _tag2cmd: {
-            'b': 'bold',
-            'strong': 'bold',
-            'i': 'italic',
-            'em': 'italic',
-            'u': 'underline',
-            'sup': 'superscript',
-            'sub': 'subscript',
-            'img': 'insertimage',
-            'a' : 'createlink',
-            'ul' : 'insertunorderedlist',
-            'ol' : 'insertorderedlist'
-        },
-
-        /**
-        * @private _createIframe
-        * @description Creates the DOM and YUI Element for the iFrame editor area.
-        * @param {String} id The string ID to prefix the iframe with
-        * @return {Object} iFrame object
-        */
-        _createIframe: function() {
-            var ifrmDom = document.createElement('iframe');
-            ifrmDom.id = this.get('id') + '_editor';
-            var config = {
-                border: '0',
-                frameBorder: '0',
-                marginWidth: '0',
-                marginHeight: '0',
-                leftMargin: '0',
-                topMargin: '0',
-                allowTransparency: 'true',
-                width: '100%'
-            };
-            if (this.get('autoHeight')) {
-                config.scrolling = 'no';
-            }
-            for (var i in config) {
-                if (Lang.hasOwnProperty(config, i)) {
-                    ifrmDom.setAttribute(i, config[i]);
-                }
-            }
-            var isrc = 'javascript:;';
-            if (this.browser.ie) {
-                //isrc = 'about:blank';
-                //TODO - Check this, I have changed it before..
-                isrc = 'javascript:false;';
-            }
-            ifrmDom.setAttribute('src', isrc);
-            var ifrm = new YAHOO.util.Element(ifrmDom);
-            ifrm.setStyle('visibility', 'hidden');
-            return ifrm;
-        },
-        /**
-        * @private _isElement
-        * @description Checks to see if an Element reference is a valid one and has a certain tag type
-        * @param {HTMLElement} el The element to check
-        * @param {String} tag The tag that the element needs to be
-        * @return {Boolean}
-        */
-        _isElement: function(el, tag) {
-            if (el && el.tagName && (el.tagName.toLowerCase() == tag)) {
-                return true;
-            }
-            if (el && el.getAttribute && (el.getAttribute('tag') == tag)) {
-                return true;
-            }
-            return false;
-        },
-        /**
-        * @private _hasParent
-        * @description Checks to see if an Element reference or one of it's parents is a valid one and has a certain tag type
-        * @param {HTMLElement} el The element to check
-        * @param {String} tag The tag that the element needs to be
-        * @return HTMLElement
-        */
-        _hasParent: function(el, tag) {
-            if (!el || !el.parentNode) {
-                return false;
-            }
-            
-            while (el.parentNode) {
-                if (this._isElement(el, tag)) {
-                    return el;
-                }
-                if (el.parentNode) {
-                    el = el.parentNode;
-                } else {
-                    return false;
-                }
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _getDoc
-        * @description Get the Document of the IFRAME
-        * @return {Object}
-        */
-        _getDoc: function() {
-            var value = false;
-            if (this.get) {
-                if (this.get('iframe')) {
-                    if (this.get('iframe').get) {
-                        if (this.get('iframe').get('element')) {
-                            try {
-                                if (this.get('iframe').get('element').contentWindow) {
-                                    if (this.get('iframe').get('element').contentWindow.document) {
-                                        value = this.get('iframe').get('element').contentWindow.document;
-                                        return value;
-                                    }
-                                }
-                            } catch (e) {}
-                        }
-                    }
-                }
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _getWindow
-        * @description Get the Window of the IFRAME
-        * @return {Object}
-        */
-        _getWindow: function() {
-            return this.get('iframe').get('element').contentWindow;
-        },
-        /**
-        * @private
-        * @method _focusWindow
-        * @description Attempt to set the focus of the iframes window.
-        * @param {Boolean} onLoad Safari needs some special care to set the cursor in the iframe
-        */
-        _focusWindow: function(onLoad) {
-            if (this.browser.webkit) {
-                if (onLoad) {
-                    /**
-                    * @knownissue Safari Cursor Position
-                    * @browser Safari 2.x
-                    * @description Can't get Safari to place the cursor at the beginning of the text..
-                    * This workaround at least set's the toolbar into the proper state.
-                    */
-                    this._getSelection().setBaseAndExtent(this._getDoc().body.firstChild, 0, this._getDoc().body.firstChild, 1);
-                    if (this.browser.webkit3) {
-                        this._getSelection().collapseToStart();
-                    } else {
-                        this._getSelection().collapse(false);
-                    }
-                } else {
-                    this._getSelection().setBaseAndExtent(this._getDoc().body, 1, this._getDoc().body, 1);
-                    if (this.browser.webkit3) {
-                        this._getSelection().collapseToStart();
-                    } else {
-                        this._getSelection().collapse(false);
-                    }
-                }
-                this._getWindow().focus();
-            } else {
-                this._getWindow().focus();
-            }
-        },
-        /**
-        * @private
-        * @method _hasSelection
-        * @description Determines if there is a selection in the editor document.
-        * @return {Boolean}
-        */
-        _hasSelection: function() {
-            var sel = this._getSelection();
-            var range = this._getRange();
-            var hasSel = false;
-
-            if (!sel || !range) {
-                return hasSel;
-            }
-
-            //Internet Explorer
-            if (this.browser.ie || this.browser.opera) {
-                if (range.text) {
-                    hasSel = true;
-                }
-                if (range.html) {
-                    hasSel = true;
-                }
-            } else {
-                if (this.browser.webkit) {
-                    if (sel+'' !== '') {
-                        hasSel = true;
-                    }
-                } else {
-                    if (sel && (sel.toString() !== '') && (sel !== undefined)) {
-                        hasSel = true;
-                    }
-                }
-            }
-            return hasSel;
-        },
-        /**
-        * @private
-        * @method _getSelection
-        * @description Handles the different selection objects across the A-Grade list.
-        * @return {Object} Selection Object
-        */
-        _getSelection: function() {
-            var _sel = null;
-            if (this._getDoc() && this._getWindow()) {
-                if (this._getDoc().selection) {
-                    _sel = this._getDoc().selection;
-                } else {
-                    _sel = this._getWindow().getSelection();
-                }
-                //Handle Safari's lack of Selection Object
-                if (this.browser.webkit) {
-                    if (_sel.baseNode) {
-                            this._selection = {};
-                            this._selection.baseNode = _sel.baseNode;
-                            this._selection.baseOffset = _sel.baseOffset;
-                            this._selection.extentNode = _sel.extentNode;
-                            this._selection.extentOffset = _sel.extentOffset;
-                    } else if (this._selection !== null) {
-                        _sel = this._getWindow().getSelection();
-                        _sel.setBaseAndExtent(
-                            this._selection.baseNode,
-                            this._selection.baseOffset,
-                            this._selection.extentNode,
-                            this._selection.extentOffset);
-                        this._selection = null;
-                    }
-                }
-            }
-            return _sel;
-        },
-        /**
-        * @private
-        * @method _selectNode
-        * @description Places the highlight around a given node
-        * @param {HTMLElement} node The node to select
-        */
-        _selectNode: function(node, collapse) {
-            if (!node) {
-                return false;
-            }
-            var sel = this._getSelection(),
-                range = null;
-
-            if (this.browser.ie) {
-                try { //IE freaks out here sometimes..
-                    range = this._getDoc().body.createTextRange();
-                    range.moveToElementText(node);
-                    range.select();
-                } catch (e) {
-                    YAHOO.log('IE failed to select element: ' + node.tagName, 'warn', 'SimpleEditor');
-                }
-            } else if (this.browser.webkit) {
-                if (collapse) {
-				    sel.setBaseAndExtent(node, 1, node, node.innerText.length);
-                } else {
-				    sel.setBaseAndExtent(node, 0, node, node.innerText.length);
-                }
-            } else if (this.browser.opera) {
-                sel = this._getWindow().getSelection();
-                range = this._getDoc().createRange();
-                range.selectNode(node);
-                sel.removeAllRanges();
-                sel.addRange(range);
-            } else {
-                range = this._getDoc().createRange();
-                range.selectNodeContents(node);
-                sel.removeAllRanges();
-                sel.addRange(range);
-            }
-            //TODO - Check Performance
-            this.nodeChange();
-        },
-        /**
-        * @private
-        * @method _getRange
-        * @description Handles the different range objects across the A-Grade list.
-        * @return {Object} Range Object
-        */
-        _getRange: function() {
-            var sel = this._getSelection();
-
-            if (sel === null) {
-                return null;
-            }
-
-            if (this.browser.webkit && !sel.getRangeAt) {
-                var _range = this._getDoc().createRange();
-                try {
-                    _range.setStart(sel.anchorNode, sel.anchorOffset);
-                    _range.setEnd(sel.focusNode, sel.focusOffset);
-                } catch (e) {
-                    _range = this._getWindow().getSelection()+'';
-                }
-                return _range;
-            }
-
-            if (this.browser.ie || this.browser.opera) {
-                try {
-                    return sel.createRange();
-                } catch (e2) {
-                    return null;
-                }
-            }
-
-            if (sel.rangeCount > 0) {
-                return sel.getRangeAt(0);
-            }
-            return null;
-        },
-        /**
-        * @private
-        * @method _setDesignMode
-        * @description Sets the designMode of the iFrame document.
-        * @param {String} state This should be either on or off
-        */
-        _setDesignMode: function(state) {
-            try {
-                var set = true;
-                //SourceForge Bug #1807057
-                if (this.browser.ie && (state.toLowerCase() == 'off')) {
-                    set = false;
-                }
-                if (set) {
-                    this._getDoc().designMode = state;
-                }
-            } catch(e) { }
-        },
-        /**
-        * @private
-        * @method _toggleDesignMode
-        * @description Toggles the designMode of the iFrame document on and off.
-        * @return {String} The state that it was set to.
-        */
-        _toggleDesignMode: function() {
-            var _dMode = this._getDoc().designMode.toLowerCase(),
-                _state = 'on';
-            if (_dMode == 'on') {
-                _state = 'off';
-            }
-            this._setDesignMode(_state);
-            return _state;
-        },
-        /**
-        * @private
-        * @method _initEditorEvents
-        * @description This method sets up the listeners on the Editors document.
-        */
-        _initEditorEvents: function() {
-            //Setup Listeners on iFrame
-            var doc = this._getDoc();
-            Event.on(doc, 'mouseup', this._handleMouseUp, this, true);
-            Event.on(doc, 'mousedown', this._handleMouseDown, this, true);
-            Event.on(doc, 'click', this._handleClick, this, true);
-            Event.on(doc, 'dblclick', this._handleDoubleClick, this, true);
-            Event.on(doc, 'keypress', this._handleKeyPress, this, true);
-            Event.on(doc, 'keyup', this._handleKeyUp, this, true);
-            Event.on(doc, 'keydown', this._handleKeyDown, this, true);
-        },
-        /**
-        * @private
-        * @method _removeEditorEvents
-        * @description This method removes the listeners on the Editors document (for disabling).
-        */
-        _removeEditorEvents: function() {
-            //Remove Listeners on iFrame
-            var doc = this._getDoc();
-            Event.removeListener(doc, 'mouseup', this._handleMouseUp, this, true);
-            Event.removeListener(doc, 'mousedown', this._handleMouseDown, this, true);
-            Event.removeListener(doc, 'click', this._handleClick, this, true);
-            Event.removeListener(doc, 'dblclick', this._handleDoubleClick, this, true);
-            Event.removeListener(doc, 'keypress', this._handleKeyPress, this, true);
-            Event.removeListener(doc, 'keyup', this._handleKeyUp, this, true);
-            Event.removeListener(doc, 'keydown', this._handleKeyDown, this, true);
-        },
-        /**
-        * @private
-        * @method _initEditor
-        * @description This method is fired from _checkLoaded when the document is ready. It turns on designMode and set's up the listeners.
-        */
-        _initEditor: function() {
-            if (this.browser.ie) {
-                this._getDoc().body.style.margin = '0';
-            }
-            if (!this.get('disabled')) {
-                if (this._getDoc().designMode.toLowerCase() != 'on') {
-                    this._setDesignMode('on');
-                    this._contentTimerCounter = 0;
-                }
-            }
-            if (!this._getDoc().body) {
-                YAHOO.log('Body is null, check again', 'error', 'SimpleEditor');
-                this._contentTimerCounter = 0;
-                this._checkLoaded();
-                return false;
-            }
-            
-            YAHOO.log('editorLoaded', 'info', 'SimpleEditor');
-            this.toolbar.on('buttonClick', this._handleToolbarClick, this, true);
-            if (!this.get('disabled')) {
-                this._initEditorEvents();
-                this.toolbar.set('disabled', false);
-            }
-
-            this.fireEvent('editorContentLoaded', { type: 'editorLoaded', target: this });
-            if (this.get('dompath')) {
-                YAHOO.log('Delayed DomPath write', 'info', 'SimpleEditor');
-                var self = this;
-                setTimeout(function() {
-                    self._writeDomPath.call(self);
-                    self._setupResize.call(self);
-                }, 150);
-            }
-            var br = [];
-            for (var i in this.browser) {
-                if (this.browser[i]) {
-                    br.push(i);
-                }
-            }
-            if (this.get('ptags')) {
-                br.push('ptags');
-            }
-            Dom.addClass(this._getDoc().body, br.join(' '));
-            this.nodeChange(true);
-        },
-        /**
-        * @private
-        * @method _checkLoaded
-        * @description Called from a setTimeout loop to check if the iframes body.onload event has fired, then it will init the editor.
-        */
-        _checkLoaded: function() {
-            this._contentTimerCounter++;
-            if (this._contentTimer) {
-                clearTimeout(this._contentTimer);
-            }
-            if (this._contentTimerCounter > 500) {
-                YAHOO.log('ERROR: Body Did Not load', 'error', 'SimpleEditor');
-                return false;
-            }
-            var init = false;
-            try {
-                if (this._getDoc() && this._getDoc().body) {
-                    if (this.browser.ie) {
-                        if (this._getDoc().body.readyState == 'complete') {
-                            init = true;
-                        }
-                    } else {
-                        if (this._getDoc().body._rteLoaded === true) {
-                            init = true;
-                        }
-                    }
-                }
-            } catch (e) {
-                init = false;
-                YAHOO.log('checking body (e)' + e, 'error', 'SimpleEditor');
-            }
-
-            if (init === true) {
-                //The onload event has fired, clean up after ourselves and fire the _initEditor method
-                YAHOO.log('Firing _initEditor', 'info', 'SimpleEditor');
-                this._initEditor();
-            } else {
-                var self = this;
-                this._contentTimer = setTimeout(function() {
-                    self._checkLoaded.call(self);
-                }, 20);
-            }
-        },
-        /**
-        * @private
-        * @method _setInitialContent
-        * @description This method will open the iframes content document and write the textareas value into it, then start the body.onload checking.
-        */
-        _setInitialContent: function() {
-            YAHOO.log('Populating editor body with contents of the text area', 'info', 'SimpleEditor');
-
-            var value = ((this._textarea) ? this.get('element').value : this.get('element').innerHTML),
-                doc = null;
-
-            var html = Lang.substitute(this.get('html'), {
-                TITLE: this.STR_TITLE,
-                CONTENT: this._cleanIncomingHTML(value),
-                CSS: this.get('css'),
-                HIDDEN_CSS: ((this.get('hiddencss')) ? this.get('hiddencss') : '/* No Hidden CSS */'),
-                EXTRA_CSS: ((this.get('extracss')) ? this.get('extracss') : '/* No Extra CSS */')
-            }),
-            check = true;
-            if (document.compatMode != 'BackCompat') {
-                YAHOO.log('Adding Doctype to editable area', 'info', 'SimpleEditor');
-                html = this._docType + "\n" + html;
-            } else {
-                YAHOO.log('DocType skipped because we are in BackCompat Mode.', 'warn', 'SimpleEditor');
-            }
-
-            if (this.browser.ie || this.browser.webkit || this.browser.opera || (navigator.userAgent.indexOf('Firefox/1.5') != -1)) {
-                //Firefox 1.5 doesn't like setting designMode on an document created with a data url
-                try {
-                    //Adobe AIR Code
-                    if (this.browser.air) {
-                        doc = this._getDoc().implementation.createHTMLDocument();
-                        var origDoc = this._getDoc();
-                        origDoc.open();
-                        origDoc.close();
-                        doc.open();
-                        doc.write(html);
-                        doc.close();
-                        var node = origDoc.importNode(doc.getElementsByTagName("html")[0], true);
-                        origDoc.replaceChild(node, origDoc.getElementsByTagName("html")[0]);
-                        origDoc.body._rteLoaded = true;
-                    } else {
-                        doc = this._getDoc();
-                        doc.open();
-                        doc.write(html);
-                        doc.close();
-                    }
-                } catch (e) {
-                    YAHOO.log('Setting doc failed.. (_setInitialContent)', 'error', 'SimpleEditor');
-                    //Safari will only be here if we are hidden
-                    check = false;
-                }
-            } else {
-                //This keeps Firefox 2 from writing the iframe to history preserving the back buttons functionality
-                this.get('iframe').get('element').src = 'data:text/html;charset=utf-8,' + encodeURIComponent(html);
-            }
-            this.get('iframe').setStyle('visibility', '');
-            if (check) {
-                this._checkLoaded();
-            }            
-        },
-        /**
-        * @private
-        * @method _setMarkupType
-        * @param {String} action The action to take. Possible values are: css, default or semantic
-        * @description This method will turn on/off the useCSS execCommand.
-        */
-        _setMarkupType: function(action) {
-            switch (this.get('markup')) {
-                case 'css':
-                    this._setEditorStyle(true);
-                    break;
-                case 'default':
-                    this._setEditorStyle(false);
-                    break;
-                case 'semantic':
-                case 'xhtml':
-                    if (this._semantic[action]) {
-                        this._setEditorStyle(false);
-                    } else {
-                        this._setEditorStyle(true);
-                    }
-                    break;
-            }
-        },
-        /**
-        * Set the editor to use CSS instead of HTML
-        * @param {Booleen} stat True/False
-        */
-        _setEditorStyle: function(stat) {
-            try {
-                this._getDoc().execCommand('useCSS', false, !stat);
-            } catch (ex) {
-            }
-        },
-        /**
-        * @private
-        * @method _getSelectedElement
-        * @description This method will attempt to locate the element that was last interacted with, either via selection, location or event.
-        * @return {HTMLElement} The currently selected element.
-        */
-        _getSelectedElement: function() {
-            var doc = this._getDoc(),
-                range = null,
-                sel = null,
-                elm = null,
-                check = true;
-
-            if (this.browser.ie) {
-                this.currentEvent = this._getWindow().event; //Event utility assumes window.event, so we need to reset it to this._getWindow().event;
-                range = this._getRange();
-                if (range) {
-                    elm = range.item ? range.item(0) : range.parentElement();
-                    if (this._hasSelection()) {
-                        //TODO
-                        //WTF.. Why can't I get an element reference here?!??!
-                    }
-                    if (elm === doc.body) {
-                        elm = null;
-                    }
-                }
-                if ((this.currentEvent !== null) && (this.currentEvent.keyCode === 0)) {
-                    elm = Event.getTarget(this.currentEvent);
-                }
-            } else {
-                sel = this._getSelection();
-                range = this._getRange();
-
-                if (!sel || !range) {
-                    return null;
-                }
-                //TODO
-                if (!this._hasSelection() && this.browser.webkit3) {
-                    //check = false;
-                }
-                if (this.browser.gecko) {
-                    //Added in 2.6.0
-                    if (range.startContainer) {
-                        check = false;
-                        if (range.startContainer.nodeType === 3) {
-                            elm = range.startContainer.parentNode;
-                        } else if (range.startContainer.nodeType === 1) {
-                            elm = range.startContainer;
-                        } else {
-                            check = true;
-                        }
-                        if (!check) {
-                            this.currentEvent = null;
-                        }
-                    }
-                }
-                if (check) {
-                    if (sel.anchorNode && (sel.anchorNode.nodeType == 3)) {
-                        if (sel.anchorNode.parentNode) { //next check parentNode
-                            elm = sel.anchorNode.parentNode;
-                        }
-                        if (sel.anchorNode.nextSibling != sel.focusNode.nextSibling) {
-                            elm = sel.anchorNode.nextSibling;
-                        }
-                    }
-                    if (this._isElement(elm, 'br')) {
-                        elm = null;
-                    }
-                    if (!elm) {
-                        elm = range.commonAncestorContainer;
-                        if (!range.collapsed) {
-                            if (range.startContainer == range.endContainer) {
-                                if (range.startOffset - range.endOffset < 2) {
-                                    if (range.startContainer.hasChildNodes()) {
-                                        elm = range.startContainer.childNodes[range.startOffset];
-                                    }
-                                }
-                            }
-                        }
-                    }
-               }
-            }
-            
-            if (this.currentEvent !== null) {
-                try {
-                    switch (this.currentEvent.type) {
-                        case 'click':
-                        case 'mousedown':
-                        case 'mouseup':
-                            if (this.browser.webkit) {
-                                elm = Event.getTarget(this.currentEvent);
-                            }
-                            break;
-                        default:
-                            //Do nothing
-                            break;
-                    }
-                } catch (e) {
-                    YAHOO.log('Firefox 1.5 errors here: ' + e, 'error', 'SimpleEditor');
-                }
-            } else if ((this.currentElement && this.currentElement[0]) && (!this.browser.ie)) {
-                //TODO is this still needed?
-                //elm = this.currentElement[0];
-            }
-
-
-            if (this.browser.opera || this.browser.webkit) {
-                if (this.currentEvent && !elm) {
-                    elm = YAHOO.util.Event.getTarget(this.currentEvent);
-                }
-            }
-            if (!elm || !elm.tagName) {
-                elm = doc.body;
-            }
-            if (this._isElement(elm, 'html')) {
-                //Safari sometimes gives us the HTML node back..
-                elm = doc.body;
-            }
-            if (this._isElement(elm, 'body')) {
-                //make sure that body means this body not the parent..
-                elm = doc.body;
-            }
-            if (elm && !elm.parentNode) { //Not in document
-                elm = doc.body;
-            }
-            if (elm === undefined) {
-                elm = null;
-            }
-            return elm;
-        },
-        /**
-        * @private
-        * @method _getDomPath
-        * @description This method will attempt to build the DOM path from the currently selected element.
-        * @param HTMLElement el The element to start with, if not provided _getSelectedElement is used
-        * @return {Array} An array of node references that will create the DOM Path.
-        */
-        _getDomPath: function(el) {
-            if (!el) {
-			    el = this._getSelectedElement();
-            }
-			var domPath = [];
-            while (el !== null) {
-                if (el.ownerDocument != this._getDoc()) {
-                    el = null;
-                    break;
-                }
-                //Check to see if we get el.nodeName and nodeType
-                if (el.nodeName && el.nodeType && (el.nodeType == 1)) {
-                    domPath[domPath.length] = el;
-                }
-
-                if (this._isElement(el, 'body')) {
-                    break;
-                }
-
-                el = el.parentNode;
-            }
-            if (domPath.length === 0) {
-                if (this._getDoc() && this._getDoc().body) {
-                    domPath[0] = this._getDoc().body;
-                }
-            }
-            return domPath.reverse();
-        },
-        /**
-        * @private
-        * @method _writeDomPath
-        * @description Write the current DOM path out to the dompath container below the editor.
-        */
-        _writeDomPath: function() { 
-            var path = this._getDomPath(),
-                pathArr = [],
-                classPath = '',
-                pathStr = '';
-            for (var i = 0; i < path.length; i++) {
-                var tag = path[i].tagName.toLowerCase();
-                if ((tag == 'ol') && (path[i].type)) {
-                    tag += ':' + path[i].type;
-                }
-                if (Dom.hasClass(path[i], 'yui-tag')) {
-                    tag = path[i].getAttribute('tag');
-                }
-                if ((this.get('markup') == 'semantic') || (this.get('markup') == 'xhtml')) {
-                    switch (tag) {
-                        case 'b': tag = 'strong'; break;
-                        case 'i': tag = 'em'; break;
-                    }
-                }
-                if (!Dom.hasClass(path[i], 'yui-non')) {
-                    if (Dom.hasClass(path[i], 'yui-tag')) {
-                        pathStr = tag;
-                    } else {
-                        classPath = ((path[i].className !== '') ? '.' + path[i].className.replace(/ /g, '.') : '');
-                        if ((classPath.indexOf('yui') != -1) || (classPath.toLowerCase().indexOf('apple-style-span') != -1)) {
-                            classPath = '';
-                        }
-                        pathStr = tag + ((path[i].id) ? '#' + path[i].id : '') + classPath;
-                    }
-                    switch (tag) {
-                        case 'body':
-                            pathStr = 'body';
-                            break;
-                        case 'a':
-                            if (path[i].getAttribute('href', 2)) {
-                                pathStr += ':' + path[i].getAttribute('href', 2).replace('mailto:', '').replace('http:/'+'/', '').replace('https:/'+'/', ''); //May need to add others here ftp
-                            }
-                            break;
-                        case 'img':
-                            var h = path[i].height;
-                            var w = path[i].width;
-                            if (path[i].style.height) {
-                                h = parseInt(path[i].style.height, 10);
-                            }
-                            if (path[i].style.width) {
-                                w = parseInt(path[i].style.width, 10);
-                            }
-                            pathStr += '(' + w + 'x' + h + ')';
-                        break;
-                    }
-
-                    if (pathStr.length > 10) {
-                        pathStr = '<span title="' + pathStr + '">' + pathStr.substring(0, 10) + '...' + '</span>';
-                    } else {
-                        pathStr = '<span title="' + pathStr + '">' + pathStr + '</span>';
-                    }
-                    pathArr[pathArr.length] = pathStr;
-                }
-            }
-            var str = pathArr.join(' ' + this.SEP_DOMPATH + ' ');
-            //Prevent flickering
-            if (this.dompath.innerHTML != str) {
-                this.dompath.innerHTML = str;
-            }
-        },
-        /**
-        * @private
-        * @method _fixNodes
-        * @description Fix href and imgs as well as remove invalid HTML.
-        */
-        _fixNodes: function() {
-            var doc = this._getDoc(),
-                els = [];
-
-            for (var v in this.invalidHTML) {
-                if (YAHOO.lang.hasOwnProperty(this.invalidHTML, v)) {
-                    if (v.toLowerCase() != 'span') {
-                        var tags = doc.body.getElementsByTagName(v);
-                        if (tags.length) {
-                            for (var i = 0; i < tags.length; i++) {
-                                els.push(tags[i]);
-                            }
-                        }
-                    }
-                }
-            }
-            for (var h = 0; h < els.length; h++) {
-                if (els[h].parentNode) {
-                    if (Lang.isObject(this.invalidHTML[els[h].tagName.toLowerCase()]) && this.invalidHTML[els[h].tagName.toLowerCase()].keepContents) {
-                        this._swapEl(els[h], 'span', function(el) {
-                            el.className = 'yui-non';
-                        });
-                    } else {
-                        els[h].parentNode.removeChild(els[h]);
-                    }
-                }
-            }
-            var imgs = this._getDoc().getElementsByTagName('img');
-            Dom.addClass(imgs, 'yui-img');   
-        },
-        /**
-        * @private
-        * @method _isNonEditable
-        * @param Event ev The Dom event being checked
-        * @description Method is called at the beginning of all event handlers to check if this element or a parent element has the class yui-noedit (this.CLASS_NOEDIT) applied.
-        * If it does, then this method will stop the event and return true. The event handlers will then return false and stop the nodeChange from occuring. This method will also
-        * disable and enable the Editor's toolbar based on the noedit state.
-        * @return Boolean
-        */
-        _isNonEditable: function(ev) {
-            if (this.get('allowNoEdit')) {
-                var el = Event.getTarget(ev);
-                if (this._isElement(el, 'html')) {
-                    el = null;
-                }
-                var path = this._getDomPath(el);
-                for (var i = (path.length - 1); i > -1; i--) {
-                    if (Dom.hasClass(path[i], this.CLASS_NOEDIT)) {
-                        //if (this.toolbar.get('disabled') === false) {
-                        //    this.toolbar.set('disabled', true);
-                        //}
-                        try {
-                             this._getDoc().execCommand('enableObjectResizing', false, 'false');
-                        } catch (e) {}
-                        this.nodeChange();
-                        Event.stopEvent(ev);
-                        YAHOO.log('CLASS_NOEDIT found in DOM Path, stopping event', 'info', 'SimpleEditor');
-                        return true;
-                    }
-                }
-                //if (this.toolbar.get('disabled') === true) {
-                    //Should only happen once..
-                    //this.toolbar.set('disabled', false);
-                    try {
-                         this._getDoc().execCommand('enableObjectResizing', false, 'true');
-                    } catch (e2) {}
-                //}
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _setCurrentEvent
-        * @param {Event} ev The event to cache
-        * @description Sets the current event property
-        */
-        _setCurrentEvent: function(ev) {
-            this.currentEvent = ev;
-        },
-        /**
-        * @private
-        * @method _handleClick
-        * @param {Event} ev The event we are working on.
-        * @description Handles all click events inside the iFrame document.
-        */
-        _handleClick: function(ev) {
-            var ret = this.fireEvent('beforeEditorClick', { type: 'beforeEditorClick', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this.browser.webkit) {
-                var tar =Event.getTarget(ev);
-                if (this._isElement(tar, 'a') || this._isElement(tar.parentNode, 'a')) {
-                    Event.stopEvent(ev);
-                    this.nodeChange();
-                }
-            } else {
-                this.nodeChange();
-            }
-            this.fireEvent('editorClick', { type: 'editorClick', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleMouseUp
-        * @param {Event} ev The event we are working on.
-        * @description Handles all mouseup events inside the iFrame document.
-        */
-        _handleMouseUp: function(ev) {
-            var ret = this.fireEvent('beforeEditorMouseUp', { type: 'beforeEditorMouseUp', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            //Don't set current event for mouseup.
-            //It get's fired after a menu is closed and gives up a bogus event to work with
-            //this._setCurrentEvent(ev);
-            var self = this;
-            if (this.browser.opera) {
-                /**
-                * @knownissue Opera appears to stop the MouseDown, Click and DoubleClick events on an image inside of a document with designMode on..
-                * @browser Opera
-                * @description This work around traps the MouseUp event and sets a timer to check if another MouseUp event fires in so many seconds. If another event is fired, they we internally fire the DoubleClick event.
-                */
-                var sel = Event.getTarget(ev);
-                if (this._isElement(sel, 'img')) {
-                    this.nodeChange();
-                    if (this.operaEvent) {
-                        clearTimeout(this.operaEvent);
-                        this.operaEvent = null;
-                        this._handleDoubleClick(ev);
-                    } else {
-                        this.operaEvent = window.setTimeout(function() {
-                            self.operaEvent = false;
-                        }, 700);
-                    }
-                }
-            }
-            //This will stop Safari from selecting the entire document if you select all the text in the editor
-            if (this.browser.webkit || this.browser.opera) {
-                if (this.browser.webkit) {
-                    Event.stopEvent(ev);
-                }
-            }
-            this.nodeChange();
-            this.fireEvent('editorMouseUp', { type: 'editorMouseUp', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleMouseDown
-        * @param {Event} ev The event we are working on.
-        * @description Handles all mousedown events inside the iFrame document.
-        */
-        _handleMouseDown: function(ev) {
-            var ret = this.fireEvent('beforeEditorMouseDown', { type: 'beforeEditorMouseDown', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            var sel = Event.getTarget(ev);
-            if (this.browser.webkit && this._hasSelection()) {
-                var _sel = this._getSelection();
-                if (!this.browser.webkit3) {
-                    _sel.collapse(true);
-                } else {
-                    _sel.collapseToStart();
-                }
-            }
-            if (this.browser.webkit && this._lastImage) {
-                Dom.removeClass(this._lastImage, 'selected');
-                this._lastImage = null;
-            }
-            if (this._isElement(sel, 'img') || this._isElement(sel, 'a')) {
-                if (this.browser.webkit) {
-                    Event.stopEvent(ev);
-                    if (this._isElement(sel, 'img')) {
-                        Dom.addClass(sel, 'selected');
-                        this._lastImage = sel;
-                    }
-                }
-                if (this.currentWindow) {
-                    this.closeWindow();
-                }
-                this.nodeChange();
-            }
-            this.fireEvent('editorMouseDown', { type: 'editorMouseDown', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleDoubleClick
-        * @param {Event} ev The event we are working on.
-        * @description Handles all doubleclick events inside the iFrame document.
-        */
-        _handleDoubleClick: function(ev) {
-            var ret = this.fireEvent('beforeEditorDoubleClick', { type: 'beforeEditorDoubleClick', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            var sel = Event.getTarget(ev);
-            if (this._isElement(sel, 'img')) {
-                this.currentElement[0] = sel;
-                this.toolbar.fireEvent('insertimageClick', { type: 'insertimageClick', target: this.toolbar });
-                this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-            } else if (this._hasParent(sel, 'a')) { //Handle elements inside an a
-                this.currentElement[0] = this._hasParent(sel, 'a');
-                this.toolbar.fireEvent('createlinkClick', { type: 'createlinkClick', target: this.toolbar });
-                this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-            }
-            this.nodeChange();
-            this.fireEvent('editorDoubleClick', { type: 'editorDoubleClick', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleKeyUp
-        * @param {Event} ev The event we are working on.
-        * @description Handles all keyup events inside the iFrame document.
-        */
-        _handleKeyUp: function(ev) {
-            var ret = this.fireEvent('beforeEditorKeyUp', { type: 'beforeEditorKeyUp', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            switch (ev.keyCode) {
-                case this._keyMap.SELECT_ALL.key:
-                    if (this._checkKey(this._keyMap.SELECT_ALL, ev)) {
-                        this.nodeChange();
-                    }
-                    break;
-                case 32: //Space Bar
-                case 35: //End
-                case 36: //Home
-                case 37: //Left Arrow
-                case 38: //Up Arrow
-                case 39: //Right Arrow
-                case 40: //Down Arrow
-                case 46: //Forward Delete
-                case 8: //Delete
-                case this._keyMap.CLOSE_WINDOW.key: //W key if window is open
-                    if ((ev.keyCode == this._keyMap.CLOSE_WINDOW.key) && this.currentWindow) {
-                        if (this._checkKey(this._keyMap.CLOSE_WINDOW, ev)) {
-                            this.closeWindow();
-                        }
-                    } else {
-                        if (!this.browser.ie) {
-                            if (this._nodeChangeTimer) {
-                                clearTimeout(this._nodeChangeTimer);
-                            }
-                            var self = this;
-                            this._nodeChangeTimer = setTimeout(function() {
-                                self._nodeChangeTimer = null;
-                                self.nodeChange.call(self);
-                            }, 100);
-                        } else {
-                            this.nodeChange();
-                        }
-                        this.editorDirty = true;
-                    }
-                    break;
-            }
-            this.fireEvent('editorKeyUp', { type: 'editorKeyUp', target: this, ev: ev });
-            this._storeUndo();
-        },
-        /**
-        * @private
-        * @method _handleKeyPress
-        * @param {Event} ev The event we are working on.
-        * @description Handles all keypress events inside the iFrame document.
-        */
-        _handleKeyPress: function(ev) {
-            var ret = this.fireEvent('beforeEditorKeyPress', { type: 'beforeEditorKeyPress', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-
-            if (this.get('allowNoEdit')) {
-                //if (ev && ev.keyCode && ((ev.keyCode == 46) || ev.keyCode == 63272)) {
-                if (ev && ev.keyCode && (ev.keyCode == 63272)) {
-                    //Forward delete key
-                    YAHOO.log('allowNoEdit is set, forward delete key has been disabled', 'warn', 'SimpleEditor');
-                    Event.stopEvent(ev);
-                }
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            if (this.browser.opera) {
-                if (ev.keyCode === 13) {
-                    var tar = this._getSelectedElement();
-                    if (!this._isElement(tar, 'li')) {
-                        this.execCommand('inserthtml', '<br>');
-                        Event.stopEvent(ev);
-                    }
-                }
-            }
-            if (this.browser.webkit) {
-                if (!this.browser.webkit3) {
-                    if (ev.keyCode && (ev.keyCode == 122) && (ev.metaKey)) {
-                        //This is CMD + z (for undo)
-                        if (this._hasParent(this._getSelectedElement(), 'li')) {
-                            YAHOO.log('We are in an LI and we found CMD + z, stopping the event', 'warn', 'SimpleEditor');
-                            Event.stopEvent(ev);
-                        }
-                    }
-                }
-                this._listFix(ev);
-            }
-            this.fireEvent('editorKeyPress', { type: 'editorKeyPress', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleKeyDown
-        * @param {Event} ev The event we are working on.
-        * @description Handles all keydown events inside the iFrame document.
-        */
-        _handleKeyDown: function(ev) {
-            var ret = this.fireEvent('beforeEditorKeyDown', { type: 'beforeEditorKeyDown', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            var tar = null, _range = null;
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            var doExec = false,
-                action = null,
-                exec = false;
-
-            //YAHOO.log('keyCode: ' + ev.keyCode, 'info', 'SimpleEditor');
-
-            switch (ev.keyCode) {
-                case this._keyMap.FOCUS_TOOLBAR.key:
-                    if (this._checkKey(this._keyMap.FOCUS_TOOLBAR, ev)) {
-                        var h = this.toolbar.getElementsByTagName('h2')[0];
-                        if (h && h.firstChild) {
-                            h.firstChild.focus();
-                        }
-                    } else if (this._checkKey(this._keyMap.FOCUS_AFTER, ev)) {
-                        //Focus After Element - Esc
-                        this.afterElement.focus();
-                    }
-                    Event.stopEvent(ev);
-                    doExec = false;
-                    break;
-                //case 76: //L
-                case this._keyMap.CREATE_LINK.key: //L
-                    if (this._hasSelection()) {
-                        if (this._checkKey(this._keyMap.CREATE_LINK, ev)) {
-                            var makeLink = true;
-                            if (this.get('limitCommands')) {
-                                if (!this.toolbar.getButtonByValue('createlink')) {
-                                    YAHOO.log('Toolbar Button for (createlink) was not found, skipping exec.', 'info', 'SimpleEditor');
-                                    makeLink = false;
-                                }
-                            }
-                            if (makeLink) {
-                                this.execCommand('createlink', '');
-                                this.toolbar.fireEvent('createlinkClick', { type: 'createlinkClick', target: this.toolbar });
-                                this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-                                doExec = false;
-                            }
-                        }
-                    }
-                    break;
-                //case 90: //Z
-                case this._keyMap.UNDO.key:
-                case this._keyMap.REDO.key:
-                    if (this._checkKey(this._keyMap.REDO, ev)) {
-                        action = 'redo';
-                        doExec = true;
-                    } else if (this._checkKey(this._keyMap.UNDO, ev)) {
-                        action = 'undo';
-                        doExec = true;
-                    }
-                    break;
-                //case 66: //B
-                case this._keyMap.BOLD.key:
-                    if (this._checkKey(this._keyMap.BOLD, ev)) {
-                        action = 'bold';
-                        doExec = true;
-                    }
-                    break;
-                //case 73: //I
-                case this._keyMap.ITALIC.key:
-                    if (this._checkKey(this._keyMap.ITALIC, ev)) {
-                        action = 'italic';
-                        doExec = true;
-                    }
-                    break;
-                //case 85: //U
-                case this._keyMap.UNDERLINE.key:
-                    if (this._checkKey(this._keyMap.UNDERLINE, ev)) {
-                        action = 'underline';
-                        doExec = true;
-                    }
-                    break;
-                case 9:
-                    if (this.browser.ie) {
-                        //Insert a tab in Internet Explorer
-                        _range = this._getRange();
-                        tar = this._getSelectedElement();
-                        if (!this._isElement(tar, 'li')) {
-                            if (_range) {
-                                _range.pasteHTML('&nbsp;&nbsp;&nbsp;&nbsp;');
-                                _range.collapse(false);
-                                _range.select();
-                            }
-                            Event.stopEvent(ev);
-                        }
-                    }
-                    //Firefox 3 code
-                    if (this.browser.gecko > 1.8) {
-                        tar = this._getSelectedElement();
-                        if (this._isElement(tar, 'li')) {
-                            if (ev.shiftKey) {
-                                this._getDoc().execCommand('outdent', null, '');
-                            } else {
-                                this._getDoc().execCommand('indent', null, '');
-                            }
-                            
-                        } else if (!this._hasSelection()) {
-                            this.execCommand('inserthtml', '&nbsp;&nbsp;&nbsp;&nbsp;');
-                        }
-                        Event.stopEvent(ev);
-                    }
-                    break;
-                case 13:
-                    if (this.get('ptags') && !ev.shiftKey) {
-                        if (this.browser.gecko) {
-                            tar = this._getSelectedElement();
-                            if (!this._isElement(tar, 'li')) {
-                                doExec = true;
-                                action = 'insertparagraph';
-                                Event.stopEvent(ev);
-                            }
-                        }
-                        if (this.browser.webkit) {
-                            tar = this._getSelectedElement();
-                            if (!this._hasParent(tar, 'li')) {
-                                doExec = true;
-                                action = 'insertparagraph';
-                                Event.stopEvent(ev);
-                            }
-                        }
-                    } else {
-                        if (this.browser.ie) {
-                            YAHOO.log('Stopping P tags', 'info', 'SimpleEditor');
-                            //Insert a <br> instead of a <p></p> in Internet Explorer
-                            _range = this._getRange();
-                            tar = this._getSelectedElement();
-                            if (!this._isElement(tar, 'li')) {
-                                if (_range) {
-                                    _range.pasteHTML('<br>');
-                                    _range.collapse(false);
-                                    _range.select();
-                                }
-                                Event.stopEvent(ev);
-                            }
-                        }
-                    }
-                    break;
-            }
-            if (this.browser.ie) {
-                this._listFix(ev);
-            }
-            if (doExec && action) {
-                this.execCommand(action, null);
-                Event.stopEvent(ev);
-                this.nodeChange();
-            }
-            this.fireEvent('editorKeyDown', { type: 'editorKeyDown', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _listFix
-        * @param {Event} ev The event we are working on.
-        * @description Handles the Enter key, Tab Key and Shift + Tab keys for List Items.
-        */
-        _listFix: function(ev) {
-            //YAHOO.log('Lists Fix (' + ev.keyCode + ')', 'info', 'SimpleEditor');
-            var testLi = null, par = null, preContent = false, range = null;
-            //Enter Key
-            if (this.browser.webkit) {
-                if (ev.keyCode && (ev.keyCode == 13)) {
-                    if (this._hasParent(this._getSelectedElement(), 'li')) {
-                        var tar = this._hasParent(this._getSelectedElement(), 'li');
-                        if (tar.previousSibling) {
-                            if (tar.firstChild && (tar.firstChild.length == 1)) {
-                                this._selectNode(tar);
-                            }
-                        }
-                    }
-                }
-            }
-            //Shift + Tab Key
-            if (ev.keyCode && ((!this.browser.webkit3 && (ev.keyCode == 25)) || ((this.browser.webkit3 || !this.browser.webkit) && ((ev.keyCode == 9) && ev.shiftKey)))) {
-                testLi = this._getSelectedElement();
-                if (this._hasParent(testLi, 'li')) {
-                    testLi = this._hasParent(testLi, 'li');
-                    YAHOO.log('We have a SHIFT tab in an LI, reverse it..', 'info', 'SimpleEditor');
-                    if (this._hasParent(testLi, 'ul') || this._hasParent(testLi, 'ol')) {
-                        YAHOO.log('We have a double parent, move up a level', 'info', 'SimpleEditor');
-                        par = this._hasParent(testLi, 'ul');
-                        if (!par) {
-                            par = this._hasParent(testLi, 'ol');
-                        }
-                        //YAHOO.log(par.previousSibling + ' :: ' + par.previousSibling.innerHTML);
-                        if (this._isElement(par.previousSibling, 'li')) {
-                            par.removeChild(testLi);
-                            par.parentNode.insertBefore(testLi, par.nextSibling);
-                            if (this.browser.ie) {
-                                range = this._getDoc().body.createTextRange();
-                                range.moveToElementText(testLi);
-                                range.collapse(false);
-                                range.select();
-                            }
-                            if (this.browser.webkit) {
-                                this._selectNode(testLi.firstChild);
-                            }
-                            Event.stopEvent(ev);
-                        }
-                    }
-                }
-            }
-            //Tab Key
-            if (ev.keyCode && ((ev.keyCode == 9) && (!ev.shiftKey))) {
-                YAHOO.log('List Fix - Tab', 'info', 'SimpleEditor');
-                var preLi = this._getSelectedElement();
-                if (this._hasParent(preLi, 'li')) {
-                    preContent = this._hasParent(preLi, 'li').innerHTML;
-                }
-                //YAHOO.log('preLI: ' + preLi.tagName + ' :: ' + preLi.innerHTML);
-                if (this.browser.webkit) {
-                    this._getDoc().execCommand('inserttext', false, '\t');
-                }
-                testLi = this._getSelectedElement();
-                if (this._hasParent(testLi, 'li')) {
-                    YAHOO.log('We have a tab in an LI', 'info', 'SimpleEditor');
-                    par = this._hasParent(testLi, 'li');
-                    YAHOO.log('parLI: ' + par.tagName + ' :: ' + par.innerHTML);
-                    var newUl = this._getDoc().createElement(par.parentNode.tagName.toLowerCase());
-                    if (this.browser.webkit) {
-                        var span = Dom.getElementsByClassName('Apple-tab-span', 'span', par);
-                        //Remove the span element that Safari puts in
-                        if (span[0]) {
-                            par.removeChild(span[0]);
-                            par.innerHTML = Lang.trim(par.innerHTML);
-                            //Put the HTML from the LI into this new LI
-                            if (preContent) {
-                                par.innerHTML = '<span class="yui-non">' + preContent + '</span>&nbsp;';
-                            } else {
-                                par.innerHTML = '<span class="yui-non">&nbsp;</span>&nbsp;';
-                            }
-                        }
-                    } else {
-                        if (preContent) {
-                            par.innerHTML = preContent + '&nbsp;';
-                        } else {
-                            par.innerHTML = '&nbsp;';
-                        }
-                    }
-
-                    par.parentNode.replaceChild(newUl, par);
-                    newUl.appendChild(par);
-                    if (this.browser.webkit) {
-                        this._getSelection().setBaseAndExtent(par.firstChild, 1, par.firstChild, par.firstChild.innerText.length);
-                        if (!this.browser.webkit3) {
-                            par.parentNode.parentNode.style.display = 'list-item';
-                            setTimeout(function() {
-                                par.parentNode.parentNode.style.display = 'block';
-                            }, 1);
-                        }
-                    } else if (this.browser.ie) {
-                        range = this._getDoc().body.createTextRange();
-                        range.moveToElementText(par);
-                        range.collapse(false);
-                        range.select();
-                    } else {
-                        this._selectNode(par);
-                    }
-                    Event.stopEvent(ev);
-                }
-                if (this.browser.webkit) {
-                    Event.stopEvent(ev);
-                }
-                this.nodeChange();
-            }
-        },
-        /**
-        * @method nodeChange
-        * @param {Boolean} force Optional paramenter to skip the threshold counter
-        * @description Handles setting up the toolbar buttons, getting the Dom path, fixing nodes.
-        */
-        nodeChange: function(force) {
-            var NCself = this;
-            this._storeUndo();
-            if (this.get('nodeChangeDelay')) {
-                window.setTimeout(function() {
-                    NCself._nodeChange.apply(NCself, arguments);
-                }, 0);
-            } else {
-                this._nodeChange();
-            }
-        },
-        /**
-        * @private
-        * @method _nodeChange
-        * @param {Boolean} force Optional paramenter to skip the threshold counter
-        * @description Fired from nodeChange in a setTimeout.
-        */
-        _nodeChange: function(force) {
-            var threshold = parseInt(this.get('nodeChangeThreshold'), 10),
-                thisNodeChange = Math.round(new Date().getTime() / 1000),
-                self = this;
-
-            if (force === true) {
-                this._lastNodeChange = 0;
-            }
-            
-            if ((this._lastNodeChange + threshold) < thisNodeChange) {
-                if (this._fixNodesTimer === null) {
-                    this._fixNodesTimer = window.setTimeout(function() {
-                        self._fixNodes.call(self);
-                        self._fixNodesTimer = null;
-                    }, 0);
-                }
-            }
-            this._lastNodeChange = thisNodeChange;
-            if (this.currentEvent) {
-                try {
-                    this._lastNodeChangeEvent = this.currentEvent.type;
-                } catch (e) {}
-            }
-
-            var beforeNodeChange = this.fireEvent('beforeNodeChange', { type: 'beforeNodeChange', target: this });
-            if (beforeNodeChange === false) {
-                return false;
-            }
-            if (this.get('dompath')) {
-                window.setTimeout(function() {
-                    self._writeDomPath.call(self);
-                }, 0);
-            }
-            //Check to see if we are disabled before continuing
-            if (!this.get('disabled')) {
-                if (this.STOP_NODE_CHANGE) {
-                    //Reset this var for next action
-                    this.STOP_NODE_CHANGE = false;
-                    return false;
-                } else {
-                    var sel = this._getSelection(),
-                        range = this._getRange(),
-                        el = this._getSelectedElement(),
-                        fn_button = this.toolbar.getButtonByValue('fontname'),
-                        fs_button = this.toolbar.getButtonByValue('fontsize'),
-                        undo_button = this.toolbar.getButtonByValue('undo'),
-                        redo_button = this.toolbar.getButtonByValue('redo');
-
-                    //Handle updating the toolbar with active buttons
-                    var _ex = {};
-                    if (this._lastButton) {
-                        _ex[this._lastButton.id] = true;
-                        //this._lastButton = null;
-                    }
-                    if (!this._isElement(el, 'body')) {
-                        if (fn_button) {
-                            _ex[fn_button.get('id')] = true;
-                        }
-                        if (fs_button) {
-                            _ex[fs_button.get('id')] = true;
-                        }
-                    }
-                    if (redo_button) {
-                        delete _ex[redo_button.get('id')];
-                    }
-                    this.toolbar.resetAllButtons(_ex);
-
-                    //Handle disabled buttons
-                    for (var d = 0; d < this._disabled.length; d++) {
-                        var _button = this.toolbar.getButtonByValue(this._disabled[d]);
-                        if (_button && _button.get) {
-                            if (this._lastButton && (_button.get('id') === this._lastButton.id)) {
-                                //Skip
-                            } else {
-                                if (!this._hasSelection() && !this.get('insert')) {
-                                    switch (this._disabled[d]) {
-                                        case 'fontname':
-                                        case 'fontsize':
-                                            break;
-                                        default:
-                                            //No Selection - disable
-                                            this.toolbar.disableButton(_button);
-                                    }
-                                } else {
-                                    if (!this._alwaysDisabled[this._disabled[d]]) {
-                                        this.toolbar.enableButton(_button);
-                                    }
-                                }
-                                if (!this._alwaysEnabled[this._disabled[d]]) {
-                                    this.toolbar.deselectButton(_button);
-                                }
-                            }
-                        }
-                    }
-                    var path = this._getDomPath();
-                    var tag = null, cmd = null;
-                    for (var i = 0; i < path.length; i++) {
-                        tag = path[i].tagName.toLowerCase();
-                        if (path[i].getAttribute('tag')) {
-                            tag = path[i].getAttribute('tag').toLowerCase();
-                        }
-                        cmd = this._tag2cmd[tag];
-                        if (cmd === undefined) {
-                            cmd = [];
-                        }
-                        if (!Lang.isArray(cmd)) {
-                            cmd = [cmd];
-                        }
-
-                        //Bold and Italic styles
-                        if (path[i].style.fontWeight.toLowerCase() == 'bold') {
-                            cmd[cmd.length] = 'bold';
-                        }
-                        if (path[i].style.fontStyle.toLowerCase() == 'italic') {
-                            cmd[cmd.length] = 'italic';
-                        }
-                        if (path[i].style.textDecoration.toLowerCase() == 'underline') {
-                            cmd[cmd.length] = 'underline';
-                        }
-                        if (path[i].style.textDecoration.toLowerCase() == 'line-through') {
-                            cmd[cmd.length] = 'strikethrough';
-                        }
-                        if (cmd.length > 0) {
-                            for (var j = 0; j < cmd.length; j++) {
-                                this.toolbar.selectButton(cmd[j]);
-                                this.toolbar.enableButton(cmd[j]);
-                            }
-                        }
-                        //Handle Alignment
-                        switch (path[i].style.textAlign.toLowerCase()) {
-                            case 'left':
-                            case 'right':
-                            case 'center':
-                            case 'justify':
-                                var alignType = path[i].style.textAlign.toLowerCase();
-                                if (path[i].style.textAlign.toLowerCase() == 'justify') {
-                                    alignType = 'full';
-                                }
-                                this.toolbar.selectButton('justify' + alignType);
-                                this.toolbar.enableButton('justify' + alignType);
-                                break;
-                        }
-                    }
-                    //After for loop
-
-                    //Reset Font Family and Size to the inital configs
-                    if (fn_button) {
-                        var family = fn_button._configs.label._initialConfig.value;
-                        fn_button.set('label', '<span class="yui-toolbar-fontname-' + this._cleanClassName(family) + '">' + family + '</span>');
-                        this._updateMenuChecked('fontname', family);
-                    }
-
-                    if (fs_button) {
-                        fs_button.set('label', fs_button._configs.label._initialConfig.value);
-                    }
-
-                    var hd_button = this.toolbar.getButtonByValue('heading');
-                    if (hd_button) {
-                        hd_button.set('label', hd_button._configs.label._initialConfig.value);
-                        this._updateMenuChecked('heading', 'none');
-                    }
-                    var img_button = this.toolbar.getButtonByValue('insertimage');
-                    if (img_button && this.currentWindow && (this.currentWindow.name == 'insertimage')) {
-                        this.toolbar.disableButton(img_button);
-                    }
-                    if (this._lastButton && this._lastButton.isSelected) {
-                        this.toolbar.deselectButton(this._lastButton.id);
-                    }
-                    this._undoNodeChange();
-                }
-            }
-
-            this.fireEvent('afterNodeChange', { type: 'afterNodeChange', target: this });
-        },
-        /**
-        * @private
-        * @method _updateMenuChecked
-        * @param {Object} button The command identifier of the button you want to check
-        * @param {String} value The value of the menu item you want to check
-        * @param {<a href="YAHOO.widget.Toolbar.html">YAHOO.widget.Toolbar</a>} The Toolbar instance the button belongs to (defaults to this.toolbar) 
-        * @description Gets the menu from a button instance, if the menu is not rendered it will render it. It will then search the menu for the specified value, unchecking all other items and checking the specified on.
-        */
-        _updateMenuChecked: function(button, value, tbar) {
-            if (!tbar) {
-                tbar = this.toolbar;
-            }
-            var _button = tbar.getButtonByValue(button);
-            _button.checkValue(value);
-        },
-        /**
-        * @private
-        * @method _handleToolbarClick
-        * @param {Event} ev The event that triggered the button click
-        * @description This is an event handler attached to the Toolbar's buttonClick event. It will fire execCommand with the command identifier from the Toolbar Button.
-        */
-        _handleToolbarClick: function(ev) {
-            var value = '';
-            var str = '';
-            var cmd = ev.button.value;
-            if (ev.button.menucmd) {
-                value = cmd;
-                cmd = ev.button.menucmd;
-            }
-            this._lastButton = ev.button;
-            if (this.STOP_EXEC_COMMAND) {
-                YAHOO.log('execCommand skipped because we found the STOP_EXEC_COMMAND flag set to true', 'warn', 'SimpleEditor');
-                YAHOO.log('NOEXEC::execCommand::(' + cmd + '), (' + value + ')', 'warn', 'SimpleEditor');
-                this.STOP_EXEC_COMMAND = false;
-                return false;
-            } else {
-                this.execCommand(cmd, value);
-                if (!this.browser.webkit) {
-                     var Fself = this;
-                     setTimeout(function() {
-                         Fself._focusWindow.call(Fself);
-                     }, 5);
-                 }
-            }
-            Event.stopEvent(ev);
-        },
-        /**
-        * @private
-        * @method _setupAfterElement
-        * @description Creates the accessibility h2 header and places it after the iframe in the Dom for navigation.
-        */
-        _setupAfterElement: function() {
-            if (!this.beforeElement) {
-                this.beforeElement = document.createElement('h2');
-                this.beforeElement.className = 'yui-editor-skipheader';
-                this.beforeElement.tabIndex = '-1';
-                this.beforeElement.innerHTML = this.STR_BEFORE_EDITOR;
-                this.get('element_cont').get('firstChild').insertBefore(this.beforeElement, this.toolbar.get('nextSibling'));
-            }
-            if (!this.afterElement) {
-                this.afterElement = document.createElement('h2');
-                this.afterElement.className = 'yui-editor-skipheader';
-                this.afterElement.tabIndex = '-1';
-                this.afterElement.innerHTML = this.STR_LEAVE_EDITOR;
-                this.get('element_cont').get('firstChild').appendChild(this.afterElement);
-            }
-        },
-        /**
-        * @private
-        * @method _disableEditor
-        * @param {Boolean} disabled Pass true to disable, false to enable
-        * @description Creates a mask to place over the Editor.
-        */
-        _disableEditor: function(disabled) {
-            if (disabled) {
-                this._removeEditorEvents();
-                if (!this._mask) {
-                    if (!!this.browser.ie) {
-                        this._setDesignMode('off');
-                    }
-                    if (this.toolbar) {
-                        this.toolbar.set('disabled', true);
-                    }
-                    this._mask = document.createElement('DIV');
-                    Dom.setStyle(this._mask, 'height', '100%');
-                    Dom.setStyle(this._mask, 'width', '100%');
-                    Dom.setStyle(this._mask, 'position', 'absolute');
-                    Dom.setStyle(this._mask, 'top', '0');
-                    Dom.setStyle(this._mask, 'left', '0');
-                    Dom.setStyle(this._mask, 'opacity', '.5');
-                    Dom.addClass(this._mask, 'yui-editor-masked');
-                    this.get('iframe').get('parentNode').appendChild(this._mask);
-                }
-            } else {
-                this._initEditorEvents();
-                if (this._mask) {
-                    this._mask.parentNode.removeChild(this._mask);
-                    this._mask = null;
-                    if (this.toolbar) {
-                        this.toolbar.set('disabled', false);
-                    }
-                    this._setDesignMode('on');
-                    this._focusWindow();
-                    var self = this;
-                    window.setTimeout(function() {
-                        self.nodeChange.call(self);
-                    }, 100);
-                }
-            }
-        },
-        /**
-        * @property SEP_DOMPATH
-        * @description The value to place in between the Dom path items
-        * @type String
-        */
-        SEP_DOMPATH: '<',
-        /**
-        * @property STR_LEAVE_EDITOR
-        * @description The accessibility string for the element after the iFrame
-        * @type String
-        */
-        STR_LEAVE_EDITOR: 'You have left the Rich Text Editor.',
-        /**
-        * @property STR_BEFORE_EDITOR
-        * @description The accessibility string for the element before the iFrame
-        * @type String
-        */
-        STR_BEFORE_EDITOR: 'This text field can contain stylized text and graphics. To cycle through all formatting options, use the keyboard shortcut Shift + Escape to place focus on the toolbar and navigate between options with your arrow keys. To exit this text editor use the Escape key and continue tabbing. <h4>Common formatting keyboard shortcuts:</h4><ul><li>Control Shift B sets text to bold</li> <li>Control Shift I sets text to italic</li> <li>Control Shift U underlines text</li> <li>Control Shift L adds an HTML link</li></ul>',
-        /**
-        * @property STR_TITLE
-        * @description The Title of the HTML document that is created in the iFrame
-        * @type String
-        */
-        STR_TITLE: 'Rich Text Area.',
-        /**
-        * @property STR_IMAGE_HERE
-        * @description The text to place in the URL textbox when using the blankimage.
-        * @type String
-        */
-        STR_IMAGE_HERE: 'Image URL Here',
-        /**
-        * @property STR_LINK_URL
-        * @description The label string for the Link URL.
-        * @type String
-        */
-        STR_LINK_URL: 'Link URL',
-        /**
-        * @protected
-        * @property STOP_EXEC_COMMAND
-        * @description Set to true when you want the default execCommand function to not process anything
-        * @type Boolean
-        */
-        STOP_EXEC_COMMAND: false,
-        /**
-        * @protected
-        * @property STOP_NODE_CHANGE
-        * @description Set to true when you want the default nodeChange function to not process anything
-        * @type Boolean
-        */
-        STOP_NODE_CHANGE: false,
-        /**
-        * @protected
-        * @property CLASS_NOEDIT
-        * @description CSS class applied to elements that are not editable.
-        * @type String
-        */
-        CLASS_NOEDIT: 'yui-noedit',
-        /**
-        * @protected
-        * @property CLASS_CONTAINER
-        * @description Default CSS class to apply to the editors container element
-        * @type String
-        */
-        CLASS_CONTAINER: 'yui-editor-container',
-        /**
-        * @protected
-        * @property CLASS_EDITABLE
-        * @description Default CSS class to apply to the editors iframe element
-        * @type String
-        */
-        CLASS_EDITABLE: 'yui-editor-editable',
-        /**
-        * @protected
-        * @property CLASS_EDITABLE_CONT
-        * @description Default CSS class to apply to the editors iframe's parent element
-        * @type String
-        */
-        CLASS_EDITABLE_CONT: 'yui-editor-editable-container',
-        /**
-        * @protected
-        * @property CLASS_PREFIX
-        * @description Default prefix for dynamically created class names
-        * @type String
-        */
-        CLASS_PREFIX: 'yui-editor',
-        /** 
-        * @property browser
-        * @description Standard browser detection
-        * @type Object
-        */
-        browser: function() {
-            var br = YAHOO.env.ua;
-            //Check for webkit3
-            if (br.webkit >= 420) {
-                br.webkit3 = br.webkit;
-            } else {
-                br.webkit3 = 0;
-            }
-            br.mac = false;
-            //Check for Mac
-            if (navigator.userAgent.indexOf('Macintosh') !== -1) {
-                br.mac = true;
-            }
-
-            return br;
-        }(),
-        /** 
-        * @method init
-        * @description The Editor class' initialization method
-        */
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.log('init', 'info', 'SimpleEditor');
-
-            if (!this._defaultToolbar) {
-                this._defaultToolbar = {
-                    collapse: true,
-                    titlebar: 'Text Editing Tools',
-                    draggable: false,
-                    buttons: [
-                        { group: 'fontstyle', label: 'Font Name and Size',
-                            buttons: [
-                                { type: 'select', label: 'Arial', value: 'fontname', disabled: true,
-                                    menu: [
-                                        { text: 'Arial', checked: true },
-                                        { text: 'Arial Black' },
-                                        { text: 'Comic Sans MS' },
-                                        { text: 'Courier New' },
-                                        { text: 'Lucida Console' },
-                                        { text: 'Tahoma' },
-                                        { text: 'Times New Roman' },
-                                        { text: 'Trebuchet MS' },
-                                        { text: 'Verdana' }
-                                    ]
-                                },
-                                { type: 'spin', label: '13', value: 'fontsize', range: [ 9, 75 ], disabled: true }
-                            ]
-                        },
-                        { type: 'separator' },
-                        { group: 'textstyle', label: 'Font Style',
-                            buttons: [
-                                { type: 'push', label: 'Bold CTRL + SHIFT + B', value: 'bold' },
-                                { type: 'push', label: 'Italic CTRL + SHIFT + I', value: 'italic' },
-                                { type: 'push', label: 'Underline CTRL + SHIFT + U', value: 'underline' },
-                                { type: 'push', label: 'Strike Through', value: 'strikethrough' },
-                                { type: 'separator' },
-                                { type: 'color', label: 'Font Color', value: 'forecolor', disabled: true },
-                                { type: 'color', label: 'Background Color', value: 'backcolor', disabled: true }
-                                
-                            ]
-                        },
-                        { type: 'separator' },
-                        { group: 'indentlist', label: 'Lists',
-                            buttons: [
-                                { type: 'push', label: 'Create an Unordered List', value: 'insertunorderedlist' },
-                                { type: 'push', label: 'Create an Ordered List', value: 'insertorderedlist' }
-                            ]
-                        },
-                        { type: 'separator' },
-                        { group: 'insertitem', label: 'Insert Item',
-                            buttons: [
-                                { type: 'push', label: 'HTML Link CTRL + SHIFT + L', value: 'createlink', disabled: true },
-                                { type: 'push', label: 'Insert Image', value: 'insertimage' }
-                            ]
-                        }
-                    ]
-                };
-            }
-
-            YAHOO.widget.SimpleEditor.superclass.init.call(this, p_oElement, p_oAttributes);
-            YAHOO.widget.EditorInfo._instances[this.get('id')] = this;
-
-
-            this.currentElement = [];
-            this.on('contentReady', function() {
-                this.DOMReady = true;
-                this.fireQueue();
-            }, this, true);
-
-        },
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create 
-        * the editor.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the editor.
-        */
-        initAttributes: function(attr) {
-            YAHOO.widget.SimpleEditor.superclass.initAttributes.call(this, attr);
-            var self = this;
-
-            /**
-            * @config nodeChangeDelay
-            * @description Do we wrap the nodeChange method in a timeout for performance, default: true.
-            * @default true
-            * @type Number
-            */
-            this.setAttributeConfig('nodeChangeDelay', {
-                value: ((attr.nodeChangeDelay === false) ? false : true)
-            });
-            /**
-            * @config maxUndo
-            * @description The max number of undo levels to store.
-            * @default 30
-            * @type Number
-            */
-            this.setAttributeConfig('maxUndo', {
-                writeOnce: true,
-                value: attr.maxUndo || 30
-            });
-
-            /**
-            * @config ptags
-            * @description If true, the editor uses <P> tags instead of <br> tags. (Use Shift + Enter to get a <br>)
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('ptags', {
-                writeOnce: true,
-                value: attr.ptags || false
-            });
-            /**
-            * @config insert
-            * @description If true, selection is not required for: fontname, fontsize, forecolor, backcolor.
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('insert', {
-                writeOnce: true,
-                value: attr.insert || false,
-                method: function(insert) {
-                    if (insert) {
-                        var buttons = {
-                            fontname: true,
-                            fontsize: true,
-                            forecolor: true,
-                            backcolor: true
-                        };
-                        var tmp = this._defaultToolbar.buttons;
-                        for (var i = 0; i < tmp.length; i++) {
-                            if (tmp[i].buttons) {
-                                for (var a = 0; a < tmp[i].buttons.length; a++) {
-                                    if (tmp[i].buttons[a].value) {
-                                        if (buttons[tmp[i].buttons[a].value]) {
-                                            delete tmp[i].buttons[a].disabled;
-                                        }
-                                    }
-                                }
-                            }
-                        }
-                    }
-                }
-            });
-            /**
-            * @config container
-            * @description Used when dynamically creating the Editor from Javascript with no default textarea.
-            * We will create one and place it in this container. If no container is passed we will append to document.body.
-            * @default false
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('container', {
-                writeOnce: true,
-                value: attr.container || false
-            });
-            /**
-            * @config plainText
-            * @description Process the inital textarea data as if it was plain text. Accounting for spaces, tabs and line feeds.
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('plainText', {
-                writeOnce: true,
-                value: attr.plainText || false
-            });
-            /**
-            * @private
-            * @config iframe
-            * @description Internal config for holding the iframe element.
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('iframe', {
-                value: null
-            });
-            /**
-            * @private
-            * @depreciated
-            * @config textarea
-            * @description Internal config for holding the textarea element (replaced with element).
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('textarea', {
-                value: null,
-                writeOnce: true
-            });
-            /**
-            * @private
-            * @config container
-            * @description Internal config for holding a reference to the container to append a dynamic editor to.
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('container', {
-                readOnly: true,
-                value: null
-            });
-            /**
-            * @config nodeChangeThreshold
-            * @description The number of seconds that need to be in between nodeChange processing
-            * @default 3
-            * @type Number
-            */            
-            this.setAttributeConfig('nodeChangeThreshold', {
-                value: attr.nodeChangeThreshold || 3,
-                validator: YAHOO.lang.isNumber
-            });
-            /**
-            * @config allowNoEdit
-            * @description Should the editor check for non-edit fields. It should be noted that this technique is not perfect. If the user does the right things, they will still be able to make changes.
-            * Such as highlighting an element below and above the content and hitting a toolbar button or a shortcut key.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('allowNoEdit', {
-                value: attr.allowNoEdit || false,
-                validator: YAHOO.lang.isBoolean
-            });
-            /**
-            * @config limitCommands
-            * @description Should the Editor limit the allowed execCommands to the ones available in the toolbar. If true, then execCommand and keyboard shortcuts will fail if they are not defined in the toolbar.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('limitCommands', {
-                value: attr.limitCommands || false,
-                validator: YAHOO.lang.isBoolean
-            });
-            /**
-            * @config element_cont
-            * @description Internal config for the editors container
-            * @default false
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('element_cont', {
-                value: attr.element_cont
-            });
-            /**
-            * @private
-            * @config editor_wrapper
-            * @description The outter wrapper for the entire editor.
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('editor_wrapper', {
-                value: attr.editor_wrapper || null,
-                writeOnce: true
-            });
-            /**
-            * @attribute height
-            * @description The height of the editor iframe container, not including the toolbar..
-            * @default Best guessed size of the textarea, for best results use CSS to style the height of the textarea or pass it in as an argument
-            * @type String
-            */
-            this.setAttributeConfig('height', {
-                value: attr.height || Dom.getStyle(self.get('element'), 'height'),
-                method: function(height) {
-                    if (this._rendered) {
-                        //We have been rendered, change the height
-                        if (this.get('animate')) {
-                            var anim = new YAHOO.util.Anim(this.get('iframe').get('parentNode'), {
-                                height: {
-                                    to: parseInt(height, 10)
-                                }
-                            }, 0.5);
-                            anim.animate();
-                        } else {
-                            Dom.setStyle(this.get('iframe').get('parentNode'), 'height', height);
-                        }
-                    }
-                }
-            });
-            /**
-            * @config autoHeight
-            * @description Remove the scrollbars from the edit area and resize it to fit the content. It will not go any lower than the current config height.
-            * @default false
-            * @type Boolean || Number
-            */
-            this.setAttributeConfig('autoHeight', {
-                value: attr.autoHeight || false,
-                method: function(a) {
-                    if (a) {
-                        if (this.get('iframe')) {
-                            this.get('iframe').get('element').setAttribute('scrolling', 'no');
-                        }
-                        this.on('afterNodeChange', this._handleAutoHeight, this, true);
-                        this.on('editorKeyDown', this._handleAutoHeight, this, true);
-                        this.on('editorKeyPress', this._handleAutoHeight, this, true);
-                    } else {
-                        if (this.get('iframe')) {
-                            this.get('iframe').get('element').setAttribute('scrolling', 'auto');
-                        }
-                        this.unsubscribe('afterNodeChange', this._handleAutoHeight);
-                        this.unsubscribe('editorKeyDown', this._handleAutoHeight);
-                        this.unsubscribe('editorKeyPress', this._handleAutoHeight);
-                    }
-                }
-            });
-            /**
-            * @attribute width
-            * @description The width of the editor container.
-            * @default Best guessed size of the textarea, for best results use CSS to style the width of the textarea or pass it in as an argument
-            * @type String
-            */            
-            this.setAttributeConfig('width', {
-                value: attr.width || Dom.getStyle(this.get('element'), 'width'),
-                method: function(width) {
-                    if (this._rendered) {
-                        //We have been rendered, change the width
-                        if (this.get('animate')) {
-                            var anim = new YAHOO.util.Anim(this.get('element_cont').get('element'), {
-                                width: {
-                                    to: parseInt(width, 10)
-                                }
-                            }, 0.5);
-                            anim.animate();
-                        } else {
-                            this.get('element_cont').setStyle('width', width);
-                        }
-                    }
-                }
-            });
-                        
-            /**
-            * @attribute blankimage
-            * @description The URL for the image placeholder to put in when inserting an image.
-            * @default The yahooapis.com address for the current release + 'assets/blankimage.png'
-            * @type String
-            */            
-            this.setAttributeConfig('blankimage', {
-                value: attr.blankimage || this._getBlankImage()
-            });
-            /**
-            * @attribute css
-            * @description The Base CSS used to format the content of the editor
-            * @default <code><pre>html {
-                height: 95%;
-            }
-            body {
-                height: 100%;
-                padding: 7px; background-color: #fff; font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;
-            }
-            a {
-                color: blue;
-                text-decoration: underline;
-                cursor: pointer;
-            }
-            .warning-localfile {
-                border-bottom: 1px dashed red !important;
-            }
-            .yui-busy {
-                cursor: wait !important;
-            }
-            img.selected { //Safari image selection
-                border: 2px dotted #808080;
-            }
-            img {
-                cursor: pointer !important;
-                border: none;
-            }
-            </pre></code>
-            * @type String
-            */            
-            this.setAttributeConfig('css', {
-                value: attr.css || this._defaultCSS,
-                writeOnce: true
-            });
-            /**
-            * @attribute html
-            * @description The default HTML to be written to the iframe document before the contents are loaded (Note that the DOCTYPE attr will be added at render item)
-            * @default This HTML requires a few things if you are to override:
-                <p><code>{TITLE}, {CSS}, {HIDDEN_CSS}, {EXTRA_CSS}</code> and <code>{CONTENT}</code> need to be there, they are passed to YAHOO.lang.substitute to be replace with other strings.<p>
-                <p><code>onload="document.body._rteLoaded = true;"</code> : the onload statement must be there or the editor will not finish loading.</p>
-                <code>
-                <pre>
-                &lt;html&gt;
-                    &lt;head&gt;
-                        &lt;title&gt;{TITLE}&lt;/title&gt;
-                        &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt;
-                        &lt;style&gt;
-                        {CSS}
-                        &lt;/style&gt;
-                        &lt;style&gt;
-                        {HIDDEN_CSS}
-                        &lt;/style&gt;
-                        &lt;style&gt;
-                        {EXTRA_CSS}
-                        &lt;/style&gt;
-                    &lt;/head&gt;
-                &lt;body onload="document.body._rteLoaded = true;"&gt;
-                {CONTENT}
-                &lt;/body&gt;
-                &lt;/html&gt;
-                </pre>
-                </code>
-            * @type String
-            */            
-            this.setAttributeConfig('html', {
-                value: attr.html || '<html><head><title>{TITLE}</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><base href="' + this._baseHREF + '"><style>{CSS}</style><style>{HIDDEN_CSS}</style><style>{EXTRA_CSS}</style></head><body onload="document.body._rteLoaded = true;">{CONTENT}</body></html>',
-                writeOnce: true
-            });
-
-            /**
-            * @attribute extracss
-            * @description Extra user defined css to load after the default SimpleEditor CSS
-            * @default ''
-            * @type String
-            */            
-            this.setAttributeConfig('extracss', {
-                value: attr.extracss || '',
-                writeOnce: true
-            });
-
-            /**
-            * @attribute handleSubmit
-            * @description Config handles if the editor will attach itself to the textareas parent form's submit handler.
-            If it is set to true, the editor will attempt to attach a submit listener to the textareas parent form.
-            Then it will trigger the editors save handler and place the new content back into the text area before the form is submitted.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('handleSubmit', {
-                value: attr.handleSubmit || false,
-                method: function(exec) {
-                    if (this.get('element').form) {
-                        if (!this._formButtons) {
-                            this._formButtons = [];
-                        }
-                        if (exec) {
-                            Event.on(this.get('element').form, 'submit', this._handleFormSubmit, this, true);
-                            var i = this.get('element').form.getElementsByTagName('input');
-                            for (var s = 0; s < i.length; s++) {
-                                var type = i[s].getAttribute('type');
-                                if (type && (type.toLowerCase() == 'submit')) {
-                                    Event.on(i[s], 'click', this._handleFormButtonClick, this, true);
-                                    this._formButtons[this._formButtons.length] = i[s];
-                                }
-                            }
-                        } else {
-                            Event.removeListener(this.get('element').form, 'submit', this._handleFormSubmit);
-                            if (this._formButtons) {
-                                Event.removeListener(this._formButtons, 'click', this._handleFormButtonClick);
-                            }
-                        }
-                    }
-                }
-            });
-            /**
-            * @attribute disabled
-            * @description This will toggle the editor's disabled state. When the editor is disabled, designMode is turned off and a mask is placed over the iframe so no interaction can take place.
-            All Toolbar buttons are also disabled so they cannot be used.
-            * @default false
-            * @type Boolean
-            */
-
-            this.setAttributeConfig('disabled', {
-                value: false,
-                method: function(disabled) {
-                    if (this._rendered) {
-                        this._disableEditor(disabled);
-                    }
-                }
-            });
-            /**
-            * @config saveEl
-            * @description When save HTML is called, this element will be updated as well as the source of data.
-            * @default element
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('saveEl', {
-                value: this.get('element')
-            });
-            /**
-            * @config toolbar_cont
-            * @description Internal config for the toolbars container
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('toolbar_cont', {
-                value: null,
-                writeOnce: true
-            });
-            /**
-            * @attribute toolbar
-            * @description The default toolbar config.
-            * @type Object
-            */            
-            this.setAttributeConfig('toolbar', {
-                value: attr.toolbar || this._defaultToolbar,
-                writeOnce: true,
-                method: function(toolbar) {
-                    if (!toolbar.buttonType) {
-                        toolbar.buttonType = this._defaultToolbar.buttonType;
-                    }
-                    this._defaultToolbar = toolbar;
-                }
-            });
-            /**
-            * @attribute animate
-            * @description Should the editor animate window movements
-            * @default false unless Animation is found, then true
-            * @type Boolean
-            */            
-            this.setAttributeConfig('animate', {
-                value: ((attr.animate) ? ((YAHOO.util.Anim) ? true : false) : false),
-                validator: function(value) {
-                    var ret = true;
-                    if (!YAHOO.util.Anim) {
-                        ret = false;
-                    }
-                    return ret;
-                }
-            });
-            /**
-            * @config panel
-            * @description A reference to the panel we are using for windows.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('panel', {
-                value: null,
-                writeOnce: true,
-                validator: function(value) {
-                    var ret = true;
-                    if (!YAHOO.widget.Overlay) {
-                        ret = false;
-                    }
-                    return ret;
-                }               
-            });
-            /**
-            * @attribute focusAtStart
-            * @description Should we focus the window when the content is ready?
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('focusAtStart', {
-                value: attr.focusAtStart || false,
-                writeOnce: true,
-                method: function(fs) {
-                    if (fs) {
-                        this.on('editorContentLoaded', function() {
-                            var self = this;
-                            setTimeout(function() {
-                                self._focusWindow.call(self, true);
-                                self.editorDirty = false;
-                            }, 400);
-                        }, this, true);
-                    }
-                }
-            });
-            /**
-            * @attribute dompath
-            * @description Toggle the display of the current Dom path below the editor
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('dompath', {
-                value: attr.dompath || false,
-                method: function(dompath) {
-                    if (dompath && !this.dompath) {
-                        this.dompath = document.createElement('DIV');
-                        this.dompath.id = this.get('id') + '_dompath';
-                        Dom.addClass(this.dompath, 'dompath');
-                        this.get('element_cont').get('firstChild').appendChild(this.dompath);
-                        if (this.get('iframe')) {
-                            this._writeDomPath();
-                        }
-                    } else if (!dompath && this.dompath) {
-                        this.dompath.parentNode.removeChild(this.dompath);
-                        this.dompath = null;
-                    }
-                }
-            });
-            /**
-            * @attribute markup
-            * @description Should we try to adjust the markup for the following types: semantic, css, default or xhtml
-            * @default "semantic"
-            * @type String
-            */            
-            this.setAttributeConfig('markup', {
-                value: attr.markup || 'semantic',
-                validator: function(markup) {
-                    switch (markup.toLowerCase()) {
-                        case 'semantic':
-                        case 'css':
-                        case 'default':
-                        case 'xhtml':
-                        return true;
-                    }
-                    return false;
-                }
-            });
-            /**
-            * @attribute removeLineBreaks
-            * @description Should we remove linebreaks and extra spaces on cleanup
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('removeLineBreaks', {
-                value: attr.removeLineBreaks || false,
-                validator: YAHOO.lang.isBoolean
-            });
-            
-            /**
-            * @config drag
-            * @description Set this config to make the Editor draggable, pass 'proxy' to make use YAHOO.util.DDProxy.
-            * @type {Boolean/String}
-            */
-            this.setAttributeConfig('drag', {
-                writeOnce: true,
-                value: attr.drag || false
-            });
-
-            /**
-            * @config resize
-            * @description Set this to true to make the Editor Resizable with YAHOO.util.Resize. The default config is available: myEditor._resizeConfig
-            * Animation will be ignored while performing this resize to allow for the dynamic change in size of the toolbar.
-            * @type Boolean
-            */
-            this.setAttributeConfig('resize', {
-                writeOnce: true,
-                value: attr.resize || false
-            });
-        },
-        /**
-        * @private
-        * @method _getBlankImage
-        * @description Retrieves the full url of the image to use as the blank image.
-        * @return {String} The URL to the blank image
-        */
-        _getBlankImage: function() {
-            if (!this.DOMReady) {
-                this._queue[this._queue.length] = ['_getBlankImage', arguments];
-                return '';
-            }
-            var img = '';
-            if (!this._blankImageLoaded) {
-                if (YAHOO.widget.EditorInfo.blankImage) {
-                    this.set('blankimage', YAHOO.widget.EditorInfo.blankImage);
-                    this._blankImageLoaded = true;
-                } else {
-                    var div = document.createElement('div');
-                    div.style.position = 'absolute';
-                    div.style.top = '-9999px';
-                    div.style.left = '-9999px';
-                    div.className = this.CLASS_PREFIX + '-blankimage';
-                    document.body.appendChild(div);
-                    img = YAHOO.util.Dom.getStyle(div, 'background-image');
-                    img = img.replace('url(', '').replace(')', '').replace(/"/g, '');
-                    //Adobe AIR Code
-                    img = img.replace('app:/', '');             
-                    this.set('blankimage', img);
-                    this._blankImageLoaded = true;
-                    div.parentNode.removeChild(div);
-                    YAHOO.widget.EditorInfo.blankImage = img;
-                }
-            } else {
-                img = this.get('blankimage');
-            }
-            return img;
-        },
-        /**
-        * @private
-        * @method _handleAutoHeight
-        * @description Handles resizing the editor's height based on the content
-        */
-        _handleAutoHeight: function() {
-            var doc = this._getDoc(),
-                body = doc.body,
-                docEl = doc.documentElement;
-
-            var height = parseInt(Dom.getStyle(this.get('editor_wrapper'), 'height'), 10);
-            var newHeight = body.scrollHeight;
-            if (this.browser.webkit) {
-                newHeight = docEl.scrollHeight;
-            }
-            if (newHeight < parseInt(this.get('height'), 10)) {
-                newHeight = parseInt(this.get('height'), 10);
-            }
-            if ((height != newHeight) && (newHeight >= parseInt(this.get('height'), 10))) {   
-                Dom.setStyle(this.get('editor_wrapper'), 'height', newHeight + 'px');
-                if (this.browser.ie) {
-                    //Internet Explorer needs this
-                    this.get('iframe').setStyle('height', '99%');
-                    this.get('iframe').setStyle('zoom', '1');
-                    var self = this;
-                    window.setTimeout(function() {
-                        self.get('iframe').setStyle('height', '100%');
-                    }, 1);
-                }
-            }
-        },
-        /**
-        * @private
-        * @property _formButtons
-        * @description Array of buttons that are in the Editor's parent form (for handleSubmit)
-        * @type Array
-        */
-        _formButtons: null,
-        /**
-        * @private
-        * @property _formButtonClicked
-        * @description The form button that was clicked to submit the form.
-        * @type HTMLElement
-        */
-        _formButtonClicked: null,
-        /**
-        * @private
-        * @method _handleFormButtonClick
-        * @description The click listener assigned to each submit button in the Editor's parent form.
-        * @param {Event} ev The click event
-        */
-        _handleFormButtonClick: function(ev) {
-            var tar = Event.getTarget(ev);
-            this._formButtonClicked = tar;
-        },
-        /**
-        * @private
-        * @method _handleFormSubmit
-        * @description Handles the form submission.
-        * @param {Object} ev The Form Submit Event
-        */
-        _handleFormSubmit: function(ev) {
-            this.saveHTML();
-
-            var form = this.get('element').form,
-                tar = this._formButtonClicked || false;
-
-            Event.removeListener(form, 'submit', this._handleFormSubmit);
-            if (YAHOO.env.ua.ie) {
-                //form.fireEvent("onsubmit");
-                if (tar && !tar.disabled) {
-                    tar.click();
-                }
-            } else {  // Gecko, Opera, and Safari
-                if (tar && !tar.disabled) {
-                    tar.click();
-                }
-                var oEvent = document.createEvent("HTMLEvents");
-                oEvent.initEvent("submit", true, true);
-                form.dispatchEvent(oEvent);
-                if (YAHOO.env.ua.webkit) {
-                    if (YAHOO.lang.isFunction(form.submit)) {
-                        form.submit();
-                    }
-                }
-            }
-            //2.6.0
-            //Removed this, not need since removing Safari 2.x
-            //Event.stopEvent(ev);
-        },
-        /**
-        * @private
-        * @method _handleFontSize
-        * @description Handles the font size button in the toolbar.
-        * @param {Object} o Object returned from Toolbar's buttonClick Event
-        */
-        _handleFontSize: function(o) {
-            var button = this.toolbar.getButtonById(o.button.id);
-            var value = button.get('label') + 'px';
-            this.execCommand('fontsize', value);
-            this.STOP_EXEC_COMMAND = true;
-        },
-        /**
-        * @private
-        * @description Handles the colorpicker buttons in the toolbar.
-        * @param {Object} o Object returned from Toolbar's buttonClick Event
-        */
-        _handleColorPicker: function(o) {
-            var cmd = o.button;
-            var value = '#' + o.color;
-            if ((cmd == 'forecolor') || (cmd == 'backcolor')) {
-                this.execCommand(cmd, value);
-            }
-        },
-        /**
-        * @private
-        * @method _handleAlign
-        * @description Handles the alignment buttons in the toolbar.
-        * @param {Object} o Object returned from Toolbar's buttonClick Event
-        */
-        _handleAlign: function(o) {
-            var cmd = null;
-            for (var i = 0; i < o.button.menu.length; i++) {
-                if (o.button.menu[i].value == o.button.value) {
-                    cmd = o.button.menu[i].value;
-                }
-            }
-            var value = this._getSelection();
-
-            this.execCommand(cmd, value);
-            this.STOP_EXEC_COMMAND = true;
-        },
-        /**
-        * @private
-        * @method _handleAfterNodeChange
-        * @description Fires after a nodeChange happens to setup the things that where reset on the node change (button state).
-        */
-        _handleAfterNodeChange: function() {
-            var path = this._getDomPath(),
-                elm = null,
-                family = null,
-                fontsize = null,
-                validFont = false,
-                fn_button = this.toolbar.getButtonByValue('fontname'),
-                fs_button = this.toolbar.getButtonByValue('fontsize'),
-                hd_button = this.toolbar.getButtonByValue('heading');
-
-            for (var i = 0; i < path.length; i++) {
-                elm = path[i];
-
-                var tag = elm.tagName.toLowerCase();
-
-
-                if (elm.getAttribute('tag')) {
-                    tag = elm.getAttribute('tag');
-                }
-
-                family = elm.getAttribute('face');
-                if (Dom.getStyle(elm, 'font-family')) {
-                    family = Dom.getStyle(elm, 'font-family');
-                    //Adobe AIR Code
-                    family = family.replace(/'/g, '');                    
-                }
-
-                if (tag.substring(0, 1) == 'h') {
-                    if (hd_button) {
-                        for (var h = 0; h < hd_button._configs.menu.value.length; h++) {
-                            if (hd_button._configs.menu.value[h].value.toLowerCase() == tag) {
-                                hd_button.set('label', hd_button._configs.menu.value[h].text);
-                            }
-                        }
-                        this._updateMenuChecked('heading', tag);
-                    }
-                }
-            }
-
-            if (fn_button) {
-                for (var b = 0; b < fn_button._configs.menu.value.length; b++) {
-                    if (family && fn_button._configs.menu.value[b].text.toLowerCase() == family.toLowerCase()) {
-                        validFont = true;
-                        family = fn_button._configs.menu.value[b].text; //Put the proper menu name in the button
-                    }
-                }
-                if (!validFont) {
-                    family = fn_button._configs.label._initialConfig.value;
-                }
-                var familyLabel = '<span class="yui-toolbar-fontname-' + this._cleanClassName(family) + '">' + family + '</span>';
-                if (fn_button.get('label') != familyLabel) {
-                    fn_button.set('label', familyLabel);
-                    this._updateMenuChecked('fontname', family);
-                }
-            }
-
-            if (fs_button) {
-                fontsize = parseInt(Dom.getStyle(elm, 'fontSize'), 10);
-                if ((fontsize === null) || isNaN(fontsize)) {
-                    fontsize = fs_button._configs.label._initialConfig.value;
-                }
-                fs_button.set('label', ''+fontsize);
-            }
-            
-            if (!this._isElement(elm, 'body') && !this._isElement(elm, 'img')) {
-                this.toolbar.enableButton(fn_button);
-                this.toolbar.enableButton(fs_button);
-                this.toolbar.enableButton('forecolor');
-                this.toolbar.enableButton('backcolor');
-            }
-            if (this._isElement(elm, 'img')) {
-                if (YAHOO.widget.Overlay) {
-                    this.toolbar.enableButton('createlink');
-                }
-            }
-            if (this._hasParent(elm, 'blockquote')) {
-                this.toolbar.selectButton('indent');
-                this.toolbar.disableButton('indent');
-                this.toolbar.enableButton('outdent');
-            }
-            if (this._hasParent(elm, 'ol') || this._hasParent(elm, 'ul')) {
-                this.toolbar.disableButton('indent');
-            }
-            this._lastButton = null;
-            
-        },
-        /**
-        * @private
-        * @method _handleInsertImageClick
-        * @description Opens the Image Properties Window when the insert Image button is clicked or an Image is Double Clicked.
-        */
-        _handleInsertImageClick: function() {
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue('insertimage')) {
-                    YAHOO.log('Toolbar Button for (insertimage) was not found, skipping exec.', 'info', 'SimpleEditor');
-                    return false;
-                }
-            }
-        
-            this.toolbar.set('disabled', true); //Disable the toolbar when the prompt is showing
-            this.on('afterExecCommand', function() {
-                var el = this.currentElement[0],
-                    src = 'http://';
-                if (!el) {
-                    el = this._getSelectedElement();
-                }
-                if (el) {
-                    if (el.getAttribute('src')) {
-                        src = el.getAttribute('src', 2);
-                        if (src.indexOf(this.get('blankimage')) != -1) {
-                            src = this.STR_IMAGE_HERE;
-                        }
-                    }
-                }
-                var str = prompt(this.STR_LINK_URL + ': ', src);
-                if ((str !== '') && (str !== null)) {
-                    el.setAttribute('src', str);
-                } else if (str === null) {
-                    el.parentNode.removeChild(el);
-                    this.currentElement = [];
-                    this.nodeChange();
-                }
-                this.closeWindow();
-                this.toolbar.set('disabled', false);
-            }, this, true);
-        },
-        /**
-        * @private
-        * @method _handleInsertImageWindowClose
-        * @description Handles the closing of the Image Properties Window.
-        */
-        _handleInsertImageWindowClose: function() {
-            this.nodeChange();
-        },
-        /**
-        * @private
-        * @method _isLocalFile
-        * @param {String} url THe url/string to check
-        * @description Checks to see if a string (href or img src) is possibly a local file reference..
-        */
-        _isLocalFile: function(url) {
-            if ((url) && (url !== '') && ((url.indexOf('file:/') != -1) || (url.indexOf(':\\') != -1))) {
-                return true;
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _handleCreateLinkClick
-        * @description Handles the opening of the Link Properties Window when the Create Link button is clicked or an href is doubleclicked.
-        */
-        _handleCreateLinkClick: function() {
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue('createlink')) {
-                    YAHOO.log('Toolbar Button for (createlink) was not found, skipping exec.', 'info', 'SimpleEditor');
-                    return false;
-                }
-            }
-        
-            this.toolbar.set('disabled', true); //Disable the toolbar when the prompt is showing
-
-            this.on('afterExecCommand', function() {
-                var el = this.currentElement[0],
-                    url = '';
-
-                if (el) {
-                    if (el.getAttribute('href', 2) !== null) {
-                        url = el.getAttribute('href', 2);
-                    }
-                }
-                var str = prompt(this.STR_LINK_URL + ': ', url);
-                if ((str !== '') && (str !== null)) {
-                    var urlValue = str;
-                    if ((urlValue.indexOf(':/'+'/') == -1) && (urlValue.substring(0,1) != '/') && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                        if ((urlValue.indexOf('@') != -1) && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                            //Found an @ sign, prefix with mailto:
-                            urlValue = 'mailto:' + urlValue;
-                        } else {
-                            /* :// not found adding */
-                            if (urlValue.substring(0, 1) != '#') {
-                                //urlValue = 'http:/'+'/' + urlValue;
-                            }
-                        }
-                    }
-                    el.setAttribute('href', urlValue);
-                } else if (str !== null) {
-                    var _span = this._getDoc().createElement('span');
-                    _span.innerHTML = el.innerHTML;
-                    Dom.addClass(_span, 'yui-non');
-                    el.parentNode.replaceChild(_span, el);
-                }
-                this.closeWindow();
-                this.toolbar.set('disabled', false);
-            }, this);
-
-        },
-        /**
-        * @private
-        * @method _handleCreateLinkWindowClose
-        * @description Handles the closing of the Link Properties Window.
-        */
-        _handleCreateLinkWindowClose: function() {
-            this.nodeChange();
-            this.currentElement = [];
-        },
-        /**
-        * @method render
-        * @description Calls the private method _render in a setTimeout to allow for other things on the page to continue to load.
-        */
-        render: function() {
-            if (this._rendered) {
-                return false;
-            }
-            YAHOO.log('Render', 'info', 'SimpleEditor');
-            if (!this.DOMReady) {
-                YAHOO.log('!DOMReady', 'info', 'SimpleEditor');
-                this._queue[this._queue.length] = ['render', arguments];
-                return false;
-            }
-            if (this.get('element')) {
-                if (this.get('element').tagName) {
-                    this._textarea = true;
-                    if (this.get('element').tagName.toLowerCase() !== 'textarea') {
-                        this._textarea = false;
-                    }
-                } else {
-                    YAHOO.log('No Valid Element', 'error', 'SimpleEditor');
-                    return false;
-                }
-            } else {
-                YAHOO.log('No Element', 'error', 'SimpleEditor');
-                return false;
-            }
-            this._rendered = true;
-            var self = this;
-            window.setTimeout(function() {
-                self._render.call(self);
-            }, 4);
-        },
-        /**
-        * @private
-        * @method _render
-        * @description Causes the toolbar and the editor to render and replace the textarea.
-        */
-        _render: function() {
-            var self = this;
-            this.set('textarea', this.get('element'));
-
-            this.get('element_cont').setStyle('display', 'none');
-            this.get('element_cont').addClass(this.CLASS_CONTAINER);
-
-            this.set('iframe', this._createIframe());
-            window.setTimeout(function() {
-                self._setInitialContent.call(self);
-            }, 10);
-
-            this.get('editor_wrapper').appendChild(this.get('iframe').get('element'));
-
-            if (this.get('disabled')) {
-                this._disableEditor(true);
-            }
-
-            var tbarConf = this.get('toolbar');
-            //Create Toolbar instance
-            if (tbarConf instanceof Toolbar) {
-                this.toolbar = tbarConf;
-                //Set the toolbar to disabled until content is loaded
-                this.toolbar.set('disabled', true);
-            } else {
-                //Set the toolbar to disabled until content is loaded
-                tbarConf.disabled = true;
-                this.toolbar = new Toolbar(this.get('toolbar_cont'), tbarConf);
-            }
-
-            YAHOO.log('fireEvent::toolbarLoaded', 'info', 'SimpleEditor');
-            this.fireEvent('toolbarLoaded', { type: 'toolbarLoaded', target: this.toolbar });
-
-            
-            this.toolbar.on('toolbarCollapsed', function() {
-                if (this.currentWindow) {
-                    this.moveWindow();
-                }
-            }, this, true);
-            this.toolbar.on('toolbarExpanded', function() {
-                if (this.currentWindow) {
-                    this.moveWindow();
-                }
-            }, this, true);
-            this.toolbar.on('fontsizeClick', this._handleFontSize, this, true);
-            
-            this.toolbar.on('colorPickerClicked', function(o) {
-                this._handleColorPicker(o);
-                return false; //Stop the buttonClick event
-            }, this, true);
-
-            this.toolbar.on('alignClick', this._handleAlign, this, true);
-            this.on('afterNodeChange', this._handleAfterNodeChange, this, true);
-            this.toolbar.on('insertimageClick', this._handleInsertImageClick, this, true);
-            this.on('windowinsertimageClose', this._handleInsertImageWindowClose, this, true);
-            this.toolbar.on('createlinkClick', this._handleCreateLinkClick, this, true);
-            this.on('windowcreatelinkClose', this._handleCreateLinkWindowClose, this, true);
-            
-
-            //Replace Textarea with editable area
-            this.get('parentNode').replaceChild(this.get('element_cont').get('element'), this.get('element'));
-
-            
-            this.setStyle('visibility', 'hidden');
-            this.setStyle('position', 'absolute');
-            this.setStyle('top', '-9999px');
-            this.setStyle('left', '-9999px');
-            this.get('element_cont').appendChild(this.get('element'));
-            this.get('element_cont').setStyle('display', 'block');
-
-
-            Dom.addClass(this.get('iframe').get('parentNode'), this.CLASS_EDITABLE_CONT);
-            this.get('iframe').addClass(this.CLASS_EDITABLE);
-
-            //Set height and width of editor container
-            this.get('element_cont').setStyle('width', this.get('width'));
-            Dom.setStyle(this.get('iframe').get('parentNode'), 'height', this.get('height'));
-
-            this.get('iframe').setStyle('width', '100%'); //WIDTH
-            this.get('iframe').setStyle('height', '100%');
-
-            this._setupDD();
-
-            window.setTimeout(function() {
-                self._setupAfterElement.call(self);
-            }, 0);
-            this.fireEvent('afterRender', { type: 'afterRender', target: this });
-        },
-        /**
-        * @method execCommand
-        * @param {String} action The "execCommand" action to try to execute (Example: bold, insertimage, inserthtml)
-        * @param {String} value (optional) The value for a given action such as action: fontname value: 'Verdana'
-        * @description This method attempts to try and level the differences in the various browsers and their support for execCommand actions
-        */
-        execCommand: function(action, value) {
-            var beforeExec = this.fireEvent('beforeExecCommand', { type: 'beforeExecCommand', target: this, args: arguments });
-            if ((beforeExec === false) || (this.STOP_EXEC_COMMAND)) {
-                this.STOP_EXEC_COMMAND = false;
-                return false;
-            }
-            this._lastCommand = action;
-            this._setMarkupType(action);
-            if (this.browser.ie) {
-                this._getWindow().focus();
-            }
-            var exec = true;
-            
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue(action)) {
-                    YAHOO.log('Toolbar Button for (' + action + ') was not found, skipping exec.', 'info', 'SimpleEditor');
-                    exec = false;
-                }
-            }
-
-            this.editorDirty = true;
-            
-            if ((typeof this['cmd_' + action.toLowerCase()] == 'function') && exec) {
-                YAHOO.log('Found execCommand override method: (cmd_' + action.toLowerCase() + ')', 'info', 'SimpleEditor');
-                var retValue = this['cmd_' + action.toLowerCase()](value);
-                exec = retValue[0];
-                if (retValue[1]) {
-                    action = retValue[1];
-                }
-                if (retValue[2]) {
-                    value = retValue[2];
-                }
-            }
-            if (exec) {
-                YAHOO.log('execCommand::(' + action + '), (' + value + ')', 'info', 'SimpleEditor');
-                try {
-                    this._getDoc().execCommand(action, false, value);
-                } catch(e) {
-                    YAHOO.log('execCommand Failed', 'error', 'SimpleEditor');
-                }
-            } else {
-                YAHOO.log('OVERRIDE::execCommand::(' + action + '),(' + value + ') skipped', 'warn', 'SimpleEditor');
-            }
-            this.on('afterExecCommand', function() {
-                this.unsubscribeAll('afterExecCommand');
-                this.nodeChange();
-            }, this, true);
-            this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-            
-        },
-    /* {{{  Command Overrides */
-
-        /**
-        * @method cmd_underline
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('underline') is used.
-        */
-        cmd_underline: function(value) {
-            if (!this.browser.webkit) {
-                var el = this._getSelectedElement();
-                if (el && this._isElement(el, 'span')) {
-                    if (el.style.textDecoration == 'underline') {
-                        el.style.textDecoration = 'none';
-                    } else {
-                        el.style.textDecoration = 'underline';
-                    }
-                    return [false];
-                }
-            }
-            return [true];
-        },
-        /**
-        * @method cmd_backcolor
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('backcolor') is used.
-        */
-        cmd_backcolor: function(value) {
-            var exec = true,
-                el = this._getSelectedElement(),
-                action = 'backcolor';
-
-            if (this.browser.gecko || this.browser.opera) {
-                this._setEditorStyle(true);
-                action = 'hilitecolor';
-            }
-
-            if (!this._isElement(el, 'body') && !this._hasSelection()) {
-                Dom.setStyle(el, 'background-color', value);
-                this._selectNode(el);
-                exec = false;
-            } else if (!this._isElement(el, 'body') && this._hasSelection()) {
-                Dom.setStyle(el, 'background-color', value);
-                this._selectNode(el);
-                exec = false;
-            } else {
-                if (this.get('insert')) {
-                    el = this._createInsertElement({ backgroundColor: value });
-                } else {
-                    this._createCurrentElement('span', { backgroundColor: value });
-                    this._selectNode(this.currentElement[0]);
-                }
-                exec = false;
-            }
-
-            return [exec, action];
-        },
-        /**
-        * @method cmd_forecolor
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('forecolor') is used.
-        */
-        cmd_forecolor: function(value) {
-            var exec = true,
-                el = this._getSelectedElement();
-                
-
-                if (!this._isElement(el, 'body') && !this._hasSelection()) {
-                    Dom.setStyle(el, 'color', value);
-                    this._selectNode(el);
-                    exec = false;
-                } else if (!this._isElement(el, 'body') && this._hasSelection()) {
-                    Dom.setStyle(el, 'color', value);
-                    this._selectNode(el);
-                    exec = false;
-                } else {
-                    if (this.get('insert')) {
-                        el = this._createInsertElement({ color: value });
-                    } else {
-                        this._createCurrentElement('span', { color: value });
-                        this._selectNode(this.currentElement[0]);
-                    }
-                    exec = false;
-                }
-                return [exec];
-        },
-        /**
-        * @method cmd_unlink
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('unlink') is used.
-        */
-        cmd_unlink: function(value) {
-            this._swapEl(this.currentElement[0], 'span', function(el) {
-                el.className = 'yui-non';
-            });
-            return [false];
-        },
-        /**
-        * @method cmd_createlink
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('createlink') is used.
-        */
-        cmd_createlink: function(value) {
-            var el = this._getSelectedElement(), _a = null;
-            if (this._hasParent(el, 'a')) {
-                this.currentElement[0] = this._hasParent(el, 'a');
-            } else if (!this._isElement(el, 'a')) {
-                this._createCurrentElement('a');
-                _a = this._swapEl(this.currentElement[0], 'a');
-                this.currentElement[0] = _a;
-            } else {
-                this.currentElement[0] = el;
-            }
-            return [false];
-        },
-        /**
-        * @method cmd_insertimage
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('insertimage') is used.
-        */
-        cmd_insertimage: function(value) {
-            var exec = true, _img = null, action = 'insertimage',
-                el = this._getSelectedElement();
-
-            if (value === '') {
-                value = this.get('blankimage');
-            }
-
-            /**
-            * @knownissue
-            * @browser Safari 2.x
-            * @description The issue here is that we have no way of knowing where the cursor position is
-            * inside of the iframe, so we have to place the newly inserted data in the best place that we can.
-            */
-            
-            YAHOO.log('InsertImage: ' + el.tagName, 'info', 'SimpleEditor');
-            if (this._isElement(el, 'img')) {
-                this.currentElement[0] = el;
-                exec = false;
-            } else {
-                if (this._getDoc().queryCommandEnabled(action)) {
-                    this._getDoc().execCommand('insertimage', false, value);
-                    var imgs = this._getDoc().getElementsByTagName('img');
-                    for (var i = 0; i < imgs.length; i++) {
-                        if (!YAHOO.util.Dom.hasClass(imgs[i], 'yui-img')) {
-                            YAHOO.util.Dom.addClass(imgs[i], 'yui-img');
-                            this.currentElement[0] = imgs[i];
-                        }
-                    }
-                    exec = false;
-                } else {
-                    if (el == this._getDoc().body) {
-                        _img = this._getDoc().createElement('img');
-                        _img.setAttribute('src', value);
-                        YAHOO.util.Dom.addClass(_img, 'yui-img');
-                        this._getDoc().body.appendChild(_img);
-                    } else {
-                        this._createCurrentElement('img');
-                        _img = this._getDoc().createElement('img');
-                        _img.setAttribute('src', value);
-                        YAHOO.util.Dom.addClass(_img, 'yui-img');
-                        this.currentElement[0].parentNode.replaceChild(_img, this.currentElement[0]);
-                    }
-                    this.currentElement[0] = _img;
-                    exec = false;
-                }
-            }
-            return [exec];
-        },
-        /**
-        * @method cmd_inserthtml
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('inserthtml') is used.
-        */
-        cmd_inserthtml: function(value) {
-            var exec = true, action = 'inserthtml', _span = null, _range = null;
-            /**
-            * @knownissue
-            * @browser Safari 2.x
-            * @description The issue here is that we have no way of knowing where the cursor position is
-            * inside of the iframe, so we have to place the newly inserted data in the best place that we can.
-            */
-            if (this.browser.webkit && !this._getDoc().queryCommandEnabled(action)) {
-                YAHOO.log('More Safari DOM tricks (inserthtml)', 'info', 'EditorSafari');
-                this._createCurrentElement('img');
-                _span = this._getDoc().createElement('span');
-                _span.innerHTML = value;
-                this.currentElement[0].parentNode.replaceChild(_span, this.currentElement[0]);
-                exec = false;
-            } else if (this.browser.ie) {
-                _range = this._getRange();
-                if (_range.item) {
-                    _range.item(0).outerHTML = value;
-                } else {
-                    _range.pasteHTML(value);
-                }
-                exec = false;                    
-            }
-            return [exec];
-        },
-        /**
-        * @method cmd_list
-        * @param tag The tag of the list you want to create (eg, ul or ol)
-        * @description This is a combined execCommand override method. It is called from the cmd_insertorderedlist and cmd_insertunorderedlist methods.
-        */
-        cmd_list: function(tag) {
-            var exec = true, list = null, li = 0, el = null, str = '',
-                selEl = this._getSelectedElement(), action = 'insertorderedlist';
-                if (tag == 'ul') {
-                    action = 'insertunorderedlist';
-                }
-            /**
-            * @knownissue Safari 2.+ doesn't support ordered and unordered lists
-            * @browser Safari 2.x
-            * The issue with this workaround is that when applied to a set of text
-            * that has BR's in it, Safari may or may not pick up the individual items as
-            * list items. This is fixed in WebKit (Safari 3)
-            * 2.6.0: Seems there are still some issues with List Creation and Safari 3, reverting to previously working Safari 2.x code
-            */
-            //if ((this.browser.webkit && !this._getDoc().queryCommandEnabled(action))) {
-            if (this.browser.webkit) {
-                if (this._isElement(selEl, 'li') && this._isElement(selEl.parentNode, tag)) {
-                    YAHOO.log('We already have a list, undo it', 'info', 'SimpleEditor');
-                    el = selEl.parentNode;
-                    list = this._getDoc().createElement('span');
-                    YAHOO.util.Dom.addClass(list, 'yui-non');
-                    str = '';
-                    var lis = el.getElementsByTagName('li');
-                    for (li = 0; li < lis.length; li++) {
-                        str += '<div>' + lis[li].innerHTML + '</div>';
-                    }
-                    list.innerHTML = str;
-                    this.currentElement[0] = el;
-                    this.currentElement[0].parentNode.replaceChild(list, this.currentElement[0]);
-                } else {
-                    YAHOO.log('Create list item', 'info', 'SimpleEditor');
-                    this._createCurrentElement(tag.toLowerCase());
-                    list = this._getDoc().createElement(tag);
-                    for (li = 0; li < this.currentElement.length; li++) {
-                        var newli = this._getDoc().createElement('li');
-                        newli.innerHTML = this.currentElement[li].innerHTML + '<span class="yui-non">&nbsp;</span>&nbsp;';
-                        list.appendChild(newli);
-                        if (li > 0) {
-                            this.currentElement[li].parentNode.removeChild(this.currentElement[li]);
-                        }
-                    }
-                    this.currentElement[0].parentNode.replaceChild(list, this.currentElement[0]);
-                    this.currentElement[0] = list;
-                    var _h = this.currentElement[0].firstChild;
-                    _h = Dom.getElementsByClassName('yui-non', 'span', _h)[0];
-                    this._getSelection().setBaseAndExtent(_h, 1, _h, _h.innerText.length);
-                }
-                exec = false;
-            } else {
-                el = this._getSelectedElement();
-                YAHOO.log(el.tagName);
-                if (this._isElement(el, 'li') && this._isElement(el.parentNode, tag) || (this.browser.ie && this._isElement(this._getRange().parentElement, 'li')) || (this.browser.ie && this._isElement(el, 'ul')) || (this.browser.ie && this._isElement(el, 'ol'))) { //we are in a list..
-                    YAHOO.log('We already have a list, undo it', 'info', 'SimpleEditor');
-                    if (this.browser.ie) {
-                        if ((this.browser.ie && this._isElement(el, 'ul')) || (this.browser.ie && this._isElement(el, 'ol'))) {
-                            el = el.getElementsByTagName('li')[0];
-                        }
-                        YAHOO.log('Undo IE', 'info', 'SimpleEditor');
-                        str = '';
-                        var lis2 = el.parentNode.getElementsByTagName('li');
-                        for (var j = 0; j < lis2.length; j++) {
-                            str += lis2[j].innerHTML + '<br>';
-                        }
-                        var newEl = this._getDoc().createElement('span');
-                        newEl.innerHTML = str;
-                        el.parentNode.parentNode.replaceChild(newEl, el.parentNode);
-                    } else {
-                        this.nodeChange();
-                        this._getDoc().execCommand(action, '', el.parentNode);
-                        this.nodeChange();
-                    }
-                    exec = false;
-                }
-                if (this.browser.opera) {
-                    var self = this;
-                    window.setTimeout(function() {
-                        var liso = self._getDoc().getElementsByTagName('li');
-                        for (var i = 0; i < liso.length; i++) {
-                            if (liso[i].innerHTML.toLowerCase() == '<br>') {
-                                liso[i].parentNode.parentNode.removeChild(liso[i].parentNode);
-                            }
-                        }
-                    },30);
-                }
-                if (this.browser.ie && exec) {
-                    var html = '';
-                    if (this._getRange().html) {
-                        html = '<li>' + this._getRange().html+ '</li>';
-                    } else {
-                        var t = this._getRange().text.split('\n');
-                        if (t.length > 1) {
-                            html = '';
-                            for (var ie = 0; ie < t.length; ie++) {
-                                html += '<li>' + t[ie] + '</li>';
-                            }
-                        } else {
-                            var txt = this._getRange().text;
-                            if (txt === '') {
-                                html = '<li id="new_list_item">' + txt + '</li>';
-                            } else {
-                                html = '<li>' + txt + '</li>';
-                            }
-                        }
-                    }
-                    this._getRange().pasteHTML('<' + tag + '>' + html + '</' + tag + '>');
-                    var new_item = this._getDoc().getElementById('new_list_item');
-                    if (new_item) {
-                        var range = this._getDoc().body.createTextRange();
-                        range.moveToElementText(new_item);
-                        range.collapse(false);
-                        range.select();                       
-                        new_item.id = '';
-                    }
-                    exec = false;
-                }
-            }
-            return exec;
-        },
-        /**
-        * @method cmd_insertorderedlist
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('insertorderedlist ') is used.
-        */
-        cmd_insertorderedlist: function(value) {
-            return [this.cmd_list('ol')];
-        },
-        /**
-        * @method cmd_insertunorderedlist 
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('insertunorderedlist') is used.
-        */
-        cmd_insertunorderedlist: function(value) {
-            return [this.cmd_list('ul')];
-        },
-        /**
-        * @method cmd_fontname
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('fontname') is used.
-        */
-        cmd_fontname: function(value) {
-            var exec = true,
-                selEl = this._getSelectedElement();
-
-            this.currentFont = value;
-            if (selEl && selEl.tagName && !this._hasSelection() && !this._isElement(selEl, 'body') && !this.get('insert')) {
-                YAHOO.util.Dom.setStyle(selEl, 'font-family', value);
-                exec = false;
-            } else if (this.get('insert') && !this._hasSelection()) {
-                YAHOO.log('No selection and no selected element and we are in insert mode', 'info', 'SimpleEditor');
-                var el = this._createInsertElement({ fontFamily: value });
-                exec = false;
-            }
-            return [exec];
-        },
-        /**
-        * @method cmd_fontsize
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('fontsize') is used.
-        */
-        cmd_fontsize: function(value) {
-            var el = null;
-            if (this.currentElement && (this.currentElement.length > 0) && (!this._hasSelection()) && (!this.get('insert'))) {
-                YAHOO.util.Dom.setStyle(this.currentElement, 'fontSize', value);
-            } else if (!this._isElement(this._getSelectedElement(), 'body')) {
-                el = this._getSelectedElement();
-                YAHOO.util.Dom.setStyle(el, 'fontSize', value);
-                if (this.get('insert') && this.browser.ie) {
-                    var r = this._getRange();
-                    r.collapse(false);
-                    r.select();
-                } else {
-                    this._selectNode(el);
-                }
-            } else {
-                if (this.get('insert') && !this._hasSelection()) {
-                    el = this._createInsertElement({ fontSize: value });
-                    this.currentElement[0] = el;
-                    this._selectNode(this.currentElement[0]);
-                } else {
-                    this._createCurrentElement('span', {'fontSize': value });
-                    this._selectNode(this.currentElement[0]);
-                }
-            }
-            return [false];
-        },
-    /* }}} */
-        /**
-        * @private
-        * @method _swapEl
-        * @param {HTMLElement} el The element to swap with
-        * @param {String} tagName The tagname of the element that you wish to create
-        * @param {Function} callback (optional) A function to run on the element after it is created, but before it is replaced. An element reference is passed to this function.
-        * @description This function will create a new element in the DOM and populate it with the contents of another element. Then it will assume it's place.
-        */
-        _swapEl: function(el, tagName, callback) {
-            var _el = this._getDoc().createElement(tagName);
-            if (el) {
-                _el.innerHTML = el.innerHTML;
-            }
-            if (typeof callback == 'function') {
-                callback.call(this, _el);
-            }
-            if (el) {
-                el.parentNode.replaceChild(_el, el);
-            }
-            return _el;
-        },
-        /**
-        * @private
-        * @method _createInsertElement
-        * @description Creates a new "currentElement" then adds some text (and other things) to make it selectable and stylable. Then the user can continue typing.
-        * @param {Object} css (optional) Object literal containing styles to apply to the new element.
-        * @return
-        */
-        _createInsertElement: function(css) {
-            this._createCurrentElement('span', css);
-            var el = this.currentElement[0];
-            if (this.browser.webkit) {
-                //Little Safari Hackery here..
-                el.innerHTML = '<span class="yui-non">&nbsp;</span>';
-                el = el.firstChild;
-                this._getSelection().setBaseAndExtent(el, 1, el, el.innerText.length);                    
-            } else if (this.browser.ie || this.browser.opera) {
-                el.innerHTML = '&nbsp;';
-            }
-            this._focusWindow();
-            this._selectNode(el, true);
-            return el;
-        },
-        /**
-        * @private
-        * @method _createCurrentElement
-        * @param {String} tagName (optional defaults to a) The tagname of the element that you wish to create
-        * @param {Object} tagStyle (optional) Object literal containing styles to apply to the new element.
-        * @description This is a work around for the various browser issues with execCommand. This method will run <code>execCommand('fontname', false, 'yui-tmp')</code> on the given selection.
-        * It will then search the document for an element with the font-family set to <strong>yui-tmp</strong> and replace that with another span that has other information in it, then assign the new span to the 
-        * <code>this.currentElement</code> array, so we now have element references to the elements that were just modified. At this point we can use standard DOM manipulation to change them as we see fit.
-        */
-        _createCurrentElement: function(tagName, tagStyle) {
-            tagName = ((tagName) ? tagName : 'a');
-            var tar = null,
-                el = [],
-                _doc = this._getDoc();
-            
-            if (this.currentFont) {
-                if (!tagStyle) {
-                    tagStyle = {};
-                }
-                tagStyle.fontFamily = this.currentFont;
-                this.currentFont = null;
-            }
-            this.currentElement = [];
-
-            var _elCreate = function(tagName, tagStyle) {
-                var el = null;
-                tagName = ((tagName) ? tagName : 'span');
-                tagName = tagName.toLowerCase();
-                switch (tagName) {
-                    case 'h1':
-                    case 'h2':
-                    case 'h3':
-                    case 'h4':
-                    case 'h5':
-                    case 'h6':
-                        el = _doc.createElement(tagName);
-                        break;
-                    default:
-                        el = _doc.createElement(tagName);
-                        if (tagName === 'span') {
-                            YAHOO.util.Dom.addClass(el, 'yui-tag-' + tagName);
-                            YAHOO.util.Dom.addClass(el, 'yui-tag');
-                            el.setAttribute('tag', tagName);
-                        }
-
-                        for (var k in tagStyle) {
-                            if (YAHOO.lang.hasOwnProperty(tagStyle, k)) {
-                                el.style[k] = tagStyle[k];
-                            }
-                        }
-                        break;
-                }
-                return el;
-            };
-
-            if (!this._hasSelection()) {
-                if (this._getDoc().queryCommandEnabled('insertimage')) {
-                    this._getDoc().execCommand('insertimage', false, 'yui-tmp-img');
-                    var imgs = this._getDoc().getElementsByTagName('img');
-                    for (var j = 0; j < imgs.length; j++) {
-                        if (imgs[j].getAttribute('src', 2) == 'yui-tmp-img') {
-                            el = _elCreate(tagName, tagStyle);
-                            imgs[j].parentNode.replaceChild(el, imgs[j]);
-                            this.currentElement[this.currentElement.length] = el;
-                        }
-                    }
-                } else {
-                    if (this.currentEvent) {
-                        tar = YAHOO.util.Event.getTarget(this.currentEvent);
-                    } else {
-                        //For Safari..
-                        tar = this._getDoc().body;                        
-                    }
-                }
-                if (tar) {
-                    /**
-                    * @knownissue
-                    * @browser Safari 2.x
-                    * @description The issue here is that we have no way of knowing where the cursor position is
-                    * inside of the iframe, so we have to place the newly inserted data in the best place that we can.
-                    */
-                    el = _elCreate(tagName, tagStyle);
-                    if (this._isElement(tar, 'body') || this._isElement(tar, 'html')) {
-                        if (this._isElement(tar, 'html')) {
-                            tar = this._getDoc().body;
-                        }
-                        tar.appendChild(el);
-                    } else if (tar.nextSibling) {
-                        tar.parentNode.insertBefore(el, tar.nextSibling);
-                    } else {
-                        tar.parentNode.appendChild(el);
-                    }
-                    //this.currentElement = el;
-                    this.currentElement[this.currentElement.length] = el;
-                    this.currentEvent = null;
-                    if (this.browser.webkit) {
-                        //Force Safari to focus the new element
-                        this._getSelection().setBaseAndExtent(el, 0, el, 0);
-                        if (this.browser.webkit3) {
-                            this._getSelection().collapseToStart();
-                        } else {
-                            this._getSelection().collapse(true);
-                        }
-                    }
-                }
-            } else {
-                //Force CSS Styling for this action...
-                this._setEditorStyle(true);
-                this._getDoc().execCommand('fontname', false, 'yui-tmp');
-                var _tmp = [], __tmp, __els = ['font', 'span', 'i', 'b', 'u'];
-
-                if (!this._isElement(this._getSelectedElement(), 'body')) {
-                    __els[__els.length] = this._getDoc().getElementsByTagName(this._getSelectedElement().tagName);
-                    __els[__els.length] = this._getDoc().getElementsByTagName(this._getSelectedElement().parentNode.tagName);
-                }
-                for (var _els = 0; _els < __els.length; _els++) {
-                    var _tmp1 = this._getDoc().getElementsByTagName(__els[_els]);
-                    for (var e = 0; e < _tmp1.length; e++) {
-                        _tmp[_tmp.length] = _tmp1[e];
-                    }
-                }
-                
-                for (var i = 0; i < _tmp.length; i++) {
-                    if ((YAHOO.util.Dom.getStyle(_tmp[i], 'font-family') == 'yui-tmp') || (_tmp[i].face && (_tmp[i].face == 'yui-tmp'))) {
-                        //TODO Why is this here?!?
-                        //el = _elCreate(_tmp[i].tagName, tagStyle);
-                        el = _elCreate(tagName, tagStyle);
-                        el.innerHTML = _tmp[i].innerHTML;
-                        if (this._isElement(_tmp[i], 'ol') || (this._isElement(_tmp[i], 'ul'))) {
-                            var fc = _tmp[i].getElementsByTagName('li')[0];
-                            _tmp[i].style.fontFamily = 'inherit';
-                            fc.style.fontFamily = 'inherit';
-                            el.innerHTML = fc.innerHTML;
-                            fc.innerHTML = '';
-                            fc.appendChild(el);
-                            this.currentElement[this.currentElement.length] = el;
-                        } else if (this._isElement(_tmp[i], 'li')) {
-                            _tmp[i].innerHTML = '';
-                            _tmp[i].appendChild(el);
-                            _tmp[i].style.fontFamily = 'inherit';
-                            this.currentElement[this.currentElement.length] = el;
-                        } else {
-                            if (_tmp[i].parentNode) {
-                                _tmp[i].parentNode.replaceChild(el, _tmp[i]);
-                                this.currentElement[this.currentElement.length] = el;
-                                this.currentEvent = null;
-                                if (this.browser.webkit) {
-                                    //Force Safari to focus the new element
-                                    this._getSelection().setBaseAndExtent(el, 0, el, 0);
-                                    if (this.browser.webkit3) {
-                                        this._getSelection().collapseToStart();
-                                    } else {
-                                        this._getSelection().collapse(true);
-                                    }
-                                }
-                                if (this.browser.ie && tagStyle && tagStyle.fontSize) {
-                                    this._getSelection().empty();
-                                }
-                                if (this.browser.gecko) {
-                                    this._getSelection().collapseToStart();
-                                }
-                            }
-                        }
-                    }
-                }
-                var len = this.currentElement.length;
-                for (var o = 0; o < len; o++) {
-                    if ((o + 1) != len) { //Skip the last one in the list
-                        if (this.currentElement[o] && this.currentElement[o].nextSibling) {
-                            if (this._isElement(this.currentElement[o], 'br')) {
-                                this.currentElement[this.currentElement.length] = this.currentElement[o].nextSibling;
-                            }
-                        }
-                    }
-                }
-            }
-        },
-        /**
-        * @method saveHTML
-        * @description Cleans the HTML with the cleanHTML method then places that string back into the textarea.
-        * @return String
-        */
-        saveHTML: function() {
-            var html = this.cleanHTML();
-            if (this._textarea) {
-                this.get('element').value = html;
-            } else {
-                this.get('element').innerHTML = html;
-            }
-            if (this.get('saveEl') !== this.get('element')) {
-                var out = this.get('saveEl');
-                if (Lang.isString(out)) {
-                    out = Dom.get(out);
-                }
-                if (out) {
-                    if (out.tagName.toLowerCase() === 'textarea') {
-                        out.value = html;
-                    } else {
-                        out.innerHTML = html;
-                    }
-                }
-            }
-            return html;
-        },
-        /**
-        * @method setEditorHTML
-        * @param {String} incomingHTML The html content to load into the editor
-        * @description Loads HTML into the editors body
-        */
-        setEditorHTML: function(incomingHTML) {
-            var html = this._cleanIncomingHTML(incomingHTML);
-            this._getDoc().body.innerHTML = html;
-            this.nodeChange();
-        },
-        /**
-        * @method getEditorHTML
-        * @description Gets the unprocessed/unfiltered HTML from the editor
-        */
-        getEditorHTML: function() {
-            var b = this._getDoc().body;
-            if (b === null) {
-                YAHOO.log('Body is null, returning null.', 'error', 'SimpleEditor');
-                return null;
-            }
-            return this._getDoc().body.innerHTML;
-        },
-        /**
-        * @method show
-        * @description This method needs to be called if the Editor was hidden (like in a TabView or Panel). It is used to reset the editor after being in a container that was set to display none.
-        */
-        show: function() {
-            if (this.browser.gecko) {
-                this._setDesignMode('on');
-                this._focusWindow();
-            }
-            if (this.browser.webkit) {
-                var self = this;
-                window.setTimeout(function() {
-                    self._setInitialContent.call(self);
-                }, 10);
-            }
-            //Adding this will close all other Editor window's when showing this one.
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            //Put the iframe back in place
-            this.get('iframe').setStyle('position', 'static');
-            this.get('iframe').setStyle('left', '');
-        },
-        /**
-        * @method hide
-        * @description This method needs to be called if the Editor is to be hidden (like in a TabView or Panel). It should be called to clear timeouts and close open editor windows.
-        */
-        hide: function() {
-            //Adding this will close all other Editor window's.
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this._fixNodesTimer) {
-                clearTimeout(this._fixNodesTimer);
-                this._fixNodesTimer = null;
-            }
-            if (this._nodeChangeTimer) {
-                clearTimeout(this._nodeChangeTimer);
-                this._nodeChangeTimer = null;
-            }
-            this._lastNodeChange = 0;
-            //Move the iframe off of the screen, so that in containers with visiblity hidden, IE will not cover other elements.
-            this.get('iframe').setStyle('position', 'absolute');
-            this.get('iframe').setStyle('left', '-9999px');
-        },
-        /**
-        * @method _cleanIncomingHTML
-        * @param {String} html The unfiltered HTML
-        * @description Process the HTML with a few regexes to clean it up and stabilize the input
-        * @return {String} The filtered HTML
-        */
-        _cleanIncomingHTML: function(html) {
-            html = html.replace(/<strong([^>]*)>/gi, '<b$1>');
-            html = html.replace(/<\/strong>/gi, '</b>');   
-
-            //replace embed before em check
-            html = html.replace(/<embed([^>]*)>/gi, '<YUI_EMBED$1>');
-            html = html.replace(/<\/embed>/gi, '</YUI_EMBED>');
-
-            html = html.replace(/<em([^>]*)>/gi, '<i$1>');
-            html = html.replace(/<\/em>/gi, '</i>');
-            
-            //Put embed tags back in..
-            html = html.replace(/<YUI_EMBED([^>]*)>/gi, '<embed$1>');
-            html = html.replace(/<\/YUI_EMBED>/gi, '</embed>');
-            if (this.get('plainText')) {
-                YAHOO.log('Filtering as plain text', 'info', 'SimpleEditor');
-                html = html.replace(/\n/g, '<br>').replace(/\r/g, '<br>');
-                html = html.replace(/  /gi, '&nbsp;&nbsp;'); //Replace all double spaces
-                html = html.replace(/\t/gi, '&nbsp;&nbsp;&nbsp;&nbsp;'); //Replace all tabs
-            }
-            //Removing Script Tags from the Editor
-            html = html.replace(/<script([^>]*)>/gi, '<bad>');
-            html = html.replace(/<\/script([^>]*)>/gi, '</bad>');
-            html = html.replace(/&lt;script([^>]*)&gt;/gi, '<bad>');
-            html = html.replace(/&lt;\/script([^>]*)&gt;/gi, '</bad>');
-            //Replace the line feeds
-            html = html.replace(/\n/g, '<YUI_LF>').replace(/\r/g, '<YUI_LF>');
-            //Remove Bad HTML elements (used to be script nodes)
-            html = html.replace(new RegExp('<bad([^>]*)>(.*?)<\/bad>', 'gi'), '');
-            //Replace the lines feeds
-            html = html.replace(/<YUI_LF>/g, '\n');
-            return html;
-        },
-        /**
-        * @method cleanHTML
-        * @param {String} html The unfiltered HTML
-        * @description Process the HTML with a few regexes to clean it up and stabilize the output
-        * @return {String} The filtered HTML
-        */
-        cleanHTML: function(html) {
-            //Start Filtering Output
-            //Begin RegExs..
-            if (!html) { 
-                html = this.getEditorHTML();
-            }
-            var markup = this.get('markup');
-            //Make some backups...
-            html = this.pre_filter_linebreaks(html, markup);
-
-		    html = html.replace(/<img([^>]*)\/>/gi, '<YUI_IMG$1>');
-		    html = html.replace(/<img([^>]*)>/gi, '<YUI_IMG$1>');
-
-		    html = html.replace(/<input([^>]*)\/>/gi, '<YUI_INPUT$1>');
-		    html = html.replace(/<input([^>]*)>/gi, '<YUI_INPUT$1>');
-
-		    html = html.replace(/<ul([^>]*)>/gi, '<YUI_UL$1>');
-		    html = html.replace(/<\/ul>/gi, '<\/YUI_UL>');
-		    html = html.replace(/<blockquote([^>]*)>/gi, '<YUI_BQ$1>');
-		    html = html.replace(/<\/blockquote>/gi, '<\/YUI_BQ>');
-
-		    html = html.replace(/<embed([^>]*)>/gi, '<YUI_EMBED$1>');
-		    html = html.replace(/<\/embed>/gi, '<\/YUI_EMBED>');
-
-            //Convert b and i tags to strong and em tags
-            if ((markup == 'semantic') || (markup == 'xhtml')) {
-                html = html.replace(/<i(\s+[^>]*)?>/gi, '<em$1>');
-                html = html.replace(/<\/i>/gi, '</em>');
-                html = html.replace(/<b(\s+[^>]*)?>/gi, '<strong$1>');
-                html = html.replace(/<\/b>/gi, '</strong>');
-            }
-            
-            //Case Changing
-		    html = html.replace(/<font/gi, '<font');
-		    html = html.replace(/<\/font>/gi, '</font>');
-		    html = html.replace(/<span/gi, '<span');
-		    html = html.replace(/<\/span>/gi, '</span>');
-            if ((markup == 'semantic') || (markup == 'xhtml') || (markup == 'css')) {
-                html = html.replace(new RegExp('<font([^>]*)face="([^>]*)">(.*?)<\/font>', 'gi'), '<span $1 style="font-family: $2;">$3</span>');
-                html = html.replace(/<u/gi, '<span style="text-decoration: underline;"');
-                if (this.browser.webkit) {
-                    html = html.replace(new RegExp('<span class="Apple-style-span" style="font-weight: bold;">([^>]*)<\/span>', 'gi'), '<strong>$1</strong>');
-                    html = html.replace(new RegExp('<span class="Apple-style-span" style="font-style: italic;">([^>]*)<\/span>', 'gi'), '<em>$1</em>');
-                }
-                html = html.replace(/\/u>/gi, '/span>');
-                if (markup == 'css') {
-                    html = html.replace(/<em([^>]*)>/gi, '<i$1>');
-                    html = html.replace(/<\/em>/gi, '</i>');
-                    html = html.replace(/<strong([^>]*)>/gi, '<b$1>');
-                    html = html.replace(/<\/strong>/gi, '</b>');
-                    html = html.replace(/<b/gi, '<span style="font-weight: bold;"');
-                    html = html.replace(/\/b>/gi, '/span>');
-                    html = html.replace(/<i/gi, '<span style="font-style: italic;"');
-                    html = html.replace(/\/i>/gi, '/span>');
-                }
-                html = html.replace(/  /gi, ' '); //Replace all double spaces and replace with a single
-            } else {
-		        html = html.replace(/<u/gi, '<u');
-		        html = html.replace(/\/u>/gi, '/u>');
-            }
-		    html = html.replace(/<ol([^>]*)>/gi, '<ol$1>');
-		    html = html.replace(/\/ol>/gi, '/ol>');
-		    html = html.replace(/<li/gi, '<li');
-		    html = html.replace(/\/li>/gi, '/li>');
-            html = this.filter_safari(html);
-
-            html = this.filter_internals(html);
-
-            html = this.filter_all_rgb(html);
-
-            //Replace our backups with the real thing
-            html = this.post_filter_linebreaks(html, markup);
-
-            if (markup == 'xhtml') {
-		        html = html.replace(/<YUI_IMG([^>]*)>/g, '<img $1 />');
-		        html = html.replace(/<YUI_INPUT([^>]*)>/g, '<input $1 />');
-            } else {
-		        html = html.replace(/<YUI_IMG([^>]*)>/g, '<img $1>');
-		        html = html.replace(/<YUI_INPUT([^>]*)>/g, '<input $1>');
-            }
-		    html = html.replace(/<YUI_UL([^>]*)>/g, '<ul$1>');
-		    html = html.replace(/<\/YUI_UL>/g, '<\/ul>');
-
-            html = this.filter_invalid_lists(html);
-
-		    html = html.replace(/<YUI_BQ([^>]*)>/g, '<blockquote$1>');
-		    html = html.replace(/<\/YUI_BQ>/g, '<\/blockquote>');
-
-		    html = html.replace(/<YUI_EMBED([^>]*)>/g, '<embed$1>');
-		    html = html.replace(/<\/YUI_EMBED>/g, '<\/embed>');
-            
-            //This should fix &amp;s in URL's
-            html = html.replace(' &amp; ', 'YUI_AMP');
-            html = html.replace('&amp;', '&');
-            html = html.replace('YUI_AMP', '&amp;');
-
-            //Trim the output, removing whitespace from the beginning and end
-            html = YAHOO.lang.trim(html);
-
-            if (this.get('removeLineBreaks')) {
-                html = html.replace(/\n/g, '').replace(/\r/g, '');
-                html = html.replace(/  /gi, ' '); //Replace all double spaces and replace with a single
-            }
-            
-            //First empty span
-            if (html.substring(0, 6).toLowerCase() == '<span>')  {
-                html = html.substring(6);
-                //Last empty span
-                if (html.substring(html.length - 7, html.length).toLowerCase() == '</span>')  {
-                    html = html.substring(0, html.length - 7);
-                }
-            }
-
-            for (var v in this.invalidHTML) {
-                if (YAHOO.lang.hasOwnProperty(this.invalidHTML, v)) {
-                    if (Lang.isObject(v) && v.keepContents) {
-                        html = html.replace(new RegExp('<' + v + '([^>]*)>(.*?)<\/' + v + '>', 'gi'), '$1');
-                    } else {
-                        html = html.replace(new RegExp('<' + v + '([^>]*)>(.*?)<\/' + v + '>', 'gi'), '');
-                    }
-                }
-            }
-
-            this.fireEvent('cleanHTML', { type: 'cleanHTML', target: this, html: html });
-
-            return html;
-        },
-        /**
-        * @method filter_invalid_lists
-        * @param String html The HTML string to filter
-        * @description Filters invalid ol and ul list markup, converts this: <li></li><ol>..</ol> to this: <li></li><li><ol>..</ol></li>
-        */
-        filter_invalid_lists: function(html) {
-            html = html.replace(/<\/li>\n/gi, '</li>');
-
-            html = html.replace(/<\/li><ol>/gi, '</li><li><ol>');
-            html = html.replace(/<\/ol>/gi, '</ol></li>');
-            html = html.replace(/<\/ol><\/li>\n/gi, "</ol>\n");
-
-            html = html.replace(/<\/li><ul>/gi, '</li><li><ul>');
-            html = html.replace(/<\/ul>/gi, '</ul></li>');
-            html = html.replace(/<\/ul><\/li>\n?/gi, "</ul>\n");
-
-            html = html.replace(/<\/li>/gi, "</li>\n");
-            html = html.replace(/<\/ol>/gi, "</ol>\n");
-            html = html.replace(/<ol>/gi, "<ol>\n");
-            html = html.replace(/<ul>/gi, "<ul>\n");
-            return html;
-        },
-        /**
-        * @method filter_safari
-        * @param String html The HTML string to filter
-        * @description Filters strings specific to Safari
-        * @return String
-        */
-        filter_safari: function(html) {
-            if (this.browser.webkit) {
-                //<span class="Apple-tab-span" style="white-space:pre">	</span>
-                html = html.replace(/<span class="Apple-tab-span" style="white-space:pre">([^>])<\/span>/gi, '&nbsp;&nbsp;&nbsp;&nbsp;');
-                html = html.replace(/Apple-style-span/gi, '');
-                html = html.replace(/style="line-height: normal;"/gi, '');
-                //Remove bogus LI's
-                html = html.replace(/<li><\/li>/gi, '');
-                html = html.replace(/<li> <\/li>/gi, '');
-                html = html.replace(/<li>  <\/li>/gi, '');
-                //Remove bogus DIV's - updated from just removing the div's to replacing /div with a break
-                if (this.get('ptags')) {
-		            html = html.replace(/<div([^>]*)>/g, '<p$1>');
-				    html = html.replace(/<\/div>/gi, '</p>');
-                } else {
-                    html = html.replace(/<div>/gi, '');
-				    html = html.replace(/<\/div>/gi, '<br>');
-                }
-            }
-            return html;
-        },
-        /**
-        * @method filter_internals
-        * @param String html The HTML string to filter
-        * @description Filters internal RTE strings and bogus attrs we don't want
-        * @return String
-        */
-        filter_internals: function(html) {
-		    html = html.replace(/\r/g, '');
-            //Fix stuff we don't want
-	        html = html.replace(/<\/?(body|head|html)[^>]*>/gi, '');
-            //Fix last BR in LI
-		    html = html.replace(/<YUI_BR><\/li>/gi, '</li>');
-
-		    html = html.replace(/yui-tag-span/gi, '');
-		    html = html.replace(/yui-tag/gi, '');
-		    html = html.replace(/yui-non/gi, '');
-		    html = html.replace(/yui-img/gi, '');
-		    html = html.replace(/ tag="span"/gi, '');
-		    html = html.replace(/ class=""/gi, '');
-		    html = html.replace(/ style=""/gi, '');
-		    html = html.replace(/ class=" "/gi, '');
-		    html = html.replace(/ class="  "/gi, '');
-		    html = html.replace(/ target=""/gi, '');
-		    html = html.replace(/ title=""/gi, '');
-
-            if (this.browser.ie) {
-		        html = html.replace(/ class= /gi, '');
-		        html = html.replace(/ class= >/gi, '');
-		        html = html.replace(/_height="([^>])"/gi, '');
-		        html = html.replace(/_width="([^>])"/gi, '');
-            }
-            
-            return html;
-        },
-        /**
-        * @method filter_all_rgb
-        * @param String str The HTML string to filter
-        * @description Converts all RGB color strings found in passed string to a hex color, example: style="color: rgb(0, 255, 0)" converts to style="color: #00ff00"
-        * @return String
-        */
-        filter_all_rgb: function(str) {
-            var exp = new RegExp("rgb\\s*?\\(\\s*?([0-9]+).*?,\\s*?([0-9]+).*?,\\s*?([0-9]+).*?\\)", "gi");
-            var arr = str.match(exp);
-            if (Lang.isArray(arr)) {
-                for (var i = 0; i < arr.length; i++) {
-                    var color = this.filter_rgb(arr[i]);
-                    str = str.replace(arr[i].toString(), color);
-                }
-            }
-            
-            return str;
-        },
-        /**
-        * @method filter_rgb
-        * @param String css The CSS string containing rgb(#,#,#);
-        * @description Converts an RGB color string to a hex color, example: rgb(0, 255, 0) converts to #00ff00
-        * @return String
-        */
-        filter_rgb: function(css) {
-            if (css.toLowerCase().indexOf('rgb') != -1) {
-                var exp = new RegExp("(.*?)rgb\\s*?\\(\\s*?([0-9]+).*?,\\s*?([0-9]+).*?,\\s*?([0-9]+).*?\\)(.*?)", "gi");
-                var rgb = css.replace(exp, "$1,$2,$3,$4,$5").split(',');
-            
-                if (rgb.length == 5) {
-                    var r = parseInt(rgb[1], 10).toString(16);
-                    var g = parseInt(rgb[2], 10).toString(16);
-                    var b = parseInt(rgb[3], 10).toString(16);
-
-                    r = r.length == 1 ? '0' + r : r;
-                    g = g.length == 1 ? '0' + g : g;
-                    b = b.length == 1 ? '0' + b : b;
-
-                    css = "#" + r + g + b;
-                }
-            }
-            return css;
-        },
-        /**
-        * @method pre_filter_linebreaks
-        * @param String html The HTML to filter
-        * @param String markup The markup type to filter to
-        * @description HTML Pre Filter
-        * @return String
-        */
-        pre_filter_linebreaks: function(html, markup) {
-            if (this.browser.webkit) {
-		        html = html.replace(/<br class="khtml-block-placeholder">/gi, '<YUI_BR>');
-		        html = html.replace(/<br class="webkit-block-placeholder">/gi, '<YUI_BR>');
-            }
-		    html = html.replace(/<br>/gi, '<YUI_BR>');
-		    html = html.replace(/<br (.*?)>/gi, '<YUI_BR>');
-		    html = html.replace(/<br\/>/gi, '<YUI_BR>');
-		    html = html.replace(/<br \/>/gi, '<YUI_BR>');
-		    html = html.replace(/<div><YUI_BR><\/div>/gi, '<YUI_BR>');
-		    html = html.replace(/<p>(&nbsp;|&#160;)<\/p>/g, '<YUI_BR>');            
-		    html = html.replace(/<p><br>&nbsp;<\/p>/gi, '<YUI_BR>');
-		    html = html.replace(/<p>&nbsp;<\/p>/gi, '<YUI_BR>');
-            //Fix last BR
-	        html = html.replace(/<YUI_BR>$/, '');
-            //Fix last BR in P
-	        html = html.replace(/<YUI_BR><\/p>/g, '</p>');
-            if (this.browser.ie) {
-	            html = html.replace(/&nbsp;&nbsp;&nbsp;&nbsp;/g, '\t');
-            }
-            return html;
-        },
-        /**
-        * @method post_filter_linebreaks
-        * @param String html The HTML to filter
-        * @param String markup The markup type to filter to
-        * @description HTML Pre Filter
-        * @return String
-        */
-        post_filter_linebreaks: function(html, markup) {
-            if (markup == 'xhtml') {
-		        html = html.replace(/<YUI_BR>/g, '<br />');
-            } else {
-		        html = html.replace(/<YUI_BR>/g, '<br>');
-            }
-            return html;
-        },
-        /**
-        * @method clearEditorDoc
-        * @description Clear the doc of the Editor
-        */
-        clearEditorDoc: function() {
-            this._getDoc().body.innerHTML = '&nbsp;';
-        },
-        /**
-        * @method openWindow
-        * @description Override Method for Advanced Editor
-        */
-        openWindow: function(win) {
-        },
-        /**
-        * @method moveWindow
-        * @description Override Method for Advanced Editor
-        */
-        moveWindow: function() {
-        },
-        /**
-        * @private
-        * @method _closeWindow
-        * @description Override Method for Advanced Editor
-        */
-        _closeWindow: function() {
-        },
-        /**
-        * @method closeWindow
-        * @description Override Method for Advanced Editor
-        */
-        closeWindow: function() {
-            //this.unsubscribeAll('afterExecCommand');
-            this.toolbar.resetAllButtons();
-            this._focusWindow();        
-        },
-        /**
-        * @method destroy
-        * @description Destroys the editor, all of it's elements and objects.
-        * @return {Boolean}
-        */
-        destroy: function() {
-            YAHOO.log('Destroying Editor', 'warn', 'SimpleEditor');
-            if (this.resize) {
-                YAHOO.log('Destroying Resize', 'warn', 'SimpleEditor');
-                this.resize.destroy();
-            }
-            if (this.dd) {
-                YAHOO.log('Unreg DragDrop Instance', 'warn', 'SimpleEditor');
-                this.dd.unreg();
-            }
-            if (this.get('panel')) {
-                YAHOO.log('Destroying Editor Panel', 'warn', 'SimpleEditor');
-                this.get('panel').destroy();
-            }
-            this.saveHTML();
-            this.toolbar.destroy();
-            YAHOO.log('Restoring TextArea', 'info', 'SimpleEditor');
-            this.setStyle('visibility', 'visible');
-            this.setStyle('position', 'static');
-            this.setStyle('top', '');
-            this.setStyle('left', '');
-            var textArea = this.get('element');
-            this.get('element_cont').get('parentNode').replaceChild(textArea, this.get('element_cont').get('element'));
-            this.get('element_cont').get('element').innerHTML = '';
-            this.set('handleSubmit', false); //Remove the submit handler
-            return true;
-        },        
-        /**
-        * @method toString
-        * @description Returns a string representing the editor.
-        * @return {String}
-        */
-        toString: function() {
-            var str = 'SimpleEditor';
-            if (this.get && this.get('element_cont')) {
-                str = 'SimpleEditor (#' + this.get('element_cont').get('id') + ')' + ((this.get('disabled') ? ' Disabled' : ''));
-            }
-            return str;
-        }
-    });
-
-/**
-* @event toolbarLoaded
-* @description Event is fired during the render process directly after the Toolbar is loaded. Allowing you to attach events to the toolbar. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event cleanHTML
-* @description Event is fired after the cleanHTML method is called.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event afterRender
-* @description Event is fired after the render process finishes. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorContentLoaded
-* @description Event is fired after the editor iframe's document fully loads and fires it's onload event. From here you can start injecting your own things into the document. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeNodeChange
-* @description Event fires at the beginning of the nodeChange process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event afterNodeChange
-* @description Event fires at the end of the nodeChange process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeExecCommand
-* @description Event fires at the beginning of the execCommand process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event afterExecCommand
-* @description Event fires at the end of the execCommand process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorMouseUp
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorMouseDown
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorDoubleClick
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorClick
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorKeyUp
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorKeyPress
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorKeyDown
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorMouseUp
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorMouseDown
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorDoubleClick
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorClick
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorKeyUp
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorKeyPress
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorKeyDown
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-    /**
-     * @description Singleton object used to track the open window objects and panels across the various open editors
-     * @class EditorInfo
-     * @static
-    */
-    YAHOO.widget.EditorInfo = {
-        /**
-        * @private
-        * @property _instances
-        * @description A reference to all editors on the page.
-        * @type Object
-        */
-        _instances: {},
-        /**
-        * @private
-        * @property blankImage
-        * @description A reference to the blankImage url
-        * @type String 
-        */
-        blankImage: '',
-        /**
-        * @private
-        * @property window
-        * @description A reference to the currently open window object in any editor on the page.
-        * @type Object <a href="YAHOO.widget.EditorWindow.html">YAHOO.widget.EditorWindow</a>
-        */
-        window: {},
-        /**
-        * @private
-        * @property panel
-        * @description A reference to the currently open panel in any editor on the page.
-        * @type Object <a href="YAHOO.widget.Overlay.html">YAHOO.widget.Overlay</a>
-        */
-        panel: null,
-        /**
-        * @method getEditorById
-        * @description Returns a reference to the Editor object associated with the given textarea
-        * @param {String/HTMLElement} id The id or reference of the textarea to return the Editor instance of
-        * @return Object <a href="YAHOO.widget.Editor.html">YAHOO.widget.Editor</a>
-        */
-        getEditorById: function(id) {
-            if (!YAHOO.lang.isString(id)) {
-                //Not a string, assume a node Reference
-                id = id.id;
-            }
-            if (this._instances[id]) {
-                return this._instances[id];
-            }
-            return false;
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the EditorInfo.
-        * @return {String}
-        */
-        toString: function() {
-            var len = 0;
-            for (var i in this._instances) {
-                if (Lang.hasOwnProperty(this._instances, i)) {
-                    len++;
-                }
-            }
-            return 'Editor Info (' + len + ' registered intance' + ((len > 1) ? 's' : '') + ')';
-        }
-    };
-
-
-
-    
-})();
-YAHOO.register("simpleeditor", YAHOO.widget.SimpleEditor, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/simpleeditor-min.js b/eclipse.org-common/yui/2.6.0/build/editor/simpleeditor-min.js
deleted file mode 100644
index 9d98b88..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/simpleeditor-min.js
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){var B=YAHOO.util.Dom,A=YAHOO.util.Event,C=YAHOO.lang;if(YAHOO.widget.Button){YAHOO.widget.ToolbarButtonAdvanced=YAHOO.widget.Button;YAHOO.widget.ToolbarButtonAdvanced.prototype.buttonType="rich";YAHOO.widget.ToolbarButtonAdvanced.prototype.checkValue=function(F){var E=this.getMenu().getItems();if(E.length===0){this.getMenu()._onBeforeShow();E=this.getMenu().getItems();}for(var D=0;D<E.length;D++){E[D].cfg.setProperty("checked",false);if(E[D].value==F){E[D].cfg.setProperty("checked",true);}}};}else{YAHOO.widget.ToolbarButtonAdvanced=function(){};}YAHOO.widget.ToolbarButton=function(E,D){if(C.isObject(arguments[0])&&!B.get(E).nodeType){D=E;}var G=(D||{});var F={element:null,attributes:G};if(!F.attributes.type){F.attributes.type="push";}F.element=document.createElement("span");F.element.setAttribute("unselectable","on");F.element.className="yui-button yui-"+F.attributes.type+"-button";F.element.innerHTML='<span class="first-child"><a href="#">LABEL</a></span>';F.element.firstChild.firstChild.tabIndex="-1";F.attributes.id=B.generateId();YAHOO.widget.ToolbarButton.superclass.constructor.call(this,F.element,F.attributes);};YAHOO.extend(YAHOO.widget.ToolbarButton,YAHOO.util.Element,{buttonType:"normal",_handleMouseOver:function(){if(!this.get("disabled")){this.addClass("yui-button-hover");this.addClass("yui-"+this.get("type")+"-button-hover");}},_handleMouseOut:function(){this.removeClass("yui-button-hover");this.removeClass("yui-"+this.get("type")+"-button-hover");},checkValue:function(F){if(this.get("type")=="menu"){var E=this._button.options;for(var D=0;D<E.length;D++){if(E[D].value==F){E.selectedIndex=D;}}}},init:function(E,D){YAHOO.widget.ToolbarButton.superclass.init.call(this,E,D);this.on("mouseover",this._handleMouseOver,this,true);this.on("mouseout",this._handleMouseOut,this,true);},initAttributes:function(D){YAHOO.widget.ToolbarButton.superclass.initAttributes.call(this,D);this.setAttributeConfig("value",{value:D.value});this.setAttributeConfig("menu",{value:D.menu||false});this.setAttributeConfig("type",{value:D.type,writeOnce:true,method:function(H){var G,F;if(!this._button){this._button=this.get("element").getElementsByTagName("a")[0];}switch(H){case"select":case"menu":G=document.createElement("select");var I=this.get("menu");for(var E=0;E<I.length;E++){F=document.createElement("option");F.innerHTML=I[E].text;F.value=I[E].value;if(I[E].checked){F.selected=true;}G.appendChild(F);}this._button.parentNode.replaceChild(G,this._button);A.on(G,"change",this._handleSelect,this,true);this._button=G;break;}}});this.setAttributeConfig("disabled",{value:D.disabled||false,method:function(E){if(E){this.addClass("yui-button-disabled");this.addClass("yui-"+this.get("type")+"-button-disabled");}else{this.removeClass("yui-button-disabled");this.removeClass("yui-"+this.get("type")+"-button-disabled");}if(this.get("type")=="menu"){this._button.disabled=E;}}});this.setAttributeConfig("label",{value:D.label,method:function(E){if(!this._button){this._button=this.get("element").getElementsByTagName("a")[0];}if(this.get("type")=="push"){this._button.innerHTML=E;}}});this.setAttributeConfig("title",{value:D.title});this.setAttributeConfig("container",{value:null,writeOnce:true,method:function(E){this.appendTo(E);}});},_handleSelect:function(E){var D=A.getTarget(E);var F=D.options[D.selectedIndex].value;this.fireEvent("change",{type:"change",value:F});},getMenu:function(){return this.get("menu");},destroy:function(){A.purgeElement(this.get("element"),true);this.get("element").parentNode.removeChild(this.get("element"));for(var D in this){if(C.hasOwnProperty(this,D)){this[D]=null;}}},fireEvent:function(E,D){if(this.DOM_EVENTS[E]&&this.get("disabled")){return ;}YAHOO.widget.ToolbarButton.superclass.fireEvent.call(this,E,D);},toString:function(){return"ToolbarButton ("+this.get("id")+")";}});})();(function(){var C=YAHOO.util.Dom,A=YAHOO.util.Event,D=YAHOO.lang;var B=function(F){var E=F;if(D.isString(F)){E=this.getButtonById(F);}if(D.isNumber(F)){E=this.getButtonByIndex(F);}if((!(E instanceof YAHOO.widget.ToolbarButton))&&(!(E instanceof YAHOO.widget.ToolbarButtonAdvanced))){E=this.getButtonByValue(F);}if((E instanceof YAHOO.widget.ToolbarButton)||(E instanceof YAHOO.widget.ToolbarButtonAdvanced)){return E;}return false;};YAHOO.widget.Toolbar=function(I,H){if(D.isObject(arguments[0])&&!C.get(I).nodeType){H=I;}var K={};if(H){D.augmentObject(K,H);}var J={element:null,attributes:K};if(D.isString(I)&&C.get(I)){J.element=C.get(I);}else{if(D.isObject(I)&&C.get(I)&&C.get(I).nodeType){J.element=C.get(I);}}if(!J.element){J.element=document.createElement("DIV");J.element.id=C.generateId();if(K.container&&C.get(K.container)){C.get(K.container).appendChild(J.element);}}if(!J.element.id){J.element.id=((D.isString(I))?I:C.generateId());}var F=document.createElement("fieldset");var G=document.createElement("legend");G.innerHTML="Toolbar";F.appendChild(G);var E=document.createElement("DIV");J.attributes.cont=E;C.addClass(E,"yui-toolbar-subcont");F.appendChild(E);J.element.appendChild(F);J.element.tabIndex=-1;J.attributes.element=J.element;J.attributes.id=J.element.id;YAHOO.widget.Toolbar.superclass.constructor.call(this,J.element,J.attributes);};YAHOO.extend(YAHOO.widget.Toolbar,YAHOO.util.Element,{_addMenuClasses:function(H,E,I){C.addClass(this.element,"yui-toolbar-"+I.get("value")+"-menu");if(C.hasClass(I._button.parentNode.parentNode,"yui-toolbar-select")){C.addClass(this.element,"yui-toolbar-select-menu");}var F=this.getItems();for(var G=0;G<F.length;G++){C.addClass(F[G].element,"yui-toolbar-"+I.get("value")+"-"+((F[G].value)?F[G].value.replace(/ /g,"-").toLowerCase():F[G]._oText.nodeValue.replace(/ /g,"-").toLowerCase()));C.addClass(F[G].element,"yui-toolbar-"+I.get("value")+"-"+((F[G].value)?F[G].value.replace(/ /g,"-"):F[G]._oText.nodeValue.replace(/ /g,"-")));}},buttonType:YAHOO.widget.ToolbarButton,dd:null,_colorData:{"#111111":"Obsidian","#2D2D2D":"Dark Gray","#434343":"Shale","#5B5B5B":"Flint","#737373":"Gray","#8B8B8B":"Concrete","#A2A2A2":"Gray","#B9B9B9":"Titanium","#000000":"Black","#D0D0D0":"Light Gray","#E6E6E6":"Silver","#FFFFFF":"White","#BFBF00":"Pumpkin","#FFFF00":"Yellow","#FFFF40":"Banana","#FFFF80":"Pale Yellow","#FFFFBF":"Butter","#525330":"Raw Siena","#898A49":"Mildew","#AEA945":"Olive","#7F7F00":"Paprika","#C3BE71":"Earth","#E0DCAA":"Khaki","#FCFAE1":"Cream","#60BF00":"Cactus","#80FF00":"Chartreuse","#A0FF40":"Green","#C0FF80":"Pale Lime","#DFFFBF":"Light Mint","#3B5738":"Green","#668F5A":"Lime Gray","#7F9757":"Yellow","#407F00":"Clover","#8A9B55":"Pistachio","#B7C296":"Light Jade","#E6EBD5":"Breakwater","#00BF00":"Spring Frost","#00FF80":"Pastel Green","#40FFA0":"Light Emerald","#80FFC0":"Sea Foam","#BFFFDF":"Sea Mist","#033D21":"Dark Forrest","#438059":"Moss","#7FA37C":"Medium Green","#007F40":"Pine","#8DAE94":"Yellow Gray Green","#ACC6B5":"Aqua Lung","#DDEBE2":"Sea Vapor","#00BFBF":"Fog","#00FFFF":"Cyan","#40FFFF":"Turquoise Blue","#80FFFF":"Light Aqua","#BFFFFF":"Pale Cyan","#033D3D":"Dark Teal","#347D7E":"Gray Turquoise","#609A9F":"Green Blue","#007F7F":"Seaweed","#96BDC4":"Green Gray","#B5D1D7":"Soapstone","#E2F1F4":"Light Turquoise","#0060BF":"Summer Sky","#0080FF":"Sky Blue","#40A0FF":"Electric Blue","#80C0FF":"Light Azure","#BFDFFF":"Ice Blue","#1B2C48":"Navy","#385376":"Biscay","#57708F":"Dusty Blue","#00407F":"Sea Blue","#7792AC":"Sky Blue Gray","#A8BED1":"Morning Sky","#DEEBF6":"Vapor","#0000BF":"Deep Blue","#0000FF":"Blue","#4040FF":"Cerulean Blue","#8080FF":"Evening Blue","#BFBFFF":"Light Blue","#212143":"Deep Indigo","#373E68":"Sea Blue","#444F75":"Night Blue","#00007F":"Indigo Blue","#585E82":"Dockside","#8687A4":"Blue Gray","#D2D1E1":"Light Blue Gray","#6000BF":"Neon Violet","#8000FF":"Blue Violet","#A040FF":"Violet Purple","#C080FF":"Violet Dusk","#DFBFFF":"Pale Lavender","#302449":"Cool Shale","#54466F":"Dark Indigo","#655A7F":"Dark Violet","#40007F":"Violet","#726284":"Smoky Violet","#9E8FA9":"Slate Gray","#DCD1DF":"Violet White","#BF00BF":"Royal Violet","#FF00FF":"Fuchsia","#FF40FF":"Magenta","#FF80FF":"Orchid","#FFBFFF":"Pale Magenta","#4A234A":"Dark Purple","#794A72":"Medium Purple","#936386":"Cool Granite","#7F007F":"Purple","#9D7292":"Purple Moon","#C0A0B6":"Pale Purple","#ECDAE5":"Pink Cloud","#BF005F":"Hot Pink","#FF007F":"Deep Pink","#FF409F":"Grape","#FF80BF":"Electric Pink","#FFBFDF":"Pink","#451528":"Purple Red","#823857":"Purple Dino","#A94A76":"Purple Gray","#7F003F":"Rose","#BC6F95":"Antique Mauve","#D8A5BB":"Cool Marble","#F7DDE9":"Pink Granite","#C00000":"Apple","#FF0000":"Fire Truck","#FF4040":"Pale Red","#FF8080":"Salmon","#FFC0C0":"Warm Pink","#441415":"Sepia","#82393C":"Rust","#AA4D4E":"Brick","#800000":"Brick Red","#BC6E6E":"Mauve","#D8A3A4":"Shrimp Pink","#F8DDDD":"Shell Pink","#BF5F00":"Dark Orange","#FF7F00":"Orange","#FF9F40":"Grapefruit","#FFBF80":"Canteloupe","#FFDFBF":"Wax","#482C1B":"Dark Brick","#855A40":"Dirt","#B27C51":"Tan","#7F3F00":"Nutmeg","#C49B71":"Mustard","#E1C4A8":"Pale Tan","#FDEEE0":"Marble"},_colorPicker:null,STR_COLLAPSE:"Collapse Toolbar",STR_SPIN_LABEL:"Spin Button with value {VALUE}. Use Control Shift Up Arrow and Control Shift Down arrow keys to increase or decrease the value.",STR_SPIN_UP:"Click to increase the value of this input",STR_SPIN_DOWN:"Click to decrease the value of this input",_titlebar:null,browser:YAHOO.env.ua,_buttonList:null,_buttonGroupList:null,_sep:null,_sepCount:null,_dragHandle:null,_toolbarConfigs:{renderer:true},CLASS_CONTAINER:"yui-toolbar-container",CLASS_DRAGHANDLE:"yui-toolbar-draghandle",CLASS_SEPARATOR:"yui-toolbar-separator",CLASS_DISABLED:"yui-toolbar-disabled",CLASS_PREFIX:"yui-toolbar",init:function(F,E){YAHOO.widget.Toolbar.superclass.init.call(this,F,E);
-},initAttributes:function(E){YAHOO.widget.Toolbar.superclass.initAttributes.call(this,E);this.addClass(this.CLASS_CONTAINER);this.setAttributeConfig("buttonType",{value:E.buttonType||"basic",writeOnce:true,validator:function(F){switch(F){case"advanced":case"basic":return true;}return false;},method:function(F){if(F=="advanced"){if(YAHOO.widget.Button){this.buttonType=YAHOO.widget.ToolbarButtonAdvanced;}else{this.buttonType=YAHOO.widget.ToolbarButton;}}else{this.buttonType=YAHOO.widget.ToolbarButton;}}});this.setAttributeConfig("buttons",{value:[],writeOnce:true,method:function(G){for(var F in G){if(D.hasOwnProperty(G,F)){if(G[F].type=="separator"){this.addSeparator();}else{if(G[F].group!==undefined){this.addButtonGroup(G[F]);}else{this.addButton(G[F]);}}}}}});this.setAttributeConfig("disabled",{value:false,method:function(F){if(this.get("disabled")===F){return false;}if(F){this.addClass(this.CLASS_DISABLED);this.set("draggable",false);this.disableAllButtons();}else{this.removeClass(this.CLASS_DISABLED);if(this._configs.draggable._initialConfig.value){this.set("draggable",true);}this.resetAllButtons();}}});this.setAttributeConfig("cont",{value:E.cont,readOnly:true});this.setAttributeConfig("grouplabels",{value:((E.grouplabels===false)?false:true),method:function(F){if(F){C.removeClass(this.get("cont"),(this.CLASS_PREFIX+"-nogrouplabels"));}else{C.addClass(this.get("cont"),(this.CLASS_PREFIX+"-nogrouplabels"));}}});this.setAttributeConfig("titlebar",{value:false,method:function(G){if(G){if(this._titlebar&&this._titlebar.parentNode){this._titlebar.parentNode.removeChild(this._titlebar);}this._titlebar=document.createElement("DIV");this._titlebar.tabIndex="-1";A.on(this._titlebar,"focus",function(){this._handleFocus();},this,true);C.addClass(this._titlebar,this.CLASS_PREFIX+"-titlebar");if(D.isString(G)){var F=document.createElement("h2");F.tabIndex="-1";F.innerHTML='<a href="#" tabIndex="0">'+G+"</a>";this._titlebar.appendChild(F);A.on(F.firstChild,"click",function(H){A.stopEvent(H);});A.on([F,F.firstChild],"focus",function(){this._handleFocus();},this,true);}if(this.get("firstChild")){this.insertBefore(this._titlebar,this.get("firstChild"));}else{this.appendChild(this._titlebar);}if(this.get("collapse")){this.set("collapse",true);}}else{if(this._titlebar){if(this._titlebar&&this._titlebar.parentNode){this._titlebar.parentNode.removeChild(this._titlebar);}}}}});this.setAttributeConfig("collapse",{value:false,method:function(H){if(this._titlebar){var G=null;var F=C.getElementsByClassName("collapse","span",this._titlebar);if(H){if(F.length>0){return true;}G=document.createElement("SPAN");G.innerHTML="X";G.title=this.STR_COLLAPSE;C.addClass(G,"collapse");this._titlebar.appendChild(G);A.addListener(G,"click",function(){if(C.hasClass(this.get("cont").parentNode,"yui-toolbar-container-collapsed")){this.collapse(false);}else{this.collapse();}},this,true);}else{G=C.getElementsByClassName("collapse","span",this._titlebar);if(G[0]){if(C.hasClass(this.get("cont").parentNode,"yui-toolbar-container-collapsed")){this.collapse(false);}G[0].parentNode.removeChild(G[0]);}}}}});this.setAttributeConfig("draggable",{value:(E.draggable||false),method:function(F){if(F&&!this.get("titlebar")){if(!this._dragHandle){this._dragHandle=document.createElement("SPAN");this._dragHandle.innerHTML="|";this._dragHandle.setAttribute("title","Click to drag the toolbar");this._dragHandle.id=this.get("id")+"_draghandle";C.addClass(this._dragHandle,this.CLASS_DRAGHANDLE);if(this.get("cont").hasChildNodes()){this.get("cont").insertBefore(this._dragHandle,this.get("cont").firstChild);}else{this.get("cont").appendChild(this._dragHandle);}this.dd=new YAHOO.util.DD(this.get("id"));this.dd.setHandleElId(this._dragHandle.id);}}else{if(this._dragHandle){this._dragHandle.parentNode.removeChild(this._dragHandle);this._dragHandle=null;this.dd=null;}}if(this._titlebar){if(F){this.dd=new YAHOO.util.DD(this.get("id"));this.dd.setHandleElId(this._titlebar);C.addClass(this._titlebar,"draggable");}else{C.removeClass(this._titlebar,"draggable");if(this.dd){this.dd.unreg();this.dd=null;}}}},validator:function(G){var F=true;if(!YAHOO.util.DD){F=false;}return F;}});},addButtonGroup:function(I){if(!this.get("element")){this._queue[this._queue.length]=["addButtonGroup",arguments];return false;}if(!this.hasClass(this.CLASS_PREFIX+"-grouped")){this.addClass(this.CLASS_PREFIX+"-grouped");}var J=document.createElement("DIV");C.addClass(J,this.CLASS_PREFIX+"-group");C.addClass(J,this.CLASS_PREFIX+"-group-"+I.group);if(I.label){var F=document.createElement("h3");F.innerHTML=I.label;J.appendChild(F);}if(!this.get("grouplabels")){C.addClass(this.get("cont"),this.CLASS_PREFIX,"-nogrouplabels");}this.get("cont").appendChild(J);var H=document.createElement("ul");J.appendChild(H);if(!this._buttonGroupList){this._buttonGroupList={};}this._buttonGroupList[I.group]=H;for(var G=0;G<I.buttons.length;G++){var E=document.createElement("li");E.className=this.CLASS_PREFIX+"-groupitem";H.appendChild(E);if((I.buttons[G].type!==undefined)&&I.buttons[G].type=="separator"){this.addSeparator(E);}else{I.buttons[G].container=E;this.addButton(I.buttons[G]);}}},addButtonToGroup:function(G,H,I){var F=this._buttonGroupList[H];var E=document.createElement("li");E.className=this.CLASS_PREFIX+"-groupitem";G.container=E;this.addButton(G,I);F.appendChild(E);},addButton:function(J,I){if(!this.get("element")){this._queue[this._queue.length]=["addButton",arguments];return false;}if(!this._buttonList){this._buttonList=[];}if(!J.container){J.container=this.get("cont");}if((J.type=="menu")||(J.type=="split")||(J.type=="select")){if(D.isArray(J.menu)){for(var P in J.menu){if(D.hasOwnProperty(J.menu,P)){var V={fn:function(Y,W,X){if(!J.menucmd){J.menucmd=J.value;}J.value=((X.value)?X.value:X._oText.nodeValue);},scope:this};J.menu[P].onclick=V;}}}}var Q={},N=false;for(var L in J){if(D.hasOwnProperty(J,L)){if(!this._toolbarConfigs[L]){Q[L]=J[L];}}}if(J.type=="select"){Q.type="menu";}if(J.type=="spin"){Q.type="push";
-}if(Q.type=="color"){if(YAHOO.widget.Overlay){Q=this._makeColorButton(Q);}else{N=true;}}if(Q.menu){if((YAHOO.widget.Overlay)&&(J.menu instanceof YAHOO.widget.Overlay)){J.menu.showEvent.subscribe(function(){this._button=Q;});}else{for(var O=0;O<Q.menu.length;O++){if(!Q.menu[O].value){Q.menu[O].value=Q.menu[O].text;}}if(this.browser.webkit){Q.focusmenu=false;}}}if(N){J=false;}else{this._configs.buttons.value[this._configs.buttons.value.length]=J;var T=new this.buttonType(Q);T.get("element").tabIndex="-1";T.get("element").setAttribute("role","button");T._selected=true;if(this.get("disabled")){T.set("disabled",true);}if(!J.id){J.id=T.get("id");}if(I){var F=T.get("element");var M=null;if(I.get){M=I.get("element").nextSibling;}else{if(I.nextSibling){M=I.nextSibling;}}if(M){M.parentNode.insertBefore(F,M);}}T.addClass(this.CLASS_PREFIX+"-"+T.get("value"));var S=document.createElement("span");S.className=this.CLASS_PREFIX+"-icon";T.get("element").insertBefore(S,T.get("firstChild"));if(T._button.tagName.toLowerCase()=="button"){T.get("element").setAttribute("unselectable","on");var U=document.createElement("a");U.innerHTML=T._button.innerHTML;U.href="#";U.tabIndex="-1";A.on(U,"click",function(W){A.stopEvent(W);});T._button.parentNode.replaceChild(U,T._button);T._button=U;}if(J.type=="select"){if(T._button.tagName.toLowerCase()=="select"){S.parentNode.removeChild(S);var G=T._button;var R=T.get("element");R.parentNode.replaceChild(G,R);}else{T.addClass(this.CLASS_PREFIX+"-select");}}if(J.type=="spin"){if(!D.isArray(J.range)){J.range=[10,100];}this._makeSpinButton(T,J);}T.get("element").setAttribute("title",T.get("label"));if(J.type!="spin"){if((YAHOO.widget.Overlay)&&(Q.menu instanceof YAHOO.widget.Overlay)){var H=function(Y){var W=true;if(Y.keyCode&&(Y.keyCode==9)){W=false;}if(W){if(this._colorPicker){this._colorPicker._button=J.value;}var X=T.getMenu().element;if(C.getStyle(X,"visibility")=="hidden"){T.getMenu().show();}else{T.getMenu().hide();}}YAHOO.util.Event.stopEvent(Y);};T.on("mousedown",H,J,this);T.on("keydown",H,J,this);}else{if((J.type!="menu")&&(J.type!="select")){T.on("keypress",this._buttonClick,J,this);T.on("mousedown",function(W){YAHOO.util.Event.stopEvent(W);this._buttonClick(W,J);},J,this);T.on("click",function(W){YAHOO.util.Event.stopEvent(W);});}else{T.on("mousedown",function(W){YAHOO.util.Event.stopEvent(W);});T.on("click",function(W){YAHOO.util.Event.stopEvent(W);});T.on("change",function(W){if(!J.menucmd){J.menucmd=J.value;}J.value=W.value;this._buttonClick(W,J);},this,true);var K=this;T.on("appendTo",function(){var W=this;if(W.getMenu()&&W.getMenu().mouseDownEvent){W.getMenu().mouseDownEvent.subscribe(function(Z,Y){var X=Y[1];YAHOO.util.Event.stopEvent(Y[0]);W._onMenuClick(Y[0],W);if(!J.menucmd){J.menucmd=J.value;}J.value=((X.value)?X.value:X._oText.nodeValue);K._buttonClick.call(K,Y[1],J);W._hideMenu();return false;});W.getMenu().clickEvent.subscribe(function(Y,X){YAHOO.util.Event.stopEvent(X[0]);});W.getMenu().mouseUpEvent.subscribe(function(Y,X){YAHOO.util.Event.stopEvent(X[0]);});}});}}}else{T.on("mousedown",function(W){YAHOO.util.Event.stopEvent(W);});T.on("click",function(W){YAHOO.util.Event.stopEvent(W);});}if(this.browser.ie){}if(this.browser.webkit){T.hasFocus=function(){return true;};}this._buttonList[this._buttonList.length]=T;if((J.type=="menu")||(J.type=="split")||(J.type=="select")){if(D.isArray(J.menu)){var E=T.getMenu();if(E&&E.renderEvent){E.renderEvent.subscribe(this._addMenuClasses,T);if(J.renderer){E.renderEvent.subscribe(J.renderer,T);}}}}}return J;},addSeparator:function(E,H){if(!this.get("element")){this._queue[this._queue.length]=["addSeparator",arguments];return false;}var F=((E)?E:this.get("cont"));if(!this.get("element")){this._queue[this._queue.length]=["addSeparator",arguments];return false;}if(this._sepCount===null){this._sepCount=0;}if(!this._sep){this._sep=document.createElement("SPAN");C.addClass(this._sep,this.CLASS_SEPARATOR);this._sep.innerHTML="|";}var G=this._sep.cloneNode(true);this._sepCount++;C.addClass(G,this.CLASS_SEPARATOR+"-"+this._sepCount);if(H){var I=null;if(H.get){I=H.get("element").nextSibling;}else{if(H.nextSibling){I=H.nextSibling;}else{I=H;}}if(I){if(I==H){I.parentNode.appendChild(G);}else{I.parentNode.insertBefore(G,I);}}}else{F.appendChild(G);}return G;},_createColorPicker:function(H){if(C.get(H+"_colors")){C.get(H+"_colors").parentNode.removeChild(C.get(H+"_colors"));}var E=document.createElement("div");E.className="yui-toolbar-colors";E.id=H+"_colors";E.style.display="none";A.on(window,"load",function(){document.body.appendChild(E);},this,true);this._colorPicker=E;var G="";for(var F in this._colorData){if(D.hasOwnProperty(this._colorData,F)){G+='<a style="background-color: '+F+'" href="#">'+F.replace("#","")+"</a>";}}G+="<span><em>X</em><strong></strong></span>";window.setTimeout(function(){E.innerHTML=G;},0);A.on(E,"mouseover",function(M){var K=this._colorPicker;var L=K.getElementsByTagName("em")[0];var J=K.getElementsByTagName("strong")[0];var I=A.getTarget(M);if(I.tagName.toLowerCase()=="a"){L.style.backgroundColor=I.style.backgroundColor;J.innerHTML=this._colorData["#"+I.innerHTML]+"<br>"+I.innerHTML;}},this,true);A.on(E,"focus",function(I){A.stopEvent(I);});A.on(E,"click",function(I){A.stopEvent(I);});A.on(E,"mousedown",function(J){A.stopEvent(J);var I=A.getTarget(J);if(I.tagName.toLowerCase()=="a"){var L=this.fireEvent("colorPickerClicked",{type:"colorPickerClicked",target:this,button:this._colorPicker._button,color:I.innerHTML,colorName:this._colorData["#"+I.innerHTML]});if(L!==false){var K={color:I.innerHTML,colorName:this._colorData["#"+I.innerHTML],value:this._colorPicker._button};this.fireEvent("buttonClick",{type:"buttonClick",target:this.get("element"),button:K});}this.getButtonByValue(this._colorPicker._button).getMenu().hide();}},this,true);},_resetColorPicker:function(){var F=this._colorPicker.getElementsByTagName("em")[0];var E=this._colorPicker.getElementsByTagName("strong")[0];F.style.backgroundColor="transparent";
-E.innerHTML="";},_makeColorButton:function(E){if(!this._colorPicker){this._createColorPicker(this.get("id"));}E.type="color";E.menu=new YAHOO.widget.Overlay(this.get("id")+"_"+E.value+"_menu",{visible:false,position:"absolute",iframe:true});E.menu.setBody("");E.menu.render(this.get("cont"));C.addClass(E.menu.element,"yui-button-menu");C.addClass(E.menu.element,"yui-color-button-menu");E.menu.beforeShowEvent.subscribe(function(){E.menu.cfg.setProperty("zindex",5);E.menu.cfg.setProperty("context",[this.getButtonById(E.id).get("element"),"tl","bl"]);this._resetColorPicker();var F=this._colorPicker;if(F.parentNode){F.parentNode.removeChild(F);}E.menu.setBody("");E.menu.appendToBody(F);this._colorPicker.style.display="block";},this,true);return E;},_makeSpinButton:function(R,L){R.addClass(this.CLASS_PREFIX+"-spinbutton");var S=this,N=R._button.parentNode.parentNode,I=L.range,H=document.createElement("a"),G=document.createElement("a");H.href="#";G.href="#";H.tabIndex="-1";G.tabIndex="-1";H.className="up";H.title=this.STR_SPIN_UP;H.innerHTML=this.STR_SPIN_UP;G.className="down";G.title=this.STR_SPIN_DOWN;G.innerHTML=this.STR_SPIN_DOWN;N.appendChild(H);N.appendChild(G);var M=YAHOO.lang.substitute(this.STR_SPIN_LABEL,{VALUE:R.get("label")});R.set("title",M);var Q=function(T){T=((T<I[0])?I[0]:T);T=((T>I[1])?I[1]:T);return T;};var P=this.browser;var F=false;var K=this.STR_SPIN_LABEL;if(this._titlebar&&this._titlebar.firstChild){F=this._titlebar.firstChild;}var E=function(U){YAHOO.util.Event.stopEvent(U);if(!R.get("disabled")&&(U.keyCode!=9)){var V=parseInt(R.get("label"),10);V++;V=Q(V);R.set("label",""+V);var T=YAHOO.lang.substitute(K,{VALUE:R.get("label")});R.set("title",T);if(!P.webkit&&F){}S._buttonClick(U,L);}};var O=function(U){YAHOO.util.Event.stopEvent(U);if(!R.get("disabled")&&(U.keyCode!=9)){var V=parseInt(R.get("label"),10);V--;V=Q(V);R.set("label",""+V);var T=YAHOO.lang.substitute(K,{VALUE:R.get("label")});R.set("title",T);if(!P.webkit&&F){}S._buttonClick(U,L);}};var J=function(T){if(T.keyCode==38){E(T);}else{if(T.keyCode==40){O(T);}else{if(T.keyCode==107&&T.shiftKey){E(T);}else{if(T.keyCode==109&&T.shiftKey){O(T);}}}}};R.on("keydown",J,this,true);A.on(H,"mousedown",function(T){A.stopEvent(T);},this,true);A.on(G,"mousedown",function(T){A.stopEvent(T);},this,true);A.on(H,"click",E,this,true);A.on(G,"click",O,this,true);},_buttonClick:function(L,F){var E=true;if(L&&L.type=="keypress"){if(L.keyCode==9){E=false;}else{if((L.keyCode===13)||(L.keyCode===0)||(L.keyCode===32)){}else{E=false;}}}if(E){var N=true,H=false;F.isSelected=this.isSelected(F.id);if(F.value){H=this.fireEvent(F.value+"Click",{type:F.value+"Click",target:this.get("element"),button:F});if(H===false){N=false;}}if(F.menucmd&&N){H=this.fireEvent(F.menucmd+"Click",{type:F.menucmd+"Click",target:this.get("element"),button:F});if(H===false){N=false;}}if(N){this.fireEvent("buttonClick",{type:"buttonClick",target:this.get("element"),button:F});}if(F.type=="select"){var K=this.getButtonById(F.id);if(K.buttonType=="rich"){var J=F.value;for(var I=0;I<F.menu.length;I++){if(F.menu[I].value==F.value){J=F.menu[I].text;break;}}K.set("label",'<span class="yui-toolbar-'+F.menucmd+"-"+(F.value).replace(/ /g,"-").toLowerCase()+'">'+J+"</span>");var M=K.getMenu().getItems();for(var G=0;G<M.length;G++){if(M[G].value.toLowerCase()==F.value.toLowerCase()){M[G].cfg.setProperty("checked",true);}else{M[G].cfg.setProperty("checked",false);}}}}if(L){A.stopEvent(L);}}},_keyNav:null,_navCounter:null,_navigateButtons:function(F){switch(F.keyCode){case 37:case 39:if(F.keyCode==37){this._navCounter--;}else{this._navCounter++;}if(this._navCounter>(this._buttonList.length-1)){this._navCounter=0;}if(this._navCounter<0){this._navCounter=(this._buttonList.length-1);}if(this._buttonList[this._navCounter]){var E=this._buttonList[this._navCounter].get("element");if(this.browser.ie){E=this._buttonList[this._navCounter].get("element").getElementsByTagName("a")[0];}if(this._buttonList[this._navCounter].get("disabled")){this._navigateButtons(F);}else{E.focus();}}break;}},_handleFocus:function(){if(!this._keyNav){var E="keypress";if(this.browser.ie){E="keydown";}A.on(this.get("element"),E,this._navigateButtons,this,true);this._keyNav=true;this._navCounter=-1;}},getButtonById:function(G){var E=this._buttonList.length;for(var F=0;F<E;F++){if(this._buttonList[F]&&this._buttonList[F].get("id")==G){return this._buttonList[F];}}return false;},getButtonByValue:function(K){var H=this.get("buttons");var F=H.length;for(var I=0;I<F;I++){if(H[I].group!==undefined){for(var E=0;E<H[I].buttons.length;E++){if((H[I].buttons[E].value==K)||(H[I].buttons[E].menucmd==K)){return this.getButtonById(H[I].buttons[E].id);}if(H[I].buttons[E].menu){for(var J=0;J<H[I].buttons[E].menu.length;J++){if(H[I].buttons[E].menu[J].value==K){return this.getButtonById(H[I].buttons[E].id);}}}}}else{if((H[I].value==K)||(H[I].menucmd==K)){return this.getButtonById(H[I].id);}if(H[I].menu){for(var G=0;G<H[I].menu.length;G++){if(H[I].menu[G].value==K){return this.getButtonById(H[I].id);}}}}}return false;},getButtonByIndex:function(E){if(this._buttonList[E]){return this._buttonList[E];}else{return false;}},getButtons:function(){return this._buttonList;},disableButton:function(F){var E=B.call(this,F);if(E){E.set("disabled",true);}else{return false;}},enableButton:function(F){if(this.get("disabled")){return false;}var E=B.call(this,F);if(E){if(E.get("disabled")){E.set("disabled",false);}}else{return false;}},isSelected:function(F){var E=B.call(this,F);if(E){return E._selected;}return false;},selectButton:function(I,G){var F=B.call(this,I);if(F){F.addClass("yui-button-selected");F.addClass("yui-button-"+F.get("value")+"-selected");F._selected=true;if(G){if(F.buttonType=="rich"){var H=F.getMenu().getItems();for(var E=0;E<H.length;E++){if(H[E].value==G){H[E].cfg.setProperty("checked",true);F.set("label",'<span class="yui-toolbar-'+F.get("value")+"-"+(G).replace(/ /g,"-").toLowerCase()+'">'+H[E]._oText.nodeValue+"</span>");}else{H[E].cfg.setProperty("checked",false);
-}}}}}else{return false;}},deselectButton:function(F){var E=B.call(this,F);if(E){E.removeClass("yui-button-selected");E.removeClass("yui-button-"+E.get("value")+"-selected");E.removeClass("yui-button-hover");E._selected=false;}else{return false;}},deselectAllButtons:function(){var E=this._buttonList.length;for(var F=0;F<E;F++){this.deselectButton(this._buttonList[F]);}},disableAllButtons:function(){if(this.get("disabled")){return false;}var E=this._buttonList.length;for(var F=0;F<E;F++){this.disableButton(this._buttonList[F]);}},enableAllButtons:function(){if(this.get("disabled")){return false;}var E=this._buttonList.length;for(var F=0;F<E;F++){this.enableButton(this._buttonList[F]);}},resetAllButtons:function(I){if(!D.isObject(I)){I={};}if(this.get("disabled")){return false;}var E=this._buttonList.length;for(var F=0;F<E;F++){var H=this._buttonList[F];if(H){var G=H._configs.disabled._initialConfig.value;if(I[H.get("id")]){this.enableButton(H);this.selectButton(H);}else{if(G){this.disableButton(H);}else{this.enableButton(H);}this.deselectButton(H);}}}},destroyButton:function(I){var G=B.call(this,I);if(G){var H=G.get("id");G.destroy();var E=this._buttonList.length;for(var F=0;F<E;F++){if(this._buttonList[F]&&this._buttonList[F].get("id")==H){this._buttonList[F]=null;}}}else{return false;}},destroy:function(){this.get("element").innerHTML="";this.get("element").className="";for(var E in this){if(D.hasOwnProperty(this,E)){this[E]=null;}}return true;},collapse:function(F){var E=C.getElementsByClassName("collapse","span",this._titlebar);if(F===false){C.removeClass(this.get("cont").parentNode,"yui-toolbar-container-collapsed");if(E[0]){C.removeClass(E[0],"collapsed");}this.fireEvent("toolbarExpanded",{type:"toolbarExpanded",target:this});}else{if(E[0]){C.addClass(E[0],"collapsed");}C.addClass(this.get("cont").parentNode,"yui-toolbar-container-collapsed");this.fireEvent("toolbarCollapsed",{type:"toolbarCollapsed",target:this});}},toString:function(){return"Toolbar (#"+this.get("element").id+") with "+this._buttonList.length+" buttons.";}});})();(function(){var C=YAHOO.util.Dom,A=YAHOO.util.Event,D=YAHOO.lang,B=YAHOO.widget.Toolbar;YAHOO.widget.SimpleEditor=function(H,M){var G={};if(D.isObject(H)&&(!H.tagName)&&!M){D.augmentObject(G,H);H=document.createElement("textarea");this.DOMReady=true;if(G.container){var K=C.get(G.container);K.appendChild(H);}else{document.body.appendChild(H);}}else{if(M){D.augmentObject(G,M);}}var I={element:null,attributes:G},F=null;if(D.isString(H)){F=H;}else{if(I.attributes.id){F=I.attributes.id;}else{this.DOMReady=true;F=C.generateId(H);}}I.element=H;var J=document.createElement("DIV");I.attributes.element_cont=new YAHOO.util.Element(J,{id:F+"_container"});var E=document.createElement("div");C.addClass(E,"first-child");I.attributes.element_cont.appendChild(E);if(!I.attributes.toolbar_cont){I.attributes.toolbar_cont=document.createElement("DIV");I.attributes.toolbar_cont.id=F+"_toolbar";E.appendChild(I.attributes.toolbar_cont);}var L=document.createElement("DIV");E.appendChild(L);I.attributes.editor_wrapper=L;YAHOO.widget.SimpleEditor.superclass.constructor.call(this,I.element,I.attributes);};YAHOO.extend(YAHOO.widget.SimpleEditor,YAHOO.util.Element,{_resizeConfig:{handles:["br"],autoRatio:true,status:true,proxy:true,useShim:true,setSize:false},_setupResize:function(){if(!YAHOO.util.DD||!YAHOO.util.Resize){return false;}if(this.get("resize")){var E={};D.augmentObject(E,this._resizeConfig);this.resize=new YAHOO.util.Resize(this.get("element_cont").get("element"),E);this.resize.on("resize",function(G){var K=this.get("animate");this.set("animate",false);this.set("width",G.width+"px");var H=G.height,I=(this.toolbar.get("element").clientHeight+2),J=0;if(this.dompath){J=(this.dompath.clientHeight+1);}var F=(H-I-J);this.set("height",F+"px");this.get("element_cont").setStyle("height","");this.set("animate",K);},this,true);}},resize:null,_setupDD:function(){if(!YAHOO.util.DD){return false;}if(this.get("drag")){var F=this.get("drag"),E=YAHOO.util.DD;if(F==="proxy"){E=YAHOO.util.DDProxy;}this.dd=new E(this.get("element_cont").get("element"));this.toolbar.addClass("draggable");this.dd.setHandleElId(this.toolbar._titlebar);}},dd:null,_lastCommand:null,_undoNodeChange:function(){},_storeUndo:function(){},_checkKey:function(E,H){var F=false;if((H.keyCode===E.key)){if(E.mods&&(E.mods.length>0)){var I=0;for(var G=0;G<E.mods.length;G++){if(this.browser.mac){if(E.mods[G]=="ctrl"){E.mods[G]="meta";}}if(H[E.mods[G]+"Key"]===true){I++;}}if(I===E.mods.length){F=true;}}else{F=true;}}return F;},_keyMap:{SELECT_ALL:{key:65,mods:["ctrl"]},CLOSE_WINDOW:{key:87,mods:["shift","ctrl"]},FOCUS_TOOLBAR:{key:27,mods:["shift"]},FOCUS_AFTER:{key:27},CREATE_LINK:{key:76,mods:["shift","ctrl"]},BOLD:{key:66,mods:["shift","ctrl"]},ITALIC:{key:73,mods:["shift","ctrl"]},UNDERLINE:{key:85,mods:["shift","ctrl"]},UNDO:{key:90,mods:["ctrl"]},REDO:{key:90,mods:["shift","ctrl"]},JUSTIFY_LEFT:{key:219,mods:["shift","ctrl"]},JUSTIFY_CENTER:{key:220,mods:["shift","ctrl"]},JUSTIFY_RIGHT:{key:221,mods:["shift","ctrl"]}},_cleanClassName:function(E){return E.replace(/ /g,"-").toLowerCase();},_textarea:null,_docType:'<!DOCTYPE HTML PUBLIC "-/'+"/W3C/"+"/DTD HTML 4.01/"+'/EN" "http:/'+'/www.w3.org/TR/html4/strict.dtd">',editorDirty:null,_defaultCSS:"html { height: 95%; } body { padding: 7px; background-color: #fff; font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small; } a, a:visited, a:hover { color: blue !important; text-decoration: underline !important; cursor: text !important; } .warning-localfile { border-bottom: 1px dashed red !important; } .yui-busy { cursor: wait !important; } img.selected { border: 2px dotted #808080; } img { cursor: pointer !important; border: none; } body.ptags.webkit div { margin: 11px 0; }",_defaultToolbar:null,_lastButton:null,_baseHREF:function(){var E=document.location.href;if(E.indexOf("?")!==-1){E=E.substring(0,E.indexOf("?"));}E=E.substring(0,E.lastIndexOf("/"))+"/";return E;
-}(),_lastImage:null,_blankImageLoaded:null,_fixNodesTimer:null,_nodeChangeTimer:null,_lastNodeChangeEvent:null,_lastNodeChange:0,_rendered:null,DOMReady:null,_selection:null,_mask:null,_showingHiddenElements:null,currentWindow:null,currentEvent:null,operaEvent:null,currentFont:null,currentElement:null,dompath:null,beforeElement:null,afterElement:null,invalidHTML:{form:true,input:true,button:true,select:true,link:true,html:true,body:true,iframe:true,script:true,style:true,textarea:true},toolbar:null,_contentTimer:null,_contentTimerCounter:0,_disabled:["createlink","fontname","fontsize","forecolor","backcolor"],_alwaysDisabled:{undo:true,redo:true},_alwaysEnabled:{},_semantic:{"bold":true,"italic":true,"underline":true},_tag2cmd:{"b":"bold","strong":"bold","i":"italic","em":"italic","u":"underline","sup":"superscript","sub":"subscript","img":"insertimage","a":"createlink","ul":"insertunorderedlist","ol":"insertorderedlist"},_createIframe:function(){var I=document.createElement("iframe");I.id=this.get("id")+"_editor";var G={border:"0",frameBorder:"0",marginWidth:"0",marginHeight:"0",leftMargin:"0",topMargin:"0",allowTransparency:"true",width:"100%"};if(this.get("autoHeight")){G.scrolling="no";}for(var H in G){if(D.hasOwnProperty(G,H)){I.setAttribute(H,G[H]);}}var F="javascript:;";if(this.browser.ie){F="javascript:false;";}I.setAttribute("src",F);var E=new YAHOO.util.Element(I);E.setStyle("visibility","hidden");return E;},_isElement:function(F,E){if(F&&F.tagName&&(F.tagName.toLowerCase()==E)){return true;}if(F&&F.getAttribute&&(F.getAttribute("tag")==E)){return true;}return false;},_hasParent:function(F,E){if(!F||!F.parentNode){return false;}while(F.parentNode){if(this._isElement(F,E)){return F;}if(F.parentNode){F=F.parentNode;}else{return false;}}return false;},_getDoc:function(){var E=false;if(this.get){if(this.get("iframe")){if(this.get("iframe").get){if(this.get("iframe").get("element")){try{if(this.get("iframe").get("element").contentWindow){if(this.get("iframe").get("element").contentWindow.document){E=this.get("iframe").get("element").contentWindow.document;return E;}}}catch(F){}}}}}return false;},_getWindow:function(){return this.get("iframe").get("element").contentWindow;},_focusWindow:function(E){if(this.browser.webkit){if(E){this._getSelection().setBaseAndExtent(this._getDoc().body.firstChild,0,this._getDoc().body.firstChild,1);if(this.browser.webkit3){this._getSelection().collapseToStart();}else{this._getSelection().collapse(false);}}else{this._getSelection().setBaseAndExtent(this._getDoc().body,1,this._getDoc().body,1);if(this.browser.webkit3){this._getSelection().collapseToStart();}else{this._getSelection().collapse(false);}}this._getWindow().focus();}else{this._getWindow().focus();}},_hasSelection:function(){var G=this._getSelection();var E=this._getRange();var F=false;if(!G||!E){return F;}if(this.browser.ie||this.browser.opera){if(E.text){F=true;}if(E.html){F=true;}}else{if(this.browser.webkit){if(G+""!==""){F=true;}}else{if(G&&(G.toString()!=="")&&(G!==undefined)){F=true;}}}return F;},_getSelection:function(){var E=null;if(this._getDoc()&&this._getWindow()){if(this._getDoc().selection){E=this._getDoc().selection;}else{E=this._getWindow().getSelection();}if(this.browser.webkit){if(E.baseNode){this._selection={};this._selection.baseNode=E.baseNode;this._selection.baseOffset=E.baseOffset;this._selection.extentNode=E.extentNode;this._selection.extentOffset=E.extentOffset;}else{if(this._selection!==null){E=this._getWindow().getSelection();E.setBaseAndExtent(this._selection.baseNode,this._selection.baseOffset,this._selection.extentNode,this._selection.extentOffset);this._selection=null;}}}}return E;},_selectNode:function(F,I){if(!F){return false;}var G=this._getSelection(),E=null;if(this.browser.ie){try{E=this._getDoc().body.createTextRange();E.moveToElementText(F);E.select();}catch(H){}}else{if(this.browser.webkit){if(I){G.setBaseAndExtent(F,1,F,F.innerText.length);}else{G.setBaseAndExtent(F,0,F,F.innerText.length);}}else{if(this.browser.opera){G=this._getWindow().getSelection();E=this._getDoc().createRange();E.selectNode(F);G.removeAllRanges();G.addRange(E);}else{E=this._getDoc().createRange();E.selectNodeContents(F);G.removeAllRanges();G.addRange(E);}}}this.nodeChange();},_getRange:function(){var E=this._getSelection();if(E===null){return null;}if(this.browser.webkit&&!E.getRangeAt){var H=this._getDoc().createRange();try{H.setStart(E.anchorNode,E.anchorOffset);H.setEnd(E.focusNode,E.focusOffset);}catch(G){H=this._getWindow().getSelection()+"";}return H;}if(this.browser.ie||this.browser.opera){try{return E.createRange();}catch(F){return null;}}if(E.rangeCount>0){return E.getRangeAt(0);}return null;},_setDesignMode:function(E){try{var G=true;if(this.browser.ie&&(E.toLowerCase()=="off")){G=false;}if(G){this._getDoc().designMode=E;}}catch(F){}},_toggleDesignMode:function(){var F=this._getDoc().designMode.toLowerCase(),E="on";if(F=="on"){E="off";}this._setDesignMode(E);return E;},_initEditorEvents:function(){var E=this._getDoc();A.on(E,"mouseup",this._handleMouseUp,this,true);A.on(E,"mousedown",this._handleMouseDown,this,true);A.on(E,"click",this._handleClick,this,true);A.on(E,"dblclick",this._handleDoubleClick,this,true);A.on(E,"keypress",this._handleKeyPress,this,true);A.on(E,"keyup",this._handleKeyUp,this,true);A.on(E,"keydown",this._handleKeyDown,this,true);},_removeEditorEvents:function(){var E=this._getDoc();A.removeListener(E,"mouseup",this._handleMouseUp,this,true);A.removeListener(E,"mousedown",this._handleMouseDown,this,true);A.removeListener(E,"click",this._handleClick,this,true);A.removeListener(E,"dblclick",this._handleDoubleClick,this,true);A.removeListener(E,"keypress",this._handleKeyPress,this,true);A.removeListener(E,"keyup",this._handleKeyUp,this,true);A.removeListener(E,"keydown",this._handleKeyDown,this,true);},_initEditor:function(){if(this.browser.ie){this._getDoc().body.style.margin="0";}if(!this.get("disabled")){if(this._getDoc().designMode.toLowerCase()!="on"){this._setDesignMode("on");
-this._contentTimerCounter=0;}}if(!this._getDoc().body){this._contentTimerCounter=0;this._checkLoaded();return false;}this.toolbar.on("buttonClick",this._handleToolbarClick,this,true);if(!this.get("disabled")){this._initEditorEvents();this.toolbar.set("disabled",false);}this.fireEvent("editorContentLoaded",{type:"editorLoaded",target:this});if(this.get("dompath")){var E=this;setTimeout(function(){E._writeDomPath.call(E);E._setupResize.call(E);},150);}var G=[];for(var F in this.browser){if(this.browser[F]){G.push(F);}}if(this.get("ptags")){G.push("ptags");}C.addClass(this._getDoc().body,G.join(" "));this.nodeChange(true);},_checkLoaded:function(){this._contentTimerCounter++;if(this._contentTimer){clearTimeout(this._contentTimer);}if(this._contentTimerCounter>500){return false;}var G=false;try{if(this._getDoc()&&this._getDoc().body){if(this.browser.ie){if(this._getDoc().body.readyState=="complete"){G=true;}}else{if(this._getDoc().body._rteLoaded===true){G=true;}}}}catch(F){G=false;}if(G===true){this._initEditor();}else{var E=this;this._contentTimer=setTimeout(function(){E._checkLoaded.call(E);},20);}},_setInitialContent:function(){var H=((this._textarea)?this.get("element").value:this.get("element").innerHTML),J=null;var F=D.substitute(this.get("html"),{TITLE:this.STR_TITLE,CONTENT:this._cleanIncomingHTML(H),CSS:this.get("css"),HIDDEN_CSS:((this.get("hiddencss"))?this.get("hiddencss"):"/* No Hidden CSS */"),EXTRA_CSS:((this.get("extracss"))?this.get("extracss"):"/* No Extra CSS */")}),E=true;if(document.compatMode!="BackCompat"){F=this._docType+"\n"+F;}else{}if(this.browser.ie||this.browser.webkit||this.browser.opera||(navigator.userAgent.indexOf("Firefox/1.5")!=-1)){try{if(this.browser.air){J=this._getDoc().implementation.createHTMLDocument();var K=this._getDoc();K.open();K.close();J.open();J.write(F);J.close();var G=K.importNode(J.getElementsByTagName("html")[0],true);K.replaceChild(G,K.getElementsByTagName("html")[0]);K.body._rteLoaded=true;}else{J=this._getDoc();J.open();J.write(F);J.close();}}catch(I){E=false;}}else{this.get("iframe").get("element").src="data:text/html;charset=utf-8,"+encodeURIComponent(F);}this.get("iframe").setStyle("visibility","");if(E){this._checkLoaded();}},_setMarkupType:function(E){switch(this.get("markup")){case"css":this._setEditorStyle(true);break;case"default":this._setEditorStyle(false);break;case"semantic":case"xhtml":if(this._semantic[E]){this._setEditorStyle(false);}else{this._setEditorStyle(true);}break;}},_setEditorStyle:function(F){try{this._getDoc().execCommand("useCSS",false,!F);}catch(E){}},_getSelectedElement:function(){var I=this._getDoc(),F=null,G=null,J=null,E=true;if(this.browser.ie){this.currentEvent=this._getWindow().event;F=this._getRange();if(F){J=F.item?F.item(0):F.parentElement();if(this._hasSelection()){}if(J===I.body){J=null;}}if((this.currentEvent!==null)&&(this.currentEvent.keyCode===0)){J=A.getTarget(this.currentEvent);}}else{G=this._getSelection();F=this._getRange();if(!G||!F){return null;}if(!this._hasSelection()&&this.browser.webkit3){}if(this.browser.gecko){if(F.startContainer){E=false;if(F.startContainer.nodeType===3){J=F.startContainer.parentNode;}else{if(F.startContainer.nodeType===1){J=F.startContainer;}else{E=true;}}if(!E){this.currentEvent=null;}}}if(E){if(G.anchorNode&&(G.anchorNode.nodeType==3)){if(G.anchorNode.parentNode){J=G.anchorNode.parentNode;}if(G.anchorNode.nextSibling!=G.focusNode.nextSibling){J=G.anchorNode.nextSibling;}}if(this._isElement(J,"br")){J=null;}if(!J){J=F.commonAncestorContainer;if(!F.collapsed){if(F.startContainer==F.endContainer){if(F.startOffset-F.endOffset<2){if(F.startContainer.hasChildNodes()){J=F.startContainer.childNodes[F.startOffset];}}}}}}}if(this.currentEvent!==null){try{switch(this.currentEvent.type){case"click":case"mousedown":case"mouseup":if(this.browser.webkit){J=A.getTarget(this.currentEvent);}break;default:break;}}catch(H){}}else{if((this.currentElement&&this.currentElement[0])&&(!this.browser.ie)){}}if(this.browser.opera||this.browser.webkit){if(this.currentEvent&&!J){J=YAHOO.util.Event.getTarget(this.currentEvent);}}if(!J||!J.tagName){J=I.body;}if(this._isElement(J,"html")){J=I.body;}if(this._isElement(J,"body")){J=I.body;}if(J&&!J.parentNode){J=I.body;}if(J===undefined){J=null;}return J;},_getDomPath:function(E){if(!E){E=this._getSelectedElement();}var F=[];while(E!==null){if(E.ownerDocument!=this._getDoc()){E=null;break;}if(E.nodeName&&E.nodeType&&(E.nodeType==1)){F[F.length]=E;}if(this._isElement(E,"body")){break;}E=E.parentNode;}if(F.length===0){if(this._getDoc()&&this._getDoc().body){F[0]=this._getDoc().body;}}return F.reverse();},_writeDomPath:function(){var K=this._getDomPath(),I=[],G="",L="";for(var E=0;E<K.length;E++){var M=K[E].tagName.toLowerCase();if((M=="ol")&&(K[E].type)){M+=":"+K[E].type;}if(C.hasClass(K[E],"yui-tag")){M=K[E].getAttribute("tag");}if((this.get("markup")=="semantic")||(this.get("markup")=="xhtml")){switch(M){case"b":M="strong";break;case"i":M="em";break;}}if(!C.hasClass(K[E],"yui-non")){if(C.hasClass(K[E],"yui-tag")){L=M;}else{G=((K[E].className!=="")?"."+K[E].className.replace(/ /g,"."):"");if((G.indexOf("yui")!=-1)||(G.toLowerCase().indexOf("apple-style-span")!=-1)){G="";}L=M+((K[E].id)?"#"+K[E].id:"")+G;}switch(M){case"body":L="body";break;case"a":if(K[E].getAttribute("href",2)){L+=":"+K[E].getAttribute("href",2).replace("mailto:","").replace("http:/"+"/","").replace("https:/"+"/","");}break;case"img":var F=K[E].height;var J=K[E].width;if(K[E].style.height){F=parseInt(K[E].style.height,10);}if(K[E].style.width){J=parseInt(K[E].style.width,10);}L+="("+J+"x"+F+")";break;}if(L.length>10){L='<span title="'+L+'">'+L.substring(0,10)+"..."+"</span>";}else{L='<span title="'+L+'">'+L+"</span>";}I[I.length]=L;}}var H=I.join(" "+this.SEP_DOMPATH+" ");if(this.dompath.innerHTML!=H){this.dompath.innerHTML=H;}},_fixNodes:function(){var J=this._getDoc(),H=[];for(var E in this.invalidHTML){if(YAHOO.lang.hasOwnProperty(this.invalidHTML,E)){if(E.toLowerCase()!="span"){var F=J.body.getElementsByTagName(E);
-if(F.length){for(var G=0;G<F.length;G++){H.push(F[G]);}}}}}for(var I=0;I<H.length;I++){if(H[I].parentNode){if(D.isObject(this.invalidHTML[H[I].tagName.toLowerCase()])&&this.invalidHTML[H[I].tagName.toLowerCase()].keepContents){this._swapEl(H[I],"span",function(L){L.className="yui-non";});}else{H[I].parentNode.removeChild(H[I]);}}}var K=this._getDoc().getElementsByTagName("img");C.addClass(K,"yui-img");},_isNonEditable:function(G){if(this.get("allowNoEdit")){var F=A.getTarget(G);if(this._isElement(F,"html")){F=null;}var J=this._getDomPath(F);for(var E=(J.length-1);E>-1;E--){if(C.hasClass(J[E],this.CLASS_NOEDIT)){try{this._getDoc().execCommand("enableObjectResizing",false,"false");}catch(I){}this.nodeChange();A.stopEvent(G);return true;}}try{this._getDoc().execCommand("enableObjectResizing",false,"true");}catch(H){}}return false;},_setCurrentEvent:function(E){this.currentEvent=E;},_handleClick:function(G){var F=this.fireEvent("beforeEditorClick",{type:"beforeEditorClick",target:this,ev:G});if(F===false){return false;}if(this._isNonEditable(G)){return false;}this._setCurrentEvent(G);if(this.currentWindow){this.closeWindow();}if(this.currentWindow){this.closeWindow();}if(this.browser.webkit){var E=A.getTarget(G);if(this._isElement(E,"a")||this._isElement(E.parentNode,"a")){A.stopEvent(G);this.nodeChange();}}else{this.nodeChange();}this.fireEvent("editorClick",{type:"editorClick",target:this,ev:G});},_handleMouseUp:function(G){var F=this.fireEvent("beforeEditorMouseUp",{type:"beforeEditorMouseUp",target:this,ev:G});if(F===false){return false;}if(this._isNonEditable(G)){return false;}var E=this;if(this.browser.opera){var H=A.getTarget(G);if(this._isElement(H,"img")){this.nodeChange();if(this.operaEvent){clearTimeout(this.operaEvent);this.operaEvent=null;this._handleDoubleClick(G);}else{this.operaEvent=window.setTimeout(function(){E.operaEvent=false;},700);}}}if(this.browser.webkit||this.browser.opera){if(this.browser.webkit){A.stopEvent(G);}}this.nodeChange();this.fireEvent("editorMouseUp",{type:"editorMouseUp",target:this,ev:G});},_handleMouseDown:function(F){var E=this.fireEvent("beforeEditorMouseDown",{type:"beforeEditorMouseDown",target:this,ev:F});if(E===false){return false;}if(this._isNonEditable(F)){return false;}this._setCurrentEvent(F);var G=A.getTarget(F);if(this.browser.webkit&&this._hasSelection()){var H=this._getSelection();if(!this.browser.webkit3){H.collapse(true);}else{H.collapseToStart();}}if(this.browser.webkit&&this._lastImage){C.removeClass(this._lastImage,"selected");this._lastImage=null;}if(this._isElement(G,"img")||this._isElement(G,"a")){if(this.browser.webkit){A.stopEvent(F);if(this._isElement(G,"img")){C.addClass(G,"selected");this._lastImage=G;}}if(this.currentWindow){this.closeWindow();}this.nodeChange();}this.fireEvent("editorMouseDown",{type:"editorMouseDown",target:this,ev:F});},_handleDoubleClick:function(F){var E=this.fireEvent("beforeEditorDoubleClick",{type:"beforeEditorDoubleClick",target:this,ev:F});if(E===false){return false;}if(this._isNonEditable(F)){return false;}this._setCurrentEvent(F);var G=A.getTarget(F);if(this._isElement(G,"img")){this.currentElement[0]=G;this.toolbar.fireEvent("insertimageClick",{type:"insertimageClick",target:this.toolbar});this.fireEvent("afterExecCommand",{type:"afterExecCommand",target:this});}else{if(this._hasParent(G,"a")){this.currentElement[0]=this._hasParent(G,"a");this.toolbar.fireEvent("createlinkClick",{type:"createlinkClick",target:this.toolbar});this.fireEvent("afterExecCommand",{type:"afterExecCommand",target:this});}}this.nodeChange();this.fireEvent("editorDoubleClick",{type:"editorDoubleClick",target:this,ev:F});},_handleKeyUp:function(G){var F=this.fireEvent("beforeEditorKeyUp",{type:"beforeEditorKeyUp",target:this,ev:G});if(F===false){return false;}if(this._isNonEditable(G)){return false;}this._setCurrentEvent(G);switch(G.keyCode){case this._keyMap.SELECT_ALL.key:if(this._checkKey(this._keyMap.SELECT_ALL,G)){this.nodeChange();}break;case 32:case 35:case 36:case 37:case 38:case 39:case 40:case 46:case 8:case this._keyMap.CLOSE_WINDOW.key:if((G.keyCode==this._keyMap.CLOSE_WINDOW.key)&&this.currentWindow){if(this._checkKey(this._keyMap.CLOSE_WINDOW,G)){this.closeWindow();}}else{if(!this.browser.ie){if(this._nodeChangeTimer){clearTimeout(this._nodeChangeTimer);}var E=this;this._nodeChangeTimer=setTimeout(function(){E._nodeChangeTimer=null;E.nodeChange.call(E);},100);}else{this.nodeChange();}this.editorDirty=true;}break;}this.fireEvent("editorKeyUp",{type:"editorKeyUp",target:this,ev:G});this._storeUndo();},_handleKeyPress:function(G){var F=this.fireEvent("beforeEditorKeyPress",{type:"beforeEditorKeyPress",target:this,ev:G});if(F===false){return false;}if(this.get("allowNoEdit")){if(G&&G.keyCode&&(G.keyCode==63272)){A.stopEvent(G);}}if(this._isNonEditable(G)){return false;}this._setCurrentEvent(G);if(this.browser.opera){if(G.keyCode===13){var E=this._getSelectedElement();if(!this._isElement(E,"li")){this.execCommand("inserthtml","<br>");A.stopEvent(G);}}}if(this.browser.webkit){if(!this.browser.webkit3){if(G.keyCode&&(G.keyCode==122)&&(G.metaKey)){if(this._hasParent(this._getSelectedElement(),"li")){A.stopEvent(G);}}}this._listFix(G);}this.fireEvent("editorKeyPress",{type:"editorKeyPress",target:this,ev:G});},_handleKeyDown:function(M){var J=this.fireEvent("beforeEditorKeyDown",{type:"beforeEditorKeyDown",target:this,ev:M});if(J===false){return false;}var I=null,K=null;if(this._isNonEditable(M)){return false;}this._setCurrentEvent(M);if(this.currentWindow){this.closeWindow();}if(this.currentWindow){this.closeWindow();}var L=false,G=null,F=false;switch(M.keyCode){case this._keyMap.FOCUS_TOOLBAR.key:if(this._checkKey(this._keyMap.FOCUS_TOOLBAR,M)){var H=this.toolbar.getElementsByTagName("h2")[0];if(H&&H.firstChild){H.firstChild.focus();}}else{if(this._checkKey(this._keyMap.FOCUS_AFTER,M)){this.afterElement.focus();}}A.stopEvent(M);L=false;break;case this._keyMap.CREATE_LINK.key:if(this._hasSelection()){if(this._checkKey(this._keyMap.CREATE_LINK,M)){var E=true;
-if(this.get("limitCommands")){if(!this.toolbar.getButtonByValue("createlink")){E=false;}}if(E){this.execCommand("createlink","");this.toolbar.fireEvent("createlinkClick",{type:"createlinkClick",target:this.toolbar});this.fireEvent("afterExecCommand",{type:"afterExecCommand",target:this});L=false;}}}break;case this._keyMap.UNDO.key:case this._keyMap.REDO.key:if(this._checkKey(this._keyMap.REDO,M)){G="redo";L=true;}else{if(this._checkKey(this._keyMap.UNDO,M)){G="undo";L=true;}}break;case this._keyMap.BOLD.key:if(this._checkKey(this._keyMap.BOLD,M)){G="bold";L=true;}break;case this._keyMap.ITALIC.key:if(this._checkKey(this._keyMap.ITALIC,M)){G="italic";L=true;}break;case this._keyMap.UNDERLINE.key:if(this._checkKey(this._keyMap.UNDERLINE,M)){G="underline";L=true;}break;case 9:if(this.browser.ie){K=this._getRange();I=this._getSelectedElement();if(!this._isElement(I,"li")){if(K){K.pasteHTML("&nbsp;&nbsp;&nbsp;&nbsp;");K.collapse(false);K.select();}A.stopEvent(M);}}if(this.browser.gecko>1.8){I=this._getSelectedElement();if(this._isElement(I,"li")){if(M.shiftKey){this._getDoc().execCommand("outdent",null,"");}else{this._getDoc().execCommand("indent",null,"");}}else{if(!this._hasSelection()){this.execCommand("inserthtml","&nbsp;&nbsp;&nbsp;&nbsp;");}}A.stopEvent(M);}break;case 13:if(this.get("ptags")&&!M.shiftKey){if(this.browser.gecko){I=this._getSelectedElement();if(!this._isElement(I,"li")){L=true;G="insertparagraph";A.stopEvent(M);}}if(this.browser.webkit){I=this._getSelectedElement();if(!this._hasParent(I,"li")){L=true;G="insertparagraph";A.stopEvent(M);}}}else{if(this.browser.ie){K=this._getRange();I=this._getSelectedElement();if(!this._isElement(I,"li")){if(K){K.pasteHTML("<br>");K.collapse(false);K.select();}A.stopEvent(M);}}}break;}if(this.browser.ie){this._listFix(M);}if(L&&G){this.execCommand(G,null);A.stopEvent(M);this.nodeChange();}this.fireEvent("editorKeyDown",{type:"editorKeyDown",target:this,ev:M});},_listFix:function(K){var M=null,I=null,E=false,G=null;if(this.browser.webkit){if(K.keyCode&&(K.keyCode==13)){if(this._hasParent(this._getSelectedElement(),"li")){var H=this._hasParent(this._getSelectedElement(),"li");if(H.previousSibling){if(H.firstChild&&(H.firstChild.length==1)){this._selectNode(H);}}}}}if(K.keyCode&&((!this.browser.webkit3&&(K.keyCode==25))||((this.browser.webkit3||!this.browser.webkit)&&((K.keyCode==9)&&K.shiftKey)))){M=this._getSelectedElement();if(this._hasParent(M,"li")){M=this._hasParent(M,"li");if(this._hasParent(M,"ul")||this._hasParent(M,"ol")){I=this._hasParent(M,"ul");if(!I){I=this._hasParent(M,"ol");}if(this._isElement(I.previousSibling,"li")){I.removeChild(M);I.parentNode.insertBefore(M,I.nextSibling);if(this.browser.ie){G=this._getDoc().body.createTextRange();G.moveToElementText(M);G.collapse(false);G.select();}if(this.browser.webkit){this._selectNode(M.firstChild);}A.stopEvent(K);}}}}if(K.keyCode&&((K.keyCode==9)&&(!K.shiftKey))){var F=this._getSelectedElement();if(this._hasParent(F,"li")){E=this._hasParent(F,"li").innerHTML;}if(this.browser.webkit){this._getDoc().execCommand("inserttext",false,"\t");}M=this._getSelectedElement();if(this._hasParent(M,"li")){I=this._hasParent(M,"li");var J=this._getDoc().createElement(I.parentNode.tagName.toLowerCase());if(this.browser.webkit){var L=C.getElementsByClassName("Apple-tab-span","span",I);if(L[0]){I.removeChild(L[0]);I.innerHTML=D.trim(I.innerHTML);if(E){I.innerHTML='<span class="yui-non">'+E+"</span>&nbsp;";}else{I.innerHTML='<span class="yui-non">&nbsp;</span>&nbsp;';}}}else{if(E){I.innerHTML=E+"&nbsp;";}else{I.innerHTML="&nbsp;";}}I.parentNode.replaceChild(J,I);J.appendChild(I);if(this.browser.webkit){this._getSelection().setBaseAndExtent(I.firstChild,1,I.firstChild,I.firstChild.innerText.length);if(!this.browser.webkit3){I.parentNode.parentNode.style.display="list-item";setTimeout(function(){I.parentNode.parentNode.style.display="block";},1);}}else{if(this.browser.ie){G=this._getDoc().body.createTextRange();G.moveToElementText(I);G.collapse(false);G.select();}else{this._selectNode(I);}}A.stopEvent(K);}if(this.browser.webkit){A.stopEvent(K);}this.nodeChange();}},nodeChange:function(E){var F=this;this._storeUndo();if(this.get("nodeChangeDelay")){window.setTimeout(function(){F._nodeChange.apply(F,arguments);},0);}else{this._nodeChange();}},_nodeChange:function(F){var H=parseInt(this.get("nodeChangeThreshold"),10),O=Math.round(new Date().getTime()/1000),R=this;if(F===true){this._lastNodeChange=0;}if((this._lastNodeChange+H)<O){if(this._fixNodesTimer===null){this._fixNodesTimer=window.setTimeout(function(){R._fixNodes.call(R);R._fixNodesTimer=null;},0);}}this._lastNodeChange=O;if(this.currentEvent){try{this._lastNodeChangeEvent=this.currentEvent.type;}catch(a){}}var Z=this.fireEvent("beforeNodeChange",{type:"beforeNodeChange",target:this});if(Z===false){return false;}if(this.get("dompath")){window.setTimeout(function(){R._writeDomPath.call(R);},0);}if(!this.get("disabled")){if(this.STOP_NODE_CHANGE){this.STOP_NODE_CHANGE=false;return false;}else{var T=this._getSelection(),Q=this._getRange(),E=this._getSelectedElement(),M=this.toolbar.getButtonByValue("fontname"),L=this.toolbar.getButtonByValue("fontsize"),J=this.toolbar.getButtonByValue("undo"),G=this.toolbar.getButtonByValue("redo");var N={};if(this._lastButton){N[this._lastButton.id]=true;}if(!this._isElement(E,"body")){if(M){N[M.get("id")]=true;}if(L){N[L.get("id")]=true;}}if(G){delete N[G.get("id")];}this.toolbar.resetAllButtons(N);for(var b=0;b<this._disabled.length;b++){var P=this.toolbar.getButtonByValue(this._disabled[b]);if(P&&P.get){if(this._lastButton&&(P.get("id")===this._lastButton.id)){}else{if(!this._hasSelection()&&!this.get("insert")){switch(this._disabled[b]){case"fontname":case"fontsize":break;default:this.toolbar.disableButton(P);}}else{if(!this._alwaysDisabled[this._disabled[b]]){this.toolbar.enableButton(P);}}if(!this._alwaysEnabled[this._disabled[b]]){this.toolbar.deselectButton(P);}}}}var S=this._getDomPath();var c=null,W=null;for(var X=0;
-X<S.length;X++){c=S[X].tagName.toLowerCase();if(S[X].getAttribute("tag")){c=S[X].getAttribute("tag").toLowerCase();}W=this._tag2cmd[c];if(W===undefined){W=[];}if(!D.isArray(W)){W=[W];}if(S[X].style.fontWeight.toLowerCase()=="bold"){W[W.length]="bold";}if(S[X].style.fontStyle.toLowerCase()=="italic"){W[W.length]="italic";}if(S[X].style.textDecoration.toLowerCase()=="underline"){W[W.length]="underline";}if(S[X].style.textDecoration.toLowerCase()=="line-through"){W[W.length]="strikethrough";}if(W.length>0){for(var V=0;V<W.length;V++){this.toolbar.selectButton(W[V]);this.toolbar.enableButton(W[V]);}}switch(S[X].style.textAlign.toLowerCase()){case"left":case"right":case"center":case"justify":var U=S[X].style.textAlign.toLowerCase();if(S[X].style.textAlign.toLowerCase()=="justify"){U="full";}this.toolbar.selectButton("justify"+U);this.toolbar.enableButton("justify"+U);break;}}if(M){var Y=M._configs.label._initialConfig.value;M.set("label",'<span class="yui-toolbar-fontname-'+this._cleanClassName(Y)+'">'+Y+"</span>");this._updateMenuChecked("fontname",Y);}if(L){L.set("label",L._configs.label._initialConfig.value);}var K=this.toolbar.getButtonByValue("heading");if(K){K.set("label",K._configs.label._initialConfig.value);this._updateMenuChecked("heading","none");}var I=this.toolbar.getButtonByValue("insertimage");if(I&&this.currentWindow&&(this.currentWindow.name=="insertimage")){this.toolbar.disableButton(I);}if(this._lastButton&&this._lastButton.isSelected){this.toolbar.deselectButton(this._lastButton.id);}this._undoNodeChange();}}this.fireEvent("afterNodeChange",{type:"afterNodeChange",target:this});},_updateMenuChecked:function(E,F,H){if(!H){H=this.toolbar;}var G=H.getButtonByValue(E);G.checkValue(F);},_handleToolbarClick:function(F){var H="";var I="";var G=F.button.value;if(F.button.menucmd){H=G;G=F.button.menucmd;}this._lastButton=F.button;if(this.STOP_EXEC_COMMAND){this.STOP_EXEC_COMMAND=false;return false;}else{this.execCommand(G,H);if(!this.browser.webkit){var E=this;setTimeout(function(){E._focusWindow.call(E);},5);}}A.stopEvent(F);},_setupAfterElement:function(){if(!this.beforeElement){this.beforeElement=document.createElement("h2");this.beforeElement.className="yui-editor-skipheader";this.beforeElement.tabIndex="-1";this.beforeElement.innerHTML=this.STR_BEFORE_EDITOR;this.get("element_cont").get("firstChild").insertBefore(this.beforeElement,this.toolbar.get("nextSibling"));}if(!this.afterElement){this.afterElement=document.createElement("h2");this.afterElement.className="yui-editor-skipheader";this.afterElement.tabIndex="-1";this.afterElement.innerHTML=this.STR_LEAVE_EDITOR;this.get("element_cont").get("firstChild").appendChild(this.afterElement);}},_disableEditor:function(F){if(F){this._removeEditorEvents();if(!this._mask){if(!!this.browser.ie){this._setDesignMode("off");}if(this.toolbar){this.toolbar.set("disabled",true);}this._mask=document.createElement("DIV");C.setStyle(this._mask,"height","100%");C.setStyle(this._mask,"width","100%");C.setStyle(this._mask,"position","absolute");C.setStyle(this._mask,"top","0");C.setStyle(this._mask,"left","0");C.setStyle(this._mask,"opacity",".5");C.addClass(this._mask,"yui-editor-masked");this.get("iframe").get("parentNode").appendChild(this._mask);}}else{this._initEditorEvents();if(this._mask){this._mask.parentNode.removeChild(this._mask);this._mask=null;if(this.toolbar){this.toolbar.set("disabled",false);}this._setDesignMode("on");this._focusWindow();var E=this;window.setTimeout(function(){E.nodeChange.call(E);},100);}}},SEP_DOMPATH:"<",STR_LEAVE_EDITOR:"You have left the Rich Text Editor.",STR_BEFORE_EDITOR:"This text field can contain stylized text and graphics. To cycle through all formatting options, use the keyboard shortcut Shift + Escape to place focus on the toolbar and navigate between options with your arrow keys. To exit this text editor use the Escape key and continue tabbing. <h4>Common formatting keyboard shortcuts:</h4><ul><li>Control Shift B sets text to bold</li> <li>Control Shift I sets text to italic</li> <li>Control Shift U underlines text</li> <li>Control Shift L adds an HTML link</li></ul>",STR_TITLE:"Rich Text Area.",STR_IMAGE_HERE:"Image URL Here",STR_LINK_URL:"Link URL",STOP_EXEC_COMMAND:false,STOP_NODE_CHANGE:false,CLASS_NOEDIT:"yui-noedit",CLASS_CONTAINER:"yui-editor-container",CLASS_EDITABLE:"yui-editor-editable",CLASS_EDITABLE_CONT:"yui-editor-editable-container",CLASS_PREFIX:"yui-editor",browser:function(){var E=YAHOO.env.ua;if(E.webkit>=420){E.webkit3=E.webkit;}else{E.webkit3=0;}E.mac=false;if(navigator.userAgent.indexOf("Macintosh")!==-1){E.mac=true;}return E;}(),init:function(F,E){if(!this._defaultToolbar){this._defaultToolbar={collapse:true,titlebar:"Text Editing Tools",draggable:false,buttons:[{group:"fontstyle",label:"Font Name and Size",buttons:[{type:"select",label:"Arial",value:"fontname",disabled:true,menu:[{text:"Arial",checked:true},{text:"Arial Black"},{text:"Comic Sans MS"},{text:"Courier New"},{text:"Lucida Console"},{text:"Tahoma"},{text:"Times New Roman"},{text:"Trebuchet MS"},{text:"Verdana"}]},{type:"spin",label:"13",value:"fontsize",range:[9,75],disabled:true}]},{type:"separator"},{group:"textstyle",label:"Font Style",buttons:[{type:"push",label:"Bold CTRL + SHIFT + B",value:"bold"},{type:"push",label:"Italic CTRL + SHIFT + I",value:"italic"},{type:"push",label:"Underline CTRL + SHIFT + U",value:"underline"},{type:"push",label:"Strike Through",value:"strikethrough"},{type:"separator"},{type:"color",label:"Font Color",value:"forecolor",disabled:true},{type:"color",label:"Background Color",value:"backcolor",disabled:true}]},{type:"separator"},{group:"indentlist",label:"Lists",buttons:[{type:"push",label:"Create an Unordered List",value:"insertunorderedlist"},{type:"push",label:"Create an Ordered List",value:"insertorderedlist"}]},{type:"separator"},{group:"insertitem",label:"Insert Item",buttons:[{type:"push",label:"HTML Link CTRL + SHIFT + L",value:"createlink",disabled:true},{type:"push",label:"Insert Image",value:"insertimage"}]}]};
-}YAHOO.widget.SimpleEditor.superclass.init.call(this,F,E);YAHOO.widget.EditorInfo._instances[this.get("id")]=this;this.currentElement=[];this.on("contentReady",function(){this.DOMReady=true;this.fireQueue();},this,true);},initAttributes:function(E){YAHOO.widget.SimpleEditor.superclass.initAttributes.call(this,E);var F=this;this.setAttributeConfig("nodeChangeDelay",{value:((E.nodeChangeDelay===false)?false:true)});this.setAttributeConfig("maxUndo",{writeOnce:true,value:E.maxUndo||30});this.setAttributeConfig("ptags",{writeOnce:true,value:E.ptags||false});this.setAttributeConfig("insert",{writeOnce:true,value:E.insert||false,method:function(K){if(K){var J={fontname:true,fontsize:true,forecolor:true,backcolor:true};var I=this._defaultToolbar.buttons;for(var H=0;H<I.length;H++){if(I[H].buttons){for(var G=0;G<I[H].buttons.length;G++){if(I[H].buttons[G].value){if(J[I[H].buttons[G].value]){delete I[H].buttons[G].disabled;}}}}}}}});this.setAttributeConfig("container",{writeOnce:true,value:E.container||false});this.setAttributeConfig("plainText",{writeOnce:true,value:E.plainText||false});this.setAttributeConfig("iframe",{value:null});this.setAttributeConfig("textarea",{value:null,writeOnce:true});this.setAttributeConfig("container",{readOnly:true,value:null});this.setAttributeConfig("nodeChangeThreshold",{value:E.nodeChangeThreshold||3,validator:YAHOO.lang.isNumber});this.setAttributeConfig("allowNoEdit",{value:E.allowNoEdit||false,validator:YAHOO.lang.isBoolean});this.setAttributeConfig("limitCommands",{value:E.limitCommands||false,validator:YAHOO.lang.isBoolean});this.setAttributeConfig("element_cont",{value:E.element_cont});this.setAttributeConfig("editor_wrapper",{value:E.editor_wrapper||null,writeOnce:true});this.setAttributeConfig("height",{value:E.height||C.getStyle(F.get("element"),"height"),method:function(G){if(this._rendered){if(this.get("animate")){var H=new YAHOO.util.Anim(this.get("iframe").get("parentNode"),{height:{to:parseInt(G,10)}},0.5);H.animate();}else{C.setStyle(this.get("iframe").get("parentNode"),"height",G);}}}});this.setAttributeConfig("autoHeight",{value:E.autoHeight||false,method:function(G){if(G){if(this.get("iframe")){this.get("iframe").get("element").setAttribute("scrolling","no");}this.on("afterNodeChange",this._handleAutoHeight,this,true);this.on("editorKeyDown",this._handleAutoHeight,this,true);this.on("editorKeyPress",this._handleAutoHeight,this,true);}else{if(this.get("iframe")){this.get("iframe").get("element").setAttribute("scrolling","auto");}this.unsubscribe("afterNodeChange",this._handleAutoHeight);this.unsubscribe("editorKeyDown",this._handleAutoHeight);this.unsubscribe("editorKeyPress",this._handleAutoHeight);}}});this.setAttributeConfig("width",{value:E.width||C.getStyle(this.get("element"),"width"),method:function(G){if(this._rendered){if(this.get("animate")){var H=new YAHOO.util.Anim(this.get("element_cont").get("element"),{width:{to:parseInt(G,10)}},0.5);H.animate();}else{this.get("element_cont").setStyle("width",G);}}}});this.setAttributeConfig("blankimage",{value:E.blankimage||this._getBlankImage()});this.setAttributeConfig("css",{value:E.css||this._defaultCSS,writeOnce:true});this.setAttributeConfig("html",{value:E.html||'<html><head><title>{TITLE}</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><base href="'+this._baseHREF+'"><style>{CSS}</style><style>{HIDDEN_CSS}</style><style>{EXTRA_CSS}</style></head><body onload="document.body._rteLoaded = true;">{CONTENT}</body></html>',writeOnce:true});this.setAttributeConfig("extracss",{value:E.extracss||"",writeOnce:true});this.setAttributeConfig("handleSubmit",{value:E.handleSubmit||false,method:function(G){if(this.get("element").form){if(!this._formButtons){this._formButtons=[];}if(G){A.on(this.get("element").form,"submit",this._handleFormSubmit,this,true);var H=this.get("element").form.getElementsByTagName("input");for(var J=0;J<H.length;J++){var I=H[J].getAttribute("type");if(I&&(I.toLowerCase()=="submit")){A.on(H[J],"click",this._handleFormButtonClick,this,true);this._formButtons[this._formButtons.length]=H[J];}}}else{A.removeListener(this.get("element").form,"submit",this._handleFormSubmit);if(this._formButtons){A.removeListener(this._formButtons,"click",this._handleFormButtonClick);}}}}});this.setAttributeConfig("disabled",{value:false,method:function(G){if(this._rendered){this._disableEditor(G);}}});this.setAttributeConfig("saveEl",{value:this.get("element")});this.setAttributeConfig("toolbar_cont",{value:null,writeOnce:true});this.setAttributeConfig("toolbar",{value:E.toolbar||this._defaultToolbar,writeOnce:true,method:function(G){if(!G.buttonType){G.buttonType=this._defaultToolbar.buttonType;}this._defaultToolbar=G;}});this.setAttributeConfig("animate",{value:((E.animate)?((YAHOO.util.Anim)?true:false):false),validator:function(H){var G=true;if(!YAHOO.util.Anim){G=false;}return G;}});this.setAttributeConfig("panel",{value:null,writeOnce:true,validator:function(H){var G=true;if(!YAHOO.widget.Overlay){G=false;}return G;}});this.setAttributeConfig("focusAtStart",{value:E.focusAtStart||false,writeOnce:true,method:function(G){if(G){this.on("editorContentLoaded",function(){var H=this;setTimeout(function(){H._focusWindow.call(H,true);H.editorDirty=false;},400);},this,true);}}});this.setAttributeConfig("dompath",{value:E.dompath||false,method:function(G){if(G&&!this.dompath){this.dompath=document.createElement("DIV");this.dompath.id=this.get("id")+"_dompath";C.addClass(this.dompath,"dompath");this.get("element_cont").get("firstChild").appendChild(this.dompath);if(this.get("iframe")){this._writeDomPath();}}else{if(!G&&this.dompath){this.dompath.parentNode.removeChild(this.dompath);this.dompath=null;}}}});this.setAttributeConfig("markup",{value:E.markup||"semantic",validator:function(G){switch(G.toLowerCase()){case"semantic":case"css":case"default":case"xhtml":return true;}return false;}});this.setAttributeConfig("removeLineBreaks",{value:E.removeLineBreaks||false,validator:YAHOO.lang.isBoolean});
-this.setAttributeConfig("drag",{writeOnce:true,value:E.drag||false});this.setAttributeConfig("resize",{writeOnce:true,value:E.resize||false});},_getBlankImage:function(){if(!this.DOMReady){this._queue[this._queue.length]=["_getBlankImage",arguments];return"";}var E="";if(!this._blankImageLoaded){if(YAHOO.widget.EditorInfo.blankImage){this.set("blankimage",YAHOO.widget.EditorInfo.blankImage);this._blankImageLoaded=true;}else{var F=document.createElement("div");F.style.position="absolute";F.style.top="-9999px";F.style.left="-9999px";F.className=this.CLASS_PREFIX+"-blankimage";document.body.appendChild(F);E=YAHOO.util.Dom.getStyle(F,"background-image");E=E.replace("url(","").replace(")","").replace(/"/g,"");E=E.replace("app:/","");this.set("blankimage",E);this._blankImageLoaded=true;F.parentNode.removeChild(F);YAHOO.widget.EditorInfo.blankImage=E;}}else{E=this.get("blankimage");}return E;},_handleAutoHeight:function(){var I=this._getDoc(),F=I.body,J=I.documentElement;var E=parseInt(C.getStyle(this.get("editor_wrapper"),"height"),10);var G=F.scrollHeight;if(this.browser.webkit){G=J.scrollHeight;}if(G<parseInt(this.get("height"),10)){G=parseInt(this.get("height"),10);}if((E!=G)&&(G>=parseInt(this.get("height"),10))){C.setStyle(this.get("editor_wrapper"),"height",G+"px");if(this.browser.ie){this.get("iframe").setStyle("height","99%");this.get("iframe").setStyle("zoom","1");var H=this;window.setTimeout(function(){H.get("iframe").setStyle("height","100%");},1);}}},_formButtons:null,_formButtonClicked:null,_handleFormButtonClick:function(F){var E=A.getTarget(F);this._formButtonClicked=E;},_handleFormSubmit:function(H){this.saveHTML();var G=this.get("element").form,E=this._formButtonClicked||false;A.removeListener(G,"submit",this._handleFormSubmit);if(YAHOO.env.ua.ie){if(E&&!E.disabled){E.click();}}else{if(E&&!E.disabled){E.click();}var F=document.createEvent("HTMLEvents");F.initEvent("submit",true,true);G.dispatchEvent(F);if(YAHOO.env.ua.webkit){if(YAHOO.lang.isFunction(G.submit)){G.submit();}}}},_handleFontSize:function(G){var E=this.toolbar.getButtonById(G.button.id);var F=E.get("label")+"px";this.execCommand("fontsize",F);this.STOP_EXEC_COMMAND=true;},_handleColorPicker:function(G){var F=G.button;var E="#"+G.color;if((F=="forecolor")||(F=="backcolor")){this.execCommand(F,E);}},_handleAlign:function(H){var G=null;for(var E=0;E<H.button.menu.length;E++){if(H.button.menu[E].value==H.button.value){G=H.button.menu[E].value;}}var F=this._getSelection();this.execCommand(G,F);this.STOP_EXEC_COMMAND=true;},_handleAfterNodeChange:function(){var Q=this._getDomPath(),L=null,H=null,M=null,F=false,J=this.toolbar.getButtonByValue("fontname"),K=this.toolbar.getButtonByValue("fontsize"),E=this.toolbar.getButtonByValue("heading");for(var G=0;G<Q.length;G++){L=Q[G];var P=L.tagName.toLowerCase();if(L.getAttribute("tag")){P=L.getAttribute("tag");}H=L.getAttribute("face");if(C.getStyle(L,"font-family")){H=C.getStyle(L,"font-family");H=H.replace(/'/g,"");}if(P.substring(0,1)=="h"){if(E){for(var I=0;I<E._configs.menu.value.length;I++){if(E._configs.menu.value[I].value.toLowerCase()==P){E.set("label",E._configs.menu.value[I].text);}}this._updateMenuChecked("heading",P);}}}if(J){for(var O=0;O<J._configs.menu.value.length;O++){if(H&&J._configs.menu.value[O].text.toLowerCase()==H.toLowerCase()){F=true;H=J._configs.menu.value[O].text;}}if(!F){H=J._configs.label._initialConfig.value;}var N='<span class="yui-toolbar-fontname-'+this._cleanClassName(H)+'">'+H+"</span>";if(J.get("label")!=N){J.set("label",N);this._updateMenuChecked("fontname",H);}}if(K){M=parseInt(C.getStyle(L,"fontSize"),10);if((M===null)||isNaN(M)){M=K._configs.label._initialConfig.value;}K.set("label",""+M);}if(!this._isElement(L,"body")&&!this._isElement(L,"img")){this.toolbar.enableButton(J);this.toolbar.enableButton(K);this.toolbar.enableButton("forecolor");this.toolbar.enableButton("backcolor");}if(this._isElement(L,"img")){if(YAHOO.widget.Overlay){this.toolbar.enableButton("createlink");}}if(this._hasParent(L,"blockquote")){this.toolbar.selectButton("indent");this.toolbar.disableButton("indent");this.toolbar.enableButton("outdent");}if(this._hasParent(L,"ol")||this._hasParent(L,"ul")){this.toolbar.disableButton("indent");}this._lastButton=null;},_handleInsertImageClick:function(){if(this.get("limitCommands")){if(!this.toolbar.getButtonByValue("insertimage")){return false;}}this.toolbar.set("disabled",true);this.on("afterExecCommand",function(){var E=this.currentElement[0],G="http://";if(!E){E=this._getSelectedElement();}if(E){if(E.getAttribute("src")){G=E.getAttribute("src",2);if(G.indexOf(this.get("blankimage"))!=-1){G=this.STR_IMAGE_HERE;}}}var F=prompt(this.STR_LINK_URL+": ",G);if((F!=="")&&(F!==null)){E.setAttribute("src",F);}else{if(F===null){E.parentNode.removeChild(E);this.currentElement=[];this.nodeChange();}}this.closeWindow();this.toolbar.set("disabled",false);},this,true);},_handleInsertImageWindowClose:function(){this.nodeChange();},_isLocalFile:function(E){if((E)&&(E!=="")&&((E.indexOf("file:/")!=-1)||(E.indexOf(":\\")!=-1))){return true;}return false;},_handleCreateLinkClick:function(){if(this.get("limitCommands")){if(!this.toolbar.getButtonByValue("createlink")){return false;}}this.toolbar.set("disabled",true);this.on("afterExecCommand",function(){var G=this.currentElement[0],F="";if(G){if(G.getAttribute("href",2)!==null){F=G.getAttribute("href",2);}}var I=prompt(this.STR_LINK_URL+": ",F);if((I!=="")&&(I!==null)){var H=I;if((H.indexOf(":/"+"/")==-1)&&(H.substring(0,1)!="/")&&(H.substring(0,6).toLowerCase()!="mailto")){if((H.indexOf("@")!=-1)&&(H.substring(0,6).toLowerCase()!="mailto")){H="mailto:"+H;}else{if(H.substring(0,1)!="#"){}}}G.setAttribute("href",H);}else{if(I!==null){var E=this._getDoc().createElement("span");E.innerHTML=G.innerHTML;C.addClass(E,"yui-non");G.parentNode.replaceChild(E,G);}}this.closeWindow();this.toolbar.set("disabled",false);},this);},_handleCreateLinkWindowClose:function(){this.nodeChange();this.currentElement=[];
-},render:function(){if(this._rendered){return false;}if(!this.DOMReady){this._queue[this._queue.length]=["render",arguments];return false;}if(this.get("element")){if(this.get("element").tagName){this._textarea=true;if(this.get("element").tagName.toLowerCase()!=="textarea"){this._textarea=false;}}else{return false;}}else{return false;}this._rendered=true;var E=this;window.setTimeout(function(){E._render.call(E);},4);},_render:function(){var E=this;this.set("textarea",this.get("element"));this.get("element_cont").setStyle("display","none");this.get("element_cont").addClass(this.CLASS_CONTAINER);this.set("iframe",this._createIframe());window.setTimeout(function(){E._setInitialContent.call(E);},10);this.get("editor_wrapper").appendChild(this.get("iframe").get("element"));if(this.get("disabled")){this._disableEditor(true);}var F=this.get("toolbar");if(F instanceof B){this.toolbar=F;this.toolbar.set("disabled",true);}else{F.disabled=true;this.toolbar=new B(this.get("toolbar_cont"),F);}this.fireEvent("toolbarLoaded",{type:"toolbarLoaded",target:this.toolbar});this.toolbar.on("toolbarCollapsed",function(){if(this.currentWindow){this.moveWindow();}},this,true);this.toolbar.on("toolbarExpanded",function(){if(this.currentWindow){this.moveWindow();}},this,true);this.toolbar.on("fontsizeClick",this._handleFontSize,this,true);this.toolbar.on("colorPickerClicked",function(G){this._handleColorPicker(G);return false;},this,true);this.toolbar.on("alignClick",this._handleAlign,this,true);this.on("afterNodeChange",this._handleAfterNodeChange,this,true);this.toolbar.on("insertimageClick",this._handleInsertImageClick,this,true);this.on("windowinsertimageClose",this._handleInsertImageWindowClose,this,true);this.toolbar.on("createlinkClick",this._handleCreateLinkClick,this,true);this.on("windowcreatelinkClose",this._handleCreateLinkWindowClose,this,true);this.get("parentNode").replaceChild(this.get("element_cont").get("element"),this.get("element"));this.setStyle("visibility","hidden");this.setStyle("position","absolute");this.setStyle("top","-9999px");this.setStyle("left","-9999px");this.get("element_cont").appendChild(this.get("element"));this.get("element_cont").setStyle("display","block");C.addClass(this.get("iframe").get("parentNode"),this.CLASS_EDITABLE_CONT);this.get("iframe").addClass(this.CLASS_EDITABLE);this.get("element_cont").setStyle("width",this.get("width"));C.setStyle(this.get("iframe").get("parentNode"),"height",this.get("height"));this.get("iframe").setStyle("width","100%");this.get("iframe").setStyle("height","100%");this._setupDD();window.setTimeout(function(){E._setupAfterElement.call(E);},0);this.fireEvent("afterRender",{type:"afterRender",target:this});},execCommand:function(G,F){var J=this.fireEvent("beforeExecCommand",{type:"beforeExecCommand",target:this,args:arguments});if((J===false)||(this.STOP_EXEC_COMMAND)){this.STOP_EXEC_COMMAND=false;return false;}this._lastCommand=G;this._setMarkupType(G);if(this.browser.ie){this._getWindow().focus();}var E=true;if(this.get("limitCommands")){if(!this.toolbar.getButtonByValue(G)){E=false;}}this.editorDirty=true;if((typeof this["cmd_"+G.toLowerCase()]=="function")&&E){var I=this["cmd_"+G.toLowerCase()](F);E=I[0];if(I[1]){G=I[1];}if(I[2]){F=I[2];}}if(E){try{this._getDoc().execCommand(G,false,F);}catch(H){}}else{}this.on("afterExecCommand",function(){this.unsubscribeAll("afterExecCommand");this.nodeChange();},this,true);this.fireEvent("afterExecCommand",{type:"afterExecCommand",target:this});},cmd_underline:function(F){if(!this.browser.webkit){var E=this._getSelectedElement();if(E&&this._isElement(E,"span")){if(E.style.textDecoration=="underline"){E.style.textDecoration="none";}else{E.style.textDecoration="underline";}return[false];}}return[true];},cmd_backcolor:function(H){var E=true,F=this._getSelectedElement(),G="backcolor";if(this.browser.gecko||this.browser.opera){this._setEditorStyle(true);G="hilitecolor";}if(!this._isElement(F,"body")&&!this._hasSelection()){C.setStyle(F,"background-color",H);this._selectNode(F);E=false;}else{if(!this._isElement(F,"body")&&this._hasSelection()){C.setStyle(F,"background-color",H);this._selectNode(F);E=false;}else{if(this.get("insert")){F=this._createInsertElement({backgroundColor:H});}else{this._createCurrentElement("span",{backgroundColor:H});this._selectNode(this.currentElement[0]);}E=false;}}return[E,G];},cmd_forecolor:function(G){var E=true,F=this._getSelectedElement();if(!this._isElement(F,"body")&&!this._hasSelection()){C.setStyle(F,"color",G);this._selectNode(F);E=false;}else{if(!this._isElement(F,"body")&&this._hasSelection()){C.setStyle(F,"color",G);this._selectNode(F);E=false;}else{if(this.get("insert")){F=this._createInsertElement({color:G});}else{this._createCurrentElement("span",{color:G});this._selectNode(this.currentElement[0]);}E=false;}}return[E];},cmd_unlink:function(E){this._swapEl(this.currentElement[0],"span",function(F){F.className="yui-non";});return[false];},cmd_createlink:function(G){var F=this._getSelectedElement(),E=null;if(this._hasParent(F,"a")){this.currentElement[0]=this._hasParent(F,"a");}else{if(!this._isElement(F,"a")){this._createCurrentElement("a");E=this._swapEl(this.currentElement[0],"a");this.currentElement[0]=E;}else{this.currentElement[0]=F;}}return[false];},cmd_insertimage:function(J){var E=true,F=null,I="insertimage",H=this._getSelectedElement();if(J===""){J=this.get("blankimage");}if(this._isElement(H,"img")){this.currentElement[0]=H;E=false;}else{if(this._getDoc().queryCommandEnabled(I)){this._getDoc().execCommand("insertimage",false,J);var K=this._getDoc().getElementsByTagName("img");for(var G=0;G<K.length;G++){if(!YAHOO.util.Dom.hasClass(K[G],"yui-img")){YAHOO.util.Dom.addClass(K[G],"yui-img");this.currentElement[0]=K[G];}}E=false;}else{if(H==this._getDoc().body){F=this._getDoc().createElement("img");F.setAttribute("src",J);YAHOO.util.Dom.addClass(F,"yui-img");this._getDoc().body.appendChild(F);}else{this._createCurrentElement("img");F=this._getDoc().createElement("img");
-F.setAttribute("src",J);YAHOO.util.Dom.addClass(F,"yui-img");this.currentElement[0].parentNode.replaceChild(F,this.currentElement[0]);}this.currentElement[0]=F;E=false;}}return[E];},cmd_inserthtml:function(H){var E=true,G="inserthtml",F=null,I=null;if(this.browser.webkit&&!this._getDoc().queryCommandEnabled(G)){this._createCurrentElement("img");F=this._getDoc().createElement("span");F.innerHTML=H;this.currentElement[0].parentNode.replaceChild(F,this.currentElement[0]);E=false;}else{if(this.browser.ie){I=this._getRange();if(I.item){I.item(0).outerHTML=H;}else{I.pasteHTML(H);}E=false;}}return[E];},cmd_list:function(Y){var S=true,V=null,M=0,G=null,R="",W=this._getSelectedElement(),T="insertorderedlist";if(Y=="ul"){T="insertunorderedlist";}if(this.browser.webkit){if(this._isElement(W,"li")&&this._isElement(W.parentNode,Y)){G=W.parentNode;V=this._getDoc().createElement("span");YAHOO.util.Dom.addClass(V,"yui-non");R="";var F=G.getElementsByTagName("li");for(M=0;M<F.length;M++){R+="<div>"+F[M].innerHTML+"</div>";}V.innerHTML=R;this.currentElement[0]=G;this.currentElement[0].parentNode.replaceChild(V,this.currentElement[0]);}else{this._createCurrentElement(Y.toLowerCase());V=this._getDoc().createElement(Y);for(M=0;M<this.currentElement.length;M++){var J=this._getDoc().createElement("li");J.innerHTML=this.currentElement[M].innerHTML+'<span class="yui-non">&nbsp;</span>&nbsp;';V.appendChild(J);if(M>0){this.currentElement[M].parentNode.removeChild(this.currentElement[M]);}}this.currentElement[0].parentNode.replaceChild(V,this.currentElement[0]);this.currentElement[0]=V;var H=this.currentElement[0].firstChild;H=C.getElementsByClassName("yui-non","span",H)[0];this._getSelection().setBaseAndExtent(H,1,H,H.innerText.length);}S=false;}else{G=this._getSelectedElement();if(this._isElement(G,"li")&&this._isElement(G.parentNode,Y)||(this.browser.ie&&this._isElement(this._getRange().parentElement,"li"))||(this.browser.ie&&this._isElement(G,"ul"))||(this.browser.ie&&this._isElement(G,"ol"))){if(this.browser.ie){if((this.browser.ie&&this._isElement(G,"ul"))||(this.browser.ie&&this._isElement(G,"ol"))){G=G.getElementsByTagName("li")[0];}R="";var I=G.parentNode.getElementsByTagName("li");for(var U=0;U<I.length;U++){R+=I[U].innerHTML+"<br>";}var X=this._getDoc().createElement("span");X.innerHTML=R;G.parentNode.parentNode.replaceChild(X,G.parentNode);}else{this.nodeChange();this._getDoc().execCommand(T,"",G.parentNode);this.nodeChange();}S=false;}if(this.browser.opera){var Q=this;window.setTimeout(function(){var Z=Q._getDoc().getElementsByTagName("li");for(var a=0;a<Z.length;a++){if(Z[a].innerHTML.toLowerCase()=="<br>"){Z[a].parentNode.parentNode.removeChild(Z[a].parentNode);}}},30);}if(this.browser.ie&&S){var K="";if(this._getRange().html){K="<li>"+this._getRange().html+"</li>";}else{var L=this._getRange().text.split("\n");if(L.length>1){K="";for(var P=0;P<L.length;P++){K+="<li>"+L[P]+"</li>";}}else{var O=this._getRange().text;if(O===""){K='<li id="new_list_item">'+O+"</li>";}else{K="<li>"+O+"</li>";}}}this._getRange().pasteHTML("<"+Y+">"+K+"</"+Y+">");var E=this._getDoc().getElementById("new_list_item");if(E){var N=this._getDoc().body.createTextRange();N.moveToElementText(E);N.collapse(false);N.select();E.id="";}S=false;}}return S;},cmd_insertorderedlist:function(E){return[this.cmd_list("ol")];},cmd_insertunorderedlist:function(E){return[this.cmd_list("ul")];},cmd_fontname:function(H){var E=true,G=this._getSelectedElement();this.currentFont=H;if(G&&G.tagName&&!this._hasSelection()&&!this._isElement(G,"body")&&!this.get("insert")){YAHOO.util.Dom.setStyle(G,"font-family",H);E=false;}else{if(this.get("insert")&&!this._hasSelection()){var F=this._createInsertElement({fontFamily:H});E=false;}}return[E];},cmd_fontsize:function(G){var E=null;if(this.currentElement&&(this.currentElement.length>0)&&(!this._hasSelection())&&(!this.get("insert"))){YAHOO.util.Dom.setStyle(this.currentElement,"fontSize",G);}else{if(!this._isElement(this._getSelectedElement(),"body")){E=this._getSelectedElement();YAHOO.util.Dom.setStyle(E,"fontSize",G);if(this.get("insert")&&this.browser.ie){var F=this._getRange();F.collapse(false);F.select();}else{this._selectNode(E);}}else{if(this.get("insert")&&!this._hasSelection()){E=this._createInsertElement({fontSize:G});this.currentElement[0]=E;this._selectNode(this.currentElement[0]);}else{this._createCurrentElement("span",{"fontSize":G});this._selectNode(this.currentElement[0]);}}}return[false];},_swapEl:function(F,E,H){var G=this._getDoc().createElement(E);if(F){G.innerHTML=F.innerHTML;}if(typeof H=="function"){H.call(this,G);}if(F){F.parentNode.replaceChild(G,F);}return G;},_createInsertElement:function(E){this._createCurrentElement("span",E);var F=this.currentElement[0];if(this.browser.webkit){F.innerHTML='<span class="yui-non">&nbsp;</span>';F=F.firstChild;this._getSelection().setBaseAndExtent(F,1,F,F.innerText.length);}else{if(this.browser.ie||this.browser.opera){F.innerHTML="&nbsp;";}}this._focusWindow();this._selectNode(F,true);return F;},_createCurrentElement:function(G,J){G=((G)?G:"a");var R=null,F=[],H=this._getDoc();if(this.currentFont){if(!J){J={};}J.fontFamily=this.currentFont;this.currentFont=null;}this.currentElement=[];var M=function(X,Z){var Y=null;X=((X)?X:"span");X=X.toLowerCase();switch(X){case"h1":case"h2":case"h3":case"h4":case"h5":case"h6":Y=H.createElement(X);break;default:Y=H.createElement(X);if(X==="span"){YAHOO.util.Dom.addClass(Y,"yui-tag-"+X);YAHOO.util.Dom.addClass(Y,"yui-tag");Y.setAttribute("tag",X);}for(var W in Z){if(YAHOO.lang.hasOwnProperty(Z,W)){Y.style[W]=Z[W];}}break;}return Y;};if(!this._hasSelection()){if(this._getDoc().queryCommandEnabled("insertimage")){this._getDoc().execCommand("insertimage",false,"yui-tmp-img");var L=this._getDoc().getElementsByTagName("img");for(var Q=0;Q<L.length;Q++){if(L[Q].getAttribute("src",2)=="yui-tmp-img"){F=M(G,J);L[Q].parentNode.replaceChild(F,L[Q]);this.currentElement[this.currentElement.length]=F;}}}else{if(this.currentEvent){R=YAHOO.util.Event.getTarget(this.currentEvent);
-}else{R=this._getDoc().body;}}if(R){F=M(G,J);if(this._isElement(R,"body")||this._isElement(R,"html")){if(this._isElement(R,"html")){R=this._getDoc().body;}R.appendChild(F);}else{if(R.nextSibling){R.parentNode.insertBefore(F,R.nextSibling);}else{R.parentNode.appendChild(F);}}this.currentElement[this.currentElement.length]=F;this.currentEvent=null;if(this.browser.webkit){this._getSelection().setBaseAndExtent(F,0,F,0);if(this.browser.webkit3){this._getSelection().collapseToStart();}else{this._getSelection().collapse(true);}}}}else{this._setEditorStyle(true);this._getDoc().execCommand("fontname",false,"yui-tmp");var E=[],P,V=["font","span","i","b","u"];if(!this._isElement(this._getSelectedElement(),"body")){V[V.length]=this._getDoc().getElementsByTagName(this._getSelectedElement().tagName);V[V.length]=this._getDoc().getElementsByTagName(this._getSelectedElement().parentNode.tagName);}for(var K=0;K<V.length;K++){var I=this._getDoc().getElementsByTagName(V[K]);for(var U=0;U<I.length;U++){E[E.length]=I[U];}}for(var S=0;S<E.length;S++){if((YAHOO.util.Dom.getStyle(E[S],"font-family")=="yui-tmp")||(E[S].face&&(E[S].face=="yui-tmp"))){F=M(G,J);F.innerHTML=E[S].innerHTML;if(this._isElement(E[S],"ol")||(this._isElement(E[S],"ul"))){var N=E[S].getElementsByTagName("li")[0];E[S].style.fontFamily="inherit";N.style.fontFamily="inherit";F.innerHTML=N.innerHTML;N.innerHTML="";N.appendChild(F);this.currentElement[this.currentElement.length]=F;}else{if(this._isElement(E[S],"li")){E[S].innerHTML="";E[S].appendChild(F);E[S].style.fontFamily="inherit";this.currentElement[this.currentElement.length]=F;}else{if(E[S].parentNode){E[S].parentNode.replaceChild(F,E[S]);this.currentElement[this.currentElement.length]=F;this.currentEvent=null;if(this.browser.webkit){this._getSelection().setBaseAndExtent(F,0,F,0);if(this.browser.webkit3){this._getSelection().collapseToStart();}else{this._getSelection().collapse(true);}}if(this.browser.ie&&J&&J.fontSize){this._getSelection().empty();}if(this.browser.gecko){this._getSelection().collapseToStart();}}}}}}var T=this.currentElement.length;for(var O=0;O<T;O++){if((O+1)!=T){if(this.currentElement[O]&&this.currentElement[O].nextSibling){if(this._isElement(this.currentElement[O],"br")){this.currentElement[this.currentElement.length]=this.currentElement[O].nextSibling;}}}}}},saveHTML:function(){var F=this.cleanHTML();if(this._textarea){this.get("element").value=F;}else{this.get("element").innerHTML=F;}if(this.get("saveEl")!==this.get("element")){var E=this.get("saveEl");if(D.isString(E)){E=C.get(E);}if(E){if(E.tagName.toLowerCase()==="textarea"){E.value=F;}else{E.innerHTML=F;}}}return F;},setEditorHTML:function(F){var E=this._cleanIncomingHTML(F);this._getDoc().body.innerHTML=E;this.nodeChange();},getEditorHTML:function(){var E=this._getDoc().body;if(E===null){return null;}return this._getDoc().body.innerHTML;},show:function(){if(this.browser.gecko){this._setDesignMode("on");this._focusWindow();}if(this.browser.webkit){var E=this;window.setTimeout(function(){E._setInitialContent.call(E);},10);}if(this.currentWindow){this.closeWindow();}this.get("iframe").setStyle("position","static");this.get("iframe").setStyle("left","");},hide:function(){if(this.currentWindow){this.closeWindow();}if(this._fixNodesTimer){clearTimeout(this._fixNodesTimer);this._fixNodesTimer=null;}if(this._nodeChangeTimer){clearTimeout(this._nodeChangeTimer);this._nodeChangeTimer=null;}this._lastNodeChange=0;this.get("iframe").setStyle("position","absolute");this.get("iframe").setStyle("left","-9999px");},_cleanIncomingHTML:function(E){E=E.replace(/<strong([^>]*)>/gi,"<b$1>");E=E.replace(/<\/strong>/gi,"</b>");E=E.replace(/<embed([^>]*)>/gi,"<YUI_EMBED$1>");E=E.replace(/<\/embed>/gi,"</YUI_EMBED>");E=E.replace(/<em([^>]*)>/gi,"<i$1>");E=E.replace(/<\/em>/gi,"</i>");E=E.replace(/<YUI_EMBED([^>]*)>/gi,"<embed$1>");E=E.replace(/<\/YUI_EMBED>/gi,"</embed>");if(this.get("plainText")){E=E.replace(/\n/g,"<br>").replace(/\r/g,"<br>");E=E.replace(/  /gi,"&nbsp;&nbsp;");E=E.replace(/\t/gi,"&nbsp;&nbsp;&nbsp;&nbsp;");}E=E.replace(/<script([^>]*)>/gi,"<bad>");E=E.replace(/<\/script([^>]*)>/gi,"</bad>");E=E.replace(/&lt;script([^>]*)&gt;/gi,"<bad>");E=E.replace(/&lt;\/script([^>]*)&gt;/gi,"</bad>");E=E.replace(/\n/g,"<YUI_LF>").replace(/\r/g,"<YUI_LF>");E=E.replace(new RegExp("<bad([^>]*)>(.*?)</bad>","gi"),"");E=E.replace(/<YUI_LF>/g,"\n");return E;},cleanHTML:function(G){if(!G){G=this.getEditorHTML();}var F=this.get("markup");G=this.pre_filter_linebreaks(G,F);G=G.replace(/<img([^>]*)\/>/gi,"<YUI_IMG$1>");G=G.replace(/<img([^>]*)>/gi,"<YUI_IMG$1>");G=G.replace(/<input([^>]*)\/>/gi,"<YUI_INPUT$1>");G=G.replace(/<input([^>]*)>/gi,"<YUI_INPUT$1>");G=G.replace(/<ul([^>]*)>/gi,"<YUI_UL$1>");G=G.replace(/<\/ul>/gi,"</YUI_UL>");G=G.replace(/<blockquote([^>]*)>/gi,"<YUI_BQ$1>");G=G.replace(/<\/blockquote>/gi,"</YUI_BQ>");G=G.replace(/<embed([^>]*)>/gi,"<YUI_EMBED$1>");G=G.replace(/<\/embed>/gi,"</YUI_EMBED>");if((F=="semantic")||(F=="xhtml")){G=G.replace(/<i(\s+[^>]*)?>/gi,"<em$1>");G=G.replace(/<\/i>/gi,"</em>");G=G.replace(/<b(\s+[^>]*)?>/gi,"<strong$1>");G=G.replace(/<\/b>/gi,"</strong>");}G=G.replace(/<font/gi,"<font");G=G.replace(/<\/font>/gi,"</font>");G=G.replace(/<span/gi,"<span");G=G.replace(/<\/span>/gi,"</span>");if((F=="semantic")||(F=="xhtml")||(F=="css")){G=G.replace(new RegExp('<font([^>]*)face="([^>]*)">(.*?)</font>',"gi"),'<span $1 style="font-family: $2;">$3</span>');G=G.replace(/<u/gi,'<span style="text-decoration: underline;"');if(this.browser.webkit){G=G.replace(new RegExp('<span class="Apple-style-span" style="font-weight: bold;">([^>]*)</span>',"gi"),"<strong>$1</strong>");G=G.replace(new RegExp('<span class="Apple-style-span" style="font-style: italic;">([^>]*)</span>',"gi"),"<em>$1</em>");}G=G.replace(/\/u>/gi,"/span>");if(F=="css"){G=G.replace(/<em([^>]*)>/gi,"<i$1>");G=G.replace(/<\/em>/gi,"</i>");G=G.replace(/<strong([^>]*)>/gi,"<b$1>");G=G.replace(/<\/strong>/gi,"</b>");G=G.replace(/<b/gi,'<span style="font-weight: bold;"');
-G=G.replace(/\/b>/gi,"/span>");G=G.replace(/<i/gi,'<span style="font-style: italic;"');G=G.replace(/\/i>/gi,"/span>");}G=G.replace(/  /gi," ");}else{G=G.replace(/<u/gi,"<u");G=G.replace(/\/u>/gi,"/u>");}G=G.replace(/<ol([^>]*)>/gi,"<ol$1>");G=G.replace(/\/ol>/gi,"/ol>");G=G.replace(/<li/gi,"<li");G=G.replace(/\/li>/gi,"/li>");G=this.filter_safari(G);G=this.filter_internals(G);G=this.filter_all_rgb(G);G=this.post_filter_linebreaks(G,F);if(F=="xhtml"){G=G.replace(/<YUI_IMG([^>]*)>/g,"<img $1 />");G=G.replace(/<YUI_INPUT([^>]*)>/g,"<input $1 />");}else{G=G.replace(/<YUI_IMG([^>]*)>/g,"<img $1>");G=G.replace(/<YUI_INPUT([^>]*)>/g,"<input $1>");}G=G.replace(/<YUI_UL([^>]*)>/g,"<ul$1>");G=G.replace(/<\/YUI_UL>/g,"</ul>");G=this.filter_invalid_lists(G);G=G.replace(/<YUI_BQ([^>]*)>/g,"<blockquote$1>");G=G.replace(/<\/YUI_BQ>/g,"</blockquote>");G=G.replace(/<YUI_EMBED([^>]*)>/g,"<embed$1>");G=G.replace(/<\/YUI_EMBED>/g,"</embed>");G=G.replace(" &amp; ","YUI_AMP");G=G.replace("&amp;","&");G=G.replace("YUI_AMP","&amp;");G=YAHOO.lang.trim(G);if(this.get("removeLineBreaks")){G=G.replace(/\n/g,"").replace(/\r/g,"");G=G.replace(/  /gi," ");}if(G.substring(0,6).toLowerCase()=="<span>"){G=G.substring(6);if(G.substring(G.length-7,G.length).toLowerCase()=="</span>"){G=G.substring(0,G.length-7);}}for(var E in this.invalidHTML){if(YAHOO.lang.hasOwnProperty(this.invalidHTML,E)){if(D.isObject(E)&&E.keepContents){G=G.replace(new RegExp("<"+E+"([^>]*)>(.*?)</"+E+">","gi"),"$1");}else{G=G.replace(new RegExp("<"+E+"([^>]*)>(.*?)</"+E+">","gi"),"");}}}this.fireEvent("cleanHTML",{type:"cleanHTML",target:this,html:G});return G;},filter_invalid_lists:function(E){E=E.replace(/<\/li>\n/gi,"</li>");E=E.replace(/<\/li><ol>/gi,"</li><li><ol>");E=E.replace(/<\/ol>/gi,"</ol></li>");E=E.replace(/<\/ol><\/li>\n/gi,"</ol>\n");E=E.replace(/<\/li><ul>/gi,"</li><li><ul>");E=E.replace(/<\/ul>/gi,"</ul></li>");E=E.replace(/<\/ul><\/li>\n?/gi,"</ul>\n");E=E.replace(/<\/li>/gi,"</li>\n");E=E.replace(/<\/ol>/gi,"</ol>\n");E=E.replace(/<ol>/gi,"<ol>\n");E=E.replace(/<ul>/gi,"<ul>\n");return E;},filter_safari:function(E){if(this.browser.webkit){E=E.replace(/<span class="Apple-tab-span" style="white-space:pre">([^>])<\/span>/gi,"&nbsp;&nbsp;&nbsp;&nbsp;");E=E.replace(/Apple-style-span/gi,"");E=E.replace(/style="line-height: normal;"/gi,"");E=E.replace(/<li><\/li>/gi,"");E=E.replace(/<li> <\/li>/gi,"");E=E.replace(/<li>  <\/li>/gi,"");if(this.get("ptags")){E=E.replace(/<div([^>]*)>/g,"<p$1>");E=E.replace(/<\/div>/gi,"</p>");}else{E=E.replace(/<div>/gi,"");E=E.replace(/<\/div>/gi,"<br>");}}return E;},filter_internals:function(E){E=E.replace(/\r/g,"");E=E.replace(/<\/?(body|head|html)[^>]*>/gi,"");E=E.replace(/<YUI_BR><\/li>/gi,"</li>");E=E.replace(/yui-tag-span/gi,"");E=E.replace(/yui-tag/gi,"");E=E.replace(/yui-non/gi,"");E=E.replace(/yui-img/gi,"");E=E.replace(/ tag="span"/gi,"");E=E.replace(/ class=""/gi,"");E=E.replace(/ style=""/gi,"");E=E.replace(/ class=" "/gi,"");E=E.replace(/ class="  "/gi,"");E=E.replace(/ target=""/gi,"");E=E.replace(/ title=""/gi,"");if(this.browser.ie){E=E.replace(/ class= /gi,"");E=E.replace(/ class= >/gi,"");E=E.replace(/_height="([^>])"/gi,"");E=E.replace(/_width="([^>])"/gi,"");}return E;},filter_all_rgb:function(I){var H=new RegExp("rgb\\s*?\\(\\s*?([0-9]+).*?,\\s*?([0-9]+).*?,\\s*?([0-9]+).*?\\)","gi");var E=I.match(H);if(D.isArray(E)){for(var G=0;G<E.length;G++){var F=this.filter_rgb(E[G]);I=I.replace(E[G].toString(),F);}}return I;},filter_rgb:function(G){if(G.toLowerCase().indexOf("rgb")!=-1){var J=new RegExp("(.*?)rgb\\s*?\\(\\s*?([0-9]+).*?,\\s*?([0-9]+).*?,\\s*?([0-9]+).*?\\)(.*?)","gi");var F=G.replace(J,"$1,$2,$3,$4,$5").split(",");if(F.length==5){var I=parseInt(F[1],10).toString(16);var H=parseInt(F[2],10).toString(16);var E=parseInt(F[3],10).toString(16);I=I.length==1?"0"+I:I;H=H.length==1?"0"+H:H;E=E.length==1?"0"+E:E;G="#"+I+H+E;}}return G;},pre_filter_linebreaks:function(F,E){if(this.browser.webkit){F=F.replace(/<br class="khtml-block-placeholder">/gi,"<YUI_BR>");F=F.replace(/<br class="webkit-block-placeholder">/gi,"<YUI_BR>");}F=F.replace(/<br>/gi,"<YUI_BR>");F=F.replace(/<br (.*?)>/gi,"<YUI_BR>");F=F.replace(/<br\/>/gi,"<YUI_BR>");F=F.replace(/<br \/>/gi,"<YUI_BR>");F=F.replace(/<div><YUI_BR><\/div>/gi,"<YUI_BR>");F=F.replace(/<p>(&nbsp;|&#160;)<\/p>/g,"<YUI_BR>");F=F.replace(/<p><br>&nbsp;<\/p>/gi,"<YUI_BR>");F=F.replace(/<p>&nbsp;<\/p>/gi,"<YUI_BR>");F=F.replace(/<YUI_BR>$/,"");F=F.replace(/<YUI_BR><\/p>/g,"</p>");if(this.browser.ie){F=F.replace(/&nbsp;&nbsp;&nbsp;&nbsp;/g,"\t");}return F;},post_filter_linebreaks:function(F,E){if(E=="xhtml"){F=F.replace(/<YUI_BR>/g,"<br />");}else{F=F.replace(/<YUI_BR>/g,"<br>");}return F;},clearEditorDoc:function(){this._getDoc().body.innerHTML="&nbsp;";},openWindow:function(E){},moveWindow:function(){},_closeWindow:function(){},closeWindow:function(){this.toolbar.resetAllButtons();this._focusWindow();},destroy:function(){if(this.resize){this.resize.destroy();}if(this.dd){this.dd.unreg();}if(this.get("panel")){this.get("panel").destroy();}this.saveHTML();this.toolbar.destroy();this.setStyle("visibility","visible");this.setStyle("position","static");this.setStyle("top","");this.setStyle("left","");var E=this.get("element");this.get("element_cont").get("parentNode").replaceChild(E,this.get("element_cont").get("element"));this.get("element_cont").get("element").innerHTML="";this.set("handleSubmit",false);return true;},toString:function(){var E="SimpleEditor";if(this.get&&this.get("element_cont")){E="SimpleEditor (#"+this.get("element_cont").get("id")+")"+((this.get("disabled")?" Disabled":""));}return E;}});YAHOO.widget.EditorInfo={_instances:{},blankImage:"",window:{},panel:null,getEditorById:function(E){if(!YAHOO.lang.isString(E)){E=E.id;}if(this._instances[E]){return this._instances[E];}return false;},toString:function(){var E=0;for(var F in this._instances){if(D.hasOwnProperty(this._instances,F)){E++;}}return"Editor Info ("+E+" registered intance"+((E>1)?"s":"")+")";
-}};})();YAHOO.register("simpleeditor",YAHOO.widget.SimpleEditor,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/editor/simpleeditor.js b/eclipse.org-common/yui/2.6.0/build/editor/simpleeditor.js
deleted file mode 100644
index 07e83c6..0000000
--- a/eclipse.org-common/yui/2.6.0/build/editor/simpleeditor.js
+++ /dev/null
@@ -1,6890 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function() {
-    /**
-    * @private
-    **/
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang;
-    /**
-     * @description <p>Creates a rich custom Toolbar Button. Primarily used with the Rich Text Editor's Toolbar</p>
-     * @class ToolbarButtonAdvanced
-     * @namespace YAHOO.widget
-     * @requires yahoo, dom, element, event, container_core, menu, button
-     * @beta
-     * 
-     * Provides a toolbar button based on the button and menu widgets.
-     * @constructor
-     * @param {String/HTMLElement} el The element to turn into a button.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    if (YAHOO.widget.Button) {
-        YAHOO.widget.ToolbarButtonAdvanced = YAHOO.widget.Button;
-        /**
-        * @property buttonType
-        * @private
-        * @description Tells if the Button is a Rich Button or a Simple Button
-        */
-        YAHOO.widget.ToolbarButtonAdvanced.prototype.buttonType = 'rich';
-        /**
-        * @method checkValue
-        * @param {String} value The value of the option that we want to mark as selected
-        * @description Select an option by value
-        */
-        YAHOO.widget.ToolbarButtonAdvanced.prototype.checkValue = function(value) {
-            var _menuItems = this.getMenu().getItems();
-            if (_menuItems.length === 0) {
-                this.getMenu()._onBeforeShow();
-                _menuItems = this.getMenu().getItems();
-            }
-            for (var i = 0; i < _menuItems.length; i++) {
-                _menuItems[i].cfg.setProperty('checked', false);
-                if (_menuItems[i].value == value) {
-                    _menuItems[i].cfg.setProperty('checked', true);
-                }
-            }      
-        };
-    } else {
-        YAHOO.widget.ToolbarButtonAdvanced = function() {};
-    }
-
-
-    /**
-     * @description <p>Creates a basic custom Toolbar Button. Primarily used with the Rich Text Editor's Toolbar</p>
-     * @class ToolbarButton
-     * @namespace YAHOO.widget
-     * @requires yahoo, dom, element, event
-     * @Extends YAHOO.util.Element
-     * @beta
-     * 
-     * Provides a toolbar button based on the button and menu widgets, <select> elements are used in place of menu's.
-     * @constructor
-     * @param {String/HTMLElement} el The element to turn into a button.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-
-    YAHOO.widget.ToolbarButton = function(el, attrs) {
-        
-        if (Lang.isObject(arguments[0]) && !Dom.get(el).nodeType) {
-            attrs = el;
-        }
-        var local_attrs = (attrs || {});
-
-        var oConfig = {
-            element: null,
-            attributes: local_attrs
-        };
-
-        if (!oConfig.attributes.type) {
-            oConfig.attributes.type = 'push';
-        }
-        
-        oConfig.element = document.createElement('span');
-        oConfig.element.setAttribute('unselectable', 'on');
-        oConfig.element.className = 'yui-button yui-' + oConfig.attributes.type + '-button';
-        oConfig.element.innerHTML = '<span class="first-child"><a href="#">LABEL</a></span>';
-        oConfig.element.firstChild.firstChild.tabIndex = '-1';
-        oConfig.attributes.id = Dom.generateId();
-
-        YAHOO.widget.ToolbarButton.superclass.constructor.call(this, oConfig.element, oConfig.attributes);
-    };
-
-    YAHOO.extend(YAHOO.widget.ToolbarButton, YAHOO.util.Element, {
-        /**
-        * @property buttonType
-        * @private
-        * @description Tells if the Button is a Rich Button or a Simple Button
-        */
-        buttonType: 'normal',
-        /**
-        * @method _handleMouseOver
-        * @private
-        * @description Adds classes to the button elements on mouseover (hover)
-        */
-        _handleMouseOver: function() {
-            if (!this.get('disabled')) {
-                this.addClass('yui-button-hover');
-                this.addClass('yui-' + this.get('type') + '-button-hover');
-            }
-        },
-        /**
-        * @method _handleMouseOut
-        * @private
-        * @description Removes classes from the button elements on mouseout (hover)
-        */
-        _handleMouseOut: function() {
-            this.removeClass('yui-button-hover');
-            this.removeClass('yui-' + this.get('type') + '-button-hover');
-        },
-        /**
-        * @method checkValue
-        * @param {String} value The value of the option that we want to mark as selected
-        * @description Select an option by value
-        */
-        checkValue: function(value) {
-            if (this.get('type') == 'menu') {
-                var opts = this._button.options;
-                for (var i = 0; i < opts.length; i++) {
-                    if (opts[i].value == value) {
-                        opts.selectedIndex = i;
-                    }
-                }
-            }
-        },
-        /** 
-        * @method init
-        * @description The ToolbarButton class's initialization method
-        */        
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.widget.ToolbarButton.superclass.init.call(this, p_oElement, p_oAttributes);
-
-            this.on('mouseover', this._handleMouseOver, this, true);
-            this.on('mouseout', this._handleMouseOut, this, true);
-        },
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create 
-        * the toolbar.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the toolbar.
-        */        
-        initAttributes: function(attr) {
-            YAHOO.widget.ToolbarButton.superclass.initAttributes.call(this, attr);
-            /**
-            * @attribute value
-            * @description The value of the button
-            * @type String
-            */            
-            this.setAttributeConfig('value', {
-                value: attr.value
-            });
-            /**
-            * @attribute menu
-            * @description The menu attribute, see YAHOO.widget.Button
-            * @type Object
-            */            
-            this.setAttributeConfig('menu', {
-                value: attr.menu || false
-            });
-            /**
-            * @attribute type
-            * @description The type of button to create: push, menu, color, select, spin
-            * @type String
-            */            
-            this.setAttributeConfig('type', {
-                value: attr.type,
-                writeOnce: true,
-                method: function(type) {
-                    var el, opt;
-                    if (!this._button) {
-                        this._button = this.get('element').getElementsByTagName('a')[0];
-                    }
-                    switch (type) {
-                        case 'select':
-                        case 'menu':
-                            el = document.createElement('select');
-                            var menu = this.get('menu');
-                            for (var i = 0; i < menu.length; i++) {
-                                opt = document.createElement('option');
-                                opt.innerHTML = menu[i].text;
-                                opt.value = menu[i].value;
-                                if (menu[i].checked) {
-                                    opt.selected = true;
-                                }
-                                el.appendChild(opt);
-                            }
-                            this._button.parentNode.replaceChild(el, this._button);
-                            Event.on(el, 'change', this._handleSelect, this, true);
-                            this._button = el;
-                            break;
-                    }
-                }
-            });
-
-            /**
-            * @attribute disabled
-            * @description Set the button into a disabled state
-            * @type String
-            */            
-            this.setAttributeConfig('disabled', {
-                value: attr.disabled || false,
-                method: function(disabled) {
-                    if (disabled) {
-                        this.addClass('yui-button-disabled');
-                        this.addClass('yui-' + this.get('type') + '-button-disabled');
-                    } else {
-                        this.removeClass('yui-button-disabled');
-                        this.removeClass('yui-' + this.get('type') + '-button-disabled');
-                    }
-                    if (this.get('type') == 'menu') {
-                        this._button.disabled = disabled;
-                    }
-                }
-            });
-
-            /**
-            * @attribute label
-            * @description The text label for the button
-            * @type String
-            */            
-            this.setAttributeConfig('label', {
-                value: attr.label,
-                method: function(label) {
-                    if (!this._button) {
-                        this._button = this.get('element').getElementsByTagName('a')[0];
-                    }
-                    if (this.get('type') == 'push') {
-                        this._button.innerHTML = label;
-                    }
-                }
-            });
-
-            /**
-            * @attribute title
-            * @description The title of the button
-            * @type String
-            */            
-            this.setAttributeConfig('title', {
-                value: attr.title
-            });
-
-            /**
-            * @config container
-            * @description The container that the button is rendered to, handled by Toolbar
-            * @type String
-            */            
-            this.setAttributeConfig('container', {
-                value: null,
-                writeOnce: true,
-                method: function(cont) {
-                    this.appendTo(cont);
-                }
-            });
-
-        },
-        /** 
-        * @private
-        * @method _handleSelect
-        * @description The event fired when a change event gets fired on a select element
-        * @param {Event} ev The change event.
-        */        
-        _handleSelect: function(ev) {
-            var tar = Event.getTarget(ev);
-            var value = tar.options[tar.selectedIndex].value;
-            this.fireEvent('change', {type: 'change', value: value });
-        },
-        /** 
-        * @method getMenu
-        * @description A stub function to mimic YAHOO.widget.Button's getMenu method
-        */        
-        getMenu: function() {
-            return this.get('menu');
-        },
-        /** 
-        * @method destroy
-        * @description Destroy the button
-        */        
-        destroy: function() {
-            Event.purgeElement(this.get('element'), true);
-            this.get('element').parentNode.removeChild(this.get('element'));
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                }
-            }       
-        },
-        /** 
-        * @method fireEvent
-        * @description Overridden fireEvent method to prevent DOM events from firing if the button is disabled.
-        */        
-        fireEvent: function (p_sType , p_aArgs) {
-            //  Disabled buttons should not respond to DOM events
-            if (this.DOM_EVENTS[p_sType] && this.get('disabled')) {
-                return;
-            }
-        
-            YAHOO.widget.ToolbarButton.superclass.fireEvent.call(this, p_sType, p_aArgs);
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the toolbar.
-        * @return {String}
-        */        
-        toString: function() {
-            return 'ToolbarButton (' + this.get('id') + ')';
-        }
-        
-    });
-})();
-/**
- * @description <p>Creates a rich Toolbar widget based on Button. Primarily used with the Rich Text Editor</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event, toolbarbutton
- * @optional container_core, dragdrop
- * @beta
- */
-(function() {
-    /**
-    * @private
-    **/
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang;
-    
-    var getButton = function(id) {
-        var button = id;
-        if (Lang.isString(id)) {
-            button = this.getButtonById(id);
-        }
-        if (Lang.isNumber(id)) {
-            button = this.getButtonByIndex(id);
-        }
-        if ((!(button instanceof YAHOO.widget.ToolbarButton)) && (!(button instanceof YAHOO.widget.ToolbarButtonAdvanced))) {
-            button = this.getButtonByValue(id);
-        }
-        if ((button instanceof YAHOO.widget.ToolbarButton) || (button instanceof YAHOO.widget.ToolbarButtonAdvanced)) {
-            return button;
-        }
-        return false;
-    };
-
-    /**
-     * Provides a rich toolbar widget based on the button and menu widgets
-     * @constructor
-     * @class Toolbar
-     * @extends YAHOO.util.Element
-     * @param {String/HTMLElement} el The element to turn into a toolbar.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    YAHOO.widget.Toolbar = function(el, attrs) {
-        
-        if (Lang.isObject(arguments[0]) && !Dom.get(el).nodeType) {
-            attrs = el;
-        }
-        var local_attrs = {};
-        if (attrs) {
-            Lang.augmentObject(local_attrs, attrs); //Break the config reference
-        }
-        
-
-        var oConfig = {
-            element: null,
-            attributes: local_attrs
-        };
-        
-        
-        if (Lang.isString(el) && Dom.get(el)) {
-            oConfig.element = Dom.get(el);
-        } else if (Lang.isObject(el) && Dom.get(el) && Dom.get(el).nodeType) {  
-            oConfig.element = Dom.get(el);
-        }
-        
-
-        if (!oConfig.element) {
-            oConfig.element = document.createElement('DIV');
-            oConfig.element.id = Dom.generateId();
-            
-            if (local_attrs.container && Dom.get(local_attrs.container)) {
-                Dom.get(local_attrs.container).appendChild(oConfig.element);
-            }
-        }
-        
-
-        if (!oConfig.element.id) {
-            oConfig.element.id = ((Lang.isString(el)) ? el : Dom.generateId());
-        }
-        
-        var fs = document.createElement('fieldset');
-        var lg = document.createElement('legend');
-        lg.innerHTML = 'Toolbar';
-        fs.appendChild(lg);
-        
-        var cont = document.createElement('DIV');
-        oConfig.attributes.cont = cont;
-        Dom.addClass(cont, 'yui-toolbar-subcont');
-        fs.appendChild(cont);
-        oConfig.element.appendChild(fs);
-
-        oConfig.element.tabIndex = -1;
-
-        
-        oConfig.attributes.element = oConfig.element;
-        oConfig.attributes.id = oConfig.element.id;
-
-        YAHOO.widget.Toolbar.superclass.constructor.call(this, oConfig.element, oConfig.attributes);
-         
-    };
-
-    YAHOO.extend(YAHOO.widget.Toolbar, YAHOO.util.Element, {
-        /**
-        * @method _addMenuClasses
-        * @private
-        * @description This method is called from Menu's renderEvent to add a few more classes to the menu items
-        * @param {String} ev The event that fired.
-        * @param {Array} na Array of event information.
-        * @param {Object} o Button config object. 
-        */
-        _addMenuClasses: function(ev, na, o) {
-            Dom.addClass(this.element, 'yui-toolbar-' + o.get('value') + '-menu');
-            if (Dom.hasClass(o._button.parentNode.parentNode, 'yui-toolbar-select')) {
-                Dom.addClass(this.element, 'yui-toolbar-select-menu');
-            }
-            var items = this.getItems();
-            for (var i = 0; i < items.length; i++) {
-                Dom.addClass(items[i].element, 'yui-toolbar-' + o.get('value') + '-' + ((items[i].value) ? items[i].value.replace(/ /g, '-').toLowerCase() : items[i]._oText.nodeValue.replace(/ /g, '-').toLowerCase()));
-                Dom.addClass(items[i].element, 'yui-toolbar-' + o.get('value') + '-' + ((items[i].value) ? items[i].value.replace(/ /g, '-') : items[i]._oText.nodeValue.replace(/ /g, '-')));
-            }
-        },
-        /** 
-        * @property buttonType
-        * @description The default button to use
-        * @type Object
-        */
-        buttonType: YAHOO.widget.ToolbarButton,
-        /** 
-        * @property dd
-        * @description The DragDrop instance associated with the Toolbar
-        * @type Object
-        */
-        dd: null,
-        /** 
-        * @property _colorData
-        * @description Object reference containing colors hex and text values.
-        * @type Object
-        */
-        _colorData: {
-/* {{{ _colorData */
-    '#111111': 'Obsidian',
-    '#2D2D2D': 'Dark Gray',
-    '#434343': 'Shale',
-    '#5B5B5B': 'Flint',
-    '#737373': 'Gray',
-    '#8B8B8B': 'Concrete',
-    '#A2A2A2': 'Gray',
-    '#B9B9B9': 'Titanium',
-    '#000000': 'Black',
-    '#D0D0D0': 'Light Gray',
-    '#E6E6E6': 'Silver',
-    '#FFFFFF': 'White',
-    '#BFBF00': 'Pumpkin',
-    '#FFFF00': 'Yellow',
-    '#FFFF40': 'Banana',
-    '#FFFF80': 'Pale Yellow',
-    '#FFFFBF': 'Butter',
-    '#525330': 'Raw Siena',
-    '#898A49': 'Mildew',
-    '#AEA945': 'Olive',
-    '#7F7F00': 'Paprika',
-    '#C3BE71': 'Earth',
-    '#E0DCAA': 'Khaki',
-    '#FCFAE1': 'Cream',
-    '#60BF00': 'Cactus',
-    '#80FF00': 'Chartreuse',
-    '#A0FF40': 'Green',
-    '#C0FF80': 'Pale Lime',
-    '#DFFFBF': 'Light Mint',
-    '#3B5738': 'Green',
-    '#668F5A': 'Lime Gray',
-    '#7F9757': 'Yellow',
-    '#407F00': 'Clover',
-    '#8A9B55': 'Pistachio',
-    '#B7C296': 'Light Jade',
-    '#E6EBD5': 'Breakwater',
-    '#00BF00': 'Spring Frost',
-    '#00FF80': 'Pastel Green',
-    '#40FFA0': 'Light Emerald',
-    '#80FFC0': 'Sea Foam',
-    '#BFFFDF': 'Sea Mist',
-    '#033D21': 'Dark Forrest',
-    '#438059': 'Moss',
-    '#7FA37C': 'Medium Green',
-    '#007F40': 'Pine',
-    '#8DAE94': 'Yellow Gray Green',
-    '#ACC6B5': 'Aqua Lung',
-    '#DDEBE2': 'Sea Vapor',
-    '#00BFBF': 'Fog',
-    '#00FFFF': 'Cyan',
-    '#40FFFF': 'Turquoise Blue',
-    '#80FFFF': 'Light Aqua',
-    '#BFFFFF': 'Pale Cyan',
-    '#033D3D': 'Dark Teal',
-    '#347D7E': 'Gray Turquoise',
-    '#609A9F': 'Green Blue',
-    '#007F7F': 'Seaweed',
-    '#96BDC4': 'Green Gray',
-    '#B5D1D7': 'Soapstone',
-    '#E2F1F4': 'Light Turquoise',
-    '#0060BF': 'Summer Sky',
-    '#0080FF': 'Sky Blue',
-    '#40A0FF': 'Electric Blue',
-    '#80C0FF': 'Light Azure',
-    '#BFDFFF': 'Ice Blue',
-    '#1B2C48': 'Navy',
-    '#385376': 'Biscay',
-    '#57708F': 'Dusty Blue',
-    '#00407F': 'Sea Blue',
-    '#7792AC': 'Sky Blue Gray',
-    '#A8BED1': 'Morning Sky',
-    '#DEEBF6': 'Vapor',
-    '#0000BF': 'Deep Blue',
-    '#0000FF': 'Blue',
-    '#4040FF': 'Cerulean Blue',
-    '#8080FF': 'Evening Blue',
-    '#BFBFFF': 'Light Blue',
-    '#212143': 'Deep Indigo',
-    '#373E68': 'Sea Blue',
-    '#444F75': 'Night Blue',
-    '#00007F': 'Indigo Blue',
-    '#585E82': 'Dockside',
-    '#8687A4': 'Blue Gray',
-    '#D2D1E1': 'Light Blue Gray',
-    '#6000BF': 'Neon Violet',
-    '#8000FF': 'Blue Violet',
-    '#A040FF': 'Violet Purple',
-    '#C080FF': 'Violet Dusk',
-    '#DFBFFF': 'Pale Lavender',
-    '#302449': 'Cool Shale',
-    '#54466F': 'Dark Indigo',
-    '#655A7F': 'Dark Violet',
-    '#40007F': 'Violet',
-    '#726284': 'Smoky Violet',
-    '#9E8FA9': 'Slate Gray',
-    '#DCD1DF': 'Violet White',
-    '#BF00BF': 'Royal Violet',
-    '#FF00FF': 'Fuchsia',
-    '#FF40FF': 'Magenta',
-    '#FF80FF': 'Orchid',
-    '#FFBFFF': 'Pale Magenta',
-    '#4A234A': 'Dark Purple',
-    '#794A72': 'Medium Purple',
-    '#936386': 'Cool Granite',
-    '#7F007F': 'Purple',
-    '#9D7292': 'Purple Moon',
-    '#C0A0B6': 'Pale Purple',
-    '#ECDAE5': 'Pink Cloud',
-    '#BF005F': 'Hot Pink',
-    '#FF007F': 'Deep Pink',
-    '#FF409F': 'Grape',
-    '#FF80BF': 'Electric Pink',
-    '#FFBFDF': 'Pink',
-    '#451528': 'Purple Red',
-    '#823857': 'Purple Dino',
-    '#A94A76': 'Purple Gray',
-    '#7F003F': 'Rose',
-    '#BC6F95': 'Antique Mauve',
-    '#D8A5BB': 'Cool Marble',
-    '#F7DDE9': 'Pink Granite',
-    '#C00000': 'Apple',
-    '#FF0000': 'Fire Truck',
-    '#FF4040': 'Pale Red',
-    '#FF8080': 'Salmon',
-    '#FFC0C0': 'Warm Pink',
-    '#441415': 'Sepia',
-    '#82393C': 'Rust',
-    '#AA4D4E': 'Brick',
-    '#800000': 'Brick Red',
-    '#BC6E6E': 'Mauve',
-    '#D8A3A4': 'Shrimp Pink',
-    '#F8DDDD': 'Shell Pink',
-    '#BF5F00': 'Dark Orange',
-    '#FF7F00': 'Orange',
-    '#FF9F40': 'Grapefruit',
-    '#FFBF80': 'Canteloupe',
-    '#FFDFBF': 'Wax',
-    '#482C1B': 'Dark Brick',
-    '#855A40': 'Dirt',
-    '#B27C51': 'Tan',
-    '#7F3F00': 'Nutmeg',
-    '#C49B71': 'Mustard',
-    '#E1C4A8': 'Pale Tan',
-    '#FDEEE0': 'Marble'
-/* }}} */
-        },
-        /** 
-        * @property _colorPicker
-        * @description The HTML Element containing the colorPicker
-        * @type HTMLElement
-        */
-        _colorPicker: null,
-        /** 
-        * @property STR_COLLAPSE
-        * @description String for Toolbar Collapse Button
-        * @type String
-        */
-        STR_COLLAPSE: 'Collapse Toolbar',
-        /** 
-        * @property STR_SPIN_LABEL
-        * @description String for spinbutton dynamic label. Note the {VALUE} will be replaced with YAHOO.lang.substitute
-        * @type String
-        */
-        STR_SPIN_LABEL: 'Spin Button with value {VALUE}. Use Control Shift Up Arrow and Control Shift Down arrow keys to increase or decrease the value.',
-        /** 
-        * @property STR_SPIN_UP
-        * @description String for spinbutton up
-        * @type String
-        */
-        STR_SPIN_UP: 'Click to increase the value of this input',
-        /** 
-        * @property STR_SPIN_DOWN
-        * @description String for spinbutton down
-        * @type String
-        */
-        STR_SPIN_DOWN: 'Click to decrease the value of this input',
-        /** 
-        * @property _titlebar
-        * @description Object reference to the titlebar
-        * @type HTMLElement
-        */
-        _titlebar: null,
-        /** 
-        * @property browser
-        * @description Standard browser detection
-        * @type Object
-        */
-        browser: YAHOO.env.ua,
-        /**
-        * @protected
-        * @property _buttonList
-        * @description Internal property list of current buttons in the toolbar
-        * @type Array
-        */
-        _buttonList: null,
-        /**
-        * @protected
-        * @property _buttonGroupList
-        * @description Internal property list of current button groups in the toolbar
-        * @type Array
-        */
-        _buttonGroupList: null,
-        /**
-        * @protected
-        * @property _sep
-        * @description Internal reference to the separator HTML Element for cloning
-        * @type HTMLElement
-        */
-        _sep: null,
-        /**
-        * @protected
-        * @property _sepCount
-        * @description Internal refernce for counting separators, so we can give them a useful class name for styling
-        * @type Number
-        */
-        _sepCount: null,
-        /**
-        * @protected
-        * @property draghandle
-        * @type HTMLElement
-        */
-        _dragHandle: null,
-        /**
-        * @protected
-        * @property _toolbarConfigs
-        * @type Object
-        */
-        _toolbarConfigs: {
-            renderer: true
-        },
-        /**
-        * @protected
-        * @property CLASS_CONTAINER
-        * @description Default CSS class to apply to the toolbar container element
-        * @type String
-        */
-        CLASS_CONTAINER: 'yui-toolbar-container',
-        /**
-        * @protected
-        * @property CLASS_DRAGHANDLE
-        * @description Default CSS class to apply to the toolbar's drag handle element
-        * @type String
-        */
-        CLASS_DRAGHANDLE: 'yui-toolbar-draghandle',
-        /**
-        * @protected
-        * @property CLASS_SEPARATOR
-        * @description Default CSS class to apply to all separators in the toolbar
-        * @type String
-        */
-        CLASS_SEPARATOR: 'yui-toolbar-separator',
-        /**
-        * @protected
-        * @property CLASS_DISABLED
-        * @description Default CSS class to apply when the toolbar is disabled
-        * @type String
-        */
-        CLASS_DISABLED: 'yui-toolbar-disabled',
-        /**
-        * @protected
-        * @property CLASS_PREFIX
-        * @description Default prefix for dynamically created class names
-        * @type String
-        */
-        CLASS_PREFIX: 'yui-toolbar',
-        /** 
-        * @method init
-        * @description The Toolbar class's initialization method
-        */
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.widget.Toolbar.superclass.init.call(this, p_oElement, p_oAttributes);
-
-        },
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create 
-        * the toolbar.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the toolbar.
-        */
-        initAttributes: function(attr) {
-            YAHOO.widget.Toolbar.superclass.initAttributes.call(this, attr);
-            this.addClass(this.CLASS_CONTAINER);
-
-            /**
-            * @attribute buttonType
-            * @description The buttonType to use (advanced or basic)
-            * @type String
-            */
-            this.setAttributeConfig('buttonType', {
-                value: attr.buttonType || 'basic',
-                writeOnce: true,
-                validator: function(type) {
-                    switch (type) {
-                        case 'advanced':
-                        case 'basic':
-                            return true;
-                    }
-                    return false;
-                },
-                method: function(type) {
-                    if (type == 'advanced') {
-                        if (YAHOO.widget.Button) {
-                            this.buttonType = YAHOO.widget.ToolbarButtonAdvanced;
-                        } else {
-                            this.buttonType = YAHOO.widget.ToolbarButton;
-                        }
-                    } else {
-                        this.buttonType = YAHOO.widget.ToolbarButton;
-                    }
-                }
-            });
-
-
-            /**
-            * @attribute buttons
-            * @description Object specifying the buttons to include in the toolbar
-            * Example:
-            * <code><pre>
-            * {
-            *   { id: 'b3', type: 'button', label: 'Underline', value: 'underline' },
-            *   { type: 'separator' },
-            *   { id: 'b4', type: 'menu', label: 'Align', value: 'align',
-            *       menu: [
-            *           { text: "Left", value: 'alignleft' },
-            *           { text: "Center", value: 'aligncenter' },
-            *           { text: "Right", value: 'alignright' }
-            *       ]
-            *   }
-            * }
-            * </pre></code>
-            * @type Array
-            */
-            
-            this.setAttributeConfig('buttons', {
-                value: [],
-                writeOnce: true,
-                method: function(data) {
-                    for (var i in data) {
-                        if (Lang.hasOwnProperty(data, i)) {
-                            if (data[i].type == 'separator') {
-                                this.addSeparator();
-                            } else if (data[i].group !== undefined) {
-                                this.addButtonGroup(data[i]);
-                            } else {
-                                this.addButton(data[i]);
-                            }
-                        }
-                    }
-                }
-            });
-
-            /**
-            * @attribute disabled
-            * @description Boolean indicating if the toolbar should be disabled. It will also disable the draggable attribute if it is on.
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('disabled', {
-                value: false,
-                method: function(disabled) {
-                    if (this.get('disabled') === disabled) {
-                        return false;
-                    }
-                    if (disabled) {
-                        this.addClass(this.CLASS_DISABLED);
-                        this.set('draggable', false);
-                        this.disableAllButtons();
-                    } else {
-                        this.removeClass(this.CLASS_DISABLED);
-                        if (this._configs.draggable._initialConfig.value) {
-                            //Draggable by default, set it back
-                            this.set('draggable', true);
-                        }
-                        this.resetAllButtons();
-                    }
-                }
-            });
-
-            /**
-            * @config cont
-            * @description The container for the toolbar.
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('cont', {
-                value: attr.cont,
-                readOnly: true
-            });
-
-
-            /**
-            * @attribute grouplabels
-            * @description Boolean indicating if the toolbar should show the group label's text string.
-            * @default true
-            * @type Boolean
-            */
-            this.setAttributeConfig('grouplabels', {
-                value: ((attr.grouplabels === false) ? false : true),
-                method: function(grouplabels) {
-                    if (grouplabels) {
-                        Dom.removeClass(this.get('cont'), (this.CLASS_PREFIX + '-nogrouplabels'));
-                    } else {
-                        Dom.addClass(this.get('cont'), (this.CLASS_PREFIX + '-nogrouplabels'));
-                    }
-                }
-            });
-            /**
-            * @attribute titlebar
-            * @description Boolean indicating if the toolbar should have a titlebar. If
-            * passed a string, it will use that as the titlebar text
-            * @default false
-            * @type Boolean or String
-            */
-            this.setAttributeConfig('titlebar', {
-                value: false,
-                method: function(titlebar) {
-                    if (titlebar) {
-                        if (this._titlebar && this._titlebar.parentNode) {
-                            this._titlebar.parentNode.removeChild(this._titlebar);
-                        }
-                        this._titlebar = document.createElement('DIV');
-                        this._titlebar.tabIndex = '-1';
-                        Event.on(this._titlebar, 'focus', function() {
-                            this._handleFocus();
-                        }, this, true);
-                        Dom.addClass(this._titlebar, this.CLASS_PREFIX + '-titlebar');
-                        if (Lang.isString(titlebar)) {
-                            var h2 = document.createElement('h2');
-                            h2.tabIndex = '-1';
-                            h2.innerHTML = '<a href="#" tabIndex="0">' + titlebar + '</a>';
-                            this._titlebar.appendChild(h2);
-                            Event.on(h2.firstChild, 'click', function(ev) {
-                                Event.stopEvent(ev);
-                            });
-                            Event.on([h2, h2.firstChild], 'focus', function() {
-                                this._handleFocus();
-                            }, this, true);
-                        }
-                        if (this.get('firstChild')) {
-                            this.insertBefore(this._titlebar, this.get('firstChild'));
-                        } else {
-                            this.appendChild(this._titlebar);
-                        }
-                        if (this.get('collapse')) {
-                            this.set('collapse', true);
-                        }
-                    } else if (this._titlebar) {
-                        if (this._titlebar && this._titlebar.parentNode) {
-                            this._titlebar.parentNode.removeChild(this._titlebar);
-                        }
-                    }
-                }
-            });
-
-
-            /**
-            * @attribute collapse
-            * @description Boolean indicating if the the titlebar should have a collapse button.
-            * The collapse button will not remove the toolbar, it will minimize it to the titlebar
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('collapse', {
-                value: false,
-                method: function(collapse) {
-                    if (this._titlebar) {
-                        var collapseEl = null;
-                        var el = Dom.getElementsByClassName('collapse', 'span', this._titlebar);
-                        if (collapse) {
-                            if (el.length > 0) {
-                                //There is already a collapse button
-                                return true;
-                            }
-                            collapseEl = document.createElement('SPAN');
-                            collapseEl.innerHTML = 'X';
-                            collapseEl.title = this.STR_COLLAPSE;
-
-                            Dom.addClass(collapseEl, 'collapse');
-                            this._titlebar.appendChild(collapseEl);
-                            Event.addListener(collapseEl, 'click', function() {
-                                if (Dom.hasClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed')) {
-                                    this.collapse(false); //Expand Toolbar
-                                } else {
-                                    this.collapse(); //Collapse Toolbar
-                                }
-                            }, this, true);
-                        } else {
-                            collapseEl = Dom.getElementsByClassName('collapse', 'span', this._titlebar);
-                            if (collapseEl[0]) {
-                                if (Dom.hasClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed')) {
-                                    //We are closed, reopen the titlebar..
-                                    this.collapse(false); //Expand Toolbar
-                                }
-                                collapseEl[0].parentNode.removeChild(collapseEl[0]);
-                            }
-                        }
-                    }
-                }
-            });
-
-            /**
-            * @attribute draggable
-            * @description Boolean indicating if the toolbar should be draggable.  
-            * @default false
-            * @type Boolean
-            */
-
-            this.setAttributeConfig('draggable', {
-                value: (attr.draggable || false),
-                method: function(draggable) {
-                    if (draggable && !this.get('titlebar')) {
-                        if (!this._dragHandle) {
-                            this._dragHandle = document.createElement('SPAN');
-                            this._dragHandle.innerHTML = '|';
-                            this._dragHandle.setAttribute('title', 'Click to drag the toolbar');
-                            this._dragHandle.id = this.get('id') + '_draghandle';
-                            Dom.addClass(this._dragHandle, this.CLASS_DRAGHANDLE);
-                            if (this.get('cont').hasChildNodes()) {
-                                this.get('cont').insertBefore(this._dragHandle, this.get('cont').firstChild);
-                            } else {
-                                this.get('cont').appendChild(this._dragHandle);
-                            }
-                            /**
-                            * @property dd
-                            * @description The DragDrop instance associated with the Toolbar
-                            * @type Object
-                            */
-                            this.dd = new YAHOO.util.DD(this.get('id'));
-                            this.dd.setHandleElId(this._dragHandle.id);
-                            
-                        }
-                    } else {
-                        if (this._dragHandle) {
-                            this._dragHandle.parentNode.removeChild(this._dragHandle);
-                            this._dragHandle = null;
-                            this.dd = null;
-                        }
-                    }
-                    if (this._titlebar) {
-                        if (draggable) {
-                            this.dd = new YAHOO.util.DD(this.get('id'));
-                            this.dd.setHandleElId(this._titlebar);
-                            Dom.addClass(this._titlebar, 'draggable');
-                        } else {
-                            Dom.removeClass(this._titlebar, 'draggable');
-                            if (this.dd) {
-                                this.dd.unreg();
-                                this.dd = null;
-                            }
-                        }
-                    }
-                },
-                validator: function(value) {
-                    var ret = true;
-                    if (!YAHOO.util.DD) {
-                        ret = false;
-                    }
-                    return ret;
-                }
-            });
-
-        },
-        /**
-        * @method addButtonGroup
-        * @description Add a new button group to the toolbar. (uses addButton)
-        * @param {Object} oGroup Object literal reference to the Groups Config (contains an array of button configs as well as the group label)
-        */
-        addButtonGroup: function(oGroup) {
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addButtonGroup', arguments];
-                return false;
-            }
-            
-            if (!this.hasClass(this.CLASS_PREFIX + '-grouped')) {
-                this.addClass(this.CLASS_PREFIX + '-grouped');
-            }
-            var div = document.createElement('DIV');
-            Dom.addClass(div, this.CLASS_PREFIX + '-group');
-            Dom.addClass(div, this.CLASS_PREFIX + '-group-' + oGroup.group);
-            if (oGroup.label) {
-                var label = document.createElement('h3');
-                label.innerHTML = oGroup.label;
-                div.appendChild(label);
-            }
-            if (!this.get('grouplabels')) {
-                Dom.addClass(this.get('cont'), this.CLASS_PREFIX, '-nogrouplabels');
-            }
-
-            this.get('cont').appendChild(div);
-
-            //For accessibility, let's put all of the group buttons in an Unordered List
-            var ul = document.createElement('ul');
-            div.appendChild(ul);
-
-            if (!this._buttonGroupList) {
-                this._buttonGroupList = {};
-            }
-            
-            this._buttonGroupList[oGroup.group] = ul;
-
-            for (var i = 0; i < oGroup.buttons.length; i++) {
-                var li = document.createElement('li');
-                li.className = this.CLASS_PREFIX + '-groupitem';
-                ul.appendChild(li);
-                if ((oGroup.buttons[i].type !== undefined) && oGroup.buttons[i].type == 'separator') {
-                    this.addSeparator(li);
-                } else {
-                    oGroup.buttons[i].container = li;
-                    this.addButton(oGroup.buttons[i]);
-                }
-            }
-        },
-        /**
-        * @method addButtonToGroup
-        * @description Add a new button to a toolbar group. Buttons supported:
-        *   push, split, menu, select, color, spin
-        * @param {Object} oButton Object literal reference to the Button's Config
-        * @param {String} group The Group identifier passed into the initial config
-        * @param {HTMLElement} after Optional HTML element to insert this button after in the DOM.
-        */
-        addButtonToGroup: function(oButton, group, after) {
-            var groupCont = this._buttonGroupList[group];
-            var li = document.createElement('li');
-            li.className = this.CLASS_PREFIX + '-groupitem';
-            oButton.container = li;
-            this.addButton(oButton, after);
-            groupCont.appendChild(li);
-        },
-        /**
-        * @method addButton
-        * @description Add a new button to the toolbar. Buttons supported:
-        *   push, split, menu, select, color, spin
-        * @param {Object} oButton Object literal reference to the Button's Config
-        * @param {HTMLElement} after Optional HTML element to insert this button after in the DOM.
-        */
-        addButton: function(oButton, after) {
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addButton', arguments];
-                return false;
-            }
-            if (!this._buttonList) {
-                this._buttonList = [];
-            }
-            if (!oButton.container) {
-                oButton.container = this.get('cont');
-            }
-
-            if ((oButton.type == 'menu') || (oButton.type == 'split') || (oButton.type == 'select')) {
-                if (Lang.isArray(oButton.menu)) {
-                    for (var i in oButton.menu) {
-                        if (Lang.hasOwnProperty(oButton.menu, i)) {
-                            var funcObject = {
-                                fn: function(ev, x, oMenu) {
-                                    if (!oButton.menucmd) {
-                                        oButton.menucmd = oButton.value;
-                                    }
-                                    oButton.value = ((oMenu.value) ? oMenu.value : oMenu._oText.nodeValue);
-                                },
-                                scope: this
-                            };
-                            oButton.menu[i].onclick = funcObject;
-                        }
-                    }
-                }
-            }
-            var _oButton = {}, skip = false;
-            for (var o in oButton) {
-                if (Lang.hasOwnProperty(oButton, o)) {
-                    if (!this._toolbarConfigs[o]) {
-                        _oButton[o] = oButton[o];
-                    }
-                }
-            }
-            if (oButton.type == 'select') {
-                _oButton.type = 'menu';
-            }
-            if (oButton.type == 'spin') {
-                _oButton.type = 'push';
-            }
-            if (_oButton.type == 'color') {
-                if (YAHOO.widget.Overlay) {
-                    _oButton = this._makeColorButton(_oButton);
-                } else {
-                    skip = true;
-                }
-            }
-            if (_oButton.menu) {
-                if ((YAHOO.widget.Overlay) && (oButton.menu instanceof YAHOO.widget.Overlay)) {
-                    oButton.menu.showEvent.subscribe(function() {
-                        this._button = _oButton;
-                    });
-                } else {
-                    for (var m = 0; m < _oButton.menu.length; m++) {
-                        if (!_oButton.menu[m].value) {
-                            _oButton.menu[m].value = _oButton.menu[m].text;
-                        }
-                    }
-                    if (this.browser.webkit) {
-                        _oButton.focusmenu = false;
-                    }
-                }
-            }
-            if (skip) {
-                oButton = false;
-            } else {
-                //Add to .get('buttons') manually
-                this._configs.buttons.value[this._configs.buttons.value.length] = oButton;
-                
-                var tmp = new this.buttonType(_oButton);
-                tmp.get('element').tabIndex = '-1';
-                tmp.get('element').setAttribute('role', 'button');
-                tmp._selected = true;
-                
-                if (this.get('disabled')) {
-                    //Toolbar is disabled, disable the new button too!
-                    tmp.set('disabled', true);
-                }
-                if (!oButton.id) {
-                    oButton.id = tmp.get('id');
-                }
-                
-                if (after) {
-                    var el = tmp.get('element');
-                    var nextSib = null;
-                    if (after.get) {
-                        nextSib = after.get('element').nextSibling;
-                    } else if (after.nextSibling) {
-                        nextSib = after.nextSibling;
-                    }
-                    if (nextSib) {
-                        nextSib.parentNode.insertBefore(el, nextSib);
-                    }
-                }
-                tmp.addClass(this.CLASS_PREFIX + '-' + tmp.get('value'));
-
-                var icon = document.createElement('span');
-                icon.className = this.CLASS_PREFIX + '-icon';
-                tmp.get('element').insertBefore(icon, tmp.get('firstChild'));
-                if (tmp._button.tagName.toLowerCase() == 'button') {
-                    tmp.get('element').setAttribute('unselectable', 'on');
-                    //Replace the Button HTML Element with an a href if it exists
-                    var a = document.createElement('a');
-                    a.innerHTML = tmp._button.innerHTML;
-                    a.href = '#';
-                    a.tabIndex = '-1';
-                    Event.on(a, 'click', function(ev) {
-                        Event.stopEvent(ev);
-                    });
-                    tmp._button.parentNode.replaceChild(a, tmp._button);
-                    tmp._button = a;
-                }
-
-                if (oButton.type == 'select') {
-                    if (tmp._button.tagName.toLowerCase() == 'select') {
-                        icon.parentNode.removeChild(icon);
-                        var iel = tmp._button;
-                        var parEl = tmp.get('element');
-                        parEl.parentNode.replaceChild(iel, parEl);
-                    } else {
-                        //Don't put a class on it if it's a real select element
-                        tmp.addClass(this.CLASS_PREFIX + '-select');
-                    }
-                }
-                if (oButton.type == 'spin') {
-                    if (!Lang.isArray(oButton.range)) {
-                        oButton.range = [ 10, 100 ];
-                    }
-                    this._makeSpinButton(tmp, oButton);
-                }
-                tmp.get('element').setAttribute('title', tmp.get('label'));
-                if (oButton.type != 'spin') {
-                    if ((YAHOO.widget.Overlay) && (_oButton.menu instanceof YAHOO.widget.Overlay)) {
-                        var showPicker = function(ev) {
-                            var exec = true;
-                            if (ev.keyCode && (ev.keyCode == 9)) {
-                                exec = false;
-                            }
-                            if (exec) {
-                                if (this._colorPicker) {
-                                    this._colorPicker._button = oButton.value;
-                                }
-                                var menuEL = tmp.getMenu().element;
-                                if (Dom.getStyle(menuEL, 'visibility') == 'hidden') {
-                                    tmp.getMenu().show();
-                                } else {
-                                    tmp.getMenu().hide();
-                                }
-                            }
-                            YAHOO.util.Event.stopEvent(ev);
-                        };
-                        tmp.on('mousedown', showPicker, oButton, this);
-                        tmp.on('keydown', showPicker, oButton, this);
-                        
-                    } else if ((oButton.type != 'menu') && (oButton.type != 'select')) {
-                        tmp.on('keypress', this._buttonClick, oButton, this);
-                        tmp.on('mousedown', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                            this._buttonClick(ev, oButton);
-                        }, oButton, this);
-                        tmp.on('click', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                        });
-                    } else {
-                        //Stop the mousedown event so we can trap the selection in the editor!
-                        tmp.on('mousedown', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                        });
-                        tmp.on('click', function(ev) {
-                            YAHOO.util.Event.stopEvent(ev);
-                        });
-                        tmp.on('change', function(ev) {
-                            if (!oButton.menucmd) {
-                                oButton.menucmd = oButton.value;
-                            }
-                            oButton.value = ev.value;
-                            this._buttonClick(ev, oButton);
-                        }, this, true);
-
-                        var self = this;
-                        //Hijack the mousedown event in the menu and make it fire a button click..
-                        tmp.on('appendTo', function() {
-                            var tmp = this;
-                            if (tmp.getMenu() && tmp.getMenu().mouseDownEvent) {
-                                tmp.getMenu().mouseDownEvent.subscribe(function(ev, args) {
-                                    var oMenu = args[1];
-                                    YAHOO.util.Event.stopEvent(args[0]);
-                                    tmp._onMenuClick(args[0], tmp);
-                                    if (!oButton.menucmd) {
-                                        oButton.menucmd = oButton.value;
-                                    }
-                                    oButton.value = ((oMenu.value) ? oMenu.value : oMenu._oText.nodeValue);
-                                    self._buttonClick.call(self, args[1], oButton);
-                                    tmp._hideMenu();
-                                    return false;
-                                });
-                                tmp.getMenu().clickEvent.subscribe(function(ev, args) {
-                                    YAHOO.util.Event.stopEvent(args[0]);
-                                });
-                                tmp.getMenu().mouseUpEvent.subscribe(function(ev, args) {
-                                    YAHOO.util.Event.stopEvent(args[0]);
-                                });
-                            }
-                        });
-                        
-                    }
-                } else {
-                    //Stop the mousedown event so we can trap the selection in the editor!
-                    tmp.on('mousedown', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    });
-                    tmp.on('click', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    });
-                }
-                if (this.browser.ie) {
-                    /*
-                    //Add a couple of new events for IE
-                    tmp.DOM_EVENTS.focusin = true;
-                    tmp.DOM_EVENTS.focusout = true;
-                    
-                    //Stop them so we don't loose focus in the Editor
-                    tmp.on('focusin', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    }, oButton, this);
-                    
-                    tmp.on('focusout', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    }, oButton, this);
-                    tmp.on('click', function(ev) {
-                        YAHOO.util.Event.stopEvent(ev);
-                    }, oButton, this);
-                    */
-                }
-                if (this.browser.webkit) {
-                    //This will keep the document from gaining focus and the editor from loosing it..
-                    //Forcefully remove the focus calls in button!
-                    tmp.hasFocus = function() {
-                        return true;
-                    };
-                }
-                this._buttonList[this._buttonList.length] = tmp;
-                if ((oButton.type == 'menu') || (oButton.type == 'split') || (oButton.type == 'select')) {
-                    if (Lang.isArray(oButton.menu)) {
-                        var menu = tmp.getMenu();
-                        if (menu && menu.renderEvent) {
-                            menu.renderEvent.subscribe(this._addMenuClasses, tmp);
-                            if (oButton.renderer) {
-                                menu.renderEvent.subscribe(oButton.renderer, tmp);
-                            }
-                        }
-                    }
-                }
-            }
-            return oButton;
-        },
-        /**
-        * @method addSeparator
-        * @description Add a new button separator to the toolbar.
-        * @param {HTMLElement} cont Optional HTML element to insert this button into.
-        * @param {HTMLElement} after Optional HTML element to insert this button after in the DOM.
-        */
-        addSeparator: function(cont, after) {
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addSeparator', arguments];
-                return false;
-            }
-            var sepCont = ((cont) ? cont : this.get('cont'));
-            if (!this.get('element')) {
-                this._queue[this._queue.length] = ['addSeparator', arguments];
-                return false;
-            }
-            if (this._sepCount === null) {
-                this._sepCount = 0;
-            }
-            if (!this._sep) {
-                this._sep = document.createElement('SPAN');
-                Dom.addClass(this._sep, this.CLASS_SEPARATOR);
-                this._sep.innerHTML = '|';
-            }
-            var _sep = this._sep.cloneNode(true);
-            this._sepCount++;
-            Dom.addClass(_sep, this.CLASS_SEPARATOR + '-' + this._sepCount);
-            if (after) {
-                var nextSib = null;
-                if (after.get) {
-                    nextSib = after.get('element').nextSibling;
-                } else if (after.nextSibling) {
-                    nextSib = after.nextSibling;
-                } else {
-                    nextSib = after;
-                }
-                if (nextSib) {
-                    if (nextSib == after) {
-                        nextSib.parentNode.appendChild(_sep);
-                    } else {
-                        nextSib.parentNode.insertBefore(_sep, nextSib);
-                    }
-                }
-            } else {
-                sepCont.appendChild(_sep);
-            }
-            return _sep;
-        },
-        /**
-        * @method _createColorPicker
-        * @private
-        * @description Creates the core DOM reference to the color picker menu item.
-        * @param {String} id the id of the toolbar to prefix this DOM container with.
-        */
-        _createColorPicker: function(id) {
-            if (Dom.get(id + '_colors')) {
-               Dom.get(id + '_colors').parentNode.removeChild(Dom.get(id + '_colors'));
-            }
-            var picker = document.createElement('div');
-            picker.className = 'yui-toolbar-colors';
-            picker.id = id + '_colors';
-            picker.style.display = 'none';
-            Event.on(window, 'load', function() {
-                document.body.appendChild(picker);
-            }, this, true);
-
-            this._colorPicker = picker;
-
-            var html = '';
-            for (var i in this._colorData) {
-                if (Lang.hasOwnProperty(this._colorData, i)) {
-                    html += '<a style="background-color: ' + i + '" href="#">' + i.replace('#', '') + '</a>';
-                }
-            }
-            html += '<span><em>X</em><strong></strong></span>';
-            window.setTimeout(function() {
-                picker.innerHTML = html;
-            }, 0);
-
-            Event.on(picker, 'mouseover', function(ev) {
-                var picker = this._colorPicker;
-                var em = picker.getElementsByTagName('em')[0];
-                var strong = picker.getElementsByTagName('strong')[0];
-                var tar = Event.getTarget(ev);
-                if (tar.tagName.toLowerCase() == 'a') {
-                    em.style.backgroundColor = tar.style.backgroundColor;
-                    strong.innerHTML = this._colorData['#' + tar.innerHTML] + '<br>' + tar.innerHTML;
-                }
-            }, this, true);
-            Event.on(picker, 'focus', function(ev) {
-                Event.stopEvent(ev);
-            });
-            Event.on(picker, 'click', function(ev) {
-                Event.stopEvent(ev);
-            });
-            Event.on(picker, 'mousedown', function(ev) {
-                Event.stopEvent(ev);
-                var tar = Event.getTarget(ev);
-                if (tar.tagName.toLowerCase() == 'a') {
-                    var retVal = this.fireEvent('colorPickerClicked', { type: 'colorPickerClicked', target: this, button: this._colorPicker._button, color: tar.innerHTML, colorName: this._colorData['#' + tar.innerHTML] } );
-                    if (retVal !== false) {
-                        var info = {
-                            color: tar.innerHTML,
-                            colorName: this._colorData['#' + tar.innerHTML],
-                            value: this._colorPicker._button 
-                        };
-                    
-                        this.fireEvent('buttonClick', { type: 'buttonClick', target: this.get('element'), button: info });
-                    }
-                    this.getButtonByValue(this._colorPicker._button).getMenu().hide();
-                }
-            }, this, true);
-        },
-        /**
-        * @method _resetColorPicker
-        * @private
-        * @description Clears the currently selected color or mouseover color in the color picker.
-        */
-        _resetColorPicker: function() {
-            var em = this._colorPicker.getElementsByTagName('em')[0];
-            var strong = this._colorPicker.getElementsByTagName('strong')[0];
-            em.style.backgroundColor = 'transparent';
-            strong.innerHTML = '';
-        },
-        /**
-        * @method _makeColorButton
-        * @private
-        * @description Called to turn a "color" button into a menu button with an Overlay for the menu.
-        * @param {Object} _oButton <a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a> reference
-        */
-        _makeColorButton: function(_oButton) {
-            if (!this._colorPicker) {   
-                this._createColorPicker(this.get('id'));
-            }
-            _oButton.type = 'color';
-            _oButton.menu = new YAHOO.widget.Overlay(this.get('id') + '_' + _oButton.value + '_menu', { visible: false, position: 'absolute', iframe: true });
-            _oButton.menu.setBody('');
-            _oButton.menu.render(this.get('cont'));
-            Dom.addClass(_oButton.menu.element, 'yui-button-menu');
-            Dom.addClass(_oButton.menu.element, 'yui-color-button-menu');
-            _oButton.menu.beforeShowEvent.subscribe(function() {
-                _oButton.menu.cfg.setProperty('zindex', 5); //Re Adjust the overlays zIndex.. not sure why.
-                _oButton.menu.cfg.setProperty('context', [this.getButtonById(_oButton.id).get('element'), 'tl', 'bl']); //Re Adjust the overlay.. not sure why.
-                //Move the DOM reference of the color picker to the Overlay that we are about to show.
-                this._resetColorPicker();
-                var _p = this._colorPicker;
-                if (_p.parentNode) {
-                    _p.parentNode.removeChild(_p);
-                }
-                _oButton.menu.setBody('');
-                _oButton.menu.appendToBody(_p);
-                this._colorPicker.style.display = 'block';
-            }, this, true);
-            return _oButton;
-        },
-        /**
-        * @private
-        * @method _makeSpinButton
-        * @description Create a button similar to an OS Spin button.. It has an up/down arrow combo to scroll through a range of int values.
-        * @param {Object} _button <a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a> reference
-        * @param {Object} oButton Object literal containing the buttons initial config
-        */
-        _makeSpinButton: function(_button, oButton) {
-            _button.addClass(this.CLASS_PREFIX + '-spinbutton');
-            var self = this,
-                _par = _button._button.parentNode.parentNode, //parentNode of Button Element for appending child
-                range = oButton.range,
-                _b1 = document.createElement('a'),
-                _b2 = document.createElement('a');
-                _b1.href = '#';
-                _b2.href = '#';
-                _b1.tabIndex = '-1';
-                _b2.tabIndex = '-1';
-            
-            //Setup the up and down arrows
-            _b1.className = 'up';
-            _b1.title = this.STR_SPIN_UP;
-            _b1.innerHTML = this.STR_SPIN_UP;
-            _b2.className = 'down';
-            _b2.title = this.STR_SPIN_DOWN;
-            _b2.innerHTML = this.STR_SPIN_DOWN;
-
-            //Append them to the container
-            _par.appendChild(_b1);
-            _par.appendChild(_b2);
-            
-            var label = YAHOO.lang.substitute(this.STR_SPIN_LABEL, { VALUE: _button.get('label') });
-            _button.set('title', label);
-
-            var cleanVal = function(value) {
-                value = ((value < range[0]) ? range[0] : value);
-                value = ((value > range[1]) ? range[1] : value);
-                return value;
-            };
-
-            var br = this.browser;
-            var tbar = false;
-            var strLabel = this.STR_SPIN_LABEL;
-            if (this._titlebar && this._titlebar.firstChild) {
-                tbar = this._titlebar.firstChild;
-            }
-            
-            var _intUp = function(ev) {
-                YAHOO.util.Event.stopEvent(ev);
-                if (!_button.get('disabled') && (ev.keyCode != 9)) {
-                    var value = parseInt(_button.get('label'), 10);
-                    value++;
-                    value = cleanVal(value);
-                    _button.set('label', ''+value);
-                    var label = YAHOO.lang.substitute(strLabel, { VALUE: _button.get('label') });
-                    _button.set('title', label);
-                    if (!br.webkit && tbar) {
-                        //tbar.focus(); //We do this for accessibility, on the re-focus of the element, a screen reader will re-read the title that was just changed
-                        //_button.focus();
-                    }
-                    self._buttonClick(ev, oButton);
-                }
-            };
-
-            var _intDown = function(ev) {
-                YAHOO.util.Event.stopEvent(ev);
-                if (!_button.get('disabled') && (ev.keyCode != 9)) {
-                    var value = parseInt(_button.get('label'), 10);
-                    value--;
-                    value = cleanVal(value);
-
-                    _button.set('label', ''+value);
-                    var label = YAHOO.lang.substitute(strLabel, { VALUE: _button.get('label') });
-                    _button.set('title', label);
-                    if (!br.webkit && tbar) {
-                        //tbar.focus(); //We do this for accessibility, on the re-focus of the element, a screen reader will re-read the title that was just changed
-                        //_button.focus();
-                    }
-                    self._buttonClick(ev, oButton);
-                }
-            };
-
-            var _intKeyUp = function(ev) {
-                if (ev.keyCode == 38) {
-                    _intUp(ev);
-                } else if (ev.keyCode == 40) {
-                    _intDown(ev);
-                } else if (ev.keyCode == 107 && ev.shiftKey) {  //Plus Key
-                    _intUp(ev);
-                } else if (ev.keyCode == 109 && ev.shiftKey) {  //Minus Key
-                    _intDown(ev);
-                }
-            };
-
-            //Handle arrow keys..
-            _button.on('keydown', _intKeyUp, this, true);
-
-            //Listen for the click on the up button and act on it
-            //Listen for the click on the down button and act on it
-            Event.on(_b1, 'mousedown',function(ev) {
-                Event.stopEvent(ev);
-            }, this, true);
-            Event.on(_b2, 'mousedown', function(ev) {
-                Event.stopEvent(ev);
-            }, this, true);
-            Event.on(_b1, 'click', _intUp, this, true);
-            Event.on(_b2, 'click', _intDown, this, true);
-        },
-        /**
-        * @protected
-        * @method _buttonClick
-        * @description Click handler for all buttons in the toolbar.
-        * @param {String} ev The event that was passed in.
-        * @param {Object} info Object literal of information about the button that was clicked.
-        */
-        _buttonClick: function(ev, info) {
-            var doEvent = true;
-            
-            if (ev && ev.type == 'keypress') {
-                if (ev.keyCode == 9) {
-                    doEvent = false;
-                } else if ((ev.keyCode === 13) || (ev.keyCode === 0) || (ev.keyCode === 32)) {
-                } else {
-                    doEvent = false;
-                }
-            }
-
-            if (doEvent) {
-                var fireNextEvent = true,
-                    retValue = false;
-                    
-                info.isSelected = this.isSelected(info.id);
-
-                if (info.value) {
-                    retValue = this.fireEvent(info.value + 'Click', { type: info.value + 'Click', target: this.get('element'), button: info });
-                    if (retValue === false) {
-                        fireNextEvent = false;
-                    }
-                }
-                
-                if (info.menucmd && fireNextEvent) {
-                    retValue = this.fireEvent(info.menucmd + 'Click', { type: info.menucmd + 'Click', target: this.get('element'), button: info });
-                    if (retValue === false) {
-                        fireNextEvent = false;
-                    }
-                }
-                if (fireNextEvent) {
-                    this.fireEvent('buttonClick', { type: 'buttonClick', target: this.get('element'), button: info });
-                }
-
-                if (info.type == 'select') {
-                    var button = this.getButtonById(info.id);
-                    if (button.buttonType == 'rich') {
-                        var txt = info.value;
-                        for (var i = 0; i < info.menu.length; i++) {
-                            if (info.menu[i].value == info.value) {
-                                txt = info.menu[i].text;
-                                break;
-                            }
-                        }
-                        button.set('label', '<span class="yui-toolbar-' + info.menucmd + '-' + (info.value).replace(/ /g, '-').toLowerCase() + '">' + txt + '</span>');
-                        var _items = button.getMenu().getItems();
-                        for (var m = 0; m < _items.length; m++) {
-                            if (_items[m].value.toLowerCase() == info.value.toLowerCase()) {
-                                _items[m].cfg.setProperty('checked', true);
-                            } else {
-                                _items[m].cfg.setProperty('checked', false);
-                            }
-                        }
-                    }
-                }
-                if (ev) {
-                    Event.stopEvent(ev);
-                }
-            }
-        },
-        /**
-        * @private
-        * @property _keyNav
-        * @description Flag to determine if the arrow nav listeners have been attached
-        * @type Boolean
-        */
-        _keyNav: null,
-        /**
-        * @private
-        * @property _navCounter
-        * @description Internal counter for walking the buttons in the toolbar with the arrow keys
-        * @type Number
-        */
-        _navCounter: null,
-        /**
-        * @private
-        * @method _navigateButtons
-        * @description Handles the navigation/focus of toolbar buttons with the Arrow Keys
-        * @param {Event} ev The Key Event
-        */
-        _navigateButtons: function(ev) {
-            switch (ev.keyCode) {
-                case 37:
-                case 39:
-                    if (ev.keyCode == 37) {
-                        this._navCounter--;
-                    } else {
-                        this._navCounter++;
-                    }
-                    if (this._navCounter > (this._buttonList.length - 1)) {
-                        this._navCounter = 0;
-                    }
-                    if (this._navCounter < 0) {
-                        this._navCounter = (this._buttonList.length - 1);
-                    }
-                    if (this._buttonList[this._navCounter]) {
-                        var el = this._buttonList[this._navCounter].get('element');
-                        if (this.browser.ie) {
-                            el = this._buttonList[this._navCounter].get('element').getElementsByTagName('a')[0];
-                        }
-                        if (this._buttonList[this._navCounter].get('disabled')) {
-                            this._navigateButtons(ev);
-                        } else {
-                            el.focus();
-                        }
-                    }
-                    break;
-            }
-        },
-        /**
-        * @private
-        * @method _handleFocus
-        * @description Sets up the listeners for the arrow key navigation
-        */
-        _handleFocus: function() {
-            if (!this._keyNav) {
-                var ev = 'keypress';
-                if (this.browser.ie) {
-                    ev = 'keydown';
-                }
-                Event.on(this.get('element'), ev, this._navigateButtons, this, true);
-                this._keyNav = true;
-                this._navCounter = -1;
-            }
-        },
-        /**
-        * @method getButtonById
-        * @description Gets a button instance from the toolbar by is Dom id.
-        * @param {String} id The Dom id to query for.
-        * @return {<a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a>}
-        */
-        getButtonById: function(id) {
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                if (this._buttonList[i] && this._buttonList[i].get('id') == id) {
-                    return this._buttonList[i];
-                }
-            }
-            return false;
-        },
-        /**
-        * @method getButtonByValue
-        * @description Gets a button instance or a menuitem instance from the toolbar by it's value.
-        * @param {String} value The button value to query for.
-        * @return {<a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a> or <a href="YAHOO.widget.MenuItem.html">YAHOO.widget.MenuItem</a>}
-        */
-        getButtonByValue: function(value) {
-            var _buttons = this.get('buttons');
-            var len = _buttons.length;
-            for (var i = 0; i < len; i++) {
-                if (_buttons[i].group !== undefined) {
-                    for (var m = 0; m < _buttons[i].buttons.length; m++) {
-                        if ((_buttons[i].buttons[m].value == value) || (_buttons[i].buttons[m].menucmd == value)) {
-                            return this.getButtonById(_buttons[i].buttons[m].id);
-                        }
-                        if (_buttons[i].buttons[m].menu) { //Menu Button, loop through the values
-                            for (var s = 0; s < _buttons[i].buttons[m].menu.length; s++) {
-                                if (_buttons[i].buttons[m].menu[s].value == value) {
-                                    return this.getButtonById(_buttons[i].buttons[m].id);
-                                }
-                            }
-                        }
-                    }
-                } else {
-                    if ((_buttons[i].value == value) || (_buttons[i].menucmd == value)) {
-                        return this.getButtonById(_buttons[i].id);
-                    }
-                    if (_buttons[i].menu) { //Menu Button, loop through the values
-                        for (var j = 0; j < _buttons[i].menu.length; j++) {
-                            if (_buttons[i].menu[j].value == value) {
-                                return this.getButtonById(_buttons[i].id);
-                            }
-                        }
-                    }
-                }
-            }
-            return false;
-        },
-        /**
-        * @method getButtonByIndex
-        * @description Gets a button instance from the toolbar by is index in _buttonList.
-        * @param {Number} index The index of the button in _buttonList.
-        * @return {<a href="YAHOO.widget.ToolbarButton.html">YAHOO.widget.ToolbarButton</a>}
-        */
-        getButtonByIndex: function(index) {
-            if (this._buttonList[index]) {
-                return this._buttonList[index];
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method getButtons
-        * @description Returns an array of buttons in the current toolbar
-        * @return {Array}
-        */
-        getButtons: function() {
-            return this._buttonList;
-        },
-        /**
-        * @method disableButton
-        * @description Disables a button in the toolbar.
-        * @param {String/Number} id Disable a button by it's id, index or value.
-        * @return {Boolean}
-        */
-        disableButton: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                button.set('disabled', true);
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method enableButton
-        * @description Enables a button in the toolbar.
-        * @param {String/Number} id Enable a button by it's id, index or value.
-        * @return {Boolean}
-        */
-        enableButton: function(id) {
-            if (this.get('disabled')) {
-                return false;
-            }
-            var button = getButton.call(this, id);
-            if (button) {
-                if (button.get('disabled')) {
-                    button.set('disabled', false);
-                }
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method isSelected
-        * @description Tells if a button is selected or not.
-        * @param {String/Number} id A button by it's id, index or value.
-        * @return {Boolean}
-        */
-        isSelected: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                return button._selected;
-            }
-            return false;
-        },
-        /**
-        * @method selectButton
-        * @description Selects a button in the toolbar.
-        * @param {String/Number} id Select a button by it's id, index or value.
-        * @param {String} value If this is a Menu Button, check this item in the menu
-        * @return {Boolean}
-        */
-        selectButton: function(id, value) {
-            var button = getButton.call(this, id);
-            if (button) {
-                button.addClass('yui-button-selected');
-                button.addClass('yui-button-' + button.get('value') + '-selected');
-                button._selected = true;
-                if (value) {
-                    if (button.buttonType == 'rich') {
-                        var _items = button.getMenu().getItems();
-                        for (var m = 0; m < _items.length; m++) {
-                            if (_items[m].value == value) {
-                                _items[m].cfg.setProperty('checked', true);
-                                button.set('label', '<span class="yui-toolbar-' + button.get('value') + '-' + (value).replace(/ /g, '-').toLowerCase() + '">' + _items[m]._oText.nodeValue + '</span>');
-                            } else {
-                                _items[m].cfg.setProperty('checked', false);
-                            }
-                        }
-                    }
-                }
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method deselectButton
-        * @description Deselects a button in the toolbar.
-        * @param {String/Number} id Deselect a button by it's id, index or value.
-        * @return {Boolean}
-        */
-        deselectButton: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                button.removeClass('yui-button-selected');
-                button.removeClass('yui-button-' + button.get('value') + '-selected');
-                button.removeClass('yui-button-hover');
-                button._selected = false;
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method deselectAllButtons
-        * @description Deselects all buttons in the toolbar.
-        * @return {Boolean}
-        */
-        deselectAllButtons: function() {
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                this.deselectButton(this._buttonList[i]);
-            }
-        },
-        /**
-        * @method disableAllButtons
-        * @description Disables all buttons in the toolbar.
-        * @return {Boolean}
-        */
-        disableAllButtons: function() {
-            if (this.get('disabled')) {
-                return false;
-            }
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                this.disableButton(this._buttonList[i]);
-            }
-        },
-        /**
-        * @method enableAllButtons
-        * @description Enables all buttons in the toolbar.
-        * @return {Boolean}
-        */
-        enableAllButtons: function() {
-            if (this.get('disabled')) {
-                return false;
-            }
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                this.enableButton(this._buttonList[i]);
-            }
-        },
-        /**
-        * @method resetAllButtons
-        * @description Resets all buttons to their initial state.
-        * @param {Object} _ex Except these buttons
-        * @return {Boolean}
-        */
-        resetAllButtons: function(_ex) {
-            if (!Lang.isObject(_ex)) {
-                _ex = {};
-            }
-            if (this.get('disabled')) {
-                return false;
-            }
-            var len = this._buttonList.length;
-            for (var i = 0; i < len; i++) {
-                var _button = this._buttonList[i];
-                if (_button) {
-                    var disabled = _button._configs.disabled._initialConfig.value;
-                    if (_ex[_button.get('id')]) {
-                        this.enableButton(_button);
-                        this.selectButton(_button);
-                    } else {
-                        if (disabled) {
-                            this.disableButton(_button);
-                        } else {
-                            this.enableButton(_button);
-                        }
-                        this.deselectButton(_button);
-                    }
-                }
-            }
-        },
-        /**
-        * @method destroyButton
-        * @description Destroy a button in the toolbar.
-        * @param {String/Number} id Destroy a button by it's id or index.
-        * @return {Boolean}
-        */
-        destroyButton: function(id) {
-            var button = getButton.call(this, id);
-            if (button) {
-                var thisID = button.get('id');
-                button.destroy();
-
-                var len = this._buttonList.length;
-                for (var i = 0; i < len; i++) {
-                    if (this._buttonList[i] && this._buttonList[i].get('id') == thisID) {
-                        this._buttonList[i] = null;
-                    }
-                }
-            } else {
-                return false;
-            }
-        },
-        /**
-        * @method destroy
-        * @description Destroys the toolbar, all of it's elements and objects.
-        * @return {Boolean}
-        */
-        destroy: function() {
-            this.get('element').innerHTML = '';
-            this.get('element').className = '';
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                }
-            }
-            return true;
-        },
-        /**
-        * @method collapse
-        * @description Programatically collapse the toolbar.
-        * @param {Boolean} collapse True to collapse, false to expand.
-        */
-        collapse: function(collapse) {
-            var el = Dom.getElementsByClassName('collapse', 'span', this._titlebar);
-            if (collapse === false) {
-                Dom.removeClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed');
-                if (el[0]) {
-                    Dom.removeClass(el[0], 'collapsed');
-                }
-                this.fireEvent('toolbarExpanded', { type: 'toolbarExpanded', target: this });
-            } else {
-                if (el[0]) {
-                    Dom.addClass(el[0], 'collapsed');
-                }
-                Dom.addClass(this.get('cont').parentNode, 'yui-toolbar-container-collapsed');
-                this.fireEvent('toolbarCollapsed', { type: 'toolbarCollapsed', target: this });
-            }
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the toolbar.
-        * @return {String}
-        */
-        toString: function() {
-            return 'Toolbar (#' + this.get('element').id + ') with ' + this._buttonList.length + ' buttons.';
-        }
-    });
-/**
-* @event buttonClick
-* @param {Object} o The object passed to this handler is the button config used to create the button.
-* @description Fires when any botton receives a click event. Passes back a single object representing the buttons config object. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event valueClick
-* @param {Object} o The object passed to this handler is the button config used to create the button.
-* @description This is a special dynamic event that is created and dispatched based on the value property
-* of the button config. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* Example:
-* <code><pre>
-* buttons : [
-*   { type: 'button', value: 'test', value: 'testButton' }
-* ]</pre>
-* </code>
-* With the valueClick event you could subscribe to this buttons click event with this:
-* tbar.in('testButtonClick', function() { alert('test button clicked'); })
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event toolbarExpanded
-* @description Fires when the toolbar is expanded via the collapse button. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event toolbarCollapsed
-* @description Fires when the toolbar is collapsed via the collapse button. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-})();
-/**
- * @description <p>The Rich Text Editor is a UI control that replaces a standard HTML textarea; it allows for the rich formatting of text content, including common structural treatments like lists, formatting treatments like bold and italic text, and drag-and-drop inclusion and sizing of images. The Rich Text Editor's toolbar is extensible via a plugin architecture so that advanced implementations can achieve a high degree of customization.</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event, toolbar
- * @optional animation, container_core, resize, dragdrop
- * @beta
- */
-
-(function() {
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang,
-    Toolbar = YAHOO.widget.Toolbar;
-
-    /**
-     * The Rich Text Editor is a UI control that replaces a standard HTML textarea; it allows for the rich formatting of text content, including common structural treatments like lists, formatting treatments like bold and italic text, and drag-and-drop inclusion and sizing of images. The Rich Text Editor's toolbar is extensible via a plugin architecture so that advanced implementations can achieve a high degree of customization.
-     * @constructor
-     * @class SimpleEditor
-     * @extends YAHOO.util.Element
-     * @param {String/HTMLElement} el The textarea element to turn into an editor.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    
-    YAHOO.widget.SimpleEditor = function(el, attrs) {
-        
-        var o = {};
-        if (Lang.isObject(el) && (!el.tagName) && !attrs) {
-            Lang.augmentObject(o, el); //Break the config reference
-            el = document.createElement('textarea');
-            this.DOMReady = true;
-            if (o.container) {
-                var c = Dom.get(o.container);
-                c.appendChild(el);
-            } else {
-                document.body.appendChild(el);
-            }
-        } else {
-            if (attrs) {
-                Lang.augmentObject(o, attrs); //Break the config reference
-            }
-        }
-
-        var oConfig = {
-            element: null,
-            attributes: o
-        }, id = null;
-
-        if (Lang.isString(el)) {
-            id = el;
-        } else {
-            if (oConfig.attributes.id) {
-                id = oConfig.attributes.id;
-            } else {
-                this.DOMReady = true;
-                id = Dom.generateId(el);
-            }
-        }
-        oConfig.element = el;
-
-        var element_cont = document.createElement('DIV');
-        oConfig.attributes.element_cont = new YAHOO.util.Element(element_cont, {
-            id: id + '_container'
-        });
-        var div = document.createElement('div');
-        Dom.addClass(div, 'first-child');
-        oConfig.attributes.element_cont.appendChild(div);
-        
-        if (!oConfig.attributes.toolbar_cont) {
-            oConfig.attributes.toolbar_cont = document.createElement('DIV');
-            oConfig.attributes.toolbar_cont.id = id + '_toolbar';
-            div.appendChild(oConfig.attributes.toolbar_cont);
-        }
-        var editorWrapper = document.createElement('DIV');
-        div.appendChild(editorWrapper);
-        oConfig.attributes.editor_wrapper = editorWrapper;
-
-        YAHOO.widget.SimpleEditor.superclass.constructor.call(this, oConfig.element, oConfig.attributes);
-    };
-
-
-    YAHOO.extend(YAHOO.widget.SimpleEditor, YAHOO.util.Element, {
-        /**
-        * @private
-        * @property _resizeConfig
-        * @description The default config for the Resize Utility
-        */
-        _resizeConfig: {
-            handles: ['br'],
-            autoRatio: true,
-            status: true,
-            proxy: true,
-            useShim: true,
-            setSize: false
-        },
-        /**
-        * @private
-        * @method _setupResize
-        * @description Creates the Resize instance and binds its events.
-        */
-        _setupResize: function() {
-            if (!YAHOO.util.DD || !YAHOO.util.Resize) { return false; }
-            if (this.get('resize')) {
-                var config = {};
-                Lang.augmentObject(config, this._resizeConfig); //Break the config reference
-                this.resize = new YAHOO.util.Resize(this.get('element_cont').get('element'), config);
-                this.resize.on('resize', function(args) {
-                    var anim = this.get('animate');
-                    this.set('animate', false);
-                    this.set('width', args.width + 'px');
-                    var h = args.height,
-                        th = (this.toolbar.get('element').clientHeight + 2),
-                        dh = 0;
-                    if (this.dompath) {
-                        dh = (this.dompath.clientHeight + 1); //It has a 1px top border..
-                    }
-                    var newH = (h - th - dh);
-                    this.set('height', newH + 'px');
-                    this.get('element_cont').setStyle('height', '');
-                    this.set('animate', anim);
-                }, this, true);
-            }
-        },
-        /**
-        * @property resize
-        * @description A reference to the Resize object
-        * @type YAHOO.util.Resize
-        */
-        resize: null,
-        _setupDD: function() {
-            if (!YAHOO.util.DD) { return false; }
-            if (this.get('drag')) {
-                var d = this.get('drag'),
-                    dd = YAHOO.util.DD;
-                if (d === 'proxy') {
-                    dd = YAHOO.util.DDProxy;
-                }
-
-                this.dd = new dd(this.get('element_cont').get('element'));
-                this.toolbar.addClass('draggable'); 
-                this.dd.setHandleElId(this.toolbar._titlebar); 
-            }
-        },
-        /**
-        * @property dd
-        * @description A reference to the DragDrop object.
-        * @type YAHOO.util.DD/YAHOO.util.DDProxy
-        */
-        dd: null,
-        /**
-        * @private
-        * @property _lastCommand
-        * @description A cache of the last execCommand (used for Undo/Redo so they don't mark an undo level)
-        * @type String
-        */
-        _lastCommand: null,
-        _undoNodeChange: function() {},
-        _storeUndo: function() {},
-        /**
-        * @private
-        * @method _checkKey
-        * @description Checks a keyMap entry against a key event
-        * @param {Object} k The _keyMap object
-        * @param {Event} e The Mouse Event
-        * @return {Boolean}
-        */
-        _checkKey: function(k, e) {
-            var ret = false;
-            if ((e.keyCode === k.key)) {
-                if (k.mods && (k.mods.length > 0)) {
-                    var val = 0;
-                    for (var i = 0; i < k.mods.length; i++) {
-                        if (this.browser.mac) {
-                            if (k.mods[i] == 'ctrl') {
-                                k.mods[i] = 'meta';
-                            }
-                        }
-                        if (e[k.mods[i] + 'Key'] === true) {
-                            val++;
-                        }
-                    }
-                    if (val === k.mods.length) {
-                        ret = true;
-                    }
-                } else {
-                    ret = true;
-                }
-            }
-            return ret;
-        },
-        /**
-        * @private
-        * @property _keyMap
-        * @description Named key maps for various actions in the Editor. Example: <code>CLOSE_WINDOW: { key: 87, mods: ['shift', 'ctrl'] }</code>. 
-        * This entry shows that when key 87 (W) is found with the modifiers of shift and control, the window will close. You can customize this object to tweak keyboard shortcuts.
-        * @type {Object/Mixed}
-        */
-        _keyMap: {
-            SELECT_ALL: {
-                key: 65, //A key
-                mods: ['ctrl']
-            },
-            CLOSE_WINDOW: {
-                key: 87, //W key
-                mods: ['shift', 'ctrl']
-            },
-            FOCUS_TOOLBAR: {
-                key: 27,
-                mods: ['shift']
-            },
-            FOCUS_AFTER: {
-                key: 27
-            },
-            CREATE_LINK: {
-                key: 76,
-                mods: ['shift', 'ctrl']
-            },
-            BOLD: {
-                key: 66,
-                mods: ['shift', 'ctrl']
-            },
-            ITALIC: {
-                key: 73,
-                mods: ['shift', 'ctrl']
-            },
-            UNDERLINE: {
-                key: 85,
-                mods: ['shift', 'ctrl']
-            },
-            UNDO: {
-                key: 90,
-                mods: ['ctrl']
-            },
-            REDO: {
-                key: 90,
-                mods: ['shift', 'ctrl']
-            },
-            JUSTIFY_LEFT: {
-                key: 219,
-                mods: ['shift', 'ctrl']
-            },
-            JUSTIFY_CENTER: {
-                key: 220,
-                mods: ['shift', 'ctrl']
-            },
-            JUSTIFY_RIGHT: {
-                key: 221,
-                mods: ['shift', 'ctrl']
-            }
-        },
-        /**
-        * @private
-        * @method _cleanClassName
-        * @description Makes a useable classname from dynamic data, by dropping it to lowercase and replacing spaces with -'s.
-        * @param {String} str The classname to clean up
-        * @return {String}
-        */
-        _cleanClassName: function(str) {
-            return str.replace(/ /g, '-').toLowerCase();
-        },
-        /**
-        * @property _textarea
-        * @description Flag to determine if we are using a textarea or an HTML Node.
-        * @type Boolean
-        */
-        _textarea: null,
-        /**
-        * @property _docType
-        * @description The DOCTYPE to use in the editable container.
-        * @type String
-        */
-        _docType: '<!DOCTYPE HTML PUBLIC "-/'+'/W3C/'+'/DTD HTML 4.01/'+'/EN" "http:/'+'/www.w3.org/TR/html4/strict.dtd">',
-        /**
-        * @property editorDirty
-        * @description This flag will be set when certain things in the Editor happen. It is to be used by the developer to check to see if content has changed.
-        * @type Boolean
-        */
-        editorDirty: null,
-        /**
-        * @property _defaultCSS
-        * @description The default CSS used in the config for 'css'. This way you can add to the config like this: { css: YAHOO.widget.SimpleEditor.prototype._defaultCSS + 'ADD MYY CSS HERE' }
-        * @type String
-        */
-        _defaultCSS: 'html { height: 95%; } body { padding: 7px; background-color: #fff; font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small; } a, a:visited, a:hover { color: blue !important; text-decoration: underline !important; cursor: text !important; } .warning-localfile { border-bottom: 1px dashed red !important; } .yui-busy { cursor: wait !important; } img.selected { border: 2px dotted #808080; } img { cursor: pointer !important; border: none; } body.ptags.webkit div { margin: 11px 0; }',
-        /**
-        * @property _defaultToolbar
-        * @private
-        * @description Default toolbar config.
-        * @type Object
-        */
-        _defaultToolbar: null,
-        /**
-        * @property _lastButton
-        * @private
-        * @description The last button pressed, so we don't disable it.
-        * @type Object
-        */
-        _lastButton: null,
-        /**
-        * @property _baseHREF
-        * @private
-        * @description The base location of the editable page (this page) so that relative paths for image work.
-        * @type String
-        */
-        _baseHREF: function() {
-            var href = document.location.href;
-            if (href.indexOf('?') !== -1) { //Remove the query string
-                href = href.substring(0, href.indexOf('?'));
-            }
-            href = href.substring(0, href.lastIndexOf('/')) + '/';
-            return href;
-        }(),
-        /**
-        * @property _lastImage
-        * @private
-        * @description Safari reference for the last image selected (for styling as selected).
-        * @type HTMLElement
-        */
-        _lastImage: null,
-        /**
-        * @property _blankImageLoaded
-        * @private
-        * @description Don't load the blank image more than once..
-        * @type Boolean
-        */
-        _blankImageLoaded: null,
-        /**
-        * @property _fixNodesTimer
-        * @private
-        * @description Holder for the fixNodes timer
-        * @type Date
-        */
-        _fixNodesTimer: null,
-        /**
-        * @property _nodeChangeTimer
-        * @private
-        * @description Holds a reference to the nodeChange setTimeout call
-        * @type Number
-        */
-        _nodeChangeTimer: null,
-        /**
-        * @property _lastNodeChangeEvent
-        * @private
-        * @description Flag to determine the last event that fired a node change
-        * @type Event
-        */
-        _lastNodeChangeEvent: null,
-        /**
-        * @property _lastNodeChange
-        * @private
-        * @description Flag to determine when the last node change was fired
-        * @type Date
-        */
-        _lastNodeChange: 0,
-        /**
-        * @property _rendered
-        * @private
-        * @description Flag to determine if editor has been rendered or not
-        * @type Boolean
-        */
-        _rendered: null,
-        /**
-        * @property DOMReady
-        * @private
-        * @description Flag to determine if DOM is ready or not
-        * @type Boolean
-        */
-        DOMReady: null,
-        /**
-        * @property _selection
-        * @private
-        * @description Holder for caching iframe selections
-        * @type Object
-        */
-        _selection: null,
-        /**
-        * @property _mask
-        * @private
-        * @description DOM Element holder for the editor Mask when disabled
-        * @type Object
-        */
-        _mask: null,
-        /**
-        * @property _showingHiddenElements
-        * @private
-        * @description Status of the hidden elements button
-        * @type Boolean
-        */
-        _showingHiddenElements: null,
-        /**
-        * @property currentWindow
-        * @description A reference to the currently open EditorWindow
-        * @type Object
-        */
-        currentWindow: null,
-        /**
-        * @property currentEvent
-        * @description A reference to the current editor event
-        * @type Event
-        */
-        currentEvent: null,
-        /**
-        * @property operaEvent
-        * @private
-        * @description setTimeout holder for Opera and Image DoubleClick event..
-        * @type Object
-        */
-        operaEvent: null,
-        /**
-        * @property currentFont
-        * @description A reference to the last font selected from the Toolbar
-        * @type HTMLElement
-        */
-        currentFont: null,
-        /**
-        * @property currentElement
-        * @description A reference to the current working element in the editor
-        * @type Array
-        */
-        currentElement: null,
-        /**
-        * @property dompath
-        * @description A reference to the dompath container for writing the current working dom path to.
-        * @type HTMLElement
-        */
-        dompath: null,
-        /**
-        * @property beforeElement
-        * @description A reference to the H2 placed before the editor for Accessibilty.
-        * @type HTMLElement
-        */
-        beforeElement: null,
-        /**
-        * @property afterElement
-        * @description A reference to the H2 placed after the editor for Accessibilty.
-        * @type HTMLElement
-        */
-        afterElement: null,
-        /**
-        * @property invalidHTML
-        * @description Contains a list of HTML elements that are invalid inside the editor. They will be removed when they are found. If you set the value of a key to "{ keepContents: true }", then the element will be replaced with a yui-non span to be filtered out when cleanHTML is called. The only tag that is ignored here is the span tag as it will force the Editor into a loop and freeze the browser. However.. all of these tags will be removed in the cleanHTML routine.
-        * @type Object
-        */
-        invalidHTML: {
-            form: true,
-            input: true,
-            button: true,
-            select: true,
-            link: true,
-            html: true,
-            body: true,
-            iframe: true,
-            script: true,
-            style: true,
-            textarea: true
-        },
-        /**
-        * @property toolbar
-        * @description Local property containing the <a href="YAHOO.widget.Toolbar.html">YAHOO.widget.Toolbar</a> instance
-        * @type <a href="YAHOO.widget.Toolbar.html">YAHOO.widget.Toolbar</a>
-        */
-        toolbar: null,
-        /**
-        * @private
-        * @property _contentTimer
-        * @description setTimeout holder for documentReady check
-        */
-        _contentTimer: null,
-        /**
-        * @private
-        * @property _contentTimerCounter
-        * @description Counter to check the number of times the body is polled for before giving up
-        * @type Number
-        */
-        _contentTimerCounter: 0,
-        /**
-        * @private
-        * @property _disabled
-        * @description The Toolbar items that should be disabled if there is no selection present in the editor.
-        * @type Array
-        */
-        _disabled: [ 'createlink', 'fontname', 'fontsize', 'forecolor', 'backcolor' ],
-        /**
-        * @private
-        * @property _alwaysDisabled
-        * @description The Toolbar items that should ALWAYS be disabled event if there is a selection present in the editor.
-        * @type Object
-        */
-        _alwaysDisabled: { undo: true, redo: true },
-        /**
-        * @private
-        * @property _alwaysEnabled
-        * @description The Toolbar items that should ALWAYS be enabled event if there isn't a selection present in the editor.
-        * @type Object
-        */
-        _alwaysEnabled: { },
-        /**
-        * @private
-        * @property _semantic
-        * @description The Toolbar commands that we should attempt to make tags out of instead of using styles.
-        * @type Object
-        */
-        _semantic: { 'bold': true, 'italic' : true, 'underline' : true },
-        /**
-        * @private
-        * @property _tag2cmd
-        * @description A tag map of HTML tags to convert to the different types of commands so we can select the proper toolbar button.
-        * @type Object
-        */
-        _tag2cmd: {
-            'b': 'bold',
-            'strong': 'bold',
-            'i': 'italic',
-            'em': 'italic',
-            'u': 'underline',
-            'sup': 'superscript',
-            'sub': 'subscript',
-            'img': 'insertimage',
-            'a' : 'createlink',
-            'ul' : 'insertunorderedlist',
-            'ol' : 'insertorderedlist'
-        },
-
-        /**
-        * @private _createIframe
-        * @description Creates the DOM and YUI Element for the iFrame editor area.
-        * @param {String} id The string ID to prefix the iframe with
-        * @return {Object} iFrame object
-        */
-        _createIframe: function() {
-            var ifrmDom = document.createElement('iframe');
-            ifrmDom.id = this.get('id') + '_editor';
-            var config = {
-                border: '0',
-                frameBorder: '0',
-                marginWidth: '0',
-                marginHeight: '0',
-                leftMargin: '0',
-                topMargin: '0',
-                allowTransparency: 'true',
-                width: '100%'
-            };
-            if (this.get('autoHeight')) {
-                config.scrolling = 'no';
-            }
-            for (var i in config) {
-                if (Lang.hasOwnProperty(config, i)) {
-                    ifrmDom.setAttribute(i, config[i]);
-                }
-            }
-            var isrc = 'javascript:;';
-            if (this.browser.ie) {
-                //isrc = 'about:blank';
-                //TODO - Check this, I have changed it before..
-                isrc = 'javascript:false;';
-            }
-            ifrmDom.setAttribute('src', isrc);
-            var ifrm = new YAHOO.util.Element(ifrmDom);
-            ifrm.setStyle('visibility', 'hidden');
-            return ifrm;
-        },
-        /**
-        * @private _isElement
-        * @description Checks to see if an Element reference is a valid one and has a certain tag type
-        * @param {HTMLElement} el The element to check
-        * @param {String} tag The tag that the element needs to be
-        * @return {Boolean}
-        */
-        _isElement: function(el, tag) {
-            if (el && el.tagName && (el.tagName.toLowerCase() == tag)) {
-                return true;
-            }
-            if (el && el.getAttribute && (el.getAttribute('tag') == tag)) {
-                return true;
-            }
-            return false;
-        },
-        /**
-        * @private _hasParent
-        * @description Checks to see if an Element reference or one of it's parents is a valid one and has a certain tag type
-        * @param {HTMLElement} el The element to check
-        * @param {String} tag The tag that the element needs to be
-        * @return HTMLElement
-        */
-        _hasParent: function(el, tag) {
-            if (!el || !el.parentNode) {
-                return false;
-            }
-            
-            while (el.parentNode) {
-                if (this._isElement(el, tag)) {
-                    return el;
-                }
-                if (el.parentNode) {
-                    el = el.parentNode;
-                } else {
-                    return false;
-                }
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _getDoc
-        * @description Get the Document of the IFRAME
-        * @return {Object}
-        */
-        _getDoc: function() {
-            var value = false;
-            if (this.get) {
-                if (this.get('iframe')) {
-                    if (this.get('iframe').get) {
-                        if (this.get('iframe').get('element')) {
-                            try {
-                                if (this.get('iframe').get('element').contentWindow) {
-                                    if (this.get('iframe').get('element').contentWindow.document) {
-                                        value = this.get('iframe').get('element').contentWindow.document;
-                                        return value;
-                                    }
-                                }
-                            } catch (e) {}
-                        }
-                    }
-                }
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _getWindow
-        * @description Get the Window of the IFRAME
-        * @return {Object}
-        */
-        _getWindow: function() {
-            return this.get('iframe').get('element').contentWindow;
-        },
-        /**
-        * @private
-        * @method _focusWindow
-        * @description Attempt to set the focus of the iframes window.
-        * @param {Boolean} onLoad Safari needs some special care to set the cursor in the iframe
-        */
-        _focusWindow: function(onLoad) {
-            if (this.browser.webkit) {
-                if (onLoad) {
-                    /**
-                    * @knownissue Safari Cursor Position
-                    * @browser Safari 2.x
-                    * @description Can't get Safari to place the cursor at the beginning of the text..
-                    * This workaround at least set's the toolbar into the proper state.
-                    */
-                    this._getSelection().setBaseAndExtent(this._getDoc().body.firstChild, 0, this._getDoc().body.firstChild, 1);
-                    if (this.browser.webkit3) {
-                        this._getSelection().collapseToStart();
-                    } else {
-                        this._getSelection().collapse(false);
-                    }
-                } else {
-                    this._getSelection().setBaseAndExtent(this._getDoc().body, 1, this._getDoc().body, 1);
-                    if (this.browser.webkit3) {
-                        this._getSelection().collapseToStart();
-                    } else {
-                        this._getSelection().collapse(false);
-                    }
-                }
-                this._getWindow().focus();
-            } else {
-                this._getWindow().focus();
-            }
-        },
-        /**
-        * @private
-        * @method _hasSelection
-        * @description Determines if there is a selection in the editor document.
-        * @return {Boolean}
-        */
-        _hasSelection: function() {
-            var sel = this._getSelection();
-            var range = this._getRange();
-            var hasSel = false;
-
-            if (!sel || !range) {
-                return hasSel;
-            }
-
-            //Internet Explorer
-            if (this.browser.ie || this.browser.opera) {
-                if (range.text) {
-                    hasSel = true;
-                }
-                if (range.html) {
-                    hasSel = true;
-                }
-            } else {
-                if (this.browser.webkit) {
-                    if (sel+'' !== '') {
-                        hasSel = true;
-                    }
-                } else {
-                    if (sel && (sel.toString() !== '') && (sel !== undefined)) {
-                        hasSel = true;
-                    }
-                }
-            }
-            return hasSel;
-        },
-        /**
-        * @private
-        * @method _getSelection
-        * @description Handles the different selection objects across the A-Grade list.
-        * @return {Object} Selection Object
-        */
-        _getSelection: function() {
-            var _sel = null;
-            if (this._getDoc() && this._getWindow()) {
-                if (this._getDoc().selection) {
-                    _sel = this._getDoc().selection;
-                } else {
-                    _sel = this._getWindow().getSelection();
-                }
-                //Handle Safari's lack of Selection Object
-                if (this.browser.webkit) {
-                    if (_sel.baseNode) {
-                            this._selection = {};
-                            this._selection.baseNode = _sel.baseNode;
-                            this._selection.baseOffset = _sel.baseOffset;
-                            this._selection.extentNode = _sel.extentNode;
-                            this._selection.extentOffset = _sel.extentOffset;
-                    } else if (this._selection !== null) {
-                        _sel = this._getWindow().getSelection();
-                        _sel.setBaseAndExtent(
-                            this._selection.baseNode,
-                            this._selection.baseOffset,
-                            this._selection.extentNode,
-                            this._selection.extentOffset);
-                        this._selection = null;
-                    }
-                }
-            }
-            return _sel;
-        },
-        /**
-        * @private
-        * @method _selectNode
-        * @description Places the highlight around a given node
-        * @param {HTMLElement} node The node to select
-        */
-        _selectNode: function(node, collapse) {
-            if (!node) {
-                return false;
-            }
-            var sel = this._getSelection(),
-                range = null;
-
-            if (this.browser.ie) {
-                try { //IE freaks out here sometimes..
-                    range = this._getDoc().body.createTextRange();
-                    range.moveToElementText(node);
-                    range.select();
-                } catch (e) {
-                }
-            } else if (this.browser.webkit) {
-                if (collapse) {
-				    sel.setBaseAndExtent(node, 1, node, node.innerText.length);
-                } else {
-				    sel.setBaseAndExtent(node, 0, node, node.innerText.length);
-                }
-            } else if (this.browser.opera) {
-                sel = this._getWindow().getSelection();
-                range = this._getDoc().createRange();
-                range.selectNode(node);
-                sel.removeAllRanges();
-                sel.addRange(range);
-            } else {
-                range = this._getDoc().createRange();
-                range.selectNodeContents(node);
-                sel.removeAllRanges();
-                sel.addRange(range);
-            }
-            //TODO - Check Performance
-            this.nodeChange();
-        },
-        /**
-        * @private
-        * @method _getRange
-        * @description Handles the different range objects across the A-Grade list.
-        * @return {Object} Range Object
-        */
-        _getRange: function() {
-            var sel = this._getSelection();
-
-            if (sel === null) {
-                return null;
-            }
-
-            if (this.browser.webkit && !sel.getRangeAt) {
-                var _range = this._getDoc().createRange();
-                try {
-                    _range.setStart(sel.anchorNode, sel.anchorOffset);
-                    _range.setEnd(sel.focusNode, sel.focusOffset);
-                } catch (e) {
-                    _range = this._getWindow().getSelection()+'';
-                }
-                return _range;
-            }
-
-            if (this.browser.ie || this.browser.opera) {
-                try {
-                    return sel.createRange();
-                } catch (e2) {
-                    return null;
-                }
-            }
-
-            if (sel.rangeCount > 0) {
-                return sel.getRangeAt(0);
-            }
-            return null;
-        },
-        /**
-        * @private
-        * @method _setDesignMode
-        * @description Sets the designMode of the iFrame document.
-        * @param {String} state This should be either on or off
-        */
-        _setDesignMode: function(state) {
-            try {
-                var set = true;
-                //SourceForge Bug #1807057
-                if (this.browser.ie && (state.toLowerCase() == 'off')) {
-                    set = false;
-                }
-                if (set) {
-                    this._getDoc().designMode = state;
-                }
-            } catch(e) { }
-        },
-        /**
-        * @private
-        * @method _toggleDesignMode
-        * @description Toggles the designMode of the iFrame document on and off.
-        * @return {String} The state that it was set to.
-        */
-        _toggleDesignMode: function() {
-            var _dMode = this._getDoc().designMode.toLowerCase(),
-                _state = 'on';
-            if (_dMode == 'on') {
-                _state = 'off';
-            }
-            this._setDesignMode(_state);
-            return _state;
-        },
-        /**
-        * @private
-        * @method _initEditorEvents
-        * @description This method sets up the listeners on the Editors document.
-        */
-        _initEditorEvents: function() {
-            //Setup Listeners on iFrame
-            var doc = this._getDoc();
-            Event.on(doc, 'mouseup', this._handleMouseUp, this, true);
-            Event.on(doc, 'mousedown', this._handleMouseDown, this, true);
-            Event.on(doc, 'click', this._handleClick, this, true);
-            Event.on(doc, 'dblclick', this._handleDoubleClick, this, true);
-            Event.on(doc, 'keypress', this._handleKeyPress, this, true);
-            Event.on(doc, 'keyup', this._handleKeyUp, this, true);
-            Event.on(doc, 'keydown', this._handleKeyDown, this, true);
-        },
-        /**
-        * @private
-        * @method _removeEditorEvents
-        * @description This method removes the listeners on the Editors document (for disabling).
-        */
-        _removeEditorEvents: function() {
-            //Remove Listeners on iFrame
-            var doc = this._getDoc();
-            Event.removeListener(doc, 'mouseup', this._handleMouseUp, this, true);
-            Event.removeListener(doc, 'mousedown', this._handleMouseDown, this, true);
-            Event.removeListener(doc, 'click', this._handleClick, this, true);
-            Event.removeListener(doc, 'dblclick', this._handleDoubleClick, this, true);
-            Event.removeListener(doc, 'keypress', this._handleKeyPress, this, true);
-            Event.removeListener(doc, 'keyup', this._handleKeyUp, this, true);
-            Event.removeListener(doc, 'keydown', this._handleKeyDown, this, true);
-        },
-        /**
-        * @private
-        * @method _initEditor
-        * @description This method is fired from _checkLoaded when the document is ready. It turns on designMode and set's up the listeners.
-        */
-        _initEditor: function() {
-            if (this.browser.ie) {
-                this._getDoc().body.style.margin = '0';
-            }
-            if (!this.get('disabled')) {
-                if (this._getDoc().designMode.toLowerCase() != 'on') {
-                    this._setDesignMode('on');
-                    this._contentTimerCounter = 0;
-                }
-            }
-            if (!this._getDoc().body) {
-                this._contentTimerCounter = 0;
-                this._checkLoaded();
-                return false;
-            }
-            
-            this.toolbar.on('buttonClick', this._handleToolbarClick, this, true);
-            if (!this.get('disabled')) {
-                this._initEditorEvents();
-                this.toolbar.set('disabled', false);
-            }
-
-            this.fireEvent('editorContentLoaded', { type: 'editorLoaded', target: this });
-            if (this.get('dompath')) {
-                var self = this;
-                setTimeout(function() {
-                    self._writeDomPath.call(self);
-                    self._setupResize.call(self);
-                }, 150);
-            }
-            var br = [];
-            for (var i in this.browser) {
-                if (this.browser[i]) {
-                    br.push(i);
-                }
-            }
-            if (this.get('ptags')) {
-                br.push('ptags');
-            }
-            Dom.addClass(this._getDoc().body, br.join(' '));
-            this.nodeChange(true);
-        },
-        /**
-        * @private
-        * @method _checkLoaded
-        * @description Called from a setTimeout loop to check if the iframes body.onload event has fired, then it will init the editor.
-        */
-        _checkLoaded: function() {
-            this._contentTimerCounter++;
-            if (this._contentTimer) {
-                clearTimeout(this._contentTimer);
-            }
-            if (this._contentTimerCounter > 500) {
-                return false;
-            }
-            var init = false;
-            try {
-                if (this._getDoc() && this._getDoc().body) {
-                    if (this.browser.ie) {
-                        if (this._getDoc().body.readyState == 'complete') {
-                            init = true;
-                        }
-                    } else {
-                        if (this._getDoc().body._rteLoaded === true) {
-                            init = true;
-                        }
-                    }
-                }
-            } catch (e) {
-                init = false;
-            }
-
-            if (init === true) {
-                //The onload event has fired, clean up after ourselves and fire the _initEditor method
-                this._initEditor();
-            } else {
-                var self = this;
-                this._contentTimer = setTimeout(function() {
-                    self._checkLoaded.call(self);
-                }, 20);
-            }
-        },
-        /**
-        * @private
-        * @method _setInitialContent
-        * @description This method will open the iframes content document and write the textareas value into it, then start the body.onload checking.
-        */
-        _setInitialContent: function() {
-
-            var value = ((this._textarea) ? this.get('element').value : this.get('element').innerHTML),
-                doc = null;
-
-            var html = Lang.substitute(this.get('html'), {
-                TITLE: this.STR_TITLE,
-                CONTENT: this._cleanIncomingHTML(value),
-                CSS: this.get('css'),
-                HIDDEN_CSS: ((this.get('hiddencss')) ? this.get('hiddencss') : '/* No Hidden CSS */'),
-                EXTRA_CSS: ((this.get('extracss')) ? this.get('extracss') : '/* No Extra CSS */')
-            }),
-            check = true;
-            if (document.compatMode != 'BackCompat') {
-                html = this._docType + "\n" + html;
-            } else {
-            }
-
-            if (this.browser.ie || this.browser.webkit || this.browser.opera || (navigator.userAgent.indexOf('Firefox/1.5') != -1)) {
-                //Firefox 1.5 doesn't like setting designMode on an document created with a data url
-                try {
-                    //Adobe AIR Code
-                    if (this.browser.air) {
-                        doc = this._getDoc().implementation.createHTMLDocument();
-                        var origDoc = this._getDoc();
-                        origDoc.open();
-                        origDoc.close();
-                        doc.open();
-                        doc.write(html);
-                        doc.close();
-                        var node = origDoc.importNode(doc.getElementsByTagName("html")[0], true);
-                        origDoc.replaceChild(node, origDoc.getElementsByTagName("html")[0]);
-                        origDoc.body._rteLoaded = true;
-                    } else {
-                        doc = this._getDoc();
-                        doc.open();
-                        doc.write(html);
-                        doc.close();
-                    }
-                } catch (e) {
-                    //Safari will only be here if we are hidden
-                    check = false;
-                }
-            } else {
-                //This keeps Firefox 2 from writing the iframe to history preserving the back buttons functionality
-                this.get('iframe').get('element').src = 'data:text/html;charset=utf-8,' + encodeURIComponent(html);
-            }
-            this.get('iframe').setStyle('visibility', '');
-            if (check) {
-                this._checkLoaded();
-            }            
-        },
-        /**
-        * @private
-        * @method _setMarkupType
-        * @param {String} action The action to take. Possible values are: css, default or semantic
-        * @description This method will turn on/off the useCSS execCommand.
-        */
-        _setMarkupType: function(action) {
-            switch (this.get('markup')) {
-                case 'css':
-                    this._setEditorStyle(true);
-                    break;
-                case 'default':
-                    this._setEditorStyle(false);
-                    break;
-                case 'semantic':
-                case 'xhtml':
-                    if (this._semantic[action]) {
-                        this._setEditorStyle(false);
-                    } else {
-                        this._setEditorStyle(true);
-                    }
-                    break;
-            }
-        },
-        /**
-        * Set the editor to use CSS instead of HTML
-        * @param {Booleen} stat True/False
-        */
-        _setEditorStyle: function(stat) {
-            try {
-                this._getDoc().execCommand('useCSS', false, !stat);
-            } catch (ex) {
-            }
-        },
-        /**
-        * @private
-        * @method _getSelectedElement
-        * @description This method will attempt to locate the element that was last interacted with, either via selection, location or event.
-        * @return {HTMLElement} The currently selected element.
-        */
-        _getSelectedElement: function() {
-            var doc = this._getDoc(),
-                range = null,
-                sel = null,
-                elm = null,
-                check = true;
-
-            if (this.browser.ie) {
-                this.currentEvent = this._getWindow().event; //Event utility assumes window.event, so we need to reset it to this._getWindow().event;
-                range = this._getRange();
-                if (range) {
-                    elm = range.item ? range.item(0) : range.parentElement();
-                    if (this._hasSelection()) {
-                        //TODO
-                        //WTF.. Why can't I get an element reference here?!??!
-                    }
-                    if (elm === doc.body) {
-                        elm = null;
-                    }
-                }
-                if ((this.currentEvent !== null) && (this.currentEvent.keyCode === 0)) {
-                    elm = Event.getTarget(this.currentEvent);
-                }
-            } else {
-                sel = this._getSelection();
-                range = this._getRange();
-
-                if (!sel || !range) {
-                    return null;
-                }
-                //TODO
-                if (!this._hasSelection() && this.browser.webkit3) {
-                    //check = false;
-                }
-                if (this.browser.gecko) {
-                    //Added in 2.6.0
-                    if (range.startContainer) {
-                        check = false;
-                        if (range.startContainer.nodeType === 3) {
-                            elm = range.startContainer.parentNode;
-                        } else if (range.startContainer.nodeType === 1) {
-                            elm = range.startContainer;
-                        } else {
-                            check = true;
-                        }
-                        if (!check) {
-                            this.currentEvent = null;
-                        }
-                    }
-                }
-                if (check) {
-                    if (sel.anchorNode && (sel.anchorNode.nodeType == 3)) {
-                        if (sel.anchorNode.parentNode) { //next check parentNode
-                            elm = sel.anchorNode.parentNode;
-                        }
-                        if (sel.anchorNode.nextSibling != sel.focusNode.nextSibling) {
-                            elm = sel.anchorNode.nextSibling;
-                        }
-                    }
-                    if (this._isElement(elm, 'br')) {
-                        elm = null;
-                    }
-                    if (!elm) {
-                        elm = range.commonAncestorContainer;
-                        if (!range.collapsed) {
-                            if (range.startContainer == range.endContainer) {
-                                if (range.startOffset - range.endOffset < 2) {
-                                    if (range.startContainer.hasChildNodes()) {
-                                        elm = range.startContainer.childNodes[range.startOffset];
-                                    }
-                                }
-                            }
-                        }
-                    }
-               }
-            }
-            
-            if (this.currentEvent !== null) {
-                try {
-                    switch (this.currentEvent.type) {
-                        case 'click':
-                        case 'mousedown':
-                        case 'mouseup':
-                            if (this.browser.webkit) {
-                                elm = Event.getTarget(this.currentEvent);
-                            }
-                            break;
-                        default:
-                            //Do nothing
-                            break;
-                    }
-                } catch (e) {
-                }
-            } else if ((this.currentElement && this.currentElement[0]) && (!this.browser.ie)) {
-                //TODO is this still needed?
-                //elm = this.currentElement[0];
-            }
-
-
-            if (this.browser.opera || this.browser.webkit) {
-                if (this.currentEvent && !elm) {
-                    elm = YAHOO.util.Event.getTarget(this.currentEvent);
-                }
-            }
-            if (!elm || !elm.tagName) {
-                elm = doc.body;
-            }
-            if (this._isElement(elm, 'html')) {
-                //Safari sometimes gives us the HTML node back..
-                elm = doc.body;
-            }
-            if (this._isElement(elm, 'body')) {
-                //make sure that body means this body not the parent..
-                elm = doc.body;
-            }
-            if (elm && !elm.parentNode) { //Not in document
-                elm = doc.body;
-            }
-            if (elm === undefined) {
-                elm = null;
-            }
-            return elm;
-        },
-        /**
-        * @private
-        * @method _getDomPath
-        * @description This method will attempt to build the DOM path from the currently selected element.
-        * @param HTMLElement el The element to start with, if not provided _getSelectedElement is used
-        * @return {Array} An array of node references that will create the DOM Path.
-        */
-        _getDomPath: function(el) {
-            if (!el) {
-			    el = this._getSelectedElement();
-            }
-			var domPath = [];
-            while (el !== null) {
-                if (el.ownerDocument != this._getDoc()) {
-                    el = null;
-                    break;
-                }
-                //Check to see if we get el.nodeName and nodeType
-                if (el.nodeName && el.nodeType && (el.nodeType == 1)) {
-                    domPath[domPath.length] = el;
-                }
-
-                if (this._isElement(el, 'body')) {
-                    break;
-                }
-
-                el = el.parentNode;
-            }
-            if (domPath.length === 0) {
-                if (this._getDoc() && this._getDoc().body) {
-                    domPath[0] = this._getDoc().body;
-                }
-            }
-            return domPath.reverse();
-        },
-        /**
-        * @private
-        * @method _writeDomPath
-        * @description Write the current DOM path out to the dompath container below the editor.
-        */
-        _writeDomPath: function() { 
-            var path = this._getDomPath(),
-                pathArr = [],
-                classPath = '',
-                pathStr = '';
-            for (var i = 0; i < path.length; i++) {
-                var tag = path[i].tagName.toLowerCase();
-                if ((tag == 'ol') && (path[i].type)) {
-                    tag += ':' + path[i].type;
-                }
-                if (Dom.hasClass(path[i], 'yui-tag')) {
-                    tag = path[i].getAttribute('tag');
-                }
-                if ((this.get('markup') == 'semantic') || (this.get('markup') == 'xhtml')) {
-                    switch (tag) {
-                        case 'b': tag = 'strong'; break;
-                        case 'i': tag = 'em'; break;
-                    }
-                }
-                if (!Dom.hasClass(path[i], 'yui-non')) {
-                    if (Dom.hasClass(path[i], 'yui-tag')) {
-                        pathStr = tag;
-                    } else {
-                        classPath = ((path[i].className !== '') ? '.' + path[i].className.replace(/ /g, '.') : '');
-                        if ((classPath.indexOf('yui') != -1) || (classPath.toLowerCase().indexOf('apple-style-span') != -1)) {
-                            classPath = '';
-                        }
-                        pathStr = tag + ((path[i].id) ? '#' + path[i].id : '') + classPath;
-                    }
-                    switch (tag) {
-                        case 'body':
-                            pathStr = 'body';
-                            break;
-                        case 'a':
-                            if (path[i].getAttribute('href', 2)) {
-                                pathStr += ':' + path[i].getAttribute('href', 2).replace('mailto:', '').replace('http:/'+'/', '').replace('https:/'+'/', ''); //May need to add others here ftp
-                            }
-                            break;
-                        case 'img':
-                            var h = path[i].height;
-                            var w = path[i].width;
-                            if (path[i].style.height) {
-                                h = parseInt(path[i].style.height, 10);
-                            }
-                            if (path[i].style.width) {
-                                w = parseInt(path[i].style.width, 10);
-                            }
-                            pathStr += '(' + w + 'x' + h + ')';
-                        break;
-                    }
-
-                    if (pathStr.length > 10) {
-                        pathStr = '<span title="' + pathStr + '">' + pathStr.substring(0, 10) + '...' + '</span>';
-                    } else {
-                        pathStr = '<span title="' + pathStr + '">' + pathStr + '</span>';
-                    }
-                    pathArr[pathArr.length] = pathStr;
-                }
-            }
-            var str = pathArr.join(' ' + this.SEP_DOMPATH + ' ');
-            //Prevent flickering
-            if (this.dompath.innerHTML != str) {
-                this.dompath.innerHTML = str;
-            }
-        },
-        /**
-        * @private
-        * @method _fixNodes
-        * @description Fix href and imgs as well as remove invalid HTML.
-        */
-        _fixNodes: function() {
-            var doc = this._getDoc(),
-                els = [];
-
-            for (var v in this.invalidHTML) {
-                if (YAHOO.lang.hasOwnProperty(this.invalidHTML, v)) {
-                    if (v.toLowerCase() != 'span') {
-                        var tags = doc.body.getElementsByTagName(v);
-                        if (tags.length) {
-                            for (var i = 0; i < tags.length; i++) {
-                                els.push(tags[i]);
-                            }
-                        }
-                    }
-                }
-            }
-            for (var h = 0; h < els.length; h++) {
-                if (els[h].parentNode) {
-                    if (Lang.isObject(this.invalidHTML[els[h].tagName.toLowerCase()]) && this.invalidHTML[els[h].tagName.toLowerCase()].keepContents) {
-                        this._swapEl(els[h], 'span', function(el) {
-                            el.className = 'yui-non';
-                        });
-                    } else {
-                        els[h].parentNode.removeChild(els[h]);
-                    }
-                }
-            }
-            var imgs = this._getDoc().getElementsByTagName('img');
-            Dom.addClass(imgs, 'yui-img');   
-        },
-        /**
-        * @private
-        * @method _isNonEditable
-        * @param Event ev The Dom event being checked
-        * @description Method is called at the beginning of all event handlers to check if this element or a parent element has the class yui-noedit (this.CLASS_NOEDIT) applied.
-        * If it does, then this method will stop the event and return true. The event handlers will then return false and stop the nodeChange from occuring. This method will also
-        * disable and enable the Editor's toolbar based on the noedit state.
-        * @return Boolean
-        */
-        _isNonEditable: function(ev) {
-            if (this.get('allowNoEdit')) {
-                var el = Event.getTarget(ev);
-                if (this._isElement(el, 'html')) {
-                    el = null;
-                }
-                var path = this._getDomPath(el);
-                for (var i = (path.length - 1); i > -1; i--) {
-                    if (Dom.hasClass(path[i], this.CLASS_NOEDIT)) {
-                        //if (this.toolbar.get('disabled') === false) {
-                        //    this.toolbar.set('disabled', true);
-                        //}
-                        try {
-                             this._getDoc().execCommand('enableObjectResizing', false, 'false');
-                        } catch (e) {}
-                        this.nodeChange();
-                        Event.stopEvent(ev);
-                        return true;
-                    }
-                }
-                //if (this.toolbar.get('disabled') === true) {
-                    //Should only happen once..
-                    //this.toolbar.set('disabled', false);
-                    try {
-                         this._getDoc().execCommand('enableObjectResizing', false, 'true');
-                    } catch (e2) {}
-                //}
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _setCurrentEvent
-        * @param {Event} ev The event to cache
-        * @description Sets the current event property
-        */
-        _setCurrentEvent: function(ev) {
-            this.currentEvent = ev;
-        },
-        /**
-        * @private
-        * @method _handleClick
-        * @param {Event} ev The event we are working on.
-        * @description Handles all click events inside the iFrame document.
-        */
-        _handleClick: function(ev) {
-            var ret = this.fireEvent('beforeEditorClick', { type: 'beforeEditorClick', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this.browser.webkit) {
-                var tar =Event.getTarget(ev);
-                if (this._isElement(tar, 'a') || this._isElement(tar.parentNode, 'a')) {
-                    Event.stopEvent(ev);
-                    this.nodeChange();
-                }
-            } else {
-                this.nodeChange();
-            }
-            this.fireEvent('editorClick', { type: 'editorClick', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleMouseUp
-        * @param {Event} ev The event we are working on.
-        * @description Handles all mouseup events inside the iFrame document.
-        */
-        _handleMouseUp: function(ev) {
-            var ret = this.fireEvent('beforeEditorMouseUp', { type: 'beforeEditorMouseUp', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            //Don't set current event for mouseup.
-            //It get's fired after a menu is closed and gives up a bogus event to work with
-            //this._setCurrentEvent(ev);
-            var self = this;
-            if (this.browser.opera) {
-                /**
-                * @knownissue Opera appears to stop the MouseDown, Click and DoubleClick events on an image inside of a document with designMode on..
-                * @browser Opera
-                * @description This work around traps the MouseUp event and sets a timer to check if another MouseUp event fires in so many seconds. If another event is fired, they we internally fire the DoubleClick event.
-                */
-                var sel = Event.getTarget(ev);
-                if (this._isElement(sel, 'img')) {
-                    this.nodeChange();
-                    if (this.operaEvent) {
-                        clearTimeout(this.operaEvent);
-                        this.operaEvent = null;
-                        this._handleDoubleClick(ev);
-                    } else {
-                        this.operaEvent = window.setTimeout(function() {
-                            self.operaEvent = false;
-                        }, 700);
-                    }
-                }
-            }
-            //This will stop Safari from selecting the entire document if you select all the text in the editor
-            if (this.browser.webkit || this.browser.opera) {
-                if (this.browser.webkit) {
-                    Event.stopEvent(ev);
-                }
-            }
-            this.nodeChange();
-            this.fireEvent('editorMouseUp', { type: 'editorMouseUp', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleMouseDown
-        * @param {Event} ev The event we are working on.
-        * @description Handles all mousedown events inside the iFrame document.
-        */
-        _handleMouseDown: function(ev) {
-            var ret = this.fireEvent('beforeEditorMouseDown', { type: 'beforeEditorMouseDown', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            var sel = Event.getTarget(ev);
-            if (this.browser.webkit && this._hasSelection()) {
-                var _sel = this._getSelection();
-                if (!this.browser.webkit3) {
-                    _sel.collapse(true);
-                } else {
-                    _sel.collapseToStart();
-                }
-            }
-            if (this.browser.webkit && this._lastImage) {
-                Dom.removeClass(this._lastImage, 'selected');
-                this._lastImage = null;
-            }
-            if (this._isElement(sel, 'img') || this._isElement(sel, 'a')) {
-                if (this.browser.webkit) {
-                    Event.stopEvent(ev);
-                    if (this._isElement(sel, 'img')) {
-                        Dom.addClass(sel, 'selected');
-                        this._lastImage = sel;
-                    }
-                }
-                if (this.currentWindow) {
-                    this.closeWindow();
-                }
-                this.nodeChange();
-            }
-            this.fireEvent('editorMouseDown', { type: 'editorMouseDown', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleDoubleClick
-        * @param {Event} ev The event we are working on.
-        * @description Handles all doubleclick events inside the iFrame document.
-        */
-        _handleDoubleClick: function(ev) {
-            var ret = this.fireEvent('beforeEditorDoubleClick', { type: 'beforeEditorDoubleClick', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            var sel = Event.getTarget(ev);
-            if (this._isElement(sel, 'img')) {
-                this.currentElement[0] = sel;
-                this.toolbar.fireEvent('insertimageClick', { type: 'insertimageClick', target: this.toolbar });
-                this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-            } else if (this._hasParent(sel, 'a')) { //Handle elements inside an a
-                this.currentElement[0] = this._hasParent(sel, 'a');
-                this.toolbar.fireEvent('createlinkClick', { type: 'createlinkClick', target: this.toolbar });
-                this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-            }
-            this.nodeChange();
-            this.fireEvent('editorDoubleClick', { type: 'editorDoubleClick', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleKeyUp
-        * @param {Event} ev The event we are working on.
-        * @description Handles all keyup events inside the iFrame document.
-        */
-        _handleKeyUp: function(ev) {
-            var ret = this.fireEvent('beforeEditorKeyUp', { type: 'beforeEditorKeyUp', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            switch (ev.keyCode) {
-                case this._keyMap.SELECT_ALL.key:
-                    if (this._checkKey(this._keyMap.SELECT_ALL, ev)) {
-                        this.nodeChange();
-                    }
-                    break;
-                case 32: //Space Bar
-                case 35: //End
-                case 36: //Home
-                case 37: //Left Arrow
-                case 38: //Up Arrow
-                case 39: //Right Arrow
-                case 40: //Down Arrow
-                case 46: //Forward Delete
-                case 8: //Delete
-                case this._keyMap.CLOSE_WINDOW.key: //W key if window is open
-                    if ((ev.keyCode == this._keyMap.CLOSE_WINDOW.key) && this.currentWindow) {
-                        if (this._checkKey(this._keyMap.CLOSE_WINDOW, ev)) {
-                            this.closeWindow();
-                        }
-                    } else {
-                        if (!this.browser.ie) {
-                            if (this._nodeChangeTimer) {
-                                clearTimeout(this._nodeChangeTimer);
-                            }
-                            var self = this;
-                            this._nodeChangeTimer = setTimeout(function() {
-                                self._nodeChangeTimer = null;
-                                self.nodeChange.call(self);
-                            }, 100);
-                        } else {
-                            this.nodeChange();
-                        }
-                        this.editorDirty = true;
-                    }
-                    break;
-            }
-            this.fireEvent('editorKeyUp', { type: 'editorKeyUp', target: this, ev: ev });
-            this._storeUndo();
-        },
-        /**
-        * @private
-        * @method _handleKeyPress
-        * @param {Event} ev The event we are working on.
-        * @description Handles all keypress events inside the iFrame document.
-        */
-        _handleKeyPress: function(ev) {
-            var ret = this.fireEvent('beforeEditorKeyPress', { type: 'beforeEditorKeyPress', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-
-            if (this.get('allowNoEdit')) {
-                //if (ev && ev.keyCode && ((ev.keyCode == 46) || ev.keyCode == 63272)) {
-                if (ev && ev.keyCode && (ev.keyCode == 63272)) {
-                    //Forward delete key
-                    Event.stopEvent(ev);
-                }
-            }
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            if (this.browser.opera) {
-                if (ev.keyCode === 13) {
-                    var tar = this._getSelectedElement();
-                    if (!this._isElement(tar, 'li')) {
-                        this.execCommand('inserthtml', '<br>');
-                        Event.stopEvent(ev);
-                    }
-                }
-            }
-            if (this.browser.webkit) {
-                if (!this.browser.webkit3) {
-                    if (ev.keyCode && (ev.keyCode == 122) && (ev.metaKey)) {
-                        //This is CMD + z (for undo)
-                        if (this._hasParent(this._getSelectedElement(), 'li')) {
-                            Event.stopEvent(ev);
-                        }
-                    }
-                }
-                this._listFix(ev);
-            }
-            this.fireEvent('editorKeyPress', { type: 'editorKeyPress', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _handleKeyDown
-        * @param {Event} ev The event we are working on.
-        * @description Handles all keydown events inside the iFrame document.
-        */
-        _handleKeyDown: function(ev) {
-            var ret = this.fireEvent('beforeEditorKeyDown', { type: 'beforeEditorKeyDown', target: this, ev: ev });
-            if (ret === false) {
-                return false;
-            }
-            var tar = null, _range = null;
-            if (this._isNonEditable(ev)) {
-                return false;
-            }
-            this._setCurrentEvent(ev);
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            var doExec = false,
-                action = null,
-                exec = false;
-
-
-            switch (ev.keyCode) {
-                case this._keyMap.FOCUS_TOOLBAR.key:
-                    if (this._checkKey(this._keyMap.FOCUS_TOOLBAR, ev)) {
-                        var h = this.toolbar.getElementsByTagName('h2')[0];
-                        if (h && h.firstChild) {
-                            h.firstChild.focus();
-                        }
-                    } else if (this._checkKey(this._keyMap.FOCUS_AFTER, ev)) {
-                        //Focus After Element - Esc
-                        this.afterElement.focus();
-                    }
-                    Event.stopEvent(ev);
-                    doExec = false;
-                    break;
-                //case 76: //L
-                case this._keyMap.CREATE_LINK.key: //L
-                    if (this._hasSelection()) {
-                        if (this._checkKey(this._keyMap.CREATE_LINK, ev)) {
-                            var makeLink = true;
-                            if (this.get('limitCommands')) {
-                                if (!this.toolbar.getButtonByValue('createlink')) {
-                                    makeLink = false;
-                                }
-                            }
-                            if (makeLink) {
-                                this.execCommand('createlink', '');
-                                this.toolbar.fireEvent('createlinkClick', { type: 'createlinkClick', target: this.toolbar });
-                                this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-                                doExec = false;
-                            }
-                        }
-                    }
-                    break;
-                //case 90: //Z
-                case this._keyMap.UNDO.key:
-                case this._keyMap.REDO.key:
-                    if (this._checkKey(this._keyMap.REDO, ev)) {
-                        action = 'redo';
-                        doExec = true;
-                    } else if (this._checkKey(this._keyMap.UNDO, ev)) {
-                        action = 'undo';
-                        doExec = true;
-                    }
-                    break;
-                //case 66: //B
-                case this._keyMap.BOLD.key:
-                    if (this._checkKey(this._keyMap.BOLD, ev)) {
-                        action = 'bold';
-                        doExec = true;
-                    }
-                    break;
-                //case 73: //I
-                case this._keyMap.ITALIC.key:
-                    if (this._checkKey(this._keyMap.ITALIC, ev)) {
-                        action = 'italic';
-                        doExec = true;
-                    }
-                    break;
-                //case 85: //U
-                case this._keyMap.UNDERLINE.key:
-                    if (this._checkKey(this._keyMap.UNDERLINE, ev)) {
-                        action = 'underline';
-                        doExec = true;
-                    }
-                    break;
-                case 9:
-                    if (this.browser.ie) {
-                        //Insert a tab in Internet Explorer
-                        _range = this._getRange();
-                        tar = this._getSelectedElement();
-                        if (!this._isElement(tar, 'li')) {
-                            if (_range) {
-                                _range.pasteHTML('&nbsp;&nbsp;&nbsp;&nbsp;');
-                                _range.collapse(false);
-                                _range.select();
-                            }
-                            Event.stopEvent(ev);
-                        }
-                    }
-                    //Firefox 3 code
-                    if (this.browser.gecko > 1.8) {
-                        tar = this._getSelectedElement();
-                        if (this._isElement(tar, 'li')) {
-                            if (ev.shiftKey) {
-                                this._getDoc().execCommand('outdent', null, '');
-                            } else {
-                                this._getDoc().execCommand('indent', null, '');
-                            }
-                            
-                        } else if (!this._hasSelection()) {
-                            this.execCommand('inserthtml', '&nbsp;&nbsp;&nbsp;&nbsp;');
-                        }
-                        Event.stopEvent(ev);
-                    }
-                    break;
-                case 13:
-                    if (this.get('ptags') && !ev.shiftKey) {
-                        if (this.browser.gecko) {
-                            tar = this._getSelectedElement();
-                            if (!this._isElement(tar, 'li')) {
-                                doExec = true;
-                                action = 'insertparagraph';
-                                Event.stopEvent(ev);
-                            }
-                        }
-                        if (this.browser.webkit) {
-                            tar = this._getSelectedElement();
-                            if (!this._hasParent(tar, 'li')) {
-                                doExec = true;
-                                action = 'insertparagraph';
-                                Event.stopEvent(ev);
-                            }
-                        }
-                    } else {
-                        if (this.browser.ie) {
-                            //Insert a <br> instead of a <p></p> in Internet Explorer
-                            _range = this._getRange();
-                            tar = this._getSelectedElement();
-                            if (!this._isElement(tar, 'li')) {
-                                if (_range) {
-                                    _range.pasteHTML('<br>');
-                                    _range.collapse(false);
-                                    _range.select();
-                                }
-                                Event.stopEvent(ev);
-                            }
-                        }
-                    }
-                    break;
-            }
-            if (this.browser.ie) {
-                this._listFix(ev);
-            }
-            if (doExec && action) {
-                this.execCommand(action, null);
-                Event.stopEvent(ev);
-                this.nodeChange();
-            }
-            this.fireEvent('editorKeyDown', { type: 'editorKeyDown', target: this, ev: ev });
-        },
-        /**
-        * @private
-        * @method _listFix
-        * @param {Event} ev The event we are working on.
-        * @description Handles the Enter key, Tab Key and Shift + Tab keys for List Items.
-        */
-        _listFix: function(ev) {
-            var testLi = null, par = null, preContent = false, range = null;
-            //Enter Key
-            if (this.browser.webkit) {
-                if (ev.keyCode && (ev.keyCode == 13)) {
-                    if (this._hasParent(this._getSelectedElement(), 'li')) {
-                        var tar = this._hasParent(this._getSelectedElement(), 'li');
-                        if (tar.previousSibling) {
-                            if (tar.firstChild && (tar.firstChild.length == 1)) {
-                                this._selectNode(tar);
-                            }
-                        }
-                    }
-                }
-            }
-            //Shift + Tab Key
-            if (ev.keyCode && ((!this.browser.webkit3 && (ev.keyCode == 25)) || ((this.browser.webkit3 || !this.browser.webkit) && ((ev.keyCode == 9) && ev.shiftKey)))) {
-                testLi = this._getSelectedElement();
-                if (this._hasParent(testLi, 'li')) {
-                    testLi = this._hasParent(testLi, 'li');
-                    if (this._hasParent(testLi, 'ul') || this._hasParent(testLi, 'ol')) {
-                        par = this._hasParent(testLi, 'ul');
-                        if (!par) {
-                            par = this._hasParent(testLi, 'ol');
-                        }
-                        if (this._isElement(par.previousSibling, 'li')) {
-                            par.removeChild(testLi);
-                            par.parentNode.insertBefore(testLi, par.nextSibling);
-                            if (this.browser.ie) {
-                                range = this._getDoc().body.createTextRange();
-                                range.moveToElementText(testLi);
-                                range.collapse(false);
-                                range.select();
-                            }
-                            if (this.browser.webkit) {
-                                this._selectNode(testLi.firstChild);
-                            }
-                            Event.stopEvent(ev);
-                        }
-                    }
-                }
-            }
-            //Tab Key
-            if (ev.keyCode && ((ev.keyCode == 9) && (!ev.shiftKey))) {
-                var preLi = this._getSelectedElement();
-                if (this._hasParent(preLi, 'li')) {
-                    preContent = this._hasParent(preLi, 'li').innerHTML;
-                }
-                if (this.browser.webkit) {
-                    this._getDoc().execCommand('inserttext', false, '\t');
-                }
-                testLi = this._getSelectedElement();
-                if (this._hasParent(testLi, 'li')) {
-                    par = this._hasParent(testLi, 'li');
-                    var newUl = this._getDoc().createElement(par.parentNode.tagName.toLowerCase());
-                    if (this.browser.webkit) {
-                        var span = Dom.getElementsByClassName('Apple-tab-span', 'span', par);
-                        //Remove the span element that Safari puts in
-                        if (span[0]) {
-                            par.removeChild(span[0]);
-                            par.innerHTML = Lang.trim(par.innerHTML);
-                            //Put the HTML from the LI into this new LI
-                            if (preContent) {
-                                par.innerHTML = '<span class="yui-non">' + preContent + '</span>&nbsp;';
-                            } else {
-                                par.innerHTML = '<span class="yui-non">&nbsp;</span>&nbsp;';
-                            }
-                        }
-                    } else {
-                        if (preContent) {
-                            par.innerHTML = preContent + '&nbsp;';
-                        } else {
-                            par.innerHTML = '&nbsp;';
-                        }
-                    }
-
-                    par.parentNode.replaceChild(newUl, par);
-                    newUl.appendChild(par);
-                    if (this.browser.webkit) {
-                        this._getSelection().setBaseAndExtent(par.firstChild, 1, par.firstChild, par.firstChild.innerText.length);
-                        if (!this.browser.webkit3) {
-                            par.parentNode.parentNode.style.display = 'list-item';
-                            setTimeout(function() {
-                                par.parentNode.parentNode.style.display = 'block';
-                            }, 1);
-                        }
-                    } else if (this.browser.ie) {
-                        range = this._getDoc().body.createTextRange();
-                        range.moveToElementText(par);
-                        range.collapse(false);
-                        range.select();
-                    } else {
-                        this._selectNode(par);
-                    }
-                    Event.stopEvent(ev);
-                }
-                if (this.browser.webkit) {
-                    Event.stopEvent(ev);
-                }
-                this.nodeChange();
-            }
-        },
-        /**
-        * @method nodeChange
-        * @param {Boolean} force Optional paramenter to skip the threshold counter
-        * @description Handles setting up the toolbar buttons, getting the Dom path, fixing nodes.
-        */
-        nodeChange: function(force) {
-            var NCself = this;
-            this._storeUndo();
-            if (this.get('nodeChangeDelay')) {
-                window.setTimeout(function() {
-                    NCself._nodeChange.apply(NCself, arguments);
-                }, 0);
-            } else {
-                this._nodeChange();
-            }
-        },
-        /**
-        * @private
-        * @method _nodeChange
-        * @param {Boolean} force Optional paramenter to skip the threshold counter
-        * @description Fired from nodeChange in a setTimeout.
-        */
-        _nodeChange: function(force) {
-            var threshold = parseInt(this.get('nodeChangeThreshold'), 10),
-                thisNodeChange = Math.round(new Date().getTime() / 1000),
-                self = this;
-
-            if (force === true) {
-                this._lastNodeChange = 0;
-            }
-            
-            if ((this._lastNodeChange + threshold) < thisNodeChange) {
-                if (this._fixNodesTimer === null) {
-                    this._fixNodesTimer = window.setTimeout(function() {
-                        self._fixNodes.call(self);
-                        self._fixNodesTimer = null;
-                    }, 0);
-                }
-            }
-            this._lastNodeChange = thisNodeChange;
-            if (this.currentEvent) {
-                try {
-                    this._lastNodeChangeEvent = this.currentEvent.type;
-                } catch (e) {}
-            }
-
-            var beforeNodeChange = this.fireEvent('beforeNodeChange', { type: 'beforeNodeChange', target: this });
-            if (beforeNodeChange === false) {
-                return false;
-            }
-            if (this.get('dompath')) {
-                window.setTimeout(function() {
-                    self._writeDomPath.call(self);
-                }, 0);
-            }
-            //Check to see if we are disabled before continuing
-            if (!this.get('disabled')) {
-                if (this.STOP_NODE_CHANGE) {
-                    //Reset this var for next action
-                    this.STOP_NODE_CHANGE = false;
-                    return false;
-                } else {
-                    var sel = this._getSelection(),
-                        range = this._getRange(),
-                        el = this._getSelectedElement(),
-                        fn_button = this.toolbar.getButtonByValue('fontname'),
-                        fs_button = this.toolbar.getButtonByValue('fontsize'),
-                        undo_button = this.toolbar.getButtonByValue('undo'),
-                        redo_button = this.toolbar.getButtonByValue('redo');
-
-                    //Handle updating the toolbar with active buttons
-                    var _ex = {};
-                    if (this._lastButton) {
-                        _ex[this._lastButton.id] = true;
-                        //this._lastButton = null;
-                    }
-                    if (!this._isElement(el, 'body')) {
-                        if (fn_button) {
-                            _ex[fn_button.get('id')] = true;
-                        }
-                        if (fs_button) {
-                            _ex[fs_button.get('id')] = true;
-                        }
-                    }
-                    if (redo_button) {
-                        delete _ex[redo_button.get('id')];
-                    }
-                    this.toolbar.resetAllButtons(_ex);
-
-                    //Handle disabled buttons
-                    for (var d = 0; d < this._disabled.length; d++) {
-                        var _button = this.toolbar.getButtonByValue(this._disabled[d]);
-                        if (_button && _button.get) {
-                            if (this._lastButton && (_button.get('id') === this._lastButton.id)) {
-                                //Skip
-                            } else {
-                                if (!this._hasSelection() && !this.get('insert')) {
-                                    switch (this._disabled[d]) {
-                                        case 'fontname':
-                                        case 'fontsize':
-                                            break;
-                                        default:
-                                            //No Selection - disable
-                                            this.toolbar.disableButton(_button);
-                                    }
-                                } else {
-                                    if (!this._alwaysDisabled[this._disabled[d]]) {
-                                        this.toolbar.enableButton(_button);
-                                    }
-                                }
-                                if (!this._alwaysEnabled[this._disabled[d]]) {
-                                    this.toolbar.deselectButton(_button);
-                                }
-                            }
-                        }
-                    }
-                    var path = this._getDomPath();
-                    var tag = null, cmd = null;
-                    for (var i = 0; i < path.length; i++) {
-                        tag = path[i].tagName.toLowerCase();
-                        if (path[i].getAttribute('tag')) {
-                            tag = path[i].getAttribute('tag').toLowerCase();
-                        }
-                        cmd = this._tag2cmd[tag];
-                        if (cmd === undefined) {
-                            cmd = [];
-                        }
-                        if (!Lang.isArray(cmd)) {
-                            cmd = [cmd];
-                        }
-
-                        //Bold and Italic styles
-                        if (path[i].style.fontWeight.toLowerCase() == 'bold') {
-                            cmd[cmd.length] = 'bold';
-                        }
-                        if (path[i].style.fontStyle.toLowerCase() == 'italic') {
-                            cmd[cmd.length] = 'italic';
-                        }
-                        if (path[i].style.textDecoration.toLowerCase() == 'underline') {
-                            cmd[cmd.length] = 'underline';
-                        }
-                        if (path[i].style.textDecoration.toLowerCase() == 'line-through') {
-                            cmd[cmd.length] = 'strikethrough';
-                        }
-                        if (cmd.length > 0) {
-                            for (var j = 0; j < cmd.length; j++) {
-                                this.toolbar.selectButton(cmd[j]);
-                                this.toolbar.enableButton(cmd[j]);
-                            }
-                        }
-                        //Handle Alignment
-                        switch (path[i].style.textAlign.toLowerCase()) {
-                            case 'left':
-                            case 'right':
-                            case 'center':
-                            case 'justify':
-                                var alignType = path[i].style.textAlign.toLowerCase();
-                                if (path[i].style.textAlign.toLowerCase() == 'justify') {
-                                    alignType = 'full';
-                                }
-                                this.toolbar.selectButton('justify' + alignType);
-                                this.toolbar.enableButton('justify' + alignType);
-                                break;
-                        }
-                    }
-                    //After for loop
-
-                    //Reset Font Family and Size to the inital configs
-                    if (fn_button) {
-                        var family = fn_button._configs.label._initialConfig.value;
-                        fn_button.set('label', '<span class="yui-toolbar-fontname-' + this._cleanClassName(family) + '">' + family + '</span>');
-                        this._updateMenuChecked('fontname', family);
-                    }
-
-                    if (fs_button) {
-                        fs_button.set('label', fs_button._configs.label._initialConfig.value);
-                    }
-
-                    var hd_button = this.toolbar.getButtonByValue('heading');
-                    if (hd_button) {
-                        hd_button.set('label', hd_button._configs.label._initialConfig.value);
-                        this._updateMenuChecked('heading', 'none');
-                    }
-                    var img_button = this.toolbar.getButtonByValue('insertimage');
-                    if (img_button && this.currentWindow && (this.currentWindow.name == 'insertimage')) {
-                        this.toolbar.disableButton(img_button);
-                    }
-                    if (this._lastButton && this._lastButton.isSelected) {
-                        this.toolbar.deselectButton(this._lastButton.id);
-                    }
-                    this._undoNodeChange();
-                }
-            }
-
-            this.fireEvent('afterNodeChange', { type: 'afterNodeChange', target: this });
-        },
-        /**
-        * @private
-        * @method _updateMenuChecked
-        * @param {Object} button The command identifier of the button you want to check
-        * @param {String} value The value of the menu item you want to check
-        * @param {<a href="YAHOO.widget.Toolbar.html">YAHOO.widget.Toolbar</a>} The Toolbar instance the button belongs to (defaults to this.toolbar) 
-        * @description Gets the menu from a button instance, if the menu is not rendered it will render it. It will then search the menu for the specified value, unchecking all other items and checking the specified on.
-        */
-        _updateMenuChecked: function(button, value, tbar) {
-            if (!tbar) {
-                tbar = this.toolbar;
-            }
-            var _button = tbar.getButtonByValue(button);
-            _button.checkValue(value);
-        },
-        /**
-        * @private
-        * @method _handleToolbarClick
-        * @param {Event} ev The event that triggered the button click
-        * @description This is an event handler attached to the Toolbar's buttonClick event. It will fire execCommand with the command identifier from the Toolbar Button.
-        */
-        _handleToolbarClick: function(ev) {
-            var value = '';
-            var str = '';
-            var cmd = ev.button.value;
-            if (ev.button.menucmd) {
-                value = cmd;
-                cmd = ev.button.menucmd;
-            }
-            this._lastButton = ev.button;
-            if (this.STOP_EXEC_COMMAND) {
-                this.STOP_EXEC_COMMAND = false;
-                return false;
-            } else {
-                this.execCommand(cmd, value);
-                if (!this.browser.webkit) {
-                     var Fself = this;
-                     setTimeout(function() {
-                         Fself._focusWindow.call(Fself);
-                     }, 5);
-                 }
-            }
-            Event.stopEvent(ev);
-        },
-        /**
-        * @private
-        * @method _setupAfterElement
-        * @description Creates the accessibility h2 header and places it after the iframe in the Dom for navigation.
-        */
-        _setupAfterElement: function() {
-            if (!this.beforeElement) {
-                this.beforeElement = document.createElement('h2');
-                this.beforeElement.className = 'yui-editor-skipheader';
-                this.beforeElement.tabIndex = '-1';
-                this.beforeElement.innerHTML = this.STR_BEFORE_EDITOR;
-                this.get('element_cont').get('firstChild').insertBefore(this.beforeElement, this.toolbar.get('nextSibling'));
-            }
-            if (!this.afterElement) {
-                this.afterElement = document.createElement('h2');
-                this.afterElement.className = 'yui-editor-skipheader';
-                this.afterElement.tabIndex = '-1';
-                this.afterElement.innerHTML = this.STR_LEAVE_EDITOR;
-                this.get('element_cont').get('firstChild').appendChild(this.afterElement);
-            }
-        },
-        /**
-        * @private
-        * @method _disableEditor
-        * @param {Boolean} disabled Pass true to disable, false to enable
-        * @description Creates a mask to place over the Editor.
-        */
-        _disableEditor: function(disabled) {
-            if (disabled) {
-                this._removeEditorEvents();
-                if (!this._mask) {
-                    if (!!this.browser.ie) {
-                        this._setDesignMode('off');
-                    }
-                    if (this.toolbar) {
-                        this.toolbar.set('disabled', true);
-                    }
-                    this._mask = document.createElement('DIV');
-                    Dom.setStyle(this._mask, 'height', '100%');
-                    Dom.setStyle(this._mask, 'width', '100%');
-                    Dom.setStyle(this._mask, 'position', 'absolute');
-                    Dom.setStyle(this._mask, 'top', '0');
-                    Dom.setStyle(this._mask, 'left', '0');
-                    Dom.setStyle(this._mask, 'opacity', '.5');
-                    Dom.addClass(this._mask, 'yui-editor-masked');
-                    this.get('iframe').get('parentNode').appendChild(this._mask);
-                }
-            } else {
-                this._initEditorEvents();
-                if (this._mask) {
-                    this._mask.parentNode.removeChild(this._mask);
-                    this._mask = null;
-                    if (this.toolbar) {
-                        this.toolbar.set('disabled', false);
-                    }
-                    this._setDesignMode('on');
-                    this._focusWindow();
-                    var self = this;
-                    window.setTimeout(function() {
-                        self.nodeChange.call(self);
-                    }, 100);
-                }
-            }
-        },
-        /**
-        * @property SEP_DOMPATH
-        * @description The value to place in between the Dom path items
-        * @type String
-        */
-        SEP_DOMPATH: '<',
-        /**
-        * @property STR_LEAVE_EDITOR
-        * @description The accessibility string for the element after the iFrame
-        * @type String
-        */
-        STR_LEAVE_EDITOR: 'You have left the Rich Text Editor.',
-        /**
-        * @property STR_BEFORE_EDITOR
-        * @description The accessibility string for the element before the iFrame
-        * @type String
-        */
-        STR_BEFORE_EDITOR: 'This text field can contain stylized text and graphics. To cycle through all formatting options, use the keyboard shortcut Shift + Escape to place focus on the toolbar and navigate between options with your arrow keys. To exit this text editor use the Escape key and continue tabbing. <h4>Common formatting keyboard shortcuts:</h4><ul><li>Control Shift B sets text to bold</li> <li>Control Shift I sets text to italic</li> <li>Control Shift U underlines text</li> <li>Control Shift L adds an HTML link</li></ul>',
-        /**
-        * @property STR_TITLE
-        * @description The Title of the HTML document that is created in the iFrame
-        * @type String
-        */
-        STR_TITLE: 'Rich Text Area.',
-        /**
-        * @property STR_IMAGE_HERE
-        * @description The text to place in the URL textbox when using the blankimage.
-        * @type String
-        */
-        STR_IMAGE_HERE: 'Image URL Here',
-        /**
-        * @property STR_LINK_URL
-        * @description The label string for the Link URL.
-        * @type String
-        */
-        STR_LINK_URL: 'Link URL',
-        /**
-        * @protected
-        * @property STOP_EXEC_COMMAND
-        * @description Set to true when you want the default execCommand function to not process anything
-        * @type Boolean
-        */
-        STOP_EXEC_COMMAND: false,
-        /**
-        * @protected
-        * @property STOP_NODE_CHANGE
-        * @description Set to true when you want the default nodeChange function to not process anything
-        * @type Boolean
-        */
-        STOP_NODE_CHANGE: false,
-        /**
-        * @protected
-        * @property CLASS_NOEDIT
-        * @description CSS class applied to elements that are not editable.
-        * @type String
-        */
-        CLASS_NOEDIT: 'yui-noedit',
-        /**
-        * @protected
-        * @property CLASS_CONTAINER
-        * @description Default CSS class to apply to the editors container element
-        * @type String
-        */
-        CLASS_CONTAINER: 'yui-editor-container',
-        /**
-        * @protected
-        * @property CLASS_EDITABLE
-        * @description Default CSS class to apply to the editors iframe element
-        * @type String
-        */
-        CLASS_EDITABLE: 'yui-editor-editable',
-        /**
-        * @protected
-        * @property CLASS_EDITABLE_CONT
-        * @description Default CSS class to apply to the editors iframe's parent element
-        * @type String
-        */
-        CLASS_EDITABLE_CONT: 'yui-editor-editable-container',
-        /**
-        * @protected
-        * @property CLASS_PREFIX
-        * @description Default prefix for dynamically created class names
-        * @type String
-        */
-        CLASS_PREFIX: 'yui-editor',
-        /** 
-        * @property browser
-        * @description Standard browser detection
-        * @type Object
-        */
-        browser: function() {
-            var br = YAHOO.env.ua;
-            //Check for webkit3
-            if (br.webkit >= 420) {
-                br.webkit3 = br.webkit;
-            } else {
-                br.webkit3 = 0;
-            }
-            br.mac = false;
-            //Check for Mac
-            if (navigator.userAgent.indexOf('Macintosh') !== -1) {
-                br.mac = true;
-            }
-
-            return br;
-        }(),
-        /** 
-        * @method init
-        * @description The Editor class' initialization method
-        */
-        init: function(p_oElement, p_oAttributes) {
-
-            if (!this._defaultToolbar) {
-                this._defaultToolbar = {
-                    collapse: true,
-                    titlebar: 'Text Editing Tools',
-                    draggable: false,
-                    buttons: [
-                        { group: 'fontstyle', label: 'Font Name and Size',
-                            buttons: [
-                                { type: 'select', label: 'Arial', value: 'fontname', disabled: true,
-                                    menu: [
-                                        { text: 'Arial', checked: true },
-                                        { text: 'Arial Black' },
-                                        { text: 'Comic Sans MS' },
-                                        { text: 'Courier New' },
-                                        { text: 'Lucida Console' },
-                                        { text: 'Tahoma' },
-                                        { text: 'Times New Roman' },
-                                        { text: 'Trebuchet MS' },
-                                        { text: 'Verdana' }
-                                    ]
-                                },
-                                { type: 'spin', label: '13', value: 'fontsize', range: [ 9, 75 ], disabled: true }
-                            ]
-                        },
-                        { type: 'separator' },
-                        { group: 'textstyle', label: 'Font Style',
-                            buttons: [
-                                { type: 'push', label: 'Bold CTRL + SHIFT + B', value: 'bold' },
-                                { type: 'push', label: 'Italic CTRL + SHIFT + I', value: 'italic' },
-                                { type: 'push', label: 'Underline CTRL + SHIFT + U', value: 'underline' },
-                                { type: 'push', label: 'Strike Through', value: 'strikethrough' },
-                                { type: 'separator' },
-                                { type: 'color', label: 'Font Color', value: 'forecolor', disabled: true },
-                                { type: 'color', label: 'Background Color', value: 'backcolor', disabled: true }
-                                
-                            ]
-                        },
-                        { type: 'separator' },
-                        { group: 'indentlist', label: 'Lists',
-                            buttons: [
-                                { type: 'push', label: 'Create an Unordered List', value: 'insertunorderedlist' },
-                                { type: 'push', label: 'Create an Ordered List', value: 'insertorderedlist' }
-                            ]
-                        },
-                        { type: 'separator' },
-                        { group: 'insertitem', label: 'Insert Item',
-                            buttons: [
-                                { type: 'push', label: 'HTML Link CTRL + SHIFT + L', value: 'createlink', disabled: true },
-                                { type: 'push', label: 'Insert Image', value: 'insertimage' }
-                            ]
-                        }
-                    ]
-                };
-            }
-
-            YAHOO.widget.SimpleEditor.superclass.init.call(this, p_oElement, p_oAttributes);
-            YAHOO.widget.EditorInfo._instances[this.get('id')] = this;
-
-
-            this.currentElement = [];
-            this.on('contentReady', function() {
-                this.DOMReady = true;
-                this.fireQueue();
-            }, this, true);
-
-        },
-        /**
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create 
-        * the editor.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the editor.
-        */
-        initAttributes: function(attr) {
-            YAHOO.widget.SimpleEditor.superclass.initAttributes.call(this, attr);
-            var self = this;
-
-            /**
-            * @config nodeChangeDelay
-            * @description Do we wrap the nodeChange method in a timeout for performance, default: true.
-            * @default true
-            * @type Number
-            */
-            this.setAttributeConfig('nodeChangeDelay', {
-                value: ((attr.nodeChangeDelay === false) ? false : true)
-            });
-            /**
-            * @config maxUndo
-            * @description The max number of undo levels to store.
-            * @default 30
-            * @type Number
-            */
-            this.setAttributeConfig('maxUndo', {
-                writeOnce: true,
-                value: attr.maxUndo || 30
-            });
-
-            /**
-            * @config ptags
-            * @description If true, the editor uses <P> tags instead of <br> tags. (Use Shift + Enter to get a <br>)
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('ptags', {
-                writeOnce: true,
-                value: attr.ptags || false
-            });
-            /**
-            * @config insert
-            * @description If true, selection is not required for: fontname, fontsize, forecolor, backcolor.
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('insert', {
-                writeOnce: true,
-                value: attr.insert || false,
-                method: function(insert) {
-                    if (insert) {
-                        var buttons = {
-                            fontname: true,
-                            fontsize: true,
-                            forecolor: true,
-                            backcolor: true
-                        };
-                        var tmp = this._defaultToolbar.buttons;
-                        for (var i = 0; i < tmp.length; i++) {
-                            if (tmp[i].buttons) {
-                                for (var a = 0; a < tmp[i].buttons.length; a++) {
-                                    if (tmp[i].buttons[a].value) {
-                                        if (buttons[tmp[i].buttons[a].value]) {
-                                            delete tmp[i].buttons[a].disabled;
-                                        }
-                                    }
-                                }
-                            }
-                        }
-                    }
-                }
-            });
-            /**
-            * @config container
-            * @description Used when dynamically creating the Editor from Javascript with no default textarea.
-            * We will create one and place it in this container. If no container is passed we will append to document.body.
-            * @default false
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('container', {
-                writeOnce: true,
-                value: attr.container || false
-            });
-            /**
-            * @config plainText
-            * @description Process the inital textarea data as if it was plain text. Accounting for spaces, tabs and line feeds.
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('plainText', {
-                writeOnce: true,
-                value: attr.plainText || false
-            });
-            /**
-            * @private
-            * @config iframe
-            * @description Internal config for holding the iframe element.
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('iframe', {
-                value: null
-            });
-            /**
-            * @private
-            * @depreciated
-            * @config textarea
-            * @description Internal config for holding the textarea element (replaced with element).
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('textarea', {
-                value: null,
-                writeOnce: true
-            });
-            /**
-            * @private
-            * @config container
-            * @description Internal config for holding a reference to the container to append a dynamic editor to.
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('container', {
-                readOnly: true,
-                value: null
-            });
-            /**
-            * @config nodeChangeThreshold
-            * @description The number of seconds that need to be in between nodeChange processing
-            * @default 3
-            * @type Number
-            */            
-            this.setAttributeConfig('nodeChangeThreshold', {
-                value: attr.nodeChangeThreshold || 3,
-                validator: YAHOO.lang.isNumber
-            });
-            /**
-            * @config allowNoEdit
-            * @description Should the editor check for non-edit fields. It should be noted that this technique is not perfect. If the user does the right things, they will still be able to make changes.
-            * Such as highlighting an element below and above the content and hitting a toolbar button or a shortcut key.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('allowNoEdit', {
-                value: attr.allowNoEdit || false,
-                validator: YAHOO.lang.isBoolean
-            });
-            /**
-            * @config limitCommands
-            * @description Should the Editor limit the allowed execCommands to the ones available in the toolbar. If true, then execCommand and keyboard shortcuts will fail if they are not defined in the toolbar.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('limitCommands', {
-                value: attr.limitCommands || false,
-                validator: YAHOO.lang.isBoolean
-            });
-            /**
-            * @config element_cont
-            * @description Internal config for the editors container
-            * @default false
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('element_cont', {
-                value: attr.element_cont
-            });
-            /**
-            * @private
-            * @config editor_wrapper
-            * @description The outter wrapper for the entire editor.
-            * @default null
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('editor_wrapper', {
-                value: attr.editor_wrapper || null,
-                writeOnce: true
-            });
-            /**
-            * @attribute height
-            * @description The height of the editor iframe container, not including the toolbar..
-            * @default Best guessed size of the textarea, for best results use CSS to style the height of the textarea or pass it in as an argument
-            * @type String
-            */
-            this.setAttributeConfig('height', {
-                value: attr.height || Dom.getStyle(self.get('element'), 'height'),
-                method: function(height) {
-                    if (this._rendered) {
-                        //We have been rendered, change the height
-                        if (this.get('animate')) {
-                            var anim = new YAHOO.util.Anim(this.get('iframe').get('parentNode'), {
-                                height: {
-                                    to: parseInt(height, 10)
-                                }
-                            }, 0.5);
-                            anim.animate();
-                        } else {
-                            Dom.setStyle(this.get('iframe').get('parentNode'), 'height', height);
-                        }
-                    }
-                }
-            });
-            /**
-            * @config autoHeight
-            * @description Remove the scrollbars from the edit area and resize it to fit the content. It will not go any lower than the current config height.
-            * @default false
-            * @type Boolean || Number
-            */
-            this.setAttributeConfig('autoHeight', {
-                value: attr.autoHeight || false,
-                method: function(a) {
-                    if (a) {
-                        if (this.get('iframe')) {
-                            this.get('iframe').get('element').setAttribute('scrolling', 'no');
-                        }
-                        this.on('afterNodeChange', this._handleAutoHeight, this, true);
-                        this.on('editorKeyDown', this._handleAutoHeight, this, true);
-                        this.on('editorKeyPress', this._handleAutoHeight, this, true);
-                    } else {
-                        if (this.get('iframe')) {
-                            this.get('iframe').get('element').setAttribute('scrolling', 'auto');
-                        }
-                        this.unsubscribe('afterNodeChange', this._handleAutoHeight);
-                        this.unsubscribe('editorKeyDown', this._handleAutoHeight);
-                        this.unsubscribe('editorKeyPress', this._handleAutoHeight);
-                    }
-                }
-            });
-            /**
-            * @attribute width
-            * @description The width of the editor container.
-            * @default Best guessed size of the textarea, for best results use CSS to style the width of the textarea or pass it in as an argument
-            * @type String
-            */            
-            this.setAttributeConfig('width', {
-                value: attr.width || Dom.getStyle(this.get('element'), 'width'),
-                method: function(width) {
-                    if (this._rendered) {
-                        //We have been rendered, change the width
-                        if (this.get('animate')) {
-                            var anim = new YAHOO.util.Anim(this.get('element_cont').get('element'), {
-                                width: {
-                                    to: parseInt(width, 10)
-                                }
-                            }, 0.5);
-                            anim.animate();
-                        } else {
-                            this.get('element_cont').setStyle('width', width);
-                        }
-                    }
-                }
-            });
-                        
-            /**
-            * @attribute blankimage
-            * @description The URL for the image placeholder to put in when inserting an image.
-            * @default The yahooapis.com address for the current release + 'assets/blankimage.png'
-            * @type String
-            */            
-            this.setAttributeConfig('blankimage', {
-                value: attr.blankimage || this._getBlankImage()
-            });
-            /**
-            * @attribute css
-            * @description The Base CSS used to format the content of the editor
-            * @default <code><pre>html {
-                height: 95%;
-            }
-            body {
-                height: 100%;
-                padding: 7px; background-color: #fff; font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;
-            }
-            a {
-                color: blue;
-                text-decoration: underline;
-                cursor: pointer;
-            }
-            .warning-localfile {
-                border-bottom: 1px dashed red !important;
-            }
-            .yui-busy {
-                cursor: wait !important;
-            }
-            img.selected { //Safari image selection
-                border: 2px dotted #808080;
-            }
-            img {
-                cursor: pointer !important;
-                border: none;
-            }
-            </pre></code>
-            * @type String
-            */            
-            this.setAttributeConfig('css', {
-                value: attr.css || this._defaultCSS,
-                writeOnce: true
-            });
-            /**
-            * @attribute html
-            * @description The default HTML to be written to the iframe document before the contents are loaded (Note that the DOCTYPE attr will be added at render item)
-            * @default This HTML requires a few things if you are to override:
-                <p><code>{TITLE}, {CSS}, {HIDDEN_CSS}, {EXTRA_CSS}</code> and <code>{CONTENT}</code> need to be there, they are passed to YAHOO.lang.substitute to be replace with other strings.<p>
-                <p><code>onload="document.body._rteLoaded = true;"</code> : the onload statement must be there or the editor will not finish loading.</p>
-                <code>
-                <pre>
-                &lt;html&gt;
-                    &lt;head&gt;
-                        &lt;title&gt;{TITLE}&lt;/title&gt;
-                        &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt;
-                        &lt;style&gt;
-                        {CSS}
-                        &lt;/style&gt;
-                        &lt;style&gt;
-                        {HIDDEN_CSS}
-                        &lt;/style&gt;
-                        &lt;style&gt;
-                        {EXTRA_CSS}
-                        &lt;/style&gt;
-                    &lt;/head&gt;
-                &lt;body onload="document.body._rteLoaded = true;"&gt;
-                {CONTENT}
-                &lt;/body&gt;
-                &lt;/html&gt;
-                </pre>
-                </code>
-            * @type String
-            */            
-            this.setAttributeConfig('html', {
-                value: attr.html || '<html><head><title>{TITLE}</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><base href="' + this._baseHREF + '"><style>{CSS}</style><style>{HIDDEN_CSS}</style><style>{EXTRA_CSS}</style></head><body onload="document.body._rteLoaded = true;">{CONTENT}</body></html>',
-                writeOnce: true
-            });
-
-            /**
-            * @attribute extracss
-            * @description Extra user defined css to load after the default SimpleEditor CSS
-            * @default ''
-            * @type String
-            */            
-            this.setAttributeConfig('extracss', {
-                value: attr.extracss || '',
-                writeOnce: true
-            });
-
-            /**
-            * @attribute handleSubmit
-            * @description Config handles if the editor will attach itself to the textareas parent form's submit handler.
-            If it is set to true, the editor will attempt to attach a submit listener to the textareas parent form.
-            Then it will trigger the editors save handler and place the new content back into the text area before the form is submitted.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('handleSubmit', {
-                value: attr.handleSubmit || false,
-                method: function(exec) {
-                    if (this.get('element').form) {
-                        if (!this._formButtons) {
-                            this._formButtons = [];
-                        }
-                        if (exec) {
-                            Event.on(this.get('element').form, 'submit', this._handleFormSubmit, this, true);
-                            var i = this.get('element').form.getElementsByTagName('input');
-                            for (var s = 0; s < i.length; s++) {
-                                var type = i[s].getAttribute('type');
-                                if (type && (type.toLowerCase() == 'submit')) {
-                                    Event.on(i[s], 'click', this._handleFormButtonClick, this, true);
-                                    this._formButtons[this._formButtons.length] = i[s];
-                                }
-                            }
-                        } else {
-                            Event.removeListener(this.get('element').form, 'submit', this._handleFormSubmit);
-                            if (this._formButtons) {
-                                Event.removeListener(this._formButtons, 'click', this._handleFormButtonClick);
-                            }
-                        }
-                    }
-                }
-            });
-            /**
-            * @attribute disabled
-            * @description This will toggle the editor's disabled state. When the editor is disabled, designMode is turned off and a mask is placed over the iframe so no interaction can take place.
-            All Toolbar buttons are also disabled so they cannot be used.
-            * @default false
-            * @type Boolean
-            */
-
-            this.setAttributeConfig('disabled', {
-                value: false,
-                method: function(disabled) {
-                    if (this._rendered) {
-                        this._disableEditor(disabled);
-                    }
-                }
-            });
-            /**
-            * @config saveEl
-            * @description When save HTML is called, this element will be updated as well as the source of data.
-            * @default element
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('saveEl', {
-                value: this.get('element')
-            });
-            /**
-            * @config toolbar_cont
-            * @description Internal config for the toolbars container
-            * @default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('toolbar_cont', {
-                value: null,
-                writeOnce: true
-            });
-            /**
-            * @attribute toolbar
-            * @description The default toolbar config.
-            * @type Object
-            */            
-            this.setAttributeConfig('toolbar', {
-                value: attr.toolbar || this._defaultToolbar,
-                writeOnce: true,
-                method: function(toolbar) {
-                    if (!toolbar.buttonType) {
-                        toolbar.buttonType = this._defaultToolbar.buttonType;
-                    }
-                    this._defaultToolbar = toolbar;
-                }
-            });
-            /**
-            * @attribute animate
-            * @description Should the editor animate window movements
-            * @default false unless Animation is found, then true
-            * @type Boolean
-            */            
-            this.setAttributeConfig('animate', {
-                value: ((attr.animate) ? ((YAHOO.util.Anim) ? true : false) : false),
-                validator: function(value) {
-                    var ret = true;
-                    if (!YAHOO.util.Anim) {
-                        ret = false;
-                    }
-                    return ret;
-                }
-            });
-            /**
-            * @config panel
-            * @description A reference to the panel we are using for windows.
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('panel', {
-                value: null,
-                writeOnce: true,
-                validator: function(value) {
-                    var ret = true;
-                    if (!YAHOO.widget.Overlay) {
-                        ret = false;
-                    }
-                    return ret;
-                }               
-            });
-            /**
-            * @attribute focusAtStart
-            * @description Should we focus the window when the content is ready?
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('focusAtStart', {
-                value: attr.focusAtStart || false,
-                writeOnce: true,
-                method: function(fs) {
-                    if (fs) {
-                        this.on('editorContentLoaded', function() {
-                            var self = this;
-                            setTimeout(function() {
-                                self._focusWindow.call(self, true);
-                                self.editorDirty = false;
-                            }, 400);
-                        }, this, true);
-                    }
-                }
-            });
-            /**
-            * @attribute dompath
-            * @description Toggle the display of the current Dom path below the editor
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('dompath', {
-                value: attr.dompath || false,
-                method: function(dompath) {
-                    if (dompath && !this.dompath) {
-                        this.dompath = document.createElement('DIV');
-                        this.dompath.id = this.get('id') + '_dompath';
-                        Dom.addClass(this.dompath, 'dompath');
-                        this.get('element_cont').get('firstChild').appendChild(this.dompath);
-                        if (this.get('iframe')) {
-                            this._writeDomPath();
-                        }
-                    } else if (!dompath && this.dompath) {
-                        this.dompath.parentNode.removeChild(this.dompath);
-                        this.dompath = null;
-                    }
-                }
-            });
-            /**
-            * @attribute markup
-            * @description Should we try to adjust the markup for the following types: semantic, css, default or xhtml
-            * @default "semantic"
-            * @type String
-            */            
-            this.setAttributeConfig('markup', {
-                value: attr.markup || 'semantic',
-                validator: function(markup) {
-                    switch (markup.toLowerCase()) {
-                        case 'semantic':
-                        case 'css':
-                        case 'default':
-                        case 'xhtml':
-                        return true;
-                    }
-                    return false;
-                }
-            });
-            /**
-            * @attribute removeLineBreaks
-            * @description Should we remove linebreaks and extra spaces on cleanup
-            * @default false
-            * @type Boolean
-            */            
-            this.setAttributeConfig('removeLineBreaks', {
-                value: attr.removeLineBreaks || false,
-                validator: YAHOO.lang.isBoolean
-            });
-            
-            /**
-            * @config drag
-            * @description Set this config to make the Editor draggable, pass 'proxy' to make use YAHOO.util.DDProxy.
-            * @type {Boolean/String}
-            */
-            this.setAttributeConfig('drag', {
-                writeOnce: true,
-                value: attr.drag || false
-            });
-
-            /**
-            * @config resize
-            * @description Set this to true to make the Editor Resizable with YAHOO.util.Resize. The default config is available: myEditor._resizeConfig
-            * Animation will be ignored while performing this resize to allow for the dynamic change in size of the toolbar.
-            * @type Boolean
-            */
-            this.setAttributeConfig('resize', {
-                writeOnce: true,
-                value: attr.resize || false
-            });
-        },
-        /**
-        * @private
-        * @method _getBlankImage
-        * @description Retrieves the full url of the image to use as the blank image.
-        * @return {String} The URL to the blank image
-        */
-        _getBlankImage: function() {
-            if (!this.DOMReady) {
-                this._queue[this._queue.length] = ['_getBlankImage', arguments];
-                return '';
-            }
-            var img = '';
-            if (!this._blankImageLoaded) {
-                if (YAHOO.widget.EditorInfo.blankImage) {
-                    this.set('blankimage', YAHOO.widget.EditorInfo.blankImage);
-                    this._blankImageLoaded = true;
-                } else {
-                    var div = document.createElement('div');
-                    div.style.position = 'absolute';
-                    div.style.top = '-9999px';
-                    div.style.left = '-9999px';
-                    div.className = this.CLASS_PREFIX + '-blankimage';
-                    document.body.appendChild(div);
-                    img = YAHOO.util.Dom.getStyle(div, 'background-image');
-                    img = img.replace('url(', '').replace(')', '').replace(/"/g, '');
-                    //Adobe AIR Code
-                    img = img.replace('app:/', '');             
-                    this.set('blankimage', img);
-                    this._blankImageLoaded = true;
-                    div.parentNode.removeChild(div);
-                    YAHOO.widget.EditorInfo.blankImage = img;
-                }
-            } else {
-                img = this.get('blankimage');
-            }
-            return img;
-        },
-        /**
-        * @private
-        * @method _handleAutoHeight
-        * @description Handles resizing the editor's height based on the content
-        */
-        _handleAutoHeight: function() {
-            var doc = this._getDoc(),
-                body = doc.body,
-                docEl = doc.documentElement;
-
-            var height = parseInt(Dom.getStyle(this.get('editor_wrapper'), 'height'), 10);
-            var newHeight = body.scrollHeight;
-            if (this.browser.webkit) {
-                newHeight = docEl.scrollHeight;
-            }
-            if (newHeight < parseInt(this.get('height'), 10)) {
-                newHeight = parseInt(this.get('height'), 10);
-            }
-            if ((height != newHeight) && (newHeight >= parseInt(this.get('height'), 10))) {   
-                Dom.setStyle(this.get('editor_wrapper'), 'height', newHeight + 'px');
-                if (this.browser.ie) {
-                    //Internet Explorer needs this
-                    this.get('iframe').setStyle('height', '99%');
-                    this.get('iframe').setStyle('zoom', '1');
-                    var self = this;
-                    window.setTimeout(function() {
-                        self.get('iframe').setStyle('height', '100%');
-                    }, 1);
-                }
-            }
-        },
-        /**
-        * @private
-        * @property _formButtons
-        * @description Array of buttons that are in the Editor's parent form (for handleSubmit)
-        * @type Array
-        */
-        _formButtons: null,
-        /**
-        * @private
-        * @property _formButtonClicked
-        * @description The form button that was clicked to submit the form.
-        * @type HTMLElement
-        */
-        _formButtonClicked: null,
-        /**
-        * @private
-        * @method _handleFormButtonClick
-        * @description The click listener assigned to each submit button in the Editor's parent form.
-        * @param {Event} ev The click event
-        */
-        _handleFormButtonClick: function(ev) {
-            var tar = Event.getTarget(ev);
-            this._formButtonClicked = tar;
-        },
-        /**
-        * @private
-        * @method _handleFormSubmit
-        * @description Handles the form submission.
-        * @param {Object} ev The Form Submit Event
-        */
-        _handleFormSubmit: function(ev) {
-            this.saveHTML();
-
-            var form = this.get('element').form,
-                tar = this._formButtonClicked || false;
-
-            Event.removeListener(form, 'submit', this._handleFormSubmit);
-            if (YAHOO.env.ua.ie) {
-                //form.fireEvent("onsubmit");
-                if (tar && !tar.disabled) {
-                    tar.click();
-                }
-            } else {  // Gecko, Opera, and Safari
-                if (tar && !tar.disabled) {
-                    tar.click();
-                }
-                var oEvent = document.createEvent("HTMLEvents");
-                oEvent.initEvent("submit", true, true);
-                form.dispatchEvent(oEvent);
-                if (YAHOO.env.ua.webkit) {
-                    if (YAHOO.lang.isFunction(form.submit)) {
-                        form.submit();
-                    }
-                }
-            }
-            //2.6.0
-            //Removed this, not need since removing Safari 2.x
-            //Event.stopEvent(ev);
-        },
-        /**
-        * @private
-        * @method _handleFontSize
-        * @description Handles the font size button in the toolbar.
-        * @param {Object} o Object returned from Toolbar's buttonClick Event
-        */
-        _handleFontSize: function(o) {
-            var button = this.toolbar.getButtonById(o.button.id);
-            var value = button.get('label') + 'px';
-            this.execCommand('fontsize', value);
-            this.STOP_EXEC_COMMAND = true;
-        },
-        /**
-        * @private
-        * @description Handles the colorpicker buttons in the toolbar.
-        * @param {Object} o Object returned from Toolbar's buttonClick Event
-        */
-        _handleColorPicker: function(o) {
-            var cmd = o.button;
-            var value = '#' + o.color;
-            if ((cmd == 'forecolor') || (cmd == 'backcolor')) {
-                this.execCommand(cmd, value);
-            }
-        },
-        /**
-        * @private
-        * @method _handleAlign
-        * @description Handles the alignment buttons in the toolbar.
-        * @param {Object} o Object returned from Toolbar's buttonClick Event
-        */
-        _handleAlign: function(o) {
-            var cmd = null;
-            for (var i = 0; i < o.button.menu.length; i++) {
-                if (o.button.menu[i].value == o.button.value) {
-                    cmd = o.button.menu[i].value;
-                }
-            }
-            var value = this._getSelection();
-
-            this.execCommand(cmd, value);
-            this.STOP_EXEC_COMMAND = true;
-        },
-        /**
-        * @private
-        * @method _handleAfterNodeChange
-        * @description Fires after a nodeChange happens to setup the things that where reset on the node change (button state).
-        */
-        _handleAfterNodeChange: function() {
-            var path = this._getDomPath(),
-                elm = null,
-                family = null,
-                fontsize = null,
-                validFont = false,
-                fn_button = this.toolbar.getButtonByValue('fontname'),
-                fs_button = this.toolbar.getButtonByValue('fontsize'),
-                hd_button = this.toolbar.getButtonByValue('heading');
-
-            for (var i = 0; i < path.length; i++) {
-                elm = path[i];
-
-                var tag = elm.tagName.toLowerCase();
-
-
-                if (elm.getAttribute('tag')) {
-                    tag = elm.getAttribute('tag');
-                }
-
-                family = elm.getAttribute('face');
-                if (Dom.getStyle(elm, 'font-family')) {
-                    family = Dom.getStyle(elm, 'font-family');
-                    //Adobe AIR Code
-                    family = family.replace(/'/g, '');                    
-                }
-
-                if (tag.substring(0, 1) == 'h') {
-                    if (hd_button) {
-                        for (var h = 0; h < hd_button._configs.menu.value.length; h++) {
-                            if (hd_button._configs.menu.value[h].value.toLowerCase() == tag) {
-                                hd_button.set('label', hd_button._configs.menu.value[h].text);
-                            }
-                        }
-                        this._updateMenuChecked('heading', tag);
-                    }
-                }
-            }
-
-            if (fn_button) {
-                for (var b = 0; b < fn_button._configs.menu.value.length; b++) {
-                    if (family && fn_button._configs.menu.value[b].text.toLowerCase() == family.toLowerCase()) {
-                        validFont = true;
-                        family = fn_button._configs.menu.value[b].text; //Put the proper menu name in the button
-                    }
-                }
-                if (!validFont) {
-                    family = fn_button._configs.label._initialConfig.value;
-                }
-                var familyLabel = '<span class="yui-toolbar-fontname-' + this._cleanClassName(family) + '">' + family + '</span>';
-                if (fn_button.get('label') != familyLabel) {
-                    fn_button.set('label', familyLabel);
-                    this._updateMenuChecked('fontname', family);
-                }
-            }
-
-            if (fs_button) {
-                fontsize = parseInt(Dom.getStyle(elm, 'fontSize'), 10);
-                if ((fontsize === null) || isNaN(fontsize)) {
-                    fontsize = fs_button._configs.label._initialConfig.value;
-                }
-                fs_button.set('label', ''+fontsize);
-            }
-            
-            if (!this._isElement(elm, 'body') && !this._isElement(elm, 'img')) {
-                this.toolbar.enableButton(fn_button);
-                this.toolbar.enableButton(fs_button);
-                this.toolbar.enableButton('forecolor');
-                this.toolbar.enableButton('backcolor');
-            }
-            if (this._isElement(elm, 'img')) {
-                if (YAHOO.widget.Overlay) {
-                    this.toolbar.enableButton('createlink');
-                }
-            }
-            if (this._hasParent(elm, 'blockquote')) {
-                this.toolbar.selectButton('indent');
-                this.toolbar.disableButton('indent');
-                this.toolbar.enableButton('outdent');
-            }
-            if (this._hasParent(elm, 'ol') || this._hasParent(elm, 'ul')) {
-                this.toolbar.disableButton('indent');
-            }
-            this._lastButton = null;
-            
-        },
-        /**
-        * @private
-        * @method _handleInsertImageClick
-        * @description Opens the Image Properties Window when the insert Image button is clicked or an Image is Double Clicked.
-        */
-        _handleInsertImageClick: function() {
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue('insertimage')) {
-                    return false;
-                }
-            }
-        
-            this.toolbar.set('disabled', true); //Disable the toolbar when the prompt is showing
-            this.on('afterExecCommand', function() {
-                var el = this.currentElement[0],
-                    src = 'http://';
-                if (!el) {
-                    el = this._getSelectedElement();
-                }
-                if (el) {
-                    if (el.getAttribute('src')) {
-                        src = el.getAttribute('src', 2);
-                        if (src.indexOf(this.get('blankimage')) != -1) {
-                            src = this.STR_IMAGE_HERE;
-                        }
-                    }
-                }
-                var str = prompt(this.STR_LINK_URL + ': ', src);
-                if ((str !== '') && (str !== null)) {
-                    el.setAttribute('src', str);
-                } else if (str === null) {
-                    el.parentNode.removeChild(el);
-                    this.currentElement = [];
-                    this.nodeChange();
-                }
-                this.closeWindow();
-                this.toolbar.set('disabled', false);
-            }, this, true);
-        },
-        /**
-        * @private
-        * @method _handleInsertImageWindowClose
-        * @description Handles the closing of the Image Properties Window.
-        */
-        _handleInsertImageWindowClose: function() {
-            this.nodeChange();
-        },
-        /**
-        * @private
-        * @method _isLocalFile
-        * @param {String} url THe url/string to check
-        * @description Checks to see if a string (href or img src) is possibly a local file reference..
-        */
-        _isLocalFile: function(url) {
-            if ((url) && (url !== '') && ((url.indexOf('file:/') != -1) || (url.indexOf(':\\') != -1))) {
-                return true;
-            }
-            return false;
-        },
-        /**
-        * @private
-        * @method _handleCreateLinkClick
-        * @description Handles the opening of the Link Properties Window when the Create Link button is clicked or an href is doubleclicked.
-        */
-        _handleCreateLinkClick: function() {
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue('createlink')) {
-                    return false;
-                }
-            }
-        
-            this.toolbar.set('disabled', true); //Disable the toolbar when the prompt is showing
-
-            this.on('afterExecCommand', function() {
-                var el = this.currentElement[0],
-                    url = '';
-
-                if (el) {
-                    if (el.getAttribute('href', 2) !== null) {
-                        url = el.getAttribute('href', 2);
-                    }
-                }
-                var str = prompt(this.STR_LINK_URL + ': ', url);
-                if ((str !== '') && (str !== null)) {
-                    var urlValue = str;
-                    if ((urlValue.indexOf(':/'+'/') == -1) && (urlValue.substring(0,1) != '/') && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                        if ((urlValue.indexOf('@') != -1) && (urlValue.substring(0, 6).toLowerCase() != 'mailto')) {
-                            //Found an @ sign, prefix with mailto:
-                            urlValue = 'mailto:' + urlValue;
-                        } else {
-                            /* :// not found adding */
-                            if (urlValue.substring(0, 1) != '#') {
-                                //urlValue = 'http:/'+'/' + urlValue;
-                            }
-                        }
-                    }
-                    el.setAttribute('href', urlValue);
-                } else if (str !== null) {
-                    var _span = this._getDoc().createElement('span');
-                    _span.innerHTML = el.innerHTML;
-                    Dom.addClass(_span, 'yui-non');
-                    el.parentNode.replaceChild(_span, el);
-                }
-                this.closeWindow();
-                this.toolbar.set('disabled', false);
-            }, this);
-
-        },
-        /**
-        * @private
-        * @method _handleCreateLinkWindowClose
-        * @description Handles the closing of the Link Properties Window.
-        */
-        _handleCreateLinkWindowClose: function() {
-            this.nodeChange();
-            this.currentElement = [];
-        },
-        /**
-        * @method render
-        * @description Calls the private method _render in a setTimeout to allow for other things on the page to continue to load.
-        */
-        render: function() {
-            if (this._rendered) {
-                return false;
-            }
-            if (!this.DOMReady) {
-                this._queue[this._queue.length] = ['render', arguments];
-                return false;
-            }
-            if (this.get('element')) {
-                if (this.get('element').tagName) {
-                    this._textarea = true;
-                    if (this.get('element').tagName.toLowerCase() !== 'textarea') {
-                        this._textarea = false;
-                    }
-                } else {
-                    return false;
-                }
-            } else {
-                return false;
-            }
-            this._rendered = true;
-            var self = this;
-            window.setTimeout(function() {
-                self._render.call(self);
-            }, 4);
-        },
-        /**
-        * @private
-        * @method _render
-        * @description Causes the toolbar and the editor to render and replace the textarea.
-        */
-        _render: function() {
-            var self = this;
-            this.set('textarea', this.get('element'));
-
-            this.get('element_cont').setStyle('display', 'none');
-            this.get('element_cont').addClass(this.CLASS_CONTAINER);
-
-            this.set('iframe', this._createIframe());
-            window.setTimeout(function() {
-                self._setInitialContent.call(self);
-            }, 10);
-
-            this.get('editor_wrapper').appendChild(this.get('iframe').get('element'));
-
-            if (this.get('disabled')) {
-                this._disableEditor(true);
-            }
-
-            var tbarConf = this.get('toolbar');
-            //Create Toolbar instance
-            if (tbarConf instanceof Toolbar) {
-                this.toolbar = tbarConf;
-                //Set the toolbar to disabled until content is loaded
-                this.toolbar.set('disabled', true);
-            } else {
-                //Set the toolbar to disabled until content is loaded
-                tbarConf.disabled = true;
-                this.toolbar = new Toolbar(this.get('toolbar_cont'), tbarConf);
-            }
-
-            this.fireEvent('toolbarLoaded', { type: 'toolbarLoaded', target: this.toolbar });
-
-            
-            this.toolbar.on('toolbarCollapsed', function() {
-                if (this.currentWindow) {
-                    this.moveWindow();
-                }
-            }, this, true);
-            this.toolbar.on('toolbarExpanded', function() {
-                if (this.currentWindow) {
-                    this.moveWindow();
-                }
-            }, this, true);
-            this.toolbar.on('fontsizeClick', this._handleFontSize, this, true);
-            
-            this.toolbar.on('colorPickerClicked', function(o) {
-                this._handleColorPicker(o);
-                return false; //Stop the buttonClick event
-            }, this, true);
-
-            this.toolbar.on('alignClick', this._handleAlign, this, true);
-            this.on('afterNodeChange', this._handleAfterNodeChange, this, true);
-            this.toolbar.on('insertimageClick', this._handleInsertImageClick, this, true);
-            this.on('windowinsertimageClose', this._handleInsertImageWindowClose, this, true);
-            this.toolbar.on('createlinkClick', this._handleCreateLinkClick, this, true);
-            this.on('windowcreatelinkClose', this._handleCreateLinkWindowClose, this, true);
-            
-
-            //Replace Textarea with editable area
-            this.get('parentNode').replaceChild(this.get('element_cont').get('element'), this.get('element'));
-
-            
-            this.setStyle('visibility', 'hidden');
-            this.setStyle('position', 'absolute');
-            this.setStyle('top', '-9999px');
-            this.setStyle('left', '-9999px');
-            this.get('element_cont').appendChild(this.get('element'));
-            this.get('element_cont').setStyle('display', 'block');
-
-
-            Dom.addClass(this.get('iframe').get('parentNode'), this.CLASS_EDITABLE_CONT);
-            this.get('iframe').addClass(this.CLASS_EDITABLE);
-
-            //Set height and width of editor container
-            this.get('element_cont').setStyle('width', this.get('width'));
-            Dom.setStyle(this.get('iframe').get('parentNode'), 'height', this.get('height'));
-
-            this.get('iframe').setStyle('width', '100%'); //WIDTH
-            this.get('iframe').setStyle('height', '100%');
-
-            this._setupDD();
-
-            window.setTimeout(function() {
-                self._setupAfterElement.call(self);
-            }, 0);
-            this.fireEvent('afterRender', { type: 'afterRender', target: this });
-        },
-        /**
-        * @method execCommand
-        * @param {String} action The "execCommand" action to try to execute (Example: bold, insertimage, inserthtml)
-        * @param {String} value (optional) The value for a given action such as action: fontname value: 'Verdana'
-        * @description This method attempts to try and level the differences in the various browsers and their support for execCommand actions
-        */
-        execCommand: function(action, value) {
-            var beforeExec = this.fireEvent('beforeExecCommand', { type: 'beforeExecCommand', target: this, args: arguments });
-            if ((beforeExec === false) || (this.STOP_EXEC_COMMAND)) {
-                this.STOP_EXEC_COMMAND = false;
-                return false;
-            }
-            this._lastCommand = action;
-            this._setMarkupType(action);
-            if (this.browser.ie) {
-                this._getWindow().focus();
-            }
-            var exec = true;
-            
-            if (this.get('limitCommands')) {
-                if (!this.toolbar.getButtonByValue(action)) {
-                    exec = false;
-                }
-            }
-
-            this.editorDirty = true;
-            
-            if ((typeof this['cmd_' + action.toLowerCase()] == 'function') && exec) {
-                var retValue = this['cmd_' + action.toLowerCase()](value);
-                exec = retValue[0];
-                if (retValue[1]) {
-                    action = retValue[1];
-                }
-                if (retValue[2]) {
-                    value = retValue[2];
-                }
-            }
-            if (exec) {
-                try {
-                    this._getDoc().execCommand(action, false, value);
-                } catch(e) {
-                }
-            } else {
-            }
-            this.on('afterExecCommand', function() {
-                this.unsubscribeAll('afterExecCommand');
-                this.nodeChange();
-            }, this, true);
-            this.fireEvent('afterExecCommand', { type: 'afterExecCommand', target: this });
-            
-        },
-    /* {{{  Command Overrides */
-
-        /**
-        * @method cmd_underline
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('underline') is used.
-        */
-        cmd_underline: function(value) {
-            if (!this.browser.webkit) {
-                var el = this._getSelectedElement();
-                if (el && this._isElement(el, 'span')) {
-                    if (el.style.textDecoration == 'underline') {
-                        el.style.textDecoration = 'none';
-                    } else {
-                        el.style.textDecoration = 'underline';
-                    }
-                    return [false];
-                }
-            }
-            return [true];
-        },
-        /**
-        * @method cmd_backcolor
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('backcolor') is used.
-        */
-        cmd_backcolor: function(value) {
-            var exec = true,
-                el = this._getSelectedElement(),
-                action = 'backcolor';
-
-            if (this.browser.gecko || this.browser.opera) {
-                this._setEditorStyle(true);
-                action = 'hilitecolor';
-            }
-
-            if (!this._isElement(el, 'body') && !this._hasSelection()) {
-                Dom.setStyle(el, 'background-color', value);
-                this._selectNode(el);
-                exec = false;
-            } else if (!this._isElement(el, 'body') && this._hasSelection()) {
-                Dom.setStyle(el, 'background-color', value);
-                this._selectNode(el);
-                exec = false;
-            } else {
-                if (this.get('insert')) {
-                    el = this._createInsertElement({ backgroundColor: value });
-                } else {
-                    this._createCurrentElement('span', { backgroundColor: value });
-                    this._selectNode(this.currentElement[0]);
-                }
-                exec = false;
-            }
-
-            return [exec, action];
-        },
-        /**
-        * @method cmd_forecolor
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('forecolor') is used.
-        */
-        cmd_forecolor: function(value) {
-            var exec = true,
-                el = this._getSelectedElement();
-                
-
-                if (!this._isElement(el, 'body') && !this._hasSelection()) {
-                    Dom.setStyle(el, 'color', value);
-                    this._selectNode(el);
-                    exec = false;
-                } else if (!this._isElement(el, 'body') && this._hasSelection()) {
-                    Dom.setStyle(el, 'color', value);
-                    this._selectNode(el);
-                    exec = false;
-                } else {
-                    if (this.get('insert')) {
-                        el = this._createInsertElement({ color: value });
-                    } else {
-                        this._createCurrentElement('span', { color: value });
-                        this._selectNode(this.currentElement[0]);
-                    }
-                    exec = false;
-                }
-                return [exec];
-        },
-        /**
-        * @method cmd_unlink
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('unlink') is used.
-        */
-        cmd_unlink: function(value) {
-            this._swapEl(this.currentElement[0], 'span', function(el) {
-                el.className = 'yui-non';
-            });
-            return [false];
-        },
-        /**
-        * @method cmd_createlink
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('createlink') is used.
-        */
-        cmd_createlink: function(value) {
-            var el = this._getSelectedElement(), _a = null;
-            if (this._hasParent(el, 'a')) {
-                this.currentElement[0] = this._hasParent(el, 'a');
-            } else if (!this._isElement(el, 'a')) {
-                this._createCurrentElement('a');
-                _a = this._swapEl(this.currentElement[0], 'a');
-                this.currentElement[0] = _a;
-            } else {
-                this.currentElement[0] = el;
-            }
-            return [false];
-        },
-        /**
-        * @method cmd_insertimage
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('insertimage') is used.
-        */
-        cmd_insertimage: function(value) {
-            var exec = true, _img = null, action = 'insertimage',
-                el = this._getSelectedElement();
-
-            if (value === '') {
-                value = this.get('blankimage');
-            }
-
-            /**
-            * @knownissue
-            * @browser Safari 2.x
-            * @description The issue here is that we have no way of knowing where the cursor position is
-            * inside of the iframe, so we have to place the newly inserted data in the best place that we can.
-            */
-            
-            if (this._isElement(el, 'img')) {
-                this.currentElement[0] = el;
-                exec = false;
-            } else {
-                if (this._getDoc().queryCommandEnabled(action)) {
-                    this._getDoc().execCommand('insertimage', false, value);
-                    var imgs = this._getDoc().getElementsByTagName('img');
-                    for (var i = 0; i < imgs.length; i++) {
-                        if (!YAHOO.util.Dom.hasClass(imgs[i], 'yui-img')) {
-                            YAHOO.util.Dom.addClass(imgs[i], 'yui-img');
-                            this.currentElement[0] = imgs[i];
-                        }
-                    }
-                    exec = false;
-                } else {
-                    if (el == this._getDoc().body) {
-                        _img = this._getDoc().createElement('img');
-                        _img.setAttribute('src', value);
-                        YAHOO.util.Dom.addClass(_img, 'yui-img');
-                        this._getDoc().body.appendChild(_img);
-                    } else {
-                        this._createCurrentElement('img');
-                        _img = this._getDoc().createElement('img');
-                        _img.setAttribute('src', value);
-                        YAHOO.util.Dom.addClass(_img, 'yui-img');
-                        this.currentElement[0].parentNode.replaceChild(_img, this.currentElement[0]);
-                    }
-                    this.currentElement[0] = _img;
-                    exec = false;
-                }
-            }
-            return [exec];
-        },
-        /**
-        * @method cmd_inserthtml
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('inserthtml') is used.
-        */
-        cmd_inserthtml: function(value) {
-            var exec = true, action = 'inserthtml', _span = null, _range = null;
-            /**
-            * @knownissue
-            * @browser Safari 2.x
-            * @description The issue here is that we have no way of knowing where the cursor position is
-            * inside of the iframe, so we have to place the newly inserted data in the best place that we can.
-            */
-            if (this.browser.webkit && !this._getDoc().queryCommandEnabled(action)) {
-                this._createCurrentElement('img');
-                _span = this._getDoc().createElement('span');
-                _span.innerHTML = value;
-                this.currentElement[0].parentNode.replaceChild(_span, this.currentElement[0]);
-                exec = false;
-            } else if (this.browser.ie) {
-                _range = this._getRange();
-                if (_range.item) {
-                    _range.item(0).outerHTML = value;
-                } else {
-                    _range.pasteHTML(value);
-                }
-                exec = false;                    
-            }
-            return [exec];
-        },
-        /**
-        * @method cmd_list
-        * @param tag The tag of the list you want to create (eg, ul or ol)
-        * @description This is a combined execCommand override method. It is called from the cmd_insertorderedlist and cmd_insertunorderedlist methods.
-        */
-        cmd_list: function(tag) {
-            var exec = true, list = null, li = 0, el = null, str = '',
-                selEl = this._getSelectedElement(), action = 'insertorderedlist';
-                if (tag == 'ul') {
-                    action = 'insertunorderedlist';
-                }
-            /**
-            * @knownissue Safari 2.+ doesn't support ordered and unordered lists
-            * @browser Safari 2.x
-            * The issue with this workaround is that when applied to a set of text
-            * that has BR's in it, Safari may or may not pick up the individual items as
-            * list items. This is fixed in WebKit (Safari 3)
-            * 2.6.0: Seems there are still some issues with List Creation and Safari 3, reverting to previously working Safari 2.x code
-            */
-            //if ((this.browser.webkit && !this._getDoc().queryCommandEnabled(action))) {
-            if (this.browser.webkit) {
-                if (this._isElement(selEl, 'li') && this._isElement(selEl.parentNode, tag)) {
-                    el = selEl.parentNode;
-                    list = this._getDoc().createElement('span');
-                    YAHOO.util.Dom.addClass(list, 'yui-non');
-                    str = '';
-                    var lis = el.getElementsByTagName('li');
-                    for (li = 0; li < lis.length; li++) {
-                        str += '<div>' + lis[li].innerHTML + '</div>';
-                    }
-                    list.innerHTML = str;
-                    this.currentElement[0] = el;
-                    this.currentElement[0].parentNode.replaceChild(list, this.currentElement[0]);
-                } else {
-                    this._createCurrentElement(tag.toLowerCase());
-                    list = this._getDoc().createElement(tag);
-                    for (li = 0; li < this.currentElement.length; li++) {
-                        var newli = this._getDoc().createElement('li');
-                        newli.innerHTML = this.currentElement[li].innerHTML + '<span class="yui-non">&nbsp;</span>&nbsp;';
-                        list.appendChild(newli);
-                        if (li > 0) {
-                            this.currentElement[li].parentNode.removeChild(this.currentElement[li]);
-                        }
-                    }
-                    this.currentElement[0].parentNode.replaceChild(list, this.currentElement[0]);
-                    this.currentElement[0] = list;
-                    var _h = this.currentElement[0].firstChild;
-                    _h = Dom.getElementsByClassName('yui-non', 'span', _h)[0];
-                    this._getSelection().setBaseAndExtent(_h, 1, _h, _h.innerText.length);
-                }
-                exec = false;
-            } else {
-                el = this._getSelectedElement();
-                if (this._isElement(el, 'li') && this._isElement(el.parentNode, tag) || (this.browser.ie && this._isElement(this._getRange().parentElement, 'li')) || (this.browser.ie && this._isElement(el, 'ul')) || (this.browser.ie && this._isElement(el, 'ol'))) { //we are in a list..
-                    if (this.browser.ie) {
-                        if ((this.browser.ie && this._isElement(el, 'ul')) || (this.browser.ie && this._isElement(el, 'ol'))) {
-                            el = el.getElementsByTagName('li')[0];
-                        }
-                        str = '';
-                        var lis2 = el.parentNode.getElementsByTagName('li');
-                        for (var j = 0; j < lis2.length; j++) {
-                            str += lis2[j].innerHTML + '<br>';
-                        }
-                        var newEl = this._getDoc().createElement('span');
-                        newEl.innerHTML = str;
-                        el.parentNode.parentNode.replaceChild(newEl, el.parentNode);
-                    } else {
-                        this.nodeChange();
-                        this._getDoc().execCommand(action, '', el.parentNode);
-                        this.nodeChange();
-                    }
-                    exec = false;
-                }
-                if (this.browser.opera) {
-                    var self = this;
-                    window.setTimeout(function() {
-                        var liso = self._getDoc().getElementsByTagName('li');
-                        for (var i = 0; i < liso.length; i++) {
-                            if (liso[i].innerHTML.toLowerCase() == '<br>') {
-                                liso[i].parentNode.parentNode.removeChild(liso[i].parentNode);
-                            }
-                        }
-                    },30);
-                }
-                if (this.browser.ie && exec) {
-                    var html = '';
-                    if (this._getRange().html) {
-                        html = '<li>' + this._getRange().html+ '</li>';
-                    } else {
-                        var t = this._getRange().text.split('\n');
-                        if (t.length > 1) {
-                            html = '';
-                            for (var ie = 0; ie < t.length; ie++) {
-                                html += '<li>' + t[ie] + '</li>';
-                            }
-                        } else {
-                            var txt = this._getRange().text;
-                            if (txt === '') {
-                                html = '<li id="new_list_item">' + txt + '</li>';
-                            } else {
-                                html = '<li>' + txt + '</li>';
-                            }
-                        }
-                    }
-                    this._getRange().pasteHTML('<' + tag + '>' + html + '</' + tag + '>');
-                    var new_item = this._getDoc().getElementById('new_list_item');
-                    if (new_item) {
-                        var range = this._getDoc().body.createTextRange();
-                        range.moveToElementText(new_item);
-                        range.collapse(false);
-                        range.select();                       
-                        new_item.id = '';
-                    }
-                    exec = false;
-                }
-            }
-            return exec;
-        },
-        /**
-        * @method cmd_insertorderedlist
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('insertorderedlist ') is used.
-        */
-        cmd_insertorderedlist: function(value) {
-            return [this.cmd_list('ol')];
-        },
-        /**
-        * @method cmd_insertunorderedlist 
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('insertunorderedlist') is used.
-        */
-        cmd_insertunorderedlist: function(value) {
-            return [this.cmd_list('ul')];
-        },
-        /**
-        * @method cmd_fontname
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('fontname') is used.
-        */
-        cmd_fontname: function(value) {
-            var exec = true,
-                selEl = this._getSelectedElement();
-
-            this.currentFont = value;
-            if (selEl && selEl.tagName && !this._hasSelection() && !this._isElement(selEl, 'body') && !this.get('insert')) {
-                YAHOO.util.Dom.setStyle(selEl, 'font-family', value);
-                exec = false;
-            } else if (this.get('insert') && !this._hasSelection()) {
-                var el = this._createInsertElement({ fontFamily: value });
-                exec = false;
-            }
-            return [exec];
-        },
-        /**
-        * @method cmd_fontsize
-        * @param value Value passed from the execCommand method
-        * @description This is an execCommand override method. It is called from execCommand when the execCommand('fontsize') is used.
-        */
-        cmd_fontsize: function(value) {
-            var el = null;
-            if (this.currentElement && (this.currentElement.length > 0) && (!this._hasSelection()) && (!this.get('insert'))) {
-                YAHOO.util.Dom.setStyle(this.currentElement, 'fontSize', value);
-            } else if (!this._isElement(this._getSelectedElement(), 'body')) {
-                el = this._getSelectedElement();
-                YAHOO.util.Dom.setStyle(el, 'fontSize', value);
-                if (this.get('insert') && this.browser.ie) {
-                    var r = this._getRange();
-                    r.collapse(false);
-                    r.select();
-                } else {
-                    this._selectNode(el);
-                }
-            } else {
-                if (this.get('insert') && !this._hasSelection()) {
-                    el = this._createInsertElement({ fontSize: value });
-                    this.currentElement[0] = el;
-                    this._selectNode(this.currentElement[0]);
-                } else {
-                    this._createCurrentElement('span', {'fontSize': value });
-                    this._selectNode(this.currentElement[0]);
-                }
-            }
-            return [false];
-        },
-    /* }}} */
-        /**
-        * @private
-        * @method _swapEl
-        * @param {HTMLElement} el The element to swap with
-        * @param {String} tagName The tagname of the element that you wish to create
-        * @param {Function} callback (optional) A function to run on the element after it is created, but before it is replaced. An element reference is passed to this function.
-        * @description This function will create a new element in the DOM and populate it with the contents of another element. Then it will assume it's place.
-        */
-        _swapEl: function(el, tagName, callback) {
-            var _el = this._getDoc().createElement(tagName);
-            if (el) {
-                _el.innerHTML = el.innerHTML;
-            }
-            if (typeof callback == 'function') {
-                callback.call(this, _el);
-            }
-            if (el) {
-                el.parentNode.replaceChild(_el, el);
-            }
-            return _el;
-        },
-        /**
-        * @private
-        * @method _createInsertElement
-        * @description Creates a new "currentElement" then adds some text (and other things) to make it selectable and stylable. Then the user can continue typing.
-        * @param {Object} css (optional) Object literal containing styles to apply to the new element.
-        * @return
-        */
-        _createInsertElement: function(css) {
-            this._createCurrentElement('span', css);
-            var el = this.currentElement[0];
-            if (this.browser.webkit) {
-                //Little Safari Hackery here..
-                el.innerHTML = '<span class="yui-non">&nbsp;</span>';
-                el = el.firstChild;
-                this._getSelection().setBaseAndExtent(el, 1, el, el.innerText.length);                    
-            } else if (this.browser.ie || this.browser.opera) {
-                el.innerHTML = '&nbsp;';
-            }
-            this._focusWindow();
-            this._selectNode(el, true);
-            return el;
-        },
-        /**
-        * @private
-        * @method _createCurrentElement
-        * @param {String} tagName (optional defaults to a) The tagname of the element that you wish to create
-        * @param {Object} tagStyle (optional) Object literal containing styles to apply to the new element.
-        * @description This is a work around for the various browser issues with execCommand. This method will run <code>execCommand('fontname', false, 'yui-tmp')</code> on the given selection.
-        * It will then search the document for an element with the font-family set to <strong>yui-tmp</strong> and replace that with another span that has other information in it, then assign the new span to the 
-        * <code>this.currentElement</code> array, so we now have element references to the elements that were just modified. At this point we can use standard DOM manipulation to change them as we see fit.
-        */
-        _createCurrentElement: function(tagName, tagStyle) {
-            tagName = ((tagName) ? tagName : 'a');
-            var tar = null,
-                el = [],
-                _doc = this._getDoc();
-            
-            if (this.currentFont) {
-                if (!tagStyle) {
-                    tagStyle = {};
-                }
-                tagStyle.fontFamily = this.currentFont;
-                this.currentFont = null;
-            }
-            this.currentElement = [];
-
-            var _elCreate = function(tagName, tagStyle) {
-                var el = null;
-                tagName = ((tagName) ? tagName : 'span');
-                tagName = tagName.toLowerCase();
-                switch (tagName) {
-                    case 'h1':
-                    case 'h2':
-                    case 'h3':
-                    case 'h4':
-                    case 'h5':
-                    case 'h6':
-                        el = _doc.createElement(tagName);
-                        break;
-                    default:
-                        el = _doc.createElement(tagName);
-                        if (tagName === 'span') {
-                            YAHOO.util.Dom.addClass(el, 'yui-tag-' + tagName);
-                            YAHOO.util.Dom.addClass(el, 'yui-tag');
-                            el.setAttribute('tag', tagName);
-                        }
-
-                        for (var k in tagStyle) {
-                            if (YAHOO.lang.hasOwnProperty(tagStyle, k)) {
-                                el.style[k] = tagStyle[k];
-                            }
-                        }
-                        break;
-                }
-                return el;
-            };
-
-            if (!this._hasSelection()) {
-                if (this._getDoc().queryCommandEnabled('insertimage')) {
-                    this._getDoc().execCommand('insertimage', false, 'yui-tmp-img');
-                    var imgs = this._getDoc().getElementsByTagName('img');
-                    for (var j = 0; j < imgs.length; j++) {
-                        if (imgs[j].getAttribute('src', 2) == 'yui-tmp-img') {
-                            el = _elCreate(tagName, tagStyle);
-                            imgs[j].parentNode.replaceChild(el, imgs[j]);
-                            this.currentElement[this.currentElement.length] = el;
-                        }
-                    }
-                } else {
-                    if (this.currentEvent) {
-                        tar = YAHOO.util.Event.getTarget(this.currentEvent);
-                    } else {
-                        //For Safari..
-                        tar = this._getDoc().body;                        
-                    }
-                }
-                if (tar) {
-                    /**
-                    * @knownissue
-                    * @browser Safari 2.x
-                    * @description The issue here is that we have no way of knowing where the cursor position is
-                    * inside of the iframe, so we have to place the newly inserted data in the best place that we can.
-                    */
-                    el = _elCreate(tagName, tagStyle);
-                    if (this._isElement(tar, 'body') || this._isElement(tar, 'html')) {
-                        if (this._isElement(tar, 'html')) {
-                            tar = this._getDoc().body;
-                        }
-                        tar.appendChild(el);
-                    } else if (tar.nextSibling) {
-                        tar.parentNode.insertBefore(el, tar.nextSibling);
-                    } else {
-                        tar.parentNode.appendChild(el);
-                    }
-                    //this.currentElement = el;
-                    this.currentElement[this.currentElement.length] = el;
-                    this.currentEvent = null;
-                    if (this.browser.webkit) {
-                        //Force Safari to focus the new element
-                        this._getSelection().setBaseAndExtent(el, 0, el, 0);
-                        if (this.browser.webkit3) {
-                            this._getSelection().collapseToStart();
-                        } else {
-                            this._getSelection().collapse(true);
-                        }
-                    }
-                }
-            } else {
-                //Force CSS Styling for this action...
-                this._setEditorStyle(true);
-                this._getDoc().execCommand('fontname', false, 'yui-tmp');
-                var _tmp = [], __tmp, __els = ['font', 'span', 'i', 'b', 'u'];
-
-                if (!this._isElement(this._getSelectedElement(), 'body')) {
-                    __els[__els.length] = this._getDoc().getElementsByTagName(this._getSelectedElement().tagName);
-                    __els[__els.length] = this._getDoc().getElementsByTagName(this._getSelectedElement().parentNode.tagName);
-                }
-                for (var _els = 0; _els < __els.length; _els++) {
-                    var _tmp1 = this._getDoc().getElementsByTagName(__els[_els]);
-                    for (var e = 0; e < _tmp1.length; e++) {
-                        _tmp[_tmp.length] = _tmp1[e];
-                    }
-                }
-                
-                for (var i = 0; i < _tmp.length; i++) {
-                    if ((YAHOO.util.Dom.getStyle(_tmp[i], 'font-family') == 'yui-tmp') || (_tmp[i].face && (_tmp[i].face == 'yui-tmp'))) {
-                        //TODO Why is this here?!?
-                        //el = _elCreate(_tmp[i].tagName, tagStyle);
-                        el = _elCreate(tagName, tagStyle);
-                        el.innerHTML = _tmp[i].innerHTML;
-                        if (this._isElement(_tmp[i], 'ol') || (this._isElement(_tmp[i], 'ul'))) {
-                            var fc = _tmp[i].getElementsByTagName('li')[0];
-                            _tmp[i].style.fontFamily = 'inherit';
-                            fc.style.fontFamily = 'inherit';
-                            el.innerHTML = fc.innerHTML;
-                            fc.innerHTML = '';
-                            fc.appendChild(el);
-                            this.currentElement[this.currentElement.length] = el;
-                        } else if (this._isElement(_tmp[i], 'li')) {
-                            _tmp[i].innerHTML = '';
-                            _tmp[i].appendChild(el);
-                            _tmp[i].style.fontFamily = 'inherit';
-                            this.currentElement[this.currentElement.length] = el;
-                        } else {
-                            if (_tmp[i].parentNode) {
-                                _tmp[i].parentNode.replaceChild(el, _tmp[i]);
-                                this.currentElement[this.currentElement.length] = el;
-                                this.currentEvent = null;
-                                if (this.browser.webkit) {
-                                    //Force Safari to focus the new element
-                                    this._getSelection().setBaseAndExtent(el, 0, el, 0);
-                                    if (this.browser.webkit3) {
-                                        this._getSelection().collapseToStart();
-                                    } else {
-                                        this._getSelection().collapse(true);
-                                    }
-                                }
-                                if (this.browser.ie && tagStyle && tagStyle.fontSize) {
-                                    this._getSelection().empty();
-                                }
-                                if (this.browser.gecko) {
-                                    this._getSelection().collapseToStart();
-                                }
-                            }
-                        }
-                    }
-                }
-                var len = this.currentElement.length;
-                for (var o = 0; o < len; o++) {
-                    if ((o + 1) != len) { //Skip the last one in the list
-                        if (this.currentElement[o] && this.currentElement[o].nextSibling) {
-                            if (this._isElement(this.currentElement[o], 'br')) {
-                                this.currentElement[this.currentElement.length] = this.currentElement[o].nextSibling;
-                            }
-                        }
-                    }
-                }
-            }
-        },
-        /**
-        * @method saveHTML
-        * @description Cleans the HTML with the cleanHTML method then places that string back into the textarea.
-        * @return String
-        */
-        saveHTML: function() {
-            var html = this.cleanHTML();
-            if (this._textarea) {
-                this.get('element').value = html;
-            } else {
-                this.get('element').innerHTML = html;
-            }
-            if (this.get('saveEl') !== this.get('element')) {
-                var out = this.get('saveEl');
-                if (Lang.isString(out)) {
-                    out = Dom.get(out);
-                }
-                if (out) {
-                    if (out.tagName.toLowerCase() === 'textarea') {
-                        out.value = html;
-                    } else {
-                        out.innerHTML = html;
-                    }
-                }
-            }
-            return html;
-        },
-        /**
-        * @method setEditorHTML
-        * @param {String} incomingHTML The html content to load into the editor
-        * @description Loads HTML into the editors body
-        */
-        setEditorHTML: function(incomingHTML) {
-            var html = this._cleanIncomingHTML(incomingHTML);
-            this._getDoc().body.innerHTML = html;
-            this.nodeChange();
-        },
-        /**
-        * @method getEditorHTML
-        * @description Gets the unprocessed/unfiltered HTML from the editor
-        */
-        getEditorHTML: function() {
-            var b = this._getDoc().body;
-            if (b === null) {
-                return null;
-            }
-            return this._getDoc().body.innerHTML;
-        },
-        /**
-        * @method show
-        * @description This method needs to be called if the Editor was hidden (like in a TabView or Panel). It is used to reset the editor after being in a container that was set to display none.
-        */
-        show: function() {
-            if (this.browser.gecko) {
-                this._setDesignMode('on');
-                this._focusWindow();
-            }
-            if (this.browser.webkit) {
-                var self = this;
-                window.setTimeout(function() {
-                    self._setInitialContent.call(self);
-                }, 10);
-            }
-            //Adding this will close all other Editor window's when showing this one.
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            //Put the iframe back in place
-            this.get('iframe').setStyle('position', 'static');
-            this.get('iframe').setStyle('left', '');
-        },
-        /**
-        * @method hide
-        * @description This method needs to be called if the Editor is to be hidden (like in a TabView or Panel). It should be called to clear timeouts and close open editor windows.
-        */
-        hide: function() {
-            //Adding this will close all other Editor window's.
-            if (this.currentWindow) {
-                this.closeWindow();
-            }
-            if (this._fixNodesTimer) {
-                clearTimeout(this._fixNodesTimer);
-                this._fixNodesTimer = null;
-            }
-            if (this._nodeChangeTimer) {
-                clearTimeout(this._nodeChangeTimer);
-                this._nodeChangeTimer = null;
-            }
-            this._lastNodeChange = 0;
-            //Move the iframe off of the screen, so that in containers with visiblity hidden, IE will not cover other elements.
-            this.get('iframe').setStyle('position', 'absolute');
-            this.get('iframe').setStyle('left', '-9999px');
-        },
-        /**
-        * @method _cleanIncomingHTML
-        * @param {String} html The unfiltered HTML
-        * @description Process the HTML with a few regexes to clean it up and stabilize the input
-        * @return {String} The filtered HTML
-        */
-        _cleanIncomingHTML: function(html) {
-            html = html.replace(/<strong([^>]*)>/gi, '<b$1>');
-            html = html.replace(/<\/strong>/gi, '</b>');   
-
-            //replace embed before em check
-            html = html.replace(/<embed([^>]*)>/gi, '<YUI_EMBED$1>');
-            html = html.replace(/<\/embed>/gi, '</YUI_EMBED>');
-
-            html = html.replace(/<em([^>]*)>/gi, '<i$1>');
-            html = html.replace(/<\/em>/gi, '</i>');
-            
-            //Put embed tags back in..
-            html = html.replace(/<YUI_EMBED([^>]*)>/gi, '<embed$1>');
-            html = html.replace(/<\/YUI_EMBED>/gi, '</embed>');
-            if (this.get('plainText')) {
-                html = html.replace(/\n/g, '<br>').replace(/\r/g, '<br>');
-                html = html.replace(/  /gi, '&nbsp;&nbsp;'); //Replace all double spaces
-                html = html.replace(/\t/gi, '&nbsp;&nbsp;&nbsp;&nbsp;'); //Replace all tabs
-            }
-            //Removing Script Tags from the Editor
-            html = html.replace(/<script([^>]*)>/gi, '<bad>');
-            html = html.replace(/<\/script([^>]*)>/gi, '</bad>');
-            html = html.replace(/&lt;script([^>]*)&gt;/gi, '<bad>');
-            html = html.replace(/&lt;\/script([^>]*)&gt;/gi, '</bad>');
-            //Replace the line feeds
-            html = html.replace(/\n/g, '<YUI_LF>').replace(/\r/g, '<YUI_LF>');
-            //Remove Bad HTML elements (used to be script nodes)
-            html = html.replace(new RegExp('<bad([^>]*)>(.*?)<\/bad>', 'gi'), '');
-            //Replace the lines feeds
-            html = html.replace(/<YUI_LF>/g, '\n');
-            return html;
-        },
-        /**
-        * @method cleanHTML
-        * @param {String} html The unfiltered HTML
-        * @description Process the HTML with a few regexes to clean it up and stabilize the output
-        * @return {String} The filtered HTML
-        */
-        cleanHTML: function(html) {
-            //Start Filtering Output
-            //Begin RegExs..
-            if (!html) { 
-                html = this.getEditorHTML();
-            }
-            var markup = this.get('markup');
-            //Make some backups...
-            html = this.pre_filter_linebreaks(html, markup);
-
-		    html = html.replace(/<img([^>]*)\/>/gi, '<YUI_IMG$1>');
-		    html = html.replace(/<img([^>]*)>/gi, '<YUI_IMG$1>');
-
-		    html = html.replace(/<input([^>]*)\/>/gi, '<YUI_INPUT$1>');
-		    html = html.replace(/<input([^>]*)>/gi, '<YUI_INPUT$1>');
-
-		    html = html.replace(/<ul([^>]*)>/gi, '<YUI_UL$1>');
-		    html = html.replace(/<\/ul>/gi, '<\/YUI_UL>');
-		    html = html.replace(/<blockquote([^>]*)>/gi, '<YUI_BQ$1>');
-		    html = html.replace(/<\/blockquote>/gi, '<\/YUI_BQ>');
-
-		    html = html.replace(/<embed([^>]*)>/gi, '<YUI_EMBED$1>');
-		    html = html.replace(/<\/embed>/gi, '<\/YUI_EMBED>');
-
-            //Convert b and i tags to strong and em tags
-            if ((markup == 'semantic') || (markup == 'xhtml')) {
-                html = html.replace(/<i(\s+[^>]*)?>/gi, '<em$1>');
-                html = html.replace(/<\/i>/gi, '</em>');
-                html = html.replace(/<b(\s+[^>]*)?>/gi, '<strong$1>');
-                html = html.replace(/<\/b>/gi, '</strong>');
-            }
-            
-            //Case Changing
-		    html = html.replace(/<font/gi, '<font');
-		    html = html.replace(/<\/font>/gi, '</font>');
-		    html = html.replace(/<span/gi, '<span');
-		    html = html.replace(/<\/span>/gi, '</span>');
-            if ((markup == 'semantic') || (markup == 'xhtml') || (markup == 'css')) {
-                html = html.replace(new RegExp('<font([^>]*)face="([^>]*)">(.*?)<\/font>', 'gi'), '<span $1 style="font-family: $2;">$3</span>');
-                html = html.replace(/<u/gi, '<span style="text-decoration: underline;"');
-                if (this.browser.webkit) {
-                    html = html.replace(new RegExp('<span class="Apple-style-span" style="font-weight: bold;">([^>]*)<\/span>', 'gi'), '<strong>$1</strong>');
-                    html = html.replace(new RegExp('<span class="Apple-style-span" style="font-style: italic;">([^>]*)<\/span>', 'gi'), '<em>$1</em>');
-                }
-                html = html.replace(/\/u>/gi, '/span>');
-                if (markup == 'css') {
-                    html = html.replace(/<em([^>]*)>/gi, '<i$1>');
-                    html = html.replace(/<\/em>/gi, '</i>');
-                    html = html.replace(/<strong([^>]*)>/gi, '<b$1>');
-                    html = html.replace(/<\/strong>/gi, '</b>');
-                    html = html.replace(/<b/gi, '<span style="font-weight: bold;"');
-                    html = html.replace(/\/b>/gi, '/span>');
-                    html = html.replace(/<i/gi, '<span style="font-style: italic;"');
-                    html = html.replace(/\/i>/gi, '/span>');
-                }
-                html = html.replace(/  /gi, ' '); //Replace all double spaces and replace with a single
-            } else {
-		        html = html.replace(/<u/gi, '<u');
-		        html = html.replace(/\/u>/gi, '/u>');
-            }
-		    html = html.replace(/<ol([^>]*)>/gi, '<ol$1>');
-		    html = html.replace(/\/ol>/gi, '/ol>');
-		    html = html.replace(/<li/gi, '<li');
-		    html = html.replace(/\/li>/gi, '/li>');
-            html = this.filter_safari(html);
-
-            html = this.filter_internals(html);
-
-            html = this.filter_all_rgb(html);
-
-            //Replace our backups with the real thing
-            html = this.post_filter_linebreaks(html, markup);
-
-            if (markup == 'xhtml') {
-		        html = html.replace(/<YUI_IMG([^>]*)>/g, '<img $1 />');
-		        html = html.replace(/<YUI_INPUT([^>]*)>/g, '<input $1 />');
-            } else {
-		        html = html.replace(/<YUI_IMG([^>]*)>/g, '<img $1>');
-		        html = html.replace(/<YUI_INPUT([^>]*)>/g, '<input $1>');
-            }
-		    html = html.replace(/<YUI_UL([^>]*)>/g, '<ul$1>');
-		    html = html.replace(/<\/YUI_UL>/g, '<\/ul>');
-
-            html = this.filter_invalid_lists(html);
-
-		    html = html.replace(/<YUI_BQ([^>]*)>/g, '<blockquote$1>');
-		    html = html.replace(/<\/YUI_BQ>/g, '<\/blockquote>');
-
-		    html = html.replace(/<YUI_EMBED([^>]*)>/g, '<embed$1>');
-		    html = html.replace(/<\/YUI_EMBED>/g, '<\/embed>');
-            
-            //This should fix &amp;s in URL's
-            html = html.replace(' &amp; ', 'YUI_AMP');
-            html = html.replace('&amp;', '&');
-            html = html.replace('YUI_AMP', '&amp;');
-
-            //Trim the output, removing whitespace from the beginning and end
-            html = YAHOO.lang.trim(html);
-
-            if (this.get('removeLineBreaks')) {
-                html = html.replace(/\n/g, '').replace(/\r/g, '');
-                html = html.replace(/  /gi, ' '); //Replace all double spaces and replace with a single
-            }
-            
-            //First empty span
-            if (html.substring(0, 6).toLowerCase() == '<span>')  {
-                html = html.substring(6);
-                //Last empty span
-                if (html.substring(html.length - 7, html.length).toLowerCase() == '</span>')  {
-                    html = html.substring(0, html.length - 7);
-                }
-            }
-
-            for (var v in this.invalidHTML) {
-                if (YAHOO.lang.hasOwnProperty(this.invalidHTML, v)) {
-                    if (Lang.isObject(v) && v.keepContents) {
-                        html = html.replace(new RegExp('<' + v + '([^>]*)>(.*?)<\/' + v + '>', 'gi'), '$1');
-                    } else {
-                        html = html.replace(new RegExp('<' + v + '([^>]*)>(.*?)<\/' + v + '>', 'gi'), '');
-                    }
-                }
-            }
-
-            this.fireEvent('cleanHTML', { type: 'cleanHTML', target: this, html: html });
-
-            return html;
-        },
-        /**
-        * @method filter_invalid_lists
-        * @param String html The HTML string to filter
-        * @description Filters invalid ol and ul list markup, converts this: <li></li><ol>..</ol> to this: <li></li><li><ol>..</ol></li>
-        */
-        filter_invalid_lists: function(html) {
-            html = html.replace(/<\/li>\n/gi, '</li>');
-
-            html = html.replace(/<\/li><ol>/gi, '</li><li><ol>');
-            html = html.replace(/<\/ol>/gi, '</ol></li>');
-            html = html.replace(/<\/ol><\/li>\n/gi, "</ol>\n");
-
-            html = html.replace(/<\/li><ul>/gi, '</li><li><ul>');
-            html = html.replace(/<\/ul>/gi, '</ul></li>');
-            html = html.replace(/<\/ul><\/li>\n?/gi, "</ul>\n");
-
-            html = html.replace(/<\/li>/gi, "</li>\n");
-            html = html.replace(/<\/ol>/gi, "</ol>\n");
-            html = html.replace(/<ol>/gi, "<ol>\n");
-            html = html.replace(/<ul>/gi, "<ul>\n");
-            return html;
-        },
-        /**
-        * @method filter_safari
-        * @param String html The HTML string to filter
-        * @description Filters strings specific to Safari
-        * @return String
-        */
-        filter_safari: function(html) {
-            if (this.browser.webkit) {
-                //<span class="Apple-tab-span" style="white-space:pre">	</span>
-                html = html.replace(/<span class="Apple-tab-span" style="white-space:pre">([^>])<\/span>/gi, '&nbsp;&nbsp;&nbsp;&nbsp;');
-                html = html.replace(/Apple-style-span/gi, '');
-                html = html.replace(/style="line-height: normal;"/gi, '');
-                //Remove bogus LI's
-                html = html.replace(/<li><\/li>/gi, '');
-                html = html.replace(/<li> <\/li>/gi, '');
-                html = html.replace(/<li>  <\/li>/gi, '');
-                //Remove bogus DIV's - updated from just removing the div's to replacing /div with a break
-                if (this.get('ptags')) {
-		            html = html.replace(/<div([^>]*)>/g, '<p$1>');
-				    html = html.replace(/<\/div>/gi, '</p>');
-                } else {
-                    html = html.replace(/<div>/gi, '');
-				    html = html.replace(/<\/div>/gi, '<br>');
-                }
-            }
-            return html;
-        },
-        /**
-        * @method filter_internals
-        * @param String html The HTML string to filter
-        * @description Filters internal RTE strings and bogus attrs we don't want
-        * @return String
-        */
-        filter_internals: function(html) {
-		    html = html.replace(/\r/g, '');
-            //Fix stuff we don't want
-	        html = html.replace(/<\/?(body|head|html)[^>]*>/gi, '');
-            //Fix last BR in LI
-		    html = html.replace(/<YUI_BR><\/li>/gi, '</li>');
-
-		    html = html.replace(/yui-tag-span/gi, '');
-		    html = html.replace(/yui-tag/gi, '');
-		    html = html.replace(/yui-non/gi, '');
-		    html = html.replace(/yui-img/gi, '');
-		    html = html.replace(/ tag="span"/gi, '');
-		    html = html.replace(/ class=""/gi, '');
-		    html = html.replace(/ style=""/gi, '');
-		    html = html.replace(/ class=" "/gi, '');
-		    html = html.replace(/ class="  "/gi, '');
-		    html = html.replace(/ target=""/gi, '');
-		    html = html.replace(/ title=""/gi, '');
-
-            if (this.browser.ie) {
-		        html = html.replace(/ class= /gi, '');
-		        html = html.replace(/ class= >/gi, '');
-		        html = html.replace(/_height="([^>])"/gi, '');
-		        html = html.replace(/_width="([^>])"/gi, '');
-            }
-            
-            return html;
-        },
-        /**
-        * @method filter_all_rgb
-        * @param String str The HTML string to filter
-        * @description Converts all RGB color strings found in passed string to a hex color, example: style="color: rgb(0, 255, 0)" converts to style="color: #00ff00"
-        * @return String
-        */
-        filter_all_rgb: function(str) {
-            var exp = new RegExp("rgb\\s*?\\(\\s*?([0-9]+).*?,\\s*?([0-9]+).*?,\\s*?([0-9]+).*?\\)", "gi");
-            var arr = str.match(exp);
-            if (Lang.isArray(arr)) {
-                for (var i = 0; i < arr.length; i++) {
-                    var color = this.filter_rgb(arr[i]);
-                    str = str.replace(arr[i].toString(), color);
-                }
-            }
-            
-            return str;
-        },
-        /**
-        * @method filter_rgb
-        * @param String css The CSS string containing rgb(#,#,#);
-        * @description Converts an RGB color string to a hex color, example: rgb(0, 255, 0) converts to #00ff00
-        * @return String
-        */
-        filter_rgb: function(css) {
-            if (css.toLowerCase().indexOf('rgb') != -1) {
-                var exp = new RegExp("(.*?)rgb\\s*?\\(\\s*?([0-9]+).*?,\\s*?([0-9]+).*?,\\s*?([0-9]+).*?\\)(.*?)", "gi");
-                var rgb = css.replace(exp, "$1,$2,$3,$4,$5").split(',');
-            
-                if (rgb.length == 5) {
-                    var r = parseInt(rgb[1], 10).toString(16);
-                    var g = parseInt(rgb[2], 10).toString(16);
-                    var b = parseInt(rgb[3], 10).toString(16);
-
-                    r = r.length == 1 ? '0' + r : r;
-                    g = g.length == 1 ? '0' + g : g;
-                    b = b.length == 1 ? '0' + b : b;
-
-                    css = "#" + r + g + b;
-                }
-            }
-            return css;
-        },
-        /**
-        * @method pre_filter_linebreaks
-        * @param String html The HTML to filter
-        * @param String markup The markup type to filter to
-        * @description HTML Pre Filter
-        * @return String
-        */
-        pre_filter_linebreaks: function(html, markup) {
-            if (this.browser.webkit) {
-		        html = html.replace(/<br class="khtml-block-placeholder">/gi, '<YUI_BR>');
-		        html = html.replace(/<br class="webkit-block-placeholder">/gi, '<YUI_BR>');
-            }
-		    html = html.replace(/<br>/gi, '<YUI_BR>');
-		    html = html.replace(/<br (.*?)>/gi, '<YUI_BR>');
-		    html = html.replace(/<br\/>/gi, '<YUI_BR>');
-		    html = html.replace(/<br \/>/gi, '<YUI_BR>');
-		    html = html.replace(/<div><YUI_BR><\/div>/gi, '<YUI_BR>');
-		    html = html.replace(/<p>(&nbsp;|&#160;)<\/p>/g, '<YUI_BR>');            
-		    html = html.replace(/<p><br>&nbsp;<\/p>/gi, '<YUI_BR>');
-		    html = html.replace(/<p>&nbsp;<\/p>/gi, '<YUI_BR>');
-            //Fix last BR
-	        html = html.replace(/<YUI_BR>$/, '');
-            //Fix last BR in P
-	        html = html.replace(/<YUI_BR><\/p>/g, '</p>');
-            if (this.browser.ie) {
-	            html = html.replace(/&nbsp;&nbsp;&nbsp;&nbsp;/g, '\t');
-            }
-            return html;
-        },
-        /**
-        * @method post_filter_linebreaks
-        * @param String html The HTML to filter
-        * @param String markup The markup type to filter to
-        * @description HTML Pre Filter
-        * @return String
-        */
-        post_filter_linebreaks: function(html, markup) {
-            if (markup == 'xhtml') {
-		        html = html.replace(/<YUI_BR>/g, '<br />');
-            } else {
-		        html = html.replace(/<YUI_BR>/g, '<br>');
-            }
-            return html;
-        },
-        /**
-        * @method clearEditorDoc
-        * @description Clear the doc of the Editor
-        */
-        clearEditorDoc: function() {
-            this._getDoc().body.innerHTML = '&nbsp;';
-        },
-        /**
-        * @method openWindow
-        * @description Override Method for Advanced Editor
-        */
-        openWindow: function(win) {
-        },
-        /**
-        * @method moveWindow
-        * @description Override Method for Advanced Editor
-        */
-        moveWindow: function() {
-        },
-        /**
-        * @private
-        * @method _closeWindow
-        * @description Override Method for Advanced Editor
-        */
-        _closeWindow: function() {
-        },
-        /**
-        * @method closeWindow
-        * @description Override Method for Advanced Editor
-        */
-        closeWindow: function() {
-            //this.unsubscribeAll('afterExecCommand');
-            this.toolbar.resetAllButtons();
-            this._focusWindow();        
-        },
-        /**
-        * @method destroy
-        * @description Destroys the editor, all of it's elements and objects.
-        * @return {Boolean}
-        */
-        destroy: function() {
-            if (this.resize) {
-                this.resize.destroy();
-            }
-            if (this.dd) {
-                this.dd.unreg();
-            }
-            if (this.get('panel')) {
-                this.get('panel').destroy();
-            }
-            this.saveHTML();
-            this.toolbar.destroy();
-            this.setStyle('visibility', 'visible');
-            this.setStyle('position', 'static');
-            this.setStyle('top', '');
-            this.setStyle('left', '');
-            var textArea = this.get('element');
-            this.get('element_cont').get('parentNode').replaceChild(textArea, this.get('element_cont').get('element'));
-            this.get('element_cont').get('element').innerHTML = '';
-            this.set('handleSubmit', false); //Remove the submit handler
-            return true;
-        },        
-        /**
-        * @method toString
-        * @description Returns a string representing the editor.
-        * @return {String}
-        */
-        toString: function() {
-            var str = 'SimpleEditor';
-            if (this.get && this.get('element_cont')) {
-                str = 'SimpleEditor (#' + this.get('element_cont').get('id') + ')' + ((this.get('disabled') ? ' Disabled' : ''));
-            }
-            return str;
-        }
-    });
-
-/**
-* @event toolbarLoaded
-* @description Event is fired during the render process directly after the Toolbar is loaded. Allowing you to attach events to the toolbar. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event cleanHTML
-* @description Event is fired after the cleanHTML method is called.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event afterRender
-* @description Event is fired after the render process finishes. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorContentLoaded
-* @description Event is fired after the editor iframe's document fully loads and fires it's onload event. From here you can start injecting your own things into the document. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeNodeChange
-* @description Event fires at the beginning of the nodeChange process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event afterNodeChange
-* @description Event fires at the end of the nodeChange process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeExecCommand
-* @description Event fires at the beginning of the execCommand process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event afterExecCommand
-* @description Event fires at the end of the execCommand process. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorMouseUp
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorMouseDown
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorDoubleClick
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorClick
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorKeyUp
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorKeyPress
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event editorKeyDown
-* @param {Event} ev The DOM Event that occured
-* @description Passed through HTML Event. See <a href="YAHOO.util.Element.html#addListener">Element.addListener</a> for more information on listening for this event.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorMouseUp
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorMouseDown
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorDoubleClick
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorClick
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorKeyUp
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorKeyPress
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeEditorKeyDown
-* @param {Event} ev The DOM Event that occured
-* @description Fires before editor event, returning false will stop the internal processing.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-    /**
-     * @description Singleton object used to track the open window objects and panels across the various open editors
-     * @class EditorInfo
-     * @static
-    */
-    YAHOO.widget.EditorInfo = {
-        /**
-        * @private
-        * @property _instances
-        * @description A reference to all editors on the page.
-        * @type Object
-        */
-        _instances: {},
-        /**
-        * @private
-        * @property blankImage
-        * @description A reference to the blankImage url
-        * @type String 
-        */
-        blankImage: '',
-        /**
-        * @private
-        * @property window
-        * @description A reference to the currently open window object in any editor on the page.
-        * @type Object <a href="YAHOO.widget.EditorWindow.html">YAHOO.widget.EditorWindow</a>
-        */
-        window: {},
-        /**
-        * @private
-        * @property panel
-        * @description A reference to the currently open panel in any editor on the page.
-        * @type Object <a href="YAHOO.widget.Overlay.html">YAHOO.widget.Overlay</a>
-        */
-        panel: null,
-        /**
-        * @method getEditorById
-        * @description Returns a reference to the Editor object associated with the given textarea
-        * @param {String/HTMLElement} id The id or reference of the textarea to return the Editor instance of
-        * @return Object <a href="YAHOO.widget.Editor.html">YAHOO.widget.Editor</a>
-        */
-        getEditorById: function(id) {
-            if (!YAHOO.lang.isString(id)) {
-                //Not a string, assume a node Reference
-                id = id.id;
-            }
-            if (this._instances[id]) {
-                return this._instances[id];
-            }
-            return false;
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the EditorInfo.
-        * @return {String}
-        */
-        toString: function() {
-            var len = 0;
-            for (var i in this._instances) {
-                if (Lang.hasOwnProperty(this._instances, i)) {
-                    len++;
-                }
-            }
-            return 'Editor Info (' + len + ' registered intance' + ((len > 1) ? 's' : '') + ')';
-        }
-    };
-
-
-
-    
-})();
-YAHOO.register("simpleeditor", YAHOO.widget.SimpleEditor, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/element/README b/eclipse.org-common/yui/2.6.0/build/element/README
deleted file mode 100644
index a9e4a83..0000000
--- a/eclipse.org-common/yui/2.6.0/build/element/README
+++ /dev/null
@@ -1,34 +0,0 @@
-Element Release Notes
-
-*** version 2.6.0 ***
-* Passing return values from DOM methods (appendChild, insertBefore, etc)
-
-*** version 2.5.2 ***
-no change
-
-*** version 2.5.1 ***
-no change
-
-*** version 2.5.0 ***
-* SetAttributes now correctly handles false values
-
-*** version 2.4.0 ***
-no change
-
-*** version 2.3.1 ***
-no change
-
-*** version 2.3.0 ***
-* setAttributes now sets in order configs were added
-* added subscribe alias for on/addListener
-
-*** version 2.2.2 ***
-* fixed contentReady timing regression
-
-*** version 2.2.1 ***
-* Added support for "dblclick", "focus", "blur", and "submit" event (for elements that support them)
-* Fixed scope correction for addListener/on/subscribe
-
-*** version 2.2.0 ***
-* beta introduction (broken out of TabView for general use)
-* The Element class provides a wrapper for HTMLElements in the DOM and makes simpler common tasks such as adding listeners, manipulating the DOM, and setting and getting attributes.
diff --git a/eclipse.org-common/yui/2.6.0/build/element/element-beta-debug.js b/eclipse.org-common/yui/2.6.0/build/element/element-beta-debug.js
deleted file mode 100644
index af9423b..0000000
--- a/eclipse.org-common/yui/2.6.0/build/element/element-beta-debug.js
+++ /dev/null
@@ -1,1017 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * Provides Attribute configurations.
- * @namespace YAHOO.util
- * @class Attribute
- * @constructor
- * @param hash {Object} The intial Attribute.
- * @param {YAHOO.util.AttributeProvider} The owner of the Attribute instance.
- */
-
-YAHOO.util.Attribute = function(hash, owner) {
-    if (owner) { 
-        this.owner = owner;
-        this.configure(hash, true);
-    }
-};
-
-YAHOO.util.Attribute.prototype = {
-	/**
-     * The name of the attribute.
-	 * @property name
-	 * @type String
-	 */
-    name: undefined,
-    
-	/**
-     * The value of the attribute.
-	 * @property value
-	 * @type String
-	 */
-    value: null,
-    
-	/**
-     * The owner of the attribute.
-	 * @property owner
-	 * @type YAHOO.util.AttributeProvider
-	 */
-    owner: null,
-    
-	/**
-     * Whether or not the attribute is read only.
-	 * @property readOnly
-	 * @type Boolean
-	 */
-    readOnly: false,
-    
-	/**
-     * Whether or not the attribute can only be written once.
-	 * @property writeOnce
-	 * @type Boolean
-	 */
-    writeOnce: false,
-
-	/**
-     * The attribute's initial configuration.
-     * @private
-	 * @property _initialConfig
-	 * @type Object
-	 */
-    _initialConfig: null,
-    
-	/**
-     * Whether or not the attribute's value has been set.
-     * @private
-	 * @property _written
-	 * @type Boolean
-	 */
-    _written: false,
-    
-	/**
-     * The method to use when setting the attribute's value.
-     * The method recieves the new value as the only argument.
-	 * @property method
-	 * @type Function
-	 */
-    method: null,
-    
-	/**
-     * The validator to use when setting the attribute's value.
-	 * @property validator
-	 * @type Function
-     * @return Boolean
-	 */
-    validator: null,
-    
-    /**
-     * Retrieves the current value of the attribute.
-     * @method getValue
-     * @return {any} The current value of the attribute.
-     */
-    getValue: function() {
-        return this.value;
-    },
-    
-    /**
-     * Sets the value of the attribute and fires beforeChange and change events.
-     * @method setValue
-     * @param {Any} value The value to apply to the attribute.
-     * @param {Boolean} silent If true the change events will not be fired.
-     * @return {Boolean} Whether or not the value was set.
-     */
-    setValue: function(value, silent) {
-        var beforeRetVal;
-        var owner = this.owner;
-        var name = this.name;
-        
-        var event = {
-            type: name, 
-            prevValue: this.getValue(),
-            newValue: value
-        };
-        
-        if (this.readOnly || ( this.writeOnce && this._written) ) {
-            YAHOO.log( 'setValue ' + name + ', ' +  value +
-                    ' failed: read only', 'error', 'Attribute');
-            return false; // write not allowed
-        }
-        
-        if (this.validator && !this.validator.call(owner, value) ) {
-            YAHOO.log( 'setValue ' + name + ', ' + value +
-                    ' validation failed', 'error', 'Attribute');
-            return false; // invalid value
-        }
-
-        if (!silent) {
-            beforeRetVal = owner.fireBeforeChangeEvent(event);
-            if (beforeRetVal === false) {
-                YAHOO.log('setValue ' + name + 
-                        ' cancelled by beforeChange event', 'info', 'Attribute');
-                return false;
-            }
-        }
-
-        if (this.method) {
-            this.method.call(owner, value);
-        }
-        
-        this.value = value;
-        this._written = true;
-        
-        event.type = name;
-        
-        if (!silent) {
-            this.owner.fireChangeEvent(event);
-        }
-        
-        return true;
-    },
-    
-    /**
-     * Allows for configuring the Attribute's properties.
-     * @method configure
-     * @param {Object} map A key-value map of Attribute properties.
-     * @param {Boolean} init Whether or not this should become the initial config.
-     */
-    configure: function(map, init) {
-        map = map || {};
-
-        this._written = false; // reset writeOnce
-        this._initialConfig = this._initialConfig || {};
-        
-        for (var key in map) {
-            if ( map.hasOwnProperty(key) ) {
-                this[key] = map[key];
-                if (init) {
-                    this._initialConfig[key] = map[key];
-                }
-            }
-        }
-    },
-    
-    /**
-     * Resets the value to the initial config value.
-     * @method resetValue
-     * @return {Boolean} Whether or not the value was set.
-     */
-    resetValue: function() {
-        return this.setValue(this._initialConfig.value);
-    },
-    
-    /**
-     * Resets the attribute config to the initial config state.
-     * @method resetConfig
-     */
-    resetConfig: function() {
-        this.configure(this._initialConfig);
-    },
-    
-    /**
-     * Resets the value to the current value.
-     * Useful when values may have gotten out of sync with actual properties.
-     * @method refresh
-     * @return {Boolean} Whether or not the value was set.
-     */
-    refresh: function(silent) {
-        this.setValue(this.value, silent);
-    }
-};
-
-(function() {
-    var Lang = YAHOO.util.Lang;
-
-    /*
-    Copyright (c) 2006, Yahoo! Inc. All rights reserved.
-    Code licensed under the BSD License:
-    http://developer.yahoo.net/yui/license.txt
-    */
-    
-    /**
-     * Provides and manages YAHOO.util.Attribute instances
-     * @namespace YAHOO.util
-     * @class AttributeProvider
-     * @uses YAHOO.util.EventProvider
-     */
-    YAHOO.util.AttributeProvider = function() {};
-
-    YAHOO.util.AttributeProvider.prototype = {
-        
-        /**
-         * A key-value map of Attribute configurations
-         * @property _configs
-         * @protected (may be used by subclasses and augmentors)
-         * @private
-         * @type {Object}
-         */
-        _configs: null,
-        /**
-         * Returns the current value of the attribute.
-         * @method get
-         * @param {String} key The attribute whose value will be returned.
-         * @return {Any} The current value of the attribute.
-         */
-        get: function(key){
-            this._configs = this._configs || {};
-            var config = this._configs[key];
-            
-            if (!config || !this._configs.hasOwnProperty(key)) {
-                YAHOO.log(key + ' not found', 'error', 'AttributeProvider');
-                return undefined;
-            }
-            
-            return config.value;
-        },
-        
-        /**
-         * Sets the value of a config.
-         * @method set
-         * @param {String} key The name of the attribute
-         * @param {Any} value The value to apply to the attribute
-         * @param {Boolean} silent Whether or not to suppress change events
-         * @return {Boolean} Whether or not the value was set.
-         */
-        set: function(key, value, silent){
-            this._configs = this._configs || {};
-            var config = this._configs[key];
-            
-            if (!config) {
-                YAHOO.log('set failed: ' + key + ' not found',
-                        'error', 'AttributeProvider');
-                return false;
-            }
-            
-            return config.setValue(value, silent);
-        },
-    
-        /**
-         * Returns an array of attribute names.
-         * @method getAttributeKeys
-         * @return {Array} An array of attribute names.
-         */
-        getAttributeKeys: function(){
-            this._configs = this._configs;
-            var keys = [];
-            var config;
-            for (var key in this._configs) {
-                config = this._configs[key];
-                if ( Lang.hasOwnProperty(this._configs, key) && 
-                        !Lang.isUndefined(config) ) {
-                    keys[keys.length] = key;
-                }
-            }
-            
-            return keys;
-        },
-        
-        /**
-         * Sets multiple attribute values.
-         * @method setAttributes
-         * @param {Object} map  A key-value map of attributes
-         * @param {Boolean} silent Whether or not to suppress change events
-         */
-        setAttributes: function(map, silent){
-            for (var key in map) {
-                if ( Lang.hasOwnProperty(map, key) ) {
-                    this.set(key, map[key], silent);
-                }
-            }
-        },
-    
-        /**
-         * Resets the specified attribute's value to its initial value.
-         * @method resetValue
-         * @param {String} key The name of the attribute
-         * @param {Boolean} silent Whether or not to suppress change events
-         * @return {Boolean} Whether or not the value was set
-         */
-        resetValue: function(key, silent){
-            this._configs = this._configs || {};
-            if (this._configs[key]) {
-                this.set(key, this._configs[key]._initialConfig.value, silent);
-                return true;
-            }
-            return false;
-        },
-    
-        /**
-         * Sets the attribute's value to its current value.
-         * @method refresh
-         * @param {String | Array} key The attribute(s) to refresh
-         * @param {Boolean} silent Whether or not to suppress change events
-         */
-        refresh: function(key, silent) {
-            this._configs = this._configs || {};
-            var configs = this._configs;
-            
-            key = ( ( Lang.isString(key) ) ? [key] : key ) || 
-                    this.getAttributeKeys();
-            
-            for (var i = 0, len = key.length; i < len; ++i) { 
-                if (configs.hasOwnProperty(key[i])) {
-                    this._configs[key[i]].refresh(silent);
-                }
-            }
-        },
-    
-        /**
-         * Adds an Attribute to the AttributeProvider instance. 
-         * @method register
-         * @param {String} key The attribute's name
-         * @param {Object} map A key-value map containing the
-         * attribute's properties.
-         * @deprecated Use setAttributeConfig
-         */
-        register: function(key, map) {
-            this.setAttributeConfig(key, map);
-        },
-        
-        
-        /**
-         * Returns the attribute's properties.
-         * @method getAttributeConfig
-         * @param {String} key The attribute's name
-         * @private
-         * @return {object} A key-value map containing all of the
-         * attribute's properties.
-         */
-        getAttributeConfig: function(key) {
-            this._configs = this._configs || {};
-            var config = this._configs[key] || {};
-            var map = {}; // returning a copy to prevent overrides
-            
-            for (key in config) {
-                if ( Lang.hasOwnProperty(config, key) ) {
-                    map[key] = config[key];
-                }
-            }
-    
-            return map;
-        },
-        
-        /**
-         * Sets or updates an Attribute instance's properties. 
-         * @method setAttributeConfig
-         * @param {String} key The attribute's name.
-         * @param {Object} map A key-value map of attribute properties
-         * @param {Boolean} init Whether or not this should become the intial config.
-         */
-        setAttributeConfig: function(key, map, init) {
-            this._configs = this._configs || {};
-            map = map || {};
-            if (!this._configs[key]) {
-                map.name = key;
-                this._configs[key] = this.createAttribute(map);
-            } else {
-                this._configs[key].configure(map, init);
-            }
-        },
-        
-        /**
-         * Sets or updates an Attribute instance's properties. 
-         * @method configureAttribute
-         * @param {String} key The attribute's name.
-         * @param {Object} map A key-value map of attribute properties
-         * @param {Boolean} init Whether or not this should become the intial config.
-         * @deprecated Use setAttributeConfig
-         */
-        configureAttribute: function(key, map, init) {
-            this.setAttributeConfig(key, map, init);
-        },
-        
-        /**
-         * Resets an attribute to its intial configuration. 
-         * @method resetAttributeConfig
-         * @param {String} key The attribute's name.
-         * @private
-         */
-        resetAttributeConfig: function(key){
-            this._configs = this._configs || {};
-            this._configs[key].resetConfig();
-        },
-        
-        // wrapper for EventProvider.subscribe
-        // to create events on the fly
-        subscribe: function(type, callback) {
-            this._events = this._events || {};
-
-            if ( !(type in this._events) ) {
-                this._events[type] = this.createEvent(type);
-            }
-
-            YAHOO.util.EventProvider.prototype.subscribe.apply(this, arguments);
-        },
-
-        on: function() {
-            this.subscribe.apply(this, arguments);
-        },
-
-        addListener: function() {
-            this.subscribe.apply(this, arguments);
-        },
-
-        /**
-         * Fires the attribute's beforeChange event. 
-         * @method fireBeforeChangeEvent
-         * @param {String} key The attribute's name.
-         * @param {Obj} e The event object to pass to handlers.
-         */
-        fireBeforeChangeEvent: function(e) {
-            var type = 'before';
-            type += e.type.charAt(0).toUpperCase() + e.type.substr(1) + 'Change';
-            e.type = type;
-            return this.fireEvent(e.type, e);
-        },
-        
-        /**
-         * Fires the attribute's change event. 
-         * @method fireChangeEvent
-         * @param {String} key The attribute's name.
-         * @param {Obj} e The event object to pass to the handlers.
-         */
-        fireChangeEvent: function(e) {
-            e.type += 'Change';
-            return this.fireEvent(e.type, e);
-        },
-
-        createAttribute: function(map) {
-            return new YAHOO.util.Attribute(map, this);
-        }
-    };
-    
-    YAHOO.augment(YAHOO.util.AttributeProvider, YAHOO.util.EventProvider);
-})();
-
-(function() {
-// internal shorthand
-var Dom = YAHOO.util.Dom,
-    AttributeProvider = YAHOO.util.AttributeProvider;
-
-/**
- * Element provides an wrapper object to simplify adding
- * event listeners, using dom methods, and managing attributes. 
- * @module element
- * @namespace YAHOO.util
- * @requires yahoo, dom, event
- * @beta
- */
-
-/**
- * Element provides an wrapper object to simplify adding
- * event listeners, using dom methods, and managing attributes. 
- * @class Element
- * @uses YAHOO.util.AttributeProvider
- * @constructor
- * @param el {HTMLElement | String} The html element that 
- * represents the Element.
- * @param {Object} map A key-value map of initial config names and values
- */
-YAHOO.util.Element = function(el, map) {
-    if (arguments.length) {
-        this.init(el, map);
-    }
-};
-
-YAHOO.util.Element.prototype = {
-    /**
-     * Dom events supported by the Element instance.
-     * @property DOM_EVENTS
-     * @type Object
-     */
-    DOM_EVENTS: null,
-
-    /**
-     * Wrapper for HTMLElement method.
-     * @method appendChild
-     * @param {YAHOO.util.Element || HTMLElement} child The element to append. 
-     * @return {HTMLElement} The appended DOM element. 
-     */
-    appendChild: function(child) {
-        child = child.get ? child.get('element') : child;
-        return this.get('element').appendChild(child);
-    },
-    
-    /**
-     * Wrapper for HTMLElement method.
-     * @method getElementsByTagName
-     * @param {String} tag The tagName to collect
-     * @return {HTMLCollection} A collection of DOM elements. 
-     */
-    getElementsByTagName: function(tag) {
-        return this.get('element').getElementsByTagName(tag);
-    },
-    
-    /**
-     * Wrapper for HTMLElement method.
-     * @method hasChildNodes
-     * @return {Boolean} Whether or not the element has childNodes
-     */
-    hasChildNodes: function() {
-        return this.get('element').hasChildNodes();
-    },
-    
-    /**
-     * Wrapper for HTMLElement method.
-     * @method insertBefore
-     * @param {HTMLElement} element The HTMLElement to insert
-     * @param {HTMLElement} before The HTMLElement to insert
-     * the element before.
-     * @return {HTMLElement} The inserted DOM element. 
-     */
-    insertBefore: function(element, before) {
-        element = element.get ? element.get('element') : element;
-        before = (before && before.get) ? before.get('element') : before;
-        
-        return this.get('element').insertBefore(element, before);
-    },
-    
-    /**
-     * Wrapper for HTMLElement method.
-     * @method removeChild
-     * @param {HTMLElement} child The HTMLElement to remove
-     * @return {HTMLElement} The removed DOM element. 
-     */
-    removeChild: function(child) {
-        child = child.get ? child.get('element') : child;
-        return this.get('element').removeChild(child);
-    },
-    
-    /**
-     * Wrapper for HTMLElement method.
-     * @method replaceChild
-     * @param {HTMLElement} newNode The HTMLElement to insert
-     * @param {HTMLElement} oldNode The HTMLElement to replace
-     * @return {HTMLElement} The replaced DOM element. 
-     */
-    replaceChild: function(newNode, oldNode) {
-        newNode = newNode.get ? newNode.get('element') : newNode;
-        oldNode = oldNode.get ? oldNode.get('element') : oldNode;
-        return this.get('element').replaceChild(newNode, oldNode);
-    },
-
-    
-    /**
-     * Registers Element specific attributes.
-     * @method initAttributes
-     * @param {Object} map A key-value map of initial attribute configs
-     */
-    initAttributes: function(map) {
-    },
-
-    /**
-     * Adds a listener for the given event.  These may be DOM or 
-     * customEvent listeners.  Any event that is fired via fireEvent
-     * can be listened for.  All handlers receive an event object. 
-     * @method addListener
-     * @param {String} type The name of the event to listen for
-     * @param {Function} fn The handler to call when the event fires
-     * @param {Any} obj A variable to pass to the handler
-     * @param {Object} scope The object to use for the scope of the handler 
-     */
-    addListener: function(type, fn, obj, scope) {
-        var el = this.get('element') || this.get('id');
-        scope = scope || this;
-        
-        var self = this; 
-        if (!this._events[type]) { // create on the fly
-            if (el && this.DOM_EVENTS[type]) {
-                YAHOO.util.Event.addListener(el, type, function(e) {
-                    if (e.srcElement && !e.target) { // supplement IE with target
-                        e.target = e.srcElement;
-                    }
-                    self.fireEvent(type, e);
-                }, obj, scope);
-            }
-            this.createEvent(type, this);
-        }
-        
-        return YAHOO.util.EventProvider.prototype.subscribe.apply(this, arguments); // notify via customEvent
-    },
-    
-    
-    /**
-     * Alias for addListener
-     * @method on
-     * @param {String} type The name of the event to listen for
-     * @param {Function} fn The function call when the event fires
-     * @param {Any} obj A variable to pass to the handler
-     * @param {Object} scope The object to use for the scope of the handler 
-     */
-    on: function() {
-        return this.addListener.apply(this, arguments);
-    },
-    
-    /**
-     * Alias for addListener
-     * @method subscribe
-     * @param {String} type The name of the event to listen for
-     * @param {Function} fn The function call when the event fires
-     * @param {Any} obj A variable to pass to the handler
-     * @param {Object} scope The object to use for the scope of the handler 
-     */
-    subscribe: function() {
-        return this.addListener.apply(this, arguments);
-    },
-    
-    /**
-     * Remove an event listener
-     * @method removeListener
-     * @param {String} type The name of the event to listen for
-     * @param {Function} fn The function call when the event fires
-     */
-    removeListener: function(type, fn) {
-        return this.unsubscribe.apply(this, arguments);
-    },
-    
-    /**
-     * Wrapper for Dom method.
-     * @method addClass
-     * @param {String} className The className to add
-     */
-    addClass: function(className) {
-        Dom.addClass(this.get('element'), className);
-    },
-    
-    /**
-     * Wrapper for Dom method.
-     * @method getElementsByClassName
-     * @param {String} className The className to collect
-     * @param {String} tag (optional) The tag to use in
-     * conjunction with class name
-     * @return {Array} Array of HTMLElements
-     */
-    getElementsByClassName: function(className, tag) {
-        return Dom.getElementsByClassName(className, tag,
-                this.get('element') );
-    },
-    
-    /**
-     * Wrapper for Dom method.
-     * @method hasClass
-     * @param {String} className The className to add
-     * @return {Boolean} Whether or not the element has the class name
-     */
-    hasClass: function(className) {
-        return Dom.hasClass(this.get('element'), className); 
-    },
-    
-    /**
-     * Wrapper for Dom method.
-     * @method removeClass
-     * @param {String} className The className to remove
-     */
-    removeClass: function(className) {
-        return Dom.removeClass(this.get('element'), className);
-    },
-    
-    /**
-     * Wrapper for Dom method.
-     * @method replaceClass
-     * @param {String} oldClassName The className to replace
-     * @param {String} newClassName The className to add
-     */
-    replaceClass: function(oldClassName, newClassName) {
-        return Dom.replaceClass(this.get('element'), 
-                oldClassName, newClassName);
-    },
-    
-    /**
-     * Wrapper for Dom method.
-     * @method setStyle
-     * @param {String} property The style property to set
-     * @param {String} value The value to apply to the style property
-     */
-    setStyle: function(property, value) {
-        var el = this.get('element');
-        if (!el) {
-            return this._queue[this._queue.length] = ['setStyle', arguments];
-        }
-
-        return Dom.setStyle(el,  property, value); // TODO: always queuing?
-    },
-    
-    /**
-     * Wrapper for Dom method.
-     * @method getStyle
-     * @param {String} property The style property to retrieve
-     * @return {String} The current value of the property
-     */
-    getStyle: function(property) {
-        return Dom.getStyle(this.get('element'),  property);
-    },
-    
-    /**
-     * Apply any queued set calls.
-     * @method fireQueue
-     */
-    fireQueue: function() {
-        var queue = this._queue;
-        for (var i = 0, len = queue.length; i < len; ++i) {
-            this[queue[i][0]].apply(this, queue[i][1]);
-        }
-    },
-    
-    /**
-     * Appends the HTMLElement into either the supplied parentNode.
-     * @method appendTo
-     * @param {HTMLElement | Element} parentNode The node to append to
-     * @param {HTMLElement | Element} before An optional node to insert before
-     * @return {HTMLElement} The appended DOM element. 
-     */
-    appendTo: function(parent, before) {
-        parent = (parent.get) ?  parent.get('element') : Dom.get(parent);
-        
-        this.fireEvent('beforeAppendTo', {
-            type: 'beforeAppendTo',
-            target: parent
-        });
-        
-        
-        before = (before && before.get) ? 
-                before.get('element') : Dom.get(before);
-        var element = this.get('element');
-        
-        if (!element) {
-            YAHOO.log('appendTo failed: element not available',
-                    'error', 'Element');
-            return false;
-        }
-        
-        if (!parent) {
-            YAHOO.log('appendTo failed: parent not available',
-                    'error', 'Element');
-            return false;
-        }
-        
-        if (element.parent != parent) {
-            if (before) {
-                parent.insertBefore(element, before);
-            } else {
-                parent.appendChild(element);
-            }
-        }
-        
-        YAHOO.log(element + 'appended to ' + parent);
-        
-        this.fireEvent('appendTo', {
-            type: 'appendTo',
-            target: parent
-        });
-
-        return element;
-    },
-    
-    get: function(key) {
-        var configs = this._configs || {};
-        var el = configs.element; // avoid loop due to 'element'
-        if (el && !configs[key] && !YAHOO.lang.isUndefined(el.value[key]) ) {
-            return el.value[key];
-        }
-
-        return AttributeProvider.prototype.get.call(this, key);
-    },
-
-    setAttributes: function(map, silent){
-        var el = this.get('element');
-        for (var key in map) {
-            // need to configure if setting unconfigured HTMLElement attribute 
-            if ( !this._configs[key] && !YAHOO.lang.isUndefined(el[key]) ) {
-                this.setAttributeConfig(key);
-            }
-        }
-
-        // set based on configOrder
-        for (var i = 0, len = this._configOrder.length; i < len; ++i) {
-            if (map[this._configOrder[i]] !== undefined) {
-                this.set(this._configOrder[i], map[this._configOrder[i]], silent);
-            }
-        }
-    },
-
-    set: function(key, value, silent) {
-        var el = this.get('element');
-        if (!el) {
-            this._queue[this._queue.length] = ['set', arguments];
-            if (this._configs[key]) {
-                this._configs[key].value = value; // so "get" works while queueing
-            
-            }
-            return;
-        }
-        
-        // set it on the element if not configured and is an HTML attribute
-        if ( !this._configs[key] && !YAHOO.lang.isUndefined(el[key]) ) {
-            _registerHTMLAttr.call(this, key);
-        }
-
-        return AttributeProvider.prototype.set.apply(this, arguments);
-    },
-    
-    setAttributeConfig: function(key, map, init) {
-        var el = this.get('element');
-
-        if (el && !this._configs[key] && !YAHOO.lang.isUndefined(el[key]) ) {
-            _registerHTMLAttr.call(this, key, map);
-        } else {
-            AttributeProvider.prototype.setAttributeConfig.apply(this, arguments);
-        }
-        this._configOrder.push(key);
-    },
-    
-    getAttributeKeys: function() {
-        var el = this.get('element');
-        var keys = AttributeProvider.prototype.getAttributeKeys.call(this);
-        
-        //add any unconfigured element keys
-        for (var key in el) {
-            if (!this._configs[key]) {
-                keys[key] = keys[key] || el[key];
-            }
-        }
-        
-        return keys;
-    },
-
-    createEvent: function(type, scope) {
-        this._events[type] = true;
-        AttributeProvider.prototype.createEvent.apply(this, arguments);
-    },
-    
-    init: function(el, attr) {
-        _initElement.apply(this, arguments); 
-    }
-};
-
-var _initElement = function(el, attr) {
-    this._queue = this._queue || [];
-    this._events = this._events || {};
-    this._configs = this._configs || {};
-    this._configOrder = []; 
-    attr = attr || {};
-    attr.element = attr.element || el || null;
-
-    this.DOM_EVENTS = {
-        'click': true,
-        'dblclick': true,
-        'keydown': true,
-        'keypress': true,
-        'keyup': true,
-        'mousedown': true,
-        'mousemove': true,
-        'mouseout': true, 
-        'mouseover': true, 
-        'mouseup': true,
-        'focus': true,
-        'blur': true,
-        'submit': true
-    };
-
-    var isReady = false;  // to determine when to init HTMLElement and content
-
-    if (typeof attr.element === 'string') { // register ID for get() access
-        _registerHTMLAttr.call(this, 'id', { value: attr.element });
-    }
-
-    if (Dom.get(attr.element)) {
-        isReady = true;
-        _initHTMLElement.call(this, attr);
-        _initContent.call(this, attr);
-    }
-
-    YAHOO.util.Event.onAvailable(attr.element, function() {
-        if (!isReady) { // otherwise already done
-            _initHTMLElement.call(this, attr);
-        }
-
-        this.fireEvent('available', { type: 'available', target: Dom.get(attr.element) });  
-    }, this, true);
-    
-    YAHOO.util.Event.onContentReady(attr.element, function() {
-        if (!isReady) { // otherwise already done
-            _initContent.call(this, attr);
-        }
-        this.fireEvent('contentReady', { type: 'contentReady', target: Dom.get(attr.element) });  
-    }, this, true);
-};
-
-var _initHTMLElement = function(attr) {
-    /**
-     * The HTMLElement the Element instance refers to.
-     * @attribute element
-     * @type HTMLElement
-     */
-    this.setAttributeConfig('element', {
-        value: Dom.get(attr.element),
-        readOnly: true
-     });
-};
-
-var _initContent = function(attr) {
-    this.initAttributes(attr);
-    this.setAttributes(attr, true);
-    this.fireQueue();
-
-};
-
-/**
- * Sets the value of the property and fires beforeChange and change events.
- * @private
- * @method _registerHTMLAttr
- * @param {YAHOO.util.Element} element The Element instance to
- * register the config to.
- * @param {String} key The name of the config to register
- * @param {Object} map A key-value map of the config's params
- */
-var _registerHTMLAttr = function(key, map) {
-    var el = this.get('element');
-    map = map || {};
-    map.name = key;
-    map.method = map.method || function(value) {
-        if (el) {
-            el[key] = value;
-        }
-    };
-    map.value = map.value || el[key];
-    this._configs[key] = new YAHOO.util.Attribute(map, this);
-};
-
-/**
- * Fires when the Element's HTMLElement can be retrieved by Id.
- * <p>See: <a href="#addListener">Element.addListener</a></p>
- * <p><strong>Event fields:</strong><br>
- * <code>&lt;String&gt; type</code> available<br>
- * <code>&lt;HTMLElement&gt;
- * target</code> the HTMLElement bound to this Element instance<br>
- * <p><strong>Usage:</strong><br>
- * <code>var handler = function(e) {var target = e.target};<br>
- * myTabs.addListener('available', handler);</code></p>
- * @event available
- */
- 
-/**
- * Fires when the Element's HTMLElement subtree is rendered.
- * <p>See: <a href="#addListener">Element.addListener</a></p>
- * <p><strong>Event fields:</strong><br>
- * <code>&lt;String&gt; type</code> contentReady<br>
- * <code>&lt;HTMLElement&gt;
- * target</code> the HTMLElement bound to this Element instance<br>
- * <p><strong>Usage:</strong><br>
- * <code>var handler = function(e) {var target = e.target};<br>
- * myTabs.addListener('contentReady', handler);</code></p>
- * @event contentReady
- */
-
-/**
- * Fires before the Element is appended to another Element.
- * <p>See: <a href="#addListener">Element.addListener</a></p>
- * <p><strong>Event fields:</strong><br>
- * <code>&lt;String&gt; type</code> beforeAppendTo<br>
- * <code>&lt;HTMLElement/Element&gt;
- * target</code> the HTMLElement/Element being appended to 
- * <p><strong>Usage:</strong><br>
- * <code>var handler = function(e) {var target = e.target};<br>
- * myTabs.addListener('beforeAppendTo', handler);</code></p>
- * @event beforeAppendTo
- */
-
-/**
- * Fires after the Element is appended to another Element.
- * <p>See: <a href="#addListener">Element.addListener</a></p>
- * <p><strong>Event fields:</strong><br>
- * <code>&lt;String&gt; type</code> appendTo<br>
- * <code>&lt;HTMLElement/Element&gt;
- * target</code> the HTMLElement/Element being appended to 
- * <p><strong>Usage:</strong><br>
- * <code>var handler = function(e) {var target = e.target};<br>
- * myTabs.addListener('appendTo', handler);</code></p>
- * @event appendTo
- */
-
-YAHOO.augment(YAHOO.util.Element, AttributeProvider);
-})();
-
-YAHOO.register("element", YAHOO.util.Element, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/element/element-beta-min.js b/eclipse.org-common/yui/2.6.0/build/element/element-beta-min.js
deleted file mode 100644
index 9877e56..0000000
--- a/eclipse.org-common/yui/2.6.0/build/element/element-beta-min.js
+++ /dev/null
@@ -1,8 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.util.Attribute=function(B,A){if(A){this.owner=A;this.configure(B,true);}};YAHOO.util.Attribute.prototype={name:undefined,value:null,owner:null,readOnly:false,writeOnce:false,_initialConfig:null,_written:false,method:null,validator:null,getValue:function(){return this.value;},setValue:function(F,B){var E;var A=this.owner;var C=this.name;var D={type:C,prevValue:this.getValue(),newValue:F};if(this.readOnly||(this.writeOnce&&this._written)){return false;}if(this.validator&&!this.validator.call(A,F)){return false;}if(!B){E=A.fireBeforeChangeEvent(D);if(E===false){return false;}}if(this.method){this.method.call(A,F);}this.value=F;this._written=true;D.type=C;if(!B){this.owner.fireChangeEvent(D);}return true;},configure:function(B,C){B=B||{};this._written=false;this._initialConfig=this._initialConfig||{};for(var A in B){if(B.hasOwnProperty(A)){this[A]=B[A];if(C){this._initialConfig[A]=B[A];}}}},resetValue:function(){return this.setValue(this._initialConfig.value);},resetConfig:function(){this.configure(this._initialConfig);},refresh:function(A){this.setValue(this.value,A);}};(function(){var A=YAHOO.util.Lang;YAHOO.util.AttributeProvider=function(){};YAHOO.util.AttributeProvider.prototype={_configs:null,get:function(C){this._configs=this._configs||{};var B=this._configs[C];if(!B||!this._configs.hasOwnProperty(C)){return undefined;}return B.value;},set:function(D,E,B){this._configs=this._configs||{};var C=this._configs[D];if(!C){return false;}return C.setValue(E,B);},getAttributeKeys:function(){this._configs=this._configs;var D=[];var B;for(var C in this._configs){B=this._configs[C];if(A.hasOwnProperty(this._configs,C)&&!A.isUndefined(B)){D[D.length]=C;}}return D;},setAttributes:function(D,B){for(var C in D){if(A.hasOwnProperty(D,C)){this.set(C,D[C],B);}}},resetValue:function(C,B){this._configs=this._configs||{};if(this._configs[C]){this.set(C,this._configs[C]._initialConfig.value,B);return true;}return false;},refresh:function(E,C){this._configs=this._configs||{};var F=this._configs;E=((A.isString(E))?[E]:E)||this.getAttributeKeys();for(var D=0,B=E.length;D<B;++D){if(F.hasOwnProperty(E[D])){this._configs[E[D]].refresh(C);}}},register:function(B,C){this.setAttributeConfig(B,C);},getAttributeConfig:function(C){this._configs=this._configs||{};var B=this._configs[C]||{};var D={};for(C in B){if(A.hasOwnProperty(B,C)){D[C]=B[C];}}return D;},setAttributeConfig:function(B,C,D){this._configs=this._configs||{};C=C||{};if(!this._configs[B]){C.name=B;this._configs[B]=this.createAttribute(C);}else{this._configs[B].configure(C,D);}},configureAttribute:function(B,C,D){this.setAttributeConfig(B,C,D);},resetAttributeConfig:function(B){this._configs=this._configs||{};this._configs[B].resetConfig();},subscribe:function(B,C){this._events=this._events||{};if(!(B in this._events)){this._events[B]=this.createEvent(B);}YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments);},on:function(){this.subscribe.apply(this,arguments);},addListener:function(){this.subscribe.apply(this,arguments);},fireBeforeChangeEvent:function(C){var B="before";B+=C.type.charAt(0).toUpperCase()+C.type.substr(1)+"Change";C.type=B;return this.fireEvent(C.type,C);},fireChangeEvent:function(B){B.type+="Change";return this.fireEvent(B.type,B);},createAttribute:function(B){return new YAHOO.util.Attribute(B,this);}};YAHOO.augment(YAHOO.util.AttributeProvider,YAHOO.util.EventProvider);})();(function(){var D=YAHOO.util.Dom,F=YAHOO.util.AttributeProvider;YAHOO.util.Element=function(G,H){if(arguments.length){this.init(G,H);}};YAHOO.util.Element.prototype={DOM_EVENTS:null,appendChild:function(G){G=G.get?G.get("element"):G;return this.get("element").appendChild(G);},getElementsByTagName:function(G){return this.get("element").getElementsByTagName(G);},hasChildNodes:function(){return this.get("element").hasChildNodes();},insertBefore:function(G,H){G=G.get?G.get("element"):G;H=(H&&H.get)?H.get("element"):H;return this.get("element").insertBefore(G,H);},removeChild:function(G){G=G.get?G.get("element"):G;return this.get("element").removeChild(G);},replaceChild:function(G,H){G=G.get?G.get("element"):G;H=H.get?H.get("element"):H;return this.get("element").replaceChild(G,H);},initAttributes:function(G){},addListener:function(K,J,L,I){var H=this.get("element")||this.get("id");I=I||this;var G=this;if(!this._events[K]){if(H&&this.DOM_EVENTS[K]){YAHOO.util.Event.addListener(H,K,function(M){if(M.srcElement&&!M.target){M.target=M.srcElement;}G.fireEvent(K,M);},L,I);}this.createEvent(K,this);}return YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments);},on:function(){return this.addListener.apply(this,arguments);},subscribe:function(){return this.addListener.apply(this,arguments);},removeListener:function(H,G){return this.unsubscribe.apply(this,arguments);},addClass:function(G){D.addClass(this.get("element"),G);},getElementsByClassName:function(H,G){return D.getElementsByClassName(H,G,this.get("element"));},hasClass:function(G){return D.hasClass(this.get("element"),G);},removeClass:function(G){return D.removeClass(this.get("element"),G);},replaceClass:function(H,G){return D.replaceClass(this.get("element"),H,G);},setStyle:function(I,H){var G=this.get("element");if(!G){return this._queue[this._queue.length]=["setStyle",arguments];}return D.setStyle(G,I,H);},getStyle:function(G){return D.getStyle(this.get("element"),G);},fireQueue:function(){var H=this._queue;for(var I=0,G=H.length;I<G;++I){this[H[I][0]].apply(this,H[I][1]);}},appendTo:function(H,I){H=(H.get)?H.get("element"):D.get(H);this.fireEvent("beforeAppendTo",{type:"beforeAppendTo",target:H});I=(I&&I.get)?I.get("element"):D.get(I);var G=this.get("element");if(!G){return false;}if(!H){return false;}if(G.parent!=H){if(I){H.insertBefore(G,I);}else{H.appendChild(G);}}this.fireEvent("appendTo",{type:"appendTo",target:H});return G;},get:function(G){var I=this._configs||{};var H=I.element;if(H&&!I[G]&&!YAHOO.lang.isUndefined(H.value[G])){return H.value[G];}return F.prototype.get.call(this,G);},setAttributes:function(L,H){var K=this.get("element");
-for(var J in L){if(!this._configs[J]&&!YAHOO.lang.isUndefined(K[J])){this.setAttributeConfig(J);}}for(var I=0,G=this._configOrder.length;I<G;++I){if(L[this._configOrder[I]]!==undefined){this.set(this._configOrder[I],L[this._configOrder[I]],H);}}},set:function(H,J,G){var I=this.get("element");if(!I){this._queue[this._queue.length]=["set",arguments];if(this._configs[H]){this._configs[H].value=J;}return ;}if(!this._configs[H]&&!YAHOO.lang.isUndefined(I[H])){C.call(this,H);}return F.prototype.set.apply(this,arguments);},setAttributeConfig:function(G,I,J){var H=this.get("element");if(H&&!this._configs[G]&&!YAHOO.lang.isUndefined(H[G])){C.call(this,G,I);}else{F.prototype.setAttributeConfig.apply(this,arguments);}this._configOrder.push(G);},getAttributeKeys:function(){var H=this.get("element");var I=F.prototype.getAttributeKeys.call(this);for(var G in H){if(!this._configs[G]){I[G]=I[G]||H[G];}}return I;},createEvent:function(H,G){this._events[H]=true;F.prototype.createEvent.apply(this,arguments);},init:function(H,G){A.apply(this,arguments);}};var A=function(H,G){this._queue=this._queue||[];this._events=this._events||{};this._configs=this._configs||{};this._configOrder=[];G=G||{};G.element=G.element||H||null;this.DOM_EVENTS={"click":true,"dblclick":true,"keydown":true,"keypress":true,"keyup":true,"mousedown":true,"mousemove":true,"mouseout":true,"mouseover":true,"mouseup":true,"focus":true,"blur":true,"submit":true};var I=false;if(typeof G.element==="string"){C.call(this,"id",{value:G.element});}if(D.get(G.element)){I=true;E.call(this,G);B.call(this,G);}YAHOO.util.Event.onAvailable(G.element,function(){if(!I){E.call(this,G);}this.fireEvent("available",{type:"available",target:D.get(G.element)});},this,true);YAHOO.util.Event.onContentReady(G.element,function(){if(!I){B.call(this,G);}this.fireEvent("contentReady",{type:"contentReady",target:D.get(G.element)});},this,true);};var E=function(G){this.setAttributeConfig("element",{value:D.get(G.element),readOnly:true});};var B=function(G){this.initAttributes(G);this.setAttributes(G,true);this.fireQueue();};var C=function(G,I){var H=this.get("element");I=I||{};I.name=G;I.method=I.method||function(J){if(H){H[G]=J;}};I.value=I.value||H[G];this._configs[G]=new YAHOO.util.Attribute(I,this);};YAHOO.augment(YAHOO.util.Element,F);})();YAHOO.register("element",YAHOO.util.Element,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/element/element-beta.js b/eclipse.org-common/yui/2.6.0/build/element/element-beta.js
deleted file mode 100644
index 51a121d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/element/element-beta.js
+++ /dev/null
@@ -1,1003 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * Provides Attribute configurations.
- * @namespace YAHOO.util
- * @class Attribute
- * @constructor
- * @param hash {Object} The intial Attribute.
- * @param {YAHOO.util.AttributeProvider} The owner of the Attribute instance.
- */
-
-YAHOO.util.Attribute = function(hash, owner) {
-    if (owner) { 
-        this.owner = owner;
-        this.configure(hash, true);
-    }
-};
-
-YAHOO.util.Attribute.prototype = {
-	/**
-     * The name of the attribute.
-	 * @property name
-	 * @type String
-	 */
-    name: undefined,
-    
-	/**
-     * The value of the attribute.
-	 * @property value
-	 * @type String
-	 */
-    value: null,
-    
-	/**
-     * The owner of the attribute.
-	 * @property owner
-	 * @type YAHOO.util.AttributeProvider
-	 */
-    owner: null,
-    
-	/**
-     * Whether or not the attribute is read only.
-	 * @property readOnly
-	 * @type Boolean
-	 */
-    readOnly: false,
-    
-	/**
-     * Whether or not the attribute can only be written once.
-	 * @property writeOnce
-	 * @type Boolean
-	 */
-    writeOnce: false,
-
-	/**
-     * The attribute's initial configuration.
-     * @private
-	 * @property _initialConfig
-	 * @type Object
-	 */
-    _initialConfig: null,
-    
-	/**
-     * Whether or not the attribute's value has been set.
-     * @private
-	 * @property _written
-	 * @type Boolean
-	 */
-    _written: false,
-    
-	/**
-     * The method to use when setting the attribute's value.
-     * The method recieves the new value as the only argument.
-	 * @property method
-	 * @type Function
-	 */
-    method: null,
-    
-	/**
-     * The validator to use when setting the attribute's value.
-	 * @property validator
-	 * @type Function
-     * @return Boolean
-	 */
-    validator: null,
-    
-    /**
-     * Retrieves the current value of the attribute.
-     * @method getValue
-     * @return {any} The current value of the attribute.
-     */
-    getValue: function() {
-        return this.value;
-    },
-    
-    /**
-     * Sets the value of the attribute and fires beforeChange and change events.
-     * @method setValue
-     * @param {Any} value The value to apply to the attribute.
-     * @param {Boolean} silent If true the change events will not be fired.
-     * @return {Boolean} Whether or not the value was set.
-     */
-    setValue: function(value, silent) {
-        var beforeRetVal;
-        var owner = this.owner;
-        var name = this.name;
-        
-        var event = {
-            type: name, 
-            prevValue: this.getValue(),
-            newValue: value
-        };
-        
-        if (this.readOnly || ( this.writeOnce && this._written) ) {
-            return false; // write not allowed
-        }
-        
-        if (this.validator && !this.validator.call(owner, value) ) {
-            return false; // invalid value
-        }
-
-        if (!silent) {
-            beforeRetVal = owner.fireBeforeChangeEvent(event);
-            if (beforeRetVal === false) {
-                return false;
-            }
-        }
-
-        if (this.method) {
-            this.method.call(owner, value);
-        }
-        
-        this.value = value;
-        this._written = true;
-        
-        event.type = name;
-        
-        if (!silent) {
-            this.owner.fireChangeEvent(event);
-        }
-        
-        return true;
-    },
-    
-    /**
-     * Allows for configuring the Attribute's properties.
-     * @method configure
-     * @param {Object} map A key-value map of Attribute properties.
-     * @param {Boolean} init Whether or not this should become the initial config.
-     */
-    configure: function(map, init) {
-        map = map || {};
-
-        this._written = false; // reset writeOnce
-        this._initialConfig = this._initialConfig || {};
-        
-        for (var key in map) {
-            if ( map.hasOwnProperty(key) ) {
-                this[key] = map[key];
-                if (init) {
-                    this._initialConfig[key] = map[key];
-                }
-            }
-        }
-    },
-    
-    /**
-     * Resets the value to the initial config value.
-     * @method resetValue
-     * @return {Boolean} Whether or not the value was set.
-     */
-    resetValue: function() {
-        return this.setValue(this._initialConfig.value);
-    },
-    
-    /**
-     * Resets the attribute config to the initial config state.
-     * @method resetConfig
-     */
-    resetConfig: function() {
-        this.configure(this._initialConfig);
-    },
-    
-    /**
-     * Resets the value to the current value.
-     * Useful when values may have gotten out of sync with actual properties.
-     * @method refresh
-     * @return {Boolean} Whether or not the value was set.
-     */
-    refresh: function(silent) {
-        this.setValue(this.value, silent);
-    }
-};
-
-(function() {
-    var Lang = YAHOO.util.Lang;
-
-    /*
-    Copyright (c) 2006, Yahoo! Inc. All rights reserved.
-    Code licensed under the BSD License:
-    http://developer.yahoo.net/yui/license.txt
-    */
-    
-    /**
-     * Provides and manages YAHOO.util.Attribute instances
-     * @namespace YAHOO.util
-     * @class AttributeProvider
-     * @uses YAHOO.util.EventProvider
-     */
-    YAHOO.util.AttributeProvider = function() {};
-
-    YAHOO.util.AttributeProvider.prototype = {
-        
-        /**
-         * A key-value map of Attribute configurations
-         * @property _configs
-         * @protected (may be used by subclasses and augmentors)
-         * @private
-         * @type {Object}
-         */
-        _configs: null,
-        /**
-         * Returns the current value of the attribute.
-         * @method get
-         * @param {String} key The attribute whose value will be returned.
-         * @return {Any} The current value of the attribute.
-         */
-        get: function(key){
-            this._configs = this._configs || {};
-            var config = this._configs[key];
-            
-            if (!config || !this._configs.hasOwnProperty(key)) {
-                return undefined;
-            }
-            
-            return config.value;
-        },
-        
-        /**
-         * Sets the value of a config.
-         * @method set
-         * @param {String} key The name of the attribute
-         * @param {Any} value The value to apply to the attribute
-         * @param {Boolean} silent Whether or not to suppress change events
-         * @return {Boolean} Whether or not the value was set.
-         */
-        set: function(key, value, silent){
-            this._configs = this._configs || {};
-            var config = this._configs[key];
-            
-            if (!config) {
-                return false;
-            }
-            
-            return config.setValue(value, silent);
-        },
-    
-        /**
-         * Returns an array of attribute names.
-         * @method getAttributeKeys
-         * @return {Array} An array of attribute names.
-         */
-        getAttributeKeys: function(){
-            this._configs = this._configs;
-            var keys = [];
-            var config;
-            for (var key in this._configs) {
-                config = this._configs[key];
-                if ( Lang.hasOwnProperty(this._configs, key) && 
-                        !Lang.isUndefined(config) ) {
-                    keys[keys.length] = key;
-                }
-            }
-            
-            return keys;
-        },
-        
-        /**
-         * Sets multiple attribute values.
-         * @method setAttributes
-         * @param {Object} map  A key-value map of attributes
-         * @param {Boolean} silent Whether or not to suppress change events
-         */
-        setAttributes: function(map, silent){
-            for (var key in map) {
-                if ( Lang.hasOwnProperty(map, key) ) {
-                    this.set(key, map[key], silent);
-                }
-            }
-        },
-    
-        /**
-         * Resets the specified attribute's value to its initial value.
-         * @method resetValue
-         * @param {String} key The name of the attribute
-         * @param {Boolean} silent Whether or not to suppress change events
-         * @return {Boolean} Whether or not the value was set
-         */
-        resetValue: function(key, silent){
-            this._configs = this._configs || {};
-            if (this._configs[key]) {
-                this.set(key, this._configs[key]._initialConfig.value, silent);
-                return true;
-            }
-            return false;
-        },
-    
-        /**
-         * Sets the attribute's value to its current value.
-         * @method refresh
-         * @param {String | Array} key The attribute(s) to refresh
-         * @param {Boolean} silent Whether or not to suppress change events
-         */
-        refresh: function(key, silent) {
-            this._configs = this._configs || {};
-            var configs = this._configs;
-            
-            key = ( ( Lang.isString(key) ) ? [key] : key ) || 
-                    this.getAttributeKeys();
-            
-            for (var i = 0, len = key.length; i < len; ++i) { 
-                if (configs.hasOwnProperty(key[i])) {
-                    this._configs[key[i]].refresh(silent);
-                }
-            }
-        },
-    
-        /**
-         * Adds an Attribute to the AttributeProvider instance. 
-         * @method register
-         * @param {String} key The attribute's name
-         * @param {Object} map A key-value map containing the
-         * attribute's properties.
-         * @deprecated Use setAttributeConfig
-         */
-        register: function(key, map) {
-            this.setAttributeConfig(key, map);
-        },
-        
-        
-        /**
-         * Returns the attribute's properties.
-         * @method getAttributeConfig
-         * @param {String} key The attribute's name
-         * @private
-         * @return {object} A key-value map containing all of the
-         * attribute's properties.
-         */
-        getAttributeConfig: function(key) {
-            this._configs = this._configs || {};
-            var config = this._configs[key] || {};
-            var map = {}; // returning a copy to prevent overrides
-            
-            for (key in config) {
-                if ( Lang.hasOwnProperty(config, key) ) {
-                    map[key] = config[key];
-                }
-            }
-    
-            return map;
-        },
-        
-        /**
-         * Sets or updates an Attribute instance's properties. 
-         * @method setAttributeConfig
-         * @param {String} key The attribute's name.
-         * @param {Object} map A key-value map of attribute properties
-         * @param {Boolean} init Whether or not this should become the intial config.
-         */
-        setAttributeConfig: function(key, map, init) {
-            this._configs = this._configs || {};
-            map = map || {};
-            if (!this._configs[key]) {
-                map.name = key;
-                this._configs[key] = this.createAttribute(map);
-            } else {
-                this._configs[key].configure(map, init);
-            }
-        },
-        
-        /**
-         * Sets or updates an Attribute instance's properties. 
-         * @method configureAttribute
-         * @param {String} key The attribute's name.
-         * @param {Object} map A key-value map of attribute properties
-         * @param {Boolean} init Whether or not this should become the intial config.
-         * @deprecated Use setAttributeConfig
-         */
-        configureAttribute: function(key, map, init) {
-            this.setAttributeConfig(key, map, init);
-        },
-        
-        /**
-         * Resets an attribute to its intial configuration. 
-         * @method resetAttributeConfig
-         * @param {String} key The attribute's name.
-         * @private
-         */
-        resetAttributeConfig: function(key){
-            this._configs = this._configs || {};
-            this._configs[key].resetConfig();
-        },
-        
-        // wrapper for EventProvider.subscribe
-        // to create events on the fly
-        subscribe: function(type, callback) {
-            this._events = this._events || {};
-
-            if ( !(type in this._events) ) {
-                this._events[type] = this.createEvent(type);
-            }
-
-            YAHOO.util.EventProvider.prototype.subscribe.apply(this, arguments);
-        },
-
-        on: function() {
-            this.subscribe.apply(this, arguments);
-        },
-
-        addListener: function() {
-            this.subscribe.apply(this, arguments);
-        },
-
-        /**
-         * Fires the attribute's beforeChange event. 
-         * @method fireBeforeChangeEvent
-         * @param {String} key The attribute's name.
-         * @param {Obj} e The event object to pass to handlers.
-         */
-        fireBeforeChangeEvent: function(e) {
-            var type = 'before';
-            type += e.type.charAt(0).toUpperCase() + e.type.substr(1) + 'Change';
-            e.type = type;
-            return this.fireEvent(e.type, e);
-        },
-        
-        /**
-         * Fires the attribute's change event. 
-         * @method fireChangeEvent
-         * @param {String} key The attribute's name.
-         * @param {Obj} e The event object to pass to the handlers.
-         */
-        fireChangeEvent: function(e) {
-            e.type += 'Change';
-            return this.fireEvent(e.type, e);
-        },
-
-        createAttribute: function(map) {
-            return new YAHOO.util.Attribute(map, this);
-        }
-    };
-    
-    YAHOO.augment(YAHOO.util.AttributeProvider, YAHOO.util.EventProvider);
-})();
-
-(function() {
-// internal shorthand
-var Dom = YAHOO.util.Dom,
-    AttributeProvider = YAHOO.util.AttributeProvider;
-
-/**
- * Element provides an wrapper object to simplify adding
- * event listeners, using dom methods, and managing attributes. 
- * @module element
- * @namespace YAHOO.util
- * @requires yahoo, dom, event
- * @beta
- */
-
-/**
- * Element provides an wrapper object to simplify adding
- * event listeners, using dom methods, and managing attributes. 
- * @class Element
- * @uses YAHOO.util.AttributeProvider
- * @constructor
- * @param el {HTMLElement | String} The html element that 
- * represents the Element.
- * @param {Object} map A key-value map of initial config names and values
- */
-YAHOO.util.Element = function(el, map) {
-    if (arguments.length) {
-        this.init(el, map);
-    }
-};
-
-YAHOO.util.Element.prototype = {
-    /**
-     * Dom events supported by the Element instance.
-     * @property DOM_EVENTS
-     * @type Object
-     */
-    DOM_EVENTS: null,
-
-    /**
-     * Wrapper for HTMLElement method.
-     * @method appendChild
-     * @param {YAHOO.util.Element || HTMLElement} child The element to append. 
-     * @return {HTMLElement} The appended DOM element. 
-     */
-    appendChild: function(child) {
-        child = child.get ? child.get('element') : child;
-        return this.get('element').appendChild(child);
-    },
-    
-    /**
-     * Wrapper for HTMLElement method.
-     * @method getElementsByTagName
-     * @param {String} tag The tagName to collect
-     * @return {HTMLCollection} A collection of DOM elements. 
-     */
-    getElementsByTagName: function(tag) {
-        return this.get('element').getElementsByTagName(tag);
-    },
-    
-    /**
-     * Wrapper for HTMLElement method.
-     * @method hasChildNodes
-     * @return {Boolean} Whether or not the element has childNodes
-     */
-    hasChildNodes: function() {
-        return this.get('element').hasChildNodes();
-    },
-    
-    /**
-     * Wrapper for HTMLElement method.
-     * @method insertBefore
-     * @param {HTMLElement} element The HTMLElement to insert
-     * @param {HTMLElement} before The HTMLElement to insert
-     * the element before.
-     * @return {HTMLElement} The inserted DOM element. 
-     */
-    insertBefore: function(element, before) {
-        element = element.get ? element.get('element') : element;
-        before = (before && before.get) ? before.get('element') : before;
-        
-        return this.get('element').insertBefore(element, before);
-    },
-    
-    /**
-     * Wrapper for HTMLElement method.
-     * @method removeChild
-     * @param {HTMLElement} child The HTMLElement to remove
-     * @return {HTMLElement} The removed DOM element. 
-     */
-    removeChild: function(child) {
-        child = child.get ? child.get('element') : child;
-        return this.get('element').removeChild(child);
-    },
-    
-    /**
-     * Wrapper for HTMLElement method.
-     * @method replaceChild
-     * @param {HTMLElement} newNode The HTMLElement to insert
-     * @param {HTMLElement} oldNode The HTMLElement to replace
-     * @return {HTMLElement} The replaced DOM element. 
-     */
-    replaceChild: function(newNode, oldNode) {
-        newNode = newNode.get ? newNode.get('element') : newNode;
-        oldNode = oldNode.get ? oldNode.get('element') : oldNode;
-        return this.get('element').replaceChild(newNode, oldNode);
-    },
-
-    
-    /**
-     * Registers Element specific attributes.
-     * @method initAttributes
-     * @param {Object} map A key-value map of initial attribute configs
-     */
-    initAttributes: function(map) {
-    },
-
-    /**
-     * Adds a listener for the given event.  These may be DOM or 
-     * customEvent listeners.  Any event that is fired via fireEvent
-     * can be listened for.  All handlers receive an event object. 
-     * @method addListener
-     * @param {String} type The name of the event to listen for
-     * @param {Function} fn The handler to call when the event fires
-     * @param {Any} obj A variable to pass to the handler
-     * @param {Object} scope The object to use for the scope of the handler 
-     */
-    addListener: function(type, fn, obj, scope) {
-        var el = this.get('element') || this.get('id');
-        scope = scope || this;
-        
-        var self = this; 
-        if (!this._events[type]) { // create on the fly
-            if (el && this.DOM_EVENTS[type]) {
-                YAHOO.util.Event.addListener(el, type, function(e) {
-                    if (e.srcElement && !e.target) { // supplement IE with target
-                        e.target = e.srcElement;
-                    }
-                    self.fireEvent(type, e);
-                }, obj, scope);
-            }
-            this.createEvent(type, this);
-        }
-        
-        return YAHOO.util.EventProvider.prototype.subscribe.apply(this, arguments); // notify via customEvent
-    },
-    
-    
-    /**
-     * Alias for addListener
-     * @method on
-     * @param {String} type The name of the event to listen for
-     * @param {Function} fn The function call when the event fires
-     * @param {Any} obj A variable to pass to the handler
-     * @param {Object} scope The object to use for the scope of the handler 
-     */
-    on: function() {
-        return this.addListener.apply(this, arguments);
-    },
-    
-    /**
-     * Alias for addListener
-     * @method subscribe
-     * @param {String} type The name of the event to listen for
-     * @param {Function} fn The function call when the event fires
-     * @param {Any} obj A variable to pass to the handler
-     * @param {Object} scope The object to use for the scope of the handler 
-     */
-    subscribe: function() {
-        return this.addListener.apply(this, arguments);
-    },
-    
-    /**
-     * Remove an event listener
-     * @method removeListener
-     * @param {String} type The name of the event to listen for
-     * @param {Function} fn The function call when the event fires
-     */
-    removeListener: function(type, fn) {
-        return this.unsubscribe.apply(this, arguments);
-    },
-    
-    /**
-     * Wrapper for Dom method.
-     * @method addClass
-     * @param {String} className The className to add
-     */
-    addClass: function(className) {
-        Dom.addClass(this.get('element'), className);
-    },
-    
-    /**
-     * Wrapper for Dom method.
-     * @method getElementsByClassName
-     * @param {String} className The className to collect
-     * @param {String} tag (optional) The tag to use in
-     * conjunction with class name
-     * @return {Array} Array of HTMLElements
-     */
-    getElementsByClassName: function(className, tag) {
-        return Dom.getElementsByClassName(className, tag,
-                this.get('element') );
-    },
-    
-    /**
-     * Wrapper for Dom method.
-     * @method hasClass
-     * @param {String} className The className to add
-     * @return {Boolean} Whether or not the element has the class name
-     */
-    hasClass: function(className) {
-        return Dom.hasClass(this.get('element'), className); 
-    },
-    
-    /**
-     * Wrapper for Dom method.
-     * @method removeClass
-     * @param {String} className The className to remove
-     */
-    removeClass: function(className) {
-        return Dom.removeClass(this.get('element'), className);
-    },
-    
-    /**
-     * Wrapper for Dom method.
-     * @method replaceClass
-     * @param {String} oldClassName The className to replace
-     * @param {String} newClassName The className to add
-     */
-    replaceClass: function(oldClassName, newClassName) {
-        return Dom.replaceClass(this.get('element'), 
-                oldClassName, newClassName);
-    },
-    
-    /**
-     * Wrapper for Dom method.
-     * @method setStyle
-     * @param {String} property The style property to set
-     * @param {String} value The value to apply to the style property
-     */
-    setStyle: function(property, value) {
-        var el = this.get('element');
-        if (!el) {
-            return this._queue[this._queue.length] = ['setStyle', arguments];
-        }
-
-        return Dom.setStyle(el,  property, value); // TODO: always queuing?
-    },
-    
-    /**
-     * Wrapper for Dom method.
-     * @method getStyle
-     * @param {String} property The style property to retrieve
-     * @return {String} The current value of the property
-     */
-    getStyle: function(property) {
-        return Dom.getStyle(this.get('element'),  property);
-    },
-    
-    /**
-     * Apply any queued set calls.
-     * @method fireQueue
-     */
-    fireQueue: function() {
-        var queue = this._queue;
-        for (var i = 0, len = queue.length; i < len; ++i) {
-            this[queue[i][0]].apply(this, queue[i][1]);
-        }
-    },
-    
-    /**
-     * Appends the HTMLElement into either the supplied parentNode.
-     * @method appendTo
-     * @param {HTMLElement | Element} parentNode The node to append to
-     * @param {HTMLElement | Element} before An optional node to insert before
-     * @return {HTMLElement} The appended DOM element. 
-     */
-    appendTo: function(parent, before) {
-        parent = (parent.get) ?  parent.get('element') : Dom.get(parent);
-        
-        this.fireEvent('beforeAppendTo', {
-            type: 'beforeAppendTo',
-            target: parent
-        });
-        
-        
-        before = (before && before.get) ? 
-                before.get('element') : Dom.get(before);
-        var element = this.get('element');
-        
-        if (!element) {
-            return false;
-        }
-        
-        if (!parent) {
-            return false;
-        }
-        
-        if (element.parent != parent) {
-            if (before) {
-                parent.insertBefore(element, before);
-            } else {
-                parent.appendChild(element);
-            }
-        }
-        
-        
-        this.fireEvent('appendTo', {
-            type: 'appendTo',
-            target: parent
-        });
-
-        return element;
-    },
-    
-    get: function(key) {
-        var configs = this._configs || {};
-        var el = configs.element; // avoid loop due to 'element'
-        if (el && !configs[key] && !YAHOO.lang.isUndefined(el.value[key]) ) {
-            return el.value[key];
-        }
-
-        return AttributeProvider.prototype.get.call(this, key);
-    },
-
-    setAttributes: function(map, silent){
-        var el = this.get('element');
-        for (var key in map) {
-            // need to configure if setting unconfigured HTMLElement attribute 
-            if ( !this._configs[key] && !YAHOO.lang.isUndefined(el[key]) ) {
-                this.setAttributeConfig(key);
-            }
-        }
-
-        // set based on configOrder
-        for (var i = 0, len = this._configOrder.length; i < len; ++i) {
-            if (map[this._configOrder[i]] !== undefined) {
-                this.set(this._configOrder[i], map[this._configOrder[i]], silent);
-            }
-        }
-    },
-
-    set: function(key, value, silent) {
-        var el = this.get('element');
-        if (!el) {
-            this._queue[this._queue.length] = ['set', arguments];
-            if (this._configs[key]) {
-                this._configs[key].value = value; // so "get" works while queueing
-            
-            }
-            return;
-        }
-        
-        // set it on the element if not configured and is an HTML attribute
-        if ( !this._configs[key] && !YAHOO.lang.isUndefined(el[key]) ) {
-            _registerHTMLAttr.call(this, key);
-        }
-
-        return AttributeProvider.prototype.set.apply(this, arguments);
-    },
-    
-    setAttributeConfig: function(key, map, init) {
-        var el = this.get('element');
-
-        if (el && !this._configs[key] && !YAHOO.lang.isUndefined(el[key]) ) {
-            _registerHTMLAttr.call(this, key, map);
-        } else {
-            AttributeProvider.prototype.setAttributeConfig.apply(this, arguments);
-        }
-        this._configOrder.push(key);
-    },
-    
-    getAttributeKeys: function() {
-        var el = this.get('element');
-        var keys = AttributeProvider.prototype.getAttributeKeys.call(this);
-        
-        //add any unconfigured element keys
-        for (var key in el) {
-            if (!this._configs[key]) {
-                keys[key] = keys[key] || el[key];
-            }
-        }
-        
-        return keys;
-    },
-
-    createEvent: function(type, scope) {
-        this._events[type] = true;
-        AttributeProvider.prototype.createEvent.apply(this, arguments);
-    },
-    
-    init: function(el, attr) {
-        _initElement.apply(this, arguments); 
-    }
-};
-
-var _initElement = function(el, attr) {
-    this._queue = this._queue || [];
-    this._events = this._events || {};
-    this._configs = this._configs || {};
-    this._configOrder = []; 
-    attr = attr || {};
-    attr.element = attr.element || el || null;
-
-    this.DOM_EVENTS = {
-        'click': true,
-        'dblclick': true,
-        'keydown': true,
-        'keypress': true,
-        'keyup': true,
-        'mousedown': true,
-        'mousemove': true,
-        'mouseout': true, 
-        'mouseover': true, 
-        'mouseup': true,
-        'focus': true,
-        'blur': true,
-        'submit': true
-    };
-
-    var isReady = false;  // to determine when to init HTMLElement and content
-
-    if (typeof attr.element === 'string') { // register ID for get() access
-        _registerHTMLAttr.call(this, 'id', { value: attr.element });
-    }
-
-    if (Dom.get(attr.element)) {
-        isReady = true;
-        _initHTMLElement.call(this, attr);
-        _initContent.call(this, attr);
-    }
-
-    YAHOO.util.Event.onAvailable(attr.element, function() {
-        if (!isReady) { // otherwise already done
-            _initHTMLElement.call(this, attr);
-        }
-
-        this.fireEvent('available', { type: 'available', target: Dom.get(attr.element) });  
-    }, this, true);
-    
-    YAHOO.util.Event.onContentReady(attr.element, function() {
-        if (!isReady) { // otherwise already done
-            _initContent.call(this, attr);
-        }
-        this.fireEvent('contentReady', { type: 'contentReady', target: Dom.get(attr.element) });  
-    }, this, true);
-};
-
-var _initHTMLElement = function(attr) {
-    /**
-     * The HTMLElement the Element instance refers to.
-     * @attribute element
-     * @type HTMLElement
-     */
-    this.setAttributeConfig('element', {
-        value: Dom.get(attr.element),
-        readOnly: true
-     });
-};
-
-var _initContent = function(attr) {
-    this.initAttributes(attr);
-    this.setAttributes(attr, true);
-    this.fireQueue();
-
-};
-
-/**
- * Sets the value of the property and fires beforeChange and change events.
- * @private
- * @method _registerHTMLAttr
- * @param {YAHOO.util.Element} element The Element instance to
- * register the config to.
- * @param {String} key The name of the config to register
- * @param {Object} map A key-value map of the config's params
- */
-var _registerHTMLAttr = function(key, map) {
-    var el = this.get('element');
-    map = map || {};
-    map.name = key;
-    map.method = map.method || function(value) {
-        if (el) {
-            el[key] = value;
-        }
-    };
-    map.value = map.value || el[key];
-    this._configs[key] = new YAHOO.util.Attribute(map, this);
-};
-
-/**
- * Fires when the Element's HTMLElement can be retrieved by Id.
- * <p>See: <a href="#addListener">Element.addListener</a></p>
- * <p><strong>Event fields:</strong><br>
- * <code>&lt;String&gt; type</code> available<br>
- * <code>&lt;HTMLElement&gt;
- * target</code> the HTMLElement bound to this Element instance<br>
- * <p><strong>Usage:</strong><br>
- * <code>var handler = function(e) {var target = e.target};<br>
- * myTabs.addListener('available', handler);</code></p>
- * @event available
- */
- 
-/**
- * Fires when the Element's HTMLElement subtree is rendered.
- * <p>See: <a href="#addListener">Element.addListener</a></p>
- * <p><strong>Event fields:</strong><br>
- * <code>&lt;String&gt; type</code> contentReady<br>
- * <code>&lt;HTMLElement&gt;
- * target</code> the HTMLElement bound to this Element instance<br>
- * <p><strong>Usage:</strong><br>
- * <code>var handler = function(e) {var target = e.target};<br>
- * myTabs.addListener('contentReady', handler);</code></p>
- * @event contentReady
- */
-
-/**
- * Fires before the Element is appended to another Element.
- * <p>See: <a href="#addListener">Element.addListener</a></p>
- * <p><strong>Event fields:</strong><br>
- * <code>&lt;String&gt; type</code> beforeAppendTo<br>
- * <code>&lt;HTMLElement/Element&gt;
- * target</code> the HTMLElement/Element being appended to 
- * <p><strong>Usage:</strong><br>
- * <code>var handler = function(e) {var target = e.target};<br>
- * myTabs.addListener('beforeAppendTo', handler);</code></p>
- * @event beforeAppendTo
- */
-
-/**
- * Fires after the Element is appended to another Element.
- * <p>See: <a href="#addListener">Element.addListener</a></p>
- * <p><strong>Event fields:</strong><br>
- * <code>&lt;String&gt; type</code> appendTo<br>
- * <code>&lt;HTMLElement/Element&gt;
- * target</code> the HTMLElement/Element being appended to 
- * <p><strong>Usage:</strong><br>
- * <code>var handler = function(e) {var target = e.target};<br>
- * myTabs.addListener('appendTo', handler);</code></p>
- * @event appendTo
- */
-
-YAHOO.augment(YAHOO.util.Element, AttributeProvider);
-})();
-
-YAHOO.register("element", YAHOO.util.Element, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/event/README b/eclipse.org-common/yui/2.6.0/build/event/README
deleted file mode 100644
index ad8904d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/event/README
+++ /dev/null
@@ -1,252 +0,0 @@
-
-YUI Library - Event - Release Notes
-
-2.6.0
-  * Legacy event check for Webkit increased to capture Safari 2.0.3.
-  * Added add/removeFocusListener, add/removeBlurListener
-
-2.5.2
-
-  * Custom Event fire() now throws caught exceptions if YAHOO.util.throwErrors =
-    true.  In either case, a message is written to the logger console.
-
-2.5.1
-  * Arrays are once again resized when a listener is removed.
-  * onAvailable/onContentReady stop polling when there is nothing to look for.
-
-2.5.0
-  * Added try/catch to getTarget to suppress errors when targeting
-    ActiveX controls.
-  * Increased the default poll interval to 20ms, and decreased poll
-    retries to 2000 to reduce IE CPU usage.
-  * onDOMReady now uses the native DOMContentLoaded event for the
-    latest releases of WebKit since it support for it was added.
-  * Restored the code that removes all listeners during the unload event to
-    address issues caused by the way FireFox persists listeners through 
-    page refreshes.
-
-2.4.1
-  * Reverted clearAttributes() change to fix IE memory leak on iframes/windows
-
-2.4.0
-  * getListeners/purgeElement accepts either an element reference or an element id
-  * onAvailable/onContentReady accepts a single id or an array of ids
-  * No longer removing listeners during the unload event for non-IE browsers
-  * IE unload strategy for cross page memory leaks changed from removing each listener
-    to calling clearAttributes()
-  * the DOMReady property is now public
-  * Changed IE onDOMReady approach from the defered script node hack to the doScroll('left') hack
-  * getCharChode now Remaps SHIFT-TAB key code (25) to TAB (9) in Safari
-  * getCharCode provides the proper key codes for page up and page down in Safari
-  * Restored object check to _isValidCollection.
-  * In KeyListener, added keycode constants for some of the special keys.
-  * Rolled back the change added for hacking around IE errors from bubbled 
-    events that originally targeted an ActiveX control.
-
-2.3.1
-  * CustomEvent fire() now catches exceptions thrown by the subscribers so
-    that the rest of the subscribers execute.  The exception is logged and
-    stored in the "lastError" property.
-  * Performance tweak: _isValidCollection fails strings first.
-  * onAvailable/onContentReady will work if an element ref rather than an
-    id is provided.
-  * getListeners: fixed the values for the obj and adjust properties.
-    Added scope property.
-  * Added IE hack for when the event target is something that can't be
-    inspected (like a VML canvas).  In this case the target is set to
-    the element the listener is bound to.
-
-2.3.0
-  * addListener now produces a logger warning if the supplied callback is 
-    undefined.
-  * Reduced the likelihood that window onload listeners fire before
-    onAvailable listeners when the two happen near the same moment.
-  * Fixed an IE error that could occur when the library was injected into 
-    the page after window onload.
-  * The onDOMReady listener will be executed immediately if the
-    DOMReady event had already fired prior to the call.
-  * Unsubscribing custom events within a handler for the event now works 
-    properly.
-  * EventProvider unsubscribeAll will unsubscribe all listeners from
-    all hosted custom events if the type is not specified.
-  * Event.getKeyCode now checks keyCode before charCode for Safari normalization.  
-    Safari arrow key codes are normalized as well.
-  * Broke up the </script> in Event to allow it to be included inline
-
-2.2.2
-  * No change
-
-2.2.1
-  * onAvailable listeners are processed before onContentReady listeners so
-    they fire in the logical order when an element is found to be available 
-    and ready in the same pass.
-  * Added onDOMReady for receiving notification when the DOM is first usable.
-  * In Internet Explorer, onAvailable/onContentReady checks now start when
-    DOMReady fires to reduce the possibility of receiving an "operation
-    aborted" errors when inserting DOM nodes during in the onAvailable/
-    onContentReady listener execution.
-  * CustomEvent subscribers supplying undefined callbacks will be notified
-    when subscribing rather than having an ambiguous error thrown when the
-    event is fired.
-  * Fixed missing html tags in the examples.
-  * POLL_INTERVAL is 10 ms.
-  * YAHOO.util.CustomEvent is now declared before YAHOO.util.Event.
-
-2.2.0
-
-  * YAHOO.util.KeyListener was moved from the container package into event.
-  
-  * The Safari bug that made it so preventDefault would not work with click
-    and double-click listeners on anchor tags was resolved in version 2.0.4.
-    The workaround (using DOM0 events for these instead of the normal DOM2
-    events) is now only used for releases prior to 2.0.4.
-    
-  * getListeners/purgeElement now work correctly with unload listeners
-
-  * When legacyEvents are used (Safari<2.0.4 click events), if there was an
-    existing DOM0 event that the utility replaced, it is executed along with
-    the listeners that were added with the utility.
-
-  * Restored Event.regCE for compatibility with a beta release of the library
-    that in use in an external API.
-
-  * unsubscribe in CustomEvent and EventProvider will remove all listeners
-    if the listener is omitted.
-
-  * Added unsubscribeAll to EventProvider
-
-  * Added Event.lastError which stores the most recent error object if
-    a browser-specific add/remove listener call throws an exception.
-
-0.12.2
-
-  * Fixed a bug introduced in 0.12.1 release caused nested onAvailable
-    calls to fail.
-
-0.12.1
-
-  * If an error is thrown during the browser-specific add/remove lister call,
-    addListener/removeListener will catch the error and return false.
-
-  * onAvailable array items are nulled out instead of deleted when completed to
-    get around an Opera issue introduced in a recent version of the browser.
-
-0.12.0
-
-   * If the function argument is not provided to Event.removeListener, all
-     all listeners for the specified event type on the element will be removed.
-
-   * CustomEvent now has an optional parameter that defines the signature of
-     the listeners for this event.  Two signatures are supported:
-
-       YAHOO.util.CustomEvent.LIST:
-         param1: event name
-         param2: array of arguments provided to fire()
-         param3: <optional> the custom object supplied to subscribe()
-
-       YAHOO.util.CustomEvent.FLAT:
-         param1: the first argument provided to fire()
-         param2: <optional> the custom object supplied to subscribe()
-
-     The new flat signature makes it possible to provide a better API 
-     when using custom events, and it makes it possible to transparently 
-     wrap DOM events.
-   
-   * The parameters for overriding scope in both Event.addListener, and
-     CustomEvent.subscribe have been augmented.  In addition to the 
-     previous behavior where a true value would make the previous parameter
-     the execution scope, an object can be supplied instead.  If an object
-     is provided, that object becomes the scope obj.  This makes it possible 
-     to pass a both a custom object and adjust the scope to a different object.
-
-   * Added EventProvider, which is a wrapper for CustomEvent that makes it
-     possible to subscribe to events by name, whether or not the event has
-     been created.  This class was designed to be used with YAHOO.augment.
-     EventProvider custom events are created with the new FLAT listener
-     signature.
-
-   * CustomEvent subscribers can return false to stop the propagation of
-     the event.
-
-   * CustomEvents now have an onSubscribe custom event that can used to the
-     case where a subscriber subscribes to an one-time event that has already
-     happened.  Also provides a way for the implementer to defer initialization
-     logic until after the first subscription.
-
-   * Event.getCharCode now always returns keyCode if charCode is not available.
-
-   * Added Event.onContentReady, which is similar to onAvailable, but it also
-     checks simblings to try to determine when the element's children are
-     available.
-
-0.11.4
-
-   * Fixed a memory leak in IE6 that occurred when the utility was hosted in 
-     an iframe.
-
-   * Fixed an issue with Safari click listeners when listeners were removed.
-
-0.11.3
-
-   * The listener cache is now pruned when events are removed.  This fixes
-     a performance issue when adding many listeners, removing them, and
-     adding them again repeatedly.
-
-   * Safari click listeners will work correctly if a bound element is removed
-     from the DOM and a new element with the same ID is added.
-
-   * Removed the code that automatically unsubscribed custom event listeners.
-
-0.11.0
-
-   * Added Event.purgeElement which will remove all listeners added via 
-     addListener from the supplied element.  If an optional "type" parameter
-     is supplied, only events of that type will be removed.  Optionally, the
-     purge can be performed recursively on the element's children as well.
-
-   * Added Event.getListeners which will return all listeners attached to 
-     a given element.. either all listeners or listeners of a specific type.
-
-   * getTarget now automatically resolves text nodes.  The optional parameter
-     for this feature is now deprecated.
-
-   * getRelatedTarget now resolves text nodes for the browsers that return the
-     text node rather than its host HTML element.
-
-   * CustomEvent now logs the custom event activity if the logger widget is available
-
-0.10.0
-
-   * Added Safari dblclick to the list of legacy events.
-
-   * When multiple identical event handlers are defined, multiple calls
-     to removeListener can now remove all of them.
-
-   * removeListener works properly for unload events
-
-   * Legacy event bookkeeping is more efficient, improving the performance for
-     adding Safari click events.
-
-   * _unload() is more efficient, improving the page transition experience in 
-     Safari in particular.
-
-   * addListener, removeListener now return false if the function argument is
-     not valid.
-
-   * Fixed an operator precedence issue in getCharCode.
-
-   * Added Event.getXY, which returns [Event.getPageX(e), Event.getPageY(e)]
-
-   * Added Event.onAvailable, which will execute the callback when the element
-     with the supplied id is found.  Currently searches periodically until the
-     window load event or for up to 10 seconds after the onAvailable method 
-     was executed.
-
-   * The lazy listener attachment process now will poll beyond the window load
-     event in order to better handle the case when a listener is defined
-     late in the page but before the element is in the dom.
-
-   * Fixed browser detection for Opera installations reporting as IE.
-
-   * It is now possible to remove and re-add legacy events (Safari click event).
-
diff --git a/eclipse.org-common/yui/2.6.0/build/event/event-debug.js b/eclipse.org-common/yui/2.6.0/build/event/event-debug.js
deleted file mode 100644
index 7d1e528..0000000
--- a/eclipse.org-common/yui/2.6.0/build/event/event-debug.js
+++ /dev/null
@@ -1,2587 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-
-/**
- * The CustomEvent class lets you define events for your application
- * that can be subscribed to by one or more independent component.
- *
- * @param {String}  type The type of event, which is passed to the callback
- *                  when the event fires
- * @param {Object}  oScope The context the event will fire from.  "this" will
- *                  refer to this object in the callback.  Default value: 
- *                  the window object.  The listener can override this.
- * @param {boolean} silent pass true to prevent the event from writing to
- *                  the debugsystem
- * @param {int}     signature the signature that the custom event subscriber
- *                  will receive. YAHOO.util.CustomEvent.LIST or 
- *                  YAHOO.util.CustomEvent.FLAT.  The default is
- *                  YAHOO.util.CustomEvent.LIST.
- * @namespace YAHOO.util
- * @class CustomEvent
- * @constructor
- */
-YAHOO.util.CustomEvent = function(type, oScope, silent, signature) {
-
-    /**
-     * The type of event, returned to subscribers when the event fires
-     * @property type
-     * @type string
-     */
-    this.type = type;
-
-    /**
-     * The scope the the event will fire from by default.  Defaults to the window 
-     * obj
-     * @property scope
-     * @type object
-     */
-    this.scope = oScope || window;
-
-    /**
-     * By default all custom events are logged in the debug build, set silent
-     * to true to disable debug outpu for this event.
-     * @property silent
-     * @type boolean
-     */
-    this.silent = silent;
-
-    /**
-     * Custom events support two styles of arguments provided to the event
-     * subscribers.  
-     * <ul>
-     * <li>YAHOO.util.CustomEvent.LIST: 
-     *   <ul>
-     *   <li>param1: event name</li>
-     *   <li>param2: array of arguments sent to fire</li>
-     *   <li>param3: <optional> a custom object supplied by the subscriber</li>
-     *   </ul>
-     * </li>
-     * <li>YAHOO.util.CustomEvent.FLAT
-     *   <ul>
-     *   <li>param1: the first argument passed to fire.  If you need to
-     *           pass multiple parameters, use and array or object literal</li>
-     *   <li>param2: <optional> a custom object supplied by the subscriber</li>
-     *   </ul>
-     * </li>
-     * </ul>
-     *   @property signature
-     *   @type int
-     */
-    this.signature = signature || YAHOO.util.CustomEvent.LIST;
-
-    /**
-     * The subscribers to this event
-     * @property subscribers
-     * @type Subscriber[]
-     */
-    this.subscribers = [];
-
-    if (!this.silent) {
-        YAHOO.log( "Creating " + this, "info", "Event" );
-    }
-
-    var onsubscribeType = "_YUICEOnSubscribe";
-
-    // Only add subscribe events for events that are not generated by 
-    // CustomEvent
-    if (type !== onsubscribeType) {
-
-        /**
-         * Custom events provide a custom event that fires whenever there is
-         * a new subscriber to the event.  This provides an opportunity to
-         * handle the case where there is a non-repeating event that has
-         * already fired has a new subscriber.  
-         *
-         * @event subscribeEvent
-         * @type YAHOO.util.CustomEvent
-         * @param {Function} fn The function to execute
-         * @param {Object}   obj An object to be passed along when the event 
-         *                       fires
-         * @param {boolean|Object}  override If true, the obj passed in becomes 
-         *                                   the execution scope of the listener.
-         *                                   if an object, that object becomes the
-         *                                   the execution scope.
-         */
-        this.subscribeEvent = 
-                new YAHOO.util.CustomEvent(onsubscribeType, this, true);
-
-    } 
-
-
-    /**
-     * In order to make it possible to execute the rest of the subscriber
-     * stack when one thows an exception, the subscribers exceptions are
-     * caught.  The most recent exception is stored in this property
-     * @property lastError
-     * @type Error
-     */
-    this.lastError = null;
-};
-
-/**
- * Subscriber listener sigature constant.  The LIST type returns three
- * parameters: the event type, the array of args passed to fire, and
- * the optional custom object
- * @property YAHOO.util.CustomEvent.LIST
- * @static
- * @type int
- */
-YAHOO.util.CustomEvent.LIST = 0;
-
-/**
- * Subscriber listener sigature constant.  The FLAT type returns two
- * parameters: the first argument passed to fire and the optional 
- * custom object
- * @property YAHOO.util.CustomEvent.FLAT
- * @static
- * @type int
- */
-YAHOO.util.CustomEvent.FLAT = 1;
-
-YAHOO.util.CustomEvent.prototype = {
-
-    /**
-     * Subscribes the caller to this event
-     * @method subscribe
-     * @param {Function} fn        The function to execute
-     * @param {Object}   obj       An object to be passed along when the event 
-     *                             fires
-     * @param {boolean|Object}  override If true, the obj passed in becomes 
-     *                                   the execution scope of the listener.
-     *                                   if an object, that object becomes the
-     *                                   the execution scope.
-     */
-    subscribe: function(fn, obj, override) {
-
-        if (!fn) {
-throw new Error("Invalid callback for subscriber to '" + this.type + "'");
-        }
-
-        if (this.subscribeEvent) {
-            this.subscribeEvent.fire(fn, obj, override);
-        }
-
-        this.subscribers.push( new YAHOO.util.Subscriber(fn, obj, override) );
-    },
-
-    /**
-     * Unsubscribes subscribers.
-     * @method unsubscribe
-     * @param {Function} fn  The subscribed function to remove, if not supplied
-     *                       all will be removed
-     * @param {Object}   obj  The custom object passed to subscribe.  This is
-     *                        optional, but if supplied will be used to
-     *                        disambiguate multiple listeners that are the same
-     *                        (e.g., you subscribe many object using a function
-     *                        that lives on the prototype)
-     * @return {boolean} True if the subscriber was found and detached.
-     */
-    unsubscribe: function(fn, obj) {
-
-        if (!fn) {
-            return this.unsubscribeAll();
-        }
-
-        var found = false;
-        for (var i=0, len=this.subscribers.length; i<len; ++i) {
-            var s = this.subscribers[i];
-            if (s && s.contains(fn, obj)) {
-                this._delete(i);
-                found = true;
-            }
-        }
-
-        return found;
-    },
-
-    /**
-     * Notifies the subscribers.  The callback functions will be executed
-     * from the scope specified when the event was created, and with the 
-     * following parameters:
-     *   <ul>
-     *   <li>The type of event</li>
-     *   <li>All of the arguments fire() was executed with as an array</li>
-     *   <li>The custom object (if any) that was passed into the subscribe() 
-     *       method</li>
-     *   </ul>
-     * @method fire 
-     * @param {Object*} arguments an arbitrary set of parameters to pass to 
-     *                            the handler.
-     * @return {boolean} false if one of the subscribers returned false, 
-     *                   true otherwise
-     */
-    fire: function() {
-
-        this.lastError = null;
-
-        var errors = [],
-            len=this.subscribers.length;
-
-        if (!len && this.silent) {
-            //YAHOO.log('DEBUG no subscribers');
-            return true;
-        }
-
-        var args=[].slice.call(arguments, 0), ret=true, i, rebuild=false;
-
-        if (!this.silent) {
-            YAHOO.log( "Firing "       + this  + ", " + 
-                       "args: "        + args  + ", " +
-                       "subscribers: " + len,                 
-                       "info", "Event"                  );
-        }
-
-        // make a copy of the subscribers so that there are
-        // no index problems if one subscriber removes another.
-        var subs = this.subscribers.slice(), throwErrors = YAHOO.util.Event.throwErrors;
-
-        for (i=0; i<len; ++i) {
-            var s = subs[i];
-            if (!s) {
-                //YAHOO.log('DEBUG rebuilding array');
-                rebuild=true;
-            } else {
-                if (!this.silent) {
-YAHOO.log( this.type + "->" + (i+1) + ": " +  s, "info", "Event" );
-                }
-
-                var scope = s.getScope(this.scope);
-
-                if (this.signature == YAHOO.util.CustomEvent.FLAT) {
-                    var param = null;
-                    if (args.length > 0) {
-                        param = args[0];
-                    }
-
-                    try {
-                        ret = s.fn.call(scope, param, s.obj);
-                    } catch(e) {
-                        this.lastError = e;
-                        // errors.push(e);
-YAHOO.log(this + " subscriber exception: " + e, "error", "Event");
-                        if (throwErrors) {
-                            throw e;
-                        }
-                    }
-                } else {
-                    try {
-                        ret = s.fn.call(scope, this.type, args, s.obj);
-                    } catch(ex) {
-                        this.lastError = ex;
-YAHOO.log(this + " subscriber exception: " + ex, "error", "Event");
-                        if (throwErrors) {
-                            throw ex;
-                        }
-                    }
-                }
-
-                if (false === ret) {
-                    if (!this.silent) {
-YAHOO.log("Event stopped, sub " + i + " of " + len, "info", "Event");
-                    }
-
-                    break;
-                    // return false;
-                }
-            }
-        }
-
-        return (ret !== false);
-    },
-
-    /**
-     * Removes all listeners
-     * @method unsubscribeAll
-     * @return {int} The number of listeners unsubscribed
-     */
-    unsubscribeAll: function() {
-        for (var i=this.subscribers.length-1; i>-1; i--) {
-            this._delete(i);
-        }
-
-        this.subscribers=[];
-
-        return i;
-    },
-
-    /**
-     * @method _delete
-     * @private
-     */
-    _delete: function(index) {
-        var s = this.subscribers[index];
-        if (s) {
-            delete s.fn;
-            delete s.obj;
-        }
-
-        // this.subscribers[index]=null;
-        this.subscribers.splice(index, 1);
-    },
-
-    /**
-     * @method toString
-     */
-    toString: function() {
-         return "CustomEvent: " + "'" + this.type  + "', " + 
-             "scope: " + this.scope;
-
-    }
-};
-
-/////////////////////////////////////////////////////////////////////
-
-/**
- * Stores the subscriber information to be used when the event fires.
- * @param {Function} fn       The function to execute
- * @param {Object}   obj      An object to be passed along when the event fires
- * @param {boolean}  override If true, the obj passed in becomes the execution
- *                            scope of the listener
- * @class Subscriber
- * @constructor
- */
-YAHOO.util.Subscriber = function(fn, obj, override) {
-
-    /**
-     * The callback that will be execute when the event fires
-     * @property fn
-     * @type function
-     */
-    this.fn = fn;
-
-    /**
-     * An optional custom object that will passed to the callback when
-     * the event fires
-     * @property obj
-     * @type object
-     */
-    this.obj = YAHOO.lang.isUndefined(obj) ? null : obj;
-
-    /**
-     * The default execution scope for the event listener is defined when the
-     * event is created (usually the object which contains the event).
-     * By setting override to true, the execution scope becomes the custom
-     * object passed in by the subscriber.  If override is an object, that 
-     * object becomes the scope.
-     * @property override
-     * @type boolean|object
-     */
-    this.override = override;
-
-};
-
-/**
- * Returns the execution scope for this listener.  If override was set to true
- * the custom obj will be the scope.  If override is an object, that is the
- * scope, otherwise the default scope will be used.
- * @method getScope
- * @param {Object} defaultScope the scope to use if this listener does not
- *                              override it.
- */
-YAHOO.util.Subscriber.prototype.getScope = function(defaultScope) {
-    if (this.override) {
-        if (this.override === true) {
-            return this.obj;
-        } else {
-            return this.override;
-        }
-    }
-    return defaultScope;
-};
-
-/**
- * Returns true if the fn and obj match this objects properties.
- * Used by the unsubscribe method to match the right subscriber.
- *
- * @method contains
- * @param {Function} fn the function to execute
- * @param {Object} obj an object to be passed along when the event fires
- * @return {boolean} true if the supplied arguments match this 
- *                   subscriber's signature.
- */
-YAHOO.util.Subscriber.prototype.contains = function(fn, obj) {
-    if (obj) {
-        return (this.fn == fn && this.obj == obj);
-    } else {
-        return (this.fn == fn);
-    }
-};
-
-/**
- * @method toString
- */
-YAHOO.util.Subscriber.prototype.toString = function() {
-    return "Subscriber { obj: " + this.obj  + 
-           ", override: " +  (this.override || "no") + " }";
-};
-
-/**
- * The Event Utility provides utilities for managing DOM Events and tools
- * for building event systems
- *
- * @module event
- * @title Event Utility
- * @namespace YAHOO.util
- * @requires yahoo
- */
-
-// The first instance of Event will win if it is loaded more than once.
-// @TODO this needs to be changed so that only the state data that needs to
-// be preserved is kept, while methods are overwritten/added as needed.
-// This means that the module pattern can't be used.
-if (!YAHOO.util.Event) {
-
-/**
- * The event utility provides functions to add and remove event listeners,
- * event cleansing.  It also tries to automatically remove listeners it
- * registers during the unload event.
- *
- * @class Event
- * @static
- */
-    YAHOO.util.Event = function() {
-
-        /**
-         * True after the onload event has fired
-         * @property loadComplete
-         * @type boolean
-         * @static
-         * @private
-         */
-        var loadComplete =  false;
-
-        /**
-         * Cache of wrapped listeners
-         * @property listeners
-         * @type array
-         * @static
-         * @private
-         */
-        var listeners = [];
-
-        /**
-         * User-defined unload function that will be fired before all events
-         * are detached
-         * @property unloadListeners
-         * @type array
-         * @static
-         * @private
-         */
-        var unloadListeners = [];
-
-        /**
-         * Cache of DOM0 event handlers to work around issues with DOM2 events
-         * in Safari
-         * @property legacyEvents
-         * @static
-         * @private
-         */
-        var legacyEvents = [];
-
-        /**
-         * Listener stack for DOM0 events
-         * @property legacyHandlers
-         * @static
-         * @private
-         */
-        var legacyHandlers = [];
-
-        /**
-         * The number of times to poll after window.onload.  This number is
-         * increased if additional late-bound handlers are requested after
-         * the page load.
-         * @property retryCount
-         * @static
-         * @private
-         */
-        var retryCount = 0;
-
-        /**
-         * onAvailable listeners
-         * @property onAvailStack
-         * @static
-         * @private
-         */
-        var onAvailStack = [];
-
-        /**
-         * Lookup table for legacy events
-         * @property legacyMap
-         * @static
-         * @private
-         */
-        var legacyMap = [];
-
-        /**
-         * Counter for auto id generation
-         * @property counter
-         * @static
-         * @private
-         */
-        var counter = 0;
-        
-        /**
-         * Normalized keycodes for webkit/safari
-         * @property webkitKeymap
-         * @type {int: int}
-         * @private
-         * @static
-         * @final
-         */
-        var webkitKeymap = {
-            63232: 38, // up
-            63233: 40, // down
-            63234: 37, // left
-            63235: 39, // right
-            63276: 33, // page up
-            63277: 34, // page down
-            25: 9      // SHIFT-TAB (Safari provides a different key code in
-                       // this case, even though the shiftKey modifier is set)
-        };
-        
-        // String constants used by the addFocusListener and removeFocusListener methods
-        var _FOCUS = YAHOO.env.ua.ie ? "focusin" : "focus";
-        var _BLUR = YAHOO.env.ua.ie ? "focusout" : "blur";      
-
-        return {
-
-            /**
-             * The number of times we should look for elements that are not
-             * in the DOM at the time the event is requested after the document
-             * has been loaded.  The default is 2000@amp;20 ms, so it will poll
-             * for 40 seconds or until all outstanding handlers are bound
-             * (whichever comes first).
-             * @property POLL_RETRYS
-             * @type int
-             * @static
-             * @final
-             */
-            POLL_RETRYS: 2000,
-
-            /**
-             * The poll interval in milliseconds
-             * @property POLL_INTERVAL
-             * @type int
-             * @static
-             * @final
-             */
-            POLL_INTERVAL: 20,
-
-            /**
-             * Element to bind, int constant
-             * @property EL
-             * @type int
-             * @static
-             * @final
-             */
-            EL: 0,
-
-            /**
-             * Type of event, int constant
-             * @property TYPE
-             * @type int
-             * @static
-             * @final
-             */
-            TYPE: 1,
-
-            /**
-             * Function to execute, int constant
-             * @property FN
-             * @type int
-             * @static
-             * @final
-             */
-            FN: 2,
-
-            /**
-             * Function wrapped for scope correction and cleanup, int constant
-             * @property WFN
-             * @type int
-             * @static
-             * @final
-             */
-            WFN: 3,
-
-            /**
-             * Object passed in by the user that will be returned as a 
-             * parameter to the callback, int constant.  Specific to
-             * unload listeners
-             * @property OBJ
-             * @type int
-             * @static
-             * @final
-             */
-            UNLOAD_OBJ: 3,
-
-            /**
-             * Adjusted scope, either the element we are registering the event
-             * on or the custom object passed in by the listener, int constant
-             * @property ADJ_SCOPE
-             * @type int
-             * @static
-             * @final
-             */
-            ADJ_SCOPE: 4,
-
-            /**
-             * The original obj passed into addListener
-             * @property OBJ
-             * @type int
-             * @static
-             * @final
-             */
-            OBJ: 5,
-
-            /**
-             * The original scope parameter passed into addListener
-             * @property OVERRIDE
-             * @type int
-             * @static
-             * @final
-             */
-            OVERRIDE: 6,
-
-            /**
-             * The original capture parameter passed into _addListener
-             * @property CAPTURE
-             * @type int
-             * @static
-             * @final
-             */
-            CAPTURE: 7,
-
-
-            /**
-             * addListener/removeListener can throw errors in unexpected scenarios.
-             * These errors are suppressed, the method returns false, and this property
-             * is set
-             * @property lastError
-             * @static
-             * @type Error
-             */
-            lastError: null,
-
-            /**
-             * Safari detection
-             * @property isSafari
-             * @private
-             * @static
-             * @deprecated use YAHOO.env.ua.webkit
-             */
-            isSafari: YAHOO.env.ua.webkit,
-            
-            /**
-             * webkit version
-             * @property webkit
-             * @type string
-             * @private
-             * @static
-             * @deprecated use YAHOO.env.ua.webkit
-             */
-            webkit: YAHOO.env.ua.webkit,
-            
-            /**
-             * IE detection 
-             * @property isIE
-             * @private
-             * @static
-             * @deprecated use YAHOO.env.ua.ie
-             */
-            isIE: YAHOO.env.ua.ie,
-
-            /**
-             * poll handle
-             * @property _interval
-             * @static
-             * @private
-             */
-            _interval: null,
-
-            /**
-             * document readystate poll handle
-             * @property _dri
-             * @static
-             * @private
-             */
-             _dri: null,
-
-            /**
-             * True when the document is initially usable
-             * @property DOMReady
-             * @type boolean
-             * @static
-             */
-            DOMReady: false,
-
-            /**
-             * Errors thrown by subscribers of custom events are caught
-             * and the error message is written to the debug console.  If
-             * this property is set to true, it will also re-throw the
-             * error.
-             * @property throwErrors
-             * @type boolean
-             * @default false
-             */
-            throwErrors: false,
-
-            /**
-             * @method startInterval
-             * @static
-             * @private
-             */
-            startInterval: function() {
-                if (!this._interval) {
-                    var self = this;
-                    var callback = function() { self._tryPreloadAttach(); };
-                    this._interval = setInterval(callback, this.POLL_INTERVAL);
-                }
-            },
-
-            /**
-             * Executes the supplied callback when the item with the supplied
-             * id is found.  This is meant to be used to execute behavior as
-             * soon as possible as the page loads.  If you use this after the
-             * initial page load it will poll for a fixed time for the element.
-             * The number of times it will poll and the frequency are
-             * configurable.  By default it will poll for 10 seconds.
-             *
-             * <p>The callback is executed with a single parameter:
-             * the custom object parameter, if provided.</p>
-             *
-             * @method onAvailable
-             *
-             * @param {string||string[]}   p_id the id of the element, or an array
-             * of ids to look for.
-             * @param {function} p_fn what to execute when the element is found.
-             * @param {object}   p_obj an optional object to be passed back as
-             *                   a parameter to p_fn.
-             * @param {boolean|object}  p_override If set to true, p_fn will execute
-             *                   in the scope of p_obj, if set to an object it
-             *                   will execute in the scope of that object
-             * @param checkContent {boolean} check child node readiness (onContentReady)
-             * @static
-             */
-            onAvailable: function(p_id, p_fn, p_obj, p_override, checkContent) {
-
-                var a = (YAHOO.lang.isString(p_id)) ? [p_id] : p_id;
-
-                for (var i=0; i<a.length; i=i+1) {
-                    onAvailStack.push({id:         a[i], 
-                                       fn:         p_fn, 
-                                       obj:        p_obj, 
-                                       override:   p_override, 
-                                       checkReady: checkContent });
-                }
-
-                retryCount = this.POLL_RETRYS;
-
-                this.startInterval();
-            },
-
-            /**
-             * Works the same way as onAvailable, but additionally checks the
-             * state of sibling elements to determine if the content of the
-             * available element is safe to modify.
-             *
-             * <p>The callback is executed with a single parameter:
-             * the custom object parameter, if provided.</p>
-             *
-             * @method onContentReady
-             *
-             * @param {string}   p_id the id of the element to look for.
-             * @param {function} p_fn what to execute when the element is ready.
-             * @param {object}   p_obj an optional object to be passed back as
-             *                   a parameter to p_fn.
-             * @param {boolean|object}  p_override If set to true, p_fn will execute
-             *                   in the scope of p_obj.  If an object, p_fn will
-             *                   exectute in the scope of that object
-             *
-             * @static
-             */
-            onContentReady: function(p_id, p_fn, p_obj, p_override) {
-                this.onAvailable(p_id, p_fn, p_obj, p_override, true);
-            },
-
-            /**
-             * Executes the supplied callback when the DOM is first usable.  This
-             * will execute immediately if called after the DOMReady event has
-             * fired.   @todo the DOMContentReady event does not fire when the
-             * script is dynamically injected into the page.  This means the
-             * DOMReady custom event will never fire in FireFox or Opera when the
-             * library is injected.  It _will_ fire in Safari, and the IE 
-             * implementation would allow for us to fire it if the defered script
-             * is not available.  We want this to behave the same in all browsers.
-             * Is there a way to identify when the script has been injected 
-             * instead of included inline?  Is there a way to know whether the 
-             * window onload event has fired without having had a listener attached 
-             * to it when it did so?
-             *
-             * <p>The callback is a CustomEvent, so the signature is:</p>
-             * <p>type &lt;string&gt;, args &lt;array&gt;, customobject &lt;object&gt;</p>
-             * <p>For DOMReady events, there are no fire argments, so the
-             * signature is:</p>
-             * <p>"DOMReady", [], obj</p>
-             *
-             *
-             * @method onDOMReady
-             *
-             * @param {function} p_fn what to execute when the element is found.
-             * @param {object}   p_obj an optional object to be passed back as
-             *                   a parameter to p_fn.
-             * @param {boolean|object}  p_scope If set to true, p_fn will execute
-             *                   in the scope of p_obj, if set to an object it
-             *                   will execute in the scope of that object
-             *
-             * @static
-             */
-            onDOMReady: function(p_fn, p_obj, p_override) {
-                if (this.DOMReady) {
-                    setTimeout(function() {
-                        var s = window;
-                        if (p_override) {
-                            if (p_override === true) {
-                                s = p_obj;
-                            } else {
-                                s = p_override;
-                            }
-                        }
-                        p_fn.call(s, "DOMReady", [], p_obj);
-                    }, 0);
-                } else {
-                    this.DOMReadyEvent.subscribe(p_fn, p_obj, p_override);
-                }
-            },
-
-
-            /**
-             * Appends an event handler
-             *
-             * @method _addListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to assign the 
-             *  listener to.
-             * @param {String}   sType     The type of event to append
-             * @param {Function} fn        The method the event invokes
-             * @param {Object}   obj    An arbitrary object that will be 
-             *                             passed as a parameter to the handler
-             * @param {Boolean|object}  override  If true, the obj passed in becomes
-             *                             the execution scope of the listener. If an
-             *                             object, this object becomes the execution
-             *                             scope.
-             * @param {boolen}      capture capture or bubble phase
-             * @return {Boolean} True if the action was successful or defered,
-             *                        false if one or more of the elements 
-             *                        could not have the listener attached,
-             *                        or if the operation throws an exception.
-             * @private
-             * @static
-             */
-            _addListener: function(el, sType, fn, obj, override, capture) {
-
-                if (!fn || !fn.call) {
-                    YAHOO.log(sType + " addListener failed, invalid callback", "error", "Event");
-                    return false;
-                }
-
-                // The el argument can be an array of elements or element ids.
-                if ( this._isValidCollection(el)) {
-                    var ok = true;
-                    for (var i=0,len=el.length; i<len; ++i) {
-                        ok = this._addListener(el[i], 
-                                       sType, 
-                                       fn, 
-                                       obj, 
-                                       override, 
-                                       capture) && ok;
-                    }
-                    return ok;
-
-                } else if (YAHOO.lang.isString(el)) {
-                    var oEl = this.getEl(el);
-                    // If the el argument is a string, we assume it is 
-                    // actually the id of the element.  If the page is loaded
-                    // we convert el to the actual element, otherwise we 
-                    // defer attaching the event until onload event fires
-
-                    // check to see if we need to delay hooking up the event 
-                    // until after the page loads.
-                    if (oEl) {
-                        el = oEl;
-                    } else {
-                        // defer adding the event until the element is available
-                        this.onAvailable(el, function() {
-                           YAHOO.util.Event._addListener(el, sType, fn, obj, override, capture);
-                        });
-
-                        return true;
-                    }
-                }
-
-                // Element should be an html element or an array if we get 
-                // here.
-                if (!el) {
-                    // this.logger.debug("unable to attach event " + sType);
-                    return false;
-                }
-
-                // we need to make sure we fire registered unload events 
-                // prior to automatically unhooking them.  So we hang on to 
-                // these instead of attaching them to the window and fire the
-                // handles explicitly during our one unload event.
-                if ("unload" == sType && obj !== this) {
-                    unloadListeners[unloadListeners.length] =
-                            [el, sType, fn, obj, override, capture];
-                    return true;
-                }
-
-                // this.logger.debug("Adding handler: " + el + ", " + sType);
-
-                // if the user chooses to override the scope, we use the custom
-                // object passed in, otherwise the executing scope will be the
-                // HTML element that the event is registered on
-                var scope = el;
-                if (override) {
-                    if (override === true) {
-                        scope = obj;
-                    } else {
-                        scope = override;
-                    }
-                }
-
-                // wrap the function so we can return the obj object when
-                // the event fires;
-                var wrappedFn = function(e) {
-                        return fn.call(scope, YAHOO.util.Event.getEvent(e, el), 
-                                obj);
-                    };
-
-                var li = [el, sType, fn, wrappedFn, scope, obj, override, capture];
-                var index = listeners.length;
-                // cache the listener so we can try to automatically unload
-                listeners[index] = li;
-
-                if (this.useLegacyEvent(el, sType)) {
-                    var legacyIndex = this.getLegacyIndex(el, sType);
-
-                    // Add a new dom0 wrapper if one is not detected for this
-                    // element
-                    if ( legacyIndex == -1 || 
-                                el != legacyEvents[legacyIndex][0] ) {
-
-                        legacyIndex = legacyEvents.length;
-                        legacyMap[el.id + sType] = legacyIndex;
-
-                        // cache the signature for the DOM0 event, and 
-                        // include the existing handler for the event, if any
-                        legacyEvents[legacyIndex] = 
-                            [el, sType, el["on" + sType]];
-                        legacyHandlers[legacyIndex] = [];
-
-                        el["on" + sType] = 
-                            function(e) {
-                                YAHOO.util.Event.fireLegacyEvent(
-                                    YAHOO.util.Event.getEvent(e), legacyIndex);
-                            };
-                    }
-
-                    // add a reference to the wrapped listener to our custom
-                    // stack of events
-                    //legacyHandlers[legacyIndex].push(index);
-                    legacyHandlers[legacyIndex].push(li);
-
-                } else {
-                    try {
-                        this._simpleAdd(el, sType, wrappedFn, capture);
-                    } catch(ex) {
-                        // handle an error trying to attach an event.  If it fails
-                        // we need to clean up the cache
-                        this.lastError = ex;
-                        this._removeListener(el, sType, fn, capture);
-                        return false;
-                    }
-                }
-
-                return true;
-                
-            },
-
-
-            /**
-             * Appends an event handler
-             *
-             * @method addListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to assign the 
-             *  listener to.
-             * @param {String}   sType     The type of event to append
-             * @param {Function} fn        The method the event invokes
-             * @param {Object}   obj    An arbitrary object that will be 
-             *                             passed as a parameter to the handler
-             * @param {Boolean|object}  override  If true, the obj passed in becomes
-             *                             the execution scope of the listener. If an
-             *                             object, this object becomes the execution
-             *                             scope.
-             * @return {Boolean} True if the action was successful or defered,
-             *                        false if one or more of the elements 
-             *                        could not have the listener attached,
-             *                        or if the operation throws an exception.
-             * @static
-             */
-            addListener: function (el, sType, fn, obj, override) {
-                return this._addListener(el, sType, fn, obj, override, false);
-            },
-
-            /**
-             * Appends a focus event handler.  (The focusin event is used for Internet Explorer, 
-             * the focus, capture-event for Opera, WebKit, and Gecko.)
-             *
-             * @method addFocusListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to assign the 
-             *  listener to.
-             * @param {Function} fn        The method the event invokes
-             * @param {Object}   obj    An arbitrary object that will be 
-             *                             passed as a parameter to the handler
-             * @param {Boolean|object}  override  If true, the obj passed in becomes
-             *                             the execution scope of the listener. If an
-             *                             object, this object becomes the execution
-             *                             scope.
-             * @return {Boolean} True if the action was successful or defered,
-             *                        false if one or more of the elements 
-             *                        could not have the listener attached,
-             *                        or if the operation throws an exception.
-             * @static
-             */
-            addFocusListener: function (el, fn, obj, override) {
-                return this._addListener(el, _FOCUS, fn, obj, override, true);
-            },          
-
-
-            /**
-             * Removes a focus event listener
-             *
-             * @method removeFocusListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to remove
-             *  the listener from.
-             * @param {Function} fn the method the event invokes.  If fn is
-             *  undefined, then all event handlers for the type of event are 
-             *  removed.
-             * @return {boolean} true if the unbind was successful, false 
-             *  otherwise.
-             * @static
-             */
-            removeFocusListener: function (el, fn) { 
-                return this._removeListener(el, _FOCUS, fn, true);
-            },
-
-            /**
-             * Appends a blur event handler.  (The focusout event is used for Internet Explorer, 
-             * the focusout, capture-event for Opera, WebKit, and Gecko.)
-             *
-             * @method addBlurListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to assign the 
-             *  listener to.
-             * @param {Function} fn        The method the event invokes
-             * @param {Object}   obj    An arbitrary object that will be 
-             *                             passed as a parameter to the handler
-             * @param {Boolean|object}  override  If true, the obj passed in becomes
-             *                             the execution scope of the listener. If an
-             *                             object, this object becomes the execution
-             *                             scope.
-             * @return {Boolean} True if the action was successful or defered,
-             *                        false if one or more of the elements 
-             *                        could not have the listener attached,
-             *                        or if the operation throws an exception.
-             * @static
-             */
-            addBlurListener: function (el, fn, obj, override) {
-                return this._addListener(el, _BLUR, fn, obj, override, true);
-            },          
-
-            /**
-             * Removes a blur event listener
-             *
-             * @method removeBlurListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to remove
-             *  the listener from.
-             * @param {Function} fn the method the event invokes.  If fn is
-             *  undefined, then all event handlers for the type of event are 
-             *  removed.
-             * @return {boolean} true if the unbind was successful, false 
-             *  otherwise.
-             * @static
-             */
-            removeBlurListener: function (el, fn) { 
-            
-                return this._removeListener(el, _BLUR, fn, true);
-            
-            },
-
-            /**
-             * When using legacy events, the handler is routed to this object
-             * so we can fire our custom listener stack.
-             * @method fireLegacyEvent
-             * @static
-             * @private
-             */
-            fireLegacyEvent: function(e, legacyIndex) {
-                // this.logger.debug("fireLegacyEvent " + legacyIndex);
-                var ok=true, le, lh, li, scope, ret;
-                
-                lh = legacyHandlers[legacyIndex].slice();
-                for (var i=0, len=lh.length; i<len; ++i) {
-                // for (var i in lh.length) {
-                    li = lh[i];
-                    if ( li && li[this.WFN] ) {
-                        scope = li[this.ADJ_SCOPE];
-                        ret = li[this.WFN].call(scope, e);
-                        ok = (ok && ret);
-                    }
-                }
-
-                // Fire the original handler if we replaced one.  We fire this
-                // after the other events to keep stopPropagation/preventDefault
-                // that happened in the DOM0 handler from touching our DOM2
-                // substitute
-                le = legacyEvents[legacyIndex];
-                if (le && le[2]) {
-                    le[2](e);
-                }
-                
-                return ok;
-            },
-
-            /**
-             * Returns the legacy event index that matches the supplied 
-             * signature
-             * @method getLegacyIndex
-             * @static
-             * @private
-             */
-            getLegacyIndex: function(el, sType) {
-                var key = this.generateId(el) + sType;
-                if (typeof legacyMap[key] == "undefined") { 
-                    return -1;
-                } else {
-                    return legacyMap[key];
-                }
-            },
-
-            /**
-             * Logic that determines when we should automatically use legacy
-             * events instead of DOM2 events.  Currently this is limited to old
-             * Safari browsers with a broken preventDefault
-             * @method useLegacyEvent
-             * @static
-             * @private
-             */
-            useLegacyEvent: function(el, sType) {
-return (this.webkit && this.webkit < 419 && ("click"==sType || "dblclick"==sType));
-            },
-                    
-            /**
-             * Removes an event listener
-             *
-             * @method _removeListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to remove
-             *  the listener from.
-             * @param {String} sType the type of event to remove.
-             * @param {Function} fn the method the event invokes.  If fn is
-             *  undefined, then all event handlers for the type of event are 
-             *  removed.
-             * @param {boolen}      capture capture or bubble phase             
-             * @return {boolean} true if the unbind was successful, false 
-             *  otherwise.
-             * @static
-             * @private
-             */
-            _removeListener: function(el, sType, fn, capture) {
-                var i, len, li;
-
-                // The el argument can be a string
-                if (typeof el == "string") {
-                    el = this.getEl(el);
-                // The el argument can be an array of elements or element ids.
-                } else if ( this._isValidCollection(el)) {
-                    var ok = true;
-                    for (i=el.length-1; i>-1; i--) {
-                        ok = ( this._removeListener(el[i], sType, fn, capture) && ok );
-                    }
-                    return ok;
-                }
-
-                if (!fn || !fn.call) {
-                    // this.logger.debug("Error, function is not valid " + fn);
-                    //return false;
-                    return this.purgeElement(el, false, sType);
-                }
-
-                if ("unload" == sType) {
-
-                    for (i=unloadListeners.length-1; i>-1; i--) {
-                        li = unloadListeners[i];
-                        if (li && 
-                            li[0] == el && 
-                            li[1] == sType && 
-                            li[2] == fn) {
-                                unloadListeners.splice(i, 1);
-                                // unloadListeners[i]=null;
-                                return true;
-                        }
-                    }
-
-                    return false;
-                }
-
-                var cacheItem = null;
-
-                // The index is a hidden parameter; needed to remove it from
-                // the method signature because it was tempting users to
-                // try and take advantage of it, which is not possible.
-                var index = arguments[4];
-  
-                if ("undefined" === typeof index) {
-                    index = this._getCacheIndex(el, sType, fn);
-                }
-
-                if (index >= 0) {
-                    cacheItem = listeners[index];
-                }
-
-                if (!el || !cacheItem) {
-                    // this.logger.debug("cached listener not found");
-                    return false;
-                }
-
-                // this.logger.debug("Removing handler: " + el + ", " + sType);
-
-                if (this.useLegacyEvent(el, sType)) {
-                    var legacyIndex = this.getLegacyIndex(el, sType);
-                    var llist = legacyHandlers[legacyIndex];
-                    if (llist) {
-                        for (i=0, len=llist.length; i<len; ++i) {
-                        // for (i in llist.length) {
-                            li = llist[i];
-                            if (li && 
-                                li[this.EL] == el && 
-                                li[this.TYPE] == sType && 
-                                li[this.FN] == fn) {
-                                    llist.splice(i, 1);
-                                    // llist[i]=null;
-                                    break;
-                            }
-                        }
-                    }
-
-                } else {
-                    try {
-                        this._simpleRemove(el, sType, cacheItem[this.WFN], capture);
-                    } catch(ex) {
-                        this.lastError = ex;
-                        return false;
-                    }
-                }
-
-                // removed the wrapped handler
-                delete listeners[index][this.WFN];
-                delete listeners[index][this.FN];
-                listeners.splice(index, 1);
-                // listeners[index]=null;
-
-                return true;
-
-            },
-
-
-            /**
-             * Removes an event listener
-             *
-             * @method removeListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to remove
-             *  the listener from.
-             * @param {String} sType the type of event to remove.
-             * @param {Function} fn the method the event invokes.  If fn is
-             *  undefined, then all event handlers for the type of event are 
-             *  removed.
-             * @return {boolean} true if the unbind was successful, false 
-             *  otherwise.
-             * @static
-             */
-            removeListener: function(el, sType, fn) {
-
-				return this._removeListener(el, sType, fn, false);
-
-            },
-
-
-            /**
-             * Returns the event's target element.  Safari sometimes provides
-             * a text node, and this is automatically resolved to the text
-             * node's parent so that it behaves like other browsers.
-             * @method getTarget
-             * @param {Event} ev the event
-             * @param {boolean} resolveTextNode when set to true the target's
-             *                  parent will be returned if the target is a 
-             *                  text node.  @deprecated, the text node is
-             *                  now resolved automatically
-             * @return {HTMLElement} the event's target
-             * @static
-             */
-            getTarget: function(ev, resolveTextNode) {
-                var t = ev.target || ev.srcElement;
-                return this.resolveTextNode(t);
-            },
-
-            /**
-             * In some cases, some browsers will return a text node inside
-             * the actual element that was targeted.  This normalizes the
-             * return value for getTarget and getRelatedTarget.
-             * @method resolveTextNode
-             * @param {HTMLElement} node node to resolve
-             * @return {HTMLElement} the normized node
-             * @static
-             */
-            resolveTextNode: function(n) {
-                try {
-                    if (n && 3 == n.nodeType) {
-                        return n.parentNode;
-                    }
-                } catch(e) { }
-
-                return n;
-            },
-
-            /**
-             * Returns the event's pageX
-             * @method getPageX
-             * @param {Event} ev the event
-             * @return {int} the event's pageX
-             * @static
-             */
-            getPageX: function(ev) {
-                var x = ev.pageX;
-                if (!x && 0 !== x) {
-                    x = ev.clientX || 0;
-
-                    if ( this.isIE ) {
-                        x += this._getScrollLeft();
-                    }
-                }
-
-                return x;
-            },
-
-            /**
-             * Returns the event's pageY
-             * @method getPageY
-             * @param {Event} ev the event
-             * @return {int} the event's pageY
-             * @static
-             */
-            getPageY: function(ev) {
-                var y = ev.pageY;
-                if (!y && 0 !== y) {
-                    y = ev.clientY || 0;
-
-                    if ( this.isIE ) {
-                        y += this._getScrollTop();
-                    }
-                }
-
-
-                return y;
-            },
-
-            /**
-             * Returns the pageX and pageY properties as an indexed array.
-             * @method getXY
-             * @param {Event} ev the event
-             * @return {[x, y]} the pageX and pageY properties of the event
-             * @static
-             */
-            getXY: function(ev) {
-                return [this.getPageX(ev), this.getPageY(ev)];
-            },
-
-            /**
-             * Returns the event's related target 
-             * @method getRelatedTarget
-             * @param {Event} ev the event
-             * @return {HTMLElement} the event's relatedTarget
-             * @static
-             */
-            getRelatedTarget: function(ev) {
-                var t = ev.relatedTarget;
-                if (!t) {
-                    if (ev.type == "mouseout") {
-                        t = ev.toElement;
-                    } else if (ev.type == "mouseover") {
-                        t = ev.fromElement;
-                    }
-                }
-
-                return this.resolveTextNode(t);
-            },
-
-            /**
-             * Returns the time of the event.  If the time is not included, the
-             * event is modified using the current time.
-             * @method getTime
-             * @param {Event} ev the event
-             * @return {Date} the time of the event
-             * @static
-             */
-            getTime: function(ev) {
-                if (!ev.time) {
-                    var t = new Date().getTime();
-                    try {
-                        ev.time = t;
-                    } catch(ex) { 
-                        this.lastError = ex;
-                        return t;
-                    }
-                }
-
-                return ev.time;
-            },
-
-            /**
-             * Convenience method for stopPropagation + preventDefault
-             * @method stopEvent
-             * @param {Event} ev the event
-             * @static
-             */
-            stopEvent: function(ev) {
-                this.stopPropagation(ev);
-                this.preventDefault(ev);
-            },
-
-            /**
-             * Stops event propagation
-             * @method stopPropagation
-             * @param {Event} ev the event
-             * @static
-             */
-            stopPropagation: function(ev) {
-                if (ev.stopPropagation) {
-                    ev.stopPropagation();
-                } else {
-                    ev.cancelBubble = true;
-                }
-            },
-
-            /**
-             * Prevents the default behavior of the event
-             * @method preventDefault
-             * @param {Event} ev the event
-             * @static
-             */
-            preventDefault: function(ev) {
-                if (ev.preventDefault) {
-                    ev.preventDefault();
-                } else {
-                    ev.returnValue = false;
-                }
-            },
-             
-            /**
-             * Finds the event in the window object, the caller's arguments, or
-             * in the arguments of another method in the callstack.  This is
-             * executed automatically for events registered through the event
-             * manager, so the implementer should not normally need to execute
-             * this function at all.
-             * @method getEvent
-             * @param {Event} e the event parameter from the handler
-             * @param {HTMLElement} boundEl the element the listener is attached to
-             * @return {Event} the event 
-             * @static
-             */
-            getEvent: function(e, boundEl) {
-                var ev = e || window.event;
-
-                if (!ev) {
-                    var c = this.getEvent.caller;
-                    while (c) {
-                        ev = c.arguments[0];
-                        if (ev && Event == ev.constructor) {
-                            break;
-                        }
-                        c = c.caller;
-                    }
-                }
-
-                return ev;
-            },
-
-            /**
-             * Returns the charcode for an event
-             * @method getCharCode
-             * @param {Event} ev the event
-             * @return {int} the event's charCode
-             * @static
-             */
-            getCharCode: function(ev) {
-                var code = ev.keyCode || ev.charCode || 0;
-
-                // webkit key normalization
-                if (YAHOO.env.ua.webkit && (code in webkitKeymap)) {
-                    code = webkitKeymap[code];
-                }
-                return code;
-            },
-
-            /**
-             * Locating the saved event handler data by function ref
-             *
-             * @method _getCacheIndex
-             * @static
-             * @private
-             */
-            _getCacheIndex: function(el, sType, fn) {
-                for (var i=0, l=listeners.length; i<l; i=i+1) {
-                    var li = listeners[i];
-                    if ( li                 && 
-                         li[this.FN] == fn  && 
-                         li[this.EL] == el  && 
-                         li[this.TYPE] == sType ) {
-                        return i;
-                    }
-                }
-
-                return -1;
-            },
-
-            /**
-             * Generates an unique ID for the element if it does not already 
-             * have one.
-             * @method generateId
-             * @param el the element to create the id for
-             * @return {string} the resulting id of the element
-             * @static
-             */
-            generateId: function(el) {
-                var id = el.id;
-
-                if (!id) {
-                    id = "yuievtautoid-" + counter;
-                    ++counter;
-                    el.id = id;
-                }
-
-                return id;
-            },
-
-
-            /**
-             * We want to be able to use getElementsByTagName as a collection
-             * to attach a group of events to.  Unfortunately, different 
-             * browsers return different types of collections.  This function
-             * tests to determine if the object is array-like.  It will also 
-             * fail if the object is an array, but is empty.
-             * @method _isValidCollection
-             * @param o the object to test
-             * @return {boolean} true if the object is array-like and populated
-             * @static
-             * @private
-             */
-            _isValidCollection: function(o) {
-                try {
-                    return ( o                     && // o is something
-                             typeof o !== "string" && // o is not a string
-                             o.length              && // o is indexed
-                             !o.tagName            && // o is not an HTML element
-                             !o.alert              && // o is not a window
-                             typeof o[0] !== "undefined" );
-                } catch(ex) {
-                    YAHOO.log("node access error (xframe?)", "warn");
-                    return false;
-                }
-
-            },
-
-            /**
-             * @private
-             * @property elCache
-             * DOM element cache
-             * @static
-             * @deprecated Elements are not cached due to issues that arise when
-             * elements are removed and re-added
-             */
-            elCache: {},
-
-            /**
-             * We cache elements bound by id because when the unload event 
-             * fires, we can no longer use document.getElementById
-             * @method getEl
-             * @static
-             * @private
-             * @deprecated Elements are not cached any longer
-             */
-            getEl: function(id) {
-                return (typeof id === "string") ? document.getElementById(id) : id;
-            },
-
-            /**
-             * Clears the element cache
-             * @deprecated Elements are not cached any longer
-             * @method clearCache
-             * @static
-             * @private
-             */
-            clearCache: function() { },
-
-            /**
-             * Custom event the fires when the dom is initially usable
-             * @event DOMReadyEvent
-             */
-            DOMReadyEvent: new YAHOO.util.CustomEvent("DOMReady", this),
-
-            /**
-             * hook up any deferred listeners
-             * @method _load
-             * @static
-             * @private
-             */
-            _load: function(e) {
-
-                if (!loadComplete) {
-                    loadComplete = true;
-                    var EU = YAHOO.util.Event;
-
-                    // Just in case DOMReady did not go off for some reason
-                    EU._ready();
-
-                    // Available elements may not have been detected before the
-                    // window load event fires. Try to find them now so that the
-                    // the user is more likely to get the onAvailable notifications
-                    // before the window load notification
-                    EU._tryPreloadAttach();
-
-                }
-            },
-
-            /**
-             * Fires the DOMReady event listeners the first time the document is
-             * usable.
-             * @method _ready
-             * @static
-             * @private
-             */
-            _ready: function(e) {
-                var EU = YAHOO.util.Event;
-                if (!EU.DOMReady) {
-                    EU.DOMReady=true;
-
-                    // Fire the content ready custom event
-                    EU.DOMReadyEvent.fire();
-
-                    // Remove the DOMContentLoaded (FF/Opera)
-                    EU._simpleRemove(document, "DOMContentLoaded", EU._ready);
-                }
-            },
-
-            /**
-             * Polling function that runs before the onload event fires, 
-             * attempting to attach to DOM Nodes as soon as they are 
-             * available
-             * @method _tryPreloadAttach
-             * @static
-             * @private
-             */
-            _tryPreloadAttach: function() {
-
-                if (onAvailStack.length === 0) {
-                    retryCount = 0;
-                    clearInterval(this._interval);
-                    this._interval = null;
-                    return;
-                }
-
-                if (this.locked) {
-                    return;
-                }
-
-                if (this.isIE) {
-                    // Hold off if DOMReady has not fired and check current
-                    // readyState to protect against the IE operation aborted
-                    // issue.
-                    if (!this.DOMReady) {
-                        this.startInterval();
-                        return;
-                    }
-                }
-
-                this.locked = true;
-
-                // this.logger.debug("tryPreloadAttach");
-
-                // keep trying until after the page is loaded.  We need to 
-                // check the page load state prior to trying to bind the 
-                // elements so that we can be certain all elements have been 
-                // tested appropriately
-                var tryAgain = !loadComplete;
-                if (!tryAgain) {
-                    tryAgain = (retryCount > 0 && onAvailStack.length > 0);
-                }
-
-                // onAvailable
-                var notAvail = [];
-
-                var executeItem = function (el, item) {
-                    var scope = el;
-                    if (item.override) {
-                        if (item.override === true) {
-                            scope = item.obj;
-                        } else {
-                            scope = item.override;
-                        }
-                    }
-                    item.fn.call(scope, item.obj);
-                };
-
-                var i, len, item, el, ready=[];
-
-                // onAvailable onContentReady
-                for (i=0, len=onAvailStack.length; i<len; i=i+1) {
-                    item = onAvailStack[i];
-                    if (item) {
-                        el = this.getEl(item.id);
-                        if (el) {
-                            if (item.checkReady) {
-                                if (loadComplete || el.nextSibling || !tryAgain) {
-                                    ready.push(item);
-                                    onAvailStack[i] = null;
-                                }
-                            } else {
-                                executeItem(el, item);
-                                onAvailStack[i] = null;
-                            }
-                        } else {
-                            notAvail.push(item);
-                        }
-                    }
-                }
-                
-                // make sure onContentReady fires after onAvailable
-                for (i=0, len=ready.length; i<len; i=i+1) {
-                    item = ready[i];
-                    executeItem(this.getEl(item.id), item);
-                }
-
-
-                retryCount--;
-
-                if (tryAgain) {
-                    for (i=onAvailStack.length-1; i>-1; i--) {
-                        item = onAvailStack[i];
-                        if (!item || !item.id) {
-                            onAvailStack.splice(i, 1);
-                        }
-                    }
-
-                    this.startInterval();
-                } else {
-                    clearInterval(this._interval);
-                    this._interval = null;
-                }
-
-                this.locked = false;
-
-            },
-
-            /**
-             * Removes all listeners attached to the given element via addListener.
-             * Optionally, the node's children can also be purged.
-             * Optionally, you can specify a specific type of event to remove.
-             * @method purgeElement
-             * @param {HTMLElement} el the element to purge
-             * @param {boolean} recurse recursively purge this element's children
-             * as well.  Use with caution.
-             * @param {string} sType optional type of listener to purge. If
-             * left out, all listeners will be removed
-             * @static
-             */
-            purgeElement: function(el, recurse, sType) {
-                var oEl = (YAHOO.lang.isString(el)) ? this.getEl(el) : el;
-                var elListeners = this.getListeners(oEl, sType), i, len;
-                if (elListeners) {
-                    for (i=elListeners.length-1; i>-1; i--) {
-                        var l = elListeners[i];
-                        this._removeListener(oEl, l.type, l.fn, l.capture);
-                    }
-                }
-
-                if (recurse && oEl && oEl.childNodes) {
-                    for (i=0,len=oEl.childNodes.length; i<len ; ++i) {
-                        this.purgeElement(oEl.childNodes[i], recurse, sType);
-                    }
-                }
-            },
-
-            /**
-             * Returns all listeners attached to the given element via addListener.
-             * Optionally, you can specify a specific type of event to return.
-             * @method getListeners
-             * @param el {HTMLElement|string} the element or element id to inspect 
-             * @param sType {string} optional type of listener to return. If
-             * left out, all listeners will be returned
-             * @return {Object} the listener. Contains the following fields:
-             * &nbsp;&nbsp;type:   (string)   the type of event
-             * &nbsp;&nbsp;fn:     (function) the callback supplied to addListener
-             * &nbsp;&nbsp;obj:    (object)   the custom object supplied to addListener
-             * &nbsp;&nbsp;adjust: (boolean|object)  whether or not to adjust the default scope
-             * &nbsp;&nbsp;scope: (boolean)  the derived scope based on the adjust parameter
-             * &nbsp;&nbsp;scope: (capture)  the capture parameter supplied to addListener
-             * &nbsp;&nbsp;index:  (int)      its position in the Event util listener cache
-             * @static
-             */           
-            getListeners: function(el, sType) {
-                var results=[], searchLists;
-                if (!sType) {
-                    searchLists = [listeners, unloadListeners];
-                } else if (sType === "unload") {
-                    searchLists = [unloadListeners];
-                } else {
-                    searchLists = [listeners];
-                }
-
-                var oEl = (YAHOO.lang.isString(el)) ? this.getEl(el) : el;
-
-                for (var j=0;j<searchLists.length; j=j+1) {
-                    var searchList = searchLists[j];
-                    if (searchList) {
-                        for (var i=0,len=searchList.length; i<len ; ++i) {
-                            var l = searchList[i];
-                            if ( l  && l[this.EL] === oEl && 
-                                    (!sType || sType === l[this.TYPE]) ) {
-                                results.push({
-                                    type:   l[this.TYPE],
-                                    fn:     l[this.FN],
-                                    obj:    l[this.OBJ],
-                                    adjust: l[this.OVERRIDE],
-                                    scope:  l[this.ADJ_SCOPE],
-                                    capture:  l[this.CAPTURE],                                    
-                                    index:  i
-                                });
-                            }
-                        }
-                    }
-                }
-
-                return (results.length) ? results : null;
-            },
-
-            /**
-             * Removes all listeners registered by pe.event.  Called 
-             * automatically during the unload event.
-             * @method _unload
-             * @static
-             * @private
-             */
-            _unload: function(e) {
-
-                var EU = YAHOO.util.Event, i, j, l, len, index,
-                         ul = unloadListeners.slice();
-
-                // execute and clear stored unload listeners
-                for (i=0,len=unloadListeners.length; i<len; ++i) {
-                    l = ul[i];
-                    if (l) {
-                        var scope = window;
-                        if (l[EU.ADJ_SCOPE]) {
-                            if (l[EU.ADJ_SCOPE] === true) {
-                                scope = l[EU.UNLOAD_OBJ];
-                            } else {
-                                scope = l[EU.ADJ_SCOPE];
-                            }
-                        }
-                        l[EU.FN].call(scope, EU.getEvent(e, l[EU.EL]), l[EU.UNLOAD_OBJ] );
-                        ul[i] = null;
-                        l=null;
-                        scope=null;
-                    }
-                }
-
-                unloadListeners = null;
-
-                // Remove listeners to handle IE memory leaks
-                //if (YAHOO.env.ua.ie && listeners && listeners.length > 0) {
-                
-                // 2.5.0 listeners are removed for all browsers again.  FireFox preserves
-                // at least some listeners between page refreshes, potentially causing
-                // errors during page load (mouseover listeners firing before they
-                // should if the user moves the mouse at the correct moment).
-                if (listeners) {
-                    for (j=listeners.length-1; j>-1; j--) {
-                        l = listeners[j];
-                        if (l) {
-                            EU._removeListener(l[EU.EL], l[EU.TYPE], l[EU.FN], l[EU.CAPTURE], j);
-                        } 
-                    }
-                    l=null;
-                }
-
-                legacyEvents = null;
-
-                EU._simpleRemove(window, "unload", EU._unload);
-
-            },
-
-            /**
-             * Returns scrollLeft
-             * @method _getScrollLeft
-             * @static
-             * @private
-             */
-            _getScrollLeft: function() {
-                return this._getScroll()[1];
-            },
-
-            /**
-             * Returns scrollTop
-             * @method _getScrollTop
-             * @static
-             * @private
-             */
-            _getScrollTop: function() {
-                return this._getScroll()[0];
-            },
-
-            /**
-             * Returns the scrollTop and scrollLeft.  Used to calculate the 
-             * pageX and pageY in Internet Explorer
-             * @method _getScroll
-             * @static
-             * @private
-             */
-            _getScroll: function() {
-                var dd = document.documentElement, db = document.body;
-                if (dd && (dd.scrollTop || dd.scrollLeft)) {
-                    return [dd.scrollTop, dd.scrollLeft];
-                } else if (db) {
-                    return [db.scrollTop, db.scrollLeft];
-                } else {
-                    return [0, 0];
-                }
-            },
-            
-            /**
-             * Used by old versions of CustomEvent, restored for backwards
-             * compatibility
-             * @method regCE
-             * @private
-             * @static
-             * @deprecated still here for backwards compatibility
-             */
-            regCE: function() {
-                // does nothing
-            },
-
-            /**
-             * Adds a DOM event directly without the caching, cleanup, scope adj, etc
-             *
-             * @method _simpleAdd
-             * @param {HTMLElement} el      the element to bind the handler to
-             * @param {string}      sType   the type of event handler
-             * @param {function}    fn      the callback to invoke
-             * @param {boolen}      capture capture or bubble phase
-             * @static
-             * @private
-             */
-            _simpleAdd: function () {
-                if (window.addEventListener) {
-                    return function(el, sType, fn, capture) {
-                        el.addEventListener(sType, fn, (capture));
-                    };
-                } else if (window.attachEvent) {
-                    return function(el, sType, fn, capture) {
-                        el.attachEvent("on" + sType, fn);
-                    };
-                } else {
-                    return function(){};
-                }
-            }(),
-
-            /**
-             * Basic remove listener
-             *
-             * @method _simpleRemove
-             * @param {HTMLElement} el      the element to bind the handler to
-             * @param {string}      sType   the type of event handler
-             * @param {function}    fn      the callback to invoke
-             * @param {boolen}      capture capture or bubble phase
-             * @static
-             * @private
-             */
-            _simpleRemove: function() {
-                if (window.removeEventListener) {
-                    return function (el, sType, fn, capture) {
-                        el.removeEventListener(sType, fn, (capture));
-                    };
-                } else if (window.detachEvent) {
-                    return function (el, sType, fn) {
-                        el.detachEvent("on" + sType, fn);
-                    };
-                } else {
-                    return function(){};
-                }
-            }()
-        };
-
-    }();
-
-    (function() {
-        var EU = YAHOO.util.Event;
-
-        /**
-         * YAHOO.util.Event.on is an alias for addListener
-         * @method on
-         * @see addListener
-         * @static
-         */
-        EU.on = EU.addListener;
-
-        /**
-         * YAHOO.util.Event.onFocus is an alias for addFocusListener
-         * @method on
-         * @see addFocusListener
-         * @static
-         */
-        EU.onFocus = EU.addFocusListener;
-
-        /**
-         * YAHOO.util.Event.onBlur is an alias for addBlurListener
-         * @method onBlur
-         * @see addBlurListener
-         * @static
-         */     
-        EU.onBlur = EU.addBlurListener;
-
-
-/*! DOMReady: based on work by: Dean Edwards/John Resig/Matthias Miller */
-
-        // Internet Explorer: use the readyState of a defered script.
-        // This isolates what appears to be a safe moment to manipulate
-        // the DOM prior to when the document's readyState suggests
-        // it is safe to do so.
-        if (EU.isIE) {
-
-            // Process onAvailable/onContentReady items when the 
-            // DOM is ready.
-            YAHOO.util.Event.onDOMReady(
-                    YAHOO.util.Event._tryPreloadAttach,
-                    YAHOO.util.Event, true);
-            
-            var n = document.createElement('p');  
-
-            EU._dri = setInterval(function() {
-                try {
-                    // throws an error if doc is not ready
-                    n.doScroll('left');
-                    clearInterval(EU._dri);
-                    EU._dri = null;
-                    EU._ready();
-                    n = null;
-                } catch (ex) { 
-                }
-            }, EU.POLL_INTERVAL); 
-
-        
-        // The document's readyState in Safari currently will
-        // change to loaded/complete before images are loaded.
-        } else if (EU.webkit && EU.webkit < 525) {
-
-            EU._dri = setInterval(function() {
-                var rs=document.readyState;
-                if ("loaded" == rs || "complete" == rs) {
-                    clearInterval(EU._dri);
-                    EU._dri = null;
-                    EU._ready();
-                }
-            }, EU.POLL_INTERVAL); 
-
-        // FireFox and Opera: These browsers provide a event for this
-        // moment.  The latest WebKit releases now support this event.
-        } else {
-
-            EU._simpleAdd(document, "DOMContentLoaded", EU._ready);
-
-        }
-        /////////////////////////////////////////////////////////////
-
-
-        EU._simpleAdd(window, "load", EU._load);
-        EU._simpleAdd(window, "unload", EU._unload);
-        EU._tryPreloadAttach();
-    })();
-
-}
-/**
- * EventProvider is designed to be used with YAHOO.augment to wrap 
- * CustomEvents in an interface that allows events to be subscribed to 
- * and fired by name.  This makes it possible for implementing code to
- * subscribe to an event that either has not been created yet, or will
- * not be created at all.
- *
- * @Class EventProvider
- */
-YAHOO.util.EventProvider = function() { };
-
-YAHOO.util.EventProvider.prototype = {
-
-    /**
-     * Private storage of custom events
-     * @property __yui_events
-     * @type Object[]
-     * @private
-     */
-    __yui_events: null,
-
-    /**
-     * Private storage of custom event subscribers
-     * @property __yui_subscribers
-     * @type Object[]
-     * @private
-     */
-    __yui_subscribers: null,
-    
-    /**
-     * Subscribe to a CustomEvent by event type
-     *
-     * @method subscribe
-     * @param p_type     {string}   the type, or name of the event
-     * @param p_fn       {function} the function to exectute when the event fires
-     * @param p_obj      {Object}   An object to be passed along when the event 
-     *                              fires
-     * @param p_override {boolean}  If true, the obj passed in becomes the 
-     *                              execution scope of the listener
-     */
-    subscribe: function(p_type, p_fn, p_obj, p_override) {
-
-        this.__yui_events = this.__yui_events || {};
-        var ce = this.__yui_events[p_type];
-
-        if (ce) {
-            ce.subscribe(p_fn, p_obj, p_override);
-        } else {
-            this.__yui_subscribers = this.__yui_subscribers || {};
-            var subs = this.__yui_subscribers;
-            if (!subs[p_type]) {
-                subs[p_type] = [];
-            }
-            subs[p_type].push(
-                { fn: p_fn, obj: p_obj, override: p_override } );
-        }
-    },
-
-    /**
-     * Unsubscribes one or more listeners the from the specified event
-     * @method unsubscribe
-     * @param p_type {string}   The type, or name of the event.  If the type
-     *                          is not specified, it will attempt to remove
-     *                          the listener from all hosted events.
-     * @param p_fn   {Function} The subscribed function to unsubscribe, if not
-     *                          supplied, all subscribers will be removed.
-     * @param p_obj  {Object}   The custom object passed to subscribe.  This is
-     *                        optional, but if supplied will be used to
-     *                        disambiguate multiple listeners that are the same
-     *                        (e.g., you subscribe many object using a function
-     *                        that lives on the prototype)
-     * @return {boolean} true if the subscriber was found and detached.
-     */
-    unsubscribe: function(p_type, p_fn, p_obj) {
-        this.__yui_events = this.__yui_events || {};
-        var evts = this.__yui_events;
-        if (p_type) {
-            var ce = evts[p_type];
-            if (ce) {
-                return ce.unsubscribe(p_fn, p_obj);
-            }
-        } else {
-            var ret = true;
-            for (var i in evts) {
-                if (YAHOO.lang.hasOwnProperty(evts, i)) {
-                    ret = ret && evts[i].unsubscribe(p_fn, p_obj);
-                }
-            }
-            return ret;
-        }
-
-        return false;
-    },
-    
-    /**
-     * Removes all listeners from the specified event.  If the event type
-     * is not specified, all listeners from all hosted custom events will
-     * be removed.
-     * @method unsubscribeAll
-     * @param p_type {string}   The type, or name of the event
-     */
-    unsubscribeAll: function(p_type) {
-        return this.unsubscribe(p_type);
-    },
-
-    /**
-     * Creates a new custom event of the specified type.  If a custom event
-     * by that name already exists, it will not be re-created.  In either
-     * case the custom event is returned. 
-     *
-     * @method createEvent
-     *
-     * @param p_type {string} the type, or name of the event
-     * @param p_config {object} optional config params.  Valid properties are:
-     *
-     *  <ul>
-     *    <li>
-     *      scope: defines the default execution scope.  If not defined
-     *      the default scope will be this instance.
-     *    </li>
-     *    <li>
-     *      silent: if true, the custom event will not generate log messages.
-     *      This is false by default.
-     *    </li>
-     *    <li>
-     *      onSubscribeCallback: specifies a callback to execute when the
-     *      event has a new subscriber.  This will fire immediately for
-     *      each queued subscriber if any exist prior to the creation of
-     *      the event.
-     *    </li>
-     *  </ul>
-     *
-     *  @return {CustomEvent} the custom event
-     *
-     */
-    createEvent: function(p_type, p_config) {
-
-        this.__yui_events = this.__yui_events || {};
-        var opts = p_config || {};
-        var events = this.__yui_events;
-
-        if (events[p_type]) {
-YAHOO.log("EventProvider createEvent skipped: '"+p_type+"' already exists");
-        } else {
-
-            var scope  = opts.scope  || this;
-            var silent = (opts.silent);
-
-            var ce = new YAHOO.util.CustomEvent(p_type, scope, silent,
-                    YAHOO.util.CustomEvent.FLAT);
-            events[p_type] = ce;
-
-            if (opts.onSubscribeCallback) {
-                ce.subscribeEvent.subscribe(opts.onSubscribeCallback);
-            }
-
-            this.__yui_subscribers = this.__yui_subscribers || {};
-            var qs = this.__yui_subscribers[p_type];
-
-            if (qs) {
-                for (var i=0; i<qs.length; ++i) {
-                    ce.subscribe(qs[i].fn, qs[i].obj, qs[i].override);
-                }
-            }
-        }
-
-        return events[p_type];
-    },
-
-
-   /**
-     * Fire a custom event by name.  The callback functions will be executed
-     * from the scope specified when the event was created, and with the 
-     * following parameters:
-     *   <ul>
-     *   <li>The first argument fire() was executed with</li>
-     *   <li>The custom object (if any) that was passed into the subscribe() 
-     *       method</li>
-     *   </ul>
-     * @method fireEvent
-     * @param p_type    {string}  the type, or name of the event
-     * @param arguments {Object*} an arbitrary set of parameters to pass to 
-     *                            the handler.
-     * @return {boolean} the return value from CustomEvent.fire
-     *                   
-     */
-    fireEvent: function(p_type, arg1, arg2, etc) {
-
-        this.__yui_events = this.__yui_events || {};
-        var ce = this.__yui_events[p_type];
-
-        if (!ce) {
-YAHOO.log(p_type + "event fired before it was created.");
-            return null;
-        }
-
-        var args = [];
-        for (var i=1; i<arguments.length; ++i) {
-            args.push(arguments[i]);
-        }
-        return ce.fire.apply(ce, args);
-    },
-
-    /**
-     * Returns true if the custom event of the provided type has been created
-     * with createEvent.
-     * @method hasEvent
-     * @param type {string} the type, or name of the event
-     */
-    hasEvent: function(type) {
-        if (this.__yui_events) {
-            if (this.__yui_events[type]) {
-                return true;
-            }
-        }
-        return false;
-    }
-
-};
-
-//@TODO optimize
-//@TODO use event utility, lang abstractions
-//@TODO replace
-
-/**
-* KeyListener is a utility that provides an easy interface for listening for
-* keydown/keyup events fired against DOM elements.
-* @namespace YAHOO.util
-* @class KeyListener
-* @constructor
-* @param {HTMLElement} attachTo The element or element ID to which the key 
-*                               event should be attached
-* @param {String}      attachTo The element or element ID to which the key
-*                               event should be attached
-* @param {Object}      keyData  The object literal representing the key(s) 
-*                               to detect. Possible attributes are 
-*                               shift(boolean), alt(boolean), ctrl(boolean) 
-*                               and keys(either an int or an array of ints 
-*                               representing keycodes).
-* @param {Function}    handler  The CustomEvent handler to fire when the 
-*                               key event is detected
-* @param {Object}      handler  An object literal representing the handler. 
-* @param {String}      event    Optional. The event (keydown or keyup) to 
-*                               listen for. Defaults automatically to keydown.
-*
-* @knownissue the "keypress" event is completely broken in Safari 2.x and below.
-*             the workaround is use "keydown" for key listening.  However, if
-*             it is desired to prevent the default behavior of the keystroke,
-*             that can only be done on the keypress event.  This makes key
-*             handling quite ugly.
-* @knownissue keydown is also broken in Safari 2.x and below for the ESC key.
-*             There currently is no workaround other than choosing another
-*             key to listen for.
-*/
-YAHOO.util.KeyListener = function(attachTo, keyData, handler, event) {
-    if (!attachTo) {
-        YAHOO.log("No attachTo element specified", "error");
-    } else if (!keyData) {
-        YAHOO.log("No keyData specified", "error");
-    } else if (!handler) {
-        YAHOO.log("No handler specified", "error");
-    } 
-    
-    if (!event) {
-        event = YAHOO.util.KeyListener.KEYDOWN;
-    }
-
-    /**
-    * The CustomEvent fired internally when a key is pressed
-    * @event keyEvent
-    * @private
-    * @param {Object} keyData The object literal representing the key(s) to 
-    *                         detect. Possible attributes are shift(boolean), 
-    *                         alt(boolean), ctrl(boolean) and keys(either an 
-    *                         int or an array of ints representing keycodes).
-    */
-    var keyEvent = new YAHOO.util.CustomEvent("keyPressed");
-    
-    /**
-    * The CustomEvent fired when the KeyListener is enabled via the enable() 
-    * function
-    * @event enabledEvent
-    * @param {Object} keyData The object literal representing the key(s) to 
-    *                         detect. Possible attributes are shift(boolean), 
-    *                         alt(boolean), ctrl(boolean) and keys(either an 
-    *                         int or an array of ints representing keycodes).
-    */
-    this.enabledEvent = new YAHOO.util.CustomEvent("enabled");
-
-    /**
-    * The CustomEvent fired when the KeyListener is disabled via the 
-    * disable() function
-    * @event disabledEvent
-    * @param {Object} keyData The object literal representing the key(s) to 
-    *                         detect. Possible attributes are shift(boolean), 
-    *                         alt(boolean), ctrl(boolean) and keys(either an 
-    *                         int or an array of ints representing keycodes).
-    */
-    this.disabledEvent = new YAHOO.util.CustomEvent("disabled");
-
-    if (typeof attachTo == 'string') {
-        attachTo = document.getElementById(attachTo);
-    }
-
-    if (typeof handler == 'function') {
-        keyEvent.subscribe(handler);
-    } else {
-        keyEvent.subscribe(handler.fn, handler.scope, handler.correctScope);
-    }
-
-    /**
-    * Handles the key event when a key is pressed.
-    * @method handleKeyPress
-    * @param {DOMEvent} e   The keypress DOM event
-    * @param {Object}   obj The DOM event scope object
-    * @private
-    */
-    function handleKeyPress(e, obj) {
-        if (! keyData.shift) {  
-            keyData.shift = false; 
-        }
-        if (! keyData.alt) {    
-            keyData.alt = false;
-        }
-        if (! keyData.ctrl) {
-            keyData.ctrl = false;
-        }
-
-        // check held down modifying keys first
-        if (e.shiftKey == keyData.shift && 
-            e.altKey   == keyData.alt &&
-            e.ctrlKey  == keyData.ctrl) { // if we pass this, all modifiers match
-            
-            var dataItem;
-
-            if (keyData.keys instanceof Array) {
-                for (var i=0;i<keyData.keys.length;i++) {
-                    dataItem = keyData.keys[i];
-
-                    if (dataItem == e.charCode ) {
-                        keyEvent.fire(e.charCode, e);
-                        break;
-                    } else if (dataItem == e.keyCode) {
-                        keyEvent.fire(e.keyCode, e);
-                        break;
-                    }
-                }
-            } else {
-                dataItem = keyData.keys;
-                if (dataItem == e.charCode ) {
-                    keyEvent.fire(e.charCode, e);
-                } else if (dataItem == e.keyCode) {
-                    keyEvent.fire(e.keyCode, e);
-                }
-            }
-        }
-    }
-
-    /**
-    * Enables the KeyListener by attaching the DOM event listeners to the 
-    * target DOM element
-    * @method enable
-    */
-    this.enable = function() {
-        if (! this.enabled) {
-            YAHOO.util.Event.addListener(attachTo, event, handleKeyPress);
-            this.enabledEvent.fire(keyData);
-        }
-        /**
-        * Boolean indicating the enabled/disabled state of the Tooltip
-        * @property enabled
-        * @type Boolean
-        */
-        this.enabled = true;
-    };
-
-    /**
-    * Disables the KeyListener by removing the DOM event listeners from the 
-    * target DOM element
-    * @method disable
-    */
-    this.disable = function() {
-        if (this.enabled) {
-            YAHOO.util.Event.removeListener(attachTo, event, handleKeyPress);
-            this.disabledEvent.fire(keyData);
-        }
-        this.enabled = false;
-    };
-
-    /**
-    * Returns a String representation of the object.
-    * @method toString
-    * @return {String}  The string representation of the KeyListener
-    */ 
-    this.toString = function() {
-        return "KeyListener [" + keyData.keys + "] " + attachTo.tagName + 
-                (attachTo.id ? "[" + attachTo.id + "]" : "");
-    };
-
-};
-
-/**
- * Constant representing the DOM "keydown" event.
- * @property YAHOO.util.KeyListener.KEYDOWN
- * @static
- * @final
- * @type String
- */
-YAHOO.util.KeyListener.KEYDOWN = "keydown";
-
-/**
- * Constant representing the DOM "keyup" event.
- * @property YAHOO.util.KeyListener.KEYUP
- * @static
- * @final
- * @type String
- */
-YAHOO.util.KeyListener.KEYUP = "keyup";
-
-/**
- * keycode constants for a subset of the special keys
- * @property KEY
- * @static
- * @final
- */
-YAHOO.util.KeyListener.KEY = {
-    ALT          : 18,
-    BACK_SPACE   : 8,
-    CAPS_LOCK    : 20,
-    CONTROL      : 17,
-    DELETE       : 46,
-    DOWN         : 40,
-    END          : 35,
-    ENTER        : 13,
-    ESCAPE       : 27,
-    HOME         : 36,
-    LEFT         : 37,
-    META         : 224,
-    NUM_LOCK     : 144,
-    PAGE_DOWN    : 34,
-    PAGE_UP      : 33, 
-    PAUSE        : 19,
-    PRINTSCREEN  : 44,
-    RIGHT        : 39,
-    SCROLL_LOCK  : 145,
-    SHIFT        : 16,
-    SPACE        : 32,
-    TAB          : 9,
-    UP           : 38
-};
-YAHOO.register("event", YAHOO.util.Event, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/event/event-min.js b/eclipse.org-common/yui/2.6.0/build/event/event-min.js
deleted file mode 100644
index 2fd6cef..0000000
--- a/eclipse.org-common/yui/2.6.0/build/event/event-min.js
+++ /dev/null
@@ -1,11 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.util.CustomEvent=function(D,B,C,A){this.type=D;this.scope=B||window;this.silent=C;this.signature=A||YAHOO.util.CustomEvent.LIST;this.subscribers=[];if(!this.silent){}var E="_YUICEOnSubscribe";if(D!==E){this.subscribeEvent=new YAHOO.util.CustomEvent(E,this,true);}this.lastError=null;};YAHOO.util.CustomEvent.LIST=0;YAHOO.util.CustomEvent.FLAT=1;YAHOO.util.CustomEvent.prototype={subscribe:function(B,C,A){if(!B){throw new Error("Invalid callback for subscriber to '"+this.type+"'");}if(this.subscribeEvent){this.subscribeEvent.fire(B,C,A);}this.subscribers.push(new YAHOO.util.Subscriber(B,C,A));},unsubscribe:function(D,F){if(!D){return this.unsubscribeAll();}var E=false;for(var B=0,A=this.subscribers.length;B<A;++B){var C=this.subscribers[B];if(C&&C.contains(D,F)){this._delete(B);E=true;}}return E;},fire:function(){this.lastError=null;var K=[],E=this.subscribers.length;if(!E&&this.silent){return true;}var I=[].slice.call(arguments,0),G=true,D,J=false;if(!this.silent){}var C=this.subscribers.slice(),A=YAHOO.util.Event.throwErrors;for(D=0;D<E;++D){var M=C[D];if(!M){J=true;}else{if(!this.silent){}var L=M.getScope(this.scope);if(this.signature==YAHOO.util.CustomEvent.FLAT){var B=null;if(I.length>0){B=I[0];}try{G=M.fn.call(L,B,M.obj);}catch(F){this.lastError=F;if(A){throw F;}}}else{try{G=M.fn.call(L,this.type,I,M.obj);}catch(H){this.lastError=H;if(A){throw H;}}}if(false===G){if(!this.silent){}break;}}}return(G!==false);},unsubscribeAll:function(){for(var A=this.subscribers.length-1;A>-1;A--){this._delete(A);}this.subscribers=[];return A;},_delete:function(A){var B=this.subscribers[A];if(B){delete B.fn;delete B.obj;}this.subscribers.splice(A,1);},toString:function(){return"CustomEvent: "+"'"+this.type+"', "+"scope: "+this.scope;}};YAHOO.util.Subscriber=function(B,C,A){this.fn=B;this.obj=YAHOO.lang.isUndefined(C)?null:C;this.override=A;};YAHOO.util.Subscriber.prototype.getScope=function(A){if(this.override){if(this.override===true){return this.obj;}else{return this.override;}}return A;};YAHOO.util.Subscriber.prototype.contains=function(A,B){if(B){return(this.fn==A&&this.obj==B);}else{return(this.fn==A);}};YAHOO.util.Subscriber.prototype.toString=function(){return"Subscriber { obj: "+this.obj+", override: "+(this.override||"no")+" }";};if(!YAHOO.util.Event){YAHOO.util.Event=function(){var H=false;var I=[];var J=[];var G=[];var E=[];var C=0;var F=[];var B=[];var A=0;var D={63232:38,63233:40,63234:37,63235:39,63276:33,63277:34,25:9};var K=YAHOO.env.ua.ie?"focusin":"focus";var L=YAHOO.env.ua.ie?"focusout":"blur";return{POLL_RETRYS:2000,POLL_INTERVAL:20,EL:0,TYPE:1,FN:2,WFN:3,UNLOAD_OBJ:3,ADJ_SCOPE:4,OBJ:5,OVERRIDE:6,CAPTURE:7,lastError:null,isSafari:YAHOO.env.ua.webkit,webkit:YAHOO.env.ua.webkit,isIE:YAHOO.env.ua.ie,_interval:null,_dri:null,DOMReady:false,throwErrors:false,startInterval:function(){if(!this._interval){var M=this;var N=function(){M._tryPreloadAttach();};this._interval=setInterval(N,this.POLL_INTERVAL);}},onAvailable:function(R,O,S,Q,P){var M=(YAHOO.lang.isString(R))?[R]:R;for(var N=0;N<M.length;N=N+1){F.push({id:M[N],fn:O,obj:S,override:Q,checkReady:P});}C=this.POLL_RETRYS;this.startInterval();},onContentReady:function(O,M,P,N){this.onAvailable(O,M,P,N,true);},onDOMReady:function(M,O,N){if(this.DOMReady){setTimeout(function(){var P=window;if(N){if(N===true){P=O;}else{P=N;}}M.call(P,"DOMReady",[],O);},0);}else{this.DOMReadyEvent.subscribe(M,O,N);}},_addListener:function(O,M,X,S,N,a){if(!X||!X.call){return false;}if(this._isValidCollection(O)){var Y=true;for(var T=0,V=O.length;T<V;++T){Y=this._addListener(O[T],M,X,S,N,a)&&Y;}return Y;}else{if(YAHOO.lang.isString(O)){var R=this.getEl(O);if(R){O=R;}else{this.onAvailable(O,function(){YAHOO.util.Event._addListener(O,M,X,S,N,a);});return true;}}}if(!O){return false;}if("unload"==M&&S!==this){J[J.length]=[O,M,X,S,N,a];return true;}var b=O;if(N){if(N===true){b=S;}else{b=N;}}var P=function(c){return X.call(b,YAHOO.util.Event.getEvent(c,O),S);};var Z=[O,M,X,P,b,S,N,a];var U=I.length;I[U]=Z;if(this.useLegacyEvent(O,M)){var Q=this.getLegacyIndex(O,M);if(Q==-1||O!=G[Q][0]){Q=G.length;B[O.id+M]=Q;G[Q]=[O,M,O["on"+M]];E[Q]=[];O["on"+M]=function(c){YAHOO.util.Event.fireLegacyEvent(YAHOO.util.Event.getEvent(c),Q);};}E[Q].push(Z);}else{try{this._simpleAdd(O,M,P,a);}catch(W){this.lastError=W;this._removeListener(O,M,X,a);return false;}}return true;},addListener:function(O,Q,N,P,M){return this._addListener(O,Q,N,P,M,false);},addFocusListener:function(O,N,P,M){return this._addListener(O,K,N,P,M,true);},removeFocusListener:function(N,M){return this._removeListener(N,K,M,true);},addBlurListener:function(O,N,P,M){return this._addListener(O,L,N,P,M,true);},removeBlurListener:function(N,M){return this._removeListener(N,L,M,true);},fireLegacyEvent:function(Q,O){var S=true,M,U,T,V,R;U=E[O].slice();for(var N=0,P=U.length;N<P;++N){T=U[N];if(T&&T[this.WFN]){V=T[this.ADJ_SCOPE];R=T[this.WFN].call(V,Q);S=(S&&R);}}M=G[O];if(M&&M[2]){M[2](Q);}return S;},getLegacyIndex:function(N,O){var M=this.generateId(N)+O;if(typeof B[M]=="undefined"){return -1;}else{return B[M];}},useLegacyEvent:function(M,N){return(this.webkit&&this.webkit<419&&("click"==N||"dblclick"==N));},_removeListener:function(N,M,V,Y){var Q,T,X;if(typeof N=="string"){N=this.getEl(N);}else{if(this._isValidCollection(N)){var W=true;for(Q=N.length-1;Q>-1;Q--){W=(this._removeListener(N[Q],M,V,Y)&&W);}return W;}}if(!V||!V.call){return this.purgeElement(N,false,M);}if("unload"==M){for(Q=J.length-1;Q>-1;Q--){X=J[Q];if(X&&X[0]==N&&X[1]==M&&X[2]==V){J.splice(Q,1);return true;}}return false;}var R=null;var S=arguments[4];if("undefined"===typeof S){S=this._getCacheIndex(N,M,V);}if(S>=0){R=I[S];}if(!N||!R){return false;}if(this.useLegacyEvent(N,M)){var P=this.getLegacyIndex(N,M);var O=E[P];if(O){for(Q=0,T=O.length;Q<T;++Q){X=O[Q];if(X&&X[this.EL]==N&&X[this.TYPE]==M&&X[this.FN]==V){O.splice(Q,1);break;}}}}else{try{this._simpleRemove(N,M,R[this.WFN],Y);}catch(U){this.lastError=U;return false;}}delete I[S][this.WFN];delete I[S][this.FN];
-I.splice(S,1);return true;},removeListener:function(N,O,M){return this._removeListener(N,O,M,false);},getTarget:function(O,N){var M=O.target||O.srcElement;return this.resolveTextNode(M);},resolveTextNode:function(N){try{if(N&&3==N.nodeType){return N.parentNode;}}catch(M){}return N;},getPageX:function(N){var M=N.pageX;if(!M&&0!==M){M=N.clientX||0;if(this.isIE){M+=this._getScrollLeft();}}return M;},getPageY:function(M){var N=M.pageY;if(!N&&0!==N){N=M.clientY||0;if(this.isIE){N+=this._getScrollTop();}}return N;},getXY:function(M){return[this.getPageX(M),this.getPageY(M)];},getRelatedTarget:function(N){var M=N.relatedTarget;if(!M){if(N.type=="mouseout"){M=N.toElement;}else{if(N.type=="mouseover"){M=N.fromElement;}}}return this.resolveTextNode(M);},getTime:function(O){if(!O.time){var N=new Date().getTime();try{O.time=N;}catch(M){this.lastError=M;return N;}}return O.time;},stopEvent:function(M){this.stopPropagation(M);this.preventDefault(M);},stopPropagation:function(M){if(M.stopPropagation){M.stopPropagation();}else{M.cancelBubble=true;}},preventDefault:function(M){if(M.preventDefault){M.preventDefault();}else{M.returnValue=false;}},getEvent:function(O,M){var N=O||window.event;if(!N){var P=this.getEvent.caller;while(P){N=P.arguments[0];if(N&&Event==N.constructor){break;}P=P.caller;}}return N;},getCharCode:function(N){var M=N.keyCode||N.charCode||0;if(YAHOO.env.ua.webkit&&(M in D)){M=D[M];}return M;},_getCacheIndex:function(Q,R,P){for(var O=0,N=I.length;O<N;O=O+1){var M=I[O];if(M&&M[this.FN]==P&&M[this.EL]==Q&&M[this.TYPE]==R){return O;}}return -1;},generateId:function(M){var N=M.id;if(!N){N="yuievtautoid-"+A;++A;M.id=N;}return N;},_isValidCollection:function(N){try{return(N&&typeof N!=="string"&&N.length&&!N.tagName&&!N.alert&&typeof N[0]!=="undefined");}catch(M){return false;}},elCache:{},getEl:function(M){return(typeof M==="string")?document.getElementById(M):M;},clearCache:function(){},DOMReadyEvent:new YAHOO.util.CustomEvent("DOMReady",this),_load:function(N){if(!H){H=true;var M=YAHOO.util.Event;M._ready();M._tryPreloadAttach();}},_ready:function(N){var M=YAHOO.util.Event;if(!M.DOMReady){M.DOMReady=true;M.DOMReadyEvent.fire();M._simpleRemove(document,"DOMContentLoaded",M._ready);}},_tryPreloadAttach:function(){if(F.length===0){C=0;clearInterval(this._interval);this._interval=null;return ;}if(this.locked){return ;}if(this.isIE){if(!this.DOMReady){this.startInterval();return ;}}this.locked=true;var S=!H;if(!S){S=(C>0&&F.length>0);}var R=[];var T=function(V,W){var U=V;if(W.override){if(W.override===true){U=W.obj;}else{U=W.override;}}W.fn.call(U,W.obj);};var N,M,Q,P,O=[];for(N=0,M=F.length;N<M;N=N+1){Q=F[N];if(Q){P=this.getEl(Q.id);if(P){if(Q.checkReady){if(H||P.nextSibling||!S){O.push(Q);F[N]=null;}}else{T(P,Q);F[N]=null;}}else{R.push(Q);}}}for(N=0,M=O.length;N<M;N=N+1){Q=O[N];T(this.getEl(Q.id),Q);}C--;if(S){for(N=F.length-1;N>-1;N--){Q=F[N];if(!Q||!Q.id){F.splice(N,1);}}this.startInterval();}else{clearInterval(this._interval);this._interval=null;}this.locked=false;},purgeElement:function(Q,R,T){var O=(YAHOO.lang.isString(Q))?this.getEl(Q):Q;var S=this.getListeners(O,T),P,M;if(S){for(P=S.length-1;P>-1;P--){var N=S[P];this._removeListener(O,N.type,N.fn,N.capture);}}if(R&&O&&O.childNodes){for(P=0,M=O.childNodes.length;P<M;++P){this.purgeElement(O.childNodes[P],R,T);}}},getListeners:function(O,M){var R=[],N;if(!M){N=[I,J];}else{if(M==="unload"){N=[J];}else{N=[I];}}var T=(YAHOO.lang.isString(O))?this.getEl(O):O;for(var Q=0;Q<N.length;Q=Q+1){var V=N[Q];if(V){for(var S=0,U=V.length;S<U;++S){var P=V[S];if(P&&P[this.EL]===T&&(!M||M===P[this.TYPE])){R.push({type:P[this.TYPE],fn:P[this.FN],obj:P[this.OBJ],adjust:P[this.OVERRIDE],scope:P[this.ADJ_SCOPE],capture:P[this.CAPTURE],index:S});}}}}return(R.length)?R:null;},_unload:function(S){var M=YAHOO.util.Event,P,O,N,R,Q,T=J.slice();for(P=0,R=J.length;P<R;++P){N=T[P];if(N){var U=window;if(N[M.ADJ_SCOPE]){if(N[M.ADJ_SCOPE]===true){U=N[M.UNLOAD_OBJ];}else{U=N[M.ADJ_SCOPE];}}N[M.FN].call(U,M.getEvent(S,N[M.EL]),N[M.UNLOAD_OBJ]);T[P]=null;N=null;U=null;}}J=null;if(I){for(O=I.length-1;O>-1;O--){N=I[O];if(N){M._removeListener(N[M.EL],N[M.TYPE],N[M.FN],N[M.CAPTURE],O);}}N=null;}G=null;M._simpleRemove(window,"unload",M._unload);},_getScrollLeft:function(){return this._getScroll()[1];},_getScrollTop:function(){return this._getScroll()[0];},_getScroll:function(){var M=document.documentElement,N=document.body;if(M&&(M.scrollTop||M.scrollLeft)){return[M.scrollTop,M.scrollLeft];}else{if(N){return[N.scrollTop,N.scrollLeft];}else{return[0,0];}}},regCE:function(){},_simpleAdd:function(){if(window.addEventListener){return function(O,P,N,M){O.addEventListener(P,N,(M));};}else{if(window.attachEvent){return function(O,P,N,M){O.attachEvent("on"+P,N);};}else{return function(){};}}}(),_simpleRemove:function(){if(window.removeEventListener){return function(O,P,N,M){O.removeEventListener(P,N,(M));};}else{if(window.detachEvent){return function(N,O,M){N.detachEvent("on"+O,M);};}else{return function(){};}}}()};}();(function(){var EU=YAHOO.util.Event;EU.on=EU.addListener;EU.onFocus=EU.addFocusListener;EU.onBlur=EU.addBlurListener;
-/* DOMReady: based on work by: Dean Edwards/John Resig/Matthias Miller */
-if(EU.isIE){YAHOO.util.Event.onDOMReady(YAHOO.util.Event._tryPreloadAttach,YAHOO.util.Event,true);var n=document.createElement("p");EU._dri=setInterval(function(){try{n.doScroll("left");clearInterval(EU._dri);EU._dri=null;EU._ready();n=null;}catch(ex){}},EU.POLL_INTERVAL);}else{if(EU.webkit&&EU.webkit<525){EU._dri=setInterval(function(){var rs=document.readyState;if("loaded"==rs||"complete"==rs){clearInterval(EU._dri);EU._dri=null;EU._ready();}},EU.POLL_INTERVAL);}else{EU._simpleAdd(document,"DOMContentLoaded",EU._ready);}}EU._simpleAdd(window,"load",EU._load);EU._simpleAdd(window,"unload",EU._unload);EU._tryPreloadAttach();})();}YAHOO.util.EventProvider=function(){};YAHOO.util.EventProvider.prototype={__yui_events:null,__yui_subscribers:null,subscribe:function(A,C,F,E){this.__yui_events=this.__yui_events||{};
-var D=this.__yui_events[A];if(D){D.subscribe(C,F,E);}else{this.__yui_subscribers=this.__yui_subscribers||{};var B=this.__yui_subscribers;if(!B[A]){B[A]=[];}B[A].push({fn:C,obj:F,override:E});}},unsubscribe:function(C,E,G){this.__yui_events=this.__yui_events||{};var A=this.__yui_events;if(C){var F=A[C];if(F){return F.unsubscribe(E,G);}}else{var B=true;for(var D in A){if(YAHOO.lang.hasOwnProperty(A,D)){B=B&&A[D].unsubscribe(E,G);}}return B;}return false;},unsubscribeAll:function(A){return this.unsubscribe(A);},createEvent:function(G,D){this.__yui_events=this.__yui_events||{};var A=D||{};var I=this.__yui_events;if(I[G]){}else{var H=A.scope||this;var E=(A.silent);var B=new YAHOO.util.CustomEvent(G,H,E,YAHOO.util.CustomEvent.FLAT);I[G]=B;if(A.onSubscribeCallback){B.subscribeEvent.subscribe(A.onSubscribeCallback);}this.__yui_subscribers=this.__yui_subscribers||{};var F=this.__yui_subscribers[G];if(F){for(var C=0;C<F.length;++C){B.subscribe(F[C].fn,F[C].obj,F[C].override);}}}return I[G];},fireEvent:function(E,D,A,C){this.__yui_events=this.__yui_events||{};var G=this.__yui_events[E];if(!G){return null;}var B=[];for(var F=1;F<arguments.length;++F){B.push(arguments[F]);}return G.fire.apply(G,B);},hasEvent:function(A){if(this.__yui_events){if(this.__yui_events[A]){return true;}}return false;}};YAHOO.util.KeyListener=function(A,F,B,C){if(!A){}else{if(!F){}else{if(!B){}}}if(!C){C=YAHOO.util.KeyListener.KEYDOWN;}var D=new YAHOO.util.CustomEvent("keyPressed");this.enabledEvent=new YAHOO.util.CustomEvent("enabled");this.disabledEvent=new YAHOO.util.CustomEvent("disabled");if(typeof A=="string"){A=document.getElementById(A);}if(typeof B=="function"){D.subscribe(B);}else{D.subscribe(B.fn,B.scope,B.correctScope);}function E(J,I){if(!F.shift){F.shift=false;}if(!F.alt){F.alt=false;}if(!F.ctrl){F.ctrl=false;}if(J.shiftKey==F.shift&&J.altKey==F.alt&&J.ctrlKey==F.ctrl){var G;if(F.keys instanceof Array){for(var H=0;H<F.keys.length;H++){G=F.keys[H];if(G==J.charCode){D.fire(J.charCode,J);break;}else{if(G==J.keyCode){D.fire(J.keyCode,J);break;}}}}else{G=F.keys;if(G==J.charCode){D.fire(J.charCode,J);}else{if(G==J.keyCode){D.fire(J.keyCode,J);}}}}}this.enable=function(){if(!this.enabled){YAHOO.util.Event.addListener(A,C,E);this.enabledEvent.fire(F);}this.enabled=true;};this.disable=function(){if(this.enabled){YAHOO.util.Event.removeListener(A,C,E);this.disabledEvent.fire(F);}this.enabled=false;};this.toString=function(){return"KeyListener ["+F.keys+"] "+A.tagName+(A.id?"["+A.id+"]":"");};};YAHOO.util.KeyListener.KEYDOWN="keydown";YAHOO.util.KeyListener.KEYUP="keyup";YAHOO.util.KeyListener.KEY={ALT:18,BACK_SPACE:8,CAPS_LOCK:20,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,META:224,NUM_LOCK:144,PAGE_DOWN:34,PAGE_UP:33,PAUSE:19,PRINTSCREEN:44,RIGHT:39,SCROLL_LOCK:145,SHIFT:16,SPACE:32,TAB:9,UP:38};YAHOO.register("event",YAHOO.util.Event,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/event/event.js b/eclipse.org-common/yui/2.6.0/build/event/event.js
deleted file mode 100644
index 17eb097..0000000
--- a/eclipse.org-common/yui/2.6.0/build/event/event.js
+++ /dev/null
@@ -1,2562 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-
-/**
- * The CustomEvent class lets you define events for your application
- * that can be subscribed to by one or more independent component.
- *
- * @param {String}  type The type of event, which is passed to the callback
- *                  when the event fires
- * @param {Object}  oScope The context the event will fire from.  "this" will
- *                  refer to this object in the callback.  Default value: 
- *                  the window object.  The listener can override this.
- * @param {boolean} silent pass true to prevent the event from writing to
- *                  the debugsystem
- * @param {int}     signature the signature that the custom event subscriber
- *                  will receive. YAHOO.util.CustomEvent.LIST or 
- *                  YAHOO.util.CustomEvent.FLAT.  The default is
- *                  YAHOO.util.CustomEvent.LIST.
- * @namespace YAHOO.util
- * @class CustomEvent
- * @constructor
- */
-YAHOO.util.CustomEvent = function(type, oScope, silent, signature) {
-
-    /**
-     * The type of event, returned to subscribers when the event fires
-     * @property type
-     * @type string
-     */
-    this.type = type;
-
-    /**
-     * The scope the the event will fire from by default.  Defaults to the window 
-     * obj
-     * @property scope
-     * @type object
-     */
-    this.scope = oScope || window;
-
-    /**
-     * By default all custom events are logged in the debug build, set silent
-     * to true to disable debug outpu for this event.
-     * @property silent
-     * @type boolean
-     */
-    this.silent = silent;
-
-    /**
-     * Custom events support two styles of arguments provided to the event
-     * subscribers.  
-     * <ul>
-     * <li>YAHOO.util.CustomEvent.LIST: 
-     *   <ul>
-     *   <li>param1: event name</li>
-     *   <li>param2: array of arguments sent to fire</li>
-     *   <li>param3: <optional> a custom object supplied by the subscriber</li>
-     *   </ul>
-     * </li>
-     * <li>YAHOO.util.CustomEvent.FLAT
-     *   <ul>
-     *   <li>param1: the first argument passed to fire.  If you need to
-     *           pass multiple parameters, use and array or object literal</li>
-     *   <li>param2: <optional> a custom object supplied by the subscriber</li>
-     *   </ul>
-     * </li>
-     * </ul>
-     *   @property signature
-     *   @type int
-     */
-    this.signature = signature || YAHOO.util.CustomEvent.LIST;
-
-    /**
-     * The subscribers to this event
-     * @property subscribers
-     * @type Subscriber[]
-     */
-    this.subscribers = [];
-
-    if (!this.silent) {
-    }
-
-    var onsubscribeType = "_YUICEOnSubscribe";
-
-    // Only add subscribe events for events that are not generated by 
-    // CustomEvent
-    if (type !== onsubscribeType) {
-
-        /**
-         * Custom events provide a custom event that fires whenever there is
-         * a new subscriber to the event.  This provides an opportunity to
-         * handle the case where there is a non-repeating event that has
-         * already fired has a new subscriber.  
-         *
-         * @event subscribeEvent
-         * @type YAHOO.util.CustomEvent
-         * @param {Function} fn The function to execute
-         * @param {Object}   obj An object to be passed along when the event 
-         *                       fires
-         * @param {boolean|Object}  override If true, the obj passed in becomes 
-         *                                   the execution scope of the listener.
-         *                                   if an object, that object becomes the
-         *                                   the execution scope.
-         */
-        this.subscribeEvent = 
-                new YAHOO.util.CustomEvent(onsubscribeType, this, true);
-
-    } 
-
-
-    /**
-     * In order to make it possible to execute the rest of the subscriber
-     * stack when one thows an exception, the subscribers exceptions are
-     * caught.  The most recent exception is stored in this property
-     * @property lastError
-     * @type Error
-     */
-    this.lastError = null;
-};
-
-/**
- * Subscriber listener sigature constant.  The LIST type returns three
- * parameters: the event type, the array of args passed to fire, and
- * the optional custom object
- * @property YAHOO.util.CustomEvent.LIST
- * @static
- * @type int
- */
-YAHOO.util.CustomEvent.LIST = 0;
-
-/**
- * Subscriber listener sigature constant.  The FLAT type returns two
- * parameters: the first argument passed to fire and the optional 
- * custom object
- * @property YAHOO.util.CustomEvent.FLAT
- * @static
- * @type int
- */
-YAHOO.util.CustomEvent.FLAT = 1;
-
-YAHOO.util.CustomEvent.prototype = {
-
-    /**
-     * Subscribes the caller to this event
-     * @method subscribe
-     * @param {Function} fn        The function to execute
-     * @param {Object}   obj       An object to be passed along when the event 
-     *                             fires
-     * @param {boolean|Object}  override If true, the obj passed in becomes 
-     *                                   the execution scope of the listener.
-     *                                   if an object, that object becomes the
-     *                                   the execution scope.
-     */
-    subscribe: function(fn, obj, override) {
-
-        if (!fn) {
-throw new Error("Invalid callback for subscriber to '" + this.type + "'");
-        }
-
-        if (this.subscribeEvent) {
-            this.subscribeEvent.fire(fn, obj, override);
-        }
-
-        this.subscribers.push( new YAHOO.util.Subscriber(fn, obj, override) );
-    },
-
-    /**
-     * Unsubscribes subscribers.
-     * @method unsubscribe
-     * @param {Function} fn  The subscribed function to remove, if not supplied
-     *                       all will be removed
-     * @param {Object}   obj  The custom object passed to subscribe.  This is
-     *                        optional, but if supplied will be used to
-     *                        disambiguate multiple listeners that are the same
-     *                        (e.g., you subscribe many object using a function
-     *                        that lives on the prototype)
-     * @return {boolean} True if the subscriber was found and detached.
-     */
-    unsubscribe: function(fn, obj) {
-
-        if (!fn) {
-            return this.unsubscribeAll();
-        }
-
-        var found = false;
-        for (var i=0, len=this.subscribers.length; i<len; ++i) {
-            var s = this.subscribers[i];
-            if (s && s.contains(fn, obj)) {
-                this._delete(i);
-                found = true;
-            }
-        }
-
-        return found;
-    },
-
-    /**
-     * Notifies the subscribers.  The callback functions will be executed
-     * from the scope specified when the event was created, and with the 
-     * following parameters:
-     *   <ul>
-     *   <li>The type of event</li>
-     *   <li>All of the arguments fire() was executed with as an array</li>
-     *   <li>The custom object (if any) that was passed into the subscribe() 
-     *       method</li>
-     *   </ul>
-     * @method fire 
-     * @param {Object*} arguments an arbitrary set of parameters to pass to 
-     *                            the handler.
-     * @return {boolean} false if one of the subscribers returned false, 
-     *                   true otherwise
-     */
-    fire: function() {
-
-        this.lastError = null;
-
-        var errors = [],
-            len=this.subscribers.length;
-
-        if (!len && this.silent) {
-            return true;
-        }
-
-        var args=[].slice.call(arguments, 0), ret=true, i, rebuild=false;
-
-        if (!this.silent) {
-        }
-
-        // make a copy of the subscribers so that there are
-        // no index problems if one subscriber removes another.
-        var subs = this.subscribers.slice(), throwErrors = YAHOO.util.Event.throwErrors;
-
-        for (i=0; i<len; ++i) {
-            var s = subs[i];
-            if (!s) {
-                rebuild=true;
-            } else {
-                if (!this.silent) {
-                }
-
-                var scope = s.getScope(this.scope);
-
-                if (this.signature == YAHOO.util.CustomEvent.FLAT) {
-                    var param = null;
-                    if (args.length > 0) {
-                        param = args[0];
-                    }
-
-                    try {
-                        ret = s.fn.call(scope, param, s.obj);
-                    } catch(e) {
-                        this.lastError = e;
-                        // errors.push(e);
-                        if (throwErrors) {
-                            throw e;
-                        }
-                    }
-                } else {
-                    try {
-                        ret = s.fn.call(scope, this.type, args, s.obj);
-                    } catch(ex) {
-                        this.lastError = ex;
-                        if (throwErrors) {
-                            throw ex;
-                        }
-                    }
-                }
-
-                if (false === ret) {
-                    if (!this.silent) {
-                    }
-
-                    break;
-                    // return false;
-                }
-            }
-        }
-
-        return (ret !== false);
-    },
-
-    /**
-     * Removes all listeners
-     * @method unsubscribeAll
-     * @return {int} The number of listeners unsubscribed
-     */
-    unsubscribeAll: function() {
-        for (var i=this.subscribers.length-1; i>-1; i--) {
-            this._delete(i);
-        }
-
-        this.subscribers=[];
-
-        return i;
-    },
-
-    /**
-     * @method _delete
-     * @private
-     */
-    _delete: function(index) {
-        var s = this.subscribers[index];
-        if (s) {
-            delete s.fn;
-            delete s.obj;
-        }
-
-        // this.subscribers[index]=null;
-        this.subscribers.splice(index, 1);
-    },
-
-    /**
-     * @method toString
-     */
-    toString: function() {
-         return "CustomEvent: " + "'" + this.type  + "', " + 
-             "scope: " + this.scope;
-
-    }
-};
-
-/////////////////////////////////////////////////////////////////////
-
-/**
- * Stores the subscriber information to be used when the event fires.
- * @param {Function} fn       The function to execute
- * @param {Object}   obj      An object to be passed along when the event fires
- * @param {boolean}  override If true, the obj passed in becomes the execution
- *                            scope of the listener
- * @class Subscriber
- * @constructor
- */
-YAHOO.util.Subscriber = function(fn, obj, override) {
-
-    /**
-     * The callback that will be execute when the event fires
-     * @property fn
-     * @type function
-     */
-    this.fn = fn;
-
-    /**
-     * An optional custom object that will passed to the callback when
-     * the event fires
-     * @property obj
-     * @type object
-     */
-    this.obj = YAHOO.lang.isUndefined(obj) ? null : obj;
-
-    /**
-     * The default execution scope for the event listener is defined when the
-     * event is created (usually the object which contains the event).
-     * By setting override to true, the execution scope becomes the custom
-     * object passed in by the subscriber.  If override is an object, that 
-     * object becomes the scope.
-     * @property override
-     * @type boolean|object
-     */
-    this.override = override;
-
-};
-
-/**
- * Returns the execution scope for this listener.  If override was set to true
- * the custom obj will be the scope.  If override is an object, that is the
- * scope, otherwise the default scope will be used.
- * @method getScope
- * @param {Object} defaultScope the scope to use if this listener does not
- *                              override it.
- */
-YAHOO.util.Subscriber.prototype.getScope = function(defaultScope) {
-    if (this.override) {
-        if (this.override === true) {
-            return this.obj;
-        } else {
-            return this.override;
-        }
-    }
-    return defaultScope;
-};
-
-/**
- * Returns true if the fn and obj match this objects properties.
- * Used by the unsubscribe method to match the right subscriber.
- *
- * @method contains
- * @param {Function} fn the function to execute
- * @param {Object} obj an object to be passed along when the event fires
- * @return {boolean} true if the supplied arguments match this 
- *                   subscriber's signature.
- */
-YAHOO.util.Subscriber.prototype.contains = function(fn, obj) {
-    if (obj) {
-        return (this.fn == fn && this.obj == obj);
-    } else {
-        return (this.fn == fn);
-    }
-};
-
-/**
- * @method toString
- */
-YAHOO.util.Subscriber.prototype.toString = function() {
-    return "Subscriber { obj: " + this.obj  + 
-           ", override: " +  (this.override || "no") + " }";
-};
-
-/**
- * The Event Utility provides utilities for managing DOM Events and tools
- * for building event systems
- *
- * @module event
- * @title Event Utility
- * @namespace YAHOO.util
- * @requires yahoo
- */
-
-// The first instance of Event will win if it is loaded more than once.
-// @TODO this needs to be changed so that only the state data that needs to
-// be preserved is kept, while methods are overwritten/added as needed.
-// This means that the module pattern can't be used.
-if (!YAHOO.util.Event) {
-
-/**
- * The event utility provides functions to add and remove event listeners,
- * event cleansing.  It also tries to automatically remove listeners it
- * registers during the unload event.
- *
- * @class Event
- * @static
- */
-    YAHOO.util.Event = function() {
-
-        /**
-         * True after the onload event has fired
-         * @property loadComplete
-         * @type boolean
-         * @static
-         * @private
-         */
-        var loadComplete =  false;
-
-        /**
-         * Cache of wrapped listeners
-         * @property listeners
-         * @type array
-         * @static
-         * @private
-         */
-        var listeners = [];
-
-        /**
-         * User-defined unload function that will be fired before all events
-         * are detached
-         * @property unloadListeners
-         * @type array
-         * @static
-         * @private
-         */
-        var unloadListeners = [];
-
-        /**
-         * Cache of DOM0 event handlers to work around issues with DOM2 events
-         * in Safari
-         * @property legacyEvents
-         * @static
-         * @private
-         */
-        var legacyEvents = [];
-
-        /**
-         * Listener stack for DOM0 events
-         * @property legacyHandlers
-         * @static
-         * @private
-         */
-        var legacyHandlers = [];
-
-        /**
-         * The number of times to poll after window.onload.  This number is
-         * increased if additional late-bound handlers are requested after
-         * the page load.
-         * @property retryCount
-         * @static
-         * @private
-         */
-        var retryCount = 0;
-
-        /**
-         * onAvailable listeners
-         * @property onAvailStack
-         * @static
-         * @private
-         */
-        var onAvailStack = [];
-
-        /**
-         * Lookup table for legacy events
-         * @property legacyMap
-         * @static
-         * @private
-         */
-        var legacyMap = [];
-
-        /**
-         * Counter for auto id generation
-         * @property counter
-         * @static
-         * @private
-         */
-        var counter = 0;
-        
-        /**
-         * Normalized keycodes for webkit/safari
-         * @property webkitKeymap
-         * @type {int: int}
-         * @private
-         * @static
-         * @final
-         */
-        var webkitKeymap = {
-            63232: 38, // up
-            63233: 40, // down
-            63234: 37, // left
-            63235: 39, // right
-            63276: 33, // page up
-            63277: 34, // page down
-            25: 9      // SHIFT-TAB (Safari provides a different key code in
-                       // this case, even though the shiftKey modifier is set)
-        };
-        
-        // String constants used by the addFocusListener and removeFocusListener methods
-        var _FOCUS = YAHOO.env.ua.ie ? "focusin" : "focus";
-        var _BLUR = YAHOO.env.ua.ie ? "focusout" : "blur";      
-
-        return {
-
-            /**
-             * The number of times we should look for elements that are not
-             * in the DOM at the time the event is requested after the document
-             * has been loaded.  The default is 2000@amp;20 ms, so it will poll
-             * for 40 seconds or until all outstanding handlers are bound
-             * (whichever comes first).
-             * @property POLL_RETRYS
-             * @type int
-             * @static
-             * @final
-             */
-            POLL_RETRYS: 2000,
-
-            /**
-             * The poll interval in milliseconds
-             * @property POLL_INTERVAL
-             * @type int
-             * @static
-             * @final
-             */
-            POLL_INTERVAL: 20,
-
-            /**
-             * Element to bind, int constant
-             * @property EL
-             * @type int
-             * @static
-             * @final
-             */
-            EL: 0,
-
-            /**
-             * Type of event, int constant
-             * @property TYPE
-             * @type int
-             * @static
-             * @final
-             */
-            TYPE: 1,
-
-            /**
-             * Function to execute, int constant
-             * @property FN
-             * @type int
-             * @static
-             * @final
-             */
-            FN: 2,
-
-            /**
-             * Function wrapped for scope correction and cleanup, int constant
-             * @property WFN
-             * @type int
-             * @static
-             * @final
-             */
-            WFN: 3,
-
-            /**
-             * Object passed in by the user that will be returned as a 
-             * parameter to the callback, int constant.  Specific to
-             * unload listeners
-             * @property OBJ
-             * @type int
-             * @static
-             * @final
-             */
-            UNLOAD_OBJ: 3,
-
-            /**
-             * Adjusted scope, either the element we are registering the event
-             * on or the custom object passed in by the listener, int constant
-             * @property ADJ_SCOPE
-             * @type int
-             * @static
-             * @final
-             */
-            ADJ_SCOPE: 4,
-
-            /**
-             * The original obj passed into addListener
-             * @property OBJ
-             * @type int
-             * @static
-             * @final
-             */
-            OBJ: 5,
-
-            /**
-             * The original scope parameter passed into addListener
-             * @property OVERRIDE
-             * @type int
-             * @static
-             * @final
-             */
-            OVERRIDE: 6,
-
-            /**
-             * The original capture parameter passed into _addListener
-             * @property CAPTURE
-             * @type int
-             * @static
-             * @final
-             */
-            CAPTURE: 7,
-
-
-            /**
-             * addListener/removeListener can throw errors in unexpected scenarios.
-             * These errors are suppressed, the method returns false, and this property
-             * is set
-             * @property lastError
-             * @static
-             * @type Error
-             */
-            lastError: null,
-
-            /**
-             * Safari detection
-             * @property isSafari
-             * @private
-             * @static
-             * @deprecated use YAHOO.env.ua.webkit
-             */
-            isSafari: YAHOO.env.ua.webkit,
-            
-            /**
-             * webkit version
-             * @property webkit
-             * @type string
-             * @private
-             * @static
-             * @deprecated use YAHOO.env.ua.webkit
-             */
-            webkit: YAHOO.env.ua.webkit,
-            
-            /**
-             * IE detection 
-             * @property isIE
-             * @private
-             * @static
-             * @deprecated use YAHOO.env.ua.ie
-             */
-            isIE: YAHOO.env.ua.ie,
-
-            /**
-             * poll handle
-             * @property _interval
-             * @static
-             * @private
-             */
-            _interval: null,
-
-            /**
-             * document readystate poll handle
-             * @property _dri
-             * @static
-             * @private
-             */
-             _dri: null,
-
-            /**
-             * True when the document is initially usable
-             * @property DOMReady
-             * @type boolean
-             * @static
-             */
-            DOMReady: false,
-
-            /**
-             * Errors thrown by subscribers of custom events are caught
-             * and the error message is written to the debug console.  If
-             * this property is set to true, it will also re-throw the
-             * error.
-             * @property throwErrors
-             * @type boolean
-             * @default false
-             */
-            throwErrors: false,
-
-            /**
-             * @method startInterval
-             * @static
-             * @private
-             */
-            startInterval: function() {
-                if (!this._interval) {
-                    var self = this;
-                    var callback = function() { self._tryPreloadAttach(); };
-                    this._interval = setInterval(callback, this.POLL_INTERVAL);
-                }
-            },
-
-            /**
-             * Executes the supplied callback when the item with the supplied
-             * id is found.  This is meant to be used to execute behavior as
-             * soon as possible as the page loads.  If you use this after the
-             * initial page load it will poll for a fixed time for the element.
-             * The number of times it will poll and the frequency are
-             * configurable.  By default it will poll for 10 seconds.
-             *
-             * <p>The callback is executed with a single parameter:
-             * the custom object parameter, if provided.</p>
-             *
-             * @method onAvailable
-             *
-             * @param {string||string[]}   p_id the id of the element, or an array
-             * of ids to look for.
-             * @param {function} p_fn what to execute when the element is found.
-             * @param {object}   p_obj an optional object to be passed back as
-             *                   a parameter to p_fn.
-             * @param {boolean|object}  p_override If set to true, p_fn will execute
-             *                   in the scope of p_obj, if set to an object it
-             *                   will execute in the scope of that object
-             * @param checkContent {boolean} check child node readiness (onContentReady)
-             * @static
-             */
-            onAvailable: function(p_id, p_fn, p_obj, p_override, checkContent) {
-
-                var a = (YAHOO.lang.isString(p_id)) ? [p_id] : p_id;
-
-                for (var i=0; i<a.length; i=i+1) {
-                    onAvailStack.push({id:         a[i], 
-                                       fn:         p_fn, 
-                                       obj:        p_obj, 
-                                       override:   p_override, 
-                                       checkReady: checkContent });
-                }
-
-                retryCount = this.POLL_RETRYS;
-
-                this.startInterval();
-            },
-
-            /**
-             * Works the same way as onAvailable, but additionally checks the
-             * state of sibling elements to determine if the content of the
-             * available element is safe to modify.
-             *
-             * <p>The callback is executed with a single parameter:
-             * the custom object parameter, if provided.</p>
-             *
-             * @method onContentReady
-             *
-             * @param {string}   p_id the id of the element to look for.
-             * @param {function} p_fn what to execute when the element is ready.
-             * @param {object}   p_obj an optional object to be passed back as
-             *                   a parameter to p_fn.
-             * @param {boolean|object}  p_override If set to true, p_fn will execute
-             *                   in the scope of p_obj.  If an object, p_fn will
-             *                   exectute in the scope of that object
-             *
-             * @static
-             */
-            onContentReady: function(p_id, p_fn, p_obj, p_override) {
-                this.onAvailable(p_id, p_fn, p_obj, p_override, true);
-            },
-
-            /**
-             * Executes the supplied callback when the DOM is first usable.  This
-             * will execute immediately if called after the DOMReady event has
-             * fired.   @todo the DOMContentReady event does not fire when the
-             * script is dynamically injected into the page.  This means the
-             * DOMReady custom event will never fire in FireFox or Opera when the
-             * library is injected.  It _will_ fire in Safari, and the IE 
-             * implementation would allow for us to fire it if the defered script
-             * is not available.  We want this to behave the same in all browsers.
-             * Is there a way to identify when the script has been injected 
-             * instead of included inline?  Is there a way to know whether the 
-             * window onload event has fired without having had a listener attached 
-             * to it when it did so?
-             *
-             * <p>The callback is a CustomEvent, so the signature is:</p>
-             * <p>type &lt;string&gt;, args &lt;array&gt;, customobject &lt;object&gt;</p>
-             * <p>For DOMReady events, there are no fire argments, so the
-             * signature is:</p>
-             * <p>"DOMReady", [], obj</p>
-             *
-             *
-             * @method onDOMReady
-             *
-             * @param {function} p_fn what to execute when the element is found.
-             * @param {object}   p_obj an optional object to be passed back as
-             *                   a parameter to p_fn.
-             * @param {boolean|object}  p_scope If set to true, p_fn will execute
-             *                   in the scope of p_obj, if set to an object it
-             *                   will execute in the scope of that object
-             *
-             * @static
-             */
-            onDOMReady: function(p_fn, p_obj, p_override) {
-                if (this.DOMReady) {
-                    setTimeout(function() {
-                        var s = window;
-                        if (p_override) {
-                            if (p_override === true) {
-                                s = p_obj;
-                            } else {
-                                s = p_override;
-                            }
-                        }
-                        p_fn.call(s, "DOMReady", [], p_obj);
-                    }, 0);
-                } else {
-                    this.DOMReadyEvent.subscribe(p_fn, p_obj, p_override);
-                }
-            },
-
-
-            /**
-             * Appends an event handler
-             *
-             * @method _addListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to assign the 
-             *  listener to.
-             * @param {String}   sType     The type of event to append
-             * @param {Function} fn        The method the event invokes
-             * @param {Object}   obj    An arbitrary object that will be 
-             *                             passed as a parameter to the handler
-             * @param {Boolean|object}  override  If true, the obj passed in becomes
-             *                             the execution scope of the listener. If an
-             *                             object, this object becomes the execution
-             *                             scope.
-             * @param {boolen}      capture capture or bubble phase
-             * @return {Boolean} True if the action was successful or defered,
-             *                        false if one or more of the elements 
-             *                        could not have the listener attached,
-             *                        or if the operation throws an exception.
-             * @private
-             * @static
-             */
-            _addListener: function(el, sType, fn, obj, override, capture) {
-
-                if (!fn || !fn.call) {
-                    return false;
-                }
-
-                // The el argument can be an array of elements or element ids.
-                if ( this._isValidCollection(el)) {
-                    var ok = true;
-                    for (var i=0,len=el.length; i<len; ++i) {
-                        ok = this._addListener(el[i], 
-                                       sType, 
-                                       fn, 
-                                       obj, 
-                                       override, 
-                                       capture) && ok;
-                    }
-                    return ok;
-
-                } else if (YAHOO.lang.isString(el)) {
-                    var oEl = this.getEl(el);
-                    // If the el argument is a string, we assume it is 
-                    // actually the id of the element.  If the page is loaded
-                    // we convert el to the actual element, otherwise we 
-                    // defer attaching the event until onload event fires
-
-                    // check to see if we need to delay hooking up the event 
-                    // until after the page loads.
-                    if (oEl) {
-                        el = oEl;
-                    } else {
-                        // defer adding the event until the element is available
-                        this.onAvailable(el, function() {
-                           YAHOO.util.Event._addListener(el, sType, fn, obj, override, capture);
-                        });
-
-                        return true;
-                    }
-                }
-
-                // Element should be an html element or an array if we get 
-                // here.
-                if (!el) {
-                    return false;
-                }
-
-                // we need to make sure we fire registered unload events 
-                // prior to automatically unhooking them.  So we hang on to 
-                // these instead of attaching them to the window and fire the
-                // handles explicitly during our one unload event.
-                if ("unload" == sType && obj !== this) {
-                    unloadListeners[unloadListeners.length] =
-                            [el, sType, fn, obj, override, capture];
-                    return true;
-                }
-
-
-                // if the user chooses to override the scope, we use the custom
-                // object passed in, otherwise the executing scope will be the
-                // HTML element that the event is registered on
-                var scope = el;
-                if (override) {
-                    if (override === true) {
-                        scope = obj;
-                    } else {
-                        scope = override;
-                    }
-                }
-
-                // wrap the function so we can return the obj object when
-                // the event fires;
-                var wrappedFn = function(e) {
-                        return fn.call(scope, YAHOO.util.Event.getEvent(e, el), 
-                                obj);
-                    };
-
-                var li = [el, sType, fn, wrappedFn, scope, obj, override, capture];
-                var index = listeners.length;
-                // cache the listener so we can try to automatically unload
-                listeners[index] = li;
-
-                if (this.useLegacyEvent(el, sType)) {
-                    var legacyIndex = this.getLegacyIndex(el, sType);
-
-                    // Add a new dom0 wrapper if one is not detected for this
-                    // element
-                    if ( legacyIndex == -1 || 
-                                el != legacyEvents[legacyIndex][0] ) {
-
-                        legacyIndex = legacyEvents.length;
-                        legacyMap[el.id + sType] = legacyIndex;
-
-                        // cache the signature for the DOM0 event, and 
-                        // include the existing handler for the event, if any
-                        legacyEvents[legacyIndex] = 
-                            [el, sType, el["on" + sType]];
-                        legacyHandlers[legacyIndex] = [];
-
-                        el["on" + sType] = 
-                            function(e) {
-                                YAHOO.util.Event.fireLegacyEvent(
-                                    YAHOO.util.Event.getEvent(e), legacyIndex);
-                            };
-                    }
-
-                    // add a reference to the wrapped listener to our custom
-                    // stack of events
-                    //legacyHandlers[legacyIndex].push(index);
-                    legacyHandlers[legacyIndex].push(li);
-
-                } else {
-                    try {
-                        this._simpleAdd(el, sType, wrappedFn, capture);
-                    } catch(ex) {
-                        // handle an error trying to attach an event.  If it fails
-                        // we need to clean up the cache
-                        this.lastError = ex;
-                        this._removeListener(el, sType, fn, capture);
-                        return false;
-                    }
-                }
-
-                return true;
-                
-            },
-
-
-            /**
-             * Appends an event handler
-             *
-             * @method addListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to assign the 
-             *  listener to.
-             * @param {String}   sType     The type of event to append
-             * @param {Function} fn        The method the event invokes
-             * @param {Object}   obj    An arbitrary object that will be 
-             *                             passed as a parameter to the handler
-             * @param {Boolean|object}  override  If true, the obj passed in becomes
-             *                             the execution scope of the listener. If an
-             *                             object, this object becomes the execution
-             *                             scope.
-             * @return {Boolean} True if the action was successful or defered,
-             *                        false if one or more of the elements 
-             *                        could not have the listener attached,
-             *                        or if the operation throws an exception.
-             * @static
-             */
-            addListener: function (el, sType, fn, obj, override) {
-                return this._addListener(el, sType, fn, obj, override, false);
-            },
-
-            /**
-             * Appends a focus event handler.  (The focusin event is used for Internet Explorer, 
-             * the focus, capture-event for Opera, WebKit, and Gecko.)
-             *
-             * @method addFocusListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to assign the 
-             *  listener to.
-             * @param {Function} fn        The method the event invokes
-             * @param {Object}   obj    An arbitrary object that will be 
-             *                             passed as a parameter to the handler
-             * @param {Boolean|object}  override  If true, the obj passed in becomes
-             *                             the execution scope of the listener. If an
-             *                             object, this object becomes the execution
-             *                             scope.
-             * @return {Boolean} True if the action was successful or defered,
-             *                        false if one or more of the elements 
-             *                        could not have the listener attached,
-             *                        or if the operation throws an exception.
-             * @static
-             */
-            addFocusListener: function (el, fn, obj, override) {
-                return this._addListener(el, _FOCUS, fn, obj, override, true);
-            },          
-
-
-            /**
-             * Removes a focus event listener
-             *
-             * @method removeFocusListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to remove
-             *  the listener from.
-             * @param {Function} fn the method the event invokes.  If fn is
-             *  undefined, then all event handlers for the type of event are 
-             *  removed.
-             * @return {boolean} true if the unbind was successful, false 
-             *  otherwise.
-             * @static
-             */
-            removeFocusListener: function (el, fn) { 
-                return this._removeListener(el, _FOCUS, fn, true);
-            },
-
-            /**
-             * Appends a blur event handler.  (The focusout event is used for Internet Explorer, 
-             * the focusout, capture-event for Opera, WebKit, and Gecko.)
-             *
-             * @method addBlurListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to assign the 
-             *  listener to.
-             * @param {Function} fn        The method the event invokes
-             * @param {Object}   obj    An arbitrary object that will be 
-             *                             passed as a parameter to the handler
-             * @param {Boolean|object}  override  If true, the obj passed in becomes
-             *                             the execution scope of the listener. If an
-             *                             object, this object becomes the execution
-             *                             scope.
-             * @return {Boolean} True if the action was successful or defered,
-             *                        false if one or more of the elements 
-             *                        could not have the listener attached,
-             *                        or if the operation throws an exception.
-             * @static
-             */
-            addBlurListener: function (el, fn, obj, override) {
-                return this._addListener(el, _BLUR, fn, obj, override, true);
-            },          
-
-            /**
-             * Removes a blur event listener
-             *
-             * @method removeBlurListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to remove
-             *  the listener from.
-             * @param {Function} fn the method the event invokes.  If fn is
-             *  undefined, then all event handlers for the type of event are 
-             *  removed.
-             * @return {boolean} true if the unbind was successful, false 
-             *  otherwise.
-             * @static
-             */
-            removeBlurListener: function (el, fn) { 
-            
-                return this._removeListener(el, _BLUR, fn, true);
-            
-            },
-
-            /**
-             * When using legacy events, the handler is routed to this object
-             * so we can fire our custom listener stack.
-             * @method fireLegacyEvent
-             * @static
-             * @private
-             */
-            fireLegacyEvent: function(e, legacyIndex) {
-                var ok=true, le, lh, li, scope, ret;
-                
-                lh = legacyHandlers[legacyIndex].slice();
-                for (var i=0, len=lh.length; i<len; ++i) {
-                // for (var i in lh.length) {
-                    li = lh[i];
-                    if ( li && li[this.WFN] ) {
-                        scope = li[this.ADJ_SCOPE];
-                        ret = li[this.WFN].call(scope, e);
-                        ok = (ok && ret);
-                    }
-                }
-
-                // Fire the original handler if we replaced one.  We fire this
-                // after the other events to keep stopPropagation/preventDefault
-                // that happened in the DOM0 handler from touching our DOM2
-                // substitute
-                le = legacyEvents[legacyIndex];
-                if (le && le[2]) {
-                    le[2](e);
-                }
-                
-                return ok;
-            },
-
-            /**
-             * Returns the legacy event index that matches the supplied 
-             * signature
-             * @method getLegacyIndex
-             * @static
-             * @private
-             */
-            getLegacyIndex: function(el, sType) {
-                var key = this.generateId(el) + sType;
-                if (typeof legacyMap[key] == "undefined") { 
-                    return -1;
-                } else {
-                    return legacyMap[key];
-                }
-            },
-
-            /**
-             * Logic that determines when we should automatically use legacy
-             * events instead of DOM2 events.  Currently this is limited to old
-             * Safari browsers with a broken preventDefault
-             * @method useLegacyEvent
-             * @static
-             * @private
-             */
-            useLegacyEvent: function(el, sType) {
-return (this.webkit && this.webkit < 419 && ("click"==sType || "dblclick"==sType));
-            },
-                    
-            /**
-             * Removes an event listener
-             *
-             * @method _removeListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to remove
-             *  the listener from.
-             * @param {String} sType the type of event to remove.
-             * @param {Function} fn the method the event invokes.  If fn is
-             *  undefined, then all event handlers for the type of event are 
-             *  removed.
-             * @param {boolen}      capture capture or bubble phase             
-             * @return {boolean} true if the unbind was successful, false 
-             *  otherwise.
-             * @static
-             * @private
-             */
-            _removeListener: function(el, sType, fn, capture) {
-                var i, len, li;
-
-                // The el argument can be a string
-                if (typeof el == "string") {
-                    el = this.getEl(el);
-                // The el argument can be an array of elements or element ids.
-                } else if ( this._isValidCollection(el)) {
-                    var ok = true;
-                    for (i=el.length-1; i>-1; i--) {
-                        ok = ( this._removeListener(el[i], sType, fn, capture) && ok );
-                    }
-                    return ok;
-                }
-
-                if (!fn || !fn.call) {
-                    //return false;
-                    return this.purgeElement(el, false, sType);
-                }
-
-                if ("unload" == sType) {
-
-                    for (i=unloadListeners.length-1; i>-1; i--) {
-                        li = unloadListeners[i];
-                        if (li && 
-                            li[0] == el && 
-                            li[1] == sType && 
-                            li[2] == fn) {
-                                unloadListeners.splice(i, 1);
-                                // unloadListeners[i]=null;
-                                return true;
-                        }
-                    }
-
-                    return false;
-                }
-
-                var cacheItem = null;
-
-                // The index is a hidden parameter; needed to remove it from
-                // the method signature because it was tempting users to
-                // try and take advantage of it, which is not possible.
-                var index = arguments[4];
-  
-                if ("undefined" === typeof index) {
-                    index = this._getCacheIndex(el, sType, fn);
-                }
-
-                if (index >= 0) {
-                    cacheItem = listeners[index];
-                }
-
-                if (!el || !cacheItem) {
-                    return false;
-                }
-
-
-                if (this.useLegacyEvent(el, sType)) {
-                    var legacyIndex = this.getLegacyIndex(el, sType);
-                    var llist = legacyHandlers[legacyIndex];
-                    if (llist) {
-                        for (i=0, len=llist.length; i<len; ++i) {
-                        // for (i in llist.length) {
-                            li = llist[i];
-                            if (li && 
-                                li[this.EL] == el && 
-                                li[this.TYPE] == sType && 
-                                li[this.FN] == fn) {
-                                    llist.splice(i, 1);
-                                    // llist[i]=null;
-                                    break;
-                            }
-                        }
-                    }
-
-                } else {
-                    try {
-                        this._simpleRemove(el, sType, cacheItem[this.WFN], capture);
-                    } catch(ex) {
-                        this.lastError = ex;
-                        return false;
-                    }
-                }
-
-                // removed the wrapped handler
-                delete listeners[index][this.WFN];
-                delete listeners[index][this.FN];
-                listeners.splice(index, 1);
-                // listeners[index]=null;
-
-                return true;
-
-            },
-
-
-            /**
-             * Removes an event listener
-             *
-             * @method removeListener
-             *
-             * @param {String|HTMLElement|Array|NodeList} el An id, an element 
-             *  reference, or a collection of ids and/or elements to remove
-             *  the listener from.
-             * @param {String} sType the type of event to remove.
-             * @param {Function} fn the method the event invokes.  If fn is
-             *  undefined, then all event handlers for the type of event are 
-             *  removed.
-             * @return {boolean} true if the unbind was successful, false 
-             *  otherwise.
-             * @static
-             */
-            removeListener: function(el, sType, fn) {
-
-				return this._removeListener(el, sType, fn, false);
-
-            },
-
-
-            /**
-             * Returns the event's target element.  Safari sometimes provides
-             * a text node, and this is automatically resolved to the text
-             * node's parent so that it behaves like other browsers.
-             * @method getTarget
-             * @param {Event} ev the event
-             * @param {boolean} resolveTextNode when set to true the target's
-             *                  parent will be returned if the target is a 
-             *                  text node.  @deprecated, the text node is
-             *                  now resolved automatically
-             * @return {HTMLElement} the event's target
-             * @static
-             */
-            getTarget: function(ev, resolveTextNode) {
-                var t = ev.target || ev.srcElement;
-                return this.resolveTextNode(t);
-            },
-
-            /**
-             * In some cases, some browsers will return a text node inside
-             * the actual element that was targeted.  This normalizes the
-             * return value for getTarget and getRelatedTarget.
-             * @method resolveTextNode
-             * @param {HTMLElement} node node to resolve
-             * @return {HTMLElement} the normized node
-             * @static
-             */
-            resolveTextNode: function(n) {
-                try {
-                    if (n && 3 == n.nodeType) {
-                        return n.parentNode;
-                    }
-                } catch(e) { }
-
-                return n;
-            },
-
-            /**
-             * Returns the event's pageX
-             * @method getPageX
-             * @param {Event} ev the event
-             * @return {int} the event's pageX
-             * @static
-             */
-            getPageX: function(ev) {
-                var x = ev.pageX;
-                if (!x && 0 !== x) {
-                    x = ev.clientX || 0;
-
-                    if ( this.isIE ) {
-                        x += this._getScrollLeft();
-                    }
-                }
-
-                return x;
-            },
-
-            /**
-             * Returns the event's pageY
-             * @method getPageY
-             * @param {Event} ev the event
-             * @return {int} the event's pageY
-             * @static
-             */
-            getPageY: function(ev) {
-                var y = ev.pageY;
-                if (!y && 0 !== y) {
-                    y = ev.clientY || 0;
-
-                    if ( this.isIE ) {
-                        y += this._getScrollTop();
-                    }
-                }
-
-
-                return y;
-            },
-
-            /**
-             * Returns the pageX and pageY properties as an indexed array.
-             * @method getXY
-             * @param {Event} ev the event
-             * @return {[x, y]} the pageX and pageY properties of the event
-             * @static
-             */
-            getXY: function(ev) {
-                return [this.getPageX(ev), this.getPageY(ev)];
-            },
-
-            /**
-             * Returns the event's related target 
-             * @method getRelatedTarget
-             * @param {Event} ev the event
-             * @return {HTMLElement} the event's relatedTarget
-             * @static
-             */
-            getRelatedTarget: function(ev) {
-                var t = ev.relatedTarget;
-                if (!t) {
-                    if (ev.type == "mouseout") {
-                        t = ev.toElement;
-                    } else if (ev.type == "mouseover") {
-                        t = ev.fromElement;
-                    }
-                }
-
-                return this.resolveTextNode(t);
-            },
-
-            /**
-             * Returns the time of the event.  If the time is not included, the
-             * event is modified using the current time.
-             * @method getTime
-             * @param {Event} ev the event
-             * @return {Date} the time of the event
-             * @static
-             */
-            getTime: function(ev) {
-                if (!ev.time) {
-                    var t = new Date().getTime();
-                    try {
-                        ev.time = t;
-                    } catch(ex) { 
-                        this.lastError = ex;
-                        return t;
-                    }
-                }
-
-                return ev.time;
-            },
-
-            /**
-             * Convenience method for stopPropagation + preventDefault
-             * @method stopEvent
-             * @param {Event} ev the event
-             * @static
-             */
-            stopEvent: function(ev) {
-                this.stopPropagation(ev);
-                this.preventDefault(ev);
-            },
-
-            /**
-             * Stops event propagation
-             * @method stopPropagation
-             * @param {Event} ev the event
-             * @static
-             */
-            stopPropagation: function(ev) {
-                if (ev.stopPropagation) {
-                    ev.stopPropagation();
-                } else {
-                    ev.cancelBubble = true;
-                }
-            },
-
-            /**
-             * Prevents the default behavior of the event
-             * @method preventDefault
-             * @param {Event} ev the event
-             * @static
-             */
-            preventDefault: function(ev) {
-                if (ev.preventDefault) {
-                    ev.preventDefault();
-                } else {
-                    ev.returnValue = false;
-                }
-            },
-             
-            /**
-             * Finds the event in the window object, the caller's arguments, or
-             * in the arguments of another method in the callstack.  This is
-             * executed automatically for events registered through the event
-             * manager, so the implementer should not normally need to execute
-             * this function at all.
-             * @method getEvent
-             * @param {Event} e the event parameter from the handler
-             * @param {HTMLElement} boundEl the element the listener is attached to
-             * @return {Event} the event 
-             * @static
-             */
-            getEvent: function(e, boundEl) {
-                var ev = e || window.event;
-
-                if (!ev) {
-                    var c = this.getEvent.caller;
-                    while (c) {
-                        ev = c.arguments[0];
-                        if (ev && Event == ev.constructor) {
-                            break;
-                        }
-                        c = c.caller;
-                    }
-                }
-
-                return ev;
-            },
-
-            /**
-             * Returns the charcode for an event
-             * @method getCharCode
-             * @param {Event} ev the event
-             * @return {int} the event's charCode
-             * @static
-             */
-            getCharCode: function(ev) {
-                var code = ev.keyCode || ev.charCode || 0;
-
-                // webkit key normalization
-                if (YAHOO.env.ua.webkit && (code in webkitKeymap)) {
-                    code = webkitKeymap[code];
-                }
-                return code;
-            },
-
-            /**
-             * Locating the saved event handler data by function ref
-             *
-             * @method _getCacheIndex
-             * @static
-             * @private
-             */
-            _getCacheIndex: function(el, sType, fn) {
-                for (var i=0, l=listeners.length; i<l; i=i+1) {
-                    var li = listeners[i];
-                    if ( li                 && 
-                         li[this.FN] == fn  && 
-                         li[this.EL] == el  && 
-                         li[this.TYPE] == sType ) {
-                        return i;
-                    }
-                }
-
-                return -1;
-            },
-
-            /**
-             * Generates an unique ID for the element if it does not already 
-             * have one.
-             * @method generateId
-             * @param el the element to create the id for
-             * @return {string} the resulting id of the element
-             * @static
-             */
-            generateId: function(el) {
-                var id = el.id;
-
-                if (!id) {
-                    id = "yuievtautoid-" + counter;
-                    ++counter;
-                    el.id = id;
-                }
-
-                return id;
-            },
-
-
-            /**
-             * We want to be able to use getElementsByTagName as a collection
-             * to attach a group of events to.  Unfortunately, different 
-             * browsers return different types of collections.  This function
-             * tests to determine if the object is array-like.  It will also 
-             * fail if the object is an array, but is empty.
-             * @method _isValidCollection
-             * @param o the object to test
-             * @return {boolean} true if the object is array-like and populated
-             * @static
-             * @private
-             */
-            _isValidCollection: function(o) {
-                try {
-                    return ( o                     && // o is something
-                             typeof o !== "string" && // o is not a string
-                             o.length              && // o is indexed
-                             !o.tagName            && // o is not an HTML element
-                             !o.alert              && // o is not a window
-                             typeof o[0] !== "undefined" );
-                } catch(ex) {
-                    return false;
-                }
-
-            },
-
-            /**
-             * @private
-             * @property elCache
-             * DOM element cache
-             * @static
-             * @deprecated Elements are not cached due to issues that arise when
-             * elements are removed and re-added
-             */
-            elCache: {},
-
-            /**
-             * We cache elements bound by id because when the unload event 
-             * fires, we can no longer use document.getElementById
-             * @method getEl
-             * @static
-             * @private
-             * @deprecated Elements are not cached any longer
-             */
-            getEl: function(id) {
-                return (typeof id === "string") ? document.getElementById(id) : id;
-            },
-
-            /**
-             * Clears the element cache
-             * @deprecated Elements are not cached any longer
-             * @method clearCache
-             * @static
-             * @private
-             */
-            clearCache: function() { },
-
-            /**
-             * Custom event the fires when the dom is initially usable
-             * @event DOMReadyEvent
-             */
-            DOMReadyEvent: new YAHOO.util.CustomEvent("DOMReady", this),
-
-            /**
-             * hook up any deferred listeners
-             * @method _load
-             * @static
-             * @private
-             */
-            _load: function(e) {
-
-                if (!loadComplete) {
-                    loadComplete = true;
-                    var EU = YAHOO.util.Event;
-
-                    // Just in case DOMReady did not go off for some reason
-                    EU._ready();
-
-                    // Available elements may not have been detected before the
-                    // window load event fires. Try to find them now so that the
-                    // the user is more likely to get the onAvailable notifications
-                    // before the window load notification
-                    EU._tryPreloadAttach();
-
-                }
-            },
-
-            /**
-             * Fires the DOMReady event listeners the first time the document is
-             * usable.
-             * @method _ready
-             * @static
-             * @private
-             */
-            _ready: function(e) {
-                var EU = YAHOO.util.Event;
-                if (!EU.DOMReady) {
-                    EU.DOMReady=true;
-
-                    // Fire the content ready custom event
-                    EU.DOMReadyEvent.fire();
-
-                    // Remove the DOMContentLoaded (FF/Opera)
-                    EU._simpleRemove(document, "DOMContentLoaded", EU._ready);
-                }
-            },
-
-            /**
-             * Polling function that runs before the onload event fires, 
-             * attempting to attach to DOM Nodes as soon as they are 
-             * available
-             * @method _tryPreloadAttach
-             * @static
-             * @private
-             */
-            _tryPreloadAttach: function() {
-
-                if (onAvailStack.length === 0) {
-                    retryCount = 0;
-                    clearInterval(this._interval);
-                    this._interval = null;
-                    return;
-                }
-
-                if (this.locked) {
-                    return;
-                }
-
-                if (this.isIE) {
-                    // Hold off if DOMReady has not fired and check current
-                    // readyState to protect against the IE operation aborted
-                    // issue.
-                    if (!this.DOMReady) {
-                        this.startInterval();
-                        return;
-                    }
-                }
-
-                this.locked = true;
-
-
-                // keep trying until after the page is loaded.  We need to 
-                // check the page load state prior to trying to bind the 
-                // elements so that we can be certain all elements have been 
-                // tested appropriately
-                var tryAgain = !loadComplete;
-                if (!tryAgain) {
-                    tryAgain = (retryCount > 0 && onAvailStack.length > 0);
-                }
-
-                // onAvailable
-                var notAvail = [];
-
-                var executeItem = function (el, item) {
-                    var scope = el;
-                    if (item.override) {
-                        if (item.override === true) {
-                            scope = item.obj;
-                        } else {
-                            scope = item.override;
-                        }
-                    }
-                    item.fn.call(scope, item.obj);
-                };
-
-                var i, len, item, el, ready=[];
-
-                // onAvailable onContentReady
-                for (i=0, len=onAvailStack.length; i<len; i=i+1) {
-                    item = onAvailStack[i];
-                    if (item) {
-                        el = this.getEl(item.id);
-                        if (el) {
-                            if (item.checkReady) {
-                                if (loadComplete || el.nextSibling || !tryAgain) {
-                                    ready.push(item);
-                                    onAvailStack[i] = null;
-                                }
-                            } else {
-                                executeItem(el, item);
-                                onAvailStack[i] = null;
-                            }
-                        } else {
-                            notAvail.push(item);
-                        }
-                    }
-                }
-                
-                // make sure onContentReady fires after onAvailable
-                for (i=0, len=ready.length; i<len; i=i+1) {
-                    item = ready[i];
-                    executeItem(this.getEl(item.id), item);
-                }
-
-
-                retryCount--;
-
-                if (tryAgain) {
-                    for (i=onAvailStack.length-1; i>-1; i--) {
-                        item = onAvailStack[i];
-                        if (!item || !item.id) {
-                            onAvailStack.splice(i, 1);
-                        }
-                    }
-
-                    this.startInterval();
-                } else {
-                    clearInterval(this._interval);
-                    this._interval = null;
-                }
-
-                this.locked = false;
-
-            },
-
-            /**
-             * Removes all listeners attached to the given element via addListener.
-             * Optionally, the node's children can also be purged.
-             * Optionally, you can specify a specific type of event to remove.
-             * @method purgeElement
-             * @param {HTMLElement} el the element to purge
-             * @param {boolean} recurse recursively purge this element's children
-             * as well.  Use with caution.
-             * @param {string} sType optional type of listener to purge. If
-             * left out, all listeners will be removed
-             * @static
-             */
-            purgeElement: function(el, recurse, sType) {
-                var oEl = (YAHOO.lang.isString(el)) ? this.getEl(el) : el;
-                var elListeners = this.getListeners(oEl, sType), i, len;
-                if (elListeners) {
-                    for (i=elListeners.length-1; i>-1; i--) {
-                        var l = elListeners[i];
-                        this._removeListener(oEl, l.type, l.fn, l.capture);
-                    }
-                }
-
-                if (recurse && oEl && oEl.childNodes) {
-                    for (i=0,len=oEl.childNodes.length; i<len ; ++i) {
-                        this.purgeElement(oEl.childNodes[i], recurse, sType);
-                    }
-                }
-            },
-
-            /**
-             * Returns all listeners attached to the given element via addListener.
-             * Optionally, you can specify a specific type of event to return.
-             * @method getListeners
-             * @param el {HTMLElement|string} the element or element id to inspect 
-             * @param sType {string} optional type of listener to return. If
-             * left out, all listeners will be returned
-             * @return {Object} the listener. Contains the following fields:
-             * &nbsp;&nbsp;type:   (string)   the type of event
-             * &nbsp;&nbsp;fn:     (function) the callback supplied to addListener
-             * &nbsp;&nbsp;obj:    (object)   the custom object supplied to addListener
-             * &nbsp;&nbsp;adjust: (boolean|object)  whether or not to adjust the default scope
-             * &nbsp;&nbsp;scope: (boolean)  the derived scope based on the adjust parameter
-             * &nbsp;&nbsp;scope: (capture)  the capture parameter supplied to addListener
-             * &nbsp;&nbsp;index:  (int)      its position in the Event util listener cache
-             * @static
-             */           
-            getListeners: function(el, sType) {
-                var results=[], searchLists;
-                if (!sType) {
-                    searchLists = [listeners, unloadListeners];
-                } else if (sType === "unload") {
-                    searchLists = [unloadListeners];
-                } else {
-                    searchLists = [listeners];
-                }
-
-                var oEl = (YAHOO.lang.isString(el)) ? this.getEl(el) : el;
-
-                for (var j=0;j<searchLists.length; j=j+1) {
-                    var searchList = searchLists[j];
-                    if (searchList) {
-                        for (var i=0,len=searchList.length; i<len ; ++i) {
-                            var l = searchList[i];
-                            if ( l  && l[this.EL] === oEl && 
-                                    (!sType || sType === l[this.TYPE]) ) {
-                                results.push({
-                                    type:   l[this.TYPE],
-                                    fn:     l[this.FN],
-                                    obj:    l[this.OBJ],
-                                    adjust: l[this.OVERRIDE],
-                                    scope:  l[this.ADJ_SCOPE],
-                                    capture:  l[this.CAPTURE],                                    
-                                    index:  i
-                                });
-                            }
-                        }
-                    }
-                }
-
-                return (results.length) ? results : null;
-            },
-
-            /**
-             * Removes all listeners registered by pe.event.  Called 
-             * automatically during the unload event.
-             * @method _unload
-             * @static
-             * @private
-             */
-            _unload: function(e) {
-
-                var EU = YAHOO.util.Event, i, j, l, len, index,
-                         ul = unloadListeners.slice();
-
-                // execute and clear stored unload listeners
-                for (i=0,len=unloadListeners.length; i<len; ++i) {
-                    l = ul[i];
-                    if (l) {
-                        var scope = window;
-                        if (l[EU.ADJ_SCOPE]) {
-                            if (l[EU.ADJ_SCOPE] === true) {
-                                scope = l[EU.UNLOAD_OBJ];
-                            } else {
-                                scope = l[EU.ADJ_SCOPE];
-                            }
-                        }
-                        l[EU.FN].call(scope, EU.getEvent(e, l[EU.EL]), l[EU.UNLOAD_OBJ] );
-                        ul[i] = null;
-                        l=null;
-                        scope=null;
-                    }
-                }
-
-                unloadListeners = null;
-
-                // Remove listeners to handle IE memory leaks
-                //if (YAHOO.env.ua.ie && listeners && listeners.length > 0) {
-                
-                // 2.5.0 listeners are removed for all browsers again.  FireFox preserves
-                // at least some listeners between page refreshes, potentially causing
-                // errors during page load (mouseover listeners firing before they
-                // should if the user moves the mouse at the correct moment).
-                if (listeners) {
-                    for (j=listeners.length-1; j>-1; j--) {
-                        l = listeners[j];
-                        if (l) {
-                            EU._removeListener(l[EU.EL], l[EU.TYPE], l[EU.FN], l[EU.CAPTURE], j);
-                        } 
-                    }
-                    l=null;
-                }
-
-                legacyEvents = null;
-
-                EU._simpleRemove(window, "unload", EU._unload);
-
-            },
-
-            /**
-             * Returns scrollLeft
-             * @method _getScrollLeft
-             * @static
-             * @private
-             */
-            _getScrollLeft: function() {
-                return this._getScroll()[1];
-            },
-
-            /**
-             * Returns scrollTop
-             * @method _getScrollTop
-             * @static
-             * @private
-             */
-            _getScrollTop: function() {
-                return this._getScroll()[0];
-            },
-
-            /**
-             * Returns the scrollTop and scrollLeft.  Used to calculate the 
-             * pageX and pageY in Internet Explorer
-             * @method _getScroll
-             * @static
-             * @private
-             */
-            _getScroll: function() {
-                var dd = document.documentElement, db = document.body;
-                if (dd && (dd.scrollTop || dd.scrollLeft)) {
-                    return [dd.scrollTop, dd.scrollLeft];
-                } else if (db) {
-                    return [db.scrollTop, db.scrollLeft];
-                } else {
-                    return [0, 0];
-                }
-            },
-            
-            /**
-             * Used by old versions of CustomEvent, restored for backwards
-             * compatibility
-             * @method regCE
-             * @private
-             * @static
-             * @deprecated still here for backwards compatibility
-             */
-            regCE: function() {
-                // does nothing
-            },
-
-            /**
-             * Adds a DOM event directly without the caching, cleanup, scope adj, etc
-             *
-             * @method _simpleAdd
-             * @param {HTMLElement} el      the element to bind the handler to
-             * @param {string}      sType   the type of event handler
-             * @param {function}    fn      the callback to invoke
-             * @param {boolen}      capture capture or bubble phase
-             * @static
-             * @private
-             */
-            _simpleAdd: function () {
-                if (window.addEventListener) {
-                    return function(el, sType, fn, capture) {
-                        el.addEventListener(sType, fn, (capture));
-                    };
-                } else if (window.attachEvent) {
-                    return function(el, sType, fn, capture) {
-                        el.attachEvent("on" + sType, fn);
-                    };
-                } else {
-                    return function(){};
-                }
-            }(),
-
-            /**
-             * Basic remove listener
-             *
-             * @method _simpleRemove
-             * @param {HTMLElement} el      the element to bind the handler to
-             * @param {string}      sType   the type of event handler
-             * @param {function}    fn      the callback to invoke
-             * @param {boolen}      capture capture or bubble phase
-             * @static
-             * @private
-             */
-            _simpleRemove: function() {
-                if (window.removeEventListener) {
-                    return function (el, sType, fn, capture) {
-                        el.removeEventListener(sType, fn, (capture));
-                    };
-                } else if (window.detachEvent) {
-                    return function (el, sType, fn) {
-                        el.detachEvent("on" + sType, fn);
-                    };
-                } else {
-                    return function(){};
-                }
-            }()
-        };
-
-    }();
-
-    (function() {
-        var EU = YAHOO.util.Event;
-
-        /**
-         * YAHOO.util.Event.on is an alias for addListener
-         * @method on
-         * @see addListener
-         * @static
-         */
-        EU.on = EU.addListener;
-
-        /**
-         * YAHOO.util.Event.onFocus is an alias for addFocusListener
-         * @method on
-         * @see addFocusListener
-         * @static
-         */
-        EU.onFocus = EU.addFocusListener;
-
-        /**
-         * YAHOO.util.Event.onBlur is an alias for addBlurListener
-         * @method onBlur
-         * @see addBlurListener
-         * @static
-         */     
-        EU.onBlur = EU.addBlurListener;
-
-
-/*! DOMReady: based on work by: Dean Edwards/John Resig/Matthias Miller */
-
-        // Internet Explorer: use the readyState of a defered script.
-        // This isolates what appears to be a safe moment to manipulate
-        // the DOM prior to when the document's readyState suggests
-        // it is safe to do so.
-        if (EU.isIE) {
-
-            // Process onAvailable/onContentReady items when the 
-            // DOM is ready.
-            YAHOO.util.Event.onDOMReady(
-                    YAHOO.util.Event._tryPreloadAttach,
-                    YAHOO.util.Event, true);
-            
-            var n = document.createElement('p');  
-
-            EU._dri = setInterval(function() {
-                try {
-                    // throws an error if doc is not ready
-                    n.doScroll('left');
-                    clearInterval(EU._dri);
-                    EU._dri = null;
-                    EU._ready();
-                    n = null;
-                } catch (ex) { 
-                }
-            }, EU.POLL_INTERVAL); 
-
-        
-        // The document's readyState in Safari currently will
-        // change to loaded/complete before images are loaded.
-        } else if (EU.webkit && EU.webkit < 525) {
-
-            EU._dri = setInterval(function() {
-                var rs=document.readyState;
-                if ("loaded" == rs || "complete" == rs) {
-                    clearInterval(EU._dri);
-                    EU._dri = null;
-                    EU._ready();
-                }
-            }, EU.POLL_INTERVAL); 
-
-        // FireFox and Opera: These browsers provide a event for this
-        // moment.  The latest WebKit releases now support this event.
-        } else {
-
-            EU._simpleAdd(document, "DOMContentLoaded", EU._ready);
-
-        }
-        /////////////////////////////////////////////////////////////
-
-
-        EU._simpleAdd(window, "load", EU._load);
-        EU._simpleAdd(window, "unload", EU._unload);
-        EU._tryPreloadAttach();
-    })();
-
-}
-/**
- * EventProvider is designed to be used with YAHOO.augment to wrap 
- * CustomEvents in an interface that allows events to be subscribed to 
- * and fired by name.  This makes it possible for implementing code to
- * subscribe to an event that either has not been created yet, or will
- * not be created at all.
- *
- * @Class EventProvider
- */
-YAHOO.util.EventProvider = function() { };
-
-YAHOO.util.EventProvider.prototype = {
-
-    /**
-     * Private storage of custom events
-     * @property __yui_events
-     * @type Object[]
-     * @private
-     */
-    __yui_events: null,
-
-    /**
-     * Private storage of custom event subscribers
-     * @property __yui_subscribers
-     * @type Object[]
-     * @private
-     */
-    __yui_subscribers: null,
-    
-    /**
-     * Subscribe to a CustomEvent by event type
-     *
-     * @method subscribe
-     * @param p_type     {string}   the type, or name of the event
-     * @param p_fn       {function} the function to exectute when the event fires
-     * @param p_obj      {Object}   An object to be passed along when the event 
-     *                              fires
-     * @param p_override {boolean}  If true, the obj passed in becomes the 
-     *                              execution scope of the listener
-     */
-    subscribe: function(p_type, p_fn, p_obj, p_override) {
-
-        this.__yui_events = this.__yui_events || {};
-        var ce = this.__yui_events[p_type];
-
-        if (ce) {
-            ce.subscribe(p_fn, p_obj, p_override);
-        } else {
-            this.__yui_subscribers = this.__yui_subscribers || {};
-            var subs = this.__yui_subscribers;
-            if (!subs[p_type]) {
-                subs[p_type] = [];
-            }
-            subs[p_type].push(
-                { fn: p_fn, obj: p_obj, override: p_override } );
-        }
-    },
-
-    /**
-     * Unsubscribes one or more listeners the from the specified event
-     * @method unsubscribe
-     * @param p_type {string}   The type, or name of the event.  If the type
-     *                          is not specified, it will attempt to remove
-     *                          the listener from all hosted events.
-     * @param p_fn   {Function} The subscribed function to unsubscribe, if not
-     *                          supplied, all subscribers will be removed.
-     * @param p_obj  {Object}   The custom object passed to subscribe.  This is
-     *                        optional, but if supplied will be used to
-     *                        disambiguate multiple listeners that are the same
-     *                        (e.g., you subscribe many object using a function
-     *                        that lives on the prototype)
-     * @return {boolean} true if the subscriber was found and detached.
-     */
-    unsubscribe: function(p_type, p_fn, p_obj) {
-        this.__yui_events = this.__yui_events || {};
-        var evts = this.__yui_events;
-        if (p_type) {
-            var ce = evts[p_type];
-            if (ce) {
-                return ce.unsubscribe(p_fn, p_obj);
-            }
-        } else {
-            var ret = true;
-            for (var i in evts) {
-                if (YAHOO.lang.hasOwnProperty(evts, i)) {
-                    ret = ret && evts[i].unsubscribe(p_fn, p_obj);
-                }
-            }
-            return ret;
-        }
-
-        return false;
-    },
-    
-    /**
-     * Removes all listeners from the specified event.  If the event type
-     * is not specified, all listeners from all hosted custom events will
-     * be removed.
-     * @method unsubscribeAll
-     * @param p_type {string}   The type, or name of the event
-     */
-    unsubscribeAll: function(p_type) {
-        return this.unsubscribe(p_type);
-    },
-
-    /**
-     * Creates a new custom event of the specified type.  If a custom event
-     * by that name already exists, it will not be re-created.  In either
-     * case the custom event is returned. 
-     *
-     * @method createEvent
-     *
-     * @param p_type {string} the type, or name of the event
-     * @param p_config {object} optional config params.  Valid properties are:
-     *
-     *  <ul>
-     *    <li>
-     *      scope: defines the default execution scope.  If not defined
-     *      the default scope will be this instance.
-     *    </li>
-     *    <li>
-     *      silent: if true, the custom event will not generate log messages.
-     *      This is false by default.
-     *    </li>
-     *    <li>
-     *      onSubscribeCallback: specifies a callback to execute when the
-     *      event has a new subscriber.  This will fire immediately for
-     *      each queued subscriber if any exist prior to the creation of
-     *      the event.
-     *    </li>
-     *  </ul>
-     *
-     *  @return {CustomEvent} the custom event
-     *
-     */
-    createEvent: function(p_type, p_config) {
-
-        this.__yui_events = this.__yui_events || {};
-        var opts = p_config || {};
-        var events = this.__yui_events;
-
-        if (events[p_type]) {
-        } else {
-
-            var scope  = opts.scope  || this;
-            var silent = (opts.silent);
-
-            var ce = new YAHOO.util.CustomEvent(p_type, scope, silent,
-                    YAHOO.util.CustomEvent.FLAT);
-            events[p_type] = ce;
-
-            if (opts.onSubscribeCallback) {
-                ce.subscribeEvent.subscribe(opts.onSubscribeCallback);
-            }
-
-            this.__yui_subscribers = this.__yui_subscribers || {};
-            var qs = this.__yui_subscribers[p_type];
-
-            if (qs) {
-                for (var i=0; i<qs.length; ++i) {
-                    ce.subscribe(qs[i].fn, qs[i].obj, qs[i].override);
-                }
-            }
-        }
-
-        return events[p_type];
-    },
-
-
-   /**
-     * Fire a custom event by name.  The callback functions will be executed
-     * from the scope specified when the event was created, and with the 
-     * following parameters:
-     *   <ul>
-     *   <li>The first argument fire() was executed with</li>
-     *   <li>The custom object (if any) that was passed into the subscribe() 
-     *       method</li>
-     *   </ul>
-     * @method fireEvent
-     * @param p_type    {string}  the type, or name of the event
-     * @param arguments {Object*} an arbitrary set of parameters to pass to 
-     *                            the handler.
-     * @return {boolean} the return value from CustomEvent.fire
-     *                   
-     */
-    fireEvent: function(p_type, arg1, arg2, etc) {
-
-        this.__yui_events = this.__yui_events || {};
-        var ce = this.__yui_events[p_type];
-
-        if (!ce) {
-            return null;
-        }
-
-        var args = [];
-        for (var i=1; i<arguments.length; ++i) {
-            args.push(arguments[i]);
-        }
-        return ce.fire.apply(ce, args);
-    },
-
-    /**
-     * Returns true if the custom event of the provided type has been created
-     * with createEvent.
-     * @method hasEvent
-     * @param type {string} the type, or name of the event
-     */
-    hasEvent: function(type) {
-        if (this.__yui_events) {
-            if (this.__yui_events[type]) {
-                return true;
-            }
-        }
-        return false;
-    }
-
-};
-
-//@TODO optimize
-//@TODO use event utility, lang abstractions
-//@TODO replace
-
-/**
-* KeyListener is a utility that provides an easy interface for listening for
-* keydown/keyup events fired against DOM elements.
-* @namespace YAHOO.util
-* @class KeyListener
-* @constructor
-* @param {HTMLElement} attachTo The element or element ID to which the key 
-*                               event should be attached
-* @param {String}      attachTo The element or element ID to which the key
-*                               event should be attached
-* @param {Object}      keyData  The object literal representing the key(s) 
-*                               to detect. Possible attributes are 
-*                               shift(boolean), alt(boolean), ctrl(boolean) 
-*                               and keys(either an int or an array of ints 
-*                               representing keycodes).
-* @param {Function}    handler  The CustomEvent handler to fire when the 
-*                               key event is detected
-* @param {Object}      handler  An object literal representing the handler. 
-* @param {String}      event    Optional. The event (keydown or keyup) to 
-*                               listen for. Defaults automatically to keydown.
-*
-* @knownissue the "keypress" event is completely broken in Safari 2.x and below.
-*             the workaround is use "keydown" for key listening.  However, if
-*             it is desired to prevent the default behavior of the keystroke,
-*             that can only be done on the keypress event.  This makes key
-*             handling quite ugly.
-* @knownissue keydown is also broken in Safari 2.x and below for the ESC key.
-*             There currently is no workaround other than choosing another
-*             key to listen for.
-*/
-YAHOO.util.KeyListener = function(attachTo, keyData, handler, event) {
-    if (!attachTo) {
-    } else if (!keyData) {
-    } else if (!handler) {
-    } 
-    
-    if (!event) {
-        event = YAHOO.util.KeyListener.KEYDOWN;
-    }
-
-    /**
-    * The CustomEvent fired internally when a key is pressed
-    * @event keyEvent
-    * @private
-    * @param {Object} keyData The object literal representing the key(s) to 
-    *                         detect. Possible attributes are shift(boolean), 
-    *                         alt(boolean), ctrl(boolean) and keys(either an 
-    *                         int or an array of ints representing keycodes).
-    */
-    var keyEvent = new YAHOO.util.CustomEvent("keyPressed");
-    
-    /**
-    * The CustomEvent fired when the KeyListener is enabled via the enable() 
-    * function
-    * @event enabledEvent
-    * @param {Object} keyData The object literal representing the key(s) to 
-    *                         detect. Possible attributes are shift(boolean), 
-    *                         alt(boolean), ctrl(boolean) and keys(either an 
-    *                         int or an array of ints representing keycodes).
-    */
-    this.enabledEvent = new YAHOO.util.CustomEvent("enabled");
-
-    /**
-    * The CustomEvent fired when the KeyListener is disabled via the 
-    * disable() function
-    * @event disabledEvent
-    * @param {Object} keyData The object literal representing the key(s) to 
-    *                         detect. Possible attributes are shift(boolean), 
-    *                         alt(boolean), ctrl(boolean) and keys(either an 
-    *                         int or an array of ints representing keycodes).
-    */
-    this.disabledEvent = new YAHOO.util.CustomEvent("disabled");
-
-    if (typeof attachTo == 'string') {
-        attachTo = document.getElementById(attachTo);
-    }
-
-    if (typeof handler == 'function') {
-        keyEvent.subscribe(handler);
-    } else {
-        keyEvent.subscribe(handler.fn, handler.scope, handler.correctScope);
-    }
-
-    /**
-    * Handles the key event when a key is pressed.
-    * @method handleKeyPress
-    * @param {DOMEvent} e   The keypress DOM event
-    * @param {Object}   obj The DOM event scope object
-    * @private
-    */
-    function handleKeyPress(e, obj) {
-        if (! keyData.shift) {  
-            keyData.shift = false; 
-        }
-        if (! keyData.alt) {    
-            keyData.alt = false;
-        }
-        if (! keyData.ctrl) {
-            keyData.ctrl = false;
-        }
-
-        // check held down modifying keys first
-        if (e.shiftKey == keyData.shift && 
-            e.altKey   == keyData.alt &&
-            e.ctrlKey  == keyData.ctrl) { // if we pass this, all modifiers match
-            
-            var dataItem;
-
-            if (keyData.keys instanceof Array) {
-                for (var i=0;i<keyData.keys.length;i++) {
-                    dataItem = keyData.keys[i];
-
-                    if (dataItem == e.charCode ) {
-                        keyEvent.fire(e.charCode, e);
-                        break;
-                    } else if (dataItem == e.keyCode) {
-                        keyEvent.fire(e.keyCode, e);
-                        break;
-                    }
-                }
-            } else {
-                dataItem = keyData.keys;
-                if (dataItem == e.charCode ) {
-                    keyEvent.fire(e.charCode, e);
-                } else if (dataItem == e.keyCode) {
-                    keyEvent.fire(e.keyCode, e);
-                }
-            }
-        }
-    }
-
-    /**
-    * Enables the KeyListener by attaching the DOM event listeners to the 
-    * target DOM element
-    * @method enable
-    */
-    this.enable = function() {
-        if (! this.enabled) {
-            YAHOO.util.Event.addListener(attachTo, event, handleKeyPress);
-            this.enabledEvent.fire(keyData);
-        }
-        /**
-        * Boolean indicating the enabled/disabled state of the Tooltip
-        * @property enabled
-        * @type Boolean
-        */
-        this.enabled = true;
-    };
-
-    /**
-    * Disables the KeyListener by removing the DOM event listeners from the 
-    * target DOM element
-    * @method disable
-    */
-    this.disable = function() {
-        if (this.enabled) {
-            YAHOO.util.Event.removeListener(attachTo, event, handleKeyPress);
-            this.disabledEvent.fire(keyData);
-        }
-        this.enabled = false;
-    };
-
-    /**
-    * Returns a String representation of the object.
-    * @method toString
-    * @return {String}  The string representation of the KeyListener
-    */ 
-    this.toString = function() {
-        return "KeyListener [" + keyData.keys + "] " + attachTo.tagName + 
-                (attachTo.id ? "[" + attachTo.id + "]" : "");
-    };
-
-};
-
-/**
- * Constant representing the DOM "keydown" event.
- * @property YAHOO.util.KeyListener.KEYDOWN
- * @static
- * @final
- * @type String
- */
-YAHOO.util.KeyListener.KEYDOWN = "keydown";
-
-/**
- * Constant representing the DOM "keyup" event.
- * @property YAHOO.util.KeyListener.KEYUP
- * @static
- * @final
- * @type String
- */
-YAHOO.util.KeyListener.KEYUP = "keyup";
-
-/**
- * keycode constants for a subset of the special keys
- * @property KEY
- * @static
- * @final
- */
-YAHOO.util.KeyListener.KEY = {
-    ALT          : 18,
-    BACK_SPACE   : 8,
-    CAPS_LOCK    : 20,
-    CONTROL      : 17,
-    DELETE       : 46,
-    DOWN         : 40,
-    END          : 35,
-    ENTER        : 13,
-    ESCAPE       : 27,
-    HOME         : 36,
-    LEFT         : 37,
-    META         : 224,
-    NUM_LOCK     : 144,
-    PAGE_DOWN    : 34,
-    PAGE_UP      : 33, 
-    PAUSE        : 19,
-    PRINTSCREEN  : 44,
-    RIGHT        : 39,
-    SCROLL_LOCK  : 145,
-    SHIFT        : 16,
-    SPACE        : 32,
-    TAB          : 9,
-    UP           : 38
-};
-YAHOO.register("event", YAHOO.util.Event, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/fonts/README b/eclipse.org-common/yui/2.6.0/build/fonts/README
deleted file mode 100644
index fe0c176..0000000
--- a/eclipse.org-common/yui/2.6.0/build/fonts/README
+++ /dev/null
@@ -1,50 +0,0 @@
-YUI Library - Fonts - Release Notes
-
-Version 2.6.0
-
-   * Added font reduction and face restatement for select, input, button, and textarea
-   * Comments and formatting updates.
-   * KNOWN ISSUE: 
-     In IE8 Beta 2, user-initiated Text Size adjustment does not work because our keyword
-     filters to IE do not reach IE8. Note that Zoom works, providing users a resize option.
-
-Version 2.5.2
-
-  * Added comments regarding font shorthand filter for IE in Quirks Mode.
-
-Version 2.5.1
-
-  * No changes.
-
-Version 2.5.0
-
-  * No changes.
-
-Version 2.4.0
-
-  * Rechanged core line-height from 1.22 to 1.231, sans units.
-  * Updated line-height value for monospcaed elements. 
-
-Version 2.3.0
-
-  * Updated %-to-px conversion charted for increased accuracy
-    across browsers
-  * Move body line-height away from * wildcard selector. Now it is
-    part of the initial BODY rule set.
-  * Changed core lineheight from 1.22em to 1.231 (no units)
-  * Changed code,pre to not use font-property shorthand syntax
-  * Tweaked the sizing fix for monospace font size (pre,code...)
-  * Added "kbd,samp,tt" as new selectors for monospaced font stuff
-  * Added line-height:99% to keep monospaced font the right height
-
-Version 2.2.0 - 2.2.2
-
-  * No changes.
-
-Version 0.10.1 - 0.12.2
-
-  * No changes.
-
-Version 0.10.0
-
-  * Initial release.
diff --git a/eclipse.org-common/yui/2.6.0/build/fonts/fonts-min.css b/eclipse.org-common/yui/2.6.0/build/fonts/fonts-min.css
deleted file mode 100644
index 1e7ebfd..0000000
--- a/eclipse.org-common/yui/2.6.0/build/fonts/fonts-min.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-body{font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}select,input,button,textarea{font:99% arial,helvetica,clean,sans-serif;}table{font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/fonts/fonts.css b/eclipse.org-common/yui/2.6.0/build/fonts/fonts.css
deleted file mode 100644
index 97c7757..0000000
--- a/eclipse.org-common/yui/2.6.0/build/fonts/fonts.css
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * Percents could work for IE, but for backCompat purposes, we are using keywords.
- * x-small is for IE6/7 quirks mode.
- */
-body {
-	font:13px/1.231 arial,helvetica,clean,sans-serif;
-	*font-size:small; /* for IE */
-	*font:x-small; /* for IE in quirks mode */
-}
-
-/**
- * Nudge down to get to 13px equivalent for these form elements
- */ 
-select,
-input,
-button,
-textarea {
-	font:99% arial,helvetica,clean,sans-serif;
-}
-
-/**
- * To help tables remember to inherit
- */
-table {
-	font-size:inherit;
-	font:100%;
-}
-
-/**
- * Bump up IE to get to 13px equivalent for these fixed-width elements
- */
-pre,
-code,
-kbd,
-samp,
-tt {
-	font-family:monospace;
-	*font-size:108%;
-	line-height:100%;
-}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/get/README b/eclipse.org-common/yui/2.6.0/build/get/README
deleted file mode 100644
index 1001aa0..0000000
--- a/eclipse.org-common/yui/2.6.0/build/get/README
+++ /dev/null
@@ -1,25 +0,0 @@
-get - Release Notes
-
-2.6.0
-    * Fixed IE memory leak
-    * Added timeout support
-
-2.5.2
-    * No change
-
-2.5.1
-    * onFailure callback receives a second parameter containing an error message.
-    * Added 'charset' configuration option for inserted nodes.  Default is utf-8.
-    * Added 'insertBefore' configuration to specify a node or node id to insert before.
-      This can be used to position CSS nodes before any overriding styles.
-
-2.5.0
-    * autopurge no longer attempts to remove nodes that have been
-      removed previously.
-    * Fixed Safari 2.x external script insert.
-
-2.4.1
-   * No change
-
-2.4.0
-   * Inital release
diff --git a/eclipse.org-common/yui/2.6.0/build/get/get-debug.js b/eclipse.org-common/yui/2.6.0/build/get/get-debug.js
deleted file mode 100644
index 91e8aec..0000000
--- a/eclipse.org-common/yui/2.6.0/build/get/get-debug.js
+++ /dev/null
@@ -1,742 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * Provides a mechanism to fetch remote resources and
- * insert them into a document
- * @module get
- * @requires yahoo
- */
-
-/**
- * Fetches and inserts one or more script or link nodes into the document 
- * @namespace YAHOO.util
- * @class YAHOO.util.Get
- */
-YAHOO.util.Get = function() {
-
-    /**
-     * hash of queues to manage multiple requests
-     * @property queues
-     * @private
-     */
-    var queues={}, 
-        
-    /**
-     * queue index used to generate transaction ids
-     * @property qidx
-     * @type int
-     * @private
-     */
-        qidx=0, 
-        
-    /**
-     * node index used to generate unique node ids
-     * @property nidx
-     * @type int
-     * @private
-     */
-        nidx=0, 
-
-        // ridx=0,
-
-        // sandboxFrame=null,
-
-    /**
-     * interal property used to prevent multiple simultaneous purge 
-     * processes
-     * @property purging
-     * @type boolean
-     * @private
-     */
-        purging=false,
-
-        ua=YAHOO.env.ua, 
-        
-        lang=YAHOO.lang;
-    
-    /** 
-     * Generates an HTML element, this is not appended to a document
-     * @method _node
-     * @param type {string} the type of element
-     * @param attr {string} the attributes
-     * @param win {Window} optional window to create the element in
-     * @return {HTMLElement} the generated node
-     * @private
-     */
-    var _node = function(type, attr, win) {
-        var w = win || window, d=w.document, n=d.createElement(type);
-
-        for (var i in attr) {
-            if (attr[i] && YAHOO.lang.hasOwnProperty(attr, i)) {
-                n.setAttribute(i, attr[i]);
-            }
-        }
-
-        return n;
-    };
-
-    /**
-     * Generates a link node
-     * @method _linkNode
-     * @param url {string} the url for the css file
-     * @param win {Window} optional window to create the node in
-     * @return {HTMLElement} the generated node
-     * @private
-     */
-    var _linkNode = function(url, win, charset) {
-        var c = charset || "utf-8";
-        return _node("link", {
-                "id":      "yui__dyn_" + (nidx++),
-                "type":    "text/css",
-                "charset": c,
-                "rel":     "stylesheet",
-                "href":    url
-            }, win);
-    };
-
-    /**
-     * Generates a script node
-     * @method _scriptNode
-     * @param url {string} the url for the script file
-     * @param win {Window} optional window to create the node in
-     * @return {HTMLElement} the generated node
-     * @private
-     */
-    var _scriptNode = function(url, win, charset) {
-        var c = charset || "utf-8";
-        return _node("script", {
-                "id":      "yui__dyn_" + (nidx++),
-                "type":    "text/javascript",
-                "charset": c,
-                "src":     url
-            }, win);
-    };
-
-    /**
-     * Returns the data payload for callback functions
-     * @method _returnData
-     * @private
-     */
-    var _returnData = function(q, msg) {
-        return {
-                tId: q.tId,
-                win: q.win,
-                data: q.data,
-                nodes: q.nodes,
-                msg: msg,
-                purge: function() {
-                    _purge(this.tId);
-                }
-            };
-    };
-
-    var _get = function(nId, tId) {
-        var q = queues[tId],
-            n = (lang.isString(nId)) ? q.win.document.getElementById(nId) : nId;
-        if (!n) {
-            _fail(tId, "target node not found: " + nId);
-        }
-
-        return n;
-    };
-
-    /*
-     * The request failed, execute fail handler with whatever
-     * was accomplished.  There isn't a failure case at the
-     * moment unless you count aborted transactions
-     * @method _fail
-     * @param id {string} the id of the request
-     * @private
-     */
-    var _fail = function(id, msg) {
-        YAHOO.log("get failure: " + msg, "warn", "Get");
-        var q = queues[id];
-        // execute failure callback
-        if (q.onFailure) {
-            var sc=q.scope || q.win;
-            q.onFailure.call(sc, _returnData(q, msg));
-        }
-    };
-
-    /**
-     * The request is complete, so executing the requester's callback
-     * @method _finish
-     * @param id {string} the id of the request
-     * @private
-     */
-    var _finish = function(id) {
-        YAHOO.log("Finishing transaction " + id);
-        var q = queues[id];
-        q.finished = true;
-
-        if (q.aborted) {
-            var msg = "transaction " + id + " was aborted";
-            _fail(id, msg);
-            return;
-        }
-
-        // execute success callback
-        if (q.onSuccess) {
-            var sc=q.scope || q.win;
-            q.onSuccess.call(sc, _returnData(q));
-        }
-    };
-
-    /**
-     * Timeout detected
-     * @method _timeout
-     * @param id {string} the id of the request
-     * @private
-     */
-    var _timeout = function(id) {
-        YAHOO.log("Timeout " + id, "info", "get");
-        var q = queues[id];
-        if (q.onTimeout) {
-            var sc=q.context || q;
-            q.onTimeout.call(sc, _returnData(q));
-        }
-    };
-
-    /**
-     * Loads the next item for a given request
-     * @method _next
-     * @param id {string} the id of the request
-     * @param loaded {string} the url that was just loaded, if any
-     * @private
-     */
-    var _next = function(id, loaded) {
-        YAHOO.log("_next: " + id + ", loaded: " + loaded, "info", "Get");
-        var q = queues[id];
-
-        if (q.timer) {
-            // Y.log('cancel timer');
-            q.timer.cancel();
-        }
-
-        if (q.aborted) {
-            var msg = "transaction " + id + " was aborted";
-            _fail(id, msg);
-            return;
-        }
-
-        if (loaded) {
-            q.url.shift(); 
-            if (q.varName) {
-                q.varName.shift(); 
-            }
-        } else {
-            // This is the first pass: make sure the url is an array
-            q.url = (lang.isString(q.url)) ? [q.url] : q.url;
-            if (q.varName) {
-                q.varName = (lang.isString(q.varName)) ? [q.varName] : q.varName;
-            }
-        }
-
-        var w=q.win, d=w.document, h=d.getElementsByTagName("head")[0], n;
-
-        if (q.url.length === 0) {
-            // Safari 2.x workaround - There is no way to know when 
-            // a script is ready in versions of Safari prior to 3.x.
-            // Adding an extra node reduces the problem, but doesn't
-            // eliminate it completely because the browser executes
-            // them asynchronously. 
-            if (q.type === "script" && ua.webkit && ua.webkit < 420 && 
-                    !q.finalpass && !q.varName) {
-                // Add another script node.  This does not guarantee that the
-                // scripts will execute in order, but it does appear to fix the
-                // problem on fast connections more effectively than using an
-                // arbitrary timeout.  It is possible that the browser does
-                // block subsequent script execution in this case for a limited
-                // time.
-                var extra = _scriptNode(null, q.win, q.charset);
-                extra.innerHTML='YAHOO.util.Get._finalize("' + id + '");';
-                q.nodes.push(extra); h.appendChild(extra);
-
-            } else {
-                _finish(id);
-            }
-
-            return;
-        } 
-
-
-        var url = q.url[0];
-
-        // if the url is undefined, this is probably a trailing comma problem in IE
-        if (!url) {
-            q.url.shift(); 
-            YAHOO.log('skipping empty url');
-            return _next(id);
-        }
-
-        YAHOO.log("attempting to load " + url, "info", "Get");
-
-        if (q.timeout) {
-            // Y.log('create timer');
-            q.timer = lang.later(q.timeout, q, _timeout, id);
-        }
-
-        if (q.type === "script") {
-            n = _scriptNode(url, w, q.charset);
-        } else {
-            n = _linkNode(url, w, q.charset);
-        }
-
-        // track this node's load progress
-        _track(q.type, n, id, url, w, q.url.length);
-
-        // add the node to the queue so we can return it to the user supplied callback
-        q.nodes.push(n);
-
-        // add it to the head or insert it before 'insertBefore'
-        if (q.insertBefore) {
-            var s = _get(q.insertBefore, id);
-            if (s) {
-                s.parentNode.insertBefore(n, s);
-            }
-        } else {
-            h.appendChild(n);
-        }
-        
-        YAHOO.log("Appending node: " + url, "info", "Get");
-
-        // FireFox does not support the onload event for link nodes, so there is
-        // no way to make the css requests synchronous. This means that the css 
-        // rules in multiple files could be applied out of order in this browser
-        // if a later request returns before an earlier one.  Safari too.
-        if ((ua.webkit || ua.gecko) && q.type === "css") {
-            _next(id, url);
-        }
-    };
-
-    /**
-     * Removes processed queues and corresponding nodes
-     * @method _autoPurge
-     * @private
-     */
-    var _autoPurge = function() {
-
-        if (purging) {
-            return;
-        }
-
-        purging = true;
-        for (var i in queues) {
-            var q = queues[i];
-            if (q.autopurge && q.finished) {
-                _purge(q.tId);
-                delete queues[i];
-            }
-        }
-
-        purging = false;
-    };
-
-    /**
-     * Removes the nodes for the specified queue
-     * @method _purge
-     * @private
-     */
-    var _purge = function(tId) {
-        var q=queues[tId];
-        if (q) {
-            var n=q.nodes, l=n.length, d=q.win.document, 
-                h=d.getElementsByTagName("head")[0];
-
-            if (q.insertBefore) {
-                var s = _get(q.insertBefore, tId);
-                if (s) {
-                    h = s.parentNode;
-                }
-            }
-
-            for (var i=0; i<l; i=i+1) {
-                h.removeChild(n[i]);
-            }
-
-            q.nodes = [];
-        }
-    };
-
-    /**
-     * Saves the state for the request and begins loading
-     * the requested urls
-     * @method queue
-     * @param type {string} the type of node to insert
-     * @param url {string} the url to load
-     * @param opts the hash of options for this request
-     * @private
-     */
-    var _queue = function(type, url, opts) {
-
-        var id = "q" + (qidx++);
-        opts = opts || {};
-
-        if (qidx % YAHOO.util.Get.PURGE_THRESH === 0) {
-            _autoPurge();
-        }
-
-        queues[id] = lang.merge(opts, {
-            tId: id,
-            type: type,
-            url: url,
-            finished: false,
-            aborted: false,
-            nodes: []
-        });
-
-        var q = queues[id];
-        q.win = q.win || window;
-        q.scope = q.scope || q.win;
-        q.autopurge = ("autopurge" in q) ? q.autopurge : 
-                      (type === "script") ? true : false;
-
-        lang.later(0, q, _next, id);
-
-        return {
-            tId: id
-        };
-    };
-
-    /**
-     * Detects when a node has been loaded.  In the case of
-     * script nodes, this does not guarantee that contained
-     * script is ready to use.
-     * @method _track
-     * @param type {string} the type of node to track
-     * @param n {HTMLElement} the node to track
-     * @param id {string} the id of the request
-     * @param url {string} the url that is being loaded
-     * @param win {Window} the targeted window
-     * @param qlength the number of remaining items in the queue,
-     * including this one
-     * @param trackfn {Function} function to execute when finished
-     * the default is _next
-     * @private
-     */
-    var _track = function(type, n, id, url, win, qlength, trackfn) {
-        var f = trackfn || _next;
-
-        // IE supports the readystatechange event for script and css nodes
-        if (ua.ie) {
-            n.onreadystatechange = function() {
-                var rs = this.readyState;
-                if ("loaded" === rs || "complete" === rs) {
-                    YAHOO.log(id + " onload " + url, "info", "Get");
-                    n.onreadystatechange = null;
-                    f(id, url);
-                }
-            };
-
-        // webkit prior to 3.x is problemmatic
-        } else if (ua.webkit) {
-
-            if (type === "script") {
-
-                // Safari 3.x supports the load event for script nodes (DOM2)
-                if (ua.webkit >= 420) {
-
-                    n.addEventListener("load", function() {
-                        YAHOO.log(id + " DOM2 onload " + url, "info", "Get");
-                        f(id, url);
-                    });
-
-                // Nothing can be done with Safari < 3.x except to pause and hope
-                // for the best, particularly after last script is inserted. The
-                // scripts will always execute in the order they arrive, not
-                // necessarily the order in which they were inserted.  To support
-                // script nodes with complete reliability in these browsers, script
-                // nodes either need to invoke a function in the window once they
-                // are loaded or the implementer needs to provide a well-known
-                // property that the utility can poll for.
-                } else {
-                    // Poll for the existence of the named variable, if it
-                    // was supplied.
-                    var q = queues[id];
-                    if (q.varName) {
-                        var freq=YAHOO.util.Get.POLL_FREQ;
-                        YAHOO.log("Polling for " + q.varName[0]);
-                        q.maxattempts = YAHOO.util.Get.TIMEOUT/freq;
-                        q.attempts = 0;
-                        q._cache = q.varName[0].split(".");
-                        q.timer = lang.later(freq, q, function(o) {
-                            var a=this._cache, l=a.length, w=this.win, i;
-                            for (i=0; i<l; i=i+1) {
-                                w = w[a[i]];
-                                if (!w) {
-                                    // if we have exausted our attempts, give up
-                                    this.attempts++;
-                                    if (this.attempts++ > this.maxattempts) {
-                                        var msg = "Over retry limit, giving up";
-                                        q.timer.cancel();
-                                        _fail(id, msg);
-                                    } else {
-                                        YAHOO.log(a[i] + " failed, retrying");
-                                    }
-                                    return;
-                                }
-                            }
-                            
-                            YAHOO.log("Safari poll complete");
-
-                            q.timer.cancel();
-                            f(id, url);
-
-                        }, null, true);
-                    } else {
-                        lang.later(YAHOO.util.Get.POLL_FREQ, null, f, [id, url]);
-                    }
-                }
-            } 
-
-        // FireFox and Opera support onload (but not DOM2 in FF) handlers for
-        // script nodes.  Opera, but not FF, supports the onload event for link
-        // nodes.
-        } else { 
-            n.onload = function() {
-                YAHOO.log(id + " onload " + url, "info", "Get");
-                f(id, url);
-            };
-        }
-    };
-
-    return {
-
-        /**
-         * The default poll freqency in ms, when needed
-         * @property POLL_FREQ
-         * @static
-         * @type int
-         * @default 10
-         */
-        POLL_FREQ: 10,
-
-        /**
-         * The number of request required before an automatic purge.
-         * property PURGE_THRESH
-         * @static
-         * @type int
-         * @default 20
-         */
-        PURGE_THRESH: 20,
-
-        /**
-         * The length time to poll for varName when loading a script in
-         * Safari 2.x before the transaction fails.
-         * property TIMEOUT
-         * @static
-         * @type int
-         * @default 2000
-         */
-        TIMEOUT: 2000,
-        
-        /**
-         * Called by the the helper for detecting script load in Safari
-         * @method _finalize
-         * @param id {string} the transaction id
-         * @private
-         */
-        _finalize: function(id) {
-            YAHOO.log(id + " finalized ", "info", "Get");
-            lang.later(0, null, _finish, id);
-        },
-
-        /**
-         * Abort a transaction
-         * @method abort
-         * @param {string|object} either the tId or the object returned from
-         * script() or css()
-         */
-        abort: function(o) {
-            var id = (lang.isString(o)) ? o : o.tId;
-            var q = queues[id];
-            if (q) {
-                YAHOO.log("Aborting " + id, "info", "Get");
-                q.aborted = true;
-            }
-        }, 
-
-        /**
-         * Fetches and inserts one or more script nodes into the head
-         * of the current document or the document in a specified window.
-         *
-         * @method script
-         * @static
-         * @param url {string|string[]} the url or urls to the script(s)
-         * @param opts {object} Options: 
-         * <dl>
-         * <dt>onSuccess</dt>
-         * <dd>
-         * callback to execute when the script(s) are finished loading
-         * The callback receives an object back with the following
-         * data:
-         * <dl>
-         * <dt>win</dt>
-         * <dd>the window the script(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove the nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>onFailure</dt>
-         * <dd>
-         * callback to execute when the script load operation fails
-         * The callback receives an object back with the following
-         * data:
-         * <dl>
-         * <dt>win</dt>
-         * <dd>the window the script(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted successfully</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove any nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>onTimeout</dt>
-         * <dd>
-         * callback to execute when a timeout occurs.
-         * The callback receives an object back with the following
-         * data:
-         * <dl>
-         * <dt>win</dt>
-         * <dd>the window the script(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove the nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>scope</dt>
-         * <dd>the execution context for the callbacks</dd>
-         * <dt>win</dt>
-         * <dd>a window other than the one the utility occupies</dd>
-         * <dt>autopurge</dt>
-         * <dd>
-         * setting to true will let the utilities cleanup routine purge 
-         * the script once loaded
-         * </dd>
-         * <dt>data</dt>
-         * <dd>
-         * data that is supplied to the callback when the script(s) are
-         * loaded.
-         * </dd>
-         * <dt>varName</dt>
-         * <dd>
-         * variable that should be available when a script is finished
-         * loading.  Used to help Safari 2.x and below with script load 
-         * detection.  The type of this property should match what was
-         * passed into the url parameter: if loading a single url, a
-         * string can be supplied.  If loading multiple scripts, you
-         * must supply an array that contains the variable name for
-         * each script.
-         * </dd>
-         * <dt>insertBefore</dt>
-         * <dd>node or node id that will become the new node's nextSibling</dd>
-         * </dl>
-         * <dt>charset</dt>
-         * <dd>Node charset, default utf-8</dd>
-         * <dt>timeout</dt>
-         * <dd>Number of milliseconds to wait before aborting and firing the timeout event</dd>
-         * <pre>
-         * // assumes yahoo, dom, and event are already on the page
-         * &nbsp;&nbsp;YAHOO.util.Get.script(
-         * &nbsp;&nbsp;["http://yui.yahooapis.com/2.3.1/build/dragdrop/dragdrop-min.js",
-         * &nbsp;&nbsp;&nbsp;"http://yui.yahooapis.com/2.3.1/build/animation/animation-min.js"], &#123;
-         * &nbsp;&nbsp;&nbsp;&nbsp;onSuccess: function(o) &#123;
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;YAHOO.log(o.data); // foo
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;new YAHOO.util.DDProxy("dd1"); // also new o.reference("dd1"); would work
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this.log("won't cause error because YAHOO is the scope");
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this.log(o.nodes.length === 2) // true
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// o.purge(); // optionally remove the script nodes immediately
-         * &nbsp;&nbsp;&nbsp;&nbsp;&#125;,
-         * &nbsp;&nbsp;&nbsp;&nbsp;onFailure: function(o) &#123;
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;YAHOO.log("transaction failed");
-         * &nbsp;&nbsp;&nbsp;&nbsp;&#125;,
-         * &nbsp;&nbsp;&nbsp;&nbsp;data: "foo",
-         * &nbsp;&nbsp;&nbsp;&nbsp;timeout: 10000, // 10 second timeout
-         * &nbsp;&nbsp;&nbsp;&nbsp;scope: YAHOO,
-         * &nbsp;&nbsp;&nbsp;&nbsp;// win: otherframe // target another window/frame
-         * &nbsp;&nbsp;&nbsp;&nbsp;autopurge: true // allow the utility to choose when to remove the nodes
-         * &nbsp;&nbsp;&#125;);
-         * </pre>
-         * @return {tId: string} an object containing info about the transaction
-         */
-        script: function(url, opts) { return _queue("script", url, opts); },
-
-        /**
-         * Fetches and inserts one or more css link nodes into the 
-         * head of the current document or the document in a specified
-         * window.
-         * @method css
-         * @static
-         * @param url {string} the url or urls to the css file(s)
-         * @param opts Options: 
-         * <dl>
-         * <dt>onSuccess</dt>
-         * <dd>
-         * callback to execute when the css file(s) are finished loading
-         * The callback receives an object back with the following
-         * data:
-         * <dl>win</dl>
-         * <dd>the window the link nodes(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove the nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>scope</dt>
-         * <dd>the execution context for the callbacks</dd>
-         * <dt>win</dt>
-         * <dd>a window other than the one the utility occupies</dd>
-         * <dt>data</dt>
-         * <dd>
-         * data that is supplied to the callbacks when the nodes(s) are
-         * loaded.
-         * </dd>
-         * <dt>insertBefore</dt>
-         * <dd>node or node id that will become the new node's nextSibling</dd>
-         * <dt>charset</dt>
-         * <dd>Node charset, default utf-8</dd>
-         * </dl>
-         * <pre>
-         *      YAHOO.util.Get.css("http://yui.yahooapis.com/2.3.1/build/menu/assets/skins/sam/menu.css");
-         * </pre>
-         * <pre>
-         *      YAHOO.util.Get.css(["http://yui.yahooapis.com/2.3.1/build/menu/assets/skins/sam/menu.css",
-         *                          "http://yui.yahooapis.com/2.3.1/build/logger/assets/skins/sam/logger.css"]);
-         * </pre>
-         * @return {tId: string} an object containing info about the transaction
-         */
-        css: function(url, opts) {
-            return _queue("css", url, opts); 
-        }
-    };
-}();
-
-YAHOO.register("get", YAHOO.util.Get, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/get/get-min.js b/eclipse.org-common/yui/2.6.0/build/get/get-min.js
deleted file mode 100644
index de199d3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/get/get-min.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.util.Get=function(){var M={},L=0,R=0,E=false,N=YAHOO.env.ua,S=YAHOO.lang;var J=function(W,T,X){var U=X||window,Y=U.document,Z=Y.createElement(W);for(var V in T){if(T[V]&&YAHOO.lang.hasOwnProperty(T,V)){Z.setAttribute(V,T[V]);}}return Z;};var I=function(T,U,W){var V=W||"utf-8";return J("link",{"id":"yui__dyn_"+(R++),"type":"text/css","charset":V,"rel":"stylesheet","href":T},U);};var P=function(T,U,W){var V=W||"utf-8";return J("script",{"id":"yui__dyn_"+(R++),"type":"text/javascript","charset":V,"src":T},U);};var A=function(T,U){return{tId:T.tId,win:T.win,data:T.data,nodes:T.nodes,msg:U,purge:function(){D(this.tId);}};};var B=function(T,W){var U=M[W],V=(S.isString(T))?U.win.document.getElementById(T):T;if(!V){Q(W,"target node not found: "+T);}return V;};var Q=function(W,V){var T=M[W];if(T.onFailure){var U=T.scope||T.win;T.onFailure.call(U,A(T,V));}};var C=function(W){var T=M[W];T.finished=true;if(T.aborted){var V="transaction "+W+" was aborted";Q(W,V);return ;}if(T.onSuccess){var U=T.scope||T.win;T.onSuccess.call(U,A(T));}};var O=function(V){var T=M[V];if(T.onTimeout){var U=T.context||T;T.onTimeout.call(U,A(T));}};var G=function(V,Z){var U=M[V];if(U.timer){U.timer.cancel();}if(U.aborted){var X="transaction "+V+" was aborted";Q(V,X);return ;}if(Z){U.url.shift();if(U.varName){U.varName.shift();}}else{U.url=(S.isString(U.url))?[U.url]:U.url;if(U.varName){U.varName=(S.isString(U.varName))?[U.varName]:U.varName;}}var c=U.win,b=c.document,a=b.getElementsByTagName("head")[0],W;if(U.url.length===0){if(U.type==="script"&&N.webkit&&N.webkit<420&&!U.finalpass&&!U.varName){var Y=P(null,U.win,U.charset);Y.innerHTML='YAHOO.util.Get._finalize("'+V+'");';U.nodes.push(Y);a.appendChild(Y);}else{C(V);}return ;}var T=U.url[0];if(!T){U.url.shift();return G(V);}if(U.timeout){U.timer=S.later(U.timeout,U,O,V);}if(U.type==="script"){W=P(T,c,U.charset);}else{W=I(T,c,U.charset);}F(U.type,W,V,T,c,U.url.length);U.nodes.push(W);if(U.insertBefore){var e=B(U.insertBefore,V);if(e){e.parentNode.insertBefore(W,e);}}else{a.appendChild(W);}if((N.webkit||N.gecko)&&U.type==="css"){G(V,T);}};var K=function(){if(E){return ;}E=true;for(var T in M){var U=M[T];if(U.autopurge&&U.finished){D(U.tId);delete M[T];}}E=false;};var D=function(a){var X=M[a];if(X){var Z=X.nodes,T=Z.length,Y=X.win.document,W=Y.getElementsByTagName("head")[0];if(X.insertBefore){var V=B(X.insertBefore,a);if(V){W=V.parentNode;}}for(var U=0;U<T;U=U+1){W.removeChild(Z[U]);}X.nodes=[];}};var H=function(U,T,V){var X="q"+(L++);V=V||{};if(L%YAHOO.util.Get.PURGE_THRESH===0){K();}M[X]=S.merge(V,{tId:X,type:U,url:T,finished:false,aborted:false,nodes:[]});var W=M[X];W.win=W.win||window;W.scope=W.scope||W.win;W.autopurge=("autopurge" in W)?W.autopurge:(U==="script")?true:false;S.later(0,W,G,X);return{tId:X};};var F=function(c,X,W,U,Y,Z,b){var a=b||G;if(N.ie){X.onreadystatechange=function(){var d=this.readyState;if("loaded"===d||"complete"===d){X.onreadystatechange=null;a(W,U);}};}else{if(N.webkit){if(c==="script"){if(N.webkit>=420){X.addEventListener("load",function(){a(W,U);});}else{var T=M[W];if(T.varName){var V=YAHOO.util.Get.POLL_FREQ;T.maxattempts=YAHOO.util.Get.TIMEOUT/V;T.attempts=0;T._cache=T.varName[0].split(".");T.timer=S.later(V,T,function(j){var f=this._cache,e=f.length,d=this.win,g;for(g=0;g<e;g=g+1){d=d[f[g]];if(!d){this.attempts++;if(this.attempts++>this.maxattempts){var h="Over retry limit, giving up";T.timer.cancel();Q(W,h);}else{}return ;}}T.timer.cancel();a(W,U);},null,true);}else{S.later(YAHOO.util.Get.POLL_FREQ,null,a,[W,U]);}}}}else{X.onload=function(){a(W,U);};}}};return{POLL_FREQ:10,PURGE_THRESH:20,TIMEOUT:2000,_finalize:function(T){S.later(0,null,C,T);},abort:function(U){var V=(S.isString(U))?U:U.tId;var T=M[V];if(T){T.aborted=true;}},script:function(T,U){return H("script",T,U);},css:function(T,U){return H("css",T,U);}};}();YAHOO.register("get",YAHOO.util.Get,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/get/get.js b/eclipse.org-common/yui/2.6.0/build/get/get.js
deleted file mode 100644
index fed3dc1..0000000
--- a/eclipse.org-common/yui/2.6.0/build/get/get.js
+++ /dev/null
@@ -1,724 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * Provides a mechanism to fetch remote resources and
- * insert them into a document
- * @module get
- * @requires yahoo
- */
-
-/**
- * Fetches and inserts one or more script or link nodes into the document 
- * @namespace YAHOO.util
- * @class YAHOO.util.Get
- */
-YAHOO.util.Get = function() {
-
-    /**
-     * hash of queues to manage multiple requests
-     * @property queues
-     * @private
-     */
-    var queues={}, 
-        
-    /**
-     * queue index used to generate transaction ids
-     * @property qidx
-     * @type int
-     * @private
-     */
-        qidx=0, 
-        
-    /**
-     * node index used to generate unique node ids
-     * @property nidx
-     * @type int
-     * @private
-     */
-        nidx=0, 
-
-        // ridx=0,
-
-        // sandboxFrame=null,
-
-    /**
-     * interal property used to prevent multiple simultaneous purge 
-     * processes
-     * @property purging
-     * @type boolean
-     * @private
-     */
-        purging=false,
-
-        ua=YAHOO.env.ua, 
-        
-        lang=YAHOO.lang;
-    
-    /** 
-     * Generates an HTML element, this is not appended to a document
-     * @method _node
-     * @param type {string} the type of element
-     * @param attr {string} the attributes
-     * @param win {Window} optional window to create the element in
-     * @return {HTMLElement} the generated node
-     * @private
-     */
-    var _node = function(type, attr, win) {
-        var w = win || window, d=w.document, n=d.createElement(type);
-
-        for (var i in attr) {
-            if (attr[i] && YAHOO.lang.hasOwnProperty(attr, i)) {
-                n.setAttribute(i, attr[i]);
-            }
-        }
-
-        return n;
-    };
-
-    /**
-     * Generates a link node
-     * @method _linkNode
-     * @param url {string} the url for the css file
-     * @param win {Window} optional window to create the node in
-     * @return {HTMLElement} the generated node
-     * @private
-     */
-    var _linkNode = function(url, win, charset) {
-        var c = charset || "utf-8";
-        return _node("link", {
-                "id":      "yui__dyn_" + (nidx++),
-                "type":    "text/css",
-                "charset": c,
-                "rel":     "stylesheet",
-                "href":    url
-            }, win);
-    };
-
-    /**
-     * Generates a script node
-     * @method _scriptNode
-     * @param url {string} the url for the script file
-     * @param win {Window} optional window to create the node in
-     * @return {HTMLElement} the generated node
-     * @private
-     */
-    var _scriptNode = function(url, win, charset) {
-        var c = charset || "utf-8";
-        return _node("script", {
-                "id":      "yui__dyn_" + (nidx++),
-                "type":    "text/javascript",
-                "charset": c,
-                "src":     url
-            }, win);
-    };
-
-    /**
-     * Returns the data payload for callback functions
-     * @method _returnData
-     * @private
-     */
-    var _returnData = function(q, msg) {
-        return {
-                tId: q.tId,
-                win: q.win,
-                data: q.data,
-                nodes: q.nodes,
-                msg: msg,
-                purge: function() {
-                    _purge(this.tId);
-                }
-            };
-    };
-
-    var _get = function(nId, tId) {
-        var q = queues[tId],
-            n = (lang.isString(nId)) ? q.win.document.getElementById(nId) : nId;
-        if (!n) {
-            _fail(tId, "target node not found: " + nId);
-        }
-
-        return n;
-    };
-
-    /*
-     * The request failed, execute fail handler with whatever
-     * was accomplished.  There isn't a failure case at the
-     * moment unless you count aborted transactions
-     * @method _fail
-     * @param id {string} the id of the request
-     * @private
-     */
-    var _fail = function(id, msg) {
-        var q = queues[id];
-        // execute failure callback
-        if (q.onFailure) {
-            var sc=q.scope || q.win;
-            q.onFailure.call(sc, _returnData(q, msg));
-        }
-    };
-
-    /**
-     * The request is complete, so executing the requester's callback
-     * @method _finish
-     * @param id {string} the id of the request
-     * @private
-     */
-    var _finish = function(id) {
-        var q = queues[id];
-        q.finished = true;
-
-        if (q.aborted) {
-            var msg = "transaction " + id + " was aborted";
-            _fail(id, msg);
-            return;
-        }
-
-        // execute success callback
-        if (q.onSuccess) {
-            var sc=q.scope || q.win;
-            q.onSuccess.call(sc, _returnData(q));
-        }
-    };
-
-    /**
-     * Timeout detected
-     * @method _timeout
-     * @param id {string} the id of the request
-     * @private
-     */
-    var _timeout = function(id) {
-        var q = queues[id];
-        if (q.onTimeout) {
-            var sc=q.context || q;
-            q.onTimeout.call(sc, _returnData(q));
-        }
-    };
-
-    /**
-     * Loads the next item for a given request
-     * @method _next
-     * @param id {string} the id of the request
-     * @param loaded {string} the url that was just loaded, if any
-     * @private
-     */
-    var _next = function(id, loaded) {
-        var q = queues[id];
-
-        if (q.timer) {
-            // Y.log('cancel timer');
-            q.timer.cancel();
-        }
-
-        if (q.aborted) {
-            var msg = "transaction " + id + " was aborted";
-            _fail(id, msg);
-            return;
-        }
-
-        if (loaded) {
-            q.url.shift(); 
-            if (q.varName) {
-                q.varName.shift(); 
-            }
-        } else {
-            // This is the first pass: make sure the url is an array
-            q.url = (lang.isString(q.url)) ? [q.url] : q.url;
-            if (q.varName) {
-                q.varName = (lang.isString(q.varName)) ? [q.varName] : q.varName;
-            }
-        }
-
-        var w=q.win, d=w.document, h=d.getElementsByTagName("head")[0], n;
-
-        if (q.url.length === 0) {
-            // Safari 2.x workaround - There is no way to know when 
-            // a script is ready in versions of Safari prior to 3.x.
-            // Adding an extra node reduces the problem, but doesn't
-            // eliminate it completely because the browser executes
-            // them asynchronously. 
-            if (q.type === "script" && ua.webkit && ua.webkit < 420 && 
-                    !q.finalpass && !q.varName) {
-                // Add another script node.  This does not guarantee that the
-                // scripts will execute in order, but it does appear to fix the
-                // problem on fast connections more effectively than using an
-                // arbitrary timeout.  It is possible that the browser does
-                // block subsequent script execution in this case for a limited
-                // time.
-                var extra = _scriptNode(null, q.win, q.charset);
-                extra.innerHTML='YAHOO.util.Get._finalize("' + id + '");';
-                q.nodes.push(extra); h.appendChild(extra);
-
-            } else {
-                _finish(id);
-            }
-
-            return;
-        } 
-
-
-        var url = q.url[0];
-
-        // if the url is undefined, this is probably a trailing comma problem in IE
-        if (!url) {
-            q.url.shift(); 
-            return _next(id);
-        }
-
-
-        if (q.timeout) {
-            // Y.log('create timer');
-            q.timer = lang.later(q.timeout, q, _timeout, id);
-        }
-
-        if (q.type === "script") {
-            n = _scriptNode(url, w, q.charset);
-        } else {
-            n = _linkNode(url, w, q.charset);
-        }
-
-        // track this node's load progress
-        _track(q.type, n, id, url, w, q.url.length);
-
-        // add the node to the queue so we can return it to the user supplied callback
-        q.nodes.push(n);
-
-        // add it to the head or insert it before 'insertBefore'
-        if (q.insertBefore) {
-            var s = _get(q.insertBefore, id);
-            if (s) {
-                s.parentNode.insertBefore(n, s);
-            }
-        } else {
-            h.appendChild(n);
-        }
-        
-
-        // FireFox does not support the onload event for link nodes, so there is
-        // no way to make the css requests synchronous. This means that the css 
-        // rules in multiple files could be applied out of order in this browser
-        // if a later request returns before an earlier one.  Safari too.
-        if ((ua.webkit || ua.gecko) && q.type === "css") {
-            _next(id, url);
-        }
-    };
-
-    /**
-     * Removes processed queues and corresponding nodes
-     * @method _autoPurge
-     * @private
-     */
-    var _autoPurge = function() {
-
-        if (purging) {
-            return;
-        }
-
-        purging = true;
-        for (var i in queues) {
-            var q = queues[i];
-            if (q.autopurge && q.finished) {
-                _purge(q.tId);
-                delete queues[i];
-            }
-        }
-
-        purging = false;
-    };
-
-    /**
-     * Removes the nodes for the specified queue
-     * @method _purge
-     * @private
-     */
-    var _purge = function(tId) {
-        var q=queues[tId];
-        if (q) {
-            var n=q.nodes, l=n.length, d=q.win.document, 
-                h=d.getElementsByTagName("head")[0];
-
-            if (q.insertBefore) {
-                var s = _get(q.insertBefore, tId);
-                if (s) {
-                    h = s.parentNode;
-                }
-            }
-
-            for (var i=0; i<l; i=i+1) {
-                h.removeChild(n[i]);
-            }
-
-            q.nodes = [];
-        }
-    };
-
-    /**
-     * Saves the state for the request and begins loading
-     * the requested urls
-     * @method queue
-     * @param type {string} the type of node to insert
-     * @param url {string} the url to load
-     * @param opts the hash of options for this request
-     * @private
-     */
-    var _queue = function(type, url, opts) {
-
-        var id = "q" + (qidx++);
-        opts = opts || {};
-
-        if (qidx % YAHOO.util.Get.PURGE_THRESH === 0) {
-            _autoPurge();
-        }
-
-        queues[id] = lang.merge(opts, {
-            tId: id,
-            type: type,
-            url: url,
-            finished: false,
-            aborted: false,
-            nodes: []
-        });
-
-        var q = queues[id];
-        q.win = q.win || window;
-        q.scope = q.scope || q.win;
-        q.autopurge = ("autopurge" in q) ? q.autopurge : 
-                      (type === "script") ? true : false;
-
-        lang.later(0, q, _next, id);
-
-        return {
-            tId: id
-        };
-    };
-
-    /**
-     * Detects when a node has been loaded.  In the case of
-     * script nodes, this does not guarantee that contained
-     * script is ready to use.
-     * @method _track
-     * @param type {string} the type of node to track
-     * @param n {HTMLElement} the node to track
-     * @param id {string} the id of the request
-     * @param url {string} the url that is being loaded
-     * @param win {Window} the targeted window
-     * @param qlength the number of remaining items in the queue,
-     * including this one
-     * @param trackfn {Function} function to execute when finished
-     * the default is _next
-     * @private
-     */
-    var _track = function(type, n, id, url, win, qlength, trackfn) {
-        var f = trackfn || _next;
-
-        // IE supports the readystatechange event for script and css nodes
-        if (ua.ie) {
-            n.onreadystatechange = function() {
-                var rs = this.readyState;
-                if ("loaded" === rs || "complete" === rs) {
-                    n.onreadystatechange = null;
-                    f(id, url);
-                }
-            };
-
-        // webkit prior to 3.x is problemmatic
-        } else if (ua.webkit) {
-
-            if (type === "script") {
-
-                // Safari 3.x supports the load event for script nodes (DOM2)
-                if (ua.webkit >= 420) {
-
-                    n.addEventListener("load", function() {
-                        f(id, url);
-                    });
-
-                // Nothing can be done with Safari < 3.x except to pause and hope
-                // for the best, particularly after last script is inserted. The
-                // scripts will always execute in the order they arrive, not
-                // necessarily the order in which they were inserted.  To support
-                // script nodes with complete reliability in these browsers, script
-                // nodes either need to invoke a function in the window once they
-                // are loaded or the implementer needs to provide a well-known
-                // property that the utility can poll for.
-                } else {
-                    // Poll for the existence of the named variable, if it
-                    // was supplied.
-                    var q = queues[id];
-                    if (q.varName) {
-                        var freq=YAHOO.util.Get.POLL_FREQ;
-                        q.maxattempts = YAHOO.util.Get.TIMEOUT/freq;
-                        q.attempts = 0;
-                        q._cache = q.varName[0].split(".");
-                        q.timer = lang.later(freq, q, function(o) {
-                            var a=this._cache, l=a.length, w=this.win, i;
-                            for (i=0; i<l; i=i+1) {
-                                w = w[a[i]];
-                                if (!w) {
-                                    // if we have exausted our attempts, give up
-                                    this.attempts++;
-                                    if (this.attempts++ > this.maxattempts) {
-                                        var msg = "Over retry limit, giving up";
-                                        q.timer.cancel();
-                                        _fail(id, msg);
-                                    } else {
-                                    }
-                                    return;
-                                }
-                            }
-                            
-
-                            q.timer.cancel();
-                            f(id, url);
-
-                        }, null, true);
-                    } else {
-                        lang.later(YAHOO.util.Get.POLL_FREQ, null, f, [id, url]);
-                    }
-                }
-            } 
-
-        // FireFox and Opera support onload (but not DOM2 in FF) handlers for
-        // script nodes.  Opera, but not FF, supports the onload event for link
-        // nodes.
-        } else { 
-            n.onload = function() {
-                f(id, url);
-            };
-        }
-    };
-
-    return {
-
-        /**
-         * The default poll freqency in ms, when needed
-         * @property POLL_FREQ
-         * @static
-         * @type int
-         * @default 10
-         */
-        POLL_FREQ: 10,
-
-        /**
-         * The number of request required before an automatic purge.
-         * property PURGE_THRESH
-         * @static
-         * @type int
-         * @default 20
-         */
-        PURGE_THRESH: 20,
-
-        /**
-         * The length time to poll for varName when loading a script in
-         * Safari 2.x before the transaction fails.
-         * property TIMEOUT
-         * @static
-         * @type int
-         * @default 2000
-         */
-        TIMEOUT: 2000,
-        
-        /**
-         * Called by the the helper for detecting script load in Safari
-         * @method _finalize
-         * @param id {string} the transaction id
-         * @private
-         */
-        _finalize: function(id) {
-            lang.later(0, null, _finish, id);
-        },
-
-        /**
-         * Abort a transaction
-         * @method abort
-         * @param {string|object} either the tId or the object returned from
-         * script() or css()
-         */
-        abort: function(o) {
-            var id = (lang.isString(o)) ? o : o.tId;
-            var q = queues[id];
-            if (q) {
-                q.aborted = true;
-            }
-        }, 
-
-        /**
-         * Fetches and inserts one or more script nodes into the head
-         * of the current document or the document in a specified window.
-         *
-         * @method script
-         * @static
-         * @param url {string|string[]} the url or urls to the script(s)
-         * @param opts {object} Options: 
-         * <dl>
-         * <dt>onSuccess</dt>
-         * <dd>
-         * callback to execute when the script(s) are finished loading
-         * The callback receives an object back with the following
-         * data:
-         * <dl>
-         * <dt>win</dt>
-         * <dd>the window the script(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove the nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>onFailure</dt>
-         * <dd>
-         * callback to execute when the script load operation fails
-         * The callback receives an object back with the following
-         * data:
-         * <dl>
-         * <dt>win</dt>
-         * <dd>the window the script(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted successfully</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove any nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>onTimeout</dt>
-         * <dd>
-         * callback to execute when a timeout occurs.
-         * The callback receives an object back with the following
-         * data:
-         * <dl>
-         * <dt>win</dt>
-         * <dd>the window the script(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove the nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>scope</dt>
-         * <dd>the execution context for the callbacks</dd>
-         * <dt>win</dt>
-         * <dd>a window other than the one the utility occupies</dd>
-         * <dt>autopurge</dt>
-         * <dd>
-         * setting to true will let the utilities cleanup routine purge 
-         * the script once loaded
-         * </dd>
-         * <dt>data</dt>
-         * <dd>
-         * data that is supplied to the callback when the script(s) are
-         * loaded.
-         * </dd>
-         * <dt>varName</dt>
-         * <dd>
-         * variable that should be available when a script is finished
-         * loading.  Used to help Safari 2.x and below with script load 
-         * detection.  The type of this property should match what was
-         * passed into the url parameter: if loading a single url, a
-         * string can be supplied.  If loading multiple scripts, you
-         * must supply an array that contains the variable name for
-         * each script.
-         * </dd>
-         * <dt>insertBefore</dt>
-         * <dd>node or node id that will become the new node's nextSibling</dd>
-         * </dl>
-         * <dt>charset</dt>
-         * <dd>Node charset, default utf-8</dd>
-         * <dt>timeout</dt>
-         * <dd>Number of milliseconds to wait before aborting and firing the timeout event</dd>
-         * <pre>
-         * // assumes yahoo, dom, and event are already on the page
-         * &nbsp;&nbsp;YAHOO.util.Get.script(
-         * &nbsp;&nbsp;["http://yui.yahooapis.com/2.3.1/build/dragdrop/dragdrop-min.js",
-         * &nbsp;&nbsp;&nbsp;"http://yui.yahooapis.com/2.3.1/build/animation/animation-min.js"], &#123;
-         * &nbsp;&nbsp;&nbsp;&nbsp;onSuccess: function(o) &#123;
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;new YAHOO.util.DDProxy("dd1"); // also new o.reference("dd1"); would work
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this.log("won't cause error because YAHOO is the scope");
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this.log(o.nodes.length === 2) // true
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// o.purge(); // optionally remove the script nodes immediately
-         * &nbsp;&nbsp;&nbsp;&nbsp;&#125;,
-         * &nbsp;&nbsp;&nbsp;&nbsp;onFailure: function(o) &#123;
-         * &nbsp;&nbsp;&nbsp;&nbsp;&#125;,
-         * &nbsp;&nbsp;&nbsp;&nbsp;data: "foo",
-         * &nbsp;&nbsp;&nbsp;&nbsp;timeout: 10000, // 10 second timeout
-         * &nbsp;&nbsp;&nbsp;&nbsp;scope: YAHOO,
-         * &nbsp;&nbsp;&nbsp;&nbsp;// win: otherframe // target another window/frame
-         * &nbsp;&nbsp;&nbsp;&nbsp;autopurge: true // allow the utility to choose when to remove the nodes
-         * &nbsp;&nbsp;&#125;);
-         * </pre>
-         * @return {tId: string} an object containing info about the transaction
-         */
-        script: function(url, opts) { return _queue("script", url, opts); },
-
-        /**
-         * Fetches and inserts one or more css link nodes into the 
-         * head of the current document or the document in a specified
-         * window.
-         * @method css
-         * @static
-         * @param url {string} the url or urls to the css file(s)
-         * @param opts Options: 
-         * <dl>
-         * <dt>onSuccess</dt>
-         * <dd>
-         * callback to execute when the css file(s) are finished loading
-         * The callback receives an object back with the following
-         * data:
-         * <dl>win</dl>
-         * <dd>the window the link nodes(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove the nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>scope</dt>
-         * <dd>the execution context for the callbacks</dd>
-         * <dt>win</dt>
-         * <dd>a window other than the one the utility occupies</dd>
-         * <dt>data</dt>
-         * <dd>
-         * data that is supplied to the callbacks when the nodes(s) are
-         * loaded.
-         * </dd>
-         * <dt>insertBefore</dt>
-         * <dd>node or node id that will become the new node's nextSibling</dd>
-         * <dt>charset</dt>
-         * <dd>Node charset, default utf-8</dd>
-         * </dl>
-         * <pre>
-         *      YAHOO.util.Get.css("http://yui.yahooapis.com/2.3.1/build/menu/assets/skins/sam/menu.css");
-         * </pre>
-         * <pre>
-         *      YAHOO.util.Get.css(["http://yui.yahooapis.com/2.3.1/build/menu/assets/skins/sam/menu.css",
-         * </pre>
-         * @return {tId: string} an object containing info about the transaction
-         */
-        css: function(url, opts) {
-            return _queue("css", url, opts); 
-        }
-    };
-}();
-
-YAHOO.register("get", YAHOO.util.Get, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/grids/README b/eclipse.org-common/yui/2.6.0/build/grids/README
deleted file mode 100644
index 71c8d33..0000000
--- a/eclipse.org-common/yui/2.6.0/build/grids/README
+++ /dev/null
@@ -1,86 +0,0 @@
-YUI Library - Grids - Release Notes
-
-Version 2.6.0
-
-  * Removed extraneous "s" typo per Bugzilla #1826435 and SF #1921958
-  * Added .yui-g .yui-u .yui-g {width:100%;} so nested grids work 
-    more consistently; BZ:2156128, SF:2060556
-  * Added provision for better g>g>u gutters per SF:1927599
-
-Version 2.5.1
-
-  * Added more specific selectors to allow nesting on "yui-gd" grids 
-    within "yui-ge" for Bugzilla #1779582, Sourceforge #1897741 
-  * Modified Page Width and Template Preset values for IE
-  * Reordered several rules; formatted file and added more comments
-  * Modified width and margin values for "thirds" nesting grid
-  * Combined and optimized several selectors and rules
-
-Version 2.5.0
-
-  * Tweaked em widths for "template presets" .yui-t1-6
-  * Pruned two redundant lines
-
-Version 2.4.0
-
-  * No changes.
-
-Version 2.3.1
-
-  * Fixed bug in 2.3.0 that transposed the columns in deeply-
-    nested grids. Sourceforge #1765553, Bugzilla #1419885    
-  * Improved precision and consistency of margins in nested grids.
-
-Version 2.3.0
-
-  * Added more specific selectors to allow deeper nesting of both 
-    grids inside special grids, special grids within special 
-	grids, and special grids within grids.
-  * Added #doc4 which provides a 974px page width
-
-Version 2.2.0 - 2.2.2
-
-  * No changes.
-
-Version 0.12.1 - 0.12.2
-
-  * No changes.
-
-Version 0.12.0
-
-  * Removed redundant "text-align:left" from nodes below #doc.
-
-  * Removed small-font treatment on #ft.
-
-  * Removed margin-bottom from #hd,#bd.
-
-  * Added two new #doc definitions (#doc2 and #doc3) that provide 
-    950px centered and 100% page width presets to supplement the 
-    original 750px centered page width.
-
-  * Made ".first" selectors more precise by binding to divs, to 
-    make it less likely that our .first definitions will impact 
-    nested content elements wishing to use this nomenclature.
-
-  * Fixed "nested yui-gc" bug.
-
-  * Fixed build-process whitespace bug with .yui-t2 and .yui-t5.
-
-  * Migrated .yui-t's technique to "negative margins" technique 
-    from "floated ems".
-
-  * The "negative margins" technique caused z-index issues, so 
-    position:relative was added to the secondary yui-b to enable 
-	correct z-index.
-
-  * Make optimization benefits from inheritence wins via code 
-    reorganizations.
-
-Version 0.11.0
-
-  * Removed line #43 because it set an already-set value.
-    Was: ".yui-t7  #main .yui-b{min-width:750px;}"
-  
-Version 0.10.0
-
-  * Initial release.
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/grids/grids-min.css b/eclipse.org-common/yui/2.6.0/build/grids/grids-min.css
deleted file mode 100644
index 1d144e3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/grids/grids-min.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-body{text-align:center;}#ft{clear:both;}#doc,#doc2,#doc3,#doc4,.yui-t1,.yui-t2,.yui-t3,.yui-t4,.yui-t5,.yui-t6,.yui-t7{margin:auto;text-align:left;width:57.69em;*width:56.25em;min-width:750px;}#doc2{width:73.076em;*width:71.25em;}#doc3{margin:auto 10px;width:auto;}#doc4{width:74.923em;*width:73.05em;}.yui-b{position:relative;}.yui-b{_position:static;}#yui-main .yui-b{position:static;}#yui-main,.yui-g .yui-u .yui-g{width:100%;}{width:100%;}.yui-t1 #yui-main,.yui-t2 #yui-main,.yui-t3 #yui-main{float:right;margin-left:-25em;}.yui-t4 #yui-main,.yui-t5 #yui-main,.yui-t6 #yui-main{float:left;margin-right:-25em;}.yui-t1 .yui-b{float:left;width:12.30769em;*width:12.00em;}.yui-t1 #yui-main .yui-b{margin-left:13.30769em;*margin-left:13.05em;}.yui-t2 .yui-b{float:left;width:13.8461em;*width:13.50em;}.yui-t2 #yui-main .yui-b{margin-left:14.8461em;*margin-left:14.55em;}.yui-t3 .yui-b{float:left;width:23.0769em;*width:22.50em;}.yui-t3 #yui-main .yui-b{margin-left:24.0769em;*margin-left:23.62em;}.yui-t4 .yui-b{float:right;width:13.8456em;*width:13.50em;}.yui-t4 #yui-main .yui-b{margin-right:14.8456em;*margin-right:14.55em;}.yui-t5 .yui-b{float:right;width:18.4615em;*width:18.00em;}.yui-t5 #yui-main .yui-b{margin-right:19.4615em;*margin-right:19.125em;}.yui-t6 .yui-b{float:right;width:23.0769em;*width:22.50em;}.yui-t6 #yui-main .yui-b{margin-right:24.0769em;*margin-right:23.62em;}.yui-t7 #yui-main .yui-b{display:block;margin:0 0 1em 0;}#yui-main .yui-b{float:none;width:auto;}.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{float:left;}.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf,.yui-gc .yui-u,.yui-gd .yui-g,.yui-g .yui-gc .yui-u,.yui-ge .yui-u,.yui-ge .yui-g,.yui-gf .yui-g,.yui-gf .yui-u{float:right;}.yui-g div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first,.yui-ge div.first,.yui-gf div.first,.yui-g .yui-gc div.first,.yui-g .yui-ge div.first,.yui-gc div.first div.first{float:left;}.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf{width:49.1%;}.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{width:32%;margin-left:1.99%;}.yui-gb .yui-u{*margin-left:1.9%;*width:31.9%;}.yui-gc div.first,.yui-gd .yui-u{width:66%;}.yui-gd div.first{width:32%;}.yui-ge div.first,.yui-gf .yui-u{width:74.2%;}.yui-ge .yui-u,.yui-gf div.first{width:24%;}.yui-g .yui-gb div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first{margin-left:0;}.yui-g .yui-g .yui-u,.yui-gb .yui-g .yui-u,.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u,.yui-ge .yui-g .yui-u,.yui-gf .yui-g .yui-u{width:49%;*width:48.1%;*margin-left:0;}.yui-g .yui-g .yui-u{width:48.1%;}.yui-g .yui-gb div.first,.yui-gb .yui-gb div.first{*margin-right:0;*width:32%;_width:31.7%;}.yui-g .yui-gc div.first,.yui-gd .yui-g{width:66%;}.yui-gb .yui-g div.first{*margin-right:4%;_margin-right:1.3%;}.yui-gb .yui-gc div.first,.yui-gb .yui-gd div.first{*margin-right:0;}.yui-gb .yui-gb .yui-u,.yui-gb .yui-gc .yui-u{*margin-left:1.8%;_margin-left:4%;}.yui-g .yui-gb .yui-u{_margin-left:1.0%;}.yui-gb .yui-gd .yui-u{*width:66%;_width:61.2%;}.yui-gb .yui-gd div.first{*width:31%;_width:29.5%;}.yui-g .yui-gc .yui-u,.yui-gb .yui-gc .yui-u{width:32%;_float:right;margin-right:0;_margin-left:0;}.yui-gb .yui-gc div.first{width:66%;*float:left;*margin-left:0;}.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf .yui-u{margin:0;}.yui-gb .yui-gb .yui-u{_margin-left:.7%;}.yui-gb .yui-g div.first,.yui-gb .yui-gb div.first{*margin-left:0;}.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u{*width:48.1%;*margin-left:0;} .yui-gb .yui-gd div.first{width:32%;}.yui-g .yui-gd div.first{_width:29.9%;}.yui-ge .yui-g{width:24%;}.yui-gf .yui-g{width:74.2%;}.yui-gb .yui-ge div.yui-u,.yui-gb .yui-gf div.yui-u{float:right;}.yui-gb .yui-ge div.first,.yui-gb .yui-gf div.first{float:left;}.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf div.first{*width:24%;_width:20%;}.yui-gb .yui-ge div.first,.yui-gb .yui-gf .yui-u{*width:73.5%;_width:65.5%;}.yui-ge div.first .yui-gd .yui-u{width:65%;}.yui-ge div.first .yui-gd div.first{width:32%;}#bd:after,.yui-g:after,.yui-gb:after,.yui-gc:after,.yui-gd:after,.yui-ge:after,.yui-gf:after{content:".";display:block;height:0;clear:both;visibility:hidden;}#bd,.yui-g,.yui-gb,.yui-gc,.yui-gd,.yui-ge,.yui-gf{zoom:1;}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/grids/grids.css b/eclipse.org-common/yui/2.6.0/build/grids/grids.css
deleted file mode 100644
index 7c5a102..0000000
--- a/eclipse.org-common/yui/2.6.0/build/grids/grids.css
+++ /dev/null
@@ -1,285 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/*
-	Note: Throughout this file, the *property (star-property) filter is used 
-    to give a value to IE that other browsers do not see. _property is only seen 
-    by IE7, so the combo of *prop and _prop can target between IE6 and IE7.
-*/
-
-/*
-	Section: General Rules
-*/
-
-	body {
-		text-align:center;
-	}
-	
-	#ft {
-		clear:both;
-	}
-
-/*
-	Section: Page Width Rules (#doc, #doc2, #doc3, #doc4)
-*/
-
-	/* 
-		Subsection: General 
-	*/ 	
-
-	#doc,#doc2,#doc3,#doc4,.yui-t1,.yui-t2,.yui-t3,.yui-t4,.yui-t5,.yui-t6,.yui-t7 {
-		margin:auto;
-		text-align:left;
-		width:57.69em;*width:56.25em;
-		min-width:750px;
-	}
-	/* 
-		Subsection: 950 Centered (doc2) 
-	*/
-	#doc2 {
-		width:73.076em;*width:71.25em;
-	}
-
-	/* 
-		Subsection: 100% (doc3) 
-	*/
-	#doc3 {
-		/* Left and Right margins are not a structural part of Grids. Without them Grids
-		   works fine, but content bleeds to the very edge of the document, which often
-		   impairs readability and usability. They are 
-		   provided because they prevent the content from "bleeding" into the browser's chrome.*/
-		margin:auto 10px; 
-		width:auto;
-	}
-	
-	/* 
-		Subsection: 974 Centered (doc4) 
-	*/
-	#doc4 {
-		width:74.923em;*width:73.05em;
-	}	
-	
-/*
-	Section: Preset Template Rules (.yui-t[1-6])
-*/
-	
-	/* 
-		Subsection: General
-	*/
-
-	/* to preserve source-order independence for Gecko */
-	.yui-b{position:relative;}
-	.yui-b{_position:static;}
-	#yui-main .yui-b{position:static;}
-
-	#yui-main,
-	.yui-g .yui-u .yui-g {width:100%;}
-		
-	.yui-t1 #yui-main,
-	.yui-t2 #yui-main,
-	.yui-t3 #yui-main{float:right;margin-left:-25em;/* IE: preserve layout at narrow widths */}
-
-	.yui-t4 #yui-main,
-	.yui-t5 #yui-main,
-	.yui-t6 #yui-main{float:left;margin-right:-25em;/* IE: preserve layout at narrow widths */}
-
-	/* 
-		Subsection: For Specific Template Presets
-	*/
-
-	.yui-t1 .yui-b {float:left;width:12.30769em;*width:12.00em;}
-	.yui-t1 #yui-main .yui-b{margin-left:13.30769em;*margin-left:13.05em;}
-
-	.yui-t2 .yui-b {float:left;width:13.8461em;*width:13.50em;}
-	.yui-t2 #yui-main .yui-b {margin-left:14.8461em;*margin-left:14.55em;}
-
-	.yui-t3 .yui-b {float:left;width:23.0769em;*width:22.50em;}
-	.yui-t3 #yui-main .yui-b {margin-left:24.0769em;*margin-left:23.62em;}
-
-	.yui-t4 .yui-b {float:right;width:13.8456em;*width:13.50em;}
-	.yui-t4 #yui-main .yui-b {margin-right:14.8456em;*margin-right:14.55em;}
-
-	.yui-t5 .yui-b {float:right;width:18.4615em;*width:18.00em;}
-	.yui-t5 #yui-main .yui-b {margin-right:19.4615em;*margin-right:19.125em;}
-
-	.yui-t6 .yui-b {float:right;width:23.0769em;*width:22.50em;}
-	.yui-t6 #yui-main .yui-b {margin-right:24.0769em;*margin-right:23.62em;}
-
-	.yui-t7 #yui-main .yui-b {display:block;margin:0 0 1em 0;}
-	
-	#yui-main .yui-b {float:none;width:auto;}
-
-/*
-	Section: Grids and Nesting Grids
-*/
-
-	/*
-		Subsection: Children generally take half the available space
-	*/
-
-	.yui-gb .yui-u,
-	.yui-g .yui-gb .yui-u,
-	.yui-gb .yui-g,
-	.yui-gb .yui-gb,
-	.yui-gb .yui-gc,
-	.yui-gb .yui-gd,
-	.yui-gb .yui-ge,
-	.yui-gb .yui-gf,
-	.yui-gc .yui-u, 
-	.yui-gc .yui-g,
-	.yui-gd .yui-u {float:left;}
-
-	/*Float units (and sub grids) to the right */
-	.yui-g .yui-u,
-	.yui-g .yui-g,
-	.yui-g .yui-gb, 
-	.yui-g .yui-gc, 
-	.yui-g .yui-gd, 
-	.yui-g .yui-ge, 
-	.yui-g .yui-gf, 
-	.yui-gc .yui-u, 
-	.yui-gd .yui-g,
-	.yui-g .yui-gc .yui-u,
-	.yui-ge .yui-u, 
-	.yui-ge .yui-g, 
-	.yui-gf .yui-g,
-	.yui-gf .yui-u{float:right;}
-
-	/*Float units (and sub grids) to the left */
-	.yui-g div.first, 
-	.yui-gb div.first,
-	.yui-gc div.first,
-	.yui-gd div.first, 
-	.yui-ge div.first, 
-	.yui-gf div.first,
-	.yui-g .yui-gc div.first,
-	.yui-g .yui-ge div.first,
-	.yui-gc div.first div.first {float:left;}
-
-	.yui-g .yui-u,
-	.yui-g .yui-g,
-	.yui-g .yui-gb,
-	.yui-g .yui-gc,
-	.yui-g .yui-gd,
-	.yui-g .yui-ge,
-	.yui-g .yui-gf {width:49.1%;}
-
-	.yui-gb .yui-u,
-	.yui-g .yui-gb .yui-u,
-	.yui-gb .yui-g,
-	.yui-gb .yui-gb,
-	.yui-gb .yui-gc,
-	.yui-gb .yui-gd,
-	.yui-gb .yui-ge,
-	.yui-gb .yui-gf,
-	.yui-gc .yui-u, 
-	.yui-gc .yui-g,
-	.yui-gd .yui-u {width:32%;margin-left:1.99%;}
-
-		/* Give IE some extra breathing room for 1/3-based rounding issues */
-		.yui-gb .yui-u {*margin-left:1.9%;*width:31.9%;}
-
-	.yui-gc div.first, 
-	.yui-gd .yui-u {width:66%;}
-	.yui-gd div.first {width:32%;}
-
-	.yui-ge div.first, 
-	.yui-gf .yui-u{width:74.2%;}
-
-	.yui-ge .yui-u,
-	.yui-gf div.first {width:24%;}
-
-	.yui-g .yui-gb div.first,
-	.yui-gb div.first, 
-	.yui-gc div.first, 
-	.yui-gd div.first {margin-left:0;}
-	   
-	/*
-		Section: Deep Nesting 
-	*/
-	.yui-g .yui-g .yui-u,
-	.yui-gb .yui-g .yui-u,
-	.yui-gc .yui-g .yui-u,
-	.yui-gd .yui-g .yui-u,
-	.yui-ge .yui-g .yui-u,
-	.yui-gf .yui-g .yui-u {width:49%;*width:48.1%;*margin-left:0;}
-	
-	.yui-g .yui-g .yui-u {width:48.1%;}/*SF 1927599 from 1.14 to 2.6.0*/
-	.yui-g .yui-gb div.first,
-	.yui-gb .yui-gb div.first {*margin-right:0;*width:32%;_width:31.7%;}
-
-	.yui-g .yui-gc div.first, 
-	.yui-gd .yui-g  {width:66%;}
-
-	.yui-gb .yui-g div.first {*margin-right:4%;_margin-right:1.3%;}
-
-	.yui-gb .yui-gc div.first, 
-	.yui-gb .yui-gd div.first  {*margin-right:0;}
-
-	.yui-gb .yui-gb .yui-u,
-	.yui-gb .yui-gc .yui-u {*margin-left:1.8%;_margin-left:4%;}
-
-	.yui-g .yui-gb .yui-u {_margin-left:1.0%;}
-
-	.yui-gb .yui-gd .yui-u {*width:66%;_width:61.2%;} 
-	.yui-gb .yui-gd div.first {*width:31%;_width:29.5%;}
-
-	.yui-g .yui-gc .yui-u, 
-	.yui-gb .yui-gc .yui-u {width:32%;_float:right;margin-right:0;_margin-left:0;}
-	.yui-gb .yui-gc div.first {width:66%;*float:left;*margin-left:0;}
-
-	.yui-gb .yui-ge .yui-u, 
-	.yui-gb .yui-gf .yui-u {margin:0;}
-
-	.yui-gb .yui-gb .yui-u {_margin-left:.7%;}
-
-	.yui-gb .yui-g div.first, 
-	.yui-gb .yui-gb div.first {*margin-left:0;}
-
-	.yui-gc .yui-g .yui-u,
-	.yui-gd .yui-g .yui-u {*width:48.1%;*margin-left:0;}
-
-	.yui-gb .yui-gd div.first {width:32%;}
-	.yui-g .yui-gd div.first {_width:29.9%;}
-
-	.yui-ge .yui-g {width:24%;}
-	.yui-gf .yui-g {width:74.2%;}
-
-	.yui-gb .yui-ge div.yui-u,
-	.yui-gb .yui-gf div.yui-u {float:right;}
-	.yui-gb .yui-ge div.first,
-	.yui-gb .yui-gf div.first  {float:left;}
-
-	/* Width Accommodation for Nested Contexts */
-	.yui-gb .yui-ge .yui-u,
-	.yui-gb .yui-gf div.first {*width:24%;_width:20%;}
-
-	/* Width Accommodation for Nested Contexts */
-	.yui-gb .yui-ge div.first, 
-	.yui-gb .yui-gf .yui-u{*width:73.5%;_width:65.5%;}
-
-	/* Patch for GD within GE */
-	.yui-ge div.first .yui-gd .yui-u {width:65%;}
-	.yui-ge div.first .yui-gd div.first {width:32%;}
-
-/*
-	Section: Clearing 
-*/
-
-#bd:after,
-.yui-g:after, 
-.yui-gb:after, 
-.yui-gc:after, 
-.yui-gd:after, 
-.yui-ge:after, 
-.yui-gf:after{content:".";display:block;height:0;clear:both;visibility:hidden;}
-#bd,
-.yui-g, 
-.yui-gb, 
-.yui-gc, 
-.yui-gd, 
-.yui-ge, 
-.yui-gf{zoom:1;}
diff --git a/eclipse.org-common/yui/2.6.0/build/history/README b/eclipse.org-common/yui/2.6.0/build/history/README
deleted file mode 100644
index 3afc4c5..0000000
--- a/eclipse.org-common/yui/2.6.0/build/history/README
+++ /dev/null
@@ -1,62 +0,0 @@
-YUI Library - History - Release Notes
-
-2.6.0
-  * No changes.
-
-2.5.2
-  * No changes.
-
-2.5.1
-  * While BHM still does not work with current versions of Opera, we
-    are no longer throwing an exception in Opera -- which, if uncaught,
-    causes execution to stop.  Instead, we're messaging the unsupported
-    browser issue via YAHOO.log.  This will allow other aspects of a BHM-
-    managed script to continue executing in Opera.
-  * Fixed issue with case-sensitive tagName comparisons
-    (SourceForge bug 1868730).
-
-2.5.0
-  * No changes.
-
-2.4.0
-  * Added onReady method (similar to the Event utility's DOMReady method)
-  * Fixed SourceForge bugs 1794347, 1490803, 1490818 and 1420015.
-  * Starting with YUI 2.4.0, the necessary markup (see documentation) must be
-    statically created in the HTML document, and passed to the Browser History
-    Manager initialize method. This has two major benefits over older versions:
-      - The Browser History Manager may be initialized much later than before,
-        allowing for the corresponding <script> tag to be embedded at the
-        bottom of the page (which is good for performance)
-      - IE had a tendency to "forget" part or all of the history when returning
-        to a page.
-
-2.3.0
-  * The Browser History Manager now works on IE if used inside an IFrame
-    (See SourceForge Bug #1729569)
-  * Added multiNavigate method, which allows changing the state of several
-    modules at once, without introducing intermediate history entries
-    (See SourceForge Bug #1713236)
-  * Do not raise an exception when re-registering a module
-    (See SourceForge Bug #1708840)
-
-2.2.1
-  * Use YAHOO.lang.hasOwnProperty when iterating over the _modules associative
-    array. This way, the browser history manager will play nice with the
-    libraries that add methods to the prototype of the Array object.
-  * Fixed bug related to escaping / unescaping some values.
-  * Added parameters to the register method to look like the addListener method
-    of the Event utility (you can now pass an object that becomes the scope of
-    the onStateChange handler, or is simply passed in to that handler)
-  * Upgraded code presentation to work with Crockford's latest recommendations
-    (which the latest version of JSLint online implements)
-  * Integrated David Bloom's findings to not have to use an external asset
-    (blank.html) on IE (when not going through HTTPS)
-
-2.2.0
-  * This is the initial release of the browser history manager.
-    This component is considered experimental.  Experimental components
-    are released for community experimentation and feedback; they
-    are not considered appropriate for implementation in mission-
-    critical applications. Please see the YUI FAQ at
-    http://developer.yahoo.com/yui/articles/faq/#experimental
-    for more information about the "experimental" designation.
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/history/assets/blank.html b/eclipse.org-common/yui/2.6.0/build/history/assets/blank.html
deleted file mode 100644
index c63060f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/history/assets/blank.html
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/history/history-debug.js b/eclipse.org-common/yui/2.6.0/build/history/history-debug.js
deleted file mode 100644
index e9f170d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/history/history-debug.js
+++ /dev/null
@@ -1,789 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The Browser History Manager provides the ability to use the back/forward
- * navigation buttons in a DHTML application. It also allows a DHTML
- * application to be bookmarked in a specific state.
- *
- * This library requires the following static markup:
- *
- * &lt;iframe id="yui-history-iframe" src="path-to-real-asset-in-same-domain"&gt;&lt;/iframe&gt;
- * &lt;input id="yui-history-field" type="hidden"&gt;
- *
- * @module history
- * @requires yahoo,event
- * @namespace YAHOO.util
- * @title Browser History Manager
- */
-
-/**
- * The History class provides the ability to use the back/forward navigation
- * buttons in a DHTML application. It also allows a DHTML application to
- * be bookmarked in a specific state.
- *
- * @class History
- * @constructor
- */
-YAHOO.util.History = (function () {
-
-    /**
-     * Our hidden IFrame used to store the browsing history.
-     *
-     * @property _histFrame
-     * @type HTMLIFrameElement
-     * @default null
-     * @private
-     */
-    var _histFrame = null;
-
-    /**
-     * INPUT field (with type="hidden" or type="text") or TEXTAREA.
-     * This field keeps the value of the initial state, current state
-     * the list of all states across pages within a single browser session.
-     *
-     * @property _stateField
-     * @type HTMLInputElement|HTMLTextAreaElement
-     * @default null
-     * @private
-     */
-    var _stateField = null;
-
-    /**
-     * Flag used to tell whether YAHOO.util.History.initialize has been called.
-     *
-     * @property _initialized
-     * @type boolean
-     * @default false
-     * @private
-     */
-    var _initialized = false;
-
-    /**
-     * List of registered modules.
-     *
-     * @property _modules
-     * @type array
-     * @default []
-     * @private
-     */
-    var _modules = [];
-
-    /**
-     * List of fully qualified states. This is used only by Safari.
-     *
-     * @property _fqstates
-     * @type array
-     * @default []
-     * @private
-     */
-    var _fqstates = [];
-
-    /**
-     * location.hash is a bit buggy on Opera. I have seen instances where
-     * navigating the history using the back/forward buttons, and hence
-     * changing the URL, would not change location.hash. That's ok, the
-     * implementation of an equivalent is trivial.
-     *
-     * @method _getHash
-     * @return {string} The hash portion of the document's location
-     * @private
-     */
-    function _getHash() {
-        var i, href;
-        href = top.location.href;
-        i = href.indexOf("#");
-        return i >= 0 ? href.substr(i + 1) : null;
-    }
-
-    /**
-     * Stores all the registered modules' initial state and current state.
-     * On Safari, we also store all the fully qualified states visited by
-     * the application within a single browser session. The storage takes
-     * place in the form field specified during initialization.
-     *
-     * @method _storeStates
-     * @private
-     */
-    function _storeStates() {
-
-        var moduleName, moduleObj, initialStates = [], currentStates = [];
-
-        for (moduleName in _modules) {
-            if (YAHOO.lang.hasOwnProperty(_modules, moduleName)) {
-                moduleObj = _modules[moduleName];
-                initialStates.push(moduleName + "=" + moduleObj.initialState);
-                currentStates.push(moduleName + "=" + moduleObj.currentState);
-            }
-        }
-
-        _stateField.value = initialStates.join("&") + "|" + currentStates.join("&");
-
-        if (YAHOO.env.ua.webkit) {
-            _stateField.value += "|" + _fqstates.join(",");
-        }
-    }
-
-    /**
-     * Sets the new currentState attribute of all modules depending on the new
-     * fully qualified state. Also notifies the modules which current state has
-     * changed.
-     *
-     * @method _handleFQStateChange
-     * @param {string} fqstate Fully qualified state
-     * @private
-     */
-    function _handleFQStateChange(fqstate) {
-
-        var i, len, moduleName, moduleObj, modules, states, tokens, currentState;
-
-        if (!fqstate) {
-            // Notifies all modules
-            for (moduleName in _modules) {
-                if (YAHOO.lang.hasOwnProperty(_modules, moduleName)) {
-                    moduleObj = _modules[moduleName];
-                    moduleObj.currentState = moduleObj.initialState;
-                    moduleObj.onStateChange(unescape(moduleObj.currentState));
-                }
-            }
-            return;
-        }
-
-        modules = [];
-        states = fqstate.split("&");
-        for (i = 0, len = states.length; i < len; i++) {
-            tokens = states[i].split("=");
-            if (tokens.length === 2) {
-                moduleName = tokens[0];
-                currentState = tokens[1];
-                modules[moduleName] = currentState;
-            }
-        }
-
-        for (moduleName in _modules) {
-            if (YAHOO.lang.hasOwnProperty(_modules, moduleName)) {
-                moduleObj = _modules[moduleName];
-                currentState = modules[moduleName];
-                if (!currentState || moduleObj.currentState !== currentState) {
-                    moduleObj.currentState = currentState || moduleObj.initialState;
-                    moduleObj.onStateChange(unescape(moduleObj.currentState));
-                }
-            }
-        }
-    }
-
-    /**
-     * Update the IFrame with our new state.
-     *
-     * @method _updateIFrame
-     * @private
-     * @return {boolean} true if successful. false otherwise.
-     */
-    function _updateIFrame (fqstate) {
-
-        var html, doc;
-
-        html = '<html><body><div id="state">' + fqstate + '</div></body></html>';
-
-        try {
-            doc = _histFrame.contentWindow.document;
-            doc.open();
-            doc.write(html);
-            doc.close();
-            return true;
-        } catch (e) {
-            return false;
-        }
-    }
-
-    /**
-     * Periodically checks whether our internal IFrame is ready to be used.
-     *
-     * @method _checkIframeLoaded
-     * @private
-     */
-    function _checkIframeLoaded() {
-
-        var doc, elem, fqstate, hash;
-
-        if (!_histFrame.contentWindow || !_histFrame.contentWindow.document) {
-            // Check again in 10 msec...
-            setTimeout(_checkIframeLoaded, 10);
-            return;
-        }
-
-        // Start the thread that will have the responsibility to
-        // periodically check whether a navigate operation has been
-        // requested on the main window. This will happen when
-        // YAHOO.util.History.navigate has been called or after
-        // the user has hit the back/forward button.
-
-        doc = _histFrame.contentWindow.document;
-        elem = doc.getElementById("state");
-        // We must use innerText, and not innerHTML because our string contains
-        // the "&" character (which would end up being escaped as "&amp;") and
-        // the string comparison would fail...
-        fqstate = elem ? elem.innerText : null;
-
-        hash = _getHash();
-
-        setInterval(function () {
-
-            var newfqstate, states, moduleName, moduleObj, newHash, historyLength;
-
-            doc = _histFrame.contentWindow.document;
-            elem = doc.getElementById("state");
-            // See my comment above about using innerText instead of innerHTML...
-            newfqstate = elem ? elem.innerText : null;
-
-            newHash = _getHash();
-
-            if (newfqstate !== fqstate) {
-
-                fqstate = newfqstate;
-                _handleFQStateChange(fqstate);
-
-                if (!fqstate) {
-                    states = [];
-                    for (moduleName in _modules) {
-                        if (YAHOO.lang.hasOwnProperty(_modules, moduleName)) {
-                            moduleObj = _modules[moduleName];
-                            states.push(moduleName + "=" + moduleObj.initialState);
-                        }
-                    }
-                    newHash = states.join("&");
-                } else {
-                    newHash = fqstate;
-                }
-
-                // Allow the state to be bookmarked by setting the top window's
-                // URL fragment identifier. Note that here, we are on IE, and
-                // IE does not touch the browser history when setting the hash
-                // (unlike all the other browsers). I used to write:
-                //     top.location.replace( "#" + hash );
-                // but this had a side effect when the page was not the top frame.
-                top.location.hash = newHash;
-                hash = newHash;
-
-                _storeStates();
-
-            } else if (newHash !== hash) {
-
-                // The hash has changed. The user might have clicked on a link,
-                // or modified the URL directly, or opened the same application
-                // bookmarked in a specific state using a bookmark. However, we
-                // know the hash change was not caused by a hit on the back or
-                // forward buttons, or by a call to navigate() (because it would
-                // have been handled above) We must handle these cases, which is
-                // why we also need to keep track of hash changes on IE!
-
-                // Note that IE6 has some major issues with this kind of user
-                // interaction (the history stack gets completely messed up)
-                // but it seems to work fine on IE7.
-
-                hash = newHash;
-
-                // Now, store a new history entry. The following will cause the
-                // code above to execute, doing all the dirty work for us...
-                _updateIFrame(newHash);
-            }
-
-        }, 50);
-
-        _initialized = true;
-        YAHOO.util.History.onLoadEvent.fire();
-    }
-
-    /**
-     * Finish up the initialization of the Browser History Manager.
-     *
-     * @method _initialize
-     * @private
-     */
-    function _initialize() {
-
-        var i, len, parts, tokens, moduleName, moduleObj, initialStates, initialState, currentStates, currentState, counter, hash;
-
-        // Decode the content of our storage field...
-        parts = _stateField.value.split("|");
-
-        if (parts.length > 1) {
-
-            initialStates = parts[0].split("&");
-            for (i = 0, len = initialStates.length; i < len; i++) {
-                tokens = initialStates[i].split("=");
-                if (tokens.length === 2) {
-                    moduleName = tokens[0];
-                    initialState = tokens[1];
-                    moduleObj = _modules[moduleName];
-                    if (moduleObj) {
-                        moduleObj.initialState = initialState;
-                    }
-                }
-            }
-
-            currentStates = parts[1].split("&");
-            for (i = 0, len = currentStates.length; i < len; i++) {
-                tokens = currentStates[i].split("=");
-                if (tokens.length >= 2) {
-                    moduleName = tokens[0];
-                    currentState = tokens[1];
-                    moduleObj = _modules[moduleName];
-                    if (moduleObj) {
-                        moduleObj.currentState = currentState;
-                    }
-                }
-            }
-        }
-
-        if (parts.length > 2) {
-            _fqstates = parts[2].split(",");
-        }
-
-        if (YAHOO.env.ua.ie) {
-
-            _checkIframeLoaded();
-
-        } else {
-
-            // Start the thread that will have the responsibility to
-            // periodically check whether a navigate operation has been
-            // requested on the main window. This will happen when
-            // YAHOO.util.History.navigate has been called or after
-            // the user has hit the back/forward button.
-
-            // On Safari 1.x and 2.0, the only way to catch a back/forward
-            // operation is to watch history.length... We basically exploit
-            // what I consider to be a bug (history.length is not supposed
-            // to change when going back/forward in the history...) This is
-            // why, in the following thread, we first compare the hash,
-            // because the hash thing will be fixed in the next major
-            // version of Safari. So even if they fix the history.length
-            // bug, all this will still work!
-            counter = history.length;
-
-            // On Gecko and Opera, we just need to watch the hash...
-            hash = _getHash();
-
-            setInterval(function () {
-
-                var state, newHash, newCounter;
-
-                newHash = _getHash();
-                newCounter = history.length;
-                if (newHash !== hash) {
-                    hash = newHash;
-                    counter = newCounter;
-                    _handleFQStateChange(hash);
-                    _storeStates();
-                } else if (newCounter !== counter && YAHOO.env.ua.webkit) {
-                    hash = newHash;
-                    counter = newCounter;
-                    state = _fqstates[counter - 1];
-                    _handleFQStateChange(state);
-                    _storeStates();
-                }
-
-            }, 50);
-
-            _initialized = true;
-            YAHOO.util.History.onLoadEvent.fire();
-        }
-    }
-
-    return {
-
-        /**
-         * Fired when the Browser History Manager is ready. If you subscribe to
-         * this event after the Browser History Manager has been initialized,
-         * it will not fire. Therefore, it is recommended to use the onReady
-         * method instead.
-         *
-         * @event onLoadEvent
-         * @see onReady
-         */
-        onLoadEvent: new YAHOO.util.CustomEvent("onLoad"),
-
-        /**
-         * Executes the supplied callback when the Browser History Manager is
-         * ready. This will execute immediately if called after the Browser
-         * History Manager onLoad event has fired.
-         *
-         * @method onReady
-         * @param {function} fn what to execute when the Browser History Manager is ready.
-         * @param {object} obj an optional object to be passed back as a parameter to fn.
-         * @param {boolean|object} override If true, the obj passed in becomes fn's execution scope.
-         * @see onLoadEvent
-         */
-        onReady: function (fn, obj, override) {
-
-            if (_initialized) {
-
-                setTimeout(function () {
-                    var ctx = window;
-                    if (override) {
-                        if (override === true) {
-                            ctx = obj;
-                        } else {
-                            ctx = override;
-                        }
-                    }
-                    fn.call(ctx, "onLoad", [], obj);
-                }, 0);
-
-            } else {
-
-                YAHOO.util.History.onLoadEvent.subscribe(fn, obj, override);
-
-            }
-        },
-
-        /**
-         * Registers a new module.
-         *
-         * @method register
-         * @param {string} module Non-empty string uniquely identifying the
-         *     module you wish to register.
-         * @param {string} initialState The initial state of the specified
-         *     module corresponding to its earliest history entry.
-         * @param {function} onStateChange Callback called when the
-         *     state of the specified module has changed.
-         * @param {object} obj An arbitrary object that will be passed as a
-         *     parameter to the handler.
-         * @param {boolean} override If true, the obj passed in becomes the
-         *     execution scope of the listener.
-         */
-        register: function (module, initialState, onStateChange, obj, override) {
-
-            var scope, wrappedFn;
-
-            if (typeof module !== "string" || YAHOO.lang.trim(module) === "" ||
-                typeof initialState !== "string" ||
-                typeof onStateChange !== "function") {
-                throw new Error("Missing or invalid argument");
-            }
-
-            if (_modules[module]) {
-                // Here, we used to throw an exception. However, users have
-                // complained about this behavior, so we now just return.
-                return;
-            }
-
-            // Note: A module CANNOT be registered after calling
-            // YAHOO.util.History.initialize. Indeed, we set the initial state
-            // of each registered module in YAHOO.util.History.initialize.
-            // If you could register a module after initializing the Browser
-            // History Manager, you would not read the correct state using
-            // YAHOO.util.History.getCurrentState when coming back to the
-            // page using the back button.
-            if (_initialized) {
-                throw new Error("All modules must be registered before calling YAHOO.util.History.initialize");
-            }
-
-            // Make sure the strings passed in do not contain our separators "," and "|"
-            module = escape(module);
-            initialState = escape(initialState);
-
-            // If the user chooses to override the scope, we use the
-            // custom object passed in as the execution scope.
-            scope = null;
-            if (override === true) {
-                scope = obj;
-            } else {
-                scope = override;
-            }
-
-            wrappedFn = function (state) {
-                return onStateChange.call(scope, state, obj);
-            };
-
-            _modules[module] = {
-                name: module,
-                initialState: initialState,
-                currentState: initialState,
-                onStateChange: wrappedFn
-            };
-        },
-
-        /**
-         * Initializes the Browser History Manager. Call this method
-         * from a script block located right after the opening body tag.
-         *
-         * @method initialize
-         * @param {string|HTML Element} stateField <input type="hidden"> used
-         *     to store application states. Must be in the static markup.
-         * @param {string|HTML Element} histFrame IFrame used to store
-         *     the history (only required on Internet Explorer)
-         * @public
-         */
-        initialize: function (stateField, histFrame) {
-
-            if (_initialized) {
-                // The browser history manager has already been initialized.
-                return;
-            }
-
-            if (YAHOO.env.ua.opera) {
-                // Opera cannot be supported because of several problems that
-                // have been reported to the Opera team, but never addressed:
-                //   1) Hash changes are not detected (started happening with
-                //      recent versions of Opera)
-                //   2) The entire DOM gets cached, so when you come back to
-                //      a page, the window's onload event does not get fired,
-                //      which prevents us from initializing the browser history
-                //      manager.
-                // As a consequence, the best thing we can do is to throw an
-                // exception. The application should catch it, and degrade
-                // gracefully. This is the sad state of history management.
-                YAHOO.log("Unsupported browser.", "error", this.toString());
-            }
-
-            if (typeof stateField === "string") {
-                stateField = document.getElementById(stateField);
-            }
-
-            if (!stateField ||
-                stateField.tagName.toUpperCase() !== "TEXTAREA" &&
-                (stateField.tagName.toUpperCase() !== "INPUT" ||
-                 stateField.type !== "hidden" &&
-                 stateField.type !== "text")) {
-                throw new Error("Missing or invalid argument");
-            }
-
-            _stateField = stateField;
-
-            if (YAHOO.env.ua.ie) {
-
-                if (typeof histFrame === "string") {
-                    histFrame = document.getElementById(histFrame);
-                }
-
-                if (!histFrame || histFrame.tagName.toUpperCase() !== "IFRAME") {
-                    throw new Error("Missing or invalid argument");
-                }
-
-                _histFrame = histFrame;
-            }
-
-            // Note that the event utility MUST be included inline in the page.
-            // If it gets loaded later (which you may want to do to improve the
-            // loading speed of your site), the onDOMReady event never fires,
-            // and the history library never gets fully initialized.
-            YAHOO.util.Event.onDOMReady(_initialize);
-        },
-
-        /**
-         * Call this method when you want to store a new entry in the browser's history.
-         *
-         * @method navigate
-         * @param {string} module Non-empty string representing your module.
-         * @param {string} state String representing the new state of the specified module.
-         * @return {boolean} Indicates whether the new state was successfully added to the history.
-         * @public
-         */
-        navigate: function (module, state) {
-
-            var states;
-
-            if (typeof module !== "string" || typeof state !== "string") {
-                throw new Error("Missing or invalid argument");
-            }
-
-            states = {};
-            states[module] = state;
-
-            return YAHOO.util.History.multiNavigate(states);
-        },
-
-        /**
-         * Call this method when you want to store a new entry in the browser's history.
-         *
-         * @method multiNavigate
-         * @param {object} states Associative array of module-state pairs to set simultaneously.
-         * @return {boolean} Indicates whether the new state was successfully added to the history.
-         * @public
-         */
-        multiNavigate: function (states) {
-
-            var currentStates, moduleName, moduleObj, currentState, fqstate;
-
-            if (typeof states !== "object") {
-                throw new Error("Missing or invalid argument");
-            }
-
-            if (!_initialized) {
-                throw new Error("The Browser History Manager is not initialized");
-            }
-
-            for (moduleName in states) {
-                if (!_modules[moduleName]) {
-                    throw new Error("The following module has not been registered: " + moduleName);
-                }
-            }
-
-            // Generate our new full state string mod1=xxx&mod2=yyy
-            currentStates = [];
-
-            for (moduleName in _modules) {
-                if (YAHOO.lang.hasOwnProperty(_modules, moduleName)) {
-                    moduleObj = _modules[moduleName];
-                    if (YAHOO.lang.hasOwnProperty(states, moduleName)) {
-                        currentState = states[unescape(moduleName)];
-                    } else {
-                        currentState = unescape(moduleObj.currentState);
-                    }
-
-                    // Make sure the strings passed in do not contain our separators "," and "|"
-                    moduleName = escape(moduleName);
-                    currentState = escape(currentState);
-
-                    currentStates.push(moduleName + "=" + currentState);
-                }
-            }
-
-            fqstate = currentStates.join("&");
-
-            if (YAHOO.env.ua.ie) {
-
-                return _updateIFrame(fqstate);
-
-            } else {
-
-                // Known bug: On Safari 1.x and 2.0, if you have tab browsing
-                // enabled, Safari will show an endless loading icon in the
-                // tab. This has apparently been fixed in recent WebKit builds.
-                // One work around found by Dav Glass is to submit a form that
-                // points to the same document. This indeed works on Safari 1.x
-                // and 2.0 but creates bigger problems on WebKit. So for now,
-                // we'll consider this an acceptable bug, and hope that Apple
-                // comes out with their next version of Safari very soon.
-                top.location.hash = fqstate;
-                if (YAHOO.env.ua.webkit) {
-                    // The following two lines are only useful for Safari 1.x
-                    // and 2.0. Recent nightly builds of WebKit do not require
-                    // that, but unfortunately, it is not easy to differentiate
-                    // between the two. Once Safari 2.0 departs the A-grade
-                    // list, we can remove the following two lines...
-                    _fqstates[history.length] = fqstate;
-                    _storeStates();
-                }
-
-                return true;
-
-            }
-        },
-
-        /**
-         * Returns the current state of the specified module.
-         *
-         * @method getCurrentState
-         * @param {string} module Non-empty string representing your module.
-         * @return {string} The current state of the specified module.
-         * @public
-         */
-        getCurrentState: function (module) {
-
-            var moduleObj;
-
-            if (typeof module !== "string") {
-                throw new Error("Missing or invalid argument");
-            }
-
-            if (!_initialized) {
-                throw new Error("The Browser History Manager is not initialized");
-            }
-
-            moduleObj = _modules[module];
-            if (!moduleObj) {
-                throw new Error("No such registered module: " + module);
-            }
-
-            return unescape(moduleObj.currentState);
-        },
-
-        /**
-         * Returns the state of a module according to the URL fragment
-         * identifier. This method is useful to initialize your modules
-         * if your application was bookmarked from a particular state.
-         *
-         * @method getBookmarkedState
-         * @param {string} module Non-empty string representing your module.
-         * @return {string} The bookmarked state of the specified module.
-         * @public
-         */
-        getBookmarkedState: function (module) {
-
-            var i, len, idx, hash, states, tokens, moduleName;
-
-            if (typeof module !== "string") {
-                throw new Error("Missing or invalid argument");
-            }
-
-            // Use location.href instead of location.hash which is already
-            // URL-decoded, which creates problems if the state value
-            // contained special characters...
-            idx = top.location.href.indexOf("#");
-            hash = idx >= 0 ? top.location.href.substr(idx + 1) : top.location.href;
-
-            states = hash.split("&");
-            for (i = 0, len = states.length; i < len; i++) {
-                tokens = states[i].split("=");
-                if (tokens.length === 2) {
-                    moduleName = tokens[0];
-                    if (moduleName === module) {
-                        return unescape(tokens[1]);
-                    }
-                }
-            }
-
-            return null;
-        },
-
-        /**
-         * Returns the value of the specified query string parameter.
-         * This method is not used internally by the Browser History Manager.
-         * However, it is provided here as a helper since many applications
-         * using the Browser History Manager will want to read the value of
-         * url parameters to initialize themselves.
-         *
-         * @method getQueryStringParameter
-         * @param {string} paramName Name of the parameter we want to look up.
-         * @param {string} queryString Optional URL to look at. If not specified,
-         *     this method uses the URL in the address bar.
-         * @return {string} The value of the specified parameter, or null.
-         * @public
-         */
-        getQueryStringParameter: function (paramName, url) {
-
-            var i, len, idx, queryString, params, tokens;
-
-            url = url || top.location.href;
-
-            idx = url.indexOf("?");
-            queryString = idx >= 0 ? url.substr(idx + 1) : url;
-
-            // Remove the hash if any
-            idx = queryString.lastIndexOf("#");
-            queryString = idx >= 0 ? queryString.substr(0, idx) : queryString;
-
-            params = queryString.split("&");
-
-            for (i = 0, len = params.length; i < len; i++) {
-                tokens = params[i].split("=");
-                if (tokens.length >= 2) {
-                    if (tokens[0] === paramName) {
-                        return unescape(tokens[1]);
-                    }
-                }
-            }
-
-            return null;
-        }
-
-    };
-
-})();
-YAHOO.register("history", YAHOO.util.History, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/history/history-min.js b/eclipse.org-common/yui/2.6.0/build/history/history-min.js
deleted file mode 100644
index cd480e1..0000000
--- a/eclipse.org-common/yui/2.6.0/build/history/history-min.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.util.History=(function(){var C=null;var K=null;var F=false;var D=[];var B=[];function I(){var M,L;L=top.location.href;M=L.indexOf("#");return M>=0?L.substr(M+1):null;}function A(){var M,N,O=[],L=[];for(M in D){if(YAHOO.lang.hasOwnProperty(D,M)){N=D[M];O.push(M+"="+N.initialState);L.push(M+"="+N.currentState);}}K.value=O.join("&")+"|"+L.join("&");if(YAHOO.env.ua.webkit){K.value+="|"+B.join(",");}}function H(L){var Q,R,M,O,P,T,S,N;if(!L){for(M in D){if(YAHOO.lang.hasOwnProperty(D,M)){O=D[M];O.currentState=O.initialState;O.onStateChange(unescape(O.currentState));}}return ;}P=[];T=L.split("&");for(Q=0,R=T.length;Q<R;Q++){S=T[Q].split("=");if(S.length===2){M=S[0];N=S[1];P[M]=N;}}for(M in D){if(YAHOO.lang.hasOwnProperty(D,M)){O=D[M];N=P[M];if(!N||O.currentState!==N){O.currentState=N||O.initialState;O.onStateChange(unescape(O.currentState));}}}}function J(O){var L,N;L='<html><body><div id="state">'+O+"</div></body></html>";try{N=C.contentWindow.document;N.open();N.write(L);N.close();return true;}catch(M){return false;}}function G(){var O,L,N,M;if(!C.contentWindow||!C.contentWindow.document){setTimeout(G,10);return ;}O=C.contentWindow.document;L=O.getElementById("state");N=L?L.innerText:null;M=I();setInterval(function(){var U,Q,R,S,T,P;O=C.contentWindow.document;L=O.getElementById("state");U=L?L.innerText:null;T=I();if(U!==N){N=U;H(N);if(!N){Q=[];for(R in D){if(YAHOO.lang.hasOwnProperty(D,R)){S=D[R];Q.push(R+"="+S.initialState);}}T=Q.join("&");}else{T=N;}top.location.hash=T;M=T;A();}else{if(T!==M){M=T;J(T);}}},50);F=true;YAHOO.util.History.onLoadEvent.fire();}function E(){var S,U,Q,W,M,O,V,P,T,N,L,R;Q=K.value.split("|");if(Q.length>1){V=Q[0].split("&");for(S=0,U=V.length;S<U;S++){W=V[S].split("=");if(W.length===2){M=W[0];P=W[1];O=D[M];if(O){O.initialState=P;}}}T=Q[1].split("&");for(S=0,U=T.length;S<U;S++){W=T[S].split("=");if(W.length>=2){M=W[0];N=W[1];O=D[M];if(O){O.currentState=N;}}}}if(Q.length>2){B=Q[2].split(",");}if(YAHOO.env.ua.ie){G();}else{L=history.length;R=I();setInterval(function(){var Z,X,Y;X=I();Y=history.length;if(X!==R){R=X;L=Y;H(R);A();}else{if(Y!==L&&YAHOO.env.ua.webkit){R=X;L=Y;Z=B[L-1];H(Z);A();}}},50);F=true;YAHOO.util.History.onLoadEvent.fire();}}return{onLoadEvent:new YAHOO.util.CustomEvent("onLoad"),onReady:function(M,N,L){if(F){setTimeout(function(){var O=window;if(L){if(L===true){O=N;}else{O=L;}}M.call(O,"onLoad",[],N);},0);}else{YAHOO.util.History.onLoadEvent.subscribe(M,N,L);}},register:function(O,L,Q,R,N){var P,M;if(typeof O!=="string"||YAHOO.lang.trim(O)===""||typeof L!=="string"||typeof Q!=="function"){throw new Error("Missing or invalid argument");}if(D[O]){return ;}if(F){throw new Error("All modules must be registered before calling YAHOO.util.History.initialize");}O=escape(O);L=escape(L);P=null;if(N===true){P=R;}else{P=N;}M=function(S){return Q.call(P,S,R);};D[O]={name:O,initialState:L,currentState:L,onStateChange:M};},initialize:function(L,M){if(F){return ;}if(YAHOO.env.ua.opera){}if(typeof L==="string"){L=document.getElementById(L);}if(!L||L.tagName.toUpperCase()!=="TEXTAREA"&&(L.tagName.toUpperCase()!=="INPUT"||L.type!=="hidden"&&L.type!=="text")){throw new Error("Missing or invalid argument");}K=L;if(YAHOO.env.ua.ie){if(typeof M==="string"){M=document.getElementById(M);}if(!M||M.tagName.toUpperCase()!=="IFRAME"){throw new Error("Missing or invalid argument");}C=M;}YAHOO.util.Event.onDOMReady(E);},navigate:function(M,N){var L;if(typeof M!=="string"||typeof N!=="string"){throw new Error("Missing or invalid argument");}L={};L[M]=N;return YAHOO.util.History.multiNavigate(L);},multiNavigate:function(M){var L,N,P,O,Q;if(typeof M!=="object"){throw new Error("Missing or invalid argument");}if(!F){throw new Error("The Browser History Manager is not initialized");}for(N in M){if(!D[N]){throw new Error("The following module has not been registered: "+N);}}L=[];for(N in D){if(YAHOO.lang.hasOwnProperty(D,N)){P=D[N];if(YAHOO.lang.hasOwnProperty(M,N)){O=M[unescape(N)];}else{O=unescape(P.currentState);}N=escape(N);O=escape(O);L.push(N+"="+O);}}Q=L.join("&");if(YAHOO.env.ua.ie){return J(Q);}else{top.location.hash=Q;if(YAHOO.env.ua.webkit){B[history.length]=Q;A();}return true;}},getCurrentState:function(L){var M;if(typeof L!=="string"){throw new Error("Missing or invalid argument");}if(!F){throw new Error("The Browser History Manager is not initialized");}M=D[L];if(!M){throw new Error("No such registered module: "+L);}return unescape(M.currentState);},getBookmarkedState:function(Q){var P,M,L,S,N,R,O;if(typeof Q!=="string"){throw new Error("Missing or invalid argument");}L=top.location.href.indexOf("#");S=L>=0?top.location.href.substr(L+1):top.location.href;N=S.split("&");for(P=0,M=N.length;P<M;P++){R=N[P].split("=");if(R.length===2){O=R[0];if(O===Q){return unescape(R[1]);}}}return null;},getQueryStringParameter:function(Q,N){var O,M,L,S,R,P;N=N||top.location.href;L=N.indexOf("?");S=L>=0?N.substr(L+1):N;L=S.lastIndexOf("#");S=L>=0?S.substr(0,L):S;R=S.split("&");for(O=0,M=R.length;O<M;O++){P=R[O].split("=");if(P.length>=2){if(P[0]===Q){return unescape(P[1]);}}}return null;}};})();YAHOO.register("history",YAHOO.util.History,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/history/history.js b/eclipse.org-common/yui/2.6.0/build/history/history.js
deleted file mode 100644
index e55d118..0000000
--- a/eclipse.org-common/yui/2.6.0/build/history/history.js
+++ /dev/null
@@ -1,788 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The Browser History Manager provides the ability to use the back/forward
- * navigation buttons in a DHTML application. It also allows a DHTML
- * application to be bookmarked in a specific state.
- *
- * This library requires the following static markup:
- *
- * &lt;iframe id="yui-history-iframe" src="path-to-real-asset-in-same-domain"&gt;&lt;/iframe&gt;
- * &lt;input id="yui-history-field" type="hidden"&gt;
- *
- * @module history
- * @requires yahoo,event
- * @namespace YAHOO.util
- * @title Browser History Manager
- */
-
-/**
- * The History class provides the ability to use the back/forward navigation
- * buttons in a DHTML application. It also allows a DHTML application to
- * be bookmarked in a specific state.
- *
- * @class History
- * @constructor
- */
-YAHOO.util.History = (function () {
-
-    /**
-     * Our hidden IFrame used to store the browsing history.
-     *
-     * @property _histFrame
-     * @type HTMLIFrameElement
-     * @default null
-     * @private
-     */
-    var _histFrame = null;
-
-    /**
-     * INPUT field (with type="hidden" or type="text") or TEXTAREA.
-     * This field keeps the value of the initial state, current state
-     * the list of all states across pages within a single browser session.
-     *
-     * @property _stateField
-     * @type HTMLInputElement|HTMLTextAreaElement
-     * @default null
-     * @private
-     */
-    var _stateField = null;
-
-    /**
-     * Flag used to tell whether YAHOO.util.History.initialize has been called.
-     *
-     * @property _initialized
-     * @type boolean
-     * @default false
-     * @private
-     */
-    var _initialized = false;
-
-    /**
-     * List of registered modules.
-     *
-     * @property _modules
-     * @type array
-     * @default []
-     * @private
-     */
-    var _modules = [];
-
-    /**
-     * List of fully qualified states. This is used only by Safari.
-     *
-     * @property _fqstates
-     * @type array
-     * @default []
-     * @private
-     */
-    var _fqstates = [];
-
-    /**
-     * location.hash is a bit buggy on Opera. I have seen instances where
-     * navigating the history using the back/forward buttons, and hence
-     * changing the URL, would not change location.hash. That's ok, the
-     * implementation of an equivalent is trivial.
-     *
-     * @method _getHash
-     * @return {string} The hash portion of the document's location
-     * @private
-     */
-    function _getHash() {
-        var i, href;
-        href = top.location.href;
-        i = href.indexOf("#");
-        return i >= 0 ? href.substr(i + 1) : null;
-    }
-
-    /**
-     * Stores all the registered modules' initial state and current state.
-     * On Safari, we also store all the fully qualified states visited by
-     * the application within a single browser session. The storage takes
-     * place in the form field specified during initialization.
-     *
-     * @method _storeStates
-     * @private
-     */
-    function _storeStates() {
-
-        var moduleName, moduleObj, initialStates = [], currentStates = [];
-
-        for (moduleName in _modules) {
-            if (YAHOO.lang.hasOwnProperty(_modules, moduleName)) {
-                moduleObj = _modules[moduleName];
-                initialStates.push(moduleName + "=" + moduleObj.initialState);
-                currentStates.push(moduleName + "=" + moduleObj.currentState);
-            }
-        }
-
-        _stateField.value = initialStates.join("&") + "|" + currentStates.join("&");
-
-        if (YAHOO.env.ua.webkit) {
-            _stateField.value += "|" + _fqstates.join(",");
-        }
-    }
-
-    /**
-     * Sets the new currentState attribute of all modules depending on the new
-     * fully qualified state. Also notifies the modules which current state has
-     * changed.
-     *
-     * @method _handleFQStateChange
-     * @param {string} fqstate Fully qualified state
-     * @private
-     */
-    function _handleFQStateChange(fqstate) {
-
-        var i, len, moduleName, moduleObj, modules, states, tokens, currentState;
-
-        if (!fqstate) {
-            // Notifies all modules
-            for (moduleName in _modules) {
-                if (YAHOO.lang.hasOwnProperty(_modules, moduleName)) {
-                    moduleObj = _modules[moduleName];
-                    moduleObj.currentState = moduleObj.initialState;
-                    moduleObj.onStateChange(unescape(moduleObj.currentState));
-                }
-            }
-            return;
-        }
-
-        modules = [];
-        states = fqstate.split("&");
-        for (i = 0, len = states.length; i < len; i++) {
-            tokens = states[i].split("=");
-            if (tokens.length === 2) {
-                moduleName = tokens[0];
-                currentState = tokens[1];
-                modules[moduleName] = currentState;
-            }
-        }
-
-        for (moduleName in _modules) {
-            if (YAHOO.lang.hasOwnProperty(_modules, moduleName)) {
-                moduleObj = _modules[moduleName];
-                currentState = modules[moduleName];
-                if (!currentState || moduleObj.currentState !== currentState) {
-                    moduleObj.currentState = currentState || moduleObj.initialState;
-                    moduleObj.onStateChange(unescape(moduleObj.currentState));
-                }
-            }
-        }
-    }
-
-    /**
-     * Update the IFrame with our new state.
-     *
-     * @method _updateIFrame
-     * @private
-     * @return {boolean} true if successful. false otherwise.
-     */
-    function _updateIFrame (fqstate) {
-
-        var html, doc;
-
-        html = '<html><body><div id="state">' + fqstate + '</div></body></html>';
-
-        try {
-            doc = _histFrame.contentWindow.document;
-            doc.open();
-            doc.write(html);
-            doc.close();
-            return true;
-        } catch (e) {
-            return false;
-        }
-    }
-
-    /**
-     * Periodically checks whether our internal IFrame is ready to be used.
-     *
-     * @method _checkIframeLoaded
-     * @private
-     */
-    function _checkIframeLoaded() {
-
-        var doc, elem, fqstate, hash;
-
-        if (!_histFrame.contentWindow || !_histFrame.contentWindow.document) {
-            // Check again in 10 msec...
-            setTimeout(_checkIframeLoaded, 10);
-            return;
-        }
-
-        // Start the thread that will have the responsibility to
-        // periodically check whether a navigate operation has been
-        // requested on the main window. This will happen when
-        // YAHOO.util.History.navigate has been called or after
-        // the user has hit the back/forward button.
-
-        doc = _histFrame.contentWindow.document;
-        elem = doc.getElementById("state");
-        // We must use innerText, and not innerHTML because our string contains
-        // the "&" character (which would end up being escaped as "&amp;") and
-        // the string comparison would fail...
-        fqstate = elem ? elem.innerText : null;
-
-        hash = _getHash();
-
-        setInterval(function () {
-
-            var newfqstate, states, moduleName, moduleObj, newHash, historyLength;
-
-            doc = _histFrame.contentWindow.document;
-            elem = doc.getElementById("state");
-            // See my comment above about using innerText instead of innerHTML...
-            newfqstate = elem ? elem.innerText : null;
-
-            newHash = _getHash();
-
-            if (newfqstate !== fqstate) {
-
-                fqstate = newfqstate;
-                _handleFQStateChange(fqstate);
-
-                if (!fqstate) {
-                    states = [];
-                    for (moduleName in _modules) {
-                        if (YAHOO.lang.hasOwnProperty(_modules, moduleName)) {
-                            moduleObj = _modules[moduleName];
-                            states.push(moduleName + "=" + moduleObj.initialState);
-                        }
-                    }
-                    newHash = states.join("&");
-                } else {
-                    newHash = fqstate;
-                }
-
-                // Allow the state to be bookmarked by setting the top window's
-                // URL fragment identifier. Note that here, we are on IE, and
-                // IE does not touch the browser history when setting the hash
-                // (unlike all the other browsers). I used to write:
-                //     top.location.replace( "#" + hash );
-                // but this had a side effect when the page was not the top frame.
-                top.location.hash = newHash;
-                hash = newHash;
-
-                _storeStates();
-
-            } else if (newHash !== hash) {
-
-                // The hash has changed. The user might have clicked on a link,
-                // or modified the URL directly, or opened the same application
-                // bookmarked in a specific state using a bookmark. However, we
-                // know the hash change was not caused by a hit on the back or
-                // forward buttons, or by a call to navigate() (because it would
-                // have been handled above) We must handle these cases, which is
-                // why we also need to keep track of hash changes on IE!
-
-                // Note that IE6 has some major issues with this kind of user
-                // interaction (the history stack gets completely messed up)
-                // but it seems to work fine on IE7.
-
-                hash = newHash;
-
-                // Now, store a new history entry. The following will cause the
-                // code above to execute, doing all the dirty work for us...
-                _updateIFrame(newHash);
-            }
-
-        }, 50);
-
-        _initialized = true;
-        YAHOO.util.History.onLoadEvent.fire();
-    }
-
-    /**
-     * Finish up the initialization of the Browser History Manager.
-     *
-     * @method _initialize
-     * @private
-     */
-    function _initialize() {
-
-        var i, len, parts, tokens, moduleName, moduleObj, initialStates, initialState, currentStates, currentState, counter, hash;
-
-        // Decode the content of our storage field...
-        parts = _stateField.value.split("|");
-
-        if (parts.length > 1) {
-
-            initialStates = parts[0].split("&");
-            for (i = 0, len = initialStates.length; i < len; i++) {
-                tokens = initialStates[i].split("=");
-                if (tokens.length === 2) {
-                    moduleName = tokens[0];
-                    initialState = tokens[1];
-                    moduleObj = _modules[moduleName];
-                    if (moduleObj) {
-                        moduleObj.initialState = initialState;
-                    }
-                }
-            }
-
-            currentStates = parts[1].split("&");
-            for (i = 0, len = currentStates.length; i < len; i++) {
-                tokens = currentStates[i].split("=");
-                if (tokens.length >= 2) {
-                    moduleName = tokens[0];
-                    currentState = tokens[1];
-                    moduleObj = _modules[moduleName];
-                    if (moduleObj) {
-                        moduleObj.currentState = currentState;
-                    }
-                }
-            }
-        }
-
-        if (parts.length > 2) {
-            _fqstates = parts[2].split(",");
-        }
-
-        if (YAHOO.env.ua.ie) {
-
-            _checkIframeLoaded();
-
-        } else {
-
-            // Start the thread that will have the responsibility to
-            // periodically check whether a navigate operation has been
-            // requested on the main window. This will happen when
-            // YAHOO.util.History.navigate has been called or after
-            // the user has hit the back/forward button.
-
-            // On Safari 1.x and 2.0, the only way to catch a back/forward
-            // operation is to watch history.length... We basically exploit
-            // what I consider to be a bug (history.length is not supposed
-            // to change when going back/forward in the history...) This is
-            // why, in the following thread, we first compare the hash,
-            // because the hash thing will be fixed in the next major
-            // version of Safari. So even if they fix the history.length
-            // bug, all this will still work!
-            counter = history.length;
-
-            // On Gecko and Opera, we just need to watch the hash...
-            hash = _getHash();
-
-            setInterval(function () {
-
-                var state, newHash, newCounter;
-
-                newHash = _getHash();
-                newCounter = history.length;
-                if (newHash !== hash) {
-                    hash = newHash;
-                    counter = newCounter;
-                    _handleFQStateChange(hash);
-                    _storeStates();
-                } else if (newCounter !== counter && YAHOO.env.ua.webkit) {
-                    hash = newHash;
-                    counter = newCounter;
-                    state = _fqstates[counter - 1];
-                    _handleFQStateChange(state);
-                    _storeStates();
-                }
-
-            }, 50);
-
-            _initialized = true;
-            YAHOO.util.History.onLoadEvent.fire();
-        }
-    }
-
-    return {
-
-        /**
-         * Fired when the Browser History Manager is ready. If you subscribe to
-         * this event after the Browser History Manager has been initialized,
-         * it will not fire. Therefore, it is recommended to use the onReady
-         * method instead.
-         *
-         * @event onLoadEvent
-         * @see onReady
-         */
-        onLoadEvent: new YAHOO.util.CustomEvent("onLoad"),
-
-        /**
-         * Executes the supplied callback when the Browser History Manager is
-         * ready. This will execute immediately if called after the Browser
-         * History Manager onLoad event has fired.
-         *
-         * @method onReady
-         * @param {function} fn what to execute when the Browser History Manager is ready.
-         * @param {object} obj an optional object to be passed back as a parameter to fn.
-         * @param {boolean|object} override If true, the obj passed in becomes fn's execution scope.
-         * @see onLoadEvent
-         */
-        onReady: function (fn, obj, override) {
-
-            if (_initialized) {
-
-                setTimeout(function () {
-                    var ctx = window;
-                    if (override) {
-                        if (override === true) {
-                            ctx = obj;
-                        } else {
-                            ctx = override;
-                        }
-                    }
-                    fn.call(ctx, "onLoad", [], obj);
-                }, 0);
-
-            } else {
-
-                YAHOO.util.History.onLoadEvent.subscribe(fn, obj, override);
-
-            }
-        },
-
-        /**
-         * Registers a new module.
-         *
-         * @method register
-         * @param {string} module Non-empty string uniquely identifying the
-         *     module you wish to register.
-         * @param {string} initialState The initial state of the specified
-         *     module corresponding to its earliest history entry.
-         * @param {function} onStateChange Callback called when the
-         *     state of the specified module has changed.
-         * @param {object} obj An arbitrary object that will be passed as a
-         *     parameter to the handler.
-         * @param {boolean} override If true, the obj passed in becomes the
-         *     execution scope of the listener.
-         */
-        register: function (module, initialState, onStateChange, obj, override) {
-
-            var scope, wrappedFn;
-
-            if (typeof module !== "string" || YAHOO.lang.trim(module) === "" ||
-                typeof initialState !== "string" ||
-                typeof onStateChange !== "function") {
-                throw new Error("Missing or invalid argument");
-            }
-
-            if (_modules[module]) {
-                // Here, we used to throw an exception. However, users have
-                // complained about this behavior, so we now just return.
-                return;
-            }
-
-            // Note: A module CANNOT be registered after calling
-            // YAHOO.util.History.initialize. Indeed, we set the initial state
-            // of each registered module in YAHOO.util.History.initialize.
-            // If you could register a module after initializing the Browser
-            // History Manager, you would not read the correct state using
-            // YAHOO.util.History.getCurrentState when coming back to the
-            // page using the back button.
-            if (_initialized) {
-                throw new Error("All modules must be registered before calling YAHOO.util.History.initialize");
-            }
-
-            // Make sure the strings passed in do not contain our separators "," and "|"
-            module = escape(module);
-            initialState = escape(initialState);
-
-            // If the user chooses to override the scope, we use the
-            // custom object passed in as the execution scope.
-            scope = null;
-            if (override === true) {
-                scope = obj;
-            } else {
-                scope = override;
-            }
-
-            wrappedFn = function (state) {
-                return onStateChange.call(scope, state, obj);
-            };
-
-            _modules[module] = {
-                name: module,
-                initialState: initialState,
-                currentState: initialState,
-                onStateChange: wrappedFn
-            };
-        },
-
-        /**
-         * Initializes the Browser History Manager. Call this method
-         * from a script block located right after the opening body tag.
-         *
-         * @method initialize
-         * @param {string|HTML Element} stateField <input type="hidden"> used
-         *     to store application states. Must be in the static markup.
-         * @param {string|HTML Element} histFrame IFrame used to store
-         *     the history (only required on Internet Explorer)
-         * @public
-         */
-        initialize: function (stateField, histFrame) {
-
-            if (_initialized) {
-                // The browser history manager has already been initialized.
-                return;
-            }
-
-            if (YAHOO.env.ua.opera) {
-                // Opera cannot be supported because of several problems that
-                // have been reported to the Opera team, but never addressed:
-                //   1) Hash changes are not detected (started happening with
-                //      recent versions of Opera)
-                //   2) The entire DOM gets cached, so when you come back to
-                //      a page, the window's onload event does not get fired,
-                //      which prevents us from initializing the browser history
-                //      manager.
-                // As a consequence, the best thing we can do is to throw an
-                // exception. The application should catch it, and degrade
-                // gracefully. This is the sad state of history management.
-            }
-
-            if (typeof stateField === "string") {
-                stateField = document.getElementById(stateField);
-            }
-
-            if (!stateField ||
-                stateField.tagName.toUpperCase() !== "TEXTAREA" &&
-                (stateField.tagName.toUpperCase() !== "INPUT" ||
-                 stateField.type !== "hidden" &&
-                 stateField.type !== "text")) {
-                throw new Error("Missing or invalid argument");
-            }
-
-            _stateField = stateField;
-
-            if (YAHOO.env.ua.ie) {
-
-                if (typeof histFrame === "string") {
-                    histFrame = document.getElementById(histFrame);
-                }
-
-                if (!histFrame || histFrame.tagName.toUpperCase() !== "IFRAME") {
-                    throw new Error("Missing or invalid argument");
-                }
-
-                _histFrame = histFrame;
-            }
-
-            // Note that the event utility MUST be included inline in the page.
-            // If it gets loaded later (which you may want to do to improve the
-            // loading speed of your site), the onDOMReady event never fires,
-            // and the history library never gets fully initialized.
-            YAHOO.util.Event.onDOMReady(_initialize);
-        },
-
-        /**
-         * Call this method when you want to store a new entry in the browser's history.
-         *
-         * @method navigate
-         * @param {string} module Non-empty string representing your module.
-         * @param {string} state String representing the new state of the specified module.
-         * @return {boolean} Indicates whether the new state was successfully added to the history.
-         * @public
-         */
-        navigate: function (module, state) {
-
-            var states;
-
-            if (typeof module !== "string" || typeof state !== "string") {
-                throw new Error("Missing or invalid argument");
-            }
-
-            states = {};
-            states[module] = state;
-
-            return YAHOO.util.History.multiNavigate(states);
-        },
-
-        /**
-         * Call this method when you want to store a new entry in the browser's history.
-         *
-         * @method multiNavigate
-         * @param {object} states Associative array of module-state pairs to set simultaneously.
-         * @return {boolean} Indicates whether the new state was successfully added to the history.
-         * @public
-         */
-        multiNavigate: function (states) {
-
-            var currentStates, moduleName, moduleObj, currentState, fqstate;
-
-            if (typeof states !== "object") {
-                throw new Error("Missing or invalid argument");
-            }
-
-            if (!_initialized) {
-                throw new Error("The Browser History Manager is not initialized");
-            }
-
-            for (moduleName in states) {
-                if (!_modules[moduleName]) {
-                    throw new Error("The following module has not been registered: " + moduleName);
-                }
-            }
-
-            // Generate our new full state string mod1=xxx&mod2=yyy
-            currentStates = [];
-
-            for (moduleName in _modules) {
-                if (YAHOO.lang.hasOwnProperty(_modules, moduleName)) {
-                    moduleObj = _modules[moduleName];
-                    if (YAHOO.lang.hasOwnProperty(states, moduleName)) {
-                        currentState = states[unescape(moduleName)];
-                    } else {
-                        currentState = unescape(moduleObj.currentState);
-                    }
-
-                    // Make sure the strings passed in do not contain our separators "," and "|"
-                    moduleName = escape(moduleName);
-                    currentState = escape(currentState);
-
-                    currentStates.push(moduleName + "=" + currentState);
-                }
-            }
-
-            fqstate = currentStates.join("&");
-
-            if (YAHOO.env.ua.ie) {
-
-                return _updateIFrame(fqstate);
-
-            } else {
-
-                // Known bug: On Safari 1.x and 2.0, if you have tab browsing
-                // enabled, Safari will show an endless loading icon in the
-                // tab. This has apparently been fixed in recent WebKit builds.
-                // One work around found by Dav Glass is to submit a form that
-                // points to the same document. This indeed works on Safari 1.x
-                // and 2.0 but creates bigger problems on WebKit. So for now,
-                // we'll consider this an acceptable bug, and hope that Apple
-                // comes out with their next version of Safari very soon.
-                top.location.hash = fqstate;
-                if (YAHOO.env.ua.webkit) {
-                    // The following two lines are only useful for Safari 1.x
-                    // and 2.0. Recent nightly builds of WebKit do not require
-                    // that, but unfortunately, it is not easy to differentiate
-                    // between the two. Once Safari 2.0 departs the A-grade
-                    // list, we can remove the following two lines...
-                    _fqstates[history.length] = fqstate;
-                    _storeStates();
-                }
-
-                return true;
-
-            }
-        },
-
-        /**
-         * Returns the current state of the specified module.
-         *
-         * @method getCurrentState
-         * @param {string} module Non-empty string representing your module.
-         * @return {string} The current state of the specified module.
-         * @public
-         */
-        getCurrentState: function (module) {
-
-            var moduleObj;
-
-            if (typeof module !== "string") {
-                throw new Error("Missing or invalid argument");
-            }
-
-            if (!_initialized) {
-                throw new Error("The Browser History Manager is not initialized");
-            }
-
-            moduleObj = _modules[module];
-            if (!moduleObj) {
-                throw new Error("No such registered module: " + module);
-            }
-
-            return unescape(moduleObj.currentState);
-        },
-
-        /**
-         * Returns the state of a module according to the URL fragment
-         * identifier. This method is useful to initialize your modules
-         * if your application was bookmarked from a particular state.
-         *
-         * @method getBookmarkedState
-         * @param {string} module Non-empty string representing your module.
-         * @return {string} The bookmarked state of the specified module.
-         * @public
-         */
-        getBookmarkedState: function (module) {
-
-            var i, len, idx, hash, states, tokens, moduleName;
-
-            if (typeof module !== "string") {
-                throw new Error("Missing or invalid argument");
-            }
-
-            // Use location.href instead of location.hash which is already
-            // URL-decoded, which creates problems if the state value
-            // contained special characters...
-            idx = top.location.href.indexOf("#");
-            hash = idx >= 0 ? top.location.href.substr(idx + 1) : top.location.href;
-
-            states = hash.split("&");
-            for (i = 0, len = states.length; i < len; i++) {
-                tokens = states[i].split("=");
-                if (tokens.length === 2) {
-                    moduleName = tokens[0];
-                    if (moduleName === module) {
-                        return unescape(tokens[1]);
-                    }
-                }
-            }
-
-            return null;
-        },
-
-        /**
-         * Returns the value of the specified query string parameter.
-         * This method is not used internally by the Browser History Manager.
-         * However, it is provided here as a helper since many applications
-         * using the Browser History Manager will want to read the value of
-         * url parameters to initialize themselves.
-         *
-         * @method getQueryStringParameter
-         * @param {string} paramName Name of the parameter we want to look up.
-         * @param {string} queryString Optional URL to look at. If not specified,
-         *     this method uses the URL in the address bar.
-         * @return {string} The value of the specified parameter, or null.
-         * @public
-         */
-        getQueryStringParameter: function (paramName, url) {
-
-            var i, len, idx, queryString, params, tokens;
-
-            url = url || top.location.href;
-
-            idx = url.indexOf("?");
-            queryString = idx >= 0 ? url.substr(idx + 1) : url;
-
-            // Remove the hash if any
-            idx = queryString.lastIndexOf("#");
-            queryString = idx >= 0 ? queryString.substr(0, idx) : queryString;
-
-            params = queryString.split("&");
-
-            for (i = 0, len = params.length; i < len; i++) {
-                tokens = params[i].split("=");
-                if (tokens.length >= 2) {
-                    if (tokens[0] === paramName) {
-                        return unescape(tokens[1]);
-                    }
-                }
-            }
-
-            return null;
-        }
-
-    };
-
-})();
-YAHOO.register("history", YAHOO.util.History, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/imagecropper/README b/eclipse.org-common/yui/2.6.0/build/imagecropper/README
deleted file mode 100644
index 79c3954..0000000
--- a/eclipse.org-common/yui/2.6.0/build/imagecropper/README
+++ /dev/null
@@ -1,22 +0,0 @@
-**** version 2.6.0 ***
-    Bug Fix:
-        * 2216246 - Reset fails to reset Constraints
-
-**** version 2.5.2 ***
-
-    Bug Fixes:
-        * 1839205 - [SF 1927495 ] crop area moves outside of the image
-
-
-**** version 2.5.1 ***
-    Fixed Issues dealing with mask resize and keeping crop interface inside of crop region
-
-    Bug Fixes:
-        * 1770394 - [SF 1900953 ] Ratio doesn't work
-        * 1776164 - [SF 1903193 ] Several issues with the crop window
-        * 1779430 - [SF 1904258 ] Initial CSS size isn't checked
-    
-
-**** version 2.5.0 ***
-
-Initial Release
diff --git a/eclipse.org-common/yui/2.6.0/build/imagecropper/assets/imagecropper-core.css b/eclipse.org-common/yui/2.6.0/build/imagecropper/assets/imagecropper-core.css
deleted file mode 100644
index 0145636..0000000
--- a/eclipse.org-common/yui/2.6.0/build/imagecropper/assets/imagecropper-core.css
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-crop {
-    position: relative;
-}
-.yui-crop .yui-crop-mask {
-    position: absolute;
-    top: 0;
-    left: 0;
-    height: 100%;
-    width: 100%;
-}
-
-.yui-crop .yui-resize {
-    position: absolute;
-    top: 10px;
-    left: 10px;
-    border: 0;
-}
-
-.yui-crop .yui-crop-resize-mask {
-    position: absolute;
-    top: 0;
-    left: 0;
-    height: 100%;
-    width: 100%;
-    background-position: -10px -10px;
-    overflow: hidden;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/imagecropper/assets/skins/sam/imagecropper-skin.css b/eclipse.org-common/yui/2.6.0/build/imagecropper/assets/skins/sam/imagecropper-skin.css
deleted file mode 100644
index b09462f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/imagecropper/assets/skins/sam/imagecropper-skin.css
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-crop .yui-crop-mask {
-    background-color: #000;
-    opacity: .5;
-    filter: alpha(opacity=50);
-}
-
-.yui-skin-sam .yui-crop .yui-resize {
-    border: 1px dashed #fff;   
-}
-
diff --git a/eclipse.org-common/yui/2.6.0/build/imagecropper/assets/skins/sam/imagecropper.css b/eclipse.org-common/yui/2.6.0/build/imagecropper/assets/skins/sam/imagecropper.css
deleted file mode 100644
index 73d3216..0000000
--- a/eclipse.org-common/yui/2.6.0/build/imagecropper/assets/skins/sam/imagecropper.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-crop{position:relative;}.yui-crop .yui-crop-mask{position:absolute;top:0;left:0;height:100%;width:100%;}.yui-crop .yui-resize{position:absolute;top:10px;left:10px;border:0;}.yui-crop .yui-crop-resize-mask{position:absolute;top:0;left:0;height:100%;width:100%;background-position:-10px -10px;overflow:hidden;}.yui-skin-sam .yui-crop .yui-crop-mask{background-color:#000;opacity:.5;filter:alpha(opacity=50);}.yui-skin-sam .yui-crop .yui-resize{border:1px dashed #fff;}
diff --git a/eclipse.org-common/yui/2.6.0/build/imagecropper/imagecropper-beta-debug.js b/eclipse.org-common/yui/2.6.0/build/imagecropper/imagecropper-beta-debug.js
deleted file mode 100644
index 7c84130..0000000
--- a/eclipse.org-common/yui/2.6.0/build/imagecropper/imagecropper-beta-debug.js
+++ /dev/null
@@ -1,907 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * @description <p>Creates a Image Cropper control.</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, dragdrop, element, event, resize
- * @module imagecropper
- * @beta
- */
-(function() {
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang;
-
-    /**
-     * @constructor
-     * @class ImageCropper
-     * @description <p>Creates a Image Cropper control.</p>
-     * @extends YAHOO.util.Element
-     * @param {String/HTMLElement} el The image element to make croppable.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    var Crop = function(el, config) {
-        YAHOO.log('Initializing', 'log', 'ImageCropper');
-        var oConfig = {
-            element: el,
-            attributes: config || {}
-        };
-
-        Crop.superclass.constructor.call(this, oConfig.element, oConfig.attributes);    
-    };
-
-    /**
-    * @private
-    * @static
-    * @property _instances
-    * @description Internal hash table for all ImageCropper instances
-    * @type Object
-    */ 
-    Crop._instances = {};
-    /**
-    * @static
-    * @method getCropperById 
-    * @description Get's an ImageCropper object by the HTML id of the image associated with the ImageCropper object.
-    * @return {Object} The ImageCropper Object
-    */ 
-    Crop.getCropperById = function(id) {
-        if (Crop._instances[id]) {
-            return Crop._instances[id];
-        }
-        return false;
-    };
-
-    YAHOO.extend(Crop, YAHOO.util.Element, {
-        /**
-        * @private
-        * @property CSS_MAIN
-        * @description The CSS class used to wrap the element 
-        * @type String
-        */
-        CSS_MAIN: 'yui-crop',
-        /**
-        * @private
-        * @property CSS_MASK
-        * @description The CSS class for the mask element
-        * @type String
-        */
-        CSS_MASK: 'yui-crop-mask',
-        /**
-        * @private
-        * @property CSS_RESIZE_MASK
-        * @description The CSS class for the mask inside the resize element
-        * @type String
-        */
-        CSS_RESIZE_MASK: 'yui-crop-resize-mask',
-
-        /**
-        * @private
-        * @property _image
-        * @description The url of the image we are cropping
-        * @type String
-        */
-        _image: null,
-        /**
-        * @private
-        * @property _active
-        * @description Flag to determine if the crop region is active
-        * @type Boolean
-        */
-        _active: null,
-        /**
-        * @private
-        * @property _resize
-        * @description A reference to the Resize Utility used in this Cropper Instance
-        * @type Object
-        */
-        _resize: null,
-        /**
-        * @private
-        * @property _resizeEl
-        * @description The HTML Element used to create the Resize Oject
-        * @type HTMLElement
-        */
-        _resizeEl: null,
-        /**
-        * @private
-        * @property _resizeMaskEl
-        * @description The HTML Element used to create the Resize mask
-        * @type HTMLElement
-        */
-        _resizeMaskEl: null,
-        /**
-        * @private
-        * @property _wrap
-        * @description The HTML Element created to wrap the image
-        * @type HTMLElement
-        */
-        _wrap: null,
-        /**
-        * @private
-        * @property _mask
-        * @description The HTML Element created to "mask" the image being cropped
-        * @type HTMLElement
-        */
-        _mask: null,
-        /**
-        * @private
-        * @method _createWrap
-        * @description Creates the wrapper element used to wrap the image
-        */
-        _createWrap: function() {
-            YAHOO.log('Creating the wrap element', 'log', 'ImageCropper');
-            this._wrap = document.createElement('div');
-            this._wrap.id = this.get('element').id + '_wrap';
-            this._wrap.className = this.CSS_MAIN;
-            var el = this.get('element');
-            this._wrap.style.width = el.width ? el.width + 'px' : Dom.getStyle(el, 'width');
-            this._wrap.style.height = el.height ? el.height + 'px' : Dom.getStyle(el, 'height');
-            
-            var par = this.get('element').parentNode;
-            par.replaceChild(this._wrap, this.get('element'));
-            this._wrap.appendChild(this.get('element'));
-
-            Event.on(this._wrap, 'mouseover', this._handleMouseOver, this, true);
-            Event.on(this._wrap, 'mouseout', this._handleMouseOut, this, true);
-
-            Event.on(this._wrap, 'click', function(ev) { Event.stopEvent(ev); }, this, true);
-        },
-
-        /**
-        * @private
-        * @method _createMask
-        * @description Creates the mask element used to mask the image
-        */
-        _createMask: function() {
-            YAHOO.log('Creating the Mask', 'log', 'ImageCropper');
-            this._mask = document.createElement('div');
-            this._mask.className = this.CSS_MASK;
-            this._wrap.appendChild(this._mask);
-        },
-
-        /**
-        * @private
-        * @method _createResize
-        * @description Creates the resize element and the instance of the Resize Utility
-        */
-        _createResize: function() {
-            YAHOO.log('Creating the Resize element', 'log', 'ImageCropper');
-            this._resizeEl = document.createElement('div');
-            this._resizeEl.className = YAHOO.util.Resize.prototype.CSS_RESIZE;
-            this._resizeEl.style.position = 'absolute';
-            
-            this._resizeEl.innerHTML = '<div class="' + this.CSS_RESIZE_MASK + '"></div>';
-            this._resizeMaskEl = this._resizeEl.firstChild;
-            this._wrap.appendChild(this._resizeEl);
-            this._resizeEl.style.top = this.get('initialXY')[1] + 'px';
-            this._resizeEl.style.left = this.get('initialXY')[0] + 'px';
-            this._resizeMaskEl.style.height = Math.floor(this.get('initHeight')) + 'px';
-            this._resizeMaskEl.style.width = Math.floor(this.get('initWidth')) + 'px';
-
-            this._resize = new YAHOO.util.Resize(this._resizeEl, {
-                knobHandles: true,
-                handles: 'all',
-                draggable: true,
-                status: this.get('status'),
-                minWidth: this.get('minWidth'),
-                minHeight: this.get('minHeight'),
-                ratio: this.get('ratio'),
-                autoRatio: this.get('autoRatio'),
-                height: this.get('initHeight'),
-                width: this.get('initWidth')
-            });
-
-            this._setBackgroundImage(this.get('element').getAttribute('src', 2));
-            this._setBackgroundPosition(-(this.get('initialXY')[0]),  -(this.get('initialXY')[1]));
-
-            this._resize.on('startResize', this._handleStartResizeEvent, this, true);
-            this._resize.on('endResize', this._handleEndResizeEvent, this, true);
-            this._resize.on('dragEvent', this._handleDragEvent, this, true);
-            this._resize.on('beforeResize', this._handleBeforeResizeEvent, this, true);
-            this._resize.on('resize', this._handleResizeEvent, this, true);
-            this._resize.dd.on('b4StartDragEvent', this._handleB4DragEvent, this, true);
-        },
-
-        /**
-        * @private
-        * @method _handleMouseOver
-        * @description Handles the mouseover event
-        */
-        _handleMouseOver: function(ev) {
-            var evType = 'keydown';
-            if (YAHOO.env.ua.gecko || YAHOO.env.ua.opera) {
-                evType = 'keypress';
-            }
-            if (!this._active) {
-                this._active = true;
-                if (this.get('useKeys')) {
-                    Event.on(document, evType, this._handleKeyPress, this, true);
-                }
-            }
-        },
-        /**
-        * @private
-        * @method _handleMouseOut
-        * @description Handles the mouseout event
-        */
-        _handleMouseOut: function(ev) {
-            var evType = 'keydown';
-            if (YAHOO.env.ua.gecko || YAHOO.env.ua.opera) {
-                evType = 'keypress';
-            }
-            this._active = false;
-            if (this.get('useKeys')) {
-                Event.removeListener(document, evType, this._handleKeyPress);
-            }
-        },
-
-        /**
-        * @private
-        * @method _moveEl
-        * @description Moves the resize element based on the arrow keys
-        */
-        _moveEl: function(dir, inc) {
-            YAHOO.log('Moving the element', 'log', 'ImageCropper');
-            var t = 0, l = 0,
-                region = this._setConstraints(),
-                resize = true;
-
-            switch (dir) {
-                case 'down':
-                    t = -(inc);
-                    if ((region.bottom - inc) < 0) {
-                        resize = false;
-                        this._resizeEl.style.top = (region.top + region.bottom) + 'px';
-                    }
-                    break;
-                case 'up':
-                    t = (inc);
-                    if ((region.top - inc) < 0) {
-                        resize = false;
-                        this._resizeEl.style.top = '0px';
-                    }
-                    break;
-                case 'right':
-                    l = -(inc);
-                    if ((region.right - inc) < 0) {
-                        resize = false;
-                        this._resizeEl.style.left = (region.left + region.right) + 'px';
-                    }
-                    break;
-                case 'left':
-                    l = inc;
-                    if ((region.left - inc) < 0) {
-                        resize = false;
-                        this._resizeEl.style.left = '0px';
-                    }
-                    break;
-            }
-
-            if (resize) {
-                YAHOO.log('Moving via Key Listener: ' + dir, 'log', 'ImageCropper');
-                this._resizeEl.style.left = (parseInt(this._resizeEl.style.left, 10) - l) + 'px';
-                this._resizeEl.style.top = (parseInt(this._resizeEl.style.top, 10) - t) + 'px';
-                this.fireEvent('moveEvent', { target: 'keypress' });
-            } else {
-                this._setConstraints();
-            }
-            this._syncBackgroundPosition();
-        },
-
-        /**
-        * @private
-        * @method _handleKeyPress
-        * @description Handles the keypress event
-        */
-        _handleKeyPress: function(ev) {
-            var kc = Event.getCharCode(ev),
-                stopEvent = false,
-                inc = ((ev.shiftKey) ? this.get('shiftKeyTick') : this.get('keyTick'));
-
-            switch (kc) {
-                case 0x25: // left
-                    this._moveEl('left', inc);
-                    stopEvent = true;
-                    break;
-                case 0x26: // up
-                    this._moveEl('up', inc);
-                    stopEvent = true;
-                    break;
-                case 0x27: // right
-                    this._moveEl('right', inc);
-                    stopEvent = true;
-                    break;
-                case 0x28: // down
-                    this._moveEl('down', inc);
-                    stopEvent = true;
-                    break;
-                default:
-            }
-            if (stopEvent) {
-                Event.preventDefault(ev);
-            }
-        },
-
-        /**
-        * @private
-        * @method _handleB4DragEvent
-        * @description Handles the DragDrop b4DragEvent event
-        */
-        _handleB4DragEvent: function() {
-            this._setConstraints();
-        },
-
-        /**
-        * @private
-        * @method _handleDragEvent
-        * @description Handles the DragDrop DragEvent event
-        */
-        _handleDragEvent: function() {
-            this._syncBackgroundPosition();
-            this.fireEvent('dragEvent', arguments);
-            this.fireEvent('moveEvent', { target: 'dragevent' });
-        },
-
-        /**
-        * @private
-        * @method _handleBeforeResizeEvent
-        * @description Handles the Resize Utilitys beforeResize event
-        */
-        _handleBeforeResizeEvent: function(args) {
-            var region = Dom.getRegion(this.get('element')),
-                c = this._resize._cache,
-                ch = this._resize._currentHandle, h = 0, w = 0;
-
-            if (args.top && (args.top < region.top)) {
-                h = (c.height + c.top) - region.top;
-                Dom.setY(this._resize.getWrapEl(), region.top);
-                this._resize.getWrapEl().style.height = h + 'px';
-                this._resize._cache.height = h;
-                this._resize._cache.top = region.top;
-                this._syncBackgroundPosition();
-                return false;
-            }
-            if (args.left && (args.left < region.left)) {
-                w = (c.width + c.left) - region.left;
-                Dom.setX(this._resize.getWrapEl(), region.left);
-                this._resize._cache.left = region.left;
-                this._resize.getWrapEl().style.width = w + 'px';
-                this._resize._cache.width = w;
-                this._syncBackgroundPosition();
-                return false;
-            }
-            if (ch != 'tl' && ch != 'l' && ch != 'bl') {
-                if (c.left && args.width && ((c.left + args.width) > region.right)) {
-                    w = (region.right - c.left);
-                    Dom.setX(this._resize.getWrapEl(), (region.right - w));
-                    this._resize.getWrapEl().style.width = w + 'px';
-                    this._resize._cache.left = (region.right - w);
-                    this._resize._cache.width = w;
-                    this._syncBackgroundPosition();
-                    return false;
-                }
-            }
-            if (ch != 't' && ch != 'tr' && ch != 'tl') {
-                if (c.top && args.height && ((c.top + args.height) > region.bottom)) {
-                    h = (region.bottom - c.top);
-                    Dom.setY(this._resize.getWrapEl(), (region.bottom - h));
-                    this._resize.getWrapEl().style.height = h + 'px';
-                    this._resize._cache.height = h;
-                    this._resize._cache.top = (region.bottom - h);
-                    this._syncBackgroundPosition();
-                    return false;
-                }
-            }
-        },
-        /**
-        * @private
-        * @method _handleResizeMaskEl
-        * @description Resizes the inner mask element
-        */
-        _handleResizeMaskEl: function() {
-            var a = this._resize._cache;
-            this._resizeMaskEl.style.height = Math.floor(a.height) + 'px';
-            this._resizeMaskEl.style.width = Math.floor(a.width) + 'px';
-        },
-        /**
-        * @private
-        * @method _handleResizeEvent
-        * @param Event ev The Resize Utilitys resize event.
-        * @description Handles the Resize Utilitys Resize event
-        */
-        _handleResizeEvent: function(ev) {
-            this._setConstraints(true);
-            this._syncBackgroundPosition();
-            this.fireEvent('resizeEvent', arguments);
-            this.fireEvent('moveEvent', { target: 'resizeevent' });
-        },
-
-        /**
-        * @private
-        * @method _syncBackgroundPosition
-        * @description Syncs the packground position of the resize element with the resize elements top and left style position
-        */
-        _syncBackgroundPosition: function() {
-            this._handleResizeMaskEl();
-            this._setBackgroundPosition(-(parseInt(this._resizeEl.style.left, 10)), -(parseInt(this._resizeEl.style.top, 10)));
-        },
-
-        /**
-        * @private
-        * @method _setBackgroundPosition
-        * @param Number l The left position
-        * @param Number t The top position
-        * @description Sets the background image position to the top and left position
-        */
-        _setBackgroundPosition: function(l, t) {
-            //YAHOO.log('Setting the image background position of the mask to: (' + l + ', ' + t + ')', 'log', 'ImageCropper');
-            var bl = parseInt(Dom.getStyle(this._resize.get('element'), 'borderLeftWidth'), 10);
-            var bt = parseInt(Dom.getStyle(this._resize.get('element'), 'borderTopWidth'), 10);
-            if (isNaN(bl)) {
-                bl = 0;
-            }
-            if (isNaN(bt)) {
-                bt = 0;
-            }
-            var mask = this._resize.getWrapEl().firstChild;
-            var pos = (l - bl) + 'px ' + (t - bt) + 'px';
-            this._resizeMaskEl.style.backgroundPosition = pos;
-        },
-
-        /**
-        * @private
-        * @method _setBackgroundImage
-        * @param String url The url of the image
-        * @description Sets the background image of the resize element
-        */
-        _setBackgroundImage: function(url) {
-            YAHOO.log('Setting the background image', 'log', 'ImageCropper');
-            var mask = this._resize.getWrapEl().firstChild;
-            this._image = url;
-            mask.style.backgroundImage = 'url(' + url + '#)';
-        },
-        
-        /**
-        * @private
-        * @method _handleEndResizeEvent
-        * @description Handles the Resize Utilitys endResize event
-        */
-        _handleEndResizeEvent: function() {
-            this._setConstraints(true);
-        },
-        /**
-        * @private
-        * @method _handleStartResizeEvent
-        * @description Handles the Resize Utilitys startResize event
-        */
-        _handleStartResizeEvent: function() {
-            this._setConstraints(true);
-
-            var h = this._resize._cache.height,
-                 w = this._resize._cache.width,
-                 t = parseInt(this._resize.getWrapEl().style.top, 10),
-                 l = parseInt(this._resize.getWrapEl().style.left, 10),
-                 maxH = 0, maxW = 0;
- 
-            switch (this._resize._currentHandle) {
-                case 'b':
-                    maxH = (h + this._resize.dd.bottomConstraint);
-                    break;
-                case 'l':
-                    maxW = (w + this._resize.dd.leftConstraint);
-                    break;
-                case 'r':
-                    maxH = (h + t);
-                    maxW = (w + this._resize.dd.rightConstraint);
-                    break;
-                 case 'br':
-                     maxH = (h + this._resize.dd.bottomConstraint);
-                     maxW = (w + this._resize.dd.rightConstraint);
-                     break;
-                 case 'tr':
-                     maxH = (h + t);
-                     maxW = (w + this._resize.dd.rightConstraint);
-                     break;
-
-             }
-            
-             if (maxH) {
-                YAHOO.log('Setting the maxHeight on the resize object to: ' + maxH, 'log', 'ImageCropper');
-                 //this._resize.set('maxHeight', maxH);
-             }
-             if (maxW) {
-                YAHOO.log('Setting the maxWidth on the resize object to: ' + maxW, 'log', 'ImageCropper');
-                 //this._resize.set('maxWidth', maxW);
-             }
-
-            this.fireEvent('startResizeEvent', arguments);
-        },
-        
-        /**
-        * @private
-        * @method _setConstraints
-        * @param Boolean inside Used when called from inside a resize event, false by default (dragging)
-        * @description Set the DragDrop constraints to keep the element inside the crop area.
-        * @return {Object} Object containing Top, Right, Bottom and Left constraints
-        */
-        _setConstraints: function(inside) {
-            YAHOO.log('Setting Contraints', 'log', 'ImageCropper');
-            var resize = this._resize;
-            resize.dd.resetConstraints();
-            var height = parseInt(resize.get('height'), 10),
-                width = parseInt(resize.get('width'), 10);
-            if (inside) {
-                //Called from inside the resize callback
-                height = resize._cache.height;
-                width = resize._cache.width;
-            }
-
-            //Get the top, right, bottom and left positions
-            var region = Dom.getRegion(this.get('element'));
-            //Get the element we are working on
-            var el = resize.getWrapEl();
-
-            //Get the xy position of it
-            var xy = Dom.getXY(el);
-
-            //Set left to x minus left
-            var left = xy[0] - region.left;
-
-            //Set right to right minus x minus width
-            var right = region.right - xy[0] - width;
-
-            //Set top to y minus top
-            var top = xy[1] - region.top;
-
-            //Set bottom to bottom minus y minus height
-            var bottom = region.bottom - xy[1] - height;
-
-            if (top < 0) {
-                top = 0;
-            }
-            
-            resize.dd.setXConstraint(left, right); 
-            resize.dd.setYConstraint(top, bottom);
-            YAHOO.log('Constraints: ' + top + ',' + right + ',' + bottom + ',' + left, 'log', 'ImageCropper');
-
-            return {
-                top: top,
-                right: right,
-                bottom: bottom,
-                left: left
-            };
-
-            
-            
-        },
-        /**
-        * @method getCropCoords
-        * @description Returns the coordinates needed to crop the image
-        * @return {Object} The top, left, height, width and image url of the image being cropped
-        */
-        getCropCoords: function() {
-            var coords = {
-                top: parseInt(this._resize.getWrapEl().style.top, 10),
-                left: parseInt(this._resize.getWrapEl().style.left, 10),
-                height: this._resize._cache.height,
-                width: this._resize._cache.width,
-                image: this._image
-            };
-            YAHOO.log('Getting the crop coordinates: ' + Lang.dump(coords), 'log', 'ImageCropper');
-            return coords;
-        },
-        /**
-        * @method reset
-        * @description Resets the crop element back to it's original position
-        * @return {<a href="YAHOO.widget.ImageCropper.html">YAHOO.widget.ImageCropper</a>} The ImageCropper instance
-        */
-        reset: function() {
-            YAHOO.log('Resetting the control', 'log', 'ImageCropper');
-            this._resize.destroy();
-            this._resizeEl.parentNode.removeChild(this._resizeEl);
-            this._createResize();
-            this._setConstraints();
-            return this;
-        },
-
-        /**
-        * @method getEl
-        * @description Get the HTML reference for the image element.
-        * @return {HTMLElement} The image element
-        */      
-        getEl: function() {
-            return this.get('element');
-        },
-        /**
-        * @method getResizeEl
-        * @description Get the HTML reference for the resize element.
-        * @return {HTMLElement} The resize element
-        */      
-        getResizeEl: function() {
-            return this._resizeEl;
-        },
-        /**
-        * @method getWrapEl
-        * @description Get the HTML reference for the wrap element.
-        * @return {HTMLElement} The wrap element
-        */      
-        getWrapEl: function() {
-            return this._wrap;
-        },
-
-        /**
-        * @method getMaskEl
-        * @description Get the HTML reference for the mask element.
-        * @return {HTMLElement} The mask element
-        */      
-        getMaskEl: function() {
-            return this._mask;
-        },
-
-        /**
-        * @method getResizeMaskEl
-        * @description Get the HTML reference for the resizable object's mask element.
-        * @return {HTMLElement} The resize objects mask element.
-        */      
-        getResizeMaskEl: function() {
-            return this._resizeMaskEl;
-        },
-
-        /**
-        * @method getResizeObject
-        * @description Get the Resize Utility object.
-        * @return {<a href="YAHOO.util.Resize.html">YAHOO.util.Resize</a>} The Resize instance
-        */      
-        getResizeObject: function() {
-            return this._resize;
-        },
-
-        /** 
-        * @private
-        * @method init
-        * @description The ImageCropper class's initialization method
-        */        
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.log('init', 'info', 'ImageCropper');
-            Crop.superclass.init.call(this, p_oElement, p_oAttributes);
-
-            var id = p_oElement;
-
-            if (!Lang.isString(id)) {
-                if (id.tagName && (id.tagName.toLowerCase() == 'img')) {
-                    id = Dom.generateId(id);                    
-                } else {
-                    YAHOO.log('Element is not an image.', 'error', 'ImageCropper');
-                    return false;
-                }
-            } else {
-                var el = Dom.get(id);
-                if (el.tagName && el.tagName.toLowerCase() == 'img') {
-                    //All good
-                } else {
-                    YAHOO.log('Element is not an image.', 'error', 'ImageCropper');
-                    return false;
-                }
-            }
-            
-
-
-            Crop._instances[id] = this;
-            this._createWrap();
-            this._createMask();
-            this._createResize();
-            this._setConstraints();
-
-        },
-        /**
-        * @private
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create a croppable element.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the widget.
-        */      
-
-        initAttributes: function(attr) {
-            Crop.superclass.initAttributes.call(this, attr);
-
-            /**
-            * @attribute initialXY
-            * @description Array of the XY position that we need to set the crop element to when we build it. Defaults to [10, 10]
-            * @type Array
-            */
-            this.setAttributeConfig('initialXY', {
-                writeOnce: true,
-                validator: YAHOO.lang.isArray,
-                value: attr.initialXY || [10, 10]
-            });
-            /**
-            * @attribute keyTick
-            * @description The pixel tick for the arrow keys, defaults to 1
-            * @type Number
-            */
-            this.setAttributeConfig('keyTick', {
-                validator: YAHOO.lang.isNumber,
-                value: attr.keyTick || 1
-            });
-
-            /**
-            * @attribute shiftKeyTick
-            * @description The pixel tick for shift + the arrow keys, defaults to 10
-            * @type Number
-            */
-            this.setAttributeConfig('shiftKeyTick', {
-                validator: YAHOO.lang.isNumber,
-                value: attr.shiftKeyTick || 10
-            });
-
-            /**
-            * @attribute useKeys
-            * @description Should we use the Arrow keys to position the crop element, defaults to true
-            * @type Boolean
-            */
-            this.setAttributeConfig('useKeys', {
-                validator: YAHOO.lang.isBoolean,
-                value: ((attr.useKeys === false) ? false : true)
-            });
-
-            /**
-            * @attribute status
-            * @description Show the Resize Utility status, defaults to true
-            * @type Boolean
-            */
-            this.setAttributeConfig('status', {
-                validator: YAHOO.lang.isBoolean,
-                value: ((attr.status === false) ? false : true),
-                method: function(status) {
-                    if (this._resize) {
-                        this._resize.set('status', status);
-                    }
-                }
-            });
-
-            /**
-            * @attribute minHeight
-            * @description MinHeight of the crop area, default 50
-            * @type Number
-            */
-            this.setAttributeConfig('minHeight', {
-                validator: YAHOO.lang.isNumber,
-                value: attr.minHeight || 50,
-                method: function(h) {
-                    if (this._resize) {
-                        this._resize.set('minHeight', h);
-                    }
-                }
-            });
-
-            /**
-            * @attribute minWidth
-            * @description MinWidth of the crop area, default 50.
-            * @type Number
-            */
-            this.setAttributeConfig('minWidth', {
-                validator: YAHOO.lang.isNumber,
-                value: attr.minWidth || 50,
-                method: function(w) {
-                    if (this._resize) {
-                        this._resize.set('minWidth', w);
-                    }
-                }
-            });
-
-            /**
-            * @attribute ratio
-            * @description Set the ratio config option of the Resize Utlility, default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('ratio', {
-                validator: YAHOO.lang.isBoolean,
-                value: attr.ratio || false,
-                method: function(r) {
-                    if (this._resize) {
-                        this._resize.set('ratio', r);
-                    }
-                }
-            });
-
-            /**
-            * @attribute ratio
-            * @description Set the autoRatio config option of the Resize Utlility, default true
-            * @type Boolean
-            */
-            this.setAttributeConfig('autoRatio', {
-                validator: YAHOO.lang.isBoolean,
-                value: ((attr.autoRatio === false) ? false : true),
-                method: function(a) {
-                    if (this._resize) {
-                        this._resize.set('autoRatio', a);
-                    }
-                }
-            });
-
-            /**
-            * @attribute initHeight
-            * @description Set the initlal height of the crop area, defaults to 1/4 of the image height
-            * @type Number
-            */
-            this.setAttributeConfig('initHeight', {
-                writeOnce: true,
-                validator: YAHOO.lang.isNumber,
-                value: attr.initHeight || (this.get('element').height / 4)
-            });
-
-            /**
-            * @attribute initWidth
-            * @description Set the initlal width of the crop area, defaults to 1/4 of the image width
-            * @type Number
-            */
-            this.setAttributeConfig('initWidth', {
-                validator: YAHOO.lang.isNumber,
-                writeOnce: true,
-                value: attr.initWidth || (this.get('element').width / 4)
-            });
-
-        },
-        /**
-        * @method destroy
-        * @description Destroys the ImageCropper object and all of it's elements & listeners.
-        */        
-        destroy: function() {
-            YAHOO.log('Destroying the ImageCropper', 'info', 'ImageCropper');
-            this._resize.destroy();
-            this._resizeEl.parentNode.removeChild(this._resizeEl);
-            this._mask.parentNode.removeChild(this._mask);
-            Event.purgeElement(this._wrap);
-            this._wrap.parentNode.replaceChild(this.get('element'), this._wrap);
-            
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                }
-            }
-                       
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the ImageCropper Object.
-        * @return {String}
-        */        
-        toString: function() {
-            if (this.get) {
-                return 'ImageCropper (#' + this.get('id') + ')';
-            }
-            return 'Image Cropper';
-        }
-    });
-
-    YAHOO.widget.ImageCropper = Crop;
-
-/**
-* @event dragEvent
-* @description Fires when the DragDrop dragEvent
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event startResizeEvent
-* @description Fires when when a resize action is started.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event resizeEvent
-* @description Fires on every element resize.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event moveEvent
-* @description Fires on every element move. Inside these methods: _handleKeyPress, _handleDragEvent, _handleResizeEvent
-* @type YAHOO.util.CustomEvent
-*/
-
-})();
-
-YAHOO.register("imagecropper", YAHOO.widget.ImageCropper, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/imagecropper/imagecropper-beta-min.js b/eclipse.org-common/yui/2.6.0/build/imagecropper/imagecropper-beta-min.js
deleted file mode 100644
index 81a1db4..0000000
--- a/eclipse.org-common/yui/2.6.0/build/imagecropper/imagecropper-beta-min.js
+++ /dev/null
@@ -1,8 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){var C=YAHOO.util.Dom,A=YAHOO.util.Event,D=YAHOO.lang;var B=function(F,E){var G={element:F,attributes:E||{}};B.superclass.constructor.call(this,G.element,G.attributes);};B._instances={};B.getCropperById=function(E){if(B._instances[E]){return B._instances[E];}return false;};YAHOO.extend(B,YAHOO.util.Element,{CSS_MAIN:"yui-crop",CSS_MASK:"yui-crop-mask",CSS_RESIZE_MASK:"yui-crop-resize-mask",_image:null,_active:null,_resize:null,_resizeEl:null,_resizeMaskEl:null,_wrap:null,_mask:null,_createWrap:function(){this._wrap=document.createElement("div");this._wrap.id=this.get("element").id+"_wrap";this._wrap.className=this.CSS_MAIN;var F=this.get("element");this._wrap.style.width=F.width?F.width+"px":C.getStyle(F,"width");this._wrap.style.height=F.height?F.height+"px":C.getStyle(F,"height");var E=this.get("element").parentNode;E.replaceChild(this._wrap,this.get("element"));this._wrap.appendChild(this.get("element"));A.on(this._wrap,"mouseover",this._handleMouseOver,this,true);A.on(this._wrap,"mouseout",this._handleMouseOut,this,true);A.on(this._wrap,"click",function(G){A.stopEvent(G);},this,true);},_createMask:function(){this._mask=document.createElement("div");this._mask.className=this.CSS_MASK;this._wrap.appendChild(this._mask);},_createResize:function(){this._resizeEl=document.createElement("div");this._resizeEl.className=YAHOO.util.Resize.prototype.CSS_RESIZE;this._resizeEl.style.position="absolute";this._resizeEl.innerHTML='<div class="'+this.CSS_RESIZE_MASK+'"></div>';this._resizeMaskEl=this._resizeEl.firstChild;this._wrap.appendChild(this._resizeEl);this._resizeEl.style.top=this.get("initialXY")[1]+"px";this._resizeEl.style.left=this.get("initialXY")[0]+"px";this._resizeMaskEl.style.height=Math.floor(this.get("initHeight"))+"px";this._resizeMaskEl.style.width=Math.floor(this.get("initWidth"))+"px";this._resize=new YAHOO.util.Resize(this._resizeEl,{knobHandles:true,handles:"all",draggable:true,status:this.get("status"),minWidth:this.get("minWidth"),minHeight:this.get("minHeight"),ratio:this.get("ratio"),autoRatio:this.get("autoRatio"),height:this.get("initHeight"),width:this.get("initWidth")});this._setBackgroundImage(this.get("element").getAttribute("src",2));this._setBackgroundPosition(-(this.get("initialXY")[0]),-(this.get("initialXY")[1]));this._resize.on("startResize",this._handleStartResizeEvent,this,true);this._resize.on("endResize",this._handleEndResizeEvent,this,true);this._resize.on("dragEvent",this._handleDragEvent,this,true);this._resize.on("beforeResize",this._handleBeforeResizeEvent,this,true);this._resize.on("resize",this._handleResizeEvent,this,true);this._resize.dd.on("b4StartDragEvent",this._handleB4DragEvent,this,true);},_handleMouseOver:function(F){var E="keydown";if(YAHOO.env.ua.gecko||YAHOO.env.ua.opera){E="keypress";}if(!this._active){this._active=true;if(this.get("useKeys")){A.on(document,E,this._handleKeyPress,this,true);}}},_handleMouseOut:function(F){var E="keydown";if(YAHOO.env.ua.gecko||YAHOO.env.ua.opera){E="keypress";}this._active=false;if(this.get("useKeys")){A.removeListener(document,E,this._handleKeyPress);}},_moveEl:function(G,J){var H=0,E=0,I=this._setConstraints(),F=true;switch(G){case"down":H=-(J);if((I.bottom-J)<0){F=false;this._resizeEl.style.top=(I.top+I.bottom)+"px";}break;case"up":H=(J);if((I.top-J)<0){F=false;this._resizeEl.style.top="0px";}break;case"right":E=-(J);if((I.right-J)<0){F=false;this._resizeEl.style.left=(I.left+I.right)+"px";}break;case"left":E=J;if((I.left-J)<0){F=false;this._resizeEl.style.left="0px";}break;}if(F){this._resizeEl.style.left=(parseInt(this._resizeEl.style.left,10)-E)+"px";this._resizeEl.style.top=(parseInt(this._resizeEl.style.top,10)-H)+"px";this.fireEvent("moveEvent",{target:"keypress"});}else{this._setConstraints();}this._syncBackgroundPosition();},_handleKeyPress:function(G){var E=A.getCharCode(G),F=false,H=((G.shiftKey)?this.get("shiftKeyTick"):this.get("keyTick"));switch(E){case 37:this._moveEl("left",H);F=true;break;case 38:this._moveEl("up",H);F=true;break;case 39:this._moveEl("right",H);F=true;break;case 40:this._moveEl("down",H);F=true;break;default:}if(F){A.preventDefault(G);}},_handleB4DragEvent:function(){this._setConstraints();},_handleDragEvent:function(){this._syncBackgroundPosition();this.fireEvent("dragEvent",arguments);this.fireEvent("moveEvent",{target:"dragevent"});},_handleBeforeResizeEvent:function(F){var I=C.getRegion(this.get("element")),J=this._resize._cache,H=this._resize._currentHandle,G=0,E=0;if(F.top&&(F.top<I.top)){G=(J.height+J.top)-I.top;C.setY(this._resize.getWrapEl(),I.top);this._resize.getWrapEl().style.height=G+"px";this._resize._cache.height=G;this._resize._cache.top=I.top;this._syncBackgroundPosition();return false;}if(F.left&&(F.left<I.left)){E=(J.width+J.left)-I.left;C.setX(this._resize.getWrapEl(),I.left);this._resize._cache.left=I.left;this._resize.getWrapEl().style.width=E+"px";this._resize._cache.width=E;this._syncBackgroundPosition();return false;}if(H!="tl"&&H!="l"&&H!="bl"){if(J.left&&F.width&&((J.left+F.width)>I.right)){E=(I.right-J.left);C.setX(this._resize.getWrapEl(),(I.right-E));this._resize.getWrapEl().style.width=E+"px";this._resize._cache.left=(I.right-E);this._resize._cache.width=E;this._syncBackgroundPosition();return false;}}if(H!="t"&&H!="tr"&&H!="tl"){if(J.top&&F.height&&((J.top+F.height)>I.bottom)){G=(I.bottom-J.top);C.setY(this._resize.getWrapEl(),(I.bottom-G));this._resize.getWrapEl().style.height=G+"px";this._resize._cache.height=G;this._resize._cache.top=(I.bottom-G);this._syncBackgroundPosition();return false;}}},_handleResizeMaskEl:function(){var E=this._resize._cache;this._resizeMaskEl.style.height=Math.floor(E.height)+"px";this._resizeMaskEl.style.width=Math.floor(E.width)+"px";},_handleResizeEvent:function(E){this._setConstraints(true);this._syncBackgroundPosition();this.fireEvent("resizeEvent",arguments);this.fireEvent("moveEvent",{target:"resizeevent"});},_syncBackgroundPosition:function(){this._handleResizeMaskEl();this._setBackgroundPosition(-(parseInt(this._resizeEl.style.left,10)),-(parseInt(this._resizeEl.style.top,10)));
-},_setBackgroundPosition:function(F,H){var J=parseInt(C.getStyle(this._resize.get("element"),"borderLeftWidth"),10);var G=parseInt(C.getStyle(this._resize.get("element"),"borderTopWidth"),10);if(isNaN(J)){J=0;}if(isNaN(G)){G=0;}var E=this._resize.getWrapEl().firstChild;var I=(F-J)+"px "+(H-G)+"px";this._resizeMaskEl.style.backgroundPosition=I;},_setBackgroundImage:function(F){var E=this._resize.getWrapEl().firstChild;this._image=F;E.style.backgroundImage="url("+F+"#)";},_handleEndResizeEvent:function(){this._setConstraints(true);},_handleStartResizeEvent:function(){this._setConstraints(true);var I=this._resize._cache.height,F=this._resize._cache.width,H=parseInt(this._resize.getWrapEl().style.top,10),E=parseInt(this._resize.getWrapEl().style.left,10),G=0,J=0;switch(this._resize._currentHandle){case"b":G=(I+this._resize.dd.bottomConstraint);break;case"l":J=(F+this._resize.dd.leftConstraint);break;case"r":G=(I+H);J=(F+this._resize.dd.rightConstraint);break;case"br":G=(I+this._resize.dd.bottomConstraint);J=(F+this._resize.dd.rightConstraint);break;case"tr":G=(I+H);J=(F+this._resize.dd.rightConstraint);break;}if(G){}if(J){}this.fireEvent("startResizeEvent",arguments);},_setConstraints:function(J){var H=this._resize;H.dd.resetConstraints();var N=parseInt(H.get("height"),10),F=parseInt(H.get("width"),10);if(J){N=H._cache.height;F=H._cache.width;}var L=C.getRegion(this.get("element"));var G=H.getWrapEl();var O=C.getXY(G);var I=O[0]-L.left;var M=L.right-O[0]-F;var K=O[1]-L.top;var E=L.bottom-O[1]-N;if(K<0){K=0;}H.dd.setXConstraint(I,M);H.dd.setYConstraint(K,E);return{top:K,right:M,bottom:E,left:I};},getCropCoords:function(){var E={top:parseInt(this._resize.getWrapEl().style.top,10),left:parseInt(this._resize.getWrapEl().style.left,10),height:this._resize._cache.height,width:this._resize._cache.width,image:this._image};return E;},reset:function(){this._resize.destroy();this._resizeEl.parentNode.removeChild(this._resizeEl);this._createResize();this._setConstraints();return this;},getEl:function(){return this.get("element");},getResizeEl:function(){return this._resizeEl;},getWrapEl:function(){return this._wrap;},getMaskEl:function(){return this._mask;},getResizeMaskEl:function(){return this._resizeMaskEl;},getResizeObject:function(){return this._resize;},init:function(G,E){B.superclass.init.call(this,G,E);var H=G;if(!D.isString(H)){if(H.tagName&&(H.tagName.toLowerCase()=="img")){H=C.generateId(H);}else{return false;}}else{var F=C.get(H);if(F.tagName&&F.tagName.toLowerCase()=="img"){}else{return false;}}B._instances[H]=this;this._createWrap();this._createMask();this._createResize();this._setConstraints();},initAttributes:function(E){B.superclass.initAttributes.call(this,E);this.setAttributeConfig("initialXY",{writeOnce:true,validator:YAHOO.lang.isArray,value:E.initialXY||[10,10]});this.setAttributeConfig("keyTick",{validator:YAHOO.lang.isNumber,value:E.keyTick||1});this.setAttributeConfig("shiftKeyTick",{validator:YAHOO.lang.isNumber,value:E.shiftKeyTick||10});this.setAttributeConfig("useKeys",{validator:YAHOO.lang.isBoolean,value:((E.useKeys===false)?false:true)});this.setAttributeConfig("status",{validator:YAHOO.lang.isBoolean,value:((E.status===false)?false:true),method:function(F){if(this._resize){this._resize.set("status",F);}}});this.setAttributeConfig("minHeight",{validator:YAHOO.lang.isNumber,value:E.minHeight||50,method:function(F){if(this._resize){this._resize.set("minHeight",F);}}});this.setAttributeConfig("minWidth",{validator:YAHOO.lang.isNumber,value:E.minWidth||50,method:function(F){if(this._resize){this._resize.set("minWidth",F);}}});this.setAttributeConfig("ratio",{validator:YAHOO.lang.isBoolean,value:E.ratio||false,method:function(F){if(this._resize){this._resize.set("ratio",F);}}});this.setAttributeConfig("autoRatio",{validator:YAHOO.lang.isBoolean,value:((E.autoRatio===false)?false:true),method:function(F){if(this._resize){this._resize.set("autoRatio",F);}}});this.setAttributeConfig("initHeight",{writeOnce:true,validator:YAHOO.lang.isNumber,value:E.initHeight||(this.get("element").height/4)});this.setAttributeConfig("initWidth",{validator:YAHOO.lang.isNumber,writeOnce:true,value:E.initWidth||(this.get("element").width/4)});},destroy:function(){this._resize.destroy();this._resizeEl.parentNode.removeChild(this._resizeEl);this._mask.parentNode.removeChild(this._mask);A.purgeElement(this._wrap);this._wrap.parentNode.replaceChild(this.get("element"),this._wrap);for(var E in this){if(D.hasOwnProperty(this,E)){this[E]=null;}}},toString:function(){if(this.get){return"ImageCropper (#"+this.get("id")+")";}return"Image Cropper";}});YAHOO.widget.ImageCropper=B;})();YAHOO.register("imagecropper",YAHOO.widget.ImageCropper,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/imagecropper/imagecropper-beta.js b/eclipse.org-common/yui/2.6.0/build/imagecropper/imagecropper-beta.js
deleted file mode 100644
index a57d8a0..0000000
--- a/eclipse.org-common/yui/2.6.0/build/imagecropper/imagecropper-beta.js
+++ /dev/null
@@ -1,889 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * @description <p>Creates a Image Cropper control.</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, dragdrop, element, event, resize
- * @module imagecropper
- * @beta
- */
-(function() {
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang;
-
-    /**
-     * @constructor
-     * @class ImageCropper
-     * @description <p>Creates a Image Cropper control.</p>
-     * @extends YAHOO.util.Element
-     * @param {String/HTMLElement} el The image element to make croppable.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-    var Crop = function(el, config) {
-        var oConfig = {
-            element: el,
-            attributes: config || {}
-        };
-
-        Crop.superclass.constructor.call(this, oConfig.element, oConfig.attributes);    
-    };
-
-    /**
-    * @private
-    * @static
-    * @property _instances
-    * @description Internal hash table for all ImageCropper instances
-    * @type Object
-    */ 
-    Crop._instances = {};
-    /**
-    * @static
-    * @method getCropperById 
-    * @description Get's an ImageCropper object by the HTML id of the image associated with the ImageCropper object.
-    * @return {Object} The ImageCropper Object
-    */ 
-    Crop.getCropperById = function(id) {
-        if (Crop._instances[id]) {
-            return Crop._instances[id];
-        }
-        return false;
-    };
-
-    YAHOO.extend(Crop, YAHOO.util.Element, {
-        /**
-        * @private
-        * @property CSS_MAIN
-        * @description The CSS class used to wrap the element 
-        * @type String
-        */
-        CSS_MAIN: 'yui-crop',
-        /**
-        * @private
-        * @property CSS_MASK
-        * @description The CSS class for the mask element
-        * @type String
-        */
-        CSS_MASK: 'yui-crop-mask',
-        /**
-        * @private
-        * @property CSS_RESIZE_MASK
-        * @description The CSS class for the mask inside the resize element
-        * @type String
-        */
-        CSS_RESIZE_MASK: 'yui-crop-resize-mask',
-
-        /**
-        * @private
-        * @property _image
-        * @description The url of the image we are cropping
-        * @type String
-        */
-        _image: null,
-        /**
-        * @private
-        * @property _active
-        * @description Flag to determine if the crop region is active
-        * @type Boolean
-        */
-        _active: null,
-        /**
-        * @private
-        * @property _resize
-        * @description A reference to the Resize Utility used in this Cropper Instance
-        * @type Object
-        */
-        _resize: null,
-        /**
-        * @private
-        * @property _resizeEl
-        * @description The HTML Element used to create the Resize Oject
-        * @type HTMLElement
-        */
-        _resizeEl: null,
-        /**
-        * @private
-        * @property _resizeMaskEl
-        * @description The HTML Element used to create the Resize mask
-        * @type HTMLElement
-        */
-        _resizeMaskEl: null,
-        /**
-        * @private
-        * @property _wrap
-        * @description The HTML Element created to wrap the image
-        * @type HTMLElement
-        */
-        _wrap: null,
-        /**
-        * @private
-        * @property _mask
-        * @description The HTML Element created to "mask" the image being cropped
-        * @type HTMLElement
-        */
-        _mask: null,
-        /**
-        * @private
-        * @method _createWrap
-        * @description Creates the wrapper element used to wrap the image
-        */
-        _createWrap: function() {
-            this._wrap = document.createElement('div');
-            this._wrap.id = this.get('element').id + '_wrap';
-            this._wrap.className = this.CSS_MAIN;
-            var el = this.get('element');
-            this._wrap.style.width = el.width ? el.width + 'px' : Dom.getStyle(el, 'width');
-            this._wrap.style.height = el.height ? el.height + 'px' : Dom.getStyle(el, 'height');
-            
-            var par = this.get('element').parentNode;
-            par.replaceChild(this._wrap, this.get('element'));
-            this._wrap.appendChild(this.get('element'));
-
-            Event.on(this._wrap, 'mouseover', this._handleMouseOver, this, true);
-            Event.on(this._wrap, 'mouseout', this._handleMouseOut, this, true);
-
-            Event.on(this._wrap, 'click', function(ev) { Event.stopEvent(ev); }, this, true);
-        },
-
-        /**
-        * @private
-        * @method _createMask
-        * @description Creates the mask element used to mask the image
-        */
-        _createMask: function() {
-            this._mask = document.createElement('div');
-            this._mask.className = this.CSS_MASK;
-            this._wrap.appendChild(this._mask);
-        },
-
-        /**
-        * @private
-        * @method _createResize
-        * @description Creates the resize element and the instance of the Resize Utility
-        */
-        _createResize: function() {
-            this._resizeEl = document.createElement('div');
-            this._resizeEl.className = YAHOO.util.Resize.prototype.CSS_RESIZE;
-            this._resizeEl.style.position = 'absolute';
-            
-            this._resizeEl.innerHTML = '<div class="' + this.CSS_RESIZE_MASK + '"></div>';
-            this._resizeMaskEl = this._resizeEl.firstChild;
-            this._wrap.appendChild(this._resizeEl);
-            this._resizeEl.style.top = this.get('initialXY')[1] + 'px';
-            this._resizeEl.style.left = this.get('initialXY')[0] + 'px';
-            this._resizeMaskEl.style.height = Math.floor(this.get('initHeight')) + 'px';
-            this._resizeMaskEl.style.width = Math.floor(this.get('initWidth')) + 'px';
-
-            this._resize = new YAHOO.util.Resize(this._resizeEl, {
-                knobHandles: true,
-                handles: 'all',
-                draggable: true,
-                status: this.get('status'),
-                minWidth: this.get('minWidth'),
-                minHeight: this.get('minHeight'),
-                ratio: this.get('ratio'),
-                autoRatio: this.get('autoRatio'),
-                height: this.get('initHeight'),
-                width: this.get('initWidth')
-            });
-
-            this._setBackgroundImage(this.get('element').getAttribute('src', 2));
-            this._setBackgroundPosition(-(this.get('initialXY')[0]),  -(this.get('initialXY')[1]));
-
-            this._resize.on('startResize', this._handleStartResizeEvent, this, true);
-            this._resize.on('endResize', this._handleEndResizeEvent, this, true);
-            this._resize.on('dragEvent', this._handleDragEvent, this, true);
-            this._resize.on('beforeResize', this._handleBeforeResizeEvent, this, true);
-            this._resize.on('resize', this._handleResizeEvent, this, true);
-            this._resize.dd.on('b4StartDragEvent', this._handleB4DragEvent, this, true);
-        },
-
-        /**
-        * @private
-        * @method _handleMouseOver
-        * @description Handles the mouseover event
-        */
-        _handleMouseOver: function(ev) {
-            var evType = 'keydown';
-            if (YAHOO.env.ua.gecko || YAHOO.env.ua.opera) {
-                evType = 'keypress';
-            }
-            if (!this._active) {
-                this._active = true;
-                if (this.get('useKeys')) {
-                    Event.on(document, evType, this._handleKeyPress, this, true);
-                }
-            }
-        },
-        /**
-        * @private
-        * @method _handleMouseOut
-        * @description Handles the mouseout event
-        */
-        _handleMouseOut: function(ev) {
-            var evType = 'keydown';
-            if (YAHOO.env.ua.gecko || YAHOO.env.ua.opera) {
-                evType = 'keypress';
-            }
-            this._active = false;
-            if (this.get('useKeys')) {
-                Event.removeListener(document, evType, this._handleKeyPress);
-            }
-        },
-
-        /**
-        * @private
-        * @method _moveEl
-        * @description Moves the resize element based on the arrow keys
-        */
-        _moveEl: function(dir, inc) {
-            var t = 0, l = 0,
-                region = this._setConstraints(),
-                resize = true;
-
-            switch (dir) {
-                case 'down':
-                    t = -(inc);
-                    if ((region.bottom - inc) < 0) {
-                        resize = false;
-                        this._resizeEl.style.top = (region.top + region.bottom) + 'px';
-                    }
-                    break;
-                case 'up':
-                    t = (inc);
-                    if ((region.top - inc) < 0) {
-                        resize = false;
-                        this._resizeEl.style.top = '0px';
-                    }
-                    break;
-                case 'right':
-                    l = -(inc);
-                    if ((region.right - inc) < 0) {
-                        resize = false;
-                        this._resizeEl.style.left = (region.left + region.right) + 'px';
-                    }
-                    break;
-                case 'left':
-                    l = inc;
-                    if ((region.left - inc) < 0) {
-                        resize = false;
-                        this._resizeEl.style.left = '0px';
-                    }
-                    break;
-            }
-
-            if (resize) {
-                this._resizeEl.style.left = (parseInt(this._resizeEl.style.left, 10) - l) + 'px';
-                this._resizeEl.style.top = (parseInt(this._resizeEl.style.top, 10) - t) + 'px';
-                this.fireEvent('moveEvent', { target: 'keypress' });
-            } else {
-                this._setConstraints();
-            }
-            this._syncBackgroundPosition();
-        },
-
-        /**
-        * @private
-        * @method _handleKeyPress
-        * @description Handles the keypress event
-        */
-        _handleKeyPress: function(ev) {
-            var kc = Event.getCharCode(ev),
-                stopEvent = false,
-                inc = ((ev.shiftKey) ? this.get('shiftKeyTick') : this.get('keyTick'));
-
-            switch (kc) {
-                case 0x25: // left
-                    this._moveEl('left', inc);
-                    stopEvent = true;
-                    break;
-                case 0x26: // up
-                    this._moveEl('up', inc);
-                    stopEvent = true;
-                    break;
-                case 0x27: // right
-                    this._moveEl('right', inc);
-                    stopEvent = true;
-                    break;
-                case 0x28: // down
-                    this._moveEl('down', inc);
-                    stopEvent = true;
-                    break;
-                default:
-            }
-            if (stopEvent) {
-                Event.preventDefault(ev);
-            }
-        },
-
-        /**
-        * @private
-        * @method _handleB4DragEvent
-        * @description Handles the DragDrop b4DragEvent event
-        */
-        _handleB4DragEvent: function() {
-            this._setConstraints();
-        },
-
-        /**
-        * @private
-        * @method _handleDragEvent
-        * @description Handles the DragDrop DragEvent event
-        */
-        _handleDragEvent: function() {
-            this._syncBackgroundPosition();
-            this.fireEvent('dragEvent', arguments);
-            this.fireEvent('moveEvent', { target: 'dragevent' });
-        },
-
-        /**
-        * @private
-        * @method _handleBeforeResizeEvent
-        * @description Handles the Resize Utilitys beforeResize event
-        */
-        _handleBeforeResizeEvent: function(args) {
-            var region = Dom.getRegion(this.get('element')),
-                c = this._resize._cache,
-                ch = this._resize._currentHandle, h = 0, w = 0;
-
-            if (args.top && (args.top < region.top)) {
-                h = (c.height + c.top) - region.top;
-                Dom.setY(this._resize.getWrapEl(), region.top);
-                this._resize.getWrapEl().style.height = h + 'px';
-                this._resize._cache.height = h;
-                this._resize._cache.top = region.top;
-                this._syncBackgroundPosition();
-                return false;
-            }
-            if (args.left && (args.left < region.left)) {
-                w = (c.width + c.left) - region.left;
-                Dom.setX(this._resize.getWrapEl(), region.left);
-                this._resize._cache.left = region.left;
-                this._resize.getWrapEl().style.width = w + 'px';
-                this._resize._cache.width = w;
-                this._syncBackgroundPosition();
-                return false;
-            }
-            if (ch != 'tl' && ch != 'l' && ch != 'bl') {
-                if (c.left && args.width && ((c.left + args.width) > region.right)) {
-                    w = (region.right - c.left);
-                    Dom.setX(this._resize.getWrapEl(), (region.right - w));
-                    this._resize.getWrapEl().style.width = w + 'px';
-                    this._resize._cache.left = (region.right - w);
-                    this._resize._cache.width = w;
-                    this._syncBackgroundPosition();
-                    return false;
-                }
-            }
-            if (ch != 't' && ch != 'tr' && ch != 'tl') {
-                if (c.top && args.height && ((c.top + args.height) > region.bottom)) {
-                    h = (region.bottom - c.top);
-                    Dom.setY(this._resize.getWrapEl(), (region.bottom - h));
-                    this._resize.getWrapEl().style.height = h + 'px';
-                    this._resize._cache.height = h;
-                    this._resize._cache.top = (region.bottom - h);
-                    this._syncBackgroundPosition();
-                    return false;
-                }
-            }
-        },
-        /**
-        * @private
-        * @method _handleResizeMaskEl
-        * @description Resizes the inner mask element
-        */
-        _handleResizeMaskEl: function() {
-            var a = this._resize._cache;
-            this._resizeMaskEl.style.height = Math.floor(a.height) + 'px';
-            this._resizeMaskEl.style.width = Math.floor(a.width) + 'px';
-        },
-        /**
-        * @private
-        * @method _handleResizeEvent
-        * @param Event ev The Resize Utilitys resize event.
-        * @description Handles the Resize Utilitys Resize event
-        */
-        _handleResizeEvent: function(ev) {
-            this._setConstraints(true);
-            this._syncBackgroundPosition();
-            this.fireEvent('resizeEvent', arguments);
-            this.fireEvent('moveEvent', { target: 'resizeevent' });
-        },
-
-        /**
-        * @private
-        * @method _syncBackgroundPosition
-        * @description Syncs the packground position of the resize element with the resize elements top and left style position
-        */
-        _syncBackgroundPosition: function() {
-            this._handleResizeMaskEl();
-            this._setBackgroundPosition(-(parseInt(this._resizeEl.style.left, 10)), -(parseInt(this._resizeEl.style.top, 10)));
-        },
-
-        /**
-        * @private
-        * @method _setBackgroundPosition
-        * @param Number l The left position
-        * @param Number t The top position
-        * @description Sets the background image position to the top and left position
-        */
-        _setBackgroundPosition: function(l, t) {
-            var bl = parseInt(Dom.getStyle(this._resize.get('element'), 'borderLeftWidth'), 10);
-            var bt = parseInt(Dom.getStyle(this._resize.get('element'), 'borderTopWidth'), 10);
-            if (isNaN(bl)) {
-                bl = 0;
-            }
-            if (isNaN(bt)) {
-                bt = 0;
-            }
-            var mask = this._resize.getWrapEl().firstChild;
-            var pos = (l - bl) + 'px ' + (t - bt) + 'px';
-            this._resizeMaskEl.style.backgroundPosition = pos;
-        },
-
-        /**
-        * @private
-        * @method _setBackgroundImage
-        * @param String url The url of the image
-        * @description Sets the background image of the resize element
-        */
-        _setBackgroundImage: function(url) {
-            var mask = this._resize.getWrapEl().firstChild;
-            this._image = url;
-            mask.style.backgroundImage = 'url(' + url + '#)';
-        },
-        
-        /**
-        * @private
-        * @method _handleEndResizeEvent
-        * @description Handles the Resize Utilitys endResize event
-        */
-        _handleEndResizeEvent: function() {
-            this._setConstraints(true);
-        },
-        /**
-        * @private
-        * @method _handleStartResizeEvent
-        * @description Handles the Resize Utilitys startResize event
-        */
-        _handleStartResizeEvent: function() {
-            this._setConstraints(true);
-
-            var h = this._resize._cache.height,
-                 w = this._resize._cache.width,
-                 t = parseInt(this._resize.getWrapEl().style.top, 10),
-                 l = parseInt(this._resize.getWrapEl().style.left, 10),
-                 maxH = 0, maxW = 0;
- 
-            switch (this._resize._currentHandle) {
-                case 'b':
-                    maxH = (h + this._resize.dd.bottomConstraint);
-                    break;
-                case 'l':
-                    maxW = (w + this._resize.dd.leftConstraint);
-                    break;
-                case 'r':
-                    maxH = (h + t);
-                    maxW = (w + this._resize.dd.rightConstraint);
-                    break;
-                 case 'br':
-                     maxH = (h + this._resize.dd.bottomConstraint);
-                     maxW = (w + this._resize.dd.rightConstraint);
-                     break;
-                 case 'tr':
-                     maxH = (h + t);
-                     maxW = (w + this._resize.dd.rightConstraint);
-                     break;
-
-             }
-            
-             if (maxH) {
-                 //this._resize.set('maxHeight', maxH);
-             }
-             if (maxW) {
-                 //this._resize.set('maxWidth', maxW);
-             }
-
-            this.fireEvent('startResizeEvent', arguments);
-        },
-        
-        /**
-        * @private
-        * @method _setConstraints
-        * @param Boolean inside Used when called from inside a resize event, false by default (dragging)
-        * @description Set the DragDrop constraints to keep the element inside the crop area.
-        * @return {Object} Object containing Top, Right, Bottom and Left constraints
-        */
-        _setConstraints: function(inside) {
-            var resize = this._resize;
-            resize.dd.resetConstraints();
-            var height = parseInt(resize.get('height'), 10),
-                width = parseInt(resize.get('width'), 10);
-            if (inside) {
-                //Called from inside the resize callback
-                height = resize._cache.height;
-                width = resize._cache.width;
-            }
-
-            //Get the top, right, bottom and left positions
-            var region = Dom.getRegion(this.get('element'));
-            //Get the element we are working on
-            var el = resize.getWrapEl();
-
-            //Get the xy position of it
-            var xy = Dom.getXY(el);
-
-            //Set left to x minus left
-            var left = xy[0] - region.left;
-
-            //Set right to right minus x minus width
-            var right = region.right - xy[0] - width;
-
-            //Set top to y minus top
-            var top = xy[1] - region.top;
-
-            //Set bottom to bottom minus y minus height
-            var bottom = region.bottom - xy[1] - height;
-
-            if (top < 0) {
-                top = 0;
-            }
-            
-            resize.dd.setXConstraint(left, right); 
-            resize.dd.setYConstraint(top, bottom);
-
-            return {
-                top: top,
-                right: right,
-                bottom: bottom,
-                left: left
-            };
-
-            
-            
-        },
-        /**
-        * @method getCropCoords
-        * @description Returns the coordinates needed to crop the image
-        * @return {Object} The top, left, height, width and image url of the image being cropped
-        */
-        getCropCoords: function() {
-            var coords = {
-                top: parseInt(this._resize.getWrapEl().style.top, 10),
-                left: parseInt(this._resize.getWrapEl().style.left, 10),
-                height: this._resize._cache.height,
-                width: this._resize._cache.width,
-                image: this._image
-            };
-            return coords;
-        },
-        /**
-        * @method reset
-        * @description Resets the crop element back to it's original position
-        * @return {<a href="YAHOO.widget.ImageCropper.html">YAHOO.widget.ImageCropper</a>} The ImageCropper instance
-        */
-        reset: function() {
-            this._resize.destroy();
-            this._resizeEl.parentNode.removeChild(this._resizeEl);
-            this._createResize();
-            this._setConstraints();
-            return this;
-        },
-
-        /**
-        * @method getEl
-        * @description Get the HTML reference for the image element.
-        * @return {HTMLElement} The image element
-        */      
-        getEl: function() {
-            return this.get('element');
-        },
-        /**
-        * @method getResizeEl
-        * @description Get the HTML reference for the resize element.
-        * @return {HTMLElement} The resize element
-        */      
-        getResizeEl: function() {
-            return this._resizeEl;
-        },
-        /**
-        * @method getWrapEl
-        * @description Get the HTML reference for the wrap element.
-        * @return {HTMLElement} The wrap element
-        */      
-        getWrapEl: function() {
-            return this._wrap;
-        },
-
-        /**
-        * @method getMaskEl
-        * @description Get the HTML reference for the mask element.
-        * @return {HTMLElement} The mask element
-        */      
-        getMaskEl: function() {
-            return this._mask;
-        },
-
-        /**
-        * @method getResizeMaskEl
-        * @description Get the HTML reference for the resizable object's mask element.
-        * @return {HTMLElement} The resize objects mask element.
-        */      
-        getResizeMaskEl: function() {
-            return this._resizeMaskEl;
-        },
-
-        /**
-        * @method getResizeObject
-        * @description Get the Resize Utility object.
-        * @return {<a href="YAHOO.util.Resize.html">YAHOO.util.Resize</a>} The Resize instance
-        */      
-        getResizeObject: function() {
-            return this._resize;
-        },
-
-        /** 
-        * @private
-        * @method init
-        * @description The ImageCropper class's initialization method
-        */        
-        init: function(p_oElement, p_oAttributes) {
-            Crop.superclass.init.call(this, p_oElement, p_oAttributes);
-
-            var id = p_oElement;
-
-            if (!Lang.isString(id)) {
-                if (id.tagName && (id.tagName.toLowerCase() == 'img')) {
-                    id = Dom.generateId(id);                    
-                } else {
-                    return false;
-                }
-            } else {
-                var el = Dom.get(id);
-                if (el.tagName && el.tagName.toLowerCase() == 'img') {
-                    //All good
-                } else {
-                    return false;
-                }
-            }
-            
-
-
-            Crop._instances[id] = this;
-            this._createWrap();
-            this._createMask();
-            this._createResize();
-            this._setConstraints();
-
-        },
-        /**
-        * @private
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create a croppable element.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the widget.
-        */      
-
-        initAttributes: function(attr) {
-            Crop.superclass.initAttributes.call(this, attr);
-
-            /**
-            * @attribute initialXY
-            * @description Array of the XY position that we need to set the crop element to when we build it. Defaults to [10, 10]
-            * @type Array
-            */
-            this.setAttributeConfig('initialXY', {
-                writeOnce: true,
-                validator: YAHOO.lang.isArray,
-                value: attr.initialXY || [10, 10]
-            });
-            /**
-            * @attribute keyTick
-            * @description The pixel tick for the arrow keys, defaults to 1
-            * @type Number
-            */
-            this.setAttributeConfig('keyTick', {
-                validator: YAHOO.lang.isNumber,
-                value: attr.keyTick || 1
-            });
-
-            /**
-            * @attribute shiftKeyTick
-            * @description The pixel tick for shift + the arrow keys, defaults to 10
-            * @type Number
-            */
-            this.setAttributeConfig('shiftKeyTick', {
-                validator: YAHOO.lang.isNumber,
-                value: attr.shiftKeyTick || 10
-            });
-
-            /**
-            * @attribute useKeys
-            * @description Should we use the Arrow keys to position the crop element, defaults to true
-            * @type Boolean
-            */
-            this.setAttributeConfig('useKeys', {
-                validator: YAHOO.lang.isBoolean,
-                value: ((attr.useKeys === false) ? false : true)
-            });
-
-            /**
-            * @attribute status
-            * @description Show the Resize Utility status, defaults to true
-            * @type Boolean
-            */
-            this.setAttributeConfig('status', {
-                validator: YAHOO.lang.isBoolean,
-                value: ((attr.status === false) ? false : true),
-                method: function(status) {
-                    if (this._resize) {
-                        this._resize.set('status', status);
-                    }
-                }
-            });
-
-            /**
-            * @attribute minHeight
-            * @description MinHeight of the crop area, default 50
-            * @type Number
-            */
-            this.setAttributeConfig('minHeight', {
-                validator: YAHOO.lang.isNumber,
-                value: attr.minHeight || 50,
-                method: function(h) {
-                    if (this._resize) {
-                        this._resize.set('minHeight', h);
-                    }
-                }
-            });
-
-            /**
-            * @attribute minWidth
-            * @description MinWidth of the crop area, default 50.
-            * @type Number
-            */
-            this.setAttributeConfig('minWidth', {
-                validator: YAHOO.lang.isNumber,
-                value: attr.minWidth || 50,
-                method: function(w) {
-                    if (this._resize) {
-                        this._resize.set('minWidth', w);
-                    }
-                }
-            });
-
-            /**
-            * @attribute ratio
-            * @description Set the ratio config option of the Resize Utlility, default false
-            * @type Boolean
-            */
-            this.setAttributeConfig('ratio', {
-                validator: YAHOO.lang.isBoolean,
-                value: attr.ratio || false,
-                method: function(r) {
-                    if (this._resize) {
-                        this._resize.set('ratio', r);
-                    }
-                }
-            });
-
-            /**
-            * @attribute ratio
-            * @description Set the autoRatio config option of the Resize Utlility, default true
-            * @type Boolean
-            */
-            this.setAttributeConfig('autoRatio', {
-                validator: YAHOO.lang.isBoolean,
-                value: ((attr.autoRatio === false) ? false : true),
-                method: function(a) {
-                    if (this._resize) {
-                        this._resize.set('autoRatio', a);
-                    }
-                }
-            });
-
-            /**
-            * @attribute initHeight
-            * @description Set the initlal height of the crop area, defaults to 1/4 of the image height
-            * @type Number
-            */
-            this.setAttributeConfig('initHeight', {
-                writeOnce: true,
-                validator: YAHOO.lang.isNumber,
-                value: attr.initHeight || (this.get('element').height / 4)
-            });
-
-            /**
-            * @attribute initWidth
-            * @description Set the initlal width of the crop area, defaults to 1/4 of the image width
-            * @type Number
-            */
-            this.setAttributeConfig('initWidth', {
-                validator: YAHOO.lang.isNumber,
-                writeOnce: true,
-                value: attr.initWidth || (this.get('element').width / 4)
-            });
-
-        },
-        /**
-        * @method destroy
-        * @description Destroys the ImageCropper object and all of it's elements & listeners.
-        */        
-        destroy: function() {
-            this._resize.destroy();
-            this._resizeEl.parentNode.removeChild(this._resizeEl);
-            this._mask.parentNode.removeChild(this._mask);
-            Event.purgeElement(this._wrap);
-            this._wrap.parentNode.replaceChild(this.get('element'), this._wrap);
-            
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                }
-            }
-                       
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the ImageCropper Object.
-        * @return {String}
-        */        
-        toString: function() {
-            if (this.get) {
-                return 'ImageCropper (#' + this.get('id') + ')';
-            }
-            return 'Image Cropper';
-        }
-    });
-
-    YAHOO.widget.ImageCropper = Crop;
-
-/**
-* @event dragEvent
-* @description Fires when the DragDrop dragEvent
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event startResizeEvent
-* @description Fires when when a resize action is started.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event resizeEvent
-* @description Fires on every element resize.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event moveEvent
-* @description Fires on every element move. Inside these methods: _handleKeyPress, _handleDragEvent, _handleResizeEvent
-* @type YAHOO.util.CustomEvent
-*/
-
-})();
-
-YAHOO.register("imagecropper", YAHOO.widget.ImageCropper, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/imageloader/README b/eclipse.org-common/yui/2.6.0/build/imageloader/README
deleted file mode 100644
index b1d364a..0000000
--- a/eclipse.org-common/yui/2.6.0/build/imageloader/README
+++ /dev/null
@@ -1,23 +0,0 @@
-ImageLoader - Release Notes
-
-2.6.0
-   * No Change
-
-2.5.2
-   * No Change
-
-2.5.1
-   * No Change
-
-2.5.0
-   * Group object has an addCustomTrigger() function for adding custom event triggers
-   * PNG background images now support custom properties for AlphaImageLoader
-
-2.4.0
-   * No Change
-
-2.3.1
-   * No Change
-
-2.3.0
-   * Initial release
diff --git a/eclipse.org-common/yui/2.6.0/build/imageloader/imageloader-debug.js b/eclipse.org-common/yui/2.6.0/build/imageloader/imageloader-debug.js
deleted file mode 100644
index 26a2f05..0000000
--- a/eclipse.org-common/yui/2.6.0/build/imageloader/imageloader-debug.js
+++ /dev/null
@@ -1,487 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The image loader is a framework to dynamically load images
- * according to certain triggers, enabling faster load times
- * and a more responsive UI.
- *
- * @module imageloader
- * @namespace YAHOO.util
- */
-
-if (typeof(YAHOO.util.ImageLoader) == 'undefined') {
-	YAHOO.util.ImageLoader = {};
-}
-
-/**
- * A group for images. A group can have one time limit and a series of triggers. Thus the images belonging to this group must share these constraints.
- * @class YAHOO.util.ImageLoader.group
- * @requires YAHOO.util.Dom
- * @requires YAHOO.util.Event
- * @constructor
- * @param {String|HTMLElement}	trigEl	The HTML element id or reference to assign the trigger event to. Can be null for no trigger
- * @param {String}	trigAct The type of event to assign to trigEl. Can be null for no trigger
- * @param {Number}	timeout	Timeout (time limit) length, in seconds. Can be undefined, or <= 0, for no time limit
- */
-YAHOO.util.ImageLoader.group = function(trigEl, trigAct, timeout) {
-	/**
-	 * Name for the group. Only used to identify the group in logging statements
-	 * @property name
-	 * @type String
-	 */
-	this.name = 'unnamed';
-	
-	/**
-	 * Collection of images registered with this group
-	 * @property _imgObjs
-	 * @private
-	 * @type Object
-	 */
-	this._imgObjs = {};
-	
-	/**
-	 * Timeout (time limit) length, in seconds
-	 * @property timeoutLen
-	 * @type Number
-	 */
-	this.timeoutLen = timeout;
-	
-	/**
-	 * Timeout object to keep a handle on the time limit
-	 * @property _timeout
-	 * @private
-	 * @type Object
-	 */
-	this._timeout = null;
-	
-	/**
-	 * Collection of triggers for this group.
-	 * Keeps track of each trigger's element, event, and event-listener-callback "fetch" function
-	 * @property _triggers
-	 * @private
-	 * @type Array
-	 */
-	this._triggers = [];
-
-	/**
-	 * Collection of custom-event triggers for this group.
-	 * Keeps track of each trigger's event object and event-listener-callback "fetch" function
-	 * @property _customTriggers
-	 * @private
-	 * @type Array
-	 */
-	this._customTriggers = [];
-
-	/**
-	 * Flag to check if images are above the fold. If foldConditional is true, the group will check each of its image locations at page load. If any part of the image is within the client viewport, the image is displayed immediately
-	 * @property foldConditional
-	 * @type Boolean
-	 */
-	this.foldConditional = false;
-
-	/**
-	 * Class name that will identify images belonging to the group. This class name will be removed from each element in order to fetch images.
-	 * This class should have, in its CSS style definition, "background:none !important;"
-	 * @property className
-	 * @type String
-	 */
-	this.className = null;
-
-	/**
-	 * HTML elements having the class name that is associated with this group
-	 * Elements are stored during the _foldCheck function and reused later during the fetch function. Gives a slight performance improvement when className and foldConditional are both used
-	 * @property _classImageEls
-	 * @private
-	 * @type Array
-	 */
-	this._classImageEls = null;
-
-	// add a listener to set the time limit in the onload
-	YAHOO.util.Event.addListener(window, 'load', this._onloadTasks, this, true);
-	// add the trigger
-	this.addTrigger(trigEl, trigAct);
-
-};
-
-/**
- * Adds a trigger to the group. Call this with the same style as YAHOO.util.Event.addListener
- * @method addTrigger
- * @param {String|HTMLElement} trigEl  The HTML element id or reference to assign the trigger event to
- * @param {String} trigAct The type of event to assign to trigEl
- */
-YAHOO.util.ImageLoader.group.prototype.addTrigger = function(trigEl, trigAct) {
-	if (! trigEl || ! trigAct) {
-		return;
-	}
-	/* Need to wrap the fetch function. Event Util can't distinguish prototyped functions of different instantiations
-	 *   Leads to this scenario: groupA and groupZ both have window-scroll triggers. groupZ also has a 2-sec timeout (groupA has no timeout).
-	 *   groupZ's timeout fires; we remove the triggers. The removeListener call finds the first window-scroll event with Y.u.IL.p.fetch, which is groupA's. 
-	 *   groupA's trigger is removed and never fires, leaving images unfetched
-	 */
-	var wrappedFetch = function() {
-		this.fetch();
-	};
-	this._triggers.push([trigEl, trigAct, wrappedFetch]);
-	YAHOO.util.Event.addListener(trigEl, trigAct, wrappedFetch, this, true);
-};
-
-/**
- * Adds a custom event trigger to the group.
- * @method addCustomTrigger
- * @param {Object} event A YAHOO.util.CustomEvent object
- */
-YAHOO.util.ImageLoader.group.prototype.addCustomTrigger = function(event) {
-	// make sure we're dealing with a CustomEvent object
-	if (! event || ! event instanceof YAHOO.util.CustomEvent) {
-		return;
-	}
-
-	// see comment in addTrigger()
-	var wrappedFetch = function() {
-		this.fetch();
-	};
-	this._customTriggers.push([event, wrappedFetch]);
-	event.subscribe(wrappedFetch, this, true);
-};
-
-/**
- * Setup to do in the window's onload
- * Initiates time limit for group; executes the fold check for the images
- * @method _onloadTasks
- * @private
- */
-YAHOO.util.ImageLoader.group.prototype._onloadTasks = function() {
-	if (this.timeoutLen && typeof(this.timeoutLen) == 'number' && this.timeoutLen > 0) {
-		this._timeout = setTimeout(this._getFetchTimeout(), this.timeoutLen * 1000);
-	}
-
-	if (this.foldConditional) {
-		this._foldCheck();
-	}
-};
-
-/**
- * Returns the group's fetch method, with the proper closure, for use with setTimeout
- * @method _getFetchTimeout
- * @return {Function}  group's fetch method
- * @private
- */
-YAHOO.util.ImageLoader.group.prototype._getFetchTimeout = function() {
-	var self = this;
-	return function() { self.fetch(); };
-};
-
-/**
- * Registers a background image with the group
- * @method registerBgImage
- * @param {String}	domId	HTML DOM id of the image element
- * @param {String}	url	URL for the image
- * @return {Object}	bgImgObj that was registered, for modifying any attributes in the object
- */
-YAHOO.util.ImageLoader.group.prototype.registerBgImage = function(domId, url) {
-	this._imgObjs[domId] = new YAHOO.util.ImageLoader.bgImgObj(domId, url);
-	return this._imgObjs[domId];
-};
-/**
- * Registers a src image with the group
- * @method registerSrcImage
- * @param {String}	domId	HTML DOM id of the image element
- * @param {String}	url	URL for the image
- * @param {Int}	width	pixel width of the image - defaults to image's natural size
- * @param {Int}	height	pixel height of the image - defaults to image's natural size
- * @return {Object}	srcImgObj that was registered, for modifying any attributes in the object
- */
-YAHOO.util.ImageLoader.group.prototype.registerSrcImage = function(domId, url, width, height) {
-	this._imgObjs[domId] = new YAHOO.util.ImageLoader.srcImgObj(domId, url, width, height);
-	return this._imgObjs[domId];
-};
-/**
- * Registers an alpha-channel-type png background image with the group
- * @method registerPngBgImage
- * @param {String}	domId	HTML DOM id of the image element
- * @param {String}	url	URL for the image
- * @param {Object}  ailProps The AlphaImageLoader properties to be set for the image
- *                    Valid properties are 'sizingMethod' and 'enabled'
- * @return {Object}	pngBgImgObj that was registered, for modifying any attributes in the object
- */
-YAHOO.util.ImageLoader.group.prototype.registerPngBgImage = function(domId, url, ailProps) {
-	this._imgObjs[domId] = new YAHOO.util.ImageLoader.pngBgImgObj(domId, url, ailProps);
-	return this._imgObjs[domId];
-};
-
-/**
- * Displays the images in the group
- * @method fetch
- */
-YAHOO.util.ImageLoader.group.prototype.fetch = function() {
-	YAHOO.log('Fetching images in group: "' + this.name + '".', 'info', 'imageloader');
-
-	clearTimeout(this._timeout);
-	// remove all listeners
-	for (var i=0, len = this._triggers.length; i < len; i++) {
-		YAHOO.util.Event.removeListener(this._triggers[i][0], this._triggers[i][1], this._triggers[i][2]);
-	}
-	// remove custom event subscriptions
-	for (var i=0, len = this._customTriggers.length; i < len; i++) {
-		this._customTriggers[i][0].unsubscribe(this._customTriggers[i][1], this);
-	}
-
-	// fetch whatever we need to by className
-	this._fetchByClass();
-
-	// fetch registered images
-	for (var id in this._imgObjs) {
-		if (YAHOO.lang.hasOwnProperty(this._imgObjs, id)) {
-			this._imgObjs[id].fetch();
-		}
-	}
-};
-
-/**
- * Checks the position of each image in the group. If any part of the image is within the client viewport, shows the image immediately.
- * @method _foldCheck
- * @private
- */
-YAHOO.util.ImageLoader.group.prototype._foldCheck = function() {
-	YAHOO.log('Checking for images above the fold in group: "' + this.name + '"', 'info', 'imageloader');
-	var scrollTop = (document.compatMode != 'CSS1Compat') ? document.body.scrollTop : document.documentElement.scrollTop;
-	var viewHeight = YAHOO.util.Dom.getViewportHeight();
-	var hLimit = scrollTop + viewHeight;
-	var scrollLeft = (document.compatMode != 'CSS1Compat') ? document.body.scrollLeft : document.documentElement.scrollLeft;
-	var viewWidth = YAHOO.util.Dom.getViewportWidth();
-	var wLimit = scrollLeft + viewWidth;
-	for (var id in this._imgObjs) {
-		if (YAHOO.lang.hasOwnProperty(this._imgObjs, id)) {
-			var elPos = YAHOO.util.Dom.getXY(this._imgObjs[id].domId);
-			if (elPos[1] < hLimit && elPos[0] < wLimit) {
-				YAHOO.log('Image with id "' + this._imgObjs[id].domId + '" is above the fold. Fetching image.', 'info', 'imageloader');
-				this._imgObjs[id].fetch();
-			}
-		}
-	}
-	// and by class
-	if (this.className) {
-		this._classImageEls = YAHOO.util.Dom.getElementsByClassName(this.className);
-		for (var i=0, len = this._classImageEls.length; i < len; i++) {
-			var elPos = YAHOO.util.Dom.getXY(this._classImageEls[i]);
-			if (elPos[1] < hLimit && elPos[0] < wLimit) {
-				YAHOO.log('Image with id "' + this._classImageEls[i].id + '" is above the fold. Fetching image. (Image registered by class name with the group - may not have an id.)', 'info', 'imageloader');
-				YAHOO.util.Dom.removeClass(this._classImageEls[i], this.className);
-			}
-		}
-	}
-};
-
-/**
- * Finds all elements in the Dom with the class name specified in the group. Removes the class from the element in order to let the style definitions trigger the image fetching
- * @method _fetchByClass
- * @private
- */
-YAHOO.util.ImageLoader.group.prototype._fetchByClass = function() {
-	if (! this.className) {
-		return;
-	}
-
-	YAHOO.log('Fetching all images with class "' + this.className + '" in group "' + this.name + '".', 'info', 'imageloader');
-	// this._classImageEls may have been set during _foldCheck
-	if (this._classImageEls === null) {
-		this._classImageEls = YAHOO.util.Dom.getElementsByClassName(this.className);
-	}
-	YAHOO.util.Dom.removeClass(this._classImageEls, this.className);
-};
-
-
-/**
- * Base class for image objects to be registered with the groups
- * @class YAHOO.util.ImageLoader.imgObj
- * @constructor
- * @param {String}	domId	HTML DOM id of the image element
- * @param {String}	url	URL for the image
- */
-YAHOO.util.ImageLoader.imgObj = function(domId, url) {
-	/**
-	 * HTML DOM id of the image element
-	 * @property domId
-	 * @type String
-	 */
-	this.domId = domId;
-
-	/**
-	 * URL for the image
-	 * @property url
-	 * @type String
-	 */
-	this.url = url;
-
-	/**
-	 * Pixel width of the image. Will be set as a "width" attribute after the image is fetched.
-	 * Detaults to the natural width of the image.
-	 * Only appropriate with src images
-	 * @property width
-	 * @type Int
-	 */
-	this.width = null;
-
-	/**
-	 * Pixel height of the image. Will be set as a "height" attribute after the image is fetched.
-	 * Detaults to the natural height of the image.
-	 * Only appropriate with src images
-	 * @property height
-	 * @type Int
-	 */
-	this.height = null;
-
-	/**
-	 * Whether the style.visibility should be set to "visible" after the image is fetched.
-	 * Used when setting src images as visibility:hidden prior to image fetching
-	 * @property setVisible
-	 * @type Boolean
-	 */
-	this.setVisible = false;
-
-	/**
-	 * Whether the image has already been fetched. In the case of a foldCondional group, keeps track for when the trigger is fired so images aren't fetched twice
-	 * @property _fetched
-	 * @type Boolean
-	 * @private
-	 */
-	this._fetched = false;
-};
-
-/**
- * Displays the image; puts the URL into the DOM
- * @method fetch
- */
-YAHOO.util.ImageLoader.imgObj.prototype.fetch = function() {
-	if (this._fetched) {
-		return;
-	}
-	var el = document.getElementById(this.domId);
-	if (! el) {
-		return;
-	}
-	YAHOO.log('Fetching image with id "' + this.domId + '".', 'info', 'imageloader');
-	this._applyUrl(el);
-
-	if (this.setVisible) {
-		el.style.visibility = 'visible';
-	}
-	if (this.width) {
-		el.width = this.width;
-	}
-	if (this.height) {
-		el.height = this.height;
-	}
-	this._fetched = true;
-};
-
-/**
- * Inserts the image URL into the DOM so that the image is displayed.
- * Must be overridden by child class
- * @method _applyUrl
- * @param {Object}	el	HTML DOM element
- * @private
- */
-YAHOO.util.ImageLoader.imgObj.prototype._applyUrl = function(el) {
-};
-
-/**
- * Background image object. A background image is one whose URL is specified by "background-image" in the element's style
- * @class YAHOO.util.ImageLoader.bgImgObj
- * @constructor
- * @extends YAHOO.util.ImageLoader.imgObj
- * @param {String}	domId	HTML DOM id of the image element
- * @param {String}	url	URL for the image
- */
-YAHOO.util.ImageLoader.bgImgObj = function(domId, url) {
-	YAHOO.util.ImageLoader.bgImgObj.superclass.constructor.call(this, domId, url);
-};
-
-YAHOO.lang.extend(YAHOO.util.ImageLoader.bgImgObj, YAHOO.util.ImageLoader.imgObj);
-
-/**
- * Inserts the image URL into the DOM so that the image is displayed.
- * Sets style.backgroundImage
- * @method _applyUrl
- * @param {Object}	el	HTML DOM element
- * @private
- */
-YAHOO.util.ImageLoader.bgImgObj.prototype._applyUrl = function(el) {
-	el.style.backgroundImage = "url('" + this.url + "')";
-};
-
-/**
- * Source image object. A source image is one whose URL is specified by a src attribute in the DOM element
- * @class YAHOO.util.ImageLoader.srcImgObj
- * @constructor
- * @extends YAHOO.util.ImageLoader.imgObj
- * @param {String}	domId	HTML DOM id of the image element
- * @param {String}	url	URL for the image
- * @param {Int}	width	pixel width of the image - defaults to image's natural size
- * @param {Int}	height	pixel height of the image - defaults to image's natural size
- */
-YAHOO.util.ImageLoader.srcImgObj = function(domId, url, width, height) {
-	YAHOO.util.ImageLoader.srcImgObj.superclass.constructor.call(this, domId, url);
-	this.width = width;
-	this.height = height;
-};
-
-YAHOO.lang.extend(YAHOO.util.ImageLoader.srcImgObj, YAHOO.util.ImageLoader.imgObj);
-
-/**
- * Inserts the image URL into the DOM so that the image is displayed.
- * Sets src
- * @method _applyUrl
- * @param {Object}	el	HTML DOM element
- * @private
- */
-YAHOO.util.ImageLoader.srcImgObj.prototype._applyUrl = function(el) {
-	el.src = this.url;
-};
-
-/**
- * PNG background image object. A PNG background image is one whose URL is specified through AlphaImageLoader or by "background-image" in the element's style
- * @class YAHOO.util.ImageLoader.pngBgImgObj
- * @constructor
- * @extends YAHOO.util.ImageLoader.imgObj
- * @param {String}	domId	HTML DOM id of the image element
- * @param {String}	url	URL for the image
- * @param {Object}  ailProps The AlphaImageLoader properties to be set for the image
- *                    Valid properties are 'sizingMethod' and 'enabled'
- */
-YAHOO.util.ImageLoader.pngBgImgObj = function(domId, url, ailProps) {
-	YAHOO.util.ImageLoader.pngBgImgObj.superclass.constructor.call(this, domId, url);
-
-	/**
-	 * AlphaImageLoader properties to be set for the image.
-	 * Valid properties are "sizingMethod" and "enabled".
-	 * @property props
-	 * @type Object
-	 */
-	this.props = ailProps || {};
-};
-
-YAHOO.lang.extend(YAHOO.util.ImageLoader.pngBgImgObj, YAHOO.util.ImageLoader.imgObj);
-
-/**
- * Inserts the image URL into the DOM so that the image is displayed.
- * If the browser is determined to be IE6 (or older), sets the AlphaImageLoader src; otherwise sets style.backgroundImage
- * @method _applyUrl
- * @param {Object}	el	HTML DOM element
- * @private
- */
-YAHOO.util.ImageLoader.pngBgImgObj.prototype._applyUrl = function(el) {
-	if (YAHOO.env.ua.ie && YAHOO.env.ua.ie <= 6) {
-		var sizingMethod = (YAHOO.lang.isUndefined(this.props.sizingMethod)) ? 'scale' : this.props.sizingMethod;
-		var enabled = (YAHOO.lang.isUndefined(this.props.enabled)) ? 'true' : this.props.enabled;
-		el.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' + this.url + '", sizingMethod="' + sizingMethod + '", enabled="' + enabled + '")';
-	}
-	else {
-		el.style.backgroundImage = "url('" + this.url + "')";
-	}
-};
-YAHOO.register("imageloader", YAHOO.util.ImageLoader, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/imageloader/imageloader-min.js b/eclipse.org-common/yui/2.6.0/build/imageloader/imageloader-min.js
deleted file mode 100644
index 1d43a21..0000000
--- a/eclipse.org-common/yui/2.6.0/build/imageloader/imageloader-min.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-if(typeof (YAHOO.util.ImageLoader)=="undefined"){YAHOO.util.ImageLoader={};}YAHOO.util.ImageLoader.group=function(A,B,C){this.name="unnamed";this._imgObjs={};this.timeoutLen=C;this._timeout=null;this._triggers=[];this._customTriggers=[];this.foldConditional=false;this.className=null;this._classImageEls=null;YAHOO.util.Event.addListener(window,"load",this._onloadTasks,this,true);this.addTrigger(A,B);};YAHOO.util.ImageLoader.group.prototype.addTrigger=function(B,C){if(!B||!C){return ;}var A=function(){this.fetch();};this._triggers.push([B,C,A]);YAHOO.util.Event.addListener(B,C,A,this,true);};YAHOO.util.ImageLoader.group.prototype.addCustomTrigger=function(B){if(!B||!B instanceof YAHOO.util.CustomEvent){return ;}var A=function(){this.fetch();};this._customTriggers.push([B,A]);B.subscribe(A,this,true);};YAHOO.util.ImageLoader.group.prototype._onloadTasks=function(){if(this.timeoutLen&&typeof (this.timeoutLen)=="number"&&this.timeoutLen>0){this._timeout=setTimeout(this._getFetchTimeout(),this.timeoutLen*1000);}if(this.foldConditional){this._foldCheck();}};YAHOO.util.ImageLoader.group.prototype._getFetchTimeout=function(){var A=this;return function(){A.fetch();};};YAHOO.util.ImageLoader.group.prototype.registerBgImage=function(B,A){this._imgObjs[B]=new YAHOO.util.ImageLoader.bgImgObj(B,A);return this._imgObjs[B];};YAHOO.util.ImageLoader.group.prototype.registerSrcImage=function(D,B,C,A){this._imgObjs[D]=new YAHOO.util.ImageLoader.srcImgObj(D,B,C,A);return this._imgObjs[D];};YAHOO.util.ImageLoader.group.prototype.registerPngBgImage=function(C,B,A){this._imgObjs[C]=new YAHOO.util.ImageLoader.pngBgImgObj(C,B,A);return this._imgObjs[C];};YAHOO.util.ImageLoader.group.prototype.fetch=function(){clearTimeout(this._timeout);for(var B=0,A=this._triggers.length;B<A;B++){YAHOO.util.Event.removeListener(this._triggers[B][0],this._triggers[B][1],this._triggers[B][2]);}for(var B=0,A=this._customTriggers.length;B<A;B++){this._customTriggers[B][0].unsubscribe(this._customTriggers[B][1],this);}this._fetchByClass();for(var C in this._imgObjs){if(YAHOO.lang.hasOwnProperty(this._imgObjs,C)){this._imgObjs[C].fetch();}}};YAHOO.util.ImageLoader.group.prototype._foldCheck=function(){var C=(document.compatMode!="CSS1Compat")?document.body.scrollTop:document.documentElement.scrollTop;var D=YAHOO.util.Dom.getViewportHeight();var A=C+D;var E=(document.compatMode!="CSS1Compat")?document.body.scrollLeft:document.documentElement.scrollLeft;var G=YAHOO.util.Dom.getViewportWidth();var I=E+G;for(var B in this._imgObjs){if(YAHOO.lang.hasOwnProperty(this._imgObjs,B)){var J=YAHOO.util.Dom.getXY(this._imgObjs[B].domId);if(J[1]<A&&J[0]<I){this._imgObjs[B].fetch();}}}if(this.className){this._classImageEls=YAHOO.util.Dom.getElementsByClassName(this.className);for(var F=0,H=this._classImageEls.length;F<H;F++){var J=YAHOO.util.Dom.getXY(this._classImageEls[F]);if(J[1]<A&&J[0]<I){YAHOO.util.Dom.removeClass(this._classImageEls[F],this.className);}}}};YAHOO.util.ImageLoader.group.prototype._fetchByClass=function(){if(!this.className){return ;}if(this._classImageEls===null){this._classImageEls=YAHOO.util.Dom.getElementsByClassName(this.className);}YAHOO.util.Dom.removeClass(this._classImageEls,this.className);};YAHOO.util.ImageLoader.imgObj=function(B,A){this.domId=B;this.url=A;this.width=null;this.height=null;this.setVisible=false;this._fetched=false;};YAHOO.util.ImageLoader.imgObj.prototype.fetch=function(){if(this._fetched){return ;}var A=document.getElementById(this.domId);if(!A){return ;}this._applyUrl(A);if(this.setVisible){A.style.visibility="visible";}if(this.width){A.width=this.width;}if(this.height){A.height=this.height;}this._fetched=true;};YAHOO.util.ImageLoader.imgObj.prototype._applyUrl=function(A){};YAHOO.util.ImageLoader.bgImgObj=function(B,A){YAHOO.util.ImageLoader.bgImgObj.superclass.constructor.call(this,B,A);};YAHOO.lang.extend(YAHOO.util.ImageLoader.bgImgObj,YAHOO.util.ImageLoader.imgObj);YAHOO.util.ImageLoader.bgImgObj.prototype._applyUrl=function(A){A.style.backgroundImage="url('"+this.url+"')";};YAHOO.util.ImageLoader.srcImgObj=function(D,B,C,A){YAHOO.util.ImageLoader.srcImgObj.superclass.constructor.call(this,D,B);this.width=C;this.height=A;};YAHOO.lang.extend(YAHOO.util.ImageLoader.srcImgObj,YAHOO.util.ImageLoader.imgObj);YAHOO.util.ImageLoader.srcImgObj.prototype._applyUrl=function(A){A.src=this.url;};YAHOO.util.ImageLoader.pngBgImgObj=function(C,B,A){YAHOO.util.ImageLoader.pngBgImgObj.superclass.constructor.call(this,C,B);this.props=A||{};};YAHOO.lang.extend(YAHOO.util.ImageLoader.pngBgImgObj,YAHOO.util.ImageLoader.imgObj);YAHOO.util.ImageLoader.pngBgImgObj.prototype._applyUrl=function(B){if(YAHOO.env.ua.ie&&YAHOO.env.ua.ie<=6){var C=(YAHOO.lang.isUndefined(this.props.sizingMethod))?"scale":this.props.sizingMethod;var A=(YAHOO.lang.isUndefined(this.props.enabled))?"true":this.props.enabled;B.style.filter='progid:DXImageTransform.Microsoft.AlphaImageLoader(src="'+this.url+'", sizingMethod="'+C+'", enabled="'+A+'")';}else{B.style.backgroundImage="url('"+this.url+"')";}};YAHOO.register("imageloader",YAHOO.util.ImageLoader,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/imageloader/imageloader.js b/eclipse.org-common/yui/2.6.0/build/imageloader/imageloader.js
deleted file mode 100644
index dc6e43f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/imageloader/imageloader.js
+++ /dev/null
@@ -1,481 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The image loader is a framework to dynamically load images
- * according to certain triggers, enabling faster load times
- * and a more responsive UI.
- *
- * @module imageloader
- * @namespace YAHOO.util
- */
-
-if (typeof(YAHOO.util.ImageLoader) == 'undefined') {
-	YAHOO.util.ImageLoader = {};
-}
-
-/**
- * A group for images. A group can have one time limit and a series of triggers. Thus the images belonging to this group must share these constraints.
- * @class YAHOO.util.ImageLoader.group
- * @requires YAHOO.util.Dom
- * @requires YAHOO.util.Event
- * @constructor
- * @param {String|HTMLElement}	trigEl	The HTML element id or reference to assign the trigger event to. Can be null for no trigger
- * @param {String}	trigAct The type of event to assign to trigEl. Can be null for no trigger
- * @param {Number}	timeout	Timeout (time limit) length, in seconds. Can be undefined, or <= 0, for no time limit
- */
-YAHOO.util.ImageLoader.group = function(trigEl, trigAct, timeout) {
-	/**
-	 * Name for the group. Only used to identify the group in logging statements
-	 * @property name
-	 * @type String
-	 */
-	this.name = 'unnamed';
-	
-	/**
-	 * Collection of images registered with this group
-	 * @property _imgObjs
-	 * @private
-	 * @type Object
-	 */
-	this._imgObjs = {};
-	
-	/**
-	 * Timeout (time limit) length, in seconds
-	 * @property timeoutLen
-	 * @type Number
-	 */
-	this.timeoutLen = timeout;
-	
-	/**
-	 * Timeout object to keep a handle on the time limit
-	 * @property _timeout
-	 * @private
-	 * @type Object
-	 */
-	this._timeout = null;
-	
-	/**
-	 * Collection of triggers for this group.
-	 * Keeps track of each trigger's element, event, and event-listener-callback "fetch" function
-	 * @property _triggers
-	 * @private
-	 * @type Array
-	 */
-	this._triggers = [];
-
-	/**
-	 * Collection of custom-event triggers for this group.
-	 * Keeps track of each trigger's event object and event-listener-callback "fetch" function
-	 * @property _customTriggers
-	 * @private
-	 * @type Array
-	 */
-	this._customTriggers = [];
-
-	/**
-	 * Flag to check if images are above the fold. If foldConditional is true, the group will check each of its image locations at page load. If any part of the image is within the client viewport, the image is displayed immediately
-	 * @property foldConditional
-	 * @type Boolean
-	 */
-	this.foldConditional = false;
-
-	/**
-	 * Class name that will identify images belonging to the group. This class name will be removed from each element in order to fetch images.
-	 * This class should have, in its CSS style definition, "background:none !important;"
-	 * @property className
-	 * @type String
-	 */
-	this.className = null;
-
-	/**
-	 * HTML elements having the class name that is associated with this group
-	 * Elements are stored during the _foldCheck function and reused later during the fetch function. Gives a slight performance improvement when className and foldConditional are both used
-	 * @property _classImageEls
-	 * @private
-	 * @type Array
-	 */
-	this._classImageEls = null;
-
-	// add a listener to set the time limit in the onload
-	YAHOO.util.Event.addListener(window, 'load', this._onloadTasks, this, true);
-	// add the trigger
-	this.addTrigger(trigEl, trigAct);
-
-};
-
-/**
- * Adds a trigger to the group. Call this with the same style as YAHOO.util.Event.addListener
- * @method addTrigger
- * @param {String|HTMLElement} trigEl  The HTML element id or reference to assign the trigger event to
- * @param {String} trigAct The type of event to assign to trigEl
- */
-YAHOO.util.ImageLoader.group.prototype.addTrigger = function(trigEl, trigAct) {
-	if (! trigEl || ! trigAct) {
-		return;
-	}
-	/* Need to wrap the fetch function. Event Util can't distinguish prototyped functions of different instantiations
-	 *   Leads to this scenario: groupA and groupZ both have window-scroll triggers. groupZ also has a 2-sec timeout (groupA has no timeout).
-	 *   groupZ's timeout fires; we remove the triggers. The removeListener call finds the first window-scroll event with Y.u.IL.p.fetch, which is groupA's. 
-	 *   groupA's trigger is removed and never fires, leaving images unfetched
-	 */
-	var wrappedFetch = function() {
-		this.fetch();
-	};
-	this._triggers.push([trigEl, trigAct, wrappedFetch]);
-	YAHOO.util.Event.addListener(trigEl, trigAct, wrappedFetch, this, true);
-};
-
-/**
- * Adds a custom event trigger to the group.
- * @method addCustomTrigger
- * @param {Object} event A YAHOO.util.CustomEvent object
- */
-YAHOO.util.ImageLoader.group.prototype.addCustomTrigger = function(event) {
-	// make sure we're dealing with a CustomEvent object
-	if (! event || ! event instanceof YAHOO.util.CustomEvent) {
-		return;
-	}
-
-	// see comment in addTrigger()
-	var wrappedFetch = function() {
-		this.fetch();
-	};
-	this._customTriggers.push([event, wrappedFetch]);
-	event.subscribe(wrappedFetch, this, true);
-};
-
-/**
- * Setup to do in the window's onload
- * Initiates time limit for group; executes the fold check for the images
- * @method _onloadTasks
- * @private
- */
-YAHOO.util.ImageLoader.group.prototype._onloadTasks = function() {
-	if (this.timeoutLen && typeof(this.timeoutLen) == 'number' && this.timeoutLen > 0) {
-		this._timeout = setTimeout(this._getFetchTimeout(), this.timeoutLen * 1000);
-	}
-
-	if (this.foldConditional) {
-		this._foldCheck();
-	}
-};
-
-/**
- * Returns the group's fetch method, with the proper closure, for use with setTimeout
- * @method _getFetchTimeout
- * @return {Function}  group's fetch method
- * @private
- */
-YAHOO.util.ImageLoader.group.prototype._getFetchTimeout = function() {
-	var self = this;
-	return function() { self.fetch(); };
-};
-
-/**
- * Registers a background image with the group
- * @method registerBgImage
- * @param {String}	domId	HTML DOM id of the image element
- * @param {String}	url	URL for the image
- * @return {Object}	bgImgObj that was registered, for modifying any attributes in the object
- */
-YAHOO.util.ImageLoader.group.prototype.registerBgImage = function(domId, url) {
-	this._imgObjs[domId] = new YAHOO.util.ImageLoader.bgImgObj(domId, url);
-	return this._imgObjs[domId];
-};
-/**
- * Registers a src image with the group
- * @method registerSrcImage
- * @param {String}	domId	HTML DOM id of the image element
- * @param {String}	url	URL for the image
- * @param {Int}	width	pixel width of the image - defaults to image's natural size
- * @param {Int}	height	pixel height of the image - defaults to image's natural size
- * @return {Object}	srcImgObj that was registered, for modifying any attributes in the object
- */
-YAHOO.util.ImageLoader.group.prototype.registerSrcImage = function(domId, url, width, height) {
-	this._imgObjs[domId] = new YAHOO.util.ImageLoader.srcImgObj(domId, url, width, height);
-	return this._imgObjs[domId];
-};
-/**
- * Registers an alpha-channel-type png background image with the group
- * @method registerPngBgImage
- * @param {String}	domId	HTML DOM id of the image element
- * @param {String}	url	URL for the image
- * @param {Object}  ailProps The AlphaImageLoader properties to be set for the image
- *                    Valid properties are 'sizingMethod' and 'enabled'
- * @return {Object}	pngBgImgObj that was registered, for modifying any attributes in the object
- */
-YAHOO.util.ImageLoader.group.prototype.registerPngBgImage = function(domId, url, ailProps) {
-	this._imgObjs[domId] = new YAHOO.util.ImageLoader.pngBgImgObj(domId, url, ailProps);
-	return this._imgObjs[domId];
-};
-
-/**
- * Displays the images in the group
- * @method fetch
- */
-YAHOO.util.ImageLoader.group.prototype.fetch = function() {
-
-	clearTimeout(this._timeout);
-	// remove all listeners
-	for (var i=0, len = this._triggers.length; i < len; i++) {
-		YAHOO.util.Event.removeListener(this._triggers[i][0], this._triggers[i][1], this._triggers[i][2]);
-	}
-	// remove custom event subscriptions
-	for (var i=0, len = this._customTriggers.length; i < len; i++) {
-		this._customTriggers[i][0].unsubscribe(this._customTriggers[i][1], this);
-	}
-
-	// fetch whatever we need to by className
-	this._fetchByClass();
-
-	// fetch registered images
-	for (var id in this._imgObjs) {
-		if (YAHOO.lang.hasOwnProperty(this._imgObjs, id)) {
-			this._imgObjs[id].fetch();
-		}
-	}
-};
-
-/**
- * Checks the position of each image in the group. If any part of the image is within the client viewport, shows the image immediately.
- * @method _foldCheck
- * @private
- */
-YAHOO.util.ImageLoader.group.prototype._foldCheck = function() {
-	var scrollTop = (document.compatMode != 'CSS1Compat') ? document.body.scrollTop : document.documentElement.scrollTop;
-	var viewHeight = YAHOO.util.Dom.getViewportHeight();
-	var hLimit = scrollTop + viewHeight;
-	var scrollLeft = (document.compatMode != 'CSS1Compat') ? document.body.scrollLeft : document.documentElement.scrollLeft;
-	var viewWidth = YAHOO.util.Dom.getViewportWidth();
-	var wLimit = scrollLeft + viewWidth;
-	for (var id in this._imgObjs) {
-		if (YAHOO.lang.hasOwnProperty(this._imgObjs, id)) {
-			var elPos = YAHOO.util.Dom.getXY(this._imgObjs[id].domId);
-			if (elPos[1] < hLimit && elPos[0] < wLimit) {
-				this._imgObjs[id].fetch();
-			}
-		}
-	}
-	// and by class
-	if (this.className) {
-		this._classImageEls = YAHOO.util.Dom.getElementsByClassName(this.className);
-		for (var i=0, len = this._classImageEls.length; i < len; i++) {
-			var elPos = YAHOO.util.Dom.getXY(this._classImageEls[i]);
-			if (elPos[1] < hLimit && elPos[0] < wLimit) {
-				YAHOO.util.Dom.removeClass(this._classImageEls[i], this.className);
-			}
-		}
-	}
-};
-
-/**
- * Finds all elements in the Dom with the class name specified in the group. Removes the class from the element in order to let the style definitions trigger the image fetching
- * @method _fetchByClass
- * @private
- */
-YAHOO.util.ImageLoader.group.prototype._fetchByClass = function() {
-	if (! this.className) {
-		return;
-	}
-
-	// this._classImageEls may have been set during _foldCheck
-	if (this._classImageEls === null) {
-		this._classImageEls = YAHOO.util.Dom.getElementsByClassName(this.className);
-	}
-	YAHOO.util.Dom.removeClass(this._classImageEls, this.className);
-};
-
-
-/**
- * Base class for image objects to be registered with the groups
- * @class YAHOO.util.ImageLoader.imgObj
- * @constructor
- * @param {String}	domId	HTML DOM id of the image element
- * @param {String}	url	URL for the image
- */
-YAHOO.util.ImageLoader.imgObj = function(domId, url) {
-	/**
-	 * HTML DOM id of the image element
-	 * @property domId
-	 * @type String
-	 */
-	this.domId = domId;
-
-	/**
-	 * URL for the image
-	 * @property url
-	 * @type String
-	 */
-	this.url = url;
-
-	/**
-	 * Pixel width of the image. Will be set as a "width" attribute after the image is fetched.
-	 * Detaults to the natural width of the image.
-	 * Only appropriate with src images
-	 * @property width
-	 * @type Int
-	 */
-	this.width = null;
-
-	/**
-	 * Pixel height of the image. Will be set as a "height" attribute after the image is fetched.
-	 * Detaults to the natural height of the image.
-	 * Only appropriate with src images
-	 * @property height
-	 * @type Int
-	 */
-	this.height = null;
-
-	/**
-	 * Whether the style.visibility should be set to "visible" after the image is fetched.
-	 * Used when setting src images as visibility:hidden prior to image fetching
-	 * @property setVisible
-	 * @type Boolean
-	 */
-	this.setVisible = false;
-
-	/**
-	 * Whether the image has already been fetched. In the case of a foldCondional group, keeps track for when the trigger is fired so images aren't fetched twice
-	 * @property _fetched
-	 * @type Boolean
-	 * @private
-	 */
-	this._fetched = false;
-};
-
-/**
- * Displays the image; puts the URL into the DOM
- * @method fetch
- */
-YAHOO.util.ImageLoader.imgObj.prototype.fetch = function() {
-	if (this._fetched) {
-		return;
-	}
-	var el = document.getElementById(this.domId);
-	if (! el) {
-		return;
-	}
-	this._applyUrl(el);
-
-	if (this.setVisible) {
-		el.style.visibility = 'visible';
-	}
-	if (this.width) {
-		el.width = this.width;
-	}
-	if (this.height) {
-		el.height = this.height;
-	}
-	this._fetched = true;
-};
-
-/**
- * Inserts the image URL into the DOM so that the image is displayed.
- * Must be overridden by child class
- * @method _applyUrl
- * @param {Object}	el	HTML DOM element
- * @private
- */
-YAHOO.util.ImageLoader.imgObj.prototype._applyUrl = function(el) {
-};
-
-/**
- * Background image object. A background image is one whose URL is specified by "background-image" in the element's style
- * @class YAHOO.util.ImageLoader.bgImgObj
- * @constructor
- * @extends YAHOO.util.ImageLoader.imgObj
- * @param {String}	domId	HTML DOM id of the image element
- * @param {String}	url	URL for the image
- */
-YAHOO.util.ImageLoader.bgImgObj = function(domId, url) {
-	YAHOO.util.ImageLoader.bgImgObj.superclass.constructor.call(this, domId, url);
-};
-
-YAHOO.lang.extend(YAHOO.util.ImageLoader.bgImgObj, YAHOO.util.ImageLoader.imgObj);
-
-/**
- * Inserts the image URL into the DOM so that the image is displayed.
- * Sets style.backgroundImage
- * @method _applyUrl
- * @param {Object}	el	HTML DOM element
- * @private
- */
-YAHOO.util.ImageLoader.bgImgObj.prototype._applyUrl = function(el) {
-	el.style.backgroundImage = "url('" + this.url + "')";
-};
-
-/**
- * Source image object. A source image is one whose URL is specified by a src attribute in the DOM element
- * @class YAHOO.util.ImageLoader.srcImgObj
- * @constructor
- * @extends YAHOO.util.ImageLoader.imgObj
- * @param {String}	domId	HTML DOM id of the image element
- * @param {String}	url	URL for the image
- * @param {Int}	width	pixel width of the image - defaults to image's natural size
- * @param {Int}	height	pixel height of the image - defaults to image's natural size
- */
-YAHOO.util.ImageLoader.srcImgObj = function(domId, url, width, height) {
-	YAHOO.util.ImageLoader.srcImgObj.superclass.constructor.call(this, domId, url);
-	this.width = width;
-	this.height = height;
-};
-
-YAHOO.lang.extend(YAHOO.util.ImageLoader.srcImgObj, YAHOO.util.ImageLoader.imgObj);
-
-/**
- * Inserts the image URL into the DOM so that the image is displayed.
- * Sets src
- * @method _applyUrl
- * @param {Object}	el	HTML DOM element
- * @private
- */
-YAHOO.util.ImageLoader.srcImgObj.prototype._applyUrl = function(el) {
-	el.src = this.url;
-};
-
-/**
- * PNG background image object. A PNG background image is one whose URL is specified through AlphaImageLoader or by "background-image" in the element's style
- * @class YAHOO.util.ImageLoader.pngBgImgObj
- * @constructor
- * @extends YAHOO.util.ImageLoader.imgObj
- * @param {String}	domId	HTML DOM id of the image element
- * @param {String}	url	URL for the image
- * @param {Object}  ailProps The AlphaImageLoader properties to be set for the image
- *                    Valid properties are 'sizingMethod' and 'enabled'
- */
-YAHOO.util.ImageLoader.pngBgImgObj = function(domId, url, ailProps) {
-	YAHOO.util.ImageLoader.pngBgImgObj.superclass.constructor.call(this, domId, url);
-
-	/**
-	 * AlphaImageLoader properties to be set for the image.
-	 * Valid properties are "sizingMethod" and "enabled".
-	 * @property props
-	 * @type Object
-	 */
-	this.props = ailProps || {};
-};
-
-YAHOO.lang.extend(YAHOO.util.ImageLoader.pngBgImgObj, YAHOO.util.ImageLoader.imgObj);
-
-/**
- * Inserts the image URL into the DOM so that the image is displayed.
- * If the browser is determined to be IE6 (or older), sets the AlphaImageLoader src; otherwise sets style.backgroundImage
- * @method _applyUrl
- * @param {Object}	el	HTML DOM element
- * @private
- */
-YAHOO.util.ImageLoader.pngBgImgObj.prototype._applyUrl = function(el) {
-	if (YAHOO.env.ua.ie && YAHOO.env.ua.ie <= 6) {
-		var sizingMethod = (YAHOO.lang.isUndefined(this.props.sizingMethod)) ? 'scale' : this.props.sizingMethod;
-		var enabled = (YAHOO.lang.isUndefined(this.props.enabled)) ? 'true' : this.props.enabled;
-		el.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' + this.url + '", sizingMethod="' + sizingMethod + '", enabled="' + enabled + '")';
-	}
-	else {
-		el.style.backgroundImage = "url('" + this.url + "')";
-	}
-};
-YAHOO.register("imageloader", YAHOO.util.ImageLoader, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/json/README b/eclipse.org-common/yui/2.6.0/build/json/README
deleted file mode 100644
index 7cd5a1e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/json/README
+++ /dev/null
@@ -1,22 +0,0 @@
-JSON Utility - Release Notes
-
-2.6.0
-    * Security updates
-    * Architecture change to make lang.JSON object more durable
-    * stringify whitelist keys scrubbed for duplicates
-    * Object keys sorted in stringify
-
-2.5.1
-    * Updated validation regex to address poor unicode escape treatment in FF
-    * Updated special characters RegExp
-    * Changed stringification to account for odd responses to typeof
-
-2.5.0
-    * Restructured for customization and readability
-    * Extracted isValid method to test a JSON string
-    * Extracted dateToString method to allow overriding with custom serialization format
-    * Added stringToDate method to reconstitute Date instances from default JSON UTC date strings.  Use this in a filter method passed to lang.JSON.parse
-    * fixed walk method so filters are properly applied
-
-2.4.0
-    * Initial release
diff --git a/eclipse.org-common/yui/2.6.0/build/json/json-debug.js b/eclipse.org-common/yui/2.6.0/build/json/json-debug.js
deleted file mode 100644
index b4c3bc2..0000000
--- a/eclipse.org-common/yui/2.6.0/build/json/json-debug.js
+++ /dev/null
@@ -1,396 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * Provides methods to parse JSON strings and convert objects to JSON strings.
- * @module json
- * @class JSON
- * @static
- */
-YAHOO.lang.JSON = (function () {
-
-var l = YAHOO.lang,
-
-    /**
-     * Replace certain Unicode characters that JavaScript may handle incorrectly
-     * during eval--either by deleting them or treating them as line
-     * endings--with escape sequences.
-     * IMPORTANT NOTE: This regex will be used to modify the input if a match is
-     * found.
-     * @property _UNICODE_EXCEPTIONS
-     * @type {RegExp}
-     * @private
-     */
-    _UNICODE_EXCEPTIONS = /[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
-
-    /**
-     * First step in the validation.  Regex used to replace all escape
-     * sequences (i.e. "\\", etc) with '@' characters (a non-JSON character).
-     * @property _ESCAPES
-     * @type {RegExp}
-     * @static
-     * @private
-     */
-    _ESCAPES = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,
-
-    /**
-     * Second step in the validation.  Regex used to replace all simple
-     * values with ']' characters.
-     * @property _VALUES
-     * @type {RegExp}
-     * @static
-     * @private
-     */
-    _VALUES  = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,
-
-    /**
-     * Third step in the validation.  Regex used to remove all open square
-     * brackets following a colon, comma, or at the beginning of the string.
-     * @property _BRACKETS
-     * @type {RegExp}
-     * @static
-     * @private
-     */
-    _BRACKETS = /(?:^|:|,)(?:\s*\[)+/g,
-
-    /**
-     * Final step in the validation.  Regex used to test the string left after
-     * all previous replacements for invalid characters.
-     * @property _INVALID
-     * @type {RegExp}
-     * @static
-     * @private
-     */
-    _INVALID  = /^[\],:{}\s]*$/,
-
-    /**
-     * Regex used to replace special characters in strings for JSON
-     * stringification.
-     * @property _SPECIAL_CHARS
-     * @type {RegExp}
-     * @static
-     * @private
-     */
-    _SPECIAL_CHARS = /[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
-
-    /**
-     * Character substitution map for common escapes and special characters.
-     * @property _CHARS
-     * @type {Object}
-     * @static
-     * @private
-     */
-    _CHARS = {
-        '\b': '\\b',
-        '\t': '\\t',
-        '\n': '\\n',
-        '\f': '\\f',
-        '\r': '\\r',
-        '"' : '\\"',
-        '\\': '\\\\'
-    };
-
-/**
- * Traverses nested objects, applying a filter or reviver function to
- * each value.  The value returned from the function will replace the
- * original value in the key:value pair.  If the value returned is
- * undefined, the key will be omitted from the returned object.
- * @method _revive
- * @param data {MIXED} Any JavaScript data
- * @param reviver {Function} filter or mutation function
- * @return {MIXED} The results of the filtered/mutated data structure
- * @private
- */
-function _revive(data, reviver) {
-    var walk = function (o,key) {
-        var k,v,value = o[key];
-        if (value && typeof value === 'object') {
-            for (k in value) {
-                if (l.hasOwnProperty(value,k)) {
-                    v = walk(value, k);
-                    if (v === undefined) {
-                        delete value[k];
-                    } else {
-                        value[k] = v;
-                    }
-                }
-            }
-        }
-        return reviver.call(o,key,value);
-    };
-
-    return typeof reviver === 'function' ? walk({'':data},'') : data;
-}
-
-/**
- * Escapes a special character to a safe Unicode representation
- * @method _char
- * @param c {String} single character to escape
- * @return {String} safe Unicode escape
- */
-function _char(c) {
-    if (!_CHARS[c]) {
-        _CHARS[c] =  '\\u'+('0000'+(+(c.charCodeAt(0))).toString(16)).slice(-4);
-    }
-    return _CHARS[c];
-}
-
-/**
- * Replace certain Unicode characters that may be handled incorrectly by
- * some browser implementations.
- * @method _prepare
- * @param s {String} parse input
- * @return {String} sanitized JSON string ready to be validated/parsed
- * @private
- */
-function _prepare(s) {
-    return s.replace(_UNICODE_EXCEPTIONS, _char);
-}
-
-/**
- * Four step determination whether a string is valid JSON.  In three steps,
- * escape sequences, safe values, and properly placed open square brackets
- * are replaced with placeholders or removed.  Then in the final step, the
- * result of all these replacements is checked for invalid characters.
- * @method _isValid
- * @param str {String} JSON string to be tested
- * @return {boolean} is the string safe for eval?
- * @static
- */
-function _isValid(str) {
-    return l.isString(str) &&
-            _INVALID.test(str.
-            replace(_ESCAPES,'@').
-            replace(_VALUES,']').
-            replace(_BRACKETS,''));
-}
-
-/**
- * Enclose escaped strings in quotes
- * @method _string
- * @param s {String} string to wrap
- * @return {String} '"'+s+'"' after s has had special characters escaped
- * @private
- */
-function _string(s) {
-    return '"' + s.replace(_SPECIAL_CHARS, _char) + '"';
-}
-
-/**
- * Worker function used by public stringify.
- * @method _stringify
- * @param h {Object} object holding the key
- * @param key {String} String key in object h to serialize
- * @param depth {Number} depth to serialize
- * @param w {Array|Function} array of whitelisted keys OR replacer function
- * @param pstack {Array} used to protect against recursion
- * @return {String} serialized version of o
- */
-function _stringify(h,key,d,w,pstack) {
-    var o = typeof w === 'function' ? w.call(h,key,h[key]) : h[key],
-        i,len,j, // array iteration
-        k,v,     // object iteration
-        isArray, // forking in typeof 'object'
-        a;       // composition array for performance over string concat
-
-    if (o instanceof Date) {
-        o = l.JSON.dateToString(o);
-    } else if (o instanceof String || o instanceof Boolean || o instanceof Number) {
-        o = o.valueOf();
-    }
-
-    switch (typeof o) {
-        case 'string' : return _string(o);
-        case 'number' : return isFinite(o) ? String(o) : 'null';
-        case 'boolean': return String(o);
-        case 'object' :
-            // null
-            if (o === null) {
-                return 'null';
-            }
-
-            // Check for cyclical references
-            for (i = pstack.length - 1; i >= 0; --i) {
-                if (pstack[i] === o) {
-                    return 'null';
-                }
-            }
-
-            // Add the object to the processing stack
-            pstack[pstack.length] = o;
-
-            a = [];
-            isArray = l.isArray(o);
-
-            // Only recurse if we're above depth config
-            if (d > 0) {
-                // Array
-                if (isArray) {
-                    for (i = o.length - 1; i >= 0; --i) {
-                        a[i] = _stringify(o,i,d-1,w,pstack) || 'null';
-                    }
-
-                // Object
-                } else {
-                    j = 0;
-                    // Use whitelist keys if provided as an array
-                    if (l.isArray(w)) {
-                        for (i = 0, len = w.length; i < len; ++i) {
-                            k = w[i];
-                            v = _stringify(o,k,d-1,w,pstack);
-                            if (v) {
-                                a[j++] = _string(k) + ':' + v;
-                            }
-                        }
-                    } else {
-                        for (k in o) {
-                            if (typeof k === 'string' && l.hasOwnProperty(o,k)) {
-                                v = _stringify(o,k,d-1,w,pstack);
-                                if (v) {
-                                    a[j++] = _string(k) + ':' + v;
-                                }
-                            }
-                        }
-                    }
-
-                    // sort object keys for easier readability
-                    a.sort();
-                }
-            }
-
-            // remove the object from the stack
-            pstack.pop();
-
-            return isArray ? '['+a.join(',')+']' : '{'+a.join(',')+'}';
-    }
-
-    return undefined; // invalid input
-}
-
-// Return the public API
-return {
-    /**
-     * Four step determination whether a string is valid JSON.  In three steps,
-     * escape sequences, safe values, and properly placed open square brackets
-     * are replaced with placeholders or removed.  Then in the final step, the
-     * result of all these replacements is checked for invalid characters.
-     * @method isValid
-     * @param str {String} JSON string to be tested
-     * @return {boolean} is the string safe for eval?
-     * @static
-     */
-    isValid : function (s) {
-        return _isValid(_prepare(s));
-    },
-
-    /**
-     * Parse a JSON string, returning the native JavaScript representation.
-     * Only minor modifications from http://www.json.org/json2.js.
-     * @param s {string} JSON string data
-     * @param reviver {function} (optional) function(k,v) passed each key:value
-     *          pair of object literals, allowing pruning or altering values
-     * @return {MIXED} the native JavaScript representation of the JSON string
-     * @throws SyntaxError
-     * @method parse
-     * @static
-     */
-    parse : function (s,reviver) {
-        // sanitize
-        s = _prepare(s);
-
-        // Ensure valid JSON
-        if (_isValid(s)) {
-            // Eval the text into a JavaScript data structure, apply the
-            // reviver function if provided, and return
-            return _revive( eval('(' + s + ')'), reviver );
-        }
-
-        // The text is not valid JSON
-        throw new SyntaxError('parseJSON');
-    },
-
-    /**
-     * Converts an arbitrary value to a JSON string representation.
-     * Cyclical object or array references are replaced with null.
-     * If a whitelist is provided, only matching object keys will be included.
-     * If a depth limit is provided, objects and arrays at that depth will
-     * be stringified as empty.
-     * @method stringify
-     * @param o {MIXED} any arbitrary object to convert to JSON string
-     * @param w {Array|Function} (optional) whitelist of acceptable object keys to include OR a function(value,key) to alter values before serialization
-     * @param d {number} (optional) depth limit to recurse objects/arrays (practical minimum 1)
-     * @return {string} JSON string representation of the input
-     * @static
-     */
-    stringify : function (o,w,d) {
-        if (o !== undefined) {
-            // Ensure whitelist keys are unique (bug 2110391)
-            if (l.isArray(w)) {
-                w = (function (a) {
-                    var uniq=[],map={},v,i,j,len;
-                    for (i=0,j=0,len=a.length; i<len; ++i) {
-                        v = a[i];
-                        if (typeof v === 'string' && map[v] === undefined) {
-                            uniq[(map[v] = j++)] = v;
-                        }
-                    }
-                    return uniq;
-                })(w);
-            }
-
-            // Default depth to POSITIVE_INFINITY
-            d = d >= 0 ? d : 1/0;
-
-            // process the input
-            return _stringify({'':o},'',d,w,[]);
-        }
-
-        return undefined;
-    },
-
-    /**
-     * Serializes a Date instance as a UTC date string.  Used internally by
-     * stringify.  Override this method if you need Dates serialized in a
-     * different format.
-     * @method dateToString
-     * @param d {Date} The Date to serialize
-     * @return {String} stringified Date in UTC format YYYY-MM-DDTHH:mm:SSZ
-     * @static
-     */
-    dateToString : function (d) {
-        function _zeroPad(v) {
-            return v < 10 ? '0' + v : v;
-        }
-
-        return d.getUTCFullYear()         + '-' +
-            _zeroPad(d.getUTCMonth() + 1) + '-' +
-            _zeroPad(d.getUTCDate())      + 'T' +
-            _zeroPad(d.getUTCHours())     + ':' +
-            _zeroPad(d.getUTCMinutes())   + ':' +
-            _zeroPad(d.getUTCSeconds())   + 'Z';
-    },
-
-    /**
-     * Reconstitute Date instances from the default JSON UTC serialization.
-     * Reference this from a reviver function to rebuild Dates during the
-     * parse operation.
-     * @method stringToDate
-     * @param str {String} String serialization of a Date
-     * @return {Date}
-     */
-    stringToDate : function (str) {
-        if (/^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})Z$/.test(str)) {
-            var d = new Date();
-            d.setUTCFullYear(RegExp.$1, (RegExp.$2|0)-1, RegExp.$3);
-            d.setUTCHours(RegExp.$4, RegExp.$5, RegExp.$6);
-            return d;
-        }
-        return str;
-    }
-};
-
-})();
-YAHOO.register("json", YAHOO.lang.JSON, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/json/json-min.js b/eclipse.org-common/yui/2.6.0/build/json/json-min.js
deleted file mode 100644
index 3700631..0000000
--- a/eclipse.org-common/yui/2.6.0/build/json/json-min.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.lang.JSON=(function(){var l=YAHOO.lang,_UNICODE_EXCEPTIONS=/[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,_ESCAPES=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,_VALUES=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,_BRACKETS=/(?:^|:|,)(?:\s*\[)+/g,_INVALID=/^[\],:{}\s]*$/,_SPECIAL_CHARS=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,_CHARS={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"};function _revive(data,reviver){var walk=function(o,key){var k,v,value=o[key];if(value&&typeof value==="object"){for(k in value){if(l.hasOwnProperty(value,k)){v=walk(value,k);if(v===undefined){delete value[k];}else{value[k]=v;}}}}return reviver.call(o,key,value);};return typeof reviver==="function"?walk({"":data},""):data;}function _char(c){if(!_CHARS[c]){_CHARS[c]="\\u"+("0000"+(+(c.charCodeAt(0))).toString(16)).slice(-4);}return _CHARS[c];}function _prepare(s){return s.replace(_UNICODE_EXCEPTIONS,_char);}function _isValid(str){return l.isString(str)&&_INVALID.test(str.replace(_ESCAPES,"@").replace(_VALUES,"]").replace(_BRACKETS,""));}function _string(s){return'"'+s.replace(_SPECIAL_CHARS,_char)+'"';}function _stringify(h,key,d,w,pstack){var o=typeof w==="function"?w.call(h,key,h[key]):h[key],i,len,j,k,v,isArray,a;if(o instanceof Date){o=l.JSON.dateToString(o);}else{if(o instanceof String||o instanceof Boolean||o instanceof Number){o=o.valueOf();}}switch(typeof o){case"string":return _string(o);case"number":return isFinite(o)?String(o):"null";case"boolean":return String(o);case"object":if(o===null){return"null";}for(i=pstack.length-1;i>=0;--i){if(pstack[i]===o){return"null";}}pstack[pstack.length]=o;a=[];isArray=l.isArray(o);if(d>0){if(isArray){for(i=o.length-1;i>=0;--i){a[i]=_stringify(o,i,d-1,w,pstack)||"null";}}else{j=0;if(l.isArray(w)){for(i=0,len=w.length;i<len;++i){k=w[i];v=_stringify(o,k,d-1,w,pstack);if(v){a[j++]=_string(k)+":"+v;}}}else{for(k in o){if(typeof k==="string"&&l.hasOwnProperty(o,k)){v=_stringify(o,k,d-1,w,pstack);if(v){a[j++]=_string(k)+":"+v;}}}}a.sort();}}pstack.pop();return isArray?"["+a.join(",")+"]":"{"+a.join(",")+"}";}return undefined;}return{isValid:function(s){return _isValid(_prepare(s));},parse:function(s,reviver){s=_prepare(s);if(_isValid(s)){return _revive(eval("("+s+")"),reviver);}throw new SyntaxError("parseJSON");},stringify:function(o,w,d){if(o!==undefined){if(l.isArray(w)){w=(function(a){var uniq=[],map={},v,i,j,len;for(i=0,j=0,len=a.length;i<len;++i){v=a[i];if(typeof v==="string"&&map[v]===undefined){uniq[(map[v]=j++)]=v;}}return uniq;})(w);}d=d>=0?d:1/0;return _stringify({"":o},"",d,w,[]);}return undefined;},dateToString:function(d){function _zeroPad(v){return v<10?"0"+v:v;}return d.getUTCFullYear()+"-"+_zeroPad(d.getUTCMonth()+1)+"-"+_zeroPad(d.getUTCDate())+"T"+_zeroPad(d.getUTCHours())+":"+_zeroPad(d.getUTCMinutes())+":"+_zeroPad(d.getUTCSeconds())+"Z";},stringToDate:function(str){if(/^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})Z$/.test(str)){var d=new Date();d.setUTCFullYear(RegExp.$1,(RegExp.$2|0)-1,RegExp.$3);d.setUTCHours(RegExp.$4,RegExp.$5,RegExp.$6);return d;}return str;}};})();YAHOO.register("json",YAHOO.lang.JSON,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/json/json.js b/eclipse.org-common/yui/2.6.0/build/json/json.js
deleted file mode 100644
index b4c3bc2..0000000
--- a/eclipse.org-common/yui/2.6.0/build/json/json.js
+++ /dev/null
@@ -1,396 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * Provides methods to parse JSON strings and convert objects to JSON strings.
- * @module json
- * @class JSON
- * @static
- */
-YAHOO.lang.JSON = (function () {
-
-var l = YAHOO.lang,
-
-    /**
-     * Replace certain Unicode characters that JavaScript may handle incorrectly
-     * during eval--either by deleting them or treating them as line
-     * endings--with escape sequences.
-     * IMPORTANT NOTE: This regex will be used to modify the input if a match is
-     * found.
-     * @property _UNICODE_EXCEPTIONS
-     * @type {RegExp}
-     * @private
-     */
-    _UNICODE_EXCEPTIONS = /[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
-
-    /**
-     * First step in the validation.  Regex used to replace all escape
-     * sequences (i.e. "\\", etc) with '@' characters (a non-JSON character).
-     * @property _ESCAPES
-     * @type {RegExp}
-     * @static
-     * @private
-     */
-    _ESCAPES = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,
-
-    /**
-     * Second step in the validation.  Regex used to replace all simple
-     * values with ']' characters.
-     * @property _VALUES
-     * @type {RegExp}
-     * @static
-     * @private
-     */
-    _VALUES  = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,
-
-    /**
-     * Third step in the validation.  Regex used to remove all open square
-     * brackets following a colon, comma, or at the beginning of the string.
-     * @property _BRACKETS
-     * @type {RegExp}
-     * @static
-     * @private
-     */
-    _BRACKETS = /(?:^|:|,)(?:\s*\[)+/g,
-
-    /**
-     * Final step in the validation.  Regex used to test the string left after
-     * all previous replacements for invalid characters.
-     * @property _INVALID
-     * @type {RegExp}
-     * @static
-     * @private
-     */
-    _INVALID  = /^[\],:{}\s]*$/,
-
-    /**
-     * Regex used to replace special characters in strings for JSON
-     * stringification.
-     * @property _SPECIAL_CHARS
-     * @type {RegExp}
-     * @static
-     * @private
-     */
-    _SPECIAL_CHARS = /[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
-
-    /**
-     * Character substitution map for common escapes and special characters.
-     * @property _CHARS
-     * @type {Object}
-     * @static
-     * @private
-     */
-    _CHARS = {
-        '\b': '\\b',
-        '\t': '\\t',
-        '\n': '\\n',
-        '\f': '\\f',
-        '\r': '\\r',
-        '"' : '\\"',
-        '\\': '\\\\'
-    };
-
-/**
- * Traverses nested objects, applying a filter or reviver function to
- * each value.  The value returned from the function will replace the
- * original value in the key:value pair.  If the value returned is
- * undefined, the key will be omitted from the returned object.
- * @method _revive
- * @param data {MIXED} Any JavaScript data
- * @param reviver {Function} filter or mutation function
- * @return {MIXED} The results of the filtered/mutated data structure
- * @private
- */
-function _revive(data, reviver) {
-    var walk = function (o,key) {
-        var k,v,value = o[key];
-        if (value && typeof value === 'object') {
-            for (k in value) {
-                if (l.hasOwnProperty(value,k)) {
-                    v = walk(value, k);
-                    if (v === undefined) {
-                        delete value[k];
-                    } else {
-                        value[k] = v;
-                    }
-                }
-            }
-        }
-        return reviver.call(o,key,value);
-    };
-
-    return typeof reviver === 'function' ? walk({'':data},'') : data;
-}
-
-/**
- * Escapes a special character to a safe Unicode representation
- * @method _char
- * @param c {String} single character to escape
- * @return {String} safe Unicode escape
- */
-function _char(c) {
-    if (!_CHARS[c]) {
-        _CHARS[c] =  '\\u'+('0000'+(+(c.charCodeAt(0))).toString(16)).slice(-4);
-    }
-    return _CHARS[c];
-}
-
-/**
- * Replace certain Unicode characters that may be handled incorrectly by
- * some browser implementations.
- * @method _prepare
- * @param s {String} parse input
- * @return {String} sanitized JSON string ready to be validated/parsed
- * @private
- */
-function _prepare(s) {
-    return s.replace(_UNICODE_EXCEPTIONS, _char);
-}
-
-/**
- * Four step determination whether a string is valid JSON.  In three steps,
- * escape sequences, safe values, and properly placed open square brackets
- * are replaced with placeholders or removed.  Then in the final step, the
- * result of all these replacements is checked for invalid characters.
- * @method _isValid
- * @param str {String} JSON string to be tested
- * @return {boolean} is the string safe for eval?
- * @static
- */
-function _isValid(str) {
-    return l.isString(str) &&
-            _INVALID.test(str.
-            replace(_ESCAPES,'@').
-            replace(_VALUES,']').
-            replace(_BRACKETS,''));
-}
-
-/**
- * Enclose escaped strings in quotes
- * @method _string
- * @param s {String} string to wrap
- * @return {String} '"'+s+'"' after s has had special characters escaped
- * @private
- */
-function _string(s) {
-    return '"' + s.replace(_SPECIAL_CHARS, _char) + '"';
-}
-
-/**
- * Worker function used by public stringify.
- * @method _stringify
- * @param h {Object} object holding the key
- * @param key {String} String key in object h to serialize
- * @param depth {Number} depth to serialize
- * @param w {Array|Function} array of whitelisted keys OR replacer function
- * @param pstack {Array} used to protect against recursion
- * @return {String} serialized version of o
- */
-function _stringify(h,key,d,w,pstack) {
-    var o = typeof w === 'function' ? w.call(h,key,h[key]) : h[key],
-        i,len,j, // array iteration
-        k,v,     // object iteration
-        isArray, // forking in typeof 'object'
-        a;       // composition array for performance over string concat
-
-    if (o instanceof Date) {
-        o = l.JSON.dateToString(o);
-    } else if (o instanceof String || o instanceof Boolean || o instanceof Number) {
-        o = o.valueOf();
-    }
-
-    switch (typeof o) {
-        case 'string' : return _string(o);
-        case 'number' : return isFinite(o) ? String(o) : 'null';
-        case 'boolean': return String(o);
-        case 'object' :
-            // null
-            if (o === null) {
-                return 'null';
-            }
-
-            // Check for cyclical references
-            for (i = pstack.length - 1; i >= 0; --i) {
-                if (pstack[i] === o) {
-                    return 'null';
-                }
-            }
-
-            // Add the object to the processing stack
-            pstack[pstack.length] = o;
-
-            a = [];
-            isArray = l.isArray(o);
-
-            // Only recurse if we're above depth config
-            if (d > 0) {
-                // Array
-                if (isArray) {
-                    for (i = o.length - 1; i >= 0; --i) {
-                        a[i] = _stringify(o,i,d-1,w,pstack) || 'null';
-                    }
-
-                // Object
-                } else {
-                    j = 0;
-                    // Use whitelist keys if provided as an array
-                    if (l.isArray(w)) {
-                        for (i = 0, len = w.length; i < len; ++i) {
-                            k = w[i];
-                            v = _stringify(o,k,d-1,w,pstack);
-                            if (v) {
-                                a[j++] = _string(k) + ':' + v;
-                            }
-                        }
-                    } else {
-                        for (k in o) {
-                            if (typeof k === 'string' && l.hasOwnProperty(o,k)) {
-                                v = _stringify(o,k,d-1,w,pstack);
-                                if (v) {
-                                    a[j++] = _string(k) + ':' + v;
-                                }
-                            }
-                        }
-                    }
-
-                    // sort object keys for easier readability
-                    a.sort();
-                }
-            }
-
-            // remove the object from the stack
-            pstack.pop();
-
-            return isArray ? '['+a.join(',')+']' : '{'+a.join(',')+'}';
-    }
-
-    return undefined; // invalid input
-}
-
-// Return the public API
-return {
-    /**
-     * Four step determination whether a string is valid JSON.  In three steps,
-     * escape sequences, safe values, and properly placed open square brackets
-     * are replaced with placeholders or removed.  Then in the final step, the
-     * result of all these replacements is checked for invalid characters.
-     * @method isValid
-     * @param str {String} JSON string to be tested
-     * @return {boolean} is the string safe for eval?
-     * @static
-     */
-    isValid : function (s) {
-        return _isValid(_prepare(s));
-    },
-
-    /**
-     * Parse a JSON string, returning the native JavaScript representation.
-     * Only minor modifications from http://www.json.org/json2.js.
-     * @param s {string} JSON string data
-     * @param reviver {function} (optional) function(k,v) passed each key:value
-     *          pair of object literals, allowing pruning or altering values
-     * @return {MIXED} the native JavaScript representation of the JSON string
-     * @throws SyntaxError
-     * @method parse
-     * @static
-     */
-    parse : function (s,reviver) {
-        // sanitize
-        s = _prepare(s);
-
-        // Ensure valid JSON
-        if (_isValid(s)) {
-            // Eval the text into a JavaScript data structure, apply the
-            // reviver function if provided, and return
-            return _revive( eval('(' + s + ')'), reviver );
-        }
-
-        // The text is not valid JSON
-        throw new SyntaxError('parseJSON');
-    },
-
-    /**
-     * Converts an arbitrary value to a JSON string representation.
-     * Cyclical object or array references are replaced with null.
-     * If a whitelist is provided, only matching object keys will be included.
-     * If a depth limit is provided, objects and arrays at that depth will
-     * be stringified as empty.
-     * @method stringify
-     * @param o {MIXED} any arbitrary object to convert to JSON string
-     * @param w {Array|Function} (optional) whitelist of acceptable object keys to include OR a function(value,key) to alter values before serialization
-     * @param d {number} (optional) depth limit to recurse objects/arrays (practical minimum 1)
-     * @return {string} JSON string representation of the input
-     * @static
-     */
-    stringify : function (o,w,d) {
-        if (o !== undefined) {
-            // Ensure whitelist keys are unique (bug 2110391)
-            if (l.isArray(w)) {
-                w = (function (a) {
-                    var uniq=[],map={},v,i,j,len;
-                    for (i=0,j=0,len=a.length; i<len; ++i) {
-                        v = a[i];
-                        if (typeof v === 'string' && map[v] === undefined) {
-                            uniq[(map[v] = j++)] = v;
-                        }
-                    }
-                    return uniq;
-                })(w);
-            }
-
-            // Default depth to POSITIVE_INFINITY
-            d = d >= 0 ? d : 1/0;
-
-            // process the input
-            return _stringify({'':o},'',d,w,[]);
-        }
-
-        return undefined;
-    },
-
-    /**
-     * Serializes a Date instance as a UTC date string.  Used internally by
-     * stringify.  Override this method if you need Dates serialized in a
-     * different format.
-     * @method dateToString
-     * @param d {Date} The Date to serialize
-     * @return {String} stringified Date in UTC format YYYY-MM-DDTHH:mm:SSZ
-     * @static
-     */
-    dateToString : function (d) {
-        function _zeroPad(v) {
-            return v < 10 ? '0' + v : v;
-        }
-
-        return d.getUTCFullYear()         + '-' +
-            _zeroPad(d.getUTCMonth() + 1) + '-' +
-            _zeroPad(d.getUTCDate())      + 'T' +
-            _zeroPad(d.getUTCHours())     + ':' +
-            _zeroPad(d.getUTCMinutes())   + ':' +
-            _zeroPad(d.getUTCSeconds())   + 'Z';
-    },
-
-    /**
-     * Reconstitute Date instances from the default JSON UTC serialization.
-     * Reference this from a reviver function to rebuild Dates during the
-     * parse operation.
-     * @method stringToDate
-     * @param str {String} String serialization of a Date
-     * @return {Date}
-     */
-    stringToDate : function (str) {
-        if (/^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})Z$/.test(str)) {
-            var d = new Date();
-            d.setUTCFullYear(RegExp.$1, (RegExp.$2|0)-1, RegExp.$3);
-            d.setUTCHours(RegExp.$4, RegExp.$5, RegExp.$6);
-            return d;
-        }
-        return str;
-    }
-};
-
-})();
-YAHOO.register("json", YAHOO.lang.JSON, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/layout/README b/eclipse.org-common/yui/2.6.0/build/layout/README
deleted file mode 100644
index be143b0..0000000
--- a/eclipse.org-common/yui/2.6.0/build/layout/README
+++ /dev/null
@@ -1,28 +0,0 @@
-**** version 2.6.0 ****
-
-    Enhancements:
-        * Added support for the new useShim config on Resize objects
-        * Added support (via Caridy) for ajax content retrieval
-        * Promoted to GA Status - beta flag removed from files.
-
-    Bug Fixes:
-        * 1972411 - [SF 1961290 ] Conflict w/prototype.js 1.6.2.0
-        * 2156112 - [SF 2059693 ] collapse property doesn't work properly without header
-        * 2166981 - [SF 1997164 ] Wrong unit size after expand if animation is false
-        * 1828802 - Remove over use of overflow hidden
-	    * 1837810 - [SF 1925551] Blank space after expanding LayoutUnit
-        * 1837812 - [SF 1927265 ] Layout needs destroy clean-up method
-	    * 1939616 - [SF 1964055 ] mouseup during resize of layout unit on top of an iframe
-
-**** version 2.5.1 ***
-    Bug Fixes:
-        * 1756637 - handling of scrollbar on panel resize is inconsistent
-        * 1767234 - [SF 1900012] LayoutUnit loses scrolled state on resize
-        * 1770567 - [SF 1901621] Left Unit Disappears on Expand
-        * 1778721 - [SF 1904062] Layout Manager documentation error
-        * 1781653 - Don't assume element with id "doc" is the body
-        * Removed the requirement for the collapse config option in order to programatically collapse a unit.   
-
-**** version 2.5.0 ***
-
-Initial Release
diff --git a/eclipse.org-common/yui/2.6.0/build/layout/assets/layout-core.css b/eclipse.org-common/yui/2.6.0/build/layout/assets/layout-core.css
deleted file mode 100644
index ae9c3e6..0000000
--- a/eclipse.org-common/yui/2.6.0/build/layout/assets/layout-core.css
+++ /dev/null
@@ -1,158 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-layout-loading {
-    visibility: hidden;
-}
-
-body.yui-layout {
-    overflow: hidden;
-    position: relative;
-    padding: 0;
-    margin: 0;
-}
-
-.yui-layout-doc {
-    position: relative;
-    overflow: hidden;
-    padding: 0;
-    margin: 0;
-}
-
-.yui-layout-unit {
-    height: 50px;
-    width: 50px;
-    padding: 0;
-    margin: 0;
-    float: none;
-    z-index: 0;
-    /*overflow: hidden;*/
-}
-
-.yui-layout-unit-top {
-    position: absolute;
-    top: 0;
-    left: 0;
-    width: 100%;
-}
-
-.yui-layout-unit-left {
-    position: absolute;
-    top: 0;
-    left: 0;
-}
-
-.yui-layout-unit-right {
-    position: absolute;
-    top: 0;
-    right: 0;
-}
-
-.yui-layout-unit-bottom {
-    position: absolute;
-    bottom: 0;
-    left: 0;
-    width: 100%;
-}
-
-.yui-layout-unit-center {
-    position: absolute;
-    top: 0;
-    left: 0;
-    width: 100%;
-}
-
-.yui-layout div.yui-layout-hd {
-    position: absolute;
-    top: 0;
-    left: 0;
-    zoom: 1;
-    width: 100%;
-    /*overflow: hidden;*/
-}
-.yui-layout div.yui-layout-bd {
-    position: absolute;
-    top: 0;
-    left: 0;
-    zoom: 1;
-    width: 100%;
-    /*overflow: hidden;*/
-}
-.yui-layout .yui-layout-noscroll div.yui-layout-bd {
-    overflow: hidden;
-}
-.yui-layout .yui-layout-scroll div.yui-layout-bd {
-    overflow: auto;
-}
-.yui-layout div.yui-layout-ft {
-    position: absolute;
-    bottom: 0;
-    left: 0;
-    width: 100%;
-    zoom: 1;
-    /*overflow: hidden;*/
-}
-
-.yui-layout .yui-layout-unit div.yui-layout-hd h2 {
-    text-align: left;
-}
-
-.yui-layout .yui-layout-unit div.yui-layout-hd .collapse {
-    cursor: pointer;
-    height: 13px;
-    position: absolute;
-    right: 2px;
-    top: 2px;
-    width: 17px;
-    font-size: 0;
-}
-
-.yui-layout .yui-layout-unit div.yui-layout-hd .close {
-    cursor: pointer;
-    height: 13px;
-    position: absolute;
-    right: 2px;
-    top: 2px;
-    width: 17px;
-    font-size: 0;
-}
-.yui-layout .yui-layout-unit div.yui-layout-hd .collapse-close {
-    right: 25px;
-}
-
-
-.yui-layout .yui-layout-clip {
-    position: absolute;
-    height: 20px;
-    background-color: #c0c0c0;
-    display: none;
-}
-
-.yui-layout .yui-layout-clip .collapse {
-    cursor: pointer;
-    height: 13px;
-    position: absolute;
-    right: 2px;
-    top: 2px;
-    width: 17px;
-    font-size: 0px;
-}
-
-.yui-layout .yui-layout-wrap {
-    height: 100%;
-    width: 100%;
-    position: absolute;
-    left: 0;
-}
-
-/*
-.yui-layout .yui-layout-unit .yui-content {
-    overflow: hidden;
-}
-.yui-layout .yui-layout-unit .yui-layout-scroll {
-    overflow: auto;
-}
-*/
diff --git a/eclipse.org-common/yui/2.6.0/build/layout/assets/skins/sam/layout-skin.css b/eclipse.org-common/yui/2.6.0/build/layout/assets/skins/sam/layout-skin.css
deleted file mode 100644
index f14f399..0000000
--- a/eclipse.org-common/yui/2.6.0/build/layout/assets/skins/sam/layout-skin.css
+++ /dev/null
@@ -1,198 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* Remove the dotted border on the resize proxy */
-.yui-skin-sam .yui-layout .yui-resize-proxy {
-    border: none;
-    font-size: 0;
-    margin: 0;
-    padding: 0;
-}
-/* During resize, hide the handles */
-.yui-skin-sam .yui-layout .yui-resize-resizing .yui-resize-handle {
-    visibility: hidden;
-}
-/* Style the div inside the resize proxy */
-.yui-skin-sam .yui-layout .yui-resize-proxy div {
-    position: absolute;
-    border: 1px solid #808080;
-    background-color: #EDF5FF;
-}
-/* Set the color of the Active resize handle */
-.yui-skin-sam .yui-layout .yui-resize .yui-resize-handle-active {
-    /*background-color: #EDF5FF;*/
-}
-/* Styles for the left handle */
-.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-l {
-    width: 5px;
-    height: 100%;
-    top: 0;
-    left: 0;
-}
-/* Styles for the right handle */
-.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-r {
-    width: 5px;
-    top: 0;
-    right: 0;
-    height: 100%;
-    position: absolute;
-    zoom: 1;
-}
-/* Styles for the bottom handle */
-.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-b {
-    width: 100%;
-    bottom: 0;
-    left: 0;
-    height: 5px;
-}
-/* Styles for the top handle */
-.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-t {
-    width: 100%;
-    top: 0;
-    left: 0;
-    height: 5px;
-}
-
-/* Left Collapse button */
-.yui-skin-sam .yui-layout .yui-layout-unit-left div.yui-layout-hd .collapse {
-    background: transparent url(layout_sprite.png) no-repeat -20px -160px;
-    border: 1px solid #808080;
-}
-/* Left Collapsed Expand Button */
-.yui-skin-sam .yui-layout .yui-layout-clip-left .collapse {
-    background: transparent url(layout_sprite.png) no-repeat -20px -140px;
-    border: 1px solid #808080;
-}
-/* Right Collapse Button */
-.yui-skin-sam .yui-layout .yui-layout-unit-right div.yui-layout-hd .collapse {
-    background: transparent url(layout_sprite.png) no-repeat -20px -200px;
-    border: 1px solid #808080;
-}
-/* Right Collapsed Expand Button */
-.yui-skin-sam .yui-layout .yui-layout-clip-right .collapse {
-    background: transparent url(layout_sprite.png) no-repeat -20px -120px;
-    border: 1px solid #808080;
-}
-/* Top Collapse Button */
-.yui-skin-sam .yui-layout .yui-layout-unit-top div.yui-layout-hd .collapse {
-    background: transparent url(layout_sprite.png) no-repeat -20px -220px;
-    border: 1px solid #808080;
-}
-/* Top Collapsed Expand Button */
-.yui-skin-sam .yui-layout .yui-layout-clip-top .collapse {
-    background: transparent url(layout_sprite.png) no-repeat -20px -240px;
-    border: 1px solid #808080;
-}
-/* Bottom Collapse Button */
-.yui-skin-sam .yui-layout .yui-layout-unit-bottom div.yui-layout-hd .collapse {
-    background: transparent url(layout_sprite.png) no-repeat -20px -260px;
-    border: 1px solid #808080;
-}
-/* Bottom Collapsed Expand Button */
-.yui-skin-sam .yui-layout .yui-layout-clip-bottom .collapse {
-    background: transparent url(layout_sprite.png) no-repeat -20px -180px;
-    border: 1px solid #808080;
-}
-/* Close Button */
-.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-hd .close {
-    background: transparent url(layout_sprite.png) no-repeat -20px -100px;
-    border: 1px solid #808080;
-}
-
-/* Give the header a blue backgorund */
-.yui-skin-sam .yui-layout .yui-layout-hd {
-    background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1400px;
-    border: 1px solid #808080;
-}
-/* Set the background color */
-.yui-skin-sam .yui-layout {
-    background-color: #EDF5FF;
-}
-/* Style the text in the header */
-.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-hd h2 {
-    font-weight: bold;
-    color: #fff;
-    padding: 3px;
-}
-/* Style the body */
-.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-bd {
-    border: 1px solid #808080;
-    border-bottom: none;
-    border-top: none;
-    *border-bottom-width: 0;
-    *border-top-width: 0;
-    background-color: #f2f2f2;
-    text-align: left;
-}
-/* Add a border to the bottom of the body because there is no footer */
-.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-bd-noft {
-    border-bottom: 1px solid #808080;
-}
-/* Add a border to the top of the body because there is no header */
-.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-bd-nohd {
-    border-top: 1px solid #808080;
-}
-
-/* Style the Clip */
-.yui-skin-sam .yui-layout .yui-layout-clip {
-    position: absolute;
-    height: 20px;
-    background-color: #EDF5FF;
-    display: none;
-    border: 1px solid #808080;
-}
-/* Style the footer */
-.yui-skin-sam .yui-layout div.yui-layout-ft {
-    border: 1px solid #808080;
-    border-top: none;
-    *border-top-width: 0;
-    background-color: #f2f2f2;
-}
-
-/* Remove the color from the resize handle */
-.yui-skin-sam .yui-layout-unit .yui-resize-handle {
-    background-color: transparent;
-}
-/* Reposition the handles */
-.yui-skin-sam .yui-layout-unit .yui-resize-handle-r {
-    right: 0;
-    top: 0;
-    background-image: none;
-}
-.yui-skin-sam .yui-layout-unit .yui-resize-handle-l {
-    left: 0;
-    top: 0;
-    background-image: none;
-}
-.yui-skin-sam .yui-layout-unit .yui-resize-handle-b {
-    right: 0;
-    bottom: 0;
-    background-image: none;
-}
-.yui-skin-sam .yui-layout-unit .yui-resize-handle-t {
-    right: 0;
-    top: 0;
-    background-image: none;
-}
-/* Add the gripper */
-.yui-skin-sam .yui-layout-unit .yui-resize-handle-r .yui-layout-resize-knob,
-.yui-skin-sam .yui-layout-unit .yui-resize-handle-l .yui-layout-resize-knob {
-    position: absolute;
-    height: 16px;
-    width: 6px;
-    top: 45%;
-    left: 0px;
-    background: transparent url(layout_sprite.png) no-repeat 0 -5px;
-}
-/* Add the gripper */
-.yui-skin-sam .yui-layout-unit .yui-resize-handle-t .yui-layout-resize-knob,
-.yui-skin-sam .yui-layout-unit .yui-resize-handle-b .yui-layout-resize-knob {
-    position: absolute;
-    height: 6px;
-    width: 16px;
-    left: 45%;
-    background: transparent url(layout_sprite.png) no-repeat -20px 0;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/layout/assets/skins/sam/layout.css b/eclipse.org-common/yui/2.6.0/build/layout/assets/skins/sam/layout.css
deleted file mode 100644
index 38ac306..0000000
--- a/eclipse.org-common/yui/2.6.0/build/layout/assets/skins/sam/layout.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-layout-loading{visibility:hidden;}body.yui-layout{overflow:hidden;position:relative;padding:0;margin:0;}.yui-layout-doc{position:relative;overflow:hidden;padding:0;margin:0;}.yui-layout-unit{height:50px;width:50px;padding:0;margin:0;float:none;z-index:0;}.yui-layout-unit-top{position:absolute;top:0;left:0;width:100%;}.yui-layout-unit-left{position:absolute;top:0;left:0;}.yui-layout-unit-right{position:absolute;top:0;right:0;}.yui-layout-unit-bottom{position:absolute;bottom:0;left:0;width:100%;}.yui-layout-unit-center{position:absolute;top:0;left:0;width:100%;}.yui-layout div.yui-layout-hd{position:absolute;top:0;left:0;zoom:1;width:100%;}.yui-layout div.yui-layout-bd{position:absolute;top:0;left:0;zoom:1;width:100%;}.yui-layout .yui-layout-noscroll div.yui-layout-bd{overflow:hidden;}.yui-layout .yui-layout-scroll div.yui-layout-bd{overflow:auto;}.yui-layout div.yui-layout-ft{position:absolute;bottom:0;left:0;width:100%;zoom:1;}.yui-layout .yui-layout-unit div.yui-layout-hd h2{text-align:left;}.yui-layout .yui-layout-unit div.yui-layout-hd .collapse{cursor:pointer;height:13px;position:absolute;right:2px;top:2px;width:17px;font-size:0;}.yui-layout .yui-layout-unit div.yui-layout-hd .close{cursor:pointer;height:13px;position:absolute;right:2px;top:2px;width:17px;font-size:0;}.yui-layout .yui-layout-unit div.yui-layout-hd .collapse-close{right:25px;}.yui-layout .yui-layout-clip{position:absolute;height:20px;background-color:#c0c0c0;display:none;}.yui-layout .yui-layout-clip .collapse{cursor:pointer;height:13px;position:absolute;right:2px;top:2px;width:17px;font-size:0px;}.yui-layout .yui-layout-wrap{height:100%;width:100%;position:absolute;left:0;}.yui-skin-sam .yui-layout .yui-resize-proxy{border:none;font-size:0;margin:0;padding:0;}.yui-skin-sam .yui-layout .yui-resize-resizing .yui-resize-handle{visibility:hidden;}.yui-skin-sam .yui-layout .yui-resize-proxy div{position:absolute;border:1px solid #808080;background-color:#EDF5FF;}.yui-skin-sam .yui-layout .yui-resize .yui-resize-handle-active{}.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-l{width:5px;height:100%;top:0;left:0;}.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-r{width:5px;top:0;right:0;height:100%;position:absolute;zoom:1;}.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-b{width:100%;bottom:0;left:0;height:5px;}.yui-skin-sam .yui-layout .yui-resize-proxy .yui-layout-handle-t{width:100%;top:0;left:0;height:5px;}.yui-skin-sam .yui-layout .yui-layout-unit-left div.yui-layout-hd .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -160px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip-left .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -140px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit-right div.yui-layout-hd .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -200px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip-right .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -120px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit-top div.yui-layout-hd .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -220px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip-top .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -240px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit-bottom div.yui-layout-hd .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -260px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip-bottom .collapse{background:transparent url(layout_sprite.png) no-repeat -20px -180px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-hd .close{background:transparent url(layout_sprite.png) no-repeat -20px -100px;border:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-hd{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1400px;border:1px solid #808080;}.yui-skin-sam .yui-layout{background-color:#EDF5FF;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-hd h2{font-weight:bold;color:#fff;padding:3px;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-bd{border:1px solid #808080;border-bottom:none;border-top:none;*border-bottom-width:0;*border-top-width:0;background-color:#f2f2f2;text-align:left;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-bd-noft{border-bottom:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-bd-nohd{border-top:1px solid #808080;}.yui-skin-sam .yui-layout .yui-layout-clip{position:absolute;height:20px;background-color:#EDF5FF;display:none;border:1px solid #808080;}.yui-skin-sam .yui-layout div.yui-layout-ft{border:1px solid #808080;border-top:none;*border-top-width:0;background-color:#f2f2f2;}.yui-skin-sam .yui-layout-unit .yui-resize-handle{background-color:transparent;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-r{right:0;top:0;background-image:none;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-l{left:0;top:0;background-image:none;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-b{right:0;bottom:0;background-image:none;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-t{right:0;top:0;background-image:none;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-r .yui-layout-resize-knob,.yui-skin-sam .yui-layout-unit .yui-resize-handle-l .yui-layout-resize-knob{position:absolute;height:16px;width:6px;top:45%;left:0px;background:transparent url(layout_sprite.png) no-repeat 0 -5px;}.yui-skin-sam .yui-layout-unit .yui-resize-handle-t .yui-layout-resize-knob,.yui-skin-sam .yui-layout-unit .yui-resize-handle-b .yui-layout-resize-knob{position:absolute;height:6px;width:16px;left:45%;background:transparent url(layout_sprite.png) no-repeat -20px 0;}
diff --git a/eclipse.org-common/yui/2.6.0/build/layout/assets/skins/sam/layout_sprite.png b/eclipse.org-common/yui/2.6.0/build/layout/assets/skins/sam/layout_sprite.png
deleted file mode 100644
index d6fce3c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/layout/assets/skins/sam/layout_sprite.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/layout/layout-debug.js b/eclipse.org-common/yui/2.6.0/build/layout/layout-debug.js
deleted file mode 100644
index 81f31d5..0000000
--- a/eclipse.org-common/yui/2.6.0/build/layout/layout-debug.js
+++ /dev/null
@@ -1,2245 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * @description <p>Provides a fixed layout containing, top, bottom, left, right and center layout units. It can be applied to either the body or an element.</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event
- * @module layout
- * @beta
- */
-(function() {
-    var Dom = YAHOO.util.Dom,
-        Event = YAHOO.util.Event,
-        Lang = YAHOO.lang;
-
-    /**
-     * @constructor
-     * @class Layout
-     * @extends YAHOO.util.Element
-     * @description <p>Provides a fixed layout containing, top, bottom, left, right and center layout units. It can be applied to either the body or an element.</p>
-     * @param {String/HTMLElement} el The element to make contain a layout.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-
-    var Layout = function(el, config) {
-        YAHOO.log('Creating the Layout Object', 'info', 'Layout');
-        if (Lang.isObject(el) && !el.tagName) {
-            config = el;
-            el = null;
-        }
-        if (Lang.isString(el)) {
-            if (Dom.get(el)) {
-                el = Dom.get(el);
-            }
-        }
-        if (!el) {
-            el = document.body;
-        }
-
-        var oConfig = {
-            element: el,
-            attributes: config || {}
-        };
-
-        Layout.superclass.constructor.call(this, oConfig.element, oConfig.attributes);    
-    };
-
-    /**
-    * @private
-    * @static
-    * @property _instances
-    * @description Internal hash table for all layout instances
-    * @type Object
-    */ 
-    Layout._instances = {};
-    /**
-    * @static
-    * @method getLayoutById 
-    * @description Get's a layout object by the HTML id of the element associated with the Layout object.
-    * @return {Object} The Layout Object
-    */ 
-    Layout.getLayoutById = function(id) {
-        if (Layout._instances[id]) {
-            return Layout._instances[id];
-        }
-        return false;
-    };
-
-    YAHOO.extend(Layout, YAHOO.util.Element, {
-        /**
-        * @property browser
-        * @description A modified version of the YAHOO.env.ua object
-        * @type Object
-        */
-        browser: function() {
-            var b = YAHOO.env.ua;
-            b.standardsMode = false;
-            b.secure = false;
-            return b;
-        }(),
-        /**
-        * @private
-        * @property _units
-        * @description An object literal that contains a list of units in the layout
-        * @type Object
-        */
-        _rendered: null,
-        /**
-        * @private
-        * @property _rendered
-        * @description Set to true when the layout is rendered
-        * @type Boolean
-        */
-        _rendered: null,
-        /**
-        * @private
-        * @property _zIndex
-        * @description The zIndex to set all LayoutUnits to
-        * @type Number
-        */
-        _zIndex: null,
-        /**
-        * @private
-        * @property _sizes
-        * @description A collection of the current sizes of all usable LayoutUnits to be used for calculations
-        * @type Object
-        */
-        _sizes: null,
-        /**
-        * @private
-        * @method _setBodySize
-        * @param {Boolean} set If set to false, it will NOT set the size, just perform the calculations (used for collapsing units)
-        * @description Used to set the body size of the layout, sets the height and width of the parent container
-        */
-        _setBodySize: function(set) {
-            var h = 0, w = 0;
-            set = ((set === false) ? false : true);
-
-            if (this._isBody) {
-                h = Dom.getClientHeight();
-                w = Dom.getClientWidth();
-            } else {
-                h = parseInt(this.getStyle('height'), 10);
-                w = parseInt(this.getStyle('width'), 10);
-                if (isNaN(w)) {
-                    w = this.get('element').clientWidth;
-                }
-                if (isNaN(h)) {
-                    h = this.get('element').clientHeight;
-                }
-            }
-            if (this.get('minWidth')) {
-                if (w < this.get('minWidth')) {
-                    w = this.get('minWidth');
-                }
-            }
-            if (this.get('minHeight')) {
-                if (h < this.get('minHeight')) {
-                    h = this.get('minHeight');
-                }
-            }
-            if (set) {
-                Dom.setStyle(this._doc, 'height', h + 'px');
-                Dom.setStyle(this._doc, 'width', w + 'px');
-            }
-            this._sizes.doc = { h: h, w: w };
-            YAHOO.log('Setting Body height and width: (' + h + ',' + w + ')', 'info', 'Layout');
-            this._setSides(set);
-        },
-        /**
-        * @private
-        * @method _setSides
-        * @param {Boolean} set If set to false, it will NOT set the size, just perform the calculations (used for collapsing units)
-        * @description Used to set the size and position of the left, right, top and bottom units
-        */
-        _setSides: function(set) {
-            YAHOO.log('Setting side units', 'info', 'Layout');
-            var h1 = ((this._units.top) ? this._units.top.get('height') : 0),
-                h2 = ((this._units.bottom) ? this._units.bottom.get('height') : 0),
-                h = this._sizes.doc.h,
-                w = this._sizes.doc.w;
-            set = ((set === false) ? false : true);
-
-            this._sizes.top = {
-                h: h1, w: ((this._units.top) ? w : 0),
-                t: 0
-            };
-            this._sizes.bottom = {
-                h: h2, w: ((this._units.bottom) ? w : 0)
-            };
-            
-            var newH = (h - (h1 + h2));
-
-            this._sizes.left = {
-                h: newH, w: ((this._units.left) ? this._units.left.get('width') : 0)
-            };
-            this._sizes.right = {
-                h: newH, w: ((this._units.right) ? this._units.right.get('width') : 0),
-                l: ((this._units.right) ? (w - this._units.right.get('width')) : 0),
-                t: ((this._units.top) ? this._sizes.top.h : 0)
-            };
-            
-            if (this._units.right && set) {
-                this._units.right.set('top', this._sizes.right.t);
-                if (!this._units.right._collapsing) { 
-                    this._units.right.set('left', this._sizes.right.l);
-                }
-                this._units.right.set('height', this._sizes.right.h, true);
-            }
-            if (this._units.left) {
-                this._sizes.left.l = 0;
-                if (this._units.top) {
-                    this._sizes.left.t = this._sizes.top.h;
-                } else {
-                    this._sizes.left.t = 0;
-                }
-                if (set) {
-                    this._units.left.set('top', this._sizes.left.t);
-                    this._units.left.set('height', this._sizes.left.h, true);
-                    this._units.left.set('left', 0);
-                }
-            }
-            if (this._units.bottom) {
-                this._sizes.bottom.t = this._sizes.top.h + this._sizes.left.h;
-                if (set) {
-                    this._units.bottom.set('top', this._sizes.bottom.t);
-                    this._units.bottom.set('width', this._sizes.bottom.w, true);
-                }
-            }
-            if (this._units.top) {
-                if (set) {
-                    this._units.top.set('width', this._sizes.top.w, true);
-                }
-            }
-            YAHOO.log('Setting sizes: (' + Lang.dump(this._sizes) + ')', 'info', 'Layout');
-            this._setCenter(set);
-        },
-        /**
-        * @private
-        * @method _setCenter
-        * @param {Boolean} set If set to false, it will NOT set the size, just perform the calculations (used for collapsing units)
-        * @description Used to set the size and position of the center unit
-        */
-        _setCenter: function(set) {
-            set = ((set === false) ? false : true);
-            var h = this._sizes.left.h;
-            var w = (this._sizes.doc.w - (this._sizes.left.w + this._sizes.right.w));
-            if (set) {
-                this._units.center.set('height', h, true);
-                this._units.center.set('width', w, true);
-                this._units.center.set('top', this._sizes.top.h);
-                this._units.center.set('left', this._sizes.left.w);
-            }
-            this._sizes.center = { h: h, w: w, t: this._sizes.top.h, l: this._sizes.left.w };
-            YAHOO.log('Setting Center size to: (' + h + ', ' + w + ')', 'info', 'Layout');
-        },
-        /**
-        * @method getSizes
-        * @description Get a reference to the internal Layout Unit sizes object used to build the layout wireframe
-        * @return {Object} An object of the layout unit sizes
-        */
-        getSizes: function() {
-            return this._sizes;
-        },
-        /**
-        * @method getUnitById
-        * @param {String} id The HTML element id of the unit
-        * @description Get the LayoutUnit by it's HTML id
-        * @return {<a href="YAHOO.widget.LayoutUnit.html">YAHOO.widget.LayoutUnit</a>} The LayoutUnit instance
-        */
-        getUnitById: function(id) {
-            return YAHOO.widget.LayoutUnit.getLayoutUnitById(id);
-        },
-        /**
-        * @method getUnitByPosition
-        * @param {String} pos The position of the unit in this layout
-        * @description Get the LayoutUnit by it's position in this layout
-        * @return {<a href="YAHOO.widget.LayoutUnit.html">YAHOO.widget.LayoutUnit</a>} The LayoutUnit instance
-        */
-        getUnitByPosition: function(pos) {
-            if (pos) {
-                pos = pos.toLowerCase();
-                if (this._units[pos]) {
-                    return this._units[pos];
-                }
-                return false;
-            }
-            return false;
-        },
-        /**
-        * @method removeUnit
-        * @param {Object} unit The LayoutUnit that you want to remove
-        * @description Remove the unit from this layout and resize the layout.
-        */
-        removeUnit: function(unit) {
-            delete this._units[unit.get('position')];
-            this.resize();
-        },
-        /**
-        * @method addUnit
-        * @param {Object} cfg The config for the LayoutUnit that you want to add
-        * @description Add a unit to this layout and if the layout is rendered, resize the layout. 
-        * @return {<a href="YAHOO.widget.LayoutUnit.html">YAHOO.widget.LayoutUnit</a>} The LayoutUnit instance
-        */
-        addUnit: function(cfg) {
-            if (!cfg.position) {
-                YAHOO.log('No position property passed', 'error', 'Layout');
-                return false;
-            }
-            if (this._units[cfg.position]) {
-                YAHOO.log('Position already exists', 'error', 'Layout');
-                return false;
-            }
-            YAHOO.log('Adding Unit at position: ' + cfg.position, 'info', 'Layout');
-            var element = null,
-                el = null;
-
-            if (cfg.id) {
-                if (Dom.get(cfg.id)) {
-                    element = Dom.get(cfg.id);
-                    delete cfg.id;
-
-                }
-            }
-            if (cfg.element) {
-                element = cfg.element;
-            }
-
-            if (!el) {
-                el = document.createElement('div');
-                var id = Dom.generateId();
-                el.id = id;
-            }
-
-            if (!element) {
-                element = document.createElement('div');
-            }
-            Dom.addClass(element, 'yui-layout-wrap');
-            if (this.browser.ie && !this.browser.standardsMode) {
-                el.style.zoom = 1;
-                element.style.zoom = 1;
-            }
-
-            if (el.firstChild) {
-                el.insertBefore(element, el.firstChild);
-            } else {
-                el.appendChild(element);
-            }
-            this._doc.appendChild(el);
-
-            var h = false, w = false;
-
-            if (cfg.height) {
-                h = parseInt(cfg.height, 10);
-            }
-            if (cfg.width) {
-                w = parseInt(cfg.width, 10);
-            }
-            var unitConfig = {};
-            YAHOO.lang.augmentObject(unitConfig, cfg); // break obj ref
-
-            unitConfig.parent = this;
-            unitConfig.wrap = element;
-            unitConfig.height = h;
-            unitConfig.width = w;
-
-            var unit = new YAHOO.widget.LayoutUnit(el, unitConfig);
-
-            unit.on('heightChange', this.resize, this, true);
-            unit.on('widthChange', this.resize, this, true);
-            unit.on('gutterChange', this.resize, this, true);
-            this._units[cfg.position] = unit;
-
-            if (this._rendered) {
-                this.resize();
-            }
-
-            return unit;
-        },
-        /**
-        * @private
-        * @method _createUnits
-        * @description Private method to create units from the config that was passed in.
-        */
-        _createUnits: function() {
-            var units = this.get('units');
-            for (var i in units) {
-                if (Lang.hasOwnProperty(units, i)) {
-                    this.addUnit(units[i]);
-                }
-            }
-        },
-        /**
-        * @method resize
-        * @param {Boolean} set If set to false, it will NOT set the size, just perform the calculations (used for collapsing units)
-        * @description Starts the chain of resize routines that will resize all the units.
-        * @return {<a href="YAHOO.widget.Layout.html">YAHOO.widget.Layout</a>} The Layout instance
-        */
-        resize: function(set) {
-            set = ((set === false) ? false : true);
-            if (set) {
-                var retVal = this.fireEvent('beforeResize');
-                if (retVal === false) {
-                    set = false;
-                }
-                if (this.browser.ie) {
-                    if (this._isBody) {
-                        Dom.removeClass(document.documentElement, 'yui-layout');
-                        Dom.addClass(document.documentElement, 'yui-layout');
-                    } else {
-                        this.removeClass('yui-layout');
-                        this.addClass('yui-layout');
-                    }
-                }
-            }
-            this._setBodySize(set);
-            if (set) {
-                this.fireEvent('resize', { target: this, sizes: this._sizes });
-            }
-            return this;
-        },
-        /**
-        * @private
-        * @method _setupBodyElements
-        * @description Sets up the main doc element when using the body as the main element.
-        */
-        _setupBodyElements: function() {
-            this._doc = Dom.get('layout-doc');
-            if (!this._doc) {
-                this._doc = document.createElement('div');
-                this._doc.id = 'layout-doc';
-                if (document.body.firstChild) {
-                    document.body.insertBefore(this._doc, document.body.firstChild);
-                } else {
-                    document.body.appendChild(this._doc);
-                }
-            }
-            this._createUnits();
-            this._setBodySize();
-            Event.on(window, 'resize', this.resize, this, true);
-            Dom.addClass(this._doc, 'yui-layout-doc');
-        },
-        /**
-        * @private
-        * @method _setupElements
-        * @description Sets up the main doc element when not using the body as the main element.
-        */
-        _setupElements: function() {
-            this._doc = this.getElementsByClassName('yui-layout-doc')[0];
-            if (!this._doc) {
-                this._doc = document.createElement('div');
-                this.get('element').appendChild(this._doc);
-            }
-            this._createUnits();
-            this._setBodySize();
-            Dom.addClass(this._doc, 'yui-layout-doc');
-        },
-        /**
-        * @private
-        * @property _isBody
-        * @description Flag to determine if we are using the body as the root element.
-        * @type Boolean
-        */
-        _isBody: null,
-        /**
-        * @private
-        * @property _doc
-        * @description Reference to the root element
-        * @type HTMLElement
-        */
-        _doc: null,
-        /**
-        * @private
-        * @method init
-        * @description The Layout class' initialization method
-        */        
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.log('init', 'info', 'Layout');
-
-            this._zIndex = 0;
-
-            Layout.superclass.init.call(this, p_oElement, p_oAttributes);
-            
-            if (this.get('parent')) {
-                this._zIndex = this.get('parent')._zIndex + 10;
-            }
-
-            this._sizes = {};
-            this._units = {};
-
-            var id = p_oElement;
-            if (!Lang.isString(id)) {
-                id = Dom.generateId(id);
-            }
-            Layout._instances[id] = this;
-        },
-        /**
-        * @method render
-        * @description This method starts the render process, applying classnames and creating elements
-        * @return {<a href="YAHOO.widget.Layout.html">YAHOO.widget.Layout</a>} The Layout instance
-        */        
-        render: function() {
-            YAHOO.log('Render', 'info', 'Layout');
-            this._stamp();
-            var el = this.get('element');
-            if (el && el.tagName && (el.tagName.toLowerCase() == 'body')) {
-                this._isBody = true;
-                Dom.addClass(document.body, 'yui-layout');
-                if (Dom.hasClass(document.body, 'yui-skin-sam')) {
-                    //Move the class up so we can have a css chain
-                    Dom.addClass(document.documentElement, 'yui-skin-sam');
-                    Dom.removeClass(document.body, 'yui-skin-sam');
-                }
-                this._setupBodyElements();
-            } else {
-                this._isBody = false;
-                this.addClass('yui-layout');
-                this._setupElements();
-            }
-            this.resize();
-            this._rendered = true;
-            this.fireEvent('render');
-
-            return this;
-        },
-        /**
-        * @private
-        * @method _stamp
-        * @description Stamps the root node with a secure classname for ease of use. Also sets the this.browser.standardsMode variable.
-        */        
-        _stamp: function() {
-            if (document.compatMode == 'CSS1Compat') {
-                this.browser.standardsMode = true;
-            }
-            if (window.location.href.toLowerCase().indexOf("https") === 0) {
-                Dom.addClass(document.documentElement, 'secure');
-                this.browser.secure = true;
-            }
-        },
-        /**
-        * @private
-        * @method initAttributes
-        * @description Processes the config
-        */        
-        initAttributes: function(attr) {
-            Layout.superclass.initAttributes.call(this, attr);
-            /**
-            * @attribute units
-            * @description An array of config definitions for the LayoutUnits to add to this layout
-            * @type Array
-            */
-            this.setAttributeConfig('units', {
-                writeOnce: true,
-                validator: YAHOO.lang.isArray,
-                value: attr.units || []
-            });
-
-            /**
-            * @attribute minHeight
-            * @description The minimum height in pixels
-            * @type Number
-            */
-            this.setAttributeConfig('minHeight', {
-                value: attr.minHeight || false,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute minWidth
-            * @description The minimum width in pixels
-            * @type Number
-            */
-            this.setAttributeConfig('minWidth', {
-                value: attr.minWidth || false,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute height
-            * @description The height in pixels
-            * @type Number
-            */
-            this.setAttributeConfig('height', {
-                value: attr.height || false,
-                validator: YAHOO.lang.isNumber,
-                method: function(h) {
-                    this.setStyle('height', h + 'px');
-                }
-            });
-
-            /**
-            * @attribute width
-            * @description The width in pixels
-            * @type Number
-            */
-            this.setAttributeConfig('width', {
-                value: attr.width || false,
-                validator: YAHOO.lang.isNumber,
-                method: function(w) {
-                    this.setStyle('width', w + 'px');
-                }
-            });
-
-            /**
-            * @attribute parent
-            * @description If this layout is to be used as a child of another Layout instance, this config will bind the resize events together.
-            * @type Object YAHOO.widget.Layout
-            */
-            this.setAttributeConfig('parent', {
-                writeOnce: true,
-                value: attr.parent || false,
-                method: function(p) {
-                    if (p) {
-                        p.on('resize', this.resize, this, true);
-                    }
-                }
-            });
-        },
-        /**
-        * @method destroy
-        * @description Removes this layout from the page and destroys all units that it contains. This will destroy all data inside the layout and it's children.
-        */
-        destroy: function() {
-            var par = this.get('parent');
-            if (par) {
-                par.removeListener('resize', this.resize, this, true);
-            }
-            Event.removeListener(window, 'resize', this.resize, this, true);
-
-            this.unsubscribeAll();
-            for (var u in this._units) {
-                if (Lang.hasOwnProperty(this._units, u)) {
-                    if (this._units[u]) {
-                        this._units[u].destroy(true);
-                    }
-                }
-            }
-
-            Event.purgeElement(this.get('element'));
-            this.get('parentNode').removeChild(this.get('element'));
-            
-            delete YAHOO.widget.Layout._instances[this.get('id')];
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                    delete this[i];
-                }
-            }
-            
-            if (par) {
-                par.resize();
-            }
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the Layout.
-        * @return {String}
-        */        
-        toString: function() {
-            if (this.get) {
-                return 'Layout #' + this.get('id');
-            }
-            return 'Layout';
-        }
-    });
-    /**
-    * @event resize
-    * @description Fired when this.resize is called
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event startResize
-    * @description Fired when the Resize Utility for a Unit fires it's startResize Event.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event beforeResize
-    * @description Firef at the beginning of the resize method. If you return false, the resize is cancelled.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event render
-    * @description Fired after the render method completes.
-    * @type YAHOO.util.CustomEvent
-    */
-
-    YAHOO.widget.Layout = Layout;
-})();
-/**
- * @description <p>Provides a fixed position unit containing a header, body and footer for use with a YAHOO.widget.Layout instance.</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event, layout
- * @optional animation, dragdrop, selector
- * @beta
- */
-(function() {
-    var Dom = YAHOO.util.Dom,
-        Sel = YAHOO.util.Selector,
-        Event = YAHOO.util.Event,
-        Lang = YAHOO.lang;
-
-    /**
-     * @constructor
-     * @class LayoutUnit
-     * @extends YAHOO.util.Element
-     * @description <p>Provides a fixed position unit containing a header, body and footer for use with a YAHOO.widget.Layout instance.</p>
-     * @param {String/HTMLElement} el The element to make a unit.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-
-    var LayoutUnit = function(el, config) {
-        
-        var oConfig = {
-            element: el,
-            attributes: config || {}
-        };
-
-        LayoutUnit.superclass.constructor.call(this, oConfig.element, oConfig.attributes);    
-    };
-
-    /**
-    * @private
-    * @static
-    * @property _instances
-    * @description Internal hash table for all layout unit instances
-    * @type Object
-    */ 
-    LayoutUnit._instances = {};
-    /**
-    * @static
-    * @method getLayoutUnitById 
-    * @description Get's a layout unit object by the HTML id of the element associated with the Layout Unit object.
-    * @return {Object} The Layout Object
-    */ 
-    LayoutUnit.getLayoutUnitById = function(id) {
-        if (LayoutUnit._instances[id]) {
-            return LayoutUnit._instances[id];
-        }
-        return false;
-    };
-
-    YAHOO.extend(LayoutUnit, YAHOO.util.Element, {
-        /**
-        * @property STR_CLOSE
-        * @description String used for close button title
-        * @type {String}
-        */
-        STR_CLOSE: 'Click to close this pane.',
-        /**
-        * @property STR_COLLAPSE
-        * @description String used for collapse button title
-        * @type {String}
-        */
-        STR_COLLAPSE: 'Click to collapse this pane.',
-        /**
-        * @property STR_EXPAND
-        * @description String used for expand button title
-        * @type {String}
-        */
-        STR_EXPAND: 'Click to expand this pane.',
-        /**
-	    * The class name applied to dynamic tabs while loading.
-	    * @property LOADING_CLASSNAME
-	    * @type String
-	    * @default "disabled"
-	    */
-	    LOADING_CLASSNAME: 'loading',
-        /**
-        * @property browser
-        * @description A modified version of the YAHOO.env.ua object
-        * @type Object
-        */
-        browser: null,
-        /**
-        * @private
-        * @property _sizes
-        * @description A collection of the current sizes of the contents of this Layout Unit
-        * @type Object
-        */
-        _sizes: null,
-        /**
-        * @private
-        * @property _anim
-        * @description A reference to the Animation instance used by this LayouUnit
-        * @type YAHOO.util.Anim
-        */
-        _anim: null,
-        /**
-        * @private
-        * @property _resize
-        * @description A reference to the Resize instance used by this LayoutUnit
-        * @type YAHOO.util.Resize
-        */
-        _resize: null,
-        /**
-        * @private
-        * @property _clip
-        * @description A reference to the clip element used when collapsing the unit
-        * @type HTMLElement
-        */
-        _clip: null,
-        /**
-        * @private
-        * @property _gutter
-        * @description A simple hash table used to store the gutter to apply to the Unit
-        * @type Object
-        */
-        _gutter: null,
-        /**
-        * @property header
-        * @description A reference to the HTML element used for the Header
-        * @type HTMLELement
-        */
-        header: null,
-        /**
-        * @property body
-        * @description A reference to the HTML element used for the body
-        * @type HTMLElement
-        */
-        body: null,
-        /**
-        * @property footer
-        * @description A reference to the HTML element used for the footer
-        * @type HTMLElement
-        */
-        footer: null,
-        /**
-        * @private
-        * @property _collapsed
-        * @description Flag to determine if the unit is collapsed or not.
-        * @type Boolean
-        */
-        _collapsed: null,
-        /**
-        * @private
-        * @property _collapsing
-        * @description A flag set while the unit is being collapsed, used so we don't fire events while animating the size
-        * @type Boolean
-        */
-        _collapsing: null,
-        /**
-        * @private
-        * @property _lastWidth
-        * @description A holder for the last known width of the unit
-        * @type Number
-        */
-        _lastWidth: null,
-        /**
-        * @private
-        * @property _lastHeight
-        * @description A holder for the last known height of the unit
-        * @type Number
-        */
-        _lastHeight: null,
-        /**
-        * @private
-        * @property _lastTop
-        * @description A holder for the last known top of the unit
-        * @type Number
-        */
-        _lastTop: null,
-        /**
-        * @private
-        * @property _lastLeft
-        * @description A holder for the last known left of the unit
-        * @type Number
-        */
-        _lastLeft: null,
-        /**
-        * @private
-        * @property _lastScroll
-        * @description A holder for the last known scroll state of the unit
-        * @type Boolean
-        */
-        _lastScroll: null,
-        /**
-        * @private
-        * @property _lastCenetrScroll
-        * @description A holder for the last known scroll state of the center unit
-        * @type Boolean
-        */
-        _lastCenterScroll: null,
-        /**
-        * @private
-        * @property _lastScrollTop
-        * @description A holder for the last known scrollTop state of the unit
-        * @type Number
-        */
-        _lastScrollTop: null,
-        /**
-        * @method resize
-        * @description Resize either the unit or it's clipped state, also updating the box inside
-        * @param {Boolean} force This will force full calculations even when the unit is collapsed
-        * @return {<a href="YAHOO.widget.LayoutUnit.html">YAHOO.widget.LayoutUnit</a>} The LayoutUnit instance
-        */
-        resize: function(force) {
-            YAHOO.log('Resize', 'info', 'LayoutUnit');
-            var retVal = this.fireEvent('beforeResize');
-            if (retVal === false) {
-                return this;
-            }
-            if (!this._collapsing || (force === true)) {
-                var scroll = this.get('scroll');
-                this.set('scroll', false);
-
-
-                var hd = this._getBoxSize(this.header),
-                    ft = this._getBoxSize(this.footer),
-                    box = [this.get('height'), this.get('width')];
-
-                var nh = (box[0] - hd[0] - ft[0]) - (this._gutter.top + this._gutter.bottom),
-                    nw = box[1] - (this._gutter.left + this._gutter.right);
-
-                var wrapH = (nh + (hd[0] + ft[0])),
-                    wrapW = nw;
-
-                if (this._collapsed && !this._collapsing) {
-                    this._setHeight(this._clip, wrapH);
-                    this._setWidth(this._clip, wrapW);
-                    Dom.setStyle(this._clip, 'top', this.get('top') + this._gutter.top + 'px');
-                    Dom.setStyle(this._clip, 'left', this.get('left') + this._gutter.left + 'px');
-                } else if (!this._collapsed || (this._collapsed && this._collapsing)) {
-                    wrapH = this._setHeight(this.get('wrap'), wrapH);
-                    wrapW = this._setWidth(this.get('wrap'), wrapW);
-                    this._sizes.wrap.h = wrapH;
-                    this._sizes.wrap.w = wrapW;
-
-                    Dom.setStyle(this.get('wrap'), 'top', this._gutter.top + 'px');
-                    Dom.setStyle(this.get('wrap'), 'left', this._gutter.left + 'px');
-
-                    this._sizes.header.w = this._setWidth(this.header, wrapW);
-                    this._sizes.header.h = hd[0];
-
-                    this._sizes.footer.w = this._setWidth(this.footer, wrapW);
-                    this._sizes.footer.h = ft[0];
-
-                    Dom.setStyle(this.footer, 'bottom', '0px');
-
-                    this._sizes.body.h = this._setHeight(this.body, (wrapH - (hd[0] + ft[0])));
-                    this._sizes.body.w =this._setWidth(this.body, wrapW);
-                    Dom.setStyle(this.body, 'top', hd[0] + 'px');
-
-                    this.set('scroll', scroll);
-                    this.fireEvent('resize');
-                }
-            }
-            return this;
-        },
-        /**
-        * @private
-        * @method _setWidth
-        * @description Sets the width of the element based on the border size of the element.
-        * @param {HTMLElement} el The HTMLElement to have it's width set
-        * @param {Number} w The width that you want it the element set to
-        * @return {Number} The new width, fixed for borders and IE QuirksMode
-        */
-        _setWidth: function(el, w) {
-            if (el) {
-                var b = this._getBorderSizes(el);
-                w = (w - (b[1] + b[3]));
-                w = this._fixQuirks(el, w, 'w');
-                Dom.setStyle(el, 'width', w + 'px');
-            }
-            return w;
-        },
-        /**
-        * @private
-        * @method _setHeight
-        * @description Sets the height of the element based on the border size of the element.
-        * @param {HTMLElement} el The HTMLElement to have it's height set
-        * @param {Number} h The height that you want it the element set to
-        * @return {Number} The new height, fixed for borders and IE QuirksMode
-        */
-        _setHeight: function(el, h) {
-            if (el) {
-                var b = this._getBorderSizes(el);
-                h = (h - (b[0] + b[2]));
-                h = this._fixQuirks(el, h, 'h');
-                Dom.setStyle(el, 'height', h + 'px');
-            }
-            return h;
-        },
-        /**
-        * @private
-        * @method _fixQuirks
-        * @description Fixes the box calculations for IE in QuirksMode
-        * @param {HTMLElement} el The HTMLElement to set the dimension on
-        * @param {Number} dim The number of the dimension to fix
-        * @param {String} side The dimension (h or w) to fix. Defaults to h
-        * @return {Number} The fixed dimension
-        */
-        _fixQuirks: function(el, dim, side) {
-            var i1 = 0, i2 = 2;
-            if (side == 'w') {
-                i1 = 1;
-                i2 = 3;
-            }
-            if (this.browser.ie && !this.browser.standardsMode) {
-                //Internet Explorer - Quirks Mode
-                var b = this._getBorderSizes(el),
-                    bp = this._getBorderSizes(el.parentNode);
-                if ((b[i1] === 0) && (b[i2] === 0)) { //No Borders, check parent
-                    if ((bp[i1] !== 0) && (bp[i2] !== 0)) { //Parent has Borders
-                        dim = (dim - (bp[i1] + bp[i2]));
-                    }
-                } else {
-                    if ((bp[i1] === 0) && (bp[i2] === 0)) {
-                        dim = (dim + (b[i1] + b[i2]));
-                    }
-                }
-            }
-            return dim;
-        },
-        /**
-        * @private
-        * @method _getBoxSize
-        * @description Get's the elements clientHeight and clientWidth plus the size of the borders
-        * @param {HTMLElement} el The HTMLElement to get the size of
-        * @return {Array} An array of height and width
-        */
-        _getBoxSize: function(el) {
-            var size = [0, 0];
-            if (el) {
-                if (this.browser.ie && !this.browser.standardsMode) {
-                    el.style.zoom = 1;
-                }
-                var b = this._getBorderSizes(el);
-                size[0] = el.clientHeight + (b[0] + b[2]);
-                size[1] = el.clientWidth + (b[1] + b[3]);
-            }
-            return size;
-        },
-        /**
-        * @private
-        * @method _getBorderSizes
-        * @description Get the CSS border size of the element passed.
-        * @param {HTMLElement} el The element to get the border size of
-        * @return {Array} An array of the top, right, bottom, left borders.
-        */
-        _getBorderSizes: function(el) {
-            var s = [];
-            el = el || this.get('element');
-            if (this.browser.ie && !this.browser.standardsMode) {
-                el.style.zoom = 1;
-            }
-            s[0] = parseInt(Dom.getStyle(el, 'borderTopWidth'), 10);
-            s[1] = parseInt(Dom.getStyle(el, 'borderRightWidth'), 10);
-            s[2] = parseInt(Dom.getStyle(el, 'borderBottomWidth'), 10);
-            s[3] = parseInt(Dom.getStyle(el, 'borderLeftWidth'), 10);
-            
-            //IE will return NaN on these if they are set to auto, we'll set them to 0
-            for (var i = 0; i < s.length; i++) {
-                if (isNaN(s[i])) {
-                    s[i] = 0;
-                }
-            }
-            return s;
-        },
-        /**
-        * @private
-        * @method _createClip
-        * @description Create the clip element used when the Unit is collapsed
-        */
-        _createClip: function() {
-            if (!this._clip) {
-                this._clip = document.createElement('div');
-                this._clip.className = 'yui-layout-clip yui-layout-clip-' + this.get('position');
-                this._clip.innerHTML = '<div class="collapse"></div>';
-                var c = this._clip.firstChild;
-                c.title = this.STR_EXPAND;
-                Event.on(c, 'click', this.expand, this, true);
-                this.get('element').parentNode.appendChild(this._clip);
-            }
-        },
-        /**
-        * @private
-        * @method _toggleClip
-        * @description Toggle th current state of the Clip element and set it's height, width and position
-        */
-        _toggleClip: function() {
-            if (!this._collapsed) {
-                //show
-                var hd = this._getBoxSize(this.header),
-                    ft = this._getBoxSize(this.footer),
-                    box = [this.get('height'), this.get('width')];
-
-
-                var nh = (box[0] - hd[0] - ft[0]) - (this._gutter.top + this._gutter.bottom),
-                    nw = box[1] - (this._gutter.left + this._gutter.right),
-                    wrapH = (nh + (hd[0] + ft[0]));
-
-                switch (this.get('position')) {
-                    case 'top':
-                    case 'bottom':
-                        this._setWidth(this._clip, nw);
-                        this._setHeight(this._clip, this.get('collapseSize'));
-                        Dom.setStyle(this._clip, 'left', (this._lastLeft + this._gutter.left) + 'px');
-                        if (this.get('position') == 'bottom') {
-                            Dom.setStyle(this._clip, 'top', ((this._lastTop + this._lastHeight) - (this.get('collapseSize') - this._gutter.top)) + 'px');
-                        } else {
-                            Dom.setStyle(this._clip, 'top', this.get('top') + this._gutter.top + 'px');
-                        }
-                        break;
-                    case 'left':
-                    case 'right':
-                        this._setWidth(this._clip, this.get('collapseSize'));
-                        this._setHeight(this._clip, wrapH);
-                        Dom.setStyle(this._clip, 'top', (this.get('top') + this._gutter.top) + 'px');
-                        if (this.get('position') == 'right') {
-                            Dom.setStyle(this._clip, 'left', (((this._lastLeft + this._lastWidth) - this.get('collapseSize')) - this._gutter.left) + 'px');
-                        } else {
-                            Dom.setStyle(this._clip, 'left', (this.get('left') + this._gutter.left) + 'px');
-                        }
-                        break;
-                }
-
-                Dom.setStyle(this._clip, 'display', 'block');
-                this.setStyle('display', 'none');
-            } else {
-                //Hide
-                Dom.setStyle(this._clip, 'display', 'none');
-            }
-        },
-        /**
-        * @method getSizes
-        * @description Get a reference to the internal sizes object for this unit
-        * @return {Object} An object of the sizes used for calculations
-        */
-        getSizes: function() {
-            return this._sizes;
-        },
-        /**
-        * @method toggle
-        * @description Toggles the Unit, replacing it with a clipped version.
-        * @return {<a href="YAHOO.widget.LayoutUnit.html">YAHOO.widget.LayoutUnit</a>} The LayoutUnit instance
-        */
-        toggle: function() {
-            if (this._collapsed) {
-                this.expand();
-            } else {
-                this.collapse();
-            }
-            return this;
-        },
-        /**
-        * @method expand
-        * @description Expand the Unit if it is collapsed.
-        * @return {<a href="YAHOO.widget.LayoutUnit.html">YAHOO.widget.LayoutUnit</a>} The LayoutUnit instance
-        */
-        expand: function() {
-            if (!this._collapsed) {
-                return this;
-            }
-            var retVal = this.fireEvent('beforeExpand');
-            if (retVal === false) {
-                return this;
-            }
-
-            this._collapsing = true;
-            this.setStyle('zIndex', this.get('parent')._zIndex + 1);
-
-            if (this._anim) {
-                this.setStyle('display', 'none');
-                var attr = {}, s;
-
-                switch (this.get('position')) {
-                    case 'left':
-                    case 'right':
-                        this.set('width', this._lastWidth, true);
-                        this.setStyle('width', this._lastWidth + 'px');
-                        this.get('parent').resize(false);
-                        s = this.get('parent').getSizes()[this.get('position')];
-                        this.set('height', s.h, true);
-                        var left = s.l;
-                        attr = {
-                            left: {
-                                to: left
-                            }
-                        };
-                        if (this.get('position') == 'left') {
-                            attr.left.from = (left - s.w);
-                            this.setStyle('left', (left - s.w) + 'px');
-                        }
-                        break;
-                    case 'top':
-                    case 'bottom':
-                        this.set('height', this._lastHeight, true);
-                        this.setStyle('height', this._lastHeight + 'px');
-                        this.get('parent').resize(false);
-                        s = this.get('parent').getSizes()[this.get('position')];
-                        this.set('width', s.w, true);
-                        var top = s.t;
-                        attr = {
-                            top: {
-                                to: top
-                            }
-                        };
-                        if (this.get('position') == 'top') {
-                            this.setStyle('top',  (top - s.h) + 'px');
-                            attr.top.from = (top - s.h);
-                        }
-                        break;
-                }
-
-                this._anim.attributes = attr;
-                var exStart = function() {
-                    this.setStyle('display', 'block');
-                    this.resize(true);
-                    this._anim.onStart.unsubscribe(exStart, this, true);
-                };
-                var expand = function() {
-                    this._collapsing = false;
-                    this.setStyle('zIndex', this.get('parent')._zIndex);
-                    this.set('width', this._lastWidth);
-                    this.set('height', this._lastHeight);
-                    this._collapsed = false;
-                    this.resize();
-                    this.set('scroll', this._lastScroll);
-                    if (this._lastScrollTop > 0) {
-                        this.body.scrollTop = this._lastScrollTop;
-                    }
-                    this._anim.onComplete.unsubscribe(expand, this, true);
-                    this.fireEvent('expand');
-                };
-                this._anim.onStart.subscribe(exStart, this, true);
-                this._anim.onComplete.subscribe(expand, this, true);
-                this._anim.animate();
-                this._toggleClip();
-            } else {
-                this._collapsing = false;
-                this._toggleClip();
-                this._collapsed = false;
-                this.setStyle('zIndex', this.get('parent')._zIndex);
-                this.setStyle('display', 'block');
-                this.set('width', this._lastWidth);
-                this.set('height', this._lastHeight);
-                this.resize();
-                this.set('scroll', this._lastScroll);
-                if (this._lastScrollTop > 0) {
-                    this.body.scrollTop = this._lastScrollTop;
-                }
-                this.fireEvent('expand');
-            }
-            return this;
-        },
-        /**
-        * @method collapse
-        * @description Collapse the Unit if it is not collapsed.
-        * @return {<a href="YAHOO.widget.LayoutUnit.html">YAHOO.widget.LayoutUnit</a>} The LayoutUnit instance
-        */
-        collapse: function() {
-            if (this._collapsed) {
-                return this;
-            }
-            var retValue = this.fireEvent('beforeCollapse');
-            if (retValue === false) {
-                return this;
-            }
-            if (!this._clip) {
-                this._createClip();
-            }
-            this._collapsing = true;
-            var w = this.get('width'),
-                h = this.get('height'),
-                attr = {};
-            this._lastWidth = w;
-            this._lastHeight = h;
-            this._lastScroll = this.get('scroll');
-            this._lastScrollTop = this.body.scrollTop;            
-            this.set('scroll', false, true);
-            this._lastLeft = parseInt(this.get('element').style.left, 10);
-            this._lastTop = parseInt(this.get('element').style.top, 10);
-            if (isNaN(this._lastTop)) {
-                this._lastTop = 0;
-                this.set('top', 0);
-            }
-            if (isNaN(this._lastLeft)) {
-                this._lastLeft = 0;
-                this.set('left', 0);
-            }
-            this.setStyle('zIndex', this.get('parent')._zIndex + 1);
-            var pos = this.get('position');
-
-            switch (pos) {
-                case 'top':
-                case 'bottom':
-                    this.set('height', (this.get('collapseSize') + (this._gutter.top + this._gutter.bottom)));
-                    attr = {
-                        top: {
-                            to: (this.get('top') - h)
-                        }
-                    };
-                    if (pos == 'bottom') {
-                        attr.top.to = (this.get('top') + h);
-                    }
-                    break;
-                case 'left':
-                case 'right':
-                    this.set('width', (this.get('collapseSize') + (this._gutter.left + this._gutter.right)));
-                    attr = {
-                        left: {
-                            to: -(this._lastWidth)
-                        }
-                    };
-                    if (pos == 'right') {
-                        attr.left = {
-                            to: (this.get('left') + w)
-                        };
-                    }
-                    break;
-            }
-            if (this._anim) {
-                this._anim.attributes = attr;
-                var collapse = function() {
-                    this._collapsing = false;
-                    this._toggleClip();
-                    this.setStyle('zIndex', this.get('parent')._zIndex);
-                    this._collapsed = true;
-                    this.get('parent').resize();
-                    this._anim.onComplete.unsubscribe(collapse, this, true);
-                    this.fireEvent('collapse');
-                };
-                this._anim.onComplete.subscribe(collapse, this, true);
-                this._anim.animate();
-            } else {
-                this._collapsing = false;
-                this.setStyle('display', 'none');
-                this._toggleClip();
-                this.setStyle('zIndex', this.get('parent')._zIndex);
-                this.get('parent').resize();
-                this._collapsed = true;
-                this.fireEvent('collapse');
-            }
-            return this;
-        },
-        /**
-        * @method close
-        * @description Close the unit, removing it from the parent Layout.
-        * @return {<a href="YAHOO.widget.Layout.html">YAHOO.widget.Layout</a>} The parent Layout instance
-        */
-        close: function() {
-            this.setStyle('display', 'none');
-            this.get('parent').removeUnit(this);
-            this.fireEvent('close');
-            if (this._clip) {
-                this._clip.parentNode.removeChild(this._clip);
-                this._clip = null;
-            }
-            return this.get('parent');
-        },
-		/**
-        * @property loadHandler
-        * @description Callback method for the YUI Connection Manager used for load the body using AJAX
-        * @type Object
-        */
-		loadHandler: {
-            success: function(o) {
-				this.body.innerHTML = o.responseText;
-				this.resize (true);
-            },
-            failure: function(o) {
-            }
-        },
-		/**
-        * @property dataConnection
-        * @description YUI Connection Manager handler
-        * @type Object
-        */
-		dataConnection: null,
-		/**
-        * @private
-        * @property _loading
-        * @description During the loading process this variable will be true
-        * @type Number
-        */
-        _loading: false,
-		/**
-        * @method loadContent
-        * @description Loading the content of the unit using the connection manager
-        * @return {object} YUI Connection Manager handler
-        */
-        loadContent: function() {
-			// load dynamic content unless already loading or loaded and caching
-			if (YAHOO.util.Connect && this.get('dataSrc') && !this._loading && !this.get('dataLoaded')) {
-		        this._loading = true; 
-		        Dom.addClass(this.body, this.LOADING_CLASSNAME);
-				this.dataConnection = YAHOO.util.Connect.asyncRequest(
-		            this.get('loadMethod'),
-		            this.get('dataSrc'), 
-		            {
-		                success: function(o) {
-		                    this.loadHandler.success.call(this, o);
-		                    this.set('dataLoaded', true);
-		                    this.dataConnection = null;
-		                    Dom.removeClass(this.body, this.LOADING_CLASSNAME);
-							this._loading = false;
-							this.fireEvent('load');
-		                },
-		                failure: function(o) {
-		                    this.loadHandler.failure.call(this, o);
-		                    this.dataConnection = null;
-		                    Dom.removeClass(this.body, this.LOADING_CLASSNAME);
-		                    this._loading = false;
-							this.fireEvent('loadError', { error: o });
-		                },
-		                scope: this,
-		                timeout: this.get('dataTimeout')
-		            }
-		        );
-				return this.dataConnection;
-	        }
-			return false;
-        },
-        /**
-        * @private
-        * @method init
-        * @description The initalization method inherited from Element.
-        */
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.log('init', 'info', 'LayoutUnit');
-            this._gutter = {
-                left: 0,
-                right: 0,
-                top: 0,
-                bottom: 0
-            };
-            this._sizes = {
-                wrap: {
-                    h: 0,
-                    w: 0
-                },
-                header: {
-                    h: 0,
-                    w: 0
-                },
-                body: {
-                    h: 0,
-                    w: 0
-                },
-                footer: {
-                    h: 0,
-                    w: 0
-                }
-            };
-            
-            LayoutUnit.superclass.init.call(this, p_oElement, p_oAttributes);
-
-            this.browser = this.get('parent').browser;
-            
-            var id = p_oElement;
-            if (!Lang.isString(id)) {
-                id = Dom.generateId(id);
-            }
-            LayoutUnit._instances[id] = this;
-
-            this.setStyle('position', 'absolute');
-
-            this.addClass('yui-layout-unit');
-            this.addClass('yui-layout-unit-' + this.get('position'));
-
-
-            var header = this.getElementsByClassName('yui-layout-hd', 'div')[0];
-            if (header) {
-                this.header = header;
-            }
-            var body = this.getElementsByClassName('yui-layout-bd', 'div')[0];
-            if (body) {
-                this.body = body;
-            }
-            var footer = this.getElementsByClassName('yui-layout-ft', 'div')[0];
-            if (footer) {
-                this.footer = footer;
-            }
-
-            this.on('contentChange', this.resize, this, true);
-            this._lastScrollTop = 0;
-
-            this.set('animate', this.get('animate'));
-        },
-        /**
-        * @private
-        * @method initAttributes
-        * @description Processes the config
-        */        
-        initAttributes: function(attr) {
-            LayoutUnit.superclass.initAttributes.call(this, attr);
-
-            /**
-            * @private
-            * @attribute wrap
-            * @description A reference to the wrap element
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('wrap', {
-                value: attr.wrap || null,
-                method: function(w) {
-                    if (w) {
-                        var id = Dom.generateId(w);
-                        LayoutUnit._instances[id] = this;
-                    }
-                }
-            });
-            /**
-            * @attribute grids
-            * @description Set this option to true if you want the LayoutUnit to fix the first layer of YUI CSS Grids (margins)
-            * @type Boolean
-            */
-            this.setAttributeConfig('grids', {
-                value: attr.grids || false
-            });
-            /**
-            * @private
-            * @attribute top
-            * @description The current top positioning of the Unit
-            * @type Number
-            */
-            this.setAttributeConfig('top', {
-                value: attr.top || 0,
-                validator: Lang.isNumber,
-                method: function(t) {
-                    if (!this._collapsing) {
-                        this.setStyle('top', t + 'px');
-                    }
-                }
-            });
-            /**
-            * @private
-            * @attribute left
-            * @description The current left position of the Unit
-            * @type Number
-            */
-            this.setAttributeConfig('left', {
-                value: attr.left || 0,
-                validator: Lang.isNumber,
-                method: function(l) {
-                    if (!this._collapsing) {
-                        this.setStyle('left', l + 'px');
-                    }
-                }
-            });
-
-            /**
-            * @attribute minWidth
-            * @description The minWidth parameter passed to the Resize Utility
-            * @type Number
-            */
-            this.setAttributeConfig('minWidth', {
-                value: attr.minWidth || false,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute maxWidth
-            * @description The maxWidth parameter passed to the Resize Utility
-            * @type Number
-            */
-            this.setAttributeConfig('maxWidth', {
-                value: attr.maxWidth || false,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute minHeight
-            * @description The minHeight parameter passed to the Resize Utility
-            * @type Number
-            */
-            this.setAttributeConfig('minHeight', {
-                value: attr.minHeight || false,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute maxHeight
-            * @description The maxHeight parameter passed to the Resize Utility
-            * @type Number
-            */
-            this.setAttributeConfig('maxHeight', {
-                value: attr.maxHeight || false,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute height
-            * @description The height of the Unit
-            * @type Number
-            */
-            this.setAttributeConfig('height', {
-                value: attr.height,
-                validator: Lang.isNumber,
-                method: function(h) {
-                    if (!this._collapsing) {
-                        this.setStyle('height', h + 'px');
-                    }
-                }
-            });
-
-            /**
-            * @attribute width
-            * @description The width of the Unit
-            * @type Number
-            */
-            this.setAttributeConfig('width', {
-                value: attr.width,
-                validator: Lang.isNumber,
-                method: function(w) {
-                    if (!this._collapsing) {
-                        this.setStyle('width', w + 'px');
-                    }
-                }
-            });
-            /**
-            * @attribute zIndex
-            * @description The CSS zIndex to give to the unit, so you can have overlapping elements such as menus in a unit.
-            * @type {Number}
-            */
-            this.setAttributeConfig('zIndex', {
-                value: attr.zIndex || false,
-                method: function(z) {
-                    this.setStyle('zIndex', z);
-                }
-            });
-            /**
-            * @attribute position
-            * @description The position (top, right, bottom, left or center) of the Unit in the Layout
-            * @type {String}
-            */
-            this.setAttributeConfig('position', {
-                value: attr.position
-            });
-            /**
-            * @attribute gutter
-            * @description The gutter that we should apply to the parent Layout around this Unit. Supports standard CSS markup: (2 4 0 5) or (2) or (2 5)
-            * @type String
-            */
-            this.setAttributeConfig('gutter', {
-                value: attr.gutter || 0,
-                validator: YAHOO.lang.isString,
-                method: function(gutter) {
-                    var p = gutter.split(' ');
-                    if (p.length) {
-                        this._gutter.top = parseInt(p[0], 10);
-                        if (p[1]) {
-                            this._gutter.right = parseInt(p[1], 10);
-                        } else {
-                            this._gutter.right = this._gutter.top;
-                        }
-                        if (p[2]) {
-                            this._gutter.bottom = parseInt(p[2], 10);
-                        } else {
-                            this._gutter.bottom = this._gutter.top;
-                        }
-                        if (p[3]) {
-                            this._gutter.left = parseInt(p[3], 10);
-                        } else if (p[1]) {
-                            this._gutter.left = this._gutter.right;
-                        } else {
-                            this._gutter.left = this._gutter.top;
-                        }
-                    }
-                }
-            });
-            /**
-            * @attribute parent
-            * @description The parent Layout that we are assigned to
-            * @type {Object} YAHOO.widget.Layout
-            */
-            this.setAttributeConfig('parent', {
-                writeOnce: true,
-                value: attr.parent || false,
-                method: function(p) {
-                    if (p) {
-                        p.on('resize', this.resize, this, true);
-                    }
-
-                }
-            });
-            /**
-            * @attribute collapseSize
-            * @description The pixel size of the Clip that we will collapse to
-            * @type Number
-            */
-            this.setAttributeConfig('collapseSize', {
-                value: attr.collapseSize || 25,
-                validator: YAHOO.lang.isNumber
-            });
-            /**
-            * @attribute duration
-            * @description The duration to give the Animation Utility when animating the opening and closing of Units
-            */
-            this.setAttributeConfig('duration', {
-                value: attr.duration || 0.5
-            });
-            /**
-            * @attribute easing
-            * @description The Animation Easing to apply to the Animation instance for this unit.
-            */
-            this.setAttributeConfig('easing', {
-                value: attr.easing || ((YAHOO.util && YAHOO.util.Easing) ? YAHOO.util.Easing.BounceIn : 'false')
-            });
-            /**
-            * @attribute animate
-            * @description Use animation to collapse/expand the unit
-            * @type Boolean
-            */
-            this.setAttributeConfig('animate', {
-                value: ((attr.animate === false) ? false : true),
-                validator: function() {
-                    var anim = false;
-                    if (YAHOO.util.Anim) {
-                        anim = true;
-                    }
-                    return anim;
-                },
-                method: function(anim) {
-                    if (anim) {
-                        this._anim = new YAHOO.util.Anim(this.get('element'), {}, this.get('duration'), this.get('easing'));
-                    } else {
-                        this._anim = false;
-                    }
-                }
-            });
-            /**
-            * @attribute header
-            * @description The text to use as the Header of the Unit
-            */
-            this.setAttributeConfig('header', {
-                value: attr.header || false,
-                method: function(txt) {
-                    if (txt === false) {
-                        //Remove the footer
-                        if (this.header) {
-                            Dom.addClass(this.body, 'yui-layout-bd-nohd');
-                            this.header.parentNode.removeChild(this.header);
-                            this.header = null;
-                        }
-                    } else {
-                        if (!this.header) {
-                            var header = this.getElementsByClassName('yui-layout-hd', 'div')[0];
-                            if (!header) {
-                                header = this._createHeader();
-                            }
-                            this.header = header;
-                        }
-                        var h = this.header.getElementsByTagName('h2')[0];
-                        if (!h) {
-                            h = document.createElement('h2');
-                            this.header.appendChild(h);
-                        }
-                        h.innerHTML = txt;
-                        if (this.body) {
-                            Dom.removeClass(this.body, 'yui-layout-bd-nohd');
-                        }
-                    }
-                    this.fireEvent('contentChange', { target: 'header' });
-                }
-            });
-            /**
-            * @attribute proxy
-            * @description Use the proxy config setting for the Resize Utility
-            * @type Boolean
-            */
-            this.setAttributeConfig('proxy', {
-                writeOnce: true,
-                value: ((attr.proxy === false) ? false : true)
-            });
-            /**
-            * @attribute body
-            * @description The content for the body. If we find an element in the page with an id that matches the passed option we will move that element into the body of this unit.
-            */
-            this.setAttributeConfig('body', {
-                value: attr.body || false,
-                method: function(content) {
-                    if (!this.body) {
-                        var body = this.getElementsByClassName('yui-layout-bd', 'div')[0];
-                        if (body) {
-                            this.body = body;
-                        } else {
-                            body = document.createElement('div');
-                            body.className = 'yui-layout-bd';
-                            this.body = body;
-                            this.get('wrap').appendChild(body);
-                        }
-                    }
-                    if (!this.header) {
-                        Dom.addClass(this.body, 'yui-layout-bd-nohd');
-                    }
-                    Dom.addClass(this.body, 'yui-layout-bd-noft');
-
-
-                    var el = null;
-                    if (Lang.isString(content)) {
-                        el = Dom.get(content);
-                    } else if (content && content.tagName) {
-                        el = content;
-                    }
-                    if (el) {
-                        var id = Dom.generateId(el);
-                        LayoutUnit._instances[id] = this;
-                        this.body.appendChild(el);
-                    } else {
-                        this.body.innerHTML = content;
-                    }
-
-                    this._cleanGrids();
-
-                    this.fireEvent('contentChange', { target: 'body' });
-                }
-            });
-
-            /**
-            * @attribute footer
-            * @description The content for the footer. If we find an element in the page with an id that matches the passed option we will move that element into the footer of this unit.
-            */
-            this.setAttributeConfig('footer', {
-                value: attr.footer || false,
-                method: function(content) {
-                    if (content === false) {
-                        //Remove the footer
-                        if (this.footer) {
-                            Dom.addClass(this.body, 'yui-layout-bd-noft');
-                            this.footer.parentNode.removeChild(this.footer);
-                            this.footer = null;
-                        }
-                    } else {
-                        if (!this.footer) {
-                            var ft = this.getElementsByClassName('yui-layout-ft', 'div')[0];
-                            if (!ft) {
-                                ft = document.createElement('div');
-                                ft.className = 'yui-layout-ft';
-                                this.footer = ft;
-                                this.get('wrap').appendChild(ft);
-                            } else {
-                                this.footer = ft;
-                            }
-                        }
-                        var el = null;
-                        if (Lang.isString(content)) {
-                            el = Dom.get(content);
-                        } else if (content && content.tagName) {
-                            el = content;
-                        }
-                        if (el) {
-                            this.footer.appendChild(el);
-                        } else {
-                            this.footer.innerHTML = content;
-                        }
-                        Dom.removeClass(this.body, 'yui-layout-bd-noft');
-                    }
-                    this.fireEvent('contentChange', { target: 'footer' });
-                }
-            });
-            /**
-            * @attribute close
-            * @description Adds a close icon to the unit
-            */
-            this.setAttributeConfig('close', {
-                value: attr.close || false,
-                method: function(close) {
-                    //Position Center doesn't get this
-                    if (this.get('position') == 'center') {
-                        YAHOO.log('Position center unit cannot have close', 'error', 'LayoutUnit');
-                        return false;
-                    }
-                    if (!this.header) {
-                        this._createHeader();
-                    }
-                    var c = Dom.getElementsByClassName('close', 'div', this.header)[0];
-                    if (close) {
-                        //Force some header text if there isn't any
-                        if (!this.get('header')) {
-                            this.set('header', '&nbsp;');
-                        }
-                        if (!c) {
-                            c = document.createElement('div');
-                            c.className = 'close';
-                            this.header.appendChild(c);
-                            Event.on(c, 'click', this.close, this, true);
-                        }
-                        c.title = this.STR_CLOSE;
-                    } else if (c) {
-                        Event.purgeElement(c);
-                        c.parentNode.removeChild(c);
-                    }
-                    this._configs.close.value = close;
-                    this.set('collapse', this.get('collapse')); //Reset so we get the right classnames
-                }
-            });
-
-            /**
-            * @attribute collapse
-            * @description Adds a collapse icon to the unit
-            */
-            this.setAttributeConfig('collapse', {
-                value: attr.collapse || false,
-                method: function(collapse) {
-                    //Position Center doesn't get this
-                    if (this.get('position') == 'center') {
-                        YAHOO.log('Position center unit cannot have collapse', 'error', 'LayoutUnit');
-                        return false;
-                    }
-                    if (!this.header) {
-                        this._createHeader();
-                    }
-                    var c = Dom.getElementsByClassName('collapse', 'div', this.header)[0];
-                    if (collapse) {
-                        //Force some header text if there isn't any
-                        if (!this.get('header')) {
-                            this.set('header', '&nbsp;');
-                        }
-                        if (!c) {
-                            c = document.createElement('div');
-                            this.header.appendChild(c);
-                            Event.on(c, 'click', this.collapse, this, true);
-                        }
-                        c.title = this.STR_COLLAPSE;
-                        c.className = 'collapse' + ((this.get('close')) ? ' collapse-close' : '');
-                    } else if (c) {
-                        Event.purgeElement(c);
-                        c.parentNode.removeChild(c);
-                    }
-                }
-            });
-            /**
-            * @attribute scroll
-            * @description Adds a class to the unit to allow for overflow: auto (yui-layout-scroll), default is overflow: hidden (yui-layout-noscroll). If true scroll bars will be placed on the element when the content exceeds the given area, false will put overflow hidden to hide the content. Passing null will render the content as usual overflow.
-            * @type Boolean/Null
-            */
-
-            this.setAttributeConfig('scroll', {
-                value: (((attr.scroll === true) || (attr.scroll === false) || (attr.scroll === null)) ? attr.scroll : false),
-                method: function(scroll) {
-                    if ((scroll === false) && !this._collapsed) { //Removing scroll bar
-                        if (this.body) {
-                            if (this.body.scrollTop > 0) {
-                                this._lastScrollTop = this.body.scrollTop;
-                            }
-                        }
-                    }
-                    
-                    if (scroll === true) {
-                        this.addClass('yui-layout-scroll');
-                        this.removeClass('yui-layout-noscroll');
-                        if (this._lastScrollTop > 0) {
-                            if (this.body) {
-                                this.body.scrollTop = this._lastScrollTop;
-                            }
-                        }
-                    } else if (scroll === false) {
-                        this.removeClass('yui-layout-scroll');
-                        this.addClass('yui-layout-noscroll');
-                    } else if (scroll === null) {
-                        this.removeClass('yui-layout-scroll');
-                        this.removeClass('yui-layout-noscroll');
-                    }
-                }
-            });
-            /**
-            * @attribute hover
-            * @description Config option to pass to the Resize Utility
-            */
-            this.setAttributeConfig('hover', {
-                writeOnce: true,
-                value: attr.hover || false,
-                validator: YAHOO.lang.isBoolean
-            });
-            /**
-            * @attribute useShim
-            * @description Config option to pass to the Resize Utility
-            */
-            this.setAttributeConfig('useShim', {
-                value: attr.useShim || false,
-                validator: YAHOO.lang.isBoolean,
-                method: function(u) {
-                    if (this._resize) {
-                        this._resize.set('useShim', u);
-                    }
-                }
-            });
-            /**
-            * @attribute resize
-            * @description Should a Resize instance be added to this unit
-            */
-
-            this.setAttributeConfig('resize', {
-                value: attr.resize || false,
-                validator: function(r) {
-                    if (YAHOO.util && YAHOO.util.Resize) {
-                        return true;
-                    }
-                    return false;
-                },
-                method: function(resize) {
-                    if (resize && !this._resize) {
-                        //Position Center doesn't get this
-                        if (this.get('position') == 'center') {
-                            YAHOO.log('Position center unit cannot have resize', 'error', 'LayoutUnit');
-                            return false;
-                        }
-                        var handle = false; //To catch center
-                        switch (this.get('position')) {
-                            case 'top':
-                                handle = 'b';
-                                break;
-                            case 'bottom':
-                                handle = 't';
-                                break;
-                            case 'right':
-                                handle = 'l';
-                                break;
-                            case 'left':
-                                handle = 'r';
-                                break;
-                        }
-
-                        this.setStyle('position', 'absolute'); //Make sure Resize get's a position
-                        
-                        if (handle) {
-                            this._resize = new YAHOO.util.Resize(this.get('element'), {
-                                proxy: this.get('proxy'),
-                                hover: this.get('hover'),
-                                status: false,
-                                autoRatio: false,
-                                handles: [handle],
-                                minWidth: this.get('minWidth'),
-                                maxWidth: this.get('maxWidth'),
-                                minHeight: this.get('minHeight'),
-                                maxHeight: this.get('maxHeight'),
-                                height: this.get('height'),
-                                width: this.get('width'),
-                                setSize: false,
-                                useShim: this.get('useShim'),
-                                wrap: false
-                            });
-                            
-                            this._resize._handles[handle].innerHTML = '<div class="yui-layout-resize-knob"></div>';
-
-                            if (this.get('proxy')) {
-                                var proxy = this._resize.getProxyEl();
-                                proxy.innerHTML = '<div class="yui-layout-handle-' + handle + '"></div>';
-                            }
-                            this._resize.on('startResize', function(ev) {
-                                this._lastScroll = this.get('scroll');
-                                this.set('scroll', false);
-                                if (this.get('parent')) {
-                                    this.get('parent').fireEvent('startResize');
-                                    var c = this.get('parent').getUnitByPosition('center');
-                                    this._lastCenterScroll = c.get('scroll');
-                                    c.set('scroll', false);
-                                }
-                                this.fireEvent('startResize');
-                            }, this, true);
-                            this._resize.on('resize', function(ev) {
-                                this.set('height', ev.height);
-                                this.set('width', ev.width);
-                            }, this, true);
-                            this._resize.on('endResize', function(ev) {
-                                this.set('scroll', this._lastScroll);
-                                if (this.get('parent')) {
-                                    var c = this.get('parent').getUnitByPosition('center');
-                                    c.set('scroll', this._lastCenterScroll);
-                                }
-                                this.resize();
-                                this.fireEvent('endResize');
-                            }, this, true);
-                        }
-                    } else {
-                        if (this._resize) {
-                            this._resize.destroy();
-                        }
-                    }
-                }
-            });
-			/**
-	         * The unit data source, used for loading content dynamically.
-	         * @attribute dataSrc
-	         * @type String
-	         */
-	        this.setAttributeConfig('dataSrc', {
-	            value: attr.dataSrc
-	        });
-	        /**
-	         * The method to use for the data request.
-	         * @attribute loadMethod
-	         * @type String
-	         * @default "GET"
-	         */
-	        this.setAttributeConfig('loadMethod', {
-	            value: attr.loadMethod || 'GET',
-	            validator: YAHOO.lang.isString
-	        });	
-	        /**
-	         * Whether or not any data has been loaded from the server.
-	         * @attribute dataLoaded
-	         * @type Boolean
-	         */        
-	        this.setAttributeConfig('dataLoaded', {
-	            value: false,
-	            validator: YAHOO.lang.isBoolean,
-	            writeOnce: true
-	        });
-	        /**
-	         * Number if milliseconds before aborting and calling failure handler.
-	         * @attribute dataTimeout
-	         * @type Number
-	         * @default null
-	         */
-	        this.setAttributeConfig('dataTimeout', {
-	            value: attr.dataTimeout || null,
-	            validator: YAHOO.lang.isNumber
-	        });
-        },
-        /**
-        * @private
-        * @method _cleanGrids
-        * @description This method attempts to clean up the first level of the YUI CSS Grids, YAHOO.util.Selector is required for this operation.
-        */
-        _cleanGrids: function() {
-            if (this.get('grids')) {
-                var b = Sel.query('div.yui-b', this.body, true);
-                if (b) {
-                    Dom.removeClass(b, 'yui-b');
-                }
-                Event.onAvailable('yui-main', function() {
-                    Dom.setStyle(Sel.query('#yui-main'), 'margin-left', '0');
-                    Dom.setStyle(Sel.query('#yui-main'), 'margin-right', '0');
-                });
-            }
-        },
-        /**
-        * @private
-        * @method _createHeader
-        * @description Creates the HTMLElement for the header
-        * @return {HTMLElement} The new HTMLElement
-        */
-        _createHeader: function() {
-            var header = document.createElement('div');
-            header.className = 'yui-layout-hd';
-            if (this.get('firstChild')) {
-                this.get('wrap').insertBefore(header, this.get('wrap').firstChild);
-            } else {
-                this.get('wrap').appendChild(header);
-            }
-            this.header = header;
-            return header;
-        },
-        /**
-        * @method destroy
-        * @param {Boolean} force Don't report to the parent, because we are being called from the parent.
-        * @description Removes this unit from the parent and cleans up after itself.
-        * @return {<a href="YAHOO.widget.Layout.html">YAHOO.widget.Layout</a>} The parent Layout instance
-        */
-        destroy: function(force) {
-            if (this._resize) {
-                this._resize.destroy();
-            }
-            var par = this.get('parent');
-
-            this.setStyle('display', 'none');
-            if (this._clip) {
-                this._clip.parentNode.removeChild(this._clip);
-                this._clip = null;
-            }
-
-            if (!force) {
-                par.removeUnit(this);
-            }
-            
-            if (par) {
-                par.removeListener('resize', this.resize, this, true);
-            }
-            this.unsubscribeAll();
-            Event.purgeElement(this.get('element'));
-            this.get('parentNode').removeChild(this.get('element'));
-
-            delete YAHOO.widget.LayoutUnit._instances[this.get('id')];
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                    delete this[i];
-                }
-            }
-        
-            return par;
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the LayoutUnit.
-        * @return {String}
-        */        
-        toString: function() {
-            if (this.get) {
-                return 'LayoutUnit #' + this.get('id') + ' (' + this.get('position') + ')';
-            }
-            return 'LayoutUnit';
-        }
-    /**
-    * @event resize
-    * @description Fired when this.resize is called
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event startResize
-    * @description Fired when the Resize Utility fires it's startResize Event.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event endResize
-    * @description Fired when the Resize Utility fires it's endResize Event.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event beforeResize
-    * @description Firef at the beginning of the resize method. If you return false, the resize is cancelled.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event contentChange
-    * @description Fired when the content in the header, body or footer is changed via the API
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event close
-    * @description Fired when the unit is closed
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event beforeCollapse
-    * @description Fired before the unit is collapsed. If you return false, the collapse is cancelled.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event collapse
-    * @description Fired when the unit is collapsed
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event expand
-    * @description Fired when the unit is exanded
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event beforeExpand
-    * @description Fired before the unit is exanded. If you return false, the collapse is cancelled.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event load
-    * @description Fired when data is loaded via the dataSrc config.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event loadError
-    * @description Fired when an error occurs loading data via the dataSrc config. Error message is passed as argument to this event.
-    * @type YAHOO.util.CustomEvent
-    */
-    });
-
-    YAHOO.widget.LayoutUnit = LayoutUnit;
-})();
-YAHOO.register("layout", YAHOO.widget.Layout, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/layout/layout-min.js b/eclipse.org-common/yui/2.6.0/build/layout/layout-min.js
deleted file mode 100644
index a0ce03e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/layout/layout-min.js
+++ /dev/null
@@ -1,11 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){var C=YAHOO.util.Dom,A=YAHOO.util.Event,D=YAHOO.lang;var B=function(F,E){if(D.isObject(F)&&!F.tagName){E=F;F=null;}if(D.isString(F)){if(C.get(F)){F=C.get(F);}}if(!F){F=document.body;}var G={element:F,attributes:E||{}};B.superclass.constructor.call(this,G.element,G.attributes);};B._instances={};B.getLayoutById=function(E){if(B._instances[E]){return B._instances[E];}return false;};YAHOO.extend(B,YAHOO.util.Element,{browser:function(){var E=YAHOO.env.ua;E.standardsMode=false;E.secure=false;return E;}(),_rendered:null,_rendered:null,_zIndex:null,_sizes:null,_setBodySize:function(G){var F=0,E=0;G=((G===false)?false:true);if(this._isBody){F=C.getClientHeight();E=C.getClientWidth();}else{F=parseInt(this.getStyle("height"),10);E=parseInt(this.getStyle("width"),10);if(isNaN(E)){E=this.get("element").clientWidth;}if(isNaN(F)){F=this.get("element").clientHeight;}}if(this.get("minWidth")){if(E<this.get("minWidth")){E=this.get("minWidth");}}if(this.get("minHeight")){if(F<this.get("minHeight")){F=this.get("minHeight");}}if(G){C.setStyle(this._doc,"height",F+"px");C.setStyle(this._doc,"width",E+"px");}this._sizes.doc={h:F,w:E};this._setSides(G);},_setSides:function(J){var H=((this._units.top)?this._units.top.get("height"):0),G=((this._units.bottom)?this._units.bottom.get("height"):0),I=this._sizes.doc.h,E=this._sizes.doc.w;J=((J===false)?false:true);this._sizes.top={h:H,w:((this._units.top)?E:0),t:0};this._sizes.bottom={h:G,w:((this._units.bottom)?E:0)};var F=(I-(H+G));this._sizes.left={h:F,w:((this._units.left)?this._units.left.get("width"):0)};this._sizes.right={h:F,w:((this._units.right)?this._units.right.get("width"):0),l:((this._units.right)?(E-this._units.right.get("width")):0),t:((this._units.top)?this._sizes.top.h:0)};if(this._units.right&&J){this._units.right.set("top",this._sizes.right.t);if(!this._units.right._collapsing){this._units.right.set("left",this._sizes.right.l);}this._units.right.set("height",this._sizes.right.h,true);}if(this._units.left){this._sizes.left.l=0;if(this._units.top){this._sizes.left.t=this._sizes.top.h;}else{this._sizes.left.t=0;}if(J){this._units.left.set("top",this._sizes.left.t);this._units.left.set("height",this._sizes.left.h,true);this._units.left.set("left",0);}}if(this._units.bottom){this._sizes.bottom.t=this._sizes.top.h+this._sizes.left.h;if(J){this._units.bottom.set("top",this._sizes.bottom.t);this._units.bottom.set("width",this._sizes.bottom.w,true);}}if(this._units.top){if(J){this._units.top.set("width",this._sizes.top.w,true);}}this._setCenter(J);},_setCenter:function(G){G=((G===false)?false:true);var F=this._sizes.left.h;var E=(this._sizes.doc.w-(this._sizes.left.w+this._sizes.right.w));if(G){this._units.center.set("height",F,true);this._units.center.set("width",E,true);this._units.center.set("top",this._sizes.top.h);this._units.center.set("left",this._sizes.left.w);}this._sizes.center={h:F,w:E,t:this._sizes.top.h,l:this._sizes.left.w};},getSizes:function(){return this._sizes;},getUnitById:function(E){return YAHOO.widget.LayoutUnit.getLayoutUnitById(E);},getUnitByPosition:function(E){if(E){E=E.toLowerCase();if(this._units[E]){return this._units[E];}return false;}return false;},removeUnit:function(E){delete this._units[E.get("position")];this.resize();},addUnit:function(G){if(!G.position){return false;}if(this._units[G.position]){return false;}var H=null,J=null;if(G.id){if(C.get(G.id)){H=C.get(G.id);delete G.id;}}if(G.element){H=G.element;}if(!J){J=document.createElement("div");var L=C.generateId();J.id=L;}if(!H){H=document.createElement("div");}C.addClass(H,"yui-layout-wrap");if(this.browser.ie&&!this.browser.standardsMode){J.style.zoom=1;H.style.zoom=1;}if(J.firstChild){J.insertBefore(H,J.firstChild);}else{J.appendChild(H);}this._doc.appendChild(J);var I=false,F=false;if(G.height){I=parseInt(G.height,10);}if(G.width){F=parseInt(G.width,10);}var E={};YAHOO.lang.augmentObject(E,G);E.parent=this;E.wrap=H;E.height=I;E.width=F;var K=new YAHOO.widget.LayoutUnit(J,E);K.on("heightChange",this.resize,this,true);K.on("widthChange",this.resize,this,true);K.on("gutterChange",this.resize,this,true);this._units[G.position]=K;if(this._rendered){this.resize();}return K;},_createUnits:function(){var E=this.get("units");for(var F in E){if(D.hasOwnProperty(E,F)){this.addUnit(E[F]);}}},resize:function(F){F=((F===false)?false:true);if(F){var E=this.fireEvent("beforeResize");if(E===false){F=false;}if(this.browser.ie){if(this._isBody){C.removeClass(document.documentElement,"yui-layout");C.addClass(document.documentElement,"yui-layout");}else{this.removeClass("yui-layout");this.addClass("yui-layout");}}}this._setBodySize(F);if(F){this.fireEvent("resize",{target:this,sizes:this._sizes});}return this;},_setupBodyElements:function(){this._doc=C.get("layout-doc");if(!this._doc){this._doc=document.createElement("div");this._doc.id="layout-doc";if(document.body.firstChild){document.body.insertBefore(this._doc,document.body.firstChild);}else{document.body.appendChild(this._doc);}}this._createUnits();this._setBodySize();A.on(window,"resize",this.resize,this,true);C.addClass(this._doc,"yui-layout-doc");},_setupElements:function(){this._doc=this.getElementsByClassName("yui-layout-doc")[0];if(!this._doc){this._doc=document.createElement("div");this.get("element").appendChild(this._doc);}this._createUnits();this._setBodySize();C.addClass(this._doc,"yui-layout-doc");},_isBody:null,_doc:null,init:function(F,E){this._zIndex=0;B.superclass.init.call(this,F,E);if(this.get("parent")){this._zIndex=this.get("parent")._zIndex+10;}this._sizes={};this._units={};var G=F;if(!D.isString(G)){G=C.generateId(G);}B._instances[G]=this;},render:function(){this._stamp();var E=this.get("element");if(E&&E.tagName&&(E.tagName.toLowerCase()=="body")){this._isBody=true;C.addClass(document.body,"yui-layout");if(C.hasClass(document.body,"yui-skin-sam")){C.addClass(document.documentElement,"yui-skin-sam");C.removeClass(document.body,"yui-skin-sam");}this._setupBodyElements();}else{this._isBody=false;this.addClass("yui-layout");
-this._setupElements();}this.resize();this._rendered=true;this.fireEvent("render");return this;},_stamp:function(){if(document.compatMode=="CSS1Compat"){this.browser.standardsMode=true;}if(window.location.href.toLowerCase().indexOf("https")===0){C.addClass(document.documentElement,"secure");this.browser.secure=true;}},initAttributes:function(E){B.superclass.initAttributes.call(this,E);this.setAttributeConfig("units",{writeOnce:true,validator:YAHOO.lang.isArray,value:E.units||[]});this.setAttributeConfig("minHeight",{value:E.minHeight||false,validator:YAHOO.lang.isNumber});this.setAttributeConfig("minWidth",{value:E.minWidth||false,validator:YAHOO.lang.isNumber});this.setAttributeConfig("height",{value:E.height||false,validator:YAHOO.lang.isNumber,method:function(F){this.setStyle("height",F+"px");}});this.setAttributeConfig("width",{value:E.width||false,validator:YAHOO.lang.isNumber,method:function(F){this.setStyle("width",F+"px");}});this.setAttributeConfig("parent",{writeOnce:true,value:E.parent||false,method:function(F){if(F){F.on("resize",this.resize,this,true);}}});},destroy:function(){var G=this.get("parent");if(G){G.removeListener("resize",this.resize,this,true);}A.removeListener(window,"resize",this.resize,this,true);this.unsubscribeAll();for(var E in this._units){if(D.hasOwnProperty(this._units,E)){if(this._units[E]){this._units[E].destroy(true);}}}A.purgeElement(this.get("element"));this.get("parentNode").removeChild(this.get("element"));delete YAHOO.widget.Layout._instances[this.get("id")];for(var F in this){if(D.hasOwnProperty(this,F)){this[F]=null;delete this[F];}}if(G){G.resize();}},toString:function(){if(this.get){return"Layout #"+this.get("id");}return"Layout";}});YAHOO.widget.Layout=B;})();(function(){var D=YAHOO.util.Dom,C=YAHOO.util.Selector,A=YAHOO.util.Event,E=YAHOO.lang;var B=function(G,F){var H={element:G,attributes:F||{}};B.superclass.constructor.call(this,H.element,H.attributes);};B._instances={};B.getLayoutUnitById=function(F){if(B._instances[F]){return B._instances[F];}return false;};YAHOO.extend(B,YAHOO.util.Element,{STR_CLOSE:"Click to close this pane.",STR_COLLAPSE:"Click to collapse this pane.",STR_EXPAND:"Click to expand this pane.",LOADING_CLASSNAME:"loading",browser:null,_sizes:null,_anim:null,_resize:null,_clip:null,_gutter:null,header:null,body:null,footer:null,_collapsed:null,_collapsing:null,_lastWidth:null,_lastHeight:null,_lastTop:null,_lastLeft:null,_lastScroll:null,_lastCenterScroll:null,_lastScrollTop:null,resize:function(F){var G=this.fireEvent("beforeResize");if(G===false){return this;}if(!this._collapsing||(F===true)){var N=this.get("scroll");this.set("scroll",false);var K=this._getBoxSize(this.header),J=this._getBoxSize(this.footer),L=[this.get("height"),this.get("width")];var H=(L[0]-K[0]-J[0])-(this._gutter.top+this._gutter.bottom),M=L[1]-(this._gutter.left+this._gutter.right);var O=(H+(K[0]+J[0])),I=M;if(this._collapsed&&!this._collapsing){this._setHeight(this._clip,O);this._setWidth(this._clip,I);D.setStyle(this._clip,"top",this.get("top")+this._gutter.top+"px");D.setStyle(this._clip,"left",this.get("left")+this._gutter.left+"px");}else{if(!this._collapsed||(this._collapsed&&this._collapsing)){O=this._setHeight(this.get("wrap"),O);I=this._setWidth(this.get("wrap"),I);this._sizes.wrap.h=O;this._sizes.wrap.w=I;D.setStyle(this.get("wrap"),"top",this._gutter.top+"px");D.setStyle(this.get("wrap"),"left",this._gutter.left+"px");this._sizes.header.w=this._setWidth(this.header,I);this._sizes.header.h=K[0];this._sizes.footer.w=this._setWidth(this.footer,I);this._sizes.footer.h=J[0];D.setStyle(this.footer,"bottom","0px");this._sizes.body.h=this._setHeight(this.body,(O-(K[0]+J[0])));this._sizes.body.w=this._setWidth(this.body,I);D.setStyle(this.body,"top",K[0]+"px");this.set("scroll",N);this.fireEvent("resize");}}}return this;},_setWidth:function(H,G){if(H){var F=this._getBorderSizes(H);G=(G-(F[1]+F[3]));G=this._fixQuirks(H,G,"w");D.setStyle(H,"width",G+"px");}return G;},_setHeight:function(H,G){if(H){var F=this._getBorderSizes(H);G=(G-(F[0]+F[2]));G=this._fixQuirks(H,G,"h");D.setStyle(H,"height",G+"px");}return G;},_fixQuirks:function(I,L,G){var K=0,H=2;if(G=="w"){K=1;H=3;}if(this.browser.ie&&!this.browser.standardsMode){var F=this._getBorderSizes(I),J=this._getBorderSizes(I.parentNode);if((F[K]===0)&&(F[H]===0)){if((J[K]!==0)&&(J[H]!==0)){L=(L-(J[K]+J[H]));}}else{if((J[K]===0)&&(J[H]===0)){L=(L+(F[K]+F[H]));}}}return L;},_getBoxSize:function(H){var G=[0,0];if(H){if(this.browser.ie&&!this.browser.standardsMode){H.style.zoom=1;}var F=this._getBorderSizes(H);G[0]=H.clientHeight+(F[0]+F[2]);G[1]=H.clientWidth+(F[1]+F[3]);}return G;},_getBorderSizes:function(H){var G=[];H=H||this.get("element");if(this.browser.ie&&!this.browser.standardsMode){H.style.zoom=1;}G[0]=parseInt(D.getStyle(H,"borderTopWidth"),10);G[1]=parseInt(D.getStyle(H,"borderRightWidth"),10);G[2]=parseInt(D.getStyle(H,"borderBottomWidth"),10);G[3]=parseInt(D.getStyle(H,"borderLeftWidth"),10);for(var F=0;F<G.length;F++){if(isNaN(G[F])){G[F]=0;}}return G;},_createClip:function(){if(!this._clip){this._clip=document.createElement("div");this._clip.className="yui-layout-clip yui-layout-clip-"+this.get("position");this._clip.innerHTML='<div class="collapse"></div>';var F=this._clip.firstChild;F.title=this.STR_EXPAND;A.on(F,"click",this.expand,this,true);this.get("element").parentNode.appendChild(this._clip);}},_toggleClip:function(){if(!this._collapsed){var J=this._getBoxSize(this.header),K=this._getBoxSize(this.footer),I=[this.get("height"),this.get("width")];var H=(I[0]-J[0]-K[0])-(this._gutter.top+this._gutter.bottom),F=I[1]-(this._gutter.left+this._gutter.right),G=(H+(J[0]+K[0]));switch(this.get("position")){case"top":case"bottom":this._setWidth(this._clip,F);this._setHeight(this._clip,this.get("collapseSize"));D.setStyle(this._clip,"left",(this._lastLeft+this._gutter.left)+"px");if(this.get("position")=="bottom"){D.setStyle(this._clip,"top",((this._lastTop+this._lastHeight)-(this.get("collapseSize")-this._gutter.top))+"px");
-}else{D.setStyle(this._clip,"top",this.get("top")+this._gutter.top+"px");}break;case"left":case"right":this._setWidth(this._clip,this.get("collapseSize"));this._setHeight(this._clip,G);D.setStyle(this._clip,"top",(this.get("top")+this._gutter.top)+"px");if(this.get("position")=="right"){D.setStyle(this._clip,"left",(((this._lastLeft+this._lastWidth)-this.get("collapseSize"))-this._gutter.left)+"px");}else{D.setStyle(this._clip,"left",(this.get("left")+this._gutter.left)+"px");}break;}D.setStyle(this._clip,"display","block");this.setStyle("display","none");}else{D.setStyle(this._clip,"display","none");}},getSizes:function(){return this._sizes;},toggle:function(){if(this._collapsed){this.expand();}else{this.collapse();}return this;},expand:function(){if(!this._collapsed){return this;}var L=this.fireEvent("beforeExpand");if(L===false){return this;}this._collapsing=true;this.setStyle("zIndex",this.get("parent")._zIndex+1);if(this._anim){this.setStyle("display","none");var F={},H;switch(this.get("position")){case"left":case"right":this.set("width",this._lastWidth,true);this.setStyle("width",this._lastWidth+"px");this.get("parent").resize(false);H=this.get("parent").getSizes()[this.get("position")];this.set("height",H.h,true);var K=H.l;F={left:{to:K}};if(this.get("position")=="left"){F.left.from=(K-H.w);this.setStyle("left",(K-H.w)+"px");}break;case"top":case"bottom":this.set("height",this._lastHeight,true);this.setStyle("height",this._lastHeight+"px");this.get("parent").resize(false);H=this.get("parent").getSizes()[this.get("position")];this.set("width",H.w,true);var J=H.t;F={top:{to:J}};if(this.get("position")=="top"){this.setStyle("top",(J-H.h)+"px");F.top.from=(J-H.h);}break;}this._anim.attributes=F;var I=function(){this.setStyle("display","block");this.resize(true);this._anim.onStart.unsubscribe(I,this,true);};var G=function(){this._collapsing=false;this.setStyle("zIndex",this.get("parent")._zIndex);this.set("width",this._lastWidth);this.set("height",this._lastHeight);this._collapsed=false;this.resize();this.set("scroll",this._lastScroll);if(this._lastScrollTop>0){this.body.scrollTop=this._lastScrollTop;}this._anim.onComplete.unsubscribe(G,this,true);this.fireEvent("expand");};this._anim.onStart.subscribe(I,this,true);this._anim.onComplete.subscribe(G,this,true);this._anim.animate();this._toggleClip();}else{this._collapsing=false;this._toggleClip();this._collapsed=false;this.setStyle("zIndex",this.get("parent")._zIndex);this.setStyle("display","block");this.set("width",this._lastWidth);this.set("height",this._lastHeight);this.resize();this.set("scroll",this._lastScroll);if(this._lastScrollTop>0){this.body.scrollTop=this._lastScrollTop;}this.fireEvent("expand");}return this;},collapse:function(){if(this._collapsed){return this;}var J=this.fireEvent("beforeCollapse");if(J===false){return this;}if(!this._clip){this._createClip();}this._collapsing=true;var G=this.get("width"),H=this.get("height"),F={};this._lastWidth=G;this._lastHeight=H;this._lastScroll=this.get("scroll");this._lastScrollTop=this.body.scrollTop;this.set("scroll",false,true);this._lastLeft=parseInt(this.get("element").style.left,10);this._lastTop=parseInt(this.get("element").style.top,10);if(isNaN(this._lastTop)){this._lastTop=0;this.set("top",0);}if(isNaN(this._lastLeft)){this._lastLeft=0;this.set("left",0);}this.setStyle("zIndex",this.get("parent")._zIndex+1);var K=this.get("position");switch(K){case"top":case"bottom":this.set("height",(this.get("collapseSize")+(this._gutter.top+this._gutter.bottom)));F={top:{to:(this.get("top")-H)}};if(K=="bottom"){F.top.to=(this.get("top")+H);}break;case"left":case"right":this.set("width",(this.get("collapseSize")+(this._gutter.left+this._gutter.right)));F={left:{to:-(this._lastWidth)}};if(K=="right"){F.left={to:(this.get("left")+G)};}break;}if(this._anim){this._anim.attributes=F;var I=function(){this._collapsing=false;this._toggleClip();this.setStyle("zIndex",this.get("parent")._zIndex);this._collapsed=true;this.get("parent").resize();this._anim.onComplete.unsubscribe(I,this,true);this.fireEvent("collapse");};this._anim.onComplete.subscribe(I,this,true);this._anim.animate();}else{this._collapsing=false;this.setStyle("display","none");this._toggleClip();this.setStyle("zIndex",this.get("parent")._zIndex);this.get("parent").resize();this._collapsed=true;this.fireEvent("collapse");}return this;},close:function(){this.setStyle("display","none");this.get("parent").removeUnit(this);this.fireEvent("close");if(this._clip){this._clip.parentNode.removeChild(this._clip);this._clip=null;}return this.get("parent");},loadHandler:{success:function(F){this.body.innerHTML=F.responseText;this.resize(true);},failure:function(F){}},dataConnection:null,_loading:false,loadContent:function(){if(YAHOO.util.Connect&&this.get("dataSrc")&&!this._loading&&!this.get("dataLoaded")){this._loading=true;D.addClass(this.body,this.LOADING_CLASSNAME);this.dataConnection=YAHOO.util.Connect.asyncRequest(this.get("loadMethod"),this.get("dataSrc"),{success:function(F){this.loadHandler.success.call(this,F);this.set("dataLoaded",true);this.dataConnection=null;D.removeClass(this.body,this.LOADING_CLASSNAME);this._loading=false;this.fireEvent("load");},failure:function(F){this.loadHandler.failure.call(this,F);this.dataConnection=null;D.removeClass(this.body,this.LOADING_CLASSNAME);this._loading=false;this.fireEvent("loadError",{error:F});},scope:this,timeout:this.get("dataTimeout")});return this.dataConnection;}return false;},init:function(H,G){this._gutter={left:0,right:0,top:0,bottom:0};this._sizes={wrap:{h:0,w:0},header:{h:0,w:0},body:{h:0,w:0},footer:{h:0,w:0}};B.superclass.init.call(this,H,G);this.browser=this.get("parent").browser;var K=H;if(!E.isString(K)){K=D.generateId(K);}B._instances[K]=this;this.setStyle("position","absolute");this.addClass("yui-layout-unit");this.addClass("yui-layout-unit-"+this.get("position"));var J=this.getElementsByClassName("yui-layout-hd","div")[0];if(J){this.header=J;}var F=this.getElementsByClassName("yui-layout-bd","div")[0];
-if(F){this.body=F;}var I=this.getElementsByClassName("yui-layout-ft","div")[0];if(I){this.footer=I;}this.on("contentChange",this.resize,this,true);this._lastScrollTop=0;this.set("animate",this.get("animate"));},initAttributes:function(F){B.superclass.initAttributes.call(this,F);this.setAttributeConfig("wrap",{value:F.wrap||null,method:function(G){if(G){var H=D.generateId(G);B._instances[H]=this;}}});this.setAttributeConfig("grids",{value:F.grids||false});this.setAttributeConfig("top",{value:F.top||0,validator:E.isNumber,method:function(G){if(!this._collapsing){this.setStyle("top",G+"px");}}});this.setAttributeConfig("left",{value:F.left||0,validator:E.isNumber,method:function(G){if(!this._collapsing){this.setStyle("left",G+"px");}}});this.setAttributeConfig("minWidth",{value:F.minWidth||false,validator:YAHOO.lang.isNumber});this.setAttributeConfig("maxWidth",{value:F.maxWidth||false,validator:YAHOO.lang.isNumber});this.setAttributeConfig("minHeight",{value:F.minHeight||false,validator:YAHOO.lang.isNumber});this.setAttributeConfig("maxHeight",{value:F.maxHeight||false,validator:YAHOO.lang.isNumber});this.setAttributeConfig("height",{value:F.height,validator:E.isNumber,method:function(G){if(!this._collapsing){this.setStyle("height",G+"px");}}});this.setAttributeConfig("width",{value:F.width,validator:E.isNumber,method:function(G){if(!this._collapsing){this.setStyle("width",G+"px");}}});this.setAttributeConfig("zIndex",{value:F.zIndex||false,method:function(G){this.setStyle("zIndex",G);}});this.setAttributeConfig("position",{value:F.position});this.setAttributeConfig("gutter",{value:F.gutter||0,validator:YAHOO.lang.isString,method:function(H){var G=H.split(" ");if(G.length){this._gutter.top=parseInt(G[0],10);if(G[1]){this._gutter.right=parseInt(G[1],10);}else{this._gutter.right=this._gutter.top;}if(G[2]){this._gutter.bottom=parseInt(G[2],10);}else{this._gutter.bottom=this._gutter.top;}if(G[3]){this._gutter.left=parseInt(G[3],10);}else{if(G[1]){this._gutter.left=this._gutter.right;}else{this._gutter.left=this._gutter.top;}}}}});this.setAttributeConfig("parent",{writeOnce:true,value:F.parent||false,method:function(G){if(G){G.on("resize",this.resize,this,true);}}});this.setAttributeConfig("collapseSize",{value:F.collapseSize||25,validator:YAHOO.lang.isNumber});this.setAttributeConfig("duration",{value:F.duration||0.5});this.setAttributeConfig("easing",{value:F.easing||((YAHOO.util&&YAHOO.util.Easing)?YAHOO.util.Easing.BounceIn:"false")});this.setAttributeConfig("animate",{value:((F.animate===false)?false:true),validator:function(){var G=false;if(YAHOO.util.Anim){G=true;}return G;},method:function(G){if(G){this._anim=new YAHOO.util.Anim(this.get("element"),{},this.get("duration"),this.get("easing"));}else{this._anim=false;}}});this.setAttributeConfig("header",{value:F.header||false,method:function(G){if(G===false){if(this.header){D.addClass(this.body,"yui-layout-bd-nohd");this.header.parentNode.removeChild(this.header);this.header=null;}}else{if(!this.header){var I=this.getElementsByClassName("yui-layout-hd","div")[0];if(!I){I=this._createHeader();}this.header=I;}var H=this.header.getElementsByTagName("h2")[0];if(!H){H=document.createElement("h2");this.header.appendChild(H);}H.innerHTML=G;if(this.body){D.removeClass(this.body,"yui-layout-bd-nohd");}}this.fireEvent("contentChange",{target:"header"});}});this.setAttributeConfig("proxy",{writeOnce:true,value:((F.proxy===false)?false:true)});this.setAttributeConfig("body",{value:F.body||false,method:function(I){if(!this.body){var G=this.getElementsByClassName("yui-layout-bd","div")[0];if(G){this.body=G;}else{G=document.createElement("div");G.className="yui-layout-bd";this.body=G;this.get("wrap").appendChild(G);}}if(!this.header){D.addClass(this.body,"yui-layout-bd-nohd");}D.addClass(this.body,"yui-layout-bd-noft");var H=null;if(E.isString(I)){H=D.get(I);}else{if(I&&I.tagName){H=I;}}if(H){var J=D.generateId(H);B._instances[J]=this;this.body.appendChild(H);}else{this.body.innerHTML=I;}this._cleanGrids();this.fireEvent("contentChange",{target:"body"});}});this.setAttributeConfig("footer",{value:F.footer||false,method:function(H){if(H===false){if(this.footer){D.addClass(this.body,"yui-layout-bd-noft");this.footer.parentNode.removeChild(this.footer);this.footer=null;}}else{if(!this.footer){var I=this.getElementsByClassName("yui-layout-ft","div")[0];if(!I){I=document.createElement("div");I.className="yui-layout-ft";this.footer=I;this.get("wrap").appendChild(I);}else{this.footer=I;}}var G=null;if(E.isString(H)){G=D.get(H);}else{if(H&&H.tagName){G=H;}}if(G){this.footer.appendChild(G);}else{this.footer.innerHTML=H;}D.removeClass(this.body,"yui-layout-bd-noft");}this.fireEvent("contentChange",{target:"footer"});}});this.setAttributeConfig("close",{value:F.close||false,method:function(G){if(this.get("position")=="center"){return false;}if(!this.header){this._createHeader();}var H=D.getElementsByClassName("close","div",this.header)[0];if(G){if(!this.get("header")){this.set("header","&nbsp;");}if(!H){H=document.createElement("div");H.className="close";this.header.appendChild(H);A.on(H,"click",this.close,this,true);}H.title=this.STR_CLOSE;}else{if(H){A.purgeElement(H);H.parentNode.removeChild(H);}}this._configs.close.value=G;this.set("collapse",this.get("collapse"));}});this.setAttributeConfig("collapse",{value:F.collapse||false,method:function(G){if(this.get("position")=="center"){return false;}if(!this.header){this._createHeader();}var H=D.getElementsByClassName("collapse","div",this.header)[0];if(G){if(!this.get("header")){this.set("header","&nbsp;");}if(!H){H=document.createElement("div");this.header.appendChild(H);A.on(H,"click",this.collapse,this,true);}H.title=this.STR_COLLAPSE;H.className="collapse"+((this.get("close"))?" collapse-close":"");}else{if(H){A.purgeElement(H);H.parentNode.removeChild(H);}}}});this.setAttributeConfig("scroll",{value:(((F.scroll===true)||(F.scroll===false)||(F.scroll===null))?F.scroll:false),method:function(G){if((G===false)&&!this._collapsed){if(this.body){if(this.body.scrollTop>0){this._lastScrollTop=this.body.scrollTop;
-}}}if(G===true){this.addClass("yui-layout-scroll");this.removeClass("yui-layout-noscroll");if(this._lastScrollTop>0){if(this.body){this.body.scrollTop=this._lastScrollTop;}}}else{if(G===false){this.removeClass("yui-layout-scroll");this.addClass("yui-layout-noscroll");}else{if(G===null){this.removeClass("yui-layout-scroll");this.removeClass("yui-layout-noscroll");}}}}});this.setAttributeConfig("hover",{writeOnce:true,value:F.hover||false,validator:YAHOO.lang.isBoolean});this.setAttributeConfig("useShim",{value:F.useShim||false,validator:YAHOO.lang.isBoolean,method:function(G){if(this._resize){this._resize.set("useShim",G);}}});this.setAttributeConfig("resize",{value:F.resize||false,validator:function(G){if(YAHOO.util&&YAHOO.util.Resize){return true;}return false;},method:function(G){if(G&&!this._resize){if(this.get("position")=="center"){return false;}var I=false;switch(this.get("position")){case"top":I="b";break;case"bottom":I="t";break;case"right":I="l";break;case"left":I="r";break;}this.setStyle("position","absolute");if(I){this._resize=new YAHOO.util.Resize(this.get("element"),{proxy:this.get("proxy"),hover:this.get("hover"),status:false,autoRatio:false,handles:[I],minWidth:this.get("minWidth"),maxWidth:this.get("maxWidth"),minHeight:this.get("minHeight"),maxHeight:this.get("maxHeight"),height:this.get("height"),width:this.get("width"),setSize:false,useShim:this.get("useShim"),wrap:false});this._resize._handles[I].innerHTML='<div class="yui-layout-resize-knob"></div>';if(this.get("proxy")){var H=this._resize.getProxyEl();H.innerHTML='<div class="yui-layout-handle-'+I+'"></div>';}this._resize.on("startResize",function(J){this._lastScroll=this.get("scroll");this.set("scroll",false);if(this.get("parent")){this.get("parent").fireEvent("startResize");var K=this.get("parent").getUnitByPosition("center");this._lastCenterScroll=K.get("scroll");K.set("scroll",false);}this.fireEvent("startResize");},this,true);this._resize.on("resize",function(J){this.set("height",J.height);this.set("width",J.width);},this,true);this._resize.on("endResize",function(J){this.set("scroll",this._lastScroll);if(this.get("parent")){var K=this.get("parent").getUnitByPosition("center");K.set("scroll",this._lastCenterScroll);}this.resize();this.fireEvent("endResize");},this,true);}}else{if(this._resize){this._resize.destroy();}}}});this.setAttributeConfig("dataSrc",{value:F.dataSrc});this.setAttributeConfig("loadMethod",{value:F.loadMethod||"GET",validator:YAHOO.lang.isString});this.setAttributeConfig("dataLoaded",{value:false,validator:YAHOO.lang.isBoolean,writeOnce:true});this.setAttributeConfig("dataTimeout",{value:F.dataTimeout||null,validator:YAHOO.lang.isNumber});},_cleanGrids:function(){if(this.get("grids")){var F=C.query("div.yui-b",this.body,true);if(F){D.removeClass(F,"yui-b");}A.onAvailable("yui-main",function(){D.setStyle(C.query("#yui-main"),"margin-left","0");D.setStyle(C.query("#yui-main"),"margin-right","0");});}},_createHeader:function(){var F=document.createElement("div");F.className="yui-layout-hd";if(this.get("firstChild")){this.get("wrap").insertBefore(F,this.get("wrap").firstChild);}else{this.get("wrap").appendChild(F);}this.header=F;return F;},destroy:function(H){if(this._resize){this._resize.destroy();}var G=this.get("parent");this.setStyle("display","none");if(this._clip){this._clip.parentNode.removeChild(this._clip);this._clip=null;}if(!H){G.removeUnit(this);}if(G){G.removeListener("resize",this.resize,this,true);}this.unsubscribeAll();A.purgeElement(this.get("element"));this.get("parentNode").removeChild(this.get("element"));delete YAHOO.widget.LayoutUnit._instances[this.get("id")];for(var F in this){if(E.hasOwnProperty(this,F)){this[F]=null;delete this[F];}}return G;},toString:function(){if(this.get){return"LayoutUnit #"+this.get("id")+" ("+this.get("position")+")";}return"LayoutUnit";}});YAHOO.widget.LayoutUnit=B;})();YAHOO.register("layout",YAHOO.widget.Layout,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/layout/layout.js b/eclipse.org-common/yui/2.6.0/build/layout/layout.js
deleted file mode 100644
index 59c5421..0000000
--- a/eclipse.org-common/yui/2.6.0/build/layout/layout.js
+++ /dev/null
@@ -1,2230 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * @description <p>Provides a fixed layout containing, top, bottom, left, right and center layout units. It can be applied to either the body or an element.</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event
- * @module layout
- * @beta
- */
-(function() {
-    var Dom = YAHOO.util.Dom,
-        Event = YAHOO.util.Event,
-        Lang = YAHOO.lang;
-
-    /**
-     * @constructor
-     * @class Layout
-     * @extends YAHOO.util.Element
-     * @description <p>Provides a fixed layout containing, top, bottom, left, right and center layout units. It can be applied to either the body or an element.</p>
-     * @param {String/HTMLElement} el The element to make contain a layout.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-
-    var Layout = function(el, config) {
-        if (Lang.isObject(el) && !el.tagName) {
-            config = el;
-            el = null;
-        }
-        if (Lang.isString(el)) {
-            if (Dom.get(el)) {
-                el = Dom.get(el);
-            }
-        }
-        if (!el) {
-            el = document.body;
-        }
-
-        var oConfig = {
-            element: el,
-            attributes: config || {}
-        };
-
-        Layout.superclass.constructor.call(this, oConfig.element, oConfig.attributes);    
-    };
-
-    /**
-    * @private
-    * @static
-    * @property _instances
-    * @description Internal hash table for all layout instances
-    * @type Object
-    */ 
-    Layout._instances = {};
-    /**
-    * @static
-    * @method getLayoutById 
-    * @description Get's a layout object by the HTML id of the element associated with the Layout object.
-    * @return {Object} The Layout Object
-    */ 
-    Layout.getLayoutById = function(id) {
-        if (Layout._instances[id]) {
-            return Layout._instances[id];
-        }
-        return false;
-    };
-
-    YAHOO.extend(Layout, YAHOO.util.Element, {
-        /**
-        * @property browser
-        * @description A modified version of the YAHOO.env.ua object
-        * @type Object
-        */
-        browser: function() {
-            var b = YAHOO.env.ua;
-            b.standardsMode = false;
-            b.secure = false;
-            return b;
-        }(),
-        /**
-        * @private
-        * @property _units
-        * @description An object literal that contains a list of units in the layout
-        * @type Object
-        */
-        _rendered: null,
-        /**
-        * @private
-        * @property _rendered
-        * @description Set to true when the layout is rendered
-        * @type Boolean
-        */
-        _rendered: null,
-        /**
-        * @private
-        * @property _zIndex
-        * @description The zIndex to set all LayoutUnits to
-        * @type Number
-        */
-        _zIndex: null,
-        /**
-        * @private
-        * @property _sizes
-        * @description A collection of the current sizes of all usable LayoutUnits to be used for calculations
-        * @type Object
-        */
-        _sizes: null,
-        /**
-        * @private
-        * @method _setBodySize
-        * @param {Boolean} set If set to false, it will NOT set the size, just perform the calculations (used for collapsing units)
-        * @description Used to set the body size of the layout, sets the height and width of the parent container
-        */
-        _setBodySize: function(set) {
-            var h = 0, w = 0;
-            set = ((set === false) ? false : true);
-
-            if (this._isBody) {
-                h = Dom.getClientHeight();
-                w = Dom.getClientWidth();
-            } else {
-                h = parseInt(this.getStyle('height'), 10);
-                w = parseInt(this.getStyle('width'), 10);
-                if (isNaN(w)) {
-                    w = this.get('element').clientWidth;
-                }
-                if (isNaN(h)) {
-                    h = this.get('element').clientHeight;
-                }
-            }
-            if (this.get('minWidth')) {
-                if (w < this.get('minWidth')) {
-                    w = this.get('minWidth');
-                }
-            }
-            if (this.get('minHeight')) {
-                if (h < this.get('minHeight')) {
-                    h = this.get('minHeight');
-                }
-            }
-            if (set) {
-                Dom.setStyle(this._doc, 'height', h + 'px');
-                Dom.setStyle(this._doc, 'width', w + 'px');
-            }
-            this._sizes.doc = { h: h, w: w };
-            this._setSides(set);
-        },
-        /**
-        * @private
-        * @method _setSides
-        * @param {Boolean} set If set to false, it will NOT set the size, just perform the calculations (used for collapsing units)
-        * @description Used to set the size and position of the left, right, top and bottom units
-        */
-        _setSides: function(set) {
-            var h1 = ((this._units.top) ? this._units.top.get('height') : 0),
-                h2 = ((this._units.bottom) ? this._units.bottom.get('height') : 0),
-                h = this._sizes.doc.h,
-                w = this._sizes.doc.w;
-            set = ((set === false) ? false : true);
-
-            this._sizes.top = {
-                h: h1, w: ((this._units.top) ? w : 0),
-                t: 0
-            };
-            this._sizes.bottom = {
-                h: h2, w: ((this._units.bottom) ? w : 0)
-            };
-            
-            var newH = (h - (h1 + h2));
-
-            this._sizes.left = {
-                h: newH, w: ((this._units.left) ? this._units.left.get('width') : 0)
-            };
-            this._sizes.right = {
-                h: newH, w: ((this._units.right) ? this._units.right.get('width') : 0),
-                l: ((this._units.right) ? (w - this._units.right.get('width')) : 0),
-                t: ((this._units.top) ? this._sizes.top.h : 0)
-            };
-            
-            if (this._units.right && set) {
-                this._units.right.set('top', this._sizes.right.t);
-                if (!this._units.right._collapsing) { 
-                    this._units.right.set('left', this._sizes.right.l);
-                }
-                this._units.right.set('height', this._sizes.right.h, true);
-            }
-            if (this._units.left) {
-                this._sizes.left.l = 0;
-                if (this._units.top) {
-                    this._sizes.left.t = this._sizes.top.h;
-                } else {
-                    this._sizes.left.t = 0;
-                }
-                if (set) {
-                    this._units.left.set('top', this._sizes.left.t);
-                    this._units.left.set('height', this._sizes.left.h, true);
-                    this._units.left.set('left', 0);
-                }
-            }
-            if (this._units.bottom) {
-                this._sizes.bottom.t = this._sizes.top.h + this._sizes.left.h;
-                if (set) {
-                    this._units.bottom.set('top', this._sizes.bottom.t);
-                    this._units.bottom.set('width', this._sizes.bottom.w, true);
-                }
-            }
-            if (this._units.top) {
-                if (set) {
-                    this._units.top.set('width', this._sizes.top.w, true);
-                }
-            }
-            this._setCenter(set);
-        },
-        /**
-        * @private
-        * @method _setCenter
-        * @param {Boolean} set If set to false, it will NOT set the size, just perform the calculations (used for collapsing units)
-        * @description Used to set the size and position of the center unit
-        */
-        _setCenter: function(set) {
-            set = ((set === false) ? false : true);
-            var h = this._sizes.left.h;
-            var w = (this._sizes.doc.w - (this._sizes.left.w + this._sizes.right.w));
-            if (set) {
-                this._units.center.set('height', h, true);
-                this._units.center.set('width', w, true);
-                this._units.center.set('top', this._sizes.top.h);
-                this._units.center.set('left', this._sizes.left.w);
-            }
-            this._sizes.center = { h: h, w: w, t: this._sizes.top.h, l: this._sizes.left.w };
-        },
-        /**
-        * @method getSizes
-        * @description Get a reference to the internal Layout Unit sizes object used to build the layout wireframe
-        * @return {Object} An object of the layout unit sizes
-        */
-        getSizes: function() {
-            return this._sizes;
-        },
-        /**
-        * @method getUnitById
-        * @param {String} id The HTML element id of the unit
-        * @description Get the LayoutUnit by it's HTML id
-        * @return {<a href="YAHOO.widget.LayoutUnit.html">YAHOO.widget.LayoutUnit</a>} The LayoutUnit instance
-        */
-        getUnitById: function(id) {
-            return YAHOO.widget.LayoutUnit.getLayoutUnitById(id);
-        },
-        /**
-        * @method getUnitByPosition
-        * @param {String} pos The position of the unit in this layout
-        * @description Get the LayoutUnit by it's position in this layout
-        * @return {<a href="YAHOO.widget.LayoutUnit.html">YAHOO.widget.LayoutUnit</a>} The LayoutUnit instance
-        */
-        getUnitByPosition: function(pos) {
-            if (pos) {
-                pos = pos.toLowerCase();
-                if (this._units[pos]) {
-                    return this._units[pos];
-                }
-                return false;
-            }
-            return false;
-        },
-        /**
-        * @method removeUnit
-        * @param {Object} unit The LayoutUnit that you want to remove
-        * @description Remove the unit from this layout and resize the layout.
-        */
-        removeUnit: function(unit) {
-            delete this._units[unit.get('position')];
-            this.resize();
-        },
-        /**
-        * @method addUnit
-        * @param {Object} cfg The config for the LayoutUnit that you want to add
-        * @description Add a unit to this layout and if the layout is rendered, resize the layout. 
-        * @return {<a href="YAHOO.widget.LayoutUnit.html">YAHOO.widget.LayoutUnit</a>} The LayoutUnit instance
-        */
-        addUnit: function(cfg) {
-            if (!cfg.position) {
-                return false;
-            }
-            if (this._units[cfg.position]) {
-                return false;
-            }
-            var element = null,
-                el = null;
-
-            if (cfg.id) {
-                if (Dom.get(cfg.id)) {
-                    element = Dom.get(cfg.id);
-                    delete cfg.id;
-
-                }
-            }
-            if (cfg.element) {
-                element = cfg.element;
-            }
-
-            if (!el) {
-                el = document.createElement('div');
-                var id = Dom.generateId();
-                el.id = id;
-            }
-
-            if (!element) {
-                element = document.createElement('div');
-            }
-            Dom.addClass(element, 'yui-layout-wrap');
-            if (this.browser.ie && !this.browser.standardsMode) {
-                el.style.zoom = 1;
-                element.style.zoom = 1;
-            }
-
-            if (el.firstChild) {
-                el.insertBefore(element, el.firstChild);
-            } else {
-                el.appendChild(element);
-            }
-            this._doc.appendChild(el);
-
-            var h = false, w = false;
-
-            if (cfg.height) {
-                h = parseInt(cfg.height, 10);
-            }
-            if (cfg.width) {
-                w = parseInt(cfg.width, 10);
-            }
-            var unitConfig = {};
-            YAHOO.lang.augmentObject(unitConfig, cfg); // break obj ref
-
-            unitConfig.parent = this;
-            unitConfig.wrap = element;
-            unitConfig.height = h;
-            unitConfig.width = w;
-
-            var unit = new YAHOO.widget.LayoutUnit(el, unitConfig);
-
-            unit.on('heightChange', this.resize, this, true);
-            unit.on('widthChange', this.resize, this, true);
-            unit.on('gutterChange', this.resize, this, true);
-            this._units[cfg.position] = unit;
-
-            if (this._rendered) {
-                this.resize();
-            }
-
-            return unit;
-        },
-        /**
-        * @private
-        * @method _createUnits
-        * @description Private method to create units from the config that was passed in.
-        */
-        _createUnits: function() {
-            var units = this.get('units');
-            for (var i in units) {
-                if (Lang.hasOwnProperty(units, i)) {
-                    this.addUnit(units[i]);
-                }
-            }
-        },
-        /**
-        * @method resize
-        * @param {Boolean} set If set to false, it will NOT set the size, just perform the calculations (used for collapsing units)
-        * @description Starts the chain of resize routines that will resize all the units.
-        * @return {<a href="YAHOO.widget.Layout.html">YAHOO.widget.Layout</a>} The Layout instance
-        */
-        resize: function(set) {
-            set = ((set === false) ? false : true);
-            if (set) {
-                var retVal = this.fireEvent('beforeResize');
-                if (retVal === false) {
-                    set = false;
-                }
-                if (this.browser.ie) {
-                    if (this._isBody) {
-                        Dom.removeClass(document.documentElement, 'yui-layout');
-                        Dom.addClass(document.documentElement, 'yui-layout');
-                    } else {
-                        this.removeClass('yui-layout');
-                        this.addClass('yui-layout');
-                    }
-                }
-            }
-            this._setBodySize(set);
-            if (set) {
-                this.fireEvent('resize', { target: this, sizes: this._sizes });
-            }
-            return this;
-        },
-        /**
-        * @private
-        * @method _setupBodyElements
-        * @description Sets up the main doc element when using the body as the main element.
-        */
-        _setupBodyElements: function() {
-            this._doc = Dom.get('layout-doc');
-            if (!this._doc) {
-                this._doc = document.createElement('div');
-                this._doc.id = 'layout-doc';
-                if (document.body.firstChild) {
-                    document.body.insertBefore(this._doc, document.body.firstChild);
-                } else {
-                    document.body.appendChild(this._doc);
-                }
-            }
-            this._createUnits();
-            this._setBodySize();
-            Event.on(window, 'resize', this.resize, this, true);
-            Dom.addClass(this._doc, 'yui-layout-doc');
-        },
-        /**
-        * @private
-        * @method _setupElements
-        * @description Sets up the main doc element when not using the body as the main element.
-        */
-        _setupElements: function() {
-            this._doc = this.getElementsByClassName('yui-layout-doc')[0];
-            if (!this._doc) {
-                this._doc = document.createElement('div');
-                this.get('element').appendChild(this._doc);
-            }
-            this._createUnits();
-            this._setBodySize();
-            Dom.addClass(this._doc, 'yui-layout-doc');
-        },
-        /**
-        * @private
-        * @property _isBody
-        * @description Flag to determine if we are using the body as the root element.
-        * @type Boolean
-        */
-        _isBody: null,
-        /**
-        * @private
-        * @property _doc
-        * @description Reference to the root element
-        * @type HTMLElement
-        */
-        _doc: null,
-        /**
-        * @private
-        * @method init
-        * @description The Layout class' initialization method
-        */        
-        init: function(p_oElement, p_oAttributes) {
-
-            this._zIndex = 0;
-
-            Layout.superclass.init.call(this, p_oElement, p_oAttributes);
-            
-            if (this.get('parent')) {
-                this._zIndex = this.get('parent')._zIndex + 10;
-            }
-
-            this._sizes = {};
-            this._units = {};
-
-            var id = p_oElement;
-            if (!Lang.isString(id)) {
-                id = Dom.generateId(id);
-            }
-            Layout._instances[id] = this;
-        },
-        /**
-        * @method render
-        * @description This method starts the render process, applying classnames and creating elements
-        * @return {<a href="YAHOO.widget.Layout.html">YAHOO.widget.Layout</a>} The Layout instance
-        */        
-        render: function() {
-            this._stamp();
-            var el = this.get('element');
-            if (el && el.tagName && (el.tagName.toLowerCase() == 'body')) {
-                this._isBody = true;
-                Dom.addClass(document.body, 'yui-layout');
-                if (Dom.hasClass(document.body, 'yui-skin-sam')) {
-                    //Move the class up so we can have a css chain
-                    Dom.addClass(document.documentElement, 'yui-skin-sam');
-                    Dom.removeClass(document.body, 'yui-skin-sam');
-                }
-                this._setupBodyElements();
-            } else {
-                this._isBody = false;
-                this.addClass('yui-layout');
-                this._setupElements();
-            }
-            this.resize();
-            this._rendered = true;
-            this.fireEvent('render');
-
-            return this;
-        },
-        /**
-        * @private
-        * @method _stamp
-        * @description Stamps the root node with a secure classname for ease of use. Also sets the this.browser.standardsMode variable.
-        */        
-        _stamp: function() {
-            if (document.compatMode == 'CSS1Compat') {
-                this.browser.standardsMode = true;
-            }
-            if (window.location.href.toLowerCase().indexOf("https") === 0) {
-                Dom.addClass(document.documentElement, 'secure');
-                this.browser.secure = true;
-            }
-        },
-        /**
-        * @private
-        * @method initAttributes
-        * @description Processes the config
-        */        
-        initAttributes: function(attr) {
-            Layout.superclass.initAttributes.call(this, attr);
-            /**
-            * @attribute units
-            * @description An array of config definitions for the LayoutUnits to add to this layout
-            * @type Array
-            */
-            this.setAttributeConfig('units', {
-                writeOnce: true,
-                validator: YAHOO.lang.isArray,
-                value: attr.units || []
-            });
-
-            /**
-            * @attribute minHeight
-            * @description The minimum height in pixels
-            * @type Number
-            */
-            this.setAttributeConfig('minHeight', {
-                value: attr.minHeight || false,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute minWidth
-            * @description The minimum width in pixels
-            * @type Number
-            */
-            this.setAttributeConfig('minWidth', {
-                value: attr.minWidth || false,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute height
-            * @description The height in pixels
-            * @type Number
-            */
-            this.setAttributeConfig('height', {
-                value: attr.height || false,
-                validator: YAHOO.lang.isNumber,
-                method: function(h) {
-                    this.setStyle('height', h + 'px');
-                }
-            });
-
-            /**
-            * @attribute width
-            * @description The width in pixels
-            * @type Number
-            */
-            this.setAttributeConfig('width', {
-                value: attr.width || false,
-                validator: YAHOO.lang.isNumber,
-                method: function(w) {
-                    this.setStyle('width', w + 'px');
-                }
-            });
-
-            /**
-            * @attribute parent
-            * @description If this layout is to be used as a child of another Layout instance, this config will bind the resize events together.
-            * @type Object YAHOO.widget.Layout
-            */
-            this.setAttributeConfig('parent', {
-                writeOnce: true,
-                value: attr.parent || false,
-                method: function(p) {
-                    if (p) {
-                        p.on('resize', this.resize, this, true);
-                    }
-                }
-            });
-        },
-        /**
-        * @method destroy
-        * @description Removes this layout from the page and destroys all units that it contains. This will destroy all data inside the layout and it's children.
-        */
-        destroy: function() {
-            var par = this.get('parent');
-            if (par) {
-                par.removeListener('resize', this.resize, this, true);
-            }
-            Event.removeListener(window, 'resize', this.resize, this, true);
-
-            this.unsubscribeAll();
-            for (var u in this._units) {
-                if (Lang.hasOwnProperty(this._units, u)) {
-                    if (this._units[u]) {
-                        this._units[u].destroy(true);
-                    }
-                }
-            }
-
-            Event.purgeElement(this.get('element'));
-            this.get('parentNode').removeChild(this.get('element'));
-            
-            delete YAHOO.widget.Layout._instances[this.get('id')];
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                    delete this[i];
-                }
-            }
-            
-            if (par) {
-                par.resize();
-            }
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the Layout.
-        * @return {String}
-        */        
-        toString: function() {
-            if (this.get) {
-                return 'Layout #' + this.get('id');
-            }
-            return 'Layout';
-        }
-    });
-    /**
-    * @event resize
-    * @description Fired when this.resize is called
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event startResize
-    * @description Fired when the Resize Utility for a Unit fires it's startResize Event.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event beforeResize
-    * @description Firef at the beginning of the resize method. If you return false, the resize is cancelled.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event render
-    * @description Fired after the render method completes.
-    * @type YAHOO.util.CustomEvent
-    */
-
-    YAHOO.widget.Layout = Layout;
-})();
-/**
- * @description <p>Provides a fixed position unit containing a header, body and footer for use with a YAHOO.widget.Layout instance.</p>
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event, layout
- * @optional animation, dragdrop, selector
- * @beta
- */
-(function() {
-    var Dom = YAHOO.util.Dom,
-        Sel = YAHOO.util.Selector,
-        Event = YAHOO.util.Event,
-        Lang = YAHOO.lang;
-
-    /**
-     * @constructor
-     * @class LayoutUnit
-     * @extends YAHOO.util.Element
-     * @description <p>Provides a fixed position unit containing a header, body and footer for use with a YAHOO.widget.Layout instance.</p>
-     * @param {String/HTMLElement} el The element to make a unit.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-
-    var LayoutUnit = function(el, config) {
-        
-        var oConfig = {
-            element: el,
-            attributes: config || {}
-        };
-
-        LayoutUnit.superclass.constructor.call(this, oConfig.element, oConfig.attributes);    
-    };
-
-    /**
-    * @private
-    * @static
-    * @property _instances
-    * @description Internal hash table for all layout unit instances
-    * @type Object
-    */ 
-    LayoutUnit._instances = {};
-    /**
-    * @static
-    * @method getLayoutUnitById 
-    * @description Get's a layout unit object by the HTML id of the element associated with the Layout Unit object.
-    * @return {Object} The Layout Object
-    */ 
-    LayoutUnit.getLayoutUnitById = function(id) {
-        if (LayoutUnit._instances[id]) {
-            return LayoutUnit._instances[id];
-        }
-        return false;
-    };
-
-    YAHOO.extend(LayoutUnit, YAHOO.util.Element, {
-        /**
-        * @property STR_CLOSE
-        * @description String used for close button title
-        * @type {String}
-        */
-        STR_CLOSE: 'Click to close this pane.',
-        /**
-        * @property STR_COLLAPSE
-        * @description String used for collapse button title
-        * @type {String}
-        */
-        STR_COLLAPSE: 'Click to collapse this pane.',
-        /**
-        * @property STR_EXPAND
-        * @description String used for expand button title
-        * @type {String}
-        */
-        STR_EXPAND: 'Click to expand this pane.',
-        /**
-	    * The class name applied to dynamic tabs while loading.
-	    * @property LOADING_CLASSNAME
-	    * @type String
-	    * @default "disabled"
-	    */
-	    LOADING_CLASSNAME: 'loading',
-        /**
-        * @property browser
-        * @description A modified version of the YAHOO.env.ua object
-        * @type Object
-        */
-        browser: null,
-        /**
-        * @private
-        * @property _sizes
-        * @description A collection of the current sizes of the contents of this Layout Unit
-        * @type Object
-        */
-        _sizes: null,
-        /**
-        * @private
-        * @property _anim
-        * @description A reference to the Animation instance used by this LayouUnit
-        * @type YAHOO.util.Anim
-        */
-        _anim: null,
-        /**
-        * @private
-        * @property _resize
-        * @description A reference to the Resize instance used by this LayoutUnit
-        * @type YAHOO.util.Resize
-        */
-        _resize: null,
-        /**
-        * @private
-        * @property _clip
-        * @description A reference to the clip element used when collapsing the unit
-        * @type HTMLElement
-        */
-        _clip: null,
-        /**
-        * @private
-        * @property _gutter
-        * @description A simple hash table used to store the gutter to apply to the Unit
-        * @type Object
-        */
-        _gutter: null,
-        /**
-        * @property header
-        * @description A reference to the HTML element used for the Header
-        * @type HTMLELement
-        */
-        header: null,
-        /**
-        * @property body
-        * @description A reference to the HTML element used for the body
-        * @type HTMLElement
-        */
-        body: null,
-        /**
-        * @property footer
-        * @description A reference to the HTML element used for the footer
-        * @type HTMLElement
-        */
-        footer: null,
-        /**
-        * @private
-        * @property _collapsed
-        * @description Flag to determine if the unit is collapsed or not.
-        * @type Boolean
-        */
-        _collapsed: null,
-        /**
-        * @private
-        * @property _collapsing
-        * @description A flag set while the unit is being collapsed, used so we don't fire events while animating the size
-        * @type Boolean
-        */
-        _collapsing: null,
-        /**
-        * @private
-        * @property _lastWidth
-        * @description A holder for the last known width of the unit
-        * @type Number
-        */
-        _lastWidth: null,
-        /**
-        * @private
-        * @property _lastHeight
-        * @description A holder for the last known height of the unit
-        * @type Number
-        */
-        _lastHeight: null,
-        /**
-        * @private
-        * @property _lastTop
-        * @description A holder for the last known top of the unit
-        * @type Number
-        */
-        _lastTop: null,
-        /**
-        * @private
-        * @property _lastLeft
-        * @description A holder for the last known left of the unit
-        * @type Number
-        */
-        _lastLeft: null,
-        /**
-        * @private
-        * @property _lastScroll
-        * @description A holder for the last known scroll state of the unit
-        * @type Boolean
-        */
-        _lastScroll: null,
-        /**
-        * @private
-        * @property _lastCenetrScroll
-        * @description A holder for the last known scroll state of the center unit
-        * @type Boolean
-        */
-        _lastCenterScroll: null,
-        /**
-        * @private
-        * @property _lastScrollTop
-        * @description A holder for the last known scrollTop state of the unit
-        * @type Number
-        */
-        _lastScrollTop: null,
-        /**
-        * @method resize
-        * @description Resize either the unit or it's clipped state, also updating the box inside
-        * @param {Boolean} force This will force full calculations even when the unit is collapsed
-        * @return {<a href="YAHOO.widget.LayoutUnit.html">YAHOO.widget.LayoutUnit</a>} The LayoutUnit instance
-        */
-        resize: function(force) {
-            var retVal = this.fireEvent('beforeResize');
-            if (retVal === false) {
-                return this;
-            }
-            if (!this._collapsing || (force === true)) {
-                var scroll = this.get('scroll');
-                this.set('scroll', false);
-
-
-                var hd = this._getBoxSize(this.header),
-                    ft = this._getBoxSize(this.footer),
-                    box = [this.get('height'), this.get('width')];
-
-                var nh = (box[0] - hd[0] - ft[0]) - (this._gutter.top + this._gutter.bottom),
-                    nw = box[1] - (this._gutter.left + this._gutter.right);
-
-                var wrapH = (nh + (hd[0] + ft[0])),
-                    wrapW = nw;
-
-                if (this._collapsed && !this._collapsing) {
-                    this._setHeight(this._clip, wrapH);
-                    this._setWidth(this._clip, wrapW);
-                    Dom.setStyle(this._clip, 'top', this.get('top') + this._gutter.top + 'px');
-                    Dom.setStyle(this._clip, 'left', this.get('left') + this._gutter.left + 'px');
-                } else if (!this._collapsed || (this._collapsed && this._collapsing)) {
-                    wrapH = this._setHeight(this.get('wrap'), wrapH);
-                    wrapW = this._setWidth(this.get('wrap'), wrapW);
-                    this._sizes.wrap.h = wrapH;
-                    this._sizes.wrap.w = wrapW;
-
-                    Dom.setStyle(this.get('wrap'), 'top', this._gutter.top + 'px');
-                    Dom.setStyle(this.get('wrap'), 'left', this._gutter.left + 'px');
-
-                    this._sizes.header.w = this._setWidth(this.header, wrapW);
-                    this._sizes.header.h = hd[0];
-
-                    this._sizes.footer.w = this._setWidth(this.footer, wrapW);
-                    this._sizes.footer.h = ft[0];
-
-                    Dom.setStyle(this.footer, 'bottom', '0px');
-
-                    this._sizes.body.h = this._setHeight(this.body, (wrapH - (hd[0] + ft[0])));
-                    this._sizes.body.w =this._setWidth(this.body, wrapW);
-                    Dom.setStyle(this.body, 'top', hd[0] + 'px');
-
-                    this.set('scroll', scroll);
-                    this.fireEvent('resize');
-                }
-            }
-            return this;
-        },
-        /**
-        * @private
-        * @method _setWidth
-        * @description Sets the width of the element based on the border size of the element.
-        * @param {HTMLElement} el The HTMLElement to have it's width set
-        * @param {Number} w The width that you want it the element set to
-        * @return {Number} The new width, fixed for borders and IE QuirksMode
-        */
-        _setWidth: function(el, w) {
-            if (el) {
-                var b = this._getBorderSizes(el);
-                w = (w - (b[1] + b[3]));
-                w = this._fixQuirks(el, w, 'w');
-                Dom.setStyle(el, 'width', w + 'px');
-            }
-            return w;
-        },
-        /**
-        * @private
-        * @method _setHeight
-        * @description Sets the height of the element based on the border size of the element.
-        * @param {HTMLElement} el The HTMLElement to have it's height set
-        * @param {Number} h The height that you want it the element set to
-        * @return {Number} The new height, fixed for borders and IE QuirksMode
-        */
-        _setHeight: function(el, h) {
-            if (el) {
-                var b = this._getBorderSizes(el);
-                h = (h - (b[0] + b[2]));
-                h = this._fixQuirks(el, h, 'h');
-                Dom.setStyle(el, 'height', h + 'px');
-            }
-            return h;
-        },
-        /**
-        * @private
-        * @method _fixQuirks
-        * @description Fixes the box calculations for IE in QuirksMode
-        * @param {HTMLElement} el The HTMLElement to set the dimension on
-        * @param {Number} dim The number of the dimension to fix
-        * @param {String} side The dimension (h or w) to fix. Defaults to h
-        * @return {Number} The fixed dimension
-        */
-        _fixQuirks: function(el, dim, side) {
-            var i1 = 0, i2 = 2;
-            if (side == 'w') {
-                i1 = 1;
-                i2 = 3;
-            }
-            if (this.browser.ie && !this.browser.standardsMode) {
-                //Internet Explorer - Quirks Mode
-                var b = this._getBorderSizes(el),
-                    bp = this._getBorderSizes(el.parentNode);
-                if ((b[i1] === 0) && (b[i2] === 0)) { //No Borders, check parent
-                    if ((bp[i1] !== 0) && (bp[i2] !== 0)) { //Parent has Borders
-                        dim = (dim - (bp[i1] + bp[i2]));
-                    }
-                } else {
-                    if ((bp[i1] === 0) && (bp[i2] === 0)) {
-                        dim = (dim + (b[i1] + b[i2]));
-                    }
-                }
-            }
-            return dim;
-        },
-        /**
-        * @private
-        * @method _getBoxSize
-        * @description Get's the elements clientHeight and clientWidth plus the size of the borders
-        * @param {HTMLElement} el The HTMLElement to get the size of
-        * @return {Array} An array of height and width
-        */
-        _getBoxSize: function(el) {
-            var size = [0, 0];
-            if (el) {
-                if (this.browser.ie && !this.browser.standardsMode) {
-                    el.style.zoom = 1;
-                }
-                var b = this._getBorderSizes(el);
-                size[0] = el.clientHeight + (b[0] + b[2]);
-                size[1] = el.clientWidth + (b[1] + b[3]);
-            }
-            return size;
-        },
-        /**
-        * @private
-        * @method _getBorderSizes
-        * @description Get the CSS border size of the element passed.
-        * @param {HTMLElement} el The element to get the border size of
-        * @return {Array} An array of the top, right, bottom, left borders.
-        */
-        _getBorderSizes: function(el) {
-            var s = [];
-            el = el || this.get('element');
-            if (this.browser.ie && !this.browser.standardsMode) {
-                el.style.zoom = 1;
-            }
-            s[0] = parseInt(Dom.getStyle(el, 'borderTopWidth'), 10);
-            s[1] = parseInt(Dom.getStyle(el, 'borderRightWidth'), 10);
-            s[2] = parseInt(Dom.getStyle(el, 'borderBottomWidth'), 10);
-            s[3] = parseInt(Dom.getStyle(el, 'borderLeftWidth'), 10);
-            
-            //IE will return NaN on these if they are set to auto, we'll set them to 0
-            for (var i = 0; i < s.length; i++) {
-                if (isNaN(s[i])) {
-                    s[i] = 0;
-                }
-            }
-            return s;
-        },
-        /**
-        * @private
-        * @method _createClip
-        * @description Create the clip element used when the Unit is collapsed
-        */
-        _createClip: function() {
-            if (!this._clip) {
-                this._clip = document.createElement('div');
-                this._clip.className = 'yui-layout-clip yui-layout-clip-' + this.get('position');
-                this._clip.innerHTML = '<div class="collapse"></div>';
-                var c = this._clip.firstChild;
-                c.title = this.STR_EXPAND;
-                Event.on(c, 'click', this.expand, this, true);
-                this.get('element').parentNode.appendChild(this._clip);
-            }
-        },
-        /**
-        * @private
-        * @method _toggleClip
-        * @description Toggle th current state of the Clip element and set it's height, width and position
-        */
-        _toggleClip: function() {
-            if (!this._collapsed) {
-                //show
-                var hd = this._getBoxSize(this.header),
-                    ft = this._getBoxSize(this.footer),
-                    box = [this.get('height'), this.get('width')];
-
-
-                var nh = (box[0] - hd[0] - ft[0]) - (this._gutter.top + this._gutter.bottom),
-                    nw = box[1] - (this._gutter.left + this._gutter.right),
-                    wrapH = (nh + (hd[0] + ft[0]));
-
-                switch (this.get('position')) {
-                    case 'top':
-                    case 'bottom':
-                        this._setWidth(this._clip, nw);
-                        this._setHeight(this._clip, this.get('collapseSize'));
-                        Dom.setStyle(this._clip, 'left', (this._lastLeft + this._gutter.left) + 'px');
-                        if (this.get('position') == 'bottom') {
-                            Dom.setStyle(this._clip, 'top', ((this._lastTop + this._lastHeight) - (this.get('collapseSize') - this._gutter.top)) + 'px');
-                        } else {
-                            Dom.setStyle(this._clip, 'top', this.get('top') + this._gutter.top + 'px');
-                        }
-                        break;
-                    case 'left':
-                    case 'right':
-                        this._setWidth(this._clip, this.get('collapseSize'));
-                        this._setHeight(this._clip, wrapH);
-                        Dom.setStyle(this._clip, 'top', (this.get('top') + this._gutter.top) + 'px');
-                        if (this.get('position') == 'right') {
-                            Dom.setStyle(this._clip, 'left', (((this._lastLeft + this._lastWidth) - this.get('collapseSize')) - this._gutter.left) + 'px');
-                        } else {
-                            Dom.setStyle(this._clip, 'left', (this.get('left') + this._gutter.left) + 'px');
-                        }
-                        break;
-                }
-
-                Dom.setStyle(this._clip, 'display', 'block');
-                this.setStyle('display', 'none');
-            } else {
-                //Hide
-                Dom.setStyle(this._clip, 'display', 'none');
-            }
-        },
-        /**
-        * @method getSizes
-        * @description Get a reference to the internal sizes object for this unit
-        * @return {Object} An object of the sizes used for calculations
-        */
-        getSizes: function() {
-            return this._sizes;
-        },
-        /**
-        * @method toggle
-        * @description Toggles the Unit, replacing it with a clipped version.
-        * @return {<a href="YAHOO.widget.LayoutUnit.html">YAHOO.widget.LayoutUnit</a>} The LayoutUnit instance
-        */
-        toggle: function() {
-            if (this._collapsed) {
-                this.expand();
-            } else {
-                this.collapse();
-            }
-            return this;
-        },
-        /**
-        * @method expand
-        * @description Expand the Unit if it is collapsed.
-        * @return {<a href="YAHOO.widget.LayoutUnit.html">YAHOO.widget.LayoutUnit</a>} The LayoutUnit instance
-        */
-        expand: function() {
-            if (!this._collapsed) {
-                return this;
-            }
-            var retVal = this.fireEvent('beforeExpand');
-            if (retVal === false) {
-                return this;
-            }
-
-            this._collapsing = true;
-            this.setStyle('zIndex', this.get('parent')._zIndex + 1);
-
-            if (this._anim) {
-                this.setStyle('display', 'none');
-                var attr = {}, s;
-
-                switch (this.get('position')) {
-                    case 'left':
-                    case 'right':
-                        this.set('width', this._lastWidth, true);
-                        this.setStyle('width', this._lastWidth + 'px');
-                        this.get('parent').resize(false);
-                        s = this.get('parent').getSizes()[this.get('position')];
-                        this.set('height', s.h, true);
-                        var left = s.l;
-                        attr = {
-                            left: {
-                                to: left
-                            }
-                        };
-                        if (this.get('position') == 'left') {
-                            attr.left.from = (left - s.w);
-                            this.setStyle('left', (left - s.w) + 'px');
-                        }
-                        break;
-                    case 'top':
-                    case 'bottom':
-                        this.set('height', this._lastHeight, true);
-                        this.setStyle('height', this._lastHeight + 'px');
-                        this.get('parent').resize(false);
-                        s = this.get('parent').getSizes()[this.get('position')];
-                        this.set('width', s.w, true);
-                        var top = s.t;
-                        attr = {
-                            top: {
-                                to: top
-                            }
-                        };
-                        if (this.get('position') == 'top') {
-                            this.setStyle('top',  (top - s.h) + 'px');
-                            attr.top.from = (top - s.h);
-                        }
-                        break;
-                }
-
-                this._anim.attributes = attr;
-                var exStart = function() {
-                    this.setStyle('display', 'block');
-                    this.resize(true);
-                    this._anim.onStart.unsubscribe(exStart, this, true);
-                };
-                var expand = function() {
-                    this._collapsing = false;
-                    this.setStyle('zIndex', this.get('parent')._zIndex);
-                    this.set('width', this._lastWidth);
-                    this.set('height', this._lastHeight);
-                    this._collapsed = false;
-                    this.resize();
-                    this.set('scroll', this._lastScroll);
-                    if (this._lastScrollTop > 0) {
-                        this.body.scrollTop = this._lastScrollTop;
-                    }
-                    this._anim.onComplete.unsubscribe(expand, this, true);
-                    this.fireEvent('expand');
-                };
-                this._anim.onStart.subscribe(exStart, this, true);
-                this._anim.onComplete.subscribe(expand, this, true);
-                this._anim.animate();
-                this._toggleClip();
-            } else {
-                this._collapsing = false;
-                this._toggleClip();
-                this._collapsed = false;
-                this.setStyle('zIndex', this.get('parent')._zIndex);
-                this.setStyle('display', 'block');
-                this.set('width', this._lastWidth);
-                this.set('height', this._lastHeight);
-                this.resize();
-                this.set('scroll', this._lastScroll);
-                if (this._lastScrollTop > 0) {
-                    this.body.scrollTop = this._lastScrollTop;
-                }
-                this.fireEvent('expand');
-            }
-            return this;
-        },
-        /**
-        * @method collapse
-        * @description Collapse the Unit if it is not collapsed.
-        * @return {<a href="YAHOO.widget.LayoutUnit.html">YAHOO.widget.LayoutUnit</a>} The LayoutUnit instance
-        */
-        collapse: function() {
-            if (this._collapsed) {
-                return this;
-            }
-            var retValue = this.fireEvent('beforeCollapse');
-            if (retValue === false) {
-                return this;
-            }
-            if (!this._clip) {
-                this._createClip();
-            }
-            this._collapsing = true;
-            var w = this.get('width'),
-                h = this.get('height'),
-                attr = {};
-            this._lastWidth = w;
-            this._lastHeight = h;
-            this._lastScroll = this.get('scroll');
-            this._lastScrollTop = this.body.scrollTop;            
-            this.set('scroll', false, true);
-            this._lastLeft = parseInt(this.get('element').style.left, 10);
-            this._lastTop = parseInt(this.get('element').style.top, 10);
-            if (isNaN(this._lastTop)) {
-                this._lastTop = 0;
-                this.set('top', 0);
-            }
-            if (isNaN(this._lastLeft)) {
-                this._lastLeft = 0;
-                this.set('left', 0);
-            }
-            this.setStyle('zIndex', this.get('parent')._zIndex + 1);
-            var pos = this.get('position');
-
-            switch (pos) {
-                case 'top':
-                case 'bottom':
-                    this.set('height', (this.get('collapseSize') + (this._gutter.top + this._gutter.bottom)));
-                    attr = {
-                        top: {
-                            to: (this.get('top') - h)
-                        }
-                    };
-                    if (pos == 'bottom') {
-                        attr.top.to = (this.get('top') + h);
-                    }
-                    break;
-                case 'left':
-                case 'right':
-                    this.set('width', (this.get('collapseSize') + (this._gutter.left + this._gutter.right)));
-                    attr = {
-                        left: {
-                            to: -(this._lastWidth)
-                        }
-                    };
-                    if (pos == 'right') {
-                        attr.left = {
-                            to: (this.get('left') + w)
-                        };
-                    }
-                    break;
-            }
-            if (this._anim) {
-                this._anim.attributes = attr;
-                var collapse = function() {
-                    this._collapsing = false;
-                    this._toggleClip();
-                    this.setStyle('zIndex', this.get('parent')._zIndex);
-                    this._collapsed = true;
-                    this.get('parent').resize();
-                    this._anim.onComplete.unsubscribe(collapse, this, true);
-                    this.fireEvent('collapse');
-                };
-                this._anim.onComplete.subscribe(collapse, this, true);
-                this._anim.animate();
-            } else {
-                this._collapsing = false;
-                this.setStyle('display', 'none');
-                this._toggleClip();
-                this.setStyle('zIndex', this.get('parent')._zIndex);
-                this.get('parent').resize();
-                this._collapsed = true;
-                this.fireEvent('collapse');
-            }
-            return this;
-        },
-        /**
-        * @method close
-        * @description Close the unit, removing it from the parent Layout.
-        * @return {<a href="YAHOO.widget.Layout.html">YAHOO.widget.Layout</a>} The parent Layout instance
-        */
-        close: function() {
-            this.setStyle('display', 'none');
-            this.get('parent').removeUnit(this);
-            this.fireEvent('close');
-            if (this._clip) {
-                this._clip.parentNode.removeChild(this._clip);
-                this._clip = null;
-            }
-            return this.get('parent');
-        },
-		/**
-        * @property loadHandler
-        * @description Callback method for the YUI Connection Manager used for load the body using AJAX
-        * @type Object
-        */
-		loadHandler: {
-            success: function(o) {
-				this.body.innerHTML = o.responseText;
-				this.resize (true);
-            },
-            failure: function(o) {
-            }
-        },
-		/**
-        * @property dataConnection
-        * @description YUI Connection Manager handler
-        * @type Object
-        */
-		dataConnection: null,
-		/**
-        * @private
-        * @property _loading
-        * @description During the loading process this variable will be true
-        * @type Number
-        */
-        _loading: false,
-		/**
-        * @method loadContent
-        * @description Loading the content of the unit using the connection manager
-        * @return {object} YUI Connection Manager handler
-        */
-        loadContent: function() {
-			// load dynamic content unless already loading or loaded and caching
-			if (YAHOO.util.Connect && this.get('dataSrc') && !this._loading && !this.get('dataLoaded')) {
-		        this._loading = true; 
-		        Dom.addClass(this.body, this.LOADING_CLASSNAME);
-				this.dataConnection = YAHOO.util.Connect.asyncRequest(
-		            this.get('loadMethod'),
-		            this.get('dataSrc'), 
-		            {
-		                success: function(o) {
-		                    this.loadHandler.success.call(this, o);
-		                    this.set('dataLoaded', true);
-		                    this.dataConnection = null;
-		                    Dom.removeClass(this.body, this.LOADING_CLASSNAME);
-							this._loading = false;
-							this.fireEvent('load');
-		                },
-		                failure: function(o) {
-		                    this.loadHandler.failure.call(this, o);
-		                    this.dataConnection = null;
-		                    Dom.removeClass(this.body, this.LOADING_CLASSNAME);
-		                    this._loading = false;
-							this.fireEvent('loadError', { error: o });
-		                },
-		                scope: this,
-		                timeout: this.get('dataTimeout')
-		            }
-		        );
-				return this.dataConnection;
-	        }
-			return false;
-        },
-        /**
-        * @private
-        * @method init
-        * @description The initalization method inherited from Element.
-        */
-        init: function(p_oElement, p_oAttributes) {
-            this._gutter = {
-                left: 0,
-                right: 0,
-                top: 0,
-                bottom: 0
-            };
-            this._sizes = {
-                wrap: {
-                    h: 0,
-                    w: 0
-                },
-                header: {
-                    h: 0,
-                    w: 0
-                },
-                body: {
-                    h: 0,
-                    w: 0
-                },
-                footer: {
-                    h: 0,
-                    w: 0
-                }
-            };
-            
-            LayoutUnit.superclass.init.call(this, p_oElement, p_oAttributes);
-
-            this.browser = this.get('parent').browser;
-            
-            var id = p_oElement;
-            if (!Lang.isString(id)) {
-                id = Dom.generateId(id);
-            }
-            LayoutUnit._instances[id] = this;
-
-            this.setStyle('position', 'absolute');
-
-            this.addClass('yui-layout-unit');
-            this.addClass('yui-layout-unit-' + this.get('position'));
-
-
-            var header = this.getElementsByClassName('yui-layout-hd', 'div')[0];
-            if (header) {
-                this.header = header;
-            }
-            var body = this.getElementsByClassName('yui-layout-bd', 'div')[0];
-            if (body) {
-                this.body = body;
-            }
-            var footer = this.getElementsByClassName('yui-layout-ft', 'div')[0];
-            if (footer) {
-                this.footer = footer;
-            }
-
-            this.on('contentChange', this.resize, this, true);
-            this._lastScrollTop = 0;
-
-            this.set('animate', this.get('animate'));
-        },
-        /**
-        * @private
-        * @method initAttributes
-        * @description Processes the config
-        */        
-        initAttributes: function(attr) {
-            LayoutUnit.superclass.initAttributes.call(this, attr);
-
-            /**
-            * @private
-            * @attribute wrap
-            * @description A reference to the wrap element
-            * @type HTMLElement
-            */
-            this.setAttributeConfig('wrap', {
-                value: attr.wrap || null,
-                method: function(w) {
-                    if (w) {
-                        var id = Dom.generateId(w);
-                        LayoutUnit._instances[id] = this;
-                    }
-                }
-            });
-            /**
-            * @attribute grids
-            * @description Set this option to true if you want the LayoutUnit to fix the first layer of YUI CSS Grids (margins)
-            * @type Boolean
-            */
-            this.setAttributeConfig('grids', {
-                value: attr.grids || false
-            });
-            /**
-            * @private
-            * @attribute top
-            * @description The current top positioning of the Unit
-            * @type Number
-            */
-            this.setAttributeConfig('top', {
-                value: attr.top || 0,
-                validator: Lang.isNumber,
-                method: function(t) {
-                    if (!this._collapsing) {
-                        this.setStyle('top', t + 'px');
-                    }
-                }
-            });
-            /**
-            * @private
-            * @attribute left
-            * @description The current left position of the Unit
-            * @type Number
-            */
-            this.setAttributeConfig('left', {
-                value: attr.left || 0,
-                validator: Lang.isNumber,
-                method: function(l) {
-                    if (!this._collapsing) {
-                        this.setStyle('left', l + 'px');
-                    }
-                }
-            });
-
-            /**
-            * @attribute minWidth
-            * @description The minWidth parameter passed to the Resize Utility
-            * @type Number
-            */
-            this.setAttributeConfig('minWidth', {
-                value: attr.minWidth || false,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute maxWidth
-            * @description The maxWidth parameter passed to the Resize Utility
-            * @type Number
-            */
-            this.setAttributeConfig('maxWidth', {
-                value: attr.maxWidth || false,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute minHeight
-            * @description The minHeight parameter passed to the Resize Utility
-            * @type Number
-            */
-            this.setAttributeConfig('minHeight', {
-                value: attr.minHeight || false,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute maxHeight
-            * @description The maxHeight parameter passed to the Resize Utility
-            * @type Number
-            */
-            this.setAttributeConfig('maxHeight', {
-                value: attr.maxHeight || false,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute height
-            * @description The height of the Unit
-            * @type Number
-            */
-            this.setAttributeConfig('height', {
-                value: attr.height,
-                validator: Lang.isNumber,
-                method: function(h) {
-                    if (!this._collapsing) {
-                        this.setStyle('height', h + 'px');
-                    }
-                }
-            });
-
-            /**
-            * @attribute width
-            * @description The width of the Unit
-            * @type Number
-            */
-            this.setAttributeConfig('width', {
-                value: attr.width,
-                validator: Lang.isNumber,
-                method: function(w) {
-                    if (!this._collapsing) {
-                        this.setStyle('width', w + 'px');
-                    }
-                }
-            });
-            /**
-            * @attribute zIndex
-            * @description The CSS zIndex to give to the unit, so you can have overlapping elements such as menus in a unit.
-            * @type {Number}
-            */
-            this.setAttributeConfig('zIndex', {
-                value: attr.zIndex || false,
-                method: function(z) {
-                    this.setStyle('zIndex', z);
-                }
-            });
-            /**
-            * @attribute position
-            * @description The position (top, right, bottom, left or center) of the Unit in the Layout
-            * @type {String}
-            */
-            this.setAttributeConfig('position', {
-                value: attr.position
-            });
-            /**
-            * @attribute gutter
-            * @description The gutter that we should apply to the parent Layout around this Unit. Supports standard CSS markup: (2 4 0 5) or (2) or (2 5)
-            * @type String
-            */
-            this.setAttributeConfig('gutter', {
-                value: attr.gutter || 0,
-                validator: YAHOO.lang.isString,
-                method: function(gutter) {
-                    var p = gutter.split(' ');
-                    if (p.length) {
-                        this._gutter.top = parseInt(p[0], 10);
-                        if (p[1]) {
-                            this._gutter.right = parseInt(p[1], 10);
-                        } else {
-                            this._gutter.right = this._gutter.top;
-                        }
-                        if (p[2]) {
-                            this._gutter.bottom = parseInt(p[2], 10);
-                        } else {
-                            this._gutter.bottom = this._gutter.top;
-                        }
-                        if (p[3]) {
-                            this._gutter.left = parseInt(p[3], 10);
-                        } else if (p[1]) {
-                            this._gutter.left = this._gutter.right;
-                        } else {
-                            this._gutter.left = this._gutter.top;
-                        }
-                    }
-                }
-            });
-            /**
-            * @attribute parent
-            * @description The parent Layout that we are assigned to
-            * @type {Object} YAHOO.widget.Layout
-            */
-            this.setAttributeConfig('parent', {
-                writeOnce: true,
-                value: attr.parent || false,
-                method: function(p) {
-                    if (p) {
-                        p.on('resize', this.resize, this, true);
-                    }
-
-                }
-            });
-            /**
-            * @attribute collapseSize
-            * @description The pixel size of the Clip that we will collapse to
-            * @type Number
-            */
-            this.setAttributeConfig('collapseSize', {
-                value: attr.collapseSize || 25,
-                validator: YAHOO.lang.isNumber
-            });
-            /**
-            * @attribute duration
-            * @description The duration to give the Animation Utility when animating the opening and closing of Units
-            */
-            this.setAttributeConfig('duration', {
-                value: attr.duration || 0.5
-            });
-            /**
-            * @attribute easing
-            * @description The Animation Easing to apply to the Animation instance for this unit.
-            */
-            this.setAttributeConfig('easing', {
-                value: attr.easing || ((YAHOO.util && YAHOO.util.Easing) ? YAHOO.util.Easing.BounceIn : 'false')
-            });
-            /**
-            * @attribute animate
-            * @description Use animation to collapse/expand the unit
-            * @type Boolean
-            */
-            this.setAttributeConfig('animate', {
-                value: ((attr.animate === false) ? false : true),
-                validator: function() {
-                    var anim = false;
-                    if (YAHOO.util.Anim) {
-                        anim = true;
-                    }
-                    return anim;
-                },
-                method: function(anim) {
-                    if (anim) {
-                        this._anim = new YAHOO.util.Anim(this.get('element'), {}, this.get('duration'), this.get('easing'));
-                    } else {
-                        this._anim = false;
-                    }
-                }
-            });
-            /**
-            * @attribute header
-            * @description The text to use as the Header of the Unit
-            */
-            this.setAttributeConfig('header', {
-                value: attr.header || false,
-                method: function(txt) {
-                    if (txt === false) {
-                        //Remove the footer
-                        if (this.header) {
-                            Dom.addClass(this.body, 'yui-layout-bd-nohd');
-                            this.header.parentNode.removeChild(this.header);
-                            this.header = null;
-                        }
-                    } else {
-                        if (!this.header) {
-                            var header = this.getElementsByClassName('yui-layout-hd', 'div')[0];
-                            if (!header) {
-                                header = this._createHeader();
-                            }
-                            this.header = header;
-                        }
-                        var h = this.header.getElementsByTagName('h2')[0];
-                        if (!h) {
-                            h = document.createElement('h2');
-                            this.header.appendChild(h);
-                        }
-                        h.innerHTML = txt;
-                        if (this.body) {
-                            Dom.removeClass(this.body, 'yui-layout-bd-nohd');
-                        }
-                    }
-                    this.fireEvent('contentChange', { target: 'header' });
-                }
-            });
-            /**
-            * @attribute proxy
-            * @description Use the proxy config setting for the Resize Utility
-            * @type Boolean
-            */
-            this.setAttributeConfig('proxy', {
-                writeOnce: true,
-                value: ((attr.proxy === false) ? false : true)
-            });
-            /**
-            * @attribute body
-            * @description The content for the body. If we find an element in the page with an id that matches the passed option we will move that element into the body of this unit.
-            */
-            this.setAttributeConfig('body', {
-                value: attr.body || false,
-                method: function(content) {
-                    if (!this.body) {
-                        var body = this.getElementsByClassName('yui-layout-bd', 'div')[0];
-                        if (body) {
-                            this.body = body;
-                        } else {
-                            body = document.createElement('div');
-                            body.className = 'yui-layout-bd';
-                            this.body = body;
-                            this.get('wrap').appendChild(body);
-                        }
-                    }
-                    if (!this.header) {
-                        Dom.addClass(this.body, 'yui-layout-bd-nohd');
-                    }
-                    Dom.addClass(this.body, 'yui-layout-bd-noft');
-
-
-                    var el = null;
-                    if (Lang.isString(content)) {
-                        el = Dom.get(content);
-                    } else if (content && content.tagName) {
-                        el = content;
-                    }
-                    if (el) {
-                        var id = Dom.generateId(el);
-                        LayoutUnit._instances[id] = this;
-                        this.body.appendChild(el);
-                    } else {
-                        this.body.innerHTML = content;
-                    }
-
-                    this._cleanGrids();
-
-                    this.fireEvent('contentChange', { target: 'body' });
-                }
-            });
-
-            /**
-            * @attribute footer
-            * @description The content for the footer. If we find an element in the page with an id that matches the passed option we will move that element into the footer of this unit.
-            */
-            this.setAttributeConfig('footer', {
-                value: attr.footer || false,
-                method: function(content) {
-                    if (content === false) {
-                        //Remove the footer
-                        if (this.footer) {
-                            Dom.addClass(this.body, 'yui-layout-bd-noft');
-                            this.footer.parentNode.removeChild(this.footer);
-                            this.footer = null;
-                        }
-                    } else {
-                        if (!this.footer) {
-                            var ft = this.getElementsByClassName('yui-layout-ft', 'div')[0];
-                            if (!ft) {
-                                ft = document.createElement('div');
-                                ft.className = 'yui-layout-ft';
-                                this.footer = ft;
-                                this.get('wrap').appendChild(ft);
-                            } else {
-                                this.footer = ft;
-                            }
-                        }
-                        var el = null;
-                        if (Lang.isString(content)) {
-                            el = Dom.get(content);
-                        } else if (content && content.tagName) {
-                            el = content;
-                        }
-                        if (el) {
-                            this.footer.appendChild(el);
-                        } else {
-                            this.footer.innerHTML = content;
-                        }
-                        Dom.removeClass(this.body, 'yui-layout-bd-noft');
-                    }
-                    this.fireEvent('contentChange', { target: 'footer' });
-                }
-            });
-            /**
-            * @attribute close
-            * @description Adds a close icon to the unit
-            */
-            this.setAttributeConfig('close', {
-                value: attr.close || false,
-                method: function(close) {
-                    //Position Center doesn't get this
-                    if (this.get('position') == 'center') {
-                        return false;
-                    }
-                    if (!this.header) {
-                        this._createHeader();
-                    }
-                    var c = Dom.getElementsByClassName('close', 'div', this.header)[0];
-                    if (close) {
-                        //Force some header text if there isn't any
-                        if (!this.get('header')) {
-                            this.set('header', '&nbsp;');
-                        }
-                        if (!c) {
-                            c = document.createElement('div');
-                            c.className = 'close';
-                            this.header.appendChild(c);
-                            Event.on(c, 'click', this.close, this, true);
-                        }
-                        c.title = this.STR_CLOSE;
-                    } else if (c) {
-                        Event.purgeElement(c);
-                        c.parentNode.removeChild(c);
-                    }
-                    this._configs.close.value = close;
-                    this.set('collapse', this.get('collapse')); //Reset so we get the right classnames
-                }
-            });
-
-            /**
-            * @attribute collapse
-            * @description Adds a collapse icon to the unit
-            */
-            this.setAttributeConfig('collapse', {
-                value: attr.collapse || false,
-                method: function(collapse) {
-                    //Position Center doesn't get this
-                    if (this.get('position') == 'center') {
-                        return false;
-                    }
-                    if (!this.header) {
-                        this._createHeader();
-                    }
-                    var c = Dom.getElementsByClassName('collapse', 'div', this.header)[0];
-                    if (collapse) {
-                        //Force some header text if there isn't any
-                        if (!this.get('header')) {
-                            this.set('header', '&nbsp;');
-                        }
-                        if (!c) {
-                            c = document.createElement('div');
-                            this.header.appendChild(c);
-                            Event.on(c, 'click', this.collapse, this, true);
-                        }
-                        c.title = this.STR_COLLAPSE;
-                        c.className = 'collapse' + ((this.get('close')) ? ' collapse-close' : '');
-                    } else if (c) {
-                        Event.purgeElement(c);
-                        c.parentNode.removeChild(c);
-                    }
-                }
-            });
-            /**
-            * @attribute scroll
-            * @description Adds a class to the unit to allow for overflow: auto (yui-layout-scroll), default is overflow: hidden (yui-layout-noscroll). If true scroll bars will be placed on the element when the content exceeds the given area, false will put overflow hidden to hide the content. Passing null will render the content as usual overflow.
-            * @type Boolean/Null
-            */
-
-            this.setAttributeConfig('scroll', {
-                value: (((attr.scroll === true) || (attr.scroll === false) || (attr.scroll === null)) ? attr.scroll : false),
-                method: function(scroll) {
-                    if ((scroll === false) && !this._collapsed) { //Removing scroll bar
-                        if (this.body) {
-                            if (this.body.scrollTop > 0) {
-                                this._lastScrollTop = this.body.scrollTop;
-                            }
-                        }
-                    }
-                    
-                    if (scroll === true) {
-                        this.addClass('yui-layout-scroll');
-                        this.removeClass('yui-layout-noscroll');
-                        if (this._lastScrollTop > 0) {
-                            if (this.body) {
-                                this.body.scrollTop = this._lastScrollTop;
-                            }
-                        }
-                    } else if (scroll === false) {
-                        this.removeClass('yui-layout-scroll');
-                        this.addClass('yui-layout-noscroll');
-                    } else if (scroll === null) {
-                        this.removeClass('yui-layout-scroll');
-                        this.removeClass('yui-layout-noscroll');
-                    }
-                }
-            });
-            /**
-            * @attribute hover
-            * @description Config option to pass to the Resize Utility
-            */
-            this.setAttributeConfig('hover', {
-                writeOnce: true,
-                value: attr.hover || false,
-                validator: YAHOO.lang.isBoolean
-            });
-            /**
-            * @attribute useShim
-            * @description Config option to pass to the Resize Utility
-            */
-            this.setAttributeConfig('useShim', {
-                value: attr.useShim || false,
-                validator: YAHOO.lang.isBoolean,
-                method: function(u) {
-                    if (this._resize) {
-                        this._resize.set('useShim', u);
-                    }
-                }
-            });
-            /**
-            * @attribute resize
-            * @description Should a Resize instance be added to this unit
-            */
-
-            this.setAttributeConfig('resize', {
-                value: attr.resize || false,
-                validator: function(r) {
-                    if (YAHOO.util && YAHOO.util.Resize) {
-                        return true;
-                    }
-                    return false;
-                },
-                method: function(resize) {
-                    if (resize && !this._resize) {
-                        //Position Center doesn't get this
-                        if (this.get('position') == 'center') {
-                            return false;
-                        }
-                        var handle = false; //To catch center
-                        switch (this.get('position')) {
-                            case 'top':
-                                handle = 'b';
-                                break;
-                            case 'bottom':
-                                handle = 't';
-                                break;
-                            case 'right':
-                                handle = 'l';
-                                break;
-                            case 'left':
-                                handle = 'r';
-                                break;
-                        }
-
-                        this.setStyle('position', 'absolute'); //Make sure Resize get's a position
-                        
-                        if (handle) {
-                            this._resize = new YAHOO.util.Resize(this.get('element'), {
-                                proxy: this.get('proxy'),
-                                hover: this.get('hover'),
-                                status: false,
-                                autoRatio: false,
-                                handles: [handle],
-                                minWidth: this.get('minWidth'),
-                                maxWidth: this.get('maxWidth'),
-                                minHeight: this.get('minHeight'),
-                                maxHeight: this.get('maxHeight'),
-                                height: this.get('height'),
-                                width: this.get('width'),
-                                setSize: false,
-                                useShim: this.get('useShim'),
-                                wrap: false
-                            });
-                            
-                            this._resize._handles[handle].innerHTML = '<div class="yui-layout-resize-knob"></div>';
-
-                            if (this.get('proxy')) {
-                                var proxy = this._resize.getProxyEl();
-                                proxy.innerHTML = '<div class="yui-layout-handle-' + handle + '"></div>';
-                            }
-                            this._resize.on('startResize', function(ev) {
-                                this._lastScroll = this.get('scroll');
-                                this.set('scroll', false);
-                                if (this.get('parent')) {
-                                    this.get('parent').fireEvent('startResize');
-                                    var c = this.get('parent').getUnitByPosition('center');
-                                    this._lastCenterScroll = c.get('scroll');
-                                    c.set('scroll', false);
-                                }
-                                this.fireEvent('startResize');
-                            }, this, true);
-                            this._resize.on('resize', function(ev) {
-                                this.set('height', ev.height);
-                                this.set('width', ev.width);
-                            }, this, true);
-                            this._resize.on('endResize', function(ev) {
-                                this.set('scroll', this._lastScroll);
-                                if (this.get('parent')) {
-                                    var c = this.get('parent').getUnitByPosition('center');
-                                    c.set('scroll', this._lastCenterScroll);
-                                }
-                                this.resize();
-                                this.fireEvent('endResize');
-                            }, this, true);
-                        }
-                    } else {
-                        if (this._resize) {
-                            this._resize.destroy();
-                        }
-                    }
-                }
-            });
-			/**
-	         * The unit data source, used for loading content dynamically.
-	         * @attribute dataSrc
-	         * @type String
-	         */
-	        this.setAttributeConfig('dataSrc', {
-	            value: attr.dataSrc
-	        });
-	        /**
-	         * The method to use for the data request.
-	         * @attribute loadMethod
-	         * @type String
-	         * @default "GET"
-	         */
-	        this.setAttributeConfig('loadMethod', {
-	            value: attr.loadMethod || 'GET',
-	            validator: YAHOO.lang.isString
-	        });	
-	        /**
-	         * Whether or not any data has been loaded from the server.
-	         * @attribute dataLoaded
-	         * @type Boolean
-	         */        
-	        this.setAttributeConfig('dataLoaded', {
-	            value: false,
-	            validator: YAHOO.lang.isBoolean,
-	            writeOnce: true
-	        });
-	        /**
-	         * Number if milliseconds before aborting and calling failure handler.
-	         * @attribute dataTimeout
-	         * @type Number
-	         * @default null
-	         */
-	        this.setAttributeConfig('dataTimeout', {
-	            value: attr.dataTimeout || null,
-	            validator: YAHOO.lang.isNumber
-	        });
-        },
-        /**
-        * @private
-        * @method _cleanGrids
-        * @description This method attempts to clean up the first level of the YUI CSS Grids, YAHOO.util.Selector is required for this operation.
-        */
-        _cleanGrids: function() {
-            if (this.get('grids')) {
-                var b = Sel.query('div.yui-b', this.body, true);
-                if (b) {
-                    Dom.removeClass(b, 'yui-b');
-                }
-                Event.onAvailable('yui-main', function() {
-                    Dom.setStyle(Sel.query('#yui-main'), 'margin-left', '0');
-                    Dom.setStyle(Sel.query('#yui-main'), 'margin-right', '0');
-                });
-            }
-        },
-        /**
-        * @private
-        * @method _createHeader
-        * @description Creates the HTMLElement for the header
-        * @return {HTMLElement} The new HTMLElement
-        */
-        _createHeader: function() {
-            var header = document.createElement('div');
-            header.className = 'yui-layout-hd';
-            if (this.get('firstChild')) {
-                this.get('wrap').insertBefore(header, this.get('wrap').firstChild);
-            } else {
-                this.get('wrap').appendChild(header);
-            }
-            this.header = header;
-            return header;
-        },
-        /**
-        * @method destroy
-        * @param {Boolean} force Don't report to the parent, because we are being called from the parent.
-        * @description Removes this unit from the parent and cleans up after itself.
-        * @return {<a href="YAHOO.widget.Layout.html">YAHOO.widget.Layout</a>} The parent Layout instance
-        */
-        destroy: function(force) {
-            if (this._resize) {
-                this._resize.destroy();
-            }
-            var par = this.get('parent');
-
-            this.setStyle('display', 'none');
-            if (this._clip) {
-                this._clip.parentNode.removeChild(this._clip);
-                this._clip = null;
-            }
-
-            if (!force) {
-                par.removeUnit(this);
-            }
-            
-            if (par) {
-                par.removeListener('resize', this.resize, this, true);
-            }
-            this.unsubscribeAll();
-            Event.purgeElement(this.get('element'));
-            this.get('parentNode').removeChild(this.get('element'));
-
-            delete YAHOO.widget.LayoutUnit._instances[this.get('id')];
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                    delete this[i];
-                }
-            }
-        
-            return par;
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the LayoutUnit.
-        * @return {String}
-        */        
-        toString: function() {
-            if (this.get) {
-                return 'LayoutUnit #' + this.get('id') + ' (' + this.get('position') + ')';
-            }
-            return 'LayoutUnit';
-        }
-    /**
-    * @event resize
-    * @description Fired when this.resize is called
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event startResize
-    * @description Fired when the Resize Utility fires it's startResize Event.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event endResize
-    * @description Fired when the Resize Utility fires it's endResize Event.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event beforeResize
-    * @description Firef at the beginning of the resize method. If you return false, the resize is cancelled.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event contentChange
-    * @description Fired when the content in the header, body or footer is changed via the API
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event close
-    * @description Fired when the unit is closed
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event beforeCollapse
-    * @description Fired before the unit is collapsed. If you return false, the collapse is cancelled.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event collapse
-    * @description Fired when the unit is collapsed
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event expand
-    * @description Fired when the unit is exanded
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event beforeExpand
-    * @description Fired before the unit is exanded. If you return false, the collapse is cancelled.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event load
-    * @description Fired when data is loaded via the dataSrc config.
-    * @type YAHOO.util.CustomEvent
-    */
-    /**
-    * @event loadError
-    * @description Fired when an error occurs loading data via the dataSrc config. Error message is passed as argument to this event.
-    * @type YAHOO.util.CustomEvent
-    */
-    });
-
-    YAHOO.widget.LayoutUnit = LayoutUnit;
-})();
-YAHOO.register("layout", YAHOO.widget.Layout, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/logger/README b/eclipse.org-common/yui/2.6.0/build/logger/README
deleted file mode 100644
index 4c1137f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/logger/README
+++ /dev/null
@@ -1,116 +0,0 @@
-Logger Release Notes
-
-*** version 2.6.0 ***
-
-* LogWriter source member typo fix
-* LogReader pause(), resume() work when footerEnabled = false
-* Console logging in Safari now receives full message
-* Invalid markup in VERBOSE_TEMPLATE corrected, space re-added after category
-* Corrected problem where messages containing { content } were getting destroyed
-
-
-*** version 2.5.2 ***
-
-* No changes.
-
-
-*** version 2.5.1 ***
-
-* Support object introspection to Firebug.
-* Better performance when rendering messages to LogReader.
-
-
-
-*** version 2.5.0 ***
-
-* No changes.
-
-
-
-*** version 2.4.0 ***
-
-* Global window error event no longer being handled by default. Implemented
- handleWindowErrors() and unhandleWindowErrors().
-
-
-
-*** version 2.3.1 ***
-
-* No changes.
-
-
-
-**** version 2.3.0 ****
-
-* Applied new skinning model.
-* Logger singleton no longer clobbers itself.
-* Fixed issues when setting LogReader property footerEnabled to false.
-
-
-
-**** version 2.2.2 ****
-
-* No changes.
-
-
-
-*** version 2.2.1 ***
-
-* Updated default ".yui-log-hd h4" font-size to "107%".
-* Fixed synchronicity issue with pause()/resume() calls and the corresponding
-LogReader button state.
-* Better support for "\n" newlines in log messages, while wrapping long lines in
-verboseOutput mode.
-* Added draggable and outputBuffer properties to LogReader.
-* Added showCategory(), hideCategory(), showSource(), hideSource(), and
-clearConsole() methods to LogReader.
-* Support for multiple freestanding LogReader instances.
-* Improved type checking with YAHOO.lang.
-
-
-
-**** version 2.2.0 ***
-
-* Implemented expand() and collapse() in LogReader class.
-* Better internal browser detection.
-
-
-
-*** version 0.12.2 ***
-
-* No changes.
-
-
-
-**** version 0.12.1 ***
-
-* Fixed issues with setting LogReader's "bottom" property.
-
-
-
-*** version 0.12.0 ***
-
-* Added method formatMsg(oLogMsg) to support custom formatting of log messages
-for output to a LogReader.
-
-
-
-*** version 0.11.3 ***
-
-* The Logger static method enableFirebug() has been RENAMED to
-enableBrowserConsole().
-* The Logger static method disableFirebug() has been RENAMED to
-disableBrowserConsole().
-* By default, the Logger will not automatically output to Firebug or Safari's
-JavaScript console. To enable this feature, implementers should now explicitly
-call YAHOO.widget.Logger.enableBrowserConsole().
-* Implementers may now cap the size of the YAHOO.widget.Logger stack by setting
-the property YAHOO.widget.Logger.maxStackEntries.
-* Implementers may now control the number of items displayed in each console by
-setting the LogReader properties thresholdMax and thresholdMin.
-
-
-
-*** version 0.11.0 ***
-
-* Initial release
diff --git a/eclipse.org-common/yui/2.6.0/build/logger/assets/logger-core.css b/eclipse.org-common/yui/2.6.0/build/logger/assets/logger-core.css
deleted file mode 100644
index 017ea47..0000000
--- a/eclipse.org-common/yui/2.6.0/build/logger/assets/logger-core.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* This file intentionally left blank */
diff --git a/eclipse.org-common/yui/2.6.0/build/logger/assets/logger.css b/eclipse.org-common/yui/2.6.0/build/logger/assets/logger.css
deleted file mode 100644
index a65d8dd..0000000
--- a/eclipse.org-common/yui/2.6.0/build/logger/assets/logger.css
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* logger default styles */

-/* default width: 31em */

-/* default font-size 77% */

-.yui-log {padding:1em;width:31em;background-color:#AAA;color:#000;border:1px solid black;font-family:monospace;font-size:77%;text-align:left;z-index:9000;}

-

-/* for containers built from scratch */

-.yui-log-container {position:absolute;top:1em;right:1em;}

-

-/* buttons */

-.yui-log input {

-    margin:0;padding:0;

-    font-family:arial;

-    font-size:100%;

-    font-weight:normal;

-}

-.yui-log .yui-log-btns {position:relative;float:right;bottom:.25em;}

-

-/* header */

-.yui-log .yui-log-hd {margin-top:1em;padding:.5em;background-color:#575757;}

-.yui-log .yui-log-hd h4 {margin:0;padding:0;font-size:107%;font-weight:bold;color:#FFF;}

-

-/* body */

-

-.yui-log .yui-log-bd {width:100%;height:20em;background-color:#FFF;border:1px solid gray;overflow:auto;} /* height is controlled here: default 20em*/

-.yui-log p {margin:1px;padding:.1em;}

-.yui-log pre {margin:0;padding:0;}

-

-/* for pre to respect newlines yet wrap long lines */

-/* http://www.longren.org/2006/09/27/wrapping-text-inside-pre-tags/ */

-.yui-log pre.yui-log-verbose {

-    white-space: pre-wrap; /* css-3 */

-    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */

-    white-space: -pre-wrap; /* Opera 4-6 */

-    white-space: -o-pre-wrap; /* Opera 7 */

-    word-wrap: break-word; /* Internet Explorer 5.5+ */

-}

-

-/* footer */

-.yui-log .yui-log-ft {margin-top:.5em;}

-.yui-log .yui-log-ft .yui-log-categoryfilters {}

-.yui-log .yui-log-ft .yui-log-sourcefilters {width:100%;border-top:1px solid #575757;margin-top:.75em;padding-top:.75em;}

-.yui-log .yui-log-filtergrp {margin-right:.5em;}

-/*.yui-log .yui-log-ft ul {margin:0;padding:0;line-height:1.8}

-.yui-log .yui-log-ft li {list-style:none;display:inline;white-space:nowrap;}*/

-

-/* logs */

-.yui-log .info {background-color:#A7CC25;} /* A7CC25 green */

-.yui-log .warn {background-color:#F58516;} /* F58516 orange */

-.yui-log .error {background-color:#E32F0B;} /* E32F0B red */

-.yui-log .time {background-color:#A6C9D7;} /* A6C9D7 blue */

-.yui-log .window {background-color:#F2E886;} /* F2E886 tan */

diff --git a/eclipse.org-common/yui/2.6.0/build/logger/assets/skins/sam/logger-skin.css b/eclipse.org-common/yui/2.6.0/build/logger/assets/skins/sam/logger-skin.css
deleted file mode 100644
index 4138981..0000000
--- a/eclipse.org-common/yui/2.6.0/build/logger/assets/skins/sam/logger-skin.css
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* logger default styles */

-/* default width: 31em */

-/* default font-size 77% */

-.yui-skin-sam .yui-log { padding:1em;width:31em;background-color:#AAA;color:#000;border:1px solid black;font-family:monospace;font-size:77%;text-align:left;z-index:9000; }

-

-/* for containers built from scratch */

-.yui-skin-sam .yui-log-container { position:absolute;top:1em;right:1em; }

-

-/* buttons */

-.yui-skin-sam .yui-log input {

-    margin:0;padding:0;

-    font-family:arial;

-    font-size:100%;

-    font-weight:normal;

-}

-.yui-skin-sam .yui-log .yui-log-btns { position:relative;float:right;bottom:.25em; }

-

-/* header */

-.yui-skin-sam .yui-log .yui-log-hd { margin-top:1em;padding:.5em;background-color:#575757; }

-.yui-skin-sam .yui-log .yui-log-hd h4 { margin:0;padding:0;font-size:108%;font-weight:bold;color:#FFF; }

-

-/* body */

-

-.yui-skin-sam .yui-log .yui-log-bd { width:100%;height:20em;background-color:#FFF;border:1px solid gray;overflow:auto; } /* height is controlled here: default 20em*/

-.yui-skin-sam .yui-log p { margin:1px;padding:.1em; }

-.yui-skin-sam .yui-log pre { margin:0;padding:0; }

-

-/* for pre to respect newlines yet wrap long lines */

-/* http://www.longren.org/2006/09/27/wrapping-text-inside-pre-tags/ */

-.yui-skin-sam .yui-log pre.yui-log-verbose {

-    white-space: pre-wrap; /* css-3 */

-    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */

-    white-space: -pre-wrap; /* Opera 4-6 */

-    white-space: -o-pre-wrap; /* Opera 7 */

-    word-wrap: break-word; /* Internet Explorer 5.5+ */

-}

-

-/* footer */

-.yui-skin-sam .yui-log .yui-log-ft { margin-top:.5em; }

-.yui-skin-sam .yui-log .yui-log-ft .yui-log-categoryfilters { }

-.yui-skin-sam .yui-log .yui-log-ft .yui-log-sourcefilters { width:100%;border-top:1px solid #575757;margin-top:.75em;padding-top:.75em; }

-.yui-skin-sam .yui-log .yui-log-filtergrp { margin-right:.5em; }

-

-/* logs */

-.yui-skin-sam .yui-log .info { background-color:#A7CC25; } /* A7CC25 green */

-.yui-skin-sam .yui-log .warn { background-color:#F58516; } /* F58516 orange */

-.yui-skin-sam .yui-log .error { background-color:#E32F0B; } /* E32F0B red */

-.yui-skin-sam .yui-log .time { background-color:#A6C9D7; } /* A6C9D7 blue */

-.yui-skin-sam .yui-log .window { background-color:#F2E886; } /* F2E886 tan */

diff --git a/eclipse.org-common/yui/2.6.0/build/logger/assets/skins/sam/logger.css b/eclipse.org-common/yui/2.6.0/build/logger/assets/skins/sam/logger.css
deleted file mode 100644
index f145cf8..0000000
--- a/eclipse.org-common/yui/2.6.0/build/logger/assets/skins/sam/logger.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-log{padding:1em;width:31em;background-color:#AAA;color:#000;border:1px solid black;font-family:monospace;font-size:77%;text-align:left;z-index:9000;}.yui-skin-sam .yui-log-container{position:absolute;top:1em;right:1em;}.yui-skin-sam .yui-log input{margin:0;padding:0;font-family:arial;font-size:100%;font-weight:normal;}.yui-skin-sam .yui-log .yui-log-btns{position:relative;float:right;bottom:.25em;}.yui-skin-sam .yui-log .yui-log-hd{margin-top:1em;padding:.5em;background-color:#575757;}.yui-skin-sam .yui-log .yui-log-hd h4{margin:0;padding:0;font-size:108%;font-weight:bold;color:#FFF;}.yui-skin-sam .yui-log .yui-log-bd{width:100%;height:20em;background-color:#FFF;border:1px solid gray;overflow:auto;}.yui-skin-sam .yui-log p{margin:1px;padding:.1em;}.yui-skin-sam .yui-log pre{margin:0;padding:0;}.yui-skin-sam .yui-log pre.yui-log-verbose{white-space:pre-wrap;white-space:-moz-pre-wrap !important;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;}.yui-skin-sam .yui-log .yui-log-ft{margin-top:.5em;}.yui-skin-sam .yui-log .yui-log-ft .yui-log-categoryfilters{}.yui-skin-sam .yui-log .yui-log-ft .yui-log-sourcefilters{width:100%;border-top:1px solid #575757;margin-top:.75em;padding-top:.75em;}.yui-skin-sam .yui-log .yui-log-filtergrp{margin-right:.5em;}.yui-skin-sam .yui-log .info{background-color:#A7CC25;}.yui-skin-sam .yui-log .warn{background-color:#F58516;}.yui-skin-sam .yui-log .error{background-color:#E32F0B;}.yui-skin-sam .yui-log .time{background-color:#A6C9D7;}.yui-skin-sam .yui-log .window{background-color:#F2E886;}
diff --git a/eclipse.org-common/yui/2.6.0/build/logger/logger-debug.js b/eclipse.org-common/yui/2.6.0/build/logger/logger-debug.js
deleted file mode 100644
index 78c02da..0000000
--- a/eclipse.org-common/yui/2.6.0/build/logger/logger-debug.js
+++ /dev/null
@@ -1,2044 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The LogMsg class defines a single log message.
- *
- * @class LogMsg
- * @constructor
- * @param oConfigs {Object} Object literal of configuration params.
- */
-YAHOO.widget.LogMsg = function(oConfigs) {
-    // Parse configs
-    /**
-     * Log message.
-     *
-     * @property msg
-     * @type String
-     */
-    this.msg =
-    /**
-     * Log timestamp.
-     *
-     * @property time
-     * @type Date
-     */
-    this.time =
-
-    /**
-     * Log category.
-     *
-     * @property category
-     * @type String
-     */
-    this.category =
-
-    /**
-     * Log source. The first word passed in as the source argument.
-     *
-     * @property source
-     * @type String
-     */
-    this.source =
-
-    /**
-     * Log source detail. The remainder of the string passed in as the source argument, not
-     * including the first word (if any).
-     *
-     * @property sourceDetail
-     * @type String
-     */
-    this.sourceDetail = null;
-
-    if (oConfigs && (oConfigs.constructor == Object)) {
-        for(var param in oConfigs) {
-            if (oConfigs.hasOwnProperty(param)) {
-                this[param] = oConfigs[param];
-            }
-        }
-    }
-};
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The LogWriter class provides a mechanism to log messages through
- * YAHOO.widget.Logger from a named source.
- *
- * @class LogWriter
- * @constructor
- * @param sSource {String} Source of LogWriter instance.
- */
-YAHOO.widget.LogWriter = function(sSource) {
-    if(!sSource) {
-        YAHOO.log("Could not instantiate LogWriter due to invalid source.",
-            "error", "LogWriter");
-        return;
-    }
-    this._source = sSource;
- };
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
- /**
- * Public accessor to the unique name of the LogWriter instance.
- *
- * @method toString
- * @return {String} Unique name of the LogWriter instance.
- */
-YAHOO.widget.LogWriter.prototype.toString = function() {
-    return "LogWriter " + this._sSource;
-};
-
-/**
- * Logs a message attached to the source of the LogWriter.
- *
- * @method log
- * @param sMsg {String} The log message.
- * @param sCategory {String} Category name.
- */
-YAHOO.widget.LogWriter.prototype.log = function(sMsg, sCategory) {
-    YAHOO.widget.Logger.log(sMsg, sCategory, this._source);
-};
-
-/**
- * Public accessor to get the source name.
- *
- * @method getSource
- * @return {String} The LogWriter source.
- */
-YAHOO.widget.LogWriter.prototype.getSource = function() {
-    return this._source;
-};
-
-/**
- * Public accessor to set the source name.
- *
- * @method setSource
- * @param sSource {String} Source of LogWriter instance.
- */
-YAHOO.widget.LogWriter.prototype.setSource = function(sSource) {
-    if(!sSource) {
-        YAHOO.log("Could not set source due to invalid source.", "error", this.toString());
-        return;
-    }
-    else {
-        this._source = sSource;
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Source of the LogWriter instance.
- *
- * @property _source
- * @type String
- * @private
- */
-YAHOO.widget.LogWriter.prototype._source = null;
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The LogReader class provides UI to read messages logged to YAHOO.widget.Logger.
- *
- * @class LogReader
- * @constructor
- * @param elContainer {HTMLElement} (optional) DOM element reference of an existing DIV.
- * @param elContainer {String} (optional) String ID of an existing DIV.
- * @param oConfigs {Object} (optional) Object literal of configuration params.
- */
-YAHOO.widget.LogReader = function(elContainer, oConfigs) {
-    this._sName = YAHOO.widget.LogReader._index;
-    YAHOO.widget.LogReader._index++;
-    
-    // Internal vars
-    this._buffer = []; // output buffer
-    this._filterCheckboxes = {}; // pointers to checkboxes
-    this._lastTime = YAHOO.widget.Logger.getStartTime(); // timestamp of last log message to console
-
-    // Parse config vars here
-    if (oConfigs && (oConfigs.constructor == Object)) {
-        for(var param in oConfigs) {
-            if (oConfigs.hasOwnProperty(param)) {
-                this[param] = oConfigs[param];
-            }
-        }
-    }
-
-    this._initContainerEl(elContainer);
-    if(!this._elContainer) {
-        YAHOO.log("Could not instantiate LogReader due to an invalid container element " +
-                elContainer, "error", this.toString());
-        return;
-    }
-    
-    this._initHeaderEl();
-    this._initConsoleEl();
-    this._initFooterEl();
-
-    this._initDragDrop();
-
-    this._initCategories();
-    this._initSources();
-
-    // Subscribe to Logger custom events
-    YAHOO.widget.Logger.newLogEvent.subscribe(this._onNewLog, this);
-    YAHOO.widget.Logger.logResetEvent.subscribe(this._onReset, this);
-
-    YAHOO.widget.Logger.categoryCreateEvent.subscribe(this._onCategoryCreate, this);
-    YAHOO.widget.Logger.sourceCreateEvent.subscribe(this._onSourceCreate, this);
-
-    this._filterLogs();
-    YAHOO.log("LogReader initialized", null, this.toString());
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Static member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-YAHOO.lang.augmentObject(YAHOO.widget.LogReader, {
-    /**
-     * Internal class member to index multiple LogReader instances.
-     *
-     * @property _memberName
-     * @static
-     * @type Number
-     * @default 0
-     * @private
-     */
-    _index : 0,
-
-    /**
-     * Node template for the log entries
-     * @property ENTRY_TEMPLATE
-     * @static
-     * @type {HTMLElement}
-     * @default PRE.yui-log-entry element
-     */
-    ENTRY_TEMPLATE : (function () {
-        var t = document.createElement('pre');
-        YAHOO.util.Dom.addClass(t,'yui-log-entry');
-        return t;
-    })(),
-
-    /**
-     * Template used for innerHTML of verbose entry output.
-     * @property VERBOSE_TEMPLATE
-     * @static
-     * @default "<span class='{category}'>{label}</span>{totalTime}ms (+{elapsedTime}) {localTime}:</p><p>{sourceAndDetail}</p><p>{message}</p>"
-     */
-    VERBOSE_TEMPLATE : "<p><span class='{category}'>{label}</span> {totalTime}ms (+{elapsedTime}) {localTime}:</p><p>{sourceAndDetail}</p><p>{message}</p>",
-
-    /**
-     * Template used for innerHTML of compact entry output.
-     * @property BASIC_TEMPLATE
-     * @static
-     * @default "<p><span class='{category}'>{label}</span>{totalTime}ms (+{elapsedTime}) {localTime}: {sourceAndDetail}: {message}</p>"
-     */
-    BASIC_TEMPLATE : "<p><span class='{category}'>{label}</span> {totalTime}ms (+{elapsedTime}) {localTime}: {sourceAndDetail}: {message}</p>"
-});
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-YAHOO.widget.LogReader.prototype = {
-    /**
-     * Whether or not LogReader is enabled to output log messages.
-     *
-     * @property logReaderEnabled
-     * @type Boolean
-     * @default true
-     */
-    logReaderEnabled : true,
-
-    /**
-     * Public member to access CSS width of the LogReader container.
-     *
-     * @property width
-     * @type String
-     */
-    width : null,
-
-    /**
-     * Public member to access CSS height of the LogReader container.
-     *
-     * @property height
-     * @type String
-     */
-    height : null,
-
-    /**
-     * Public member to access CSS top position of the LogReader container.
-     *
-     * @property top
-     * @type String
-     */
-    top : null,
-
-    /**
-     * Public member to access CSS left position of the LogReader container.
-     *
-     * @property left
-     * @type String
-     */
-    left : null,
-
-    /**
-     * Public member to access CSS right position of the LogReader container.
-     *
-     * @property right
-     * @type String
-     */
-    right : null,
-
-    /**
-     * Public member to access CSS bottom position of the LogReader container.
-     *
-     * @property bottom
-     * @type String
-     */
-    bottom : null,
-
-    /**
-     * Public member to access CSS font size of the LogReader container.
-     *
-     * @property fontSize
-     * @type String
-     */
-    fontSize : null,
-
-    /**
-     * Whether or not the footer UI is enabled for the LogReader.
-     *
-     * @property footerEnabled
-     * @type Boolean
-     * @default true
-     */
-    footerEnabled : true,
-
-    /**
-     * Whether or not output is verbose (more readable). Setting to true will make
-     * output more compact (less readable).
-     *
-     * @property verboseOutput
-     * @type Boolean
-     * @default true
-     */
-    verboseOutput : true,
-
-    /**
-     * Custom output format for log messages.  Defaults to null, which falls
-     * back to verboseOutput param deciding between LogReader.VERBOSE_TEMPLATE
-     * and LogReader.BASIC_TEMPLATE.  Use bracketed place holders to mark where
-     * message info should go.  Available place holder names include:
-     * <ul>
-     *  <li>category</li>
-     *  <li>label</li>
-     *  <li>sourceAndDetail</li>
-     *  <li>message</li>
-     *  <li>localTime</li>
-     *  <li>elapsedTime</li>
-     *  <li>totalTime</li>
-     * </ul>
-     *
-     * @property entryFormat
-     * @type String
-     * @default null
-     */
-    entryFormat : null,
-
-    /**
-     * Whether or not newest message is printed on top.
-     *
-     * @property newestOnTop
-     * @type Boolean
-     */
-    newestOnTop : true,
-
-    /**
-     * Output timeout buffer in milliseconds.
-     *
-     * @property outputBuffer
-     * @type Number
-     * @default 100
-     */
-    outputBuffer : 100,
-
-    /**
-     * Maximum number of messages a LogReader console will display.
-     *
-     * @property thresholdMax
-     * @type Number
-     * @default 500
-     */
-    thresholdMax : 500,
-
-    /**
-     * When a LogReader console reaches its thresholdMax, it will clear out messages
-     * and print out the latest thresholdMin number of messages.
-     *
-     * @property thresholdMin
-     * @type Number
-     * @default 100
-     */
-    thresholdMin : 100,
-
-    /**
-     * True when LogReader is in a collapsed state, false otherwise.
-     *
-     * @property isCollapsed
-     * @type Boolean
-     * @default false
-     */
-    isCollapsed : false,
-
-    /**
-     * True when LogReader is in a paused state, false otherwise.
-     *
-     * @property isPaused
-     * @type Boolean
-     * @default false
-     */
-    isPaused : false,
-
-    /**
-     * Enables draggable LogReader if DragDrop Utility is present.
-     *
-     * @property draggable
-     * @type Boolean
-     * @default true
-     */
-    draggable : true,
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-     /**
-     * Public accessor to the unique name of the LogReader instance.
-     *
-     * @method toString
-     * @return {String} Unique name of the LogReader instance.
-     */
-    toString : function() {
-        return "LogReader instance" + this._sName;
-    },
-    /**
-     * Pauses output of log messages. While paused, log messages are not lost, but
-     * get saved to a buffer and then output upon resume of LogReader.
-     *
-     * @method pause
-     */
-    pause : function() {
-        this.isPaused = true;
-        this._timeout = null;
-        this.logReaderEnabled = false;
-        if (this._btnPause) {
-            this._btnPause.value = "Resume";
-        }
-    },
-
-    /**
-     * Resumes output of log messages, including outputting any log messages that
-     * have been saved to buffer while paused.
-     *
-     * @method resume
-     */
-    resume : function() {
-        this.isPaused = false;
-        this.logReaderEnabled = true;
-        this._printBuffer();
-        if (this._btnPause) {
-            this._btnPause.value = "Pause";
-        }
-    },
-
-    /**
-     * Hides UI of LogReader. Logging functionality is not disrupted.
-     *
-     * @method hide
-     */
-    hide : function() {
-        this._elContainer.style.display = "none";
-    },
-
-    /**
-     * Shows UI of LogReader. Logging functionality is not disrupted.
-     *
-     * @method show
-     */
-    show : function() {
-        this._elContainer.style.display = "block";
-    },
-
-    /**
-     * Collapses UI of LogReader. Logging functionality is not disrupted.
-     *
-     * @method collapse
-     */
-    collapse : function() {
-        this._elConsole.style.display = "none";
-        if(this._elFt) {
-            this._elFt.style.display = "none";
-        }
-        this._btnCollapse.value = "Expand";
-        this.isCollapsed = true;
-    },
-
-    /**
-     * Expands UI of LogReader. Logging functionality is not disrupted.
-     *
-     * @method expand
-     */
-    expand : function() {
-        this._elConsole.style.display = "block";
-        if(this._elFt) {
-            this._elFt.style.display = "block";
-        }
-        this._btnCollapse.value = "Collapse";
-        this.isCollapsed = false;
-    },
-
-    /**
-     * Returns related checkbox element for given filter (i.e., category or source).
-     *
-     * @method getCheckbox
-     * @param {String} Category or source name.
-     * @return {Array} Array of all filter checkboxes.
-     */
-    getCheckbox : function(filter) {
-        return this._filterCheckboxes[filter];
-    },
-
-    /**
-     * Returns array of enabled categories.
-     *
-     * @method getCategories
-     * @return {String[]} Array of enabled categories.
-     */
-    getCategories : function() {
-        return this._categoryFilters;
-    },
-
-    /**
-     * Shows log messages associated with given category.
-     *
-     * @method showCategory
-     * @param {String} Category name.
-     */
-    showCategory : function(sCategory) {
-        var filtersArray = this._categoryFilters;
-        // Don't do anything if category is already enabled
-        // Use Array.indexOf if available...
-        if(filtersArray.indexOf) {
-             if(filtersArray.indexOf(sCategory) >  -1) {
-                return;
-            }
-        }
-        // ...or do it the old-fashioned way
-        else {
-            for(var i=0; i<filtersArray.length; i++) {
-               if(filtersArray[i] === sCategory){
-                    return;
-                }
-            }
-        }
-
-        this._categoryFilters.push(sCategory);
-        this._filterLogs();
-        var elCheckbox = this.getCheckbox(sCategory);
-        if(elCheckbox) {
-            elCheckbox.checked = true;
-        }
-    },
-
-    /**
-     * Hides log messages associated with given category.
-     *
-     * @method hideCategory
-     * @param {String} Category name.
-     */
-    hideCategory : function(sCategory) {
-        var filtersArray = this._categoryFilters;
-        for(var i=0; i<filtersArray.length; i++) {
-            if(sCategory == filtersArray[i]) {
-                filtersArray.splice(i, 1);
-                break;
-            }
-        }
-        this._filterLogs();
-        var elCheckbox = this.getCheckbox(sCategory);
-        if(elCheckbox) {
-            elCheckbox.checked = false;
-        }
-    },
-
-    /**
-     * Returns array of enabled sources.
-     *
-     * @method getSources
-     * @return {Array} Array of enabled sources.
-     */
-    getSources : function() {
-        return this._sourceFilters;
-    },
-
-    /**
-     * Shows log messages associated with given source.
-     *
-     * @method showSource
-     * @param {String} Source name.
-     */
-    showSource : function(sSource) {
-        var filtersArray = this._sourceFilters;
-        // Don't do anything if category is already enabled
-        // Use Array.indexOf if available...
-        if(filtersArray.indexOf) {
-             if(filtersArray.indexOf(sSource) >  -1) {
-                return;
-            }
-        }
-        // ...or do it the old-fashioned way
-        else {
-            for(var i=0; i<filtersArray.length; i++) {
-               if(sSource == filtersArray[i]){
-                    return;
-                }
-            }
-        }
-        filtersArray.push(sSource);
-        this._filterLogs();
-        var elCheckbox = this.getCheckbox(sSource);
-        if(elCheckbox) {
-            elCheckbox.checked = true;
-        }
-    },
-
-    /**
-     * Hides log messages associated with given source.
-     *
-     * @method hideSource
-     * @param {String} Source name.
-     */
-    hideSource : function(sSource) {
-        var filtersArray = this._sourceFilters;
-        for(var i=0; i<filtersArray.length; i++) {
-            if(sSource == filtersArray[i]) {
-                filtersArray.splice(i, 1);
-                break;
-            }
-        }
-        this._filterLogs();
-        var elCheckbox = this.getCheckbox(sSource);
-        if(elCheckbox) {
-            elCheckbox.checked = false;
-        }
-    },
-
-    /**
-     * Does not delete any log messages, but clears all printed log messages from
-     * the console. Log messages will be printed out again if user re-filters. The
-     * static method YAHOO.widget.Logger.reset() should be called in order to
-     * actually delete log messages.
-     *
-     * @method clearConsole
-     */
-    clearConsole : function() {
-        // Clear the buffer of any pending messages
-        this._timeout = null;
-        this._buffer = [];
-        this._consoleMsgCount = 0;
-
-        var elConsole = this._elConsole;
-        elConsole.innerHTML = '';
-    },
-
-    /**
-     * Updates title to given string.
-     *
-     * @method setTitle
-     * @param sTitle {String} New title.
-     */
-    setTitle : function(sTitle) {
-        this._title.innerHTML = this.html2Text(sTitle);
-    },
-
-    /**
-     * Gets timestamp of the last log.
-     *
-     * @method getLastTime
-     * @return {Date} Timestamp of the last log.
-     */
-    getLastTime : function() {
-        return this._lastTime;
-    },
-
-    formatMsg : function (entry) {
-        var Static      = YAHOO.widget.LogReader,
-            entryFormat = this.entryFormat || (this.verboseOutput ?
-                          Static.VERBOSE_TEMPLATE : Static.BASIC_TEMPLATE),
-            info        = {
-                category : entry.category,
-
-                // Label for color-coded display
-                label : entry.category.substring(0,4).toUpperCase(),
-
-                sourceAndDetail : entry.sourceDetail ?
-                                  entry.source + " " + entry.sourceDetail :
-                                  entry.source,
-
-                // Escape HTML entities in the log message itself for output
-                // to console
-                message : this.html2Text(entry.msg || entry.message || '')
-            };
-
-        // Add time info
-        if (entry.time && entry.time.getTime) {
-            info.localTime = entry.time.toLocaleTimeString ?
-                             entry.time.toLocaleTimeString() :
-                             entry.time.toString();
-
-            // Calculate the elapsed time to be from the last item that
-            // passed through the filter, not the absolute previous item
-            // in the stack
-            info.elapsedTime = entry.time.getTime() - this.getLastTime();
-
-            info.totalTime = entry.time.getTime() -
-                               YAHOO.widget.Logger.getStartTime();
-        }
-
-        var msg = Static.ENTRY_TEMPLATE.cloneNode(true);
-        if (this.verboseOutput) {
-            msg.className += ' yui-log-verbose';
-        }
-
-        // Bug 2061169: Workaround for YAHOO.lang.substitute()
-        msg.innerHTML = entryFormat.replace(/\{(\w+)\}/g, function (x, placeholder) { return (placeholder in info) ? info[placeholder] : ''; });
-
-        return msg;
-    },
-
-    /**
-     * Converts input chars "<", ">", and "&" to HTML entities.
-     *
-     * @method html2Text
-     * @param sHtml {String} String to convert.
-     * @private
-     */
-    html2Text : function(sHtml) {
-        if(sHtml) {
-            sHtml += "";
-            return sHtml.replace(/&/g, "&#38;").replace(/</g, "&#60;").replace(/>/g, "&#62;");
-        }
-        return "";
-    },
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Name of LogReader instance.
-     *
-     * @property _sName
-     * @type String
-     * @private
-     */
-    _sName : null,
-
-    //TODO: remove
-    /**
-     * A class member shared by all LogReaders if a container needs to be
-     * created during instantiation. Will be null if a container element never needs to
-     * be created on the fly, such as when the implementer passes in their own element.
-     *
-     * @property _elDefaultContainer
-     * @type HTMLElement
-     * @private
-     */
-    //YAHOO.widget.LogReader._elDefaultContainer = null;
-
-    /**
-     * Buffer of log message objects for batch output.
-     *
-     * @property _buffer
-     * @type Object[]
-     * @private
-     */
-    _buffer : null,
-
-    /**
-     * Number of log messages output to console.
-     *
-     * @property _consoleMsgCount
-     * @type Number
-     * @default 0
-     * @private
-     */
-    _consoleMsgCount : 0,
-
-    /**
-     * Date of last output log message.
-     *
-     * @property _lastTime
-     * @type Date
-     * @private
-     */
-    _lastTime : null,
-
-    /**
-     * Batched output timeout ID.
-     *
-     * @property _timeout
-     * @type Number
-     * @private
-     */
-    _timeout : null,
-
-    /**
-     * Hash of filters and their related checkbox elements.
-     *
-     * @property _filterCheckboxes
-     * @type Object
-     * @private
-     */
-    _filterCheckboxes : null,
-
-    /**
-     * Array of filters for log message categories.
-     *
-     * @property _categoryFilters
-     * @type String[]
-     * @private
-     */
-    _categoryFilters : null,
-
-    /**
-     * Array of filters for log message sources.
-     *
-     * @property _sourceFilters
-     * @type String[]
-     * @private
-     */
-    _sourceFilters : null,
-
-    /**
-     * LogReader container element.
-     *
-     * @property _elContainer
-     * @type HTMLElement
-     * @private
-     */
-    _elContainer : null,
-
-    /**
-     * LogReader header element.
-     *
-     * @property _elHd
-     * @type HTMLElement
-     * @private
-     */
-    _elHd : null,
-
-    /**
-     * LogReader collapse element.
-     *
-     * @property _elCollapse
-     * @type HTMLElement
-     * @private
-     */
-    _elCollapse : null,
-
-    /**
-     * LogReader collapse button element.
-     *
-     * @property _btnCollapse
-     * @type HTMLElement
-     * @private
-     */
-    _btnCollapse : null,
-
-    /**
-     * LogReader title header element.
-     *
-     * @property _title
-     * @type HTMLElement
-     * @private
-     */
-    _title : null,
-
-    /**
-     * LogReader console element.
-     *
-     * @property _elConsole
-     * @type HTMLElement
-     * @private
-     */
-    _elConsole : null,
-
-    /**
-     * LogReader footer element.
-     *
-     * @property _elFt
-     * @type HTMLElement
-     * @private
-     */
-    _elFt : null,
-
-    /**
-     * LogReader buttons container element.
-     *
-     * @property _elBtns
-     * @type HTMLElement
-     * @private
-     */
-    _elBtns : null,
-
-    /**
-     * Container element for LogReader category filter checkboxes.
-     *
-     * @property _elCategoryFilters
-     * @type HTMLElement
-     * @private
-     */
-    _elCategoryFilters : null,
-
-    /**
-     * Container element for LogReader source filter checkboxes.
-     *
-     * @property _elSourceFilters
-     * @type HTMLElement
-     * @private
-     */
-    _elSourceFilters : null,
-
-    /**
-     * LogReader pause button element.
-     *
-     * @property _btnPause
-     * @type HTMLElement
-     * @private
-     */
-    _btnPause : null,
-
-    /**
-     * Clear button element.
-     *
-     * @property _btnClear
-     * @type HTMLElement
-     * @private
-     */
-    _btnClear : null,
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Initializes the primary container element.
-     *
-     * @method _initContainerEl
-     * @param elContainer {HTMLElement} Container element by reference or string ID.
-     * @private
-     */
-    _initContainerEl : function(elContainer) {
-        // Validate container
-        elContainer = YAHOO.util.Dom.get(elContainer);
-        // Attach to existing container...
-        if(elContainer && elContainer.tagName && (elContainer.tagName.toLowerCase() == "div")) {
-            this._elContainer = elContainer;
-            YAHOO.util.Dom.addClass(this._elContainer,"yui-log");
-        }
-        // ...or create container from scratch
-        else {
-            this._elContainer = document.body.appendChild(document.createElement("div"));
-            //this._elContainer.id = "yui-log" + this._sName;
-            YAHOO.util.Dom.addClass(this._elContainer,"yui-log");
-            YAHOO.util.Dom.addClass(this._elContainer,"yui-log-container");
-
-            //YAHOO.widget.LogReader._elDefaultContainer = this._elContainer;
-
-            // If implementer has provided container values, trust and set those
-            var containerStyle = this._elContainer.style;
-            if(this.width) {
-                containerStyle.width = this.width;
-            }
-            if(this.right) {
-                containerStyle.right = this.right;
-            }
-            if(this.top) {
-                containerStyle.top = this.top;
-            }
-             if(this.left) {
-                containerStyle.left = this.left;
-                containerStyle.right = "auto";
-            }
-            if(this.bottom) {
-                containerStyle.bottom = this.bottom;
-                containerStyle.top = "auto";
-            }
-           if(this.fontSize) {
-                containerStyle.fontSize = this.fontSize;
-            }
-            // For Opera
-            if(navigator.userAgent.toLowerCase().indexOf("opera") != -1) {
-                document.body.style += '';
-            }
-        }
-    },
-
-    /**
-     * Initializes the header element.
-     *
-     * @method _initHeaderEl
-     * @private
-     */
-    _initHeaderEl : function() {
-        var oSelf = this;
-
-        // Destroy header
-        if(this._elHd) {
-            // Unhook DOM events
-            YAHOO.util.Event.purgeElement(this._elHd, true);
-
-            // Remove DOM elements
-            this._elHd.innerHTML = "";
-        }
-        
-        // Create header
-        this._elHd = this._elContainer.appendChild(document.createElement("div"));
-        this._elHd.id = "yui-log-hd" + this._sName;
-        this._elHd.className = "yui-log-hd";
-
-        this._elCollapse = this._elHd.appendChild(document.createElement("div"));
-        this._elCollapse.className = "yui-log-btns";
-
-        this._btnCollapse = document.createElement("input");
-        this._btnCollapse.type = "button";
-        //this._btnCollapse.style.fontSize =
-        //    YAHOO.util.Dom.getStyle(this._elContainer,"fontSize");
-        this._btnCollapse.className = "yui-log-button";
-        this._btnCollapse.value = "Collapse";
-        this._btnCollapse = this._elCollapse.appendChild(this._btnCollapse);
-        YAHOO.util.Event.addListener(
-            oSelf._btnCollapse,'click',oSelf._onClickCollapseBtn,oSelf);
-
-        this._title = this._elHd.appendChild(document.createElement("h4"));
-        this._title.innerHTML = "Logger Console";
-    },
-
-    /**
-     * Initializes the console element.
-     *
-     * @method _initConsoleEl
-     * @private
-     */
-    _initConsoleEl : function() {
-        // Destroy console
-        if(this._elConsole) {
-            // Unhook DOM events
-            YAHOO.util.Event.purgeElement(this._elConsole, true);
-
-            // Remove DOM elements
-            this._elConsole.innerHTML = "";
-        }
-
-        // Ceate console
-        this._elConsole = this._elContainer.appendChild(document.createElement("div"));
-        this._elConsole.className = "yui-log-bd";
-
-        // If implementer has provided console, trust and set those
-        if(this.height) {
-            this._elConsole.style.height = this.height;
-        }
-    },
-
-    /**
-     * Initializes the footer element.
-     *
-     * @method _initFooterEl
-     * @private
-     */
-    _initFooterEl : function() {
-        var oSelf = this;
-
-        // Don't create footer elements if footer is disabled
-        if(this.footerEnabled) {
-            // Destroy console
-            if(this._elFt) {
-                // Unhook DOM events
-                YAHOO.util.Event.purgeElement(this._elFt, true);
-
-                // Remove DOM elements
-                this._elFt.innerHTML = "";
-            }
-
-            this._elFt = this._elContainer.appendChild(document.createElement("div"));
-            this._elFt.className = "yui-log-ft";
-
-            this._elBtns = this._elFt.appendChild(document.createElement("div"));
-            this._elBtns.className = "yui-log-btns";
-
-            this._btnPause = document.createElement("input");
-            this._btnPause.type = "button";
-            //this._btnPause.style.fontSize =
-            //    YAHOO.util.Dom.getStyle(this._elContainer,"fontSize");
-            this._btnPause.className = "yui-log-button";
-            this._btnPause.value = "Pause";
-            this._btnPause = this._elBtns.appendChild(this._btnPause);
-            YAHOO.util.Event.addListener(
-                oSelf._btnPause,'click',oSelf._onClickPauseBtn,oSelf);
-
-            this._btnClear = document.createElement("input");
-            this._btnClear.type = "button";
-            //this._btnClear.style.fontSize =
-            //    YAHOO.util.Dom.getStyle(this._elContainer,"fontSize");
-            this._btnClear.className = "yui-log-button";
-            this._btnClear.value = "Clear";
-            this._btnClear = this._elBtns.appendChild(this._btnClear);
-            YAHOO.util.Event.addListener(
-                oSelf._btnClear,'click',oSelf._onClickClearBtn,oSelf);
-
-            this._elCategoryFilters = this._elFt.appendChild(document.createElement("div"));
-            this._elCategoryFilters.className = "yui-log-categoryfilters";
-            this._elSourceFilters = this._elFt.appendChild(document.createElement("div"));
-            this._elSourceFilters.className = "yui-log-sourcefilters";
-        }
-    },
-
-    /**
-     * Initializes Drag and Drop on the header element.
-     *
-     * @method _initDragDrop
-     * @private
-     */
-    _initDragDrop : function() {
-        // If Drag and Drop utility is available...
-        // ...and draggable is true...
-        // ...then make the header draggable
-        if(YAHOO.util.DD && this.draggable && this._elHd) {
-            var ylog_dd = new YAHOO.util.DD(this._elContainer);
-            ylog_dd.setHandleElId(this._elHd.id);
-            //TODO: use class name
-            this._elHd.style.cursor = "move";
-        }
-    },
-
-    /**
-     * Initializes category filters.
-     *
-     * @method _initCategories
-     * @private
-     */
-    _initCategories : function() {
-        // Initialize category filters
-        this._categoryFilters = [];
-        var aInitialCategories = YAHOO.widget.Logger.categories;
-
-        for(var j=0; j < aInitialCategories.length; j++) {
-            var sCategory = aInitialCategories[j];
-
-            // Add category to the internal array of filters
-            this._categoryFilters.push(sCategory);
-
-            // Add checkbox element if UI is enabled
-            if(this._elCategoryFilters) {
-                this._createCategoryCheckbox(sCategory);
-            }
-        }
-    },
-
-    /**
-     * Initializes source filters.
-     *
-     * @method _initSources
-     * @private
-     */
-    _initSources : function() {
-        // Initialize source filters
-        this._sourceFilters = [];
-        var aInitialSources = YAHOO.widget.Logger.sources;
-
-        for(var j=0; j < aInitialSources.length; j++) {
-            var sSource = aInitialSources[j];
-
-            // Add source to the internal array of filters
-            this._sourceFilters.push(sSource);
-
-            // Add checkbox element if UI is enabled
-            if(this._elSourceFilters) {
-                this._createSourceCheckbox(sSource);
-            }
-        }
-    },
-
-    /**
-     * Creates the UI for a category filter in the LogReader footer element.
-     *
-     * @method _createCategoryCheckbox
-     * @param sCategory {String} Category name.
-     * @private
-     */
-    _createCategoryCheckbox : function(sCategory) {
-        var oSelf = this;
-
-        if(this._elFt) {
-            var elParent = this._elCategoryFilters;
-            var elFilter = elParent.appendChild(document.createElement("span"));
-            elFilter.className = "yui-log-filtergrp";
-            
-            // Append el at the end so IE 5.5 can set "type" attribute
-            // and THEN set checked property
-            var chkCategory = document.createElement("input");
-            chkCategory.id = "yui-log-filter-" + sCategory + this._sName;
-            chkCategory.className = "yui-log-filter-" + sCategory;
-            chkCategory.type = "checkbox";
-            chkCategory.category = sCategory;
-            chkCategory = elFilter.appendChild(chkCategory);
-            chkCategory.checked = true;
-
-            // Subscribe to the click event
-            YAHOO.util.Event.addListener(chkCategory,'click',oSelf._onCheckCategory,oSelf);
-
-            // Create and class the text label
-            var lblCategory = elFilter.appendChild(document.createElement("label"));
-            lblCategory.htmlFor = chkCategory.id;
-            lblCategory.className = sCategory;
-            lblCategory.innerHTML = sCategory;
-            
-            this._filterCheckboxes[sCategory] = chkCategory;
-        }
-    },
-
-    /**
-     * Creates a checkbox in the LogReader footer element to filter by source.
-     *
-     * @method _createSourceCheckbox
-     * @param sSource {String} Source name.
-     * @private
-     */
-    _createSourceCheckbox : function(sSource) {
-        var oSelf = this;
-
-        if(this._elFt) {
-            var elParent = this._elSourceFilters;
-            var elFilter = elParent.appendChild(document.createElement("span"));
-            elFilter.className = "yui-log-filtergrp";
-
-            // Append el at the end so IE 5.5 can set "type" attribute
-            // and THEN set checked property
-            var chkSource = document.createElement("input");
-            chkSource.id = "yui-log-filter" + sSource + this._sName;
-            chkSource.className = "yui-log-filter" + sSource;
-            chkSource.type = "checkbox";
-            chkSource.source = sSource;
-            chkSource = elFilter.appendChild(chkSource);
-            chkSource.checked = true;
-
-            // Subscribe to the click event
-            YAHOO.util.Event.addListener(chkSource,'click',oSelf._onCheckSource,oSelf);
-
-            // Create and class the text label
-            var lblSource = elFilter.appendChild(document.createElement("label"));
-            lblSource.htmlFor = chkSource.id;
-            lblSource.className = sSource;
-            lblSource.innerHTML = sSource;
-            
-            this._filterCheckboxes[sSource] = chkSource;
-        }
-    },
-
-    /**
-     * Reprints all log messages in the stack through filters.
-     *
-     * @method _filterLogs
-     * @private
-     */
-    _filterLogs : function() {
-        // Reprint stack with new filters
-        if (this._elConsole !== null) {
-            this.clearConsole();
-            this._printToConsole(YAHOO.widget.Logger.getStack());
-        }
-    },
-
-    /**
-     * Sends buffer of log messages to output and clears buffer.
-     *
-     * @method _printBuffer
-     * @private
-     */
-    _printBuffer : function() {
-        this._timeout = null;
-
-        if(this._elConsole !== null) {
-            var thresholdMax = this.thresholdMax;
-            thresholdMax = (thresholdMax && !isNaN(thresholdMax)) ? thresholdMax : 500;
-            if(this._consoleMsgCount < thresholdMax) {
-                var entries = [];
-                for (var i=0; i<this._buffer.length; i++) {
-                    entries[i] = this._buffer[i];
-                }
-                this._buffer = [];
-                this._printToConsole(entries);
-            }
-            else {
-                this._filterLogs();
-            }
-            
-            if(!this.newestOnTop) {
-                this._elConsole.scrollTop = this._elConsole.scrollHeight;
-            }
-        }
-    },
-
-    /**
-     * Cycles through an array of log messages, and outputs each one to the console
-     * if its category has not been filtered out.
-     *
-     * @method _printToConsole
-     * @param aEntries {Object[]} Array of LogMsg objects to output to console.
-     * @private
-     */
-    _printToConsole : function(aEntries) {
-        // Manage the number of messages displayed in the console
-        var entriesLen         = aEntries.length,
-            df                 = document.createDocumentFragment(),
-            msgHTML            = [],
-            thresholdMin       = this.thresholdMin,
-            sourceFiltersLen   = this._sourceFilters.length,
-            categoryFiltersLen = this._categoryFilters.length,
-            entriesStartIndex,
-            i, j, msg, before;
-
-        if(isNaN(thresholdMin) || (thresholdMin > this.thresholdMax)) {
-            thresholdMin = 0;
-        }
-        entriesStartIndex = (entriesLen > thresholdMin) ? (entriesLen - thresholdMin) : 0;
-        
-        // Iterate through all log entries 
-        for(i=entriesStartIndex; i<entriesLen; i++) {
-            // Print only the ones that filter through
-            var okToPrint = false;
-            var okToFilterCats = false;
-
-            // Get log message details
-            var entry = aEntries[i];
-            var source = entry.source;
-            var category = entry.category;
-
-            for(j=0; j<sourceFiltersLen; j++) {
-                if(source == this._sourceFilters[j]) {
-                    okToFilterCats = true;
-                    break;
-                }
-            }
-            if(okToFilterCats) {
-                for(j=0; j<categoryFiltersLen; j++) {
-                    if(category == this._categoryFilters[j]) {
-                        okToPrint = true;
-                        break;
-                    }
-                }
-            }
-            if(okToPrint) {
-                msg = this.formatMsg(entry);
-                if (typeof msg === 'string') {
-                    msgHTML[msgHTML.length] = msg;
-                } else {
-                    df.insertBefore(msg, this.newestOnTop ?
-                        df.firstChild || null : null);
-                }
-                this._consoleMsgCount++;
-                this._lastTime = entry.time.getTime();
-            }
-        }
-
-        if (msgHTML.length) {
-            msgHTML.splice(0,0,this._elConsole.innerHTML);
-            this._elConsole.innerHTML = this.newestOnTop ?
-                                            msgHTML.reverse().join('') :
-                                            msgHTML.join('');
-        } else if (df.firstChild) {
-            this._elConsole.insertBefore(df, this.newestOnTop ?
-                        this._elConsole.firstChild || null : null);
-        }
-    },
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private event handlers
-//
-/////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Handles Logger's categoryCreateEvent.
-     *
-     * @method _onCategoryCreate
-     * @param sType {String} The event.
-     * @param aArgs {Object[]} Data passed from event firer.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onCategoryCreate : function(sType, aArgs, oSelf) {
-        var category = aArgs[0];
-        
-        // Add category to the internal array of filters
-        oSelf._categoryFilters.push(category);
-
-        if(oSelf._elFt) {
-            oSelf._createCategoryCheckbox(category);
-        }
-    },
-
-    /**
-     * Handles Logger's sourceCreateEvent.
-     *
-     * @method _onSourceCreate
-     * @param sType {String} The event.
-     * @param aArgs {Object[]} Data passed from event firer.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onSourceCreate : function(sType, aArgs, oSelf) {
-        var source = aArgs[0];
-        
-        // Add source to the internal array of filters
-        oSelf._sourceFilters.push(source);
-
-        if(oSelf._elFt) {
-            oSelf._createSourceCheckbox(source);
-        }
-    },
-
-    /**
-     * Handles check events on the category filter checkboxes.
-     *
-     * @method _onCheckCategory
-     * @param v {HTMLEvent} The click event.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onCheckCategory : function(v, oSelf) {
-        var category = this.category;
-        if(!this.checked) {
-            oSelf.hideCategory(category);
-        }
-        else {
-            oSelf.showCategory(category);
-        }
-    },
-
-    /**
-     * Handles check events on the category filter checkboxes.
-     *
-     * @method _onCheckSource
-     * @param v {HTMLEvent} The click event.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onCheckSource : function(v, oSelf) {
-        var source = this.source;
-        if(!this.checked) {
-            oSelf.hideSource(source);
-        }
-        else {
-            oSelf.showSource(source);
-        }
-    },
-
-    /**
-     * Handles click events on the collapse button.
-     *
-     * @method _onClickCollapseBtn
-     * @param v {HTMLEvent} The click event.
-     * @param oSelf {Object} The LogReader instance
-     * @private
-     */
-    _onClickCollapseBtn : function(v, oSelf) {
-        if(!oSelf.isCollapsed) {
-            oSelf.collapse();
-        }
-        else {
-            oSelf.expand();
-        }
-    },
-
-    /**
-     * Handles click events on the pause button.
-     *
-     * @method _onClickPauseBtn
-     * @param v {HTMLEvent} The click event.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onClickPauseBtn : function(v, oSelf) {
-        if(!oSelf.isPaused) {
-            oSelf.pause();
-        }
-        else {
-            oSelf.resume();
-        }
-    },
-
-    /**
-     * Handles click events on the clear button.
-     *
-     * @method _onClickClearBtn
-     * @param v {HTMLEvent} The click event.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onClickClearBtn : function(v, oSelf) {
-        oSelf.clearConsole();
-    },
-
-    /**
-     * Handles Logger's newLogEvent.
-     *
-     * @method _onNewLog
-     * @param sType {String} The event.
-     * @param aArgs {Object[]} Data passed from event firer.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onNewLog : function(sType, aArgs, oSelf) {
-        var logEntry = aArgs[0];
-        oSelf._buffer.push(logEntry);
-
-        if (oSelf.logReaderEnabled === true && oSelf._timeout === null) {
-            oSelf._timeout = setTimeout(function(){oSelf._printBuffer();}, oSelf.outputBuffer);
-        }
-    },
-
-    /**
-     * Handles Logger's resetEvent.
-     *
-     * @method _onReset
-     * @param sType {String} The event.
-     * @param aArgs {Object[]} Data passed from event firer.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onReset : function(sType, aArgs, oSelf) {
-        oSelf._filterLogs();
-    }
-};
-
- /**
- * The Logger widget provides a simple way to read or write log messages in
- * JavaScript code. Integration with the YUI Library's debug builds allow
- * implementers to access under-the-hood events, errors, and debugging messages.
- * Output may be read through a LogReader console and/or output to a browser
- * console.
- *
- * @module logger
- * @requires yahoo, event, dom
- * @optional dragdrop
- * @namespace YAHOO.widget
- * @title Logger Widget
- */
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-// Define once
-if(!YAHOO.widget.Logger) {
-    /**
-     * The singleton Logger class provides core log management functionality. Saves
-     * logs written through the global YAHOO.log function or written by a LogWriter
-     * instance. Provides access to logs for reading by a LogReader instance or
-     * native browser console such as the Firebug extension to Firefox or Safari's
-     * JavaScript console through integration with the console.log() method.
-     *
-     * @class Logger
-     * @static
-     */
-    YAHOO.widget.Logger = {
-        // Initialize properties
-        loggerEnabled: true,
-        _browserConsoleEnabled: false,
-        categories: ["info","warn","error","time","window"],
-        sources: ["global"],
-        _stack: [], // holds all log msgs
-        maxStackEntries: 2500,
-        _startTime: new Date().getTime(), // static start timestamp
-        _lastTime: null, // timestamp of last logged message
-        _windowErrorsHandled: false,
-        _origOnWindowError: null
-    };
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public properties
-    //
-    /////////////////////////////////////////////////////////////////////////////
-    /**
-     * True if Logger is enabled, false otherwise.
-     *
-     * @property loggerEnabled
-     * @type Boolean
-     * @static
-     * @default true
-     */
-
-    /**
-     * Array of categories.
-     *
-     * @property categories
-     * @type String[]
-     * @static
-     * @default ["info","warn","error","time","window"]
-     */
-
-    /**
-     * Array of sources.
-     *
-     * @property sources
-     * @type String[]
-     * @static
-     * @default ["global"]
-     */
-
-    /**
-     * Upper limit on size of internal stack.
-     *
-     * @property maxStackEntries
-     * @type Number
-     * @static
-     * @default 2500
-     */
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private properties
-    //
-    /////////////////////////////////////////////////////////////////////////////
-    /**
-     * Internal property to track whether output to browser console is enabled.
-     *
-     * @property _browserConsoleEnabled
-     * @type Boolean
-     * @static
-     * @default false
-     * @private
-     */
-
-    /**
-     * Array to hold all log messages.
-     *
-     * @property _stack
-     * @type Array
-     * @static
-     * @private
-     */
-    /**
-     * Static timestamp of Logger initialization.
-     *
-     * @property _startTime
-     * @type Date
-     * @static
-     * @private
-     */
-    /**
-     * Timestamp of last logged message.
-     *
-     * @property _lastTime
-     * @type Date
-     * @static
-     * @private
-     */
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-    /**
-     * Saves a log message to the stack and fires newLogEvent. If the log message is
-     * assigned to an unknown category, creates a new category. If the log message is
-     * from an unknown source, creates a new source.  If browser console is enabled,
-     * outputs the log message to browser console.
-     *
-     * @method log
-     * @param sMsg {String} The log message.
-     * @param sCategory {String} Category of log message, or null.
-     * @param sSource {String} Source of LogWriter, or null if global.
-     */
-    YAHOO.widget.Logger.log = function(sMsg, sCategory, sSource) {
-        if(this.loggerEnabled) {
-            if(!sCategory) {
-                sCategory = "info"; // default category
-            }
-            else {
-                sCategory = sCategory.toLocaleLowerCase();
-                if(this._isNewCategory(sCategory)) {
-                    this._createNewCategory(sCategory);
-                }
-            }
-            var sClass = "global"; // default source
-            var sDetail = null;
-            if(sSource) {
-                var spaceIndex = sSource.indexOf(" ");
-                if(spaceIndex > 0) {
-                    // Substring until first space
-                    sClass = sSource.substring(0,spaceIndex);
-                    // The rest of the source
-                    sDetail = sSource.substring(spaceIndex,sSource.length);
-                }
-                else {
-                    sClass = sSource;
-                }
-                if(this._isNewSource(sClass)) {
-                    this._createNewSource(sClass);
-                }
-            }
-
-            var timestamp = new Date();
-            var logEntry = new YAHOO.widget.LogMsg({
-                msg: sMsg,
-                time: timestamp,
-                category: sCategory,
-                source: sClass,
-                sourceDetail: sDetail
-            });
-
-            var stack = this._stack;
-            var maxStackEntries = this.maxStackEntries;
-            if(maxStackEntries && !isNaN(maxStackEntries) &&
-                (stack.length >= maxStackEntries)) {
-                stack.shift();
-            }
-            stack.push(logEntry);
-            this.newLogEvent.fire(logEntry);
-
-            if(this._browserConsoleEnabled) {
-                this._printToBrowserConsole(logEntry);
-            }
-            return true;
-        }
-        else {
-            return false;
-        }
-    };
-
-    /**
-     * Resets internal stack and startTime, enables Logger, and fires logResetEvent.
-     *
-     * @method reset
-     */
-    YAHOO.widget.Logger.reset = function() {
-        this._stack = [];
-        this._startTime = new Date().getTime();
-        this.loggerEnabled = true;
-        this.log("Logger reset");
-        this.logResetEvent.fire();
-    };
-
-    /**
-     * Public accessor to internal stack of log message objects.
-     *
-     * @method getStack
-     * @return {Object[]} Array of log message objects.
-     */
-    YAHOO.widget.Logger.getStack = function() {
-        return this._stack;
-    };
-
-    /**
-     * Public accessor to internal start time.
-     *
-     * @method getStartTime
-     * @return {Date} Internal date of when Logger singleton was initialized.
-     */
-    YAHOO.widget.Logger.getStartTime = function() {
-        return this._startTime;
-    };
-
-    /**
-     * Disables output to the browser's global console.log() function, which is used
-     * by the Firebug extension to Firefox as well as Safari.
-     *
-     * @method disableBrowserConsole
-     */
-    YAHOO.widget.Logger.disableBrowserConsole = function() {
-        YAHOO.log("Logger output to the function console.log() has been disabled.");
-        this._browserConsoleEnabled = false;
-    };
-
-    /**
-     * Enables output to the browser's global console.log() function, which is used
-     * by the Firebug extension to Firefox as well as Safari.
-     *
-     * @method enableBrowserConsole
-     */
-    YAHOO.widget.Logger.enableBrowserConsole = function() {
-        this._browserConsoleEnabled = true;
-        YAHOO.log("Logger output to the function console.log() has been enabled.");
-    };
-
-    /**
-     * Surpresses native JavaScript errors and outputs to console. By default,
-     * Logger does not handle JavaScript window error events.
-     * NB: Not all browsers support the window.onerror event.
-     *
-     * @method handleWindowErrors
-     */
-    YAHOO.widget.Logger.handleWindowErrors = function() {
-        if(!YAHOO.widget.Logger._windowErrorsHandled) {
-            // Save any previously defined handler to call
-            if(window.error) {
-                YAHOO.widget.Logger._origOnWindowError = window.onerror;
-            }
-            window.onerror = YAHOO.widget.Logger._onWindowError;
-            YAHOO.widget.Logger._windowErrorsHandled = true;
-            YAHOO.log("Logger handling of window.onerror has been enabled.");
-        }
-        else {
-            YAHOO.log("Logger handling of window.onerror had already been enabled.");
-        }
-    };
-
-    /**
-     * Unsurpresses native JavaScript errors. By default,
-     * Logger does not handle JavaScript window error events.
-     * NB: Not all browsers support the window.onerror event.
-     *
-     * @method unhandleWindowErrors
-     */
-    YAHOO.widget.Logger.unhandleWindowErrors = function() {
-        if(YAHOO.widget.Logger._windowErrorsHandled) {
-            // Revert to any previously defined handler to call
-            if(YAHOO.widget.Logger._origOnWindowError) {
-                window.onerror = YAHOO.widget.Logger._origOnWindowError;
-                YAHOO.widget.Logger._origOnWindowError = null;
-            }
-            else {
-                window.onerror = null;
-            }
-            YAHOO.widget.Logger._windowErrorsHandled = false;
-            YAHOO.log("Logger handling of window.onerror has been disabled.");
-        }
-        else {
-            YAHOO.log("Logger handling of window.onerror had already been disabled.");
-        }
-    };
-    
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public events
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-     /**
-     * Fired when a new category has been created.
-     *
-     * @event categoryCreateEvent
-     * @param sCategory {String} Category name.
-     */
-    YAHOO.widget.Logger.categoryCreateEvent =
-        new YAHOO.util.CustomEvent("categoryCreate", this, true);
-
-     /**
-     * Fired when a new source has been named.
-     *
-     * @event sourceCreateEvent
-     * @param sSource {String} Source name.
-     */
-    YAHOO.widget.Logger.sourceCreateEvent =
-        new YAHOO.util.CustomEvent("sourceCreate", this, true);
-
-     /**
-     * Fired when a new log message has been created.
-     *
-     * @event newLogEvent
-     * @param sMsg {String} Log message.
-     */
-    YAHOO.widget.Logger.newLogEvent = new YAHOO.util.CustomEvent("newLog", this, true);
-
-    /**
-     * Fired when the Logger has been reset has been created.
-     *
-     * @event logResetEvent
-     */
-    YAHOO.widget.Logger.logResetEvent = new YAHOO.util.CustomEvent("logReset", this, true);
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Creates a new category of log messages and fires categoryCreateEvent.
-     *
-     * @method _createNewCategory
-     * @param sCategory {String} Category name.
-     * @private
-     */
-    YAHOO.widget.Logger._createNewCategory = function(sCategory) {
-        this.categories.push(sCategory);
-        this.categoryCreateEvent.fire(sCategory);
-    };
-
-    /**
-     * Checks to see if a category has already been created.
-     *
-     * @method _isNewCategory
-     * @param sCategory {String} Category name.
-     * @return {Boolean} Returns true if category is unknown, else returns false.
-     * @private
-     */
-    YAHOO.widget.Logger._isNewCategory = function(sCategory) {
-        for(var i=0; i < this.categories.length; i++) {
-            if(sCategory == this.categories[i]) {
-                return false;
-            }
-        }
-        return true;
-    };
-
-    /**
-     * Creates a new source of log messages and fires sourceCreateEvent.
-     *
-     * @method _createNewSource
-     * @param sSource {String} Source name.
-     * @private
-     */
-    YAHOO.widget.Logger._createNewSource = function(sSource) {
-        this.sources.push(sSource);
-        this.sourceCreateEvent.fire(sSource);
-    };
-
-    /**
-     * Checks to see if a source already exists.
-     *
-     * @method _isNewSource
-     * @param sSource {String} Source name.
-     * @return {Boolean} Returns true if source is unknown, else returns false.
-     * @private
-     */
-    YAHOO.widget.Logger._isNewSource = function(sSource) {
-        if(sSource) {
-            for(var i=0; i < this.sources.length; i++) {
-                if(sSource == this.sources[i]) {
-                    return false;
-                }
-            }
-            return true;
-        }
-    };
-
-    /**
-     * Outputs a log message to global console.log() function.
-     *
-     * @method _printToBrowserConsole
-     * @param oEntry {Object} Log entry object.
-     * @private
-     */
-    YAHOO.widget.Logger._printToBrowserConsole = function(oEntry) {
-        if(window.console && console.log) {
-            var category = oEntry.category;
-            var label = oEntry.category.substring(0,4).toUpperCase();
-
-            var time = oEntry.time;
-            var localTime;
-            if (time.toLocaleTimeString) {
-                localTime  = time.toLocaleTimeString();
-            }
-            else {
-                localTime = time.toString();
-            }
-
-            var msecs = time.getTime();
-            var elapsedTime = (YAHOO.widget.Logger._lastTime) ?
-                (msecs - YAHOO.widget.Logger._lastTime) : 0;
-            YAHOO.widget.Logger._lastTime = msecs;
-
-            var output =
-                localTime + " (" +
-                elapsedTime + "ms): " +
-                oEntry.source + ": ";
-
-            // for bug 1987607
-            if (YAHOO.env.ua.webkit) {
-                output += oEntry.msg;
-            }
-
-            console.log(output, oEntry.msg);
-        }
-    };
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private event handlers
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Handles logging of messages due to window error events.
-     *
-     * @method _onWindowError
-     * @param sMsg {String} The error message.
-     * @param sUrl {String} URL of the error.
-     * @param sLine {String} Line number of the error.
-     * @private
-     */
-    YAHOO.widget.Logger._onWindowError = function(sMsg,sUrl,sLine) {
-        // Logger is not in scope of this event handler
-        try {
-            YAHOO.widget.Logger.log(sMsg+' ('+sUrl+', line '+sLine+')', "window");
-            if(YAHOO.widget.Logger._origOnWindowError) {
-                YAHOO.widget.Logger._origOnWindowError();
-            }
-        }
-        catch(e) {
-            return false;
-        }
-    };
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // First log
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    YAHOO.widget.Logger.log("Logger initialized");
-}
-
-
-YAHOO.register("logger", YAHOO.widget.Logger, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/logger/logger-min.js b/eclipse.org-common/yui/2.6.0/build/logger/logger-min.js
deleted file mode 100644
index c43e3f1..0000000
--- a/eclipse.org-common/yui/2.6.0/build/logger/logger-min.js
+++ /dev/null
@@ -1,9 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.widget.LogMsg=function(A){this.msg=this.time=this.category=this.source=this.sourceDetail=null;if(A&&(A.constructor==Object)){for(var B in A){if(A.hasOwnProperty(B)){this[B]=A[B];}}}};YAHOO.widget.LogWriter=function(A){if(!A){YAHOO.log("Could not instantiate LogWriter due to invalid source.","error","LogWriter");return ;}this._source=A;};YAHOO.widget.LogWriter.prototype.toString=function(){return"LogWriter "+this._sSource;};YAHOO.widget.LogWriter.prototype.log=function(A,B){YAHOO.widget.Logger.log(A,B,this._source);};YAHOO.widget.LogWriter.prototype.getSource=function(){return this._source;};YAHOO.widget.LogWriter.prototype.setSource=function(A){if(!A){YAHOO.log("Could not set source due to invalid source.","error",this.toString());return ;}else{this._source=A;}};YAHOO.widget.LogWriter.prototype._source=null;YAHOO.widget.LogReader=function(B,A){this._sName=YAHOO.widget.LogReader._index;YAHOO.widget.LogReader._index++;this._buffer=[];this._filterCheckboxes={};this._lastTime=YAHOO.widget.Logger.getStartTime();if(A&&(A.constructor==Object)){for(var C in A){if(A.hasOwnProperty(C)){this[C]=A[C];}}}this._initContainerEl(B);if(!this._elContainer){YAHOO.log("Could not instantiate LogReader due to an invalid container element "+B,"error",this.toString());return ;}this._initHeaderEl();this._initConsoleEl();this._initFooterEl();this._initDragDrop();this._initCategories();this._initSources();YAHOO.widget.Logger.newLogEvent.subscribe(this._onNewLog,this);YAHOO.widget.Logger.logResetEvent.subscribe(this._onReset,this);YAHOO.widget.Logger.categoryCreateEvent.subscribe(this._onCategoryCreate,this);YAHOO.widget.Logger.sourceCreateEvent.subscribe(this._onSourceCreate,this);this._filterLogs();YAHOO.log("LogReader initialized",null,this.toString());};YAHOO.lang.augmentObject(YAHOO.widget.LogReader,{_index:0,ENTRY_TEMPLATE:(function(){var A=document.createElement("pre");YAHOO.util.Dom.addClass(A,"yui-log-entry");return A;})(),VERBOSE_TEMPLATE:"<p><span class='{category}'>{label}</span> {totalTime}ms (+{elapsedTime}) {localTime}:</p><p>{sourceAndDetail}</p><p>{message}</p>",BASIC_TEMPLATE:"<p><span class='{category}'>{label}</span> {totalTime}ms (+{elapsedTime}) {localTime}: {sourceAndDetail}: {message}</p>"});YAHOO.widget.LogReader.prototype={logReaderEnabled:true,width:null,height:null,top:null,left:null,right:null,bottom:null,fontSize:null,footerEnabled:true,verboseOutput:true,entryFormat:null,newestOnTop:true,outputBuffer:100,thresholdMax:500,thresholdMin:100,isCollapsed:false,isPaused:false,draggable:true,toString:function(){return"LogReader instance"+this._sName;},pause:function(){this.isPaused=true;this._timeout=null;this.logReaderEnabled=false;if(this._btnPause){this._btnPause.value="Resume";}},resume:function(){this.isPaused=false;this.logReaderEnabled=true;this._printBuffer();if(this._btnPause){this._btnPause.value="Pause";}},hide:function(){this._elContainer.style.display="none";},show:function(){this._elContainer.style.display="block";},collapse:function(){this._elConsole.style.display="none";if(this._elFt){this._elFt.style.display="none";}this._btnCollapse.value="Expand";this.isCollapsed=true;},expand:function(){this._elConsole.style.display="block";if(this._elFt){this._elFt.style.display="block";}this._btnCollapse.value="Collapse";this.isCollapsed=false;},getCheckbox:function(A){return this._filterCheckboxes[A];},getCategories:function(){return this._categoryFilters;},showCategory:function(B){var D=this._categoryFilters;if(D.indexOf){if(D.indexOf(B)>-1){return ;}}else{for(var A=0;A<D.length;A++){if(D[A]===B){return ;}}}this._categoryFilters.push(B);this._filterLogs();var C=this.getCheckbox(B);if(C){C.checked=true;}},hideCategory:function(B){var D=this._categoryFilters;for(var A=0;A<D.length;A++){if(B==D[A]){D.splice(A,1);break;}}this._filterLogs();var C=this.getCheckbox(B);if(C){C.checked=false;}},getSources:function(){return this._sourceFilters;},showSource:function(A){var D=this._sourceFilters;if(D.indexOf){if(D.indexOf(A)>-1){return ;}}else{for(var B=0;B<D.length;B++){if(A==D[B]){return ;}}}D.push(A);this._filterLogs();var C=this.getCheckbox(A);if(C){C.checked=true;}},hideSource:function(A){var D=this._sourceFilters;for(var B=0;B<D.length;B++){if(A==D[B]){D.splice(B,1);break;}}this._filterLogs();var C=this.getCheckbox(A);if(C){C.checked=false;}},clearConsole:function(){this._timeout=null;this._buffer=[];this._consoleMsgCount=0;var A=this._elConsole;A.innerHTML="";},setTitle:function(A){this._title.innerHTML=this.html2Text(A);},getLastTime:function(){return this._lastTime;},formatMsg:function(C){var B=YAHOO.widget.LogReader,A=this.entryFormat||(this.verboseOutput?B.VERBOSE_TEMPLATE:B.BASIC_TEMPLATE),D={category:C.category,label:C.category.substring(0,4).toUpperCase(),sourceAndDetail:C.sourceDetail?C.source+" "+C.sourceDetail:C.source,message:this.html2Text(C.msg||C.message||"")};if(C.time&&C.time.getTime){D.localTime=C.time.toLocaleTimeString?C.time.toLocaleTimeString():C.time.toString();D.elapsedTime=C.time.getTime()-this.getLastTime();D.totalTime=C.time.getTime()-YAHOO.widget.Logger.getStartTime();}var E=B.ENTRY_TEMPLATE.cloneNode(true);if(this.verboseOutput){E.className+=" yui-log-verbose";}E.innerHTML=A.replace(/\{(\w+)\}/g,function(F,G){return(G in D)?D[G]:"";});return E;},html2Text:function(A){if(A){A+="";return A.replace(/&/g,"&#38;").replace(/</g,"&#60;").replace(/>/g,"&#62;");}return"";},_sName:null,_buffer:null,_consoleMsgCount:0,_lastTime:null,_timeout:null,_filterCheckboxes:null,_categoryFilters:null,_sourceFilters:null,_elContainer:null,_elHd:null,_elCollapse:null,_btnCollapse:null,_title:null,_elConsole:null,_elFt:null,_elBtns:null,_elCategoryFilters:null,_elSourceFilters:null,_btnPause:null,_btnClear:null,_initContainerEl:function(B){B=YAHOO.util.Dom.get(B);if(B&&B.tagName&&(B.tagName.toLowerCase()=="div")){this._elContainer=B;YAHOO.util.Dom.addClass(this._elContainer,"yui-log");}else{this._elContainer=document.body.appendChild(document.createElement("div"));YAHOO.util.Dom.addClass(this._elContainer,"yui-log");
-YAHOO.util.Dom.addClass(this._elContainer,"yui-log-container");var A=this._elContainer.style;if(this.width){A.width=this.width;}if(this.right){A.right=this.right;}if(this.top){A.top=this.top;}if(this.left){A.left=this.left;A.right="auto";}if(this.bottom){A.bottom=this.bottom;A.top="auto";}if(this.fontSize){A.fontSize=this.fontSize;}if(navigator.userAgent.toLowerCase().indexOf("opera")!=-1){document.body.style+="";}}},_initHeaderEl:function(){var A=this;if(this._elHd){YAHOO.util.Event.purgeElement(this._elHd,true);this._elHd.innerHTML="";}this._elHd=this._elContainer.appendChild(document.createElement("div"));this._elHd.id="yui-log-hd"+this._sName;this._elHd.className="yui-log-hd";this._elCollapse=this._elHd.appendChild(document.createElement("div"));this._elCollapse.className="yui-log-btns";this._btnCollapse=document.createElement("input");this._btnCollapse.type="button";this._btnCollapse.className="yui-log-button";this._btnCollapse.value="Collapse";this._btnCollapse=this._elCollapse.appendChild(this._btnCollapse);YAHOO.util.Event.addListener(A._btnCollapse,"click",A._onClickCollapseBtn,A);this._title=this._elHd.appendChild(document.createElement("h4"));this._title.innerHTML="Logger Console";},_initConsoleEl:function(){if(this._elConsole){YAHOO.util.Event.purgeElement(this._elConsole,true);this._elConsole.innerHTML="";}this._elConsole=this._elContainer.appendChild(document.createElement("div"));this._elConsole.className="yui-log-bd";if(this.height){this._elConsole.style.height=this.height;}},_initFooterEl:function(){var A=this;if(this.footerEnabled){if(this._elFt){YAHOO.util.Event.purgeElement(this._elFt,true);this._elFt.innerHTML="";}this._elFt=this._elContainer.appendChild(document.createElement("div"));this._elFt.className="yui-log-ft";this._elBtns=this._elFt.appendChild(document.createElement("div"));this._elBtns.className="yui-log-btns";this._btnPause=document.createElement("input");this._btnPause.type="button";this._btnPause.className="yui-log-button";this._btnPause.value="Pause";this._btnPause=this._elBtns.appendChild(this._btnPause);YAHOO.util.Event.addListener(A._btnPause,"click",A._onClickPauseBtn,A);this._btnClear=document.createElement("input");this._btnClear.type="button";this._btnClear.className="yui-log-button";this._btnClear.value="Clear";this._btnClear=this._elBtns.appendChild(this._btnClear);YAHOO.util.Event.addListener(A._btnClear,"click",A._onClickClearBtn,A);this._elCategoryFilters=this._elFt.appendChild(document.createElement("div"));this._elCategoryFilters.className="yui-log-categoryfilters";this._elSourceFilters=this._elFt.appendChild(document.createElement("div"));this._elSourceFilters.className="yui-log-sourcefilters";}},_initDragDrop:function(){if(YAHOO.util.DD&&this.draggable&&this._elHd){var A=new YAHOO.util.DD(this._elContainer);A.setHandleElId(this._elHd.id);this._elHd.style.cursor="move";}},_initCategories:function(){this._categoryFilters=[];var C=YAHOO.widget.Logger.categories;for(var A=0;A<C.length;A++){var B=C[A];this._categoryFilters.push(B);if(this._elCategoryFilters){this._createCategoryCheckbox(B);}}},_initSources:function(){this._sourceFilters=[];var C=YAHOO.widget.Logger.sources;for(var B=0;B<C.length;B++){var A=C[B];this._sourceFilters.push(A);if(this._elSourceFilters){this._createSourceCheckbox(A);}}},_createCategoryCheckbox:function(B){var A=this;if(this._elFt){var E=this._elCategoryFilters;var D=E.appendChild(document.createElement("span"));D.className="yui-log-filtergrp";var C=document.createElement("input");C.id="yui-log-filter-"+B+this._sName;C.className="yui-log-filter-"+B;C.type="checkbox";C.category=B;C=D.appendChild(C);C.checked=true;YAHOO.util.Event.addListener(C,"click",A._onCheckCategory,A);var F=D.appendChild(document.createElement("label"));F.htmlFor=C.id;F.className=B;F.innerHTML=B;this._filterCheckboxes[B]=C;}},_createSourceCheckbox:function(A){var D=this;if(this._elFt){var F=this._elSourceFilters;var E=F.appendChild(document.createElement("span"));E.className="yui-log-filtergrp";var C=document.createElement("input");C.id="yui-log-filter"+A+this._sName;C.className="yui-log-filter"+A;C.type="checkbox";C.source=A;C=E.appendChild(C);C.checked=true;YAHOO.util.Event.addListener(C,"click",D._onCheckSource,D);var B=E.appendChild(document.createElement("label"));B.htmlFor=C.id;B.className=A;B.innerHTML=A;this._filterCheckboxes[A]=C;}},_filterLogs:function(){if(this._elConsole!==null){this.clearConsole();this._printToConsole(YAHOO.widget.Logger.getStack());}},_printBuffer:function(){this._timeout=null;if(this._elConsole!==null){var B=this.thresholdMax;B=(B&&!isNaN(B))?B:500;if(this._consoleMsgCount<B){var A=[];for(var C=0;C<this._buffer.length;C++){A[C]=this._buffer[C];}this._buffer=[];this._printToConsole(A);}else{this._filterLogs();}if(!this.newestOnTop){this._elConsole.scrollTop=this._elConsole.scrollHeight;}}},_printToConsole:function(I){var B=I.length,M=document.createDocumentFragment(),P=[],Q=this.thresholdMin,C=this._sourceFilters.length,N=this._categoryFilters.length,K,H,G,F,L;if(isNaN(Q)||(Q>this.thresholdMax)){Q=0;}K=(B>Q)?(B-Q):0;for(H=K;H<B;H++){var E=false;var J=false;var O=I[H];var A=O.source;var D=O.category;for(G=0;G<C;G++){if(A==this._sourceFilters[G]){J=true;break;}}if(J){for(G=0;G<N;G++){if(D==this._categoryFilters[G]){E=true;break;}}}if(E){F=this.formatMsg(O);if(typeof F==="string"){P[P.length]=F;}else{M.insertBefore(F,this.newestOnTop?M.firstChild||null:null);}this._consoleMsgCount++;this._lastTime=O.time.getTime();}}if(P.length){P.splice(0,0,this._elConsole.innerHTML);this._elConsole.innerHTML=this.newestOnTop?P.reverse().join(""):P.join("");}else{if(M.firstChild){this._elConsole.insertBefore(M,this.newestOnTop?this._elConsole.firstChild||null:null);}}},_onCategoryCreate:function(D,C,A){var B=C[0];A._categoryFilters.push(B);if(A._elFt){A._createCategoryCheckbox(B);}},_onSourceCreate:function(D,C,A){var B=C[0];A._sourceFilters.push(B);if(A._elFt){A._createSourceCheckbox(B);}},_onCheckCategory:function(A,B){var C=this.category;
-if(!this.checked){B.hideCategory(C);}else{B.showCategory(C);}},_onCheckSource:function(A,B){var C=this.source;if(!this.checked){B.hideSource(C);}else{B.showSource(C);}},_onClickCollapseBtn:function(A,B){if(!B.isCollapsed){B.collapse();}else{B.expand();}},_onClickPauseBtn:function(A,B){if(!B.isPaused){B.pause();}else{B.resume();}},_onClickClearBtn:function(A,B){B.clearConsole();},_onNewLog:function(D,C,A){var B=C[0];A._buffer.push(B);if(A.logReaderEnabled===true&&A._timeout===null){A._timeout=setTimeout(function(){A._printBuffer();},A.outputBuffer);}},_onReset:function(C,B,A){A._filterLogs();}};if(!YAHOO.widget.Logger){YAHOO.widget.Logger={loggerEnabled:true,_browserConsoleEnabled:false,categories:["info","warn","error","time","window"],sources:["global"],_stack:[],maxStackEntries:2500,_startTime:new Date().getTime(),_lastTime:null,_windowErrorsHandled:false,_origOnWindowError:null};YAHOO.widget.Logger.log=function(B,F,G){if(this.loggerEnabled){if(!F){F="info";}else{F=F.toLocaleLowerCase();if(this._isNewCategory(F)){this._createNewCategory(F);}}var C="global";var A=null;if(G){var D=G.indexOf(" ");if(D>0){C=G.substring(0,D);A=G.substring(D,G.length);}else{C=G;}if(this._isNewSource(C)){this._createNewSource(C);}}var H=new Date();var J=new YAHOO.widget.LogMsg({msg:B,time:H,category:F,source:C,sourceDetail:A});var I=this._stack;var E=this.maxStackEntries;if(E&&!isNaN(E)&&(I.length>=E)){I.shift();}I.push(J);this.newLogEvent.fire(J);if(this._browserConsoleEnabled){this._printToBrowserConsole(J);}return true;}else{return false;}};YAHOO.widget.Logger.reset=function(){this._stack=[];this._startTime=new Date().getTime();this.loggerEnabled=true;this.log("Logger reset");this.logResetEvent.fire();};YAHOO.widget.Logger.getStack=function(){return this._stack;};YAHOO.widget.Logger.getStartTime=function(){return this._startTime;};YAHOO.widget.Logger.disableBrowserConsole=function(){YAHOO.log("Logger output to the function console.log() has been disabled.");this._browserConsoleEnabled=false;};YAHOO.widget.Logger.enableBrowserConsole=function(){this._browserConsoleEnabled=true;YAHOO.log("Logger output to the function console.log() has been enabled.");};YAHOO.widget.Logger.handleWindowErrors=function(){if(!YAHOO.widget.Logger._windowErrorsHandled){if(window.error){YAHOO.widget.Logger._origOnWindowError=window.onerror;}window.onerror=YAHOO.widget.Logger._onWindowError;YAHOO.widget.Logger._windowErrorsHandled=true;YAHOO.log("Logger handling of window.onerror has been enabled.");}else{YAHOO.log("Logger handling of window.onerror had already been enabled.");}};YAHOO.widget.Logger.unhandleWindowErrors=function(){if(YAHOO.widget.Logger._windowErrorsHandled){if(YAHOO.widget.Logger._origOnWindowError){window.onerror=YAHOO.widget.Logger._origOnWindowError;YAHOO.widget.Logger._origOnWindowError=null;}else{window.onerror=null;}YAHOO.widget.Logger._windowErrorsHandled=false;YAHOO.log("Logger handling of window.onerror has been disabled.");}else{YAHOO.log("Logger handling of window.onerror had already been disabled.");}};YAHOO.widget.Logger.categoryCreateEvent=new YAHOO.util.CustomEvent("categoryCreate",this,true);YAHOO.widget.Logger.sourceCreateEvent=new YAHOO.util.CustomEvent("sourceCreate",this,true);YAHOO.widget.Logger.newLogEvent=new YAHOO.util.CustomEvent("newLog",this,true);YAHOO.widget.Logger.logResetEvent=new YAHOO.util.CustomEvent("logReset",this,true);YAHOO.widget.Logger._createNewCategory=function(A){this.categories.push(A);this.categoryCreateEvent.fire(A);};YAHOO.widget.Logger._isNewCategory=function(B){for(var A=0;A<this.categories.length;A++){if(B==this.categories[A]){return false;}}return true;};YAHOO.widget.Logger._createNewSource=function(A){this.sources.push(A);this.sourceCreateEvent.fire(A);};YAHOO.widget.Logger._isNewSource=function(A){if(A){for(var B=0;B<this.sources.length;B++){if(A==this.sources[B]){return false;}}return true;}};YAHOO.widget.Logger._printToBrowserConsole=function(C){if(window.console&&console.log){var E=C.category;var D=C.category.substring(0,4).toUpperCase();var G=C.time;var F;if(G.toLocaleTimeString){F=G.toLocaleTimeString();}else{F=G.toString();}var H=G.getTime();var B=(YAHOO.widget.Logger._lastTime)?(H-YAHOO.widget.Logger._lastTime):0;YAHOO.widget.Logger._lastTime=H;var A=F+" ("+B+"ms): "+C.source+": ";if(YAHOO.env.ua.webkit){A+=C.msg;}console.log(A,C.msg);}};YAHOO.widget.Logger._onWindowError=function(A,C,B){try{YAHOO.widget.Logger.log(A+" ("+C+", line "+B+")","window");if(YAHOO.widget.Logger._origOnWindowError){YAHOO.widget.Logger._origOnWindowError();}}catch(D){return false;}};YAHOO.widget.Logger.log("Logger initialized");}YAHOO.register("logger",YAHOO.widget.Logger,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/logger/logger.js b/eclipse.org-common/yui/2.6.0/build/logger/logger.js
deleted file mode 100644
index 78c02da..0000000
--- a/eclipse.org-common/yui/2.6.0/build/logger/logger.js
+++ /dev/null
@@ -1,2044 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The LogMsg class defines a single log message.
- *
- * @class LogMsg
- * @constructor
- * @param oConfigs {Object} Object literal of configuration params.
- */
-YAHOO.widget.LogMsg = function(oConfigs) {
-    // Parse configs
-    /**
-     * Log message.
-     *
-     * @property msg
-     * @type String
-     */
-    this.msg =
-    /**
-     * Log timestamp.
-     *
-     * @property time
-     * @type Date
-     */
-    this.time =
-
-    /**
-     * Log category.
-     *
-     * @property category
-     * @type String
-     */
-    this.category =
-
-    /**
-     * Log source. The first word passed in as the source argument.
-     *
-     * @property source
-     * @type String
-     */
-    this.source =
-
-    /**
-     * Log source detail. The remainder of the string passed in as the source argument, not
-     * including the first word (if any).
-     *
-     * @property sourceDetail
-     * @type String
-     */
-    this.sourceDetail = null;
-
-    if (oConfigs && (oConfigs.constructor == Object)) {
-        for(var param in oConfigs) {
-            if (oConfigs.hasOwnProperty(param)) {
-                this[param] = oConfigs[param];
-            }
-        }
-    }
-};
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The LogWriter class provides a mechanism to log messages through
- * YAHOO.widget.Logger from a named source.
- *
- * @class LogWriter
- * @constructor
- * @param sSource {String} Source of LogWriter instance.
- */
-YAHOO.widget.LogWriter = function(sSource) {
-    if(!sSource) {
-        YAHOO.log("Could not instantiate LogWriter due to invalid source.",
-            "error", "LogWriter");
-        return;
-    }
-    this._source = sSource;
- };
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public methods
-//
-/////////////////////////////////////////////////////////////////////////////
-
- /**
- * Public accessor to the unique name of the LogWriter instance.
- *
- * @method toString
- * @return {String} Unique name of the LogWriter instance.
- */
-YAHOO.widget.LogWriter.prototype.toString = function() {
-    return "LogWriter " + this._sSource;
-};
-
-/**
- * Logs a message attached to the source of the LogWriter.
- *
- * @method log
- * @param sMsg {String} The log message.
- * @param sCategory {String} Category name.
- */
-YAHOO.widget.LogWriter.prototype.log = function(sMsg, sCategory) {
-    YAHOO.widget.Logger.log(sMsg, sCategory, this._source);
-};
-
-/**
- * Public accessor to get the source name.
- *
- * @method getSource
- * @return {String} The LogWriter source.
- */
-YAHOO.widget.LogWriter.prototype.getSource = function() {
-    return this._source;
-};
-
-/**
- * Public accessor to set the source name.
- *
- * @method setSource
- * @param sSource {String} Source of LogWriter instance.
- */
-YAHOO.widget.LogWriter.prototype.setSource = function(sSource) {
-    if(!sSource) {
-        YAHOO.log("Could not set source due to invalid source.", "error", this.toString());
-        return;
-    }
-    else {
-        this._source = sSource;
-    }
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-/**
- * Source of the LogWriter instance.
- *
- * @property _source
- * @type String
- * @private
- */
-YAHOO.widget.LogWriter.prototype._source = null;
-
-
-
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-/**
- * The LogReader class provides UI to read messages logged to YAHOO.widget.Logger.
- *
- * @class LogReader
- * @constructor
- * @param elContainer {HTMLElement} (optional) DOM element reference of an existing DIV.
- * @param elContainer {String} (optional) String ID of an existing DIV.
- * @param oConfigs {Object} (optional) Object literal of configuration params.
- */
-YAHOO.widget.LogReader = function(elContainer, oConfigs) {
-    this._sName = YAHOO.widget.LogReader._index;
-    YAHOO.widget.LogReader._index++;
-    
-    // Internal vars
-    this._buffer = []; // output buffer
-    this._filterCheckboxes = {}; // pointers to checkboxes
-    this._lastTime = YAHOO.widget.Logger.getStartTime(); // timestamp of last log message to console
-
-    // Parse config vars here
-    if (oConfigs && (oConfigs.constructor == Object)) {
-        for(var param in oConfigs) {
-            if (oConfigs.hasOwnProperty(param)) {
-                this[param] = oConfigs[param];
-            }
-        }
-    }
-
-    this._initContainerEl(elContainer);
-    if(!this._elContainer) {
-        YAHOO.log("Could not instantiate LogReader due to an invalid container element " +
-                elContainer, "error", this.toString());
-        return;
-    }
-    
-    this._initHeaderEl();
-    this._initConsoleEl();
-    this._initFooterEl();
-
-    this._initDragDrop();
-
-    this._initCategories();
-    this._initSources();
-
-    // Subscribe to Logger custom events
-    YAHOO.widget.Logger.newLogEvent.subscribe(this._onNewLog, this);
-    YAHOO.widget.Logger.logResetEvent.subscribe(this._onReset, this);
-
-    YAHOO.widget.Logger.categoryCreateEvent.subscribe(this._onCategoryCreate, this);
-    YAHOO.widget.Logger.sourceCreateEvent.subscribe(this._onSourceCreate, this);
-
-    this._filterLogs();
-    YAHOO.log("LogReader initialized", null, this.toString());
-};
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Static member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-YAHOO.lang.augmentObject(YAHOO.widget.LogReader, {
-    /**
-     * Internal class member to index multiple LogReader instances.
-     *
-     * @property _memberName
-     * @static
-     * @type Number
-     * @default 0
-     * @private
-     */
-    _index : 0,
-
-    /**
-     * Node template for the log entries
-     * @property ENTRY_TEMPLATE
-     * @static
-     * @type {HTMLElement}
-     * @default PRE.yui-log-entry element
-     */
-    ENTRY_TEMPLATE : (function () {
-        var t = document.createElement('pre');
-        YAHOO.util.Dom.addClass(t,'yui-log-entry');
-        return t;
-    })(),
-
-    /**
-     * Template used for innerHTML of verbose entry output.
-     * @property VERBOSE_TEMPLATE
-     * @static
-     * @default "<span class='{category}'>{label}</span>{totalTime}ms (+{elapsedTime}) {localTime}:</p><p>{sourceAndDetail}</p><p>{message}</p>"
-     */
-    VERBOSE_TEMPLATE : "<p><span class='{category}'>{label}</span> {totalTime}ms (+{elapsedTime}) {localTime}:</p><p>{sourceAndDetail}</p><p>{message}</p>",
-
-    /**
-     * Template used for innerHTML of compact entry output.
-     * @property BASIC_TEMPLATE
-     * @static
-     * @default "<p><span class='{category}'>{label}</span>{totalTime}ms (+{elapsedTime}) {localTime}: {sourceAndDetail}: {message}</p>"
-     */
-    BASIC_TEMPLATE : "<p><span class='{category}'>{label}</span> {totalTime}ms (+{elapsedTime}) {localTime}: {sourceAndDetail}: {message}</p>"
-});
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Public member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-YAHOO.widget.LogReader.prototype = {
-    /**
-     * Whether or not LogReader is enabled to output log messages.
-     *
-     * @property logReaderEnabled
-     * @type Boolean
-     * @default true
-     */
-    logReaderEnabled : true,
-
-    /**
-     * Public member to access CSS width of the LogReader container.
-     *
-     * @property width
-     * @type String
-     */
-    width : null,
-
-    /**
-     * Public member to access CSS height of the LogReader container.
-     *
-     * @property height
-     * @type String
-     */
-    height : null,
-
-    /**
-     * Public member to access CSS top position of the LogReader container.
-     *
-     * @property top
-     * @type String
-     */
-    top : null,
-
-    /**
-     * Public member to access CSS left position of the LogReader container.
-     *
-     * @property left
-     * @type String
-     */
-    left : null,
-
-    /**
-     * Public member to access CSS right position of the LogReader container.
-     *
-     * @property right
-     * @type String
-     */
-    right : null,
-
-    /**
-     * Public member to access CSS bottom position of the LogReader container.
-     *
-     * @property bottom
-     * @type String
-     */
-    bottom : null,
-
-    /**
-     * Public member to access CSS font size of the LogReader container.
-     *
-     * @property fontSize
-     * @type String
-     */
-    fontSize : null,
-
-    /**
-     * Whether or not the footer UI is enabled for the LogReader.
-     *
-     * @property footerEnabled
-     * @type Boolean
-     * @default true
-     */
-    footerEnabled : true,
-
-    /**
-     * Whether or not output is verbose (more readable). Setting to true will make
-     * output more compact (less readable).
-     *
-     * @property verboseOutput
-     * @type Boolean
-     * @default true
-     */
-    verboseOutput : true,
-
-    /**
-     * Custom output format for log messages.  Defaults to null, which falls
-     * back to verboseOutput param deciding between LogReader.VERBOSE_TEMPLATE
-     * and LogReader.BASIC_TEMPLATE.  Use bracketed place holders to mark where
-     * message info should go.  Available place holder names include:
-     * <ul>
-     *  <li>category</li>
-     *  <li>label</li>
-     *  <li>sourceAndDetail</li>
-     *  <li>message</li>
-     *  <li>localTime</li>
-     *  <li>elapsedTime</li>
-     *  <li>totalTime</li>
-     * </ul>
-     *
-     * @property entryFormat
-     * @type String
-     * @default null
-     */
-    entryFormat : null,
-
-    /**
-     * Whether or not newest message is printed on top.
-     *
-     * @property newestOnTop
-     * @type Boolean
-     */
-    newestOnTop : true,
-
-    /**
-     * Output timeout buffer in milliseconds.
-     *
-     * @property outputBuffer
-     * @type Number
-     * @default 100
-     */
-    outputBuffer : 100,
-
-    /**
-     * Maximum number of messages a LogReader console will display.
-     *
-     * @property thresholdMax
-     * @type Number
-     * @default 500
-     */
-    thresholdMax : 500,
-
-    /**
-     * When a LogReader console reaches its thresholdMax, it will clear out messages
-     * and print out the latest thresholdMin number of messages.
-     *
-     * @property thresholdMin
-     * @type Number
-     * @default 100
-     */
-    thresholdMin : 100,
-
-    /**
-     * True when LogReader is in a collapsed state, false otherwise.
-     *
-     * @property isCollapsed
-     * @type Boolean
-     * @default false
-     */
-    isCollapsed : false,
-
-    /**
-     * True when LogReader is in a paused state, false otherwise.
-     *
-     * @property isPaused
-     * @type Boolean
-     * @default false
-     */
-    isPaused : false,
-
-    /**
-     * Enables draggable LogReader if DragDrop Utility is present.
-     *
-     * @property draggable
-     * @type Boolean
-     * @default true
-     */
-    draggable : true,
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-     /**
-     * Public accessor to the unique name of the LogReader instance.
-     *
-     * @method toString
-     * @return {String} Unique name of the LogReader instance.
-     */
-    toString : function() {
-        return "LogReader instance" + this._sName;
-    },
-    /**
-     * Pauses output of log messages. While paused, log messages are not lost, but
-     * get saved to a buffer and then output upon resume of LogReader.
-     *
-     * @method pause
-     */
-    pause : function() {
-        this.isPaused = true;
-        this._timeout = null;
-        this.logReaderEnabled = false;
-        if (this._btnPause) {
-            this._btnPause.value = "Resume";
-        }
-    },
-
-    /**
-     * Resumes output of log messages, including outputting any log messages that
-     * have been saved to buffer while paused.
-     *
-     * @method resume
-     */
-    resume : function() {
-        this.isPaused = false;
-        this.logReaderEnabled = true;
-        this._printBuffer();
-        if (this._btnPause) {
-            this._btnPause.value = "Pause";
-        }
-    },
-
-    /**
-     * Hides UI of LogReader. Logging functionality is not disrupted.
-     *
-     * @method hide
-     */
-    hide : function() {
-        this._elContainer.style.display = "none";
-    },
-
-    /**
-     * Shows UI of LogReader. Logging functionality is not disrupted.
-     *
-     * @method show
-     */
-    show : function() {
-        this._elContainer.style.display = "block";
-    },
-
-    /**
-     * Collapses UI of LogReader. Logging functionality is not disrupted.
-     *
-     * @method collapse
-     */
-    collapse : function() {
-        this._elConsole.style.display = "none";
-        if(this._elFt) {
-            this._elFt.style.display = "none";
-        }
-        this._btnCollapse.value = "Expand";
-        this.isCollapsed = true;
-    },
-
-    /**
-     * Expands UI of LogReader. Logging functionality is not disrupted.
-     *
-     * @method expand
-     */
-    expand : function() {
-        this._elConsole.style.display = "block";
-        if(this._elFt) {
-            this._elFt.style.display = "block";
-        }
-        this._btnCollapse.value = "Collapse";
-        this.isCollapsed = false;
-    },
-
-    /**
-     * Returns related checkbox element for given filter (i.e., category or source).
-     *
-     * @method getCheckbox
-     * @param {String} Category or source name.
-     * @return {Array} Array of all filter checkboxes.
-     */
-    getCheckbox : function(filter) {
-        return this._filterCheckboxes[filter];
-    },
-
-    /**
-     * Returns array of enabled categories.
-     *
-     * @method getCategories
-     * @return {String[]} Array of enabled categories.
-     */
-    getCategories : function() {
-        return this._categoryFilters;
-    },
-
-    /**
-     * Shows log messages associated with given category.
-     *
-     * @method showCategory
-     * @param {String} Category name.
-     */
-    showCategory : function(sCategory) {
-        var filtersArray = this._categoryFilters;
-        // Don't do anything if category is already enabled
-        // Use Array.indexOf if available...
-        if(filtersArray.indexOf) {
-             if(filtersArray.indexOf(sCategory) >  -1) {
-                return;
-            }
-        }
-        // ...or do it the old-fashioned way
-        else {
-            for(var i=0; i<filtersArray.length; i++) {
-               if(filtersArray[i] === sCategory){
-                    return;
-                }
-            }
-        }
-
-        this._categoryFilters.push(sCategory);
-        this._filterLogs();
-        var elCheckbox = this.getCheckbox(sCategory);
-        if(elCheckbox) {
-            elCheckbox.checked = true;
-        }
-    },
-
-    /**
-     * Hides log messages associated with given category.
-     *
-     * @method hideCategory
-     * @param {String} Category name.
-     */
-    hideCategory : function(sCategory) {
-        var filtersArray = this._categoryFilters;
-        for(var i=0; i<filtersArray.length; i++) {
-            if(sCategory == filtersArray[i]) {
-                filtersArray.splice(i, 1);
-                break;
-            }
-        }
-        this._filterLogs();
-        var elCheckbox = this.getCheckbox(sCategory);
-        if(elCheckbox) {
-            elCheckbox.checked = false;
-        }
-    },
-
-    /**
-     * Returns array of enabled sources.
-     *
-     * @method getSources
-     * @return {Array} Array of enabled sources.
-     */
-    getSources : function() {
-        return this._sourceFilters;
-    },
-
-    /**
-     * Shows log messages associated with given source.
-     *
-     * @method showSource
-     * @param {String} Source name.
-     */
-    showSource : function(sSource) {
-        var filtersArray = this._sourceFilters;
-        // Don't do anything if category is already enabled
-        // Use Array.indexOf if available...
-        if(filtersArray.indexOf) {
-             if(filtersArray.indexOf(sSource) >  -1) {
-                return;
-            }
-        }
-        // ...or do it the old-fashioned way
-        else {
-            for(var i=0; i<filtersArray.length; i++) {
-               if(sSource == filtersArray[i]){
-                    return;
-                }
-            }
-        }
-        filtersArray.push(sSource);
-        this._filterLogs();
-        var elCheckbox = this.getCheckbox(sSource);
-        if(elCheckbox) {
-            elCheckbox.checked = true;
-        }
-    },
-
-    /**
-     * Hides log messages associated with given source.
-     *
-     * @method hideSource
-     * @param {String} Source name.
-     */
-    hideSource : function(sSource) {
-        var filtersArray = this._sourceFilters;
-        for(var i=0; i<filtersArray.length; i++) {
-            if(sSource == filtersArray[i]) {
-                filtersArray.splice(i, 1);
-                break;
-            }
-        }
-        this._filterLogs();
-        var elCheckbox = this.getCheckbox(sSource);
-        if(elCheckbox) {
-            elCheckbox.checked = false;
-        }
-    },
-
-    /**
-     * Does not delete any log messages, but clears all printed log messages from
-     * the console. Log messages will be printed out again if user re-filters. The
-     * static method YAHOO.widget.Logger.reset() should be called in order to
-     * actually delete log messages.
-     *
-     * @method clearConsole
-     */
-    clearConsole : function() {
-        // Clear the buffer of any pending messages
-        this._timeout = null;
-        this._buffer = [];
-        this._consoleMsgCount = 0;
-
-        var elConsole = this._elConsole;
-        elConsole.innerHTML = '';
-    },
-
-    /**
-     * Updates title to given string.
-     *
-     * @method setTitle
-     * @param sTitle {String} New title.
-     */
-    setTitle : function(sTitle) {
-        this._title.innerHTML = this.html2Text(sTitle);
-    },
-
-    /**
-     * Gets timestamp of the last log.
-     *
-     * @method getLastTime
-     * @return {Date} Timestamp of the last log.
-     */
-    getLastTime : function() {
-        return this._lastTime;
-    },
-
-    formatMsg : function (entry) {
-        var Static      = YAHOO.widget.LogReader,
-            entryFormat = this.entryFormat || (this.verboseOutput ?
-                          Static.VERBOSE_TEMPLATE : Static.BASIC_TEMPLATE),
-            info        = {
-                category : entry.category,
-
-                // Label for color-coded display
-                label : entry.category.substring(0,4).toUpperCase(),
-
-                sourceAndDetail : entry.sourceDetail ?
-                                  entry.source + " " + entry.sourceDetail :
-                                  entry.source,
-
-                // Escape HTML entities in the log message itself for output
-                // to console
-                message : this.html2Text(entry.msg || entry.message || '')
-            };
-
-        // Add time info
-        if (entry.time && entry.time.getTime) {
-            info.localTime = entry.time.toLocaleTimeString ?
-                             entry.time.toLocaleTimeString() :
-                             entry.time.toString();
-
-            // Calculate the elapsed time to be from the last item that
-            // passed through the filter, not the absolute previous item
-            // in the stack
-            info.elapsedTime = entry.time.getTime() - this.getLastTime();
-
-            info.totalTime = entry.time.getTime() -
-                               YAHOO.widget.Logger.getStartTime();
-        }
-
-        var msg = Static.ENTRY_TEMPLATE.cloneNode(true);
-        if (this.verboseOutput) {
-            msg.className += ' yui-log-verbose';
-        }
-
-        // Bug 2061169: Workaround for YAHOO.lang.substitute()
-        msg.innerHTML = entryFormat.replace(/\{(\w+)\}/g, function (x, placeholder) { return (placeholder in info) ? info[placeholder] : ''; });
-
-        return msg;
-    },
-
-    /**
-     * Converts input chars "<", ">", and "&" to HTML entities.
-     *
-     * @method html2Text
-     * @param sHtml {String} String to convert.
-     * @private
-     */
-    html2Text : function(sHtml) {
-        if(sHtml) {
-            sHtml += "";
-            return sHtml.replace(/&/g, "&#38;").replace(/</g, "&#60;").replace(/>/g, "&#62;");
-        }
-        return "";
-    },
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private member variables
-//
-/////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Name of LogReader instance.
-     *
-     * @property _sName
-     * @type String
-     * @private
-     */
-    _sName : null,
-
-    //TODO: remove
-    /**
-     * A class member shared by all LogReaders if a container needs to be
-     * created during instantiation. Will be null if a container element never needs to
-     * be created on the fly, such as when the implementer passes in their own element.
-     *
-     * @property _elDefaultContainer
-     * @type HTMLElement
-     * @private
-     */
-    //YAHOO.widget.LogReader._elDefaultContainer = null;
-
-    /**
-     * Buffer of log message objects for batch output.
-     *
-     * @property _buffer
-     * @type Object[]
-     * @private
-     */
-    _buffer : null,
-
-    /**
-     * Number of log messages output to console.
-     *
-     * @property _consoleMsgCount
-     * @type Number
-     * @default 0
-     * @private
-     */
-    _consoleMsgCount : 0,
-
-    /**
-     * Date of last output log message.
-     *
-     * @property _lastTime
-     * @type Date
-     * @private
-     */
-    _lastTime : null,
-
-    /**
-     * Batched output timeout ID.
-     *
-     * @property _timeout
-     * @type Number
-     * @private
-     */
-    _timeout : null,
-
-    /**
-     * Hash of filters and their related checkbox elements.
-     *
-     * @property _filterCheckboxes
-     * @type Object
-     * @private
-     */
-    _filterCheckboxes : null,
-
-    /**
-     * Array of filters for log message categories.
-     *
-     * @property _categoryFilters
-     * @type String[]
-     * @private
-     */
-    _categoryFilters : null,
-
-    /**
-     * Array of filters for log message sources.
-     *
-     * @property _sourceFilters
-     * @type String[]
-     * @private
-     */
-    _sourceFilters : null,
-
-    /**
-     * LogReader container element.
-     *
-     * @property _elContainer
-     * @type HTMLElement
-     * @private
-     */
-    _elContainer : null,
-
-    /**
-     * LogReader header element.
-     *
-     * @property _elHd
-     * @type HTMLElement
-     * @private
-     */
-    _elHd : null,
-
-    /**
-     * LogReader collapse element.
-     *
-     * @property _elCollapse
-     * @type HTMLElement
-     * @private
-     */
-    _elCollapse : null,
-
-    /**
-     * LogReader collapse button element.
-     *
-     * @property _btnCollapse
-     * @type HTMLElement
-     * @private
-     */
-    _btnCollapse : null,
-
-    /**
-     * LogReader title header element.
-     *
-     * @property _title
-     * @type HTMLElement
-     * @private
-     */
-    _title : null,
-
-    /**
-     * LogReader console element.
-     *
-     * @property _elConsole
-     * @type HTMLElement
-     * @private
-     */
-    _elConsole : null,
-
-    /**
-     * LogReader footer element.
-     *
-     * @property _elFt
-     * @type HTMLElement
-     * @private
-     */
-    _elFt : null,
-
-    /**
-     * LogReader buttons container element.
-     *
-     * @property _elBtns
-     * @type HTMLElement
-     * @private
-     */
-    _elBtns : null,
-
-    /**
-     * Container element for LogReader category filter checkboxes.
-     *
-     * @property _elCategoryFilters
-     * @type HTMLElement
-     * @private
-     */
-    _elCategoryFilters : null,
-
-    /**
-     * Container element for LogReader source filter checkboxes.
-     *
-     * @property _elSourceFilters
-     * @type HTMLElement
-     * @private
-     */
-    _elSourceFilters : null,
-
-    /**
-     * LogReader pause button element.
-     *
-     * @property _btnPause
-     * @type HTMLElement
-     * @private
-     */
-    _btnPause : null,
-
-    /**
-     * Clear button element.
-     *
-     * @property _btnClear
-     * @type HTMLElement
-     * @private
-     */
-    _btnClear : null,
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Initializes the primary container element.
-     *
-     * @method _initContainerEl
-     * @param elContainer {HTMLElement} Container element by reference or string ID.
-     * @private
-     */
-    _initContainerEl : function(elContainer) {
-        // Validate container
-        elContainer = YAHOO.util.Dom.get(elContainer);
-        // Attach to existing container...
-        if(elContainer && elContainer.tagName && (elContainer.tagName.toLowerCase() == "div")) {
-            this._elContainer = elContainer;
-            YAHOO.util.Dom.addClass(this._elContainer,"yui-log");
-        }
-        // ...or create container from scratch
-        else {
-            this._elContainer = document.body.appendChild(document.createElement("div"));
-            //this._elContainer.id = "yui-log" + this._sName;
-            YAHOO.util.Dom.addClass(this._elContainer,"yui-log");
-            YAHOO.util.Dom.addClass(this._elContainer,"yui-log-container");
-
-            //YAHOO.widget.LogReader._elDefaultContainer = this._elContainer;
-
-            // If implementer has provided container values, trust and set those
-            var containerStyle = this._elContainer.style;
-            if(this.width) {
-                containerStyle.width = this.width;
-            }
-            if(this.right) {
-                containerStyle.right = this.right;
-            }
-            if(this.top) {
-                containerStyle.top = this.top;
-            }
-             if(this.left) {
-                containerStyle.left = this.left;
-                containerStyle.right = "auto";
-            }
-            if(this.bottom) {
-                containerStyle.bottom = this.bottom;
-                containerStyle.top = "auto";
-            }
-           if(this.fontSize) {
-                containerStyle.fontSize = this.fontSize;
-            }
-            // For Opera
-            if(navigator.userAgent.toLowerCase().indexOf("opera") != -1) {
-                document.body.style += '';
-            }
-        }
-    },
-
-    /**
-     * Initializes the header element.
-     *
-     * @method _initHeaderEl
-     * @private
-     */
-    _initHeaderEl : function() {
-        var oSelf = this;
-
-        // Destroy header
-        if(this._elHd) {
-            // Unhook DOM events
-            YAHOO.util.Event.purgeElement(this._elHd, true);
-
-            // Remove DOM elements
-            this._elHd.innerHTML = "";
-        }
-        
-        // Create header
-        this._elHd = this._elContainer.appendChild(document.createElement("div"));
-        this._elHd.id = "yui-log-hd" + this._sName;
-        this._elHd.className = "yui-log-hd";
-
-        this._elCollapse = this._elHd.appendChild(document.createElement("div"));
-        this._elCollapse.className = "yui-log-btns";
-
-        this._btnCollapse = document.createElement("input");
-        this._btnCollapse.type = "button";
-        //this._btnCollapse.style.fontSize =
-        //    YAHOO.util.Dom.getStyle(this._elContainer,"fontSize");
-        this._btnCollapse.className = "yui-log-button";
-        this._btnCollapse.value = "Collapse";
-        this._btnCollapse = this._elCollapse.appendChild(this._btnCollapse);
-        YAHOO.util.Event.addListener(
-            oSelf._btnCollapse,'click',oSelf._onClickCollapseBtn,oSelf);
-
-        this._title = this._elHd.appendChild(document.createElement("h4"));
-        this._title.innerHTML = "Logger Console";
-    },
-
-    /**
-     * Initializes the console element.
-     *
-     * @method _initConsoleEl
-     * @private
-     */
-    _initConsoleEl : function() {
-        // Destroy console
-        if(this._elConsole) {
-            // Unhook DOM events
-            YAHOO.util.Event.purgeElement(this._elConsole, true);
-
-            // Remove DOM elements
-            this._elConsole.innerHTML = "";
-        }
-
-        // Ceate console
-        this._elConsole = this._elContainer.appendChild(document.createElement("div"));
-        this._elConsole.className = "yui-log-bd";
-
-        // If implementer has provided console, trust and set those
-        if(this.height) {
-            this._elConsole.style.height = this.height;
-        }
-    },
-
-    /**
-     * Initializes the footer element.
-     *
-     * @method _initFooterEl
-     * @private
-     */
-    _initFooterEl : function() {
-        var oSelf = this;
-
-        // Don't create footer elements if footer is disabled
-        if(this.footerEnabled) {
-            // Destroy console
-            if(this._elFt) {
-                // Unhook DOM events
-                YAHOO.util.Event.purgeElement(this._elFt, true);
-
-                // Remove DOM elements
-                this._elFt.innerHTML = "";
-            }
-
-            this._elFt = this._elContainer.appendChild(document.createElement("div"));
-            this._elFt.className = "yui-log-ft";
-
-            this._elBtns = this._elFt.appendChild(document.createElement("div"));
-            this._elBtns.className = "yui-log-btns";
-
-            this._btnPause = document.createElement("input");
-            this._btnPause.type = "button";
-            //this._btnPause.style.fontSize =
-            //    YAHOO.util.Dom.getStyle(this._elContainer,"fontSize");
-            this._btnPause.className = "yui-log-button";
-            this._btnPause.value = "Pause";
-            this._btnPause = this._elBtns.appendChild(this._btnPause);
-            YAHOO.util.Event.addListener(
-                oSelf._btnPause,'click',oSelf._onClickPauseBtn,oSelf);
-
-            this._btnClear = document.createElement("input");
-            this._btnClear.type = "button";
-            //this._btnClear.style.fontSize =
-            //    YAHOO.util.Dom.getStyle(this._elContainer,"fontSize");
-            this._btnClear.className = "yui-log-button";
-            this._btnClear.value = "Clear";
-            this._btnClear = this._elBtns.appendChild(this._btnClear);
-            YAHOO.util.Event.addListener(
-                oSelf._btnClear,'click',oSelf._onClickClearBtn,oSelf);
-
-            this._elCategoryFilters = this._elFt.appendChild(document.createElement("div"));
-            this._elCategoryFilters.className = "yui-log-categoryfilters";
-            this._elSourceFilters = this._elFt.appendChild(document.createElement("div"));
-            this._elSourceFilters.className = "yui-log-sourcefilters";
-        }
-    },
-
-    /**
-     * Initializes Drag and Drop on the header element.
-     *
-     * @method _initDragDrop
-     * @private
-     */
-    _initDragDrop : function() {
-        // If Drag and Drop utility is available...
-        // ...and draggable is true...
-        // ...then make the header draggable
-        if(YAHOO.util.DD && this.draggable && this._elHd) {
-            var ylog_dd = new YAHOO.util.DD(this._elContainer);
-            ylog_dd.setHandleElId(this._elHd.id);
-            //TODO: use class name
-            this._elHd.style.cursor = "move";
-        }
-    },
-
-    /**
-     * Initializes category filters.
-     *
-     * @method _initCategories
-     * @private
-     */
-    _initCategories : function() {
-        // Initialize category filters
-        this._categoryFilters = [];
-        var aInitialCategories = YAHOO.widget.Logger.categories;
-
-        for(var j=0; j < aInitialCategories.length; j++) {
-            var sCategory = aInitialCategories[j];
-
-            // Add category to the internal array of filters
-            this._categoryFilters.push(sCategory);
-
-            // Add checkbox element if UI is enabled
-            if(this._elCategoryFilters) {
-                this._createCategoryCheckbox(sCategory);
-            }
-        }
-    },
-
-    /**
-     * Initializes source filters.
-     *
-     * @method _initSources
-     * @private
-     */
-    _initSources : function() {
-        // Initialize source filters
-        this._sourceFilters = [];
-        var aInitialSources = YAHOO.widget.Logger.sources;
-
-        for(var j=0; j < aInitialSources.length; j++) {
-            var sSource = aInitialSources[j];
-
-            // Add source to the internal array of filters
-            this._sourceFilters.push(sSource);
-
-            // Add checkbox element if UI is enabled
-            if(this._elSourceFilters) {
-                this._createSourceCheckbox(sSource);
-            }
-        }
-    },
-
-    /**
-     * Creates the UI for a category filter in the LogReader footer element.
-     *
-     * @method _createCategoryCheckbox
-     * @param sCategory {String} Category name.
-     * @private
-     */
-    _createCategoryCheckbox : function(sCategory) {
-        var oSelf = this;
-
-        if(this._elFt) {
-            var elParent = this._elCategoryFilters;
-            var elFilter = elParent.appendChild(document.createElement("span"));
-            elFilter.className = "yui-log-filtergrp";
-            
-            // Append el at the end so IE 5.5 can set "type" attribute
-            // and THEN set checked property
-            var chkCategory = document.createElement("input");
-            chkCategory.id = "yui-log-filter-" + sCategory + this._sName;
-            chkCategory.className = "yui-log-filter-" + sCategory;
-            chkCategory.type = "checkbox";
-            chkCategory.category = sCategory;
-            chkCategory = elFilter.appendChild(chkCategory);
-            chkCategory.checked = true;
-
-            // Subscribe to the click event
-            YAHOO.util.Event.addListener(chkCategory,'click',oSelf._onCheckCategory,oSelf);
-
-            // Create and class the text label
-            var lblCategory = elFilter.appendChild(document.createElement("label"));
-            lblCategory.htmlFor = chkCategory.id;
-            lblCategory.className = sCategory;
-            lblCategory.innerHTML = sCategory;
-            
-            this._filterCheckboxes[sCategory] = chkCategory;
-        }
-    },
-
-    /**
-     * Creates a checkbox in the LogReader footer element to filter by source.
-     *
-     * @method _createSourceCheckbox
-     * @param sSource {String} Source name.
-     * @private
-     */
-    _createSourceCheckbox : function(sSource) {
-        var oSelf = this;
-
-        if(this._elFt) {
-            var elParent = this._elSourceFilters;
-            var elFilter = elParent.appendChild(document.createElement("span"));
-            elFilter.className = "yui-log-filtergrp";
-
-            // Append el at the end so IE 5.5 can set "type" attribute
-            // and THEN set checked property
-            var chkSource = document.createElement("input");
-            chkSource.id = "yui-log-filter" + sSource + this._sName;
-            chkSource.className = "yui-log-filter" + sSource;
-            chkSource.type = "checkbox";
-            chkSource.source = sSource;
-            chkSource = elFilter.appendChild(chkSource);
-            chkSource.checked = true;
-
-            // Subscribe to the click event
-            YAHOO.util.Event.addListener(chkSource,'click',oSelf._onCheckSource,oSelf);
-
-            // Create and class the text label
-            var lblSource = elFilter.appendChild(document.createElement("label"));
-            lblSource.htmlFor = chkSource.id;
-            lblSource.className = sSource;
-            lblSource.innerHTML = sSource;
-            
-            this._filterCheckboxes[sSource] = chkSource;
-        }
-    },
-
-    /**
-     * Reprints all log messages in the stack through filters.
-     *
-     * @method _filterLogs
-     * @private
-     */
-    _filterLogs : function() {
-        // Reprint stack with new filters
-        if (this._elConsole !== null) {
-            this.clearConsole();
-            this._printToConsole(YAHOO.widget.Logger.getStack());
-        }
-    },
-
-    /**
-     * Sends buffer of log messages to output and clears buffer.
-     *
-     * @method _printBuffer
-     * @private
-     */
-    _printBuffer : function() {
-        this._timeout = null;
-
-        if(this._elConsole !== null) {
-            var thresholdMax = this.thresholdMax;
-            thresholdMax = (thresholdMax && !isNaN(thresholdMax)) ? thresholdMax : 500;
-            if(this._consoleMsgCount < thresholdMax) {
-                var entries = [];
-                for (var i=0; i<this._buffer.length; i++) {
-                    entries[i] = this._buffer[i];
-                }
-                this._buffer = [];
-                this._printToConsole(entries);
-            }
-            else {
-                this._filterLogs();
-            }
-            
-            if(!this.newestOnTop) {
-                this._elConsole.scrollTop = this._elConsole.scrollHeight;
-            }
-        }
-    },
-
-    /**
-     * Cycles through an array of log messages, and outputs each one to the console
-     * if its category has not been filtered out.
-     *
-     * @method _printToConsole
-     * @param aEntries {Object[]} Array of LogMsg objects to output to console.
-     * @private
-     */
-    _printToConsole : function(aEntries) {
-        // Manage the number of messages displayed in the console
-        var entriesLen         = aEntries.length,
-            df                 = document.createDocumentFragment(),
-            msgHTML            = [],
-            thresholdMin       = this.thresholdMin,
-            sourceFiltersLen   = this._sourceFilters.length,
-            categoryFiltersLen = this._categoryFilters.length,
-            entriesStartIndex,
-            i, j, msg, before;
-
-        if(isNaN(thresholdMin) || (thresholdMin > this.thresholdMax)) {
-            thresholdMin = 0;
-        }
-        entriesStartIndex = (entriesLen > thresholdMin) ? (entriesLen - thresholdMin) : 0;
-        
-        // Iterate through all log entries 
-        for(i=entriesStartIndex; i<entriesLen; i++) {
-            // Print only the ones that filter through
-            var okToPrint = false;
-            var okToFilterCats = false;
-
-            // Get log message details
-            var entry = aEntries[i];
-            var source = entry.source;
-            var category = entry.category;
-
-            for(j=0; j<sourceFiltersLen; j++) {
-                if(source == this._sourceFilters[j]) {
-                    okToFilterCats = true;
-                    break;
-                }
-            }
-            if(okToFilterCats) {
-                for(j=0; j<categoryFiltersLen; j++) {
-                    if(category == this._categoryFilters[j]) {
-                        okToPrint = true;
-                        break;
-                    }
-                }
-            }
-            if(okToPrint) {
-                msg = this.formatMsg(entry);
-                if (typeof msg === 'string') {
-                    msgHTML[msgHTML.length] = msg;
-                } else {
-                    df.insertBefore(msg, this.newestOnTop ?
-                        df.firstChild || null : null);
-                }
-                this._consoleMsgCount++;
-                this._lastTime = entry.time.getTime();
-            }
-        }
-
-        if (msgHTML.length) {
-            msgHTML.splice(0,0,this._elConsole.innerHTML);
-            this._elConsole.innerHTML = this.newestOnTop ?
-                                            msgHTML.reverse().join('') :
-                                            msgHTML.join('');
-        } else if (df.firstChild) {
-            this._elConsole.insertBefore(df, this.newestOnTop ?
-                        this._elConsole.firstChild || null : null);
-        }
-    },
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Private event handlers
-//
-/////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Handles Logger's categoryCreateEvent.
-     *
-     * @method _onCategoryCreate
-     * @param sType {String} The event.
-     * @param aArgs {Object[]} Data passed from event firer.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onCategoryCreate : function(sType, aArgs, oSelf) {
-        var category = aArgs[0];
-        
-        // Add category to the internal array of filters
-        oSelf._categoryFilters.push(category);
-
-        if(oSelf._elFt) {
-            oSelf._createCategoryCheckbox(category);
-        }
-    },
-
-    /**
-     * Handles Logger's sourceCreateEvent.
-     *
-     * @method _onSourceCreate
-     * @param sType {String} The event.
-     * @param aArgs {Object[]} Data passed from event firer.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onSourceCreate : function(sType, aArgs, oSelf) {
-        var source = aArgs[0];
-        
-        // Add source to the internal array of filters
-        oSelf._sourceFilters.push(source);
-
-        if(oSelf._elFt) {
-            oSelf._createSourceCheckbox(source);
-        }
-    },
-
-    /**
-     * Handles check events on the category filter checkboxes.
-     *
-     * @method _onCheckCategory
-     * @param v {HTMLEvent} The click event.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onCheckCategory : function(v, oSelf) {
-        var category = this.category;
-        if(!this.checked) {
-            oSelf.hideCategory(category);
-        }
-        else {
-            oSelf.showCategory(category);
-        }
-    },
-
-    /**
-     * Handles check events on the category filter checkboxes.
-     *
-     * @method _onCheckSource
-     * @param v {HTMLEvent} The click event.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onCheckSource : function(v, oSelf) {
-        var source = this.source;
-        if(!this.checked) {
-            oSelf.hideSource(source);
-        }
-        else {
-            oSelf.showSource(source);
-        }
-    },
-
-    /**
-     * Handles click events on the collapse button.
-     *
-     * @method _onClickCollapseBtn
-     * @param v {HTMLEvent} The click event.
-     * @param oSelf {Object} The LogReader instance
-     * @private
-     */
-    _onClickCollapseBtn : function(v, oSelf) {
-        if(!oSelf.isCollapsed) {
-            oSelf.collapse();
-        }
-        else {
-            oSelf.expand();
-        }
-    },
-
-    /**
-     * Handles click events on the pause button.
-     *
-     * @method _onClickPauseBtn
-     * @param v {HTMLEvent} The click event.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onClickPauseBtn : function(v, oSelf) {
-        if(!oSelf.isPaused) {
-            oSelf.pause();
-        }
-        else {
-            oSelf.resume();
-        }
-    },
-
-    /**
-     * Handles click events on the clear button.
-     *
-     * @method _onClickClearBtn
-     * @param v {HTMLEvent} The click event.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onClickClearBtn : function(v, oSelf) {
-        oSelf.clearConsole();
-    },
-
-    /**
-     * Handles Logger's newLogEvent.
-     *
-     * @method _onNewLog
-     * @param sType {String} The event.
-     * @param aArgs {Object[]} Data passed from event firer.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onNewLog : function(sType, aArgs, oSelf) {
-        var logEntry = aArgs[0];
-        oSelf._buffer.push(logEntry);
-
-        if (oSelf.logReaderEnabled === true && oSelf._timeout === null) {
-            oSelf._timeout = setTimeout(function(){oSelf._printBuffer();}, oSelf.outputBuffer);
-        }
-    },
-
-    /**
-     * Handles Logger's resetEvent.
-     *
-     * @method _onReset
-     * @param sType {String} The event.
-     * @param aArgs {Object[]} Data passed from event firer.
-     * @param oSelf {Object} The LogReader instance.
-     * @private
-     */
-    _onReset : function(sType, aArgs, oSelf) {
-        oSelf._filterLogs();
-    }
-};
-
- /**
- * The Logger widget provides a simple way to read or write log messages in
- * JavaScript code. Integration with the YUI Library's debug builds allow
- * implementers to access under-the-hood events, errors, and debugging messages.
- * Output may be read through a LogReader console and/or output to a browser
- * console.
- *
- * @module logger
- * @requires yahoo, event, dom
- * @optional dragdrop
- * @namespace YAHOO.widget
- * @title Logger Widget
- */
-
-/****************************************************************************/
-/****************************************************************************/
-/****************************************************************************/
-
-// Define once
-if(!YAHOO.widget.Logger) {
-    /**
-     * The singleton Logger class provides core log management functionality. Saves
-     * logs written through the global YAHOO.log function or written by a LogWriter
-     * instance. Provides access to logs for reading by a LogReader instance or
-     * native browser console such as the Firebug extension to Firefox or Safari's
-     * JavaScript console through integration with the console.log() method.
-     *
-     * @class Logger
-     * @static
-     */
-    YAHOO.widget.Logger = {
-        // Initialize properties
-        loggerEnabled: true,
-        _browserConsoleEnabled: false,
-        categories: ["info","warn","error","time","window"],
-        sources: ["global"],
-        _stack: [], // holds all log msgs
-        maxStackEntries: 2500,
-        _startTime: new Date().getTime(), // static start timestamp
-        _lastTime: null, // timestamp of last logged message
-        _windowErrorsHandled: false,
-        _origOnWindowError: null
-    };
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public properties
-    //
-    /////////////////////////////////////////////////////////////////////////////
-    /**
-     * True if Logger is enabled, false otherwise.
-     *
-     * @property loggerEnabled
-     * @type Boolean
-     * @static
-     * @default true
-     */
-
-    /**
-     * Array of categories.
-     *
-     * @property categories
-     * @type String[]
-     * @static
-     * @default ["info","warn","error","time","window"]
-     */
-
-    /**
-     * Array of sources.
-     *
-     * @property sources
-     * @type String[]
-     * @static
-     * @default ["global"]
-     */
-
-    /**
-     * Upper limit on size of internal stack.
-     *
-     * @property maxStackEntries
-     * @type Number
-     * @static
-     * @default 2500
-     */
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private properties
-    //
-    /////////////////////////////////////////////////////////////////////////////
-    /**
-     * Internal property to track whether output to browser console is enabled.
-     *
-     * @property _browserConsoleEnabled
-     * @type Boolean
-     * @static
-     * @default false
-     * @private
-     */
-
-    /**
-     * Array to hold all log messages.
-     *
-     * @property _stack
-     * @type Array
-     * @static
-     * @private
-     */
-    /**
-     * Static timestamp of Logger initialization.
-     *
-     * @property _startTime
-     * @type Date
-     * @static
-     * @private
-     */
-    /**
-     * Timestamp of last logged message.
-     *
-     * @property _lastTime
-     * @type Date
-     * @static
-     * @private
-     */
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-    /**
-     * Saves a log message to the stack and fires newLogEvent. If the log message is
-     * assigned to an unknown category, creates a new category. If the log message is
-     * from an unknown source, creates a new source.  If browser console is enabled,
-     * outputs the log message to browser console.
-     *
-     * @method log
-     * @param sMsg {String} The log message.
-     * @param sCategory {String} Category of log message, or null.
-     * @param sSource {String} Source of LogWriter, or null if global.
-     */
-    YAHOO.widget.Logger.log = function(sMsg, sCategory, sSource) {
-        if(this.loggerEnabled) {
-            if(!sCategory) {
-                sCategory = "info"; // default category
-            }
-            else {
-                sCategory = sCategory.toLocaleLowerCase();
-                if(this._isNewCategory(sCategory)) {
-                    this._createNewCategory(sCategory);
-                }
-            }
-            var sClass = "global"; // default source
-            var sDetail = null;
-            if(sSource) {
-                var spaceIndex = sSource.indexOf(" ");
-                if(spaceIndex > 0) {
-                    // Substring until first space
-                    sClass = sSource.substring(0,spaceIndex);
-                    // The rest of the source
-                    sDetail = sSource.substring(spaceIndex,sSource.length);
-                }
-                else {
-                    sClass = sSource;
-                }
-                if(this._isNewSource(sClass)) {
-                    this._createNewSource(sClass);
-                }
-            }
-
-            var timestamp = new Date();
-            var logEntry = new YAHOO.widget.LogMsg({
-                msg: sMsg,
-                time: timestamp,
-                category: sCategory,
-                source: sClass,
-                sourceDetail: sDetail
-            });
-
-            var stack = this._stack;
-            var maxStackEntries = this.maxStackEntries;
-            if(maxStackEntries && !isNaN(maxStackEntries) &&
-                (stack.length >= maxStackEntries)) {
-                stack.shift();
-            }
-            stack.push(logEntry);
-            this.newLogEvent.fire(logEntry);
-
-            if(this._browserConsoleEnabled) {
-                this._printToBrowserConsole(logEntry);
-            }
-            return true;
-        }
-        else {
-            return false;
-        }
-    };
-
-    /**
-     * Resets internal stack and startTime, enables Logger, and fires logResetEvent.
-     *
-     * @method reset
-     */
-    YAHOO.widget.Logger.reset = function() {
-        this._stack = [];
-        this._startTime = new Date().getTime();
-        this.loggerEnabled = true;
-        this.log("Logger reset");
-        this.logResetEvent.fire();
-    };
-
-    /**
-     * Public accessor to internal stack of log message objects.
-     *
-     * @method getStack
-     * @return {Object[]} Array of log message objects.
-     */
-    YAHOO.widget.Logger.getStack = function() {
-        return this._stack;
-    };
-
-    /**
-     * Public accessor to internal start time.
-     *
-     * @method getStartTime
-     * @return {Date} Internal date of when Logger singleton was initialized.
-     */
-    YAHOO.widget.Logger.getStartTime = function() {
-        return this._startTime;
-    };
-
-    /**
-     * Disables output to the browser's global console.log() function, which is used
-     * by the Firebug extension to Firefox as well as Safari.
-     *
-     * @method disableBrowserConsole
-     */
-    YAHOO.widget.Logger.disableBrowserConsole = function() {
-        YAHOO.log("Logger output to the function console.log() has been disabled.");
-        this._browserConsoleEnabled = false;
-    };
-
-    /**
-     * Enables output to the browser's global console.log() function, which is used
-     * by the Firebug extension to Firefox as well as Safari.
-     *
-     * @method enableBrowserConsole
-     */
-    YAHOO.widget.Logger.enableBrowserConsole = function() {
-        this._browserConsoleEnabled = true;
-        YAHOO.log("Logger output to the function console.log() has been enabled.");
-    };
-
-    /**
-     * Surpresses native JavaScript errors and outputs to console. By default,
-     * Logger does not handle JavaScript window error events.
-     * NB: Not all browsers support the window.onerror event.
-     *
-     * @method handleWindowErrors
-     */
-    YAHOO.widget.Logger.handleWindowErrors = function() {
-        if(!YAHOO.widget.Logger._windowErrorsHandled) {
-            // Save any previously defined handler to call
-            if(window.error) {
-                YAHOO.widget.Logger._origOnWindowError = window.onerror;
-            }
-            window.onerror = YAHOO.widget.Logger._onWindowError;
-            YAHOO.widget.Logger._windowErrorsHandled = true;
-            YAHOO.log("Logger handling of window.onerror has been enabled.");
-        }
-        else {
-            YAHOO.log("Logger handling of window.onerror had already been enabled.");
-        }
-    };
-
-    /**
-     * Unsurpresses native JavaScript errors. By default,
-     * Logger does not handle JavaScript window error events.
-     * NB: Not all browsers support the window.onerror event.
-     *
-     * @method unhandleWindowErrors
-     */
-    YAHOO.widget.Logger.unhandleWindowErrors = function() {
-        if(YAHOO.widget.Logger._windowErrorsHandled) {
-            // Revert to any previously defined handler to call
-            if(YAHOO.widget.Logger._origOnWindowError) {
-                window.onerror = YAHOO.widget.Logger._origOnWindowError;
-                YAHOO.widget.Logger._origOnWindowError = null;
-            }
-            else {
-                window.onerror = null;
-            }
-            YAHOO.widget.Logger._windowErrorsHandled = false;
-            YAHOO.log("Logger handling of window.onerror has been disabled.");
-        }
-        else {
-            YAHOO.log("Logger handling of window.onerror had already been disabled.");
-        }
-    };
-    
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Public events
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-     /**
-     * Fired when a new category has been created.
-     *
-     * @event categoryCreateEvent
-     * @param sCategory {String} Category name.
-     */
-    YAHOO.widget.Logger.categoryCreateEvent =
-        new YAHOO.util.CustomEvent("categoryCreate", this, true);
-
-     /**
-     * Fired when a new source has been named.
-     *
-     * @event sourceCreateEvent
-     * @param sSource {String} Source name.
-     */
-    YAHOO.widget.Logger.sourceCreateEvent =
-        new YAHOO.util.CustomEvent("sourceCreate", this, true);
-
-     /**
-     * Fired when a new log message has been created.
-     *
-     * @event newLogEvent
-     * @param sMsg {String} Log message.
-     */
-    YAHOO.widget.Logger.newLogEvent = new YAHOO.util.CustomEvent("newLog", this, true);
-
-    /**
-     * Fired when the Logger has been reset has been created.
-     *
-     * @event logResetEvent
-     */
-    YAHOO.widget.Logger.logResetEvent = new YAHOO.util.CustomEvent("logReset", this, true);
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private methods
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Creates a new category of log messages and fires categoryCreateEvent.
-     *
-     * @method _createNewCategory
-     * @param sCategory {String} Category name.
-     * @private
-     */
-    YAHOO.widget.Logger._createNewCategory = function(sCategory) {
-        this.categories.push(sCategory);
-        this.categoryCreateEvent.fire(sCategory);
-    };
-
-    /**
-     * Checks to see if a category has already been created.
-     *
-     * @method _isNewCategory
-     * @param sCategory {String} Category name.
-     * @return {Boolean} Returns true if category is unknown, else returns false.
-     * @private
-     */
-    YAHOO.widget.Logger._isNewCategory = function(sCategory) {
-        for(var i=0; i < this.categories.length; i++) {
-            if(sCategory == this.categories[i]) {
-                return false;
-            }
-        }
-        return true;
-    };
-
-    /**
-     * Creates a new source of log messages and fires sourceCreateEvent.
-     *
-     * @method _createNewSource
-     * @param sSource {String} Source name.
-     * @private
-     */
-    YAHOO.widget.Logger._createNewSource = function(sSource) {
-        this.sources.push(sSource);
-        this.sourceCreateEvent.fire(sSource);
-    };
-
-    /**
-     * Checks to see if a source already exists.
-     *
-     * @method _isNewSource
-     * @param sSource {String} Source name.
-     * @return {Boolean} Returns true if source is unknown, else returns false.
-     * @private
-     */
-    YAHOO.widget.Logger._isNewSource = function(sSource) {
-        if(sSource) {
-            for(var i=0; i < this.sources.length; i++) {
-                if(sSource == this.sources[i]) {
-                    return false;
-                }
-            }
-            return true;
-        }
-    };
-
-    /**
-     * Outputs a log message to global console.log() function.
-     *
-     * @method _printToBrowserConsole
-     * @param oEntry {Object} Log entry object.
-     * @private
-     */
-    YAHOO.widget.Logger._printToBrowserConsole = function(oEntry) {
-        if(window.console && console.log) {
-            var category = oEntry.category;
-            var label = oEntry.category.substring(0,4).toUpperCase();
-
-            var time = oEntry.time;
-            var localTime;
-            if (time.toLocaleTimeString) {
-                localTime  = time.toLocaleTimeString();
-            }
-            else {
-                localTime = time.toString();
-            }
-
-            var msecs = time.getTime();
-            var elapsedTime = (YAHOO.widget.Logger._lastTime) ?
-                (msecs - YAHOO.widget.Logger._lastTime) : 0;
-            YAHOO.widget.Logger._lastTime = msecs;
-
-            var output =
-                localTime + " (" +
-                elapsedTime + "ms): " +
-                oEntry.source + ": ";
-
-            // for bug 1987607
-            if (YAHOO.env.ua.webkit) {
-                output += oEntry.msg;
-            }
-
-            console.log(output, oEntry.msg);
-        }
-    };
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // Private event handlers
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    /**
-     * Handles logging of messages due to window error events.
-     *
-     * @method _onWindowError
-     * @param sMsg {String} The error message.
-     * @param sUrl {String} URL of the error.
-     * @param sLine {String} Line number of the error.
-     * @private
-     */
-    YAHOO.widget.Logger._onWindowError = function(sMsg,sUrl,sLine) {
-        // Logger is not in scope of this event handler
-        try {
-            YAHOO.widget.Logger.log(sMsg+' ('+sUrl+', line '+sLine+')', "window");
-            if(YAHOO.widget.Logger._origOnWindowError) {
-                YAHOO.widget.Logger._origOnWindowError();
-            }
-        }
-        catch(e) {
-            return false;
-        }
-    };
-
-    /////////////////////////////////////////////////////////////////////////////
-    //
-    // First log
-    //
-    /////////////////////////////////////////////////////////////////////////////
-
-    YAHOO.widget.Logger.log("Logger initialized");
-}
-
-
-YAHOO.register("logger", YAHOO.widget.Logger, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/README b/eclipse.org-common/yui/2.6.0/build/menu/README
deleted file mode 100644
index 71748f1..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/README
+++ /dev/null
@@ -1,1130 +0,0 @@
-*** version 2.6.0 ***
-
-Fixed the following bugs:
--------------------------
-
-+ Submenus no longer appear in the top-left corner of the viewport before moving into position when 
-  initially made visible.
-
-+ Submenus are no longer re-shown when the mouse moves from a submenu back to its parent MenuItem.
-
-+ A Menu's shadow is now rendered at the correct dimensions consistently in Internet Explorer.
-
-+ Menus no longer trigger a JavaScript error if the "constraintoviewport" configuration property 
-  is set to "true", but the "context" configuration property is not set.
-
-
-Added the following features:
------------------------------
-
-+ Added a "keepopen" configuration property to YAHOO.widget.Menu that, when set to "true", will 
-  result in a Menu remaining open when clicked.
-
-+ Popup Menus now automatically focus themselves when made visible, and when hidden, restore focus 
-  to the element in the DOM that had focus prior to them being made visible.
-
-+ Added a new "submenutoggleregion" configuration property to YAHOO.widget.MenuBar.  When set to 
-  "true", only clicking a specific region of a MenuBarItem will toggle the display of a submenu.  
-  The width of the toggle region is defined 
-  by YAHOO.widget.MenuBar.prototype.SUBMENU_TOGGLE_REGION_WIDTH.
-
-
-
-*** version 2.6.0 Preview 1 ***
-
-Fixed the following bugs:
--------------------------
-
-+ Setting the "submenualignment" configuration property for a MenuBar instance will no longer 
-  result in the value being automatically propagated across all submenus.
-
-+ Setting a MenuItem instance's "disabled" configuration property to "true" inside the scope of 
-  a "click" event listener registered via the "onclick" configuration property will no longer 
-  prevent the "click" event of its parent Menu instance from firing.
-  
-+ MenuItem instances of submenus that open to the left of their parent MenuItem will now 
-  highlight in response to the "mouseover" event in Firefox 2.
-  
-+ The Menu library no longer logs errors when strict error reporting is enabled in FireFox.
-
-+ Submenus will no longer hide in IE 7 when moving the mouse from an item in a MenuBar to 
-  its corresponding submenu.
-
-+ MenuItem instances placed in groups are now properly removed and destroyed when the 
-  "clearContent" method of their parent Menu instance is called.
-
-+ The "monitorresize" configuration property now propagates to submenus.
-  
-+ Updated the "maxheight" configuration property so that it will only scroll the body of a Menu if 
-  its content is composed of MenuItem instances.
-
-+ Updated the implementation of Menu's "constraintoviewport" configuration property so that 
-  submenus will automatically scroll and reposition themselves to remain inside the boundaries of 
-  the viewport regardless of the default value supplied to the "submenualignment" 
-  configuration property.
-
-
-Added the following features:
------------------------------
-
-+ Added a new "preventcontextoverlap" configuration property that is used to manage whether or not 
-  a submenu should overlap its parent MenuItem when the "constraintoviewport" configuration 
-  property is set to "true".
-
-+ Added a new "shadow" configuration property.  The "shadow" configuration property should be 
-  set via the constructor and cannot be changed.  Previously a Menu's shadow was created via the 
-  public "onRender" method.  This method has been removed.
-
-
-Changes:
---------
-
-+ The "url" configuration property for MenuItem instances with a submenu will now be set to 
-  "#[submenu_id]" if the "url" property is not otherwise specified by the user. 
-
-+ Dynamically positioned submenus now have a default z-index of 1, rather than one greater than 
-  the z-index of their parent Menu.
-
-
-*** version 2.5.2 ***
-
-Fixed the following bugs:
--------------------------
-
-+ Mousing over a Menu instance will no longer result in the JavaScript error "oItem has 
-  no properties"
-
-+ When using a custom skin, a Menu instance's width will no longer continue to increase in IE each 
-  time it is displayed.
-
-+ Menu no longer blocks the display of the browser's default context menu when right clicking on a 
-  MenuItem instance in Firefox 2 for Windows or Firefox 3.
-
-+ Fixed the behavior of the "clicktohide" configuration property so that the property properly 
-  cascades to all submenus when a Menu instance's "position" configuration property is set to 
-  "dynamic".
-
-+ Rolled back a change introduced in 2.5.0 that modified the behavior of submenus so that they are 
-  no longer hidden then re-shown when the mouse is moving from a visible submenu back to its parent 
-  MenuItem instance.  This change in 2.5.0 introduced a problem where multiple submenus of a menu
-  could end up being displayed at once.  Currently targeting to restore the behavior introduced in 
-  2.5.0 in 2.6.0.
-
-
-
-*** version 2.5.1 ***
-
-Fixed the following bugs:
--------------------------
-
-+ The "url" configuration property of YAHOO.widget.MenuItem now returns the exact value of the 
-  "href" attribute of its anchor element in Internet Explorer. 
-
-+ Clicking on an item in a Menu will no longer cause Firefox to scroll to the top of the window.
-
-+ Improved Menu's viewport boundary awareness.
-
-
-
-*** version 2.5.0 ***
-
-Fixed the following bugs:
--------------------------
-
-+ Corrected the paths to all images in the original Menu CSS file so that checked MenuItems now
-  render correctly.
-
-+ Clicking on a disabled MenuItem instance will no longer cause the browser to navigate to 
-  the top of the current page.
-
-+ Removed the use of the "yui-skin-sam" class name from the Menu core CSS file.
-
-+ Scrolling Menus now render correctly in IE 6 and IE 7.
-
-+ Submenus are no longer hidden then re-shown when the mouse is moving from a visible submenu back
-  to its parent MenuItem instance.
-
-
-
-*** version 2.4.1 ***
-
-+ No changes
-
-
-
-*** version 2.4.0 ***
-
-
-Fixed the following bugs:
--------------------------
-
-+ The "context" property of YAHOO.widget.Menu works better in IE 6.
-
-+ Immediate submenus of a YAHOO.widget.MenuBar instance will now re-align 
-  themselves to their parent YAHOO.widget.MenuBarItem instance to remain inside 
-  the boundaries of the browser viewport when the "constraintoviewport" 
-  property is set to "true."
-
-+ A submenu will now appear in the correct position when its parent menu 
-  is scrolled.
-
-+ YAHOO.widget.MenuItem instances will no longer increase in height when their
-  submenu is made visible.
-
-+ Removed superfluous white space between YAHOO.widget.MenuItem instances in 
-  IE 6 (Strict Mode and Quirks Mode) and IE 7 (Quirks Mode).
-  
-+ Statically positioned YAHOO.widget.MenuBar instances will no longer be 
-  rendered in the wrong position when the Container CSS file is included in 
-  the page.
-
-+ Usage of the "maxheight" configuration property will no longer change the 
-  position of a YAHOO.widget.Menu instance's shadow element 
-  (<DIV class="yui-menu-shadow">).  The shadow element will alway be the last 
-  child node of a menu's root element.
-
-+ YAHOO.widget.MenuBar instances with their "position" configuration property 
-  set to "dynamic" are no longer rendered with scrollbars in Firefox for 
-  Mac OS X.
-		
-
-
-Added the following features:
------------------------------
-
-+ Added a new "minscrollheight" configuration property to YAHOO.widget.Menu
-  that defines the minimum threshold for the "maxheight" configuration property.
-
-+ Added a new "scrollincrement" configuration property to YAHOO.widget.Menu 
-  which can be used to increase or decrease the scroll speed of scolled menu.
-
-+ Hidden YAHOO.widget.Menu instances are now positioned off screen to 
-  prevent them from introducing scrollbars on the browser viewport.  The 
-  default off-screen position is -10000 for both the x and y coordinates and is
-  defined in a new constant: "YAHOO.widget.Menu.prototype.OFF_SCREEN_POSITION".
-  The method responsible for moving a menu off the screen is 
-  "YAHOO.widget.Menu.prototype.positionOffScreen" which is called in response
-  to the firing of the "hide" event.
-    
-
-Changes:
---------
-
-+ Setting "iframe" configuration property on a YAHOO.widget.MenuBar instance
-  will now result in the property cascading down to all submenus.
-
-+ The "position" configuration property no longer automatically enables the 
-  iframe shim for YAHOO.widget.Menu instances.  Previously, setting the 
-  "position" configuration property to "static" would automatically 
-  set the "iframe" configuration property to "false," and setting "position" to
-  "dynamic" would set the "iframe" configuration property to "true" for IE 6.
-
-+ YAHOO.widget.Menu instances no longer have their widths set automatically 
-  as they are rendered.
-
-+ Modified the DOM structure for a YAHOO.widget.MenuItem instance so that the 
-  submenu indicator node (<EM class="submenuindicator" />) and checked 
-  indicator node (<EM class="checkedindicator" />) that were previously direct 
-  descendants of the <A/> node are no longer present.  The updated DOM
-  structure of a YAHOO.widget.MenuItem instance is now:
-
-    <LI class="yuimenuitem">
-    
-        <A class="yuimenuitemlabel">
-    
-            Text Label
-    
-            <EM class="helptext"> Help Text </EM>   (Optional)
-    
-        </A>
-    
-        <DIV class="yuimenu"> ... </DIV> (Optional submenu node)
-    
-    </LI>
-
-
-  With the removal of the submenu indicator and checked indicator nodes,
-  the following YAHOO.widget.MenuItem constants, used to define the inner 
-  text of these nodes, have been removed:
-
-    - YAHOO.widget.MenuItem.prototype.COLLAPSED_SUBMENU_INDICATOR_TEXT
-    - YAHOO.widget.MenuItem.prototype.EXPANDED_SUBMENU_INDICATOR_TEXT
-    - YAHOO.widget.MenuItem.prototype.DISABLED_SUBMENU_INDICATOR_TEXT
-    - YAHOO.widget.MenuItem.prototype.CHECKED_TEXT
-    - YAHOO.widget.MenuItem.prototype.DISABLED_CHECKED_TEXT
-    
-  The "submenuIndicator" property of YAHOO.widget.MenuItem has also 
-  been removed.
-
-
-+ Modified the CSS class names used to represent the state of 
-  YAHOO.widget.MenuItem and YAHOO.widget.MenuBarItem instances.  Previous to 
-  2.4.0 the following CSS class names were applied only to the <A> element 
-  representing the text label for YAHOO.widget.MenuItem and 
-  YAHOO.widget.MenuBarItem instances:
-
-    + hashelptext
-    + checked
-    + hassubmenu
-    + selected
-    + disabled
-
-
-  To provide more flexibility and facilitate easier styling of state, a set of
-  new CSS class names have been created that are applied to both the root 
-  <LI> node and its child <A> node for YAHOO.widget.MenuItem and 
-  YAHOO.widget.MenuBarItem instances:
-  
-
-    New YAHOO.widget.MenuItem CSS classes:
-    --------------------------------------
-    
-    The following are applied to the <LI> element:
-    
-    .yuimenuitem-hassubmenu
-    .yuimenuitem-checked
-    .yuimenuitem-selected
-    .yuimenuitem-disabled
-    
-    .yuimenuitem-checked-selected
-    .yuimenuitem-checked-disabled
-    
-    .yuimenuitem-hassubmenu-selected
-    .yuimenuitem-hassubmenu-disabled
-    
-
-    The following are applied to the <A> element:
-
-    .yuimenuitemlabel-hassubmenu
-    .yuimenuitemlabel-checked
-    .yuimenuitemlabel-selected
-    .yuimenuitemlabel-disabled
-    
-    .yuimenuitemlabel-checked-selected
-    .yuimenuitemlabel-checked-disabled
-    
-    .yuimenuitemlabel-hassubmenu-selected
-    .yuimenuitemlabel-hassubmenu-disabled
-
-
-    New YAHOO.widget.MenuBarItem CSS classes:
-    -----------------------------------------
-    
-    The following are applied to the <LI> element:
-    
-    .yuimenubaritem-hassubmenu
-    .yuimenubaritem-selected
-    .yuimenubaritem-disabled
-    
-    .yuimenubaritem-hassubmenu-selected
-    .yuimenubaritem-hassubmenu-disabled
-    
-
-    The following are applied to the <A> element:
-    
-    .yuimenubaritemlabel-hassubmenu
-    .yuimenubaritemlabel-selected
-    .yuimenubaritemlabel-disabled
-    
-    .yuimenubaritemlabel-hassubmenu-selected
-    .yuimenubaritemlabel-hassubmenu-disabled
-
-
-+ Deprecated the YAHOO.widget.ContextMenuItem class and replaced it 
-  with YAHOO.widget.MenuItem.
-
-+ All submenus of a YAHOO.widget.ContextMenu instance are now of type
-  YAHOO.widget.Menu.
-
-+ Updated the behavior of the "clicktohide" configuration property of 
-  YAHOO.widget.Menu so that it behaves as documented: controls whether or not 
-  clicking outside a menu results in the menu hiding.
-
-
-
-*** version 2.3.1 ***
-
-Fixed the following bugs:
--------------------------
-
-+ Including the Container CSS along with Menu CSS on a page will no longer 
-  result in statically positioned Menu instances rendering as hidden.
-
-+ The focus outline for MenuItem instances no longer sticks in Opera.
-
-+ Clicking MenuItem instances without a value for the "url" configuration 
-  property will no longer result in the MenuItem losing focus.
-  
-+ Improved compatibility with Menu CSS and YUI Base CSS.
-
-
-*** version 2.3 ***
-
-Fixed the following bugs:
--------------------------
-
-+ Pressing the Esc key when an item in a MenuBar has focus will now result
-  in the item blurring in IE.
-
-+ Clicking a YAHOO.widget.MenuItem instance with a "url" configuration property 
-  set will now result in the hiding of its parent YAHOO.widget.Menu instance.
-
-+ Creating an empty YAHOO.widget.Menu instance from existing markup will no 
-  longer result in a JavaScript error.
-  
-+ The "constraintoviewport" configuration property now correctly keeps a 
-  YAHOO.widget.Menu instance inside the boundaries of the browser viewport.
-
-+ Tuned scrolling behavior so that when the user has scrolled to the bottom of 
-  a YAHOO.widget.Menu instance and starts pressing the up arrow key, the 
-  contents begin scrolling only when the next item to be selected is out of 
-  view of the scrollable area.
-
-+ Modified "removeMenu" method of YAHOO.widget.MenuManager so that it removes
-  the specified YAHOO.widget.Menu instance from the collection of visible menus.
- 
-+ Calling the "destroy" method of a visible YAHOO.widget.Menu instance now
-  purges it from the YAHOO.widget.Manager's collection of visible Menus.
- 
-+ YAHOO.widget.Menu instances now blur before hiding.
-
-+ The debug version of YAHOO.widget.Menu now correctly logs as "Menu" rather 
-  than "Overlay" in IE.
-  
-+ Setting a YAHOO.widget.MenuItem instance's "checked" configuration property 
-  to "true" two or more times followed by "false" will no longer result in some 
-  of the DOM elements used to render the checkmark icon will no longer remain 
-  in the item's DOM.
-
-+ It is now possible to click anywhere on a YAHOO.widget.MenuItem instance 
-  and have it navigate to the URL specified by its "url" configuration property 
-  - even if the MenuItem has a value specified for its "target"
-  configuation property.
-
-+ The "toString" method of YAHOO.widget.MenuItem now returns the instance's id.
-
-+ Setting the YAHOO.widget.MenuItem.prototype.COLLAPSED_SUBMENU_INDICATOR_TEXT 
-  constant to empty string no longer results in JavaScript error.
-
-+ YAHOO.widget.MenuBar instances behave the same regardless of the value
-  of their "position" configuration property.
-
-+ It is now possible to ctr or shift-click on YAHOO.widget.MenuItem instances 
-  without the browser automatically redirecting to the URL specified by the 
-  MenuItem's "url" configuration property.
-
-
-Added the following features:
------------------------------
-
-+ Prototype of all classes (Menu, ContextMenu, MenuBar, MenuItem, 
-  ContextMenuItem, MenuBarItem) are augmented with YAHOO.util.EventProvider.
-
-+ Added the following methods to YAHOO.widget.MenuManager:
-
-    - "getMenuItem"
-    - "getMenuItemGroup"
-
-+ Added the following methods to YAHOO.widget.Menu:
-
-    - "subscribe" 
-    - "getSubmenus"
-    - "onRender"
-
-+ Added a "disabled" configuration property to YAHOO.widget.Menu.
-
-+ Added the constant "CSS_LABEL_CLASS_NAME" to YAHOO.widget.MenuItem that 
-  represents the name of the CSS class applied to the <A/> node that is the 
-  first child of its root <LI/> node.
-
-+ Added the constant "CSS_LABEL_CLASS_NAME" to YAHOO.widget.MenuBarItem that 
-  represents the name of the CSS class applied to the <A/> node that is the 
-  first child of its root <LI/> node.
-
-+ Added ability for YAHOO.widget.Menu instances to have shadow:
-
-    - The shadow for a Menu is implemented by appending a new element as the 
-      last child of its root <DIV/> element:
-
-        <DIV class="yuimenu">
-            <DIV class="bd">
-                <UL>
-                    <LI class="yuimenuitem"/>
-                    <LI class="yuimenuitem"/>
-                    <LI class="yuimenuitem"/>
-                </UL>
-            </DIV>
-            <DIV class="yui-menu-shadow"/>
-        </DIV>
-
-    - The code that creates the shadow element resides inside the Menu's 
-      public "onRender" prototype method.  To disable the creation of a Menu's 
-      shadow override the prototype of the "onRender" method:
-      
-      YAHOO.widget.Menu.prototype.onRender = function () { };
-      
-    - The actual creation of the shadow element is deferred until the Menu is 
-      made visible for the first time.
-      
-    - The shadow element is only created for Menu instances whose
-      "position" configuration property is set to "dynamic."
-
-    - A Menu's shadow element can be styled via two CSS classes:
-
-        + "yui-menu-shadow"  - Applied to the shadow element when it is created.
-        + "yui-menu-shadow-visible" - Applied to the shadow element when the 
-        Menu is visible; it is removed when hidden.
-
-    - The shadow element is only styled when using the new "Sam" skin, for
-      the previous default skin its "display" property is set to "none."
-
-
-Changes:
---------
-
-+ Deprecated "browser" property of YAHOO.widget.MenuItem in favor 
-  of the YAHOO.env.ua.
-
-+ Modified the DOM structure for a YAHOO.widget.MenuItem instance so that its
-  root <LI/> node only has only two direct descendants: 
-  
-    - The <A/> node for its text label
-    - The <DIV/> node for its submenu
-  
-  The submenu indicator node (<EM class="submenuindicator" />), checked 
-  indicator node (<EM class="checkedindicator" />), and help text node
-  (<EM class="helptext" />) that were previously direct descendants of a
-  YAHOO.widget.MenuItem instance's root <LI/> are now direct descendants of 
-  its <A/> node:
-
-    <LI class="yuimenuitem || yuimenubaritem">
-
-        <A class="yuimenuitemlabel || yuimenubaritemlabel">
-
-            Text Label
-
-            <EM class="helptext"> Help Text </EM>   (Optional)
-            <EM class="checkedindicator"> ... </EM> (Optional)
-            <EM class="submenuindicator"> ... </EM> (Optional)
-
-        </A>
-
-        <DIV class="yuimenu"> ... </DIV> (Optional submenu node)
-
-    </LI>
-
-+ As a result of the DOM structure changes for YAHOO.widget.MenuItem, the
-  following CSS class are now only applied to a YAHOO.widget.MenuItem 
-  instance's <A/> node:
-
-    - "selected"
-    - "disabled"
-    - "checked"
-    - "hashelptext"
-    - "hassubmenu"
-
-+ The "text" configuration property of YAHOO.widget.MenuItem now accepts a 
-  string of HTML (previously only accepted plain text).
-
-+ The "emphasis" and "strongemphasis" configuration properties of 
-  YAHOO.widget.MenuItem are no longer interpreted when building from 
-  existing markup.
-
-+ All YAHOO.widget.MenuItem instances built from markup must have an <A> node 
-  as the first child of its root <LI> node.
-
-+ When building YAHOO.widget.MenuItem instances from existing markup, the value 
-  of the "text" property is set to the innerHTML of the menu item's <A> node.
-
-+ Deprecated the following YAHOO.widget.MenuItem configuration properties:
-
-    - "strongemphasis"
-    - "emphasis"
-    - "helptext"
-
-
-Known Issues
-------------
-
-+ ContextMenu works differently in Opera
-  --------------------------------------
-  Opera doesn't support the "contextmenu" DOM event used to trigger the display
-  of YAHOO.widget.ContextMenu instances.  As a result, clicking the right mouse 
-  button in Opera will not result in the display of a ContextMenu instance 
-  as it would in IE, Gecko, and Safari.  To work around this shortcoming, users 
-  will need to do the following to trigger the display of 
-  YAHOO.widget.ContextMenu instances in Opera:
-
-    - Opera for Windows: Hold down the control key while clicking with the 
-      left mouse button.
-
-    - Opera for Mac OS X: Hold down the command/Apple key while clicking with  
-      the left mouse button.
-
-+ Focus highlight sticks in Opera 
-  -------------------------------
-  In Opera focus is designated via the application of a background color 
-  to an element's text node.  When a Menu instance has focus in Opera, the 
-  focus highlight can remain on a MenuItem instance even after it has blurred.
-
-+ ContextMenu instances cannot be invoked by clicking on Java Applets
-  -------------------------------------------------------------------
-  When a Java Applet is specified as the "trigger" element for a ContextMenu 
-  instance it will not display when the Applet is clicked.  This is not a 
-  bug in the ContextMenu class, but rather a result of DOM events not bubbling 
-  up from inside Java Applets.  For more information on this issue see:
-  http://tech.groups.yahoo.com/group/ydn-javascript/message/12128
-
-+ Flash Movies appear on top of Menu instances
-  --------------------------------------------
-  Flash movies can appear on top of Menu instances in IE and Gecko-based
-  browsers.  To fix this problem, set the "wmode" of the Flash movie to either
-  "transparent" or "opaque" as indicated below: 
-
-  Via the <object> tag:
-
-    <object>
-        <param name="wmode" value="opaque">
-    </object>
-
-    <object>
-        <param name="wmode" value="transparent"> 
-    </object>
-
-  Via the <embed> tag:
-    
-    <embed wmode="transparent"> ... </embed>
-    <embed wmode="opaque"> ... </embed>
-
-    ** For more information see 
-       http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15523
-
-+ Menu instances not rendered at correct z-index in IE
-  -------------------------------------------------------
-  In IE, when a Menu instance is rendered inside a relatively positioned 
-  element the z-index of the Menu instance is now relative to its 
-  relatively positioned parent element.  This is not a bug in the 
-  Menu class, but rather a bug in IE where relatively positioned elements 
-  establish a new stacking context for their child nodes.  To avoid this 
-  bug is recommend that all Menu instances that need to be able to float
-  above any other element in the document be made direct descendants of the 
-  <body> element.
-  
-  ** For more information see 
-   http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html
-
-+ Elements with scrollbars poke through Menu instances floating above them
-  ------------------------------------------------------------------------
-  There is a bug in Gecko-based browsers for Mac OS X where an element's 
-  scrollbars will poke through absolutely positioned elements floating above
-  them.  To fix this problem the "overflow" property of a Menu instance's 
-  shadow element is toggled between "hidden" and "auto" (through the application 
-  and removal of the "hide-scrollbars" and "show-scrollbars" CSS classes) as its 
-  "visibility" configuration property is toggled between "false" and "true."
-  Therefore, the shadow element acts like a shim, blocking scrollbars from
-  poking through the Menu.
-
-  PLEASE NOTE:  
-
-  1) The "hide-scrollbars" and "show-scrollbars" CSS classes classes are 
-     applied only for Gecko on Mac OS X and are added/removed to/from the 
-     Menu's root HTML element (DIV) via the "hideMacGeckoScrollbars" and 
-     "showMacGeckoScrollbars" methods of YAHOO.widget.Overlay.  
-  
-  2) This fix is only applied when using the "Sam" skin; the CSS for the 
-     original Menu skin does not contain any rules for rendering the 
-     shadow element.  
-  
-  3) Once the fix is applied the bug will reappear if the window loses focus.  
-     This can be fixed via Javascript by hiding and showing the Menu instance 
-     when the window receives focus:
-
-        YAHOO.util.Event.on(window, "focus", function () {
-        
-            oMyMenu.hide();
-            oMyMenu.show();
-        
-        });
-
-    ** For more information see 
-       https://bugzilla.mozilla.org/show_bug.cgi?id=187435
-
-
-*** version 2.2.2 ***
-
-Fixed the following bugs:
--------------------------
-
-+ "toString" method of MenuItem, MenuBarItem and ContextMenuItem classes will
-  no longer throw a JavaScript error when using the debug version 
-  of the Event utility.
-
-+ "toString" method of Menu, MenuBar and ContextMenu classes will
-  no longer attempt to output the instance's id if it is not available.
-
-+ Logger statements output by debug version of MenuManager are now properly 
-  categorized as "MenuManager"
-
-
-
-*** version 2.2.1 ***
-
-Added the following features:
------------------------------
-
-+ Added the following methods to YAHOO.widget.Menu:
-  - "focus"
-  - "blur"
-  - "hasFocus"
-
-+ Added the following Custom Events to YAHOO.widget.Menu:
-    + "focusEvent"
-    + "blurEvent"
-
-+ Added the following methods to YAHOO.widget.MenuManager:
-  - "getFocusedMenuItem"
-  - "getFocusedMenu"
-
-+ Added "hasFocus" method to YAHOO.widget.MenuItem
-
-
-Fixed the following bugs:
--------------------------
-
-+ Menu instances no longer set focus to themselves by default when made 
-  visible.  Menus only receive focus in response to the following events: 
-    - The user mouses down on a MenuItem instance
-    - The user tabs into a MenuItem instance
-
-+ Application of the "maxheight" configuration property is now correctly 
-  deferred until the "render" event fires when Menu instance is being 
-  lazy loaded.
-
-+ The "maxheight" configuration property can now be set multiple times without 
-  a Menu instance restoring itself to its original default height.
-
-+ The "maxheight" configuration property can now be set on hidden Menu 
-  instances that use lazy loading. 
-
-+ Menu instances with a "width" configuration property set will now render 
-  at the specified width rather than shrink wrapping to their contents.
-
-+ Menu item help text no longer wraps to the next line in Opera 9.
-
-+ Immediate submenus of a Menubar instance will no longer shift their position 
-  to try and remain inside the confines of the browser's viewport.
-
-+ Lazy loaded ContextMenu instances now appear in the correct position when 
-  they are made visible for the first time.
-
-+ MenuBar instances no longer throw JavaScript errors when navigating items with
-  submenus containing no active items using the keyboard.
-
-+ Replaced use of native "hasOwnProperty" method 
-  with YAHOO.lang.hasOwnProperty.
-
-+ Rendered Menu instances will now update their width when items are added 
-  or removed.
-
-+ Mousing over a Menu instance in an IE window that does not have focus will 
-  no longer cause the window to receive focus.
-
-
-Changes:
---------
-
-+ "activeItem" property of YAHOO.widget.Menu now returns a reference to the 
-  Menu's currently selected item.
-
-+ Added a "visible" CSS class that is applied to visible Menu instances.
-
-+ Refactored the Menu family to improve performance, especially when working 
-  with a large number of instances in IE6.
-
-
-
-*** version 2.2.0 ***
-
-Added the following features:
------------------------------
-
-* Added two new methods to YAHOO.widget.Menu:
-
-    * "getItems" - Returns a flat array of the items in a menu.
-
-    * "clearContent" - Removes all of the content from the menu, including the 
-      menu items, group titles, header and footer.
-
-
-* Added three new configuration attributes to YAHOO.widget.Menu:
-
-    * "submenuhidedelay" - Number indicating the time (in milliseconds) that 
-      should expire before a submenu is hidden when the user mouses out of a 
-      menu item heading in the direction of a submenu. The value must be 
-      greater than or equal to the value specified for the "showdelay" 
-      configuration property.
-
-    * "maxheight" - Defines the maximum height (in pixels) for a menu before 
-      the contents of the body are scrolled. 
-
-    * "classname" - CSS class to be applied to the menu's root <div> element. 
-      The specified class(es) are appended in addition to the default class as 
-      specified by the menu's CSS_CLASS_NAME constant.
-
-
-* Added new constants to YAHOO.widget.MenuItem:
-
-    * COLLAPSED_SUBMENU_INDICATOR_TEXT - String representing the text for the 
-      <em> element used for the submenu arrow indicator.
-
-    * EXPANDED_SUBMENU_INDICATOR_TEXT - String representing the text for the 
-      submenu arrow indicator element (<em>) when the submenu is visible.
-
-    * DISABLED_SUBMENU_INDICATOR_ALT_TEXT - String representing the text for 
-      the submenu arrow indicator element (<em>) when the menu item is disabled.
-
-    * CHECKED_TEXT - String representing the text to be used for the checked 
-      indicator element (<em>).
-
-    * DISABLED_CHECKED_TEXT - String representing the text to be used for the 
-      checked indicator element (<em>) when the menu item is disabled.
-
-
-* Added two new configuration attributes to YAHOO.widget.MenuItem:
-
-    * "onclick" - Object literal representing the code to be executed when the 
-      button is clicked. Format:
-
-        {
-            fn: Function, // The handler to call when the event fires.
-            obj: Object, // An object to pass back to the handler.
-            scope: Object // The object to use for the scope of the handler.
-        }
-    
-    * "classname" - CSS class to be applied to the menu item's root <li> 
-      element. The specified class(es) are appended in addition to the default 
-      class as specified by the menu item's CSS_CLASS_NAME constant.
-
-
-* Added an "id" property to YAHOO.widget.MenuItem that represents the id of
-  the menu item's root <li> node.  Although not a configuration attribute, this
-  property should be set via the object literal of configuration attributes 
-  passed as the second argument to the constructor.  If no value is 
-  specified, then one will be generated using the "generateId" method of the 
-  Dom utility (YAHOO.widget.Dom).
-
-* Added a "trigger context menu event" 
-  (YAHOO.widget.ContextMenu.triggerContextMenuEvent) that fires when the DOM 
-  "contextmenu" event ("mousedown" for Opera) is fired by one of the elemeents
-  defined as a YAHOO.widget.ContextMenu instance's trigger.
-
-* Added a "cancel" method to YAHOO.widget.ContextMenu that can be used to 
-  cancel the display of a YAHOO.widget.ContextMen instance.  This method 
-  should be called within the scope of a "context menu" event handler for 
-  one of the context menu's triggers 
-  (YAHOO.widget.ContextMenu.triggerContextMenuEvent).
-
-
-Fixed the following bugs:
--------------------------
-
-* Users can now move diagonally from a menu item to its corresponding submenu 
-  without the submenu hiding immediately.
-
-* "destroy" method of YAHOO.widget.Menu now unsubscribes from the "text resize"  
-  event (YAHOO.widget.Module.textResizeEvent).
-
-* Browser progress bar no longer flashes when hovering over checked menu items 
-  or menu items with submenus.
-
-* Menu item submenu indicator image no longer jumps to the next line in 
-  quirks mode.
-
-* Mouse events no longer fire in Firefox if a YAHOO.widget.Menu instance is 
-  moved by script into a stationary mouse pointer.
-
-* Modified "toString" method of YAHOO.widget.ContextMenuItem to return the 
-  correct class name, as it was reporting as YAHOO.widget.MenuBarItem.
-
-
-Changes:
---------
-
-* Default value for the "showdelay" configuration attribute is now 250
-
-* Modified code so that all Menu images are added via CSS background images.  
-  As a result, the following constants and properties have been deprecated:
-
-    * YAHOO.widget.MenuItem.SUBMENU_INDICATOR_IMAGE_PATH
-    * YAHOO.widget.MenuItem.SELECTED_SUBMENU_INDICATOR_IMAGE_PATH
-    * YAHOO.widget.MenuItem.DISABLED_SUBMENU_INDICATOR_IMAGE_PATH
-    * YAHOO.widget.MenuItem.COLLAPSED_SUBMENU_INDICATOR_ALT_TEXT
-    * YAHOO.widget.MenuItem.EXPANDED_SUBMENU_INDICATOR_ALT_TEXT
-    * YAHOO.widget.MenuItem.DISABLED_SUBMENU_INDICATOR_ALT_TEXT
-    * YAHOO.widget.MenuItem.CHECKED_IMAGE_PATH
-    * YAHOO.widget.MenuItem.SELECTED_CHECKED_IMAGE_PATH
-    * YAHOO.widget.MenuItem.DISABLED_CHECKED_IMAGE_PATH
-    * YAHOO.widget.MenuItem.CHECKED_IMAGE_ALT_TEXT
-    * YAHOO.widget.MenuItem.DISABLED_CHECKED_IMAGE_ALT_TEXT
-    * YAHOO.widget.MenuItem.IMG_ROOT
-    * YAHOO.widget.MenuItem.IMG_ROOT_SSL
-    * YAHOO.widget.MenuItem.imageRoot
-    * YAHOO.widget.MenuItem.isSecure
-
-
-
-*** version 0.12.2 ***
-
-* No changes
-
-
-
-*** version 0.12.1 ***
-
-Fixed the following bugs:
--------------------------
-
-* Placed the call to the DOM "focus" method used by the MenuItem class inside 
-  a zero-second timeout to resolve a race condition between menu positioning 
-  and focusing of a menu item that resulted in the browser viewport 
-  scrolling unnecessarily.
-
-* Switched to JSMin for JavaScript compression to resolve issues with the 
-  minified version.  
-
-* Disabled menu item instances will no longer display a submenu if the item is 
-  clicked or moused over. 
-
-* Can no longer select more than one item in a menu if using the keyboard and 
-  mouse simultaneously.
-
-* Calling the "destory" method on a menu will now unregister all of the menu's 
-  submenus from the MenuManager.  
-
-
-
-*** version 0.12 ***
-
-Added the following features:
------------------------------
-
-* Added the YAHOO.widget.MenuManager singleton class.
-
-* Added two new methods to YAHOO.widget.Menu:
-
-    * "addItems" - Adds an array of items to a menu.
-
-    * "getRoot" - Returns the root menu in a menu hierarchy.
-
-* Added two new events to YAHOO.widget.Menu:
-
-    * "itemAddedEvent" - Fires when an item is added to a menu.
-
-    * "itemRemovedEvent" - Fires when an item is removed from a menu.
-
-* Added two new properties to YAHOO.widget.Menu:
-
-    * "itemData" - Array of items to be added to the menu.
-
-    * "lazyLoad" - Boolean indicating if the menu's "lazy load" feature 
-      is enabled.
-
-* Added new configuration properties to YAHOO.widget.Menu:
-
-    * "hidedelay" - Hides the menu after the specified number of milliseconds.  
-
-    * "showdelay" - Shows the menu after the specified number of milliseconds.  
-
-    * "container" - The containing element the menu should be rendered into.  
-
-    * "clicktohide" - Boolean indicating if the menu will automatically be 
-      hidden if the user clicks outside of it.
-
-    * "autosubmenudisplay" - Boolean indicating if submenus are automatically 
-      made visible when the user mouses over the menu's items.
-
-* Added a "toString" method to YAHOO.widget.MenuItem, YAHOO.widget.MenuBarItem 
-  and YAHOO.widget.ContextMenuItem that returns the class name followed by the 
-  value of the item's "text" configuration property.
-
-
-Fixed the following bugs:
--------------------------
-
-* Setting a YAHOO.widget.ContextMenu instance's "trigger" configuration 
-  property will remove all previous triggers before setting up the new ones.
-
-* "destroy" method of YAHOO.widget.ContextMenu cleans up all DOM event handlers.
-
-* Clicking on a menu item with a submenu no longer hides/collapses the 
-  entire menu.
-
-* Clicking an item's submenu indicator image no longer collapses the 
-  entire menu.
-  
-  
-Changes:
---------
-
-* Deprecated the YAHOO.widget.MenuModule and YAHOO.widget.MenuModuleItem 
-  classes.  The Base classes are now YAHOO.widget.Menu and 
-  YAHOO.widget.MenuItem.
-
-* "addItem" and "insertItem" methods of YAHOO.widget.Menu now accept an 
-  object literal representing YAHOO.widget.MenuItem configuration properties.
-
-* "clearActiveItem" now takes an argument: flag indicating if the Menu 
-  instance's active item should be blurred.
-
-* Switched the default value of the "visible" configuration property for 
-  YAHOO.widget.Menu to "false."
-
-* Switched the default value of the "constraintoviewport" configuration 
-  property for YAHOO.widget.Menu to "true."
-
-* Overloaded the "submenu" configuration property for YAHOO.widget.MenuItem
-  so that it now can accept any of the following:
-
-    * YAHOO.widget.Menu instance
-    * Object literal representation of a menu
-    * Element id
-    * Element reference
-
-* "hide" and "show" methods of statically positioned menus now toggle the their
-  element's "display" style property between "block" and "none."
-
-
-
-*** version 0.10.0 ***
-
-* Initial release
-
-* Known issues:
-
-      * Some Firefox extensions disable the ability for JavaScript to prevent  
-        the display of the browser's default context menu.  These extensions
-        can cause the YUI ContextMenu to stop working.  If you encounter this 
-        problem, you can reset the context menu preference in Firefox back to 
-        the default by making sure the "Disable or replace context menus" 
-        preference is checked:
-
-            Mac Firefox 1.0: 
-            -------------------
-            Preferences > Web Features > 
-                Advanced... > Disable or replace context menus
-
-            Mac Firefox 1.5
-            -------------------
-            Preferences > Context > 
-                Advanced... > Disable or replace context menus
-
-            Windows Firefox 1.0
-            -------------------
-            Tools > Options > Web Features > 
-                Advanced... > Disable or replace context menus
-
-            Windows Firefox 1.5
-            -------------------
-            Tools > Options > Context > 
-                Advanced... > Disable or replace context menus
-
-
-
-*** version 0.11.3 ***
-
-Added the following features:
------------------------------
-
-* Added a "target" configuration property to the MenuModuleItem object that
-  allows the user to specify the target of an item's anchor element.  Items 
-  that make use of the "target" configuration property will require the user 
-  to click exactly on the item's anchor element to navigate to the specified 
-  URL.
-
-* Items without a "url" property set will automatically hide their parent 
-  menu instance(s) when clicked.
-
-
-Fixed the following bugs:
--------------------------
-
-* Items in a submenu should now navigate to their specified URL when clicked.
-
-* Removed MenuBar's use of "overflow:hidden."  This fixes an issue in Firefox
-  1.5 in which submenus of a Menubar instance cannot overlay other absolutely 
-  positioned elements on the page.
-
-* Submenus of a Menubar instance will now automatically have their iframe shim
-  enabled in IE<7.
-
-* Statically positioned Menubar and Menu instances will now render with the 
-  correct position and dimensions in Safari.
-
-* MenuModuleItem's "focus" method now checks to make sure that an item's 
-  "display" style property is not "none" before trying to set focus to its
-  anchor element.
-  
-* A ContextMenu instance will now hide all other ContextMenu instances before
-  displaying itself.
-
-* Removed the dead space in front of an item's submenu indicator image in IE.  
-  This space was causing an item's submenu to flicker when the user hovered 
-  over it.
-
-
-Changes:
---------
-
-* Moved the DOM event handlers for every menu from the root DIV node of each 
-  instance to the document object.  This change reduces the number of DOM event 
-  handlers used by Menu to eight, improving the cleanup time required by the 
-  Event utility.
-
-                
-
-*** version 0.11.0 ***
-
-Added the following features:
------------------------------
-* Overloaded the "addItem" and "insertItem" methods of MenuModule to accept a 
-  string or a MenuModuleItem instance
-
-* Added the ability to define a MenuItem instance as being "checked"
-
-
-Fixed the following bugs:
--------------------------
-* Changing the path for the submenu indicator image of one MenuModuleItem 
-  subclass will no longer affect other subclasses
-
-* MenuItem instances built from existing markup without anchor tags will no 
-  longer trigger a JavaScript error when clicked
-
-* Modified the implementation of the "imageRoot" property for the 
-  MenuModuleItem class so that it is set to a secure/non-secure path when the
-  object is instantiated
-
-* Menu instances now resize in response to changes to the browser's font size
-
-* Modified the propagation of the MenuModule class's "submenualignment" 
-  configuration property so that it only applies to instances of the same type
-
-* Adjusted the specificity of the style rule that controls the position of a 
-  MenuItem instance's submenu indicator image to prevent it from wrapping in IE
-
-* Specified a width and height for submenu indicator images in the Menu 
-  stylesheet to ensure that Menu instances are always rendered at the correct 
-  width
-
-* Clicking a MenuItem instance will no longer trigger two HTTP GET requests
-
-* Users can now control or shift-click on MenuItem links
-
-
-Changes:
---------
-* In the Menu stylesheet (menu.css), switched from using "first" class to
-  "first-of-type" class
-
-* Changed case of MenuModuleItem class's "subMenuIndicator" property 
-  to "submenuIndicator"
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menu-core.css b/eclipse.org-common/yui/2.6.0/build/menu/assets/menu-core.css
deleted file mode 100644
index 99faa26..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menu-core.css
+++ /dev/null
@@ -1,238 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* Menu & MenuBar styles */
-
-.yuimenu {
-
-    top: -999em;
-    left: -999em;
-
-}
-
-.yuimenubar {
-
-    position: static;
-
-}
-
-.yuimenu .yuimenu,
-.yuimenubar .yuimenu {
-
-    position: absolute;
-
-}
-
-.yuimenubar li, 
-.yuimenu li {
-
-    list-style-type: none;    
-
-}
-
-.yuimenubar ul, 
-.yuimenu ul,
-.yuimenubar li, 
-.yuimenu li,
-.yuimenu h6,
-.yuimenubar h6 { 
-
-    margin: 0;
-    padding: 0;
-
-}
-
-.yuimenuitemlabel,
-.yuimenubaritemlabel {
-
-    text-align: left;
-    white-space: nowrap;
-
-}
-
-
-/* 
-    The following style rule trigger the "hasLayout" property in 
-    IE (http://msdn2.microsoft.com/en-us/library/ms533776.aspx) for a
-    MenuBar instance's <ul> element, allowing both to clear their floated 
-    child <li> elements.
-*/
-
-.yuimenubar ul {
-
-    *zoom: 1;
-
-}
-
-
-/* 
-    Remove the "hasLayout" trigger for submenus of MenuBar instances as it 
-    is unnecessary. 
-*/
-
-.yuimenubar .yuimenu ul {
-
-    *zoom: normal;
-
-}
-
-/*
-    The following style rule allows a MenuBar instance's <ul> element to clear
-    its floated <li> elements in Firefox, Safari and and Opera.
-*/
-
-.yuimenubar>.bd>ul:after {
-
-    content: ".";
-    display: block;
-    clear: both;
-    visibility: hidden;
-    height: 0;
-    line-height: 0;
-
-}
-
-.yuimenubaritem {
-
-    float: left;
-
-}
-
-.yuimenubaritemlabel,
-.yuimenuitemlabel {
-
-    display: block;
-
-}
-
-.yuimenuitemlabel .helptext {
-
-    font-style: normal;
-    display: block;
-    
-    /*
-        The value for the left margin controls how much the help text is
-        offset from the text of the menu item.  This value will need to 
-        be customized depending on the longest text label of a menu item.
-    */
-    
-    margin: -1em 0 0 10em;
-    
-}
-
-/*
-    PLEASE NOTE: The <div> element used for a menu's shadow is appended 
-    to its root element via JavaScript once it has been rendered.  The 
-    code that creates the shadow lives in the menu's public "onRender" 
-    event handler that is a prototype method of YAHOO.widget.Menu.  
-    Implementers wishing to remove a menu's shadow or add any other markup
-    required for a given skin for menu should override the "onRender" method.
-*/
-
-.yui-menu-shadow {
-
-    position: absolute;
-    visibility: hidden;
-    z-index: -1;
-
-}
-
-.yui-menu-shadow-visible {
-
-    top: 2px;
-    right: -3px;
-    left: -3px;
-    bottom: -3px;
-    visibility: visible;
-
-}
-
-
-/*
-
-There are two known issues with YAHOO.widget.Overlay (the superclass class of 
-Menu) that manifest in Gecko-based browsers on Mac OS X:
-
-    1) Elements with scrollbars will poke through Overlay instances floating 
-       above them.
-    
-    2) An Overlay's scrollbars and the scrollbars of its child nodes remain  
-       visible when the Overlay is hidden.
-
-To fix these bugs in Menu (a subclass of YAHOO.widget.Overlay):
-
-    1) The "overflow" property of a Menu instance's shadow element and child 
-       nodes is toggled between "hidden" and "auto" (through the application  
-       and removal of the "hide-scrollbars" and "show-scrollbars" CSS classes)
-       as its "visibility" configuration property is toggled between 
-       "false" and "true."
-    
-    2) The "display" property of <select> elements that are child nodes of the 
-       Menu instance's root element is set to "none" when it is hidden.
-
-PLEASE NOTE:  
-  
-    1) The "hide-scrollbars" and "show-scrollbars" CSS classes classes are 
-       applied only for Gecko on Mac OS X and are added/removed to/from the 
-       Overlay's root HTML element (DIV) via the "hideMacGeckoScrollbars" and 
-       "showMacGeckoScrollbars" methods of YAHOO.widget.Overlay.
-    
-    2) There may be instances where the CSS for a web page or application 
-       contains style rules whose specificity override the rules implemented by 
-       the Menu CSS files to fix this bug.  In such cases, is necessary to 
-       leverage the provided "hide-scrollbars" and "show-scrollbars" classes to 
-       write custom style rules to guard against this bug.
-
-** For more information on this issue, see:
-
-   + https://bugzilla.mozilla.org/show_bug.cgi?id=187435
-   + SourceForge bug #1723530
-
-*/
-
-.hide-scrollbars * {
-
-	overflow: hidden;
-
-}
-
-.hide-scrollbars select {
-
-	display: none;
-
-}
-
-
-/*
-
-The following style rule (".yuimenu.show-scrollbars") overrides the 
-".show-scrollbars" rule defined in container-core.css which sets the 
-"overflow" property of a YAHOO.widget.Overlay instance's root HTML element to 
-"auto" when it is visible.  Without this override, a Menu would have scrollbars
-when one of its submenus is visible.
-
-*/
-
-.yuimenu.show-scrollbars,
-.yuimenubar.show-scrollbars {
-
-	overflow: visible; 
-
-}
-
-.yuimenu.hide-scrollbars .yui-menu-shadow,
-.yuimenubar.hide-scrollbars .yui-menu-shadow {
-
-    overflow: hidden;
-
-}
-
-.yuimenu.show-scrollbars .yui-menu-shadow,
-.yuimenubar.show-scrollbars .yui-menu-shadow {
-
-    overflow: auto;
-
-}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menu.css b/eclipse.org-common/yui/2.6.0/build/menu/assets/menu.css
deleted file mode 100644
index 6476afc..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menu.css
+++ /dev/null
@@ -1,497 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* Menu & MenuBar styles */
-
-.yuimenu {
-
-    top: -999em;
-    left: -999em;
-
-}
-
-.yuimenubar {
-
-    position: static;
-
-}
-
-.yuimenu .yuimenu,
-.yuimenubar .yuimenu {
-
-    position: absolute;
-
-}
-
-.yuimenubar li, 
-.yuimenu li {
-
-    list-style-type: none;    
-
-}
-
-.yuimenubar ul, 
-.yuimenu ul,
-.yuimenubar li, 
-.yuimenu li,
-.yuimenu h6,
-.yuimenubar h6 { 
-
-    margin: 0;
-    padding: 0;
-
-}
-
-.yuimenuitemlabel,
-.yuimenubaritemlabel {
-
-    text-align: left;
-    white-space: nowrap;
-
-}
-
-
-/* 
-    The following style rule trigger the "hasLayout" property in 
-    IE (http://msdn2.microsoft.com/en-us/library/ms533776.aspx) for a
-    MenuBar instance's <ul> element, allowing both to clear their floated 
-    child <li> elements.
-*/
-
-.yuimenubar ul {
-
-    *zoom: 1;
-
-}
-
-
-/* 
-    Remove the "hasLayout" trigger for submenus of MenuBar instances as it 
-    is unnecessary. 
-*/
-
-.yuimenubar .yuimenu ul {
-
-    *zoom: normal;
-
-}
-
-/*
-    The following style rule allows a MenuBar instance's <ul> element to clear
-    its floated <li> elements in Firefox, Safari and and Opera.
-*/
-
-.yuimenubar>.bd>ul:after {
-
-    content: ".";
-    display: block;
-    clear: both;
-    visibility: hidden;
-    height: 0;
-    line-height: 0;
-
-}
-
-.yuimenubaritem {
-
-    float: left;
-
-}
-
-.yuimenubaritemlabel,
-.yuimenuitemlabel {
-
-    display: block;
-
-}
-
-.yuimenuitemlabel .helptext {
-
-    font-style: normal;
-    display: block;
-    
-    /*
-        The value for the left margin controls how much the help text is
-        offset from the text of the menu item.  This value will need to 
-        be customized depending on the longest text label of a menu item.
-    */
-    
-    margin: -1em 0 0 10em;
-    
-}
-
-/*
-    PLEASE NOTE: The <div> element used for a menu's shadow is appended 
-    to its root element via JavaScript once it has been rendered.  The 
-    code that creates the shadow lives in the menu's public "onRender" 
-    event handler that is a prototype method of YAHOO.widget.Menu.  
-    Implementers wishing to remove a menu's shadow or add any other markup
-    required for a given skin for menu should override the "onRender" method.
-*/
-
-.yui-menu-shadow {
-
-    position: absolute;
-    visibility: hidden;
-    z-index: -1;
-
-}
-
-.yui-menu-shadow-visible {
-
-    top: 2px;
-    right: -3px;
-    left: -3px;
-    bottom: -3px;
-    visibility: visible;
-
-}
-
-
-/*
-
-There are two known issues with YAHOO.widget.Overlay (the superclass class of 
-Menu) that manifest in Gecko-based browsers on Mac OS X:
-
-    1) Elements with scrollbars will poke through Overlay instances floating 
-       above them.
-    
-    2) An Overlay's scrollbars and the scrollbars of its child nodes remain  
-       visible when the Overlay is hidden.
-
-To fix these bugs in Menu (a subclass of YAHOO.widget.Overlay):
-
-    1) The "overflow" property of a Menu instance's shadow element and child 
-       nodes is toggled between "hidden" and "auto" (through the application  
-       and removal of the "hide-scrollbars" and "show-scrollbars" CSS classes)
-       as its "visibility" configuration property is toggled between 
-       "false" and "true."
-    
-    2) The "display" property of <select> elements that are child nodes of the 
-       Menu instance's root element is set to "none" when it is hidden.
-
-PLEASE NOTE:  
-  
-    1) The "hide-scrollbars" and "show-scrollbars" CSS classes classes are 
-       applied only for Gecko on Mac OS X and are added/removed to/from the 
-       Overlay's root HTML element (DIV) via the "hideMacGeckoScrollbars" and 
-       "showMacGeckoScrollbars" methods of YAHOO.widget.Overlay.
-    
-    2) There may be instances where the CSS for a web page or application 
-       contains style rules whose specificity override the rules implemented by 
-       the Menu CSS files to fix this bug.  In such cases, is necessary to 
-       leverage the provided "hide-scrollbars" and "show-scrollbars" classes to 
-       write custom style rules to guard against this bug.
-
-** For more information on this issue, see:
-
-   + https://bugzilla.mozilla.org/show_bug.cgi?id=187435
-   + SourceForge bug #1723530
-
-*/
-
-.hide-scrollbars * {
-
-	overflow: hidden;
-
-}
-
-.hide-scrollbars select {
-
-	display: none;
-
-}
-
-
-/*
-
-The following style rule (".yuimenu.show-scrollbars") overrides the 
-".show-scrollbars" rule defined in container-core.css which sets the 
-"overflow" property of a YAHOO.widget.Overlay instance's root HTML element to 
-"auto" when it is visible.  Without this override, a Menu would have scrollbars
-when one of its submenus is visible.
-
-*/
-
-.yuimenu.show-scrollbars,
-.yuimenubar.show-scrollbars {
-
-	overflow: visible; 
-
-}
-
-.yuimenu.hide-scrollbars .yui-menu-shadow,
-.yuimenubar.hide-scrollbars .yui-menu-shadow {
-
-    overflow: hidden;
-
-}
-
-.yuimenu.show-scrollbars .yui-menu-shadow,
-.yuimenubar.show-scrollbars .yui-menu-shadow {
-
-    overflow: auto;
-
-}
-
-
-/* MenuBar style rules */
-
-.yuimenubar {
-
-    background-color: #f6f7ee;
-    
-}
-
-
-
-/* Menu style rules */
-
-.yuimenu {
-
-    background-color: #f6f7ee;
-    border: solid 1px #c4c4be;
-    padding: 1px;
-    
-}
-
-.yui-menu-shadow {
-
-    display: none;
-
-}
-
-.yuimenu ul {
-
-    border: solid 1px #c4c4be;
-    border-width: 1px 0 0 0;
-    padding: 10px 0;
-
-}
-
-.yuimenu .yui-menu-body-scrolled {
-
-    overflow: hidden;
-
-}
-
-
-/* Group titles */
-
-.yuimenu h6,
-.yuimenubar h6 { 
-
-    font-size: 100%;
-    font-weight: normal;
-    border: solid 1px #c4c4be;
-    color: #b9b9b9;    
-
-}
-
-.yuimenubar h6 {
-
-    float: left;
-    padding: 4px 12px;
-    border-width: 0 1px 0 0;
-
-}
-
-.yuimenubar .yuimenu h6 {
-
-    float: none;
-
-}
-
-.yuimenu h6 {
-
-    border-width: 1px 0 0 0;
-    padding: 5px 10px 0 10px;
-
-}
-
-.yuimenu ul.first-of-type, 
-.yuimenu ul.hastitle,
-.yuimenu h6.first-of-type {
-
-    border-width: 0;
-
-}
-
-
-
-/* Top and bottom scroll controls */
-
-.yuimenu .topscrollbar,
-.yuimenu .bottomscrollbar {
-
-    height: 16px;
-    background-position: center center;
-    background-repeat: no-repeat;
-
-}
-
-.yuimenu .topscrollbar {
-
-    background-image: url(menu_up_arrow.png);
-
-}
-
-.yuimenu .topscrollbar_disabled {
-
-    background-image: url(menu_up_arrow_disabled.png);
-
-}
-
-.yuimenu .bottomscrollbar {
-
-    background-image: url(menu_down_arrow.png);
-
-}
-
-.yuimenu .bottomscrollbar_disabled {
-
-    background-image: url(menu_down_arrow_disabled.png);
-
-}
-
-
-/* MenuItem and MenuBarItem styles */
-
-.yuimenuitem {
-
-    /*
-        For IE: Used to collapse superfluous white space between <li> elements
-        that is triggered by the "display" property of the <a> elements being
-        set to "block."
-    */
-
-    *border-bottom: solid 1px #f6f7ee;
-
-}
-
-.yuimenuitemlabel,
-.yuimenubaritemlabel {
-
-    font-size: 85%;
-    color: #000;
-    text-decoration: none;
-
-}
-
-.yuimenuitemlabel {
-
-    padding: 2px 24px;
-    
-}
-
-.yuimenubaritemlabel {
-
-    border-width: 0 0 0 1px;
-    border-style: solid;
-    border-color: #c4c4be;
-    padding: 4px 24px;
-
-}
-
-.yuimenubar li.first-of-type .yuimenubaritemlabel {
-
-    border-width: 0;
-
-}
-
-.yuimenubaritem-hassubmenu {
-
-    background: url(menubaritem_submenuindicator.png) right center no-repeat;
-
-}
-
-.yuimenuitem-hassubmenu {
-
-    background: url(menuitem_submenuindicator.png) right center no-repeat;
-
-}
-
-.yuimenuitem-checked {
-
-    background: url(menuitem_checkbox.png) left center no-repeat;
-
-}
-
-.yuimenuitemlabel .helptext {
-
-    margin-top: -1.1em;
-    *margin-top: -1.2em;  /* For IE*/
-    
-}
-
-
-
-/* MenuItem states */
-
-
-/* Selected MenuItem */
-
-.yuimenubaritem-selected,
-.yuimenuitem-selected {
-
-    background-color: #8c8ad0;
-
-}
-
-.yuimenubaritemlabel-selected,
-.yuimenuitemlabel-selected {
-
-    text-decoration: underline;
-    color: #fff;
-
-}
-
-.yuimenubaritem-hassubmenu-selected {
-
-    background-image: url(menubaritem_submenuindicator_selected.png);
-
-}
-
-.yuimenuitem-hassubmenu-selected {
-
-    background-image: url(menuitem_submenuindicator_selected.png);
-
-}
-
-.yuimenuitem-checked-selected {
-
-    background-image: url(menuitem_checkbox_selected.png);
-
-}
-
-
-/* Disabled MenuItem */
-
-.yuimenubaritemlabel-disabled,
-.yuimenuitemlabel-disabled {
-
-    cursor: default;
-    color: #b9b9b9;
-
-}
-
-.yuimenubaritem-hassubmenu-disabled {
-
-    background-image: url(menubaritem_submenuindicator_disabled.png);
-
-}
-
-.yuimenuitem-hassubmenu-disabled {
-
-    background-image: url(menuitem_submenuindicator_disabled.png);
-
-}
-
-.yuimenuitem-checked-disabled {
-
-    background-image: url(menuitem_checkbox_disabled.png);
-
-}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menu_down_arrow.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/menu_down_arrow.png
deleted file mode 100644
index 86d885d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menu_down_arrow.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menu_down_arrow_disabled.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/menu_down_arrow_disabled.png
deleted file mode 100644
index 98b3988..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menu_down_arrow_disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menu_up_arrow.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/menu_up_arrow.png
deleted file mode 100644
index d83a6be..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menu_up_arrow.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menu_up_arrow_disabled.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/menu_up_arrow_disabled.png
deleted file mode 100644
index 63b5638..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menu_up_arrow_disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menubaritem_submenuindicator.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/menubaritem_submenuindicator.png
deleted file mode 100644
index 921b267..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menubaritem_submenuindicator.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menubaritem_submenuindicator_disabled.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/menubaritem_submenuindicator_disabled.png
deleted file mode 100644
index 63e0c3c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menubaritem_submenuindicator_disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menubaritem_submenuindicator_selected.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/menubaritem_submenuindicator_selected.png
deleted file mode 100644
index 51078d7..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menubaritem_submenuindicator_selected.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_checkbox.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_checkbox.png
deleted file mode 100644
index 12e74dd..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_checkbox_disabled.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_checkbox_disabled.png
deleted file mode 100644
index 0063391..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_checkbox_disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_checkbox_selected.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_checkbox_selected.png
deleted file mode 100644
index 6f26c81..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_checkbox_selected.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_submenuindicator.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_submenuindicator.png
deleted file mode 100644
index ee69fe4..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_submenuindicator.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_submenuindicator_disabled.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_submenuindicator_disabled.png
deleted file mode 100644
index a0ee793..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_submenuindicator_disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_submenuindicator_selected.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_submenuindicator_selected.png
deleted file mode 100644
index a96c7b5..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/menuitem_submenuindicator_selected.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menu-skin.css b/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menu-skin.css
deleted file mode 100644
index b830f2c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menu-skin.css
+++ /dev/null
@@ -1,325 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* MenuBar style rules */
-
-.yui-skin-sam .yuimenubar {
-
-    font-size: 93%;  /* 12px */
-    line-height: 2;  /* ~24px */
-    *line-height: 1.9; /* For IE */
-    border: solid 1px #808080;
-    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
-
-}
-
-
-/* MenuBarItem style rules */
-
-.yui-skin-sam .yuimenubarnav .yuimenubaritem {
-
-    border-right: solid 1px #ccc;
-
-}
-
-.yui-skin-sam .yuimenubaritemlabel {
-
-    padding: 0 10px;
-    color: #000;
-    text-decoration: none;
-    cursor: default;
-    border-style: solid;
-    border-color: #808080;
-    border-width: 1px 0;
-    *position: relative; /*  Necessary to get negative margins in IE. */
-    margin: -1px 0;
-
-}
-
-.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel {
-
-    padding-right: 20px;
-
-    /*
-        Prevents the label from shifting left in IE when the 
-        ".yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-selected" 
-        rule us applied.
-    */
-
-    *display: inline-block;
-
-}
-
-.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu {
-
-    background: url(menubaritem_submenuindicator.png) right center no-repeat;
-
-}
-
-
-
-/* MenuBarItem states */
-
-/* Selected MenuBarItem */
-
-.yui-skin-sam .yuimenubaritem-selected {
-
-    background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1700px;
-
-}
-
-.yui-skin-sam .yuimenubaritemlabel-selected {
-
-    border-color: #7D98B8;
-
-}
-
-.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-selected {
-
-    border-left-width: 1px;
-    margin-left: -1px;
-    *left: -1px;    /* For IE */
-
-}
-
-
-/* Disabled  MenuBarItem */
-
-.yui-skin-sam .yuimenubaritemlabel-disabled {
-
-    cursor: default;
-    color: #A6A6A6;
-
-}
-
-.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu-disabled {
-
-    background-image: url(menubaritem_submenuindicator_disabled.png);
-
-}
-
-
-
-/* Menu style rules */
-
-.yui-skin-sam .yuimenu {
-
-    font-size: 93%;  /* 12px */
-    line-height: 1.5;  /* 18px */
-    *line-height: 1.45; /* For IE */
-
-}
-
-.yui-skin-sam .yuimenubar .yuimenu,
-.yui-skin-sam .yuimenu .yuimenu {
-
-    font-size: 100%;
-
-}
-
-.yui-skin-sam .yuimenu .bd {
-
-	/*
-		The following application of zoom:1 prevents first tier submenus of a MenuBar from hiding 
-		when the mouse is moving from an item in a MenuBar to a submenu in IE 7.
-	*/
-
-	*zoom: 1;
-	_zoom: normal;	/* Remove this rule for IE 6. */
-    border: solid 1px #808080;
-    background-color: #fff;
-    
-}
-
-.yui-skin-sam .yuimenu .yuimenu .bd {
-
-	*zoom: normal;
-
-}
-
-.yui-skin-sam .yuimenu ul {
-
-    padding: 3px 0;
-    border-width: 1px 0 0 0;
-    border-color: #ccc;
-    border-style: solid;
-
-}
-
-.yui-skin-sam .yuimenu ul.first-of-type {
-
-    border-width: 0;
-
-}
-
-
-/* Group titles */
-
-.yui-skin-sam .yuimenu h6 { 
-
-    font-weight: bold;
-    border-style: solid;
-    border-color: #ccc;
-    border-width: 1px 0 0 0;
-    color: #a4a4a4;    
-    padding: 3px 10px 0 10px;
-
-}
-
-.yui-skin-sam .yuimenu ul.hastitle,
-.yui-skin-sam .yuimenu h6.first-of-type {
-
-    border-width: 0;
-
-}
-
-
-/* Top and bottom scroll controls */
-
-.yui-skin-sam .yuimenu .yui-menu-body-scrolled {
-
-    border-color: #ccc #808080;
-    overflow: hidden;
-
-}
-
-.yui-skin-sam .yuimenu .topscrollbar,
-.yui-skin-sam .yuimenu .bottomscrollbar {
-
-    height: 16px;
-    border: solid 1px #808080;
-    background: #fff url(../../../../assets/skins/sam/sprite.png) no-repeat 0 0;
-
-}
-
-.yui-skin-sam .yuimenu .topscrollbar {
-
-    border-bottom-width: 0;
-    background-position: center -950px;
-
-}
-
-.yui-skin-sam .yuimenu .topscrollbar_disabled {
-
-    background-position: center -975px;
-
-}
-
-.yui-skin-sam .yuimenu .bottomscrollbar {
-
-    border-top-width: 0;
-    background-position: center -850px;
-
-}
-
-.yui-skin-sam .yuimenu .bottomscrollbar_disabled {
-
-    background-position: center -875px;
-
-}
-
-
-/* MenuItem style rules */
-
-.yui-skin-sam .yuimenuitem {
-
-    /*
-        For IE 7 Quirks and IE 6 Strict Mode and Quirks Mode:
-        Used to collapse superfluous white space between <li> elements
-        that is triggered by the "display" property of the <a> elements being
-        set to "block."
-    */
-
-    _border-bottom: solid 1px #fff;
-
-}
-
-.yui-skin-sam .yuimenuitemlabel {
-
-    padding: 0 20px;
-    color: #000;
-    text-decoration: none;
-    cursor: default;
-
-}
-
-.yui-skin-sam .yuimenuitemlabel .helptext {
-
-    margin-top: -1.5em;
-    *margin-top: -1.45em;  /* For IE*/
-    
-}
-
-.yui-skin-sam .yuimenuitem-hassubmenu {
-
-    background-image: url(menuitem_submenuindicator.png);
-    background-position: right center;
-    background-repeat: no-repeat;
-
-}
-
-.yui-skin-sam .yuimenuitem-checked {
-
-    background-image: url(menuitem_checkbox.png);
-    background-position: left center;
-    background-repeat: no-repeat;
-
-}
-
-
-/* Menu states */
-
-
-/* Visible Menu */
-
-.yui-skin-sam .yui-menu-shadow-visible {
-
-    background-color: #000;
-
-    /*
-        Opacity can be expensive, so defer the use of opacity until the 
-        menu is visible.
-    */
-
-    opacity: .12;
-    *filter: alpha(opacity=12);  /* For IE */
-
-}
-
-
-
-/* MenuItem states */
-
-
-/* Selected MenuItem */
-
-.yui-skin-sam .yuimenuitem-selected {
-
-    background-color: #B3D4FF;
-
-}
-
-
-/* Disabled MenuItem */
-
-.yui-skin-sam .yuimenuitemlabel-disabled {
-
-    cursor: default;
-    color: #A6A6A6;
-
-}
-
-.yui-skin-sam .yuimenuitem-hassubmenu-disabled {
-
-    background-image: url(menuitem_submenuindicator_disabled.png);
-
-}
-
-.yui-skin-sam .yuimenuitem-checked-disabled {
-
-    background-image: url(menuitem_checkbox_disabled.png);
-
-}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menu.css b/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menu.css
deleted file mode 100644
index f0915cd..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menu.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yuimenu{top:-999em;left:-999em;}.yuimenubar{position:static;}.yuimenu .yuimenu,.yuimenubar .yuimenu{position:absolute;}.yuimenubar li,.yuimenu li{list-style-type:none;}.yuimenubar ul,.yuimenu ul,.yuimenubar li,.yuimenu li,.yuimenu h6,.yuimenubar h6{margin:0;padding:0;}.yuimenuitemlabel,.yuimenubaritemlabel{text-align:left;white-space:nowrap;}.yuimenubar ul{*zoom:1;}.yuimenubar .yuimenu ul{*zoom:normal;}.yuimenubar>.bd>ul:after{content:".";display:block;clear:both;visibility:hidden;height:0;line-height:0;}.yuimenubaritem{float:left;}.yuimenubaritemlabel,.yuimenuitemlabel{display:block;}.yuimenuitemlabel .helptext{font-style:normal;display:block;margin:-1em 0 0 10em;}.yui-menu-shadow{position:absolute;visibility:hidden;z-index:-1;}.yui-menu-shadow-visible{top:2px;right:-3px;left:-3px;bottom:-3px;visibility:visible;}.hide-scrollbars *{overflow:hidden;}.hide-scrollbars select{display:none;}.yuimenu.show-scrollbars,.yuimenubar.show-scrollbars{overflow:visible;}.yuimenu.hide-scrollbars .yui-menu-shadow,.yuimenubar.hide-scrollbars .yui-menu-shadow{overflow:hidden;}.yuimenu.show-scrollbars .yui-menu-shadow,.yuimenubar.show-scrollbars .yui-menu-shadow{overflow:auto;}.yui-skin-sam .yuimenubar{font-size:93%;line-height:2;*line-height:1.9;border:solid 1px #808080;background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;}.yui-skin-sam .yuimenubarnav .yuimenubaritem{border-right:solid 1px #ccc;}.yui-skin-sam .yuimenubaritemlabel{padding:0 10px;color:#000;text-decoration:none;cursor:default;border-style:solid;border-color:#808080;border-width:1px 0;*position:relative;margin:-1px 0;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel{padding-right:20px;*display:inline-block;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu{background:url(menubaritem_submenuindicator.png) right center no-repeat;}.yui-skin-sam .yuimenubaritem-selected{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1700px;}.yui-skin-sam .yuimenubaritemlabel-selected{border-color:#7D98B8;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-selected{border-left-width:1px;margin-left:-1px;*left:-1px;}.yui-skin-sam .yuimenubaritemlabel-disabled{cursor:default;color:#A6A6A6;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu-disabled{background-image:url(menubaritem_submenuindicator_disabled.png);}.yui-skin-sam .yuimenu{font-size:93%;line-height:1.5;*line-height:1.45;}.yui-skin-sam .yuimenubar .yuimenu,.yui-skin-sam .yuimenu .yuimenu{font-size:100%;}.yui-skin-sam .yuimenu .bd{*zoom:1;_zoom:normal;border:solid 1px #808080;background-color:#fff;}.yui-skin-sam .yuimenu .yuimenu .bd{*zoom:normal;}.yui-skin-sam .yuimenu ul{padding:3px 0;border-width:1px 0 0 0;border-color:#ccc;border-style:solid;}.yui-skin-sam .yuimenu ul.first-of-type{border-width:0;}.yui-skin-sam .yuimenu h6{font-weight:bold;border-style:solid;border-color:#ccc;border-width:1px 0 0 0;color:#a4a4a4;padding:3px 10px 0 10px;}.yui-skin-sam .yuimenu ul.hastitle,.yui-skin-sam .yuimenu h6.first-of-type{border-width:0;}.yui-skin-sam .yuimenu .yui-menu-body-scrolled{border-color:#ccc #808080;overflow:hidden;}.yui-skin-sam .yuimenu .topscrollbar,.yui-skin-sam .yuimenu .bottomscrollbar{height:16px;border:solid 1px #808080;background:#fff url(../../../../assets/skins/sam/sprite.png) no-repeat 0 0;}.yui-skin-sam .yuimenu .topscrollbar{border-bottom-width:0;background-position:center -950px;}.yui-skin-sam .yuimenu .topscrollbar_disabled{background-position:center -975px;}.yui-skin-sam .yuimenu .bottomscrollbar{border-top-width:0;background-position:center -850px;}.yui-skin-sam .yuimenu .bottomscrollbar_disabled{background-position:center -875px;}.yui-skin-sam .yuimenuitem{_border-bottom:solid 1px #fff;}.yui-skin-sam .yuimenuitemlabel{padding:0 20px;color:#000;text-decoration:none;cursor:default;}.yui-skin-sam .yuimenuitemlabel .helptext{margin-top:-1.5em;*margin-top:-1.45em;}.yui-skin-sam .yuimenuitem-hassubmenu{background-image:url(menuitem_submenuindicator.png);background-position:right center;background-repeat:no-repeat;}.yui-skin-sam .yuimenuitem-checked{background-image:url(menuitem_checkbox.png);background-position:left center;background-repeat:no-repeat;}.yui-skin-sam .yui-menu-shadow-visible{background-color:#000;opacity:.12;*filter:alpha(opacity=12);}.yui-skin-sam .yuimenuitem-selected{background-color:#B3D4FF;}.yui-skin-sam .yuimenuitemlabel-disabled{cursor:default;color:#A6A6A6;}.yui-skin-sam .yuimenuitem-hassubmenu-disabled{background-image:url(menuitem_submenuindicator_disabled.png);}.yui-skin-sam .yuimenuitem-checked-disabled{background-image:url(menuitem_checkbox_disabled.png);}
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menubaritem_submenuindicator.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menubaritem_submenuindicator.png
deleted file mode 100644
index 030941c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menubaritem_submenuindicator.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menubaritem_submenuindicator_disabled.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menubaritem_submenuindicator_disabled.png
deleted file mode 100644
index 6c16122..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menubaritem_submenuindicator_disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menuitem_checkbox.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menuitem_checkbox.png
deleted file mode 100644
index 1437a4f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menuitem_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menuitem_checkbox_disabled.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menuitem_checkbox_disabled.png
deleted file mode 100644
index 5d5b998..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menuitem_checkbox_disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menuitem_submenuindicator.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menuitem_submenuindicator.png
deleted file mode 100644
index ea4f660..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menuitem_submenuindicator.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menuitem_submenuindicator_disabled.png b/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menuitem_submenuindicator_disabled.png
deleted file mode 100644
index 427d60a..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/assets/skins/sam/menuitem_submenuindicator_disabled.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/menu-debug.js b/eclipse.org-common/yui/2.6.0/build/menu/menu-debug.js
deleted file mode 100644
index da55e5e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/menu-debug.js
+++ /dev/null
@@ -1,9666 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-
-
-/**
-* @module menu
-* @description <p>The Menu family of components features a collection of 
-* controls that make it easy to add menus to your website or web application.  
-* With the Menu Controls you can create website fly-out menus, customized 
-* context menus, or application-style menu bars with just a small amount of 
-* scripting.</p><p>The Menu family of controls features:</p>
-* <ul>
-*    <li>Keyboard and mouse navigation.</li>
-*    <li>A rich event model that provides access to all of a menu's 
-*    interesting moments.</li>
-*    <li>Support for 
-*    <a href="http://en.wikipedia.org/wiki/Progressive_Enhancement">Progressive
-*    Enhancement</a>; Menus can be created from simple, 
-*    semantic markup on the page or purely through JavaScript.</li>
-* </ul>
-* @title Menu
-* @namespace YAHOO.widget
-* @requires Event, Dom, Container
-*/
-(function () {
-
-    var _DIV = "DIV",
-    	_HD = "hd",
-    	_BD = "bd",
-    	_FT = "ft",
-    	_LI = "LI",
-    	_DISABLED = "disabled",
-		_MOUSEOVER = "mouseover",
-		_MOUSEOUT = "mouseout",
-		_MOUSEDOWN = "mousedown",
-		_MOUSEUP = "mouseup",
-		_FOCUS = YAHOO.env.ua.ie ? "focusin" : "focus",		
-		_CLICK = "click",
-		_KEYDOWN = "keydown",
-		_KEYUP = "keyup",
-		_KEYPRESS = "keypress",
-		_CLICK_TO_HIDE = "clicktohide",
-		_POSITION = "position", 
-		_DYNAMIC = "dynamic",
-		_SHOW_DELAY = "showdelay",
-		_SELECTED = "selected",
-		_VISIBLE = "visible",
-		_UL = "UL",
-		_MENUMANAGER = "MenuManager",
-    	
-    
-    	Dom = YAHOO.util.Dom,
-        Event = YAHOO.util.Event,
-        Lang = YAHOO.lang;
-
-
-    /**
-    * Singleton that manages a collection of all menus and menu items.  Listens 
-    * for DOM events at the document level and dispatches the events to the 
-    * corresponding menu or menu item.
-    *
-    * @namespace YAHOO.widget
-    * @class MenuManager
-    * @static
-    */
-    YAHOO.widget.MenuManager = function () {
-    
-        // Private member variables
-    
-    
-        // Flag indicating if the DOM event handlers have been attached
-    
-        var m_bInitializedEventHandlers = false,
-    
-    
-        // Collection of menus
-
-        m_oMenus = {},
-
-
-        // Collection of visible menus
-    
-        m_oVisibleMenus = {},
-    
-    
-        //  Collection of menu items 
-
-        m_oItems = {},
-
-
-        // Map of DOM event types to their equivalent CustomEvent types
-        
-        m_oEventTypes = {
-            "click": "clickEvent",
-            "mousedown": "mouseDownEvent",
-            "mouseup": "mouseUpEvent",
-            "mouseover": "mouseOverEvent",
-            "mouseout": "mouseOutEvent",
-            "keydown": "keyDownEvent",
-            "keyup": "keyUpEvent",
-            "keypress": "keyPressEvent",
-            "focus": "focusEvent",
-            "focusin": "focusEvent",
-            "blur": "blurEvent",
-            "focusout": "blurEvent"
-        },
-
-
-    	// The element in the DOM that currently has focus
-    
-		m_oFocusedElement = null,
-    
-    
-        m_oFocusedMenuItem = null;
-    
-    
-    
-        // Private methods
-    
-    
-        /**
-        * @method getMenuRootElement
-        * @description Finds the root DIV node of a menu or the root LI node of 
-        * a menu item.
-        * @private
-        * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-58190037">HTMLElement</a>} p_oElement Object 
-        * specifying an HTML element.
-        */
-        function getMenuRootElement(p_oElement) {
-        
-            var oParentNode,
-            	returnVal;
-    
-            if (p_oElement && p_oElement.tagName) {
-            
-                switch (p_oElement.tagName.toUpperCase()) {
-                        
-                case _DIV:
-    
-                    oParentNode = p_oElement.parentNode;
-    
-                    // Check if the DIV is the inner "body" node of a menu
-
-                    if ((
-                            Dom.hasClass(p_oElement, _HD) ||
-                            Dom.hasClass(p_oElement, _BD) ||
-                            Dom.hasClass(p_oElement, _FT)
-                        ) && 
-                        oParentNode && 
-                        oParentNode.tagName && 
-                        oParentNode.tagName.toUpperCase() == _DIV) {
-                    
-                        returnVal = oParentNode;
-                    
-                    }
-                    else {
-                    
-                        returnVal = p_oElement;
-                    
-                    }
-                
-                    break;
-
-                case _LI:
-    
-                    returnVal = p_oElement;
-                    
-                    break;
-
-                default:
-    
-                    oParentNode = p_oElement.parentNode;
-    
-                    if (oParentNode) {
-                    
-                        returnVal = getMenuRootElement(oParentNode);
-                    
-                    }
-                
-                    break;
-                
-                }
-    
-            }
-            
-            return returnVal;
-            
-        }
-    
-    
-    
-        // Private event handlers
-    
-    
-        /**
-        * @method onDOMEvent
-        * @description Generic, global event handler for all of a menu's 
-        * DOM-based events.  This listens for events against the document 
-        * object.  If the target of a given event is a member of a menu or 
-        * menu item's DOM, the instance's corresponding Custom Event is fired.
-        * @private
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        function onDOMEvent(p_oEvent) {
-    
-            // Get the target node of the DOM event
-        
-            var oTarget = Event.getTarget(p_oEvent),
-                
-            // See if the target of the event was a menu, or a menu item
-    
-            oElement = getMenuRootElement(oTarget),
-            sCustomEventType,
-            sTagName,
-            sId,
-            oMenuItem,
-            oMenu; 
-    
-    
-            if (oElement) {
-    
-                sTagName = oElement.tagName.toUpperCase();
-        
-                if (sTagName == _LI) {
-            
-                    sId = oElement.id;
-            
-                    if (sId && m_oItems[sId]) {
-            
-                        oMenuItem = m_oItems[sId];
-                        oMenu = oMenuItem.parent;
-            
-                    }
-                
-                }
-                else if (sTagName == _DIV) {
-                
-                    if (oElement.id) {
-                    
-                        oMenu = m_oMenus[oElement.id];
-                    
-                    }
-                
-                }
-    
-            }
-    
-    
-            if (oMenu) {
-    
-                sCustomEventType = m_oEventTypes[p_oEvent.type];
-    
-    
-                // Fire the Custom Event that corresponds the current DOM event    
-        
-                if (oMenuItem && !oMenuItem.cfg.getProperty(_DISABLED)) {
-    
-                    oMenuItem[sCustomEventType].fire(p_oEvent);                   
-    
-                }
-        
-                oMenu[sCustomEventType].fire(p_oEvent, oMenuItem);
-            
-            }
-            else if (p_oEvent.type == _MOUSEDOWN) {
-    
-                /*
-                    If the target of the event wasn't a menu, hide all 
-                    dynamically positioned menus
-                */
-                
-                for (var i in m_oVisibleMenus) {
-        
-                    if (Lang.hasOwnProperty(m_oVisibleMenus, i)) {
-        
-                        oMenu = m_oVisibleMenus[i];
-
-                        if (oMenu.cfg.getProperty(_CLICK_TO_HIDE) && 
-                            !(oMenu instanceof YAHOO.widget.MenuBar) && 
-                            oMenu.cfg.getProperty(_POSITION) == _DYNAMIC) {
-        
-                            oMenu.hide();
-        
-                        }
-                        else {
-                            
-							if (oMenu.cfg.getProperty(_SHOW_DELAY) > 0) {
-							
-								oMenu._cancelShowDelay();
-							
-							}
-
-
-							if (oMenu.activeItem) {
-						
-								oMenu.activeItem.blur();
-								oMenu.activeItem.cfg.setProperty(_SELECTED, false);
-						
-								oMenu.activeItem = null;            
-						
-							}
-        
-                        }
-        
-                    }
-        
-                } 
-    
-            }
-            else if (p_oEvent.type == _FOCUS) {
-            
-            	m_oFocusedElement = oTarget;
-            
-            }
-            
-        }
-    
-    
-        /**
-        * @method onMenuDestroy
-        * @description "destroy" event handler for a menu.
-        * @private
-        * @param {String} p_sType String representing the name of the event 
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {YAHOO.widget.Menu} p_oMenu The menu that fired the event.
-        */
-        function onMenuDestroy(p_sType, p_aArgs, p_oMenu) {
-    
-            if (m_oMenus[p_oMenu.id]) {
-    
-                this.removeMenu(p_oMenu);
-    
-            }
-    
-        }
-    
-    
-        /**
-        * @method onMenuFocus
-        * @description "focus" event handler for a MenuItem instance.
-        * @private
-        * @param {String} p_sType String representing the name of the event 
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        function onMenuFocus(p_sType, p_aArgs) {
-    
-            var oItem = p_aArgs[1];
-    
-            if (oItem) {
-    
-                m_oFocusedMenuItem = oItem;
-            
-            }
-    
-        }
-    
-    
-        /**
-        * @method onMenuBlur
-        * @description "blur" event handler for a MenuItem instance.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        function onMenuBlur(p_sType, p_aArgs) {
-    
-            m_oFocusedMenuItem = null;
-    
-        }
-    
-
-        /**
-        * @method onMenuHide
-        * @description "hide" event handler for a Menu instance.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-		* @param <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-		* level-one-html.html#ID-58190037">p_oFocusedElement</a> The HTML element that had focus
-		* prior to the Menu being made visible
-        */    
-    	function onMenuHide(p_sType, p_aArgs, p_oFocusedElement) {
-
-			/*
-				Restore focus to the element in the DOM that had focus prior to the Menu 
-				being made visible
-			*/
-
-			if (p_oFocusedElement && p_oFocusedElement.focus) {
-			
-				try {
-					p_oFocusedElement.focus();
-				}
-				catch(ex) {
-				}
-			
-			}
-			
-    		this.hideEvent.unsubscribe(onMenuHide, p_oFocusedElement);
-    	
-    	}
-    
-
-        /**
-        * @method onMenuShow
-        * @description "show" event handler for a MenuItem instance.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */    	
-    	function onMenuShow(p_sType, p_aArgs) {
-
-			/*
-				Dynamically positioned, root Menus focus themselves when visible, and will then, 
-				when hidden, restore focus to the UI control that had focus before the Menu was 
-				made visible
-			*/ 
-
-			if (this === this.getRoot() && this.cfg.getProperty(_POSITION) === _DYNAMIC) {
-    	
-				this.hideEvent.subscribe(onMenuHide, m_oFocusedElement);
-				this.focus();
-			
-			}
-    	
-    	}    
-    
-    
-        /**
-        * @method onMenuVisibleConfigChange
-        * @description Event handler for when the "visible" configuration  
-        * property of a Menu instance changes.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        function onMenuVisibleConfigChange(p_sType, p_aArgs) {
-    
-            var bVisible = p_aArgs[0],
-                sId = this.id;
-            
-            if (bVisible) {
-    
-                m_oVisibleMenus[sId] = this;
-                
-                YAHOO.log(this + " added to the collection of visible menus.", 
-                	"info", _MENUMANAGER);
-            
-            }
-            else if (m_oVisibleMenus[sId]) {
-            
-                delete m_oVisibleMenus[sId];
-                
-                YAHOO.log(this + " removed from the collection of visible menus.", 
-                	"info", _MENUMANAGER);
-            
-            }
-        
-        }
-    
-    
-        /**
-        * @method onItemDestroy
-        * @description "destroy" event handler for a MenuItem instance.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        function onItemDestroy(p_sType, p_aArgs) {
-    
-            removeItem(this);
-    
-        }
-
-
-        /**
-        * @method removeItem
-        * @description Removes a MenuItem instance from the MenuManager's collection of MenuItems.
-        * @private
-        * @param {MenuItem} p_oMenuItem The MenuItem instance to be removed.
-        */    
-        function removeItem(p_oMenuItem) {
-
-            var sId = p_oMenuItem.id;
-    
-            if (sId && m_oItems[sId]) {
-    
-                if (m_oFocusedMenuItem == p_oMenuItem) {
-    
-                    m_oFocusedMenuItem = null;
-    
-                }
-    
-                delete m_oItems[sId];
-                
-                p_oMenuItem.destroyEvent.unsubscribe(onItemDestroy);
-    
-                YAHOO.log(p_oMenuItem + " successfully unregistered.", "info", _MENUMANAGER);
-    
-            }
-
-        }
-    
-    
-        /**
-        * @method onItemAdded
-        * @description "itemadded" event handler for a Menu instance.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        function onItemAdded(p_sType, p_aArgs) {
-    
-            var oItem = p_aArgs[0],
-                sId;
-    
-            if (oItem instanceof YAHOO.widget.MenuItem) { 
-    
-                sId = oItem.id;
-        
-                if (!m_oItems[sId]) {
-            
-                    m_oItems[sId] = oItem;
-        
-                    oItem.destroyEvent.subscribe(onItemDestroy);
-        
-                    YAHOO.log(oItem + " successfully registered.", "info", _MENUMANAGER);
-        
-                }
-    
-            }
-        
-        }
-    
-    
-        return {
-    
-            // Privileged methods
-    
-    
-            /**
-            * @method addMenu
-            * @description Adds a menu to the collection of known menus.
-            * @param {YAHOO.widget.Menu} p_oMenu Object specifying the Menu  
-            * instance to be added.
-            */
-            addMenu: function (p_oMenu) {
-    
-                var oDoc;
-    
-                if (p_oMenu instanceof YAHOO.widget.Menu && p_oMenu.id && 
-                    !m_oMenus[p_oMenu.id]) {
-        
-                    m_oMenus[p_oMenu.id] = p_oMenu;
-                
-            
-                    if (!m_bInitializedEventHandlers) {
-            
-                        oDoc = document;
-                
-                        Event.on(oDoc, _MOUSEOVER, onDOMEvent, this, true);
-                        Event.on(oDoc, _MOUSEOUT, onDOMEvent, this, true);
-                        Event.on(oDoc, _MOUSEDOWN, onDOMEvent, this, true);
-                        Event.on(oDoc, _MOUSEUP, onDOMEvent, this, true);
-                        Event.on(oDoc, _CLICK, onDOMEvent, this, true);
-                        Event.on(oDoc, _KEYDOWN, onDOMEvent, this, true);
-                        Event.on(oDoc, _KEYUP, onDOMEvent, this, true);
-                        Event.on(oDoc, _KEYPRESS, onDOMEvent, this, true);
-    
-						Event.onFocus(oDoc, onDOMEvent, this, true);
-						Event.onBlur(oDoc, onDOMEvent, this, true);						
-    
-                        m_bInitializedEventHandlers = true;
-                        
-                        YAHOO.log("DOM event handlers initialized.", "info", _MENUMANAGER);
-            
-                    }
-            
-                    p_oMenu.cfg.subscribeToConfigEvent(_VISIBLE, onMenuVisibleConfigChange);
-                    p_oMenu.destroyEvent.subscribe(onMenuDestroy, p_oMenu, this);
-                    p_oMenu.itemAddedEvent.subscribe(onItemAdded);
-                    p_oMenu.focusEvent.subscribe(onMenuFocus);
-                    p_oMenu.blurEvent.subscribe(onMenuBlur);
-                    p_oMenu.showEvent.subscribe(onMenuShow);
-        
-                    YAHOO.log(p_oMenu + " successfully registered.", "info", _MENUMANAGER);
-        
-                }
-        
-            },
-    
-        
-            /**
-            * @method removeMenu
-            * @description Removes a menu from the collection of known menus.
-            * @param {YAHOO.widget.Menu} p_oMenu Object specifying the Menu  
-            * instance to be removed.
-            */
-            removeMenu: function (p_oMenu) {
-    
-                var sId,
-                    aItems,
-                    i;
-        
-                if (p_oMenu) {
-    
-                    sId = p_oMenu.id;
-        
-                    if ((sId in m_oMenus) && (m_oMenus[sId] == p_oMenu)) {
-
-                        // Unregister each menu item
-
-                        aItems = p_oMenu.getItems();
-
-                        if (aItems && aItems.length > 0) {
-
-                            i = aItems.length - 1;
-
-                            do {
-
-                                removeItem(aItems[i]);
-
-                            }
-                            while (i--);
-
-                        }
-
-
-                        // Unregister the menu
-
-                        delete m_oMenus[sId];
-            
-                        YAHOO.log(p_oMenu + " successfully unregistered.", "info", _MENUMANAGER);
-        
-
-                        /*
-                             Unregister the menu from the collection of 
-                             visible menus
-                        */
-
-                        if ((sId in m_oVisibleMenus) && (m_oVisibleMenus[sId] == p_oMenu)) {
-            
-                            delete m_oVisibleMenus[sId];
-                            
-                            YAHOO.log(p_oMenu + " unregistered from the" + 
-                                        " collection of visible menus.", "info", _MENUMANAGER);
-       
-                        }
-
-
-                        // Unsubscribe event listeners
-
-                        if (p_oMenu.cfg) {
-
-                            p_oMenu.cfg.unsubscribeFromConfigEvent(_VISIBLE, 
-                                onMenuVisibleConfigChange);
-                            
-                        }
-
-                        p_oMenu.destroyEvent.unsubscribe(onMenuDestroy, 
-                            p_oMenu);
-                
-                        p_oMenu.itemAddedEvent.unsubscribe(onItemAdded);
-                        p_oMenu.focusEvent.unsubscribe(onMenuFocus);
-                        p_oMenu.blurEvent.unsubscribe(onMenuBlur);
-
-                    }
-                
-                }
-    
-            },
-        
-        
-            /**
-            * @method hideVisible
-            * @description Hides all visible, dynamically positioned menus 
-            * (excluding instances of YAHOO.widget.MenuBar).
-            */
-            hideVisible: function () {
-        
-                var oMenu;
-        
-                for (var i in m_oVisibleMenus) {
-        
-                    if (Lang.hasOwnProperty(m_oVisibleMenus, i)) {
-        
-                        oMenu = m_oVisibleMenus[i];
-        
-                        if (!(oMenu instanceof YAHOO.widget.MenuBar) && 
-                            oMenu.cfg.getProperty(_POSITION) == _DYNAMIC) {
-        
-                            oMenu.hide();
-        
-                        }
-        
-                    }
-        
-                }        
-    
-            },
-
-
-            /**
-            * @method getVisible
-            * @description Returns a collection of all visible menus registered
-            * with the menu manger.
-            * @return {Object}
-            */
-            getVisible: function () {
-            
-                return m_oVisibleMenus;
-            
-            },
-
-    
-            /**
-            * @method getMenus
-            * @description Returns a collection of all menus registered with the 
-            * menu manger.
-            * @return {Object}
-            */
-            getMenus: function () {
-    
-                return m_oMenus;
-            
-            },
-    
-    
-            /**
-            * @method getMenu
-            * @description Returns a menu with the specified id.
-            * @param {String} p_sId String specifying the id of the 
-            * <code>&#60;div&#62;</code> element representing the menu to
-            * be retrieved.
-            * @return {YAHOO.widget.Menu}
-            */
-            getMenu: function (p_sId) {
-                
-                var returnVal;
-                
-                if (p_sId in m_oMenus) {
-                
-					returnVal = m_oMenus[p_sId];
-				
-				}
-            
-            	return returnVal;
-            
-            },
-    
-    
-            /**
-            * @method getMenuItem
-            * @description Returns a menu item with the specified id.
-            * @param {String} p_sId String specifying the id of the 
-            * <code>&#60;li&#62;</code> element representing the menu item to
-            * be retrieved.
-            * @return {YAHOO.widget.MenuItem}
-            */
-            getMenuItem: function (p_sId) {
-    
-    			var returnVal;
-    
-    			if (p_sId in m_oItems) {
-    
-					returnVal = m_oItems[p_sId];
-				
-				}
-				
-				return returnVal;
-            
-            },
-
-
-            /**
-            * @method getMenuItemGroup
-            * @description Returns an array of menu item instances whose 
-            * corresponding <code>&#60;li&#62;</code> elements are child 
-            * nodes of the <code>&#60;ul&#62;</code> element with the 
-            * specified id.
-            * @param {String} p_sId String specifying the id of the 
-            * <code>&#60;ul&#62;</code> element representing the group of 
-            * menu items to be retrieved.
-            * @return {Array}
-            */
-            getMenuItemGroup: function (p_sId) {
-
-                var oUL = Dom.get(p_sId),
-                    aItems,
-                    oNode,
-                    oItem,
-                    sId,
-                    returnVal;
-    
-
-                if (oUL && oUL.tagName && oUL.tagName.toUpperCase() == _UL) {
-
-                    oNode = oUL.firstChild;
-
-                    if (oNode) {
-
-                        aItems = [];
-                        
-                        do {
-
-                            sId = oNode.id;
-
-                            if (sId) {
-                            
-                                oItem = this.getMenuItem(sId);
-                                
-                                if (oItem) {
-                                
-                                    aItems[aItems.length] = oItem;
-                                
-                                }
-                            
-                            }
-                        
-                        }
-                        while ((oNode = oNode.nextSibling));
-
-
-                        if (aItems.length > 0) {
-
-                            returnVal = aItems;
-                        
-                        }
-
-                    }
-                
-                }
-
-				return returnVal;
-            
-            },
-
-    
-            /**
-            * @method getFocusedMenuItem
-            * @description Returns a reference to the menu item that currently 
-            * has focus.
-            * @return {YAHOO.widget.MenuItem}
-            */
-            getFocusedMenuItem: function () {
-    
-                return m_oFocusedMenuItem;
-    
-            },
-    
-    
-            /**
-            * @method getFocusedMenu
-            * @description Returns a reference to the menu that currently 
-            * has focus.
-            * @return {YAHOO.widget.Menu}
-            */
-            getFocusedMenu: function () {
-
-				var returnVal;
-    
-                if (m_oFocusedMenuItem) {
-    
-                    returnVal = m_oFocusedMenuItem.parent.getRoot();
-                
-                }
-    
-    			return returnVal;
-    
-            },
-    
-        
-            /**
-            * @method toString
-            * @description Returns a string representing the menu manager.
-            * @return {String}
-            */
-            toString: function () {
-            
-                return _MENUMANAGER;
-            
-            }
-    
-        };
-    
-    }();
-
-})();
-
-
-
-(function () {
-
-	var Lang = YAHOO.lang,
-
-	// String constants
-	
-		_MENU = "Menu",
-		_DIV_UPPERCASE = "DIV",
-		_DIV_LOWERCASE = "div",
-		_ID = "id",
-		_SELECT = "SELECT",
-		_XY = "xy",
-		_Y = "y",
-		_UL_UPPERCASE = "UL",
-		_UL_LOWERCASE = "ul",
-		_FIRST_OF_TYPE = "first-of-type",
-		_LI = "LI",
-		_OPTGROUP = "OPTGROUP",
-		_OPTION = "OPTION",
-		_DISABLED = "disabled",
-		_NONE = "none",
-		_SELECTED = "selected",
-		_GROUP_INDEX = "groupindex",
-		_INDEX = "index",
-		_SUBMENU = "submenu",
-		_VISIBLE = "visible",
-		_HIDE_DELAY = "hidedelay",
-		_POSITION = "position",
-		_DYNAMIC = "dynamic",
-		_STATIC = "static",
-		_DYNAMIC_STATIC = _DYNAMIC + "," + _STATIC,
-		_WINDOWS = "windows",
-		_URL = "url",
-		_HASH = "#",
-		_TARGET = "target",
-		_MAX_HEIGHT = "maxheight",
-        _TOP_SCROLLBAR = "topscrollbar",
-        _BOTTOM_SCROLLBAR = "bottomscrollbar",
-        _UNDERSCORE = "_",
-		_TOP_SCROLLBAR_DISABLED = _TOP_SCROLLBAR + _UNDERSCORE + _DISABLED,
-		_BOTTOM_SCROLLBAR_DISABLED = _BOTTOM_SCROLLBAR + _UNDERSCORE + _DISABLED,
-		_MOUSEMOVE = "mousemove",
-		_SHOW_DELAY = "showdelay",
-		_SUBMENU_HIDE_DELAY = "submenuhidedelay",
-		_IFRAME = "iframe",
-		_CONSTRAIN_TO_VIEWPORT = "constraintoviewport",
-		_PREVENT_CONTEXT_OVERLAP = "preventcontextoverlap",
-		_SUBMENU_ALIGNMENT = "submenualignment",
-		_AUTO_SUBMENU_DISPLAY = "autosubmenudisplay",
-		_CLICK_TO_HIDE = "clicktohide",
-		_CONTAINER = "container",
-		_SCROLL_INCREMENT = "scrollincrement",
-		_MIN_SCROLL_HEIGHT = "minscrollheight",
-		_CLASSNAME = "classname",
-		_SHADOW = "shadow",
-		_KEEP_OPEN = "keepopen",
-		_HD = "hd",
-		_HAS_TITLE = "hastitle",
-		_CONTEXT = "context",
-		_EMPTY_STRING = "",
-		_MOUSEDOWN = "mousedown",
-		_KEYDOWN = "keydown",
-		_HEIGHT = "height",
-		_WIDTH = "width",
-		_PX = "px",
-		_EFFECT = "effect",
-		_MONITOR_RESIZE = "monitorresize",
-		_DISPLAY = "display",
-		_BLOCK = "block",
-		_VISIBILITY = "visibility",
-		_ABSOLUTE = "absolute",
-		_ZINDEX = "zindex",
-		_YUI_MENU_BODY_SCROLLED = "yui-menu-body-scrolled",
-		_NON_BREAKING_SPACE = "&#32;",
-		_SPACE = " ",
-		_MOUSEOVER = "mouseover",
-		_MOUSEOUT = "mouseout",
-        _ITEM_ADDED = "itemAdded",
-        _ITEM_REMOVED = "itemRemoved",
-        _HIDDEN = "hidden",
-        _YUI_MENU_SHADOW = "yui-menu-shadow",
-        _YUI_MENU_SHADOW_VISIBLE = _YUI_MENU_SHADOW + "-visible",
-        _YUI_MENU_SHADOW_YUI_MENU_SHADOW_VISIBLE = _YUI_MENU_SHADOW + _SPACE + _YUI_MENU_SHADOW_VISIBLE;
-
-
-/**
-* The Menu class creates a container that holds a vertical list representing 
-* a set of options or commands.  Menu is the base class for all 
-* menu containers. 
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;div&#62;</code> element of the menu.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;select&#62;</code> element to be used as the data source 
-* for the menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-* level-one-html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object 
-* specifying the <code>&#60;div&#62;</code> element of the menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-* level-one-html.html#ID-94282980">HTMLSelectElement</a>} p_oElement 
-* Object specifying the <code>&#60;select&#62;</code> element to be used as 
-* the data source for the menu.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the menu. See configuration class documentation for 
-* more details.
-* @namespace YAHOO.widget
-* @class Menu
-* @constructor
-* @extends YAHOO.widget.Overlay
-*/
-YAHOO.widget.Menu = function (p_oElement, p_oConfig) {
-
-    if (p_oConfig) {
-
-        this.parent = p_oConfig.parent;
-        this.lazyLoad = p_oConfig.lazyLoad || p_oConfig.lazyload;
-        this.itemData = p_oConfig.itemData || p_oConfig.itemdata;
-
-    }
-
-
-    YAHOO.widget.Menu.superclass.constructor.call(this, p_oElement, p_oConfig);
-
-};
-
-
-
-/**
-* @method checkPosition
-* @description Checks to make sure that the value of the "position" property 
-* is one of the supported strings. Returns true if the position is supported.
-* @private
-* @param {Object} p_sPosition String specifying the position of the menu.
-* @return {Boolean}
-*/
-function checkPosition(p_sPosition) {
-
-	var returnVal = false;
-
-    if (Lang.isString(p_sPosition)) {
-
-        returnVal = (_DYNAMIC_STATIC.indexOf((p_sPosition.toLowerCase())) != -1);
-
-    }
-
-	return returnVal;
-
-}
-
-
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Module = YAHOO.widget.Module,
-    Overlay = YAHOO.widget.Overlay,
-    Menu = YAHOO.widget.Menu,
-    MenuManager = YAHOO.widget.MenuManager,
-    CustomEvent = YAHOO.util.CustomEvent,
-    UA = YAHOO.env.ua,
-    
-    m_oShadowTemplate,
-
-	EVENT_TYPES = [
-    
-		["mouseOverEvent", _MOUSEOVER],
-		["mouseOutEvent", _MOUSEOUT],
-		["mouseDownEvent", _MOUSEDOWN],
-		["mouseUpEvent", "mouseup"],
-		["clickEvent", "click"],
-		["keyPressEvent", "keypress"],
-		["keyDownEvent", _KEYDOWN],
-		["keyUpEvent", "keyup"],
-		["focusEvent", "focus"],
-		["blurEvent", "blur"],
-		["itemAddedEvent", _ITEM_ADDED],
-		["itemRemovedEvent", _ITEM_REMOVED]
-
-	],
-
-	VISIBLE_CONFIG =  { 
-		key: _VISIBLE, 
-		value: false, 
-		validator: Lang.isBoolean
-	}, 
-
-	CONSTRAIN_TO_VIEWPORT_CONFIG =  {
-		key: _CONSTRAIN_TO_VIEWPORT, 
-		value: true, 
-		validator: Lang.isBoolean, 
-		supercedes: [_IFRAME,"x",_Y,_XY]
-	}, 
-
-	PREVENT_CONTEXT_OVERLAP_CONFIG =  {
-		key: _PREVENT_CONTEXT_OVERLAP,
-		value: true,
-		validator: Lang.isBoolean,  
-		supercedes: [_CONSTRAIN_TO_VIEWPORT]
-	},
-
-	POSITION_CONFIG =  { 
-		key: _POSITION, 
-		value: _DYNAMIC, 
-		validator: checkPosition, 
-		supercedes: [_VISIBLE, _IFRAME]
-	}, 
-
-	SUBMENU_ALIGNMENT_CONFIG =  { 
-		key: _SUBMENU_ALIGNMENT, 
-		value: ["tl","tr"]
-	},
-
-	AUTO_SUBMENU_DISPLAY_CONFIG =  { 
-		key: _AUTO_SUBMENU_DISPLAY, 
-		value: true, 
-		validator: Lang.isBoolean,
-		suppressEvent: true
-	}, 
-
-	SHOW_DELAY_CONFIG =  { 
-		key: _SHOW_DELAY, 
-		value: 250, 
-		validator: Lang.isNumber, 
-		suppressEvent: true
-	}, 
-
-	HIDE_DELAY_CONFIG =  { 
-		key: _HIDE_DELAY, 
-		value: 0, 
-		validator: Lang.isNumber, 
-		suppressEvent: true
-	}, 
-
-	SUBMENU_HIDE_DELAY_CONFIG =  { 
-		key: _SUBMENU_HIDE_DELAY, 
-		value: 250, 
-		validator: Lang.isNumber,
-		suppressEvent: true
-	}, 
-
-	CLICK_TO_HIDE_CONFIG =  { 
-		key: _CLICK_TO_HIDE, 
-		value: true, 
-		validator: Lang.isBoolean,
-		suppressEvent: true
-	},
-
-	CONTAINER_CONFIG =  { 
-		key: _CONTAINER,
-		suppressEvent: true
-	}, 
-
-	SCROLL_INCREMENT_CONFIG =  { 
-		key: _SCROLL_INCREMENT, 
-		value: 1, 
-		validator: Lang.isNumber,
-		supercedes: [_MAX_HEIGHT],
-		suppressEvent: true
-	},
-
-	MIN_SCROLL_HEIGHT_CONFIG =  { 
-		key: _MIN_SCROLL_HEIGHT, 
-		value: 90, 
-		validator: Lang.isNumber,
-		supercedes: [_MAX_HEIGHT],
-		suppressEvent: true
-	},    
-
-	MAX_HEIGHT_CONFIG =  { 
-		key: _MAX_HEIGHT, 
-		value: 0, 
-		validator: Lang.isNumber,
-		supercedes: [_IFRAME],
-		suppressEvent: true
-	}, 
-
-	CLASS_NAME_CONFIG =  { 
-		key: _CLASSNAME, 
-		value: null, 
-		validator: Lang.isString,
-		suppressEvent: true
-	}, 
-
-	DISABLED_CONFIG =  { 
-		key: _DISABLED, 
-		value: false, 
-		validator: Lang.isBoolean,
-		suppressEvent: true
-	},
-	
-	SHADOW_CONFIG =  { 
-		key: _SHADOW, 
-		value: true, 
-		validator: Lang.isBoolean,
-		suppressEvent: true,
-		supercedes: [_VISIBLE]
-	},
-	
-	KEEP_OPEN_CONFIG = {
-		key: _KEEP_OPEN, 
-		value: false, 
-		validator: Lang.isBoolean
-	};
-
-
-
-YAHOO.lang.extend(Menu, Overlay, {
-
-
-// Constants
-
-
-/**
-* @property CSS_CLASS_NAME
-* @description String representing the CSS class(es) to be applied to the 
-* menu's <code>&#60;div&#62;</code> element.
-* @default "yuimenu"
-* @final
-* @type String
-*/
-CSS_CLASS_NAME: "yuimenu",
-
-
-/**
-* @property ITEM_TYPE
-* @description Object representing the type of menu item to instantiate and 
-* add when parsing the child nodes (either <code>&#60;li&#62;</code> element, 
-* <code>&#60;optgroup&#62;</code> element or <code>&#60;option&#62;</code>) 
-* of the menu's source HTML element.
-* @default YAHOO.widget.MenuItem
-* @final
-* @type YAHOO.widget.MenuItem
-*/
-ITEM_TYPE: null,
-
-
-/**
-* @property GROUP_TITLE_TAG_NAME
-* @description String representing the tagname of the HTML element used to 
-* title the menu's item groups.
-* @default H6
-* @final
-* @type String
-*/
-GROUP_TITLE_TAG_NAME: "h6",
-
-
-/**
-* @property OFF_SCREEN_POSITION
-* @description Array representing the default x and y position that a menu 
-* should have when it is positioned outside the viewport by the 
-* "poistionOffScreen" method.
-* @default "-999em"
-* @final
-* @type String
-*/
-OFF_SCREEN_POSITION: "-999em",
-
-
-// Private properties
-
-
-/** 
-* @property _bHideDelayEventHandlersAssigned
-* @description Boolean indicating if the "mouseover" and "mouseout" event 
-* handlers used for hiding the menu via a call to "YAHOO.lang.later" have 
-* already been assigned.
-* @default false
-* @private
-* @type Boolean
-*/
-_bHideDelayEventHandlersAssigned: false,
-
-
-/**
-* @property _bHandledMouseOverEvent
-* @description Boolean indicating the current state of the menu's 
-* "mouseover" event.
-* @default false
-* @private
-* @type Boolean
-*/
-_bHandledMouseOverEvent: false,
-
-
-/**
-* @property _bHandledMouseOutEvent
-* @description Boolean indicating the current state of the menu's
-* "mouseout" event.
-* @default false
-* @private
-* @type Boolean
-*/
-_bHandledMouseOutEvent: false,
-
-
-/**
-* @property _aGroupTitleElements
-* @description Array of HTML element used to title groups of menu items.
-* @default []
-* @private
-* @type Array
-*/
-_aGroupTitleElements: null,
-
-
-/**
-* @property _aItemGroups
-* @description Multi-dimensional Array representing the menu items as they
-* are grouped in the menu.
-* @default []
-* @private
-* @type Array
-*/
-_aItemGroups: null,
-
-
-/**
-* @property _aListElements
-* @description Array of <code>&#60;ul&#62;</code> elements, each of which is 
-* the parent node for each item's <code>&#60;li&#62;</code> element.
-* @default []
-* @private
-* @type Array
-*/
-_aListElements: null,
-
-
-/**
-* @property _nCurrentMouseX
-* @description The current x coordinate of the mouse inside the area of 
-* the menu.
-* @default 0
-* @private
-* @type Number
-*/
-_nCurrentMouseX: 0,
-
-
-/**
-* @property _bStopMouseEventHandlers
-* @description Stops "mouseover," "mouseout," and "mousemove" event handlers 
-* from executing.
-* @default false
-* @private
-* @type Boolean
-*/
-_bStopMouseEventHandlers: false,
-
-
-/**
-* @property _sClassName
-* @description The current value of the "classname" configuration attribute.
-* @default null
-* @private
-* @type String
-*/
-_sClassName: null,
-
-
-
-// Public properties
-
-
-/**
-* @property lazyLoad
-* @description Boolean indicating if the menu's "lazy load" feature is 
-* enabled.  If set to "true," initialization and rendering of the menu's 
-* items will be deferred until the first time it is made visible.  This 
-* property should be set via the constructor using the configuration 
-* object literal.
-* @default false
-* @type Boolean
-*/
-lazyLoad: false,
-
-
-/**
-* @property itemData
-* @description Array of items to be added to the menu.  The array can contain 
-* strings representing the text for each item to be created, object literals 
-* representing the menu item configuration properties, or MenuItem instances.  
-* This property should be set via the constructor using the configuration 
-* object literal.
-* @default null
-* @type Array
-*/
-itemData: null,
-
-
-/**
-* @property activeItem
-* @description Object reference to the item in the menu that has is selected.
-* @default null
-* @type YAHOO.widget.MenuItem
-*/
-activeItem: null,
-
-
-/**
-* @property parent
-* @description Object reference to the menu's parent menu or menu item.  
-* This property can be set via the constructor using the configuration 
-* object literal.
-* @default null
-* @type YAHOO.widget.MenuItem
-*/
-parent: null,
-
-
-/**
-* @property srcElement
-* @description Object reference to the HTML element (either 
-* <code>&#60;select&#62;</code> or <code>&#60;div&#62;</code>) used to 
-* create the menu.
-* @default null
-* @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-* level-one-html.html#ID-94282980">HTMLSelectElement</a>|<a 
-* href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.
-* html#ID-22445964">HTMLDivElement</a>
-*/
-srcElement: null,
-
-
-
-// Events
-
-
-/**
-* @event mouseOverEvent
-* @description Fires when the mouse has entered the menu.  Passes back 
-* the DOM Event object as an argument.
-*/
-
-
-/**
-* @event mouseOutEvent
-* @description Fires when the mouse has left the menu.  Passes back the DOM 
-* Event object as an argument.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event mouseDownEvent
-* @description Fires when the user mouses down on the menu.  Passes back the 
-* DOM Event object as an argument.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event mouseUpEvent
-* @description Fires when the user releases a mouse button while the mouse is 
-* over the menu.  Passes back the DOM Event object as an argument.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event clickEvent
-* @description Fires when the user clicks the on the menu.  Passes back the 
-* DOM Event object as an argument.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event keyPressEvent
-* @description Fires when the user presses an alphanumeric key when one of the
-* menu's items has focus.  Passes back the DOM Event object as an argument.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event keyDownEvent
-* @description Fires when the user presses a key when one of the menu's items 
-* has focus.  Passes back the DOM Event object as an argument.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event keyUpEvent
-* @description Fires when the user releases a key when one of the menu's items 
-* has focus.  Passes back the DOM Event object as an argument.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event itemAddedEvent
-* @description Fires when an item is added to the menu.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event itemRemovedEvent
-* @description Fires when an item is removed to the menu.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @method init
-* @description The Menu class's initialization method. This method is 
-* automatically called by the constructor, and sets up all DOM references 
-* for pre-existing markup, and creates required markup if it is not 
-* already present.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;div&#62;</code> element of the menu.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;select&#62;</code> element to be used as the data source 
-* for the menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-* level-one-html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object 
-* specifying the <code>&#60;div&#62;</code> element of the menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-* level-one-html.html#ID-94282980">HTMLSelectElement</a>} p_oElement 
-* Object specifying the <code>&#60;select&#62;</code> element to be used as 
-* the data source for the menu.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the menu. See configuration class documentation for 
-* more details.
-*/
-init: function (p_oElement, p_oConfig) {
-
-    this._aItemGroups = [];
-    this._aListElements = [];
-    this._aGroupTitleElements = [];
-
-    if (!this.ITEM_TYPE) {
-
-        this.ITEM_TYPE = YAHOO.widget.MenuItem;
-
-    }
-
-
-    var oElement;
-
-    if (Lang.isString(p_oElement)) {
-
-        oElement = Dom.get(p_oElement);
-
-    }
-    else if (p_oElement.tagName) {
-
-        oElement = p_oElement;
-
-    }
-
-
-    if (oElement && oElement.tagName) {
-
-        switch(oElement.tagName.toUpperCase()) {
-    
-            case _DIV_UPPERCASE:
-
-                this.srcElement = oElement;
-
-                if (!oElement.id) {
-
-                    oElement.setAttribute(_ID, Dom.generateId());
-
-                }
-
-
-                /* 
-                    Note: we don't pass the user config in here yet 
-                    because we only want it executed once, at the lowest 
-                    subclass level.
-                */ 
-            
-                Menu.superclass.init.call(this, oElement);
-
-                this.beforeInitEvent.fire(Menu);
-
-                YAHOO.log("Source element: " + this.srcElement.tagName, "info", this.toString());
-    
-            break;
-    
-            case _SELECT:
-    
-                this.srcElement = oElement;
-
-    
-                /*
-                    The source element is not something that we can use 
-                    outright, so we need to create a new Overlay
-
-                    Note: we don't pass the user config in here yet 
-                    because we only want it executed once, at the lowest 
-                    subclass level.
-                */ 
-
-                Menu.superclass.init.call(this, Dom.generateId());
-
-                this.beforeInitEvent.fire(Menu);
-
-				YAHOO.log("Source element: " + this.srcElement.tagName, "info", this.toString());
-
-            break;
-
-        }
-
-    }
-    else {
-
-        /* 
-            Note: we don't pass the user config in here yet 
-            because we only want it executed once, at the lowest 
-            subclass level.
-        */ 
-    
-        Menu.superclass.init.call(this, p_oElement);
-
-        this.beforeInitEvent.fire(Menu);
-
-		YAHOO.log("No source element found.  Created element with id: " + this.id, "info", this.toString());
-
-    }
-
-
-    if (this.element) {
-
-        Dom.addClass(this.element, this.CSS_CLASS_NAME);
-
-
-        // Subscribe to Custom Events
-
-        this.initEvent.subscribe(this._onInit);
-        this.beforeRenderEvent.subscribe(this._onBeforeRender);
-        this.renderEvent.subscribe(this._onRender);
-        this.beforeShowEvent.subscribe(this._onBeforeShow);
-        this.hideEvent.subscribe(this._onHide);
-        this.showEvent.subscribe(this._onShow);
-        this.beforeHideEvent.subscribe(this._onBeforeHide);
-        this.mouseOverEvent.subscribe(this._onMouseOver);
-        this.mouseOutEvent.subscribe(this._onMouseOut);
-        this.clickEvent.subscribe(this._onClick);
-        this.keyDownEvent.subscribe(this._onKeyDown);
-        this.keyPressEvent.subscribe(this._onKeyPress);
-        this.blurEvent.subscribe(this._onBlur);
-        
-
-        if (UA.gecko || UA.webkit) {
-
-            this.cfg.subscribeToConfigEvent(_Y, this._onYChange);
-
-        }
-
-
-        if (p_oConfig) {
-    
-            this.cfg.applyConfig(p_oConfig, true);
-    
-        }
-
-
-        // Register the Menu instance with the MenuManager
-
-        MenuManager.addMenu(this);
-        
-
-        this.initEvent.fire(Menu);
-
-    }
-
-},
-
-
-
-// Private methods
-
-
-/**
-* @method _initSubTree
-* @description Iterates the childNodes of the source element to find nodes 
-* used to instantiate menu and menu items.
-* @private
-*/
-_initSubTree: function () {
-
-    var oSrcElement = this.srcElement,
-        sSrcElementTagName,
-        nGroup,
-        sGroupTitleTagName,
-        oNode,
-        aListElements,
-        nListElements,
-        i;
-
-
-    if (oSrcElement) {
-    
-        sSrcElementTagName = 
-            (oSrcElement.tagName && oSrcElement.tagName.toUpperCase());
-
-
-        if (sSrcElementTagName == _DIV_UPPERCASE) {
-    
-            //  Populate the collection of item groups and item group titles
-    
-            oNode = this.body.firstChild;
-    
-
-            if (oNode) {
-    
-                nGroup = 0;
-                sGroupTitleTagName = this.GROUP_TITLE_TAG_NAME.toUpperCase();
-        
-                do {
-        
-
-                    if (oNode && oNode.tagName) {
-        
-                        switch (oNode.tagName.toUpperCase()) {
-        
-                            case sGroupTitleTagName:
-                            
-                                this._aGroupTitleElements[nGroup] = oNode;
-        
-                            break;
-        
-                            case _UL_UPPERCASE:
-        
-                                this._aListElements[nGroup] = oNode;
-                                this._aItemGroups[nGroup] = [];
-                                nGroup++;
-        
-                            break;
-        
-                        }
-                    
-                    }
-        
-                }
-                while ((oNode = oNode.nextSibling));
-        
-        
-                /*
-                    Apply the "first-of-type" class to the first UL to mimic 
-                    the ":first-of-type" CSS3 psuedo class.
-                */
-        
-                if (this._aListElements[0]) {
-        
-                    Dom.addClass(this._aListElements[0], _FIRST_OF_TYPE);
-        
-                }
-            
-            }
-    
-        }
-    
-    
-        oNode = null;
-    
-        YAHOO.log("Searching DOM for items to initialize.", "info", this.toString());
-    
-
-        if (sSrcElementTagName) {
-    
-            switch (sSrcElementTagName) {
-        
-                case _DIV_UPPERCASE:
-
-                    aListElements = this._aListElements;
-                    nListElements = aListElements.length;
-        
-                    if (nListElements > 0) {
-        
-        				YAHOO.log("Found " + nListElements + " item groups to initialize.", 
-        							"info", this.toString());
-        
-                        i = nListElements - 1;
-        
-                        do {
-        
-                            oNode = aListElements[i].firstChild;
-            
-                            if (oNode) {
-
-                                YAHOO.log("Scanning " + 
-                                    aListElements[i].childNodes.length + 
-                                    " child nodes for items to initialize.", "info", this.toString());
-            
-                                do {
-                
-                                    if (oNode && oNode.tagName && 
-                                        oNode.tagName.toUpperCase() == _LI) {
-                
-                                        YAHOO.log("Initializing " + 
-                                            oNode.tagName + " node.", "info", this.toString());
-        
-                                        this.addItem(new this.ITEM_TYPE(oNode, 
-                                                    { parent: this }), i);
-            
-                                    }
-                        
-                                }
-                                while ((oNode = oNode.nextSibling));
-                            
-                            }
-                    
-                        }
-                        while (i--);
-        
-                    }
-        
-                break;
-        
-                case _SELECT:
-        
-                    YAHOO.log("Scanning " +  
-                        oSrcElement.childNodes.length + 
-                        " child nodes for items to initialize.", "info", this.toString());
-        
-                    oNode = oSrcElement.firstChild;
-        
-                    do {
-        
-                        if (oNode && oNode.tagName) {
-                        
-                            switch (oNode.tagName.toUpperCase()) {
-            
-                                case _OPTGROUP:
-                                case _OPTION:
-            
-                                    YAHOO.log("Initializing " +  
-                                        oNode.tagName + " node.", "info", this.toString());
-            
-                                    this.addItem(
-                                            new this.ITEM_TYPE(
-                                                    oNode, 
-                                                    { parent: this }
-                                                )
-                                            );
-            
-                                break;
-            
-                            }
-    
-                        }
-        
-                    }
-                    while ((oNode = oNode.nextSibling));
-        
-                break;
-        
-            }
-    
-        }    
-    
-    }
-
-},
-
-
-/**
-* @method _getFirstEnabledItem
-* @description Returns the first enabled item in the menu.
-* @return {YAHOO.widget.MenuItem}
-* @private
-*/
-_getFirstEnabledItem: function () {
-
-    var aItems = this.getItems(),
-        nItems = aItems.length,
-        oItem,
-        returnVal;
-    
-
-    for(var i=0; i<nItems; i++) {
-
-        oItem = aItems[i];
-
-        if (oItem && !oItem.cfg.getProperty(_DISABLED) && oItem.element.style.display != _NONE) {
-
-            returnVal = oItem;
-            break;
-
-        }
-    
-    }
-    
-    return returnVal;
-    
-},
-
-
-/**
-* @method _addItemToGroup
-* @description Adds a menu item to a group.
-* @private
-* @param {Number} p_nGroupIndex Number indicating the group to which the 
-* item belongs.
-* @param {YAHOO.widget.MenuItem} p_oItem Object reference for the MenuItem 
-* instance to be added to the menu.
-* @param {String} p_oItem String specifying the text of the item to be added 
-* to the menu.
-* @param {Object} p_oItem Object literal containing a set of menu item 
-* configuration properties.
-* @param {Number} p_nItemIndex Optional. Number indicating the index at 
-* which the menu item should be added.
-* @return {YAHOO.widget.MenuItem}
-*/
-_addItemToGroup: function (p_nGroupIndex, p_oItem, p_nItemIndex) {
-
-    var oItem,
-        nGroupIndex,
-        aGroup,
-        oGroupItem,
-        bAppend,
-        oNextItemSibling,
-        nItemIndex,
-        returnVal;
-
-
-    function getNextItemSibling(p_aArray, p_nStartIndex) {
-
-        return (p_aArray[p_nStartIndex] || getNextItemSibling(p_aArray, (p_nStartIndex+1)));
-
-    }
-
-
-    if (p_oItem instanceof this.ITEM_TYPE) {
-
-        oItem = p_oItem;
-        oItem.parent = this;
-
-    }
-    else if (Lang.isString(p_oItem)) {
-
-        oItem = new this.ITEM_TYPE(p_oItem, { parent: this });
-    
-    }
-    else if (Lang.isObject(p_oItem)) {
-
-        p_oItem.parent = this;
-
-        oItem = new this.ITEM_TYPE(p_oItem.text, p_oItem);
-
-    }
-
-
-    if (oItem) {
-
-        if (oItem.cfg.getProperty(_SELECTED)) {
-
-            this.activeItem = oItem;
-        
-        }
-
-
-        nGroupIndex = Lang.isNumber(p_nGroupIndex) ? p_nGroupIndex : 0;
-        aGroup = this._getItemGroup(nGroupIndex);
-
-
-
-        if (!aGroup) {
-
-            aGroup = this._createItemGroup(nGroupIndex);
-
-        }
-
-
-        if (Lang.isNumber(p_nItemIndex)) {
-
-            bAppend = (p_nItemIndex >= aGroup.length);            
-
-
-            if (aGroup[p_nItemIndex]) {
-    
-                aGroup.splice(p_nItemIndex, 0, oItem);
-    
-            }
-            else {
-    
-                aGroup[p_nItemIndex] = oItem;
-    
-            }
-
-
-            oGroupItem = aGroup[p_nItemIndex];
-
-            if (oGroupItem) {
-
-                if (bAppend && (!oGroupItem.element.parentNode || 
-                        oGroupItem.element.parentNode.nodeType == 11)) {
-        
-                    this._aListElements[nGroupIndex].appendChild(oGroupItem.element);
-    
-                }
-                else {
-    
-                    oNextItemSibling = getNextItemSibling(aGroup, (p_nItemIndex+1));
-    
-                    if (oNextItemSibling && (!oGroupItem.element.parentNode || 
-                            oGroupItem.element.parentNode.nodeType == 11)) {
-            
-                        this._aListElements[nGroupIndex].insertBefore(
-                                oGroupItem.element, oNextItemSibling.element);
-        
-                    }
-    
-                }
-    
-
-                oGroupItem.parent = this;
-        
-                this._subscribeToItemEvents(oGroupItem);
-    
-                this._configureSubmenu(oGroupItem);
-                
-                this._updateItemProperties(nGroupIndex);
-        
-                YAHOO.log("Item inserted." + 
-                    " Text: " + oGroupItem.cfg.getProperty("text") + ", " + 
-                    " Index: " + oGroupItem.index + ", " + 
-                    " Group Index: " + oGroupItem.groupIndex, "info", this.toString());
-
-                this.itemAddedEvent.fire(oGroupItem);
-                this.changeContentEvent.fire();
-
-                returnVal = oGroupItem;
-    
-            }
-
-        }
-        else {
-    
-            nItemIndex = aGroup.length;
-    
-            aGroup[nItemIndex] = oItem;
-
-            oGroupItem = aGroup[nItemIndex];
-    
-
-            if (oGroupItem) {
-    
-                if (!Dom.isAncestor(this._aListElements[nGroupIndex], oGroupItem.element)) {
-    
-                    this._aListElements[nGroupIndex].appendChild(oGroupItem.element);
-    
-                }
-    
-                oGroupItem.element.setAttribute(_GROUP_INDEX, nGroupIndex);
-                oGroupItem.element.setAttribute(_INDEX, nItemIndex);
-        
-                oGroupItem.parent = this;
-    
-                oGroupItem.index = nItemIndex;
-                oGroupItem.groupIndex = nGroupIndex;
-        
-                this._subscribeToItemEvents(oGroupItem);
-    
-                this._configureSubmenu(oGroupItem);
-    
-                if (nItemIndex === 0) {
-        
-                    Dom.addClass(oGroupItem.element, _FIRST_OF_TYPE);
-        
-                }
-
-                YAHOO.log("Item added." + 
-                    " Text: " + oGroupItem.cfg.getProperty("text") + ", " + 
-                    " Index: " + oGroupItem.index + ", " + 
-                    " Group Index: " + oGroupItem.groupIndex, "info", this.toString());
-        
-
-                this.itemAddedEvent.fire(oGroupItem);
-                this.changeContentEvent.fire();
-
-                returnVal = oGroupItem;
-    
-            }
-    
-        }
-
-    }
-    
-    return returnVal;
-    
-},
-
-
-/**
-* @method _removeItemFromGroupByIndex
-* @description Removes a menu item from a group by index.  Returns the menu 
-* item that was removed.
-* @private
-* @param {Number} p_nGroupIndex Number indicating the group to which the menu 
-* item belongs.
-* @param {Number} p_nItemIndex Number indicating the index of the menu item 
-* to be removed.
-* @return {YAHOO.widget.MenuItem}
-*/
-_removeItemFromGroupByIndex: function (p_nGroupIndex, p_nItemIndex) {
-
-    var nGroupIndex = Lang.isNumber(p_nGroupIndex) ? p_nGroupIndex : 0,
-        aGroup = this._getItemGroup(nGroupIndex),
-        aArray,
-        oItem,
-        oUL;
-
-    if (aGroup) {
-
-        aArray = aGroup.splice(p_nItemIndex, 1);
-        oItem = aArray[0];
-    
-        if (oItem) {
-    
-            // Update the index and className properties of each member        
-            
-            this._updateItemProperties(nGroupIndex);
-    
-            if (aGroup.length === 0) {
-    
-                // Remove the UL
-    
-                oUL = this._aListElements[nGroupIndex];
-    
-                if (this.body && oUL) {
-    
-                    this.body.removeChild(oUL);
-    
-                }
-    
-                // Remove the group from the array of items
-    
-                this._aItemGroups.splice(nGroupIndex, 1);
-    
-    
-                // Remove the UL from the array of ULs
-    
-                this._aListElements.splice(nGroupIndex, 1);
-    
-    
-                /*
-                     Assign the "first-of-type" class to the new first UL 
-                     in the collection
-                */
-    
-                oUL = this._aListElements[0];
-    
-                if (oUL) {
-    
-                    Dom.addClass(oUL, _FIRST_OF_TYPE);
-    
-                }            
-    
-            }
-    
-
-            this.itemRemovedEvent.fire(oItem);
-            this.changeContentEvent.fire();
-    
-        }
-
-    }
-
-	// Return a reference to the item that was removed
-
-	return oItem;
-    
-},
-
-
-/**
-* @method _removeItemFromGroupByValue
-* @description Removes a menu item from a group by reference.  Returns the 
-* menu item that was removed.
-* @private
-* @param {Number} p_nGroupIndex Number indicating the group to which the
-* menu item belongs.
-* @param {YAHOO.widget.MenuItem} p_oItem Object reference for the MenuItem 
-* instance to be removed.
-* @return {YAHOO.widget.MenuItem}
-*/    
-_removeItemFromGroupByValue: function (p_nGroupIndex, p_oItem) {
-
-    var aGroup = this._getItemGroup(p_nGroupIndex),
-        nItems,
-        nItemIndex,
-        returnVal,
-        i;
-
-    if (aGroup) {
-
-        nItems = aGroup.length;
-        nItemIndex = -1;
-    
-        if (nItems > 0) {
-    
-            i = nItems-1;
-        
-            do {
-        
-                if (aGroup[i] == p_oItem) {
-        
-                    nItemIndex = i;
-                    break;    
-        
-                }
-        
-            }
-            while (i--);
-        
-            if (nItemIndex > -1) {
-        
-                returnVal = this._removeItemFromGroupByIndex(p_nGroupIndex, nItemIndex);
-        
-            }
-    
-        }
-    
-    }
-    
-    return returnVal;
-
-},
-
-
-/**
-* @method _updateItemProperties
-* @description Updates the "index," "groupindex," and "className" properties 
-* of the menu items in the specified group. 
-* @private
-* @param {Number} p_nGroupIndex Number indicating the group of items to update.
-*/
-_updateItemProperties: function (p_nGroupIndex) {
-
-    var aGroup = this._getItemGroup(p_nGroupIndex),
-        nItems = aGroup.length,
-        oItem,
-        oLI,
-        i;
-
-
-    if (nItems > 0) {
-
-        i = nItems - 1;
-
-        // Update the index and className properties of each member
-    
-        do {
-
-            oItem = aGroup[i];
-
-            if (oItem) {
-    
-                oLI = oItem.element;
-
-                oItem.index = i;
-                oItem.groupIndex = p_nGroupIndex;
-
-                oLI.setAttribute(_GROUP_INDEX, p_nGroupIndex);
-                oLI.setAttribute(_INDEX, i);
-
-                Dom.removeClass(oLI, _FIRST_OF_TYPE);
-
-            }
-    
-        }
-        while (i--);
-
-
-        if (oLI) {
-
-            Dom.addClass(oLI, _FIRST_OF_TYPE);
-
-        }
-
-    }
-
-},
-
-
-/**
-* @method _createItemGroup
-* @description Creates a new menu item group (array) and its associated 
-* <code>&#60;ul&#62;</code> element. Returns an aray of menu item groups.
-* @private
-* @param {Number} p_nIndex Number indicating the group to create.
-* @return {Array}
-*/
-_createItemGroup: function (p_nIndex) {
-
-    var oUL,
-    	returnVal;
-
-    if (!this._aItemGroups[p_nIndex]) {
-
-        this._aItemGroups[p_nIndex] = [];
-
-        oUL = document.createElement(_UL_LOWERCASE);
-
-        this._aListElements[p_nIndex] = oUL;
-
-        returnVal = this._aItemGroups[p_nIndex];
-
-    }
-    
-    return returnVal;
-
-},
-
-
-/**
-* @method _getItemGroup
-* @description Returns the menu item group at the specified index.
-* @private
-* @param {Number} p_nIndex Number indicating the index of the menu item group 
-* to be retrieved.
-* @return {Array}
-*/
-_getItemGroup: function (p_nIndex) {
-
-    var nIndex = Lang.isNumber(p_nIndex) ? p_nIndex : 0,
-    	aGroups = this._aItemGroups,
-    	returnVal;
-
-	if (nIndex in aGroups) {
-
-	    returnVal = aGroups[nIndex];
-
-	}
-	
-	return returnVal;
-
-},
-
-
-/**
-* @method _configureSubmenu
-* @description Subscribes the menu item's submenu to its parent menu's events.
-* @private
-* @param {YAHOO.widget.MenuItem} p_oItem Object reference for the MenuItem 
-* instance with the submenu to be configured.
-*/
-_configureSubmenu: function (p_oItem) {
-
-    var oSubmenu = p_oItem.cfg.getProperty(_SUBMENU);
-
-    if (oSubmenu) {
-            
-        /*
-            Listen for configuration changes to the parent menu 
-            so they they can be applied to the submenu.
-        */
-
-        this.cfg.configChangedEvent.subscribe(this._onParentMenuConfigChange, oSubmenu, true);
-
-        this.renderEvent.subscribe(this._onParentMenuRender, oSubmenu, true);
-
-    }
-
-},
-
-
-
-
-/**
-* @method _subscribeToItemEvents
-* @description Subscribes a menu to a menu item's event.
-* @private
-* @param {YAHOO.widget.MenuItem} p_oItem Object reference for the MenuItem 
-* instance whose events should be subscribed to.
-*/
-_subscribeToItemEvents: function (p_oItem) {
-
-    p_oItem.destroyEvent.subscribe(this._onMenuItemDestroy, p_oItem, this);
-    p_oItem.cfg.configChangedEvent.subscribe(this._onMenuItemConfigChange, p_oItem, this);
-
-},
-
-
-/**
-* @method _onVisibleChange
-* @description Change event handler for the the menu's "visible" configuration
-* property.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onVisibleChange: function (p_sType, p_aArgs) {
-
-    var bVisible = p_aArgs[0];
-    
-    if (bVisible) {
-
-        Dom.addClass(this.element, _VISIBLE);
-
-    }
-    else {
-
-        Dom.removeClass(this.element, _VISIBLE);
-
-    }
-
-},
-
-
-/**
-* @method _cancelHideDelay
-* @description Cancels the call to "hideMenu."
-* @private
-*/
-_cancelHideDelay: function () {
-
-    var oTimer = this.getRoot()._hideDelayTimer;
-
-    if (oTimer) {
-
-		oTimer.cancel();
-
-    }
-
-},
-
-
-/**
-* @method _execHideDelay
-* @description Hides the menu after the number of milliseconds specified by 
-* the "hidedelay" configuration property.
-* @private
-*/
-_execHideDelay: function () {
-
-    this._cancelHideDelay();
-
-    var oRoot = this.getRoot();
-        
-	oRoot._hideDelayTimer = Lang.later(oRoot.cfg.getProperty(_HIDE_DELAY), this, function () {
-    
-        if (oRoot.activeItem) {
-
-			if (oRoot.hasFocus()) {
-
-				oRoot.activeItem.focus();
-			
-			}
-			
-            oRoot.clearActiveItem();
-
-        }
-
-        if (oRoot == this && !(this instanceof YAHOO.widget.MenuBar) && 
-            this.cfg.getProperty(_POSITION) == _DYNAMIC) {
-
-            this.hide();
-        
-        }
-    
-    });
-
-},
-
-
-/**
-* @method _cancelShowDelay
-* @description Cancels the call to the "showMenu."
-* @private
-*/
-_cancelShowDelay: function () {
-
-    var oTimer = this.getRoot()._showDelayTimer;
-
-    if (oTimer) {
-
-        oTimer.cancel();
-
-    }
-
-},
-
-
-/**
-* @method _execSubmenuHideDelay
-* @description Hides a submenu after the number of milliseconds specified by 
-* the "submenuhidedelay" configuration property have ellapsed.
-* @private
-* @param {YAHOO.widget.Menu} p_oSubmenu Object specifying the submenu that  
-* should be hidden.
-* @param {Number} p_nMouseX The x coordinate of the mouse when it left 
-* the specified submenu's parent menu item.
-* @param {Number} p_nHideDelay The number of milliseconds that should ellapse
-* before the submenu is hidden.
-*/
-_execSubmenuHideDelay: function (p_oSubmenu, p_nMouseX, p_nHideDelay) {
-
-	p_oSubmenu._submenuHideDelayTimer = Lang.later(50, this, function () {
-
-        if (this._nCurrentMouseX > (p_nMouseX + 10)) {
-
-            p_oSubmenu._submenuHideDelayTimer = Lang.later(p_nHideDelay, p_oSubmenu, function () {
-        
-                this.hide();
-
-            });
-
-        }
-        else {
-
-            p_oSubmenu.hide();
-        
-        }
-	
-	});
-
-},
-
-
-
-// Protected methods
-
-
-/**
-* @method _disableScrollHeader
-* @description Disables the header used for scrolling the body of the menu.
-* @protected
-*/
-_disableScrollHeader: function () {
-
-    if (!this._bHeaderDisabled) {
-
-        Dom.addClass(this.header, _TOP_SCROLLBAR_DISABLED);
-        this._bHeaderDisabled = true;
-
-    }
-
-},
-
-
-/**
-* @method _disableScrollFooter
-* @description Disables the footer used for scrolling the body of the menu.
-* @protected
-*/
-_disableScrollFooter: function () {
-
-    if (!this._bFooterDisabled) {
-
-        Dom.addClass(this.footer, _BOTTOM_SCROLLBAR_DISABLED);
-        this._bFooterDisabled = true;
-
-    }
-
-},
-
-
-/**
-* @method _enableScrollHeader
-* @description Enables the header used for scrolling the body of the menu.
-* @protected
-*/
-_enableScrollHeader: function () {
-
-    if (this._bHeaderDisabled) {
-
-        Dom.removeClass(this.header, _TOP_SCROLLBAR_DISABLED);
-        this._bHeaderDisabled = false;
-
-    }
-
-},
-
-
-/**
-* @method _enableScrollFooter
-* @description Enables the footer used for scrolling the body of the menu.
-* @protected
-*/
-_enableScrollFooter: function () {
-
-    if (this._bFooterDisabled) {
-
-        Dom.removeClass(this.footer, _BOTTOM_SCROLLBAR_DISABLED);
-        this._bFooterDisabled = false;
-
-    }
-
-},
-
-
-/**
-* @method _onMouseOver
-* @description "mouseover" event handler for the menu.
-* @protected
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onMouseOver: function (p_sType, p_aArgs) {
-
-    var oEvent = p_aArgs[0],
-        oItem = p_aArgs[1],
-        oTarget = Event.getTarget(oEvent),
-        oRoot = this.getRoot(),
-        oSubmenuHideDelayTimer = this._submenuHideDelayTimer,
-        oParentMenu,
-        nShowDelay,
-        bShowDelay,
-        oActiveItem,
-        oItemCfg,
-        oSubmenu;
-
-
-    var showSubmenu = function () {
-
-        if (this.parent.cfg.getProperty(_SELECTED)) {
-
-            this.show();
-
-        }
-
-    };
-
-
-    if (!this._bStopMouseEventHandlers) {
-    
-		if (!this._bHandledMouseOverEvent && (oTarget == this.element || 
-				Dom.isAncestor(this.element, oTarget))) {
-	
-			// Menu mouseover logic
-	
-			this._nCurrentMouseX = 0;
-	
-			Event.on(this.element, _MOUSEMOVE, this._onMouseMove, this, true);
-
-
-			/*
-				If the mouse is moving from the submenu back to its corresponding menu item, 
-				don't hide the submenu or clear the active MenuItem.
-			*/
-
-			if (!(oItem && Dom.isAncestor(oItem.element, Event.getRelatedTarget(oEvent)))) {
-
-				this.clearActiveItem();
-
-			}
-	
-
-			if (this.parent && oSubmenuHideDelayTimer) {
-	
-				oSubmenuHideDelayTimer.cancel();
-	
-				this.parent.cfg.setProperty(_SELECTED, true);
-	
-				oParentMenu = this.parent.parent;
-	
-				oParentMenu._bHandledMouseOutEvent = true;
-				oParentMenu._bHandledMouseOverEvent = false;
-	
-			}
-	
-	
-			this._bHandledMouseOverEvent = true;
-			this._bHandledMouseOutEvent = false;
-		
-		}
-	
-	
-		if (oItem && !oItem.handledMouseOverEvent && !oItem.cfg.getProperty(_DISABLED) && 
-			(oTarget == oItem.element || Dom.isAncestor(oItem.element, oTarget))) {
-	
-			// Menu Item mouseover logic
-	
-			nShowDelay = this.cfg.getProperty(_SHOW_DELAY);
-			bShowDelay = (nShowDelay > 0);
-	
-	
-			if (bShowDelay) {
-			
-				this._cancelShowDelay();
-			
-			}
-	
-	
-			oActiveItem = this.activeItem;
-		
-			if (oActiveItem) {
-		
-				oActiveItem.cfg.setProperty(_SELECTED, false);
-		
-			}
-	
-	
-			oItemCfg = oItem.cfg;
-		
-			// Select and focus the current menu item
-		
-			oItemCfg.setProperty(_SELECTED, true);
-	
-	
-			if (this.hasFocus() || oRoot._hasFocus) {
-			
-				oItem.focus();
-				
-				oRoot._hasFocus = false;
-			
-			}
-	
-	
-			if (this.cfg.getProperty(_AUTO_SUBMENU_DISPLAY)) {
-	
-				// Show the submenu this menu item
-	
-				oSubmenu = oItemCfg.getProperty(_SUBMENU);
-			
-				if (oSubmenu) {
-			
-					if (bShowDelay) {
-	
-						oRoot._showDelayTimer = 
-							Lang.later(oRoot.cfg.getProperty(_SHOW_DELAY), oSubmenu, showSubmenu);
-			
-					}
-					else {
-	
-						oSubmenu.show();
-	
-					}
-	
-				}
-	
-			}                        
-	
-			oItem.handledMouseOverEvent = true;
-			oItem.handledMouseOutEvent = false;
-	
-		}
-    
-    }
-
-},
-
-
-/**
-* @method _onMouseOut
-* @description "mouseout" event handler for the menu.
-* @protected
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onMouseOut: function (p_sType, p_aArgs) {
-
-    var oEvent = p_aArgs[0],
-        oItem = p_aArgs[1],
-        oRelatedTarget = Event.getRelatedTarget(oEvent),
-        bMovingToSubmenu = false,
-        oItemCfg,
-        oSubmenu,
-        nSubmenuHideDelay,
-        nShowDelay;
-
-
-    if (!this._bStopMouseEventHandlers) {
-    
-		if (oItem && !oItem.cfg.getProperty(_DISABLED)) {
-	
-			oItemCfg = oItem.cfg;
-			oSubmenu = oItemCfg.getProperty(_SUBMENU);
-	
-	
-			if (oSubmenu && (oRelatedTarget == oSubmenu.element ||
-					Dom.isAncestor(oSubmenu.element, oRelatedTarget))) {
-	
-				bMovingToSubmenu = true;
-	
-			}
-	
-	
-			if (!oItem.handledMouseOutEvent && ((oRelatedTarget != oItem.element &&  
-				!Dom.isAncestor(oItem.element, oRelatedTarget)) || bMovingToSubmenu)) {
-	
-				// Menu Item mouseout logic
-	
-				if (!bMovingToSubmenu) {
-	
-					oItem.cfg.setProperty(_SELECTED, false);
-	
-	
-					if (oSubmenu) {
-	
-						nSubmenuHideDelay = this.cfg.getProperty(_SUBMENU_HIDE_DELAY);
-	
-						nShowDelay = this.cfg.getProperty(_SHOW_DELAY);
-	
-						if (!(this instanceof YAHOO.widget.MenuBar) && nSubmenuHideDelay > 0 && 
-							nShowDelay >= nSubmenuHideDelay) {
-	
-							this._execSubmenuHideDelay(oSubmenu, Event.getPageX(oEvent),
-									nSubmenuHideDelay);
-	
-						}
-						else {
-	
-							oSubmenu.hide();
-	
-						}
-	
-					}
-	
-				}
-	
-	
-				oItem.handledMouseOutEvent = true;
-				oItem.handledMouseOverEvent = false;
-		
-			}
-	
-		}
-
-
-		if (!this._bHandledMouseOutEvent && ((oRelatedTarget != this.element &&  
-			!Dom.isAncestor(this.element, oRelatedTarget)) || bMovingToSubmenu)) {
-	
-			// Menu mouseout logic
-	
-			Event.removeListener(this.element, _MOUSEMOVE, this._onMouseMove);
-	
-			this._nCurrentMouseX = Event.getPageX(oEvent);
-	
-			this._bHandledMouseOutEvent = true;
-			this._bHandledMouseOverEvent = false;
-	
-		}
-    
-    }
-
-},
-
-
-/**
-* @method _onMouseMove
-* @description "click" event handler for the menu.
-* @protected
-* @param {Event} p_oEvent Object representing the DOM event object passed 
-* back by the event utility (YAHOO.util.Event).
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-_onMouseMove: function (p_oEvent, p_oMenu) {
-
-    if (!this._bStopMouseEventHandlers) {
-    
-	    this._nCurrentMouseX = Event.getPageX(p_oEvent);
-    
-    }
-
-},
-
-
-/**
-* @method _onClick
-* @description "click" event handler for the menu.
-* @protected
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onClick: function (p_sType, p_aArgs) {
-
-	var oEvent = p_aArgs[0],
-		oItem = p_aArgs[1],
-		bInMenuAnchor = false,
-		oSubmenu,
-		oRoot,
-		sId,
-		sURL,
-		nHashPos,
-		nLen;
-
-
-	var hide = function () {
-
-		/*
-			There is an inconsistency between Firefox 2 for Mac OS X and Firefox 2 Windows 
-			regarding the triggering of the display of the browser's context menu and the 
-			subsequent firing of the "click" event. In Firefox for Windows, when the user 
-			triggers the display of the browser's context menu the "click" event also fires 
-			for the document object, even though the "click" event did not fire for the 
-			element that was the original target of the "contextmenu" event. This is unique 
-			to Firefox on Windows. For all other A-Grade browsers, including Firefox 2 for 
-			Mac OS X, the "click" event doesn't fire for the document object. 
-
-			This bug in Firefox 2 for Windows affects Menu as Menu instances listen for 
-			events at the document level and have an internal "click" event handler they 
-			use to hide themselves when clicked. As a result, in Firefox for Windows a 
-			Menu will hide when the user right clicks on a MenuItem to raise the browser's 
-			default context menu, because its internal "click" event handler ends up 
-			getting called.  The following line fixes this bug.
-		*/
-
-		if (!((UA.gecko && this.platform == _WINDOWS) && oEvent.button > 0)) {
-		
-			oRoot = this.getRoot();
-
-			if (oRoot instanceof YAHOO.widget.MenuBar || 
-				oRoot.cfg.getProperty(_POSITION) == _STATIC) {
-
-				oRoot.clearActiveItem();
-
-			}
-			else {
-
-				oRoot.hide();
-			
-			}
-		
-		}	
-	
-	};
-
-
-	if (oItem) {
-	
-		if (oItem.cfg.getProperty(_DISABLED)) {
-		
-			Event.preventDefault(oEvent);
-
-			hide.call(this);
-
-		}
-		else {
-
-			oSubmenu = oItem.cfg.getProperty(_SUBMENU);
-	
-			
-			/*
-				 Check if the URL of the anchor is pointing to an element that is 
-				 a child of the menu.
-			*/
-			
-			sURL = oItem.cfg.getProperty(_URL);
-
-		
-			if (sURL) {
-	
-				nHashPos = sURL.indexOf(_HASH);
-	
-				nLen = sURL.length;
-	
-	
-				if (nHashPos != -1) {
-	
-					sURL = sURL.substr(nHashPos, nLen);
-		
-					nLen = sURL.length;
-	
-	
-					if (nLen > 1) {
-	
-						sId = sURL.substr(1, nLen);
-	
-						bInMenuAnchor = Dom.isAncestor(this.element, sId);
-						
-					}
-					else if (nLen === 1) {
-	
-						bInMenuAnchor = true;
-					
-					}
-	
-				}
-			
-			}
-
-
-	
-			if (bInMenuAnchor && !oItem.cfg.getProperty(_TARGET)) {
-	
-				Event.preventDefault(oEvent);
-				
-
-				if (UA.webkit) {
-				
-					oItem.focus();
-				
-				}
-				else {
-
-					oItem.focusEvent.fire();
-				
-				}
-			
-			}
-	
-	
-			if (!oSubmenu && !this.cfg.getProperty(_KEEP_OPEN)) {
-	
-				hide.call(this);
-	
-			}
-			
-		}
-	
-	}
-
-},
-
-
-/**
-* @method _onKeyDown
-* @description "keydown" event handler for the menu.
-* @protected
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onKeyDown: function (p_sType, p_aArgs) {
-
-    var oEvent = p_aArgs[0],
-        oItem = p_aArgs[1],
-        oSubmenu,
-        oItemCfg,
-        oParentItem,
-        oRoot,
-        oNextItem,
-        oBody,
-        nBodyScrollTop,
-        nBodyOffsetHeight,
-        aItems,
-        nItems,
-        nNextItemOffsetTop,
-        nScrollTarget,
-        oParentMenu;
-
-
-    /*
-        This function is called to prevent a bug in Firefox.  In Firefox,
-        moving a DOM element into a stationary mouse pointer will cause the 
-        browser to fire mouse events.  This can result in the menu mouse
-        event handlers being called uncessarily, especially when menus are 
-        moved into a stationary mouse pointer as a result of a 
-        key event handler.
-    */
-    function stopMouseEventHandlers() {
-
-        this._bStopMouseEventHandlers = true;
-        
-        Lang.later(10, this, function () {
-
-            this._bStopMouseEventHandlers = false;
-        
-        });
-
-    }
-
-
-    if (oItem && !oItem.cfg.getProperty(_DISABLED)) {
-
-        oItemCfg = oItem.cfg;
-        oParentItem = this.parent;
-
-        switch(oEvent.keyCode) {
-    
-            case 38:    // Up arrow
-            case 40:    // Down arrow
-    
-                oNextItem = (oEvent.keyCode == 38) ? 
-                    oItem.getPreviousEnabledSibling() : 
-                    oItem.getNextEnabledSibling();
-        
-                if (oNextItem) {
-
-                    this.clearActiveItem();
-
-                    oNextItem.cfg.setProperty(_SELECTED, true);
-                    oNextItem.focus();
-
-
-                    if (this.cfg.getProperty(_MAX_HEIGHT) > 0) {
-
-                        oBody = this.body;
-                        nBodyScrollTop = oBody.scrollTop;
-                        nBodyOffsetHeight = oBody.offsetHeight;
-                        aItems = this.getItems();
-                        nItems = aItems.length - 1;
-                        nNextItemOffsetTop = oNextItem.element.offsetTop;
-
-
-                        if (oEvent.keyCode == 40 ) {    // Down
-                       
-                            if (nNextItemOffsetTop >= (nBodyOffsetHeight + nBodyScrollTop)) {
-
-                                oBody.scrollTop = nNextItemOffsetTop - nBodyOffsetHeight;
-
-                            }
-                            else if (nNextItemOffsetTop <= nBodyScrollTop) {
-                            
-                                oBody.scrollTop = 0;
-                            
-                            }
-
-
-                            if (oNextItem == aItems[nItems]) {
-
-                                oBody.scrollTop = oNextItem.element.offsetTop;
-
-                            }
-
-                        }
-                        else {  // Up
-
-                            if (nNextItemOffsetTop <= nBodyScrollTop) {
-
-                                oBody.scrollTop = nNextItemOffsetTop - oNextItem.element.offsetHeight;
-                            
-                            }
-                            else if (nNextItemOffsetTop >= (nBodyScrollTop + nBodyOffsetHeight)) {
-                            
-                                oBody.scrollTop = nNextItemOffsetTop;
-                            
-                            }
-
-
-                            if (oNextItem == aItems[0]) {
-                            
-                                oBody.scrollTop = 0;
-                            
-                            }
-
-                        }
-
-
-                        nBodyScrollTop = oBody.scrollTop;
-                        nScrollTarget = oBody.scrollHeight - oBody.offsetHeight;
-
-                        if (nBodyScrollTop === 0) {
-
-                            this._disableScrollHeader();
-                            this._enableScrollFooter();
-
-                        }
-                        else if (nBodyScrollTop == nScrollTarget) {
-
-                             this._enableScrollHeader();
-                             this._disableScrollFooter();
-
-                        }
-                        else {
-
-                            this._enableScrollHeader();
-                            this._enableScrollFooter();
-
-                        }
-
-                    }
-
-                }
-
-    
-                Event.preventDefault(oEvent);
-
-                stopMouseEventHandlers();
-    
-            break;
-            
-    
-            case 39:    // Right arrow
-    
-                oSubmenu = oItemCfg.getProperty(_SUBMENU);
-    
-                if (oSubmenu) {
-    
-                    if (!oItemCfg.getProperty(_SELECTED)) {
-        
-                        oItemCfg.setProperty(_SELECTED, true);
-        
-                    }
-    
-                    oSubmenu.show();
-                    oSubmenu.setInitialFocus();
-                    oSubmenu.setInitialSelection();
-    
-                }
-                else {
-    
-                    oRoot = this.getRoot();
-                    
-                    if (oRoot instanceof YAHOO.widget.MenuBar) {
-    
-                        oNextItem = oRoot.activeItem.getNextEnabledSibling();
-    
-                        if (oNextItem) {
-                        
-                            oRoot.clearActiveItem();
-    
-                            oNextItem.cfg.setProperty(_SELECTED, true);
-    
-                            oSubmenu = oNextItem.cfg.getProperty(_SUBMENU);
-    
-                            if (oSubmenu) {
-    
-                                oSubmenu.show();
-                                oSubmenu.setInitialFocus();
-                            
-                            }
-                            else {
-    
-                            	oNextItem.focus();
-                            
-                            }
-                        
-                        }
-                    
-                    }
-                
-                }
-    
-    
-                Event.preventDefault(oEvent);
-
-                stopMouseEventHandlers();
-
-            break;
-    
-    
-            case 37:    // Left arrow
-    
-                if (oParentItem) {
-    
-                    oParentMenu = oParentItem.parent;
-    
-                    if (oParentMenu instanceof YAHOO.widget.MenuBar) {
-    
-                        oNextItem = 
-                            oParentMenu.activeItem.getPreviousEnabledSibling();
-    
-                        if (oNextItem) {
-                        
-                            oParentMenu.clearActiveItem();
-    
-                            oNextItem.cfg.setProperty(_SELECTED, true);
-    
-                            oSubmenu = oNextItem.cfg.getProperty(_SUBMENU);
-    
-                            if (oSubmenu) {
-                            
-                                oSubmenu.show();
-								oSubmenu.setInitialFocus();                                
-                            
-                            }
-                            else {
-    
-                            	oNextItem.focus();
-                            
-                            }
-                        
-                        } 
-                    
-                    }
-                    else {
-    
-                        this.hide();
-    
-                        oParentItem.focus();
-                    
-                    }
-    
-                }
-    
-                Event.preventDefault(oEvent);
-
-                stopMouseEventHandlers();
-
-            break;        
-    
-        }
-
-
-    }
-
-
-    if (oEvent.keyCode == 27) { // Esc key
-
-        if (this.cfg.getProperty(_POSITION) == _DYNAMIC) {
-        
-            this.hide();
-
-            if (this.parent) {
-
-                this.parent.focus();
-            
-            }
-
-        }
-        else if (this.activeItem) {
-
-            oSubmenu = this.activeItem.cfg.getProperty(_SUBMENU);
-
-            if (oSubmenu && oSubmenu.cfg.getProperty(_VISIBLE)) {
-            
-                oSubmenu.hide();
-                this.activeItem.focus();
-            
-            }
-            else {
-
-                this.activeItem.blur();
-                this.activeItem.cfg.setProperty(_SELECTED, false);
-        
-            }
-        
-        }
-
-
-        Event.preventDefault(oEvent);
-    
-    }
-    
-},
-
-
-/**
-* @method _onKeyPress
-* @description "keypress" event handler for a Menu instance.
-* @protected
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event 
-* was fired.
-*/
-_onKeyPress: function (p_sType, p_aArgs) {
-    
-    var oEvent = p_aArgs[0];
-
-
-    if (oEvent.keyCode == 40 || oEvent.keyCode == 38) {
-
-        Event.preventDefault(oEvent);
-
-    }
-
-},
-
-
-/**
-* @method _onBlur
-* @description "blur" event handler for a Menu instance.
-* @protected
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event 
-* was fired.
-*/
-_onBlur: function (p_sType, p_aArgs) {
-        
-	if (this._hasFocus) {
-		this._hasFocus = false;
-	}
-
-},
-
-/**
-* @method _onYChange
-* @description "y" event handler for a Menu instance.
-* @protected
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event 
-* was fired.
-*/
-_onYChange: function (p_sType, p_aArgs) {
-
-    var oParent = this.parent,
-        nScrollTop,
-        oIFrame,
-        nY;
-
-
-    if (oParent) {
-
-        nScrollTop = oParent.parent.body.scrollTop;
-
-
-        if (nScrollTop > 0) {
-    
-            nY = (this.cfg.getProperty(_Y) - nScrollTop);
-            
-            Dom.setY(this.element, nY);
-
-            oIFrame = this.iframe;            
-    
-
-            if (oIFrame) {
-    
-                Dom.setY(oIFrame, nY);
-    
-            }
-            
-            this.cfg.setProperty(_Y, nY, true);
-        
-        }
-    
-    }
-
-},
-
-
-/**
-* @method _onScrollTargetMouseOver
-* @description "mouseover" event handler for the menu's "header" and "footer" 
-* elements.  Used to scroll the body of the menu up and down when the 
-* menu's "maxheight" configuration property is set to a value greater than 0.
-* @protected
-* @param {Event} p_oEvent Object representing the DOM event object passed 
-* back by the event utility (YAHOO.util.Event).
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-_onScrollTargetMouseOver: function (p_oEvent, p_oMenu) {
-
-	var oBodyScrollTimer = this._bodyScrollTimer;
-
-
-	if (oBodyScrollTimer) {
-
-		oBodyScrollTimer.cancel();
-
-	}
-
-
-	this._cancelHideDelay();
-
-
-    var oTarget = Event.getTarget(p_oEvent),
-        oBody = this.body,
-        nScrollIncrement = this.cfg.getProperty(_SCROLL_INCREMENT),
-        nScrollTarget,
-        fnScrollFunction;
-
-
-    function scrollBodyDown() {
-
-        var nScrollTop = oBody.scrollTop;
-
-
-        if (nScrollTop < nScrollTarget) {
-
-            oBody.scrollTop = (nScrollTop + nScrollIncrement);
-
-            this._enableScrollHeader();
-
-        }
-        else {
-
-            oBody.scrollTop = nScrollTarget;
-
-            this._bodyScrollTimer.cancel();
-
-            this._disableScrollFooter();
-
-        }
-
-    }
-
-
-    function scrollBodyUp() {
-
-        var nScrollTop = oBody.scrollTop;
-
-
-        if (nScrollTop > 0) {
-
-            oBody.scrollTop = (nScrollTop - nScrollIncrement);
-
-            this._enableScrollFooter();
-
-        }
-        else {
-
-            oBody.scrollTop = 0;
-
-			this._bodyScrollTimer.cancel();
-
-            this._disableScrollHeader();
-
-        }
-
-    }
-
-    
-    if (Dom.hasClass(oTarget, _HD)) {
-
-        fnScrollFunction = scrollBodyUp;
-    
-    }
-    else {
-
-        nScrollTarget = oBody.scrollHeight - oBody.offsetHeight;
-
-        fnScrollFunction = scrollBodyDown;
-    
-    }
-    
-
-    this._bodyScrollTimer = Lang.later(10, this, fnScrollFunction, null, true);
-
-},
-
-
-/**
-* @method _onScrollTargetMouseOut
-* @description "mouseout" event handler for the menu's "header" and "footer" 
-* elements.  Used to stop scrolling the body of the menu up and down when the 
-* menu's "maxheight" configuration property is set to a value greater than 0.
-* @protected
-* @param {Event} p_oEvent Object representing the DOM event object passed 
-* back by the event utility (YAHOO.util.Event).
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-_onScrollTargetMouseOut: function (p_oEvent, p_oMenu) {
-
-	var oBodyScrollTimer = this._bodyScrollTimer;
-
-	if (oBodyScrollTimer) {
-
-		oBodyScrollTimer.cancel();
-
-	}
-	
-    this._cancelHideDelay();
-
-},
-
-
-
-// Private methods
-
-
-/**
-* @method _onInit
-* @description "init" event handler for the menu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onInit: function (p_sType, p_aArgs) {
-
-    this.cfg.subscribeToConfigEvent(_VISIBLE, this._onVisibleChange);
-
-    var bRootMenu = !this.parent,
-        bLazyLoad = this.lazyLoad;
-
-
-    /*
-        Automatically initialize a menu's subtree if:
-
-        1) This is the root menu and lazyload is off
-        
-        2) This is the root menu, lazyload is on, but the menu is 
-           already visible
-
-        3) This menu is a submenu and lazyload is off
-    */
-
-
-
-    if (((bRootMenu && !bLazyLoad) || 
-        (bRootMenu && (this.cfg.getProperty(_VISIBLE) || 
-        this.cfg.getProperty(_POSITION) == _STATIC)) || 
-        (!bRootMenu && !bLazyLoad)) && this.getItemGroups().length === 0) {
-
-        if (this.srcElement) {
-
-            this._initSubTree();
-        
-        }
-
-
-        if (this.itemData) {
-
-            this.addItems(this.itemData);
-
-        }
-    
-    }
-    else if (bLazyLoad) {
-
-        this.cfg.fireQueue();
-    
-    }
-
-},
-
-
-/**
-* @method _onBeforeRender
-* @description "beforerender" event handler for the menu.  Appends all of the 
-* <code>&#60;ul&#62;</code>, <code>&#60;li&#62;</code> and their accompanying 
-* title elements to the body element of the menu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onBeforeRender: function (p_sType, p_aArgs) {
-
-    var oEl = this.element,
-        nListElements = this._aListElements.length,
-        bFirstList = true,
-        i = 0,
-        oUL,
-        oGroupTitle;
-
-    if (nListElements > 0) {
-
-        do {
-
-            oUL = this._aListElements[i];
-
-            if (oUL) {
-
-                if (bFirstList) {
-        
-                    Dom.addClass(oUL, _FIRST_OF_TYPE);
-                    bFirstList = false;
-        
-                }
-
-
-                if (!Dom.isAncestor(oEl, oUL)) {
-
-                    this.appendToBody(oUL);
-
-                }
-
-
-                oGroupTitle = this._aGroupTitleElements[i];
-
-                if (oGroupTitle) {
-
-                    if (!Dom.isAncestor(oEl, oGroupTitle)) {
-
-                        oUL.parentNode.insertBefore(oGroupTitle, oUL);
-
-                    }
-
-
-                    Dom.addClass(oUL, _HAS_TITLE);
-
-                }
-
-            }
-
-            i++;
-
-        }
-        while (i < nListElements);
-
-    }
-
-},
-
-
-/**
-* @method _onRender
-* @description "render" event handler for the menu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onRender: function (p_sType, p_aArgs) {
-
-    if (this.cfg.getProperty(_POSITION) == _DYNAMIC) { 
-
-        if (!this.cfg.getProperty(_VISIBLE)) {
-
-            this.positionOffScreen();
-
-        }
-    
-    }
-
-},
-
-
-
-
-
-/**
-* @method _onBeforeShow
-* @description "beforeshow" event handler for the menu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onBeforeShow: function (p_sType, p_aArgs) {
-
-    var nOptions,
-        n,
-        oSrcElement,
-        oContainer = this.cfg.getProperty(_CONTAINER);
-
-
-    if (this.lazyLoad && this.getItemGroups().length === 0) {
-
-        if (this.srcElement) {
-        
-            this._initSubTree();
-
-        }
-
-
-        if (this.itemData) {
-
-            if (this.parent && this.parent.parent && 
-                this.parent.parent.srcElement && 
-                this.parent.parent.srcElement.tagName.toUpperCase() == 
-                _SELECT) {
-
-                nOptions = this.itemData.length;
-    
-                for(n=0; n<nOptions; n++) {
-
-                    if (this.itemData[n].tagName) {
-
-                        this.addItem((new this.ITEM_TYPE(this.itemData[n])));
-    
-                    }
-    
-                }
-            
-            }
-            else {
-
-                this.addItems(this.itemData);
-            
-            }
-        
-        }
-
-
-        oSrcElement = this.srcElement;
-
-        if (oSrcElement) {
-
-            if (oSrcElement.tagName.toUpperCase() == _SELECT) {
-
-                if (Dom.inDocument(oSrcElement)) {
-
-                    this.render(oSrcElement.parentNode);
-                
-                }
-                else {
-                
-                    this.render(oContainer);
-                
-                }
-
-            }
-            else {
-
-                this.render();
-
-            }
-
-        }
-        else {
-
-            if (this.parent) {
-
-                this.render(this.parent.element);     
-
-            }
-            else {
-
-                this.render(oContainer);
-
-            }                
-
-        }
-
-    }
-
-
-
-    var oParent = this.parent,
-		aAlignment;
-
-
-    if (!oParent && this.cfg.getProperty(_POSITION) == _DYNAMIC) {
-
-        this.cfg.refireEvent(_XY);
-   
-    }
-
-
-	if (oParent) {
-
-		aAlignment = oParent.parent.cfg.getProperty(_SUBMENU_ALIGNMENT);
-		
-		this.cfg.setProperty(_CONTEXT, [oParent.element, aAlignment[0], aAlignment[1]]);
-		this.align();
-	
-	}
-
-},
-
-
-getConstrainedY: function (y) {
-
-	var oMenu = this,
-	
-		aContext = oMenu.cfg.getProperty(_CONTEXT),
-		nInitialMaxHeight = oMenu.cfg.getProperty(_MAX_HEIGHT),
-
-		nMaxHeight,
-
-		oOverlapPositions = {
-
-			"trbr": true,
-			"tlbl": true,
-			"bltl": true,
-			"brtr": true
-
-		},
-
-		bPotentialContextOverlap = (aContext && oOverlapPositions[aContext[1] + aContext[2]]),
-	
-		oMenuEl = oMenu.element,
-		nMenuOffsetHeight = oMenuEl.offsetHeight,
-	
-		nViewportOffset = Overlay.VIEWPORT_OFFSET,
-		viewPortHeight = Dom.getViewportHeight(),
-		scrollY = Dom.getDocumentScrollTop(),
-
-		bCanConstrain = 
-			(oMenu.cfg.getProperty(_MIN_SCROLL_HEIGHT) + nViewportOffset < viewPortHeight),
-
-		nAvailableHeight,
-
-		oContextEl,
-		nContextElY,
-		nContextElHeight,
-
-		bFlipped = false,
-
-		nTopRegionHeight,
-		nBottomRegionHeight,
-
-		topConstraint,
-		bottomConstraint,
-
-		yNew = y;
-		
-
-	var flipVertical = function () {
-
-		var nNewY;
-	
-		// The Menu is below the context element, flip it above
-		if ((oMenu.cfg.getProperty(_Y) - scrollY) > nContextElY) { 
-			nNewY = (nContextElY - nMenuOffsetHeight);
-		}
-		else {	// The Menu is above the context element, flip it below
-			nNewY = (nContextElY + nContextElHeight);
-		}
-
-		oMenu.cfg.setProperty(_Y, (nNewY + scrollY), true);
-		
-		return nNewY;
-	
-	};
-
-
-	/*
-		 Uses the context element's position to calculate the availble height 
-		 above and below it to display its corresponding Menu.
-	*/
-
-	var getDisplayRegionHeight = function () {
-
-		// The Menu is below the context element
-		if ((oMenu.cfg.getProperty(_Y) - scrollY) > nContextElY) {
-			return (nBottomRegionHeight - nViewportOffset);				
-		}
-		else {	// The Menu is above the context element
-			return (nTopRegionHeight - nViewportOffset);				
-		}
-
-	};
-
-
-	/*
-		Sets the Menu's "y" configuration property to the correct value based on its
-		current orientation.
-	*/ 
-
-	var alignY = function () {
-
-		var nNewY;
-
-		if ((oMenu.cfg.getProperty(_Y) - scrollY) > nContextElY) { 
-			nNewY = (nContextElY + nContextElHeight);
-		}
-		else {	
-			nNewY = (nContextElY - oMenuEl.offsetHeight);
-		}
-
-		oMenu.cfg.setProperty(_Y, (nNewY + scrollY), true);
-	
-	};
-
-
-	//	Resets the maxheight of the Menu to the value set by the user
-
-	var resetMaxHeight = function () {
-
-		oMenu._setScrollHeight(this.cfg.getProperty(_MAX_HEIGHT));
-
-		oMenu.hideEvent.unsubscribe(resetMaxHeight);
-	
-	};
-
-
-	/*
-		Trys to place the Menu in the best possible position (either above or 
-		below its corresponding context element).
-	*/
-
-	var setVerticalPosition = function () {
-
-		var nDisplayRegionHeight = getDisplayRegionHeight(),
-			bMenuHasItems = (oMenu.getItems().length > 0),
-			nMenuMinScrollHeight,
-			fnReturnVal,
-			nNewY;
-
-
-		if (nMenuOffsetHeight > nDisplayRegionHeight) {
-
-			nMenuMinScrollHeight = 
-				bMenuHasItems ? oMenu.cfg.getProperty(_MIN_SCROLL_HEIGHT) : nMenuOffsetHeight;
-
-
-			if ((nDisplayRegionHeight > nMenuMinScrollHeight) && bMenuHasItems) {
-				nMaxHeight = nDisplayRegionHeight;
-			}
-			else {
-				nMaxHeight = nInitialMaxHeight;
-			}
-
-
-			oMenu._setScrollHeight(nMaxHeight);
-			oMenu.hideEvent.subscribe(resetMaxHeight);
-			
-
-			// Re-align the Menu since its height has just changed
-			// as a result of the setting of the maxheight property.
-
-			alignY();
-			
-
-			if (nDisplayRegionHeight < nMenuMinScrollHeight) {
-
-				if (bFlipped) {
-	
-					/*
-						 All possible positions and values for the "maxheight" 
-						 configuration property have been tried, but none were 
-						 successful, so fall back to the original size and position.
-					*/
-
-					flipVertical();
-					
-				}
-				else {
-	
-					flipVertical();
-
-					bFlipped = true;
-	
-					fnReturnVal = setVerticalPosition();
-	
-				}
-				
-			}
-		
-		}
-		else if (nMaxHeight && (nMaxHeight != nInitialMaxHeight)) {
-		
-			oMenu._setScrollHeight(nInitialMaxHeight);
-			oMenu.hideEvent.subscribe(resetMaxHeight);
-
-			// Re-align the Menu since its height has just changed
-			// as a result of the setting of the maxheight property.
-
-			alignY();
-		
-		}
-
-		return fnReturnVal;
-
-	};
-
-
-	if (oMenu.cfg.getProperty(_PREVENT_CONTEXT_OVERLAP) && bPotentialContextOverlap) {
-
-		if (bCanConstrain) {
-
-			oContextEl = aContext[0];
-			nContextElHeight = oContextEl.offsetHeight;
-			nContextElY = (Dom.getY(oContextEl) - scrollY);
-
-			nTopRegionHeight = nContextElY;
-			nBottomRegionHeight = (viewPortHeight - (nContextElY + nContextElHeight));
-
-			setVerticalPosition();
-		
-		}
-
-		yNew = oMenu.cfg.getProperty(_Y);
-
-	}
-    else if (!(oMenu instanceof YAHOO.widget.MenuBar) && nMenuOffsetHeight >= viewPortHeight) {
-	
-		nAvailableHeight = (viewPortHeight - (nViewportOffset * 2));
-
-		if (nAvailableHeight > oMenu.cfg.getProperty(_MIN_SCROLL_HEIGHT)) {
-
-			oMenu._setScrollHeight(nAvailableHeight);
-			oMenu.hideEvent.subscribe(resetMaxHeight);
-
-			alignY();
-			
-			yNew = oMenu.cfg.getProperty(_Y);
-		
-		}
-
-    }	
-	else {
-
-		if (bCanConstrain) {
-
-			topConstraint = scrollY + nViewportOffset;
-			bottomConstraint = scrollY + viewPortHeight - nMenuOffsetHeight - nViewportOffset;
-
-			if (y < topConstraint) {
-				yNew  = topConstraint;
-			} else if (y  > bottomConstraint) {
-				yNew  = bottomConstraint;
-			}
-		} else {
-			yNew = nViewportOffset + scrollY;
-		}
-
-	}
-
-	return yNew;
-
-},
-
-
-/**
-* @method _onHide
-* @description "hide" event handler for the menu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onHide: function (p_sType, p_aArgs) {
-
-	if (this.cfg.getProperty(_POSITION) === _DYNAMIC) {
-	
-		this.positionOffScreen();
-	
-	}
-
-},
-
-
-/**
-* @method _onShow
-* @description "show" event handler for the menu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onShow: function (p_sType, p_aArgs) {
-
-    var oParent = this.parent,
-        oParentMenu,
-		oElement,
-		nOffsetWidth,
-		sWidth;        
-
-
-    function disableAutoSubmenuDisplay(p_oEvent) {
-
-        var oTarget;
-
-        if (p_oEvent.type == _MOUSEDOWN || (p_oEvent.type == _KEYDOWN && p_oEvent.keyCode == 27)) {
-
-            /*  
-                Set the "autosubmenudisplay" to "false" if the user
-                clicks outside the menu bar.
-            */
-
-            oTarget = Event.getTarget(p_oEvent);
-
-            if (oTarget != oParentMenu.element || !Dom.isAncestor(oParentMenu.element, oTarget)) {
-
-                oParentMenu.cfg.setProperty(_AUTO_SUBMENU_DISPLAY, false);
-
-                Event.removeListener(document, _MOUSEDOWN, disableAutoSubmenuDisplay);
-                Event.removeListener(document, _KEYDOWN, disableAutoSubmenuDisplay);
-
-            }
-        
-        }
-
-    }
-
-
-	function onSubmenuHide(p_sType, p_aArgs, p_sWidth) {
-	
-		this.cfg.setProperty(_WIDTH, _EMPTY_STRING);
-		this.hideEvent.unsubscribe(onSubmenuHide, p_sWidth);
-	
-	}
-
-
-    if (oParent) {
-
-        oParentMenu = oParent.parent;
-
-
-        if (!oParentMenu.cfg.getProperty(_AUTO_SUBMENU_DISPLAY) && 
-            (oParentMenu instanceof YAHOO.widget.MenuBar || 
-            oParentMenu.cfg.getProperty(_POSITION) == _STATIC)) {
-
-            oParentMenu.cfg.setProperty(_AUTO_SUBMENU_DISPLAY, true);
-
-            Event.on(document, _MOUSEDOWN, disableAutoSubmenuDisplay);                             
-            Event.on(document, _KEYDOWN, disableAutoSubmenuDisplay);
-
-        }
-
-
-		// The following fixes an issue with the selected state of a MenuItem not rendering 
-		// correctly when a submenu is aligned to the left of its parent Menu instance.
-
-		if ((this.cfg.getProperty("x") < oParentMenu.cfg.getProperty("x")) && 
-			(UA.gecko < 1.9) && 
-			!this.cfg.getProperty(_WIDTH)) {
-		
-			oElement = this.element;
-			nOffsetWidth = oElement.offsetWidth;
-			
-			/*
-				Measuring the difference of the offsetWidth before and after
-				setting the "width" style attribute allows us to compute the 
-				about of padding and borders applied to the element, which in 
-				turn allows us to set the "width" property correctly.
-			*/
-			
-			oElement.style.width = nOffsetWidth + _PX;
-			
-			sWidth = (nOffsetWidth - (oElement.offsetWidth - nOffsetWidth)) + _PX;
-			
-			this.cfg.setProperty(_WIDTH, sWidth);
-		
-			this.hideEvent.subscribe(onSubmenuHide, sWidth);
-		
-		}
-
-    }
-
-},
-
-
-/**
-* @method _onBeforeHide
-* @description "beforehide" event handler for the menu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onBeforeHide: function (p_sType, p_aArgs) {
-
-    var oActiveItem = this.activeItem,
-        oRoot = this.getRoot(),
-        oConfig,
-        oSubmenu;
-
-
-    if (oActiveItem) {
-
-        oConfig = oActiveItem.cfg;
-
-        oConfig.setProperty(_SELECTED, false);
-
-        oSubmenu = oConfig.getProperty(_SUBMENU);
-
-        if (oSubmenu) {
-
-            oSubmenu.hide();
-
-        }
-
-    }
-
-
-	/*
-		Focus can get lost in IE when the mouse is moving from a submenu back to its parent Menu.  
-		For this reason, it is necessary to maintain the focused state in a private property 
-		so that the _onMouseOver event handler is able to determined whether or not to set focus
-		to MenuItems as the user is moving the mouse.
-	*/ 
-
-	if (UA.ie && this.cfg.getProperty(_POSITION) === _DYNAMIC && this.parent) {
-
-		oRoot._hasFocus = this.hasFocus();
-	
-	}
-
-
-    if (oRoot == this) {
-
-        oRoot.blur();
-    
-    }
-
-},
-
-
-/**
-* @method _onParentMenuConfigChange
-* @description "configchange" event handler for a submenu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oSubmenu Object representing the submenu that 
-* subscribed to the event.
-*/
-_onParentMenuConfigChange: function (p_sType, p_aArgs, p_oSubmenu) {
-    
-    var sPropertyName = p_aArgs[0][0],
-        oPropertyValue = p_aArgs[0][1];
-
-    switch(sPropertyName) {
-
-        case _IFRAME:
-        case _CONSTRAIN_TO_VIEWPORT:
-        case _HIDE_DELAY:
-        case _SHOW_DELAY:
-        case _SUBMENU_HIDE_DELAY:
-        case _CLICK_TO_HIDE:
-        case _EFFECT:
-        case _CLASSNAME:
-        case _SCROLL_INCREMENT:
-        case _MIN_SCROLL_HEIGHT:
-        case _MONITOR_RESIZE:
-        case _SHADOW:
-        case _PREVENT_CONTEXT_OVERLAP:
-
-            p_oSubmenu.cfg.setProperty(sPropertyName, oPropertyValue);
-                
-        break;
-        
-        case _SUBMENU_ALIGNMENT:
-
-			if (!(this.parent.parent instanceof YAHOO.widget.MenuBar)) {
-		
-				p_oSubmenu.cfg.setProperty(sPropertyName, oPropertyValue);
-		
-			}
-        
-        break;
-        
-    }
-    
-},
-
-
-/**
-* @method _onParentMenuRender
-* @description "render" event handler for a submenu.  Renders a  
-* submenu in response to the firing of its parent's "render" event.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oSubmenu Object representing the submenu that 
-* subscribed to the event.
-*/
-_onParentMenuRender: function (p_sType, p_aArgs, p_oSubmenu) {
-
-    var oParentMenu = p_oSubmenu.parent.parent,
-    	oParentCfg = oParentMenu.cfg,
-
-        oConfig = {
-
-            constraintoviewport: oParentCfg.getProperty(_CONSTRAIN_TO_VIEWPORT),
-
-            xy: [0,0],
-
-            clicktohide: oParentCfg.getProperty(_CLICK_TO_HIDE),
-                
-            effect: oParentCfg.getProperty(_EFFECT),
-
-            showdelay: oParentCfg.getProperty(_SHOW_DELAY),
-            
-            hidedelay: oParentCfg.getProperty(_HIDE_DELAY),
-
-            submenuhidedelay: oParentCfg.getProperty(_SUBMENU_HIDE_DELAY),
-
-            classname: oParentCfg.getProperty(_CLASSNAME),
-            
-            scrollincrement: oParentCfg.getProperty(_SCROLL_INCREMENT),
-            
-            minscrollheight: oParentCfg.getProperty(_MIN_SCROLL_HEIGHT),
-            
-            iframe: oParentCfg.getProperty(_IFRAME),
-            
-            shadow: oParentCfg.getProperty(_SHADOW),
-
-			preventcontextoverlap: oParentCfg.getProperty(_PREVENT_CONTEXT_OVERLAP),
-            
-            monitorresize: oParentCfg.getProperty(_MONITOR_RESIZE)
-
-        },
-        
-        oLI;
-
-
-	
-	if (!(oParentMenu instanceof YAHOO.widget.MenuBar)) {
-
-		oConfig[_SUBMENU_ALIGNMENT] = oParentCfg.getProperty(_SUBMENU_ALIGNMENT);
-
-	}
-
-
-    p_oSubmenu.cfg.applyConfig(oConfig);
-
-
-    if (!this.lazyLoad) {
-
-        oLI = this.parent.element;
-
-        if (this.element.parentNode == oLI) {
-    
-            this.render();
-    
-        }
-        else {
-
-            this.render(oLI);
-    
-        }
-
-    }
-    
-},
-
-
-/**
-* @method _onMenuItemDestroy
-* @description "destroy" event handler for the menu's items.
-* @private
-* @param {String} p_sType String representing the name of the event 
-* that was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item 
-* that fired the event.
-*/
-_onMenuItemDestroy: function (p_sType, p_aArgs, p_oItem) {
-
-    this._removeItemFromGroupByValue(p_oItem.groupIndex, p_oItem);
-
-},
-
-
-/**
-* @method _onMenuItemConfigChange
-* @description "configchange" event handler for the menu's items.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item 
-* that fired the event.
-*/
-_onMenuItemConfigChange: function (p_sType, p_aArgs, p_oItem) {
-
-    var sPropertyName = p_aArgs[0][0],
-        oPropertyValue = p_aArgs[0][1],
-        oSubmenu;
-
-
-    switch(sPropertyName) {
-
-        case _SELECTED:
-
-            if (oPropertyValue === true) {
-
-                this.activeItem = p_oItem;
-            
-            }
-
-        break;
-
-        case _SUBMENU:
-
-            oSubmenu = p_aArgs[0][1];
-
-            if (oSubmenu) {
-
-                this._configureSubmenu(p_oItem);
-
-            }
-
-        break;
-
-    }
-
-},
-
-
-
-// Public event handlers for configuration properties
-
-
-/**
-* @method configVisible
-* @description Event handler for when the "visible" configuration property 
-* the menu changes.
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-configVisible: function (p_sType, p_aArgs, p_oMenu) {
-
-    var bVisible,
-        sDisplay;
-
-    if (this.cfg.getProperty(_POSITION) == _DYNAMIC) {
-
-        Menu.superclass.configVisible.call(this, p_sType, p_aArgs, p_oMenu);
-
-    }
-    else {
-
-        bVisible = p_aArgs[0];
-        sDisplay = Dom.getStyle(this.element, _DISPLAY);
-
-        Dom.setStyle(this.element, _VISIBILITY, _VISIBLE);
-
-        if (bVisible) {
-
-            if (sDisplay != _BLOCK) {
-                this.beforeShowEvent.fire();
-                Dom.setStyle(this.element, _DISPLAY, _BLOCK);
-                this.showEvent.fire();
-            }
-        
-        }
-        else {
-
-			if (sDisplay == _BLOCK) {
-				this.beforeHideEvent.fire();
-				Dom.setStyle(this.element, _DISPLAY, _NONE);
-				this.hideEvent.fire();
-			}
-        
-        }
-
-    }
-
-},
-
-
-/**
-* @method configPosition
-* @description Event handler for when the "position" configuration property 
-* of the menu changes.
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-configPosition: function (p_sType, p_aArgs, p_oMenu) {
-
-    var oElement = this.element,
-        sCSSPosition = p_aArgs[0] == _STATIC ? _STATIC : _ABSOLUTE,
-        oCfg = this.cfg,
-        nZIndex;
-
-
-    Dom.setStyle(oElement, _POSITION, sCSSPosition);
-
-
-    if (sCSSPosition == _STATIC) {
-
-        // Statically positioned menus are visible by default
-        
-        Dom.setStyle(oElement, _DISPLAY, _BLOCK);
-
-        oCfg.setProperty(_VISIBLE, true);
-
-    }
-    else {
-
-        /*
-            Even though the "visible" property is queued to 
-            "false" by default, we need to set the "visibility" property to 
-            "hidden" since Overlay's "configVisible" implementation checks the 
-            element's "visibility" style property before deciding whether 
-            or not to show an Overlay instance.
-        */
-
-        Dom.setStyle(oElement, _VISIBILITY, _HIDDEN);
-    
-    }
-
-  	 
-     if (sCSSPosition == _ABSOLUTE) { 	 
-  	 
-         nZIndex = oCfg.getProperty(_ZINDEX);
-  	 
-         if (!nZIndex || nZIndex === 0) { 	 
-  	 
-             oCfg.setProperty(_ZINDEX, 1); 	 
-  	 
-         } 	 
-  	 
-     }
-
-},
-
-
-/**
-* @method configIframe
-* @description Event handler for when the "iframe" configuration property of 
-* the menu changes.
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-configIframe: function (p_sType, p_aArgs, p_oMenu) {    
-
-    if (this.cfg.getProperty(_POSITION) == _DYNAMIC) {
-
-        Menu.superclass.configIframe.call(this, p_sType, p_aArgs, p_oMenu);
-
-    }
-
-},
-
-
-/**
-* @method configHideDelay
-* @description Event handler for when the "hidedelay" configuration property 
-* of the menu changes.
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-configHideDelay: function (p_sType, p_aArgs, p_oMenu) {
-
-    var nHideDelay = p_aArgs[0],
-        oMouseOutEvent = this.mouseOutEvent,
-        oMouseOverEvent = this.mouseOverEvent,
-        oKeyDownEvent = this.keyDownEvent;
-
-    if (nHideDelay > 0) {
-
-        /*
-            Only assign event handlers once. This way the user change 
-            the value for the hidedelay as many times as they want.
-        */
-
-        if (!this._bHideDelayEventHandlersAssigned) {
-
-            oMouseOutEvent.subscribe(this._execHideDelay);
-            oMouseOverEvent.subscribe(this._cancelHideDelay);
-            oKeyDownEvent.subscribe(this._cancelHideDelay);
-
-            this._bHideDelayEventHandlersAssigned = true;
-        
-        }
-
-    }
-    else {
-
-        oMouseOutEvent.unsubscribe(this._execHideDelay);
-        oMouseOverEvent.unsubscribe(this._cancelHideDelay);
-        oKeyDownEvent.unsubscribe(this._cancelHideDelay);
-
-        this._bHideDelayEventHandlersAssigned = false;
-
-    }
-
-},
-
-
-/**
-* @method configContainer
-* @description Event handler for when the "container" configuration property 
-* of the menu changes.
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-configContainer: function (p_sType, p_aArgs, p_oMenu) {
-
-	var oElement = p_aArgs[0];
-
-	if (Lang.isString(oElement)) {
-
-        this.cfg.setProperty(_CONTAINER, Dom.get(oElement), true);
-
-	}
-
-},
-
-
-/**
-* @method _clearSetWidthFlag
-* @description Change event listener for the "width" configuration property.  This listener is 
-* added when a Menu's "width" configuration property is set by the "_setScrollHeight" method, and 
-* is used to set the "_widthSetForScroll" property to "false" if the "width" configuration property 
-* is changed after it was set by the "_setScrollHeight" method.  If the "_widthSetForScroll" 
-* property is set to "false", and the "_setScrollHeight" method is in the process of tearing down 
-* scrolling functionality, it will maintain the Menu's new width rather than reseting it.
-* @private
-*/
-_clearSetWidthFlag: function () {
-
-	this._widthSetForScroll = false;
-	
-	this.cfg.unsubscribeFromConfigEvent(_WIDTH, this._clearSetWidthFlag);
-
-},
-
-
-/**
-* @method _setScrollHeight
-* @description 
-* @param {String} p_nScrollHeight Number representing the scrolling height of the Menu.
-* @private
-*/
-_setScrollHeight: function (p_nScrollHeight) {
-
-    var nScrollHeight = p_nScrollHeight,
-		bRefireIFrameAndShadow = false,
-		bSetWidth = false,
-        oElement,
-        oBody,
-        oHeader,
-        oFooter,
-		oParent,
-        fnMouseOver,
-        fnMouseOut,
-        nMinScrollHeight,
-        nHeight,
-        nOffsetWidth,
-        sWidth;
-
-
-	if (this.getItems().length > 0) {
-	
-        oElement = this.element;
-        oBody = this.body;
-        oHeader = this.header;
-        oFooter = this.footer;
-        fnMouseOver = this._onScrollTargetMouseOver;
-        fnMouseOut = this._onScrollTargetMouseOut;
-        nMinScrollHeight = this.cfg.getProperty(_MIN_SCROLL_HEIGHT);
-        oParent = this.parent;
-
-
-		if (nScrollHeight > 0 && nScrollHeight < nMinScrollHeight) {
-		
-			nScrollHeight = nMinScrollHeight;
-		
-		}
-
-
-		Dom.setStyle(oBody, _HEIGHT, _EMPTY_STRING);
-		Dom.removeClass(oBody, _YUI_MENU_BODY_SCROLLED);
-		oBody.scrollTop = 0;
-
-
-		/*
-			There is a bug in gecko-based browsers where an element whose 
-			"position" property is set to "absolute" and "overflow" property is set 
-			to "hidden" will not render at the correct width when its 
-			offsetParent's "position" property is also set to "absolute."  It is 
-			possible to work around this bug by specifying a value for the width 
-			property in addition to overflow.
-	
-			In IE it is also necessary to give the Menu a width before the scrollbars are 
-			rendered to prevent the Menu from rendering with a width that is 100% of
-			the browser viewport.
-		*/
-	
-		bSetWidth = ((UA.gecko && oParent && oParent.parent && 
-			oParent.parent.cfg.getProperty(_POSITION) == _DYNAMIC) || UA.ie);
-
-		if (nScrollHeight > 0 && bSetWidth && !this.cfg.getProperty(_WIDTH)) {
-	
-			nOffsetWidth = oElement.offsetWidth;
-	
-			/*
-				Measuring the difference of the offsetWidth before and after
-				setting the "width" style attribute allows us to compute the 
-				about of padding and borders applied to the element, which in 
-				turn allows us to set the "width" property correctly.
-			*/
-			
-			oElement.style.width = nOffsetWidth + _PX;
-	
-			sWidth = (nOffsetWidth - (oElement.offsetWidth - nOffsetWidth)) + _PX;
-
-
-			this.cfg.unsubscribeFromConfigEvent(_WIDTH, this._clearSetWidthFlag);
-
-			YAHOO.log("Setting the \"width\" configuration property to " + sWidth + " for srolling.", 
-				"info", this.toString());
-
-			this.cfg.setProperty(_WIDTH, sWidth);
-
-
-			/*
-				Set a flag (_widthSetForScroll) to maintain some history regarding how the 
-				"width" configuration property was set.  If the "width" configuration property 
-				is set by something other than the "_setScrollHeight" method, it will be 
-				necessary to maintain that new value and not clear the width if scrolling 
-				is turned off.
-			*/
-
-			this._widthSetForScroll = true;
-
-			this.cfg.subscribeToConfigEvent(_WIDTH, this._clearSetWidthFlag);
-	
-		}
-	
-	
-		if (nScrollHeight > 0 && (!oHeader && !oFooter)) {
-	
-			YAHOO.log("Creating header and footer for scrolling.", "info", this.toString());
-	
-			this.setHeader(_NON_BREAKING_SPACE);
-			this.setFooter(_NON_BREAKING_SPACE);
-	
-			oHeader = this.header;
-			oFooter = this.footer;
-	
-			Dom.addClass(oHeader, _TOP_SCROLLBAR);
-			Dom.addClass(oFooter, _BOTTOM_SCROLLBAR);
-			
-			oElement.insertBefore(oHeader, oBody);
-			oElement.appendChild(oFooter);
-		
-		}
-	
-	
-		nHeight = nScrollHeight;
-	
-	
-		if (oHeader && oFooter) {
-			nHeight = (nHeight - (oHeader.offsetHeight + oFooter.offsetHeight));
-		}
-	
-	
-		if ((nHeight > 0) && (oBody.offsetHeight > nScrollHeight)) {
-
-			YAHOO.log("Setting up styles and event handlers for scrolling.", 
-				"info", this.toString());
-	
-			Dom.addClass(oBody, _YUI_MENU_BODY_SCROLLED);
-			Dom.setStyle(oBody, _HEIGHT, (nHeight + _PX));
-
-			if (!this._hasScrollEventHandlers) {
-	
-				Event.on(oHeader, _MOUSEOVER, fnMouseOver, this, true);
-				Event.on(oHeader, _MOUSEOUT, fnMouseOut, this, true);
-				Event.on(oFooter, _MOUSEOVER, fnMouseOver, this, true);
-				Event.on(oFooter, _MOUSEOUT, fnMouseOut, this, true);
-	
-				this._hasScrollEventHandlers = true;
-	
-			}
-	
-			this._disableScrollHeader();
-			this._enableScrollFooter();
-			
-			bRefireIFrameAndShadow = true;			
-	
-		}
-		else if (oHeader && oFooter) {
-
-			YAHOO.log("Removing styles and event handlers for scrolling.", "info", this.toString());
-	
-
-			/*
-				Only clear the the "width" configuration property if it was set the 
-				"_setScrollHeight" method and wasn't changed by some other means after it was set.
-			*/	
-	
-			if (this._widthSetForScroll) {
-	
-				YAHOO.log("Clearing width used for scrolling.", "info", this.toString());
-
-				this._widthSetForScroll = false;
-
-				this.cfg.unsubscribeFromConfigEvent(_WIDTH, this._clearSetWidthFlag);
-	
-				this.cfg.setProperty(_WIDTH, _EMPTY_STRING);
-			
-			}
-	
-	
-			this._enableScrollHeader();
-			this._enableScrollFooter();
-	
-			if (this._hasScrollEventHandlers) {
-	
-				Event.removeListener(oHeader, _MOUSEOVER, fnMouseOver);
-				Event.removeListener(oHeader, _MOUSEOUT, fnMouseOut);
-				Event.removeListener(oFooter, _MOUSEOVER, fnMouseOver);
-				Event.removeListener(oFooter, _MOUSEOUT, fnMouseOut);
-
-				this._hasScrollEventHandlers = false;
-	
-			}
-
-			oElement.removeChild(oHeader);
-			oElement.removeChild(oFooter);
-	
-			this.header = null;
-			this.footer = null;
-			
-			bRefireIFrameAndShadow = true;
-		
-		}
-
-
-		if (bRefireIFrameAndShadow) {
-	
-			this.cfg.refireEvent(_IFRAME);
-			this.cfg.refireEvent(_SHADOW);
-		
-		}
-	
-	}
-
-},
-
-
-/**
-* @method _setMaxHeight
-* @description "renderEvent" handler used to defer the setting of the 
-* "maxheight" configuration property until the menu is rendered in lazy 
-* load scenarios.
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event 
-* was fired.
-* @param {Number} p_nMaxHeight Number representing the value to set for the 
-* "maxheight" configuration property.
-* @private
-*/
-_setMaxHeight: function (p_sType, p_aArgs, p_nMaxHeight) {
-
-    this._setScrollHeight(p_nMaxHeight);
-    this.renderEvent.unsubscribe(this._setMaxHeight);
-
-},
-
-
-/**
-* @method configMaxHeight
-* @description Event handler for when the "maxheight" configuration property of 
-* a Menu changes.
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event 
-* was fired.
-* @param {YAHOO.widget.Menu} p_oMenu The Menu instance fired
-* the event.
-*/
-configMaxHeight: function (p_sType, p_aArgs, p_oMenu) {
-
-	var nMaxHeight = p_aArgs[0];
-
-	if (this.lazyLoad && !this.body && nMaxHeight > 0) {
-	
-		this.renderEvent.subscribe(this._setMaxHeight, nMaxHeight, this);
-
-	}
-	else {
-
-		this._setScrollHeight(nMaxHeight);
-	
-	}
-
-},
-
-
-/**
-* @method configClassName
-* @description Event handler for when the "classname" configuration property of 
-* a menu changes.
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu The Menu instance fired the event.
-*/
-configClassName: function (p_sType, p_aArgs, p_oMenu) {
-
-    var sClassName = p_aArgs[0];
-
-    if (this._sClassName) {
-
-        Dom.removeClass(this.element, this._sClassName);
-
-    }
-
-    Dom.addClass(this.element, sClassName);
-    this._sClassName = sClassName;
-
-},
-
-
-/**
-* @method _onItemAdded
-* @description "itemadded" event handler for a Menu instance.
-* @private
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event 
-* was fired.
-*/
-_onItemAdded: function (p_sType, p_aArgs) {
-
-    var oItem = p_aArgs[0];
-    
-    if (oItem) {
-
-        oItem.cfg.setProperty(_DISABLED, true);
-    
-    }
-
-},
-
-
-/**
-* @method configDisabled
-* @description Event handler for when the "disabled" configuration property of 
-* a menu changes.
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu The Menu instance fired the event.
-*/
-configDisabled: function (p_sType, p_aArgs, p_oMenu) {
-
-    var bDisabled = p_aArgs[0],
-        aItems = this.getItems(),
-        nItems,
-        i;
-
-    if (Lang.isArray(aItems)) {
-
-        nItems = aItems.length;
-    
-        if (nItems > 0) {
-        
-            i = nItems - 1;
-    
-            do {
-    
-                aItems[i].cfg.setProperty(_DISABLED, bDisabled);
-            
-            }
-            while (i--);
-        
-        }
-
-
-        if (bDisabled) {
-
-            this.clearActiveItem(true);
-
-            Dom.addClass(this.element, _DISABLED);
-
-            this.itemAddedEvent.subscribe(this._onItemAdded);
-
-        }
-        else {
-
-            Dom.removeClass(this.element, _DISABLED);
-
-            this.itemAddedEvent.unsubscribe(this._onItemAdded);
-
-        }
-        
-    }
-
-},
-
-
-/**
-* @method configShadow
-* @description Event handler for when the "shadow" configuration property of 
-* a menu changes.
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu The Menu instance fired the event.
-*/
-configShadow: function (p_sType, p_aArgs, p_oMenu) {
-
-    var sizeShadow = function () {
-
-        var oElement = this.element,
-            oShadow = this._shadow;
-    
-        if (oShadow && oElement) {
-
-			// Clear the previous width
-
-			if (oShadow.style.width && oShadow.style.height) {
-			
-				oShadow.style.width = _EMPTY_STRING;
-				oShadow.style.height = _EMPTY_STRING;
-			
-			}
-
-            oShadow.style.width = (oElement.offsetWidth + 6) + _PX;
-            oShadow.style.height = (oElement.offsetHeight + 1) + _PX;
-            
-        }
-    
-    };
-
-
-    var replaceShadow = function () {
-
-        this.element.appendChild(this._shadow);
-
-    };
-
-
-    var addShadowVisibleClass = function () {
-    
-        Dom.addClass(this._shadow, _YUI_MENU_SHADOW_VISIBLE);
-    
-    };
-    
-
-    var removeShadowVisibleClass = function () {
-
-        Dom.removeClass(this._shadow, _YUI_MENU_SHADOW_VISIBLE);
-    
-    };
-
-
-    var createShadow = function () {
-
-        var oShadow = this._shadow,
-            oElement;
-
-        if (!oShadow) {
-
-            oElement = this.element;
-
-
-            if (!m_oShadowTemplate) {
-
-                m_oShadowTemplate = document.createElement(_DIV_LOWERCASE);
-                m_oShadowTemplate.className = _YUI_MENU_SHADOW_YUI_MENU_SHADOW_VISIBLE;
-            
-            }
-
-            oShadow = m_oShadowTemplate.cloneNode(false);
-
-            oElement.appendChild(oShadow);
-            
-            this._shadow = oShadow;
-
-            this.beforeShowEvent.subscribe(addShadowVisibleClass);
-            this.beforeHideEvent.subscribe(removeShadowVisibleClass);
-
-
-            if (UA.ie) {
-        
-                /*
-                     Need to call sizeShadow & syncIframe via setTimeout for 
-                     IE 7 Quirks Mode and IE 6 Standards Mode and Quirks Mode 
-                     or the shadow and iframe shim will not be sized and 
-                     positioned properly.
-                */
-        
-				Lang.later(0, this, function () {
-
-                    sizeShadow.call(this); 
-                    this.syncIframe();
-				
-				});
-
-
-                this.cfg.subscribeToConfigEvent(_WIDTH, sizeShadow);
-                this.cfg.subscribeToConfigEvent(_HEIGHT, sizeShadow);
-                this.cfg.subscribeToConfigEvent(_MAX_HEIGHT, sizeShadow);
-                this.changeContentEvent.subscribe(sizeShadow);
-
-                Module.textResizeEvent.subscribe(sizeShadow, this, true);
-                
-                this.destroyEvent.subscribe(function () {
-                
-                    Module.textResizeEvent.unsubscribe(sizeShadow, this);
-                
-                });
-        
-            }
-
-            this.cfg.subscribeToConfigEvent(_MAX_HEIGHT, replaceShadow);
-
-        }
-
-    };
-
-
-    var onBeforeShow = function () {
-    
-    	if (this._shadow) {
-
-			// If called because the "shadow" event was refired - just append again and resize
-			
-			replaceShadow.call(this);
-			
-			if (UA.ie) {
-				sizeShadow.call(this);
-			}
-    	
-    	}
-    	else {
-    
-        	createShadow.call(this);
-        
-        }
-
-        this.beforeShowEvent.unsubscribe(onBeforeShow);
-    
-    };
-
-
-	var bShadow = p_aArgs[0];
-
-
-    if (bShadow && this.cfg.getProperty(_POSITION) == _DYNAMIC) {
-
-        if (this.cfg.getProperty(_VISIBLE)) {
-
-			if (this._shadow) {
-
-				// If the "shadow" event was refired - just append again and resize
-				
-				replaceShadow.call(this);
-				
-				if (UA.ie) {
-					sizeShadow.call(this);
-				}
-				
-			} 
-			else {
-            	createShadow.call(this);
-            }
-        
-        }
-        else {
-
-            this.beforeShowEvent.subscribe(onBeforeShow);
-        
-        }
-    
-    }
-    
-},
-
-
-
-// Public methods
-
-
-/**
-* @method initEvents
-* @description Initializes the custom events for the menu.
-*/
-initEvents: function () {
-
-	Menu.superclass.initEvents.call(this);
-
-    // Create custom events
-
-	var i = EVENT_TYPES.length - 1,
-		aEventData,
-		oCustomEvent;
-
-
-	do {
-
-		aEventData = EVENT_TYPES[i];
-
-		oCustomEvent = this.createEvent(aEventData[1]);
-		oCustomEvent.signature = CustomEvent.LIST;
-		
-		this[aEventData[0]] = oCustomEvent;
-
-	}
-	while (i--);
-
-},
-
-
-/**
-* @method positionOffScreen
-* @description Positions the menu outside of the boundaries of the browser's 
-* viewport.  Called automatically when a menu is hidden to ensure that 
-* it doesn't force the browser to render uncessary scrollbars.
-*/
-positionOffScreen: function () {
-
-    var oIFrame = this.iframe,
-    	oElement = this.element,
-        sPos = this.OFF_SCREEN_POSITION;
-    
-    oElement.style.top = _EMPTY_STRING;
-    oElement.style.left = _EMPTY_STRING;
-    
-    if (oIFrame) {
-
-		oIFrame.style.top = sPos;
-		oIFrame.style.left = sPos;
-    
-    }
-
-},
-
-
-/**
-* @method getRoot
-* @description Finds the menu's root menu.
-*/
-getRoot: function () {
-
-    var oItem = this.parent,
-        oParentMenu,
-        returnVal;
-
-    if (oItem) {
-
-        oParentMenu = oItem.parent;
-
-        returnVal = oParentMenu ? oParentMenu.getRoot() : this;
-
-    }
-    else {
-    
-        returnVal = this;
-    
-    }
-    
-    return returnVal;
-
-},
-
-
-/**
-* @method toString
-* @description Returns a string representing the menu.
-* @return {String}
-*/
-toString: function () {
-
-    var sReturnVal = _MENU,
-        sId = this.id;
-
-    if (sId) {
-
-        sReturnVal += (_SPACE + sId);
-    
-    }
-
-    return sReturnVal;
-
-},
-
-
-/**
-* @method setItemGroupTitle
-* @description Sets the title of a group of menu items.
-* @param {String} p_sGroupTitle String specifying the title of the group.
-* @param {Number} p_nGroupIndex Optional. Number specifying the group to which
-* the title belongs.
-*/
-setItemGroupTitle: function (p_sGroupTitle, p_nGroupIndex) {
-
-    var nGroupIndex,
-        oTitle,
-        i,
-        nFirstIndex;
-        
-    if (Lang.isString(p_sGroupTitle) && p_sGroupTitle.length > 0) {
-
-        nGroupIndex = Lang.isNumber(p_nGroupIndex) ? p_nGroupIndex : 0;
-        oTitle = this._aGroupTitleElements[nGroupIndex];
-
-
-        if (oTitle) {
-
-            oTitle.innerHTML = p_sGroupTitle;
-            
-        }
-        else {
-
-            oTitle = document.createElement(this.GROUP_TITLE_TAG_NAME);
-                    
-            oTitle.innerHTML = p_sGroupTitle;
-
-            this._aGroupTitleElements[nGroupIndex] = oTitle;
-
-        }
-
-
-        i = this._aGroupTitleElements.length - 1;
-
-        do {
-
-            if (this._aGroupTitleElements[i]) {
-
-                Dom.removeClass(this._aGroupTitleElements[i], _FIRST_OF_TYPE);
-
-                nFirstIndex = i;
-
-            }
-
-        }
-        while (i--);
-
-
-        if (nFirstIndex !== null) {
-
-            Dom.addClass(this._aGroupTitleElements[nFirstIndex], 
-                _FIRST_OF_TYPE);
-
-        }
-
-        this.changeContentEvent.fire();
-
-    }
-
-},
-
-
-
-/**
-* @method addItem
-* @description Appends an item to the menu.
-* @param {YAHOO.widget.MenuItem} p_oItem Object reference for the MenuItem 
-* instance to be added to the menu.
-* @param {String} p_oItem String specifying the text of the item to be added 
-* to the menu.
-* @param {Object} p_oItem Object literal containing a set of menu item 
-* configuration properties.
-* @param {Number} p_nGroupIndex Optional. Number indicating the group to
-* which the item belongs.
-* @return {YAHOO.widget.MenuItem}
-*/
-addItem: function (p_oItem, p_nGroupIndex) {
-
-	return this._addItemToGroup(p_nGroupIndex, p_oItem);
-
-},
-
-
-/**
-* @method addItems
-* @description Adds an array of items to the menu.
-* @param {Array} p_aItems Array of items to be added to the menu.  The array 
-* can contain strings specifying the text for each item to be created, object
-* literals specifying each of the menu item configuration properties, 
-* or MenuItem instances.
-* @param {Number} p_nGroupIndex Optional. Number specifying the group to 
-* which the items belongs.
-* @return {Array}
-*/
-addItems: function (p_aItems, p_nGroupIndex) {
-
-    var nItems,
-        aItems,
-        oItem,
-        i,
-        returnVal;
-
-
-    if (Lang.isArray(p_aItems)) {
-
-        nItems = p_aItems.length;
-        aItems = [];
-
-        for(i=0; i<nItems; i++) {
-
-            oItem = p_aItems[i];
-
-            if (oItem) {
-
-                if (Lang.isArray(oItem)) {
-    
-                    aItems[aItems.length] = this.addItems(oItem, i);
-    
-                }
-                else {
-    
-                    aItems[aItems.length] = this._addItemToGroup(p_nGroupIndex, oItem);
-                
-                }
-
-            }
-    
-        }
-
-
-        if (aItems.length) {
-        
-            returnVal = aItems;
-        
-        }
-
-    }
-
-	return returnVal;
-
-},
-
-
-/**
-* @method insertItem
-* @description Inserts an item into the menu at the specified index.
-* @param {YAHOO.widget.MenuItem} p_oItem Object reference for the MenuItem 
-* instance to be added to the menu.
-* @param {String} p_oItem String specifying the text of the item to be added 
-* to the menu.
-* @param {Object} p_oItem Object literal containing a set of menu item 
-* configuration properties.
-* @param {Number} p_nItemIndex Number indicating the ordinal position at which
-* the item should be added.
-* @param {Number} p_nGroupIndex Optional. Number indicating the group to which 
-* the item belongs.
-* @return {YAHOO.widget.MenuItem}
-*/
-insertItem: function (p_oItem, p_nItemIndex, p_nGroupIndex) {
-    
-	return this._addItemToGroup(p_nGroupIndex, p_oItem, p_nItemIndex);
-
-},
-
-
-/**
-* @method removeItem
-* @description Removes the specified item from the menu.
-* @param {YAHOO.widget.MenuItem} p_oObject Object reference for the MenuItem 
-* instance to be removed from the menu.
-* @param {Number} p_oObject Number specifying the index of the item 
-* to be removed.
-* @param {Number} p_nGroupIndex Optional. Number specifying the group to 
-* which the item belongs.
-* @return {YAHOO.widget.MenuItem}
-*/
-removeItem: function (p_oObject, p_nGroupIndex) {
-
-    var oItem,
-    	returnVal;
-    
-    if (!Lang.isUndefined(p_oObject)) {
-
-        if (p_oObject instanceof YAHOO.widget.MenuItem) {
-
-            oItem = this._removeItemFromGroupByValue(p_nGroupIndex, p_oObject);           
-
-        }
-        else if (Lang.isNumber(p_oObject)) {
-
-            oItem = this._removeItemFromGroupByIndex(p_nGroupIndex, p_oObject);
-
-        }
-
-        if (oItem) {
-
-            oItem.destroy();
-
-            YAHOO.log("Item removed." + 
-                " Text: " + oItem.cfg.getProperty("text") + ", " + 
-                " Index: " + oItem.index + ", " + 
-                " Group Index: " + oItem.groupIndex, "info", this.toString());
-
-            returnVal = oItem;
-
-        }
-
-    }
-
-	return returnVal;
-
-},
-
-
-/**
-* @method getItems
-* @description Returns an array of all of the items in the menu.
-* @return {Array}
-*/
-getItems: function () {
-
-    var aGroups = this._aItemGroups,
-        nGroups,
-        returnVal,
-        aItems = [];
-
-
-    if (Lang.isArray(aGroups)) {
-
-        nGroups = aGroups.length;
-
-        returnVal = ((nGroups == 1) ? aGroups[0] : (Array.prototype.concat.apply(aItems, aGroups)));
-
-    }
-
-	return returnVal;
-
-},
-
-
-/**
-* @method getItemGroups
-* @description Multi-dimensional Array representing the menu items as they 
-* are grouped in the menu.
-* @return {Array}
-*/        
-getItemGroups: function () {
-
-    return this._aItemGroups;
-
-},
-
-
-/**
-* @method getItem
-* @description Returns the item at the specified index.
-* @param {Number} p_nItemIndex Number indicating the ordinal position of the 
-* item to be retrieved.
-* @param {Number} p_nGroupIndex Optional. Number indicating the group to which 
-* the item belongs.
-* @return {YAHOO.widget.MenuItem}
-*/
-getItem: function (p_nItemIndex, p_nGroupIndex) {
-    
-    var aGroup,
-    	returnVal;
-    
-    if (Lang.isNumber(p_nItemIndex)) {
-
-        aGroup = this._getItemGroup(p_nGroupIndex);
-
-        if (aGroup) {
-
-            returnVal = aGroup[p_nItemIndex];
-        
-        }
-
-    }
-    
-    return returnVal;
-    
-},
-
-
-/**
-* @method getSubmenus
-* @description Returns an array of all of the submenus that are immediate 
-* children of the menu.
-* @return {Array}
-*/
-getSubmenus: function () {
-
-    var aItems = this.getItems(),
-        nItems = aItems.length,
-        aSubmenus,
-        oSubmenu,
-        oItem,
-        i;
-
-
-    if (nItems > 0) {
-        
-        aSubmenus = [];
-
-        for(i=0; i<nItems; i++) {
-
-            oItem = aItems[i];
-            
-            if (oItem) {
-
-                oSubmenu = oItem.cfg.getProperty(_SUBMENU);
-                
-                if (oSubmenu) {
-
-                    aSubmenus[aSubmenus.length] = oSubmenu;
-
-                }
-            
-            }
-        
-        }
-    
-    }
-
-    return aSubmenus;
-
-},
-
-
-/**
-* @method clearContent
-* @description Removes all of the content from the menu, including the menu 
-* items, group titles, header and footer.
-*/
-clearContent: function () {
-
-    var aItems = this.getItems(),
-        nItems = aItems.length,
-        oElement = this.element,
-        oBody = this.body,
-        oHeader = this.header,
-        oFooter = this.footer,
-        oItem,
-        oSubmenu,
-        i;
-
-
-    if (nItems > 0) {
-
-        i = nItems - 1;
-
-        do {
-
-            oItem = aItems[i];
-
-            if (oItem) {
-
-                oSubmenu = oItem.cfg.getProperty(_SUBMENU);
-
-                if (oSubmenu) {
-
-                    this.cfg.configChangedEvent.unsubscribe(
-                        this._onParentMenuConfigChange, oSubmenu);
-
-                    this.renderEvent.unsubscribe(this._onParentMenuRender, 
-                        oSubmenu);
-
-                }
-                
-                this.removeItem(oItem, oItem.groupIndex);
-
-            }
-        
-        }
-        while (i--);
-
-    }
-
-
-    if (oHeader) {
-
-        Event.purgeElement(oHeader);
-        oElement.removeChild(oHeader);
-
-    }
-    
-
-    if (oFooter) {
-
-        Event.purgeElement(oFooter);
-        oElement.removeChild(oFooter);
-    }
-
-
-    if (oBody) {
-
-        Event.purgeElement(oBody);
-
-        oBody.innerHTML = _EMPTY_STRING;
-
-    }
-
-    this.activeItem = null;
-
-    this._aItemGroups = [];
-    this._aListElements = [];
-    this._aGroupTitleElements = [];
-
-    this.cfg.setProperty(_WIDTH, null);
-
-},
-
-
-/**
-* @method destroy
-* @description Removes the menu's <code>&#60;div&#62;</code> element 
-* (and accompanying child nodes) from the document.
-*/
-destroy: function () {
-
-    // Remove all items
-
-    this.clearContent();
-
-    this._aItemGroups = null;
-    this._aListElements = null;
-    this._aGroupTitleElements = null;
-
-
-    // Continue with the superclass implementation of this method
-
-    Menu.superclass.destroy.call(this);
-    
-    YAHOO.log("Destroyed.", "info", this.toString());
-
-},
-
-
-/**
-* @method setInitialFocus
-* @description Sets focus to the menu's first enabled item.
-*/
-setInitialFocus: function () {
-
-    var oItem = this._getFirstEnabledItem();
-    
-    if (oItem) {
-
-        oItem.focus();
-
-    }
-    
-},
-
-
-/**
-* @method setInitialSelection
-* @description Sets the "selected" configuration property of the menu's first 
-* enabled item to "true."
-*/
-setInitialSelection: function () {
-
-    var oItem = this._getFirstEnabledItem();
-    
-    if (oItem) {
-    
-        oItem.cfg.setProperty(_SELECTED, true);
-    }        
-
-},
-
-
-/**
-* @method clearActiveItem
-* @description Sets the "selected" configuration property of the menu's active
-* item to "false" and hides the item's submenu.
-* @param {Boolean} p_bBlur Boolean indicating if the menu's active item 
-* should be blurred.  
-*/
-clearActiveItem: function (p_bBlur) {
-
-    if (this.cfg.getProperty(_SHOW_DELAY) > 0) {
-    
-        this._cancelShowDelay();
-    
-    }
-
-
-    var oActiveItem = this.activeItem,
-        oConfig,
-        oSubmenu;
-
-    if (oActiveItem) {
-
-        oConfig = oActiveItem.cfg;
-
-        if (p_bBlur) {
-
-            oActiveItem.blur();
-            
-            this.getRoot()._hasFocus = true;
-        
-        }
-
-        oConfig.setProperty(_SELECTED, false);
-
-        oSubmenu = oConfig.getProperty(_SUBMENU);
-
-
-        if (oSubmenu) {
-
-            oSubmenu.hide();
-
-        }
-
-        this.activeItem = null;  
-
-    }
-
-},
-
-
-/**
-* @method focus
-* @description Causes the menu to receive focus and fires the "focus" event.
-*/
-focus: function () {
-
-    if (!this.hasFocus()) {
-
-        this.setInitialFocus();
-    
-    }
-
-},
-
-
-/**
-* @method blur
-* @description Causes the menu to lose focus and fires the "blur" event.
-*/    
-blur: function () {
-
-    var oItem;
-
-    if (this.hasFocus()) {
-    
-        oItem = MenuManager.getFocusedMenuItem();
-        
-        if (oItem) {
-
-            oItem.blur();
-
-        }
-
-    }
-
-},
-
-
-/**
-* @method hasFocus
-* @description Returns a boolean indicating whether or not the menu has focus.
-* @return {Boolean}
-*/
-hasFocus: function () {
-
-    return (MenuManager.getFocusedMenu() == this.getRoot());
-
-},
-
-
-/**
-* Adds the specified CustomEvent subscriber to the menu and each of 
-* its submenus.
-* @method subscribe
-* @param p_type     {string}   the type, or name of the event
-* @param p_fn       {function} the function to exectute when the event fires
-* @param p_obj      {Object}   An object to be passed along when the event 
-*                              fires
-* @param p_override {boolean}  If true, the obj passed in becomes the 
-*                              execution scope of the listener
-*/
-subscribe: function () {
-
-    function onItemAdded(p_sType, p_aArgs, p_oObject) {
-
-        var oItem = p_aArgs[0],
-            oSubmenu = oItem.cfg.getProperty(_SUBMENU);
-
-        if (oSubmenu) {
-
-            oSubmenu.subscribe.apply(oSubmenu, p_oObject);
-
-        }
-    
-    }
-
-
-    function onSubmenuAdded(p_sType, p_aArgs, p_oObject) { 
-    
-        var oSubmenu = this.cfg.getProperty(_SUBMENU);
-        
-        if (oSubmenu) {
-
-            oSubmenu.subscribe.apply(oSubmenu, p_oObject);
-        
-        }
-    
-    }
-
-
-    Menu.superclass.subscribe.apply(this, arguments);
-    Menu.superclass.subscribe.call(this, _ITEM_ADDED, onItemAdded, arguments);
-
-
-    var aItems = this.getItems(),
-        nItems,
-        oItem,
-        oSubmenu,
-        i;
-        
-
-    if (aItems) {
-
-        nItems = aItems.length;
-        
-        if (nItems > 0) {
-        
-            i = nItems - 1;
-            
-            do {
-
-                oItem = aItems[i];
-                
-                oSubmenu = oItem.cfg.getProperty(_SUBMENU);
-                
-                if (oSubmenu) {
-                
-                    oSubmenu.subscribe.apply(oSubmenu, arguments);
-                
-                }
-                else {
-                
-                    oItem.cfg.subscribeToConfigEvent(_SUBMENU, onSubmenuAdded, arguments);
-                
-                }
-
-            }
-            while (i--);
-        
-        }
-
-    }
-
-},
-
-
-/**
-* @description Initializes the class's configurable properties which can be
-* changed using the menu's Config object ("cfg").
-* @method initDefaultConfig
-*/
-initDefaultConfig: function () {
-
-    Menu.superclass.initDefaultConfig.call(this);
-
-    var oConfig = this.cfg;
-
-
-    // Module documentation overrides
-
-    /**
-    * @config effect
-    * @description Object or array of objects representing the ContainerEffect 
-    * classes that are active for animating the container.  When set this 
-    * property is automatically applied to all submenus.
-    * @type Object
-    * @default null
-    */
-
-    // Overlay documentation overrides
-
-
-    /**
-    * @config x
-    * @description Number representing the absolute x-coordinate position of 
-    * the Menu.  This property is only applied when the "position" 
-    * configuration property is set to dynamic.
-    * @type Number
-    * @default null
-    */
-    
-
-    /**
-    * @config y
-    * @description Number representing the absolute y-coordinate position of 
-    * the Menu.  This property is only applied when the "position" 
-    * configuration property is set to dynamic.
-    * @type Number
-    * @default null
-    */
-
-
-    /**
-    * @description Array of the absolute x and y positions of the Menu.  This 
-    * property is only applied when the "position" configuration property is 
-    * set to dynamic.
-    * @config xy
-    * @type Number[]
-    * @default null
-    */
-    
-
-    /**
-    * @config context
-    * @description Array of context arguments for context-sensitive positioning.  
-    * The format is: [id or element, element corner, context corner]. 
-    * For example, setting this property to ["img1", "tl", "bl"] would 
-    * align the Mnu's top left corner to the context element's 
-    * bottom left corner.  This property is only applied when the "position" 
-    * configuration property is set to dynamic.
-    * @type Array
-    * @default null
-    */
-    
-    
-    /**
-    * @config fixedcenter
-    * @description Boolean indicating if the Menu should be anchored to the 
-    * center of the viewport.  This property is only applied when the 
-    * "position" configuration property is set to dynamic.
-    * @type Boolean
-    * @default false
-    */
-    
-    
-    /**
-    * @config iframe
-    * @description Boolean indicating whether or not the Menu should 
-    * have an IFRAME shim; used to prevent SELECT elements from 
-    * poking through an Overlay instance in IE6.  When set to "true", 
-    * the iframe shim is created when the Menu instance is intially
-    * made visible.  This property is only applied when the "position" 
-    * configuration property is set to dynamic and is automatically applied 
-    * to all submenus.
-    * @type Boolean
-    * @default true for IE6 and below, false for all other browsers.
-    */
-
-
-	// Add configuration attributes
-
-    /*
-        Change the default value for the "visible" configuration 
-        property to "false" by re-adding the property.
-    */
-
-    /**
-    * @config visible
-    * @description Boolean indicating whether or not the menu is visible.  If 
-    * the menu's "position" configuration property is set to "dynamic" (the 
-    * default), this property toggles the menu's <code>&#60;div&#62;</code> 
-    * element's "visibility" style property between "visible" (true) or 
-    * "hidden" (false).  If the menu's "position" configuration property is 
-    * set to "static" this property toggles the menu's 
-    * <code>&#60;div&#62;</code> element's "display" style property 
-    * between "block" (true) or "none" (false).
-    * @default false
-    * @type Boolean
-    */
-    oConfig.addProperty(
-        VISIBLE_CONFIG.key, 
-        {
-            handler: this.configVisible, 
-            value: VISIBLE_CONFIG.value, 
-            validator: VISIBLE_CONFIG.validator
-        }
-     );
-
-
-    /*
-        Change the default value for the "constraintoviewport" configuration 
-        property (inherited by YAHOO.widget.Overlay) to "true" by re-adding the property.
-    */
-
-    /**
-    * @config constraintoviewport
-    * @description Boolean indicating if the menu will try to remain inside 
-    * the boundaries of the size of viewport.  This property is only applied 
-    * when the "position" configuration property is set to dynamic and is 
-    * automatically applied to all submenus.
-    * @default true
-    * @type Boolean
-    */
-    oConfig.addProperty(
-        CONSTRAIN_TO_VIEWPORT_CONFIG.key, 
-        {
-            handler: this.configConstrainToViewport, 
-            value: CONSTRAIN_TO_VIEWPORT_CONFIG.value, 
-            validator: CONSTRAIN_TO_VIEWPORT_CONFIG.validator, 
-            supercedes: CONSTRAIN_TO_VIEWPORT_CONFIG.supercedes 
-        } 
-    );
-
-
-    /*
-        Change the default value for the "preventcontextoverlap" configuration 
-        property (inherited by YAHOO.widget.Overlay) to "true" by re-adding the property.
-    */
-
-	/**
-	* @config preventcontextoverlap
-	* @description Boolean indicating whether or not a submenu should overlap its parent MenuItem 
-	* when the "constraintoviewport" configuration property is set to "true".
-	* @type Boolean
-	* @default true
-	*/
-	oConfig.addProperty(PREVENT_CONTEXT_OVERLAP_CONFIG.key, {
-
-		value: PREVENT_CONTEXT_OVERLAP_CONFIG.value, 
-		validator: PREVENT_CONTEXT_OVERLAP_CONFIG.validator, 
-		supercedes: PREVENT_CONTEXT_OVERLAP_CONFIG.supercedes
-
-	});
-
-
-    /**
-    * @config position
-    * @description String indicating how a menu should be positioned on the 
-    * screen.  Possible values are "static" and "dynamic."  Static menus are 
-    * visible by default and reside in the normal flow of the document 
-    * (CSS position: static).  Dynamic menus are hidden by default, reside 
-    * out of the normal flow of the document (CSS position: absolute), and 
-    * can overlay other elements on the screen.
-    * @default dynamic
-    * @type String
-    */
-    oConfig.addProperty(
-        POSITION_CONFIG.key, 
-        {
-            handler: this.configPosition,
-            value: POSITION_CONFIG.value, 
-            validator: POSITION_CONFIG.validator,
-            supercedes: POSITION_CONFIG.supercedes
-        }
-    );
-
-
-    /**
-    * @config submenualignment
-    * @description Array defining how submenus should be aligned to their 
-    * parent menu item. The format is: [itemCorner, submenuCorner]. By default
-    * a submenu's top left corner is aligned to its parent menu item's top 
-    * right corner.
-    * @default ["tl","tr"]
-    * @type Array
-    */
-    oConfig.addProperty(
-        SUBMENU_ALIGNMENT_CONFIG.key, 
-        { 
-            value: SUBMENU_ALIGNMENT_CONFIG.value,
-            suppressEvent: SUBMENU_ALIGNMENT_CONFIG.suppressEvent
-        }
-    );
-
-
-    /**
-    * @config autosubmenudisplay
-    * @description Boolean indicating if submenus are automatically made 
-    * visible when the user mouses over the menu's items.
-    * @default true
-    * @type Boolean
-    */
-	oConfig.addProperty(
-	   AUTO_SUBMENU_DISPLAY_CONFIG.key, 
-	   { 
-	       value: AUTO_SUBMENU_DISPLAY_CONFIG.value, 
-	       validator: AUTO_SUBMENU_DISPLAY_CONFIG.validator,
-	       suppressEvent: AUTO_SUBMENU_DISPLAY_CONFIG.suppressEvent
-       } 
-    );
-
-
-    /**
-    * @config showdelay
-    * @description Number indicating the time (in milliseconds) that should 
-    * expire before a submenu is made visible when the user mouses over 
-    * the menu's items.  This property is only applied when the "position" 
-    * configuration property is set to dynamic and is automatically applied 
-    * to all submenus.
-    * @default 250
-    * @type Number
-    */
-	oConfig.addProperty(
-	   SHOW_DELAY_CONFIG.key, 
-	   { 
-	       value: SHOW_DELAY_CONFIG.value, 
-	       validator: SHOW_DELAY_CONFIG.validator,
-	       suppressEvent: SHOW_DELAY_CONFIG.suppressEvent
-       } 
-    );
-
-
-    /**
-    * @config hidedelay
-    * @description Number indicating the time (in milliseconds) that should 
-    * expire before the menu is hidden.  This property is only applied when 
-    * the "position" configuration property is set to dynamic and is 
-    * automatically applied to all submenus.
-    * @default 0
-    * @type Number
-    */
-	oConfig.addProperty(
-	   HIDE_DELAY_CONFIG.key, 
-	   { 
-	       handler: this.configHideDelay,
-	       value: HIDE_DELAY_CONFIG.value, 
-	       validator: HIDE_DELAY_CONFIG.validator, 
-	       suppressEvent: HIDE_DELAY_CONFIG.suppressEvent
-       } 
-    );
-
-
-    /**
-    * @config submenuhidedelay
-    * @description Number indicating the time (in milliseconds) that should 
-    * expire before a submenu is hidden when the user mouses out of a menu item 
-    * heading in the direction of a submenu.  The value must be greater than or 
-    * equal to the value specified for the "showdelay" configuration property.
-    * This property is only applied when the "position" configuration property 
-    * is set to dynamic and is automatically applied to all submenus.
-    * @default 250
-    * @type Number
-    */
-	oConfig.addProperty(
-	   SUBMENU_HIDE_DELAY_CONFIG.key, 
-	   { 
-	       value: SUBMENU_HIDE_DELAY_CONFIG.value, 
-	       validator: SUBMENU_HIDE_DELAY_CONFIG.validator,
-	       suppressEvent: SUBMENU_HIDE_DELAY_CONFIG.suppressEvent
-       } 
-    );
-
-
-    /**
-    * @config clicktohide
-    * @description Boolean indicating if the menu will automatically be 
-    * hidden if the user clicks outside of it.  This property is only 
-    * applied when the "position" configuration property is set to dynamic 
-    * and is automatically applied to all submenus.
-    * @default true
-    * @type Boolean
-    */
-    oConfig.addProperty(
-        CLICK_TO_HIDE_CONFIG.key,
-        {
-            value: CLICK_TO_HIDE_CONFIG.value,
-            validator: CLICK_TO_HIDE_CONFIG.validator,
-            suppressEvent: CLICK_TO_HIDE_CONFIG.suppressEvent
-        }
-    );
-
-
-	/**
-	* @config container
-	* @description HTML element reference or string specifying the id 
-	* attribute of the HTML element that the menu's markup should be 
-	* rendered into.
-	* @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-	* level-one-html.html#ID-58190037">HTMLElement</a>|String
-	* @default document.body
-	*/
-	oConfig.addProperty(
-	   CONTAINER_CONFIG.key, 
-	   { 
-	       handler: this.configContainer,
-	       value: document.body,
-           suppressEvent: CONTAINER_CONFIG.suppressEvent
-       } 
-   );
-
-
-    /**
-    * @config scrollincrement
-    * @description Number used to control the scroll speed of a menu.  Used to 
-    * increment the "scrollTop" property of the menu's body by when a menu's 
-    * content is scrolling.  When set this property is automatically applied 
-    * to all submenus.
-    * @default 1
-    * @type Number
-    */
-    oConfig.addProperty(
-        SCROLL_INCREMENT_CONFIG.key, 
-        { 
-            value: SCROLL_INCREMENT_CONFIG.value, 
-            validator: SCROLL_INCREMENT_CONFIG.validator,
-            supercedes: SCROLL_INCREMENT_CONFIG.supercedes,
-            suppressEvent: SCROLL_INCREMENT_CONFIG.suppressEvent
-        }
-    );
-
-
-    /**
-    * @config minscrollheight
-    * @description Number defining the minimum threshold for the "maxheight" 
-    * configuration property.  When set this property is automatically applied 
-    * to all submenus.
-    * @default 90
-    * @type Number
-    */
-    oConfig.addProperty(
-        MIN_SCROLL_HEIGHT_CONFIG.key, 
-        { 
-            value: MIN_SCROLL_HEIGHT_CONFIG.value, 
-            validator: MIN_SCROLL_HEIGHT_CONFIG.validator,
-            supercedes: MIN_SCROLL_HEIGHT_CONFIG.supercedes,
-            suppressEvent: MIN_SCROLL_HEIGHT_CONFIG.suppressEvent
-        }
-    );
-
-
-    /**
-    * @config maxheight
-    * @description Number defining the maximum height (in pixels) for a menu's 
-    * body element (<code>&#60;div class="bd"&#60;</code>).  Once a menu's body 
-    * exceeds this height, the contents of the body are scrolled to maintain 
-    * this value.  This value cannot be set lower than the value of the 
-    * "minscrollheight" configuration property.
-    * @default 0
-    * @type Number
-    */
-    oConfig.addProperty(
-       MAX_HEIGHT_CONFIG.key, 
-       {
-            handler: this.configMaxHeight,
-            value: MAX_HEIGHT_CONFIG.value,
-            validator: MAX_HEIGHT_CONFIG.validator,
-            suppressEvent: MAX_HEIGHT_CONFIG.suppressEvent,
-            supercedes: MAX_HEIGHT_CONFIG.supercedes            
-       } 
-    );
-
-
-    /**
-    * @config classname
-    * @description String representing the CSS class to be applied to the 
-    * menu's root <code>&#60;div&#62;</code> element.  The specified class(es)  
-    * are appended in addition to the default class as specified by the menu's
-    * CSS_CLASS_NAME constant. When set this property is automatically 
-    * applied to all submenus.
-    * @default null
-    * @type String
-    */
-    oConfig.addProperty(
-        CLASS_NAME_CONFIG.key, 
-        { 
-            handler: this.configClassName,
-            value: CLASS_NAME_CONFIG.value, 
-            validator: CLASS_NAME_CONFIG.validator,
-            supercedes: CLASS_NAME_CONFIG.supercedes      
-        }
-    );
-
-
-    /**
-    * @config disabled
-    * @description Boolean indicating if the menu should be disabled.  
-    * Disabling a menu disables each of its items.  (Disabled menu items are 
-    * dimmed and will not respond to user input or fire events.)  Disabled
-    * menus have a corresponding "disabled" CSS class applied to their root
-    * <code>&#60;div&#62;</code> element.
-    * @default false
-    * @type Boolean
-    */
-    oConfig.addProperty(
-        DISABLED_CONFIG.key, 
-        { 
-            handler: this.configDisabled,
-            value: DISABLED_CONFIG.value, 
-            validator: DISABLED_CONFIG.validator,
-            suppressEvent: DISABLED_CONFIG.suppressEvent
-        }
-    );
-
-
-    /**
-    * @config shadow
-    * @description Boolean indicating if the menu should have a shadow.
-    * @default true
-    * @type Boolean
-    */
-    oConfig.addProperty(
-        SHADOW_CONFIG.key, 
-        { 
-            handler: this.configShadow,
-            value: SHADOW_CONFIG.value, 
-            validator: SHADOW_CONFIG.validator
-        }
-    );
-
-
-    /**
-    * @config keepopen
-    * @description Boolean indicating if the menu should remain open when clicked.
-    * @default flase
-    * @type Boolean
-    */
-    oConfig.addProperty(
-        KEEP_OPEN_CONFIG.key, 
-        { 
-            value: KEEP_OPEN_CONFIG.value, 
-            validator: KEEP_OPEN_CONFIG.validator
-        }
-    );
-
-}
-
-}); // END YAHOO.lang.extend
-
-})();
-
-
-
-(function () {
-
-/**
-* Creates an item for a menu.
-* 
-* @param {String} p_oObject String specifying the text of the menu item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-74680021">HTMLLIElement</a>} p_oObject Object specifying 
-* the <code>&#60;li&#62;</code> element of the menu item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-38450247">HTMLOptGroupElement</a>} p_oObject Object 
-* specifying the <code>&#60;optgroup&#62;</code> element of the menu item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-70901257">HTMLOptionElement</a>} p_oObject Object 
-* specifying the <code>&#60;option&#62;</code> element of the menu item.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the menu item. See configuration class documentation 
-* for more details.
-* @class MenuItem
-* @constructor
-*/
-YAHOO.widget.MenuItem = function (p_oObject, p_oConfig) {
-
-    if (p_oObject) {
-
-        if (p_oConfig) {
-    
-            this.parent = p_oConfig.parent;
-            this.value = p_oConfig.value;
-            this.id = p_oConfig.id;
-
-        }
-
-        this.init(p_oObject, p_oConfig);
-
-    }
-
-};
-
-
-var Dom = YAHOO.util.Dom,
-    Module = YAHOO.widget.Module,
-    Menu = YAHOO.widget.Menu,
-    MenuItem = YAHOO.widget.MenuItem,
-    CustomEvent = YAHOO.util.CustomEvent,
-    UA = YAHOO.env.ua,
-    Lang = YAHOO.lang,
-
-	// Private string constants
-
-	_TEXT = "text",
-	_HASH = "#",
-	_HYPHEN = "-",
-	_HELP_TEXT = "helptext",
-	_URL = "url",
-	_TARGET = "target",
-	_EMPHASIS = "emphasis",
-	_STRONG_EMPHASIS = "strongemphasis",
-	_CHECKED = "checked",
-	_SUBMENU = "submenu",
-	_DISABLED = "disabled",
-	_SELECTED = "selected",
-	_HAS_SUBMENU = "hassubmenu",
-	_CHECKED_DISABLED = "checked-disabled",
-	_HAS_SUBMENU_DISABLED = "hassubmenu-disabled",
-	_HAS_SUBMENU_SELECTED = "hassubmenu-selected",
-	_CHECKED_SELECTED = "checked-selected",
-	_ONCLICK = "onclick",
-	_CLASSNAME = "classname",
-	_EMPTY_STRING = "",
-	_OPTION = "OPTION",
-	_OPTGROUP = "OPTGROUP",
-	_LI_UPPERCASE = "LI",
-	_LI_LOWERCASE = "li",
-	_HREF = "href",
-	_ANCHOR_TEMPLATE = "<a href=\"#\"></a>",
-	_SELECT = "SELECT",
-	_DIV = "DIV",
-	_START_HELP_TEXT = "<em class=\"helptext\">",
-	_START_EM = "<em>",
-	_END_EM = "</em>",
-	_START_STRONG = "<strong>",
-	_END_STRONG = "</strong>",
-	_PREVENT_CONTEXT_OVERLAP = "preventcontextoverlap",
-	_OBJ = "obj",
-	_SCOPE = "scope",
-	_NONE = "none",
-	_VISIBLE = "visible",
-	_SPACE = " ",
-	_MENUITEM = "MenuItem",
-
-    EVENT_TYPES = [
-    
-        ["mouseOverEvent", "mouseover"],
-        ["mouseOutEvent", "mouseout"],
-        ["mouseDownEvent", "mousedown"],
-        ["mouseUpEvent", "mouseup"],
-        ["clickEvent", "click"],
-        ["keyPressEvent", "keypress"],
-        ["keyDownEvent", "keydown"],
-        ["keyUpEvent", "keyup"],
-        ["focusEvent", "focus"],
-        ["blurEvent", "blur"],
-        ["destroyEvent", "destroy"]
-    
-    ],
-
-	TEXT_CONFIG = { 
-		key: _TEXT, 
-		value: _EMPTY_STRING, 
-		validator: Lang.isString, 
-		suppressEvent: true 
-	}, 
-
-	HELP_TEXT_CONFIG = { 
-		key: _HELP_TEXT,
-		supercedes: [_TEXT], 
-		suppressEvent: true 
-	},
-
-	URL_CONFIG = { 
-		key: _URL, 
-		value: _HASH, 
-		suppressEvent: true 
-	}, 
-
-	TARGET_CONFIG = { 
-		key: _TARGET, 
-		suppressEvent: true 
-	}, 
-
-	EMPHASIS_CONFIG = { 
-		key: _EMPHASIS, 
-		value: false, 
-		validator: Lang.isBoolean, 
-		suppressEvent: true, 
-		supercedes: [_TEXT]
-	}, 
-
-	STRONG_EMPHASIS_CONFIG = { 
-		key: _STRONG_EMPHASIS, 
-		value: false, 
-		validator: Lang.isBoolean, 
-		suppressEvent: true,
-		supercedes: [_TEXT]
-	},
-
-	CHECKED_CONFIG = { 
-		key: _CHECKED, 
-		value: false, 
-		validator: Lang.isBoolean, 
-		suppressEvent: true, 
-		supercedes: [_DISABLED, _SELECTED]
-	}, 
-
-	SUBMENU_CONFIG = { 
-		key: _SUBMENU,
-		suppressEvent: true,
-		supercedes: [_DISABLED, _SELECTED]
-	},
-
-	DISABLED_CONFIG = { 
-		key: _DISABLED, 
-		value: false, 
-		validator: Lang.isBoolean, 
-		suppressEvent: true,
-		supercedes: [_TEXT, _SELECTED]
-	},
-
-	SELECTED_CONFIG = { 
-		key: _SELECTED, 
-		value: false, 
-		validator: Lang.isBoolean, 
-		suppressEvent: true
-	},
-
-	ONCLICK_CONFIG = { 
-		key: _ONCLICK,
-		suppressEvent: true
-	},
-
-	CLASS_NAME_CONFIG = { 
-		key: _CLASSNAME, 
-		value: null, 
-		validator: Lang.isString,
-		suppressEvent: true
-	},
-    
-    CLASS_NAMES = {},
-    
-    m_oMenuItemTemplate;
-
-
-/**
-* @method getClassNameForState
-* @description Returns a class name for the specified prefix and state.  If the class name does not 
-* yet exist, it is created and stored in the CLASS_NAMES object to increase performance.
-* @private
-* @param {String} prefix String representing the prefix for the class name
-* @param {String} state String representing a state - "disabled," "checked," etc.
-*/  
-var getClassNameForState = function (prefix, state) {
-
-	var oClassNames = CLASS_NAMES[prefix];
-	
-	if (!oClassNames) {
-		CLASS_NAMES[prefix] = {};
-		oClassNames = CLASS_NAMES[prefix];
-	}
-
-
-	var sClassName = oClassNames[state];
-
-	if (!sClassName) {
-		sClassName = prefix + _HYPHEN + state;
-		oClassNames[state] = sClassName;
-	}
-
-	return sClassName;
-	
-};
-
-
-/**
-* @method addClassNameForState
-* @description Applies a class name to a MenuItem instance's &#60;LI&#62; and &#60;A&#62; elements
-* that represents a MenuItem's state - "disabled," "checked," etc.
-* @private
-* @param {String} state String representing a state - "disabled," "checked," etc.
-*/  
-var addClassNameForState = function (state) {
-
-	Dom.addClass(this.element, getClassNameForState(this.CSS_CLASS_NAME, state));
-	Dom.addClass(this._oAnchor, getClassNameForState(this.CSS_LABEL_CLASS_NAME, state));
-
-};
-
-/**
-* @method removeClassNameForState
-* @description Removes a class name from a MenuItem instance's &#60;LI&#62; and &#60;A&#62; elements
-* that represents a MenuItem's state - "disabled," "checked," etc.
-* @private
-* @param {String} state String representing a state - "disabled," "checked," etc.
-*/  
-var removeClassNameForState = function (state) {
-
-	Dom.removeClass(this.element, getClassNameForState(this.CSS_CLASS_NAME, state));
-	Dom.removeClass(this._oAnchor, getClassNameForState(this.CSS_LABEL_CLASS_NAME, state));
-
-};
-
-
-MenuItem.prototype = {
-
-    /**
-    * @property CSS_CLASS_NAME
-    * @description String representing the CSS class(es) to be applied to the 
-    * <code>&#60;li&#62;</code> element of the menu item.
-    * @default "yuimenuitem"
-    * @final
-    * @type String
-    */
-    CSS_CLASS_NAME: "yuimenuitem",
-
-
-    /**
-    * @property CSS_LABEL_CLASS_NAME
-    * @description String representing the CSS class(es) to be applied to the 
-    * menu item's <code>&#60;a&#62;</code> element.
-    * @default "yuimenuitemlabel"
-    * @final
-    * @type String
-    */
-    CSS_LABEL_CLASS_NAME: "yuimenuitemlabel",
-
-
-    /**
-    * @property SUBMENU_TYPE
-    * @description Object representing the type of menu to instantiate and 
-    * add when parsing the child nodes of the menu item's source HTML element.
-    * @final
-    * @type YAHOO.widget.Menu
-    */
-    SUBMENU_TYPE: null,
-
-
-
-    // Private member variables
-    
-
-    /**
-    * @property _oAnchor
-    * @description Object reference to the menu item's 
-    * <code>&#60;a&#62;</code> element.
-    * @default null 
-    * @private
-    * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-48250443">HTMLAnchorElement</a>
-    */
-    _oAnchor: null,
-    
-    
-    /**
-    * @property _oHelpTextEM
-    * @description Object reference to the menu item's help text 
-    * <code>&#60;em&#62;</code> element.
-    * @default null
-    * @private
-    * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-58190037">HTMLElement</a>
-    */
-    _oHelpTextEM: null,
-    
-    
-    /**
-    * @property _oSubmenu
-    * @description Object reference to the menu item's submenu.
-    * @default null
-    * @private
-    * @type YAHOO.widget.Menu
-    */
-    _oSubmenu: null,
-
-
-    /** 
-    * @property _oOnclickAttributeValue
-    * @description Object reference to the menu item's current value for the 
-    * "onclick" configuration attribute.
-    * @default null
-    * @private
-    * @type Object
-    */
-    _oOnclickAttributeValue: null,
-
-
-    /**
-    * @property _sClassName
-    * @description The current value of the "classname" configuration attribute.
-    * @default null
-    * @private
-    * @type String
-    */
-    _sClassName: null,
-
-
-
-    // Public properties
-
-
-	/**
-    * @property constructor
-	* @description Object reference to the menu item's constructor function.
-    * @default YAHOO.widget.MenuItem
-	* @type YAHOO.widget.MenuItem
-	*/
-	constructor: MenuItem,
-
-
-    /**
-    * @property index
-    * @description Number indicating the ordinal position of the menu item in 
-    * its group.
-    * @default null
-    * @type Number
-    */
-    index: null,
-
-
-    /**
-    * @property groupIndex
-    * @description Number indicating the index of the group to which the menu 
-    * item belongs.
-    * @default null
-    * @type Number
-    */
-    groupIndex: null,
-
-
-    /**
-    * @property parent
-    * @description Object reference to the menu item's parent menu.
-    * @default null
-    * @type YAHOO.widget.Menu
-    */
-    parent: null,
-
-
-    /**
-    * @property element
-    * @description Object reference to the menu item's 
-    * <code>&#60;li&#62;</code> element.
-    * @default <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level
-    * -one-html.html#ID-74680021">HTMLLIElement</a>
-    * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-74680021">HTMLLIElement</a>
-    */
-    element: null,
-
-
-    /**
-    * @property srcElement
-    * @description Object reference to the HTML element (either 
-    * <code>&#60;li&#62;</code>, <code>&#60;optgroup&#62;</code> or 
-    * <code>&#60;option&#62;</code>) used create the menu item.
-    * @default <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-    * level-one-html.html#ID-74680021">HTMLLIElement</a>|<a href="http://www.
-    * w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-38450247"
-    * >HTMLOptGroupElement</a>|<a href="http://www.w3.org/TR/2000/WD-DOM-
-    * Level-1-20000929/level-one-html.html#ID-70901257">HTMLOptionElement</a>
-    * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-74680021">HTMLLIElement</a>|<a href="http://www.w3.
-    * org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-38450247">
-    * HTMLOptGroupElement</a>|<a href="http://www.w3.org/TR/2000/WD-DOM-
-    * Level-1-20000929/level-one-html.html#ID-70901257">HTMLOptionElement</a>
-    */
-    srcElement: null,
-
-
-    /**
-    * @property value
-    * @description Object reference to the menu item's value.
-    * @default null
-    * @type Object
-    */
-    value: null,
-
-
-	/**
-    * @property browser
-    * @deprecated Use YAHOO.env.ua
-	* @description String representing the browser.
-	* @type String
-	*/
-	browser: Module.prototype.browser,
-
-
-    /**
-    * @property id
-    * @description Id of the menu item's root <code>&#60;li&#62;</code> 
-    * element.  This property should be set via the constructor using the 
-    * configuration object literal.  If an id is not specified, then one will 
-    * be created using the "generateId" method of the Dom utility.
-    * @default null
-    * @type String
-    */
-    id: null,
-
-
-
-    // Events
-
-
-    /**
-    * @event destroyEvent
-    * @description Fires when the menu item's <code>&#60;li&#62;</code> 
-    * element is removed from its parent <code>&#60;ul&#62;</code> element.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event mouseOverEvent
-    * @description Fires when the mouse has entered the menu item.  Passes 
-    * back the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event mouseOutEvent
-    * @description Fires when the mouse has left the menu item.  Passes back 
-    * the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event mouseDownEvent
-    * @description Fires when the user mouses down on the menu item.  Passes 
-    * back the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event mouseUpEvent
-    * @description Fires when the user releases a mouse button while the mouse 
-    * is over the menu item.  Passes back the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event clickEvent
-    * @description Fires when the user clicks the on the menu item.  Passes 
-    * back the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event keyPressEvent
-    * @description Fires when the user presses an alphanumeric key when the 
-    * menu item has focus.  Passes back the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event keyDownEvent
-    * @description Fires when the user presses a key when the menu item has 
-    * focus.  Passes back the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event keyUpEvent
-    * @description Fires when the user releases a key when the menu item has 
-    * focus.  Passes back the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event focusEvent
-    * @description Fires when the menu item receives focus.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event blurEvent
-    * @description Fires when the menu item loses the input focus.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @method init
-    * @description The MenuItem class's initialization method. This method is 
-    * automatically called by the constructor, and sets up all DOM references 
-    * for pre-existing markup, and creates required markup if it is not 
-    * already present.
-    * @param {String} p_oObject String specifying the text of the menu item.
-    * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-74680021">HTMLLIElement</a>} p_oObject Object specifying 
-    * the <code>&#60;li&#62;</code> element of the menu item.
-    * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-38450247">HTMLOptGroupElement</a>} p_oObject Object 
-    * specifying the <code>&#60;optgroup&#62;</code> element of the menu item.
-    * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-70901257">HTMLOptionElement</a>} p_oObject Object 
-    * specifying the <code>&#60;option&#62;</code> element of the menu item.
-    * @param {Object} p_oConfig Optional. Object literal specifying the 
-    * configuration for the menu item. See configuration class documentation 
-    * for more details.
-    */
-    init: function (p_oObject, p_oConfig) {
-
-
-        if (!this.SUBMENU_TYPE) {
-    
-            this.SUBMENU_TYPE = Menu;
-    
-        }
-
-
-        // Create the config object
-
-        this.cfg = new YAHOO.util.Config(this);
-
-        this.initDefaultConfig();
-
-        var oConfig = this.cfg,
-            sURL = _HASH,
-            oCustomEvent,
-			aEventData,
-            oAnchor,
-            sTarget,
-            sText,
-            sId,
-            i;
-
-
-        if (Lang.isString(p_oObject)) {
-
-            this._createRootNodeStructure();
-
-            oConfig.queueProperty(_TEXT, p_oObject);
-
-        }
-        else if (p_oObject && p_oObject.tagName) {
-
-            switch(p_oObject.tagName.toUpperCase()) {
-
-                case _OPTION:
-
-                    this._createRootNodeStructure();
-
-                    oConfig.queueProperty(_TEXT, p_oObject.text);
-                    oConfig.queueProperty(_DISABLED, p_oObject.disabled);
-
-                    this.value = p_oObject.value;
-
-                    this.srcElement = p_oObject;
-
-                break;
-
-                case _OPTGROUP:
-
-                    this._createRootNodeStructure();
-
-                    oConfig.queueProperty(_TEXT, p_oObject.label);
-                    oConfig.queueProperty(_DISABLED, p_oObject.disabled);
-
-                    this.srcElement = p_oObject;
-
-                    this._initSubTree();
-
-                break;
-
-                case _LI_UPPERCASE:
-
-                    // Get the anchor node (if it exists)
-                    
-                    oAnchor = Dom.getFirstChild(p_oObject);
-
-
-                    // Capture the "text" and/or the "URL"
-
-                    if (oAnchor) {
-
-                        sURL = oAnchor.getAttribute(_HREF, 2);
-                        sTarget = oAnchor.getAttribute(_TARGET);
-
-                        sText = oAnchor.innerHTML;
-
-                    }
-
-                    this.srcElement = p_oObject;
-                    this.element = p_oObject;
-                    this._oAnchor = oAnchor;
-
-                    /*
-                        Set these properties silently to sync up the 
-                        configuration object without making changes to the 
-                        element's DOM
-                    */ 
-
-                    oConfig.setProperty(_TEXT, sText, true);
-                    oConfig.setProperty(_URL, sURL, true);
-                    oConfig.setProperty(_TARGET, sTarget, true);
-
-                    this._initSubTree();
-
-                break;
-
-            }            
-
-        }
-
-
-        if (this.element) {
-
-            sId = (this.srcElement || this.element).id;
-
-            if (!sId) {
-
-                sId = this.id || Dom.generateId();
-
-                this.element.id = sId;
-
-            }
-
-            this.id = sId;
-
-
-            Dom.addClass(this.element, this.CSS_CLASS_NAME);
-            Dom.addClass(this._oAnchor, this.CSS_LABEL_CLASS_NAME);
-
-
-			i = EVENT_TYPES.length - 1;
-
-			do {
-
-				aEventData = EVENT_TYPES[i];
-
-				oCustomEvent = this.createEvent(aEventData[1]);
-				oCustomEvent.signature = CustomEvent.LIST;
-				
-				this[aEventData[0]] = oCustomEvent;
-
-			}
-			while (i--);
-
-
-            if (p_oConfig) {
-    
-                oConfig.applyConfig(p_oConfig);
-    
-            }        
-
-            oConfig.fireQueue();
-
-        }
-
-    },
-
-
-
-    // Private methods
-
-    /**
-    * @method _createRootNodeStructure
-    * @description Creates the core DOM structure for the menu item.
-    * @private
-    */
-    _createRootNodeStructure: function () {
-
-        var oElement,
-            oAnchor;
-
-        if (!m_oMenuItemTemplate) {
-
-            m_oMenuItemTemplate = document.createElement(_LI_LOWERCASE);
-            m_oMenuItemTemplate.innerHTML = _ANCHOR_TEMPLATE;
-
-        }
-
-        oElement = m_oMenuItemTemplate.cloneNode(true);
-        oElement.className = this.CSS_CLASS_NAME;
-
-        oAnchor = oElement.firstChild;
-        oAnchor.className = this.CSS_LABEL_CLASS_NAME;
-        
-        this.element = oElement;
-        this._oAnchor = oAnchor;
-
-    },
-
-
-    /**
-    * @method _initSubTree
-    * @description Iterates the source element's childNodes collection and uses 
-    * the child nodes to instantiate other menus.
-    * @private
-    */
-    _initSubTree: function () {
-
-        var oSrcEl = this.srcElement,
-            oConfig = this.cfg,
-            oNode,
-            aOptions,
-            nOptions,
-            oMenu,
-            n;
-
-
-        if (oSrcEl.childNodes.length > 0) {
-
-            if (this.parent.lazyLoad && this.parent.srcElement && 
-                this.parent.srcElement.tagName.toUpperCase() == _SELECT) {
-
-                oConfig.setProperty(
-                        _SUBMENU, 
-                        { id: Dom.generateId(), itemdata: oSrcEl.childNodes }
-                    );
-
-            }
-            else {
-
-                oNode = oSrcEl.firstChild;
-                aOptions = [];
-    
-                do {
-    
-                    if (oNode && oNode.tagName) {
-    
-                        switch(oNode.tagName.toUpperCase()) {
-                
-                            case _DIV:
-                
-                                oConfig.setProperty(_SUBMENU, oNode);
-                
-                            break;
-         
-                            case _OPTION:
-        
-                                aOptions[aOptions.length] = oNode;
-        
-                            break;
-               
-                        }
-                    
-                    }
-                
-                }        
-                while((oNode = oNode.nextSibling));
-    
-    
-                nOptions = aOptions.length;
-    
-                if (nOptions > 0) {
-    
-                    oMenu = new this.SUBMENU_TYPE(Dom.generateId());
-                    
-                    oConfig.setProperty(_SUBMENU, oMenu);
-    
-                    for(n=0; n<nOptions; n++) {
-        
-                        oMenu.addItem((new oMenu.ITEM_TYPE(aOptions[n])));
-        
-                    }
-        
-                }
-            
-            }
-
-        }
-
-    },
-
-
-
-    // Event handlers for configuration properties
-
-
-    /**
-    * @method configText
-    * @description Event handler for when the "text" configuration property of 
-    * the menu item changes.
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */
-    configText: function (p_sType, p_aArgs, p_oItem) {
-
-        var sText = p_aArgs[0],
-            oConfig = this.cfg,
-            oAnchor = this._oAnchor,
-            sHelpText = oConfig.getProperty(_HELP_TEXT),
-            sHelpTextHTML = _EMPTY_STRING,
-            sEmphasisStartTag = _EMPTY_STRING,
-            sEmphasisEndTag = _EMPTY_STRING;
-
-
-        if (sText) {
-
-
-            if (sHelpText) {
-                    
-                sHelpTextHTML = _START_HELP_TEXT + sHelpText + _END_EM;
-            
-            }
-
-
-            if (oConfig.getProperty(_EMPHASIS)) {
-
-                sEmphasisStartTag = _START_EM;
-                sEmphasisEndTag = _END_EM;
-
-            }
-
-
-            if (oConfig.getProperty(_STRONG_EMPHASIS)) {
-
-                sEmphasisStartTag = _START_STRONG;
-                sEmphasisEndTag = _END_STRONG;
-            
-            }
-
-
-            oAnchor.innerHTML = (sEmphasisStartTag + sText + sEmphasisEndTag + sHelpTextHTML);
-
-        }
-
-    },
-
-
-    /**
-    * @method configHelpText
-    * @description Event handler for when the "helptext" configuration property 
-    * of the menu item changes.
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configHelpText: function (p_sType, p_aArgs, p_oItem) {
-
-        this.cfg.refireEvent(_TEXT);
-
-    },
-
-
-    /**
-    * @method configURL
-    * @description Event handler for when the "url" configuration property of 
-    * the menu item changes.
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configURL: function (p_sType, p_aArgs, p_oItem) {
-
-        var sURL = p_aArgs[0];
-
-        if (!sURL) {
-
-            sURL = _HASH;
-
-        }
-
-        var oAnchor = this._oAnchor;
-
-        if (UA.opera) {
-
-            oAnchor.removeAttribute(_HREF);
-        
-        }
-
-        oAnchor.setAttribute(_HREF, sURL);
-
-    },
-
-
-    /**
-    * @method configTarget
-    * @description Event handler for when the "target" configuration property 
-    * of the menu item changes.  
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configTarget: function (p_sType, p_aArgs, p_oItem) {
-
-        var sTarget = p_aArgs[0],
-            oAnchor = this._oAnchor;
-
-        if (sTarget && sTarget.length > 0) {
-
-            oAnchor.setAttribute(_TARGET, sTarget);
-
-        }
-        else {
-
-            oAnchor.removeAttribute(_TARGET);
-        
-        }
-
-    },
-
-
-    /**
-    * @method configEmphasis
-    * @description Event handler for when the "emphasis" configuration property
-    * of the menu item changes.
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configEmphasis: function (p_sType, p_aArgs, p_oItem) {
-
-        var bEmphasis = p_aArgs[0],
-            oConfig = this.cfg;
-
-
-        if (bEmphasis && oConfig.getProperty(_STRONG_EMPHASIS)) {
-
-            oConfig.setProperty(_STRONG_EMPHASIS, false);
-
-        }
-
-
-        oConfig.refireEvent(_TEXT);
-
-    },
-
-
-    /**
-    * @method configStrongEmphasis
-    * @description Event handler for when the "strongemphasis" configuration 
-    * property of the menu item changes.
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configStrongEmphasis: function (p_sType, p_aArgs, p_oItem) {
-
-        var bStrongEmphasis = p_aArgs[0],
-            oConfig = this.cfg;
-
-
-        if (bStrongEmphasis && oConfig.getProperty(_EMPHASIS)) {
-
-            oConfig.setProperty(_EMPHASIS, false);
-
-        }
-
-        oConfig.refireEvent(_TEXT);
-
-    },
-
-
-    /**
-    * @method configChecked
-    * @description Event handler for when the "checked" configuration property 
-    * of the menu item changes. 
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configChecked: function (p_sType, p_aArgs, p_oItem) {
-
-        var bChecked = p_aArgs[0],
-            oConfig = this.cfg;
-
-
-        if (bChecked) {
-
-            addClassNameForState.call(this, _CHECKED);
-
-        }
-        else {
-
-            removeClassNameForState.call(this, _CHECKED);
-        }
-
-
-        oConfig.refireEvent(_TEXT);
-
-
-        if (oConfig.getProperty(_DISABLED)) {
-
-            oConfig.refireEvent(_DISABLED);
-
-        }
-
-
-        if (oConfig.getProperty(_SELECTED)) {
-
-            oConfig.refireEvent(_SELECTED);
-
-        }
-
-    },
-
-
-
-    /**
-    * @method configDisabled
-    * @description Event handler for when the "disabled" configuration property 
-    * of the menu item changes. 
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configDisabled: function (p_sType, p_aArgs, p_oItem) {
-
-        var bDisabled = p_aArgs[0],
-            oConfig = this.cfg,
-            oSubmenu = oConfig.getProperty(_SUBMENU),
-            bChecked = oConfig.getProperty(_CHECKED);
-
-
-        if (bDisabled) {
-
-            if (oConfig.getProperty(_SELECTED)) {
-
-                oConfig.setProperty(_SELECTED, false);
-
-            }
-
-
-			addClassNameForState.call(this, _DISABLED);
-
-
-            if (oSubmenu) {
-
-				addClassNameForState.call(this, _HAS_SUBMENU_DISABLED);
-            
-            }
-            
-
-            if (bChecked) {
-
-				addClassNameForState.call(this, _CHECKED_DISABLED);
-
-            }
-
-        }
-        else {
-
-			removeClassNameForState.call(this, _DISABLED);
-
-
-            if (oSubmenu) {
-
-				removeClassNameForState.call(this, _HAS_SUBMENU_DISABLED);
-            
-            }
-            
-
-            if (bChecked) {
-
-				removeClassNameForState.call(this, _CHECKED_DISABLED);
-
-            }
-
-        }
-
-    },
-
-
-    /**
-    * @method configSelected
-    * @description Event handler for when the "selected" configuration property 
-    * of the menu item changes. 
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configSelected: function (p_sType, p_aArgs, p_oItem) {
-
-        var oConfig = this.cfg,
-        	oAnchor = this._oAnchor,
-        	
-            bSelected = p_aArgs[0],
-            bChecked = oConfig.getProperty(_CHECKED),
-            oSubmenu = oConfig.getProperty(_SUBMENU);
-
-
-        if (UA.opera) {
-
-            oAnchor.blur();
-        
-        }
-
-
-        if (bSelected && !oConfig.getProperty(_DISABLED)) {
-
-			addClassNameForState.call(this, _SELECTED);
-
-
-            if (oSubmenu) {
-
-				addClassNameForState.call(this, _HAS_SUBMENU_SELECTED);
-            
-            }
-
-
-            if (bChecked) {
-
-				addClassNameForState.call(this, _CHECKED_SELECTED);
-
-            }
-
-        }
-        else {
-
-			removeClassNameForState.call(this, _SELECTED);
-
-
-            if (oSubmenu) {
-
-				removeClassNameForState.call(this, _HAS_SUBMENU_SELECTED);
-            
-            }
-
-
-            if (bChecked) {
-
-				removeClassNameForState.call(this, _CHECKED_SELECTED);
-
-            }
-
-        }
-
-
-        if (this.hasFocus() && UA.opera) {
-        
-            oAnchor.focus();
-        
-        }
-
-    },
-
-
-    /**
-    * @method _onSubmenuBeforeHide
-    * @description "beforehide" Custom Event handler for a submenu.
-    * @private
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    */
-    _onSubmenuBeforeHide: function (p_sType, p_aArgs) {
-
-        var oItem = this.parent,
-            oMenu;
-
-        function onHide() {
-
-            oItem._oAnchor.blur();
-            oMenu.beforeHideEvent.unsubscribe(onHide);
-        
-        }
-
-
-        if (oItem.hasFocus()) {
-
-            oMenu = oItem.parent;
-
-            oMenu.beforeHideEvent.subscribe(onHide);
-        
-        }
-    
-    },
-
-
-    /**
-    * @method configSubmenu
-    * @description Event handler for when the "submenu" configuration property 
-    * of the menu item changes. 
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */
-    configSubmenu: function (p_sType, p_aArgs, p_oItem) {
-
-        var oSubmenu = p_aArgs[0],
-            oConfig = this.cfg,
-            bLazyLoad = this.parent && this.parent.lazyLoad,
-            oMenu,
-            sSubmenuId,
-            oSubmenuConfig;
-
-
-        if (oSubmenu) {
-
-            if (oSubmenu instanceof Menu) {
-
-                oMenu = oSubmenu;
-                oMenu.parent = this;
-                oMenu.lazyLoad = bLazyLoad;
-
-            }
-            else if (Lang.isObject(oSubmenu) && oSubmenu.id && !oSubmenu.nodeType) {
-
-                sSubmenuId = oSubmenu.id;
-                oSubmenuConfig = oSubmenu;
-
-                oSubmenuConfig.lazyload = bLazyLoad;
-                oSubmenuConfig.parent = this;
-
-                oMenu = new this.SUBMENU_TYPE(sSubmenuId, oSubmenuConfig);
-
-
-                // Set the value of the property to the Menu instance
-
-                oConfig.setProperty(_SUBMENU, oMenu, true);
-
-            }
-            else {
-
-                oMenu = new this.SUBMENU_TYPE(oSubmenu, { lazyload: bLazyLoad, parent: this });
-
-
-                // Set the value of the property to the Menu instance
-                
-                oConfig.setProperty(_SUBMENU, oMenu, true);
-
-            }
-
-
-            if (oMenu) {
-
-				oMenu.cfg.setProperty(_PREVENT_CONTEXT_OVERLAP, true);
-
-                addClassNameForState.call(this, _HAS_SUBMENU);
-
-
-				if (oConfig.getProperty(_URL) === _HASH) {
-				
-					oConfig.setProperty(_URL, (_HASH + oMenu.id));
-				
-				}
-
-
-                this._oSubmenu = oMenu;
-
-
-                if (UA.opera) {
-                
-                    oMenu.beforeHideEvent.subscribe(this._onSubmenuBeforeHide);               
-                
-                }
-            
-            }
-
-        }
-        else {
-
-			removeClassNameForState.call(this, _HAS_SUBMENU);
-
-            if (this._oSubmenu) {
-
-                this._oSubmenu.destroy();
-
-            }
-
-        }
-
-
-        if (oConfig.getProperty(_DISABLED)) {
-
-            oConfig.refireEvent(_DISABLED);
-
-        }
-
-
-        if (oConfig.getProperty(_SELECTED)) {
-
-            oConfig.refireEvent(_SELECTED);
-
-        }
-
-    },
-
-
-    /**
-    * @method configOnClick
-    * @description Event handler for when the "onclick" configuration property 
-    * of the menu item changes. 
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */
-    configOnClick: function (p_sType, p_aArgs, p_oItem) {
-
-        var oObject = p_aArgs[0];
-
-        /*
-            Remove any existing listeners if a "click" event handler has 
-            already been specified.
-        */
-
-        if (this._oOnclickAttributeValue && (this._oOnclickAttributeValue != oObject)) {
-
-            this.clickEvent.unsubscribe(this._oOnclickAttributeValue.fn, 
-                                this._oOnclickAttributeValue.obj);
-
-            this._oOnclickAttributeValue = null;
-
-        }
-
-
-        if (!this._oOnclickAttributeValue && Lang.isObject(oObject) && 
-            Lang.isFunction(oObject.fn)) {
-            
-            this.clickEvent.subscribe(oObject.fn, 
-                ((_OBJ in oObject) ? oObject.obj : this), 
-                ((_SCOPE in oObject) ? oObject.scope : null) );
-
-            this._oOnclickAttributeValue = oObject;
-
-        }
-    
-    },
-
-
-    /**
-    * @method configClassName
-    * @description Event handler for when the "classname" configuration 
-    * property of a menu item changes.
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */
-    configClassName: function (p_sType, p_aArgs, p_oItem) {
-    
-        var sClassName = p_aArgs[0];
-    
-        if (this._sClassName) {
-    
-            Dom.removeClass(this.element, this._sClassName);
-    
-        }
-    
-        Dom.addClass(this.element, sClassName);
-        this._sClassName = sClassName;
-    
-    },
-
-
-
-    // Public methods
-
-
-	/**
-    * @method initDefaultConfig
-	* @description Initializes an item's configurable properties.
-	*/
-	initDefaultConfig : function () {
-
-        var oConfig = this.cfg;
-
-
-        // Define the configuration attributes
-
-        /**
-        * @config text
-        * @description String specifying the text label for the menu item.  
-        * When building a menu from existing HTML the value of this property
-        * will be interpreted from the menu's markup.
-        * @default ""
-        * @type String
-        */
-        oConfig.addProperty(
-            TEXT_CONFIG.key, 
-            { 
-                handler: this.configText, 
-                value: TEXT_CONFIG.value, 
-                validator: TEXT_CONFIG.validator, 
-                suppressEvent: TEXT_CONFIG.suppressEvent 
-            }
-        );
-        
-
-        /**
-        * @config helptext
-        * @description String specifying additional instructional text to 
-        * accompany the text for the menu item.
-        * @deprecated Use "text" configuration property to add help text markup.  
-        * For example: <code>oMenuItem.cfg.setProperty("text", "Copy &#60;em 
-        * class=\"helptext\"&#62;Ctrl + C&#60;/em&#62;");</code>
-        * @default null
-        * @type String|<a href="http://www.w3.org/TR/
-        * 2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-58190037">
-        * HTMLElement</a>
-        */
-        oConfig.addProperty(
-            HELP_TEXT_CONFIG.key,
-            {
-                handler: this.configHelpText, 
-                supercedes: HELP_TEXT_CONFIG.supercedes,
-                suppressEvent: HELP_TEXT_CONFIG.suppressEvent 
-            }
-        );
-
-
-        /**
-        * @config url
-        * @description String specifying the URL for the menu item's anchor's 
-        * "href" attribute.  When building a menu from existing HTML the value 
-        * of this property will be interpreted from the menu's markup.
-        * @default "#"
-        * @type String
-        */        
-        oConfig.addProperty(
-            URL_CONFIG.key, 
-            {
-                handler: this.configURL, 
-                value: URL_CONFIG.value, 
-                suppressEvent: URL_CONFIG.suppressEvent
-            }
-        );
-
-
-        /**
-        * @config target
-        * @description String specifying the value for the "target" attribute 
-        * of the menu item's anchor element. <strong>Specifying a target will 
-        * require the user to click directly on the menu item's anchor node in
-        * order to cause the browser to navigate to the specified URL.</strong> 
-        * When building a menu from existing HTML the value of this property 
-        * will be interpreted from the menu's markup.
-        * @default null
-        * @type String
-        */        
-        oConfig.addProperty(
-            TARGET_CONFIG.key, 
-            {
-                handler: this.configTarget, 
-                suppressEvent: TARGET_CONFIG.suppressEvent
-            }
-        );
-
-
-        /**
-        * @config emphasis
-        * @description Boolean indicating if the text of the menu item will be 
-        * rendered with emphasis.
-        * @deprecated Use the "text" configuration property to add emphasis.  
-        * For example: <code>oMenuItem.cfg.setProperty("text", "&#60;em&#62;Some 
-        * Text&#60;/em&#62;");</code>
-        * @default false
-        * @type Boolean
-        */
-        oConfig.addProperty(
-            EMPHASIS_CONFIG.key, 
-            { 
-                handler: this.configEmphasis, 
-                value: EMPHASIS_CONFIG.value, 
-                validator: EMPHASIS_CONFIG.validator, 
-                suppressEvent: EMPHASIS_CONFIG.suppressEvent,
-                supercedes: EMPHASIS_CONFIG.supercedes
-            }
-        );
-
-
-        /**
-        * @config strongemphasis
-        * @description Boolean indicating if the text of the menu item will be 
-        * rendered with strong emphasis.
-        * @deprecated Use the "text" configuration property to add strong emphasis.  
-        * For example: <code>oMenuItem.cfg.setProperty("text", "&#60;strong&#62; 
-        * Some Text&#60;/strong&#62;");</code>
-        * @default false
-        * @type Boolean
-        */
-        oConfig.addProperty(
-            STRONG_EMPHASIS_CONFIG.key,
-            {
-                handler: this.configStrongEmphasis,
-                value: STRONG_EMPHASIS_CONFIG.value,
-                validator: STRONG_EMPHASIS_CONFIG.validator,
-                suppressEvent: STRONG_EMPHASIS_CONFIG.suppressEvent,
-                supercedes: STRONG_EMPHASIS_CONFIG.supercedes
-            }
-        );
-
-
-        /**
-        * @config checked
-        * @description Boolean indicating if the menu item should be rendered 
-        * with a checkmark.
-        * @default false
-        * @type Boolean
-        */
-        oConfig.addProperty(
-            CHECKED_CONFIG.key, 
-            {
-                handler: this.configChecked, 
-                value: CHECKED_CONFIG.value, 
-                validator: CHECKED_CONFIG.validator, 
-                suppressEvent: CHECKED_CONFIG.suppressEvent,
-                supercedes: CHECKED_CONFIG.supercedes
-            } 
-        );
-
-
-        /**
-        * @config disabled
-        * @description Boolean indicating if the menu item should be disabled.  
-        * (Disabled menu items are  dimmed and will not respond to user input 
-        * or fire events.)
-        * @default false
-        * @type Boolean
-        */
-        oConfig.addProperty(
-            DISABLED_CONFIG.key,
-            {
-                handler: this.configDisabled,
-                value: DISABLED_CONFIG.value,
-                validator: DISABLED_CONFIG.validator,
-                suppressEvent: DISABLED_CONFIG.suppressEvent
-            }
-        );
-
-
-        /**
-        * @config selected
-        * @description Boolean indicating if the menu item should 
-        * be highlighted.
-        * @default false
-        * @type Boolean
-        */
-        oConfig.addProperty(
-            SELECTED_CONFIG.key,
-            {
-                handler: this.configSelected,
-                value: SELECTED_CONFIG.value,
-                validator: SELECTED_CONFIG.validator,
-                suppressEvent: SELECTED_CONFIG.suppressEvent
-            }
-        );
-
-
-        /**
-        * @config submenu
-        * @description Object specifying the submenu to be appended to the 
-        * menu item.  The value can be one of the following: <ul><li>Object 
-        * specifying a Menu instance.</li><li>Object literal specifying the
-        * menu to be created.  Format: <code>{ id: [menu id], itemdata: 
-        * [<a href="YAHOO.widget.Menu.html#itemData">array of values for 
-        * items</a>] }</code>.</li><li>String specifying the id attribute 
-        * of the <code>&#60;div&#62;</code> element of the menu.</li><li>
-        * Object specifying the <code>&#60;div&#62;</code> element of the 
-        * menu.</li></ul>
-        * @default null
-        * @type Menu|String|Object|<a href="http://www.w3.org/TR/2000/
-        * WD-DOM-Level-1-20000929/level-one-html.html#ID-58190037">
-        * HTMLElement</a>
-        */
-        oConfig.addProperty(
-            SUBMENU_CONFIG.key, 
-            {
-                handler: this.configSubmenu, 
-                supercedes: SUBMENU_CONFIG.supercedes,
-                suppressEvent: SUBMENU_CONFIG.suppressEvent
-            }
-        );
-
-
-        /**
-        * @config onclick
-        * @description Object literal representing the code to be executed when 
-        * the item is clicked.  Format:<br> <code> {<br> 
-        * <strong>fn:</strong> Function,   &#47;&#47; The handler to call when 
-        * the event fires.<br> <strong>obj:</strong> Object, &#47;&#47; An 
-        * object to  pass back to the handler.<br> <strong>scope:</strong> 
-        * Object &#47;&#47; The object to use for the scope of the handler.
-        * <br> } </code>
-        * @type Object
-        * @default null
-        */
-        oConfig.addProperty(
-            ONCLICK_CONFIG.key, 
-            {
-                handler: this.configOnClick, 
-                suppressEvent: ONCLICK_CONFIG.suppressEvent 
-            }
-        );
-
-
-        /**
-        * @config classname
-        * @description CSS class to be applied to the menu item's root 
-        * <code>&#60;li&#62;</code> element.  The specified class(es) are 
-        * appended in addition to the default class as specified by the menu 
-        * item's CSS_CLASS_NAME constant.
-        * @default null
-        * @type String
-        */
-        oConfig.addProperty(
-            CLASS_NAME_CONFIG.key, 
-            { 
-                handler: this.configClassName,
-                value: CLASS_NAME_CONFIG.value, 
-                validator: CLASS_NAME_CONFIG.validator,
-                suppressEvent: CLASS_NAME_CONFIG.suppressEvent 
-            }
-        );
-
-	},
-
-
-    /**
-    * @method getNextEnabledSibling
-    * @description Finds the menu item's next enabled sibling.
-    * @return YAHOO.widget.MenuItem
-    */
-    getNextEnabledSibling: function () {
-
-        var nGroupIndex,
-            aItemGroups,
-            oNextItem,
-            nNextGroupIndex,
-            aNextGroup,
-            returnVal;
-
-        function getNextArrayItem(p_aArray, p_nStartIndex) {
-
-            return p_aArray[p_nStartIndex] || getNextArrayItem(p_aArray, (p_nStartIndex+1));
-
-        }
-
-        if (this.parent instanceof Menu) {
-
-            nGroupIndex = this.groupIndex;
-    
-            aItemGroups = this.parent.getItemGroups();
-    
-            if (this.index < (aItemGroups[nGroupIndex].length - 1)) {
-    
-                oNextItem = getNextArrayItem(aItemGroups[nGroupIndex], 
-                        (this.index+1));
-    
-            }
-            else {
-    
-                if (nGroupIndex < (aItemGroups.length - 1)) {
-    
-                    nNextGroupIndex = nGroupIndex + 1;
-    
-                }
-                else {
-    
-                    nNextGroupIndex = 0;
-    
-                }
-    
-                aNextGroup = getNextArrayItem(aItemGroups, nNextGroupIndex);
-    
-                // Retrieve the first menu item in the next group
-    
-                oNextItem = getNextArrayItem(aNextGroup, 0);
-    
-            }
-    
-            returnVal = (oNextItem.cfg.getProperty(_DISABLED) || 
-                oNextItem.element.style.display == _NONE) ? 
-                oNextItem.getNextEnabledSibling() : oNextItem;
-
-        }
-        
-        return returnVal;
-
-    },
-
-
-    /**
-    * @method getPreviousEnabledSibling
-    * @description Finds the menu item's previous enabled sibling.
-    * @return {YAHOO.widget.MenuItem}
-    */
-    getPreviousEnabledSibling: function () {
-
-        var nGroupIndex,
-            aItemGroups,
-            oPreviousItem,
-            nPreviousGroupIndex,
-            aPreviousGroup,
-            returnVal;
-
-        function getPreviousArrayItem(p_aArray, p_nStartIndex) {
-
-            return p_aArray[p_nStartIndex] || getPreviousArrayItem(p_aArray, (p_nStartIndex-1));
-
-        }
-
-        function getFirstItemIndex(p_aArray, p_nStartIndex) {
-
-            return p_aArray[p_nStartIndex] ? p_nStartIndex : 
-                getFirstItemIndex(p_aArray, (p_nStartIndex+1));
-
-        }
-
-       if (this.parent instanceof Menu) {
-
-            nGroupIndex = this.groupIndex;
-            aItemGroups = this.parent.getItemGroups();
-
-    
-            if (this.index > getFirstItemIndex(aItemGroups[nGroupIndex], 0)) {
-    
-                oPreviousItem = getPreviousArrayItem(aItemGroups[nGroupIndex], 
-                        (this.index-1));
-    
-            }
-            else {
-    
-                if (nGroupIndex > getFirstItemIndex(aItemGroups, 0)) {
-    
-                    nPreviousGroupIndex = nGroupIndex - 1;
-    
-                }
-                else {
-    
-                    nPreviousGroupIndex = aItemGroups.length - 1;
-    
-                }
-    
-                aPreviousGroup = getPreviousArrayItem(aItemGroups, 
-                    nPreviousGroupIndex);
-    
-                oPreviousItem = getPreviousArrayItem(aPreviousGroup, 
-                        (aPreviousGroup.length - 1));
-    
-            }
-
-            returnVal = (oPreviousItem.cfg.getProperty(_DISABLED) || 
-                oPreviousItem.element.style.display == _NONE) ? 
-                oPreviousItem.getPreviousEnabledSibling() : oPreviousItem;
-
-        }
-        
-        return returnVal;
-
-    },
-
-
-    /**
-    * @method focus
-    * @description Causes the menu item to receive the focus and fires the 
-    * focus event.
-    */
-    focus: function () {
-
-        var oParent = this.parent,
-            oAnchor = this._oAnchor,
-            oActiveItem = oParent.activeItem;
-
-
-        function setFocus() {
-
-            try {
-
-                if (!(UA.ie && !document.hasFocus())) {
-                
-					if (oActiveItem) {
-		
-						oActiveItem.blurEvent.fire();
-		
-					}
-	
-					oAnchor.focus();
-					
-					this.focusEvent.fire();
-                
-                }
-
-            }
-            catch(e) {
-            
-            }
-
-        }
-
-
-        if (!this.cfg.getProperty(_DISABLED) && oParent && oParent.cfg.getProperty(_VISIBLE) && 
-            this.element.style.display != _NONE) {
-
-
-            /*
-                Setting focus via a timer fixes a race condition in Firefox, IE 
-                and Opera where the browser viewport jumps as it trys to 
-                position and focus the menu.
-            */
-
-            Lang.later(0, this, setFocus);
-
-        }
-
-    },
-
-
-    /**
-    * @method blur
-    * @description Causes the menu item to lose focus and fires the 
-    * blur event.
-    */    
-    blur: function () {
-
-        var oParent = this.parent;
-
-        if (!this.cfg.getProperty(_DISABLED) && oParent && oParent.cfg.getProperty(_VISIBLE)) {
-
-            Lang.later(0, this, function () {
-
-                try {
-    
-                    this._oAnchor.blur();
-                    this.blurEvent.fire();    
-
-                } 
-                catch (e) {
-                
-                }
-                
-            }, 0);
-
-        }
-
-    },
-
-
-    /**
-    * @method hasFocus
-    * @description Returns a boolean indicating whether or not the menu item
-    * has focus.
-    * @return {Boolean}
-    */
-    hasFocus: function () {
-    
-        return (YAHOO.widget.MenuManager.getFocusedMenuItem() == this);
-    
-    },
-
-
-	/**
-    * @method destroy
-	* @description Removes the menu item's <code>&#60;li&#62;</code> element 
-	* from its parent <code>&#60;ul&#62;</code> element.
-	*/
-    destroy: function () {
-
-        var oEl = this.element,
-            oSubmenu,
-            oParentNode,
-            aEventData,
-            i;
-
-
-        if (oEl) {
-
-
-            // If the item has a submenu, destroy it first
-
-            oSubmenu = this.cfg.getProperty(_SUBMENU);
-
-            if (oSubmenu) {
-            
-                oSubmenu.destroy();
-            
-            }
-
-
-            // Remove the element from the parent node
-
-            oParentNode = oEl.parentNode;
-
-            if (oParentNode) {
-
-                oParentNode.removeChild(oEl);
-
-                this.destroyEvent.fire();
-
-            }
-
-
-            // Remove CustomEvent listeners
-
-			i = EVENT_TYPES.length - 1;
-
-			do {
-
-				aEventData = EVENT_TYPES[i];
-				
-				this[aEventData[0]].unsubscribeAll();
-
-			}
-			while (i--);
-            
-            
-            this.cfg.configChangedEvent.unsubscribeAll();
-
-        }
-
-    },
-
-
-    /**
-    * @method toString
-    * @description Returns a string representing the menu item.
-    * @return {String}
-    */
-    toString: function () {
-
-        var sReturnVal = _MENUITEM,
-            sId = this.id;
-
-        if (sId) {
-    
-            sReturnVal += (_SPACE + sId);
-        
-        }
-
-        return sReturnVal;
-    
-    }
-
-};
-
-Lang.augmentProto(MenuItem, YAHOO.util.EventProvider);
-
-})();
-(function () {
-
-	var _XY = "xy",
-		_MOUSEDOWN = "mousedown",
-		_CONTEXTMENU = "ContextMenu",
-		_SPACE = " ";
-
-/**
-* Creates a list of options or commands which are made visible in response to 
-* an HTML element's "contextmenu" event ("mousedown" for Opera).
-*
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;div&#62;</code> element of the context menu.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;select&#62;</code> element to be used as the data source for the 
-* context menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-
-* html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object specifying the 
-* <code>&#60;div&#62;</code> element of the context menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-
-* html.html#ID-94282980">HTMLSelectElement</a>} p_oElement Object specifying 
-* the <code>&#60;select&#62;</code> element to be used as the data source for 
-* the context menu.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the context menu. See configuration class documentation 
-* for more details.
-* @class ContextMenu
-* @constructor
-* @extends YAHOO.widget.Menu
-* @namespace YAHOO.widget
-*/
-YAHOO.widget.ContextMenu = function(p_oElement, p_oConfig) {
-
-    YAHOO.widget.ContextMenu.superclass.constructor.call(this, p_oElement, p_oConfig);
-
-};
-
-
-var Event = YAHOO.util.Event,
-	UA = YAHOO.env.ua,
-    ContextMenu = YAHOO.widget.ContextMenu,
-
-
-
-    /**
-    * Constant representing the name of the ContextMenu's events
-    * @property EVENT_TYPES
-    * @private
-    * @final
-    * @type Object
-    */
-    EVENT_TYPES = {
-
-        "TRIGGER_CONTEXT_MENU": "triggerContextMenu",
-        "CONTEXT_MENU": (UA.opera ? _MOUSEDOWN : "contextmenu"),
-        "CLICK": "click"
-
-    },
-    
-    
-    /**
-    * Constant representing the ContextMenu's configuration properties
-    * @property DEFAULT_CONFIG
-    * @private
-    * @final
-    * @type Object
-    */
-    TRIGGER_CONFIG = { 
-		key: "trigger",
-		suppressEvent: true
-    };
-
-
-/**
-* @method position
-* @description "beforeShow" event handler used to position the contextmenu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {Array} p_aPos Array representing the xy position for the context menu.
-*/
-function position(p_sType, p_aArgs, p_aPos) {
-
-    this.cfg.setProperty(_XY, p_aPos);
-    
-    this.beforeShowEvent.unsubscribe(position, p_aPos);
-
-}
-
-
-YAHOO.lang.extend(ContextMenu, YAHOO.widget.Menu, {
-
-
-
-// Private properties
-
-
-/**
-* @property _oTrigger
-* @description Object reference to the current value of the "trigger" 
-* configuration property.
-* @default null
-* @private
-* @type String|<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/leve
-* l-one-html.html#ID-58190037">HTMLElement</a>|Array
-*/
-_oTrigger: null,
-
-
-/**
-* @property _bCancelled
-* @description Boolean indicating if the display of the context menu should 
-* be cancelled.
-* @default false
-* @private
-* @type Boolean
-*/
-_bCancelled: false,
-
-
-
-// Public properties
-
-
-/**
-* @property contextEventTarget
-* @description Object reference for the HTML element that was the target of the
-* "contextmenu" DOM event ("mousedown" for Opera) that triggered the display of 
-* the context menu.
-* @default null
-* @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-
-* html.html#ID-58190037">HTMLElement</a>
-*/
-contextEventTarget: null,
-
-
-
-// Events
-
-
-/**
-* @event triggerContextMenuEvent
-* @description Custom Event wrapper for the "contextmenu" DOM event 
-* ("mousedown" for Opera) fired by the element(s) that trigger the display of 
-* the context menu.
-*/
-triggerContextMenuEvent: null,
-
-
-
-/**
-* @method init
-* @description The ContextMenu class's initialization method. This method is 
-* automatically called by the constructor, and sets up all DOM references for 
-* pre-existing markup, and creates required markup if it is not already present.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;div&#62;</code> element of the context menu.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;select&#62;</code> element to be used as the data source for 
-* the context menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-
-* html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object specifying the 
-* <code>&#60;div&#62;</code> element of the context menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-
-* html.html#ID-94282980">HTMLSelectElement</a>} p_oElement Object specifying 
-* the <code>&#60;select&#62;</code> element to be used as the data source for 
-* the context menu.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the context menu. See configuration class documentation 
-* for more details.
-*/
-init: function(p_oElement, p_oConfig) {
-
-
-    // Call the init of the superclass (YAHOO.widget.Menu)
-
-    ContextMenu.superclass.init.call(this, p_oElement);
-
-
-    this.beforeInitEvent.fire(ContextMenu);
-
-
-    if (p_oConfig) {
-
-        this.cfg.applyConfig(p_oConfig, true);
-
-    }
-    
-    this.initEvent.fire(ContextMenu);
-    
-},
-
-
-/**
-* @method initEvents
-* @description Initializes the custom events for the context menu.
-*/
-initEvents: function() {
-
-	ContextMenu.superclass.initEvents.call(this);
-
-    // Create custom events
-
-    this.triggerContextMenuEvent = this.createEvent(EVENT_TYPES.TRIGGER_CONTEXT_MENU);
-
-    this.triggerContextMenuEvent.signature = YAHOO.util.CustomEvent.LIST;
-
-},
-
-
-/**
-* @method cancel
-* @description Cancels the display of the context menu.
-*/
-cancel: function() {
-
-    this._bCancelled = true;
-
-},
-
-
-
-// Private methods
-
-
-/**
-* @method _removeEventHandlers
-* @description Removes all of the DOM event handlers from the HTML element(s) 
-* whose "context menu" event ("click" for Opera) trigger the display of 
-* the context menu.
-* @private
-*/
-_removeEventHandlers: function() {
-
-    var oTrigger = this._oTrigger;
-
-
-    // Remove the event handlers from the trigger(s)
-
-    if (oTrigger) {
-
-        Event.removeListener(oTrigger, EVENT_TYPES.CONTEXT_MENU, this._onTriggerContextMenu);    
-        
-        if (UA.opera) {
-        
-            Event.removeListener(oTrigger, EVENT_TYPES.CLICK, this._onTriggerClick);
-    
-        }
-
-    }
-
-},
-
-
-
-// Private event handlers
-
-
-
-/**
-* @method _onTriggerClick
-* @description "click" event handler for the HTML element(s) identified as the 
-* "trigger" for the context menu.  Used to cancel default behaviors in Opera.
-* @private
-* @param {Event} p_oEvent Object representing the DOM event object passed back 
-* by the event utility (YAHOO.util.Event).
-* @param {YAHOO.widget.ContextMenu} p_oMenu Object representing the context 
-* menu that is handling the event.
-*/
-_onTriggerClick: function(p_oEvent, p_oMenu) {
-
-    if (p_oEvent.ctrlKey) {
-    
-        Event.stopEvent(p_oEvent);
-
-    }
-    
-},
-
-
-/**
-* @method _onTriggerContextMenu
-* @description "contextmenu" event handler ("mousedown" for Opera) for the HTML 
-* element(s) that trigger the display of the context menu.
-* @private
-* @param {Event} p_oEvent Object representing the DOM event object passed back 
-* by the event utility (YAHOO.util.Event).
-* @param {YAHOO.widget.ContextMenu} p_oMenu Object representing the context 
-* menu that is handling the event.
-*/
-_onTriggerContextMenu: function(p_oEvent, p_oMenu) {
-
-    var aXY;
-
-    if (!(p_oEvent.type == _MOUSEDOWN && !p_oEvent.ctrlKey)) {
-
-		/*
-			Prevent the browser's default context menu from appearing and 
-			stop the propagation of the "contextmenu" event so that 
-			other ContextMenu instances are not displayed.
-		*/
-	
-		Event.stopEvent(p_oEvent);
-	
-	
-		this.contextEventTarget = Event.getTarget(p_oEvent);
-	
-		this.triggerContextMenuEvent.fire(p_oEvent);
-	
-	
-		// Hide any other Menu instances that might be visible
-	
-		YAHOO.widget.MenuManager.hideVisible();
-		
-	
-	
-		if (!this._bCancelled) {
-	
-			// Position and display the context menu
-	
-			aXY = Event.getXY(p_oEvent);
-	
-	
-			if (!YAHOO.util.Dom.inDocument(this.element)) {
-	
-				this.beforeShowEvent.subscribe(position, aXY);
-	
-			}
-			else {
-	
-				this.cfg.setProperty(_XY, aXY);
-			
-			}
-	
-	
-			this.show();
-	
-		}
-	
-		this._bCancelled = false;
-
-    }
-
-},
-
-
-
-// Public methods
-
-
-/**
-* @method toString
-* @description Returns a string representing the context menu.
-* @return {String}
-*/
-toString: function() {
-
-    var sReturnVal = _CONTEXTMENU,
-        sId = this.id;
-
-    if (sId) {
-
-        sReturnVal += (_SPACE + sId);
-    
-    }
-
-    return sReturnVal;
-
-},
-
-
-/**
-* @method initDefaultConfig
-* @description Initializes the class's configurable properties which can be 
-* changed using the context menu's Config object ("cfg").
-*/
-initDefaultConfig: function() {
-
-    ContextMenu.superclass.initDefaultConfig.call(this);
-
-    /**
-    * @config trigger
-    * @description The HTML element(s) whose "contextmenu" event ("mousedown" 
-    * for Opera) trigger the display of the context menu.  Can be a string 
-    * representing the id attribute of the HTML element, an object reference 
-    * for the HTML element, or an array of strings or HTML element references.
-    * @default null
-    * @type String|<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-    * level-one-html.html#ID-58190037">HTMLElement</a>|Array
-    */
-    this.cfg.addProperty(TRIGGER_CONFIG.key, 
-        {
-            handler: this.configTrigger, 
-            suppressEvent: TRIGGER_CONFIG.suppressEvent 
-        }
-    );
-
-},
-
-
-/**
-* @method destroy
-* @description Removes the context menu's <code>&#60;div&#62;</code> element 
-* (and accompanying child nodes) from the document.
-*/
-destroy: function() {
-
-    // Remove the DOM event handlers from the current trigger(s)
-
-    this._removeEventHandlers();
-
-
-    // Continue with the superclass implementation of this method
-
-    ContextMenu.superclass.destroy.call(this);
-
-},
-
-
-
-// Public event handlers for configuration properties
-
-
-/**
-* @method configTrigger
-* @description Event handler for when the value of the "trigger" configuration 
-* property changes. 
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.ContextMenu} p_oMenu Object representing the context 
-* menu that fired the event.
-*/
-configTrigger: function(p_sType, p_aArgs, p_oMenu) {
-    
-    var oTrigger = p_aArgs[0];
-
-    if (oTrigger) {
-
-        /*
-            If there is a current "trigger" - remove the event handlers 
-            from that element(s) before assigning new ones
-        */
-
-        if (this._oTrigger) {
-        
-            this._removeEventHandlers();
-
-        }
-
-        this._oTrigger = oTrigger;
-
-
-        /*
-            Listen for the "mousedown" event in Opera b/c it does not 
-            support the "contextmenu" event
-        */ 
-  
-        Event.on(oTrigger, EVENT_TYPES.CONTEXT_MENU, this._onTriggerContextMenu, this, true);
-
-
-        /*
-            Assign a "click" event handler to the trigger element(s) for
-            Opera to prevent default browser behaviors.
-        */
-
-        if (UA.opera) {
-        
-            Event.on(oTrigger, EVENT_TYPES.CLICK, this._onTriggerClick, this, true);
-
-        }
-
-    }
-    else {
-   
-        this._removeEventHandlers();
-    
-    }
-    
-}
-
-}); // END YAHOO.lang.extend
-
-}());
-
-
-
-/**
-* Creates an item for a context menu.
-* 
-* @param {String} p_oObject String specifying the text of the context menu item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-74680021">HTMLLIElement</a>} p_oObject Object specifying the 
-* <code>&#60;li&#62;</code> element of the context menu item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-38450247">HTMLOptGroupElement</a>} p_oObject Object 
-* specifying the <code>&#60;optgroup&#62;</code> element of the context 
-* menu item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-70901257">HTMLOptionElement</a>} p_oObject Object specifying 
-* the <code>&#60;option&#62;</code> element of the context menu item.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the context menu item. See configuration class 
-* documentation for more details.
-* @class ContextMenuItem
-* @constructor
-* @extends YAHOO.widget.MenuItem
-* @deprecated As of version 2.4.0 items for YAHOO.widget.ContextMenu instances
-* are of type YAHOO.widget.MenuItem.
-*/
-YAHOO.widget.ContextMenuItem = YAHOO.widget.MenuItem;
-(function () {
-
-	var Lang = YAHOO.lang,
-
-		// String constants
-	
-		_STATIC = "static",
-		_DYNAMIC_STATIC = "dynamic," + _STATIC,
-		_DISABLED = "disabled",
-		_SELECTED = "selected",
-		_AUTO_SUBMENU_DISPLAY = "autosubmenudisplay",
-		_SUBMENU = "submenu",
-		_VISIBLE = "visible",
-		_SPACE = " ",
-		_SUBMENU_TOGGLE_REGION = "submenutoggleregion",
-		_MENUBAR = "MenuBar";
-
-/**
-* Horizontal collection of items, each of which can contain a submenu.
-* 
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;div&#62;</code> element of the menu bar.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;select&#62;</code> element to be used as the data source for the 
-* menu bar.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object specifying 
-* the <code>&#60;div&#62;</code> element of the menu bar.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-94282980">HTMLSelectElement</a>} p_oElement Object 
-* specifying the <code>&#60;select&#62;</code> element to be used as the data 
-* source for the menu bar.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the menu bar. See configuration class documentation for
-* more details.
-* @class MenuBar
-* @constructor
-* @extends YAHOO.widget.Menu
-* @namespace YAHOO.widget
-*/
-YAHOO.widget.MenuBar = function(p_oElement, p_oConfig) {
-
-    YAHOO.widget.MenuBar.superclass.constructor.call(this, p_oElement, p_oConfig);
-
-};
-
-
-/**
-* @method checkPosition
-* @description Checks to make sure that the value of the "position" property 
-* is one of the supported strings. Returns true if the position is supported.
-* @private
-* @param {Object} p_sPosition String specifying the position of the menu.
-* @return {Boolean}
-*/
-function checkPosition(p_sPosition) {
-
-	var returnVal = false;
-
-    if (Lang.isString(p_sPosition)) {
-
-        returnVal = (_DYNAMIC_STATIC.indexOf((p_sPosition.toLowerCase())) != -1);
-
-    }
-    
-    return returnVal;
-
-}
-
-
-var Event = YAHOO.util.Event,
-    MenuBar = YAHOO.widget.MenuBar,
-
-    POSITION_CONFIG =  { 
-		key: "position", 
-		value: _STATIC, 
-		validator: checkPosition, 
-		supercedes: [_VISIBLE] 
-	}, 
-
-	SUBMENU_ALIGNMENT_CONFIG =  { 
-		key: "submenualignment", 
-		value: ["tl","bl"]
-	},
-
-	AUTO_SUBMENU_DISPLAY_CONFIG =  { 
-		key: _AUTO_SUBMENU_DISPLAY, 
-		value: false, 
-		validator: Lang.isBoolean,
-		suppressEvent: true
-	},
-	
-	SUBMENU_TOGGLE_REGION_CONFIG = {
-		key: _SUBMENU_TOGGLE_REGION, 
-		value: false, 
-		validator: Lang.isBoolean
-	};
-
-
-
-Lang.extend(MenuBar, YAHOO.widget.Menu, {
-
-/**
-* @method init
-* @description The MenuBar class's initialization method. This method is 
-* automatically called by the constructor, and sets up all DOM references for 
-* pre-existing markup, and creates required markup if it is not already present.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;div&#62;</code> element of the menu bar.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;select&#62;</code> element to be used as the data source for the 
-* menu bar.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object specifying 
-* the <code>&#60;div&#62;</code> element of the menu bar.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-94282980">HTMLSelectElement</a>} p_oElement Object 
-* specifying the <code>&#60;select&#62;</code> element to be used as the data 
-* source for the menu bar.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the menu bar. See configuration class documentation for
-* more details.
-*/
-init: function(p_oElement, p_oConfig) {
-
-    if(!this.ITEM_TYPE) {
-
-        this.ITEM_TYPE = YAHOO.widget.MenuBarItem;
-
-    }
-
-
-    // Call the init of the superclass (YAHOO.widget.Menu)
-
-    MenuBar.superclass.init.call(this, p_oElement);
-
-
-    this.beforeInitEvent.fire(MenuBar);
-
-
-    if(p_oConfig) {
-
-        this.cfg.applyConfig(p_oConfig, true);
-
-    }
-
-    this.initEvent.fire(MenuBar);
-
-},
-
-
-
-// Constants
-
-
-/**
-* @property CSS_CLASS_NAME
-* @description String representing the CSS class(es) to be applied to the menu 
-* bar's <code>&#60;div&#62;</code> element.
-* @default "yuimenubar"
-* @final
-* @type String
-*/
-CSS_CLASS_NAME: "yuimenubar",
-
-
-/**
-* @property SUBMENU_TOGGLE_REGION_WIDTH
-* @description Width (in pixels) of the area of a MenuBarItem that, when pressed, will toggle the
-* display of the MenuBarItem's submenu.
-* @default 20
-* @final
-* @type Number
-*/
-SUBMENU_TOGGLE_REGION_WIDTH: 20,
-
-
-// Protected event handlers
-
-
-/**
-* @method _onKeyDown
-* @description "keydown" Custom Event handler for the menu bar.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.MenuBar} p_oMenuBar Object representing the menu bar 
-* that fired the event.
-*/
-_onKeyDown: function(p_sType, p_aArgs, p_oMenuBar) {
-
-    var oEvent = p_aArgs[0],
-        oItem = p_aArgs[1],
-        oSubmenu,
-        oItemCfg,
-        oNextItem;
-
-
-    if(oItem && !oItem.cfg.getProperty(_DISABLED)) {
-
-        oItemCfg = oItem.cfg;
-
-        switch(oEvent.keyCode) {
-    
-            case 37:    // Left arrow
-            case 39:    // Right arrow
-    
-                if(oItem == this.activeItem && !oItemCfg.getProperty(_SELECTED)) {
-    
-                    oItemCfg.setProperty(_SELECTED, true);
-    
-                }
-                else {
-    
-                    oNextItem = (oEvent.keyCode == 37) ? 
-                        oItem.getPreviousEnabledSibling() : 
-                        oItem.getNextEnabledSibling();
-            
-                    if(oNextItem) {
-    
-                        this.clearActiveItem();
-    
-                        oNextItem.cfg.setProperty(_SELECTED, true);
-                        
-						oSubmenu = oNextItem.cfg.getProperty(_SUBMENU);
-						
-						if(oSubmenu) {
-					
-							oSubmenu.show();
-							oSubmenu.setInitialFocus();
-						
-						}
-						else {
-							oNextItem.focus();  
-						}
-    
-                    }
-    
-                }
-    
-                Event.preventDefault(oEvent);
-    
-            break;
-    
-            case 40:    // Down arrow
-    
-                if(this.activeItem != oItem) {
-    
-                    this.clearActiveItem();
-    
-                    oItemCfg.setProperty(_SELECTED, true);
-                    oItem.focus();
-                
-                }
-    
-                oSubmenu = oItemCfg.getProperty(_SUBMENU);
-    
-                if(oSubmenu) {
-    
-                    if(oSubmenu.cfg.getProperty(_VISIBLE)) {
-    
-                        oSubmenu.setInitialSelection();
-                        oSubmenu.setInitialFocus();
-                    
-                    }
-                    else {
-    
-                        oSubmenu.show();
-                        oSubmenu.setInitialFocus();
-                    
-                    }
-    
-                }
-    
-                Event.preventDefault(oEvent);
-    
-            break;
-    
-        }
-
-    }
-
-
-    if(oEvent.keyCode == 27 && this.activeItem) { // Esc key
-
-        oSubmenu = this.activeItem.cfg.getProperty(_SUBMENU);
-
-        if(oSubmenu && oSubmenu.cfg.getProperty(_VISIBLE)) {
-        
-            oSubmenu.hide();
-            this.activeItem.focus();
-        
-        }
-        else {
-
-            this.activeItem.cfg.setProperty(_SELECTED, false);
-            this.activeItem.blur();
-    
-        }
-
-        Event.preventDefault(oEvent);
-    
-    }
-
-},
-
-
-/**
-* @method _onClick
-* @description "click" event handler for the menu bar.
-* @protected
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.MenuBar} p_oMenuBar Object representing the menu bar 
-* that fired the event.
-*/
-_onClick: function(p_sType, p_aArgs, p_oMenuBar) {
-
-    MenuBar.superclass._onClick.call(this, p_sType, p_aArgs, p_oMenuBar);
-
-    var oItem = p_aArgs[1],
-        bReturnVal = true,
-    	oItemEl,
-        oEvent,
-        oTarget,
-        oActiveItem,
-        oConfig,
-        oSubmenu,
-        nMenuItemX,
-        nToggleRegion;
-
-
-	var toggleSubmenuDisplay = function () {
-
-		if(oSubmenu.cfg.getProperty(_VISIBLE)) {
-		
-			oSubmenu.hide();
-		
-		}
-		else {
-		
-			oSubmenu.show();                    
-		
-		}
-	
-	};
-    
-
-    if(oItem && !oItem.cfg.getProperty(_DISABLED)) {
-
-        oEvent = p_aArgs[0];
-        oTarget = Event.getTarget(oEvent);
-        oActiveItem = this.activeItem;
-        oConfig = this.cfg;
-
-
-        // Hide any other submenus that might be visible
-    
-        if(oActiveItem && oActiveItem != oItem) {
-    
-            this.clearActiveItem();
-    
-        }
-
-    
-        oItem.cfg.setProperty(_SELECTED, true);
-    
-
-        // Show the submenu for the item
-    
-        oSubmenu = oItem.cfg.getProperty(_SUBMENU);
-
-
-        if(oSubmenu) {
-
-			oItemEl = oItem.element;
-			nMenuItemX = YAHOO.util.Dom.getX(oItemEl);
-			nToggleRegion = nMenuItemX + (oItemEl.offsetWidth - this.SUBMENU_TOGGLE_REGION_WIDTH);
-
-			if (oConfig.getProperty(_SUBMENU_TOGGLE_REGION)) {
-
-				if (Event.getPageX(oEvent) > nToggleRegion) {
-
-					toggleSubmenuDisplay();
-
-					Event.preventDefault(oEvent);
-
-					/*
-						 Return false so that other click event handlers are not called when the 
-						 user clicks inside the toggle region.
-					*/
-					bReturnVal = false;
-				
-				}
-        
-        	}
-			else {
-
-				toggleSubmenuDisplay();
-            
-            }
-        
-        }
-    
-    }
-
-
-	return bReturnVal;
-
-},
-
-
-
-// Public methods
-
-/**
-* @method configSubmenuToggle
-* @description Event handler for when the "submenutoggleregion" configuration property of 
-* a MenuBar changes.
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event was fired.
-*/
-configSubmenuToggle: function (p_sType, p_aArgs) {
-
-	var bSubmenuToggle = p_aArgs[0];
-	
-	if (bSubmenuToggle) {
-	
-		this.cfg.setProperty(_AUTO_SUBMENU_DISPLAY, false);
-	
-	}
-
-},
-
-
-/**
-* @method toString
-* @description Returns a string representing the menu bar.
-* @return {String}
-*/
-toString: function() {
-
-    var sReturnVal = _MENUBAR,
-        sId = this.id;
-
-    if(sId) {
-
-        sReturnVal += (_SPACE + sId);
-    
-    }
-
-    return sReturnVal;
-
-},
-
-
-/**
-* @description Initializes the class's configurable properties which can be
-* changed using the menu bar's Config object ("cfg").
-* @method initDefaultConfig
-*/
-initDefaultConfig: function() {
-
-    MenuBar.superclass.initDefaultConfig.call(this);
-
-    var oConfig = this.cfg;
-
-	// Add configuration properties
-
-
-    /*
-        Set the default value for the "position" configuration property
-        to "static" by re-adding the property.
-    */
-
-
-    /**
-    * @config position
-    * @description String indicating how a menu bar should be positioned on the 
-    * screen.  Possible values are "static" and "dynamic."  Static menu bars 
-    * are visible by default and reside in the normal flow of the document 
-    * (CSS position: static).  Dynamic menu bars are hidden by default, reside
-    * out of the normal flow of the document (CSS position: absolute), and can 
-    * overlay other elements on the screen.
-    * @default static
-    * @type String
-    */
-    oConfig.addProperty(
-        POSITION_CONFIG.key, 
-        {
-            handler: this.configPosition, 
-            value: POSITION_CONFIG.value, 
-            validator: POSITION_CONFIG.validator,
-            supercedes: POSITION_CONFIG.supercedes
-        }
-    );
-
-
-    /*
-        Set the default value for the "submenualignment" configuration property
-        to ["tl","bl"] by re-adding the property.
-    */
-
-    /**
-    * @config submenualignment
-    * @description Array defining how submenus should be aligned to their 
-    * parent menu bar item. The format is: [itemCorner, submenuCorner].
-    * @default ["tl","bl"]
-    * @type Array
-    */
-    oConfig.addProperty(
-        SUBMENU_ALIGNMENT_CONFIG.key, 
-        {
-            value: SUBMENU_ALIGNMENT_CONFIG.value,
-            suppressEvent: SUBMENU_ALIGNMENT_CONFIG.suppressEvent
-        }
-    );
-
-
-    /*
-        Change the default value for the "autosubmenudisplay" configuration 
-        property to "false" by re-adding the property.
-    */
-
-    /**
-    * @config autosubmenudisplay
-    * @description Boolean indicating if submenus are automatically made 
-    * visible when the user mouses over the menu bar's items.
-    * @default false
-    * @type Boolean
-    */
-	oConfig.addProperty(
-	   AUTO_SUBMENU_DISPLAY_CONFIG.key, 
-	   {
-	       value: AUTO_SUBMENU_DISPLAY_CONFIG.value, 
-	       validator: AUTO_SUBMENU_DISPLAY_CONFIG.validator,
-	       suppressEvent: AUTO_SUBMENU_DISPLAY_CONFIG.suppressEvent
-       } 
-    );
-
-
-    /**
-    * @config submenutoggleregion
-    * @description Boolean indicating if only a specific region of a MenuBarItem should toggle the 
-    * display of a submenu.  The default width of the region is determined by the value of the
-    * SUBMENU_TOGGLE_REGION_WIDTH property.  If set to true, the autosubmenudisplay 
-    * configuration property will be set to false, and any click event listeners will not be 
-    * called when the user clicks inside the submenu toggle region of a MenuBarItem.  If the 
-    * user clicks outside of the submenu toggle region, the MenuBarItem will maintain its 
-    * standard behavior.
-    * @default false
-    * @type Boolean
-    */
-	oConfig.addProperty(
-	   SUBMENU_TOGGLE_REGION_CONFIG.key, 
-	   {
-	       value: SUBMENU_TOGGLE_REGION_CONFIG.value, 
-	       validator: SUBMENU_TOGGLE_REGION_CONFIG.validator,
-	       handler: this.configSubmenuToggle
-       } 
-    );
-
-}
- 
-}); // END YAHOO.lang.extend
-
-}());
-
-
-
-/**
-* Creates an item for a menu bar.
-* 
-* @param {String} p_oObject String specifying the text of the menu bar item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-74680021">HTMLLIElement</a>} p_oObject Object specifying the 
-* <code>&#60;li&#62;</code> element of the menu bar item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-38450247">HTMLOptGroupElement</a>} p_oObject Object 
-* specifying the <code>&#60;optgroup&#62;</code> element of the menu bar item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-70901257">HTMLOptionElement</a>} p_oObject Object specifying 
-* the <code>&#60;option&#62;</code> element of the menu bar item.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the menu bar item. See configuration class documentation 
-* for more details.
-* @class MenuBarItem
-* @constructor
-* @extends YAHOO.widget.MenuItem
-*/
-YAHOO.widget.MenuBarItem = function(p_oObject, p_oConfig) {
-
-    YAHOO.widget.MenuBarItem.superclass.constructor.call(this, p_oObject, p_oConfig);
-
-};
-
-YAHOO.lang.extend(YAHOO.widget.MenuBarItem, YAHOO.widget.MenuItem, {
-
-
-
-/**
-* @method init
-* @description The MenuBarItem class's initialization method. This method is 
-* automatically called by the constructor, and sets up all DOM references for 
-* pre-existing markup, and creates required markup if it is not already present.
-* @param {String} p_oObject String specifying the text of the menu bar item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-74680021">HTMLLIElement</a>} p_oObject Object specifying the 
-* <code>&#60;li&#62;</code> element of the menu bar item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-38450247">HTMLOptGroupElement</a>} p_oObject Object 
-* specifying the <code>&#60;optgroup&#62;</code> element of the menu bar item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-70901257">HTMLOptionElement</a>} p_oObject Object specifying 
-* the <code>&#60;option&#62;</code> element of the menu bar item.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the menu bar item. See configuration class documentation 
-* for more details.
-*/
-init: function(p_oObject, p_oConfig) {
-
-    if(!this.SUBMENU_TYPE) {
-
-        this.SUBMENU_TYPE = YAHOO.widget.Menu;
-
-    }
-
-
-    /* 
-        Call the init of the superclass (YAHOO.widget.MenuItem)
-        Note: We don't pass the user config in here yet 
-        because we only want it executed once, at the lowest 
-        subclass level.
-    */ 
-
-    YAHOO.widget.MenuBarItem.superclass.init.call(this, p_oObject);  
-
-
-    var oConfig = this.cfg;
-
-    if(p_oConfig) {
-
-        oConfig.applyConfig(p_oConfig, true);
-
-    }
-
-    oConfig.fireQueue();
-
-},
-
-
-
-// Constants
-
-
-/**
-* @property CSS_CLASS_NAME
-* @description String representing the CSS class(es) to be applied to the 
-* <code>&#60;li&#62;</code> element of the menu bar item.
-* @default "yuimenubaritem"
-* @final
-* @type String
-*/
-CSS_CLASS_NAME: "yuimenubaritem",
-
-
-/**
-* @property CSS_LABEL_CLASS_NAME
-* @description String representing the CSS class(es) to be applied to the 
-* menu bar item's <code>&#60;a&#62;</code> element.
-* @default "yuimenubaritemlabel"
-* @final
-* @type String
-*/
-CSS_LABEL_CLASS_NAME: "yuimenubaritemlabel",
-
-
-
-// Public methods
-
-
-/**
-* @method toString
-* @description Returns a string representing the menu bar item.
-* @return {String}
-*/
-toString: function() {
-
-    var sReturnVal = "MenuBarItem";
-
-    if(this.cfg && this.cfg.getProperty("text")) {
-
-        sReturnVal += (": " + this.cfg.getProperty("text"));
-
-    }
-
-    return sReturnVal;
-
-}
-    
-}); // END YAHOO.lang.extend
-YAHOO.register("menu", YAHOO.widget.Menu, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/menu-min.js b/eclipse.org-common/yui/2.6.0/build/menu/menu-min.js
deleted file mode 100644
index e7a8ac4..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/menu-min.js
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){var S="DIV",O="hd",K="bd",N="ft",X="LI",A="disabled",D="mouseover",F="mouseout",U="mousedown",G="mouseup",R=YAHOO.env.ua.ie?"focusin":"focus",V="click",B="keydown",M="keyup",I="keypress",L="clicktohide",T="position",P="dynamic",Y="showdelay",J="selected",E="visible",W="UL",Q="MenuManager",C=YAHOO.util.Dom,Z=YAHOO.util.Event,H=YAHOO.lang;YAHOO.widget.MenuManager=function(){var a=false,c={},r={},d={},n={"click":"clickEvent","mousedown":"mouseDownEvent","mouseup":"mouseUpEvent","mouseover":"mouseOverEvent","mouseout":"mouseOutEvent","keydown":"keyDownEvent","keyup":"keyUpEvent","keypress":"keyPressEvent","focus":"focusEvent","focusin":"focusEvent","blur":"blurEvent","focusout":"blurEvent"},m=null,k=null;function o(u){var s,t;if(u&&u.tagName){switch(u.tagName.toUpperCase()){case S:s=u.parentNode;if((C.hasClass(u,O)||C.hasClass(u,K)||C.hasClass(u,N))&&s&&s.tagName&&s.tagName.toUpperCase()==S){t=s;}else{t=u;}break;case X:t=u;break;default:s=u.parentNode;if(s){t=o(s);}break;}}return t;}function q(w){var s=Z.getTarget(w),t=o(s),y,u,v,AA,z;if(t){u=t.tagName.toUpperCase();if(u==X){v=t.id;if(v&&d[v]){AA=d[v];z=AA.parent;}}else{if(u==S){if(t.id){z=c[t.id];}}}}if(z){y=n[w.type];if(AA&&!AA.cfg.getProperty(A)){AA[y].fire(w);}z[y].fire(w,AA);}else{if(w.type==U){for(var x in r){if(H.hasOwnProperty(r,x)){z=r[x];if(z.cfg.getProperty(L)&&!(z instanceof YAHOO.widget.MenuBar)&&z.cfg.getProperty(T)==P){z.hide();}else{if(z.cfg.getProperty(Y)>0){z._cancelShowDelay();}if(z.activeItem){z.activeItem.blur();z.activeItem.cfg.setProperty(J,false);z.activeItem=null;}}}}}else{if(w.type==R){m=s;}}}}function f(t,s,u){if(c[u.id]){this.removeMenu(u);}}function j(t,s){var u=s[1];if(u){k=u;}}function i(t,s){k=null;}function b(t,s,v){if(v&&v.focus){try{v.focus();}catch(u){}}this.hideEvent.unsubscribe(b,v);}function l(t,s){if(this===this.getRoot()&&this.cfg.getProperty(T)===P){this.hideEvent.subscribe(b,m);this.focus();}}function g(u,t){var s=t[0],v=this.id;if(s){r[v]=this;}else{if(r[v]){delete r[v];}}}function h(t,s){p(this);}function p(t){var s=t.id;if(s&&d[s]){if(k==t){k=null;}delete d[s];t.destroyEvent.unsubscribe(h);}}function e(t,s){var v=s[0],u;if(v instanceof YAHOO.widget.MenuItem){u=v.id;if(!d[u]){d[u]=v;v.destroyEvent.subscribe(h);}}}return{addMenu:function(t){var s;if(t instanceof YAHOO.widget.Menu&&t.id&&!c[t.id]){c[t.id]=t;if(!a){s=document;Z.on(s,D,q,this,true);Z.on(s,F,q,this,true);Z.on(s,U,q,this,true);Z.on(s,G,q,this,true);Z.on(s,V,q,this,true);Z.on(s,B,q,this,true);Z.on(s,M,q,this,true);Z.on(s,I,q,this,true);Z.onFocus(s,q,this,true);Z.onBlur(s,q,this,true);a=true;}t.cfg.subscribeToConfigEvent(E,g);t.destroyEvent.subscribe(f,t,this);t.itemAddedEvent.subscribe(e);t.focusEvent.subscribe(j);t.blurEvent.subscribe(i);t.showEvent.subscribe(l);}},removeMenu:function(v){var t,s,u;if(v){t=v.id;if((t in c)&&(c[t]==v)){s=v.getItems();if(s&&s.length>0){u=s.length-1;do{p(s[u]);}while(u--);}delete c[t];if((t in r)&&(r[t]==v)){delete r[t];}if(v.cfg){v.cfg.unsubscribeFromConfigEvent(E,g);}v.destroyEvent.unsubscribe(f,v);v.itemAddedEvent.unsubscribe(e);v.focusEvent.unsubscribe(j);v.blurEvent.unsubscribe(i);}}},hideVisible:function(){var s;for(var t in r){if(H.hasOwnProperty(r,t)){s=r[t];if(!(s instanceof YAHOO.widget.MenuBar)&&s.cfg.getProperty(T)==P){s.hide();}}}},getVisible:function(){return r;},getMenus:function(){return c;},getMenu:function(t){var s;if(t in c){s=c[t];}return s;},getMenuItem:function(t){var s;if(t in d){s=d[t];}return s;},getMenuItemGroup:function(w){var t=C.get(w),s,y,x,u,v;if(t&&t.tagName&&t.tagName.toUpperCase()==W){y=t.firstChild;if(y){s=[];do{u=y.id;if(u){x=this.getMenuItem(u);if(x){s[s.length]=x;}}}while((y=y.nextSibling));if(s.length>0){v=s;}}}return v;},getFocusedMenuItem:function(){return k;},getFocusedMenu:function(){var s;if(k){s=k.parent.getRoot();}return s;},toString:function(){return Q;}};}();})();(function(){var AN=YAHOO.lang,Ao="Menu",H="DIV",K="div",Ak="id",AI="SELECT",f="xy",R="y",Av="UL",L="ul",AK="first-of-type",l="LI",i="OPTGROUP",Ax="OPTION",Af="disabled",AY="none",z="selected",Ar="groupindex",j="index",O="submenu",As="visible",AX="hidedelay",Ab="position",AE="dynamic",C="static",Al=AE+","+C,Y="windows",Q="url",M="#",V="target",AU="maxheight",T="topscrollbar",y="bottomscrollbar",e="_",P=T+e+Af,E=y+e+Af,c="mousemove",At="showdelay",d="submenuhidedelay",AG="iframe",x="constraintoviewport",A2="preventcontextoverlap",AP="submenualignment",a="autosubmenudisplay",AD="clicktohide",h="container",k="scrollincrement",Ah="minscrollheight",A0="classname",Ae="shadow",Ap="keepopen",Ay="hd",D="hastitle",q="context",v="",Ai="mousedown",Ac="keydown",Am="height",U="width",AR="px",Aw="effect",AF="monitorresize",AW="display",AV="block",J="visibility",AA="absolute",AT="zindex",m="yui-menu-body-scrolled",AL="&#32;",Az=" ",Ag="mouseover",G="mouseout",AS="itemAdded",o="itemRemoved",AM="hidden",t="yui-menu-shadow",AH=t+"-visible",n=t+Az+AH;YAHOO.widget.Menu=function(A4,A3){if(A3){this.parent=A3.parent;this.lazyLoad=A3.lazyLoad||A3.lazyload;this.itemData=A3.itemData||A3.itemdata;}YAHOO.widget.Menu.superclass.constructor.call(this,A4,A3);};function B(A4){var A3=false;if(AN.isString(A4)){A3=(Al.indexOf((A4.toLowerCase()))!=-1);}return A3;}var g=YAHOO.util.Dom,AB=YAHOO.util.Event,Au=YAHOO.widget.Module,AC=YAHOO.widget.Overlay,s=YAHOO.widget.Menu,A1=YAHOO.widget.MenuManager,F=YAHOO.util.CustomEvent,Aq=YAHOO.env.ua,An,Aa=[["mouseOverEvent",Ag],["mouseOutEvent",G],["mouseDownEvent",Ai],["mouseUpEvent","mouseup"],["clickEvent","click"],["keyPressEvent","keypress"],["keyDownEvent",Ac],["keyUpEvent","keyup"],["focusEvent","focus"],["blurEvent","blur"],["itemAddedEvent",AS],["itemRemovedEvent",o]],AZ={key:As,value:false,validator:AN.isBoolean},AQ={key:x,value:true,validator:AN.isBoolean,supercedes:[AG,"x",R,f]},AJ={key:A2,value:true,validator:AN.isBoolean,supercedes:[x]},S={key:Ab,value:AE,validator:B,supercedes:[As,AG]},A={key:AP,value:["tl","tr"]},u={key:a,value:true,validator:AN.isBoolean,suppressEvent:true},Z={key:At,value:250,validator:AN.isNumber,suppressEvent:true},r={key:AX,value:0,validator:AN.isNumber,suppressEvent:true},w={key:d,value:250,validator:AN.isNumber,suppressEvent:true},p={key:AD,value:true,validator:AN.isBoolean,suppressEvent:true},AO={key:h,suppressEvent:true},Ad={key:k,value:1,validator:AN.isNumber,supercedes:[AU],suppressEvent:true},N={key:Ah,value:90,validator:AN.isNumber,supercedes:[AU],suppressEvent:true},X={key:AU,value:0,validator:AN.isNumber,supercedes:[AG],suppressEvent:true},W={key:A0,value:null,validator:AN.isString,suppressEvent:true},b={key:Af,value:false,validator:AN.isBoolean,suppressEvent:true},I={key:Ae,value:true,validator:AN.isBoolean,suppressEvent:true,supercedes:[As]},Aj={key:Ap,value:false,validator:AN.isBoolean};
-YAHOO.lang.extend(s,AC,{CSS_CLASS_NAME:"yuimenu",ITEM_TYPE:null,GROUP_TITLE_TAG_NAME:"h6",OFF_SCREEN_POSITION:"-999em",_bHideDelayEventHandlersAssigned:false,_bHandledMouseOverEvent:false,_bHandledMouseOutEvent:false,_aGroupTitleElements:null,_aItemGroups:null,_aListElements:null,_nCurrentMouseX:0,_bStopMouseEventHandlers:false,_sClassName:null,lazyLoad:false,itemData:null,activeItem:null,parent:null,srcElement:null,init:function(A5,A4){this._aItemGroups=[];this._aListElements=[];this._aGroupTitleElements=[];if(!this.ITEM_TYPE){this.ITEM_TYPE=YAHOO.widget.MenuItem;}var A3;if(AN.isString(A5)){A3=g.get(A5);}else{if(A5.tagName){A3=A5;}}if(A3&&A3.tagName){switch(A3.tagName.toUpperCase()){case H:this.srcElement=A3;if(!A3.id){A3.setAttribute(Ak,g.generateId());}s.superclass.init.call(this,A3);this.beforeInitEvent.fire(s);break;case AI:this.srcElement=A3;s.superclass.init.call(this,g.generateId());this.beforeInitEvent.fire(s);break;}}else{s.superclass.init.call(this,A5);this.beforeInitEvent.fire(s);}if(this.element){g.addClass(this.element,this.CSS_CLASS_NAME);this.initEvent.subscribe(this._onInit);this.beforeRenderEvent.subscribe(this._onBeforeRender);this.renderEvent.subscribe(this._onRender);this.beforeShowEvent.subscribe(this._onBeforeShow);this.hideEvent.subscribe(this._onHide);this.showEvent.subscribe(this._onShow);this.beforeHideEvent.subscribe(this._onBeforeHide);this.mouseOverEvent.subscribe(this._onMouseOver);this.mouseOutEvent.subscribe(this._onMouseOut);this.clickEvent.subscribe(this._onClick);this.keyDownEvent.subscribe(this._onKeyDown);this.keyPressEvent.subscribe(this._onKeyPress);this.blurEvent.subscribe(this._onBlur);if(Aq.gecko||Aq.webkit){this.cfg.subscribeToConfigEvent(R,this._onYChange);}if(A4){this.cfg.applyConfig(A4,true);}A1.addMenu(this);this.initEvent.fire(s);}},_initSubTree:function(){var A4=this.srcElement,A3,A6,A9,BA,A8,A7,A5;if(A4){A3=(A4.tagName&&A4.tagName.toUpperCase());if(A3==H){BA=this.body.firstChild;if(BA){A6=0;A9=this.GROUP_TITLE_TAG_NAME.toUpperCase();do{if(BA&&BA.tagName){switch(BA.tagName.toUpperCase()){case A9:this._aGroupTitleElements[A6]=BA;break;case Av:this._aListElements[A6]=BA;this._aItemGroups[A6]=[];A6++;break;}}}while((BA=BA.nextSibling));if(this._aListElements[0]){g.addClass(this._aListElements[0],AK);}}}BA=null;if(A3){switch(A3){case H:A8=this._aListElements;A7=A8.length;if(A7>0){A5=A7-1;do{BA=A8[A5].firstChild;if(BA){do{if(BA&&BA.tagName&&BA.tagName.toUpperCase()==l){this.addItem(new this.ITEM_TYPE(BA,{parent:this}),A5);}}while((BA=BA.nextSibling));}}while(A5--);}break;case AI:BA=A4.firstChild;do{if(BA&&BA.tagName){switch(BA.tagName.toUpperCase()){case i:case Ax:this.addItem(new this.ITEM_TYPE(BA,{parent:this}));break;}}}while((BA=BA.nextSibling));break;}}}},_getFirstEnabledItem:function(){var A3=this.getItems(),A7=A3.length,A6,A5;for(var A4=0;A4<A7;A4++){A6=A3[A4];if(A6&&!A6.cfg.getProperty(Af)&&A6.element.style.display!=AY){A5=A6;break;}}return A5;},_addItemToGroup:function(A8,A9,BD){var BB,BE,A6,BC,A7,A4,A5,BA;function A3(BF,BG){return(BF[BG]||A3(BF,(BG+1)));}if(A9 instanceof this.ITEM_TYPE){BB=A9;BB.parent=this;}else{if(AN.isString(A9)){BB=new this.ITEM_TYPE(A9,{parent:this});}else{if(AN.isObject(A9)){A9.parent=this;BB=new this.ITEM_TYPE(A9.text,A9);}}}if(BB){if(BB.cfg.getProperty(z)){this.activeItem=BB;}BE=AN.isNumber(A8)?A8:0;A6=this._getItemGroup(BE);if(!A6){A6=this._createItemGroup(BE);}if(AN.isNumber(BD)){A7=(BD>=A6.length);if(A6[BD]){A6.splice(BD,0,BB);}else{A6[BD]=BB;}BC=A6[BD];if(BC){if(A7&&(!BC.element.parentNode||BC.element.parentNode.nodeType==11)){this._aListElements[BE].appendChild(BC.element);}else{A4=A3(A6,(BD+1));if(A4&&(!BC.element.parentNode||BC.element.parentNode.nodeType==11)){this._aListElements[BE].insertBefore(BC.element,A4.element);}}BC.parent=this;this._subscribeToItemEvents(BC);this._configureSubmenu(BC);this._updateItemProperties(BE);this.itemAddedEvent.fire(BC);this.changeContentEvent.fire();BA=BC;}}else{A5=A6.length;A6[A5]=BB;BC=A6[A5];if(BC){if(!g.isAncestor(this._aListElements[BE],BC.element)){this._aListElements[BE].appendChild(BC.element);}BC.element.setAttribute(Ar,BE);BC.element.setAttribute(j,A5);BC.parent=this;BC.index=A5;BC.groupIndex=BE;this._subscribeToItemEvents(BC);this._configureSubmenu(BC);if(A5===0){g.addClass(BC.element,AK);}this.itemAddedEvent.fire(BC);this.changeContentEvent.fire();BA=BC;}}}return BA;},_removeItemFromGroupByIndex:function(A6,A4){var A5=AN.isNumber(A6)?A6:0,A7=this._getItemGroup(A5),A9,A8,A3;if(A7){A9=A7.splice(A4,1);A8=A9[0];if(A8){this._updateItemProperties(A5);if(A7.length===0){A3=this._aListElements[A5];if(this.body&&A3){this.body.removeChild(A3);}this._aItemGroups.splice(A5,1);this._aListElements.splice(A5,1);A3=this._aListElements[0];if(A3){g.addClass(A3,AK);}}this.itemRemovedEvent.fire(A8);this.changeContentEvent.fire();}}return A8;},_removeItemFromGroupByValue:function(A6,A3){var A8=this._getItemGroup(A6),A9,A7,A5,A4;if(A8){A9=A8.length;A7=-1;if(A9>0){A4=A9-1;do{if(A8[A4]==A3){A7=A4;break;}}while(A4--);if(A7>-1){A5=this._removeItemFromGroupByIndex(A6,A7);}}}return A5;},_updateItemProperties:function(A4){var A5=this._getItemGroup(A4),A8=A5.length,A7,A6,A3;if(A8>0){A3=A8-1;do{A7=A5[A3];if(A7){A6=A7.element;A7.index=A3;A7.groupIndex=A4;A6.setAttribute(Ar,A4);A6.setAttribute(j,A3);g.removeClass(A6,AK);}}while(A3--);if(A6){g.addClass(A6,AK);}}},_createItemGroup:function(A5){var A3,A4;if(!this._aItemGroups[A5]){this._aItemGroups[A5]=[];A3=document.createElement(L);this._aListElements[A5]=A3;A4=this._aItemGroups[A5];}return A4;},_getItemGroup:function(A5){var A3=AN.isNumber(A5)?A5:0,A6=this._aItemGroups,A4;if(A3 in A6){A4=A6[A3];}return A4;},_configureSubmenu:function(A3){var A4=A3.cfg.getProperty(O);if(A4){this.cfg.configChangedEvent.subscribe(this._onParentMenuConfigChange,A4,true);this.renderEvent.subscribe(this._onParentMenuRender,A4,true);}},_subscribeToItemEvents:function(A3){A3.destroyEvent.subscribe(this._onMenuItemDestroy,A3,this);A3.cfg.configChangedEvent.subscribe(this._onMenuItemConfigChange,A3,this);
-},_onVisibleChange:function(A5,A4){var A3=A4[0];if(A3){g.addClass(this.element,As);}else{g.removeClass(this.element,As);}},_cancelHideDelay:function(){var A3=this.getRoot()._hideDelayTimer;if(A3){A3.cancel();}},_execHideDelay:function(){this._cancelHideDelay();var A3=this.getRoot();A3._hideDelayTimer=AN.later(A3.cfg.getProperty(AX),this,function(){if(A3.activeItem){if(A3.hasFocus()){A3.activeItem.focus();}A3.clearActiveItem();}if(A3==this&&!(this instanceof YAHOO.widget.MenuBar)&&this.cfg.getProperty(Ab)==AE){this.hide();}});},_cancelShowDelay:function(){var A3=this.getRoot()._showDelayTimer;if(A3){A3.cancel();}},_execSubmenuHideDelay:function(A5,A4,A3){A5._submenuHideDelayTimer=AN.later(50,this,function(){if(this._nCurrentMouseX>(A4+10)){A5._submenuHideDelayTimer=AN.later(A3,A5,function(){this.hide();});}else{A5.hide();}});},_disableScrollHeader:function(){if(!this._bHeaderDisabled){g.addClass(this.header,P);this._bHeaderDisabled=true;}},_disableScrollFooter:function(){if(!this._bFooterDisabled){g.addClass(this.footer,E);this._bFooterDisabled=true;}},_enableScrollHeader:function(){if(this._bHeaderDisabled){g.removeClass(this.header,P);this._bHeaderDisabled=false;}},_enableScrollFooter:function(){if(this._bFooterDisabled){g.removeClass(this.footer,E);this._bFooterDisabled=false;}},_onMouseOver:function(BF,A8){var BG=A8[0],BC=A8[1],A3=AB.getTarget(BG),A7=this.getRoot(),BE=this._submenuHideDelayTimer,A4,A6,BB,A5,BA,A9;var BD=function(){if(this.parent.cfg.getProperty(z)){this.show();}};if(!this._bStopMouseEventHandlers){if(!this._bHandledMouseOverEvent&&(A3==this.element||g.isAncestor(this.element,A3))){this._nCurrentMouseX=0;AB.on(this.element,c,this._onMouseMove,this,true);if(!(BC&&g.isAncestor(BC.element,AB.getRelatedTarget(BG)))){this.clearActiveItem();}if(this.parent&&BE){BE.cancel();this.parent.cfg.setProperty(z,true);A4=this.parent.parent;A4._bHandledMouseOutEvent=true;A4._bHandledMouseOverEvent=false;}this._bHandledMouseOverEvent=true;this._bHandledMouseOutEvent=false;}if(BC&&!BC.handledMouseOverEvent&&!BC.cfg.getProperty(Af)&&(A3==BC.element||g.isAncestor(BC.element,A3))){A6=this.cfg.getProperty(At);BB=(A6>0);if(BB){this._cancelShowDelay();}A5=this.activeItem;if(A5){A5.cfg.setProperty(z,false);}BA=BC.cfg;BA.setProperty(z,true);if(this.hasFocus()||A7._hasFocus){BC.focus();A7._hasFocus=false;}if(this.cfg.getProperty(a)){A9=BA.getProperty(O);if(A9){if(BB){A7._showDelayTimer=AN.later(A7.cfg.getProperty(At),A9,BD);}else{A9.show();}}}BC.handledMouseOverEvent=true;BC.handledMouseOutEvent=false;}}},_onMouseOut:function(BB,A5){var BC=A5[0],A9=A5[1],A6=AB.getRelatedTarget(BC),BA=false,A8,A7,A3,A4;if(!this._bStopMouseEventHandlers){if(A9&&!A9.cfg.getProperty(Af)){A8=A9.cfg;A7=A8.getProperty(O);if(A7&&(A6==A7.element||g.isAncestor(A7.element,A6))){BA=true;}if(!A9.handledMouseOutEvent&&((A6!=A9.element&&!g.isAncestor(A9.element,A6))||BA)){if(!BA){A9.cfg.setProperty(z,false);if(A7){A3=this.cfg.getProperty(d);A4=this.cfg.getProperty(At);if(!(this instanceof YAHOO.widget.MenuBar)&&A3>0&&A4>=A3){this._execSubmenuHideDelay(A7,AB.getPageX(BC),A3);}else{A7.hide();}}}A9.handledMouseOutEvent=true;A9.handledMouseOverEvent=false;}}if(!this._bHandledMouseOutEvent&&((A6!=this.element&&!g.isAncestor(this.element,A6))||BA)){AB.removeListener(this.element,c,this._onMouseMove);this._nCurrentMouseX=AB.getPageX(BC);this._bHandledMouseOutEvent=true;this._bHandledMouseOverEvent=false;}}},_onMouseMove:function(A4,A3){if(!this._bStopMouseEventHandlers){this._nCurrentMouseX=AB.getPageX(A4);}},_onClick:function(BD,A5){var BE=A5[0],A9=A5[1],BB=false,A7,A4,A3,A8,BA,BC;var A6=function(){if(!((Aq.gecko&&this.platform==Y)&&BE.button>0)){A4=this.getRoot();if(A4 instanceof YAHOO.widget.MenuBar||A4.cfg.getProperty(Ab)==C){A4.clearActiveItem();}else{A4.hide();}}};if(A9){if(A9.cfg.getProperty(Af)){AB.preventDefault(BE);A6.call(this);}else{A7=A9.cfg.getProperty(O);A8=A9.cfg.getProperty(Q);if(A8){BA=A8.indexOf(M);BC=A8.length;if(BA!=-1){A8=A8.substr(BA,BC);BC=A8.length;if(BC>1){A3=A8.substr(1,BC);BB=g.isAncestor(this.element,A3);}else{if(BC===1){BB=true;}}}}if(BB&&!A9.cfg.getProperty(V)){AB.preventDefault(BE);if(Aq.webkit){A9.focus();}else{A9.focusEvent.fire();}}if(!A7&&!this.cfg.getProperty(Ap)){A6.call(this);}}}},_onKeyDown:function(BH,BB){var BE=BB[0],BD=BB[1],BA,BF,A4,A8,BI,A3,BK,A7,BG,A6,BC,BJ,A9;function A5(){this._bStopMouseEventHandlers=true;AN.later(10,this,function(){this._bStopMouseEventHandlers=false;});}if(BD&&!BD.cfg.getProperty(Af)){BF=BD.cfg;A4=this.parent;switch(BE.keyCode){case 38:case 40:BI=(BE.keyCode==38)?BD.getPreviousEnabledSibling():BD.getNextEnabledSibling();if(BI){this.clearActiveItem();BI.cfg.setProperty(z,true);BI.focus();if(this.cfg.getProperty(AU)>0){A3=this.body;BK=A3.scrollTop;A7=A3.offsetHeight;BG=this.getItems();A6=BG.length-1;BC=BI.element.offsetTop;if(BE.keyCode==40){if(BC>=(A7+BK)){A3.scrollTop=BC-A7;}else{if(BC<=BK){A3.scrollTop=0;}}if(BI==BG[A6]){A3.scrollTop=BI.element.offsetTop;}}else{if(BC<=BK){A3.scrollTop=BC-BI.element.offsetHeight;}else{if(BC>=(BK+A7)){A3.scrollTop=BC;}}if(BI==BG[0]){A3.scrollTop=0;}}BK=A3.scrollTop;BJ=A3.scrollHeight-A3.offsetHeight;if(BK===0){this._disableScrollHeader();this._enableScrollFooter();}else{if(BK==BJ){this._enableScrollHeader();this._disableScrollFooter();}else{this._enableScrollHeader();this._enableScrollFooter();}}}}AB.preventDefault(BE);A5();break;case 39:BA=BF.getProperty(O);if(BA){if(!BF.getProperty(z)){BF.setProperty(z,true);}BA.show();BA.setInitialFocus();BA.setInitialSelection();}else{A8=this.getRoot();if(A8 instanceof YAHOO.widget.MenuBar){BI=A8.activeItem.getNextEnabledSibling();if(BI){A8.clearActiveItem();BI.cfg.setProperty(z,true);BA=BI.cfg.getProperty(O);if(BA){BA.show();BA.setInitialFocus();}else{BI.focus();}}}}AB.preventDefault(BE);A5();break;case 37:if(A4){A9=A4.parent;if(A9 instanceof YAHOO.widget.MenuBar){BI=A9.activeItem.getPreviousEnabledSibling();if(BI){A9.clearActiveItem();BI.cfg.setProperty(z,true);BA=BI.cfg.getProperty(O);if(BA){BA.show();
-BA.setInitialFocus();}else{BI.focus();}}}else{this.hide();A4.focus();}}AB.preventDefault(BE);A5();break;}}if(BE.keyCode==27){if(this.cfg.getProperty(Ab)==AE){this.hide();if(this.parent){this.parent.focus();}}else{if(this.activeItem){BA=this.activeItem.cfg.getProperty(O);if(BA&&BA.cfg.getProperty(As)){BA.hide();this.activeItem.focus();}else{this.activeItem.blur();this.activeItem.cfg.setProperty(z,false);}}}AB.preventDefault(BE);}},_onKeyPress:function(A5,A4){var A3=A4[0];if(A3.keyCode==40||A3.keyCode==38){AB.preventDefault(A3);}},_onBlur:function(A4,A3){if(this._hasFocus){this._hasFocus=false;}},_onYChange:function(A4,A3){var A6=this.parent,A8,A5,A7;if(A6){A8=A6.parent.body.scrollTop;if(A8>0){A7=(this.cfg.getProperty(R)-A8);g.setY(this.element,A7);A5=this.iframe;if(A5){g.setY(A5,A7);}this.cfg.setProperty(R,A7,true);}}},_onScrollTargetMouseOver:function(A9,BC){var BB=this._bodyScrollTimer;if(BB){BB.cancel();}this._cancelHideDelay();var A5=AB.getTarget(A9),A7=this.body,A6=this.cfg.getProperty(k),A3,A4;function BA(){var BD=A7.scrollTop;if(BD<A3){A7.scrollTop=(BD+A6);this._enableScrollHeader();}else{A7.scrollTop=A3;this._bodyScrollTimer.cancel();this._disableScrollFooter();}}function A8(){var BD=A7.scrollTop;if(BD>0){A7.scrollTop=(BD-A6);this._enableScrollFooter();}else{A7.scrollTop=0;this._bodyScrollTimer.cancel();this._disableScrollHeader();}}if(g.hasClass(A5,Ay)){A4=A8;}else{A3=A7.scrollHeight-A7.offsetHeight;A4=BA;}this._bodyScrollTimer=AN.later(10,this,A4,null,true);},_onScrollTargetMouseOut:function(A5,A3){var A4=this._bodyScrollTimer;if(A4){A4.cancel();}this._cancelHideDelay();},_onInit:function(A4,A3){this.cfg.subscribeToConfigEvent(As,this._onVisibleChange);var A5=!this.parent,A6=this.lazyLoad;if(((A5&&!A6)||(A5&&(this.cfg.getProperty(As)||this.cfg.getProperty(Ab)==C))||(!A5&&!A6))&&this.getItemGroups().length===0){if(this.srcElement){this._initSubTree();}if(this.itemData){this.addItems(this.itemData);}}else{if(A6){this.cfg.fireQueue();}}},_onBeforeRender:function(A6,A5){var A7=this.element,BA=this._aListElements.length,A4=true,A9=0,A3,A8;if(BA>0){do{A3=this._aListElements[A9];if(A3){if(A4){g.addClass(A3,AK);A4=false;}if(!g.isAncestor(A7,A3)){this.appendToBody(A3);}A8=this._aGroupTitleElements[A9];if(A8){if(!g.isAncestor(A7,A8)){A3.parentNode.insertBefore(A8,A3);}g.addClass(A3,D);}}A9++;}while(A9<BA);}},_onRender:function(A4,A3){if(this.cfg.getProperty(Ab)==AE){if(!this.cfg.getProperty(As)){this.positionOffScreen();}}},_onBeforeShow:function(A5,A4){var A7,BA,A6,A8=this.cfg.getProperty(h);if(this.lazyLoad&&this.getItemGroups().length===0){if(this.srcElement){this._initSubTree();}if(this.itemData){if(this.parent&&this.parent.parent&&this.parent.parent.srcElement&&this.parent.parent.srcElement.tagName.toUpperCase()==AI){A7=this.itemData.length;for(BA=0;BA<A7;BA++){if(this.itemData[BA].tagName){this.addItem((new this.ITEM_TYPE(this.itemData[BA])));}}}else{this.addItems(this.itemData);}}A6=this.srcElement;if(A6){if(A6.tagName.toUpperCase()==AI){if(g.inDocument(A6)){this.render(A6.parentNode);}else{this.render(A8);}}else{this.render();}}else{if(this.parent){this.render(this.parent.element);}else{this.render(A8);}}}var A9=this.parent,A3;if(!A9&&this.cfg.getProperty(Ab)==AE){this.cfg.refireEvent(f);}if(A9){A3=A9.parent.cfg.getProperty(AP);this.cfg.setProperty(q,[A9.element,A3[0],A3[1]]);this.align();}},getConstrainedY:function(BF){var BQ=this,BM=BQ.cfg.getProperty(q),BT=BQ.cfg.getProperty(AU),BP,BE={"trbr":true,"tlbl":true,"bltl":true,"brtr":true},A8=(BM&&BE[BM[1]+BM[2]]),BA=BQ.element,BU=BA.offsetHeight,BO=AC.VIEWPORT_OFFSET,BJ=g.getViewportHeight(),BN=g.getDocumentScrollTop(),BK=(BQ.cfg.getProperty(Ah)+BO<BJ),BS,BB,BH,BI,BD=false,BC,A5,BG,A7,A3=BF;var A9=function(){var BV;if((BQ.cfg.getProperty(R)-BN)>BH){BV=(BH-BU);}else{BV=(BH+BI);}BQ.cfg.setProperty(R,(BV+BN),true);return BV;};var A6=function(){if((BQ.cfg.getProperty(R)-BN)>BH){return(A5-BO);}else{return(BC-BO);}};var BL=function(){var BV;if((BQ.cfg.getProperty(R)-BN)>BH){BV=(BH+BI);}else{BV=(BH-BA.offsetHeight);}BQ.cfg.setProperty(R,(BV+BN),true);};var A4=function(){BQ._setScrollHeight(this.cfg.getProperty(AU));BQ.hideEvent.unsubscribe(A4);};var BR=function(){var BZ=A6(),BV=(BQ.getItems().length>0),BY,BX,BW;if(BU>BZ){BY=BV?BQ.cfg.getProperty(Ah):BU;if((BZ>BY)&&BV){BP=BZ;}else{BP=BT;}BQ._setScrollHeight(BP);BQ.hideEvent.subscribe(A4);BL();if(BZ<BY){if(BD){A9();}else{A9();BD=true;BX=BR();}}}else{if(BP&&(BP!=BT)){BQ._setScrollHeight(BT);BQ.hideEvent.subscribe(A4);BL();}}return BX;};if(BQ.cfg.getProperty(A2)&&A8){if(BK){BB=BM[0];BI=BB.offsetHeight;BH=(g.getY(BB)-BN);BC=BH;A5=(BJ-(BH+BI));BR();}A3=BQ.cfg.getProperty(R);}else{if(!(BQ instanceof YAHOO.widget.MenuBar)&&BU>=BJ){BS=(BJ-(BO*2));if(BS>BQ.cfg.getProperty(Ah)){BQ._setScrollHeight(BS);BQ.hideEvent.subscribe(A4);BL();A3=BQ.cfg.getProperty(R);}}else{if(BK){BG=BN+BO;A7=BN+BJ-BU-BO;if(BF<BG){A3=BG;}else{if(BF>A7){A3=A7;}}}else{A3=BO+BN;}}}return A3;},_onHide:function(A4,A3){if(this.cfg.getProperty(Ab)===AE){this.positionOffScreen();}},_onShow:function(BB,A9){var A3=this.parent,A5,A6,A8,A4;function A7(BD){var BC;if(BD.type==Ai||(BD.type==Ac&&BD.keyCode==27)){BC=AB.getTarget(BD);if(BC!=A5.element||!g.isAncestor(A5.element,BC)){A5.cfg.setProperty(a,false);AB.removeListener(document,Ai,A7);AB.removeListener(document,Ac,A7);}}}function BA(BD,BC,BE){this.cfg.setProperty(U,v);this.hideEvent.unsubscribe(BA,BE);}if(A3){A5=A3.parent;if(!A5.cfg.getProperty(a)&&(A5 instanceof YAHOO.widget.MenuBar||A5.cfg.getProperty(Ab)==C)){A5.cfg.setProperty(a,true);AB.on(document,Ai,A7);AB.on(document,Ac,A7);}if((this.cfg.getProperty("x")<A5.cfg.getProperty("x"))&&(Aq.gecko<1.9)&&!this.cfg.getProperty(U)){A6=this.element;A8=A6.offsetWidth;A6.style.width=A8+AR;A4=(A8-(A6.offsetWidth-A8))+AR;this.cfg.setProperty(U,A4);this.hideEvent.subscribe(BA,A4);}}},_onBeforeHide:function(A5,A4){var A3=this.activeItem,A7=this.getRoot(),A8,A6;if(A3){A8=A3.cfg;A8.setProperty(z,false);A6=A8.getProperty(O);if(A6){A6.hide();}}if(Aq.ie&&this.cfg.getProperty(Ab)===AE&&this.parent){A7._hasFocus=this.hasFocus();
-}if(A7==this){A7.blur();}},_onParentMenuConfigChange:function(A4,A3,A7){var A5=A3[0][0],A6=A3[0][1];switch(A5){case AG:case x:case AX:case At:case d:case AD:case Aw:case A0:case k:case Ah:case AF:case Ae:case A2:A7.cfg.setProperty(A5,A6);break;case AP:if(!(this.parent.parent instanceof YAHOO.widget.MenuBar)){A7.cfg.setProperty(A5,A6);}break;}},_onParentMenuRender:function(A4,A3,A9){var A6=A9.parent.parent,A5=A6.cfg,A7={constraintoviewport:A5.getProperty(x),xy:[0,0],clicktohide:A5.getProperty(AD),effect:A5.getProperty(Aw),showdelay:A5.getProperty(At),hidedelay:A5.getProperty(AX),submenuhidedelay:A5.getProperty(d),classname:A5.getProperty(A0),scrollincrement:A5.getProperty(k),minscrollheight:A5.getProperty(Ah),iframe:A5.getProperty(AG),shadow:A5.getProperty(Ae),preventcontextoverlap:A5.getProperty(A2),monitorresize:A5.getProperty(AF)},A8;if(!(A6 instanceof YAHOO.widget.MenuBar)){A7[AP]=A5.getProperty(AP);}A9.cfg.applyConfig(A7);if(!this.lazyLoad){A8=this.parent.element;if(this.element.parentNode==A8){this.render();}else{this.render(A8);}}},_onMenuItemDestroy:function(A5,A4,A3){this._removeItemFromGroupByValue(A3.groupIndex,A3);},_onMenuItemConfigChange:function(A5,A4,A3){var A7=A4[0][0],A8=A4[0][1],A6;switch(A7){case z:if(A8===true){this.activeItem=A3;}break;case O:A6=A4[0][1];if(A6){this._configureSubmenu(A3);}break;}},configVisible:function(A5,A4,A6){var A3,A7;if(this.cfg.getProperty(Ab)==AE){s.superclass.configVisible.call(this,A5,A4,A6);}else{A3=A4[0];A7=g.getStyle(this.element,AW);g.setStyle(this.element,J,As);if(A3){if(A7!=AV){this.beforeShowEvent.fire();g.setStyle(this.element,AW,AV);this.showEvent.fire();}}else{if(A7==AV){this.beforeHideEvent.fire();g.setStyle(this.element,AW,AY);this.hideEvent.fire();}}}},configPosition:function(A5,A4,A8){var A7=this.element,A6=A4[0]==C?C:AA,A9=this.cfg,A3;g.setStyle(A7,Ab,A6);if(A6==C){g.setStyle(A7,AW,AV);A9.setProperty(As,true);}else{g.setStyle(A7,J,AM);}if(A6==AA){A3=A9.getProperty(AT);if(!A3||A3===0){A9.setProperty(AT,1);}}},configIframe:function(A4,A3,A5){if(this.cfg.getProperty(Ab)==AE){s.superclass.configIframe.call(this,A4,A3,A5);}},configHideDelay:function(A4,A3,A7){var A9=A3[0],A8=this.mouseOutEvent,A5=this.mouseOverEvent,A6=this.keyDownEvent;if(A9>0){if(!this._bHideDelayEventHandlersAssigned){A8.subscribe(this._execHideDelay);A5.subscribe(this._cancelHideDelay);A6.subscribe(this._cancelHideDelay);this._bHideDelayEventHandlersAssigned=true;}}else{A8.unsubscribe(this._execHideDelay);A5.unsubscribe(this._cancelHideDelay);A6.unsubscribe(this._cancelHideDelay);this._bHideDelayEventHandlersAssigned=false;}},configContainer:function(A4,A3,A6){var A5=A3[0];if(AN.isString(A5)){this.cfg.setProperty(h,g.get(A5),true);}},_clearSetWidthFlag:function(){this._widthSetForScroll=false;this.cfg.unsubscribeFromConfigEvent(U,this._clearSetWidthFlag);},_setScrollHeight:function(BF){var BB=BF,BA=false,BG=false,A7,A8,BE,A5,A4,BD,BH,A3,BC,A9,A6;if(this.getItems().length>0){A7=this.element;A8=this.body;BE=this.header;A5=this.footer;BD=this._onScrollTargetMouseOver;BH=this._onScrollTargetMouseOut;A3=this.cfg.getProperty(Ah);A4=this.parent;if(BB>0&&BB<A3){BB=A3;}g.setStyle(A8,Am,v);g.removeClass(A8,m);A8.scrollTop=0;BG=((Aq.gecko&&A4&&A4.parent&&A4.parent.cfg.getProperty(Ab)==AE)||Aq.ie);if(BB>0&&BG&&!this.cfg.getProperty(U)){A9=A7.offsetWidth;A7.style.width=A9+AR;A6=(A9-(A7.offsetWidth-A9))+AR;this.cfg.unsubscribeFromConfigEvent(U,this._clearSetWidthFlag);this.cfg.setProperty(U,A6);this._widthSetForScroll=true;this.cfg.subscribeToConfigEvent(U,this._clearSetWidthFlag);}if(BB>0&&(!BE&&!A5)){this.setHeader(AL);this.setFooter(AL);BE=this.header;A5=this.footer;g.addClass(BE,T);g.addClass(A5,y);A7.insertBefore(BE,A8);A7.appendChild(A5);}BC=BB;if(BE&&A5){BC=(BC-(BE.offsetHeight+A5.offsetHeight));}if((BC>0)&&(A8.offsetHeight>BB)){g.addClass(A8,m);g.setStyle(A8,Am,(BC+AR));if(!this._hasScrollEventHandlers){AB.on(BE,Ag,BD,this,true);AB.on(BE,G,BH,this,true);AB.on(A5,Ag,BD,this,true);AB.on(A5,G,BH,this,true);this._hasScrollEventHandlers=true;}this._disableScrollHeader();this._enableScrollFooter();BA=true;}else{if(BE&&A5){if(this._widthSetForScroll){this._widthSetForScroll=false;this.cfg.unsubscribeFromConfigEvent(U,this._clearSetWidthFlag);this.cfg.setProperty(U,v);}this._enableScrollHeader();this._enableScrollFooter();if(this._hasScrollEventHandlers){AB.removeListener(BE,Ag,BD);AB.removeListener(BE,G,BH);AB.removeListener(A5,Ag,BD);AB.removeListener(A5,G,BH);this._hasScrollEventHandlers=false;}A7.removeChild(BE);A7.removeChild(A5);this.header=null;this.footer=null;BA=true;}}if(BA){this.cfg.refireEvent(AG);this.cfg.refireEvent(Ae);}}},_setMaxHeight:function(A4,A3,A5){this._setScrollHeight(A5);this.renderEvent.unsubscribe(this._setMaxHeight);},configMaxHeight:function(A4,A3,A5){var A6=A3[0];if(this.lazyLoad&&!this.body&&A6>0){this.renderEvent.subscribe(this._setMaxHeight,A6,this);}else{this._setScrollHeight(A6);}},configClassName:function(A5,A4,A6){var A3=A4[0];if(this._sClassName){g.removeClass(this.element,this._sClassName);}g.addClass(this.element,A3);this._sClassName=A3;},_onItemAdded:function(A4,A3){var A5=A3[0];if(A5){A5.cfg.setProperty(Af,true);}},configDisabled:function(A5,A4,A8){var A7=A4[0],A3=this.getItems(),A9,A6;if(AN.isArray(A3)){A9=A3.length;if(A9>0){A6=A9-1;do{A3[A6].cfg.setProperty(Af,A7);}while(A6--);}if(A7){this.clearActiveItem(true);g.addClass(this.element,Af);this.itemAddedEvent.subscribe(this._onItemAdded);}else{g.removeClass(this.element,Af);this.itemAddedEvent.unsubscribe(this._onItemAdded);}}},configShadow:function(BB,A5,BA){var A9=function(){var BE=this.element,BD=this._shadow;if(BD&&BE){if(BD.style.width&&BD.style.height){BD.style.width=v;BD.style.height=v;}BD.style.width=(BE.offsetWidth+6)+AR;BD.style.height=(BE.offsetHeight+1)+AR;}};var BC=function(){this.element.appendChild(this._shadow);};var A7=function(){g.addClass(this._shadow,AH);};var A8=function(){g.removeClass(this._shadow,AH);};var A4=function(){var BE=this._shadow,BD;if(!BE){BD=this.element;
-if(!An){An=document.createElement(K);An.className=n;}BE=An.cloneNode(false);BD.appendChild(BE);this._shadow=BE;this.beforeShowEvent.subscribe(A7);this.beforeHideEvent.subscribe(A8);if(Aq.ie){AN.later(0,this,function(){A9.call(this);this.syncIframe();});this.cfg.subscribeToConfigEvent(U,A9);this.cfg.subscribeToConfigEvent(Am,A9);this.cfg.subscribeToConfigEvent(AU,A9);this.changeContentEvent.subscribe(A9);Au.textResizeEvent.subscribe(A9,this,true);this.destroyEvent.subscribe(function(){Au.textResizeEvent.unsubscribe(A9,this);});}this.cfg.subscribeToConfigEvent(AU,BC);}};var A6=function(){if(this._shadow){BC.call(this);if(Aq.ie){A9.call(this);}}else{A4.call(this);}this.beforeShowEvent.unsubscribe(A6);};var A3=A5[0];if(A3&&this.cfg.getProperty(Ab)==AE){if(this.cfg.getProperty(As)){if(this._shadow){BC.call(this);if(Aq.ie){A9.call(this);}}else{A4.call(this);}}else{this.beforeShowEvent.subscribe(A6);}}},initEvents:function(){s.superclass.initEvents.call(this);var A4=Aa.length-1,A5,A3;do{A5=Aa[A4];A3=this.createEvent(A5[1]);A3.signature=F.LIST;this[A5[0]]=A3;}while(A4--);},positionOffScreen:function(){var A4=this.iframe,A5=this.element,A3=this.OFF_SCREEN_POSITION;A5.style.top=v;A5.style.left=v;if(A4){A4.style.top=A3;A4.style.left=A3;}},getRoot:function(){var A5=this.parent,A4,A3;if(A5){A4=A5.parent;A3=A4?A4.getRoot():this;}else{A3=this;}return A3;},toString:function(){var A4=Ao,A3=this.id;if(A3){A4+=(Az+A3);}return A4;},setItemGroupTitle:function(A8,A7){var A6,A5,A4,A3;if(AN.isString(A8)&&A8.length>0){A6=AN.isNumber(A7)?A7:0;A5=this._aGroupTitleElements[A6];if(A5){A5.innerHTML=A8;}else{A5=document.createElement(this.GROUP_TITLE_TAG_NAME);A5.innerHTML=A8;this._aGroupTitleElements[A6]=A5;}A4=this._aGroupTitleElements.length-1;do{if(this._aGroupTitleElements[A4]){g.removeClass(this._aGroupTitleElements[A4],AK);A3=A4;}}while(A4--);if(A3!==null){g.addClass(this._aGroupTitleElements[A3],AK);}this.changeContentEvent.fire();}},addItem:function(A3,A4){return this._addItemToGroup(A4,A3);},addItems:function(A7,A6){var A9,A3,A8,A4,A5;if(AN.isArray(A7)){A9=A7.length;A3=[];for(A4=0;A4<A9;A4++){A8=A7[A4];if(A8){if(AN.isArray(A8)){A3[A3.length]=this.addItems(A8,A4);}else{A3[A3.length]=this._addItemToGroup(A6,A8);}}}if(A3.length){A5=A3;}}return A5;},insertItem:function(A3,A4,A5){return this._addItemToGroup(A5,A3,A4);},removeItem:function(A3,A5){var A6,A4;if(!AN.isUndefined(A3)){if(A3 instanceof YAHOO.widget.MenuItem){A6=this._removeItemFromGroupByValue(A5,A3);}else{if(AN.isNumber(A3)){A6=this._removeItemFromGroupByIndex(A5,A3);}}if(A6){A6.destroy();A4=A6;}}return A4;},getItems:function(){var A6=this._aItemGroups,A4,A5,A3=[];if(AN.isArray(A6)){A4=A6.length;A5=((A4==1)?A6[0]:(Array.prototype.concat.apply(A3,A6)));}return A5;},getItemGroups:function(){return this._aItemGroups;},getItem:function(A4,A5){var A6,A3;if(AN.isNumber(A4)){A6=this._getItemGroup(A5);if(A6){A3=A6[A4];}}return A3;},getSubmenus:function(){var A4=this.getItems(),A8=A4.length,A3,A5,A7,A6;if(A8>0){A3=[];for(A6=0;A6<A8;A6++){A7=A4[A6];if(A7){A5=A7.cfg.getProperty(O);if(A5){A3[A3.length]=A5;}}}}return A3;},clearContent:function(){var A7=this.getItems(),A4=A7.length,A5=this.element,A6=this.body,BB=this.header,A3=this.footer,BA,A9,A8;if(A4>0){A8=A4-1;do{BA=A7[A8];if(BA){A9=BA.cfg.getProperty(O);if(A9){this.cfg.configChangedEvent.unsubscribe(this._onParentMenuConfigChange,A9);this.renderEvent.unsubscribe(this._onParentMenuRender,A9);}this.removeItem(BA,BA.groupIndex);}}while(A8--);}if(BB){AB.purgeElement(BB);A5.removeChild(BB);}if(A3){AB.purgeElement(A3);A5.removeChild(A3);}if(A6){AB.purgeElement(A6);A6.innerHTML=v;}this.activeItem=null;this._aItemGroups=[];this._aListElements=[];this._aGroupTitleElements=[];this.cfg.setProperty(U,null);},destroy:function(){this.clearContent();this._aItemGroups=null;this._aListElements=null;this._aGroupTitleElements=null;s.superclass.destroy.call(this);},setInitialFocus:function(){var A3=this._getFirstEnabledItem();if(A3){A3.focus();}},setInitialSelection:function(){var A3=this._getFirstEnabledItem();if(A3){A3.cfg.setProperty(z,true);}},clearActiveItem:function(A5){if(this.cfg.getProperty(At)>0){this._cancelShowDelay();}var A3=this.activeItem,A6,A4;if(A3){A6=A3.cfg;if(A5){A3.blur();this.getRoot()._hasFocus=true;}A6.setProperty(z,false);A4=A6.getProperty(O);if(A4){A4.hide();}this.activeItem=null;}},focus:function(){if(!this.hasFocus()){this.setInitialFocus();}},blur:function(){var A3;if(this.hasFocus()){A3=A1.getFocusedMenuItem();if(A3){A3.blur();}}},hasFocus:function(){return(A1.getFocusedMenu()==this.getRoot());},subscribe:function(){function A6(BB,BA,BD){var BE=BA[0],BC=BE.cfg.getProperty(O);if(BC){BC.subscribe.apply(BC,BD);}}function A9(BB,BA,BD){var BC=this.cfg.getProperty(O);if(BC){BC.subscribe.apply(BC,BD);}}s.superclass.subscribe.apply(this,arguments);s.superclass.subscribe.call(this,AS,A6,arguments);var A3=this.getItems(),A8,A7,A4,A5;if(A3){A8=A3.length;if(A8>0){A5=A8-1;do{A7=A3[A5];A4=A7.cfg.getProperty(O);if(A4){A4.subscribe.apply(A4,arguments);}else{A7.cfg.subscribeToConfigEvent(O,A9,arguments);}}while(A5--);}}},initDefaultConfig:function(){s.superclass.initDefaultConfig.call(this);var A3=this.cfg;A3.addProperty(AZ.key,{handler:this.configVisible,value:AZ.value,validator:AZ.validator});A3.addProperty(AQ.key,{handler:this.configConstrainToViewport,value:AQ.value,validator:AQ.validator,supercedes:AQ.supercedes});A3.addProperty(AJ.key,{value:AJ.value,validator:AJ.validator,supercedes:AJ.supercedes});A3.addProperty(S.key,{handler:this.configPosition,value:S.value,validator:S.validator,supercedes:S.supercedes});A3.addProperty(A.key,{value:A.value,suppressEvent:A.suppressEvent});A3.addProperty(u.key,{value:u.value,validator:u.validator,suppressEvent:u.suppressEvent});A3.addProperty(Z.key,{value:Z.value,validator:Z.validator,suppressEvent:Z.suppressEvent});A3.addProperty(r.key,{handler:this.configHideDelay,value:r.value,validator:r.validator,suppressEvent:r.suppressEvent});A3.addProperty(w.key,{value:w.value,validator:w.validator,suppressEvent:w.suppressEvent});
-A3.addProperty(p.key,{value:p.value,validator:p.validator,suppressEvent:p.suppressEvent});A3.addProperty(AO.key,{handler:this.configContainer,value:document.body,suppressEvent:AO.suppressEvent});A3.addProperty(Ad.key,{value:Ad.value,validator:Ad.validator,supercedes:Ad.supercedes,suppressEvent:Ad.suppressEvent});A3.addProperty(N.key,{value:N.value,validator:N.validator,supercedes:N.supercedes,suppressEvent:N.suppressEvent});A3.addProperty(X.key,{handler:this.configMaxHeight,value:X.value,validator:X.validator,suppressEvent:X.suppressEvent,supercedes:X.supercedes});A3.addProperty(W.key,{handler:this.configClassName,value:W.value,validator:W.validator,supercedes:W.supercedes});A3.addProperty(b.key,{handler:this.configDisabled,value:b.value,validator:b.validator,suppressEvent:b.suppressEvent});A3.addProperty(I.key,{handler:this.configShadow,value:I.value,validator:I.validator});A3.addProperty(Aj.key,{value:Aj.value,validator:Aj.validator});}});})();(function(){YAHOO.widget.MenuItem=function(AO,AN){if(AO){if(AN){this.parent=AN.parent;this.value=AN.value;this.id=AN.id;}this.init(AO,AN);}};var v=YAHOO.util.Dom,h=YAHOO.widget.Module,x=YAHOO.widget.Menu,a=YAHOO.widget.MenuItem,AG=YAHOO.util.CustomEvent,i=YAHOO.env.ua,AM=YAHOO.lang,AH="text",M="#",O="-",K="helptext",l="url",AD="target",A="emphasis",L="strongemphasis",Z="checked",u="submenu",G="disabled",B="selected",N="hassubmenu",S="checked-disabled",AE="hassubmenu-disabled",z="hassubmenu-selected",R="checked-selected",o="onclick",I="classname",AF="",g="OPTION",t="OPTGROUP",J="LI",Q="li",AA="href",AB='<a href="#"></a>',p="SELECT",V="DIV",AJ='<em class="helptext">',Y="<em>",H="</em>",U="<strong>",w="</strong>",W="preventcontextoverlap",f="obj",AC="scope",r="none",T="visible",D=" ",k="MenuItem",n=[["mouseOverEvent","mouseover"],["mouseOutEvent","mouseout"],["mouseDownEvent","mousedown"],["mouseUpEvent","mouseup"],["clickEvent","click"],["keyPressEvent","keypress"],["keyDownEvent","keydown"],["keyUpEvent","keyup"],["focusEvent","focus"],["blurEvent","blur"],["destroyEvent","destroy"]],m={key:AH,value:AF,validator:AM.isString,suppressEvent:true},q={key:K,supercedes:[AH],suppressEvent:true},F={key:l,value:M,suppressEvent:true},AK={key:AD,suppressEvent:true},AL={key:A,value:false,validator:AM.isBoolean,suppressEvent:true,supercedes:[AH]},b={key:L,value:false,validator:AM.isBoolean,suppressEvent:true,supercedes:[AH]},j={key:Z,value:false,validator:AM.isBoolean,suppressEvent:true,supercedes:[G,B]},E={key:u,suppressEvent:true,supercedes:[G,B]},AI={key:G,value:false,validator:AM.isBoolean,suppressEvent:true,supercedes:[AH,B]},d={key:B,value:false,validator:AM.isBoolean,suppressEvent:true},s={key:o,suppressEvent:true},y={key:I,value:null,validator:AM.isString,suppressEvent:true},c={},C;var X=function(AQ,AP){var AN=c[AQ];if(!AN){c[AQ]={};AN=c[AQ];}var AO=AN[AP];if(!AO){AO=AQ+O+AP;AN[AP]=AO;}return AO;};var e=function(AN){v.addClass(this.element,X(this.CSS_CLASS_NAME,AN));v.addClass(this._oAnchor,X(this.CSS_LABEL_CLASS_NAME,AN));};var P=function(AN){v.removeClass(this.element,X(this.CSS_CLASS_NAME,AN));v.removeClass(this._oAnchor,X(this.CSS_LABEL_CLASS_NAME,AN));};a.prototype={CSS_CLASS_NAME:"yuimenuitem",CSS_LABEL_CLASS_NAME:"yuimenuitemlabel",SUBMENU_TYPE:null,_oAnchor:null,_oHelpTextEM:null,_oSubmenu:null,_oOnclickAttributeValue:null,_sClassName:null,constructor:a,index:null,groupIndex:null,parent:null,element:null,srcElement:null,value:null,browser:h.prototype.browser,id:null,init:function(AN,AX){if(!this.SUBMENU_TYPE){this.SUBMENU_TYPE=x;}this.cfg=new YAHOO.util.Config(this);this.initDefaultConfig();var AT=this.cfg,AU=M,AP,AW,AV,AO,AR,AQ,AS;if(AM.isString(AN)){this._createRootNodeStructure();AT.queueProperty(AH,AN);}else{if(AN&&AN.tagName){switch(AN.tagName.toUpperCase()){case g:this._createRootNodeStructure();AT.queueProperty(AH,AN.text);AT.queueProperty(G,AN.disabled);this.value=AN.value;this.srcElement=AN;break;case t:this._createRootNodeStructure();AT.queueProperty(AH,AN.label);AT.queueProperty(G,AN.disabled);this.srcElement=AN;this._initSubTree();break;case J:AV=v.getFirstChild(AN);if(AV){AU=AV.getAttribute(AA,2);AO=AV.getAttribute(AD);AR=AV.innerHTML;}this.srcElement=AN;this.element=AN;this._oAnchor=AV;AT.setProperty(AH,AR,true);AT.setProperty(l,AU,true);AT.setProperty(AD,AO,true);this._initSubTree();break;}}}if(this.element){AQ=(this.srcElement||this.element).id;if(!AQ){AQ=this.id||v.generateId();this.element.id=AQ;}this.id=AQ;v.addClass(this.element,this.CSS_CLASS_NAME);v.addClass(this._oAnchor,this.CSS_LABEL_CLASS_NAME);AS=n.length-1;do{AW=n[AS];AP=this.createEvent(AW[1]);AP.signature=AG.LIST;this[AW[0]]=AP;}while(AS--);if(AX){AT.applyConfig(AX);}AT.fireQueue();}},_createRootNodeStructure:function(){var AN,AO;if(!C){C=document.createElement(Q);C.innerHTML=AB;}AN=C.cloneNode(true);AN.className=this.CSS_CLASS_NAME;AO=AN.firstChild;AO.className=this.CSS_LABEL_CLASS_NAME;this.element=AN;this._oAnchor=AO;},_initSubTree:function(){var AT=this.srcElement,AP=this.cfg,AR,AQ,AO,AN,AS;if(AT.childNodes.length>0){if(this.parent.lazyLoad&&this.parent.srcElement&&this.parent.srcElement.tagName.toUpperCase()==p){AP.setProperty(u,{id:v.generateId(),itemdata:AT.childNodes});}else{AR=AT.firstChild;AQ=[];do{if(AR&&AR.tagName){switch(AR.tagName.toUpperCase()){case V:AP.setProperty(u,AR);break;case g:AQ[AQ.length]=AR;break;}}}while((AR=AR.nextSibling));AO=AQ.length;if(AO>0){AN=new this.SUBMENU_TYPE(v.generateId());AP.setProperty(u,AN);for(AS=0;AS<AO;AS++){AN.addItem((new AN.ITEM_TYPE(AQ[AS])));}}}}},configText:function(AW,AP,AR){var AO=AP[0],AQ=this.cfg,AU=this._oAnchor,AN=AQ.getProperty(K),AV=AF,AS=AF,AT=AF;if(AO){if(AN){AV=AJ+AN+H;}if(AQ.getProperty(A)){AS=Y;AT=H;}if(AQ.getProperty(L)){AS=U;AT=w;}AU.innerHTML=(AS+AO+AT+AV);}},configHelpText:function(AP,AO,AN){this.cfg.refireEvent(AH);},configURL:function(AP,AO,AN){var AR=AO[0];if(!AR){AR=M;}var AQ=this._oAnchor;if(i.opera){AQ.removeAttribute(AA);}AQ.setAttribute(AA,AR);},configTarget:function(AQ,AP,AO){var AN=AP[0],AR=this._oAnchor;
-if(AN&&AN.length>0){AR.setAttribute(AD,AN);}else{AR.removeAttribute(AD);}},configEmphasis:function(AP,AO,AN){var AR=AO[0],AQ=this.cfg;if(AR&&AQ.getProperty(L)){AQ.setProperty(L,false);}AQ.refireEvent(AH);},configStrongEmphasis:function(AQ,AP,AO){var AN=AP[0],AR=this.cfg;if(AN&&AR.getProperty(A)){AR.setProperty(A,false);}AR.refireEvent(AH);},configChecked:function(AP,AO,AN){var AR=AO[0],AQ=this.cfg;if(AR){e.call(this,Z);}else{P.call(this,Z);}AQ.refireEvent(AH);if(AQ.getProperty(G)){AQ.refireEvent(G);}if(AQ.getProperty(B)){AQ.refireEvent(B);}},configDisabled:function(AP,AO,AN){var AR=AO[0],AS=this.cfg,AQ=AS.getProperty(u),AT=AS.getProperty(Z);if(AR){if(AS.getProperty(B)){AS.setProperty(B,false);}e.call(this,G);if(AQ){e.call(this,AE);}if(AT){e.call(this,S);}}else{P.call(this,G);if(AQ){P.call(this,AE);}if(AT){P.call(this,S);}}},configSelected:function(AP,AO,AN){var AT=this.cfg,AS=this._oAnchor,AR=AO[0],AU=AT.getProperty(Z),AQ=AT.getProperty(u);if(i.opera){AS.blur();}if(AR&&!AT.getProperty(G)){e.call(this,B);if(AQ){e.call(this,z);}if(AU){e.call(this,R);}}else{P.call(this,B);if(AQ){P.call(this,z);}if(AU){P.call(this,R);}}if(this.hasFocus()&&i.opera){AS.focus();}},_onSubmenuBeforeHide:function(AQ,AP){var AR=this.parent,AN;function AO(){AR._oAnchor.blur();AN.beforeHideEvent.unsubscribe(AO);}if(AR.hasFocus()){AN=AR.parent;AN.beforeHideEvent.subscribe(AO);}},configSubmenu:function(AU,AP,AS){var AR=AP[0],AQ=this.cfg,AO=this.parent&&this.parent.lazyLoad,AT,AV,AN;if(AR){if(AR instanceof x){AT=AR;AT.parent=this;AT.lazyLoad=AO;}else{if(AM.isObject(AR)&&AR.id&&!AR.nodeType){AV=AR.id;AN=AR;AN.lazyload=AO;AN.parent=this;AT=new this.SUBMENU_TYPE(AV,AN);AQ.setProperty(u,AT,true);}else{AT=new this.SUBMENU_TYPE(AR,{lazyload:AO,parent:this});AQ.setProperty(u,AT,true);}}if(AT){AT.cfg.setProperty(W,true);e.call(this,N);if(AQ.getProperty(l)===M){AQ.setProperty(l,(M+AT.id));}this._oSubmenu=AT;if(i.opera){AT.beforeHideEvent.subscribe(this._onSubmenuBeforeHide);}}}else{P.call(this,N);if(this._oSubmenu){this._oSubmenu.destroy();}}if(AQ.getProperty(G)){AQ.refireEvent(G);}if(AQ.getProperty(B)){AQ.refireEvent(B);}},configOnClick:function(AP,AO,AN){var AQ=AO[0];if(this._oOnclickAttributeValue&&(this._oOnclickAttributeValue!=AQ)){this.clickEvent.unsubscribe(this._oOnclickAttributeValue.fn,this._oOnclickAttributeValue.obj);this._oOnclickAttributeValue=null;}if(!this._oOnclickAttributeValue&&AM.isObject(AQ)&&AM.isFunction(AQ.fn)){this.clickEvent.subscribe(AQ.fn,((f in AQ)?AQ.obj:this),((AC in AQ)?AQ.scope:null));this._oOnclickAttributeValue=AQ;}},configClassName:function(AQ,AP,AO){var AN=AP[0];if(this._sClassName){v.removeClass(this.element,this._sClassName);}v.addClass(this.element,AN);this._sClassName=AN;},initDefaultConfig:function(){var AN=this.cfg;AN.addProperty(m.key,{handler:this.configText,value:m.value,validator:m.validator,suppressEvent:m.suppressEvent});AN.addProperty(q.key,{handler:this.configHelpText,supercedes:q.supercedes,suppressEvent:q.suppressEvent});AN.addProperty(F.key,{handler:this.configURL,value:F.value,suppressEvent:F.suppressEvent});AN.addProperty(AK.key,{handler:this.configTarget,suppressEvent:AK.suppressEvent});AN.addProperty(AL.key,{handler:this.configEmphasis,value:AL.value,validator:AL.validator,suppressEvent:AL.suppressEvent,supercedes:AL.supercedes});AN.addProperty(b.key,{handler:this.configStrongEmphasis,value:b.value,validator:b.validator,suppressEvent:b.suppressEvent,supercedes:b.supercedes});AN.addProperty(j.key,{handler:this.configChecked,value:j.value,validator:j.validator,suppressEvent:j.suppressEvent,supercedes:j.supercedes});AN.addProperty(AI.key,{handler:this.configDisabled,value:AI.value,validator:AI.validator,suppressEvent:AI.suppressEvent});AN.addProperty(d.key,{handler:this.configSelected,value:d.value,validator:d.validator,suppressEvent:d.suppressEvent});AN.addProperty(E.key,{handler:this.configSubmenu,supercedes:E.supercedes,suppressEvent:E.suppressEvent});AN.addProperty(s.key,{handler:this.configOnClick,suppressEvent:s.suppressEvent});AN.addProperty(y.key,{handler:this.configClassName,value:y.value,validator:y.validator,suppressEvent:y.suppressEvent});},getNextEnabledSibling:function(){var AQ,AT,AN,AS,AR,AO;function AP(AU,AV){return AU[AV]||AP(AU,(AV+1));}if(this.parent instanceof x){AQ=this.groupIndex;AT=this.parent.getItemGroups();if(this.index<(AT[AQ].length-1)){AN=AP(AT[AQ],(this.index+1));}else{if(AQ<(AT.length-1)){AS=AQ+1;}else{AS=0;}AR=AP(AT,AS);AN=AP(AR,0);}AO=(AN.cfg.getProperty(G)||AN.element.style.display==r)?AN.getNextEnabledSibling():AN;}return AO;},getPreviousEnabledSibling:function(){var AS,AU,AO,AN,AR,AQ;function AT(AV,AW){return AV[AW]||AT(AV,(AW-1));}function AP(AV,AW){return AV[AW]?AW:AP(AV,(AW+1));}if(this.parent instanceof x){AS=this.groupIndex;AU=this.parent.getItemGroups();if(this.index>AP(AU[AS],0)){AO=AT(AU[AS],(this.index-1));}else{if(AS>AP(AU,0)){AN=AS-1;}else{AN=AU.length-1;}AR=AT(AU,AN);AO=AT(AR,(AR.length-1));}AQ=(AO.cfg.getProperty(G)||AO.element.style.display==r)?AO.getPreviousEnabledSibling():AO;}return AQ;},focus:function(){var AQ=this.parent,AP=this._oAnchor,AN=AQ.activeItem;function AO(){try{if(!(i.ie&&!document.hasFocus())){if(AN){AN.blurEvent.fire();}AP.focus();this.focusEvent.fire();}}catch(AR){}}if(!this.cfg.getProperty(G)&&AQ&&AQ.cfg.getProperty(T)&&this.element.style.display!=r){AM.later(0,this,AO);}},blur:function(){var AN=this.parent;if(!this.cfg.getProperty(G)&&AN&&AN.cfg.getProperty(T)){AM.later(0,this,function(){try{this._oAnchor.blur();this.blurEvent.fire();}catch(AO){}},0);}},hasFocus:function(){return(YAHOO.widget.MenuManager.getFocusedMenuItem()==this);},destroy:function(){var AP=this.element,AO,AN,AR,AQ;if(AP){AO=this.cfg.getProperty(u);if(AO){AO.destroy();}AN=AP.parentNode;if(AN){AN.removeChild(AP);this.destroyEvent.fire();}AQ=n.length-1;do{AR=n[AQ];this[AR[0]].unsubscribeAll();}while(AQ--);this.cfg.configChangedEvent.unsubscribeAll();}},toString:function(){var AO=k,AN=this.id;if(AN){AO+=(D+AN);}return AO;}};AM.augmentProto(a,YAHOO.util.EventProvider);
-})();(function(){var B="xy",C="mousedown",F="ContextMenu",J=" ";YAHOO.widget.ContextMenu=function(L,K){YAHOO.widget.ContextMenu.superclass.constructor.call(this,L,K);};var I=YAHOO.util.Event,E=YAHOO.env.ua,G=YAHOO.widget.ContextMenu,A={"TRIGGER_CONTEXT_MENU":"triggerContextMenu","CONTEXT_MENU":(E.opera?C:"contextmenu"),"CLICK":"click"},H={key:"trigger",suppressEvent:true};function D(L,K,M){this.cfg.setProperty(B,M);this.beforeShowEvent.unsubscribe(D,M);}YAHOO.lang.extend(G,YAHOO.widget.Menu,{_oTrigger:null,_bCancelled:false,contextEventTarget:null,triggerContextMenuEvent:null,init:function(L,K){G.superclass.init.call(this,L);this.beforeInitEvent.fire(G);if(K){this.cfg.applyConfig(K,true);}this.initEvent.fire(G);},initEvents:function(){G.superclass.initEvents.call(this);this.triggerContextMenuEvent=this.createEvent(A.TRIGGER_CONTEXT_MENU);this.triggerContextMenuEvent.signature=YAHOO.util.CustomEvent.LIST;},cancel:function(){this._bCancelled=true;},_removeEventHandlers:function(){var K=this._oTrigger;if(K){I.removeListener(K,A.CONTEXT_MENU,this._onTriggerContextMenu);if(E.opera){I.removeListener(K,A.CLICK,this._onTriggerClick);}}},_onTriggerClick:function(L,K){if(L.ctrlKey){I.stopEvent(L);}},_onTriggerContextMenu:function(M,K){var L;if(!(M.type==C&&!M.ctrlKey)){I.stopEvent(M);this.contextEventTarget=I.getTarget(M);this.triggerContextMenuEvent.fire(M);YAHOO.widget.MenuManager.hideVisible();if(!this._bCancelled){L=I.getXY(M);if(!YAHOO.util.Dom.inDocument(this.element)){this.beforeShowEvent.subscribe(D,L);}else{this.cfg.setProperty(B,L);}this.show();}this._bCancelled=false;}},toString:function(){var L=F,K=this.id;if(K){L+=(J+K);}return L;},initDefaultConfig:function(){G.superclass.initDefaultConfig.call(this);this.cfg.addProperty(H.key,{handler:this.configTrigger,suppressEvent:H.suppressEvent});},destroy:function(){this._removeEventHandlers();G.superclass.destroy.call(this);},configTrigger:function(L,K,N){var M=K[0];if(M){if(this._oTrigger){this._removeEventHandlers();}this._oTrigger=M;I.on(M,A.CONTEXT_MENU,this._onTriggerContextMenu,this,true);if(E.opera){I.on(M,A.CLICK,this._onTriggerClick,this,true);}}else{this._removeEventHandlers();}}});}());YAHOO.widget.ContextMenuItem=YAHOO.widget.MenuItem;(function(){var D=YAHOO.lang,N="static",M="dynamic,"+N,A="disabled",F="selected",B="autosubmenudisplay",G="submenu",C="visible",Q=" ",H="submenutoggleregion",P="MenuBar";YAHOO.widget.MenuBar=function(T,S){YAHOO.widget.MenuBar.superclass.constructor.call(this,T,S);};function O(T){var S=false;if(D.isString(T)){S=(M.indexOf((T.toLowerCase()))!=-1);}return S;}var R=YAHOO.util.Event,L=YAHOO.widget.MenuBar,K={key:"position",value:N,validator:O,supercedes:[C]},E={key:"submenualignment",value:["tl","bl"]},J={key:B,value:false,validator:D.isBoolean,suppressEvent:true},I={key:H,value:false,validator:D.isBoolean};D.extend(L,YAHOO.widget.Menu,{init:function(T,S){if(!this.ITEM_TYPE){this.ITEM_TYPE=YAHOO.widget.MenuBarItem;}L.superclass.init.call(this,T);this.beforeInitEvent.fire(L);if(S){this.cfg.applyConfig(S,true);}this.initEvent.fire(L);},CSS_CLASS_NAME:"yuimenubar",SUBMENU_TOGGLE_REGION_WIDTH:20,_onKeyDown:function(U,T,Y){var S=T[0],Z=T[1],W,X,V;if(Z&&!Z.cfg.getProperty(A)){X=Z.cfg;switch(S.keyCode){case 37:case 39:if(Z==this.activeItem&&!X.getProperty(F)){X.setProperty(F,true);}else{V=(S.keyCode==37)?Z.getPreviousEnabledSibling():Z.getNextEnabledSibling();if(V){this.clearActiveItem();V.cfg.setProperty(F,true);W=V.cfg.getProperty(G);if(W){W.show();W.setInitialFocus();}else{V.focus();}}}R.preventDefault(S);break;case 40:if(this.activeItem!=Z){this.clearActiveItem();X.setProperty(F,true);Z.focus();}W=X.getProperty(G);if(W){if(W.cfg.getProperty(C)){W.setInitialSelection();W.setInitialFocus();}else{W.show();W.setInitialFocus();}}R.preventDefault(S);break;}}if(S.keyCode==27&&this.activeItem){W=this.activeItem.cfg.getProperty(G);if(W&&W.cfg.getProperty(C)){W.hide();this.activeItem.focus();}else{this.activeItem.cfg.setProperty(F,false);this.activeItem.blur();}R.preventDefault(S);}},_onClick:function(e,Y,b){L.superclass._onClick.call(this,e,Y,b);var d=Y[1],T=true,S,f,U,W,Z,a,c,V;var X=function(){if(a.cfg.getProperty(C)){a.hide();}else{a.show();}};if(d&&!d.cfg.getProperty(A)){f=Y[0];U=R.getTarget(f);W=this.activeItem;Z=this.cfg;if(W&&W!=d){this.clearActiveItem();}d.cfg.setProperty(F,true);a=d.cfg.getProperty(G);if(a){S=d.element;c=YAHOO.util.Dom.getX(S);V=c+(S.offsetWidth-this.SUBMENU_TOGGLE_REGION_WIDTH);if(Z.getProperty(H)){if(R.getPageX(f)>V){X();R.preventDefault(f);T=false;}}else{X();}}}return T;},configSubmenuToggle:function(U,T){var S=T[0];if(S){this.cfg.setProperty(B,false);}},toString:function(){var T=P,S=this.id;if(S){T+=(Q+S);}return T;},initDefaultConfig:function(){L.superclass.initDefaultConfig.call(this);var S=this.cfg;S.addProperty(K.key,{handler:this.configPosition,value:K.value,validator:K.validator,supercedes:K.supercedes});S.addProperty(E.key,{value:E.value,suppressEvent:E.suppressEvent});S.addProperty(J.key,{value:J.value,validator:J.validator,suppressEvent:J.suppressEvent});S.addProperty(I.key,{value:I.value,validator:I.validator,handler:this.configSubmenuToggle});}});}());YAHOO.widget.MenuBarItem=function(B,A){YAHOO.widget.MenuBarItem.superclass.constructor.call(this,B,A);};YAHOO.lang.extend(YAHOO.widget.MenuBarItem,YAHOO.widget.MenuItem,{init:function(B,A){if(!this.SUBMENU_TYPE){this.SUBMENU_TYPE=YAHOO.widget.Menu;}YAHOO.widget.MenuBarItem.superclass.init.call(this,B);var C=this.cfg;if(A){C.applyConfig(A,true);}C.fireQueue();},CSS_CLASS_NAME:"yuimenubaritem",CSS_LABEL_CLASS_NAME:"yuimenubaritemlabel",toString:function(){var A="MenuBarItem";if(this.cfg&&this.cfg.getProperty("text")){A+=(": "+this.cfg.getProperty("text"));}return A;}});YAHOO.register("menu",YAHOO.widget.Menu,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/menu/menu.js b/eclipse.org-common/yui/2.6.0/build/menu/menu.js
deleted file mode 100644
index 123c557..0000000
--- a/eclipse.org-common/yui/2.6.0/build/menu/menu.js
+++ /dev/null
@@ -1,9619 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-
-
-/**
-* @module menu
-* @description <p>The Menu family of components features a collection of 
-* controls that make it easy to add menus to your website or web application.  
-* With the Menu Controls you can create website fly-out menus, customized 
-* context menus, or application-style menu bars with just a small amount of 
-* scripting.</p><p>The Menu family of controls features:</p>
-* <ul>
-*    <li>Keyboard and mouse navigation.</li>
-*    <li>A rich event model that provides access to all of a menu's 
-*    interesting moments.</li>
-*    <li>Support for 
-*    <a href="http://en.wikipedia.org/wiki/Progressive_Enhancement">Progressive
-*    Enhancement</a>; Menus can be created from simple, 
-*    semantic markup on the page or purely through JavaScript.</li>
-* </ul>
-* @title Menu
-* @namespace YAHOO.widget
-* @requires Event, Dom, Container
-*/
-(function () {
-
-    var _DIV = "DIV",
-    	_HD = "hd",
-    	_BD = "bd",
-    	_FT = "ft",
-    	_LI = "LI",
-    	_DISABLED = "disabled",
-		_MOUSEOVER = "mouseover",
-		_MOUSEOUT = "mouseout",
-		_MOUSEDOWN = "mousedown",
-		_MOUSEUP = "mouseup",
-		_FOCUS = YAHOO.env.ua.ie ? "focusin" : "focus",		
-		_CLICK = "click",
-		_KEYDOWN = "keydown",
-		_KEYUP = "keyup",
-		_KEYPRESS = "keypress",
-		_CLICK_TO_HIDE = "clicktohide",
-		_POSITION = "position", 
-		_DYNAMIC = "dynamic",
-		_SHOW_DELAY = "showdelay",
-		_SELECTED = "selected",
-		_VISIBLE = "visible",
-		_UL = "UL",
-		_MENUMANAGER = "MenuManager",
-    	
-    
-    	Dom = YAHOO.util.Dom,
-        Event = YAHOO.util.Event,
-        Lang = YAHOO.lang;
-
-
-    /**
-    * Singleton that manages a collection of all menus and menu items.  Listens 
-    * for DOM events at the document level and dispatches the events to the 
-    * corresponding menu or menu item.
-    *
-    * @namespace YAHOO.widget
-    * @class MenuManager
-    * @static
-    */
-    YAHOO.widget.MenuManager = function () {
-    
-        // Private member variables
-    
-    
-        // Flag indicating if the DOM event handlers have been attached
-    
-        var m_bInitializedEventHandlers = false,
-    
-    
-        // Collection of menus
-
-        m_oMenus = {},
-
-
-        // Collection of visible menus
-    
-        m_oVisibleMenus = {},
-    
-    
-        //  Collection of menu items 
-
-        m_oItems = {},
-
-
-        // Map of DOM event types to their equivalent CustomEvent types
-        
-        m_oEventTypes = {
-            "click": "clickEvent",
-            "mousedown": "mouseDownEvent",
-            "mouseup": "mouseUpEvent",
-            "mouseover": "mouseOverEvent",
-            "mouseout": "mouseOutEvent",
-            "keydown": "keyDownEvent",
-            "keyup": "keyUpEvent",
-            "keypress": "keyPressEvent",
-            "focus": "focusEvent",
-            "focusin": "focusEvent",
-            "blur": "blurEvent",
-            "focusout": "blurEvent"
-        },
-
-
-    	// The element in the DOM that currently has focus
-    
-		m_oFocusedElement = null,
-    
-    
-        m_oFocusedMenuItem = null;
-    
-    
-    
-        // Private methods
-    
-    
-        /**
-        * @method getMenuRootElement
-        * @description Finds the root DIV node of a menu or the root LI node of 
-        * a menu item.
-        * @private
-        * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-        * level-one-html.html#ID-58190037">HTMLElement</a>} p_oElement Object 
-        * specifying an HTML element.
-        */
-        function getMenuRootElement(p_oElement) {
-        
-            var oParentNode,
-            	returnVal;
-    
-            if (p_oElement && p_oElement.tagName) {
-            
-                switch (p_oElement.tagName.toUpperCase()) {
-                        
-                case _DIV:
-    
-                    oParentNode = p_oElement.parentNode;
-    
-                    // Check if the DIV is the inner "body" node of a menu
-
-                    if ((
-                            Dom.hasClass(p_oElement, _HD) ||
-                            Dom.hasClass(p_oElement, _BD) ||
-                            Dom.hasClass(p_oElement, _FT)
-                        ) && 
-                        oParentNode && 
-                        oParentNode.tagName && 
-                        oParentNode.tagName.toUpperCase() == _DIV) {
-                    
-                        returnVal = oParentNode;
-                    
-                    }
-                    else {
-                    
-                        returnVal = p_oElement;
-                    
-                    }
-                
-                    break;
-
-                case _LI:
-    
-                    returnVal = p_oElement;
-                    
-                    break;
-
-                default:
-    
-                    oParentNode = p_oElement.parentNode;
-    
-                    if (oParentNode) {
-                    
-                        returnVal = getMenuRootElement(oParentNode);
-                    
-                    }
-                
-                    break;
-                
-                }
-    
-            }
-            
-            return returnVal;
-            
-        }
-    
-    
-    
-        // Private event handlers
-    
-    
-        /**
-        * @method onDOMEvent
-        * @description Generic, global event handler for all of a menu's 
-        * DOM-based events.  This listens for events against the document 
-        * object.  If the target of a given event is a member of a menu or 
-        * menu item's DOM, the instance's corresponding Custom Event is fired.
-        * @private
-        * @param {Event} p_oEvent Object representing the DOM event object  
-        * passed back by the event utility (YAHOO.util.Event).
-        */
-        function onDOMEvent(p_oEvent) {
-    
-            // Get the target node of the DOM event
-        
-            var oTarget = Event.getTarget(p_oEvent),
-                
-            // See if the target of the event was a menu, or a menu item
-    
-            oElement = getMenuRootElement(oTarget),
-            sCustomEventType,
-            sTagName,
-            sId,
-            oMenuItem,
-            oMenu; 
-    
-    
-            if (oElement) {
-    
-                sTagName = oElement.tagName.toUpperCase();
-        
-                if (sTagName == _LI) {
-            
-                    sId = oElement.id;
-            
-                    if (sId && m_oItems[sId]) {
-            
-                        oMenuItem = m_oItems[sId];
-                        oMenu = oMenuItem.parent;
-            
-                    }
-                
-                }
-                else if (sTagName == _DIV) {
-                
-                    if (oElement.id) {
-                    
-                        oMenu = m_oMenus[oElement.id];
-                    
-                    }
-                
-                }
-    
-            }
-    
-    
-            if (oMenu) {
-    
-                sCustomEventType = m_oEventTypes[p_oEvent.type];
-    
-    
-                // Fire the Custom Event that corresponds the current DOM event    
-        
-                if (oMenuItem && !oMenuItem.cfg.getProperty(_DISABLED)) {
-    
-                    oMenuItem[sCustomEventType].fire(p_oEvent);                   
-    
-                }
-        
-                oMenu[sCustomEventType].fire(p_oEvent, oMenuItem);
-            
-            }
-            else if (p_oEvent.type == _MOUSEDOWN) {
-    
-                /*
-                    If the target of the event wasn't a menu, hide all 
-                    dynamically positioned menus
-                */
-                
-                for (var i in m_oVisibleMenus) {
-        
-                    if (Lang.hasOwnProperty(m_oVisibleMenus, i)) {
-        
-                        oMenu = m_oVisibleMenus[i];
-
-                        if (oMenu.cfg.getProperty(_CLICK_TO_HIDE) && 
-                            !(oMenu instanceof YAHOO.widget.MenuBar) && 
-                            oMenu.cfg.getProperty(_POSITION) == _DYNAMIC) {
-        
-                            oMenu.hide();
-        
-                        }
-                        else {
-                            
-							if (oMenu.cfg.getProperty(_SHOW_DELAY) > 0) {
-							
-								oMenu._cancelShowDelay();
-							
-							}
-
-
-							if (oMenu.activeItem) {
-						
-								oMenu.activeItem.blur();
-								oMenu.activeItem.cfg.setProperty(_SELECTED, false);
-						
-								oMenu.activeItem = null;            
-						
-							}
-        
-                        }
-        
-                    }
-        
-                } 
-    
-            }
-            else if (p_oEvent.type == _FOCUS) {
-            
-            	m_oFocusedElement = oTarget;
-            
-            }
-            
-        }
-    
-    
-        /**
-        * @method onMenuDestroy
-        * @description "destroy" event handler for a menu.
-        * @private
-        * @param {String} p_sType String representing the name of the event 
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        * @param {YAHOO.widget.Menu} p_oMenu The menu that fired the event.
-        */
-        function onMenuDestroy(p_sType, p_aArgs, p_oMenu) {
-    
-            if (m_oMenus[p_oMenu.id]) {
-    
-                this.removeMenu(p_oMenu);
-    
-            }
-    
-        }
-    
-    
-        /**
-        * @method onMenuFocus
-        * @description "focus" event handler for a MenuItem instance.
-        * @private
-        * @param {String} p_sType String representing the name of the event 
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        function onMenuFocus(p_sType, p_aArgs) {
-    
-            var oItem = p_aArgs[1];
-    
-            if (oItem) {
-    
-                m_oFocusedMenuItem = oItem;
-            
-            }
-    
-        }
-    
-    
-        /**
-        * @method onMenuBlur
-        * @description "blur" event handler for a MenuItem instance.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        function onMenuBlur(p_sType, p_aArgs) {
-    
-            m_oFocusedMenuItem = null;
-    
-        }
-    
-
-        /**
-        * @method onMenuHide
-        * @description "hide" event handler for a Menu instance.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-		* @param <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-		* level-one-html.html#ID-58190037">p_oFocusedElement</a> The HTML element that had focus
-		* prior to the Menu being made visible
-        */    
-    	function onMenuHide(p_sType, p_aArgs, p_oFocusedElement) {
-
-			/*
-				Restore focus to the element in the DOM that had focus prior to the Menu 
-				being made visible
-			*/
-
-			if (p_oFocusedElement && p_oFocusedElement.focus) {
-			
-				try {
-					p_oFocusedElement.focus();
-				}
-				catch(ex) {
-				}
-			
-			}
-			
-    		this.hideEvent.unsubscribe(onMenuHide, p_oFocusedElement);
-    	
-    	}
-    
-
-        /**
-        * @method onMenuShow
-        * @description "show" event handler for a MenuItem instance.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */    	
-    	function onMenuShow(p_sType, p_aArgs) {
-
-			/*
-				Dynamically positioned, root Menus focus themselves when visible, and will then, 
-				when hidden, restore focus to the UI control that had focus before the Menu was 
-				made visible
-			*/ 
-
-			if (this === this.getRoot() && this.cfg.getProperty(_POSITION) === _DYNAMIC) {
-    	
-				this.hideEvent.subscribe(onMenuHide, m_oFocusedElement);
-				this.focus();
-			
-			}
-    	
-    	}    
-    
-    
-        /**
-        * @method onMenuVisibleConfigChange
-        * @description Event handler for when the "visible" configuration  
-        * property of a Menu instance changes.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        function onMenuVisibleConfigChange(p_sType, p_aArgs) {
-    
-            var bVisible = p_aArgs[0],
-                sId = this.id;
-            
-            if (bVisible) {
-    
-                m_oVisibleMenus[sId] = this;
-                
-            
-            }
-            else if (m_oVisibleMenus[sId]) {
-            
-                delete m_oVisibleMenus[sId];
-                
-            
-            }
-        
-        }
-    
-    
-        /**
-        * @method onItemDestroy
-        * @description "destroy" event handler for a MenuItem instance.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        function onItemDestroy(p_sType, p_aArgs) {
-    
-            removeItem(this);
-    
-        }
-
-
-        /**
-        * @method removeItem
-        * @description Removes a MenuItem instance from the MenuManager's collection of MenuItems.
-        * @private
-        * @param {MenuItem} p_oMenuItem The MenuItem instance to be removed.
-        */    
-        function removeItem(p_oMenuItem) {
-
-            var sId = p_oMenuItem.id;
-    
-            if (sId && m_oItems[sId]) {
-    
-                if (m_oFocusedMenuItem == p_oMenuItem) {
-    
-                    m_oFocusedMenuItem = null;
-    
-                }
-    
-                delete m_oItems[sId];
-                
-                p_oMenuItem.destroyEvent.unsubscribe(onItemDestroy);
-    
-    
-            }
-
-        }
-    
-    
-        /**
-        * @method onItemAdded
-        * @description "itemadded" event handler for a Menu instance.
-        * @private
-        * @param {String} p_sType String representing the name of the event  
-        * that was fired.
-        * @param {Array} p_aArgs Array of arguments sent when the event 
-        * was fired.
-        */
-        function onItemAdded(p_sType, p_aArgs) {
-    
-            var oItem = p_aArgs[0],
-                sId;
-    
-            if (oItem instanceof YAHOO.widget.MenuItem) { 
-    
-                sId = oItem.id;
-        
-                if (!m_oItems[sId]) {
-            
-                    m_oItems[sId] = oItem;
-        
-                    oItem.destroyEvent.subscribe(onItemDestroy);
-        
-        
-                }
-    
-            }
-        
-        }
-    
-    
-        return {
-    
-            // Privileged methods
-    
-    
-            /**
-            * @method addMenu
-            * @description Adds a menu to the collection of known menus.
-            * @param {YAHOO.widget.Menu} p_oMenu Object specifying the Menu  
-            * instance to be added.
-            */
-            addMenu: function (p_oMenu) {
-    
-                var oDoc;
-    
-                if (p_oMenu instanceof YAHOO.widget.Menu && p_oMenu.id && 
-                    !m_oMenus[p_oMenu.id]) {
-        
-                    m_oMenus[p_oMenu.id] = p_oMenu;
-                
-            
-                    if (!m_bInitializedEventHandlers) {
-            
-                        oDoc = document;
-                
-                        Event.on(oDoc, _MOUSEOVER, onDOMEvent, this, true);
-                        Event.on(oDoc, _MOUSEOUT, onDOMEvent, this, true);
-                        Event.on(oDoc, _MOUSEDOWN, onDOMEvent, this, true);
-                        Event.on(oDoc, _MOUSEUP, onDOMEvent, this, true);
-                        Event.on(oDoc, _CLICK, onDOMEvent, this, true);
-                        Event.on(oDoc, _KEYDOWN, onDOMEvent, this, true);
-                        Event.on(oDoc, _KEYUP, onDOMEvent, this, true);
-                        Event.on(oDoc, _KEYPRESS, onDOMEvent, this, true);
-    
-						Event.onFocus(oDoc, onDOMEvent, this, true);
-						Event.onBlur(oDoc, onDOMEvent, this, true);						
-    
-                        m_bInitializedEventHandlers = true;
-                        
-            
-                    }
-            
-                    p_oMenu.cfg.subscribeToConfigEvent(_VISIBLE, onMenuVisibleConfigChange);
-                    p_oMenu.destroyEvent.subscribe(onMenuDestroy, p_oMenu, this);
-                    p_oMenu.itemAddedEvent.subscribe(onItemAdded);
-                    p_oMenu.focusEvent.subscribe(onMenuFocus);
-                    p_oMenu.blurEvent.subscribe(onMenuBlur);
-                    p_oMenu.showEvent.subscribe(onMenuShow);
-        
-        
-                }
-        
-            },
-    
-        
-            /**
-            * @method removeMenu
-            * @description Removes a menu from the collection of known menus.
-            * @param {YAHOO.widget.Menu} p_oMenu Object specifying the Menu  
-            * instance to be removed.
-            */
-            removeMenu: function (p_oMenu) {
-    
-                var sId,
-                    aItems,
-                    i;
-        
-                if (p_oMenu) {
-    
-                    sId = p_oMenu.id;
-        
-                    if ((sId in m_oMenus) && (m_oMenus[sId] == p_oMenu)) {
-
-                        // Unregister each menu item
-
-                        aItems = p_oMenu.getItems();
-
-                        if (aItems && aItems.length > 0) {
-
-                            i = aItems.length - 1;
-
-                            do {
-
-                                removeItem(aItems[i]);
-
-                            }
-                            while (i--);
-
-                        }
-
-
-                        // Unregister the menu
-
-                        delete m_oMenus[sId];
-            
-        
-
-                        /*
-                             Unregister the menu from the collection of 
-                             visible menus
-                        */
-
-                        if ((sId in m_oVisibleMenus) && (m_oVisibleMenus[sId] == p_oMenu)) {
-            
-                            delete m_oVisibleMenus[sId];
-                            
-       
-                        }
-
-
-                        // Unsubscribe event listeners
-
-                        if (p_oMenu.cfg) {
-
-                            p_oMenu.cfg.unsubscribeFromConfigEvent(_VISIBLE, 
-                                onMenuVisibleConfigChange);
-                            
-                        }
-
-                        p_oMenu.destroyEvent.unsubscribe(onMenuDestroy, 
-                            p_oMenu);
-                
-                        p_oMenu.itemAddedEvent.unsubscribe(onItemAdded);
-                        p_oMenu.focusEvent.unsubscribe(onMenuFocus);
-                        p_oMenu.blurEvent.unsubscribe(onMenuBlur);
-
-                    }
-                
-                }
-    
-            },
-        
-        
-            /**
-            * @method hideVisible
-            * @description Hides all visible, dynamically positioned menus 
-            * (excluding instances of YAHOO.widget.MenuBar).
-            */
-            hideVisible: function () {
-        
-                var oMenu;
-        
-                for (var i in m_oVisibleMenus) {
-        
-                    if (Lang.hasOwnProperty(m_oVisibleMenus, i)) {
-        
-                        oMenu = m_oVisibleMenus[i];
-        
-                        if (!(oMenu instanceof YAHOO.widget.MenuBar) && 
-                            oMenu.cfg.getProperty(_POSITION) == _DYNAMIC) {
-        
-                            oMenu.hide();
-        
-                        }
-        
-                    }
-        
-                }        
-    
-            },
-
-
-            /**
-            * @method getVisible
-            * @description Returns a collection of all visible menus registered
-            * with the menu manger.
-            * @return {Object}
-            */
-            getVisible: function () {
-            
-                return m_oVisibleMenus;
-            
-            },
-
-    
-            /**
-            * @method getMenus
-            * @description Returns a collection of all menus registered with the 
-            * menu manger.
-            * @return {Object}
-            */
-            getMenus: function () {
-    
-                return m_oMenus;
-            
-            },
-    
-    
-            /**
-            * @method getMenu
-            * @description Returns a menu with the specified id.
-            * @param {String} p_sId String specifying the id of the 
-            * <code>&#60;div&#62;</code> element representing the menu to
-            * be retrieved.
-            * @return {YAHOO.widget.Menu}
-            */
-            getMenu: function (p_sId) {
-                
-                var returnVal;
-                
-                if (p_sId in m_oMenus) {
-                
-					returnVal = m_oMenus[p_sId];
-				
-				}
-            
-            	return returnVal;
-            
-            },
-    
-    
-            /**
-            * @method getMenuItem
-            * @description Returns a menu item with the specified id.
-            * @param {String} p_sId String specifying the id of the 
-            * <code>&#60;li&#62;</code> element representing the menu item to
-            * be retrieved.
-            * @return {YAHOO.widget.MenuItem}
-            */
-            getMenuItem: function (p_sId) {
-    
-    			var returnVal;
-    
-    			if (p_sId in m_oItems) {
-    
-					returnVal = m_oItems[p_sId];
-				
-				}
-				
-				return returnVal;
-            
-            },
-
-
-            /**
-            * @method getMenuItemGroup
-            * @description Returns an array of menu item instances whose 
-            * corresponding <code>&#60;li&#62;</code> elements are child 
-            * nodes of the <code>&#60;ul&#62;</code> element with the 
-            * specified id.
-            * @param {String} p_sId String specifying the id of the 
-            * <code>&#60;ul&#62;</code> element representing the group of 
-            * menu items to be retrieved.
-            * @return {Array}
-            */
-            getMenuItemGroup: function (p_sId) {
-
-                var oUL = Dom.get(p_sId),
-                    aItems,
-                    oNode,
-                    oItem,
-                    sId,
-                    returnVal;
-    
-
-                if (oUL && oUL.tagName && oUL.tagName.toUpperCase() == _UL) {
-
-                    oNode = oUL.firstChild;
-
-                    if (oNode) {
-
-                        aItems = [];
-                        
-                        do {
-
-                            sId = oNode.id;
-
-                            if (sId) {
-                            
-                                oItem = this.getMenuItem(sId);
-                                
-                                if (oItem) {
-                                
-                                    aItems[aItems.length] = oItem;
-                                
-                                }
-                            
-                            }
-                        
-                        }
-                        while ((oNode = oNode.nextSibling));
-
-
-                        if (aItems.length > 0) {
-
-                            returnVal = aItems;
-                        
-                        }
-
-                    }
-                
-                }
-
-				return returnVal;
-            
-            },
-
-    
-            /**
-            * @method getFocusedMenuItem
-            * @description Returns a reference to the menu item that currently 
-            * has focus.
-            * @return {YAHOO.widget.MenuItem}
-            */
-            getFocusedMenuItem: function () {
-    
-                return m_oFocusedMenuItem;
-    
-            },
-    
-    
-            /**
-            * @method getFocusedMenu
-            * @description Returns a reference to the menu that currently 
-            * has focus.
-            * @return {YAHOO.widget.Menu}
-            */
-            getFocusedMenu: function () {
-
-				var returnVal;
-    
-                if (m_oFocusedMenuItem) {
-    
-                    returnVal = m_oFocusedMenuItem.parent.getRoot();
-                
-                }
-    
-    			return returnVal;
-    
-            },
-    
-        
-            /**
-            * @method toString
-            * @description Returns a string representing the menu manager.
-            * @return {String}
-            */
-            toString: function () {
-            
-                return _MENUMANAGER;
-            
-            }
-    
-        };
-    
-    }();
-
-})();
-
-
-
-(function () {
-
-	var Lang = YAHOO.lang,
-
-	// String constants
-	
-		_MENU = "Menu",
-		_DIV_UPPERCASE = "DIV",
-		_DIV_LOWERCASE = "div",
-		_ID = "id",
-		_SELECT = "SELECT",
-		_XY = "xy",
-		_Y = "y",
-		_UL_UPPERCASE = "UL",
-		_UL_LOWERCASE = "ul",
-		_FIRST_OF_TYPE = "first-of-type",
-		_LI = "LI",
-		_OPTGROUP = "OPTGROUP",
-		_OPTION = "OPTION",
-		_DISABLED = "disabled",
-		_NONE = "none",
-		_SELECTED = "selected",
-		_GROUP_INDEX = "groupindex",
-		_INDEX = "index",
-		_SUBMENU = "submenu",
-		_VISIBLE = "visible",
-		_HIDE_DELAY = "hidedelay",
-		_POSITION = "position",
-		_DYNAMIC = "dynamic",
-		_STATIC = "static",
-		_DYNAMIC_STATIC = _DYNAMIC + "," + _STATIC,
-		_WINDOWS = "windows",
-		_URL = "url",
-		_HASH = "#",
-		_TARGET = "target",
-		_MAX_HEIGHT = "maxheight",
-        _TOP_SCROLLBAR = "topscrollbar",
-        _BOTTOM_SCROLLBAR = "bottomscrollbar",
-        _UNDERSCORE = "_",
-		_TOP_SCROLLBAR_DISABLED = _TOP_SCROLLBAR + _UNDERSCORE + _DISABLED,
-		_BOTTOM_SCROLLBAR_DISABLED = _BOTTOM_SCROLLBAR + _UNDERSCORE + _DISABLED,
-		_MOUSEMOVE = "mousemove",
-		_SHOW_DELAY = "showdelay",
-		_SUBMENU_HIDE_DELAY = "submenuhidedelay",
-		_IFRAME = "iframe",
-		_CONSTRAIN_TO_VIEWPORT = "constraintoviewport",
-		_PREVENT_CONTEXT_OVERLAP = "preventcontextoverlap",
-		_SUBMENU_ALIGNMENT = "submenualignment",
-		_AUTO_SUBMENU_DISPLAY = "autosubmenudisplay",
-		_CLICK_TO_HIDE = "clicktohide",
-		_CONTAINER = "container",
-		_SCROLL_INCREMENT = "scrollincrement",
-		_MIN_SCROLL_HEIGHT = "minscrollheight",
-		_CLASSNAME = "classname",
-		_SHADOW = "shadow",
-		_KEEP_OPEN = "keepopen",
-		_HD = "hd",
-		_HAS_TITLE = "hastitle",
-		_CONTEXT = "context",
-		_EMPTY_STRING = "",
-		_MOUSEDOWN = "mousedown",
-		_KEYDOWN = "keydown",
-		_HEIGHT = "height",
-		_WIDTH = "width",
-		_PX = "px",
-		_EFFECT = "effect",
-		_MONITOR_RESIZE = "monitorresize",
-		_DISPLAY = "display",
-		_BLOCK = "block",
-		_VISIBILITY = "visibility",
-		_ABSOLUTE = "absolute",
-		_ZINDEX = "zindex",
-		_YUI_MENU_BODY_SCROLLED = "yui-menu-body-scrolled",
-		_NON_BREAKING_SPACE = "&#32;",
-		_SPACE = " ",
-		_MOUSEOVER = "mouseover",
-		_MOUSEOUT = "mouseout",
-        _ITEM_ADDED = "itemAdded",
-        _ITEM_REMOVED = "itemRemoved",
-        _HIDDEN = "hidden",
-        _YUI_MENU_SHADOW = "yui-menu-shadow",
-        _YUI_MENU_SHADOW_VISIBLE = _YUI_MENU_SHADOW + "-visible",
-        _YUI_MENU_SHADOW_YUI_MENU_SHADOW_VISIBLE = _YUI_MENU_SHADOW + _SPACE + _YUI_MENU_SHADOW_VISIBLE;
-
-
-/**
-* The Menu class creates a container that holds a vertical list representing 
-* a set of options or commands.  Menu is the base class for all 
-* menu containers. 
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;div&#62;</code> element of the menu.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;select&#62;</code> element to be used as the data source 
-* for the menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-* level-one-html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object 
-* specifying the <code>&#60;div&#62;</code> element of the menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-* level-one-html.html#ID-94282980">HTMLSelectElement</a>} p_oElement 
-* Object specifying the <code>&#60;select&#62;</code> element to be used as 
-* the data source for the menu.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the menu. See configuration class documentation for 
-* more details.
-* @namespace YAHOO.widget
-* @class Menu
-* @constructor
-* @extends YAHOO.widget.Overlay
-*/
-YAHOO.widget.Menu = function (p_oElement, p_oConfig) {
-
-    if (p_oConfig) {
-
-        this.parent = p_oConfig.parent;
-        this.lazyLoad = p_oConfig.lazyLoad || p_oConfig.lazyload;
-        this.itemData = p_oConfig.itemData || p_oConfig.itemdata;
-
-    }
-
-
-    YAHOO.widget.Menu.superclass.constructor.call(this, p_oElement, p_oConfig);
-
-};
-
-
-
-/**
-* @method checkPosition
-* @description Checks to make sure that the value of the "position" property 
-* is one of the supported strings. Returns true if the position is supported.
-* @private
-* @param {Object} p_sPosition String specifying the position of the menu.
-* @return {Boolean}
-*/
-function checkPosition(p_sPosition) {
-
-	var returnVal = false;
-
-    if (Lang.isString(p_sPosition)) {
-
-        returnVal = (_DYNAMIC_STATIC.indexOf((p_sPosition.toLowerCase())) != -1);
-
-    }
-
-	return returnVal;
-
-}
-
-
-var Dom = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Module = YAHOO.widget.Module,
-    Overlay = YAHOO.widget.Overlay,
-    Menu = YAHOO.widget.Menu,
-    MenuManager = YAHOO.widget.MenuManager,
-    CustomEvent = YAHOO.util.CustomEvent,
-    UA = YAHOO.env.ua,
-    
-    m_oShadowTemplate,
-
-	EVENT_TYPES = [
-    
-		["mouseOverEvent", _MOUSEOVER],
-		["mouseOutEvent", _MOUSEOUT],
-		["mouseDownEvent", _MOUSEDOWN],
-		["mouseUpEvent", "mouseup"],
-		["clickEvent", "click"],
-		["keyPressEvent", "keypress"],
-		["keyDownEvent", _KEYDOWN],
-		["keyUpEvent", "keyup"],
-		["focusEvent", "focus"],
-		["blurEvent", "blur"],
-		["itemAddedEvent", _ITEM_ADDED],
-		["itemRemovedEvent", _ITEM_REMOVED]
-
-	],
-
-	VISIBLE_CONFIG =  { 
-		key: _VISIBLE, 
-		value: false, 
-		validator: Lang.isBoolean
-	}, 
-
-	CONSTRAIN_TO_VIEWPORT_CONFIG =  {
-		key: _CONSTRAIN_TO_VIEWPORT, 
-		value: true, 
-		validator: Lang.isBoolean, 
-		supercedes: [_IFRAME,"x",_Y,_XY]
-	}, 
-
-	PREVENT_CONTEXT_OVERLAP_CONFIG =  {
-		key: _PREVENT_CONTEXT_OVERLAP,
-		value: true,
-		validator: Lang.isBoolean,  
-		supercedes: [_CONSTRAIN_TO_VIEWPORT]
-	},
-
-	POSITION_CONFIG =  { 
-		key: _POSITION, 
-		value: _DYNAMIC, 
-		validator: checkPosition, 
-		supercedes: [_VISIBLE, _IFRAME]
-	}, 
-
-	SUBMENU_ALIGNMENT_CONFIG =  { 
-		key: _SUBMENU_ALIGNMENT, 
-		value: ["tl","tr"]
-	},
-
-	AUTO_SUBMENU_DISPLAY_CONFIG =  { 
-		key: _AUTO_SUBMENU_DISPLAY, 
-		value: true, 
-		validator: Lang.isBoolean,
-		suppressEvent: true
-	}, 
-
-	SHOW_DELAY_CONFIG =  { 
-		key: _SHOW_DELAY, 
-		value: 250, 
-		validator: Lang.isNumber, 
-		suppressEvent: true
-	}, 
-
-	HIDE_DELAY_CONFIG =  { 
-		key: _HIDE_DELAY, 
-		value: 0, 
-		validator: Lang.isNumber, 
-		suppressEvent: true
-	}, 
-
-	SUBMENU_HIDE_DELAY_CONFIG =  { 
-		key: _SUBMENU_HIDE_DELAY, 
-		value: 250, 
-		validator: Lang.isNumber,
-		suppressEvent: true
-	}, 
-
-	CLICK_TO_HIDE_CONFIG =  { 
-		key: _CLICK_TO_HIDE, 
-		value: true, 
-		validator: Lang.isBoolean,
-		suppressEvent: true
-	},
-
-	CONTAINER_CONFIG =  { 
-		key: _CONTAINER,
-		suppressEvent: true
-	}, 
-
-	SCROLL_INCREMENT_CONFIG =  { 
-		key: _SCROLL_INCREMENT, 
-		value: 1, 
-		validator: Lang.isNumber,
-		supercedes: [_MAX_HEIGHT],
-		suppressEvent: true
-	},
-
-	MIN_SCROLL_HEIGHT_CONFIG =  { 
-		key: _MIN_SCROLL_HEIGHT, 
-		value: 90, 
-		validator: Lang.isNumber,
-		supercedes: [_MAX_HEIGHT],
-		suppressEvent: true
-	},    
-
-	MAX_HEIGHT_CONFIG =  { 
-		key: _MAX_HEIGHT, 
-		value: 0, 
-		validator: Lang.isNumber,
-		supercedes: [_IFRAME],
-		suppressEvent: true
-	}, 
-
-	CLASS_NAME_CONFIG =  { 
-		key: _CLASSNAME, 
-		value: null, 
-		validator: Lang.isString,
-		suppressEvent: true
-	}, 
-
-	DISABLED_CONFIG =  { 
-		key: _DISABLED, 
-		value: false, 
-		validator: Lang.isBoolean,
-		suppressEvent: true
-	},
-	
-	SHADOW_CONFIG =  { 
-		key: _SHADOW, 
-		value: true, 
-		validator: Lang.isBoolean,
-		suppressEvent: true,
-		supercedes: [_VISIBLE]
-	},
-	
-	KEEP_OPEN_CONFIG = {
-		key: _KEEP_OPEN, 
-		value: false, 
-		validator: Lang.isBoolean
-	};
-
-
-
-YAHOO.lang.extend(Menu, Overlay, {
-
-
-// Constants
-
-
-/**
-* @property CSS_CLASS_NAME
-* @description String representing the CSS class(es) to be applied to the 
-* menu's <code>&#60;div&#62;</code> element.
-* @default "yuimenu"
-* @final
-* @type String
-*/
-CSS_CLASS_NAME: "yuimenu",
-
-
-/**
-* @property ITEM_TYPE
-* @description Object representing the type of menu item to instantiate and 
-* add when parsing the child nodes (either <code>&#60;li&#62;</code> element, 
-* <code>&#60;optgroup&#62;</code> element or <code>&#60;option&#62;</code>) 
-* of the menu's source HTML element.
-* @default YAHOO.widget.MenuItem
-* @final
-* @type YAHOO.widget.MenuItem
-*/
-ITEM_TYPE: null,
-
-
-/**
-* @property GROUP_TITLE_TAG_NAME
-* @description String representing the tagname of the HTML element used to 
-* title the menu's item groups.
-* @default H6
-* @final
-* @type String
-*/
-GROUP_TITLE_TAG_NAME: "h6",
-
-
-/**
-* @property OFF_SCREEN_POSITION
-* @description Array representing the default x and y position that a menu 
-* should have when it is positioned outside the viewport by the 
-* "poistionOffScreen" method.
-* @default "-999em"
-* @final
-* @type String
-*/
-OFF_SCREEN_POSITION: "-999em",
-
-
-// Private properties
-
-
-/** 
-* @property _bHideDelayEventHandlersAssigned
-* @description Boolean indicating if the "mouseover" and "mouseout" event 
-* handlers used for hiding the menu via a call to "YAHOO.lang.later" have 
-* already been assigned.
-* @default false
-* @private
-* @type Boolean
-*/
-_bHideDelayEventHandlersAssigned: false,
-
-
-/**
-* @property _bHandledMouseOverEvent
-* @description Boolean indicating the current state of the menu's 
-* "mouseover" event.
-* @default false
-* @private
-* @type Boolean
-*/
-_bHandledMouseOverEvent: false,
-
-
-/**
-* @property _bHandledMouseOutEvent
-* @description Boolean indicating the current state of the menu's
-* "mouseout" event.
-* @default false
-* @private
-* @type Boolean
-*/
-_bHandledMouseOutEvent: false,
-
-
-/**
-* @property _aGroupTitleElements
-* @description Array of HTML element used to title groups of menu items.
-* @default []
-* @private
-* @type Array
-*/
-_aGroupTitleElements: null,
-
-
-/**
-* @property _aItemGroups
-* @description Multi-dimensional Array representing the menu items as they
-* are grouped in the menu.
-* @default []
-* @private
-* @type Array
-*/
-_aItemGroups: null,
-
-
-/**
-* @property _aListElements
-* @description Array of <code>&#60;ul&#62;</code> elements, each of which is 
-* the parent node for each item's <code>&#60;li&#62;</code> element.
-* @default []
-* @private
-* @type Array
-*/
-_aListElements: null,
-
-
-/**
-* @property _nCurrentMouseX
-* @description The current x coordinate of the mouse inside the area of 
-* the menu.
-* @default 0
-* @private
-* @type Number
-*/
-_nCurrentMouseX: 0,
-
-
-/**
-* @property _bStopMouseEventHandlers
-* @description Stops "mouseover," "mouseout," and "mousemove" event handlers 
-* from executing.
-* @default false
-* @private
-* @type Boolean
-*/
-_bStopMouseEventHandlers: false,
-
-
-/**
-* @property _sClassName
-* @description The current value of the "classname" configuration attribute.
-* @default null
-* @private
-* @type String
-*/
-_sClassName: null,
-
-
-
-// Public properties
-
-
-/**
-* @property lazyLoad
-* @description Boolean indicating if the menu's "lazy load" feature is 
-* enabled.  If set to "true," initialization and rendering of the menu's 
-* items will be deferred until the first time it is made visible.  This 
-* property should be set via the constructor using the configuration 
-* object literal.
-* @default false
-* @type Boolean
-*/
-lazyLoad: false,
-
-
-/**
-* @property itemData
-* @description Array of items to be added to the menu.  The array can contain 
-* strings representing the text for each item to be created, object literals 
-* representing the menu item configuration properties, or MenuItem instances.  
-* This property should be set via the constructor using the configuration 
-* object literal.
-* @default null
-* @type Array
-*/
-itemData: null,
-
-
-/**
-* @property activeItem
-* @description Object reference to the item in the menu that has is selected.
-* @default null
-* @type YAHOO.widget.MenuItem
-*/
-activeItem: null,
-
-
-/**
-* @property parent
-* @description Object reference to the menu's parent menu or menu item.  
-* This property can be set via the constructor using the configuration 
-* object literal.
-* @default null
-* @type YAHOO.widget.MenuItem
-*/
-parent: null,
-
-
-/**
-* @property srcElement
-* @description Object reference to the HTML element (either 
-* <code>&#60;select&#62;</code> or <code>&#60;div&#62;</code>) used to 
-* create the menu.
-* @default null
-* @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-* level-one-html.html#ID-94282980">HTMLSelectElement</a>|<a 
-* href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.
-* html#ID-22445964">HTMLDivElement</a>
-*/
-srcElement: null,
-
-
-
-// Events
-
-
-/**
-* @event mouseOverEvent
-* @description Fires when the mouse has entered the menu.  Passes back 
-* the DOM Event object as an argument.
-*/
-
-
-/**
-* @event mouseOutEvent
-* @description Fires when the mouse has left the menu.  Passes back the DOM 
-* Event object as an argument.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event mouseDownEvent
-* @description Fires when the user mouses down on the menu.  Passes back the 
-* DOM Event object as an argument.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event mouseUpEvent
-* @description Fires when the user releases a mouse button while the mouse is 
-* over the menu.  Passes back the DOM Event object as an argument.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event clickEvent
-* @description Fires when the user clicks the on the menu.  Passes back the 
-* DOM Event object as an argument.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event keyPressEvent
-* @description Fires when the user presses an alphanumeric key when one of the
-* menu's items has focus.  Passes back the DOM Event object as an argument.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event keyDownEvent
-* @description Fires when the user presses a key when one of the menu's items 
-* has focus.  Passes back the DOM Event object as an argument.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event keyUpEvent
-* @description Fires when the user releases a key when one of the menu's items 
-* has focus.  Passes back the DOM Event object as an argument.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event itemAddedEvent
-* @description Fires when an item is added to the menu.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @event itemRemovedEvent
-* @description Fires when an item is removed to the menu.
-* @type YAHOO.util.CustomEvent
-*/
-
-
-/**
-* @method init
-* @description The Menu class's initialization method. This method is 
-* automatically called by the constructor, and sets up all DOM references 
-* for pre-existing markup, and creates required markup if it is not 
-* already present.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;div&#62;</code> element of the menu.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;select&#62;</code> element to be used as the data source 
-* for the menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-* level-one-html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object 
-* specifying the <code>&#60;div&#62;</code> element of the menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-* level-one-html.html#ID-94282980">HTMLSelectElement</a>} p_oElement 
-* Object specifying the <code>&#60;select&#62;</code> element to be used as 
-* the data source for the menu.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the menu. See configuration class documentation for 
-* more details.
-*/
-init: function (p_oElement, p_oConfig) {
-
-    this._aItemGroups = [];
-    this._aListElements = [];
-    this._aGroupTitleElements = [];
-
-    if (!this.ITEM_TYPE) {
-
-        this.ITEM_TYPE = YAHOO.widget.MenuItem;
-
-    }
-
-
-    var oElement;
-
-    if (Lang.isString(p_oElement)) {
-
-        oElement = Dom.get(p_oElement);
-
-    }
-    else if (p_oElement.tagName) {
-
-        oElement = p_oElement;
-
-    }
-
-
-    if (oElement && oElement.tagName) {
-
-        switch(oElement.tagName.toUpperCase()) {
-    
-            case _DIV_UPPERCASE:
-
-                this.srcElement = oElement;
-
-                if (!oElement.id) {
-
-                    oElement.setAttribute(_ID, Dom.generateId());
-
-                }
-
-
-                /* 
-                    Note: we don't pass the user config in here yet 
-                    because we only want it executed once, at the lowest 
-                    subclass level.
-                */ 
-            
-                Menu.superclass.init.call(this, oElement);
-
-                this.beforeInitEvent.fire(Menu);
-
-    
-            break;
-    
-            case _SELECT:
-    
-                this.srcElement = oElement;
-
-    
-                /*
-                    The source element is not something that we can use 
-                    outright, so we need to create a new Overlay
-
-                    Note: we don't pass the user config in here yet 
-                    because we only want it executed once, at the lowest 
-                    subclass level.
-                */ 
-
-                Menu.superclass.init.call(this, Dom.generateId());
-
-                this.beforeInitEvent.fire(Menu);
-
-
-            break;
-
-        }
-
-    }
-    else {
-
-        /* 
-            Note: we don't pass the user config in here yet 
-            because we only want it executed once, at the lowest 
-            subclass level.
-        */ 
-    
-        Menu.superclass.init.call(this, p_oElement);
-
-        this.beforeInitEvent.fire(Menu);
-
-
-    }
-
-
-    if (this.element) {
-
-        Dom.addClass(this.element, this.CSS_CLASS_NAME);
-
-
-        // Subscribe to Custom Events
-
-        this.initEvent.subscribe(this._onInit);
-        this.beforeRenderEvent.subscribe(this._onBeforeRender);
-        this.renderEvent.subscribe(this._onRender);
-        this.beforeShowEvent.subscribe(this._onBeforeShow);
-        this.hideEvent.subscribe(this._onHide);
-        this.showEvent.subscribe(this._onShow);
-        this.beforeHideEvent.subscribe(this._onBeforeHide);
-        this.mouseOverEvent.subscribe(this._onMouseOver);
-        this.mouseOutEvent.subscribe(this._onMouseOut);
-        this.clickEvent.subscribe(this._onClick);
-        this.keyDownEvent.subscribe(this._onKeyDown);
-        this.keyPressEvent.subscribe(this._onKeyPress);
-        this.blurEvent.subscribe(this._onBlur);
-        
-
-        if (UA.gecko || UA.webkit) {
-
-            this.cfg.subscribeToConfigEvent(_Y, this._onYChange);
-
-        }
-
-
-        if (p_oConfig) {
-    
-            this.cfg.applyConfig(p_oConfig, true);
-    
-        }
-
-
-        // Register the Menu instance with the MenuManager
-
-        MenuManager.addMenu(this);
-        
-
-        this.initEvent.fire(Menu);
-
-    }
-
-},
-
-
-
-// Private methods
-
-
-/**
-* @method _initSubTree
-* @description Iterates the childNodes of the source element to find nodes 
-* used to instantiate menu and menu items.
-* @private
-*/
-_initSubTree: function () {
-
-    var oSrcElement = this.srcElement,
-        sSrcElementTagName,
-        nGroup,
-        sGroupTitleTagName,
-        oNode,
-        aListElements,
-        nListElements,
-        i;
-
-
-    if (oSrcElement) {
-    
-        sSrcElementTagName = 
-            (oSrcElement.tagName && oSrcElement.tagName.toUpperCase());
-
-
-        if (sSrcElementTagName == _DIV_UPPERCASE) {
-    
-            //  Populate the collection of item groups and item group titles
-    
-            oNode = this.body.firstChild;
-    
-
-            if (oNode) {
-    
-                nGroup = 0;
-                sGroupTitleTagName = this.GROUP_TITLE_TAG_NAME.toUpperCase();
-        
-                do {
-        
-
-                    if (oNode && oNode.tagName) {
-        
-                        switch (oNode.tagName.toUpperCase()) {
-        
-                            case sGroupTitleTagName:
-                            
-                                this._aGroupTitleElements[nGroup] = oNode;
-        
-                            break;
-        
-                            case _UL_UPPERCASE:
-        
-                                this._aListElements[nGroup] = oNode;
-                                this._aItemGroups[nGroup] = [];
-                                nGroup++;
-        
-                            break;
-        
-                        }
-                    
-                    }
-        
-                }
-                while ((oNode = oNode.nextSibling));
-        
-        
-                /*
-                    Apply the "first-of-type" class to the first UL to mimic 
-                    the ":first-of-type" CSS3 psuedo class.
-                */
-        
-                if (this._aListElements[0]) {
-        
-                    Dom.addClass(this._aListElements[0], _FIRST_OF_TYPE);
-        
-                }
-            
-            }
-    
-        }
-    
-    
-        oNode = null;
-    
-    
-
-        if (sSrcElementTagName) {
-    
-            switch (sSrcElementTagName) {
-        
-                case _DIV_UPPERCASE:
-
-                    aListElements = this._aListElements;
-                    nListElements = aListElements.length;
-        
-                    if (nListElements > 0) {
-        
-        
-                        i = nListElements - 1;
-        
-                        do {
-        
-                            oNode = aListElements[i].firstChild;
-            
-                            if (oNode) {
-
-            
-                                do {
-                
-                                    if (oNode && oNode.tagName && 
-                                        oNode.tagName.toUpperCase() == _LI) {
-                
-        
-                                        this.addItem(new this.ITEM_TYPE(oNode, 
-                                                    { parent: this }), i);
-            
-                                    }
-                        
-                                }
-                                while ((oNode = oNode.nextSibling));
-                            
-                            }
-                    
-                        }
-                        while (i--);
-        
-                    }
-        
-                break;
-        
-                case _SELECT:
-        
-        
-                    oNode = oSrcElement.firstChild;
-        
-                    do {
-        
-                        if (oNode && oNode.tagName) {
-                        
-                            switch (oNode.tagName.toUpperCase()) {
-            
-                                case _OPTGROUP:
-                                case _OPTION:
-            
-            
-                                    this.addItem(
-                                            new this.ITEM_TYPE(
-                                                    oNode, 
-                                                    { parent: this }
-                                                )
-                                            );
-            
-                                break;
-            
-                            }
-    
-                        }
-        
-                    }
-                    while ((oNode = oNode.nextSibling));
-        
-                break;
-        
-            }
-    
-        }    
-    
-    }
-
-},
-
-
-/**
-* @method _getFirstEnabledItem
-* @description Returns the first enabled item in the menu.
-* @return {YAHOO.widget.MenuItem}
-* @private
-*/
-_getFirstEnabledItem: function () {
-
-    var aItems = this.getItems(),
-        nItems = aItems.length,
-        oItem,
-        returnVal;
-    
-
-    for(var i=0; i<nItems; i++) {
-
-        oItem = aItems[i];
-
-        if (oItem && !oItem.cfg.getProperty(_DISABLED) && oItem.element.style.display != _NONE) {
-
-            returnVal = oItem;
-            break;
-
-        }
-    
-    }
-    
-    return returnVal;
-    
-},
-
-
-/**
-* @method _addItemToGroup
-* @description Adds a menu item to a group.
-* @private
-* @param {Number} p_nGroupIndex Number indicating the group to which the 
-* item belongs.
-* @param {YAHOO.widget.MenuItem} p_oItem Object reference for the MenuItem 
-* instance to be added to the menu.
-* @param {String} p_oItem String specifying the text of the item to be added 
-* to the menu.
-* @param {Object} p_oItem Object literal containing a set of menu item 
-* configuration properties.
-* @param {Number} p_nItemIndex Optional. Number indicating the index at 
-* which the menu item should be added.
-* @return {YAHOO.widget.MenuItem}
-*/
-_addItemToGroup: function (p_nGroupIndex, p_oItem, p_nItemIndex) {
-
-    var oItem,
-        nGroupIndex,
-        aGroup,
-        oGroupItem,
-        bAppend,
-        oNextItemSibling,
-        nItemIndex,
-        returnVal;
-
-
-    function getNextItemSibling(p_aArray, p_nStartIndex) {
-
-        return (p_aArray[p_nStartIndex] || getNextItemSibling(p_aArray, (p_nStartIndex+1)));
-
-    }
-
-
-    if (p_oItem instanceof this.ITEM_TYPE) {
-
-        oItem = p_oItem;
-        oItem.parent = this;
-
-    }
-    else if (Lang.isString(p_oItem)) {
-
-        oItem = new this.ITEM_TYPE(p_oItem, { parent: this });
-    
-    }
-    else if (Lang.isObject(p_oItem)) {
-
-        p_oItem.parent = this;
-
-        oItem = new this.ITEM_TYPE(p_oItem.text, p_oItem);
-
-    }
-
-
-    if (oItem) {
-
-        if (oItem.cfg.getProperty(_SELECTED)) {
-
-            this.activeItem = oItem;
-        
-        }
-
-
-        nGroupIndex = Lang.isNumber(p_nGroupIndex) ? p_nGroupIndex : 0;
-        aGroup = this._getItemGroup(nGroupIndex);
-
-
-
-        if (!aGroup) {
-
-            aGroup = this._createItemGroup(nGroupIndex);
-
-        }
-
-
-        if (Lang.isNumber(p_nItemIndex)) {
-
-            bAppend = (p_nItemIndex >= aGroup.length);            
-
-
-            if (aGroup[p_nItemIndex]) {
-    
-                aGroup.splice(p_nItemIndex, 0, oItem);
-    
-            }
-            else {
-    
-                aGroup[p_nItemIndex] = oItem;
-    
-            }
-
-
-            oGroupItem = aGroup[p_nItemIndex];
-
-            if (oGroupItem) {
-
-                if (bAppend && (!oGroupItem.element.parentNode || 
-                        oGroupItem.element.parentNode.nodeType == 11)) {
-        
-                    this._aListElements[nGroupIndex].appendChild(oGroupItem.element);
-    
-                }
-                else {
-    
-                    oNextItemSibling = getNextItemSibling(aGroup, (p_nItemIndex+1));
-    
-                    if (oNextItemSibling && (!oGroupItem.element.parentNode || 
-                            oGroupItem.element.parentNode.nodeType == 11)) {
-            
-                        this._aListElements[nGroupIndex].insertBefore(
-                                oGroupItem.element, oNextItemSibling.element);
-        
-                    }
-    
-                }
-    
-
-                oGroupItem.parent = this;
-        
-                this._subscribeToItemEvents(oGroupItem);
-    
-                this._configureSubmenu(oGroupItem);
-                
-                this._updateItemProperties(nGroupIndex);
-        
-
-                this.itemAddedEvent.fire(oGroupItem);
-                this.changeContentEvent.fire();
-
-                returnVal = oGroupItem;
-    
-            }
-
-        }
-        else {
-    
-            nItemIndex = aGroup.length;
-    
-            aGroup[nItemIndex] = oItem;
-
-            oGroupItem = aGroup[nItemIndex];
-    
-
-            if (oGroupItem) {
-    
-                if (!Dom.isAncestor(this._aListElements[nGroupIndex], oGroupItem.element)) {
-    
-                    this._aListElements[nGroupIndex].appendChild(oGroupItem.element);
-    
-                }
-    
-                oGroupItem.element.setAttribute(_GROUP_INDEX, nGroupIndex);
-                oGroupItem.element.setAttribute(_INDEX, nItemIndex);
-        
-                oGroupItem.parent = this;
-    
-                oGroupItem.index = nItemIndex;
-                oGroupItem.groupIndex = nGroupIndex;
-        
-                this._subscribeToItemEvents(oGroupItem);
-    
-                this._configureSubmenu(oGroupItem);
-    
-                if (nItemIndex === 0) {
-        
-                    Dom.addClass(oGroupItem.element, _FIRST_OF_TYPE);
-        
-                }
-
-        
-
-                this.itemAddedEvent.fire(oGroupItem);
-                this.changeContentEvent.fire();
-
-                returnVal = oGroupItem;
-    
-            }
-    
-        }
-
-    }
-    
-    return returnVal;
-    
-},
-
-
-/**
-* @method _removeItemFromGroupByIndex
-* @description Removes a menu item from a group by index.  Returns the menu 
-* item that was removed.
-* @private
-* @param {Number} p_nGroupIndex Number indicating the group to which the menu 
-* item belongs.
-* @param {Number} p_nItemIndex Number indicating the index of the menu item 
-* to be removed.
-* @return {YAHOO.widget.MenuItem}
-*/
-_removeItemFromGroupByIndex: function (p_nGroupIndex, p_nItemIndex) {
-
-    var nGroupIndex = Lang.isNumber(p_nGroupIndex) ? p_nGroupIndex : 0,
-        aGroup = this._getItemGroup(nGroupIndex),
-        aArray,
-        oItem,
-        oUL;
-
-    if (aGroup) {
-
-        aArray = aGroup.splice(p_nItemIndex, 1);
-        oItem = aArray[0];
-    
-        if (oItem) {
-    
-            // Update the index and className properties of each member        
-            
-            this._updateItemProperties(nGroupIndex);
-    
-            if (aGroup.length === 0) {
-    
-                // Remove the UL
-    
-                oUL = this._aListElements[nGroupIndex];
-    
-                if (this.body && oUL) {
-    
-                    this.body.removeChild(oUL);
-    
-                }
-    
-                // Remove the group from the array of items
-    
-                this._aItemGroups.splice(nGroupIndex, 1);
-    
-    
-                // Remove the UL from the array of ULs
-    
-                this._aListElements.splice(nGroupIndex, 1);
-    
-    
-                /*
-                     Assign the "first-of-type" class to the new first UL 
-                     in the collection
-                */
-    
-                oUL = this._aListElements[0];
-    
-                if (oUL) {
-    
-                    Dom.addClass(oUL, _FIRST_OF_TYPE);
-    
-                }            
-    
-            }
-    
-
-            this.itemRemovedEvent.fire(oItem);
-            this.changeContentEvent.fire();
-    
-        }
-
-    }
-
-	// Return a reference to the item that was removed
-
-	return oItem;
-    
-},
-
-
-/**
-* @method _removeItemFromGroupByValue
-* @description Removes a menu item from a group by reference.  Returns the 
-* menu item that was removed.
-* @private
-* @param {Number} p_nGroupIndex Number indicating the group to which the
-* menu item belongs.
-* @param {YAHOO.widget.MenuItem} p_oItem Object reference for the MenuItem 
-* instance to be removed.
-* @return {YAHOO.widget.MenuItem}
-*/    
-_removeItemFromGroupByValue: function (p_nGroupIndex, p_oItem) {
-
-    var aGroup = this._getItemGroup(p_nGroupIndex),
-        nItems,
-        nItemIndex,
-        returnVal,
-        i;
-
-    if (aGroup) {
-
-        nItems = aGroup.length;
-        nItemIndex = -1;
-    
-        if (nItems > 0) {
-    
-            i = nItems-1;
-        
-            do {
-        
-                if (aGroup[i] == p_oItem) {
-        
-                    nItemIndex = i;
-                    break;    
-        
-                }
-        
-            }
-            while (i--);
-        
-            if (nItemIndex > -1) {
-        
-                returnVal = this._removeItemFromGroupByIndex(p_nGroupIndex, nItemIndex);
-        
-            }
-    
-        }
-    
-    }
-    
-    return returnVal;
-
-},
-
-
-/**
-* @method _updateItemProperties
-* @description Updates the "index," "groupindex," and "className" properties 
-* of the menu items in the specified group. 
-* @private
-* @param {Number} p_nGroupIndex Number indicating the group of items to update.
-*/
-_updateItemProperties: function (p_nGroupIndex) {
-
-    var aGroup = this._getItemGroup(p_nGroupIndex),
-        nItems = aGroup.length,
-        oItem,
-        oLI,
-        i;
-
-
-    if (nItems > 0) {
-
-        i = nItems - 1;
-
-        // Update the index and className properties of each member
-    
-        do {
-
-            oItem = aGroup[i];
-
-            if (oItem) {
-    
-                oLI = oItem.element;
-
-                oItem.index = i;
-                oItem.groupIndex = p_nGroupIndex;
-
-                oLI.setAttribute(_GROUP_INDEX, p_nGroupIndex);
-                oLI.setAttribute(_INDEX, i);
-
-                Dom.removeClass(oLI, _FIRST_OF_TYPE);
-
-            }
-    
-        }
-        while (i--);
-
-
-        if (oLI) {
-
-            Dom.addClass(oLI, _FIRST_OF_TYPE);
-
-        }
-
-    }
-
-},
-
-
-/**
-* @method _createItemGroup
-* @description Creates a new menu item group (array) and its associated 
-* <code>&#60;ul&#62;</code> element. Returns an aray of menu item groups.
-* @private
-* @param {Number} p_nIndex Number indicating the group to create.
-* @return {Array}
-*/
-_createItemGroup: function (p_nIndex) {
-
-    var oUL,
-    	returnVal;
-
-    if (!this._aItemGroups[p_nIndex]) {
-
-        this._aItemGroups[p_nIndex] = [];
-
-        oUL = document.createElement(_UL_LOWERCASE);
-
-        this._aListElements[p_nIndex] = oUL;
-
-        returnVal = this._aItemGroups[p_nIndex];
-
-    }
-    
-    return returnVal;
-
-},
-
-
-/**
-* @method _getItemGroup
-* @description Returns the menu item group at the specified index.
-* @private
-* @param {Number} p_nIndex Number indicating the index of the menu item group 
-* to be retrieved.
-* @return {Array}
-*/
-_getItemGroup: function (p_nIndex) {
-
-    var nIndex = Lang.isNumber(p_nIndex) ? p_nIndex : 0,
-    	aGroups = this._aItemGroups,
-    	returnVal;
-
-	if (nIndex in aGroups) {
-
-	    returnVal = aGroups[nIndex];
-
-	}
-	
-	return returnVal;
-
-},
-
-
-/**
-* @method _configureSubmenu
-* @description Subscribes the menu item's submenu to its parent menu's events.
-* @private
-* @param {YAHOO.widget.MenuItem} p_oItem Object reference for the MenuItem 
-* instance with the submenu to be configured.
-*/
-_configureSubmenu: function (p_oItem) {
-
-    var oSubmenu = p_oItem.cfg.getProperty(_SUBMENU);
-
-    if (oSubmenu) {
-            
-        /*
-            Listen for configuration changes to the parent menu 
-            so they they can be applied to the submenu.
-        */
-
-        this.cfg.configChangedEvent.subscribe(this._onParentMenuConfigChange, oSubmenu, true);
-
-        this.renderEvent.subscribe(this._onParentMenuRender, oSubmenu, true);
-
-    }
-
-},
-
-
-
-
-/**
-* @method _subscribeToItemEvents
-* @description Subscribes a menu to a menu item's event.
-* @private
-* @param {YAHOO.widget.MenuItem} p_oItem Object reference for the MenuItem 
-* instance whose events should be subscribed to.
-*/
-_subscribeToItemEvents: function (p_oItem) {
-
-    p_oItem.destroyEvent.subscribe(this._onMenuItemDestroy, p_oItem, this);
-    p_oItem.cfg.configChangedEvent.subscribe(this._onMenuItemConfigChange, p_oItem, this);
-
-},
-
-
-/**
-* @method _onVisibleChange
-* @description Change event handler for the the menu's "visible" configuration
-* property.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onVisibleChange: function (p_sType, p_aArgs) {
-
-    var bVisible = p_aArgs[0];
-    
-    if (bVisible) {
-
-        Dom.addClass(this.element, _VISIBLE);
-
-    }
-    else {
-
-        Dom.removeClass(this.element, _VISIBLE);
-
-    }
-
-},
-
-
-/**
-* @method _cancelHideDelay
-* @description Cancels the call to "hideMenu."
-* @private
-*/
-_cancelHideDelay: function () {
-
-    var oTimer = this.getRoot()._hideDelayTimer;
-
-    if (oTimer) {
-
-		oTimer.cancel();
-
-    }
-
-},
-
-
-/**
-* @method _execHideDelay
-* @description Hides the menu after the number of milliseconds specified by 
-* the "hidedelay" configuration property.
-* @private
-*/
-_execHideDelay: function () {
-
-    this._cancelHideDelay();
-
-    var oRoot = this.getRoot();
-        
-	oRoot._hideDelayTimer = Lang.later(oRoot.cfg.getProperty(_HIDE_DELAY), this, function () {
-    
-        if (oRoot.activeItem) {
-
-			if (oRoot.hasFocus()) {
-
-				oRoot.activeItem.focus();
-			
-			}
-			
-            oRoot.clearActiveItem();
-
-        }
-
-        if (oRoot == this && !(this instanceof YAHOO.widget.MenuBar) && 
-            this.cfg.getProperty(_POSITION) == _DYNAMIC) {
-
-            this.hide();
-        
-        }
-    
-    });
-
-},
-
-
-/**
-* @method _cancelShowDelay
-* @description Cancels the call to the "showMenu."
-* @private
-*/
-_cancelShowDelay: function () {
-
-    var oTimer = this.getRoot()._showDelayTimer;
-
-    if (oTimer) {
-
-        oTimer.cancel();
-
-    }
-
-},
-
-
-/**
-* @method _execSubmenuHideDelay
-* @description Hides a submenu after the number of milliseconds specified by 
-* the "submenuhidedelay" configuration property have ellapsed.
-* @private
-* @param {YAHOO.widget.Menu} p_oSubmenu Object specifying the submenu that  
-* should be hidden.
-* @param {Number} p_nMouseX The x coordinate of the mouse when it left 
-* the specified submenu's parent menu item.
-* @param {Number} p_nHideDelay The number of milliseconds that should ellapse
-* before the submenu is hidden.
-*/
-_execSubmenuHideDelay: function (p_oSubmenu, p_nMouseX, p_nHideDelay) {
-
-	p_oSubmenu._submenuHideDelayTimer = Lang.later(50, this, function () {
-
-        if (this._nCurrentMouseX > (p_nMouseX + 10)) {
-
-            p_oSubmenu._submenuHideDelayTimer = Lang.later(p_nHideDelay, p_oSubmenu, function () {
-        
-                this.hide();
-
-            });
-
-        }
-        else {
-
-            p_oSubmenu.hide();
-        
-        }
-	
-	});
-
-},
-
-
-
-// Protected methods
-
-
-/**
-* @method _disableScrollHeader
-* @description Disables the header used for scrolling the body of the menu.
-* @protected
-*/
-_disableScrollHeader: function () {
-
-    if (!this._bHeaderDisabled) {
-
-        Dom.addClass(this.header, _TOP_SCROLLBAR_DISABLED);
-        this._bHeaderDisabled = true;
-
-    }
-
-},
-
-
-/**
-* @method _disableScrollFooter
-* @description Disables the footer used for scrolling the body of the menu.
-* @protected
-*/
-_disableScrollFooter: function () {
-
-    if (!this._bFooterDisabled) {
-
-        Dom.addClass(this.footer, _BOTTOM_SCROLLBAR_DISABLED);
-        this._bFooterDisabled = true;
-
-    }
-
-},
-
-
-/**
-* @method _enableScrollHeader
-* @description Enables the header used for scrolling the body of the menu.
-* @protected
-*/
-_enableScrollHeader: function () {
-
-    if (this._bHeaderDisabled) {
-
-        Dom.removeClass(this.header, _TOP_SCROLLBAR_DISABLED);
-        this._bHeaderDisabled = false;
-
-    }
-
-},
-
-
-/**
-* @method _enableScrollFooter
-* @description Enables the footer used for scrolling the body of the menu.
-* @protected
-*/
-_enableScrollFooter: function () {
-
-    if (this._bFooterDisabled) {
-
-        Dom.removeClass(this.footer, _BOTTOM_SCROLLBAR_DISABLED);
-        this._bFooterDisabled = false;
-
-    }
-
-},
-
-
-/**
-* @method _onMouseOver
-* @description "mouseover" event handler for the menu.
-* @protected
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onMouseOver: function (p_sType, p_aArgs) {
-
-    var oEvent = p_aArgs[0],
-        oItem = p_aArgs[1],
-        oTarget = Event.getTarget(oEvent),
-        oRoot = this.getRoot(),
-        oSubmenuHideDelayTimer = this._submenuHideDelayTimer,
-        oParentMenu,
-        nShowDelay,
-        bShowDelay,
-        oActiveItem,
-        oItemCfg,
-        oSubmenu;
-
-
-    var showSubmenu = function () {
-
-        if (this.parent.cfg.getProperty(_SELECTED)) {
-
-            this.show();
-
-        }
-
-    };
-
-
-    if (!this._bStopMouseEventHandlers) {
-    
-		if (!this._bHandledMouseOverEvent && (oTarget == this.element || 
-				Dom.isAncestor(this.element, oTarget))) {
-	
-			// Menu mouseover logic
-	
-			this._nCurrentMouseX = 0;
-	
-			Event.on(this.element, _MOUSEMOVE, this._onMouseMove, this, true);
-
-
-			/*
-				If the mouse is moving from the submenu back to its corresponding menu item, 
-				don't hide the submenu or clear the active MenuItem.
-			*/
-
-			if (!(oItem && Dom.isAncestor(oItem.element, Event.getRelatedTarget(oEvent)))) {
-
-				this.clearActiveItem();
-
-			}
-	
-
-			if (this.parent && oSubmenuHideDelayTimer) {
-	
-				oSubmenuHideDelayTimer.cancel();
-	
-				this.parent.cfg.setProperty(_SELECTED, true);
-	
-				oParentMenu = this.parent.parent;
-	
-				oParentMenu._bHandledMouseOutEvent = true;
-				oParentMenu._bHandledMouseOverEvent = false;
-	
-			}
-	
-	
-			this._bHandledMouseOverEvent = true;
-			this._bHandledMouseOutEvent = false;
-		
-		}
-	
-	
-		if (oItem && !oItem.handledMouseOverEvent && !oItem.cfg.getProperty(_DISABLED) && 
-			(oTarget == oItem.element || Dom.isAncestor(oItem.element, oTarget))) {
-	
-			// Menu Item mouseover logic
-	
-			nShowDelay = this.cfg.getProperty(_SHOW_DELAY);
-			bShowDelay = (nShowDelay > 0);
-	
-	
-			if (bShowDelay) {
-			
-				this._cancelShowDelay();
-			
-			}
-	
-	
-			oActiveItem = this.activeItem;
-		
-			if (oActiveItem) {
-		
-				oActiveItem.cfg.setProperty(_SELECTED, false);
-		
-			}
-	
-	
-			oItemCfg = oItem.cfg;
-		
-			// Select and focus the current menu item
-		
-			oItemCfg.setProperty(_SELECTED, true);
-	
-	
-			if (this.hasFocus() || oRoot._hasFocus) {
-			
-				oItem.focus();
-				
-				oRoot._hasFocus = false;
-			
-			}
-	
-	
-			if (this.cfg.getProperty(_AUTO_SUBMENU_DISPLAY)) {
-	
-				// Show the submenu this menu item
-	
-				oSubmenu = oItemCfg.getProperty(_SUBMENU);
-			
-				if (oSubmenu) {
-			
-					if (bShowDelay) {
-	
-						oRoot._showDelayTimer = 
-							Lang.later(oRoot.cfg.getProperty(_SHOW_DELAY), oSubmenu, showSubmenu);
-			
-					}
-					else {
-	
-						oSubmenu.show();
-	
-					}
-	
-				}
-	
-			}                        
-	
-			oItem.handledMouseOverEvent = true;
-			oItem.handledMouseOutEvent = false;
-	
-		}
-    
-    }
-
-},
-
-
-/**
-* @method _onMouseOut
-* @description "mouseout" event handler for the menu.
-* @protected
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onMouseOut: function (p_sType, p_aArgs) {
-
-    var oEvent = p_aArgs[0],
-        oItem = p_aArgs[1],
-        oRelatedTarget = Event.getRelatedTarget(oEvent),
-        bMovingToSubmenu = false,
-        oItemCfg,
-        oSubmenu,
-        nSubmenuHideDelay,
-        nShowDelay;
-
-
-    if (!this._bStopMouseEventHandlers) {
-    
-		if (oItem && !oItem.cfg.getProperty(_DISABLED)) {
-	
-			oItemCfg = oItem.cfg;
-			oSubmenu = oItemCfg.getProperty(_SUBMENU);
-	
-	
-			if (oSubmenu && (oRelatedTarget == oSubmenu.element ||
-					Dom.isAncestor(oSubmenu.element, oRelatedTarget))) {
-	
-				bMovingToSubmenu = true;
-	
-			}
-	
-	
-			if (!oItem.handledMouseOutEvent && ((oRelatedTarget != oItem.element &&  
-				!Dom.isAncestor(oItem.element, oRelatedTarget)) || bMovingToSubmenu)) {
-	
-				// Menu Item mouseout logic
-	
-				if (!bMovingToSubmenu) {
-	
-					oItem.cfg.setProperty(_SELECTED, false);
-	
-	
-					if (oSubmenu) {
-	
-						nSubmenuHideDelay = this.cfg.getProperty(_SUBMENU_HIDE_DELAY);
-	
-						nShowDelay = this.cfg.getProperty(_SHOW_DELAY);
-	
-						if (!(this instanceof YAHOO.widget.MenuBar) && nSubmenuHideDelay > 0 && 
-							nShowDelay >= nSubmenuHideDelay) {
-	
-							this._execSubmenuHideDelay(oSubmenu, Event.getPageX(oEvent),
-									nSubmenuHideDelay);
-	
-						}
-						else {
-	
-							oSubmenu.hide();
-	
-						}
-	
-					}
-	
-				}
-	
-	
-				oItem.handledMouseOutEvent = true;
-				oItem.handledMouseOverEvent = false;
-		
-			}
-	
-		}
-
-
-		if (!this._bHandledMouseOutEvent && ((oRelatedTarget != this.element &&  
-			!Dom.isAncestor(this.element, oRelatedTarget)) || bMovingToSubmenu)) {
-	
-			// Menu mouseout logic
-	
-			Event.removeListener(this.element, _MOUSEMOVE, this._onMouseMove);
-	
-			this._nCurrentMouseX = Event.getPageX(oEvent);
-	
-			this._bHandledMouseOutEvent = true;
-			this._bHandledMouseOverEvent = false;
-	
-		}
-    
-    }
-
-},
-
-
-/**
-* @method _onMouseMove
-* @description "click" event handler for the menu.
-* @protected
-* @param {Event} p_oEvent Object representing the DOM event object passed 
-* back by the event utility (YAHOO.util.Event).
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-_onMouseMove: function (p_oEvent, p_oMenu) {
-
-    if (!this._bStopMouseEventHandlers) {
-    
-	    this._nCurrentMouseX = Event.getPageX(p_oEvent);
-    
-    }
-
-},
-
-
-/**
-* @method _onClick
-* @description "click" event handler for the menu.
-* @protected
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onClick: function (p_sType, p_aArgs) {
-
-	var oEvent = p_aArgs[0],
-		oItem = p_aArgs[1],
-		bInMenuAnchor = false,
-		oSubmenu,
-		oRoot,
-		sId,
-		sURL,
-		nHashPos,
-		nLen;
-
-
-	var hide = function () {
-
-		/*
-			There is an inconsistency between Firefox 2 for Mac OS X and Firefox 2 Windows 
-			regarding the triggering of the display of the browser's context menu and the 
-			subsequent firing of the "click" event. In Firefox for Windows, when the user 
-			triggers the display of the browser's context menu the "click" event also fires 
-			for the document object, even though the "click" event did not fire for the 
-			element that was the original target of the "contextmenu" event. This is unique 
-			to Firefox on Windows. For all other A-Grade browsers, including Firefox 2 for 
-			Mac OS X, the "click" event doesn't fire for the document object. 
-
-			This bug in Firefox 2 for Windows affects Menu as Menu instances listen for 
-			events at the document level and have an internal "click" event handler they 
-			use to hide themselves when clicked. As a result, in Firefox for Windows a 
-			Menu will hide when the user right clicks on a MenuItem to raise the browser's 
-			default context menu, because its internal "click" event handler ends up 
-			getting called.  The following line fixes this bug.
-		*/
-
-		if (!((UA.gecko && this.platform == _WINDOWS) && oEvent.button > 0)) {
-		
-			oRoot = this.getRoot();
-
-			if (oRoot instanceof YAHOO.widget.MenuBar || 
-				oRoot.cfg.getProperty(_POSITION) == _STATIC) {
-
-				oRoot.clearActiveItem();
-
-			}
-			else {
-
-				oRoot.hide();
-			
-			}
-		
-		}	
-	
-	};
-
-
-	if (oItem) {
-	
-		if (oItem.cfg.getProperty(_DISABLED)) {
-		
-			Event.preventDefault(oEvent);
-
-			hide.call(this);
-
-		}
-		else {
-
-			oSubmenu = oItem.cfg.getProperty(_SUBMENU);
-	
-			
-			/*
-				 Check if the URL of the anchor is pointing to an element that is 
-				 a child of the menu.
-			*/
-			
-			sURL = oItem.cfg.getProperty(_URL);
-
-		
-			if (sURL) {
-	
-				nHashPos = sURL.indexOf(_HASH);
-	
-				nLen = sURL.length;
-	
-	
-				if (nHashPos != -1) {
-	
-					sURL = sURL.substr(nHashPos, nLen);
-		
-					nLen = sURL.length;
-	
-	
-					if (nLen > 1) {
-	
-						sId = sURL.substr(1, nLen);
-	
-						bInMenuAnchor = Dom.isAncestor(this.element, sId);
-						
-					}
-					else if (nLen === 1) {
-	
-						bInMenuAnchor = true;
-					
-					}
-	
-				}
-			
-			}
-
-
-	
-			if (bInMenuAnchor && !oItem.cfg.getProperty(_TARGET)) {
-	
-				Event.preventDefault(oEvent);
-				
-
-				if (UA.webkit) {
-				
-					oItem.focus();
-				
-				}
-				else {
-
-					oItem.focusEvent.fire();
-				
-				}
-			
-			}
-	
-	
-			if (!oSubmenu && !this.cfg.getProperty(_KEEP_OPEN)) {
-	
-				hide.call(this);
-	
-			}
-			
-		}
-	
-	}
-
-},
-
-
-/**
-* @method _onKeyDown
-* @description "keydown" event handler for the menu.
-* @protected
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onKeyDown: function (p_sType, p_aArgs) {
-
-    var oEvent = p_aArgs[0],
-        oItem = p_aArgs[1],
-        oSubmenu,
-        oItemCfg,
-        oParentItem,
-        oRoot,
-        oNextItem,
-        oBody,
-        nBodyScrollTop,
-        nBodyOffsetHeight,
-        aItems,
-        nItems,
-        nNextItemOffsetTop,
-        nScrollTarget,
-        oParentMenu;
-
-
-    /*
-        This function is called to prevent a bug in Firefox.  In Firefox,
-        moving a DOM element into a stationary mouse pointer will cause the 
-        browser to fire mouse events.  This can result in the menu mouse
-        event handlers being called uncessarily, especially when menus are 
-        moved into a stationary mouse pointer as a result of a 
-        key event handler.
-    */
-    function stopMouseEventHandlers() {
-
-        this._bStopMouseEventHandlers = true;
-        
-        Lang.later(10, this, function () {
-
-            this._bStopMouseEventHandlers = false;
-        
-        });
-
-    }
-
-
-    if (oItem && !oItem.cfg.getProperty(_DISABLED)) {
-
-        oItemCfg = oItem.cfg;
-        oParentItem = this.parent;
-
-        switch(oEvent.keyCode) {
-    
-            case 38:    // Up arrow
-            case 40:    // Down arrow
-    
-                oNextItem = (oEvent.keyCode == 38) ? 
-                    oItem.getPreviousEnabledSibling() : 
-                    oItem.getNextEnabledSibling();
-        
-                if (oNextItem) {
-
-                    this.clearActiveItem();
-
-                    oNextItem.cfg.setProperty(_SELECTED, true);
-                    oNextItem.focus();
-
-
-                    if (this.cfg.getProperty(_MAX_HEIGHT) > 0) {
-
-                        oBody = this.body;
-                        nBodyScrollTop = oBody.scrollTop;
-                        nBodyOffsetHeight = oBody.offsetHeight;
-                        aItems = this.getItems();
-                        nItems = aItems.length - 1;
-                        nNextItemOffsetTop = oNextItem.element.offsetTop;
-
-
-                        if (oEvent.keyCode == 40 ) {    // Down
-                       
-                            if (nNextItemOffsetTop >= (nBodyOffsetHeight + nBodyScrollTop)) {
-
-                                oBody.scrollTop = nNextItemOffsetTop - nBodyOffsetHeight;
-
-                            }
-                            else if (nNextItemOffsetTop <= nBodyScrollTop) {
-                            
-                                oBody.scrollTop = 0;
-                            
-                            }
-
-
-                            if (oNextItem == aItems[nItems]) {
-
-                                oBody.scrollTop = oNextItem.element.offsetTop;
-
-                            }
-
-                        }
-                        else {  // Up
-
-                            if (nNextItemOffsetTop <= nBodyScrollTop) {
-
-                                oBody.scrollTop = nNextItemOffsetTop - oNextItem.element.offsetHeight;
-                            
-                            }
-                            else if (nNextItemOffsetTop >= (nBodyScrollTop + nBodyOffsetHeight)) {
-                            
-                                oBody.scrollTop = nNextItemOffsetTop;
-                            
-                            }
-
-
-                            if (oNextItem == aItems[0]) {
-                            
-                                oBody.scrollTop = 0;
-                            
-                            }
-
-                        }
-
-
-                        nBodyScrollTop = oBody.scrollTop;
-                        nScrollTarget = oBody.scrollHeight - oBody.offsetHeight;
-
-                        if (nBodyScrollTop === 0) {
-
-                            this._disableScrollHeader();
-                            this._enableScrollFooter();
-
-                        }
-                        else if (nBodyScrollTop == nScrollTarget) {
-
-                             this._enableScrollHeader();
-                             this._disableScrollFooter();
-
-                        }
-                        else {
-
-                            this._enableScrollHeader();
-                            this._enableScrollFooter();
-
-                        }
-
-                    }
-
-                }
-
-    
-                Event.preventDefault(oEvent);
-
-                stopMouseEventHandlers();
-    
-            break;
-            
-    
-            case 39:    // Right arrow
-    
-                oSubmenu = oItemCfg.getProperty(_SUBMENU);
-    
-                if (oSubmenu) {
-    
-                    if (!oItemCfg.getProperty(_SELECTED)) {
-        
-                        oItemCfg.setProperty(_SELECTED, true);
-        
-                    }
-    
-                    oSubmenu.show();
-                    oSubmenu.setInitialFocus();
-                    oSubmenu.setInitialSelection();
-    
-                }
-                else {
-    
-                    oRoot = this.getRoot();
-                    
-                    if (oRoot instanceof YAHOO.widget.MenuBar) {
-    
-                        oNextItem = oRoot.activeItem.getNextEnabledSibling();
-    
-                        if (oNextItem) {
-                        
-                            oRoot.clearActiveItem();
-    
-                            oNextItem.cfg.setProperty(_SELECTED, true);
-    
-                            oSubmenu = oNextItem.cfg.getProperty(_SUBMENU);
-    
-                            if (oSubmenu) {
-    
-                                oSubmenu.show();
-                                oSubmenu.setInitialFocus();
-                            
-                            }
-                            else {
-    
-                            	oNextItem.focus();
-                            
-                            }
-                        
-                        }
-                    
-                    }
-                
-                }
-    
-    
-                Event.preventDefault(oEvent);
-
-                stopMouseEventHandlers();
-
-            break;
-    
-    
-            case 37:    // Left arrow
-    
-                if (oParentItem) {
-    
-                    oParentMenu = oParentItem.parent;
-    
-                    if (oParentMenu instanceof YAHOO.widget.MenuBar) {
-    
-                        oNextItem = 
-                            oParentMenu.activeItem.getPreviousEnabledSibling();
-    
-                        if (oNextItem) {
-                        
-                            oParentMenu.clearActiveItem();
-    
-                            oNextItem.cfg.setProperty(_SELECTED, true);
-    
-                            oSubmenu = oNextItem.cfg.getProperty(_SUBMENU);
-    
-                            if (oSubmenu) {
-                            
-                                oSubmenu.show();
-								oSubmenu.setInitialFocus();                                
-                            
-                            }
-                            else {
-    
-                            	oNextItem.focus();
-                            
-                            }
-                        
-                        } 
-                    
-                    }
-                    else {
-    
-                        this.hide();
-    
-                        oParentItem.focus();
-                    
-                    }
-    
-                }
-    
-                Event.preventDefault(oEvent);
-
-                stopMouseEventHandlers();
-
-            break;        
-    
-        }
-
-
-    }
-
-
-    if (oEvent.keyCode == 27) { // Esc key
-
-        if (this.cfg.getProperty(_POSITION) == _DYNAMIC) {
-        
-            this.hide();
-
-            if (this.parent) {
-
-                this.parent.focus();
-            
-            }
-
-        }
-        else if (this.activeItem) {
-
-            oSubmenu = this.activeItem.cfg.getProperty(_SUBMENU);
-
-            if (oSubmenu && oSubmenu.cfg.getProperty(_VISIBLE)) {
-            
-                oSubmenu.hide();
-                this.activeItem.focus();
-            
-            }
-            else {
-
-                this.activeItem.blur();
-                this.activeItem.cfg.setProperty(_SELECTED, false);
-        
-            }
-        
-        }
-
-
-        Event.preventDefault(oEvent);
-    
-    }
-    
-},
-
-
-/**
-* @method _onKeyPress
-* @description "keypress" event handler for a Menu instance.
-* @protected
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event 
-* was fired.
-*/
-_onKeyPress: function (p_sType, p_aArgs) {
-    
-    var oEvent = p_aArgs[0];
-
-
-    if (oEvent.keyCode == 40 || oEvent.keyCode == 38) {
-
-        Event.preventDefault(oEvent);
-
-    }
-
-},
-
-
-/**
-* @method _onBlur
-* @description "blur" event handler for a Menu instance.
-* @protected
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event 
-* was fired.
-*/
-_onBlur: function (p_sType, p_aArgs) {
-        
-	if (this._hasFocus) {
-		this._hasFocus = false;
-	}
-
-},
-
-/**
-* @method _onYChange
-* @description "y" event handler for a Menu instance.
-* @protected
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event 
-* was fired.
-*/
-_onYChange: function (p_sType, p_aArgs) {
-
-    var oParent = this.parent,
-        nScrollTop,
-        oIFrame,
-        nY;
-
-
-    if (oParent) {
-
-        nScrollTop = oParent.parent.body.scrollTop;
-
-
-        if (nScrollTop > 0) {
-    
-            nY = (this.cfg.getProperty(_Y) - nScrollTop);
-            
-            Dom.setY(this.element, nY);
-
-            oIFrame = this.iframe;            
-    
-
-            if (oIFrame) {
-    
-                Dom.setY(oIFrame, nY);
-    
-            }
-            
-            this.cfg.setProperty(_Y, nY, true);
-        
-        }
-    
-    }
-
-},
-
-
-/**
-* @method _onScrollTargetMouseOver
-* @description "mouseover" event handler for the menu's "header" and "footer" 
-* elements.  Used to scroll the body of the menu up and down when the 
-* menu's "maxheight" configuration property is set to a value greater than 0.
-* @protected
-* @param {Event} p_oEvent Object representing the DOM event object passed 
-* back by the event utility (YAHOO.util.Event).
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-_onScrollTargetMouseOver: function (p_oEvent, p_oMenu) {
-
-	var oBodyScrollTimer = this._bodyScrollTimer;
-
-
-	if (oBodyScrollTimer) {
-
-		oBodyScrollTimer.cancel();
-
-	}
-
-
-	this._cancelHideDelay();
-
-
-    var oTarget = Event.getTarget(p_oEvent),
-        oBody = this.body,
-        nScrollIncrement = this.cfg.getProperty(_SCROLL_INCREMENT),
-        nScrollTarget,
-        fnScrollFunction;
-
-
-    function scrollBodyDown() {
-
-        var nScrollTop = oBody.scrollTop;
-
-
-        if (nScrollTop < nScrollTarget) {
-
-            oBody.scrollTop = (nScrollTop + nScrollIncrement);
-
-            this._enableScrollHeader();
-
-        }
-        else {
-
-            oBody.scrollTop = nScrollTarget;
-
-            this._bodyScrollTimer.cancel();
-
-            this._disableScrollFooter();
-
-        }
-
-    }
-
-
-    function scrollBodyUp() {
-
-        var nScrollTop = oBody.scrollTop;
-
-
-        if (nScrollTop > 0) {
-
-            oBody.scrollTop = (nScrollTop - nScrollIncrement);
-
-            this._enableScrollFooter();
-
-        }
-        else {
-
-            oBody.scrollTop = 0;
-
-			this._bodyScrollTimer.cancel();
-
-            this._disableScrollHeader();
-
-        }
-
-    }
-
-    
-    if (Dom.hasClass(oTarget, _HD)) {
-
-        fnScrollFunction = scrollBodyUp;
-    
-    }
-    else {
-
-        nScrollTarget = oBody.scrollHeight - oBody.offsetHeight;
-
-        fnScrollFunction = scrollBodyDown;
-    
-    }
-    
-
-    this._bodyScrollTimer = Lang.later(10, this, fnScrollFunction, null, true);
-
-},
-
-
-/**
-* @method _onScrollTargetMouseOut
-* @description "mouseout" event handler for the menu's "header" and "footer" 
-* elements.  Used to stop scrolling the body of the menu up and down when the 
-* menu's "maxheight" configuration property is set to a value greater than 0.
-* @protected
-* @param {Event} p_oEvent Object representing the DOM event object passed 
-* back by the event utility (YAHOO.util.Event).
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-_onScrollTargetMouseOut: function (p_oEvent, p_oMenu) {
-
-	var oBodyScrollTimer = this._bodyScrollTimer;
-
-	if (oBodyScrollTimer) {
-
-		oBodyScrollTimer.cancel();
-
-	}
-	
-    this._cancelHideDelay();
-
-},
-
-
-
-// Private methods
-
-
-/**
-* @method _onInit
-* @description "init" event handler for the menu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onInit: function (p_sType, p_aArgs) {
-
-    this.cfg.subscribeToConfigEvent(_VISIBLE, this._onVisibleChange);
-
-    var bRootMenu = !this.parent,
-        bLazyLoad = this.lazyLoad;
-
-
-    /*
-        Automatically initialize a menu's subtree if:
-
-        1) This is the root menu and lazyload is off
-        
-        2) This is the root menu, lazyload is on, but the menu is 
-           already visible
-
-        3) This menu is a submenu and lazyload is off
-    */
-
-
-
-    if (((bRootMenu && !bLazyLoad) || 
-        (bRootMenu && (this.cfg.getProperty(_VISIBLE) || 
-        this.cfg.getProperty(_POSITION) == _STATIC)) || 
-        (!bRootMenu && !bLazyLoad)) && this.getItemGroups().length === 0) {
-
-        if (this.srcElement) {
-
-            this._initSubTree();
-        
-        }
-
-
-        if (this.itemData) {
-
-            this.addItems(this.itemData);
-
-        }
-    
-    }
-    else if (bLazyLoad) {
-
-        this.cfg.fireQueue();
-    
-    }
-
-},
-
-
-/**
-* @method _onBeforeRender
-* @description "beforerender" event handler for the menu.  Appends all of the 
-* <code>&#60;ul&#62;</code>, <code>&#60;li&#62;</code> and their accompanying 
-* title elements to the body element of the menu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onBeforeRender: function (p_sType, p_aArgs) {
-
-    var oEl = this.element,
-        nListElements = this._aListElements.length,
-        bFirstList = true,
-        i = 0,
-        oUL,
-        oGroupTitle;
-
-    if (nListElements > 0) {
-
-        do {
-
-            oUL = this._aListElements[i];
-
-            if (oUL) {
-
-                if (bFirstList) {
-        
-                    Dom.addClass(oUL, _FIRST_OF_TYPE);
-                    bFirstList = false;
-        
-                }
-
-
-                if (!Dom.isAncestor(oEl, oUL)) {
-
-                    this.appendToBody(oUL);
-
-                }
-
-
-                oGroupTitle = this._aGroupTitleElements[i];
-
-                if (oGroupTitle) {
-
-                    if (!Dom.isAncestor(oEl, oGroupTitle)) {
-
-                        oUL.parentNode.insertBefore(oGroupTitle, oUL);
-
-                    }
-
-
-                    Dom.addClass(oUL, _HAS_TITLE);
-
-                }
-
-            }
-
-            i++;
-
-        }
-        while (i < nListElements);
-
-    }
-
-},
-
-
-/**
-* @method _onRender
-* @description "render" event handler for the menu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onRender: function (p_sType, p_aArgs) {
-
-    if (this.cfg.getProperty(_POSITION) == _DYNAMIC) { 
-
-        if (!this.cfg.getProperty(_VISIBLE)) {
-
-            this.positionOffScreen();
-
-        }
-    
-    }
-
-},
-
-
-
-
-
-/**
-* @method _onBeforeShow
-* @description "beforeshow" event handler for the menu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onBeforeShow: function (p_sType, p_aArgs) {
-
-    var nOptions,
-        n,
-        oSrcElement,
-        oContainer = this.cfg.getProperty(_CONTAINER);
-
-
-    if (this.lazyLoad && this.getItemGroups().length === 0) {
-
-        if (this.srcElement) {
-        
-            this._initSubTree();
-
-        }
-
-
-        if (this.itemData) {
-
-            if (this.parent && this.parent.parent && 
-                this.parent.parent.srcElement && 
-                this.parent.parent.srcElement.tagName.toUpperCase() == 
-                _SELECT) {
-
-                nOptions = this.itemData.length;
-    
-                for(n=0; n<nOptions; n++) {
-
-                    if (this.itemData[n].tagName) {
-
-                        this.addItem((new this.ITEM_TYPE(this.itemData[n])));
-    
-                    }
-    
-                }
-            
-            }
-            else {
-
-                this.addItems(this.itemData);
-            
-            }
-        
-        }
-
-
-        oSrcElement = this.srcElement;
-
-        if (oSrcElement) {
-
-            if (oSrcElement.tagName.toUpperCase() == _SELECT) {
-
-                if (Dom.inDocument(oSrcElement)) {
-
-                    this.render(oSrcElement.parentNode);
-                
-                }
-                else {
-                
-                    this.render(oContainer);
-                
-                }
-
-            }
-            else {
-
-                this.render();
-
-            }
-
-        }
-        else {
-
-            if (this.parent) {
-
-                this.render(this.parent.element);     
-
-            }
-            else {
-
-                this.render(oContainer);
-
-            }                
-
-        }
-
-    }
-
-
-
-    var oParent = this.parent,
-		aAlignment;
-
-
-    if (!oParent && this.cfg.getProperty(_POSITION) == _DYNAMIC) {
-
-        this.cfg.refireEvent(_XY);
-   
-    }
-
-
-	if (oParent) {
-
-		aAlignment = oParent.parent.cfg.getProperty(_SUBMENU_ALIGNMENT);
-		
-		this.cfg.setProperty(_CONTEXT, [oParent.element, aAlignment[0], aAlignment[1]]);
-		this.align();
-	
-	}
-
-},
-
-
-getConstrainedY: function (y) {
-
-	var oMenu = this,
-	
-		aContext = oMenu.cfg.getProperty(_CONTEXT),
-		nInitialMaxHeight = oMenu.cfg.getProperty(_MAX_HEIGHT),
-
-		nMaxHeight,
-
-		oOverlapPositions = {
-
-			"trbr": true,
-			"tlbl": true,
-			"bltl": true,
-			"brtr": true
-
-		},
-
-		bPotentialContextOverlap = (aContext && oOverlapPositions[aContext[1] + aContext[2]]),
-	
-		oMenuEl = oMenu.element,
-		nMenuOffsetHeight = oMenuEl.offsetHeight,
-	
-		nViewportOffset = Overlay.VIEWPORT_OFFSET,
-		viewPortHeight = Dom.getViewportHeight(),
-		scrollY = Dom.getDocumentScrollTop(),
-
-		bCanConstrain = 
-			(oMenu.cfg.getProperty(_MIN_SCROLL_HEIGHT) + nViewportOffset < viewPortHeight),
-
-		nAvailableHeight,
-
-		oContextEl,
-		nContextElY,
-		nContextElHeight,
-
-		bFlipped = false,
-
-		nTopRegionHeight,
-		nBottomRegionHeight,
-
-		topConstraint,
-		bottomConstraint,
-
-		yNew = y;
-		
-
-	var flipVertical = function () {
-
-		var nNewY;
-	
-		// The Menu is below the context element, flip it above
-		if ((oMenu.cfg.getProperty(_Y) - scrollY) > nContextElY) { 
-			nNewY = (nContextElY - nMenuOffsetHeight);
-		}
-		else {	// The Menu is above the context element, flip it below
-			nNewY = (nContextElY + nContextElHeight);
-		}
-
-		oMenu.cfg.setProperty(_Y, (nNewY + scrollY), true);
-		
-		return nNewY;
-	
-	};
-
-
-	/*
-		 Uses the context element's position to calculate the availble height 
-		 above and below it to display its corresponding Menu.
-	*/
-
-	var getDisplayRegionHeight = function () {
-
-		// The Menu is below the context element
-		if ((oMenu.cfg.getProperty(_Y) - scrollY) > nContextElY) {
-			return (nBottomRegionHeight - nViewportOffset);				
-		}
-		else {	// The Menu is above the context element
-			return (nTopRegionHeight - nViewportOffset);				
-		}
-
-	};
-
-
-	/*
-		Sets the Menu's "y" configuration property to the correct value based on its
-		current orientation.
-	*/ 
-
-	var alignY = function () {
-
-		var nNewY;
-
-		if ((oMenu.cfg.getProperty(_Y) - scrollY) > nContextElY) { 
-			nNewY = (nContextElY + nContextElHeight);
-		}
-		else {	
-			nNewY = (nContextElY - oMenuEl.offsetHeight);
-		}
-
-		oMenu.cfg.setProperty(_Y, (nNewY + scrollY), true);
-	
-	};
-
-
-	//	Resets the maxheight of the Menu to the value set by the user
-
-	var resetMaxHeight = function () {
-
-		oMenu._setScrollHeight(this.cfg.getProperty(_MAX_HEIGHT));
-
-		oMenu.hideEvent.unsubscribe(resetMaxHeight);
-	
-	};
-
-
-	/*
-		Trys to place the Menu in the best possible position (either above or 
-		below its corresponding context element).
-	*/
-
-	var setVerticalPosition = function () {
-
-		var nDisplayRegionHeight = getDisplayRegionHeight(),
-			bMenuHasItems = (oMenu.getItems().length > 0),
-			nMenuMinScrollHeight,
-			fnReturnVal,
-			nNewY;
-
-
-		if (nMenuOffsetHeight > nDisplayRegionHeight) {
-
-			nMenuMinScrollHeight = 
-				bMenuHasItems ? oMenu.cfg.getProperty(_MIN_SCROLL_HEIGHT) : nMenuOffsetHeight;
-
-
-			if ((nDisplayRegionHeight > nMenuMinScrollHeight) && bMenuHasItems) {
-				nMaxHeight = nDisplayRegionHeight;
-			}
-			else {
-				nMaxHeight = nInitialMaxHeight;
-			}
-
-
-			oMenu._setScrollHeight(nMaxHeight);
-			oMenu.hideEvent.subscribe(resetMaxHeight);
-			
-
-			// Re-align the Menu since its height has just changed
-			// as a result of the setting of the maxheight property.
-
-			alignY();
-			
-
-			if (nDisplayRegionHeight < nMenuMinScrollHeight) {
-
-				if (bFlipped) {
-	
-					/*
-						 All possible positions and values for the "maxheight" 
-						 configuration property have been tried, but none were 
-						 successful, so fall back to the original size and position.
-					*/
-
-					flipVertical();
-					
-				}
-				else {
-	
-					flipVertical();
-
-					bFlipped = true;
-	
-					fnReturnVal = setVerticalPosition();
-	
-				}
-				
-			}
-		
-		}
-		else if (nMaxHeight && (nMaxHeight != nInitialMaxHeight)) {
-		
-			oMenu._setScrollHeight(nInitialMaxHeight);
-			oMenu.hideEvent.subscribe(resetMaxHeight);
-
-			// Re-align the Menu since its height has just changed
-			// as a result of the setting of the maxheight property.
-
-			alignY();
-		
-		}
-
-		return fnReturnVal;
-
-	};
-
-
-	if (oMenu.cfg.getProperty(_PREVENT_CONTEXT_OVERLAP) && bPotentialContextOverlap) {
-
-		if (bCanConstrain) {
-
-			oContextEl = aContext[0];
-			nContextElHeight = oContextEl.offsetHeight;
-			nContextElY = (Dom.getY(oContextEl) - scrollY);
-
-			nTopRegionHeight = nContextElY;
-			nBottomRegionHeight = (viewPortHeight - (nContextElY + nContextElHeight));
-
-			setVerticalPosition();
-		
-		}
-
-		yNew = oMenu.cfg.getProperty(_Y);
-
-	}
-    else if (!(oMenu instanceof YAHOO.widget.MenuBar) && nMenuOffsetHeight >= viewPortHeight) {
-	
-		nAvailableHeight = (viewPortHeight - (nViewportOffset * 2));
-
-		if (nAvailableHeight > oMenu.cfg.getProperty(_MIN_SCROLL_HEIGHT)) {
-
-			oMenu._setScrollHeight(nAvailableHeight);
-			oMenu.hideEvent.subscribe(resetMaxHeight);
-
-			alignY();
-			
-			yNew = oMenu.cfg.getProperty(_Y);
-		
-		}
-
-    }	
-	else {
-
-		if (bCanConstrain) {
-
-			topConstraint = scrollY + nViewportOffset;
-			bottomConstraint = scrollY + viewPortHeight - nMenuOffsetHeight - nViewportOffset;
-
-			if (y < topConstraint) {
-				yNew  = topConstraint;
-			} else if (y  > bottomConstraint) {
-				yNew  = bottomConstraint;
-			}
-		} else {
-			yNew = nViewportOffset + scrollY;
-		}
-
-	}
-
-	return yNew;
-
-},
-
-
-/**
-* @method _onHide
-* @description "hide" event handler for the menu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onHide: function (p_sType, p_aArgs) {
-
-	if (this.cfg.getProperty(_POSITION) === _DYNAMIC) {
-	
-		this.positionOffScreen();
-	
-	}
-
-},
-
-
-/**
-* @method _onShow
-* @description "show" event handler for the menu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onShow: function (p_sType, p_aArgs) {
-
-    var oParent = this.parent,
-        oParentMenu,
-		oElement,
-		nOffsetWidth,
-		sWidth;        
-
-
-    function disableAutoSubmenuDisplay(p_oEvent) {
-
-        var oTarget;
-
-        if (p_oEvent.type == _MOUSEDOWN || (p_oEvent.type == _KEYDOWN && p_oEvent.keyCode == 27)) {
-
-            /*  
-                Set the "autosubmenudisplay" to "false" if the user
-                clicks outside the menu bar.
-            */
-
-            oTarget = Event.getTarget(p_oEvent);
-
-            if (oTarget != oParentMenu.element || !Dom.isAncestor(oParentMenu.element, oTarget)) {
-
-                oParentMenu.cfg.setProperty(_AUTO_SUBMENU_DISPLAY, false);
-
-                Event.removeListener(document, _MOUSEDOWN, disableAutoSubmenuDisplay);
-                Event.removeListener(document, _KEYDOWN, disableAutoSubmenuDisplay);
-
-            }
-        
-        }
-
-    }
-
-
-	function onSubmenuHide(p_sType, p_aArgs, p_sWidth) {
-	
-		this.cfg.setProperty(_WIDTH, _EMPTY_STRING);
-		this.hideEvent.unsubscribe(onSubmenuHide, p_sWidth);
-	
-	}
-
-
-    if (oParent) {
-
-        oParentMenu = oParent.parent;
-
-
-        if (!oParentMenu.cfg.getProperty(_AUTO_SUBMENU_DISPLAY) && 
-            (oParentMenu instanceof YAHOO.widget.MenuBar || 
-            oParentMenu.cfg.getProperty(_POSITION) == _STATIC)) {
-
-            oParentMenu.cfg.setProperty(_AUTO_SUBMENU_DISPLAY, true);
-
-            Event.on(document, _MOUSEDOWN, disableAutoSubmenuDisplay);                             
-            Event.on(document, _KEYDOWN, disableAutoSubmenuDisplay);
-
-        }
-
-
-		// The following fixes an issue with the selected state of a MenuItem not rendering 
-		// correctly when a submenu is aligned to the left of its parent Menu instance.
-
-		if ((this.cfg.getProperty("x") < oParentMenu.cfg.getProperty("x")) && 
-			(UA.gecko < 1.9) && 
-			!this.cfg.getProperty(_WIDTH)) {
-		
-			oElement = this.element;
-			nOffsetWidth = oElement.offsetWidth;
-			
-			/*
-				Measuring the difference of the offsetWidth before and after
-				setting the "width" style attribute allows us to compute the 
-				about of padding and borders applied to the element, which in 
-				turn allows us to set the "width" property correctly.
-			*/
-			
-			oElement.style.width = nOffsetWidth + _PX;
-			
-			sWidth = (nOffsetWidth - (oElement.offsetWidth - nOffsetWidth)) + _PX;
-			
-			this.cfg.setProperty(_WIDTH, sWidth);
-		
-			this.hideEvent.subscribe(onSubmenuHide, sWidth);
-		
-		}
-
-    }
-
-},
-
-
-/**
-* @method _onBeforeHide
-* @description "beforehide" event handler for the menu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-*/
-_onBeforeHide: function (p_sType, p_aArgs) {
-
-    var oActiveItem = this.activeItem,
-        oRoot = this.getRoot(),
-        oConfig,
-        oSubmenu;
-
-
-    if (oActiveItem) {
-
-        oConfig = oActiveItem.cfg;
-
-        oConfig.setProperty(_SELECTED, false);
-
-        oSubmenu = oConfig.getProperty(_SUBMENU);
-
-        if (oSubmenu) {
-
-            oSubmenu.hide();
-
-        }
-
-    }
-
-
-	/*
-		Focus can get lost in IE when the mouse is moving from a submenu back to its parent Menu.  
-		For this reason, it is necessary to maintain the focused state in a private property 
-		so that the _onMouseOver event handler is able to determined whether or not to set focus
-		to MenuItems as the user is moving the mouse.
-	*/ 
-
-	if (UA.ie && this.cfg.getProperty(_POSITION) === _DYNAMIC && this.parent) {
-
-		oRoot._hasFocus = this.hasFocus();
-	
-	}
-
-
-    if (oRoot == this) {
-
-        oRoot.blur();
-    
-    }
-
-},
-
-
-/**
-* @method _onParentMenuConfigChange
-* @description "configchange" event handler for a submenu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oSubmenu Object representing the submenu that 
-* subscribed to the event.
-*/
-_onParentMenuConfigChange: function (p_sType, p_aArgs, p_oSubmenu) {
-    
-    var sPropertyName = p_aArgs[0][0],
-        oPropertyValue = p_aArgs[0][1];
-
-    switch(sPropertyName) {
-
-        case _IFRAME:
-        case _CONSTRAIN_TO_VIEWPORT:
-        case _HIDE_DELAY:
-        case _SHOW_DELAY:
-        case _SUBMENU_HIDE_DELAY:
-        case _CLICK_TO_HIDE:
-        case _EFFECT:
-        case _CLASSNAME:
-        case _SCROLL_INCREMENT:
-        case _MIN_SCROLL_HEIGHT:
-        case _MONITOR_RESIZE:
-        case _SHADOW:
-        case _PREVENT_CONTEXT_OVERLAP:
-
-            p_oSubmenu.cfg.setProperty(sPropertyName, oPropertyValue);
-                
-        break;
-        
-        case _SUBMENU_ALIGNMENT:
-
-			if (!(this.parent.parent instanceof YAHOO.widget.MenuBar)) {
-		
-				p_oSubmenu.cfg.setProperty(sPropertyName, oPropertyValue);
-		
-			}
-        
-        break;
-        
-    }
-    
-},
-
-
-/**
-* @method _onParentMenuRender
-* @description "render" event handler for a submenu.  Renders a  
-* submenu in response to the firing of its parent's "render" event.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oSubmenu Object representing the submenu that 
-* subscribed to the event.
-*/
-_onParentMenuRender: function (p_sType, p_aArgs, p_oSubmenu) {
-
-    var oParentMenu = p_oSubmenu.parent.parent,
-    	oParentCfg = oParentMenu.cfg,
-
-        oConfig = {
-
-            constraintoviewport: oParentCfg.getProperty(_CONSTRAIN_TO_VIEWPORT),
-
-            xy: [0,0],
-
-            clicktohide: oParentCfg.getProperty(_CLICK_TO_HIDE),
-                
-            effect: oParentCfg.getProperty(_EFFECT),
-
-            showdelay: oParentCfg.getProperty(_SHOW_DELAY),
-            
-            hidedelay: oParentCfg.getProperty(_HIDE_DELAY),
-
-            submenuhidedelay: oParentCfg.getProperty(_SUBMENU_HIDE_DELAY),
-
-            classname: oParentCfg.getProperty(_CLASSNAME),
-            
-            scrollincrement: oParentCfg.getProperty(_SCROLL_INCREMENT),
-            
-            minscrollheight: oParentCfg.getProperty(_MIN_SCROLL_HEIGHT),
-            
-            iframe: oParentCfg.getProperty(_IFRAME),
-            
-            shadow: oParentCfg.getProperty(_SHADOW),
-
-			preventcontextoverlap: oParentCfg.getProperty(_PREVENT_CONTEXT_OVERLAP),
-            
-            monitorresize: oParentCfg.getProperty(_MONITOR_RESIZE)
-
-        },
-        
-        oLI;
-
-
-	
-	if (!(oParentMenu instanceof YAHOO.widget.MenuBar)) {
-
-		oConfig[_SUBMENU_ALIGNMENT] = oParentCfg.getProperty(_SUBMENU_ALIGNMENT);
-
-	}
-
-
-    p_oSubmenu.cfg.applyConfig(oConfig);
-
-
-    if (!this.lazyLoad) {
-
-        oLI = this.parent.element;
-
-        if (this.element.parentNode == oLI) {
-    
-            this.render();
-    
-        }
-        else {
-
-            this.render(oLI);
-    
-        }
-
-    }
-    
-},
-
-
-/**
-* @method _onMenuItemDestroy
-* @description "destroy" event handler for the menu's items.
-* @private
-* @param {String} p_sType String representing the name of the event 
-* that was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item 
-* that fired the event.
-*/
-_onMenuItemDestroy: function (p_sType, p_aArgs, p_oItem) {
-
-    this._removeItemFromGroupByValue(p_oItem.groupIndex, p_oItem);
-
-},
-
-
-/**
-* @method _onMenuItemConfigChange
-* @description "configchange" event handler for the menu's items.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item 
-* that fired the event.
-*/
-_onMenuItemConfigChange: function (p_sType, p_aArgs, p_oItem) {
-
-    var sPropertyName = p_aArgs[0][0],
-        oPropertyValue = p_aArgs[0][1],
-        oSubmenu;
-
-
-    switch(sPropertyName) {
-
-        case _SELECTED:
-
-            if (oPropertyValue === true) {
-
-                this.activeItem = p_oItem;
-            
-            }
-
-        break;
-
-        case _SUBMENU:
-
-            oSubmenu = p_aArgs[0][1];
-
-            if (oSubmenu) {
-
-                this._configureSubmenu(p_oItem);
-
-            }
-
-        break;
-
-    }
-
-},
-
-
-
-// Public event handlers for configuration properties
-
-
-/**
-* @method configVisible
-* @description Event handler for when the "visible" configuration property 
-* the menu changes.
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-configVisible: function (p_sType, p_aArgs, p_oMenu) {
-
-    var bVisible,
-        sDisplay;
-
-    if (this.cfg.getProperty(_POSITION) == _DYNAMIC) {
-
-        Menu.superclass.configVisible.call(this, p_sType, p_aArgs, p_oMenu);
-
-    }
-    else {
-
-        bVisible = p_aArgs[0];
-        sDisplay = Dom.getStyle(this.element, _DISPLAY);
-
-        Dom.setStyle(this.element, _VISIBILITY, _VISIBLE);
-
-        if (bVisible) {
-
-            if (sDisplay != _BLOCK) {
-                this.beforeShowEvent.fire();
-                Dom.setStyle(this.element, _DISPLAY, _BLOCK);
-                this.showEvent.fire();
-            }
-        
-        }
-        else {
-
-			if (sDisplay == _BLOCK) {
-				this.beforeHideEvent.fire();
-				Dom.setStyle(this.element, _DISPLAY, _NONE);
-				this.hideEvent.fire();
-			}
-        
-        }
-
-    }
-
-},
-
-
-/**
-* @method configPosition
-* @description Event handler for when the "position" configuration property 
-* of the menu changes.
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-configPosition: function (p_sType, p_aArgs, p_oMenu) {
-
-    var oElement = this.element,
-        sCSSPosition = p_aArgs[0] == _STATIC ? _STATIC : _ABSOLUTE,
-        oCfg = this.cfg,
-        nZIndex;
-
-
-    Dom.setStyle(oElement, _POSITION, sCSSPosition);
-
-
-    if (sCSSPosition == _STATIC) {
-
-        // Statically positioned menus are visible by default
-        
-        Dom.setStyle(oElement, _DISPLAY, _BLOCK);
-
-        oCfg.setProperty(_VISIBLE, true);
-
-    }
-    else {
-
-        /*
-            Even though the "visible" property is queued to 
-            "false" by default, we need to set the "visibility" property to 
-            "hidden" since Overlay's "configVisible" implementation checks the 
-            element's "visibility" style property before deciding whether 
-            or not to show an Overlay instance.
-        */
-
-        Dom.setStyle(oElement, _VISIBILITY, _HIDDEN);
-    
-    }
-
-  	 
-     if (sCSSPosition == _ABSOLUTE) { 	 
-  	 
-         nZIndex = oCfg.getProperty(_ZINDEX);
-  	 
-         if (!nZIndex || nZIndex === 0) { 	 
-  	 
-             oCfg.setProperty(_ZINDEX, 1); 	 
-  	 
-         } 	 
-  	 
-     }
-
-},
-
-
-/**
-* @method configIframe
-* @description Event handler for when the "iframe" configuration property of 
-* the menu changes.
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-configIframe: function (p_sType, p_aArgs, p_oMenu) {    
-
-    if (this.cfg.getProperty(_POSITION) == _DYNAMIC) {
-
-        Menu.superclass.configIframe.call(this, p_sType, p_aArgs, p_oMenu);
-
-    }
-
-},
-
-
-/**
-* @method configHideDelay
-* @description Event handler for when the "hidedelay" configuration property 
-* of the menu changes.
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-configHideDelay: function (p_sType, p_aArgs, p_oMenu) {
-
-    var nHideDelay = p_aArgs[0],
-        oMouseOutEvent = this.mouseOutEvent,
-        oMouseOverEvent = this.mouseOverEvent,
-        oKeyDownEvent = this.keyDownEvent;
-
-    if (nHideDelay > 0) {
-
-        /*
-            Only assign event handlers once. This way the user change 
-            the value for the hidedelay as many times as they want.
-        */
-
-        if (!this._bHideDelayEventHandlersAssigned) {
-
-            oMouseOutEvent.subscribe(this._execHideDelay);
-            oMouseOverEvent.subscribe(this._cancelHideDelay);
-            oKeyDownEvent.subscribe(this._cancelHideDelay);
-
-            this._bHideDelayEventHandlersAssigned = true;
-        
-        }
-
-    }
-    else {
-
-        oMouseOutEvent.unsubscribe(this._execHideDelay);
-        oMouseOverEvent.unsubscribe(this._cancelHideDelay);
-        oKeyDownEvent.unsubscribe(this._cancelHideDelay);
-
-        this._bHideDelayEventHandlersAssigned = false;
-
-    }
-
-},
-
-
-/**
-* @method configContainer
-* @description Event handler for when the "container" configuration property 
-* of the menu changes.
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu Object representing the menu that 
-* fired the event.
-*/
-configContainer: function (p_sType, p_aArgs, p_oMenu) {
-
-	var oElement = p_aArgs[0];
-
-	if (Lang.isString(oElement)) {
-
-        this.cfg.setProperty(_CONTAINER, Dom.get(oElement), true);
-
-	}
-
-},
-
-
-/**
-* @method _clearSetWidthFlag
-* @description Change event listener for the "width" configuration property.  This listener is 
-* added when a Menu's "width" configuration property is set by the "_setScrollHeight" method, and 
-* is used to set the "_widthSetForScroll" property to "false" if the "width" configuration property 
-* is changed after it was set by the "_setScrollHeight" method.  If the "_widthSetForScroll" 
-* property is set to "false", and the "_setScrollHeight" method is in the process of tearing down 
-* scrolling functionality, it will maintain the Menu's new width rather than reseting it.
-* @private
-*/
-_clearSetWidthFlag: function () {
-
-	this._widthSetForScroll = false;
-	
-	this.cfg.unsubscribeFromConfigEvent(_WIDTH, this._clearSetWidthFlag);
-
-},
-
-
-/**
-* @method _setScrollHeight
-* @description 
-* @param {String} p_nScrollHeight Number representing the scrolling height of the Menu.
-* @private
-*/
-_setScrollHeight: function (p_nScrollHeight) {
-
-    var nScrollHeight = p_nScrollHeight,
-		bRefireIFrameAndShadow = false,
-		bSetWidth = false,
-        oElement,
-        oBody,
-        oHeader,
-        oFooter,
-		oParent,
-        fnMouseOver,
-        fnMouseOut,
-        nMinScrollHeight,
-        nHeight,
-        nOffsetWidth,
-        sWidth;
-
-
-	if (this.getItems().length > 0) {
-	
-        oElement = this.element;
-        oBody = this.body;
-        oHeader = this.header;
-        oFooter = this.footer;
-        fnMouseOver = this._onScrollTargetMouseOver;
-        fnMouseOut = this._onScrollTargetMouseOut;
-        nMinScrollHeight = this.cfg.getProperty(_MIN_SCROLL_HEIGHT);
-        oParent = this.parent;
-
-
-		if (nScrollHeight > 0 && nScrollHeight < nMinScrollHeight) {
-		
-			nScrollHeight = nMinScrollHeight;
-		
-		}
-
-
-		Dom.setStyle(oBody, _HEIGHT, _EMPTY_STRING);
-		Dom.removeClass(oBody, _YUI_MENU_BODY_SCROLLED);
-		oBody.scrollTop = 0;
-
-
-		/*
-			There is a bug in gecko-based browsers where an element whose 
-			"position" property is set to "absolute" and "overflow" property is set 
-			to "hidden" will not render at the correct width when its 
-			offsetParent's "position" property is also set to "absolute."  It is 
-			possible to work around this bug by specifying a value for the width 
-			property in addition to overflow.
-	
-			In IE it is also necessary to give the Menu a width before the scrollbars are 
-			rendered to prevent the Menu from rendering with a width that is 100% of
-			the browser viewport.
-		*/
-	
-		bSetWidth = ((UA.gecko && oParent && oParent.parent && 
-			oParent.parent.cfg.getProperty(_POSITION) == _DYNAMIC) || UA.ie);
-
-		if (nScrollHeight > 0 && bSetWidth && !this.cfg.getProperty(_WIDTH)) {
-	
-			nOffsetWidth = oElement.offsetWidth;
-	
-			/*
-				Measuring the difference of the offsetWidth before and after
-				setting the "width" style attribute allows us to compute the 
-				about of padding and borders applied to the element, which in 
-				turn allows us to set the "width" property correctly.
-			*/
-			
-			oElement.style.width = nOffsetWidth + _PX;
-	
-			sWidth = (nOffsetWidth - (oElement.offsetWidth - nOffsetWidth)) + _PX;
-
-
-			this.cfg.unsubscribeFromConfigEvent(_WIDTH, this._clearSetWidthFlag);
-
-
-			this.cfg.setProperty(_WIDTH, sWidth);
-
-
-			/*
-				Set a flag (_widthSetForScroll) to maintain some history regarding how the 
-				"width" configuration property was set.  If the "width" configuration property 
-				is set by something other than the "_setScrollHeight" method, it will be 
-				necessary to maintain that new value and not clear the width if scrolling 
-				is turned off.
-			*/
-
-			this._widthSetForScroll = true;
-
-			this.cfg.subscribeToConfigEvent(_WIDTH, this._clearSetWidthFlag);
-	
-		}
-	
-	
-		if (nScrollHeight > 0 && (!oHeader && !oFooter)) {
-	
-	
-			this.setHeader(_NON_BREAKING_SPACE);
-			this.setFooter(_NON_BREAKING_SPACE);
-	
-			oHeader = this.header;
-			oFooter = this.footer;
-	
-			Dom.addClass(oHeader, _TOP_SCROLLBAR);
-			Dom.addClass(oFooter, _BOTTOM_SCROLLBAR);
-			
-			oElement.insertBefore(oHeader, oBody);
-			oElement.appendChild(oFooter);
-		
-		}
-	
-	
-		nHeight = nScrollHeight;
-	
-	
-		if (oHeader && oFooter) {
-			nHeight = (nHeight - (oHeader.offsetHeight + oFooter.offsetHeight));
-		}
-	
-	
-		if ((nHeight > 0) && (oBody.offsetHeight > nScrollHeight)) {
-
-	
-			Dom.addClass(oBody, _YUI_MENU_BODY_SCROLLED);
-			Dom.setStyle(oBody, _HEIGHT, (nHeight + _PX));
-
-			if (!this._hasScrollEventHandlers) {
-	
-				Event.on(oHeader, _MOUSEOVER, fnMouseOver, this, true);
-				Event.on(oHeader, _MOUSEOUT, fnMouseOut, this, true);
-				Event.on(oFooter, _MOUSEOVER, fnMouseOver, this, true);
-				Event.on(oFooter, _MOUSEOUT, fnMouseOut, this, true);
-	
-				this._hasScrollEventHandlers = true;
-	
-			}
-	
-			this._disableScrollHeader();
-			this._enableScrollFooter();
-			
-			bRefireIFrameAndShadow = true;			
-	
-		}
-		else if (oHeader && oFooter) {
-
-	
-
-			/*
-				Only clear the the "width" configuration property if it was set the 
-				"_setScrollHeight" method and wasn't changed by some other means after it was set.
-			*/	
-	
-			if (this._widthSetForScroll) {
-	
-
-				this._widthSetForScroll = false;
-
-				this.cfg.unsubscribeFromConfigEvent(_WIDTH, this._clearSetWidthFlag);
-	
-				this.cfg.setProperty(_WIDTH, _EMPTY_STRING);
-			
-			}
-	
-	
-			this._enableScrollHeader();
-			this._enableScrollFooter();
-	
-			if (this._hasScrollEventHandlers) {
-	
-				Event.removeListener(oHeader, _MOUSEOVER, fnMouseOver);
-				Event.removeListener(oHeader, _MOUSEOUT, fnMouseOut);
-				Event.removeListener(oFooter, _MOUSEOVER, fnMouseOver);
-				Event.removeListener(oFooter, _MOUSEOUT, fnMouseOut);
-
-				this._hasScrollEventHandlers = false;
-	
-			}
-
-			oElement.removeChild(oHeader);
-			oElement.removeChild(oFooter);
-	
-			this.header = null;
-			this.footer = null;
-			
-			bRefireIFrameAndShadow = true;
-		
-		}
-
-
-		if (bRefireIFrameAndShadow) {
-	
-			this.cfg.refireEvent(_IFRAME);
-			this.cfg.refireEvent(_SHADOW);
-		
-		}
-	
-	}
-
-},
-
-
-/**
-* @method _setMaxHeight
-* @description "renderEvent" handler used to defer the setting of the 
-* "maxheight" configuration property until the menu is rendered in lazy 
-* load scenarios.
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event 
-* was fired.
-* @param {Number} p_nMaxHeight Number representing the value to set for the 
-* "maxheight" configuration property.
-* @private
-*/
-_setMaxHeight: function (p_sType, p_aArgs, p_nMaxHeight) {
-
-    this._setScrollHeight(p_nMaxHeight);
-    this.renderEvent.unsubscribe(this._setMaxHeight);
-
-},
-
-
-/**
-* @method configMaxHeight
-* @description Event handler for when the "maxheight" configuration property of 
-* a Menu changes.
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event 
-* was fired.
-* @param {YAHOO.widget.Menu} p_oMenu The Menu instance fired
-* the event.
-*/
-configMaxHeight: function (p_sType, p_aArgs, p_oMenu) {
-
-	var nMaxHeight = p_aArgs[0];
-
-	if (this.lazyLoad && !this.body && nMaxHeight > 0) {
-	
-		this.renderEvent.subscribe(this._setMaxHeight, nMaxHeight, this);
-
-	}
-	else {
-
-		this._setScrollHeight(nMaxHeight);
-	
-	}
-
-},
-
-
-/**
-* @method configClassName
-* @description Event handler for when the "classname" configuration property of 
-* a menu changes.
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu The Menu instance fired the event.
-*/
-configClassName: function (p_sType, p_aArgs, p_oMenu) {
-
-    var sClassName = p_aArgs[0];
-
-    if (this._sClassName) {
-
-        Dom.removeClass(this.element, this._sClassName);
-
-    }
-
-    Dom.addClass(this.element, sClassName);
-    this._sClassName = sClassName;
-
-},
-
-
-/**
-* @method _onItemAdded
-* @description "itemadded" event handler for a Menu instance.
-* @private
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event 
-* was fired.
-*/
-_onItemAdded: function (p_sType, p_aArgs) {
-
-    var oItem = p_aArgs[0];
-    
-    if (oItem) {
-
-        oItem.cfg.setProperty(_DISABLED, true);
-    
-    }
-
-},
-
-
-/**
-* @method configDisabled
-* @description Event handler for when the "disabled" configuration property of 
-* a menu changes.
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu The Menu instance fired the event.
-*/
-configDisabled: function (p_sType, p_aArgs, p_oMenu) {
-
-    var bDisabled = p_aArgs[0],
-        aItems = this.getItems(),
-        nItems,
-        i;
-
-    if (Lang.isArray(aItems)) {
-
-        nItems = aItems.length;
-    
-        if (nItems > 0) {
-        
-            i = nItems - 1;
-    
-            do {
-    
-                aItems[i].cfg.setProperty(_DISABLED, bDisabled);
-            
-            }
-            while (i--);
-        
-        }
-
-
-        if (bDisabled) {
-
-            this.clearActiveItem(true);
-
-            Dom.addClass(this.element, _DISABLED);
-
-            this.itemAddedEvent.subscribe(this._onItemAdded);
-
-        }
-        else {
-
-            Dom.removeClass(this.element, _DISABLED);
-
-            this.itemAddedEvent.unsubscribe(this._onItemAdded);
-
-        }
-        
-    }
-
-},
-
-
-/**
-* @method configShadow
-* @description Event handler for when the "shadow" configuration property of 
-* a menu changes.
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event was fired.
-* @param {YAHOO.widget.Menu} p_oMenu The Menu instance fired the event.
-*/
-configShadow: function (p_sType, p_aArgs, p_oMenu) {
-
-    var sizeShadow = function () {
-
-        var oElement = this.element,
-            oShadow = this._shadow;
-    
-        if (oShadow && oElement) {
-
-			// Clear the previous width
-
-			if (oShadow.style.width && oShadow.style.height) {
-			
-				oShadow.style.width = _EMPTY_STRING;
-				oShadow.style.height = _EMPTY_STRING;
-			
-			}
-
-            oShadow.style.width = (oElement.offsetWidth + 6) + _PX;
-            oShadow.style.height = (oElement.offsetHeight + 1) + _PX;
-            
-        }
-    
-    };
-
-
-    var replaceShadow = function () {
-
-        this.element.appendChild(this._shadow);
-
-    };
-
-
-    var addShadowVisibleClass = function () {
-    
-        Dom.addClass(this._shadow, _YUI_MENU_SHADOW_VISIBLE);
-    
-    };
-    
-
-    var removeShadowVisibleClass = function () {
-
-        Dom.removeClass(this._shadow, _YUI_MENU_SHADOW_VISIBLE);
-    
-    };
-
-
-    var createShadow = function () {
-
-        var oShadow = this._shadow,
-            oElement;
-
-        if (!oShadow) {
-
-            oElement = this.element;
-
-
-            if (!m_oShadowTemplate) {
-
-                m_oShadowTemplate = document.createElement(_DIV_LOWERCASE);
-                m_oShadowTemplate.className = _YUI_MENU_SHADOW_YUI_MENU_SHADOW_VISIBLE;
-            
-            }
-
-            oShadow = m_oShadowTemplate.cloneNode(false);
-
-            oElement.appendChild(oShadow);
-            
-            this._shadow = oShadow;
-
-            this.beforeShowEvent.subscribe(addShadowVisibleClass);
-            this.beforeHideEvent.subscribe(removeShadowVisibleClass);
-
-
-            if (UA.ie) {
-        
-                /*
-                     Need to call sizeShadow & syncIframe via setTimeout for 
-                     IE 7 Quirks Mode and IE 6 Standards Mode and Quirks Mode 
-                     or the shadow and iframe shim will not be sized and 
-                     positioned properly.
-                */
-        
-				Lang.later(0, this, function () {
-
-                    sizeShadow.call(this); 
-                    this.syncIframe();
-				
-				});
-
-
-                this.cfg.subscribeToConfigEvent(_WIDTH, sizeShadow);
-                this.cfg.subscribeToConfigEvent(_HEIGHT, sizeShadow);
-                this.cfg.subscribeToConfigEvent(_MAX_HEIGHT, sizeShadow);
-                this.changeContentEvent.subscribe(sizeShadow);
-
-                Module.textResizeEvent.subscribe(sizeShadow, this, true);
-                
-                this.destroyEvent.subscribe(function () {
-                
-                    Module.textResizeEvent.unsubscribe(sizeShadow, this);
-                
-                });
-        
-            }
-
-            this.cfg.subscribeToConfigEvent(_MAX_HEIGHT, replaceShadow);
-
-        }
-
-    };
-
-
-    var onBeforeShow = function () {
-    
-    	if (this._shadow) {
-
-			// If called because the "shadow" event was refired - just append again and resize
-			
-			replaceShadow.call(this);
-			
-			if (UA.ie) {
-				sizeShadow.call(this);
-			}
-    	
-    	}
-    	else {
-    
-        	createShadow.call(this);
-        
-        }
-
-        this.beforeShowEvent.unsubscribe(onBeforeShow);
-    
-    };
-
-
-	var bShadow = p_aArgs[0];
-
-
-    if (bShadow && this.cfg.getProperty(_POSITION) == _DYNAMIC) {
-
-        if (this.cfg.getProperty(_VISIBLE)) {
-
-			if (this._shadow) {
-
-				// If the "shadow" event was refired - just append again and resize
-				
-				replaceShadow.call(this);
-				
-				if (UA.ie) {
-					sizeShadow.call(this);
-				}
-				
-			} 
-			else {
-            	createShadow.call(this);
-            }
-        
-        }
-        else {
-
-            this.beforeShowEvent.subscribe(onBeforeShow);
-        
-        }
-    
-    }
-    
-},
-
-
-
-// Public methods
-
-
-/**
-* @method initEvents
-* @description Initializes the custom events for the menu.
-*/
-initEvents: function () {
-
-	Menu.superclass.initEvents.call(this);
-
-    // Create custom events
-
-	var i = EVENT_TYPES.length - 1,
-		aEventData,
-		oCustomEvent;
-
-
-	do {
-
-		aEventData = EVENT_TYPES[i];
-
-		oCustomEvent = this.createEvent(aEventData[1]);
-		oCustomEvent.signature = CustomEvent.LIST;
-		
-		this[aEventData[0]] = oCustomEvent;
-
-	}
-	while (i--);
-
-},
-
-
-/**
-* @method positionOffScreen
-* @description Positions the menu outside of the boundaries of the browser's 
-* viewport.  Called automatically when a menu is hidden to ensure that 
-* it doesn't force the browser to render uncessary scrollbars.
-*/
-positionOffScreen: function () {
-
-    var oIFrame = this.iframe,
-    	oElement = this.element,
-        sPos = this.OFF_SCREEN_POSITION;
-    
-    oElement.style.top = _EMPTY_STRING;
-    oElement.style.left = _EMPTY_STRING;
-    
-    if (oIFrame) {
-
-		oIFrame.style.top = sPos;
-		oIFrame.style.left = sPos;
-    
-    }
-
-},
-
-
-/**
-* @method getRoot
-* @description Finds the menu's root menu.
-*/
-getRoot: function () {
-
-    var oItem = this.parent,
-        oParentMenu,
-        returnVal;
-
-    if (oItem) {
-
-        oParentMenu = oItem.parent;
-
-        returnVal = oParentMenu ? oParentMenu.getRoot() : this;
-
-    }
-    else {
-    
-        returnVal = this;
-    
-    }
-    
-    return returnVal;
-
-},
-
-
-/**
-* @method toString
-* @description Returns a string representing the menu.
-* @return {String}
-*/
-toString: function () {
-
-    var sReturnVal = _MENU,
-        sId = this.id;
-
-    if (sId) {
-
-        sReturnVal += (_SPACE + sId);
-    
-    }
-
-    return sReturnVal;
-
-},
-
-
-/**
-* @method setItemGroupTitle
-* @description Sets the title of a group of menu items.
-* @param {String} p_sGroupTitle String specifying the title of the group.
-* @param {Number} p_nGroupIndex Optional. Number specifying the group to which
-* the title belongs.
-*/
-setItemGroupTitle: function (p_sGroupTitle, p_nGroupIndex) {
-
-    var nGroupIndex,
-        oTitle,
-        i,
-        nFirstIndex;
-        
-    if (Lang.isString(p_sGroupTitle) && p_sGroupTitle.length > 0) {
-
-        nGroupIndex = Lang.isNumber(p_nGroupIndex) ? p_nGroupIndex : 0;
-        oTitle = this._aGroupTitleElements[nGroupIndex];
-
-
-        if (oTitle) {
-
-            oTitle.innerHTML = p_sGroupTitle;
-            
-        }
-        else {
-
-            oTitle = document.createElement(this.GROUP_TITLE_TAG_NAME);
-                    
-            oTitle.innerHTML = p_sGroupTitle;
-
-            this._aGroupTitleElements[nGroupIndex] = oTitle;
-
-        }
-
-
-        i = this._aGroupTitleElements.length - 1;
-
-        do {
-
-            if (this._aGroupTitleElements[i]) {
-
-                Dom.removeClass(this._aGroupTitleElements[i], _FIRST_OF_TYPE);
-
-                nFirstIndex = i;
-
-            }
-
-        }
-        while (i--);
-
-
-        if (nFirstIndex !== null) {
-
-            Dom.addClass(this._aGroupTitleElements[nFirstIndex], 
-                _FIRST_OF_TYPE);
-
-        }
-
-        this.changeContentEvent.fire();
-
-    }
-
-},
-
-
-
-/**
-* @method addItem
-* @description Appends an item to the menu.
-* @param {YAHOO.widget.MenuItem} p_oItem Object reference for the MenuItem 
-* instance to be added to the menu.
-* @param {String} p_oItem String specifying the text of the item to be added 
-* to the menu.
-* @param {Object} p_oItem Object literal containing a set of menu item 
-* configuration properties.
-* @param {Number} p_nGroupIndex Optional. Number indicating the group to
-* which the item belongs.
-* @return {YAHOO.widget.MenuItem}
-*/
-addItem: function (p_oItem, p_nGroupIndex) {
-
-	return this._addItemToGroup(p_nGroupIndex, p_oItem);
-
-},
-
-
-/**
-* @method addItems
-* @description Adds an array of items to the menu.
-* @param {Array} p_aItems Array of items to be added to the menu.  The array 
-* can contain strings specifying the text for each item to be created, object
-* literals specifying each of the menu item configuration properties, 
-* or MenuItem instances.
-* @param {Number} p_nGroupIndex Optional. Number specifying the group to 
-* which the items belongs.
-* @return {Array}
-*/
-addItems: function (p_aItems, p_nGroupIndex) {
-
-    var nItems,
-        aItems,
-        oItem,
-        i,
-        returnVal;
-
-
-    if (Lang.isArray(p_aItems)) {
-
-        nItems = p_aItems.length;
-        aItems = [];
-
-        for(i=0; i<nItems; i++) {
-
-            oItem = p_aItems[i];
-
-            if (oItem) {
-
-                if (Lang.isArray(oItem)) {
-    
-                    aItems[aItems.length] = this.addItems(oItem, i);
-    
-                }
-                else {
-    
-                    aItems[aItems.length] = this._addItemToGroup(p_nGroupIndex, oItem);
-                
-                }
-
-            }
-    
-        }
-
-
-        if (aItems.length) {
-        
-            returnVal = aItems;
-        
-        }
-
-    }
-
-	return returnVal;
-
-},
-
-
-/**
-* @method insertItem
-* @description Inserts an item into the menu at the specified index.
-* @param {YAHOO.widget.MenuItem} p_oItem Object reference for the MenuItem 
-* instance to be added to the menu.
-* @param {String} p_oItem String specifying the text of the item to be added 
-* to the menu.
-* @param {Object} p_oItem Object literal containing a set of menu item 
-* configuration properties.
-* @param {Number} p_nItemIndex Number indicating the ordinal position at which
-* the item should be added.
-* @param {Number} p_nGroupIndex Optional. Number indicating the group to which 
-* the item belongs.
-* @return {YAHOO.widget.MenuItem}
-*/
-insertItem: function (p_oItem, p_nItemIndex, p_nGroupIndex) {
-    
-	return this._addItemToGroup(p_nGroupIndex, p_oItem, p_nItemIndex);
-
-},
-
-
-/**
-* @method removeItem
-* @description Removes the specified item from the menu.
-* @param {YAHOO.widget.MenuItem} p_oObject Object reference for the MenuItem 
-* instance to be removed from the menu.
-* @param {Number} p_oObject Number specifying the index of the item 
-* to be removed.
-* @param {Number} p_nGroupIndex Optional. Number specifying the group to 
-* which the item belongs.
-* @return {YAHOO.widget.MenuItem}
-*/
-removeItem: function (p_oObject, p_nGroupIndex) {
-
-    var oItem,
-    	returnVal;
-    
-    if (!Lang.isUndefined(p_oObject)) {
-
-        if (p_oObject instanceof YAHOO.widget.MenuItem) {
-
-            oItem = this._removeItemFromGroupByValue(p_nGroupIndex, p_oObject);           
-
-        }
-        else if (Lang.isNumber(p_oObject)) {
-
-            oItem = this._removeItemFromGroupByIndex(p_nGroupIndex, p_oObject);
-
-        }
-
-        if (oItem) {
-
-            oItem.destroy();
-
-
-            returnVal = oItem;
-
-        }
-
-    }
-
-	return returnVal;
-
-},
-
-
-/**
-* @method getItems
-* @description Returns an array of all of the items in the menu.
-* @return {Array}
-*/
-getItems: function () {
-
-    var aGroups = this._aItemGroups,
-        nGroups,
-        returnVal,
-        aItems = [];
-
-
-    if (Lang.isArray(aGroups)) {
-
-        nGroups = aGroups.length;
-
-        returnVal = ((nGroups == 1) ? aGroups[0] : (Array.prototype.concat.apply(aItems, aGroups)));
-
-    }
-
-	return returnVal;
-
-},
-
-
-/**
-* @method getItemGroups
-* @description Multi-dimensional Array representing the menu items as they 
-* are grouped in the menu.
-* @return {Array}
-*/        
-getItemGroups: function () {
-
-    return this._aItemGroups;
-
-},
-
-
-/**
-* @method getItem
-* @description Returns the item at the specified index.
-* @param {Number} p_nItemIndex Number indicating the ordinal position of the 
-* item to be retrieved.
-* @param {Number} p_nGroupIndex Optional. Number indicating the group to which 
-* the item belongs.
-* @return {YAHOO.widget.MenuItem}
-*/
-getItem: function (p_nItemIndex, p_nGroupIndex) {
-    
-    var aGroup,
-    	returnVal;
-    
-    if (Lang.isNumber(p_nItemIndex)) {
-
-        aGroup = this._getItemGroup(p_nGroupIndex);
-
-        if (aGroup) {
-
-            returnVal = aGroup[p_nItemIndex];
-        
-        }
-
-    }
-    
-    return returnVal;
-    
-},
-
-
-/**
-* @method getSubmenus
-* @description Returns an array of all of the submenus that are immediate 
-* children of the menu.
-* @return {Array}
-*/
-getSubmenus: function () {
-
-    var aItems = this.getItems(),
-        nItems = aItems.length,
-        aSubmenus,
-        oSubmenu,
-        oItem,
-        i;
-
-
-    if (nItems > 0) {
-        
-        aSubmenus = [];
-
-        for(i=0; i<nItems; i++) {
-
-            oItem = aItems[i];
-            
-            if (oItem) {
-
-                oSubmenu = oItem.cfg.getProperty(_SUBMENU);
-                
-                if (oSubmenu) {
-
-                    aSubmenus[aSubmenus.length] = oSubmenu;
-
-                }
-            
-            }
-        
-        }
-    
-    }
-
-    return aSubmenus;
-
-},
-
-
-/**
-* @method clearContent
-* @description Removes all of the content from the menu, including the menu 
-* items, group titles, header and footer.
-*/
-clearContent: function () {
-
-    var aItems = this.getItems(),
-        nItems = aItems.length,
-        oElement = this.element,
-        oBody = this.body,
-        oHeader = this.header,
-        oFooter = this.footer,
-        oItem,
-        oSubmenu,
-        i;
-
-
-    if (nItems > 0) {
-
-        i = nItems - 1;
-
-        do {
-
-            oItem = aItems[i];
-
-            if (oItem) {
-
-                oSubmenu = oItem.cfg.getProperty(_SUBMENU);
-
-                if (oSubmenu) {
-
-                    this.cfg.configChangedEvent.unsubscribe(
-                        this._onParentMenuConfigChange, oSubmenu);
-
-                    this.renderEvent.unsubscribe(this._onParentMenuRender, 
-                        oSubmenu);
-
-                }
-                
-                this.removeItem(oItem, oItem.groupIndex);
-
-            }
-        
-        }
-        while (i--);
-
-    }
-
-
-    if (oHeader) {
-
-        Event.purgeElement(oHeader);
-        oElement.removeChild(oHeader);
-
-    }
-    
-
-    if (oFooter) {
-
-        Event.purgeElement(oFooter);
-        oElement.removeChild(oFooter);
-    }
-
-
-    if (oBody) {
-
-        Event.purgeElement(oBody);
-
-        oBody.innerHTML = _EMPTY_STRING;
-
-    }
-
-    this.activeItem = null;
-
-    this._aItemGroups = [];
-    this._aListElements = [];
-    this._aGroupTitleElements = [];
-
-    this.cfg.setProperty(_WIDTH, null);
-
-},
-
-
-/**
-* @method destroy
-* @description Removes the menu's <code>&#60;div&#62;</code> element 
-* (and accompanying child nodes) from the document.
-*/
-destroy: function () {
-
-    // Remove all items
-
-    this.clearContent();
-
-    this._aItemGroups = null;
-    this._aListElements = null;
-    this._aGroupTitleElements = null;
-
-
-    // Continue with the superclass implementation of this method
-
-    Menu.superclass.destroy.call(this);
-    
-
-},
-
-
-/**
-* @method setInitialFocus
-* @description Sets focus to the menu's first enabled item.
-*/
-setInitialFocus: function () {
-
-    var oItem = this._getFirstEnabledItem();
-    
-    if (oItem) {
-
-        oItem.focus();
-
-    }
-    
-},
-
-
-/**
-* @method setInitialSelection
-* @description Sets the "selected" configuration property of the menu's first 
-* enabled item to "true."
-*/
-setInitialSelection: function () {
-
-    var oItem = this._getFirstEnabledItem();
-    
-    if (oItem) {
-    
-        oItem.cfg.setProperty(_SELECTED, true);
-    }        
-
-},
-
-
-/**
-* @method clearActiveItem
-* @description Sets the "selected" configuration property of the menu's active
-* item to "false" and hides the item's submenu.
-* @param {Boolean} p_bBlur Boolean indicating if the menu's active item 
-* should be blurred.  
-*/
-clearActiveItem: function (p_bBlur) {
-
-    if (this.cfg.getProperty(_SHOW_DELAY) > 0) {
-    
-        this._cancelShowDelay();
-    
-    }
-
-
-    var oActiveItem = this.activeItem,
-        oConfig,
-        oSubmenu;
-
-    if (oActiveItem) {
-
-        oConfig = oActiveItem.cfg;
-
-        if (p_bBlur) {
-
-            oActiveItem.blur();
-            
-            this.getRoot()._hasFocus = true;
-        
-        }
-
-        oConfig.setProperty(_SELECTED, false);
-
-        oSubmenu = oConfig.getProperty(_SUBMENU);
-
-
-        if (oSubmenu) {
-
-            oSubmenu.hide();
-
-        }
-
-        this.activeItem = null;  
-
-    }
-
-},
-
-
-/**
-* @method focus
-* @description Causes the menu to receive focus and fires the "focus" event.
-*/
-focus: function () {
-
-    if (!this.hasFocus()) {
-
-        this.setInitialFocus();
-    
-    }
-
-},
-
-
-/**
-* @method blur
-* @description Causes the menu to lose focus and fires the "blur" event.
-*/    
-blur: function () {
-
-    var oItem;
-
-    if (this.hasFocus()) {
-    
-        oItem = MenuManager.getFocusedMenuItem();
-        
-        if (oItem) {
-
-            oItem.blur();
-
-        }
-
-    }
-
-},
-
-
-/**
-* @method hasFocus
-* @description Returns a boolean indicating whether or not the menu has focus.
-* @return {Boolean}
-*/
-hasFocus: function () {
-
-    return (MenuManager.getFocusedMenu() == this.getRoot());
-
-},
-
-
-/**
-* Adds the specified CustomEvent subscriber to the menu and each of 
-* its submenus.
-* @method subscribe
-* @param p_type     {string}   the type, or name of the event
-* @param p_fn       {function} the function to exectute when the event fires
-* @param p_obj      {Object}   An object to be passed along when the event 
-*                              fires
-* @param p_override {boolean}  If true, the obj passed in becomes the 
-*                              execution scope of the listener
-*/
-subscribe: function () {
-
-    function onItemAdded(p_sType, p_aArgs, p_oObject) {
-
-        var oItem = p_aArgs[0],
-            oSubmenu = oItem.cfg.getProperty(_SUBMENU);
-
-        if (oSubmenu) {
-
-            oSubmenu.subscribe.apply(oSubmenu, p_oObject);
-
-        }
-    
-    }
-
-
-    function onSubmenuAdded(p_sType, p_aArgs, p_oObject) { 
-    
-        var oSubmenu = this.cfg.getProperty(_SUBMENU);
-        
-        if (oSubmenu) {
-
-            oSubmenu.subscribe.apply(oSubmenu, p_oObject);
-        
-        }
-    
-    }
-
-
-    Menu.superclass.subscribe.apply(this, arguments);
-    Menu.superclass.subscribe.call(this, _ITEM_ADDED, onItemAdded, arguments);
-
-
-    var aItems = this.getItems(),
-        nItems,
-        oItem,
-        oSubmenu,
-        i;
-        
-
-    if (aItems) {
-
-        nItems = aItems.length;
-        
-        if (nItems > 0) {
-        
-            i = nItems - 1;
-            
-            do {
-
-                oItem = aItems[i];
-                
-                oSubmenu = oItem.cfg.getProperty(_SUBMENU);
-                
-                if (oSubmenu) {
-                
-                    oSubmenu.subscribe.apply(oSubmenu, arguments);
-                
-                }
-                else {
-                
-                    oItem.cfg.subscribeToConfigEvent(_SUBMENU, onSubmenuAdded, arguments);
-                
-                }
-
-            }
-            while (i--);
-        
-        }
-
-    }
-
-},
-
-
-/**
-* @description Initializes the class's configurable properties which can be
-* changed using the menu's Config object ("cfg").
-* @method initDefaultConfig
-*/
-initDefaultConfig: function () {
-
-    Menu.superclass.initDefaultConfig.call(this);
-
-    var oConfig = this.cfg;
-
-
-    // Module documentation overrides
-
-    /**
-    * @config effect
-    * @description Object or array of objects representing the ContainerEffect 
-    * classes that are active for animating the container.  When set this 
-    * property is automatically applied to all submenus.
-    * @type Object
-    * @default null
-    */
-
-    // Overlay documentation overrides
-
-
-    /**
-    * @config x
-    * @description Number representing the absolute x-coordinate position of 
-    * the Menu.  This property is only applied when the "position" 
-    * configuration property is set to dynamic.
-    * @type Number
-    * @default null
-    */
-    
-
-    /**
-    * @config y
-    * @description Number representing the absolute y-coordinate position of 
-    * the Menu.  This property is only applied when the "position" 
-    * configuration property is set to dynamic.
-    * @type Number
-    * @default null
-    */
-
-
-    /**
-    * @description Array of the absolute x and y positions of the Menu.  This 
-    * property is only applied when the "position" configuration property is 
-    * set to dynamic.
-    * @config xy
-    * @type Number[]
-    * @default null
-    */
-    
-
-    /**
-    * @config context
-    * @description Array of context arguments for context-sensitive positioning.  
-    * The format is: [id or element, element corner, context corner]. 
-    * For example, setting this property to ["img1", "tl", "bl"] would 
-    * align the Mnu's top left corner to the context element's 
-    * bottom left corner.  This property is only applied when the "position" 
-    * configuration property is set to dynamic.
-    * @type Array
-    * @default null
-    */
-    
-    
-    /**
-    * @config fixedcenter
-    * @description Boolean indicating if the Menu should be anchored to the 
-    * center of the viewport.  This property is only applied when the 
-    * "position" configuration property is set to dynamic.
-    * @type Boolean
-    * @default false
-    */
-    
-    
-    /**
-    * @config iframe
-    * @description Boolean indicating whether or not the Menu should 
-    * have an IFRAME shim; used to prevent SELECT elements from 
-    * poking through an Overlay instance in IE6.  When set to "true", 
-    * the iframe shim is created when the Menu instance is intially
-    * made visible.  This property is only applied when the "position" 
-    * configuration property is set to dynamic and is automatically applied 
-    * to all submenus.
-    * @type Boolean
-    * @default true for IE6 and below, false for all other browsers.
-    */
-
-
-	// Add configuration attributes
-
-    /*
-        Change the default value for the "visible" configuration 
-        property to "false" by re-adding the property.
-    */
-
-    /**
-    * @config visible
-    * @description Boolean indicating whether or not the menu is visible.  If 
-    * the menu's "position" configuration property is set to "dynamic" (the 
-    * default), this property toggles the menu's <code>&#60;div&#62;</code> 
-    * element's "visibility" style property between "visible" (true) or 
-    * "hidden" (false).  If the menu's "position" configuration property is 
-    * set to "static" this property toggles the menu's 
-    * <code>&#60;div&#62;</code> element's "display" style property 
-    * between "block" (true) or "none" (false).
-    * @default false
-    * @type Boolean
-    */
-    oConfig.addProperty(
-        VISIBLE_CONFIG.key, 
-        {
-            handler: this.configVisible, 
-            value: VISIBLE_CONFIG.value, 
-            validator: VISIBLE_CONFIG.validator
-        }
-     );
-
-
-    /*
-        Change the default value for the "constraintoviewport" configuration 
-        property (inherited by YAHOO.widget.Overlay) to "true" by re-adding the property.
-    */
-
-    /**
-    * @config constraintoviewport
-    * @description Boolean indicating if the menu will try to remain inside 
-    * the boundaries of the size of viewport.  This property is only applied 
-    * when the "position" configuration property is set to dynamic and is 
-    * automatically applied to all submenus.
-    * @default true
-    * @type Boolean
-    */
-    oConfig.addProperty(
-        CONSTRAIN_TO_VIEWPORT_CONFIG.key, 
-        {
-            handler: this.configConstrainToViewport, 
-            value: CONSTRAIN_TO_VIEWPORT_CONFIG.value, 
-            validator: CONSTRAIN_TO_VIEWPORT_CONFIG.validator, 
-            supercedes: CONSTRAIN_TO_VIEWPORT_CONFIG.supercedes 
-        } 
-    );
-
-
-    /*
-        Change the default value for the "preventcontextoverlap" configuration 
-        property (inherited by YAHOO.widget.Overlay) to "true" by re-adding the property.
-    */
-
-	/**
-	* @config preventcontextoverlap
-	* @description Boolean indicating whether or not a submenu should overlap its parent MenuItem 
-	* when the "constraintoviewport" configuration property is set to "true".
-	* @type Boolean
-	* @default true
-	*/
-	oConfig.addProperty(PREVENT_CONTEXT_OVERLAP_CONFIG.key, {
-
-		value: PREVENT_CONTEXT_OVERLAP_CONFIG.value, 
-		validator: PREVENT_CONTEXT_OVERLAP_CONFIG.validator, 
-		supercedes: PREVENT_CONTEXT_OVERLAP_CONFIG.supercedes
-
-	});
-
-
-    /**
-    * @config position
-    * @description String indicating how a menu should be positioned on the 
-    * screen.  Possible values are "static" and "dynamic."  Static menus are 
-    * visible by default and reside in the normal flow of the document 
-    * (CSS position: static).  Dynamic menus are hidden by default, reside 
-    * out of the normal flow of the document (CSS position: absolute), and 
-    * can overlay other elements on the screen.
-    * @default dynamic
-    * @type String
-    */
-    oConfig.addProperty(
-        POSITION_CONFIG.key, 
-        {
-            handler: this.configPosition,
-            value: POSITION_CONFIG.value, 
-            validator: POSITION_CONFIG.validator,
-            supercedes: POSITION_CONFIG.supercedes
-        }
-    );
-
-
-    /**
-    * @config submenualignment
-    * @description Array defining how submenus should be aligned to their 
-    * parent menu item. The format is: [itemCorner, submenuCorner]. By default
-    * a submenu's top left corner is aligned to its parent menu item's top 
-    * right corner.
-    * @default ["tl","tr"]
-    * @type Array
-    */
-    oConfig.addProperty(
-        SUBMENU_ALIGNMENT_CONFIG.key, 
-        { 
-            value: SUBMENU_ALIGNMENT_CONFIG.value,
-            suppressEvent: SUBMENU_ALIGNMENT_CONFIG.suppressEvent
-        }
-    );
-
-
-    /**
-    * @config autosubmenudisplay
-    * @description Boolean indicating if submenus are automatically made 
-    * visible when the user mouses over the menu's items.
-    * @default true
-    * @type Boolean
-    */
-	oConfig.addProperty(
-	   AUTO_SUBMENU_DISPLAY_CONFIG.key, 
-	   { 
-	       value: AUTO_SUBMENU_DISPLAY_CONFIG.value, 
-	       validator: AUTO_SUBMENU_DISPLAY_CONFIG.validator,
-	       suppressEvent: AUTO_SUBMENU_DISPLAY_CONFIG.suppressEvent
-       } 
-    );
-
-
-    /**
-    * @config showdelay
-    * @description Number indicating the time (in milliseconds) that should 
-    * expire before a submenu is made visible when the user mouses over 
-    * the menu's items.  This property is only applied when the "position" 
-    * configuration property is set to dynamic and is automatically applied 
-    * to all submenus.
-    * @default 250
-    * @type Number
-    */
-	oConfig.addProperty(
-	   SHOW_DELAY_CONFIG.key, 
-	   { 
-	       value: SHOW_DELAY_CONFIG.value, 
-	       validator: SHOW_DELAY_CONFIG.validator,
-	       suppressEvent: SHOW_DELAY_CONFIG.suppressEvent
-       } 
-    );
-
-
-    /**
-    * @config hidedelay
-    * @description Number indicating the time (in milliseconds) that should 
-    * expire before the menu is hidden.  This property is only applied when 
-    * the "position" configuration property is set to dynamic and is 
-    * automatically applied to all submenus.
-    * @default 0
-    * @type Number
-    */
-	oConfig.addProperty(
-	   HIDE_DELAY_CONFIG.key, 
-	   { 
-	       handler: this.configHideDelay,
-	       value: HIDE_DELAY_CONFIG.value, 
-	       validator: HIDE_DELAY_CONFIG.validator, 
-	       suppressEvent: HIDE_DELAY_CONFIG.suppressEvent
-       } 
-    );
-
-
-    /**
-    * @config submenuhidedelay
-    * @description Number indicating the time (in milliseconds) that should 
-    * expire before a submenu is hidden when the user mouses out of a menu item 
-    * heading in the direction of a submenu.  The value must be greater than or 
-    * equal to the value specified for the "showdelay" configuration property.
-    * This property is only applied when the "position" configuration property 
-    * is set to dynamic and is automatically applied to all submenus.
-    * @default 250
-    * @type Number
-    */
-	oConfig.addProperty(
-	   SUBMENU_HIDE_DELAY_CONFIG.key, 
-	   { 
-	       value: SUBMENU_HIDE_DELAY_CONFIG.value, 
-	       validator: SUBMENU_HIDE_DELAY_CONFIG.validator,
-	       suppressEvent: SUBMENU_HIDE_DELAY_CONFIG.suppressEvent
-       } 
-    );
-
-
-    /**
-    * @config clicktohide
-    * @description Boolean indicating if the menu will automatically be 
-    * hidden if the user clicks outside of it.  This property is only 
-    * applied when the "position" configuration property is set to dynamic 
-    * and is automatically applied to all submenus.
-    * @default true
-    * @type Boolean
-    */
-    oConfig.addProperty(
-        CLICK_TO_HIDE_CONFIG.key,
-        {
-            value: CLICK_TO_HIDE_CONFIG.value,
-            validator: CLICK_TO_HIDE_CONFIG.validator,
-            suppressEvent: CLICK_TO_HIDE_CONFIG.suppressEvent
-        }
-    );
-
-
-	/**
-	* @config container
-	* @description HTML element reference or string specifying the id 
-	* attribute of the HTML element that the menu's markup should be 
-	* rendered into.
-	* @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-	* level-one-html.html#ID-58190037">HTMLElement</a>|String
-	* @default document.body
-	*/
-	oConfig.addProperty(
-	   CONTAINER_CONFIG.key, 
-	   { 
-	       handler: this.configContainer,
-	       value: document.body,
-           suppressEvent: CONTAINER_CONFIG.suppressEvent
-       } 
-   );
-
-
-    /**
-    * @config scrollincrement
-    * @description Number used to control the scroll speed of a menu.  Used to 
-    * increment the "scrollTop" property of the menu's body by when a menu's 
-    * content is scrolling.  When set this property is automatically applied 
-    * to all submenus.
-    * @default 1
-    * @type Number
-    */
-    oConfig.addProperty(
-        SCROLL_INCREMENT_CONFIG.key, 
-        { 
-            value: SCROLL_INCREMENT_CONFIG.value, 
-            validator: SCROLL_INCREMENT_CONFIG.validator,
-            supercedes: SCROLL_INCREMENT_CONFIG.supercedes,
-            suppressEvent: SCROLL_INCREMENT_CONFIG.suppressEvent
-        }
-    );
-
-
-    /**
-    * @config minscrollheight
-    * @description Number defining the minimum threshold for the "maxheight" 
-    * configuration property.  When set this property is automatically applied 
-    * to all submenus.
-    * @default 90
-    * @type Number
-    */
-    oConfig.addProperty(
-        MIN_SCROLL_HEIGHT_CONFIG.key, 
-        { 
-            value: MIN_SCROLL_HEIGHT_CONFIG.value, 
-            validator: MIN_SCROLL_HEIGHT_CONFIG.validator,
-            supercedes: MIN_SCROLL_HEIGHT_CONFIG.supercedes,
-            suppressEvent: MIN_SCROLL_HEIGHT_CONFIG.suppressEvent
-        }
-    );
-
-
-    /**
-    * @config maxheight
-    * @description Number defining the maximum height (in pixels) for a menu's 
-    * body element (<code>&#60;div class="bd"&#60;</code>).  Once a menu's body 
-    * exceeds this height, the contents of the body are scrolled to maintain 
-    * this value.  This value cannot be set lower than the value of the 
-    * "minscrollheight" configuration property.
-    * @default 0
-    * @type Number
-    */
-    oConfig.addProperty(
-       MAX_HEIGHT_CONFIG.key, 
-       {
-            handler: this.configMaxHeight,
-            value: MAX_HEIGHT_CONFIG.value,
-            validator: MAX_HEIGHT_CONFIG.validator,
-            suppressEvent: MAX_HEIGHT_CONFIG.suppressEvent,
-            supercedes: MAX_HEIGHT_CONFIG.supercedes            
-       } 
-    );
-
-
-    /**
-    * @config classname
-    * @description String representing the CSS class to be applied to the 
-    * menu's root <code>&#60;div&#62;</code> element.  The specified class(es)  
-    * are appended in addition to the default class as specified by the menu's
-    * CSS_CLASS_NAME constant. When set this property is automatically 
-    * applied to all submenus.
-    * @default null
-    * @type String
-    */
-    oConfig.addProperty(
-        CLASS_NAME_CONFIG.key, 
-        { 
-            handler: this.configClassName,
-            value: CLASS_NAME_CONFIG.value, 
-            validator: CLASS_NAME_CONFIG.validator,
-            supercedes: CLASS_NAME_CONFIG.supercedes      
-        }
-    );
-
-
-    /**
-    * @config disabled
-    * @description Boolean indicating if the menu should be disabled.  
-    * Disabling a menu disables each of its items.  (Disabled menu items are 
-    * dimmed and will not respond to user input or fire events.)  Disabled
-    * menus have a corresponding "disabled" CSS class applied to their root
-    * <code>&#60;div&#62;</code> element.
-    * @default false
-    * @type Boolean
-    */
-    oConfig.addProperty(
-        DISABLED_CONFIG.key, 
-        { 
-            handler: this.configDisabled,
-            value: DISABLED_CONFIG.value, 
-            validator: DISABLED_CONFIG.validator,
-            suppressEvent: DISABLED_CONFIG.suppressEvent
-        }
-    );
-
-
-    /**
-    * @config shadow
-    * @description Boolean indicating if the menu should have a shadow.
-    * @default true
-    * @type Boolean
-    */
-    oConfig.addProperty(
-        SHADOW_CONFIG.key, 
-        { 
-            handler: this.configShadow,
-            value: SHADOW_CONFIG.value, 
-            validator: SHADOW_CONFIG.validator
-        }
-    );
-
-
-    /**
-    * @config keepopen
-    * @description Boolean indicating if the menu should remain open when clicked.
-    * @default flase
-    * @type Boolean
-    */
-    oConfig.addProperty(
-        KEEP_OPEN_CONFIG.key, 
-        { 
-            value: KEEP_OPEN_CONFIG.value, 
-            validator: KEEP_OPEN_CONFIG.validator
-        }
-    );
-
-}
-
-}); // END YAHOO.lang.extend
-
-})();
-
-
-
-(function () {
-
-/**
-* Creates an item for a menu.
-* 
-* @param {String} p_oObject String specifying the text of the menu item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-74680021">HTMLLIElement</a>} p_oObject Object specifying 
-* the <code>&#60;li&#62;</code> element of the menu item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-38450247">HTMLOptGroupElement</a>} p_oObject Object 
-* specifying the <code>&#60;optgroup&#62;</code> element of the menu item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-70901257">HTMLOptionElement</a>} p_oObject Object 
-* specifying the <code>&#60;option&#62;</code> element of the menu item.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the menu item. See configuration class documentation 
-* for more details.
-* @class MenuItem
-* @constructor
-*/
-YAHOO.widget.MenuItem = function (p_oObject, p_oConfig) {
-
-    if (p_oObject) {
-
-        if (p_oConfig) {
-    
-            this.parent = p_oConfig.parent;
-            this.value = p_oConfig.value;
-            this.id = p_oConfig.id;
-
-        }
-
-        this.init(p_oObject, p_oConfig);
-
-    }
-
-};
-
-
-var Dom = YAHOO.util.Dom,
-    Module = YAHOO.widget.Module,
-    Menu = YAHOO.widget.Menu,
-    MenuItem = YAHOO.widget.MenuItem,
-    CustomEvent = YAHOO.util.CustomEvent,
-    UA = YAHOO.env.ua,
-    Lang = YAHOO.lang,
-
-	// Private string constants
-
-	_TEXT = "text",
-	_HASH = "#",
-	_HYPHEN = "-",
-	_HELP_TEXT = "helptext",
-	_URL = "url",
-	_TARGET = "target",
-	_EMPHASIS = "emphasis",
-	_STRONG_EMPHASIS = "strongemphasis",
-	_CHECKED = "checked",
-	_SUBMENU = "submenu",
-	_DISABLED = "disabled",
-	_SELECTED = "selected",
-	_HAS_SUBMENU = "hassubmenu",
-	_CHECKED_DISABLED = "checked-disabled",
-	_HAS_SUBMENU_DISABLED = "hassubmenu-disabled",
-	_HAS_SUBMENU_SELECTED = "hassubmenu-selected",
-	_CHECKED_SELECTED = "checked-selected",
-	_ONCLICK = "onclick",
-	_CLASSNAME = "classname",
-	_EMPTY_STRING = "",
-	_OPTION = "OPTION",
-	_OPTGROUP = "OPTGROUP",
-	_LI_UPPERCASE = "LI",
-	_LI_LOWERCASE = "li",
-	_HREF = "href",
-	_ANCHOR_TEMPLATE = "<a href=\"#\"></a>",
-	_SELECT = "SELECT",
-	_DIV = "DIV",
-	_START_HELP_TEXT = "<em class=\"helptext\">",
-	_START_EM = "<em>",
-	_END_EM = "</em>",
-	_START_STRONG = "<strong>",
-	_END_STRONG = "</strong>",
-	_PREVENT_CONTEXT_OVERLAP = "preventcontextoverlap",
-	_OBJ = "obj",
-	_SCOPE = "scope",
-	_NONE = "none",
-	_VISIBLE = "visible",
-	_SPACE = " ",
-	_MENUITEM = "MenuItem",
-
-    EVENT_TYPES = [
-    
-        ["mouseOverEvent", "mouseover"],
-        ["mouseOutEvent", "mouseout"],
-        ["mouseDownEvent", "mousedown"],
-        ["mouseUpEvent", "mouseup"],
-        ["clickEvent", "click"],
-        ["keyPressEvent", "keypress"],
-        ["keyDownEvent", "keydown"],
-        ["keyUpEvent", "keyup"],
-        ["focusEvent", "focus"],
-        ["blurEvent", "blur"],
-        ["destroyEvent", "destroy"]
-    
-    ],
-
-	TEXT_CONFIG = { 
-		key: _TEXT, 
-		value: _EMPTY_STRING, 
-		validator: Lang.isString, 
-		suppressEvent: true 
-	}, 
-
-	HELP_TEXT_CONFIG = { 
-		key: _HELP_TEXT,
-		supercedes: [_TEXT], 
-		suppressEvent: true 
-	},
-
-	URL_CONFIG = { 
-		key: _URL, 
-		value: _HASH, 
-		suppressEvent: true 
-	}, 
-
-	TARGET_CONFIG = { 
-		key: _TARGET, 
-		suppressEvent: true 
-	}, 
-
-	EMPHASIS_CONFIG = { 
-		key: _EMPHASIS, 
-		value: false, 
-		validator: Lang.isBoolean, 
-		suppressEvent: true, 
-		supercedes: [_TEXT]
-	}, 
-
-	STRONG_EMPHASIS_CONFIG = { 
-		key: _STRONG_EMPHASIS, 
-		value: false, 
-		validator: Lang.isBoolean, 
-		suppressEvent: true,
-		supercedes: [_TEXT]
-	},
-
-	CHECKED_CONFIG = { 
-		key: _CHECKED, 
-		value: false, 
-		validator: Lang.isBoolean, 
-		suppressEvent: true, 
-		supercedes: [_DISABLED, _SELECTED]
-	}, 
-
-	SUBMENU_CONFIG = { 
-		key: _SUBMENU,
-		suppressEvent: true,
-		supercedes: [_DISABLED, _SELECTED]
-	},
-
-	DISABLED_CONFIG = { 
-		key: _DISABLED, 
-		value: false, 
-		validator: Lang.isBoolean, 
-		suppressEvent: true,
-		supercedes: [_TEXT, _SELECTED]
-	},
-
-	SELECTED_CONFIG = { 
-		key: _SELECTED, 
-		value: false, 
-		validator: Lang.isBoolean, 
-		suppressEvent: true
-	},
-
-	ONCLICK_CONFIG = { 
-		key: _ONCLICK,
-		suppressEvent: true
-	},
-
-	CLASS_NAME_CONFIG = { 
-		key: _CLASSNAME, 
-		value: null, 
-		validator: Lang.isString,
-		suppressEvent: true
-	},
-    
-    CLASS_NAMES = {},
-    
-    m_oMenuItemTemplate;
-
-
-/**
-* @method getClassNameForState
-* @description Returns a class name for the specified prefix and state.  If the class name does not 
-* yet exist, it is created and stored in the CLASS_NAMES object to increase performance.
-* @private
-* @param {String} prefix String representing the prefix for the class name
-* @param {String} state String representing a state - "disabled," "checked," etc.
-*/  
-var getClassNameForState = function (prefix, state) {
-
-	var oClassNames = CLASS_NAMES[prefix];
-	
-	if (!oClassNames) {
-		CLASS_NAMES[prefix] = {};
-		oClassNames = CLASS_NAMES[prefix];
-	}
-
-
-	var sClassName = oClassNames[state];
-
-	if (!sClassName) {
-		sClassName = prefix + _HYPHEN + state;
-		oClassNames[state] = sClassName;
-	}
-
-	return sClassName;
-	
-};
-
-
-/**
-* @method addClassNameForState
-* @description Applies a class name to a MenuItem instance's &#60;LI&#62; and &#60;A&#62; elements
-* that represents a MenuItem's state - "disabled," "checked," etc.
-* @private
-* @param {String} state String representing a state - "disabled," "checked," etc.
-*/  
-var addClassNameForState = function (state) {
-
-	Dom.addClass(this.element, getClassNameForState(this.CSS_CLASS_NAME, state));
-	Dom.addClass(this._oAnchor, getClassNameForState(this.CSS_LABEL_CLASS_NAME, state));
-
-};
-
-/**
-* @method removeClassNameForState
-* @description Removes a class name from a MenuItem instance's &#60;LI&#62; and &#60;A&#62; elements
-* that represents a MenuItem's state - "disabled," "checked," etc.
-* @private
-* @param {String} state String representing a state - "disabled," "checked," etc.
-*/  
-var removeClassNameForState = function (state) {
-
-	Dom.removeClass(this.element, getClassNameForState(this.CSS_CLASS_NAME, state));
-	Dom.removeClass(this._oAnchor, getClassNameForState(this.CSS_LABEL_CLASS_NAME, state));
-
-};
-
-
-MenuItem.prototype = {
-
-    /**
-    * @property CSS_CLASS_NAME
-    * @description String representing the CSS class(es) to be applied to the 
-    * <code>&#60;li&#62;</code> element of the menu item.
-    * @default "yuimenuitem"
-    * @final
-    * @type String
-    */
-    CSS_CLASS_NAME: "yuimenuitem",
-
-
-    /**
-    * @property CSS_LABEL_CLASS_NAME
-    * @description String representing the CSS class(es) to be applied to the 
-    * menu item's <code>&#60;a&#62;</code> element.
-    * @default "yuimenuitemlabel"
-    * @final
-    * @type String
-    */
-    CSS_LABEL_CLASS_NAME: "yuimenuitemlabel",
-
-
-    /**
-    * @property SUBMENU_TYPE
-    * @description Object representing the type of menu to instantiate and 
-    * add when parsing the child nodes of the menu item's source HTML element.
-    * @final
-    * @type YAHOO.widget.Menu
-    */
-    SUBMENU_TYPE: null,
-
-
-
-    // Private member variables
-    
-
-    /**
-    * @property _oAnchor
-    * @description Object reference to the menu item's 
-    * <code>&#60;a&#62;</code> element.
-    * @default null 
-    * @private
-    * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-48250443">HTMLAnchorElement</a>
-    */
-    _oAnchor: null,
-    
-    
-    /**
-    * @property _oHelpTextEM
-    * @description Object reference to the menu item's help text 
-    * <code>&#60;em&#62;</code> element.
-    * @default null
-    * @private
-    * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-58190037">HTMLElement</a>
-    */
-    _oHelpTextEM: null,
-    
-    
-    /**
-    * @property _oSubmenu
-    * @description Object reference to the menu item's submenu.
-    * @default null
-    * @private
-    * @type YAHOO.widget.Menu
-    */
-    _oSubmenu: null,
-
-
-    /** 
-    * @property _oOnclickAttributeValue
-    * @description Object reference to the menu item's current value for the 
-    * "onclick" configuration attribute.
-    * @default null
-    * @private
-    * @type Object
-    */
-    _oOnclickAttributeValue: null,
-
-
-    /**
-    * @property _sClassName
-    * @description The current value of the "classname" configuration attribute.
-    * @default null
-    * @private
-    * @type String
-    */
-    _sClassName: null,
-
-
-
-    // Public properties
-
-
-	/**
-    * @property constructor
-	* @description Object reference to the menu item's constructor function.
-    * @default YAHOO.widget.MenuItem
-	* @type YAHOO.widget.MenuItem
-	*/
-	constructor: MenuItem,
-
-
-    /**
-    * @property index
-    * @description Number indicating the ordinal position of the menu item in 
-    * its group.
-    * @default null
-    * @type Number
-    */
-    index: null,
-
-
-    /**
-    * @property groupIndex
-    * @description Number indicating the index of the group to which the menu 
-    * item belongs.
-    * @default null
-    * @type Number
-    */
-    groupIndex: null,
-
-
-    /**
-    * @property parent
-    * @description Object reference to the menu item's parent menu.
-    * @default null
-    * @type YAHOO.widget.Menu
-    */
-    parent: null,
-
-
-    /**
-    * @property element
-    * @description Object reference to the menu item's 
-    * <code>&#60;li&#62;</code> element.
-    * @default <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level
-    * -one-html.html#ID-74680021">HTMLLIElement</a>
-    * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-74680021">HTMLLIElement</a>
-    */
-    element: null,
-
-
-    /**
-    * @property srcElement
-    * @description Object reference to the HTML element (either 
-    * <code>&#60;li&#62;</code>, <code>&#60;optgroup&#62;</code> or 
-    * <code>&#60;option&#62;</code>) used create the menu item.
-    * @default <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-    * level-one-html.html#ID-74680021">HTMLLIElement</a>|<a href="http://www.
-    * w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-38450247"
-    * >HTMLOptGroupElement</a>|<a href="http://www.w3.org/TR/2000/WD-DOM-
-    * Level-1-20000929/level-one-html.html#ID-70901257">HTMLOptionElement</a>
-    * @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-74680021">HTMLLIElement</a>|<a href="http://www.w3.
-    * org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-38450247">
-    * HTMLOptGroupElement</a>|<a href="http://www.w3.org/TR/2000/WD-DOM-
-    * Level-1-20000929/level-one-html.html#ID-70901257">HTMLOptionElement</a>
-    */
-    srcElement: null,
-
-
-    /**
-    * @property value
-    * @description Object reference to the menu item's value.
-    * @default null
-    * @type Object
-    */
-    value: null,
-
-
-	/**
-    * @property browser
-    * @deprecated Use YAHOO.env.ua
-	* @description String representing the browser.
-	* @type String
-	*/
-	browser: Module.prototype.browser,
-
-
-    /**
-    * @property id
-    * @description Id of the menu item's root <code>&#60;li&#62;</code> 
-    * element.  This property should be set via the constructor using the 
-    * configuration object literal.  If an id is not specified, then one will 
-    * be created using the "generateId" method of the Dom utility.
-    * @default null
-    * @type String
-    */
-    id: null,
-
-
-
-    // Events
-
-
-    /**
-    * @event destroyEvent
-    * @description Fires when the menu item's <code>&#60;li&#62;</code> 
-    * element is removed from its parent <code>&#60;ul&#62;</code> element.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event mouseOverEvent
-    * @description Fires when the mouse has entered the menu item.  Passes 
-    * back the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event mouseOutEvent
-    * @description Fires when the mouse has left the menu item.  Passes back 
-    * the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event mouseDownEvent
-    * @description Fires when the user mouses down on the menu item.  Passes 
-    * back the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event mouseUpEvent
-    * @description Fires when the user releases a mouse button while the mouse 
-    * is over the menu item.  Passes back the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event clickEvent
-    * @description Fires when the user clicks the on the menu item.  Passes 
-    * back the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event keyPressEvent
-    * @description Fires when the user presses an alphanumeric key when the 
-    * menu item has focus.  Passes back the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event keyDownEvent
-    * @description Fires when the user presses a key when the menu item has 
-    * focus.  Passes back the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event keyUpEvent
-    * @description Fires when the user releases a key when the menu item has 
-    * focus.  Passes back the DOM Event object as an argument.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event focusEvent
-    * @description Fires when the menu item receives focus.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @event blurEvent
-    * @description Fires when the menu item loses the input focus.
-    * @type YAHOO.util.CustomEvent
-    */
-
-
-    /**
-    * @method init
-    * @description The MenuItem class's initialization method. This method is 
-    * automatically called by the constructor, and sets up all DOM references 
-    * for pre-existing markup, and creates required markup if it is not 
-    * already present.
-    * @param {String} p_oObject String specifying the text of the menu item.
-    * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-74680021">HTMLLIElement</a>} p_oObject Object specifying 
-    * the <code>&#60;li&#62;</code> element of the menu item.
-    * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-38450247">HTMLOptGroupElement</a>} p_oObject Object 
-    * specifying the <code>&#60;optgroup&#62;</code> element of the menu item.
-    * @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-    * one-html.html#ID-70901257">HTMLOptionElement</a>} p_oObject Object 
-    * specifying the <code>&#60;option&#62;</code> element of the menu item.
-    * @param {Object} p_oConfig Optional. Object literal specifying the 
-    * configuration for the menu item. See configuration class documentation 
-    * for more details.
-    */
-    init: function (p_oObject, p_oConfig) {
-
-
-        if (!this.SUBMENU_TYPE) {
-    
-            this.SUBMENU_TYPE = Menu;
-    
-        }
-
-
-        // Create the config object
-
-        this.cfg = new YAHOO.util.Config(this);
-
-        this.initDefaultConfig();
-
-        var oConfig = this.cfg,
-            sURL = _HASH,
-            oCustomEvent,
-			aEventData,
-            oAnchor,
-            sTarget,
-            sText,
-            sId,
-            i;
-
-
-        if (Lang.isString(p_oObject)) {
-
-            this._createRootNodeStructure();
-
-            oConfig.queueProperty(_TEXT, p_oObject);
-
-        }
-        else if (p_oObject && p_oObject.tagName) {
-
-            switch(p_oObject.tagName.toUpperCase()) {
-
-                case _OPTION:
-
-                    this._createRootNodeStructure();
-
-                    oConfig.queueProperty(_TEXT, p_oObject.text);
-                    oConfig.queueProperty(_DISABLED, p_oObject.disabled);
-
-                    this.value = p_oObject.value;
-
-                    this.srcElement = p_oObject;
-
-                break;
-
-                case _OPTGROUP:
-
-                    this._createRootNodeStructure();
-
-                    oConfig.queueProperty(_TEXT, p_oObject.label);
-                    oConfig.queueProperty(_DISABLED, p_oObject.disabled);
-
-                    this.srcElement = p_oObject;
-
-                    this._initSubTree();
-
-                break;
-
-                case _LI_UPPERCASE:
-
-                    // Get the anchor node (if it exists)
-                    
-                    oAnchor = Dom.getFirstChild(p_oObject);
-
-
-                    // Capture the "text" and/or the "URL"
-
-                    if (oAnchor) {
-
-                        sURL = oAnchor.getAttribute(_HREF, 2);
-                        sTarget = oAnchor.getAttribute(_TARGET);
-
-                        sText = oAnchor.innerHTML;
-
-                    }
-
-                    this.srcElement = p_oObject;
-                    this.element = p_oObject;
-                    this._oAnchor = oAnchor;
-
-                    /*
-                        Set these properties silently to sync up the 
-                        configuration object without making changes to the 
-                        element's DOM
-                    */ 
-
-                    oConfig.setProperty(_TEXT, sText, true);
-                    oConfig.setProperty(_URL, sURL, true);
-                    oConfig.setProperty(_TARGET, sTarget, true);
-
-                    this._initSubTree();
-
-                break;
-
-            }            
-
-        }
-
-
-        if (this.element) {
-
-            sId = (this.srcElement || this.element).id;
-
-            if (!sId) {
-
-                sId = this.id || Dom.generateId();
-
-                this.element.id = sId;
-
-            }
-
-            this.id = sId;
-
-
-            Dom.addClass(this.element, this.CSS_CLASS_NAME);
-            Dom.addClass(this._oAnchor, this.CSS_LABEL_CLASS_NAME);
-
-
-			i = EVENT_TYPES.length - 1;
-
-			do {
-
-				aEventData = EVENT_TYPES[i];
-
-				oCustomEvent = this.createEvent(aEventData[1]);
-				oCustomEvent.signature = CustomEvent.LIST;
-				
-				this[aEventData[0]] = oCustomEvent;
-
-			}
-			while (i--);
-
-
-            if (p_oConfig) {
-    
-                oConfig.applyConfig(p_oConfig);
-    
-            }        
-
-            oConfig.fireQueue();
-
-        }
-
-    },
-
-
-
-    // Private methods
-
-    /**
-    * @method _createRootNodeStructure
-    * @description Creates the core DOM structure for the menu item.
-    * @private
-    */
-    _createRootNodeStructure: function () {
-
-        var oElement,
-            oAnchor;
-
-        if (!m_oMenuItemTemplate) {
-
-            m_oMenuItemTemplate = document.createElement(_LI_LOWERCASE);
-            m_oMenuItemTemplate.innerHTML = _ANCHOR_TEMPLATE;
-
-        }
-
-        oElement = m_oMenuItemTemplate.cloneNode(true);
-        oElement.className = this.CSS_CLASS_NAME;
-
-        oAnchor = oElement.firstChild;
-        oAnchor.className = this.CSS_LABEL_CLASS_NAME;
-        
-        this.element = oElement;
-        this._oAnchor = oAnchor;
-
-    },
-
-
-    /**
-    * @method _initSubTree
-    * @description Iterates the source element's childNodes collection and uses 
-    * the child nodes to instantiate other menus.
-    * @private
-    */
-    _initSubTree: function () {
-
-        var oSrcEl = this.srcElement,
-            oConfig = this.cfg,
-            oNode,
-            aOptions,
-            nOptions,
-            oMenu,
-            n;
-
-
-        if (oSrcEl.childNodes.length > 0) {
-
-            if (this.parent.lazyLoad && this.parent.srcElement && 
-                this.parent.srcElement.tagName.toUpperCase() == _SELECT) {
-
-                oConfig.setProperty(
-                        _SUBMENU, 
-                        { id: Dom.generateId(), itemdata: oSrcEl.childNodes }
-                    );
-
-            }
-            else {
-
-                oNode = oSrcEl.firstChild;
-                aOptions = [];
-    
-                do {
-    
-                    if (oNode && oNode.tagName) {
-    
-                        switch(oNode.tagName.toUpperCase()) {
-                
-                            case _DIV:
-                
-                                oConfig.setProperty(_SUBMENU, oNode);
-                
-                            break;
-         
-                            case _OPTION:
-        
-                                aOptions[aOptions.length] = oNode;
-        
-                            break;
-               
-                        }
-                    
-                    }
-                
-                }        
-                while((oNode = oNode.nextSibling));
-    
-    
-                nOptions = aOptions.length;
-    
-                if (nOptions > 0) {
-    
-                    oMenu = new this.SUBMENU_TYPE(Dom.generateId());
-                    
-                    oConfig.setProperty(_SUBMENU, oMenu);
-    
-                    for(n=0; n<nOptions; n++) {
-        
-                        oMenu.addItem((new oMenu.ITEM_TYPE(aOptions[n])));
-        
-                    }
-        
-                }
-            
-            }
-
-        }
-
-    },
-
-
-
-    // Event handlers for configuration properties
-
-
-    /**
-    * @method configText
-    * @description Event handler for when the "text" configuration property of 
-    * the menu item changes.
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */
-    configText: function (p_sType, p_aArgs, p_oItem) {
-
-        var sText = p_aArgs[0],
-            oConfig = this.cfg,
-            oAnchor = this._oAnchor,
-            sHelpText = oConfig.getProperty(_HELP_TEXT),
-            sHelpTextHTML = _EMPTY_STRING,
-            sEmphasisStartTag = _EMPTY_STRING,
-            sEmphasisEndTag = _EMPTY_STRING;
-
-
-        if (sText) {
-
-
-            if (sHelpText) {
-                    
-                sHelpTextHTML = _START_HELP_TEXT + sHelpText + _END_EM;
-            
-            }
-
-
-            if (oConfig.getProperty(_EMPHASIS)) {
-
-                sEmphasisStartTag = _START_EM;
-                sEmphasisEndTag = _END_EM;
-
-            }
-
-
-            if (oConfig.getProperty(_STRONG_EMPHASIS)) {
-
-                sEmphasisStartTag = _START_STRONG;
-                sEmphasisEndTag = _END_STRONG;
-            
-            }
-
-
-            oAnchor.innerHTML = (sEmphasisStartTag + sText + sEmphasisEndTag + sHelpTextHTML);
-
-        }
-
-    },
-
-
-    /**
-    * @method configHelpText
-    * @description Event handler for when the "helptext" configuration property 
-    * of the menu item changes.
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configHelpText: function (p_sType, p_aArgs, p_oItem) {
-
-        this.cfg.refireEvent(_TEXT);
-
-    },
-
-
-    /**
-    * @method configURL
-    * @description Event handler for when the "url" configuration property of 
-    * the menu item changes.
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configURL: function (p_sType, p_aArgs, p_oItem) {
-
-        var sURL = p_aArgs[0];
-
-        if (!sURL) {
-
-            sURL = _HASH;
-
-        }
-
-        var oAnchor = this._oAnchor;
-
-        if (UA.opera) {
-
-            oAnchor.removeAttribute(_HREF);
-        
-        }
-
-        oAnchor.setAttribute(_HREF, sURL);
-
-    },
-
-
-    /**
-    * @method configTarget
-    * @description Event handler for when the "target" configuration property 
-    * of the menu item changes.  
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configTarget: function (p_sType, p_aArgs, p_oItem) {
-
-        var sTarget = p_aArgs[0],
-            oAnchor = this._oAnchor;
-
-        if (sTarget && sTarget.length > 0) {
-
-            oAnchor.setAttribute(_TARGET, sTarget);
-
-        }
-        else {
-
-            oAnchor.removeAttribute(_TARGET);
-        
-        }
-
-    },
-
-
-    /**
-    * @method configEmphasis
-    * @description Event handler for when the "emphasis" configuration property
-    * of the menu item changes.
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configEmphasis: function (p_sType, p_aArgs, p_oItem) {
-
-        var bEmphasis = p_aArgs[0],
-            oConfig = this.cfg;
-
-
-        if (bEmphasis && oConfig.getProperty(_STRONG_EMPHASIS)) {
-
-            oConfig.setProperty(_STRONG_EMPHASIS, false);
-
-        }
-
-
-        oConfig.refireEvent(_TEXT);
-
-    },
-
-
-    /**
-    * @method configStrongEmphasis
-    * @description Event handler for when the "strongemphasis" configuration 
-    * property of the menu item changes.
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configStrongEmphasis: function (p_sType, p_aArgs, p_oItem) {
-
-        var bStrongEmphasis = p_aArgs[0],
-            oConfig = this.cfg;
-
-
-        if (bStrongEmphasis && oConfig.getProperty(_EMPHASIS)) {
-
-            oConfig.setProperty(_EMPHASIS, false);
-
-        }
-
-        oConfig.refireEvent(_TEXT);
-
-    },
-
-
-    /**
-    * @method configChecked
-    * @description Event handler for when the "checked" configuration property 
-    * of the menu item changes. 
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configChecked: function (p_sType, p_aArgs, p_oItem) {
-
-        var bChecked = p_aArgs[0],
-            oConfig = this.cfg;
-
-
-        if (bChecked) {
-
-            addClassNameForState.call(this, _CHECKED);
-
-        }
-        else {
-
-            removeClassNameForState.call(this, _CHECKED);
-        }
-
-
-        oConfig.refireEvent(_TEXT);
-
-
-        if (oConfig.getProperty(_DISABLED)) {
-
-            oConfig.refireEvent(_DISABLED);
-
-        }
-
-
-        if (oConfig.getProperty(_SELECTED)) {
-
-            oConfig.refireEvent(_SELECTED);
-
-        }
-
-    },
-
-
-
-    /**
-    * @method configDisabled
-    * @description Event handler for when the "disabled" configuration property 
-    * of the menu item changes. 
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configDisabled: function (p_sType, p_aArgs, p_oItem) {
-
-        var bDisabled = p_aArgs[0],
-            oConfig = this.cfg,
-            oSubmenu = oConfig.getProperty(_SUBMENU),
-            bChecked = oConfig.getProperty(_CHECKED);
-
-
-        if (bDisabled) {
-
-            if (oConfig.getProperty(_SELECTED)) {
-
-                oConfig.setProperty(_SELECTED, false);
-
-            }
-
-
-			addClassNameForState.call(this, _DISABLED);
-
-
-            if (oSubmenu) {
-
-				addClassNameForState.call(this, _HAS_SUBMENU_DISABLED);
-            
-            }
-            
-
-            if (bChecked) {
-
-				addClassNameForState.call(this, _CHECKED_DISABLED);
-
-            }
-
-        }
-        else {
-
-			removeClassNameForState.call(this, _DISABLED);
-
-
-            if (oSubmenu) {
-
-				removeClassNameForState.call(this, _HAS_SUBMENU_DISABLED);
-            
-            }
-            
-
-            if (bChecked) {
-
-				removeClassNameForState.call(this, _CHECKED_DISABLED);
-
-            }
-
-        }
-
-    },
-
-
-    /**
-    * @method configSelected
-    * @description Event handler for when the "selected" configuration property 
-    * of the menu item changes. 
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */    
-    configSelected: function (p_sType, p_aArgs, p_oItem) {
-
-        var oConfig = this.cfg,
-        	oAnchor = this._oAnchor,
-        	
-            bSelected = p_aArgs[0],
-            bChecked = oConfig.getProperty(_CHECKED),
-            oSubmenu = oConfig.getProperty(_SUBMENU);
-
-
-        if (UA.opera) {
-
-            oAnchor.blur();
-        
-        }
-
-
-        if (bSelected && !oConfig.getProperty(_DISABLED)) {
-
-			addClassNameForState.call(this, _SELECTED);
-
-
-            if (oSubmenu) {
-
-				addClassNameForState.call(this, _HAS_SUBMENU_SELECTED);
-            
-            }
-
-
-            if (bChecked) {
-
-				addClassNameForState.call(this, _CHECKED_SELECTED);
-
-            }
-
-        }
-        else {
-
-			removeClassNameForState.call(this, _SELECTED);
-
-
-            if (oSubmenu) {
-
-				removeClassNameForState.call(this, _HAS_SUBMENU_SELECTED);
-            
-            }
-
-
-            if (bChecked) {
-
-				removeClassNameForState.call(this, _CHECKED_SELECTED);
-
-            }
-
-        }
-
-
-        if (this.hasFocus() && UA.opera) {
-        
-            oAnchor.focus();
-        
-        }
-
-    },
-
-
-    /**
-    * @method _onSubmenuBeforeHide
-    * @description "beforehide" Custom Event handler for a submenu.
-    * @private
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    */
-    _onSubmenuBeforeHide: function (p_sType, p_aArgs) {
-
-        var oItem = this.parent,
-            oMenu;
-
-        function onHide() {
-
-            oItem._oAnchor.blur();
-            oMenu.beforeHideEvent.unsubscribe(onHide);
-        
-        }
-
-
-        if (oItem.hasFocus()) {
-
-            oMenu = oItem.parent;
-
-            oMenu.beforeHideEvent.subscribe(onHide);
-        
-        }
-    
-    },
-
-
-    /**
-    * @method configSubmenu
-    * @description Event handler for when the "submenu" configuration property 
-    * of the menu item changes. 
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */
-    configSubmenu: function (p_sType, p_aArgs, p_oItem) {
-
-        var oSubmenu = p_aArgs[0],
-            oConfig = this.cfg,
-            bLazyLoad = this.parent && this.parent.lazyLoad,
-            oMenu,
-            sSubmenuId,
-            oSubmenuConfig;
-
-
-        if (oSubmenu) {
-
-            if (oSubmenu instanceof Menu) {
-
-                oMenu = oSubmenu;
-                oMenu.parent = this;
-                oMenu.lazyLoad = bLazyLoad;
-
-            }
-            else if (Lang.isObject(oSubmenu) && oSubmenu.id && !oSubmenu.nodeType) {
-
-                sSubmenuId = oSubmenu.id;
-                oSubmenuConfig = oSubmenu;
-
-                oSubmenuConfig.lazyload = bLazyLoad;
-                oSubmenuConfig.parent = this;
-
-                oMenu = new this.SUBMENU_TYPE(sSubmenuId, oSubmenuConfig);
-
-
-                // Set the value of the property to the Menu instance
-
-                oConfig.setProperty(_SUBMENU, oMenu, true);
-
-            }
-            else {
-
-                oMenu = new this.SUBMENU_TYPE(oSubmenu, { lazyload: bLazyLoad, parent: this });
-
-
-                // Set the value of the property to the Menu instance
-                
-                oConfig.setProperty(_SUBMENU, oMenu, true);
-
-            }
-
-
-            if (oMenu) {
-
-				oMenu.cfg.setProperty(_PREVENT_CONTEXT_OVERLAP, true);
-
-                addClassNameForState.call(this, _HAS_SUBMENU);
-
-
-				if (oConfig.getProperty(_URL) === _HASH) {
-				
-					oConfig.setProperty(_URL, (_HASH + oMenu.id));
-				
-				}
-
-
-                this._oSubmenu = oMenu;
-
-
-                if (UA.opera) {
-                
-                    oMenu.beforeHideEvent.subscribe(this._onSubmenuBeforeHide);               
-                
-                }
-            
-            }
-
-        }
-        else {
-
-			removeClassNameForState.call(this, _HAS_SUBMENU);
-
-            if (this._oSubmenu) {
-
-                this._oSubmenu.destroy();
-
-            }
-
-        }
-
-
-        if (oConfig.getProperty(_DISABLED)) {
-
-            oConfig.refireEvent(_DISABLED);
-
-        }
-
-
-        if (oConfig.getProperty(_SELECTED)) {
-
-            oConfig.refireEvent(_SELECTED);
-
-        }
-
-    },
-
-
-    /**
-    * @method configOnClick
-    * @description Event handler for when the "onclick" configuration property 
-    * of the menu item changes. 
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */
-    configOnClick: function (p_sType, p_aArgs, p_oItem) {
-
-        var oObject = p_aArgs[0];
-
-        /*
-            Remove any existing listeners if a "click" event handler has 
-            already been specified.
-        */
-
-        if (this._oOnclickAttributeValue && (this._oOnclickAttributeValue != oObject)) {
-
-            this.clickEvent.unsubscribe(this._oOnclickAttributeValue.fn, 
-                                this._oOnclickAttributeValue.obj);
-
-            this._oOnclickAttributeValue = null;
-
-        }
-
-
-        if (!this._oOnclickAttributeValue && Lang.isObject(oObject) && 
-            Lang.isFunction(oObject.fn)) {
-            
-            this.clickEvent.subscribe(oObject.fn, 
-                ((_OBJ in oObject) ? oObject.obj : this), 
-                ((_SCOPE in oObject) ? oObject.scope : null) );
-
-            this._oOnclickAttributeValue = oObject;
-
-        }
-    
-    },
-
-
-    /**
-    * @method configClassName
-    * @description Event handler for when the "classname" configuration 
-    * property of a menu item changes.
-    * @param {String} p_sType String representing the name of the event that 
-    * was fired.
-    * @param {Array} p_aArgs Array of arguments sent when the event was fired.
-    * @param {YAHOO.widget.MenuItem} p_oItem Object representing the menu item
-    * that fired the event.
-    */
-    configClassName: function (p_sType, p_aArgs, p_oItem) {
-    
-        var sClassName = p_aArgs[0];
-    
-        if (this._sClassName) {
-    
-            Dom.removeClass(this.element, this._sClassName);
-    
-        }
-    
-        Dom.addClass(this.element, sClassName);
-        this._sClassName = sClassName;
-    
-    },
-
-
-
-    // Public methods
-
-
-	/**
-    * @method initDefaultConfig
-	* @description Initializes an item's configurable properties.
-	*/
-	initDefaultConfig : function () {
-
-        var oConfig = this.cfg;
-
-
-        // Define the configuration attributes
-
-        /**
-        * @config text
-        * @description String specifying the text label for the menu item.  
-        * When building a menu from existing HTML the value of this property
-        * will be interpreted from the menu's markup.
-        * @default ""
-        * @type String
-        */
-        oConfig.addProperty(
-            TEXT_CONFIG.key, 
-            { 
-                handler: this.configText, 
-                value: TEXT_CONFIG.value, 
-                validator: TEXT_CONFIG.validator, 
-                suppressEvent: TEXT_CONFIG.suppressEvent 
-            }
-        );
-        
-
-        /**
-        * @config helptext
-        * @description String specifying additional instructional text to 
-        * accompany the text for the menu item.
-        * @deprecated Use "text" configuration property to add help text markup.  
-        * For example: <code>oMenuItem.cfg.setProperty("text", "Copy &#60;em 
-        * class=\"helptext\"&#62;Ctrl + C&#60;/em&#62;");</code>
-        * @default null
-        * @type String|<a href="http://www.w3.org/TR/
-        * 2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-58190037">
-        * HTMLElement</a>
-        */
-        oConfig.addProperty(
-            HELP_TEXT_CONFIG.key,
-            {
-                handler: this.configHelpText, 
-                supercedes: HELP_TEXT_CONFIG.supercedes,
-                suppressEvent: HELP_TEXT_CONFIG.suppressEvent 
-            }
-        );
-
-
-        /**
-        * @config url
-        * @description String specifying the URL for the menu item's anchor's 
-        * "href" attribute.  When building a menu from existing HTML the value 
-        * of this property will be interpreted from the menu's markup.
-        * @default "#"
-        * @type String
-        */        
-        oConfig.addProperty(
-            URL_CONFIG.key, 
-            {
-                handler: this.configURL, 
-                value: URL_CONFIG.value, 
-                suppressEvent: URL_CONFIG.suppressEvent
-            }
-        );
-
-
-        /**
-        * @config target
-        * @description String specifying the value for the "target" attribute 
-        * of the menu item's anchor element. <strong>Specifying a target will 
-        * require the user to click directly on the menu item's anchor node in
-        * order to cause the browser to navigate to the specified URL.</strong> 
-        * When building a menu from existing HTML the value of this property 
-        * will be interpreted from the menu's markup.
-        * @default null
-        * @type String
-        */        
-        oConfig.addProperty(
-            TARGET_CONFIG.key, 
-            {
-                handler: this.configTarget, 
-                suppressEvent: TARGET_CONFIG.suppressEvent
-            }
-        );
-
-
-        /**
-        * @config emphasis
-        * @description Boolean indicating if the text of the menu item will be 
-        * rendered with emphasis.
-        * @deprecated Use the "text" configuration property to add emphasis.  
-        * For example: <code>oMenuItem.cfg.setProperty("text", "&#60;em&#62;Some 
-        * Text&#60;/em&#62;");</code>
-        * @default false
-        * @type Boolean
-        */
-        oConfig.addProperty(
-            EMPHASIS_CONFIG.key, 
-            { 
-                handler: this.configEmphasis, 
-                value: EMPHASIS_CONFIG.value, 
-                validator: EMPHASIS_CONFIG.validator, 
-                suppressEvent: EMPHASIS_CONFIG.suppressEvent,
-                supercedes: EMPHASIS_CONFIG.supercedes
-            }
-        );
-
-
-        /**
-        * @config strongemphasis
-        * @description Boolean indicating if the text of the menu item will be 
-        * rendered with strong emphasis.
-        * @deprecated Use the "text" configuration property to add strong emphasis.  
-        * For example: <code>oMenuItem.cfg.setProperty("text", "&#60;strong&#62; 
-        * Some Text&#60;/strong&#62;");</code>
-        * @default false
-        * @type Boolean
-        */
-        oConfig.addProperty(
-            STRONG_EMPHASIS_CONFIG.key,
-            {
-                handler: this.configStrongEmphasis,
-                value: STRONG_EMPHASIS_CONFIG.value,
-                validator: STRONG_EMPHASIS_CONFIG.validator,
-                suppressEvent: STRONG_EMPHASIS_CONFIG.suppressEvent,
-                supercedes: STRONG_EMPHASIS_CONFIG.supercedes
-            }
-        );
-
-
-        /**
-        * @config checked
-        * @description Boolean indicating if the menu item should be rendered 
-        * with a checkmark.
-        * @default false
-        * @type Boolean
-        */
-        oConfig.addProperty(
-            CHECKED_CONFIG.key, 
-            {
-                handler: this.configChecked, 
-                value: CHECKED_CONFIG.value, 
-                validator: CHECKED_CONFIG.validator, 
-                suppressEvent: CHECKED_CONFIG.suppressEvent,
-                supercedes: CHECKED_CONFIG.supercedes
-            } 
-        );
-
-
-        /**
-        * @config disabled
-        * @description Boolean indicating if the menu item should be disabled.  
-        * (Disabled menu items are  dimmed and will not respond to user input 
-        * or fire events.)
-        * @default false
-        * @type Boolean
-        */
-        oConfig.addProperty(
-            DISABLED_CONFIG.key,
-            {
-                handler: this.configDisabled,
-                value: DISABLED_CONFIG.value,
-                validator: DISABLED_CONFIG.validator,
-                suppressEvent: DISABLED_CONFIG.suppressEvent
-            }
-        );
-
-
-        /**
-        * @config selected
-        * @description Boolean indicating if the menu item should 
-        * be highlighted.
-        * @default false
-        * @type Boolean
-        */
-        oConfig.addProperty(
-            SELECTED_CONFIG.key,
-            {
-                handler: this.configSelected,
-                value: SELECTED_CONFIG.value,
-                validator: SELECTED_CONFIG.validator,
-                suppressEvent: SELECTED_CONFIG.suppressEvent
-            }
-        );
-
-
-        /**
-        * @config submenu
-        * @description Object specifying the submenu to be appended to the 
-        * menu item.  The value can be one of the following: <ul><li>Object 
-        * specifying a Menu instance.</li><li>Object literal specifying the
-        * menu to be created.  Format: <code>{ id: [menu id], itemdata: 
-        * [<a href="YAHOO.widget.Menu.html#itemData">array of values for 
-        * items</a>] }</code>.</li><li>String specifying the id attribute 
-        * of the <code>&#60;div&#62;</code> element of the menu.</li><li>
-        * Object specifying the <code>&#60;div&#62;</code> element of the 
-        * menu.</li></ul>
-        * @default null
-        * @type Menu|String|Object|<a href="http://www.w3.org/TR/2000/
-        * WD-DOM-Level-1-20000929/level-one-html.html#ID-58190037">
-        * HTMLElement</a>
-        */
-        oConfig.addProperty(
-            SUBMENU_CONFIG.key, 
-            {
-                handler: this.configSubmenu, 
-                supercedes: SUBMENU_CONFIG.supercedes,
-                suppressEvent: SUBMENU_CONFIG.suppressEvent
-            }
-        );
-
-
-        /**
-        * @config onclick
-        * @description Object literal representing the code to be executed when 
-        * the item is clicked.  Format:<br> <code> {<br> 
-        * <strong>fn:</strong> Function,   &#47;&#47; The handler to call when 
-        * the event fires.<br> <strong>obj:</strong> Object, &#47;&#47; An 
-        * object to  pass back to the handler.<br> <strong>scope:</strong> 
-        * Object &#47;&#47; The object to use for the scope of the handler.
-        * <br> } </code>
-        * @type Object
-        * @default null
-        */
-        oConfig.addProperty(
-            ONCLICK_CONFIG.key, 
-            {
-                handler: this.configOnClick, 
-                suppressEvent: ONCLICK_CONFIG.suppressEvent 
-            }
-        );
-
-
-        /**
-        * @config classname
-        * @description CSS class to be applied to the menu item's root 
-        * <code>&#60;li&#62;</code> element.  The specified class(es) are 
-        * appended in addition to the default class as specified by the menu 
-        * item's CSS_CLASS_NAME constant.
-        * @default null
-        * @type String
-        */
-        oConfig.addProperty(
-            CLASS_NAME_CONFIG.key, 
-            { 
-                handler: this.configClassName,
-                value: CLASS_NAME_CONFIG.value, 
-                validator: CLASS_NAME_CONFIG.validator,
-                suppressEvent: CLASS_NAME_CONFIG.suppressEvent 
-            }
-        );
-
-	},
-
-
-    /**
-    * @method getNextEnabledSibling
-    * @description Finds the menu item's next enabled sibling.
-    * @return YAHOO.widget.MenuItem
-    */
-    getNextEnabledSibling: function () {
-
-        var nGroupIndex,
-            aItemGroups,
-            oNextItem,
-            nNextGroupIndex,
-            aNextGroup,
-            returnVal;
-
-        function getNextArrayItem(p_aArray, p_nStartIndex) {
-
-            return p_aArray[p_nStartIndex] || getNextArrayItem(p_aArray, (p_nStartIndex+1));
-
-        }
-
-        if (this.parent instanceof Menu) {
-
-            nGroupIndex = this.groupIndex;
-    
-            aItemGroups = this.parent.getItemGroups();
-    
-            if (this.index < (aItemGroups[nGroupIndex].length - 1)) {
-    
-                oNextItem = getNextArrayItem(aItemGroups[nGroupIndex], 
-                        (this.index+1));
-    
-            }
-            else {
-    
-                if (nGroupIndex < (aItemGroups.length - 1)) {
-    
-                    nNextGroupIndex = nGroupIndex + 1;
-    
-                }
-                else {
-    
-                    nNextGroupIndex = 0;
-    
-                }
-    
-                aNextGroup = getNextArrayItem(aItemGroups, nNextGroupIndex);
-    
-                // Retrieve the first menu item in the next group
-    
-                oNextItem = getNextArrayItem(aNextGroup, 0);
-    
-            }
-    
-            returnVal = (oNextItem.cfg.getProperty(_DISABLED) || 
-                oNextItem.element.style.display == _NONE) ? 
-                oNextItem.getNextEnabledSibling() : oNextItem;
-
-        }
-        
-        return returnVal;
-
-    },
-
-
-    /**
-    * @method getPreviousEnabledSibling
-    * @description Finds the menu item's previous enabled sibling.
-    * @return {YAHOO.widget.MenuItem}
-    */
-    getPreviousEnabledSibling: function () {
-
-        var nGroupIndex,
-            aItemGroups,
-            oPreviousItem,
-            nPreviousGroupIndex,
-            aPreviousGroup,
-            returnVal;
-
-        function getPreviousArrayItem(p_aArray, p_nStartIndex) {
-
-            return p_aArray[p_nStartIndex] || getPreviousArrayItem(p_aArray, (p_nStartIndex-1));
-
-        }
-
-        function getFirstItemIndex(p_aArray, p_nStartIndex) {
-
-            return p_aArray[p_nStartIndex] ? p_nStartIndex : 
-                getFirstItemIndex(p_aArray, (p_nStartIndex+1));
-
-        }
-
-       if (this.parent instanceof Menu) {
-
-            nGroupIndex = this.groupIndex;
-            aItemGroups = this.parent.getItemGroups();
-
-    
-            if (this.index > getFirstItemIndex(aItemGroups[nGroupIndex], 0)) {
-    
-                oPreviousItem = getPreviousArrayItem(aItemGroups[nGroupIndex], 
-                        (this.index-1));
-    
-            }
-            else {
-    
-                if (nGroupIndex > getFirstItemIndex(aItemGroups, 0)) {
-    
-                    nPreviousGroupIndex = nGroupIndex - 1;
-    
-                }
-                else {
-    
-                    nPreviousGroupIndex = aItemGroups.length - 1;
-    
-                }
-    
-                aPreviousGroup = getPreviousArrayItem(aItemGroups, 
-                    nPreviousGroupIndex);
-    
-                oPreviousItem = getPreviousArrayItem(aPreviousGroup, 
-                        (aPreviousGroup.length - 1));
-    
-            }
-
-            returnVal = (oPreviousItem.cfg.getProperty(_DISABLED) || 
-                oPreviousItem.element.style.display == _NONE) ? 
-                oPreviousItem.getPreviousEnabledSibling() : oPreviousItem;
-
-        }
-        
-        return returnVal;
-
-    },
-
-
-    /**
-    * @method focus
-    * @description Causes the menu item to receive the focus and fires the 
-    * focus event.
-    */
-    focus: function () {
-
-        var oParent = this.parent,
-            oAnchor = this._oAnchor,
-            oActiveItem = oParent.activeItem;
-
-
-        function setFocus() {
-
-            try {
-
-                if (!(UA.ie && !document.hasFocus())) {
-                
-					if (oActiveItem) {
-		
-						oActiveItem.blurEvent.fire();
-		
-					}
-	
-					oAnchor.focus();
-					
-					this.focusEvent.fire();
-                
-                }
-
-            }
-            catch(e) {
-            
-            }
-
-        }
-
-
-        if (!this.cfg.getProperty(_DISABLED) && oParent && oParent.cfg.getProperty(_VISIBLE) && 
-            this.element.style.display != _NONE) {
-
-
-            /*
-                Setting focus via a timer fixes a race condition in Firefox, IE 
-                and Opera where the browser viewport jumps as it trys to 
-                position and focus the menu.
-            */
-
-            Lang.later(0, this, setFocus);
-
-        }
-
-    },
-
-
-    /**
-    * @method blur
-    * @description Causes the menu item to lose focus and fires the 
-    * blur event.
-    */    
-    blur: function () {
-
-        var oParent = this.parent;
-
-        if (!this.cfg.getProperty(_DISABLED) && oParent && oParent.cfg.getProperty(_VISIBLE)) {
-
-            Lang.later(0, this, function () {
-
-                try {
-    
-                    this._oAnchor.blur();
-                    this.blurEvent.fire();    
-
-                } 
-                catch (e) {
-                
-                }
-                
-            }, 0);
-
-        }
-
-    },
-
-
-    /**
-    * @method hasFocus
-    * @description Returns a boolean indicating whether or not the menu item
-    * has focus.
-    * @return {Boolean}
-    */
-    hasFocus: function () {
-    
-        return (YAHOO.widget.MenuManager.getFocusedMenuItem() == this);
-    
-    },
-
-
-	/**
-    * @method destroy
-	* @description Removes the menu item's <code>&#60;li&#62;</code> element 
-	* from its parent <code>&#60;ul&#62;</code> element.
-	*/
-    destroy: function () {
-
-        var oEl = this.element,
-            oSubmenu,
-            oParentNode,
-            aEventData,
-            i;
-
-
-        if (oEl) {
-
-
-            // If the item has a submenu, destroy it first
-
-            oSubmenu = this.cfg.getProperty(_SUBMENU);
-
-            if (oSubmenu) {
-            
-                oSubmenu.destroy();
-            
-            }
-
-
-            // Remove the element from the parent node
-
-            oParentNode = oEl.parentNode;
-
-            if (oParentNode) {
-
-                oParentNode.removeChild(oEl);
-
-                this.destroyEvent.fire();
-
-            }
-
-
-            // Remove CustomEvent listeners
-
-			i = EVENT_TYPES.length - 1;
-
-			do {
-
-				aEventData = EVENT_TYPES[i];
-				
-				this[aEventData[0]].unsubscribeAll();
-
-			}
-			while (i--);
-            
-            
-            this.cfg.configChangedEvent.unsubscribeAll();
-
-        }
-
-    },
-
-
-    /**
-    * @method toString
-    * @description Returns a string representing the menu item.
-    * @return {String}
-    */
-    toString: function () {
-
-        var sReturnVal = _MENUITEM,
-            sId = this.id;
-
-        if (sId) {
-    
-            sReturnVal += (_SPACE + sId);
-        
-        }
-
-        return sReturnVal;
-    
-    }
-
-};
-
-Lang.augmentProto(MenuItem, YAHOO.util.EventProvider);
-
-})();
-(function () {
-
-	var _XY = "xy",
-		_MOUSEDOWN = "mousedown",
-		_CONTEXTMENU = "ContextMenu",
-		_SPACE = " ";
-
-/**
-* Creates a list of options or commands which are made visible in response to 
-* an HTML element's "contextmenu" event ("mousedown" for Opera).
-*
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;div&#62;</code> element of the context menu.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;select&#62;</code> element to be used as the data source for the 
-* context menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-
-* html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object specifying the 
-* <code>&#60;div&#62;</code> element of the context menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-
-* html.html#ID-94282980">HTMLSelectElement</a>} p_oElement Object specifying 
-* the <code>&#60;select&#62;</code> element to be used as the data source for 
-* the context menu.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the context menu. See configuration class documentation 
-* for more details.
-* @class ContextMenu
-* @constructor
-* @extends YAHOO.widget.Menu
-* @namespace YAHOO.widget
-*/
-YAHOO.widget.ContextMenu = function(p_oElement, p_oConfig) {
-
-    YAHOO.widget.ContextMenu.superclass.constructor.call(this, p_oElement, p_oConfig);
-
-};
-
-
-var Event = YAHOO.util.Event,
-	UA = YAHOO.env.ua,
-    ContextMenu = YAHOO.widget.ContextMenu,
-
-
-
-    /**
-    * Constant representing the name of the ContextMenu's events
-    * @property EVENT_TYPES
-    * @private
-    * @final
-    * @type Object
-    */
-    EVENT_TYPES = {
-
-        "TRIGGER_CONTEXT_MENU": "triggerContextMenu",
-        "CONTEXT_MENU": (UA.opera ? _MOUSEDOWN : "contextmenu"),
-        "CLICK": "click"
-
-    },
-    
-    
-    /**
-    * Constant representing the ContextMenu's configuration properties
-    * @property DEFAULT_CONFIG
-    * @private
-    * @final
-    * @type Object
-    */
-    TRIGGER_CONFIG = { 
-		key: "trigger",
-		suppressEvent: true
-    };
-
-
-/**
-* @method position
-* @description "beforeShow" event handler used to position the contextmenu.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {Array} p_aPos Array representing the xy position for the context menu.
-*/
-function position(p_sType, p_aArgs, p_aPos) {
-
-    this.cfg.setProperty(_XY, p_aPos);
-    
-    this.beforeShowEvent.unsubscribe(position, p_aPos);
-
-}
-
-
-YAHOO.lang.extend(ContextMenu, YAHOO.widget.Menu, {
-
-
-
-// Private properties
-
-
-/**
-* @property _oTrigger
-* @description Object reference to the current value of the "trigger" 
-* configuration property.
-* @default null
-* @private
-* @type String|<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/leve
-* l-one-html.html#ID-58190037">HTMLElement</a>|Array
-*/
-_oTrigger: null,
-
-
-/**
-* @property _bCancelled
-* @description Boolean indicating if the display of the context menu should 
-* be cancelled.
-* @default false
-* @private
-* @type Boolean
-*/
-_bCancelled: false,
-
-
-
-// Public properties
-
-
-/**
-* @property contextEventTarget
-* @description Object reference for the HTML element that was the target of the
-* "contextmenu" DOM event ("mousedown" for Opera) that triggered the display of 
-* the context menu.
-* @default null
-* @type <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-
-* html.html#ID-58190037">HTMLElement</a>
-*/
-contextEventTarget: null,
-
-
-
-// Events
-
-
-/**
-* @event triggerContextMenuEvent
-* @description Custom Event wrapper for the "contextmenu" DOM event 
-* ("mousedown" for Opera) fired by the element(s) that trigger the display of 
-* the context menu.
-*/
-triggerContextMenuEvent: null,
-
-
-
-/**
-* @method init
-* @description The ContextMenu class's initialization method. This method is 
-* automatically called by the constructor, and sets up all DOM references for 
-* pre-existing markup, and creates required markup if it is not already present.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;div&#62;</code> element of the context menu.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;select&#62;</code> element to be used as the data source for 
-* the context menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-
-* html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object specifying the 
-* <code>&#60;div&#62;</code> element of the context menu.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-
-* html.html#ID-94282980">HTMLSelectElement</a>} p_oElement Object specifying 
-* the <code>&#60;select&#62;</code> element to be used as the data source for 
-* the context menu.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the context menu. See configuration class documentation 
-* for more details.
-*/
-init: function(p_oElement, p_oConfig) {
-
-
-    // Call the init of the superclass (YAHOO.widget.Menu)
-
-    ContextMenu.superclass.init.call(this, p_oElement);
-
-
-    this.beforeInitEvent.fire(ContextMenu);
-
-
-    if (p_oConfig) {
-
-        this.cfg.applyConfig(p_oConfig, true);
-
-    }
-    
-    this.initEvent.fire(ContextMenu);
-    
-},
-
-
-/**
-* @method initEvents
-* @description Initializes the custom events for the context menu.
-*/
-initEvents: function() {
-
-	ContextMenu.superclass.initEvents.call(this);
-
-    // Create custom events
-
-    this.triggerContextMenuEvent = this.createEvent(EVENT_TYPES.TRIGGER_CONTEXT_MENU);
-
-    this.triggerContextMenuEvent.signature = YAHOO.util.CustomEvent.LIST;
-
-},
-
-
-/**
-* @method cancel
-* @description Cancels the display of the context menu.
-*/
-cancel: function() {
-
-    this._bCancelled = true;
-
-},
-
-
-
-// Private methods
-
-
-/**
-* @method _removeEventHandlers
-* @description Removes all of the DOM event handlers from the HTML element(s) 
-* whose "context menu" event ("click" for Opera) trigger the display of 
-* the context menu.
-* @private
-*/
-_removeEventHandlers: function() {
-
-    var oTrigger = this._oTrigger;
-
-
-    // Remove the event handlers from the trigger(s)
-
-    if (oTrigger) {
-
-        Event.removeListener(oTrigger, EVENT_TYPES.CONTEXT_MENU, this._onTriggerContextMenu);    
-        
-        if (UA.opera) {
-        
-            Event.removeListener(oTrigger, EVENT_TYPES.CLICK, this._onTriggerClick);
-    
-        }
-
-    }
-
-},
-
-
-
-// Private event handlers
-
-
-
-/**
-* @method _onTriggerClick
-* @description "click" event handler for the HTML element(s) identified as the 
-* "trigger" for the context menu.  Used to cancel default behaviors in Opera.
-* @private
-* @param {Event} p_oEvent Object representing the DOM event object passed back 
-* by the event utility (YAHOO.util.Event).
-* @param {YAHOO.widget.ContextMenu} p_oMenu Object representing the context 
-* menu that is handling the event.
-*/
-_onTriggerClick: function(p_oEvent, p_oMenu) {
-
-    if (p_oEvent.ctrlKey) {
-    
-        Event.stopEvent(p_oEvent);
-
-    }
-    
-},
-
-
-/**
-* @method _onTriggerContextMenu
-* @description "contextmenu" event handler ("mousedown" for Opera) for the HTML 
-* element(s) that trigger the display of the context menu.
-* @private
-* @param {Event} p_oEvent Object representing the DOM event object passed back 
-* by the event utility (YAHOO.util.Event).
-* @param {YAHOO.widget.ContextMenu} p_oMenu Object representing the context 
-* menu that is handling the event.
-*/
-_onTriggerContextMenu: function(p_oEvent, p_oMenu) {
-
-    var aXY;
-
-    if (!(p_oEvent.type == _MOUSEDOWN && !p_oEvent.ctrlKey)) {
-
-		/*
-			Prevent the browser's default context menu from appearing and 
-			stop the propagation of the "contextmenu" event so that 
-			other ContextMenu instances are not displayed.
-		*/
-	
-		Event.stopEvent(p_oEvent);
-	
-	
-		this.contextEventTarget = Event.getTarget(p_oEvent);
-	
-		this.triggerContextMenuEvent.fire(p_oEvent);
-	
-	
-		// Hide any other Menu instances that might be visible
-	
-		YAHOO.widget.MenuManager.hideVisible();
-		
-	
-	
-		if (!this._bCancelled) {
-	
-			// Position and display the context menu
-	
-			aXY = Event.getXY(p_oEvent);
-	
-	
-			if (!YAHOO.util.Dom.inDocument(this.element)) {
-	
-				this.beforeShowEvent.subscribe(position, aXY);
-	
-			}
-			else {
-	
-				this.cfg.setProperty(_XY, aXY);
-			
-			}
-	
-	
-			this.show();
-	
-		}
-	
-		this._bCancelled = false;
-
-    }
-
-},
-
-
-
-// Public methods
-
-
-/**
-* @method toString
-* @description Returns a string representing the context menu.
-* @return {String}
-*/
-toString: function() {
-
-    var sReturnVal = _CONTEXTMENU,
-        sId = this.id;
-
-    if (sId) {
-
-        sReturnVal += (_SPACE + sId);
-    
-    }
-
-    return sReturnVal;
-
-},
-
-
-/**
-* @method initDefaultConfig
-* @description Initializes the class's configurable properties which can be 
-* changed using the context menu's Config object ("cfg").
-*/
-initDefaultConfig: function() {
-
-    ContextMenu.superclass.initDefaultConfig.call(this);
-
-    /**
-    * @config trigger
-    * @description The HTML element(s) whose "contextmenu" event ("mousedown" 
-    * for Opera) trigger the display of the context menu.  Can be a string 
-    * representing the id attribute of the HTML element, an object reference 
-    * for the HTML element, or an array of strings or HTML element references.
-    * @default null
-    * @type String|<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/
-    * level-one-html.html#ID-58190037">HTMLElement</a>|Array
-    */
-    this.cfg.addProperty(TRIGGER_CONFIG.key, 
-        {
-            handler: this.configTrigger, 
-            suppressEvent: TRIGGER_CONFIG.suppressEvent 
-        }
-    );
-
-},
-
-
-/**
-* @method destroy
-* @description Removes the context menu's <code>&#60;div&#62;</code> element 
-* (and accompanying child nodes) from the document.
-*/
-destroy: function() {
-
-    // Remove the DOM event handlers from the current trigger(s)
-
-    this._removeEventHandlers();
-
-
-    // Continue with the superclass implementation of this method
-
-    ContextMenu.superclass.destroy.call(this);
-
-},
-
-
-
-// Public event handlers for configuration properties
-
-
-/**
-* @method configTrigger
-* @description Event handler for when the value of the "trigger" configuration 
-* property changes. 
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.ContextMenu} p_oMenu Object representing the context 
-* menu that fired the event.
-*/
-configTrigger: function(p_sType, p_aArgs, p_oMenu) {
-    
-    var oTrigger = p_aArgs[0];
-
-    if (oTrigger) {
-
-        /*
-            If there is a current "trigger" - remove the event handlers 
-            from that element(s) before assigning new ones
-        */
-
-        if (this._oTrigger) {
-        
-            this._removeEventHandlers();
-
-        }
-
-        this._oTrigger = oTrigger;
-
-
-        /*
-            Listen for the "mousedown" event in Opera b/c it does not 
-            support the "contextmenu" event
-        */ 
-  
-        Event.on(oTrigger, EVENT_TYPES.CONTEXT_MENU, this._onTriggerContextMenu, this, true);
-
-
-        /*
-            Assign a "click" event handler to the trigger element(s) for
-            Opera to prevent default browser behaviors.
-        */
-
-        if (UA.opera) {
-        
-            Event.on(oTrigger, EVENT_TYPES.CLICK, this._onTriggerClick, this, true);
-
-        }
-
-    }
-    else {
-   
-        this._removeEventHandlers();
-    
-    }
-    
-}
-
-}); // END YAHOO.lang.extend
-
-}());
-
-
-
-/**
-* Creates an item for a context menu.
-* 
-* @param {String} p_oObject String specifying the text of the context menu item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-74680021">HTMLLIElement</a>} p_oObject Object specifying the 
-* <code>&#60;li&#62;</code> element of the context menu item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-38450247">HTMLOptGroupElement</a>} p_oObject Object 
-* specifying the <code>&#60;optgroup&#62;</code> element of the context 
-* menu item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-70901257">HTMLOptionElement</a>} p_oObject Object specifying 
-* the <code>&#60;option&#62;</code> element of the context menu item.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the context menu item. See configuration class 
-* documentation for more details.
-* @class ContextMenuItem
-* @constructor
-* @extends YAHOO.widget.MenuItem
-* @deprecated As of version 2.4.0 items for YAHOO.widget.ContextMenu instances
-* are of type YAHOO.widget.MenuItem.
-*/
-YAHOO.widget.ContextMenuItem = YAHOO.widget.MenuItem;
-(function () {
-
-	var Lang = YAHOO.lang,
-
-		// String constants
-	
-		_STATIC = "static",
-		_DYNAMIC_STATIC = "dynamic," + _STATIC,
-		_DISABLED = "disabled",
-		_SELECTED = "selected",
-		_AUTO_SUBMENU_DISPLAY = "autosubmenudisplay",
-		_SUBMENU = "submenu",
-		_VISIBLE = "visible",
-		_SPACE = " ",
-		_SUBMENU_TOGGLE_REGION = "submenutoggleregion",
-		_MENUBAR = "MenuBar";
-
-/**
-* Horizontal collection of items, each of which can contain a submenu.
-* 
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;div&#62;</code> element of the menu bar.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;select&#62;</code> element to be used as the data source for the 
-* menu bar.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object specifying 
-* the <code>&#60;div&#62;</code> element of the menu bar.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-94282980">HTMLSelectElement</a>} p_oElement Object 
-* specifying the <code>&#60;select&#62;</code> element to be used as the data 
-* source for the menu bar.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the menu bar. See configuration class documentation for
-* more details.
-* @class MenuBar
-* @constructor
-* @extends YAHOO.widget.Menu
-* @namespace YAHOO.widget
-*/
-YAHOO.widget.MenuBar = function(p_oElement, p_oConfig) {
-
-    YAHOO.widget.MenuBar.superclass.constructor.call(this, p_oElement, p_oConfig);
-
-};
-
-
-/**
-* @method checkPosition
-* @description Checks to make sure that the value of the "position" property 
-* is one of the supported strings. Returns true if the position is supported.
-* @private
-* @param {Object} p_sPosition String specifying the position of the menu.
-* @return {Boolean}
-*/
-function checkPosition(p_sPosition) {
-
-	var returnVal = false;
-
-    if (Lang.isString(p_sPosition)) {
-
-        returnVal = (_DYNAMIC_STATIC.indexOf((p_sPosition.toLowerCase())) != -1);
-
-    }
-    
-    return returnVal;
-
-}
-
-
-var Event = YAHOO.util.Event,
-    MenuBar = YAHOO.widget.MenuBar,
-
-    POSITION_CONFIG =  { 
-		key: "position", 
-		value: _STATIC, 
-		validator: checkPosition, 
-		supercedes: [_VISIBLE] 
-	}, 
-
-	SUBMENU_ALIGNMENT_CONFIG =  { 
-		key: "submenualignment", 
-		value: ["tl","bl"]
-	},
-
-	AUTO_SUBMENU_DISPLAY_CONFIG =  { 
-		key: _AUTO_SUBMENU_DISPLAY, 
-		value: false, 
-		validator: Lang.isBoolean,
-		suppressEvent: true
-	},
-	
-	SUBMENU_TOGGLE_REGION_CONFIG = {
-		key: _SUBMENU_TOGGLE_REGION, 
-		value: false, 
-		validator: Lang.isBoolean
-	};
-
-
-
-Lang.extend(MenuBar, YAHOO.widget.Menu, {
-
-/**
-* @method init
-* @description The MenuBar class's initialization method. This method is 
-* automatically called by the constructor, and sets up all DOM references for 
-* pre-existing markup, and creates required markup if it is not already present.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;div&#62;</code> element of the menu bar.
-* @param {String} p_oElement String specifying the id attribute of the 
-* <code>&#60;select&#62;</code> element to be used as the data source for the 
-* menu bar.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-22445964">HTMLDivElement</a>} p_oElement Object specifying 
-* the <code>&#60;div&#62;</code> element of the menu bar.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-94282980">HTMLSelectElement</a>} p_oElement Object 
-* specifying the <code>&#60;select&#62;</code> element to be used as the data 
-* source for the menu bar.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the menu bar. See configuration class documentation for
-* more details.
-*/
-init: function(p_oElement, p_oConfig) {
-
-    if(!this.ITEM_TYPE) {
-
-        this.ITEM_TYPE = YAHOO.widget.MenuBarItem;
-
-    }
-
-
-    // Call the init of the superclass (YAHOO.widget.Menu)
-
-    MenuBar.superclass.init.call(this, p_oElement);
-
-
-    this.beforeInitEvent.fire(MenuBar);
-
-
-    if(p_oConfig) {
-
-        this.cfg.applyConfig(p_oConfig, true);
-
-    }
-
-    this.initEvent.fire(MenuBar);
-
-},
-
-
-
-// Constants
-
-
-/**
-* @property CSS_CLASS_NAME
-* @description String representing the CSS class(es) to be applied to the menu 
-* bar's <code>&#60;div&#62;</code> element.
-* @default "yuimenubar"
-* @final
-* @type String
-*/
-CSS_CLASS_NAME: "yuimenubar",
-
-
-/**
-* @property SUBMENU_TOGGLE_REGION_WIDTH
-* @description Width (in pixels) of the area of a MenuBarItem that, when pressed, will toggle the
-* display of the MenuBarItem's submenu.
-* @default 20
-* @final
-* @type Number
-*/
-SUBMENU_TOGGLE_REGION_WIDTH: 20,
-
-
-// Protected event handlers
-
-
-/**
-* @method _onKeyDown
-* @description "keydown" Custom Event handler for the menu bar.
-* @private
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.MenuBar} p_oMenuBar Object representing the menu bar 
-* that fired the event.
-*/
-_onKeyDown: function(p_sType, p_aArgs, p_oMenuBar) {
-
-    var oEvent = p_aArgs[0],
-        oItem = p_aArgs[1],
-        oSubmenu,
-        oItemCfg,
-        oNextItem;
-
-
-    if(oItem && !oItem.cfg.getProperty(_DISABLED)) {
-
-        oItemCfg = oItem.cfg;
-
-        switch(oEvent.keyCode) {
-    
-            case 37:    // Left arrow
-            case 39:    // Right arrow
-    
-                if(oItem == this.activeItem && !oItemCfg.getProperty(_SELECTED)) {
-    
-                    oItemCfg.setProperty(_SELECTED, true);
-    
-                }
-                else {
-    
-                    oNextItem = (oEvent.keyCode == 37) ? 
-                        oItem.getPreviousEnabledSibling() : 
-                        oItem.getNextEnabledSibling();
-            
-                    if(oNextItem) {
-    
-                        this.clearActiveItem();
-    
-                        oNextItem.cfg.setProperty(_SELECTED, true);
-                        
-						oSubmenu = oNextItem.cfg.getProperty(_SUBMENU);
-						
-						if(oSubmenu) {
-					
-							oSubmenu.show();
-							oSubmenu.setInitialFocus();
-						
-						}
-						else {
-							oNextItem.focus();  
-						}
-    
-                    }
-    
-                }
-    
-                Event.preventDefault(oEvent);
-    
-            break;
-    
-            case 40:    // Down arrow
-    
-                if(this.activeItem != oItem) {
-    
-                    this.clearActiveItem();
-    
-                    oItemCfg.setProperty(_SELECTED, true);
-                    oItem.focus();
-                
-                }
-    
-                oSubmenu = oItemCfg.getProperty(_SUBMENU);
-    
-                if(oSubmenu) {
-    
-                    if(oSubmenu.cfg.getProperty(_VISIBLE)) {
-    
-                        oSubmenu.setInitialSelection();
-                        oSubmenu.setInitialFocus();
-                    
-                    }
-                    else {
-    
-                        oSubmenu.show();
-                        oSubmenu.setInitialFocus();
-                    
-                    }
-    
-                }
-    
-                Event.preventDefault(oEvent);
-    
-            break;
-    
-        }
-
-    }
-
-
-    if(oEvent.keyCode == 27 && this.activeItem) { // Esc key
-
-        oSubmenu = this.activeItem.cfg.getProperty(_SUBMENU);
-
-        if(oSubmenu && oSubmenu.cfg.getProperty(_VISIBLE)) {
-        
-            oSubmenu.hide();
-            this.activeItem.focus();
-        
-        }
-        else {
-
-            this.activeItem.cfg.setProperty(_SELECTED, false);
-            this.activeItem.blur();
-    
-        }
-
-        Event.preventDefault(oEvent);
-    
-    }
-
-},
-
-
-/**
-* @method _onClick
-* @description "click" event handler for the menu bar.
-* @protected
-* @param {String} p_sType String representing the name of the event that 
-* was fired.
-* @param {Array} p_aArgs Array of arguments sent when the event was fired.
-* @param {YAHOO.widget.MenuBar} p_oMenuBar Object representing the menu bar 
-* that fired the event.
-*/
-_onClick: function(p_sType, p_aArgs, p_oMenuBar) {
-
-    MenuBar.superclass._onClick.call(this, p_sType, p_aArgs, p_oMenuBar);
-
-    var oItem = p_aArgs[1],
-        bReturnVal = true,
-    	oItemEl,
-        oEvent,
-        oTarget,
-        oActiveItem,
-        oConfig,
-        oSubmenu,
-        nMenuItemX,
-        nToggleRegion;
-
-
-	var toggleSubmenuDisplay = function () {
-
-		if(oSubmenu.cfg.getProperty(_VISIBLE)) {
-		
-			oSubmenu.hide();
-		
-		}
-		else {
-		
-			oSubmenu.show();                    
-		
-		}
-	
-	};
-    
-
-    if(oItem && !oItem.cfg.getProperty(_DISABLED)) {
-
-        oEvent = p_aArgs[0];
-        oTarget = Event.getTarget(oEvent);
-        oActiveItem = this.activeItem;
-        oConfig = this.cfg;
-
-
-        // Hide any other submenus that might be visible
-    
-        if(oActiveItem && oActiveItem != oItem) {
-    
-            this.clearActiveItem();
-    
-        }
-
-    
-        oItem.cfg.setProperty(_SELECTED, true);
-    
-
-        // Show the submenu for the item
-    
-        oSubmenu = oItem.cfg.getProperty(_SUBMENU);
-
-
-        if(oSubmenu) {
-
-			oItemEl = oItem.element;
-			nMenuItemX = YAHOO.util.Dom.getX(oItemEl);
-			nToggleRegion = nMenuItemX + (oItemEl.offsetWidth - this.SUBMENU_TOGGLE_REGION_WIDTH);
-
-			if (oConfig.getProperty(_SUBMENU_TOGGLE_REGION)) {
-
-				if (Event.getPageX(oEvent) > nToggleRegion) {
-
-					toggleSubmenuDisplay();
-
-					Event.preventDefault(oEvent);
-
-					/*
-						 Return false so that other click event handlers are not called when the 
-						 user clicks inside the toggle region.
-					*/
-					bReturnVal = false;
-				
-				}
-        
-        	}
-			else {
-
-				toggleSubmenuDisplay();
-            
-            }
-        
-        }
-    
-    }
-
-
-	return bReturnVal;
-
-},
-
-
-
-// Public methods
-
-/**
-* @method configSubmenuToggle
-* @description Event handler for when the "submenutoggleregion" configuration property of 
-* a MenuBar changes.
-* @param {String} p_sType The name of the event that was fired.
-* @param {Array} p_aArgs Collection of arguments sent when the event was fired.
-*/
-configSubmenuToggle: function (p_sType, p_aArgs) {
-
-	var bSubmenuToggle = p_aArgs[0];
-	
-	if (bSubmenuToggle) {
-	
-		this.cfg.setProperty(_AUTO_SUBMENU_DISPLAY, false);
-	
-	}
-
-},
-
-
-/**
-* @method toString
-* @description Returns a string representing the menu bar.
-* @return {String}
-*/
-toString: function() {
-
-    var sReturnVal = _MENUBAR,
-        sId = this.id;
-
-    if(sId) {
-
-        sReturnVal += (_SPACE + sId);
-    
-    }
-
-    return sReturnVal;
-
-},
-
-
-/**
-* @description Initializes the class's configurable properties which can be
-* changed using the menu bar's Config object ("cfg").
-* @method initDefaultConfig
-*/
-initDefaultConfig: function() {
-
-    MenuBar.superclass.initDefaultConfig.call(this);
-
-    var oConfig = this.cfg;
-
-	// Add configuration properties
-
-
-    /*
-        Set the default value for the "position" configuration property
-        to "static" by re-adding the property.
-    */
-
-
-    /**
-    * @config position
-    * @description String indicating how a menu bar should be positioned on the 
-    * screen.  Possible values are "static" and "dynamic."  Static menu bars 
-    * are visible by default and reside in the normal flow of the document 
-    * (CSS position: static).  Dynamic menu bars are hidden by default, reside
-    * out of the normal flow of the document (CSS position: absolute), and can 
-    * overlay other elements on the screen.
-    * @default static
-    * @type String
-    */
-    oConfig.addProperty(
-        POSITION_CONFIG.key, 
-        {
-            handler: this.configPosition, 
-            value: POSITION_CONFIG.value, 
-            validator: POSITION_CONFIG.validator,
-            supercedes: POSITION_CONFIG.supercedes
-        }
-    );
-
-
-    /*
-        Set the default value for the "submenualignment" configuration property
-        to ["tl","bl"] by re-adding the property.
-    */
-
-    /**
-    * @config submenualignment
-    * @description Array defining how submenus should be aligned to their 
-    * parent menu bar item. The format is: [itemCorner, submenuCorner].
-    * @default ["tl","bl"]
-    * @type Array
-    */
-    oConfig.addProperty(
-        SUBMENU_ALIGNMENT_CONFIG.key, 
-        {
-            value: SUBMENU_ALIGNMENT_CONFIG.value,
-            suppressEvent: SUBMENU_ALIGNMENT_CONFIG.suppressEvent
-        }
-    );
-
-
-    /*
-        Change the default value for the "autosubmenudisplay" configuration 
-        property to "false" by re-adding the property.
-    */
-
-    /**
-    * @config autosubmenudisplay
-    * @description Boolean indicating if submenus are automatically made 
-    * visible when the user mouses over the menu bar's items.
-    * @default false
-    * @type Boolean
-    */
-	oConfig.addProperty(
-	   AUTO_SUBMENU_DISPLAY_CONFIG.key, 
-	   {
-	       value: AUTO_SUBMENU_DISPLAY_CONFIG.value, 
-	       validator: AUTO_SUBMENU_DISPLAY_CONFIG.validator,
-	       suppressEvent: AUTO_SUBMENU_DISPLAY_CONFIG.suppressEvent
-       } 
-    );
-
-
-    /**
-    * @config submenutoggleregion
-    * @description Boolean indicating if only a specific region of a MenuBarItem should toggle the 
-    * display of a submenu.  The default width of the region is determined by the value of the
-    * SUBMENU_TOGGLE_REGION_WIDTH property.  If set to true, the autosubmenudisplay 
-    * configuration property will be set to false, and any click event listeners will not be 
-    * called when the user clicks inside the submenu toggle region of a MenuBarItem.  If the 
-    * user clicks outside of the submenu toggle region, the MenuBarItem will maintain its 
-    * standard behavior.
-    * @default false
-    * @type Boolean
-    */
-	oConfig.addProperty(
-	   SUBMENU_TOGGLE_REGION_CONFIG.key, 
-	   {
-	       value: SUBMENU_TOGGLE_REGION_CONFIG.value, 
-	       validator: SUBMENU_TOGGLE_REGION_CONFIG.validator,
-	       handler: this.configSubmenuToggle
-       } 
-    );
-
-}
- 
-}); // END YAHOO.lang.extend
-
-}());
-
-
-
-/**
-* Creates an item for a menu bar.
-* 
-* @param {String} p_oObject String specifying the text of the menu bar item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-74680021">HTMLLIElement</a>} p_oObject Object specifying the 
-* <code>&#60;li&#62;</code> element of the menu bar item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-38450247">HTMLOptGroupElement</a>} p_oObject Object 
-* specifying the <code>&#60;optgroup&#62;</code> element of the menu bar item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-70901257">HTMLOptionElement</a>} p_oObject Object specifying 
-* the <code>&#60;option&#62;</code> element of the menu bar item.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the menu bar item. See configuration class documentation 
-* for more details.
-* @class MenuBarItem
-* @constructor
-* @extends YAHOO.widget.MenuItem
-*/
-YAHOO.widget.MenuBarItem = function(p_oObject, p_oConfig) {
-
-    YAHOO.widget.MenuBarItem.superclass.constructor.call(this, p_oObject, p_oConfig);
-
-};
-
-YAHOO.lang.extend(YAHOO.widget.MenuBarItem, YAHOO.widget.MenuItem, {
-
-
-
-/**
-* @method init
-* @description The MenuBarItem class's initialization method. This method is 
-* automatically called by the constructor, and sets up all DOM references for 
-* pre-existing markup, and creates required markup if it is not already present.
-* @param {String} p_oObject String specifying the text of the menu bar item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-74680021">HTMLLIElement</a>} p_oObject Object specifying the 
-* <code>&#60;li&#62;</code> element of the menu bar item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-38450247">HTMLOptGroupElement</a>} p_oObject Object 
-* specifying the <code>&#60;optgroup&#62;</code> element of the menu bar item.
-* @param {<a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-
-* one-html.html#ID-70901257">HTMLOptionElement</a>} p_oObject Object specifying 
-* the <code>&#60;option&#62;</code> element of the menu bar item.
-* @param {Object} p_oConfig Optional. Object literal specifying the 
-* configuration for the menu bar item. See configuration class documentation 
-* for more details.
-*/
-init: function(p_oObject, p_oConfig) {
-
-    if(!this.SUBMENU_TYPE) {
-
-        this.SUBMENU_TYPE = YAHOO.widget.Menu;
-
-    }
-
-
-    /* 
-        Call the init of the superclass (YAHOO.widget.MenuItem)
-        Note: We don't pass the user config in here yet 
-        because we only want it executed once, at the lowest 
-        subclass level.
-    */ 
-
-    YAHOO.widget.MenuBarItem.superclass.init.call(this, p_oObject);  
-
-
-    var oConfig = this.cfg;
-
-    if(p_oConfig) {
-
-        oConfig.applyConfig(p_oConfig, true);
-
-    }
-
-    oConfig.fireQueue();
-
-},
-
-
-
-// Constants
-
-
-/**
-* @property CSS_CLASS_NAME
-* @description String representing the CSS class(es) to be applied to the 
-* <code>&#60;li&#62;</code> element of the menu bar item.
-* @default "yuimenubaritem"
-* @final
-* @type String
-*/
-CSS_CLASS_NAME: "yuimenubaritem",
-
-
-/**
-* @property CSS_LABEL_CLASS_NAME
-* @description String representing the CSS class(es) to be applied to the 
-* menu bar item's <code>&#60;a&#62;</code> element.
-* @default "yuimenubaritemlabel"
-* @final
-* @type String
-*/
-CSS_LABEL_CLASS_NAME: "yuimenubaritemlabel",
-
-
-
-// Public methods
-
-
-/**
-* @method toString
-* @description Returns a string representing the menu bar item.
-* @return {String}
-*/
-toString: function() {
-
-    var sReturnVal = "MenuBarItem";
-
-    if(this.cfg && this.cfg.getProperty("text")) {
-
-        sReturnVal += (": " + this.cfg.getProperty("text"));
-
-    }
-
-    return sReturnVal;
-
-}
-    
-}); // END YAHOO.lang.extend
-YAHOO.register("menu", YAHOO.widget.Menu, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/paginator/README b/eclipse.org-common/yui/2.6.0/build/paginator/README
deleted file mode 100644
index e772926..0000000
--- a/eclipse.org-common/yui/2.6.0/build/paginator/README
+++ /dev/null
@@ -1,5 +0,0 @@
-Paginator Release Notes
-
-*** version 2.6.0 ***
-
-* Initial standalone realease (extracted from DataTable)
diff --git a/eclipse.org-common/yui/2.6.0/build/paginator/assets/paginator-core.css b/eclipse.org-common/yui/2.6.0/build/paginator/assets/paginator-core.css
deleted file mode 100644
index 7922b6d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/paginator/assets/paginator-core.css
+++ /dev/null
@@ -1,6 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
diff --git a/eclipse.org-common/yui/2.6.0/build/paginator/assets/skins/sam/paginator-skin.css b/eclipse.org-common/yui/2.6.0/build/paginator/assets/skins/sam/paginator-skin.css
deleted file mode 100644
index 1c99cb8..0000000
--- a/eclipse.org-common/yui/2.6.0/build/paginator/assets/skins/sam/paginator-skin.css
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-pg-container {
-    display: block;
-    margin: 6px 0;
-    white-space: nowrap;
-}
-.yui-skin-sam .yui-pg-first,
-.yui-skin-sam .yui-pg-previous,
-.yui-skin-sam .yui-pg-next,
-.yui-skin-sam .yui-pg-last,
-.yui-skin-sam .yui-pg-current,
-.yui-skin-sam .yui-pg-pages,
-.yui-skin-sam .yui-pg-page {
-    display: inline-block;
-    font-family: arial,helvetica,clean,sans-serif;
-    padding: 3px 6px;
-    zoom:1;
-}
-.yui-skin-sam .yui-pg-pages {
-    padding: 0;
-}
-.yui-skin-sam .yui-pg-current {
-    padding: 3px 0;
-}
-.yui-skin-sam a.yui-pg-first:link,      .yui-skin-sam a.yui-pg-first:visited,
-.yui-skin-sam a.yui-pg-first:active,    .yui-skin-sam a.yui-pg-first:hover,
-.yui-skin-sam a.yui-pg-previous:link,   .yui-skin-sam a.yui-pg-previous:visited,
-.yui-skin-sam a.yui-pg-previous:active, .yui-skin-sam a.yui-pg-previous:hover,
-.yui-skin-sam a.yui-pg-next:link,       .yui-skin-sam a.yui-pg-next:visited,
-.yui-skin-sam a.yui-pg-next:active,     .yui-skin-sam a.yui-pg-next:hover,
-.yui-skin-sam a.yui-pg-last:link,       .yui-skin-sam a.yui-pg-last:visited,
-.yui-skin-sam a.yui-pg-last:active,     .yui-skin-sam a.yui-pg-last:hover,
-.yui-skin-sam a.yui-pg-page:link,       .yui-skin-sam a.yui-pg-page:visited,
-.yui-skin-sam a.yui-pg-page:active,     .yui-skin-sam a.yui-pg-page:hover {
-    color: #06c;
-    text-decoration: underline;
-    outline: 0;
-}
-.yui-skin-sam span.yui-pg-first,
-.yui-skin-sam span.yui-pg-previous,
-.yui-skin-sam span.yui-pg-next,
-.yui-skin-sam span.yui-pg-last {
-    color: #a6a6a6;
-}
-.yui-skin-sam .yui-pg-page {
-    background-color: #fff;
-    border: 1px solid #CBCBCB;
-    padding: 2px 6px;
-    text-decoration: none;
-}
-.yui-skin-sam .yui-pg-current-page {
-    background-color: transparent;
-    border: none;
-    font-weight: bold;
-    padding: 3px 6px;
-}
-.yui-skin-sam .yui-pg-page {
-    margin-left: 1px;
-    margin-right: 1px;
-}
-.yui-skin-sam .yui-pg-first,
-.yui-skin-sam .yui-pg-previous {
-    padding-left: 0;
-}
-.yui-skin-sam .yui-pg-next,
-.yui-skin-sam .yui-pg-last {
-    padding-right: 0;
-}
-.yui-skin-sam .yui-pg-current,
-.yui-skin-sam .yui-pg-rpp-options {
-    margin-left: 1em;
-    margin-right: 1em;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/paginator/assets/skins/sam/paginator.css b/eclipse.org-common/yui/2.6.0/build/paginator/assets/skins/sam/paginator.css
deleted file mode 100644
index fab4258..0000000
--- a/eclipse.org-common/yui/2.6.0/build/paginator/assets/skins/sam/paginator.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-pg-container{display:block;margin:6px 0;white-space:nowrap;}.yui-skin-sam .yui-pg-first,.yui-skin-sam .yui-pg-previous,.yui-skin-sam .yui-pg-next,.yui-skin-sam .yui-pg-last,.yui-skin-sam .yui-pg-current,.yui-skin-sam .yui-pg-pages,.yui-skin-sam .yui-pg-page{display:inline-block;font-family:arial,helvetica,clean,sans-serif;padding:3px 6px;zoom:1;}.yui-skin-sam .yui-pg-pages{padding:0;}.yui-skin-sam .yui-pg-current{padding:3px 0;}.yui-skin-sam a.yui-pg-first:link,.yui-skin-sam a.yui-pg-first:visited,.yui-skin-sam a.yui-pg-first:active,.yui-skin-sam a.yui-pg-first:hover,.yui-skin-sam a.yui-pg-previous:link,.yui-skin-sam a.yui-pg-previous:visited,.yui-skin-sam a.yui-pg-previous:active,.yui-skin-sam a.yui-pg-previous:hover,.yui-skin-sam a.yui-pg-next:link,.yui-skin-sam a.yui-pg-next:visited,.yui-skin-sam a.yui-pg-next:active,.yui-skin-sam a.yui-pg-next:hover,.yui-skin-sam a.yui-pg-last:link,.yui-skin-sam a.yui-pg-last:visited,.yui-skin-sam a.yui-pg-last:active,.yui-skin-sam a.yui-pg-last:hover,.yui-skin-sam a.yui-pg-page:link,.yui-skin-sam a.yui-pg-page:visited,.yui-skin-sam a.yui-pg-page:active,.yui-skin-sam a.yui-pg-page:hover{color:#06c;text-decoration:underline;outline:0;}.yui-skin-sam span.yui-pg-first,.yui-skin-sam span.yui-pg-previous,.yui-skin-sam span.yui-pg-next,.yui-skin-sam span.yui-pg-last{color:#a6a6a6;}.yui-skin-sam .yui-pg-page{background-color:#fff;border:1px solid #CBCBCB;padding:2px 6px;text-decoration:none;}.yui-skin-sam .yui-pg-current-page{background-color:transparent;border:none;font-weight:bold;padding:3px 6px;}.yui-skin-sam .yui-pg-page{margin-left:1px;margin-right:1px;}.yui-skin-sam .yui-pg-first,.yui-skin-sam .yui-pg-previous{padding-left:0;}.yui-skin-sam .yui-pg-next,.yui-skin-sam .yui-pg-last{padding-right:0;}.yui-skin-sam .yui-pg-current,.yui-skin-sam .yui-pg-rpp-options{margin-left:1em;margin-right:1em;}
diff --git a/eclipse.org-common/yui/2.6.0/build/paginator/paginator-debug.js b/eclipse.org-common/yui/2.6.0/build/paginator/paginator-debug.js
deleted file mode 100644
index de37ffb..0000000
--- a/eclipse.org-common/yui/2.6.0/build/paginator/paginator-debug.js
+++ /dev/null
@@ -1,2314 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The Paginator widget provides a set of controls to navigate through paged
- * data.
- *
- * @module paginator
- * @uses YAHOO.util.EventProvider
- * @uses YAHOO.util.AttributeProvider
- */
-
-/**
- * Instantiate a Paginator, passing a configuration object to the contructor.
- * The configuration object should contain the following properties:
- * <ul>
- *   <li>rowsPerPage : <em>n</em> (int)</li>
- *   <li>totalRecords : <em>n</em> (int or Paginator.VALUE_UNLIMITED)</li>
- *   <li>containers : <em>id | el | arr</em> (HTMLElement reference, its id, or an array of either)</li>
- * </ul>
- *
- * @namespace YAHOO.widget
- * @class Paginator
- * @constructor
- * @param config {Object} Object literal to set instance and ui component
- * configuration.
- */
-YAHOO.widget.Paginator = function (config) {
-    var UNLIMITED = YAHOO.widget.Paginator.VALUE_UNLIMITED,
-        lang      = YAHOO.lang,
-        attrib, initialPage, records, perPage;
-
-    config = lang.isObject(config) ? config : {};
-
-    this.initConfig();
-
-    this.initEvents();
-
-    // Set the basic config keys first
-    this.set('rowsPerPage',config.rowsPerPage,true);
-    if (lang.isNumber(config.totalRecords)) {
-        this.set('totalRecords',config.totalRecords,true);
-    }
-    
-    this.initUIComponents();
-
-    // Update the other config values
-    for (attrib in config) {
-        if (lang.hasOwnProperty(config,attrib)) {
-            this.set(attrib,config[attrib],true);
-        }
-    }
-
-    // Calculate the initial record offset
-    initialPage = this.get('initialPage');
-    records     = this.get('totalRecords');
-    perPage     = this.get('rowsPerPage');
-    if (initialPage > 1 && perPage !== UNLIMITED) {
-        var startIndex = (initialPage - 1) * perPage;
-        if (records === UNLIMITED || startIndex < records) {
-            this.set('recordOffset',startIndex,true);
-        }
-    }
-};
-
-
-// Static members
-YAHOO.lang.augmentObject(YAHOO.widget.Paginator, {
-    /**
-     * Incrementing index used to give instances unique ids.
-     * @static
-     * @property id
-     * @type number
-     * @private
-     */
-    id : 0,
-
-    /**
-     * Base of id strings used for ui components.
-     * @static
-     * @property ID_BASE
-     * @type string
-     * @private
-     */
-    ID_BASE : 'yui-pg',
-
-    /**
-     * Used to identify unset, optional configurations, or used explicitly in
-     * the case of totalRecords to indicate unlimited pagination.
-     * @static
-     * @property VALUE_UNLIMITED
-     * @type number
-     * @final
-     */
-    VALUE_UNLIMITED : -1,
-
-    /**
-     * Default template used by Paginator instances.  Update this if you want
-     * all new Paginators to use a different default template.
-     * @static
-     * @property TEMPLATE_DEFAULT
-     * @type string
-     */
-    TEMPLATE_DEFAULT : "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}",
-
-    /**
-     * Common alternate pagination format, including page links, links for
-     * previous, next, first and last pages as well as a rows-per-page
-     * dropdown.  Offered as a convenience.
-     * @static
-     * @property TEMPLATE_ROWS_PER_PAGE
-     * @type string
-     */
-    TEMPLATE_ROWS_PER_PAGE : "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}",
-
-    /**
-     * Storage object for UI Components
-     * @static
-     * @property ui
-     */
-    ui : {}
-
-},true);
-
-
-// Instance members and methods
-YAHOO.widget.Paginator.prototype = {
-
-    // Instance members
-
-    /**
-     * Array of nodes in which to render pagination controls.  This is set via
-     * the &quot;containers&quot; attribute.
-     * @property _containers
-     * @type Array(HTMLElement)
-     * @private
-     */
-    _containers : [],
-
-    /**
-     * Flag used to indicate multiple attributes are being updated via setState
-     * @property _batch
-     * @type boolean
-     * @protected
-     */
-    _batch : false,
-
-    /**
-     * Used by setState to indicate when a page change has occurred
-     * @property _pageChanged
-     * @type boolean
-     * @protected
-     */
-    _pageChanged : false,
-
-    /**
-     * Temporary state cache used by setState to keep track of the previous
-     * state for eventual pageChange event firing
-     * @property _state
-     * @type Object
-     * @protected
-     */
-    _state : null,
-
-
-    // Instance methods
-
-    /**
-     * Initialize the Paginator's attributes (see YAHOO.util.Element class
-     * AttributeProvider).
-     * @method initConfig
-     * @private
-     */
-    initConfig : function () {
-
-        var UNLIMITED = YAHOO.widget.Paginator.VALUE_UNLIMITED,
-            l         = YAHOO.lang;
-
-        /**
-         * REQUIRED. Number of records constituting a &quot;page&quot;
-         * @attribute rowsPerPage
-         * @type integer
-         */
-        this.setAttributeConfig('rowsPerPage', {
-            value     : 0,
-            validator : l.isNumber
-        });
-
-        /**
-         * REQUIRED. Node references or ids of nodes in which to render the
-         * pagination controls.
-         * @attribute containers
-         * @type {string|HTMLElement|Array(string|HTMLElement)}
-         */
-        this.setAttributeConfig('containers', {
-            value     : null,
-            validator : function (val) {
-                if (!l.isArray(val)) {
-                    val = [val];
-                }
-                for (var i = 0, len = val.length; i < len; ++i) {
-                    if (l.isString(val[i]) || 
-                        (l.isObject(val[i]) && val[i].nodeType === 1)) {
-                        continue;
-                    }
-                    return false;
-                }
-                return true;
-            },
-            method : function (val) {
-                val = YAHOO.util.Dom.get(val);
-                if (!l.isArray(val)) {
-                    val = [val];
-                }
-                this._containers = val;
-            }
-        });
-
-        /**
-         * Total number of records to paginate through
-         * @attribute totalRecords
-         * @type integer
-         * @default 0
-         */
-        this.setAttributeConfig('totalRecords', {
-            value     : 0,
-            validator : l.isNumber
-        });
-
-        /**
-         * Zero based index of the record considered first on the current page.
-         * For page based interactions, don't modify this attribute directly;
-         * use setPage(n).
-         * @attribute recordOffset
-         * @type integer
-         * @default 0
-         */
-        this.setAttributeConfig('recordOffset', {
-            value     : 0,
-            validator : function (val) {
-                var total = this.get('totalRecords');
-                if (l.isNumber(val)) {
-                    return total === UNLIMITED || total > val ||
-                           (total === 0 && val === 0);
-                }
-
-                return false;
-            }
-        });
-
-        /**
-         * Page to display on initial paint
-         * @attribute initialPage
-         * @type integer
-         * @default 1
-         */
-        this.setAttributeConfig('initialPage', {
-            value     : 1,
-            validator : l.isNumber
-        });
-
-        /**
-         * Template used to render controls.  The string will be used as
-         * innerHTML on all specified container nodes.  Bracketed keys
-         * (e.g. {pageLinks}) in the string will be replaced with an instance
-         * of the so named ui component.
-         * @see Paginator.TEMPLATE_DEFAULT
-         * @see Paginator.TEMPLATE_ROWS_PER_PAGE
-         * @attribute template
-         * @type string
-         */
-        this.setAttributeConfig('template', {
-            value : YAHOO.widget.Paginator.TEMPLATE_DEFAULT,
-            validator : l.isString
-        });
-
-        /**
-         * Class assigned to the element(s) containing pagination controls.
-         * @attribute containerClass
-         * @type string
-         * @default 'yui-pg-container'
-         */
-        this.setAttributeConfig('containerClass', {
-            value : 'yui-pg-container',
-            validator : l.isString
-        });
-
-        /**
-         * Display pagination controls even when there is only one page.  Set
-         * to false to forgo rendering and/or hide the containers when there
-         * is only one page of data.  Note if you are using the rowsPerPage
-         * dropdown ui component, visibility will be maintained as long as the
-         * number of records exceeds the smallest page size.
-         * @attribute alwaysVisible
-         * @type boolean
-         * @default true
-         */
-        this.setAttributeConfig('alwaysVisible', {
-            value : true,
-            validator : l.isBoolean
-        });
-
-        /**
-         * Update the UI immediately upon interaction.  If false, changeRequest
-         * subscribers or other external code will need to explicitly set the
-         * new values in the paginator to trigger repaint.
-         * @attribute updateOnChange
-         * @type boolean
-         * @default false
-         */
-        this.setAttributeConfig('updateOnChange', {
-            value     : false,
-            validator : l.isBoolean
-        });
-
-
-
-        // Read only attributes
-
-        /**
-         * Unique id assigned to this instance
-         * @attribute id
-         * @type integer
-         * @final
-         */
-        this.setAttributeConfig('id', {
-            value    : YAHOO.widget.Paginator.id++,
-            readOnly : true
-        });
-
-        /**
-         * Indicator of whether the DOM nodes have been initially created
-         * @attribute rendered
-         * @type boolean
-         * @final
-         */
-        this.setAttributeConfig('rendered', {
-            value    : false,
-            readOnly : true
-        });
-
-    },
-
-    /**
-     * Initialize registered ui components onto this instance.
-     * @method initUIComponents
-     * @private
-     */
-    initUIComponents : function () {
-        var ui = YAHOO.widget.Paginator.ui,
-            name,UIComp;
-        for (name in ui) {
-            if (YAHOO.lang.hasOwnProperty(ui,name)) {
-                UIComp = ui[name];
-                if (YAHOO.lang.isObject(UIComp) &&
-                    YAHOO.lang.isFunction(UIComp.init)) {
-                    UIComp.init(this);
-                }
-            }
-        }
-    },
-
-    /**
-     * Initialize this instance's CustomEvents.
-     * @method initEvents
-     * @private
-     */
-    initEvents : function () {
-        this.createEvent('recordOffsetChange');
-        this.createEvent('totalRecordsChange');
-        this.createEvent('rowsPerPageChange');
-        this.createEvent('alwaysVisibleChange');
-
-        /**
-         * Event fired when the Paginator is initially rendered
-         * @event render
-         */
-        this.createEvent('render');
-
-        /**
-         * Event fired when the Paginator is initially rendered
-         * @event rendered
-         * @deprecated use render event
-         */
-        this.createEvent('rendered'); // backward compatibility
-
-        /**
-         * Event fired when a change in pagination values is requested,
-         * either by interacting with the various ui components or via the
-         * setStartIndex(n) etc APIs.
-         * Subscribers will receive the proposed state as the first parameter.
-         * The proposed state object will contain the following keys:
-         * <ul>
-         *   <li>paginator - the Paginator instance</li>
-         *   <li>page</li>
-         *   <li>totalRecords</li>
-         *   <li>recordOffset - index of the first record on the new page</li>
-         *   <li>rowsPerPage</li>
-         *   <li>records - array containing [start index, end index] for the records on the new page</li>
-         *   <li>before - object literal with all these keys for the current state</li>
-         * </ul>
-         * @event changeRequest
-         */
-        this.createEvent('changeRequest');
-
-        /**
-         * Event fired when attribute changes have resulted in the calculated
-         * current page changing.
-         * @event pageChange
-         */
-        this.createEvent('pageChange');
-
-        /**
-         * Event that fires before the destroy event.
-         * @event beforeDestroy
-         */
-        this.createEvent('beforeDestroy');
-
-        /**
-         * Event used to trigger cleanup of ui components
-         * @event destroy
-         */
-        this.createEvent('destroy');
-
-        this._selfSubscribe();
-    },
-
-    /**
-     * Subscribes to instance attribute change events to automate certain
-     * behaviors.
-     * @method _selfSubscribe
-     * @protected
-     */
-    _selfSubscribe : function () {
-        // Listen for changes to totalRecords and alwaysVisible 
-        this.subscribe('totalRecordsChange',this.updateVisibility,this,true);
-        this.subscribe('alwaysVisibleChange',this.updateVisibility,this,true);
-
-        // Fire the pageChange event when appropriate
-        this.subscribe('totalRecordsChange',this._handleStateChange,this,true);
-        this.subscribe('recordOffsetChange',this._handleStateChange,this,true);
-        this.subscribe('rowsPerPageChange',this._handleStateChange,this,true);
-
-        // Update recordOffset when totalRecords is reduced below
-        this.subscribe('totalRecordsChange',this._syncRecordOffset,this,true);
-    },
-
-    /**
-     * Sets recordOffset to the starting index of the previous page when
-     * totalRecords is reduced below the current recordOffset.
-     * @method _syncRecordOffset
-     * @param e {Event} totalRecordsChange event
-     * @protected
-     */
-    _syncRecordOffset : function (e) {
-        var v = e.newValue,rpp,state;
-        if (e.prevValue !== v) {
-            if (v !== YAHOO.widget.Paginator.VALUE_UNLIMITED) {
-                rpp = this.get('rowsPerPage');
-
-                if (rpp && this.get('recordOffset') >= v) {
-                    state = this.getState({
-                        totalRecords : e.prevValue,
-                        recordOffset : this.get('recordOffset')
-                    });
-
-                    this.set('recordOffset', state.before.recordOffset);
-                    this._firePageChange(state);
-                }
-            }
-        }
-    },
-
-    /**
-     * Fires the pageChange event when the state attributes have changed in
-     * such a way as to locate the current recordOffset on a new page.
-     * @method _handleStateChange
-     * @param e {Event} the attribute change event
-     * @protected
-     */
-    _handleStateChange : function (e) {
-        if (e.prevValue !== e.newValue) {
-            var change = this._state || {},
-                state;
-
-            change[e.type.replace(/Change$/,'')] = e.prevValue;
-            state = this.getState(change);
-
-            if (state.page !== state.before.page) {
-                if (this._batch) {
-                    this._pageChanged = true;
-                } else {
-                    this._firePageChange(state);
-                }
-            }
-        }
-    },
-
-    /**
-     * Fires a pageChange event in the form of a standard attribute change
-     * event with additional properties prevState and newState.
-     * @method _firePageChange
-     * @param state {Object} the result of getState(oldState)
-     * @protected
-     */
-    _firePageChange : function (state) {
-        if (YAHOO.lang.isObject(state)) {
-            var current = state.before;
-            delete state.before;
-            this.fireEvent('pageChange',{
-                type      : 'pageChange',
-                prevValue : state.page,
-                newValue  : current.page,
-                prevState : state,
-                newState  : current
-            });
-        }
-    },
-
-    /**
-     * Render the pagination controls per the format attribute into the
-     * specified container nodes.
-     * @method render
-     */
-    render : function () {
-        if (this.get('rendered')) {
-            return;
-        }
-
-        // Forgo rendering if only one page and alwaysVisible is off
-        var totalRecords = this.get('totalRecords');
-        if (totalRecords !== YAHOO.widget.Paginator.VALUE_UNLIMITED &&
-            totalRecords < this.get('rowsPerPage') &&
-            !this.get('alwaysVisible')) {
-            return;
-        }
-
-        var Dom            = YAHOO.util.Dom,
-            template       = this.get('template'),
-            containerClass = this.get('containerClass');
-
-        // add marker spans to the template html to indicate drop zones
-        // for ui components
-        template = template.replace(/\{([a-z0-9_ \-]+)\}/gi,
-            '<span class="yui-pg-ui $1"></span>');
-        for (var i = 0, len = this._containers.length; i < len; ++i) {
-            var c       = this._containers[i],
-                // ex. yui-pg0-1 (first paginator, second container)
-                id_base = YAHOO.widget.Paginator.ID_BASE + this.get('id') +
-                          '-' + i;
-
-            if (!c) {
-                continue;
-            }
-            // Hide the container while its contents are rendered
-            c.style.display = 'none';
-
-            Dom.addClass(c,containerClass);
-
-            // Place the template innerHTML
-            c.innerHTML = template;
-
-            // Replace each marker with the ui component's render() output
-            var markers = Dom.getElementsByClassName('yui-pg-ui','span',c);
-
-            for (var j = 0, jlen = markers.length; j < jlen; ++j) {
-                var m      = markers[j],
-                    mp     = m.parentNode,
-                    name   = m.className.replace(/\s*yui-pg-ui\s+/g,''),
-                    UIComp = YAHOO.widget.Paginator.ui[name];
-
-                if (YAHOO.lang.isFunction(UIComp)) {
-                    var comp = new UIComp(this);
-                    if (YAHOO.lang.isFunction(comp.render)) {
-                        mp.replaceChild(comp.render(id_base),m);
-                    }
-                }
-            }
-
-            // Show the container allowing page reflow
-            c.style.display = '';
-        }
-
-        // Set render attribute manually to support its readOnly contract
-        if (this._containers.length) {
-            this.setAttributeConfig('rendered',{value:true});
-
-            this.fireEvent('render',this.getState());
-            // For backward compatibility
-            this.fireEvent('rendered',this.getState());
-        }
-    },
-
-    /**
-     * Removes controls from the page and unhooks events.
-     * @method destroy
-     */
-    destroy : function () {
-        this.fireEvent('beforeDestroy');
-        this.fireEvent('destroy');
-
-        this.setAttributeConfig('rendered',{value:false});
-    },
-
-    /**
-     * Hides the containers if there is only one page of data and attribute
-     * alwaysVisible is false.  Conversely, it displays the containers if either
-     * there is more than one page worth of data or alwaysVisible is turned on.
-     * @method updateVisibility
-     */
-    updateVisibility : function (e) {
-        var alwaysVisible = this.get('alwaysVisible');
-        if (e.type === 'alwaysVisibleChange' || !alwaysVisible) {
-            var totalRecords = this.get('totalRecords'),
-                visible = true,
-                rpp = this.get('rowsPerPage'),
-                rppOptions = this.get('rowsPerPageOptions'),
-                i,len;
-
-            if (YAHOO.lang.isArray(rppOptions)) {
-                for (i = 0, len = rppOptions.length; i < len; ++i) {
-                    rpp = Math.min(rpp,rppOptions[i]);
-                }
-            }
-
-            if (totalRecords !== YAHOO.widget.Paginator.VALUE_UNLIMITED &&
-                totalRecords <= rpp) {
-                visible = false;
-            }
-
-            visible = visible || alwaysVisible;
-
-            for (i = 0, len = this._containers.length; i < len; ++i) {
-                YAHOO.util.Dom.setStyle(this._containers[i],'display',
-                    visible ? '' : 'none');
-            }
-        }
-    },
-
-
-
-
-    /**
-     * Get the configured container nodes
-     * @method getContainerNodes
-     * @return {Array} array of HTMLElement nodes
-     */
-    getContainerNodes : function () {
-        return this._containers;
-    },
-
-    /**
-     * Get the total number of pages in the data set according to the current
-     * rowsPerPage and totalRecords values.  If totalRecords is not set, or
-     * set to YAHOO.widget.Paginator.VALUE_UNLIMITED, returns
-     * YAHOO.widget.Paginator.VALUE_UNLIMITED.
-     * @method getTotalPages
-     * @return {number}
-     */
-    getTotalPages : function () {
-        var records = this.get('totalRecords');
-        var perPage = this.get('rowsPerPage');
-
-        // rowsPerPage not set.  Can't calculate
-        if (!perPage) {
-            return null;
-        }
-
-        if (records === YAHOO.widget.Paginator.VALUE_UNLIMITED) {
-            return YAHOO.widget.Paginator.VALUE_UNLIMITED;
-        }
-
-        return Math.ceil(records/perPage);
-    },
-
-    /**
-     * Does the requested page have any records?
-     * @method hasPage
-     * @param page {number} the page in question
-     * @return {boolean}
-     */
-    hasPage : function (page) {
-        if (!YAHOO.lang.isNumber(page) || page < 1) {
-            return false;
-        }
-
-        var totalPages = this.getTotalPages();
-
-        return (totalPages === YAHOO.widget.Paginator.VALUE_UNLIMITED || totalPages >= page);
-    },
-
-    /**
-     * Get the page number corresponding to the current record offset.
-     * @method getCurrentPage
-     * @return {number}
-     */
-    getCurrentPage : function () {
-        var perPage = this.get('rowsPerPage');
-        if (!perPage || !this.get('totalRecords')) {
-            return 0;
-        }
-        return Math.floor(this.get('recordOffset') / perPage) + 1;
-    },
-
-    /**
-     * Are there records on the next page?
-     * @method hasNextPage
-     * @return {boolean}
-     */
-    hasNextPage : function () {
-        var currentPage = this.getCurrentPage(),
-            totalPages  = this.getTotalPages();
-
-        return currentPage && (totalPages === YAHOO.widget.Paginator.VALUE_UNLIMITED || currentPage < totalPages);
-    },
-
-    /**
-     * Get the page number of the next page, or null if the current page is the
-     * last page.
-     * @method getNextPage
-     * @return {number}
-     */
-    getNextPage : function () {
-        return this.hasNextPage() ? this.getCurrentPage() + 1 : null;
-    },
-
-    /**
-     * Is there a page before the current page?
-     * @method hasPreviousPage
-     * @return {boolean}
-     */
-    hasPreviousPage : function () {
-        return (this.getCurrentPage() > 1);
-    },
-
-    /**
-     * Get the page number of the previous page, or null if the current page
-     * is the first page.
-     * @method getPreviousPage
-     * @return {number}
-     */
-    getPreviousPage : function () {
-        return (this.hasPreviousPage() ? this.getCurrentPage() - 1 : 1);
-    },
-
-    /**
-     * Get the start and end record indexes of the specified page.
-     * @method getPageRecords
-     * @param page {number} (optional) The page (current page if not specified)
-     * @return {Array} [start_index, end_index]
-     */
-    getPageRecords : function (page) {
-        if (!YAHOO.lang.isNumber(page)) {
-            page = this.getCurrentPage();
-        }
-
-        var perPage = this.get('rowsPerPage'),
-            records = this.get('totalRecords'),
-            start, end;
-
-        if (!page || !perPage) {
-            return null;
-        }
-
-        start = (page - 1) * perPage;
-        if (records !== YAHOO.widget.Paginator.VALUE_UNLIMITED) {
-            if (start >= records) {
-                return null;
-            }
-            end = Math.min(start + perPage, records) - 1;
-        } else {
-            end = start + perPage - 1;
-        }
-
-        return [start,end];
-    },
-
-    /**
-     * Set the current page to the provided page number if possible.
-     * @method setPage
-     * @param newPage {number} the new page number
-     * @param silent {boolean} whether to forcibly avoid firing the
-     * changeRequest event
-     */
-    setPage : function (page,silent) {
-        if (this.hasPage(page) && page !== this.getCurrentPage()) {
-            if (this.get('updateOnChange') || silent) {
-                this.set('recordOffset', (page - 1) * this.get('rowsPerPage'));
-            } else {
-                this.fireEvent('changeRequest',this.getState({'page':page}));
-            }
-        }
-    },
-
-    /**
-     * Get the number of rows per page.
-     * @method getRowsPerPage
-     * @return {number} the current setting of the rowsPerPage attribute
-     */
-    getRowsPerPage : function () {
-        return this.get('rowsPerPage');
-    },
-
-    /**
-     * Set the number of rows per page.
-     * @method setRowsPerPage
-     * @param rpp {number} the new number of rows per page
-     * @param silent {boolean} whether to forcibly avoid firing the
-     * changeRequest event
-     */
-    setRowsPerPage : function (rpp,silent) {
-        if (YAHOO.lang.isNumber(rpp) && rpp > 0 &&
-            rpp !== this.get('rowsPerPage')) {
-            if (this.get('updateOnChange') || silent) {
-                this.set('rowsPerPage',rpp);
-            } else {
-                this.fireEvent('changeRequest',
-                    this.getState({'rowsPerPage':rpp}));
-            }
-        }
-    },
-
-    /**
-     * Get the total number of records.
-     * @method getTotalRecords
-     * @return {number} the current setting of totalRecords attribute
-     */
-    getTotalRecords : function () {
-        return this.get('totalRecords');
-    },
-
-    /**
-     * Set the total number of records.
-     * @method setTotalRecords
-     * @param total {number} the new total number of records
-     * @param silent {boolean} whether to forcibly avoid firing the changeRequest event
-     */
-    setTotalRecords : function (total,silent) {
-        if (YAHOO.lang.isNumber(total) && total >= 0 &&
-            total !== this.get('totalRecords')) {
-            if (this.get('updateOnChange') || silent) {
-                this.set('totalRecords',total);
-            } else {
-                this.fireEvent('changeRequest',
-                    this.getState({'totalRecords':total}));
-            }
-        }
-    },
-
-    /**
-     * Get the index of the first record on the current page
-     * @method getStartIndex
-     * @return {number} the index of the first record on the current page
-     */
-    getStartIndex : function () {
-        return this.get('recordOffset');
-    },
-
-    /**
-     * Move the record offset to a new starting index.  This will likely cause
-     * the calculated current page to change.  You should probably use setPage.
-     * @method setStartIndex
-     * @param offset {number} the new record offset
-     * @param silent {boolean} whether to forcibly avoid firing the changeRequest event
-     */
-    setStartIndex : function (offset,silent) {
-        if (YAHOO.lang.isNumber(offset) && offset >= 0 &&
-            offset !== this.get('recordOffset')) {
-            if (this.get('updateOnChange') || silent) {
-                this.set('recordOffset',offset);
-            } else {
-                this.fireEvent('changeRequest',
-                    this.getState({'recordOffset':offset}));
-            }
-        }
-    },
-
-    /**
-     * Get an object literal describing the current state of the paginator.  If
-     * an object literal of proposed values is passed, the proposed state will
-     * be returned as an object literal with the following keys:
-     * <ul>
-     * <li>paginator - instance of the Paginator</li>
-     * <li>page - number</li>
-     * <li>totalRecords - number</li>
-     * <li>recordOffset - number</li>
-     * <li>rowsPerPage - number</li>
-     * <li>records - [ start_index, end_index ]</li>
-     * <li>before - (OPTIONAL) { state object literal for current state }</li>
-     * </ul>
-     * @method getState
-     * @return {object}
-     * @param changes {object} OPTIONAL object literal with proposed values
-     * Supported change keys include:
-     * <ul>
-     * <li>rowsPerPage</li>
-     * <li>totalRecords</li>
-     * <li>recordOffset OR</li>
-     * <li>page</li>
-     * </ul>
-     */
-    getState : function (changes) {
-        var UNLIMITED = YAHOO.widget.Paginator.VALUE_UNLIMITED,
-            l         = YAHOO.lang,
-            M = Math, min = M.min, max = M.max, floor = M.floor, ceil = M.ceil,
-            currentState, state, offset;
-
-        function normalizeOffset(offset,total,rpp) {
-            if (offset <= 0 || total === 0) {
-                return 0;
-            }
-            if (total === UNLIMITED || total > offset) {
-                return offset - (offset % rpp);
-            }
-            return total - (total % rpp || rpp);
-        }
-
-        currentState = {
-            paginator    : this,
-            totalRecords : this.get('totalRecords'),
-            rowsPerPage  : this.get('rowsPerPage'),
-            records      : this.getPageRecords()
-        };
-        currentState.recordOffset = normalizeOffset(
-                                        this.get('recordOffset'),
-                                        currentState.totalRecords,
-                                        currentState.rowsPerPage);
-        currentState.page = ceil(currentState.recordOffset /
-                                 currentState.rowsPerPage) + 1;
-
-        if (!changes) {
-            return currentState;
-        }
-
-        state = {
-            paginator    : this,
-            before       : currentState,
-
-            rowsPerPage  : changes.rowsPerPage || currentState.rowsPerPage,
-            totalRecords : (l.isNumber(changes.totalRecords) ?
-                                max(changes.totalRecords,UNLIMITED) :
-                                currentState.totalRecords)
-        };
-
-        if (state.totalRecords === 0) {
-            state.recordOffset =
-            state.page         = 0;
-        } else {
-            offset = l.isNumber(changes.page) ?
-                        (changes.page - 1) * state.rowsPerPage :
-                        l.isNumber(changes.recordOffset) ?
-                            changes.recordOffset :
-                            currentState.recordOffset;
-
-            state.recordOffset = normalizeOffset(offset,
-                                    state.totalRecords,
-                                    state.rowsPerPage);
-
-            state.page = ceil(state.recordOffset / state.rowsPerPage) + 1;
-        }
-
-        state.records = [ state.recordOffset,
-                          state.recordOffset + state.rowsPerPage - 1 ];
-
-        // limit upper index to totalRecords - 1
-        if (state.totalRecords !== UNLIMITED &&
-            state.recordOffset < state.totalRecords && state.records &&
-            state.records[1] > state.totalRecords - 1) {
-            state.records[1] = state.totalRecords - 1;
-        }
-
-        return state;
-    },
-
-    /**
-     * Convenience method to facilitate setting state attributes rowsPerPage,
-     * totalRecords, recordOffset in batch.  Also supports calculating
-     * recordOffset from state.page if state.recordOffset is not provided.
-     * Fires only a single pageChange event, if appropriate.
-     * This will not fire a changeRequest event.
-     * @method setState
-     * @param state {Object} Object literal of attribute:value pairs to set
-     */
-    setState : function (state) {
-        if (YAHOO.lang.isObject(state)) {
-            // get flux state based on current state with before state as well
-            this._state = this.getState({});
-
-            // use just the state props from the input obj
-            state = {
-                page         : state.page,
-                rowsPerPage  : state.rowsPerPage,
-                totalRecords : state.totalRecords,
-                recordOffset : state.recordOffset
-            };
-
-            // calculate recordOffset from page if recordOffset not specified.
-            // not using lang.isNumber for support of numeric strings
-            if (state.page && state.recordOffset === undefined) {
-                state.recordOffset = (state.page - 1) *
-                    (state.rowsPerPage || this.get('rowsPerPage'));
-            }
-
-            this._batch = true;
-            this._pageChanged = false;
-
-            for (var k in state) {
-                if (state.hasOwnProperty(k)) {
-                    this.set(k,state[k]);
-                }
-            }
-
-            this._batch = false;
-            
-            if (this._pageChanged) {
-                this._pageChanged = false;
-
-                this._firePageChange(this.getState(this._state));
-            }
-        }
-    }
-};
-
-YAHOO.lang.augmentProto(YAHOO.widget.Paginator, YAHOO.util.AttributeProvider);
-(function () {
-
-var Paginator = YAHOO.widget.Paginator,
-    l         = YAHOO.lang;
-
-/**
- * ui Component to generate the textual report of current pagination status.
- * E.g. "Now viewing page 1 of 13".
- *
- * @namespace YAHOO.widget.Paginator.ui
- * @class CurrentPageReport
- * @for YAHOO.widget.Paginator
- *
- * @constructor
- * @param p {Pagintor} Paginator instance to attach to
- */
-Paginator.ui.CurrentPageReport = function (p) {
-    this.paginator = p;
-
-    p.createEvent('pageReportClassChange');
-    p.createEvent('pageReportTemplateChange');
-
-    p.subscribe('recordOffsetChange', this.update,this,true);
-    p.subscribe('rowsPerPageChange', this.update,this,true);
-    p.subscribe('totalRecordsChange',this.update,this,true);
-    p.subscribe('pageReportTemplateChange', this.update,this,true);
-    p.subscribe('destroy',this.destroy,this,true);
-
-    //TODO: make this work
-    p.subscribe('pageReportClassChange', this.update,this,true);
-};
-
-/**
- * Decorates Paginator instances with new attributes. Called during
- * Paginator instantiation.
- * @method init
- * @param p {Paginator} Paginator instance to decorate
- * @static
- */
-Paginator.ui.CurrentPageReport.init = function (p) {
-
-    /**
-     * CSS class assigned to the span containing the info.
-     * @attribute pageReportClass
-     * @default 'yui-pg-current'
-     */
-    p.setAttributeConfig('pageReportClass', {
-        value : 'yui-pg-current',
-        validator : l.isString
-    });
-
-    /**
-     * Used as innerHTML for the span.  Place holders in the form of {name}
-     * will be replaced with the so named value from the key:value map
-     * generated by the function held in the pageReportValueGenerator attribute.
-     * @attribute pageReportTemplate
-     * @default '({currentPage} of {totalPages})'
-     * @see pageReportValueGenerator attribute
-     */
-    p.setAttributeConfig('pageReportTemplate', {
-        value : '({currentPage} of {totalPages})',
-        validator : l.isString
-    });
-
-    /**
-     * Function to generate the value map used to populate the
-     * pageReportTemplate.  The function is passed the Paginator instance as a
-     * parameter.  The default function returns a map with the following keys:
-     * <ul>
-     * <li>currentPage</li>
-     * <li>totalPages</li>
-     * <li>startIndex</li>
-     * <li>endIndex</li>
-     * <li>startRecord</li>
-     * <li>endRecord</li>
-     * <li>totalRecords</li>
-     * </ul>
-     * @attribute pageReportValueGenarator
-     */
-    p.setAttributeConfig('pageReportValueGenerator', {
-        value : function (paginator) {
-            var curPage = paginator.getCurrentPage(),
-                records = paginator.getPageRecords();
-
-            return {
-                'currentPage' : records ? curPage : 0,
-                'totalPages'  : paginator.getTotalPages(),
-                'startIndex'  : records ? records[0] : 0,
-                'endIndex'    : records ? records[1] : 0,
-                'startRecord' : records ? records[0] + 1 : 0,
-                'endRecord'   : records ? records[1] + 1 : 0,
-                'totalRecords': paginator.get('totalRecords')
-            };
-        },
-        validator : l.isFunction
-    });
-};
-
-/**
- * Replace place holders in a string with the named values found in an
- * object literal.
- * @static
- * @method sprintf
- * @param template {string} The content string containing place holders
- * @param values {object} The key:value pairs used to replace the place holders
- * @return {string}
- */
-Paginator.ui.CurrentPageReport.sprintf = function (template, values) {
-    return template.replace(/\{([\w\s\-]+)\}/g, function (x,key) {
-            return (key in values) ? values[key] : '';
-        });
-};
-
-Paginator.ui.CurrentPageReport.prototype = {
-
-    /**
-     * Span node containing the formatted info
-     * @property span
-     * @type HTMLElement
-     * @private
-     */
-    span : null,
-
-
-    /**
-     * Generate the span containing info formatted per the pageReportTemplate
-     * attribute.
-     * @method render
-     * @param id_base {string} used to create unique ids for generated nodes
-     * @return {HTMLElement}
-     */
-    render : function (id_base) {
-        this.span = document.createElement('span');
-        this.span.id        = id_base + '-page-report';
-        this.span.className = this.paginator.get('pageReportClass');
-        this.update();
-        
-        return this.span;
-    },
-    
-    /**
-     * Regenerate the content of the span if appropriate. Calls
-     * CurrentPageReport.sprintf with the value of the pageReportTemplate
-     * attribute and the value map returned from pageReportValueGenerator
-     * function.
-     * @method update
-     * @param e {CustomEvent} The calling change event
-     */
-    update : function (e) {
-        if (e && e.prevValue === e.newValue) {
-            return;
-        }
-
-        this.span.innerHTML = Paginator.ui.CurrentPageReport.sprintf(
-            this.paginator.get('pageReportTemplate'),
-            this.paginator.get('pageReportValueGenerator')(this.paginator));
-    },
-
-    /**
-     * Removes the link/span node and clears event listeners
-     * removal.
-     * @method destroy
-     * @private
-     */
-    destroy : function () {
-        this.span.parentNode.removeChild(this.span);
-        this.span = null;
-    }
-
-};
-
-})();
-(function () {
-
-var Paginator = YAHOO.widget.Paginator,
-    l         = YAHOO.lang;
-
-/**
- * ui Component to generate the page links
- *
- * @namespace YAHOO.widget.Paginator.ui
- * @class PageLinks
- * @for YAHOO.widget.Paginator
- *
- * @constructor
- * @param p {Pagintor} Paginator instance to attach to
- */
-Paginator.ui.PageLinks = function (p) {
-    this.paginator = p;
-
-    p.createEvent('pageLinkClassChange');
-    p.createEvent('currentPageClassChange');
-    p.createEvent('pageLinksContainerClassChange');
-    p.createEvent('pageLinksChange');
-
-    p.subscribe('recordOffsetChange',this.update,this,true);
-    p.subscribe('rowsPerPageChange',this.update,this,true);
-    p.subscribe('totalRecordsChange',this.update,this,true);
-    p.subscribe('pageLinksChange',   this.rebuild,this,true);
-    p.subscribe('pageLinkClassChange', this.rebuild,this,true);
-    p.subscribe('currentPageClassChange', this.rebuild,this,true);
-    p.subscribe('destroy',this.destroy,this,true);
-
-    //TODO: Make this work
-    p.subscribe('pageLinksContainerClassChange', this.rebuild,this,true);
-};
-
-/**
- * Decorates Paginator instances with new attributes. Called during
- * Paginator instantiation.
- * @method init
- * @param p {Paginator} Paginator instance to decorate
- * @static
- */
-Paginator.ui.PageLinks.init = function (p) {
-
-    /**
-     * CSS class assigned to each page link/span.
-     * @attribute pageLinkClass
-     * @default 'yui-pg-page'
-     */
-    p.setAttributeConfig('pageLinkClass', {
-        value : 'yui-pg-page',
-        validator : l.isString
-    });
-
-    /**
-     * CSS class assigned to the current page span.
-     * @attribute currentPageClass
-     * @default 'yui-pg-current-page'
-     */
-    p.setAttributeConfig('currentPageClass', {
-        value : 'yui-pg-current-page',
-        validator : l.isString
-    });
-
-    /**
-     * CSS class assigned to the span containing the page links.
-     * @attribute pageLinksContainerClass
-     * @default 'yui-pg-pages'
-     */
-    p.setAttributeConfig('pageLinksContainerClass', {
-        value : 'yui-pg-pages',
-        validator : l.isString
-    });
-
-    /**
-     * Maximum number of page links to display at one time.
-     * @attribute pageLinks
-     * @default 10
-     */
-    p.setAttributeConfig('pageLinks', {
-        value : 10,
-        validator : l.isNumber
-    });
-
-    /**
-     * Function used generate the innerHTML for each page link/span.  The
-     * function receives as parameters the page number and a reference to the
-     * paginator object.
-     * @attribute pageLabelBuilder
-     * @default function (page, paginator) { return page; }
-     */
-    p.setAttributeConfig('pageLabelBuilder', {
-        value : function (page, paginator) { return page; },
-        validator : l.isFunction
-    });
-};
-
-/**
- * Calculates start and end page numbers given a current page, attempting
- * to keep the current page in the middle
- * @static
- * @method calculateRange
- * @param {int} currentPage  The current page
- * @param {int} totalPages   (optional) Maximum number of pages
- * @param {int} numPages     (optional) Preferred number of pages in range
- * @return {Array} [start_page_number, end_page_number]
- */
-Paginator.ui.PageLinks.calculateRange = function (currentPage,totalPages,numPages) {
-    var UNLIMITED = Paginator.VALUE_UNLIMITED,
-        start, end, delta;
-
-    // Either has no pages, or unlimited pages.  Show none.
-    if (!currentPage || numPages === 0 || totalPages === 0 ||
-        (totalPages === UNLIMITED && numPages === UNLIMITED)) {
-        return [0,-1];
-    }
-
-    // Limit requested pageLinks if there are fewer totalPages
-    if (totalPages !== UNLIMITED) {
-        numPages = numPages === UNLIMITED ?
-                    totalPages :
-                    Math.min(numPages,totalPages);
-    }
-
-    // Determine start and end, trying to keep current in the middle
-    start = Math.max(1,Math.ceil(currentPage - (numPages/2)));
-    if (totalPages === UNLIMITED) {
-        end = start + numPages - 1;
-    } else {
-        end = Math.min(totalPages, start + numPages - 1);
-    }
-
-    // Adjust the start index when approaching the last page
-    delta = numPages - (end - start + 1);
-    start = Math.max(1, start - delta);
-
-    return [start,end];
-};
-
-
-Paginator.ui.PageLinks.prototype = {
-
-    /**
-     * Current page
-     * @property current
-     * @type number
-     * @private
-     */
-    current     : 0,
-
-    /**
-     * Span node containing the page links
-     * @property container
-     * @type HTMLElement
-     * @private
-     */
-    container   : null,
-
-
-    /**
-     * Generate the nodes and return the container node containing page links
-     * appropriate to the current pagination state.
-     * @method render
-     * @param id_base {string} used to create unique ids for generated nodes
-     * @return {HTMLElement}
-     */
-    render : function (id_base) {
-        var p = this.paginator;
-
-        // Set up container
-        this.container = document.createElement('span');
-        this.container.id        = id_base + '-pages';
-        this.container.className = p.get('pageLinksContainerClass');
-        YAHOO.util.Event.on(this.container,'click',this.onClick,this,true);
-
-        // Call update, flagging a need to rebuild
-        this.update({newValue : null, rebuild : true});
-
-        return this.container;
-    },
-
-    /**
-     * Update the links if appropriate
-     * @method update
-     * @param e {CustomEvent} The calling change event
-     */
-    update : function (e) {
-        if (e && e.prevValue === e.newValue) {
-            return;
-        }
-
-        var p           = this.paginator,
-            currentPage = p.getCurrentPage();
-
-        // Replace content if there's been a change
-        if (this.current !== currentPage || !currentPage || e.rebuild) {
-            var labelBuilder = p.get('pageLabelBuilder'),
-                range        = Paginator.ui.PageLinks.calculateRange(
-                                currentPage,
-                                p.getTotalPages(),
-                                p.get('pageLinks')),
-                start        = range[0],
-                end          = range[1],
-                content      = '',
-                linkTemplate,i;
-
-            linkTemplate = '<a href="#" class="' + p.get('pageLinkClass') +
-                           '" page="';
-            for (i = start; i <= end; ++i) {
-                if (i === currentPage) {
-                    content +=
-                        '<span class="' + p.get('currentPageClass') + ' ' +
-                                          p.get('pageLinkClass') + '">' +
-                        labelBuilder(i,p) + '</span>';
-                } else {
-                    content +=
-                        linkTemplate + i + '">' + labelBuilder(i,p) + '</a>';
-                }
-            }
-
-            this.container.innerHTML = content;
-        }
-    },
-
-    /**
-     * Force a rebuild of the page links.
-     * @method rebuild
-     * @param e {CustomEvent} The calling change event
-     */
-    rebuild     : function (e) {
-        e.rebuild = true;
-        this.update(e);
-    },
-
-    /**
-     * Removes the page links container node and clears event listeners
-     * @method destroy
-     * @private
-     */
-    destroy : function () {
-        YAHOO.util.Event.purgeElement(this.container,true);
-        this.container.parentNode.removeChild(this.container);
-        this.container = null;
-    },
-
-    /**
-     * Listener for the container's onclick event.  Looks for qualifying link
-     * clicks, and pulls the page number from the link's page attribute.
-     * Sends link's page attribute to the Paginator's setPage method.
-     * @method onClick
-     * @param e {DOMEvent} The click event
-     */
-    onClick : function (e) {
-        var t = YAHOO.util.Event.getTarget(e);
-        if (t && YAHOO.util.Dom.hasClass(t,
-                        this.paginator.get('pageLinkClass'))) {
-
-            YAHOO.util.Event.stopEvent(e);
-
-            this.paginator.setPage(parseInt(t.getAttribute('page'),10));
-        }
-    }
-
-};
-
-})();
-(function () {
-
-var Paginator = YAHOO.widget.Paginator,
-    l         = YAHOO.lang;
-
-/**
- * ui Component to generate the link to jump to the first page.
- *
- * @namespace YAHOO.widget.Paginator.ui
- * @class FirstPageLink
- * @for YAHOO.widget.Paginator
- *
- * @constructor
- * @param p {Pagintor} Paginator instance to attach to
- */
-Paginator.ui.FirstPageLink = function (p) {
-    this.paginator = p;
-
-    p.createEvent('firstPageLinkLabelChange');
-    p.createEvent('firstPageLinkClassChange');
-
-    p.subscribe('recordOffsetChange',this.update,this,true);
-    p.subscribe('rowsPerPageChange',this.update,this,true);
-    p.subscribe('totalRecordsChange',this.update,this,true);
-    p.subscribe('destroy',this.destroy,this,true);
-
-    // TODO: make this work
-    p.subscribe('firstPageLinkLabelChange',this.update,this,true);
-    p.subscribe('firstPageLinkClassChange',this.update,this,true);
-};
-
-/**
- * Decorates Paginator instances with new attributes. Called during
- * Paginator instantiation.
- * @method init
- * @param p {Paginator} Paginator instance to decorate
- * @static
- */
-Paginator.ui.FirstPageLink.init = function (p) {
-
-    /**
-     * Used as innerHTML for the first page link/span.
-     * @attribute firstPageLinkLabel
-     * @default '&lt;&lt;&nbsp;first'
-     */
-    p.setAttributeConfig('firstPageLinkLabel', {
-        value : '&lt;&lt;&nbsp;first',
-        validator : l.isString
-    });
-
-    /**
-     * CSS class assigned to the link/span
-     * @attribute firstPageLinkClass
-     * @default 'yui-pg-first'
-     */
-    p.setAttributeConfig('firstPageLinkClass', {
-        value : 'yui-pg-first',
-        validator : l.isString
-    });
-};
-
-// Instance members and methods
-Paginator.ui.FirstPageLink.prototype = {
-
-    /**
-     * The currently placed HTMLElement node
-     * @property current
-     * @type HTMLElement
-     * @private
-     */
-    current   : null,
-
-    /**
-     * Link node
-     * @property link
-     * @type HTMLElement
-     * @private
-     */
-    link      : null,
-
-    /**
-     * Span node (inactive link)
-     * @property span
-     * @type HTMLElement
-     * @private
-     */
-    span      : null,
-
-    /**
-     * Generate the nodes and return the appropriate node given the current
-     * pagination state.
-     * @method render
-     * @param id_base {string} used to create unique ids for generated nodes
-     * @return {HTMLElement}
-     */
-    render : function (id_base) {
-        var p     = this.paginator,
-            c     = p.get('firstPageLinkClass'),
-            label = p.get('firstPageLinkLabel');
-
-        this.link     = document.createElement('a');
-        this.span     = document.createElement('span');
-
-        this.link.id        = id_base + '-first-link';
-        this.link.href      = '#';
-        this.link.className = c;
-        this.link.innerHTML = label;
-        YAHOO.util.Event.on(this.link,'click',this.onClick,this,true);
-
-        this.span.id        = id_base + '-first-span';
-        this.span.className = c;
-        this.span.innerHTML = label;
-
-        this.current = p.get('recordOffset') < 1 ? this.span : this.link;
-        return this.current;
-    },
-
-    /**
-     * Swap the link and span nodes if appropriate.
-     * @method update
-     * @param e {CustomEvent} The calling change event
-     */
-    update : function (e) {
-        if (e && e.prevValue === e.newValue) {
-            return;
-        }
-
-        var par = this.current ? this.current.parentNode : null;
-        if (this.paginator.get('recordOffset') < 1) {
-            if (par && this.current === this.link) {
-                par.replaceChild(this.span,this.current);
-                this.current = this.span;
-            }
-        } else {
-            if (par && this.current === this.span) {
-                par.replaceChild(this.link,this.current);
-                this.current = this.link;
-            }
-        }
-    },
-
-    /**
-     * Removes the link/span node and clears event listeners
-     * removal.
-     * @method destroy
-     * @private
-     */
-    destroy : function () {
-        YAHOO.util.Event.purgeElement(this.link);
-        this.current.parentNode.removeChild(this.current);
-        this.link = this.span = null;
-    },
-
-    /**
-     * Listener for the link's onclick event.  Pass new value to setPage method.
-     * @method onClick
-     * @param e {DOMEvent} The click event
-     */
-    onClick : function (e) {
-        YAHOO.util.Event.stopEvent(e);
-        this.paginator.setPage(1);
-    }
-};
-
-})();
-(function () {
-
-var Paginator = YAHOO.widget.Paginator,
-    l         = YAHOO.lang;
-
-/**
- * ui Component to generate the link to jump to the last page.
- *
- * @namespace YAHOO.widget.Paginator.ui
- * @class LastPageLink
- * @for YAHOO.widget.Paginator
- *
- * @constructor
- * @param p {Pagintor} Paginator instance to attach to
- */
-Paginator.ui.LastPageLink = function (p) {
-    this.paginator = p;
-
-    p.createEvent('lastPageLinkLabelChange');
-    p.createEvent('lastPageLinkClassChange');
-
-    p.subscribe('recordOffsetChange',this.update,this,true);
-    p.subscribe('rowsPerPageChange',this.update,this,true);
-    p.subscribe('totalRecordsChange',this.update,this,true);
-    p.subscribe('destroy',this.destroy,this,true);
-
-    // TODO: make this work
-    p.subscribe('lastPageLinkLabelChange',this.update,this,true);
-    p.subscribe('lastPageLinkClassChange', this.update,this,true);
-};
-
-/**
- * Decorates Paginator instances with new attributes. Called during
- * Paginator instantiation.
- * @method init
- * @param paginator {Paginator} Paginator instance to decorate
- * @static
- */
-Paginator.ui.LastPageLink.init = function (p) {
-
-    /**
-     * Used as innerHTML for the last page link/span.
-     * @attribute lastPageLinkLabel
-     * @default 'last&nbsp;&gt;&gt;'
-     */
-    p.setAttributeConfig('lastPageLinkLabel', {
-        value : 'last&nbsp;&gt;&gt;',
-        validator : l.isString
-    });
-
-    /**
-     * CSS class assigned to the link/span
-     * @attribute lastPageLinkClass
-     * @default 'yui-pg-last'
-     */
-    p.setAttributeConfig('lastPageLinkClass', {
-        value : 'yui-pg-last',
-        validator : l.isString
-    });
-};
-
-Paginator.ui.LastPageLink.prototype = {
-
-    /**
-     * Currently placed HTMLElement node
-     * @property current
-     * @type HTMLElement
-     * @private
-     */
-    current   : null,
-
-    /**
-     * Link HTMLElement node
-     * @property link
-     * @type HTMLElement
-     * @private
-     */
-    link      : null,
-
-    /**
-     * Span node (inactive link)
-     * @property span
-     * @type HTMLElement
-     * @private
-     */
-    span      : null,
-
-    /**
-     * Empty place holder node for when the last page link is inappropriate to
-     * display in any form (unlimited paging).
-     * @property na
-     * @type HTMLElement
-     * @private
-     */
-    na        : null,
-
-
-    /**
-     * Generate the nodes and return the appropriate node given the current
-     * pagination state.
-     * @method render
-     * @param id_base {string} used to create unique ids for generated nodes
-     * @return {HTMLElement}
-     */
-    render : function (id_base) {
-        var p     = this.paginator,
-            c     = p.get('lastPageLinkClass'),
-            label = p.get('lastPageLinkLabel'),
-            last  = p.getTotalPages();
-
-        this.link = document.createElement('a');
-        this.span = document.createElement('span');
-        this.na   = this.span.cloneNode(false);
-
-        this.link.id        = id_base + '-last-link';
-        this.link.href      = '#';
-        this.link.className = c;
-        this.link.innerHTML = label;
-        YAHOO.util.Event.on(this.link,'click',this.onClick,this,true);
-
-        this.span.id        = id_base + '-last-span';
-        this.span.className = c;
-        this.span.innerHTML = label;
-
-        this.na.id = id_base + '-last-na';
-
-        switch (last) {
-            case Paginator.VALUE_UNLIMITED :
-                    this.current = this.na; break;
-            case p.getCurrentPage() :
-                    this.current = this.span; break;
-            default :
-                    this.current = this.link;
-        }
-
-        return this.current;
-    },
-
-    /**
-     * Swap the link, span, and na nodes if appropriate.
-     * @method update
-     * @param e {CustomEvent} The calling change event (ignored)
-     */
-    update : function (e) {
-        if (e && e.prevValue === e.newValue) {
-            return;
-        }
-
-        var par   = this.current ? this.current.parentNode : null,
-            after = this.link;
-
-        if (par) {
-            switch (this.paginator.getTotalPages()) {
-                case Paginator.VALUE_UNLIMITED :
-                        after = this.na; break;
-                case this.paginator.getCurrentPage() :
-                        after = this.span; break;
-            }
-
-            if (this.current !== after) {
-                par.replaceChild(after,this.current);
-                this.current = after;
-            }
-        }
-    },
-
-    /**
-     * Removes the link/span node and clears event listeners
-     * @method destroy
-     * @private
-     */
-    destroy : function () {
-        YAHOO.util.Event.purgeElement(this.link);
-        this.current.parentNode.removeChild(this.current);
-        this.link = this.span = null;
-    },
-
-    /**
-     * Listener for the link's onclick event.  Passes to setPage method.
-     * @method onClick
-     * @param e {DOMEvent} The click event
-     */
-    onClick : function (e) {
-        YAHOO.util.Event.stopEvent(e);
-        this.paginator.setPage(this.paginator.getTotalPages());
-    }
-};
-
-})();
-(function () {
-
-var Paginator = YAHOO.widget.Paginator,
-    l         = YAHOO.lang;
-
-/**
- * ui Component to generate the link to jump to the next page.
- *
- * @namespace YAHOO.widget.Paginator.ui
- * @class NextPageLink
- * @for YAHOO.widget.Paginator
- *
- * @constructor
- * @param p {Pagintor} Paginator instance to attach to
- */
-Paginator.ui.NextPageLink = function (p) {
-    this.paginator = p;
-
-    p.createEvent('nextPageLinkLabelChange');
-    p.createEvent('nextPageLinkClassChange');
-
-    p.subscribe('recordOffsetChange', this.update,this,true);
-    p.subscribe('rowsPerPageChange', this.update,this,true);
-    p.subscribe('totalRecordsChange', this.update,this,true);
-    p.subscribe('destroy',this.destroy,this,true);
-
-    // TODO: make this work
-    p.subscribe('nextPageLinkLabelChange', this.update,this,true);
-    p.subscribe('nextPageLinkClassChange', this.update,this,true);
-};
-
-/**
- * Decorates Paginator instances with new attributes. Called during
- * Paginator instantiation.
- * @method init
- * @param p {Paginator} Paginator instance to decorate
- * @static
- */
-Paginator.ui.NextPageLink.init = function (p) {
-
-    /**
-     * Used as innerHTML for the next page link/span.
-     * @attribute nextPageLinkLabel
-     * @default 'next&nbsp;&gt;'
-     */
-    p.setAttributeConfig('nextPageLinkLabel', {
-        value : 'next&nbsp;&gt;',
-        validator : l.isString
-    });
-
-    /**
-     * CSS class assigned to the link/span
-     * @attribute nextPageLinkClass
-     * @default 'yui-pg-next'
-     */
-    p.setAttributeConfig('nextPageLinkClass', {
-        value : 'yui-pg-next',
-        validator : l.isString
-    });
-};
-
-Paginator.ui.NextPageLink.prototype = {
-
-    /**
-     * Currently placed HTMLElement node
-     * @property current
-     * @type HTMLElement
-     * @private
-     */
-    current   : null,
-
-    /**
-     * Link node
-     * @property link
-     * @type HTMLElement
-     * @private
-     */
-    link      : null,
-
-    /**
-     * Span node (inactive link)
-     * @property span
-     * @type HTMLElement
-     * @private
-     */
-    span      : null,
-
-
-    /**
-     * Generate the nodes and return the appropriate node given the current
-     * pagination state.
-     * @method render
-     * @param id_base {string} used to create unique ids for generated nodes
-     * @return {HTMLElement}
-     */
-    render : function (id_base) {
-        var p     = this.paginator,
-            c     = p.get('nextPageLinkClass'),
-            label = p.get('nextPageLinkLabel'),
-            last  = p.getTotalPages();
-
-        this.link     = document.createElement('a');
-        this.span     = document.createElement('span');
-
-        this.link.id        = id_base + '-next-link';
-        this.link.href      = '#';
-        this.link.className = c;
-        this.link.innerHTML = label;
-        YAHOO.util.Event.on(this.link,'click',this.onClick,this,true);
-
-        this.span.id        = id_base + '-next-span';
-        this.span.className = c;
-        this.span.innerHTML = label;
-
-        this.current = p.getCurrentPage() === last ? this.span : this.link;
-
-        return this.current;
-    },
-
-    /**
-     * Swap the link and span nodes if appropriate.
-     * @method update
-     * @param e {CustomEvent} The calling change event
-     */
-    update : function (e) {
-        if (e && e.prevValue === e.newValue) {
-            return;
-        }
-
-        var last = this.paginator.getTotalPages(),
-            par  = this.current ? this.current.parentNode : null;
-
-        if (this.paginator.getCurrentPage() !== last) {
-            if (par && this.current === this.span) {
-                par.replaceChild(this.link,this.current);
-                this.current = this.link;
-            }
-        } else if (this.current === this.link) {
-            if (par) {
-                par.replaceChild(this.span,this.current);
-                this.current = this.span;
-            }
-        }
-    },
-
-    /**
-     * Removes the link/span node and clears event listeners
-     * @method destroy
-     * @private
-     */
-    destroy : function () {
-        YAHOO.util.Event.purgeElement(this.link);
-        this.current.parentNode.removeChild(this.current);
-        this.link = this.span = null;
-    },
-
-    /**
-     * Listener for the link's onclick event.  Passes to setPage method.
-     * @method onClick
-     * @param e {DOMEvent} The click event
-     */
-    onClick : function (e) {
-        YAHOO.util.Event.stopEvent(e);
-        this.paginator.setPage(this.paginator.getNextPage());
-    }
-};
-
-})();
-(function () {
-
-var Paginator = YAHOO.widget.Paginator,
-    l         = YAHOO.lang;
-
-/**
- * ui Component to generate the link to jump to the previous page.
- *
- * @namespace YAHOO.widget.Paginator.ui
- * @class PreviousPageLink
- * @for YAHOO.widget.Paginator
- *
- * @constructor
- * @param p {Pagintor} Paginator instance to attach to
- */
-Paginator.ui.PreviousPageLink = function (p) {
-    this.paginator = p;
-
-    p.createEvent('previousPageLinkLabelChange');
-    p.createEvent('previousPageLinkClassChange');
-
-    p.subscribe('recordOffsetChange',this.update,this,true);
-    p.subscribe('rowsPerPageChange',this.update,this,true);
-    p.subscribe('totalRecordsChange',this.update,this,true);
-    p.subscribe('destroy',this.destroy,this,true);
-
-    // TODO: make this work
-    p.subscribe('previousPageLinkLabelChange',this.update,this,true);
-    p.subscribe('previousPageLinkClassChange',this.update,this,true);
-};
-
-/**
- * Decorates Paginator instances with new attributes. Called during
- * Paginator instantiation.
- * @method init
- * @param p {Paginator} Paginator instance to decorate
- * @static
- */
-Paginator.ui.PreviousPageLink.init = function (p) {
-
-    /**
-     * Used as innerHTML for the previous page link/span.
-     * @attribute previousPageLinkLabel
-     * @default '&lt;&nbsp;prev'
-     */
-    p.setAttributeConfig('previousPageLinkLabel', {
-        value : '&lt;&nbsp;prev',
-        validator : l.isString
-    });
-
-    /**
-     * CSS class assigned to the link/span
-     * @attribute previousPageLinkClass
-     * @default 'yui-pg-previous'
-     */
-    p.setAttributeConfig('previousPageLinkClass', {
-        value : 'yui-pg-previous',
-        validator : l.isString
-    });
-};
-
-Paginator.ui.PreviousPageLink.prototype = {
-
-    /**
-     * Currently placed HTMLElement node
-     * @property current
-     * @type HTMLElement
-     * @private
-     */
-    current   : null,
-
-    /**
-     * Link node
-     * @property link
-     * @type HTMLElement
-     * @private
-     */
-    link      : null,
-
-    /**
-     * Span node (inactive link)
-     * @property span
-     * @type HTMLElement
-     * @private
-     */
-    span      : null,
-
-
-    /**
-     * Generate the nodes and return the appropriate node given the current
-     * pagination state.
-     * @method render
-     * @param id_base {string} used to create unique ids for generated nodes
-     * @return {HTMLElement}
-     */
-    render : function (id_base) {
-        var p     = this.paginator,
-            c     = p.get('previousPageLinkClass'),
-            label = p.get('previousPageLinkLabel');
-
-        this.link     = document.createElement('a');
-        this.span     = document.createElement('span');
-
-        this.link.id        = id_base + '-prev-link';
-        this.link.href      = '#';
-        this.link.className = c;
-        this.link.innerHTML = label;
-        YAHOO.util.Event.on(this.link,'click',this.onClick,this,true);
-
-        this.span.id        = id_base + '-prev-span';
-        this.span.className = c;
-        this.span.innerHTML = label;
-
-        this.current = p.get('recordOffset') < 1 ? this.span : this.link;
-        return this.current;
-    },
-
-    /**
-     * Swap the link and span nodes if appropriate.
-     * @method update
-     * @param e {CustomEvent} The calling change event
-     */
-    update : function (e) {
-        if (e && e.prevValue === e.newValue) {
-            return;
-        }
-
-        var par = this.current ? this.current.parentNode : null;
-        if (this.paginator.get('recordOffset') < 1) {
-            if (par && this.current === this.link) {
-                par.replaceChild(this.span,this.current);
-                this.current = this.span;
-            }
-        } else {
-            if (par && this.current === this.span) {
-                par.replaceChild(this.link,this.current);
-                this.current = this.link;
-            }
-        }
-    },
-
-    /**
-     * Removes the link/span node and clears event listeners
-     * @method destroy
-     * @private
-     */
-    destroy : function () {
-        YAHOO.util.Event.purgeElement(this.link);
-        this.current.parentNode.removeChild(this.current);
-        this.link = this.span = null;
-    },
-
-    /**
-     * Listener for the link's onclick event.  Passes to setPage method.
-     * @method onClick
-     * @param e {DOMEvent} The click event
-     */
-    onClick : function (e) {
-        YAHOO.util.Event.stopEvent(e);
-        this.paginator.setPage(this.paginator.getPreviousPage());
-    }
-};
-
-})();
-(function () {
-
-var Paginator = YAHOO.widget.Paginator,
-    l         = YAHOO.lang;
-
-/**
- * ui Component to generate the rows-per-page dropdown
- *
- * @namespace YAHOO.widget.Paginator.ui
- * @class RowsPerPageDropdown
- * @for YAHOO.widget.Paginator
- *
- * @constructor
- * @param p {Pagintor} Paginator instance to attach to
- */
-Paginator.ui.RowsPerPageDropdown = function (p) {
-    this.paginator = p;
-
-    p.createEvent('rowsPerPageOptionsChange');
-    p.createEvent('rowsPerPageDropdownClassChange');
-
-    p.subscribe('rowsPerPageChange',this.update,this,true);
-    p.subscribe('rowsPerPageOptionsChange',this.rebuild,this,true);
-    p.subscribe('destroy',this.destroy,this,true);
-
-    // TODO: make this work
-    p.subscribe('rowsPerPageDropdownClassChange',this.rebuild,this,true);
-};
-
-/**
- * Decorates Paginator instances with new attributes. Called during
- * Paginator instantiation.
- * @method init
- * @param p {Paginator} Paginator instance to decorate
- * @static
- */
-Paginator.ui.RowsPerPageDropdown.init = function (p) {
-
-    /**
-     * Array of available rows-per-page sizes.  Converted into select options.
-     * Array values may be positive integers or object literals in the form<br>
-     * { value : NUMBER, text : STRING }
-     * @attribute rowsPerPageOptions
-     * @default []
-     */
-    p.setAttributeConfig('rowsPerPageOptions', {
-        value : [],
-        validator : l.isArray
-    });
-
-    /**
-     * CSS class assigned to the select node
-     * @attribute rowsPerPageDropdownClass
-     * @default 'yui-pg-rpp-options'
-     */
-    p.setAttributeConfig('rowsPerPageDropdownClass', {
-        value : 'yui-pg-rpp-options',
-        validator : l.isString
-    });
-};
-
-Paginator.ui.RowsPerPageDropdown.prototype = {
-
-    /**
-     * select node
-     * @property select
-     * @type HTMLElement
-     * @private
-     */
-    select  : null,
-
-
-    /**
-     * Generate the select and option nodes and returns the select node.
-     * @method render
-     * @param id_base {string} used to create unique ids for generated nodes
-     * @return {HTMLElement}
-     */
-    render : function (id_base) {
-        this.select = document.createElement('select');
-        this.select.id        = id_base + '-rpp';
-        this.select.className = this.paginator.get('rowsPerPageDropdownClass');
-        this.select.title = 'Rows per page';
-
-        YAHOO.util.Event.on(this.select,'change',this.onChange,this,true);
-
-        this.rebuild();
-
-        return this.select;
-    },
-
-    /**
-     * Select the appropriate option if changed.
-     * @method update
-     * @param e {CustomEvent} The calling change event
-     */
-    update : function (e) {
-        if (e && e.prevValue === e.newValue) {
-            return;
-        }
-
-        var rpp     = this.paginator.get('rowsPerPage'),
-            options = this.select.options,
-            i,len;
-
-        for (i = 0, len = options.length; i < len; ++i) {
-            if (parseInt(options[i].value,10) === rpp) {
-                options[i].selected = true;
-            }
-        }
-    },
-
-
-    /**
-     * (Re)generate the select options.
-     * @method rebuild
-     */
-    rebuild : function (e) {
-        var p       = this.paginator,
-            sel     = this.select,
-            options = p.get('rowsPerPageOptions'),
-            opt_tem = document.createElement('option'),
-            i,len;
-
-        while (sel.firstChild) {
-            sel.removeChild(sel.firstChild);
-        }
-
-        for (i = 0, len = options.length; i < len; ++i) {
-            var node = opt_tem.cloneNode(false),
-                opt  = options[i];
-            node.value = l.isValue(opt.value) ? opt.value : opt;
-            node.innerHTML = l.isValue(opt.text) ? opt.text : opt;
-            sel.appendChild(node);
-        }
-
-        this.update();
-    },
-
-    /**
-     * Removes the select node and clears event listeners
-     * @method destroy
-     * @private
-     */
-    destroy : function () {
-        YAHOO.util.Event.purgeElement(this.select);
-        this.select.parentNode.removeChild(this.select);
-        this.select = null;
-    },
-
-    /**
-     * Listener for the select's onchange event.  Sent to setRowsPerPage method.
-     * @method onChange
-     * @param e {DOMEvent} The change event
-     */
-    onChange : function (e) {
-        this.paginator.setRowsPerPage(
-                parseInt(this.select.options[this.select.selectedIndex].value,10));
-    }
-};
-
-})();
-YAHOO.register("paginator", YAHOO.widget.Paginator, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/paginator/paginator-min.js b/eclipse.org-common/yui/2.6.0/build/paginator/paginator-min.js
deleted file mode 100644
index 400056c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/paginator/paginator-min.js
+++ /dev/null
@@ -1,10 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.widget.Paginator=function(D){var H=YAHOO.widget.Paginator.VALUE_UNLIMITED,G=YAHOO.lang,E,A,B,C;D=G.isObject(D)?D:{};this.initConfig();this.initEvents();this.set("rowsPerPage",D.rowsPerPage,true);if(G.isNumber(D.totalRecords)){this.set("totalRecords",D.totalRecords,true);}this.initUIComponents();for(E in D){if(G.hasOwnProperty(D,E)){this.set(E,D[E],true);}}A=this.get("initialPage");B=this.get("totalRecords");C=this.get("rowsPerPage");if(A>1&&C!==H){var F=(A-1)*C;if(B===H||F<B){this.set("recordOffset",F,true);}}};YAHOO.lang.augmentObject(YAHOO.widget.Paginator,{id:0,ID_BASE:"yui-pg",VALUE_UNLIMITED:-1,TEMPLATE_DEFAULT:"{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}",TEMPLATE_ROWS_PER_PAGE:"{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}",ui:{}},true);YAHOO.widget.Paginator.prototype={_containers:[],_batch:false,_pageChanged:false,_state:null,initConfig:function(){var B=YAHOO.widget.Paginator.VALUE_UNLIMITED,A=YAHOO.lang;this.setAttributeConfig("rowsPerPage",{value:0,validator:A.isNumber});this.setAttributeConfig("containers",{value:null,validator:function(E){if(!A.isArray(E)){E=[E];}for(var D=0,C=E.length;D<C;++D){if(A.isString(E[D])||(A.isObject(E[D])&&E[D].nodeType===1)){continue;}return false;}return true;},method:function(C){C=YAHOO.util.Dom.get(C);if(!A.isArray(C)){C=[C];}this._containers=C;}});this.setAttributeConfig("totalRecords",{value:0,validator:A.isNumber});this.setAttributeConfig("recordOffset",{value:0,validator:function(D){var C=this.get("totalRecords");if(A.isNumber(D)){return C===B||C>D||(C===0&&D===0);}return false;}});this.setAttributeConfig("initialPage",{value:1,validator:A.isNumber});this.setAttributeConfig("template",{value:YAHOO.widget.Paginator.TEMPLATE_DEFAULT,validator:A.isString});this.setAttributeConfig("containerClass",{value:"yui-pg-container",validator:A.isString});this.setAttributeConfig("alwaysVisible",{value:true,validator:A.isBoolean});this.setAttributeConfig("updateOnChange",{value:false,validator:A.isBoolean});this.setAttributeConfig("id",{value:YAHOO.widget.Paginator.id++,readOnly:true});this.setAttributeConfig("rendered",{value:false,readOnly:true});},initUIComponents:function(){var C=YAHOO.widget.Paginator.ui,B,A;for(B in C){if(YAHOO.lang.hasOwnProperty(C,B)){A=C[B];if(YAHOO.lang.isObject(A)&&YAHOO.lang.isFunction(A.init)){A.init(this);}}}},initEvents:function(){this.createEvent("recordOffsetChange");this.createEvent("totalRecordsChange");this.createEvent("rowsPerPageChange");this.createEvent("alwaysVisibleChange");this.createEvent("render");this.createEvent("rendered");this.createEvent("changeRequest");this.createEvent("pageChange");this.createEvent("beforeDestroy");this.createEvent("destroy");this._selfSubscribe();},_selfSubscribe:function(){this.subscribe("totalRecordsChange",this.updateVisibility,this,true);this.subscribe("alwaysVisibleChange",this.updateVisibility,this,true);this.subscribe("totalRecordsChange",this._handleStateChange,this,true);this.subscribe("recordOffsetChange",this._handleStateChange,this,true);this.subscribe("rowsPerPageChange",this._handleStateChange,this,true);this.subscribe("totalRecordsChange",this._syncRecordOffset,this,true);},_syncRecordOffset:function(D){var A=D.newValue,C,B;if(D.prevValue!==A){if(A!==YAHOO.widget.Paginator.VALUE_UNLIMITED){C=this.get("rowsPerPage");if(C&&this.get("recordOffset")>=A){B=this.getState({totalRecords:D.prevValue,recordOffset:this.get("recordOffset")});this.set("recordOffset",B.before.recordOffset);this._firePageChange(B);}}}},_handleStateChange:function(B){if(B.prevValue!==B.newValue){var C=this._state||{},A;C[B.type.replace(/Change$/,"")]=B.prevValue;A=this.getState(C);if(A.page!==A.before.page){if(this._batch){this._pageChanged=true;}else{this._firePageChange(A);}}}},_firePageChange:function(A){if(YAHOO.lang.isObject(A)){var B=A.before;delete A.before;this.fireEvent("pageChange",{type:"pageChange",prevValue:A.page,newValue:B.page,prevState:A,newState:B});}},render:function(){if(this.get("rendered")){return ;}var M=this.get("totalRecords");if(M!==YAHOO.widget.Paginator.VALUE_UNLIMITED&&M<this.get("rowsPerPage")&&!this.get("alwaysVisible")){return ;}var F=YAHOO.util.Dom,N=this.get("template"),P=this.get("containerClass");N=N.replace(/\{([a-z0-9_ \-]+)\}/gi,'<span class="yui-pg-ui $1"></span>');for(var H=0,J=this._containers.length;H<J;++H){var L=this._containers[H],G=YAHOO.widget.Paginator.ID_BASE+this.get("id")+"-"+H;if(!L){continue;}L.style.display="none";F.addClass(L,P);L.innerHTML=N;var E=F.getElementsByClassName("yui-pg-ui","span",L);for(var D=0,O=E.length;D<O;++D){var C=E[D],B=C.parentNode,A=C.className.replace(/\s*yui-pg-ui\s+/g,""),K=YAHOO.widget.Paginator.ui[A];if(YAHOO.lang.isFunction(K)){var I=new K(this);if(YAHOO.lang.isFunction(I.render)){B.replaceChild(I.render(G),C);}}}L.style.display="";}if(this._containers.length){this.setAttributeConfig("rendered",{value:true});this.fireEvent("render",this.getState());this.fireEvent("rendered",this.getState());}},destroy:function(){this.fireEvent("beforeDestroy");this.fireEvent("destroy");this.setAttributeConfig("rendered",{value:false});},updateVisibility:function(F){var B=this.get("alwaysVisible");if(F.type==="alwaysVisibleChange"||!B){var H=this.get("totalRecords"),G=true,D=this.get("rowsPerPage"),E=this.get("rowsPerPageOptions"),C,A;if(YAHOO.lang.isArray(E)){for(C=0,A=E.length;C<A;++C){D=Math.min(D,E[C]);}}if(H!==YAHOO.widget.Paginator.VALUE_UNLIMITED&&H<=D){G=false;}G=G||B;for(C=0,A=this._containers.length;C<A;++C){YAHOO.util.Dom.setStyle(this._containers[C],"display",G?"":"none");}}},getContainerNodes:function(){return this._containers;},getTotalPages:function(){var A=this.get("totalRecords");var B=this.get("rowsPerPage");if(!B){return null;}if(A===YAHOO.widget.Paginator.VALUE_UNLIMITED){return YAHOO.widget.Paginator.VALUE_UNLIMITED;}return Math.ceil(A/B);},hasPage:function(B){if(!YAHOO.lang.isNumber(B)||B<1){return false;}var A=this.getTotalPages();
-return(A===YAHOO.widget.Paginator.VALUE_UNLIMITED||A>=B);},getCurrentPage:function(){var A=this.get("rowsPerPage");if(!A||!this.get("totalRecords")){return 0;}return Math.floor(this.get("recordOffset")/A)+1;},hasNextPage:function(){var A=this.getCurrentPage(),B=this.getTotalPages();return A&&(B===YAHOO.widget.Paginator.VALUE_UNLIMITED||A<B);},getNextPage:function(){return this.hasNextPage()?this.getCurrentPage()+1:null;},hasPreviousPage:function(){return(this.getCurrentPage()>1);},getPreviousPage:function(){return(this.hasPreviousPage()?this.getCurrentPage()-1:1);},getPageRecords:function(D){if(!YAHOO.lang.isNumber(D)){D=this.getCurrentPage();}var C=this.get("rowsPerPage"),B=this.get("totalRecords"),E,A;if(!D||!C){return null;}E=(D-1)*C;if(B!==YAHOO.widget.Paginator.VALUE_UNLIMITED){if(E>=B){return null;}A=Math.min(E+C,B)-1;}else{A=E+C-1;}return[E,A];},setPage:function(B,A){if(this.hasPage(B)&&B!==this.getCurrentPage()){if(this.get("updateOnChange")||A){this.set("recordOffset",(B-1)*this.get("rowsPerPage"));}else{this.fireEvent("changeRequest",this.getState({"page":B}));}}},getRowsPerPage:function(){return this.get("rowsPerPage");},setRowsPerPage:function(B,A){if(YAHOO.lang.isNumber(B)&&B>0&&B!==this.get("rowsPerPage")){if(this.get("updateOnChange")||A){this.set("rowsPerPage",B);}else{this.fireEvent("changeRequest",this.getState({"rowsPerPage":B}));}}},getTotalRecords:function(){return this.get("totalRecords");},setTotalRecords:function(B,A){if(YAHOO.lang.isNumber(B)&&B>=0&&B!==this.get("totalRecords")){if(this.get("updateOnChange")||A){this.set("totalRecords",B);}else{this.fireEvent("changeRequest",this.getState({"totalRecords":B}));}}},getStartIndex:function(){return this.get("recordOffset");},setStartIndex:function(B,A){if(YAHOO.lang.isNumber(B)&&B>=0&&B!==this.get("recordOffset")){if(this.get("updateOnChange")||A){this.set("recordOffset",B);}else{this.fireEvent("changeRequest",this.getState({"recordOffset":B}));}}},getState:function(J){var L=YAHOO.widget.Paginator.VALUE_UNLIMITED,D=YAHOO.lang,H=Math,F=H.min,I=H.max,G=H.floor,K=H.ceil,C,A,E;function B(O,M,N){if(O<=0||M===0){return 0;}if(M===L||M>O){return O-(O%N);}return M-(M%N||N);}C={paginator:this,totalRecords:this.get("totalRecords"),rowsPerPage:this.get("rowsPerPage"),records:this.getPageRecords()};C.recordOffset=B(this.get("recordOffset"),C.totalRecords,C.rowsPerPage);C.page=K(C.recordOffset/C.rowsPerPage)+1;if(!J){return C;}A={paginator:this,before:C,rowsPerPage:J.rowsPerPage||C.rowsPerPage,totalRecords:(D.isNumber(J.totalRecords)?I(J.totalRecords,L):C.totalRecords)};if(A.totalRecords===0){A.recordOffset=A.page=0;}else{E=D.isNumber(J.page)?(J.page-1)*A.rowsPerPage:D.isNumber(J.recordOffset)?J.recordOffset:C.recordOffset;A.recordOffset=B(E,A.totalRecords,A.rowsPerPage);A.page=K(A.recordOffset/A.rowsPerPage)+1;}A.records=[A.recordOffset,A.recordOffset+A.rowsPerPage-1];if(A.totalRecords!==L&&A.recordOffset<A.totalRecords&&A.records&&A.records[1]>A.totalRecords-1){A.records[1]=A.totalRecords-1;}return A;},setState:function(B){if(YAHOO.lang.isObject(B)){this._state=this.getState({});B={page:B.page,rowsPerPage:B.rowsPerPage,totalRecords:B.totalRecords,recordOffset:B.recordOffset};if(B.page&&B.recordOffset===undefined){B.recordOffset=(B.page-1)*(B.rowsPerPage||this.get("rowsPerPage"));}this._batch=true;this._pageChanged=false;for(var A in B){if(B.hasOwnProperty(A)){this.set(A,B[A]);}}this._batch=false;if(this._pageChanged){this._pageChanged=false;this._firePageChange(this.getState(this._state));}}}};YAHOO.lang.augmentProto(YAHOO.widget.Paginator,YAHOO.util.AttributeProvider);(function(){var B=YAHOO.widget.Paginator,A=YAHOO.lang;B.ui.CurrentPageReport=function(C){this.paginator=C;C.createEvent("pageReportClassChange");C.createEvent("pageReportTemplateChange");C.subscribe("recordOffsetChange",this.update,this,true);C.subscribe("rowsPerPageChange",this.update,this,true);C.subscribe("totalRecordsChange",this.update,this,true);C.subscribe("pageReportTemplateChange",this.update,this,true);C.subscribe("destroy",this.destroy,this,true);C.subscribe("pageReportClassChange",this.update,this,true);};B.ui.CurrentPageReport.init=function(C){C.setAttributeConfig("pageReportClass",{value:"yui-pg-current",validator:A.isString});C.setAttributeConfig("pageReportTemplate",{value:"({currentPage} of {totalPages})",validator:A.isString});C.setAttributeConfig("pageReportValueGenerator",{value:function(F){var E=F.getCurrentPage(),D=F.getPageRecords();return{"currentPage":D?E:0,"totalPages":F.getTotalPages(),"startIndex":D?D[0]:0,"endIndex":D?D[1]:0,"startRecord":D?D[0]+1:0,"endRecord":D?D[1]+1:0,"totalRecords":F.get("totalRecords")};},validator:A.isFunction});};B.ui.CurrentPageReport.sprintf=function(D,C){return D.replace(/\{([\w\s\-]+)\}/g,function(E,F){return(F in C)?C[F]:"";});};B.ui.CurrentPageReport.prototype={span:null,render:function(C){this.span=document.createElement("span");this.span.id=C+"-page-report";this.span.className=this.paginator.get("pageReportClass");this.update();return this.span;},update:function(C){if(C&&C.prevValue===C.newValue){return ;}this.span.innerHTML=B.ui.CurrentPageReport.sprintf(this.paginator.get("pageReportTemplate"),this.paginator.get("pageReportValueGenerator")(this.paginator));},destroy:function(){this.span.parentNode.removeChild(this.span);this.span=null;}};})();(function(){var B=YAHOO.widget.Paginator,A=YAHOO.lang;B.ui.PageLinks=function(C){this.paginator=C;C.createEvent("pageLinkClassChange");C.createEvent("currentPageClassChange");C.createEvent("pageLinksContainerClassChange");C.createEvent("pageLinksChange");C.subscribe("recordOffsetChange",this.update,this,true);C.subscribe("rowsPerPageChange",this.update,this,true);C.subscribe("totalRecordsChange",this.update,this,true);C.subscribe("pageLinksChange",this.rebuild,this,true);C.subscribe("pageLinkClassChange",this.rebuild,this,true);C.subscribe("currentPageClassChange",this.rebuild,this,true);C.subscribe("destroy",this.destroy,this,true);C.subscribe("pageLinksContainerClassChange",this.rebuild,this,true);
-};B.ui.PageLinks.init=function(C){C.setAttributeConfig("pageLinkClass",{value:"yui-pg-page",validator:A.isString});C.setAttributeConfig("currentPageClass",{value:"yui-pg-current-page",validator:A.isString});C.setAttributeConfig("pageLinksContainerClass",{value:"yui-pg-pages",validator:A.isString});C.setAttributeConfig("pageLinks",{value:10,validator:A.isNumber});C.setAttributeConfig("pageLabelBuilder",{value:function(D,E){return D;},validator:A.isFunction});};B.ui.PageLinks.calculateRange=function(E,F,D){var I=B.VALUE_UNLIMITED,H,C,G;if(!E||D===0||F===0||(F===I&&D===I)){return[0,-1];}if(F!==I){D=D===I?F:Math.min(D,F);}H=Math.max(1,Math.ceil(E-(D/2)));if(F===I){C=H+D-1;}else{C=Math.min(F,H+D-1);}G=D-(C-H+1);H=Math.max(1,H-G);return[H,C];};B.ui.PageLinks.prototype={current:0,container:null,render:function(C){var D=this.paginator;this.container=document.createElement("span");this.container.id=C+"-pages";this.container.className=D.get("pageLinksContainerClass");YAHOO.util.Event.on(this.container,"click",this.onClick,this,true);this.update({newValue:null,rebuild:true});return this.container;},update:function(J){if(J&&J.prevValue===J.newValue){return ;}var E=this.paginator,I=E.getCurrentPage();if(this.current!==I||!I||J.rebuild){var L=E.get("pageLabelBuilder"),H=B.ui.PageLinks.calculateRange(I,E.getTotalPages(),E.get("pageLinks")),D=H[0],F=H[1],K="",C,G;C='<a href="#" class="'+E.get("pageLinkClass")+'" page="';for(G=D;G<=F;++G){if(G===I){K+='<span class="'+E.get("currentPageClass")+" "+E.get("pageLinkClass")+'">'+L(G,E)+"</span>";}else{K+=C+G+'">'+L(G,E)+"</a>";}}this.container.innerHTML=K;}},rebuild:function(C){C.rebuild=true;this.update(C);},destroy:function(){YAHOO.util.Event.purgeElement(this.container,true);this.container.parentNode.removeChild(this.container);this.container=null;},onClick:function(D){var C=YAHOO.util.Event.getTarget(D);if(C&&YAHOO.util.Dom.hasClass(C,this.paginator.get("pageLinkClass"))){YAHOO.util.Event.stopEvent(D);this.paginator.setPage(parseInt(C.getAttribute("page"),10));}}};})();(function(){var B=YAHOO.widget.Paginator,A=YAHOO.lang;B.ui.FirstPageLink=function(C){this.paginator=C;C.createEvent("firstPageLinkLabelChange");C.createEvent("firstPageLinkClassChange");C.subscribe("recordOffsetChange",this.update,this,true);C.subscribe("rowsPerPageChange",this.update,this,true);C.subscribe("totalRecordsChange",this.update,this,true);C.subscribe("destroy",this.destroy,this,true);C.subscribe("firstPageLinkLabelChange",this.update,this,true);C.subscribe("firstPageLinkClassChange",this.update,this,true);};B.ui.FirstPageLink.init=function(C){C.setAttributeConfig("firstPageLinkLabel",{value:"&lt;&lt;&nbsp;first",validator:A.isString});C.setAttributeConfig("firstPageLinkClass",{value:"yui-pg-first",validator:A.isString});};B.ui.FirstPageLink.prototype={current:null,link:null,span:null,render:function(D){var E=this.paginator,F=E.get("firstPageLinkClass"),C=E.get("firstPageLinkLabel");this.link=document.createElement("a");this.span=document.createElement("span");this.link.id=D+"-first-link";this.link.href="#";this.link.className=F;this.link.innerHTML=C;YAHOO.util.Event.on(this.link,"click",this.onClick,this,true);this.span.id=D+"-first-span";this.span.className=F;this.span.innerHTML=C;this.current=E.get("recordOffset")<1?this.span:this.link;return this.current;},update:function(D){if(D&&D.prevValue===D.newValue){return ;}var C=this.current?this.current.parentNode:null;if(this.paginator.get("recordOffset")<1){if(C&&this.current===this.link){C.replaceChild(this.span,this.current);this.current=this.span;}}else{if(C&&this.current===this.span){C.replaceChild(this.link,this.current);this.current=this.link;}}},destroy:function(){YAHOO.util.Event.purgeElement(this.link);this.current.parentNode.removeChild(this.current);this.link=this.span=null;},onClick:function(C){YAHOO.util.Event.stopEvent(C);this.paginator.setPage(1);}};})();(function(){var B=YAHOO.widget.Paginator,A=YAHOO.lang;B.ui.LastPageLink=function(C){this.paginator=C;C.createEvent("lastPageLinkLabelChange");C.createEvent("lastPageLinkClassChange");C.subscribe("recordOffsetChange",this.update,this,true);C.subscribe("rowsPerPageChange",this.update,this,true);C.subscribe("totalRecordsChange",this.update,this,true);C.subscribe("destroy",this.destroy,this,true);C.subscribe("lastPageLinkLabelChange",this.update,this,true);C.subscribe("lastPageLinkClassChange",this.update,this,true);};B.ui.LastPageLink.init=function(C){C.setAttributeConfig("lastPageLinkLabel",{value:"last&nbsp;&gt;&gt;",validator:A.isString});C.setAttributeConfig("lastPageLinkClass",{value:"yui-pg-last",validator:A.isString});};B.ui.LastPageLink.prototype={current:null,link:null,span:null,na:null,render:function(D){var F=this.paginator,G=F.get("lastPageLinkClass"),C=F.get("lastPageLinkLabel"),E=F.getTotalPages();this.link=document.createElement("a");this.span=document.createElement("span");this.na=this.span.cloneNode(false);this.link.id=D+"-last-link";this.link.href="#";this.link.className=G;this.link.innerHTML=C;YAHOO.util.Event.on(this.link,"click",this.onClick,this,true);this.span.id=D+"-last-span";this.span.className=G;this.span.innerHTML=C;this.na.id=D+"-last-na";switch(E){case B.VALUE_UNLIMITED:this.current=this.na;break;case F.getCurrentPage():this.current=this.span;break;default:this.current=this.link;}return this.current;},update:function(D){if(D&&D.prevValue===D.newValue){return ;}var C=this.current?this.current.parentNode:null,E=this.link;if(C){switch(this.paginator.getTotalPages()){case B.VALUE_UNLIMITED:E=this.na;break;case this.paginator.getCurrentPage():E=this.span;break;}if(this.current!==E){C.replaceChild(E,this.current);this.current=E;}}},destroy:function(){YAHOO.util.Event.purgeElement(this.link);this.current.parentNode.removeChild(this.current);this.link=this.span=null;},onClick:function(C){YAHOO.util.Event.stopEvent(C);this.paginator.setPage(this.paginator.getTotalPages());}};})();(function(){var B=YAHOO.widget.Paginator,A=YAHOO.lang;B.ui.NextPageLink=function(C){this.paginator=C;
-C.createEvent("nextPageLinkLabelChange");C.createEvent("nextPageLinkClassChange");C.subscribe("recordOffsetChange",this.update,this,true);C.subscribe("rowsPerPageChange",this.update,this,true);C.subscribe("totalRecordsChange",this.update,this,true);C.subscribe("destroy",this.destroy,this,true);C.subscribe("nextPageLinkLabelChange",this.update,this,true);C.subscribe("nextPageLinkClassChange",this.update,this,true);};B.ui.NextPageLink.init=function(C){C.setAttributeConfig("nextPageLinkLabel",{value:"next&nbsp;&gt;",validator:A.isString});C.setAttributeConfig("nextPageLinkClass",{value:"yui-pg-next",validator:A.isString});};B.ui.NextPageLink.prototype={current:null,link:null,span:null,render:function(D){var F=this.paginator,G=F.get("nextPageLinkClass"),C=F.get("nextPageLinkLabel"),E=F.getTotalPages();this.link=document.createElement("a");this.span=document.createElement("span");this.link.id=D+"-next-link";this.link.href="#";this.link.className=G;this.link.innerHTML=C;YAHOO.util.Event.on(this.link,"click",this.onClick,this,true);this.span.id=D+"-next-span";this.span.className=G;this.span.innerHTML=C;this.current=F.getCurrentPage()===E?this.span:this.link;return this.current;},update:function(E){if(E&&E.prevValue===E.newValue){return ;}var D=this.paginator.getTotalPages(),C=this.current?this.current.parentNode:null;if(this.paginator.getCurrentPage()!==D){if(C&&this.current===this.span){C.replaceChild(this.link,this.current);this.current=this.link;}}else{if(this.current===this.link){if(C){C.replaceChild(this.span,this.current);this.current=this.span;}}}},destroy:function(){YAHOO.util.Event.purgeElement(this.link);this.current.parentNode.removeChild(this.current);this.link=this.span=null;},onClick:function(C){YAHOO.util.Event.stopEvent(C);this.paginator.setPage(this.paginator.getNextPage());}};})();(function(){var B=YAHOO.widget.Paginator,A=YAHOO.lang;B.ui.PreviousPageLink=function(C){this.paginator=C;C.createEvent("previousPageLinkLabelChange");C.createEvent("previousPageLinkClassChange");C.subscribe("recordOffsetChange",this.update,this,true);C.subscribe("rowsPerPageChange",this.update,this,true);C.subscribe("totalRecordsChange",this.update,this,true);C.subscribe("destroy",this.destroy,this,true);C.subscribe("previousPageLinkLabelChange",this.update,this,true);C.subscribe("previousPageLinkClassChange",this.update,this,true);};B.ui.PreviousPageLink.init=function(C){C.setAttributeConfig("previousPageLinkLabel",{value:"&lt;&nbsp;prev",validator:A.isString});C.setAttributeConfig("previousPageLinkClass",{value:"yui-pg-previous",validator:A.isString});};B.ui.PreviousPageLink.prototype={current:null,link:null,span:null,render:function(D){var E=this.paginator,F=E.get("previousPageLinkClass"),C=E.get("previousPageLinkLabel");this.link=document.createElement("a");this.span=document.createElement("span");this.link.id=D+"-prev-link";this.link.href="#";this.link.className=F;this.link.innerHTML=C;YAHOO.util.Event.on(this.link,"click",this.onClick,this,true);this.span.id=D+"-prev-span";this.span.className=F;this.span.innerHTML=C;this.current=E.get("recordOffset")<1?this.span:this.link;return this.current;},update:function(D){if(D&&D.prevValue===D.newValue){return ;}var C=this.current?this.current.parentNode:null;if(this.paginator.get("recordOffset")<1){if(C&&this.current===this.link){C.replaceChild(this.span,this.current);this.current=this.span;}}else{if(C&&this.current===this.span){C.replaceChild(this.link,this.current);this.current=this.link;}}},destroy:function(){YAHOO.util.Event.purgeElement(this.link);this.current.parentNode.removeChild(this.current);this.link=this.span=null;},onClick:function(C){YAHOO.util.Event.stopEvent(C);this.paginator.setPage(this.paginator.getPreviousPage());}};})();(function(){var B=YAHOO.widget.Paginator,A=YAHOO.lang;B.ui.RowsPerPageDropdown=function(C){this.paginator=C;C.createEvent("rowsPerPageOptionsChange");C.createEvent("rowsPerPageDropdownClassChange");C.subscribe("rowsPerPageChange",this.update,this,true);C.subscribe("rowsPerPageOptionsChange",this.rebuild,this,true);C.subscribe("destroy",this.destroy,this,true);C.subscribe("rowsPerPageDropdownClassChange",this.rebuild,this,true);};B.ui.RowsPerPageDropdown.init=function(C){C.setAttributeConfig("rowsPerPageOptions",{value:[],validator:A.isArray});C.setAttributeConfig("rowsPerPageDropdownClass",{value:"yui-pg-rpp-options",validator:A.isString});};B.ui.RowsPerPageDropdown.prototype={select:null,render:function(C){this.select=document.createElement("select");this.select.id=C+"-rpp";this.select.className=this.paginator.get("rowsPerPageDropdownClass");this.select.title="Rows per page";YAHOO.util.Event.on(this.select,"change",this.onChange,this,true);this.rebuild();return this.select;},update:function(G){if(G&&G.prevValue===G.newValue){return ;}var F=this.paginator.get("rowsPerPage"),D=this.select.options,E,C;for(E=0,C=D.length;E<C;++E){if(parseInt(D[E].value,10)===F){D[E].selected=true;}}},rebuild:function(J){var E=this.paginator,F=this.select,K=E.get("rowsPerPageOptions"),C=document.createElement("option"),H,I;while(F.firstChild){F.removeChild(F.firstChild);}for(H=0,I=K.length;H<I;++H){var G=C.cloneNode(false),D=K[H];G.value=A.isValue(D.value)?D.value:D;G.innerHTML=A.isValue(D.text)?D.text:D;F.appendChild(G);}this.update();},destroy:function(){YAHOO.util.Event.purgeElement(this.select);this.select.parentNode.removeChild(this.select);this.select=null;},onChange:function(C){this.paginator.setRowsPerPage(parseInt(this.select.options[this.select.selectedIndex].value,10));}};})();YAHOO.register("paginator",YAHOO.widget.Paginator,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/paginator/paginator.js b/eclipse.org-common/yui/2.6.0/build/paginator/paginator.js
deleted file mode 100644
index de37ffb..0000000
--- a/eclipse.org-common/yui/2.6.0/build/paginator/paginator.js
+++ /dev/null
@@ -1,2314 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The Paginator widget provides a set of controls to navigate through paged
- * data.
- *
- * @module paginator
- * @uses YAHOO.util.EventProvider
- * @uses YAHOO.util.AttributeProvider
- */
-
-/**
- * Instantiate a Paginator, passing a configuration object to the contructor.
- * The configuration object should contain the following properties:
- * <ul>
- *   <li>rowsPerPage : <em>n</em> (int)</li>
- *   <li>totalRecords : <em>n</em> (int or Paginator.VALUE_UNLIMITED)</li>
- *   <li>containers : <em>id | el | arr</em> (HTMLElement reference, its id, or an array of either)</li>
- * </ul>
- *
- * @namespace YAHOO.widget
- * @class Paginator
- * @constructor
- * @param config {Object} Object literal to set instance and ui component
- * configuration.
- */
-YAHOO.widget.Paginator = function (config) {
-    var UNLIMITED = YAHOO.widget.Paginator.VALUE_UNLIMITED,
-        lang      = YAHOO.lang,
-        attrib, initialPage, records, perPage;
-
-    config = lang.isObject(config) ? config : {};
-
-    this.initConfig();
-
-    this.initEvents();
-
-    // Set the basic config keys first
-    this.set('rowsPerPage',config.rowsPerPage,true);
-    if (lang.isNumber(config.totalRecords)) {
-        this.set('totalRecords',config.totalRecords,true);
-    }
-    
-    this.initUIComponents();
-
-    // Update the other config values
-    for (attrib in config) {
-        if (lang.hasOwnProperty(config,attrib)) {
-            this.set(attrib,config[attrib],true);
-        }
-    }
-
-    // Calculate the initial record offset
-    initialPage = this.get('initialPage');
-    records     = this.get('totalRecords');
-    perPage     = this.get('rowsPerPage');
-    if (initialPage > 1 && perPage !== UNLIMITED) {
-        var startIndex = (initialPage - 1) * perPage;
-        if (records === UNLIMITED || startIndex < records) {
-            this.set('recordOffset',startIndex,true);
-        }
-    }
-};
-
-
-// Static members
-YAHOO.lang.augmentObject(YAHOO.widget.Paginator, {
-    /**
-     * Incrementing index used to give instances unique ids.
-     * @static
-     * @property id
-     * @type number
-     * @private
-     */
-    id : 0,
-
-    /**
-     * Base of id strings used for ui components.
-     * @static
-     * @property ID_BASE
-     * @type string
-     * @private
-     */
-    ID_BASE : 'yui-pg',
-
-    /**
-     * Used to identify unset, optional configurations, or used explicitly in
-     * the case of totalRecords to indicate unlimited pagination.
-     * @static
-     * @property VALUE_UNLIMITED
-     * @type number
-     * @final
-     */
-    VALUE_UNLIMITED : -1,
-
-    /**
-     * Default template used by Paginator instances.  Update this if you want
-     * all new Paginators to use a different default template.
-     * @static
-     * @property TEMPLATE_DEFAULT
-     * @type string
-     */
-    TEMPLATE_DEFAULT : "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}",
-
-    /**
-     * Common alternate pagination format, including page links, links for
-     * previous, next, first and last pages as well as a rows-per-page
-     * dropdown.  Offered as a convenience.
-     * @static
-     * @property TEMPLATE_ROWS_PER_PAGE
-     * @type string
-     */
-    TEMPLATE_ROWS_PER_PAGE : "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}",
-
-    /**
-     * Storage object for UI Components
-     * @static
-     * @property ui
-     */
-    ui : {}
-
-},true);
-
-
-// Instance members and methods
-YAHOO.widget.Paginator.prototype = {
-
-    // Instance members
-
-    /**
-     * Array of nodes in which to render pagination controls.  This is set via
-     * the &quot;containers&quot; attribute.
-     * @property _containers
-     * @type Array(HTMLElement)
-     * @private
-     */
-    _containers : [],
-
-    /**
-     * Flag used to indicate multiple attributes are being updated via setState
-     * @property _batch
-     * @type boolean
-     * @protected
-     */
-    _batch : false,
-
-    /**
-     * Used by setState to indicate when a page change has occurred
-     * @property _pageChanged
-     * @type boolean
-     * @protected
-     */
-    _pageChanged : false,
-
-    /**
-     * Temporary state cache used by setState to keep track of the previous
-     * state for eventual pageChange event firing
-     * @property _state
-     * @type Object
-     * @protected
-     */
-    _state : null,
-
-
-    // Instance methods
-
-    /**
-     * Initialize the Paginator's attributes (see YAHOO.util.Element class
-     * AttributeProvider).
-     * @method initConfig
-     * @private
-     */
-    initConfig : function () {
-
-        var UNLIMITED = YAHOO.widget.Paginator.VALUE_UNLIMITED,
-            l         = YAHOO.lang;
-
-        /**
-         * REQUIRED. Number of records constituting a &quot;page&quot;
-         * @attribute rowsPerPage
-         * @type integer
-         */
-        this.setAttributeConfig('rowsPerPage', {
-            value     : 0,
-            validator : l.isNumber
-        });
-
-        /**
-         * REQUIRED. Node references or ids of nodes in which to render the
-         * pagination controls.
-         * @attribute containers
-         * @type {string|HTMLElement|Array(string|HTMLElement)}
-         */
-        this.setAttributeConfig('containers', {
-            value     : null,
-            validator : function (val) {
-                if (!l.isArray(val)) {
-                    val = [val];
-                }
-                for (var i = 0, len = val.length; i < len; ++i) {
-                    if (l.isString(val[i]) || 
-                        (l.isObject(val[i]) && val[i].nodeType === 1)) {
-                        continue;
-                    }
-                    return false;
-                }
-                return true;
-            },
-            method : function (val) {
-                val = YAHOO.util.Dom.get(val);
-                if (!l.isArray(val)) {
-                    val = [val];
-                }
-                this._containers = val;
-            }
-        });
-
-        /**
-         * Total number of records to paginate through
-         * @attribute totalRecords
-         * @type integer
-         * @default 0
-         */
-        this.setAttributeConfig('totalRecords', {
-            value     : 0,
-            validator : l.isNumber
-        });
-
-        /**
-         * Zero based index of the record considered first on the current page.
-         * For page based interactions, don't modify this attribute directly;
-         * use setPage(n).
-         * @attribute recordOffset
-         * @type integer
-         * @default 0
-         */
-        this.setAttributeConfig('recordOffset', {
-            value     : 0,
-            validator : function (val) {
-                var total = this.get('totalRecords');
-                if (l.isNumber(val)) {
-                    return total === UNLIMITED || total > val ||
-                           (total === 0 && val === 0);
-                }
-
-                return false;
-            }
-        });
-
-        /**
-         * Page to display on initial paint
-         * @attribute initialPage
-         * @type integer
-         * @default 1
-         */
-        this.setAttributeConfig('initialPage', {
-            value     : 1,
-            validator : l.isNumber
-        });
-
-        /**
-         * Template used to render controls.  The string will be used as
-         * innerHTML on all specified container nodes.  Bracketed keys
-         * (e.g. {pageLinks}) in the string will be replaced with an instance
-         * of the so named ui component.
-         * @see Paginator.TEMPLATE_DEFAULT
-         * @see Paginator.TEMPLATE_ROWS_PER_PAGE
-         * @attribute template
-         * @type string
-         */
-        this.setAttributeConfig('template', {
-            value : YAHOO.widget.Paginator.TEMPLATE_DEFAULT,
-            validator : l.isString
-        });
-
-        /**
-         * Class assigned to the element(s) containing pagination controls.
-         * @attribute containerClass
-         * @type string
-         * @default 'yui-pg-container'
-         */
-        this.setAttributeConfig('containerClass', {
-            value : 'yui-pg-container',
-            validator : l.isString
-        });
-
-        /**
-         * Display pagination controls even when there is only one page.  Set
-         * to false to forgo rendering and/or hide the containers when there
-         * is only one page of data.  Note if you are using the rowsPerPage
-         * dropdown ui component, visibility will be maintained as long as the
-         * number of records exceeds the smallest page size.
-         * @attribute alwaysVisible
-         * @type boolean
-         * @default true
-         */
-        this.setAttributeConfig('alwaysVisible', {
-            value : true,
-            validator : l.isBoolean
-        });
-
-        /**
-         * Update the UI immediately upon interaction.  If false, changeRequest
-         * subscribers or other external code will need to explicitly set the
-         * new values in the paginator to trigger repaint.
-         * @attribute updateOnChange
-         * @type boolean
-         * @default false
-         */
-        this.setAttributeConfig('updateOnChange', {
-            value     : false,
-            validator : l.isBoolean
-        });
-
-
-
-        // Read only attributes
-
-        /**
-         * Unique id assigned to this instance
-         * @attribute id
-         * @type integer
-         * @final
-         */
-        this.setAttributeConfig('id', {
-            value    : YAHOO.widget.Paginator.id++,
-            readOnly : true
-        });
-
-        /**
-         * Indicator of whether the DOM nodes have been initially created
-         * @attribute rendered
-         * @type boolean
-         * @final
-         */
-        this.setAttributeConfig('rendered', {
-            value    : false,
-            readOnly : true
-        });
-
-    },
-
-    /**
-     * Initialize registered ui components onto this instance.
-     * @method initUIComponents
-     * @private
-     */
-    initUIComponents : function () {
-        var ui = YAHOO.widget.Paginator.ui,
-            name,UIComp;
-        for (name in ui) {
-            if (YAHOO.lang.hasOwnProperty(ui,name)) {
-                UIComp = ui[name];
-                if (YAHOO.lang.isObject(UIComp) &&
-                    YAHOO.lang.isFunction(UIComp.init)) {
-                    UIComp.init(this);
-                }
-            }
-        }
-    },
-
-    /**
-     * Initialize this instance's CustomEvents.
-     * @method initEvents
-     * @private
-     */
-    initEvents : function () {
-        this.createEvent('recordOffsetChange');
-        this.createEvent('totalRecordsChange');
-        this.createEvent('rowsPerPageChange');
-        this.createEvent('alwaysVisibleChange');
-
-        /**
-         * Event fired when the Paginator is initially rendered
-         * @event render
-         */
-        this.createEvent('render');
-
-        /**
-         * Event fired when the Paginator is initially rendered
-         * @event rendered
-         * @deprecated use render event
-         */
-        this.createEvent('rendered'); // backward compatibility
-
-        /**
-         * Event fired when a change in pagination values is requested,
-         * either by interacting with the various ui components or via the
-         * setStartIndex(n) etc APIs.
-         * Subscribers will receive the proposed state as the first parameter.
-         * The proposed state object will contain the following keys:
-         * <ul>
-         *   <li>paginator - the Paginator instance</li>
-         *   <li>page</li>
-         *   <li>totalRecords</li>
-         *   <li>recordOffset - index of the first record on the new page</li>
-         *   <li>rowsPerPage</li>
-         *   <li>records - array containing [start index, end index] for the records on the new page</li>
-         *   <li>before - object literal with all these keys for the current state</li>
-         * </ul>
-         * @event changeRequest
-         */
-        this.createEvent('changeRequest');
-
-        /**
-         * Event fired when attribute changes have resulted in the calculated
-         * current page changing.
-         * @event pageChange
-         */
-        this.createEvent('pageChange');
-
-        /**
-         * Event that fires before the destroy event.
-         * @event beforeDestroy
-         */
-        this.createEvent('beforeDestroy');
-
-        /**
-         * Event used to trigger cleanup of ui components
-         * @event destroy
-         */
-        this.createEvent('destroy');
-
-        this._selfSubscribe();
-    },
-
-    /**
-     * Subscribes to instance attribute change events to automate certain
-     * behaviors.
-     * @method _selfSubscribe
-     * @protected
-     */
-    _selfSubscribe : function () {
-        // Listen for changes to totalRecords and alwaysVisible 
-        this.subscribe('totalRecordsChange',this.updateVisibility,this,true);
-        this.subscribe('alwaysVisibleChange',this.updateVisibility,this,true);
-
-        // Fire the pageChange event when appropriate
-        this.subscribe('totalRecordsChange',this._handleStateChange,this,true);
-        this.subscribe('recordOffsetChange',this._handleStateChange,this,true);
-        this.subscribe('rowsPerPageChange',this._handleStateChange,this,true);
-
-        // Update recordOffset when totalRecords is reduced below
-        this.subscribe('totalRecordsChange',this._syncRecordOffset,this,true);
-    },
-
-    /**
-     * Sets recordOffset to the starting index of the previous page when
-     * totalRecords is reduced below the current recordOffset.
-     * @method _syncRecordOffset
-     * @param e {Event} totalRecordsChange event
-     * @protected
-     */
-    _syncRecordOffset : function (e) {
-        var v = e.newValue,rpp,state;
-        if (e.prevValue !== v) {
-            if (v !== YAHOO.widget.Paginator.VALUE_UNLIMITED) {
-                rpp = this.get('rowsPerPage');
-
-                if (rpp && this.get('recordOffset') >= v) {
-                    state = this.getState({
-                        totalRecords : e.prevValue,
-                        recordOffset : this.get('recordOffset')
-                    });
-
-                    this.set('recordOffset', state.before.recordOffset);
-                    this._firePageChange(state);
-                }
-            }
-        }
-    },
-
-    /**
-     * Fires the pageChange event when the state attributes have changed in
-     * such a way as to locate the current recordOffset on a new page.
-     * @method _handleStateChange
-     * @param e {Event} the attribute change event
-     * @protected
-     */
-    _handleStateChange : function (e) {
-        if (e.prevValue !== e.newValue) {
-            var change = this._state || {},
-                state;
-
-            change[e.type.replace(/Change$/,'')] = e.prevValue;
-            state = this.getState(change);
-
-            if (state.page !== state.before.page) {
-                if (this._batch) {
-                    this._pageChanged = true;
-                } else {
-                    this._firePageChange(state);
-                }
-            }
-        }
-    },
-
-    /**
-     * Fires a pageChange event in the form of a standard attribute change
-     * event with additional properties prevState and newState.
-     * @method _firePageChange
-     * @param state {Object} the result of getState(oldState)
-     * @protected
-     */
-    _firePageChange : function (state) {
-        if (YAHOO.lang.isObject(state)) {
-            var current = state.before;
-            delete state.before;
-            this.fireEvent('pageChange',{
-                type      : 'pageChange',
-                prevValue : state.page,
-                newValue  : current.page,
-                prevState : state,
-                newState  : current
-            });
-        }
-    },
-
-    /**
-     * Render the pagination controls per the format attribute into the
-     * specified container nodes.
-     * @method render
-     */
-    render : function () {
-        if (this.get('rendered')) {
-            return;
-        }
-
-        // Forgo rendering if only one page and alwaysVisible is off
-        var totalRecords = this.get('totalRecords');
-        if (totalRecords !== YAHOO.widget.Paginator.VALUE_UNLIMITED &&
-            totalRecords < this.get('rowsPerPage') &&
-            !this.get('alwaysVisible')) {
-            return;
-        }
-
-        var Dom            = YAHOO.util.Dom,
-            template       = this.get('template'),
-            containerClass = this.get('containerClass');
-
-        // add marker spans to the template html to indicate drop zones
-        // for ui components
-        template = template.replace(/\{([a-z0-9_ \-]+)\}/gi,
-            '<span class="yui-pg-ui $1"></span>');
-        for (var i = 0, len = this._containers.length; i < len; ++i) {
-            var c       = this._containers[i],
-                // ex. yui-pg0-1 (first paginator, second container)
-                id_base = YAHOO.widget.Paginator.ID_BASE + this.get('id') +
-                          '-' + i;
-
-            if (!c) {
-                continue;
-            }
-            // Hide the container while its contents are rendered
-            c.style.display = 'none';
-
-            Dom.addClass(c,containerClass);
-
-            // Place the template innerHTML
-            c.innerHTML = template;
-
-            // Replace each marker with the ui component's render() output
-            var markers = Dom.getElementsByClassName('yui-pg-ui','span',c);
-
-            for (var j = 0, jlen = markers.length; j < jlen; ++j) {
-                var m      = markers[j],
-                    mp     = m.parentNode,
-                    name   = m.className.replace(/\s*yui-pg-ui\s+/g,''),
-                    UIComp = YAHOO.widget.Paginator.ui[name];
-
-                if (YAHOO.lang.isFunction(UIComp)) {
-                    var comp = new UIComp(this);
-                    if (YAHOO.lang.isFunction(comp.render)) {
-                        mp.replaceChild(comp.render(id_base),m);
-                    }
-                }
-            }
-
-            // Show the container allowing page reflow
-            c.style.display = '';
-        }
-
-        // Set render attribute manually to support its readOnly contract
-        if (this._containers.length) {
-            this.setAttributeConfig('rendered',{value:true});
-
-            this.fireEvent('render',this.getState());
-            // For backward compatibility
-            this.fireEvent('rendered',this.getState());
-        }
-    },
-
-    /**
-     * Removes controls from the page and unhooks events.
-     * @method destroy
-     */
-    destroy : function () {
-        this.fireEvent('beforeDestroy');
-        this.fireEvent('destroy');
-
-        this.setAttributeConfig('rendered',{value:false});
-    },
-
-    /**
-     * Hides the containers if there is only one page of data and attribute
-     * alwaysVisible is false.  Conversely, it displays the containers if either
-     * there is more than one page worth of data or alwaysVisible is turned on.
-     * @method updateVisibility
-     */
-    updateVisibility : function (e) {
-        var alwaysVisible = this.get('alwaysVisible');
-        if (e.type === 'alwaysVisibleChange' || !alwaysVisible) {
-            var totalRecords = this.get('totalRecords'),
-                visible = true,
-                rpp = this.get('rowsPerPage'),
-                rppOptions = this.get('rowsPerPageOptions'),
-                i,len;
-
-            if (YAHOO.lang.isArray(rppOptions)) {
-                for (i = 0, len = rppOptions.length; i < len; ++i) {
-                    rpp = Math.min(rpp,rppOptions[i]);
-                }
-            }
-
-            if (totalRecords !== YAHOO.widget.Paginator.VALUE_UNLIMITED &&
-                totalRecords <= rpp) {
-                visible = false;
-            }
-
-            visible = visible || alwaysVisible;
-
-            for (i = 0, len = this._containers.length; i < len; ++i) {
-                YAHOO.util.Dom.setStyle(this._containers[i],'display',
-                    visible ? '' : 'none');
-            }
-        }
-    },
-
-
-
-
-    /**
-     * Get the configured container nodes
-     * @method getContainerNodes
-     * @return {Array} array of HTMLElement nodes
-     */
-    getContainerNodes : function () {
-        return this._containers;
-    },
-
-    /**
-     * Get the total number of pages in the data set according to the current
-     * rowsPerPage and totalRecords values.  If totalRecords is not set, or
-     * set to YAHOO.widget.Paginator.VALUE_UNLIMITED, returns
-     * YAHOO.widget.Paginator.VALUE_UNLIMITED.
-     * @method getTotalPages
-     * @return {number}
-     */
-    getTotalPages : function () {
-        var records = this.get('totalRecords');
-        var perPage = this.get('rowsPerPage');
-
-        // rowsPerPage not set.  Can't calculate
-        if (!perPage) {
-            return null;
-        }
-
-        if (records === YAHOO.widget.Paginator.VALUE_UNLIMITED) {
-            return YAHOO.widget.Paginator.VALUE_UNLIMITED;
-        }
-
-        return Math.ceil(records/perPage);
-    },
-
-    /**
-     * Does the requested page have any records?
-     * @method hasPage
-     * @param page {number} the page in question
-     * @return {boolean}
-     */
-    hasPage : function (page) {
-        if (!YAHOO.lang.isNumber(page) || page < 1) {
-            return false;
-        }
-
-        var totalPages = this.getTotalPages();
-
-        return (totalPages === YAHOO.widget.Paginator.VALUE_UNLIMITED || totalPages >= page);
-    },
-
-    /**
-     * Get the page number corresponding to the current record offset.
-     * @method getCurrentPage
-     * @return {number}
-     */
-    getCurrentPage : function () {
-        var perPage = this.get('rowsPerPage');
-        if (!perPage || !this.get('totalRecords')) {
-            return 0;
-        }
-        return Math.floor(this.get('recordOffset') / perPage) + 1;
-    },
-
-    /**
-     * Are there records on the next page?
-     * @method hasNextPage
-     * @return {boolean}
-     */
-    hasNextPage : function () {
-        var currentPage = this.getCurrentPage(),
-            totalPages  = this.getTotalPages();
-
-        return currentPage && (totalPages === YAHOO.widget.Paginator.VALUE_UNLIMITED || currentPage < totalPages);
-    },
-
-    /**
-     * Get the page number of the next page, or null if the current page is the
-     * last page.
-     * @method getNextPage
-     * @return {number}
-     */
-    getNextPage : function () {
-        return this.hasNextPage() ? this.getCurrentPage() + 1 : null;
-    },
-
-    /**
-     * Is there a page before the current page?
-     * @method hasPreviousPage
-     * @return {boolean}
-     */
-    hasPreviousPage : function () {
-        return (this.getCurrentPage() > 1);
-    },
-
-    /**
-     * Get the page number of the previous page, or null if the current page
-     * is the first page.
-     * @method getPreviousPage
-     * @return {number}
-     */
-    getPreviousPage : function () {
-        return (this.hasPreviousPage() ? this.getCurrentPage() - 1 : 1);
-    },
-
-    /**
-     * Get the start and end record indexes of the specified page.
-     * @method getPageRecords
-     * @param page {number} (optional) The page (current page if not specified)
-     * @return {Array} [start_index, end_index]
-     */
-    getPageRecords : function (page) {
-        if (!YAHOO.lang.isNumber(page)) {
-            page = this.getCurrentPage();
-        }
-
-        var perPage = this.get('rowsPerPage'),
-            records = this.get('totalRecords'),
-            start, end;
-
-        if (!page || !perPage) {
-            return null;
-        }
-
-        start = (page - 1) * perPage;
-        if (records !== YAHOO.widget.Paginator.VALUE_UNLIMITED) {
-            if (start >= records) {
-                return null;
-            }
-            end = Math.min(start + perPage, records) - 1;
-        } else {
-            end = start + perPage - 1;
-        }
-
-        return [start,end];
-    },
-
-    /**
-     * Set the current page to the provided page number if possible.
-     * @method setPage
-     * @param newPage {number} the new page number
-     * @param silent {boolean} whether to forcibly avoid firing the
-     * changeRequest event
-     */
-    setPage : function (page,silent) {
-        if (this.hasPage(page) && page !== this.getCurrentPage()) {
-            if (this.get('updateOnChange') || silent) {
-                this.set('recordOffset', (page - 1) * this.get('rowsPerPage'));
-            } else {
-                this.fireEvent('changeRequest',this.getState({'page':page}));
-            }
-        }
-    },
-
-    /**
-     * Get the number of rows per page.
-     * @method getRowsPerPage
-     * @return {number} the current setting of the rowsPerPage attribute
-     */
-    getRowsPerPage : function () {
-        return this.get('rowsPerPage');
-    },
-
-    /**
-     * Set the number of rows per page.
-     * @method setRowsPerPage
-     * @param rpp {number} the new number of rows per page
-     * @param silent {boolean} whether to forcibly avoid firing the
-     * changeRequest event
-     */
-    setRowsPerPage : function (rpp,silent) {
-        if (YAHOO.lang.isNumber(rpp) && rpp > 0 &&
-            rpp !== this.get('rowsPerPage')) {
-            if (this.get('updateOnChange') || silent) {
-                this.set('rowsPerPage',rpp);
-            } else {
-                this.fireEvent('changeRequest',
-                    this.getState({'rowsPerPage':rpp}));
-            }
-        }
-    },
-
-    /**
-     * Get the total number of records.
-     * @method getTotalRecords
-     * @return {number} the current setting of totalRecords attribute
-     */
-    getTotalRecords : function () {
-        return this.get('totalRecords');
-    },
-
-    /**
-     * Set the total number of records.
-     * @method setTotalRecords
-     * @param total {number} the new total number of records
-     * @param silent {boolean} whether to forcibly avoid firing the changeRequest event
-     */
-    setTotalRecords : function (total,silent) {
-        if (YAHOO.lang.isNumber(total) && total >= 0 &&
-            total !== this.get('totalRecords')) {
-            if (this.get('updateOnChange') || silent) {
-                this.set('totalRecords',total);
-            } else {
-                this.fireEvent('changeRequest',
-                    this.getState({'totalRecords':total}));
-            }
-        }
-    },
-
-    /**
-     * Get the index of the first record on the current page
-     * @method getStartIndex
-     * @return {number} the index of the first record on the current page
-     */
-    getStartIndex : function () {
-        return this.get('recordOffset');
-    },
-
-    /**
-     * Move the record offset to a new starting index.  This will likely cause
-     * the calculated current page to change.  You should probably use setPage.
-     * @method setStartIndex
-     * @param offset {number} the new record offset
-     * @param silent {boolean} whether to forcibly avoid firing the changeRequest event
-     */
-    setStartIndex : function (offset,silent) {
-        if (YAHOO.lang.isNumber(offset) && offset >= 0 &&
-            offset !== this.get('recordOffset')) {
-            if (this.get('updateOnChange') || silent) {
-                this.set('recordOffset',offset);
-            } else {
-                this.fireEvent('changeRequest',
-                    this.getState({'recordOffset':offset}));
-            }
-        }
-    },
-
-    /**
-     * Get an object literal describing the current state of the paginator.  If
-     * an object literal of proposed values is passed, the proposed state will
-     * be returned as an object literal with the following keys:
-     * <ul>
-     * <li>paginator - instance of the Paginator</li>
-     * <li>page - number</li>
-     * <li>totalRecords - number</li>
-     * <li>recordOffset - number</li>
-     * <li>rowsPerPage - number</li>
-     * <li>records - [ start_index, end_index ]</li>
-     * <li>before - (OPTIONAL) { state object literal for current state }</li>
-     * </ul>
-     * @method getState
-     * @return {object}
-     * @param changes {object} OPTIONAL object literal with proposed values
-     * Supported change keys include:
-     * <ul>
-     * <li>rowsPerPage</li>
-     * <li>totalRecords</li>
-     * <li>recordOffset OR</li>
-     * <li>page</li>
-     * </ul>
-     */
-    getState : function (changes) {
-        var UNLIMITED = YAHOO.widget.Paginator.VALUE_UNLIMITED,
-            l         = YAHOO.lang,
-            M = Math, min = M.min, max = M.max, floor = M.floor, ceil = M.ceil,
-            currentState, state, offset;
-
-        function normalizeOffset(offset,total,rpp) {
-            if (offset <= 0 || total === 0) {
-                return 0;
-            }
-            if (total === UNLIMITED || total > offset) {
-                return offset - (offset % rpp);
-            }
-            return total - (total % rpp || rpp);
-        }
-
-        currentState = {
-            paginator    : this,
-            totalRecords : this.get('totalRecords'),
-            rowsPerPage  : this.get('rowsPerPage'),
-            records      : this.getPageRecords()
-        };
-        currentState.recordOffset = normalizeOffset(
-                                        this.get('recordOffset'),
-                                        currentState.totalRecords,
-                                        currentState.rowsPerPage);
-        currentState.page = ceil(currentState.recordOffset /
-                                 currentState.rowsPerPage) + 1;
-
-        if (!changes) {
-            return currentState;
-        }
-
-        state = {
-            paginator    : this,
-            before       : currentState,
-
-            rowsPerPage  : changes.rowsPerPage || currentState.rowsPerPage,
-            totalRecords : (l.isNumber(changes.totalRecords) ?
-                                max(changes.totalRecords,UNLIMITED) :
-                                currentState.totalRecords)
-        };
-
-        if (state.totalRecords === 0) {
-            state.recordOffset =
-            state.page         = 0;
-        } else {
-            offset = l.isNumber(changes.page) ?
-                        (changes.page - 1) * state.rowsPerPage :
-                        l.isNumber(changes.recordOffset) ?
-                            changes.recordOffset :
-                            currentState.recordOffset;
-
-            state.recordOffset = normalizeOffset(offset,
-                                    state.totalRecords,
-                                    state.rowsPerPage);
-
-            state.page = ceil(state.recordOffset / state.rowsPerPage) + 1;
-        }
-
-        state.records = [ state.recordOffset,
-                          state.recordOffset + state.rowsPerPage - 1 ];
-
-        // limit upper index to totalRecords - 1
-        if (state.totalRecords !== UNLIMITED &&
-            state.recordOffset < state.totalRecords && state.records &&
-            state.records[1] > state.totalRecords - 1) {
-            state.records[1] = state.totalRecords - 1;
-        }
-
-        return state;
-    },
-
-    /**
-     * Convenience method to facilitate setting state attributes rowsPerPage,
-     * totalRecords, recordOffset in batch.  Also supports calculating
-     * recordOffset from state.page if state.recordOffset is not provided.
-     * Fires only a single pageChange event, if appropriate.
-     * This will not fire a changeRequest event.
-     * @method setState
-     * @param state {Object} Object literal of attribute:value pairs to set
-     */
-    setState : function (state) {
-        if (YAHOO.lang.isObject(state)) {
-            // get flux state based on current state with before state as well
-            this._state = this.getState({});
-
-            // use just the state props from the input obj
-            state = {
-                page         : state.page,
-                rowsPerPage  : state.rowsPerPage,
-                totalRecords : state.totalRecords,
-                recordOffset : state.recordOffset
-            };
-
-            // calculate recordOffset from page if recordOffset not specified.
-            // not using lang.isNumber for support of numeric strings
-            if (state.page && state.recordOffset === undefined) {
-                state.recordOffset = (state.page - 1) *
-                    (state.rowsPerPage || this.get('rowsPerPage'));
-            }
-
-            this._batch = true;
-            this._pageChanged = false;
-
-            for (var k in state) {
-                if (state.hasOwnProperty(k)) {
-                    this.set(k,state[k]);
-                }
-            }
-
-            this._batch = false;
-            
-            if (this._pageChanged) {
-                this._pageChanged = false;
-
-                this._firePageChange(this.getState(this._state));
-            }
-        }
-    }
-};
-
-YAHOO.lang.augmentProto(YAHOO.widget.Paginator, YAHOO.util.AttributeProvider);
-(function () {
-
-var Paginator = YAHOO.widget.Paginator,
-    l         = YAHOO.lang;
-
-/**
- * ui Component to generate the textual report of current pagination status.
- * E.g. "Now viewing page 1 of 13".
- *
- * @namespace YAHOO.widget.Paginator.ui
- * @class CurrentPageReport
- * @for YAHOO.widget.Paginator
- *
- * @constructor
- * @param p {Pagintor} Paginator instance to attach to
- */
-Paginator.ui.CurrentPageReport = function (p) {
-    this.paginator = p;
-
-    p.createEvent('pageReportClassChange');
-    p.createEvent('pageReportTemplateChange');
-
-    p.subscribe('recordOffsetChange', this.update,this,true);
-    p.subscribe('rowsPerPageChange', this.update,this,true);
-    p.subscribe('totalRecordsChange',this.update,this,true);
-    p.subscribe('pageReportTemplateChange', this.update,this,true);
-    p.subscribe('destroy',this.destroy,this,true);
-
-    //TODO: make this work
-    p.subscribe('pageReportClassChange', this.update,this,true);
-};
-
-/**
- * Decorates Paginator instances with new attributes. Called during
- * Paginator instantiation.
- * @method init
- * @param p {Paginator} Paginator instance to decorate
- * @static
- */
-Paginator.ui.CurrentPageReport.init = function (p) {
-
-    /**
-     * CSS class assigned to the span containing the info.
-     * @attribute pageReportClass
-     * @default 'yui-pg-current'
-     */
-    p.setAttributeConfig('pageReportClass', {
-        value : 'yui-pg-current',
-        validator : l.isString
-    });
-
-    /**
-     * Used as innerHTML for the span.  Place holders in the form of {name}
-     * will be replaced with the so named value from the key:value map
-     * generated by the function held in the pageReportValueGenerator attribute.
-     * @attribute pageReportTemplate
-     * @default '({currentPage} of {totalPages})'
-     * @see pageReportValueGenerator attribute
-     */
-    p.setAttributeConfig('pageReportTemplate', {
-        value : '({currentPage} of {totalPages})',
-        validator : l.isString
-    });
-
-    /**
-     * Function to generate the value map used to populate the
-     * pageReportTemplate.  The function is passed the Paginator instance as a
-     * parameter.  The default function returns a map with the following keys:
-     * <ul>
-     * <li>currentPage</li>
-     * <li>totalPages</li>
-     * <li>startIndex</li>
-     * <li>endIndex</li>
-     * <li>startRecord</li>
-     * <li>endRecord</li>
-     * <li>totalRecords</li>
-     * </ul>
-     * @attribute pageReportValueGenarator
-     */
-    p.setAttributeConfig('pageReportValueGenerator', {
-        value : function (paginator) {
-            var curPage = paginator.getCurrentPage(),
-                records = paginator.getPageRecords();
-
-            return {
-                'currentPage' : records ? curPage : 0,
-                'totalPages'  : paginator.getTotalPages(),
-                'startIndex'  : records ? records[0] : 0,
-                'endIndex'    : records ? records[1] : 0,
-                'startRecord' : records ? records[0] + 1 : 0,
-                'endRecord'   : records ? records[1] + 1 : 0,
-                'totalRecords': paginator.get('totalRecords')
-            };
-        },
-        validator : l.isFunction
-    });
-};
-
-/**
- * Replace place holders in a string with the named values found in an
- * object literal.
- * @static
- * @method sprintf
- * @param template {string} The content string containing place holders
- * @param values {object} The key:value pairs used to replace the place holders
- * @return {string}
- */
-Paginator.ui.CurrentPageReport.sprintf = function (template, values) {
-    return template.replace(/\{([\w\s\-]+)\}/g, function (x,key) {
-            return (key in values) ? values[key] : '';
-        });
-};
-
-Paginator.ui.CurrentPageReport.prototype = {
-
-    /**
-     * Span node containing the formatted info
-     * @property span
-     * @type HTMLElement
-     * @private
-     */
-    span : null,
-
-
-    /**
-     * Generate the span containing info formatted per the pageReportTemplate
-     * attribute.
-     * @method render
-     * @param id_base {string} used to create unique ids for generated nodes
-     * @return {HTMLElement}
-     */
-    render : function (id_base) {
-        this.span = document.createElement('span');
-        this.span.id        = id_base + '-page-report';
-        this.span.className = this.paginator.get('pageReportClass');
-        this.update();
-        
-        return this.span;
-    },
-    
-    /**
-     * Regenerate the content of the span if appropriate. Calls
-     * CurrentPageReport.sprintf with the value of the pageReportTemplate
-     * attribute and the value map returned from pageReportValueGenerator
-     * function.
-     * @method update
-     * @param e {CustomEvent} The calling change event
-     */
-    update : function (e) {
-        if (e && e.prevValue === e.newValue) {
-            return;
-        }
-
-        this.span.innerHTML = Paginator.ui.CurrentPageReport.sprintf(
-            this.paginator.get('pageReportTemplate'),
-            this.paginator.get('pageReportValueGenerator')(this.paginator));
-    },
-
-    /**
-     * Removes the link/span node and clears event listeners
-     * removal.
-     * @method destroy
-     * @private
-     */
-    destroy : function () {
-        this.span.parentNode.removeChild(this.span);
-        this.span = null;
-    }
-
-};
-
-})();
-(function () {
-
-var Paginator = YAHOO.widget.Paginator,
-    l         = YAHOO.lang;
-
-/**
- * ui Component to generate the page links
- *
- * @namespace YAHOO.widget.Paginator.ui
- * @class PageLinks
- * @for YAHOO.widget.Paginator
- *
- * @constructor
- * @param p {Pagintor} Paginator instance to attach to
- */
-Paginator.ui.PageLinks = function (p) {
-    this.paginator = p;
-
-    p.createEvent('pageLinkClassChange');
-    p.createEvent('currentPageClassChange');
-    p.createEvent('pageLinksContainerClassChange');
-    p.createEvent('pageLinksChange');
-
-    p.subscribe('recordOffsetChange',this.update,this,true);
-    p.subscribe('rowsPerPageChange',this.update,this,true);
-    p.subscribe('totalRecordsChange',this.update,this,true);
-    p.subscribe('pageLinksChange',   this.rebuild,this,true);
-    p.subscribe('pageLinkClassChange', this.rebuild,this,true);
-    p.subscribe('currentPageClassChange', this.rebuild,this,true);
-    p.subscribe('destroy',this.destroy,this,true);
-
-    //TODO: Make this work
-    p.subscribe('pageLinksContainerClassChange', this.rebuild,this,true);
-};
-
-/**
- * Decorates Paginator instances with new attributes. Called during
- * Paginator instantiation.
- * @method init
- * @param p {Paginator} Paginator instance to decorate
- * @static
- */
-Paginator.ui.PageLinks.init = function (p) {
-
-    /**
-     * CSS class assigned to each page link/span.
-     * @attribute pageLinkClass
-     * @default 'yui-pg-page'
-     */
-    p.setAttributeConfig('pageLinkClass', {
-        value : 'yui-pg-page',
-        validator : l.isString
-    });
-
-    /**
-     * CSS class assigned to the current page span.
-     * @attribute currentPageClass
-     * @default 'yui-pg-current-page'
-     */
-    p.setAttributeConfig('currentPageClass', {
-        value : 'yui-pg-current-page',
-        validator : l.isString
-    });
-
-    /**
-     * CSS class assigned to the span containing the page links.
-     * @attribute pageLinksContainerClass
-     * @default 'yui-pg-pages'
-     */
-    p.setAttributeConfig('pageLinksContainerClass', {
-        value : 'yui-pg-pages',
-        validator : l.isString
-    });
-
-    /**
-     * Maximum number of page links to display at one time.
-     * @attribute pageLinks
-     * @default 10
-     */
-    p.setAttributeConfig('pageLinks', {
-        value : 10,
-        validator : l.isNumber
-    });
-
-    /**
-     * Function used generate the innerHTML for each page link/span.  The
-     * function receives as parameters the page number and a reference to the
-     * paginator object.
-     * @attribute pageLabelBuilder
-     * @default function (page, paginator) { return page; }
-     */
-    p.setAttributeConfig('pageLabelBuilder', {
-        value : function (page, paginator) { return page; },
-        validator : l.isFunction
-    });
-};
-
-/**
- * Calculates start and end page numbers given a current page, attempting
- * to keep the current page in the middle
- * @static
- * @method calculateRange
- * @param {int} currentPage  The current page
- * @param {int} totalPages   (optional) Maximum number of pages
- * @param {int} numPages     (optional) Preferred number of pages in range
- * @return {Array} [start_page_number, end_page_number]
- */
-Paginator.ui.PageLinks.calculateRange = function (currentPage,totalPages,numPages) {
-    var UNLIMITED = Paginator.VALUE_UNLIMITED,
-        start, end, delta;
-
-    // Either has no pages, or unlimited pages.  Show none.
-    if (!currentPage || numPages === 0 || totalPages === 0 ||
-        (totalPages === UNLIMITED && numPages === UNLIMITED)) {
-        return [0,-1];
-    }
-
-    // Limit requested pageLinks if there are fewer totalPages
-    if (totalPages !== UNLIMITED) {
-        numPages = numPages === UNLIMITED ?
-                    totalPages :
-                    Math.min(numPages,totalPages);
-    }
-
-    // Determine start and end, trying to keep current in the middle
-    start = Math.max(1,Math.ceil(currentPage - (numPages/2)));
-    if (totalPages === UNLIMITED) {
-        end = start + numPages - 1;
-    } else {
-        end = Math.min(totalPages, start + numPages - 1);
-    }
-
-    // Adjust the start index when approaching the last page
-    delta = numPages - (end - start + 1);
-    start = Math.max(1, start - delta);
-
-    return [start,end];
-};
-
-
-Paginator.ui.PageLinks.prototype = {
-
-    /**
-     * Current page
-     * @property current
-     * @type number
-     * @private
-     */
-    current     : 0,
-
-    /**
-     * Span node containing the page links
-     * @property container
-     * @type HTMLElement
-     * @private
-     */
-    container   : null,
-
-
-    /**
-     * Generate the nodes and return the container node containing page links
-     * appropriate to the current pagination state.
-     * @method render
-     * @param id_base {string} used to create unique ids for generated nodes
-     * @return {HTMLElement}
-     */
-    render : function (id_base) {
-        var p = this.paginator;
-
-        // Set up container
-        this.container = document.createElement('span');
-        this.container.id        = id_base + '-pages';
-        this.container.className = p.get('pageLinksContainerClass');
-        YAHOO.util.Event.on(this.container,'click',this.onClick,this,true);
-
-        // Call update, flagging a need to rebuild
-        this.update({newValue : null, rebuild : true});
-
-        return this.container;
-    },
-
-    /**
-     * Update the links if appropriate
-     * @method update
-     * @param e {CustomEvent} The calling change event
-     */
-    update : function (e) {
-        if (e && e.prevValue === e.newValue) {
-            return;
-        }
-
-        var p           = this.paginator,
-            currentPage = p.getCurrentPage();
-
-        // Replace content if there's been a change
-        if (this.current !== currentPage || !currentPage || e.rebuild) {
-            var labelBuilder = p.get('pageLabelBuilder'),
-                range        = Paginator.ui.PageLinks.calculateRange(
-                                currentPage,
-                                p.getTotalPages(),
-                                p.get('pageLinks')),
-                start        = range[0],
-                end          = range[1],
-                content      = '',
-                linkTemplate,i;
-
-            linkTemplate = '<a href="#" class="' + p.get('pageLinkClass') +
-                           '" page="';
-            for (i = start; i <= end; ++i) {
-                if (i === currentPage) {
-                    content +=
-                        '<span class="' + p.get('currentPageClass') + ' ' +
-                                          p.get('pageLinkClass') + '">' +
-                        labelBuilder(i,p) + '</span>';
-                } else {
-                    content +=
-                        linkTemplate + i + '">' + labelBuilder(i,p) + '</a>';
-                }
-            }
-
-            this.container.innerHTML = content;
-        }
-    },
-
-    /**
-     * Force a rebuild of the page links.
-     * @method rebuild
-     * @param e {CustomEvent} The calling change event
-     */
-    rebuild     : function (e) {
-        e.rebuild = true;
-        this.update(e);
-    },
-
-    /**
-     * Removes the page links container node and clears event listeners
-     * @method destroy
-     * @private
-     */
-    destroy : function () {
-        YAHOO.util.Event.purgeElement(this.container,true);
-        this.container.parentNode.removeChild(this.container);
-        this.container = null;
-    },
-
-    /**
-     * Listener for the container's onclick event.  Looks for qualifying link
-     * clicks, and pulls the page number from the link's page attribute.
-     * Sends link's page attribute to the Paginator's setPage method.
-     * @method onClick
-     * @param e {DOMEvent} The click event
-     */
-    onClick : function (e) {
-        var t = YAHOO.util.Event.getTarget(e);
-        if (t && YAHOO.util.Dom.hasClass(t,
-                        this.paginator.get('pageLinkClass'))) {
-
-            YAHOO.util.Event.stopEvent(e);
-
-            this.paginator.setPage(parseInt(t.getAttribute('page'),10));
-        }
-    }
-
-};
-
-})();
-(function () {
-
-var Paginator = YAHOO.widget.Paginator,
-    l         = YAHOO.lang;
-
-/**
- * ui Component to generate the link to jump to the first page.
- *
- * @namespace YAHOO.widget.Paginator.ui
- * @class FirstPageLink
- * @for YAHOO.widget.Paginator
- *
- * @constructor
- * @param p {Pagintor} Paginator instance to attach to
- */
-Paginator.ui.FirstPageLink = function (p) {
-    this.paginator = p;
-
-    p.createEvent('firstPageLinkLabelChange');
-    p.createEvent('firstPageLinkClassChange');
-
-    p.subscribe('recordOffsetChange',this.update,this,true);
-    p.subscribe('rowsPerPageChange',this.update,this,true);
-    p.subscribe('totalRecordsChange',this.update,this,true);
-    p.subscribe('destroy',this.destroy,this,true);
-
-    // TODO: make this work
-    p.subscribe('firstPageLinkLabelChange',this.update,this,true);
-    p.subscribe('firstPageLinkClassChange',this.update,this,true);
-};
-
-/**
- * Decorates Paginator instances with new attributes. Called during
- * Paginator instantiation.
- * @method init
- * @param p {Paginator} Paginator instance to decorate
- * @static
- */
-Paginator.ui.FirstPageLink.init = function (p) {
-
-    /**
-     * Used as innerHTML for the first page link/span.
-     * @attribute firstPageLinkLabel
-     * @default '&lt;&lt;&nbsp;first'
-     */
-    p.setAttributeConfig('firstPageLinkLabel', {
-        value : '&lt;&lt;&nbsp;first',
-        validator : l.isString
-    });
-
-    /**
-     * CSS class assigned to the link/span
-     * @attribute firstPageLinkClass
-     * @default 'yui-pg-first'
-     */
-    p.setAttributeConfig('firstPageLinkClass', {
-        value : 'yui-pg-first',
-        validator : l.isString
-    });
-};
-
-// Instance members and methods
-Paginator.ui.FirstPageLink.prototype = {
-
-    /**
-     * The currently placed HTMLElement node
-     * @property current
-     * @type HTMLElement
-     * @private
-     */
-    current   : null,
-
-    /**
-     * Link node
-     * @property link
-     * @type HTMLElement
-     * @private
-     */
-    link      : null,
-
-    /**
-     * Span node (inactive link)
-     * @property span
-     * @type HTMLElement
-     * @private
-     */
-    span      : null,
-
-    /**
-     * Generate the nodes and return the appropriate node given the current
-     * pagination state.
-     * @method render
-     * @param id_base {string} used to create unique ids for generated nodes
-     * @return {HTMLElement}
-     */
-    render : function (id_base) {
-        var p     = this.paginator,
-            c     = p.get('firstPageLinkClass'),
-            label = p.get('firstPageLinkLabel');
-
-        this.link     = document.createElement('a');
-        this.span     = document.createElement('span');
-
-        this.link.id        = id_base + '-first-link';
-        this.link.href      = '#';
-        this.link.className = c;
-        this.link.innerHTML = label;
-        YAHOO.util.Event.on(this.link,'click',this.onClick,this,true);
-
-        this.span.id        = id_base + '-first-span';
-        this.span.className = c;
-        this.span.innerHTML = label;
-
-        this.current = p.get('recordOffset') < 1 ? this.span : this.link;
-        return this.current;
-    },
-
-    /**
-     * Swap the link and span nodes if appropriate.
-     * @method update
-     * @param e {CustomEvent} The calling change event
-     */
-    update : function (e) {
-        if (e && e.prevValue === e.newValue) {
-            return;
-        }
-
-        var par = this.current ? this.current.parentNode : null;
-        if (this.paginator.get('recordOffset') < 1) {
-            if (par && this.current === this.link) {
-                par.replaceChild(this.span,this.current);
-                this.current = this.span;
-            }
-        } else {
-            if (par && this.current === this.span) {
-                par.replaceChild(this.link,this.current);
-                this.current = this.link;
-            }
-        }
-    },
-
-    /**
-     * Removes the link/span node and clears event listeners
-     * removal.
-     * @method destroy
-     * @private
-     */
-    destroy : function () {
-        YAHOO.util.Event.purgeElement(this.link);
-        this.current.parentNode.removeChild(this.current);
-        this.link = this.span = null;
-    },
-
-    /**
-     * Listener for the link's onclick event.  Pass new value to setPage method.
-     * @method onClick
-     * @param e {DOMEvent} The click event
-     */
-    onClick : function (e) {
-        YAHOO.util.Event.stopEvent(e);
-        this.paginator.setPage(1);
-    }
-};
-
-})();
-(function () {
-
-var Paginator = YAHOO.widget.Paginator,
-    l         = YAHOO.lang;
-
-/**
- * ui Component to generate the link to jump to the last page.
- *
- * @namespace YAHOO.widget.Paginator.ui
- * @class LastPageLink
- * @for YAHOO.widget.Paginator
- *
- * @constructor
- * @param p {Pagintor} Paginator instance to attach to
- */
-Paginator.ui.LastPageLink = function (p) {
-    this.paginator = p;
-
-    p.createEvent('lastPageLinkLabelChange');
-    p.createEvent('lastPageLinkClassChange');
-
-    p.subscribe('recordOffsetChange',this.update,this,true);
-    p.subscribe('rowsPerPageChange',this.update,this,true);
-    p.subscribe('totalRecordsChange',this.update,this,true);
-    p.subscribe('destroy',this.destroy,this,true);
-
-    // TODO: make this work
-    p.subscribe('lastPageLinkLabelChange',this.update,this,true);
-    p.subscribe('lastPageLinkClassChange', this.update,this,true);
-};
-
-/**
- * Decorates Paginator instances with new attributes. Called during
- * Paginator instantiation.
- * @method init
- * @param paginator {Paginator} Paginator instance to decorate
- * @static
- */
-Paginator.ui.LastPageLink.init = function (p) {
-
-    /**
-     * Used as innerHTML for the last page link/span.
-     * @attribute lastPageLinkLabel
-     * @default 'last&nbsp;&gt;&gt;'
-     */
-    p.setAttributeConfig('lastPageLinkLabel', {
-        value : 'last&nbsp;&gt;&gt;',
-        validator : l.isString
-    });
-
-    /**
-     * CSS class assigned to the link/span
-     * @attribute lastPageLinkClass
-     * @default 'yui-pg-last'
-     */
-    p.setAttributeConfig('lastPageLinkClass', {
-        value : 'yui-pg-last',
-        validator : l.isString
-    });
-};
-
-Paginator.ui.LastPageLink.prototype = {
-
-    /**
-     * Currently placed HTMLElement node
-     * @property current
-     * @type HTMLElement
-     * @private
-     */
-    current   : null,
-
-    /**
-     * Link HTMLElement node
-     * @property link
-     * @type HTMLElement
-     * @private
-     */
-    link      : null,
-
-    /**
-     * Span node (inactive link)
-     * @property span
-     * @type HTMLElement
-     * @private
-     */
-    span      : null,
-
-    /**
-     * Empty place holder node for when the last page link is inappropriate to
-     * display in any form (unlimited paging).
-     * @property na
-     * @type HTMLElement
-     * @private
-     */
-    na        : null,
-
-
-    /**
-     * Generate the nodes and return the appropriate node given the current
-     * pagination state.
-     * @method render
-     * @param id_base {string} used to create unique ids for generated nodes
-     * @return {HTMLElement}
-     */
-    render : function (id_base) {
-        var p     = this.paginator,
-            c     = p.get('lastPageLinkClass'),
-            label = p.get('lastPageLinkLabel'),
-            last  = p.getTotalPages();
-
-        this.link = document.createElement('a');
-        this.span = document.createElement('span');
-        this.na   = this.span.cloneNode(false);
-
-        this.link.id        = id_base + '-last-link';
-        this.link.href      = '#';
-        this.link.className = c;
-        this.link.innerHTML = label;
-        YAHOO.util.Event.on(this.link,'click',this.onClick,this,true);
-
-        this.span.id        = id_base + '-last-span';
-        this.span.className = c;
-        this.span.innerHTML = label;
-
-        this.na.id = id_base + '-last-na';
-
-        switch (last) {
-            case Paginator.VALUE_UNLIMITED :
-                    this.current = this.na; break;
-            case p.getCurrentPage() :
-                    this.current = this.span; break;
-            default :
-                    this.current = this.link;
-        }
-
-        return this.current;
-    },
-
-    /**
-     * Swap the link, span, and na nodes if appropriate.
-     * @method update
-     * @param e {CustomEvent} The calling change event (ignored)
-     */
-    update : function (e) {
-        if (e && e.prevValue === e.newValue) {
-            return;
-        }
-
-        var par   = this.current ? this.current.parentNode : null,
-            after = this.link;
-
-        if (par) {
-            switch (this.paginator.getTotalPages()) {
-                case Paginator.VALUE_UNLIMITED :
-                        after = this.na; break;
-                case this.paginator.getCurrentPage() :
-                        after = this.span; break;
-            }
-
-            if (this.current !== after) {
-                par.replaceChild(after,this.current);
-                this.current = after;
-            }
-        }
-    },
-
-    /**
-     * Removes the link/span node and clears event listeners
-     * @method destroy
-     * @private
-     */
-    destroy : function () {
-        YAHOO.util.Event.purgeElement(this.link);
-        this.current.parentNode.removeChild(this.current);
-        this.link = this.span = null;
-    },
-
-    /**
-     * Listener for the link's onclick event.  Passes to setPage method.
-     * @method onClick
-     * @param e {DOMEvent} The click event
-     */
-    onClick : function (e) {
-        YAHOO.util.Event.stopEvent(e);
-        this.paginator.setPage(this.paginator.getTotalPages());
-    }
-};
-
-})();
-(function () {
-
-var Paginator = YAHOO.widget.Paginator,
-    l         = YAHOO.lang;
-
-/**
- * ui Component to generate the link to jump to the next page.
- *
- * @namespace YAHOO.widget.Paginator.ui
- * @class NextPageLink
- * @for YAHOO.widget.Paginator
- *
- * @constructor
- * @param p {Pagintor} Paginator instance to attach to
- */
-Paginator.ui.NextPageLink = function (p) {
-    this.paginator = p;
-
-    p.createEvent('nextPageLinkLabelChange');
-    p.createEvent('nextPageLinkClassChange');
-
-    p.subscribe('recordOffsetChange', this.update,this,true);
-    p.subscribe('rowsPerPageChange', this.update,this,true);
-    p.subscribe('totalRecordsChange', this.update,this,true);
-    p.subscribe('destroy',this.destroy,this,true);
-
-    // TODO: make this work
-    p.subscribe('nextPageLinkLabelChange', this.update,this,true);
-    p.subscribe('nextPageLinkClassChange', this.update,this,true);
-};
-
-/**
- * Decorates Paginator instances with new attributes. Called during
- * Paginator instantiation.
- * @method init
- * @param p {Paginator} Paginator instance to decorate
- * @static
- */
-Paginator.ui.NextPageLink.init = function (p) {
-
-    /**
-     * Used as innerHTML for the next page link/span.
-     * @attribute nextPageLinkLabel
-     * @default 'next&nbsp;&gt;'
-     */
-    p.setAttributeConfig('nextPageLinkLabel', {
-        value : 'next&nbsp;&gt;',
-        validator : l.isString
-    });
-
-    /**
-     * CSS class assigned to the link/span
-     * @attribute nextPageLinkClass
-     * @default 'yui-pg-next'
-     */
-    p.setAttributeConfig('nextPageLinkClass', {
-        value : 'yui-pg-next',
-        validator : l.isString
-    });
-};
-
-Paginator.ui.NextPageLink.prototype = {
-
-    /**
-     * Currently placed HTMLElement node
-     * @property current
-     * @type HTMLElement
-     * @private
-     */
-    current   : null,
-
-    /**
-     * Link node
-     * @property link
-     * @type HTMLElement
-     * @private
-     */
-    link      : null,
-
-    /**
-     * Span node (inactive link)
-     * @property span
-     * @type HTMLElement
-     * @private
-     */
-    span      : null,
-
-
-    /**
-     * Generate the nodes and return the appropriate node given the current
-     * pagination state.
-     * @method render
-     * @param id_base {string} used to create unique ids for generated nodes
-     * @return {HTMLElement}
-     */
-    render : function (id_base) {
-        var p     = this.paginator,
-            c     = p.get('nextPageLinkClass'),
-            label = p.get('nextPageLinkLabel'),
-            last  = p.getTotalPages();
-
-        this.link     = document.createElement('a');
-        this.span     = document.createElement('span');
-
-        this.link.id        = id_base + '-next-link';
-        this.link.href      = '#';
-        this.link.className = c;
-        this.link.innerHTML = label;
-        YAHOO.util.Event.on(this.link,'click',this.onClick,this,true);
-
-        this.span.id        = id_base + '-next-span';
-        this.span.className = c;
-        this.span.innerHTML = label;
-
-        this.current = p.getCurrentPage() === last ? this.span : this.link;
-
-        return this.current;
-    },
-
-    /**
-     * Swap the link and span nodes if appropriate.
-     * @method update
-     * @param e {CustomEvent} The calling change event
-     */
-    update : function (e) {
-        if (e && e.prevValue === e.newValue) {
-            return;
-        }
-
-        var last = this.paginator.getTotalPages(),
-            par  = this.current ? this.current.parentNode : null;
-
-        if (this.paginator.getCurrentPage() !== last) {
-            if (par && this.current === this.span) {
-                par.replaceChild(this.link,this.current);
-                this.current = this.link;
-            }
-        } else if (this.current === this.link) {
-            if (par) {
-                par.replaceChild(this.span,this.current);
-                this.current = this.span;
-            }
-        }
-    },
-
-    /**
-     * Removes the link/span node and clears event listeners
-     * @method destroy
-     * @private
-     */
-    destroy : function () {
-        YAHOO.util.Event.purgeElement(this.link);
-        this.current.parentNode.removeChild(this.current);
-        this.link = this.span = null;
-    },
-
-    /**
-     * Listener for the link's onclick event.  Passes to setPage method.
-     * @method onClick
-     * @param e {DOMEvent} The click event
-     */
-    onClick : function (e) {
-        YAHOO.util.Event.stopEvent(e);
-        this.paginator.setPage(this.paginator.getNextPage());
-    }
-};
-
-})();
-(function () {
-
-var Paginator = YAHOO.widget.Paginator,
-    l         = YAHOO.lang;
-
-/**
- * ui Component to generate the link to jump to the previous page.
- *
- * @namespace YAHOO.widget.Paginator.ui
- * @class PreviousPageLink
- * @for YAHOO.widget.Paginator
- *
- * @constructor
- * @param p {Pagintor} Paginator instance to attach to
- */
-Paginator.ui.PreviousPageLink = function (p) {
-    this.paginator = p;
-
-    p.createEvent('previousPageLinkLabelChange');
-    p.createEvent('previousPageLinkClassChange');
-
-    p.subscribe('recordOffsetChange',this.update,this,true);
-    p.subscribe('rowsPerPageChange',this.update,this,true);
-    p.subscribe('totalRecordsChange',this.update,this,true);
-    p.subscribe('destroy',this.destroy,this,true);
-
-    // TODO: make this work
-    p.subscribe('previousPageLinkLabelChange',this.update,this,true);
-    p.subscribe('previousPageLinkClassChange',this.update,this,true);
-};
-
-/**
- * Decorates Paginator instances with new attributes. Called during
- * Paginator instantiation.
- * @method init
- * @param p {Paginator} Paginator instance to decorate
- * @static
- */
-Paginator.ui.PreviousPageLink.init = function (p) {
-
-    /**
-     * Used as innerHTML for the previous page link/span.
-     * @attribute previousPageLinkLabel
-     * @default '&lt;&nbsp;prev'
-     */
-    p.setAttributeConfig('previousPageLinkLabel', {
-        value : '&lt;&nbsp;prev',
-        validator : l.isString
-    });
-
-    /**
-     * CSS class assigned to the link/span
-     * @attribute previousPageLinkClass
-     * @default 'yui-pg-previous'
-     */
-    p.setAttributeConfig('previousPageLinkClass', {
-        value : 'yui-pg-previous',
-        validator : l.isString
-    });
-};
-
-Paginator.ui.PreviousPageLink.prototype = {
-
-    /**
-     * Currently placed HTMLElement node
-     * @property current
-     * @type HTMLElement
-     * @private
-     */
-    current   : null,
-
-    /**
-     * Link node
-     * @property link
-     * @type HTMLElement
-     * @private
-     */
-    link      : null,
-
-    /**
-     * Span node (inactive link)
-     * @property span
-     * @type HTMLElement
-     * @private
-     */
-    span      : null,
-
-
-    /**
-     * Generate the nodes and return the appropriate node given the current
-     * pagination state.
-     * @method render
-     * @param id_base {string} used to create unique ids for generated nodes
-     * @return {HTMLElement}
-     */
-    render : function (id_base) {
-        var p     = this.paginator,
-            c     = p.get('previousPageLinkClass'),
-            label = p.get('previousPageLinkLabel');
-
-        this.link     = document.createElement('a');
-        this.span     = document.createElement('span');
-
-        this.link.id        = id_base + '-prev-link';
-        this.link.href      = '#';
-        this.link.className = c;
-        this.link.innerHTML = label;
-        YAHOO.util.Event.on(this.link,'click',this.onClick,this,true);
-
-        this.span.id        = id_base + '-prev-span';
-        this.span.className = c;
-        this.span.innerHTML = label;
-
-        this.current = p.get('recordOffset') < 1 ? this.span : this.link;
-        return this.current;
-    },
-
-    /**
-     * Swap the link and span nodes if appropriate.
-     * @method update
-     * @param e {CustomEvent} The calling change event
-     */
-    update : function (e) {
-        if (e && e.prevValue === e.newValue) {
-            return;
-        }
-
-        var par = this.current ? this.current.parentNode : null;
-        if (this.paginator.get('recordOffset') < 1) {
-            if (par && this.current === this.link) {
-                par.replaceChild(this.span,this.current);
-                this.current = this.span;
-            }
-        } else {
-            if (par && this.current === this.span) {
-                par.replaceChild(this.link,this.current);
-                this.current = this.link;
-            }
-        }
-    },
-
-    /**
-     * Removes the link/span node and clears event listeners
-     * @method destroy
-     * @private
-     */
-    destroy : function () {
-        YAHOO.util.Event.purgeElement(this.link);
-        this.current.parentNode.removeChild(this.current);
-        this.link = this.span = null;
-    },
-
-    /**
-     * Listener for the link's onclick event.  Passes to setPage method.
-     * @method onClick
-     * @param e {DOMEvent} The click event
-     */
-    onClick : function (e) {
-        YAHOO.util.Event.stopEvent(e);
-        this.paginator.setPage(this.paginator.getPreviousPage());
-    }
-};
-
-})();
-(function () {
-
-var Paginator = YAHOO.widget.Paginator,
-    l         = YAHOO.lang;
-
-/**
- * ui Component to generate the rows-per-page dropdown
- *
- * @namespace YAHOO.widget.Paginator.ui
- * @class RowsPerPageDropdown
- * @for YAHOO.widget.Paginator
- *
- * @constructor
- * @param p {Pagintor} Paginator instance to attach to
- */
-Paginator.ui.RowsPerPageDropdown = function (p) {
-    this.paginator = p;
-
-    p.createEvent('rowsPerPageOptionsChange');
-    p.createEvent('rowsPerPageDropdownClassChange');
-
-    p.subscribe('rowsPerPageChange',this.update,this,true);
-    p.subscribe('rowsPerPageOptionsChange',this.rebuild,this,true);
-    p.subscribe('destroy',this.destroy,this,true);
-
-    // TODO: make this work
-    p.subscribe('rowsPerPageDropdownClassChange',this.rebuild,this,true);
-};
-
-/**
- * Decorates Paginator instances with new attributes. Called during
- * Paginator instantiation.
- * @method init
- * @param p {Paginator} Paginator instance to decorate
- * @static
- */
-Paginator.ui.RowsPerPageDropdown.init = function (p) {
-
-    /**
-     * Array of available rows-per-page sizes.  Converted into select options.
-     * Array values may be positive integers or object literals in the form<br>
-     * { value : NUMBER, text : STRING }
-     * @attribute rowsPerPageOptions
-     * @default []
-     */
-    p.setAttributeConfig('rowsPerPageOptions', {
-        value : [],
-        validator : l.isArray
-    });
-
-    /**
-     * CSS class assigned to the select node
-     * @attribute rowsPerPageDropdownClass
-     * @default 'yui-pg-rpp-options'
-     */
-    p.setAttributeConfig('rowsPerPageDropdownClass', {
-        value : 'yui-pg-rpp-options',
-        validator : l.isString
-    });
-};
-
-Paginator.ui.RowsPerPageDropdown.prototype = {
-
-    /**
-     * select node
-     * @property select
-     * @type HTMLElement
-     * @private
-     */
-    select  : null,
-
-
-    /**
-     * Generate the select and option nodes and returns the select node.
-     * @method render
-     * @param id_base {string} used to create unique ids for generated nodes
-     * @return {HTMLElement}
-     */
-    render : function (id_base) {
-        this.select = document.createElement('select');
-        this.select.id        = id_base + '-rpp';
-        this.select.className = this.paginator.get('rowsPerPageDropdownClass');
-        this.select.title = 'Rows per page';
-
-        YAHOO.util.Event.on(this.select,'change',this.onChange,this,true);
-
-        this.rebuild();
-
-        return this.select;
-    },
-
-    /**
-     * Select the appropriate option if changed.
-     * @method update
-     * @param e {CustomEvent} The calling change event
-     */
-    update : function (e) {
-        if (e && e.prevValue === e.newValue) {
-            return;
-        }
-
-        var rpp     = this.paginator.get('rowsPerPage'),
-            options = this.select.options,
-            i,len;
-
-        for (i = 0, len = options.length; i < len; ++i) {
-            if (parseInt(options[i].value,10) === rpp) {
-                options[i].selected = true;
-            }
-        }
-    },
-
-
-    /**
-     * (Re)generate the select options.
-     * @method rebuild
-     */
-    rebuild : function (e) {
-        var p       = this.paginator,
-            sel     = this.select,
-            options = p.get('rowsPerPageOptions'),
-            opt_tem = document.createElement('option'),
-            i,len;
-
-        while (sel.firstChild) {
-            sel.removeChild(sel.firstChild);
-        }
-
-        for (i = 0, len = options.length; i < len; ++i) {
-            var node = opt_tem.cloneNode(false),
-                opt  = options[i];
-            node.value = l.isValue(opt.value) ? opt.value : opt;
-            node.innerHTML = l.isValue(opt.text) ? opt.text : opt;
-            sel.appendChild(node);
-        }
-
-        this.update();
-    },
-
-    /**
-     * Removes the select node and clears event listeners
-     * @method destroy
-     * @private
-     */
-    destroy : function () {
-        YAHOO.util.Event.purgeElement(this.select);
-        this.select.parentNode.removeChild(this.select);
-        this.select = null;
-    },
-
-    /**
-     * Listener for the select's onchange event.  Sent to setRowsPerPage method.
-     * @method onChange
-     * @param e {DOMEvent} The change event
-     */
-    onChange : function (e) {
-        this.paginator.setRowsPerPage(
-                parseInt(this.select.options[this.select.selectedIndex].value,10));
-    }
-};
-
-})();
-YAHOO.register("paginator", YAHOO.widget.Paginator, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/profiler/README b/eclipse.org-common/yui/2.6.0/build/profiler/README
deleted file mode 100644
index ddd5b5b..0000000
--- a/eclipse.org-common/yui/2.6.0/build/profiler/README
+++ /dev/null
@@ -1,14 +0,0 @@
-YUI Library - Profiler - Release Notes
-
-2.4.0
-
-  * Beta release
-
-2.5.0
-
-  * No changes
-  
-2.6.0
-
-  * Fixed issue with leaking global "object" variable.
-  * Out of beta
diff --git a/eclipse.org-common/yui/2.6.0/build/profiler/profiler-debug.js b/eclipse.org-common/yui/2.6.0/build/profiler/profiler-debug.js
deleted file mode 100644
index 3dadf13..0000000
--- a/eclipse.org-common/yui/2.6.0/build/profiler/profiler-debug.js
+++ /dev/null
@@ -1,380 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.namespace("tool");
-
-/**
- * The YUI JavaScript profiler.
- * @module profiler
- * @namespace YAHOO.tool
- * @requires yahoo
- */
-
-/**
- * Profiles functions in JavaScript.
- * @namespace YAHOO.tool
- * @class Profiler
- * @static
- */
-YAHOO.tool.Profiler = {
-
-    //-------------------------------------------------------------------------
-    // Private Properties
-    //-------------------------------------------------------------------------
-
-    /**
-     * Container object on which to put the original unprofiled methods.
-     * @type Object
-     * @private
-     * @static
-     * @property _container
-     */
-    _container : new Object(),
-
-    /**
-     * Call information for functions.
-     * @type Object
-     * @private
-     * @static
-     * @property _report
-     */
-    _report : new Object(),
-    
-    //-------------------------------------------------------------------------
-    // Private Methods
-    //-------------------------------------------------------------------------
-    
-    /**
-     * Called when a method ends execution. Marks the start and end time of the 
-     * method so it can calculate how long the function took to execute. Also 
-     * updates min/max/avg calculations for the function.
-     * @param {String} name The name of the function to mark as stopped.
-     * @param {int} duration The number of milliseconds it took the function to
-     *      execute.
-     * @return {Void}
-     * @private
-     * @static
-     */
-    _saveData : function (name /*:String*/, duration /*:int*/){
-        
-        //get the function data
-        var functionData /*:Object*/ = this._report[name];
-    
-        //increment the calls
-        functionData.calls++;
-        functionData.points.push(duration);
-
-        //if it's already been called at least once, do more complex calculations
-        if (functionData.calls > 1) {
-            functionData.avg = ((functionData.avg*(functionData.calls-1))+duration)/functionData.calls;
-            functionData.min = Math.min(functionData.min, duration);
-            functionData.max = Math.max(functionData.max, duration);
-        } else {
-            functionData.avg = duration;
-            functionData.min = duration;
-            functionData.max = duration;
-        }                             
-    
-    },
-
-    //-------------------------------------------------------------------------
-    // Reporting Methods
-    //-------------------------------------------------------------------------    
-    
-    /**
-     * Returns the average amount of time (in milliseconds) that the function
-     * with the given name takes to execute.
-     * @param {String} name The name of the function whose data should be returned.
-     *      If an object type method, it should be 'constructor.prototype.methodName';
-     *      a normal object method would just be 'object.methodName'.
-     * @return {float} The average time it takes the function to execute.
-     * @static
-     */
-    getAverage : function (name /*:String*/) /*:float*/ {
-        return this._report[name].avg;
-    },
-
-    /**
-     * Returns the number of times that the given function has been called.
-     * @param {String} name The name of the function whose data should be returned.
-     * @return {int} The number of times the function was called.
-     * @static
-     */
-    getCallCount : function (name /*:String*/) /*:int*/ {
-        return this._report[name].calls;    
-    },
-    
-    /**
-     * Returns the maximum amount of time (in milliseconds) that the function
-     * with the given name takes to execute.
-     * @param {String} name The name of the function whose data should be returned.
-     *      If an object type method, it should be 'constructor.prototype.methodName';
-     *      a normal object method would just be 'object.methodName'.
-     * @return {float} The maximum time it takes the function to execute.
-     */
-    getMax : function (name /*:String*/) /*:int*/ {
-        return this._report[name].max;
-    },
-    
-    /**
-     * Returns the minimum amount of time (in milliseconds) that the function
-     * with the given name takes to execute.
-     * @param {String} name The name of the function whose data should be returned.
-     *      If an object type method, it should be 'constructor.prototype.methodName';
-     *      a normal object method would just be 'object.methodName'.
-     * @return {float} The minimum time it takes the function to execute.
-     */
-    getMin : function (name /*:String*/) /*:int*/ {
-        return this._report[name].min;
-    },
-
-    /**
-     * Returns an object containing profiling data for a single function.
-     * The object has an entry for min, max, avg, calls, and points).
-     * @return {Object} An object containing profile data for a given function.
-     * @static
-     */
-    getFunctionReport : function (name /*:String*/) /*:Object*/ {
-        return this._report[name];
-    },
-
-    /**
-     * Returns an object containing profiling data for all of the functions 
-     * that were profiled. The object has an entry for each function and 
-     * returns all information (min, max, average, calls, etc.) for each
-     * function.
-     * @return {Object} An object containing all profile data.
-     * @static
-     */
-    getFullReport : function (filter /*:Function*/) /*:Object*/ {
-        filter = filter || function(){return true;};
-    
-        if (YAHOO.lang.isFunction(filter)) {
-            var report = {};
-            
-            for (var name in this._report){
-                if (filter(this._report[name])){
-                    report[name] = this._report[name];    
-                }
-            }
-            
-            return report;
-        }
-    },
-
-    //-------------------------------------------------------------------------
-    // Profiling Methods
-    //-------------------------------------------------------------------------   
-    
-    /**
-     * Sets up a constructor for profiling, including all properties and methods on the prototype.
-     * @param {string} name The fully-qualified name of the function including namespace information.
-     * @param {Object} owner (Optional) The object that owns the function (namespace or containing object).
-     * @return {Void}
-     * @static
-     */
-    registerConstructor : function (name /*:String*/, owner /*:Object*/) /*:Void*/ {    
-        this.registerFunction(name, owner, true);
-    },
-
-    /**
-     * Sets up a function for profiling. It essentially overwrites the function with one
-     * that has instrumentation data. This method also creates an entry for the function
-     * in the profile report. The original function is stored on the _container object.
-     * @param {String} name The full name of the function including namespacing. This
-     *      is the name of the function that is stored in the report.
-     * @param {Object} owner (Optional) The object that owns the function. If the function
-     *      isn't global then this argument is required. This could be the namespace that
-     *      the function belongs to, such as YAHOO.util.Dom, or the object on which it's
-     *      a method.
-     * @return {Void}
-     * @method registerFunction
-     */     
-    registerFunction : function(name /*:String*/, owner /*:Object*/, registerPrototype /*:Boolean*/) /*:Void*/{
-    
-        //figure out the function name without namespacing
-        var funcName /*:String*/ = (name.indexOf(".") > -1 ? name.substring(name.lastIndexOf(".")+1) : name);
-        if (!YAHOO.lang.isObject(owner)){
-            owner = eval(name.substring(0, name.lastIndexOf(".")));
-        }
-        
-        //get the method and prototype
-        var method /*:Function*/ = owner[funcName];
-        var prototype /*:Object*/ = method.prototype;
-        
-        //see if the method has already been registered
-        if (YAHOO.lang.isFunction(method) && !method.__yuiProfiled){
-            
-            //create a new slot for the original method
-            this._container[name] = method;
-            
-            //replace the function with the profiling one
-            owner[funcName] = function () {
-
-                var start = new Date();     
-                var retval = method.apply(this, arguments);
-                var stop = new Date();
-                
-                YAHOO.tool.Profiler._saveData(name, stop-start);
-                
-                return retval;                
-            
-            };
-            
-            //copy the function properties over
-            YAHOO.lang.augmentObject(owner[funcName], method);
-            owner[funcName].__yuiProfiled = true;
-            owner[funcName].prototype = prototype;
-            this._container[name].__yuiOwner = owner;
-            this._container[name].__yuiFuncName = funcName;        
-        
-            //register prototype if necessary
-            if (registerPrototype) {            
-                this.registerObject(name + ".prototype", prototype);          
-            }
-            
-            //store function information
-            this._report[name] = {
-                calls: 0,
-                max: 0,
-                min: 0,
-                avg: 0,
-                points: []
-            };        
-        }
-            
-        return method;
-    
-    },
-        
-    
-    /**
-     * Sets up an object for profiling. It takes the object and looks for functions.
-     * When a function is found, registerMethod() is called on it. If set to recrusive
-     * mode, it will also setup objects found inside of this object for profiling, 
-     * using the same methodology.
-     * @param {String} name The name of the object to profile (shows up in report).
-     * @param {Object} owner (Optional) The object represented by the name.
-     * @param {Boolean} recurse (Optional) Determines if subobject methods are also profiled.
-     * @return {Void}
-     * @static
-     */
-    registerObject : function (name /*:String*/, object /*:Object*/, recurse /*:Boolean*/) /*:Void*/{
-    
-        //get the object
-        object = (YAHOO.lang.isObject(object) ? object : eval(name));
-    
-        //save the object
-        this._container[name] = object;
-    
-        for (var prop in object) {
-            if (typeof object[prop] == "function"){
-                if (prop != "constructor" && prop != "superclass"){ //don't do constructor or superclass, it's recursive
-                    this.registerFunction(name + "." + prop, object);
-                }
-            } else if (typeof object[prop] == "object" && recurse){
-                this.registerObject(name + "." + prop, object[prop], recurse);
-            }
-        }
-    
-    },    
-    
-    /**
-     * Removes a constructor function from profiling. Reverses the registerConstructor() method.
-     * @param {String} name The full name of the function including namespacing. This
-     *      is the name of the function that is stored in the report.
-     * @return {Void}
-     * @method unregisterFunction
-     */     
-    unregisterConstructor : function(name /*:String*/) /*:Void*/{
-            
-        //see if the method has been registered
-        if (YAHOO.lang.isFunction(this._container[name])){
-        
-            //get original data
-            //var owner /*:Object*/ = this._container[name].__yuiOwner;
-            //var funcName /*:String*/ = this._container[name].__yuiFuncName;
-            //delete this._container[name].__yuiOwner;
-            //delete this._container[name].__yuiFuncName;
-            
-            //replace instrumented function
-            //owner[funcName] = this._container[name];
-            //delete this._container[name];
-            this.unregisterFunction(name, true);
-       
-        }
-
-    
-    },
-    
-    /**
-     * Removes function from profiling. Reverses the registerFunction() method.
-     * @param {String} name The full name of the function including namespacing. This
-     *      is the name of the function that is stored in the report.
-     * @return {Void}
-     * @method unregisterFunction
-     */     
-    unregisterFunction : function(name /*:String*/, unregisterPrototype /*:Boolean*/) /*:Void*/{
-            
-        //see if the method has been registered
-        if (YAHOO.lang.isFunction(this._container[name])){
-        
-            //check to see if you should unregister the prototype
-            if (unregisterPrototype){
-                this.unregisterObject(name + ".prototype", this._container[name].prototype);
-            }
-                
-            //get original data
-            var owner /*:Object*/ = this._container[name].__yuiOwner;
-            var funcName /*:String*/ = this._container[name].__yuiFuncName;
-            delete this._container[name].__yuiOwner;
-            delete this._container[name].__yuiFuncName;
-            
-            //replace instrumented function
-            owner[funcName] = this._container[name];
-            
-            //delete supporting information
-            delete this._container[name];
-            delete this._report[name];
-       
-        }
-            
-    
-    },
-    
-    /**
-     * Unregisters an object for profiling. It takes the object and looks for functions.
-     * When a function is found, unregisterMethod() is called on it. If set to recrusive
-     * mode, it will also unregister objects found inside of this object, 
-     * using the same methodology.
-     * @param {String} name The name of the object to unregister.
-     * @param {Boolean} recurse (Optional) Determines if subobject methods should also be
-     *      unregistered.
-     * @return {Void}
-     * @static
-     */
-    unregisterObject : function (name /*:String*/, recurse /*:Boolean*/) /*:Void*/{
-    
-        //get the object
-        if (YAHOO.lang.isObject(this._container[name])){            
-            var object = this._container[name];    
-        
-            for (var prop in object) {
-                if (typeof object[prop] == "function"){
-                    this.unregisterFunction(name + "." + prop);
-                } else if (typeof object[prop] == "object" && recurse){
-                    this.unregisterObject(name + "." + prop, recurse);
-                }
-            }
-            
-            delete this._container[name];
-        }
-    
-    }
-         
-
-};
-YAHOO.register("profiler", YAHOO.tool.Profiler, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/profiler/profiler-min.js b/eclipse.org-common/yui/2.6.0/build/profiler/profiler-min.js
deleted file mode 100644
index fd7eeba..0000000
--- a/eclipse.org-common/yui/2.6.0/build/profiler/profiler-min.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.namespace("tool");YAHOO.tool.Profiler={_container:new Object(),_report:new Object(),_saveData:function(B,C){var A=this._report[B];A.calls++;A.points.push(C);if(A.calls>1){A.avg=((A.avg*(A.calls-1))+C)/A.calls;A.min=Math.min(A.min,C);A.max=Math.max(A.max,C);}else{A.avg=C;A.min=C;A.max=C;}},getAverage:function(A){return this._report[A].avg;},getCallCount:function(A){return this._report[A].calls;},getMax:function(A){return this._report[A].max;},getMin:function(A){return this._report[A].min;},getFunctionReport:function(A){return this._report[A];},getFullReport:function(C){C=C||function(){return true;};if(YAHOO.lang.isFunction(C)){var A={};for(var B in this._report){if(C(this._report[B])){A[B]=this._report[B];}}return A;}},registerConstructor:function(B,A){this.registerFunction(B,A,true);},registerFunction:function(name,owner,registerPrototype){var funcName=(name.indexOf(".")>-1?name.substring(name.lastIndexOf(".")+1):name);if(!YAHOO.lang.isObject(owner)){owner=eval(name.substring(0,name.lastIndexOf(".")));}var method=owner[funcName];var prototype=method.prototype;if(YAHOO.lang.isFunction(method)&&!method.__yuiProfiled){this._container[name]=method;owner[funcName]=function(){var start=new Date();var retval=method.apply(this,arguments);var stop=new Date();YAHOO.tool.Profiler._saveData(name,stop-start);return retval;};YAHOO.lang.augmentObject(owner[funcName],method);owner[funcName].__yuiProfiled=true;owner[funcName].prototype=prototype;this._container[name].__yuiOwner=owner;this._container[name].__yuiFuncName=funcName;if(registerPrototype){this.registerObject(name+".prototype",prototype);}this._report[name]={calls:0,max:0,min:0,avg:0,points:[]};}return method;},registerObject:function(name,object,recurse){object=(YAHOO.lang.isObject(object)?object:eval(name));this._container[name]=object;for(var prop in object){if(typeof object[prop]=="function"){if(prop!="constructor"&&prop!="superclass"){this.registerFunction(name+"."+prop,object);}}else{if(typeof object[prop]=="object"&&recurse){this.registerObject(name+"."+prop,object[prop],recurse);}}}},unregisterConstructor:function(A){if(YAHOO.lang.isFunction(this._container[A])){this.unregisterFunction(A,true);}},unregisterFunction:function(B,C){if(YAHOO.lang.isFunction(this._container[B])){if(C){this.unregisterObject(B+".prototype",this._container[B].prototype);}var A=this._container[B].__yuiOwner;var D=this._container[B].__yuiFuncName;delete this._container[B].__yuiOwner;delete this._container[B].__yuiFuncName;A[D]=this._container[B];delete this._container[B];delete this._report[B];}},unregisterObject:function(B,C){if(YAHOO.lang.isObject(this._container[B])){var A=this._container[B];for(var D in A){if(typeof A[D]=="function"){this.unregisterFunction(B+"."+D);}else{if(typeof A[D]=="object"&&C){this.unregisterObject(B+"."+D,C);}}}delete this._container[B];}}};YAHOO.register("profiler",YAHOO.tool.Profiler,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/profiler/profiler.js b/eclipse.org-common/yui/2.6.0/build/profiler/profiler.js
deleted file mode 100644
index 3dadf13..0000000
--- a/eclipse.org-common/yui/2.6.0/build/profiler/profiler.js
+++ /dev/null
@@ -1,380 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.namespace("tool");
-
-/**
- * The YUI JavaScript profiler.
- * @module profiler
- * @namespace YAHOO.tool
- * @requires yahoo
- */
-
-/**
- * Profiles functions in JavaScript.
- * @namespace YAHOO.tool
- * @class Profiler
- * @static
- */
-YAHOO.tool.Profiler = {
-
-    //-------------------------------------------------------------------------
-    // Private Properties
-    //-------------------------------------------------------------------------
-
-    /**
-     * Container object on which to put the original unprofiled methods.
-     * @type Object
-     * @private
-     * @static
-     * @property _container
-     */
-    _container : new Object(),
-
-    /**
-     * Call information for functions.
-     * @type Object
-     * @private
-     * @static
-     * @property _report
-     */
-    _report : new Object(),
-    
-    //-------------------------------------------------------------------------
-    // Private Methods
-    //-------------------------------------------------------------------------
-    
-    /**
-     * Called when a method ends execution. Marks the start and end time of the 
-     * method so it can calculate how long the function took to execute. Also 
-     * updates min/max/avg calculations for the function.
-     * @param {String} name The name of the function to mark as stopped.
-     * @param {int} duration The number of milliseconds it took the function to
-     *      execute.
-     * @return {Void}
-     * @private
-     * @static
-     */
-    _saveData : function (name /*:String*/, duration /*:int*/){
-        
-        //get the function data
-        var functionData /*:Object*/ = this._report[name];
-    
-        //increment the calls
-        functionData.calls++;
-        functionData.points.push(duration);
-
-        //if it's already been called at least once, do more complex calculations
-        if (functionData.calls > 1) {
-            functionData.avg = ((functionData.avg*(functionData.calls-1))+duration)/functionData.calls;
-            functionData.min = Math.min(functionData.min, duration);
-            functionData.max = Math.max(functionData.max, duration);
-        } else {
-            functionData.avg = duration;
-            functionData.min = duration;
-            functionData.max = duration;
-        }                             
-    
-    },
-
-    //-------------------------------------------------------------------------
-    // Reporting Methods
-    //-------------------------------------------------------------------------    
-    
-    /**
-     * Returns the average amount of time (in milliseconds) that the function
-     * with the given name takes to execute.
-     * @param {String} name The name of the function whose data should be returned.
-     *      If an object type method, it should be 'constructor.prototype.methodName';
-     *      a normal object method would just be 'object.methodName'.
-     * @return {float} The average time it takes the function to execute.
-     * @static
-     */
-    getAverage : function (name /*:String*/) /*:float*/ {
-        return this._report[name].avg;
-    },
-
-    /**
-     * Returns the number of times that the given function has been called.
-     * @param {String} name The name of the function whose data should be returned.
-     * @return {int} The number of times the function was called.
-     * @static
-     */
-    getCallCount : function (name /*:String*/) /*:int*/ {
-        return this._report[name].calls;    
-    },
-    
-    /**
-     * Returns the maximum amount of time (in milliseconds) that the function
-     * with the given name takes to execute.
-     * @param {String} name The name of the function whose data should be returned.
-     *      If an object type method, it should be 'constructor.prototype.methodName';
-     *      a normal object method would just be 'object.methodName'.
-     * @return {float} The maximum time it takes the function to execute.
-     */
-    getMax : function (name /*:String*/) /*:int*/ {
-        return this._report[name].max;
-    },
-    
-    /**
-     * Returns the minimum amount of time (in milliseconds) that the function
-     * with the given name takes to execute.
-     * @param {String} name The name of the function whose data should be returned.
-     *      If an object type method, it should be 'constructor.prototype.methodName';
-     *      a normal object method would just be 'object.methodName'.
-     * @return {float} The minimum time it takes the function to execute.
-     */
-    getMin : function (name /*:String*/) /*:int*/ {
-        return this._report[name].min;
-    },
-
-    /**
-     * Returns an object containing profiling data for a single function.
-     * The object has an entry for min, max, avg, calls, and points).
-     * @return {Object} An object containing profile data for a given function.
-     * @static
-     */
-    getFunctionReport : function (name /*:String*/) /*:Object*/ {
-        return this._report[name];
-    },
-
-    /**
-     * Returns an object containing profiling data for all of the functions 
-     * that were profiled. The object has an entry for each function and 
-     * returns all information (min, max, average, calls, etc.) for each
-     * function.
-     * @return {Object} An object containing all profile data.
-     * @static
-     */
-    getFullReport : function (filter /*:Function*/) /*:Object*/ {
-        filter = filter || function(){return true;};
-    
-        if (YAHOO.lang.isFunction(filter)) {
-            var report = {};
-            
-            for (var name in this._report){
-                if (filter(this._report[name])){
-                    report[name] = this._report[name];    
-                }
-            }
-            
-            return report;
-        }
-    },
-
-    //-------------------------------------------------------------------------
-    // Profiling Methods
-    //-------------------------------------------------------------------------   
-    
-    /**
-     * Sets up a constructor for profiling, including all properties and methods on the prototype.
-     * @param {string} name The fully-qualified name of the function including namespace information.
-     * @param {Object} owner (Optional) The object that owns the function (namespace or containing object).
-     * @return {Void}
-     * @static
-     */
-    registerConstructor : function (name /*:String*/, owner /*:Object*/) /*:Void*/ {    
-        this.registerFunction(name, owner, true);
-    },
-
-    /**
-     * Sets up a function for profiling. It essentially overwrites the function with one
-     * that has instrumentation data. This method also creates an entry for the function
-     * in the profile report. The original function is stored on the _container object.
-     * @param {String} name The full name of the function including namespacing. This
-     *      is the name of the function that is stored in the report.
-     * @param {Object} owner (Optional) The object that owns the function. If the function
-     *      isn't global then this argument is required. This could be the namespace that
-     *      the function belongs to, such as YAHOO.util.Dom, or the object on which it's
-     *      a method.
-     * @return {Void}
-     * @method registerFunction
-     */     
-    registerFunction : function(name /*:String*/, owner /*:Object*/, registerPrototype /*:Boolean*/) /*:Void*/{
-    
-        //figure out the function name without namespacing
-        var funcName /*:String*/ = (name.indexOf(".") > -1 ? name.substring(name.lastIndexOf(".")+1) : name);
-        if (!YAHOO.lang.isObject(owner)){
-            owner = eval(name.substring(0, name.lastIndexOf(".")));
-        }
-        
-        //get the method and prototype
-        var method /*:Function*/ = owner[funcName];
-        var prototype /*:Object*/ = method.prototype;
-        
-        //see if the method has already been registered
-        if (YAHOO.lang.isFunction(method) && !method.__yuiProfiled){
-            
-            //create a new slot for the original method
-            this._container[name] = method;
-            
-            //replace the function with the profiling one
-            owner[funcName] = function () {
-
-                var start = new Date();     
-                var retval = method.apply(this, arguments);
-                var stop = new Date();
-                
-                YAHOO.tool.Profiler._saveData(name, stop-start);
-                
-                return retval;                
-            
-            };
-            
-            //copy the function properties over
-            YAHOO.lang.augmentObject(owner[funcName], method);
-            owner[funcName].__yuiProfiled = true;
-            owner[funcName].prototype = prototype;
-            this._container[name].__yuiOwner = owner;
-            this._container[name].__yuiFuncName = funcName;        
-        
-            //register prototype if necessary
-            if (registerPrototype) {            
-                this.registerObject(name + ".prototype", prototype);          
-            }
-            
-            //store function information
-            this._report[name] = {
-                calls: 0,
-                max: 0,
-                min: 0,
-                avg: 0,
-                points: []
-            };        
-        }
-            
-        return method;
-    
-    },
-        
-    
-    /**
-     * Sets up an object for profiling. It takes the object and looks for functions.
-     * When a function is found, registerMethod() is called on it. If set to recrusive
-     * mode, it will also setup objects found inside of this object for profiling, 
-     * using the same methodology.
-     * @param {String} name The name of the object to profile (shows up in report).
-     * @param {Object} owner (Optional) The object represented by the name.
-     * @param {Boolean} recurse (Optional) Determines if subobject methods are also profiled.
-     * @return {Void}
-     * @static
-     */
-    registerObject : function (name /*:String*/, object /*:Object*/, recurse /*:Boolean*/) /*:Void*/{
-    
-        //get the object
-        object = (YAHOO.lang.isObject(object) ? object : eval(name));
-    
-        //save the object
-        this._container[name] = object;
-    
-        for (var prop in object) {
-            if (typeof object[prop] == "function"){
-                if (prop != "constructor" && prop != "superclass"){ //don't do constructor or superclass, it's recursive
-                    this.registerFunction(name + "." + prop, object);
-                }
-            } else if (typeof object[prop] == "object" && recurse){
-                this.registerObject(name + "." + prop, object[prop], recurse);
-            }
-        }
-    
-    },    
-    
-    /**
-     * Removes a constructor function from profiling. Reverses the registerConstructor() method.
-     * @param {String} name The full name of the function including namespacing. This
-     *      is the name of the function that is stored in the report.
-     * @return {Void}
-     * @method unregisterFunction
-     */     
-    unregisterConstructor : function(name /*:String*/) /*:Void*/{
-            
-        //see if the method has been registered
-        if (YAHOO.lang.isFunction(this._container[name])){
-        
-            //get original data
-            //var owner /*:Object*/ = this._container[name].__yuiOwner;
-            //var funcName /*:String*/ = this._container[name].__yuiFuncName;
-            //delete this._container[name].__yuiOwner;
-            //delete this._container[name].__yuiFuncName;
-            
-            //replace instrumented function
-            //owner[funcName] = this._container[name];
-            //delete this._container[name];
-            this.unregisterFunction(name, true);
-       
-        }
-
-    
-    },
-    
-    /**
-     * Removes function from profiling. Reverses the registerFunction() method.
-     * @param {String} name The full name of the function including namespacing. This
-     *      is the name of the function that is stored in the report.
-     * @return {Void}
-     * @method unregisterFunction
-     */     
-    unregisterFunction : function(name /*:String*/, unregisterPrototype /*:Boolean*/) /*:Void*/{
-            
-        //see if the method has been registered
-        if (YAHOO.lang.isFunction(this._container[name])){
-        
-            //check to see if you should unregister the prototype
-            if (unregisterPrototype){
-                this.unregisterObject(name + ".prototype", this._container[name].prototype);
-            }
-                
-            //get original data
-            var owner /*:Object*/ = this._container[name].__yuiOwner;
-            var funcName /*:String*/ = this._container[name].__yuiFuncName;
-            delete this._container[name].__yuiOwner;
-            delete this._container[name].__yuiFuncName;
-            
-            //replace instrumented function
-            owner[funcName] = this._container[name];
-            
-            //delete supporting information
-            delete this._container[name];
-            delete this._report[name];
-       
-        }
-            
-    
-    },
-    
-    /**
-     * Unregisters an object for profiling. It takes the object and looks for functions.
-     * When a function is found, unregisterMethod() is called on it. If set to recrusive
-     * mode, it will also unregister objects found inside of this object, 
-     * using the same methodology.
-     * @param {String} name The name of the object to unregister.
-     * @param {Boolean} recurse (Optional) Determines if subobject methods should also be
-     *      unregistered.
-     * @return {Void}
-     * @static
-     */
-    unregisterObject : function (name /*:String*/, recurse /*:Boolean*/) /*:Void*/{
-    
-        //get the object
-        if (YAHOO.lang.isObject(this._container[name])){            
-            var object = this._container[name];    
-        
-            for (var prop in object) {
-                if (typeof object[prop] == "function"){
-                    this.unregisterFunction(name + "." + prop);
-                } else if (typeof object[prop] == "object" && recurse){
-                    this.unregisterObject(name + "." + prop, recurse);
-                }
-            }
-            
-            delete this._container[name];
-        }
-    
-    }
-         
-
-};
-YAHOO.register("profiler", YAHOO.tool.Profiler, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/profilerviewer/README b/eclipse.org-common/yui/2.6.0/build/profilerviewer/README
deleted file mode 100644
index eb60a42..0000000
--- a/eclipse.org-common/yui/2.6.0/build/profilerviewer/README
+++ /dev/null
@@ -1,9 +0,0 @@
-ProfilerViewer Control -- Release Notes
-
-2.5.1-2.6.0
-
-  * No changes.
-
-2.5.0
-
-  * Beta release
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/asc.gif b/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/asc.gif
deleted file mode 100644
index a1fe738..0000000
--- a/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/asc.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/desc.gif b/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/desc.gif
deleted file mode 100644
index c114f29..0000000
--- a/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/desc.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/header_background.png b/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/header_background.png
deleted file mode 100644
index 3ef7909..0000000
--- a/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/header_background.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/profilerviewer.css b/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/profilerviewer.css
deleted file mode 100644
index 8305335..0000000
--- a/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/profilerviewer.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-pv{background-color:#4a4a4a;font:arial;position:relative;width:99%;z-index:1000;margin-bottom:1em;overflow:hidden;}.yui-skin-sam .yui-pv .hd{background:url(header_background.png) repeat-x;min-height:30px;overflow:hidden;zoom:1;padding:2px 0;}.yui-skin-sam .yui-pv .hd h4{padding:8px 10px;margin:0;font:bold 14px arial;color:#fff;}.yui-skin-sam .yui-pv .hd a{background:#3f6bc3;font:bold 11px arial;color:#fff;padding:4px;margin:3px 10px 0 0;border:1px solid #3f567d;cursor:pointer;display:block;float:right;}.yui-skin-sam .yui-pv .hd span{display:none;}.yui-skin-sam .yui-pv .hd span.yui-pv-busy{height:18px;width:18px;background:url(wait.gif) no-repeat;overflow:hidden;display:block;float:right;margin:4px 10px 0 0;}.yui-skin-sam .yui-pv .hd:after,.yui-pv .bd:after,.yui-skin-sam .yui-pv-chartlegend dl:after{content:'.';visibility:hidden;clear:left;height:0;display:block;}.yui-skin-sam .yui-pv .bd{position:relative;zoom:1;overflow-x:auto;overflow-y:hidden;}.yui-skin-sam .yui-pv .yui-pv-table{padding:0 10px;margin:5px 0 10px 0;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-bd td{color:#eeee5c;font:12px arial;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-odd{background:#929292;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-even{background:#58637a;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-even td.yui-dt-asc,.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-even td.yui-dt-desc{background:#384970;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-odd td.yui-dt-asc,.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-odd td.yui-dt-desc{background:#6F6E6E;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th{background-image:none;background:#2E2D2D;}.yui-skin-sam .yui-pv th.yui-dt-asc .yui-dt-liner{background:transparent url(asc.gif) no-repeat scroll right center;}.yui-skin-sam .yui-pv th.yui-dt-desc .yui-dt-liner{background:transparent url(desc.gif) no-repeat scroll right center;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th a{color:#fff;font:bold 12px arial;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th.yui-dt-asc,.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th.yui-dt-desc{background:#333;}.yui-skin-sam .yui-pv-chartcontainer{padding:0 10px;}.yui-skin-sam .yui-pv-chart{height:250px;clear:right;margin:5px 0 0 0;color:#fff;}.yui-skin-sam .yui-pv-chartlegend div{float:right;margin:0 0 0 10px;_width:250px;}.yui-skin-sam .yui-pv-chartlegend dl{border:1px solid #999;padding:.2em 0 .2em .5em;zoom:1;margin:5px 0;}.yui-skin-sam .yui-pv-chartlegend dt{float:left;display:block;height:.7em;width:.7em;padding:0;}.yui-skin-sam .yui-pv-chartlegend dd{float:left;display:block;color:#fff;margin:0 1em 0 .5em;padding:0;font:11px arial;}.yui-skin-sam .yui-pv-minimized{height:35px;}.yui-skin-sam .yui-pv-minimized .bd{top:-3000px;}.yui-skin-sam .yui-pv-minimized .hd a.yui-pv-refresh{display:none;}
diff --git a/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/wait.gif b/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/wait.gif
deleted file mode 100644
index 471c1a4..0000000
--- a/eclipse.org-common/yui/2.6.0/build/profilerviewer/assets/skins/sam/wait.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/profilerviewer/profilerviewer-beta-debug.js b/eclipse.org-common/yui/2.6.0/build/profilerviewer/profilerviewer-beta-debug.js
deleted file mode 100644
index 8cff27f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/profilerviewer/profilerviewer-beta-debug.js
+++ /dev/null
@@ -1,1227 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function() {
-
-    /**
-     * The ProfilerViewer module provides a graphical display for viewing
-	 * the output of the YUI Profiler <http://developer.yahoo.com/yui/profiler>.
-     * @module profilerviewer
-     * @requires yahoo, dom, event, element, profiler, yuiloader
-     */
-
-    /**
-     * A widget to view YUI Profiler output.
-     * @namespace YAHOO.widget
-     * @class ProfilerViewer
-     * @extends YAHOO.util.Element
-     * @constructor
-     * @param {HTMLElement | String | Object} el(optional) The html 
-     * element into which the ProfileViewer should be rendered. 
-     * An element will be created if none provided.
-     * @param {Object} attr (optional) A key map of the ProfilerViewer's 
-     * initial attributes.  Ignored if first arg is an attributes object.
-     */
-    YAHOO.widget.ProfilerViewer = function(el, attr) {
-        attr = attr || {};
-        if (arguments.length == 1 && !YAHOO.lang.isString(el) && !el.nodeName) {
-            attr = el;
-            el = attr.element || null;
-        }
-        if (!el && !attr.element) {
-            el = this._createProfilerViewerElement();
-        }
-
-    	YAHOO.widget.ProfilerViewer.superclass.constructor.call(this, el, attr); 
-		
-		this._init();
-		
-		YAHOO.log("ProfilerViewer instantiated.", "info", "ProfilerViewer");
-    };
-
-    YAHOO.extend(YAHOO.widget.ProfilerViewer, YAHOO.util.Element);
-	
-	// Static members of YAHOO.widget.ProfilerViewer:
-	YAHOO.lang.augmentObject(YAHOO.widget.ProfilerViewer, {
-		/**
-		 * Classname for ProfilerViewer containing element.
-		 * @static
-		 * @property CLASS
-		 * @type string
-		 * @public
-		 * @default "yui-pv"
-		 */
-		CLASS: 'yui-pv',
-	
-		/**
-		 * Classname for ProfilerViewer button dashboard. 
-		 * @static
-		 * @property CLASS_DASHBOARD
-		 * @type string
-		 * @public
-		 * @default "yui-pv-dashboard"
-		 */
-		CLASS_DASHBOARD: 'yui-pv-dashboard',
-
-		/**
-		 * Classname for the "refresh data" button. 
-		 * @static
-		 * @property CLASS_REFRESH
-		 * @type string
-		 * @public
-		 * @default "yui-pv-refresh"
-		 */
-		CLASS_REFRESH: 'yui-pv-refresh',
-
-		/**
-		 * Classname for busy indicator in the dashboard. 
-		 * @static
-		 * @property CLASS_BUSY
-		 * @type string
-		 * @public
-		 * @default "yui-pv-busy"
-		 */
-		CLASS_BUSY: 'yui-pv-busy',
-	
-		/**
-		 * Classname for element containing the chart and chart
-		 * legend elements.
-		 * @static
-		 * @property CLASS_CHART_CONTAINER
-		 * @type string
-		 * @public
-		 * @default "yui-pv-chartcontainer"
-		 */
-		CLASS_CHART_CONTAINER: 'yui-pv-chartcontainer',
-	
-		/**
-		 * Classname for element containing the chart.
-		 * @static
-		 * @property CLASS_CHART
-		 * @type string
-		 * @public
-		 * @default "yui-pv-chart"
-		 */
-		CLASS_CHART: 'yui-pv-chart',
-		
-		/**
-		 * Classname for element containing the chart's legend. 
-		 * @static
-		 * @property CLASS_CHART_LEGEND
-		 * @type string
-		 * @public
-		 * @default "yui-pv-chartlegend"
-		 */
-		CLASS_CHART_LEGEND: 'yui-pv-chartlegend',
-		
-		/**
-		 * Classname for element containing the datatable. 
-		 * @static
-		 * @property CLASS_TABLE
-		 * @type string
-		 * @public
-		 * @default "yui-pv-table"
-		 */
-		CLASS_TABLE: 'yui-pv-table',
-		
-		/**
-		 * Strings used in the UI.
-		 * @static
-		 * @property STRINGS
-		 * @object
-		 * @public
-		 * @default English language strings for UI.
-		 */
-		STRINGS: {
-			title: "YUI Profiler (beta)",
-			buttons: {
-				viewprofiler: "View Profiler Data",
-				hideprofiler: "Hide Profiler Report",
-				showchart: "Show Chart",
-				hidechart: "Hide Chart",
-				refreshdata: "Refresh Data"
-			},
-			colHeads: {
-				//key: [column head label, width in pixels]
-				fn: ["Function/Method", null], //must auto-size
-				calls: ["Calls", 40],
-				avg: ["Average", 80],
-				min: ["Shortest", 70],
-				max: ["Longest", 70],
-				total: ["Total Time", 70],
-				pct: ["Percent", 70]
-			},
-			millisecondsAbbrev: "ms",
-			initMessage: "initialiazing chart...",
-			installFlashMessage: "Unable to load Flash content. The YUI Charts Control requires Flash Player 9.0.45 or higher. You can download the latest version of Flash Player from the <a href='http://www.adobe.com/go/getflashplayer'>Adobe Flash Player Download Center</a>."
-		},
-
-		/**
-		 * Function used to format numbers in milliseconds
-		 * for chart; must be publicly accessible, per Charts spec.
-		 * @static
-		 * @property timeAxisLabelFunction
-		 * @type function
-		 * @private
-		 */
-		timeAxisLabelFunction: function(n) {
-			var a = (n === Math.floor(n)) ? n : (Math.round(n*1000))/1000;
-			return (a + " " + YAHOO.widget.ProfilerViewer.STRINGS.millisecondsAbbrev);
-		},
-
-		/**
-		 * Function used to format percent numbers for chart; must
-		 * be publicly accessible, per Charts spec.
-		 * @static
-		 * @property percentAxisLabelFunction
-		 * @type function
-		 * @private
-		 */
-		percentAxisLabelFunction: function(n) {
-			var a = (n === Math.floor(n)) ? n : (Math.round(n*100))/100;
-			return (a + "%");
-		}
-		
-	
-	},true);
-	
-
-	//
-	// STANDARD SHORTCUTS
-	//
-    var Dom = YAHOO.util.Dom;
-    var Event = YAHOO.util.Event;
-	var Profiler = YAHOO.tool.Profiler;
-	var PV = YAHOO.widget.ProfilerViewer;
-	var proto = PV.prototype;
-
-
-	//
-	// PUBLIC METHODS
-	//
-	
-	 /**
-     * Refreshes the data displayed in the ProfilerViewer. When called,
-	 * this will invoke a refresh of the DataTable and (if displayed)
-	 * the Chart.
-     * @method refreshData
-     * @return void
-	 * @public
-     */	
-	proto.refreshData = function() {
-		YAHOO.log("Data refresh requested via refreshData method.", "info", "ProfilerViewer");
-		this.fireEvent("dataRefreshEvent");
-	};
-
-	 /**
-     * Returns the element containing the console's header.
-     * @method getHeadEl
-     * @return HTMLElement
-	 * @public
-     */	
-	proto.getHeadEl = function() {
-		YAHOO.log("Head element requested via getHeadEl.", "info", "ProfilerViewer");
-		return (this._headEl) ? Dom.get(this._headEl) : false;
-	};
-
-	 /**
-     * Returns the element containing the console's body, including
-	 * the chart and the datatable..
-     * @method getBodyEl
-     * @return HTMLElement
-	 * @public
-     */	
-	proto.getBodyEl = function() {
-		YAHOO.log("Body element requested via getBodyEl.", "info", "ProfilerViewer");
-		return (this._bodyEl) ? Dom.get(this._bodyEl) : false;
-	};
-
-	 /**
-     * Returns the element containing the console's chart.
-     * @method getChartEl
-     * @return HTMLElement
-	 * @public
-     */	
-	proto.getChartEl = function() {
-		YAHOO.log("Chart element requested via getChartEl.", "info", "ProfilerViewer");
-		return (this._chartEl) ? Dom.get(this._chartEl) : false;
-	};
-
-	 /**
-     * Returns the element containing the console's dataTable.
-     * @method getTableEl
-     * @return HTMLElement
-	 * @public
-     */	
-	proto.getTableEl = function() {
-		YAHOO.log("DataTable element requested via getTableEl.", "info", "ProfilerViewer");
-		return (this._tableEl) ? Dom.get(this._tableEl) : false;
-	};
-
-	 /**
-     * Returns the element containing the console's DataTable
-	 * instance.
-     * @method getDataTable
-     * @return YAHOO.widget.DataTable
-	 * @public
-     */	
-	proto.getDataTable = function() {
-		YAHOO.log("DataTable instance requested via getDataTable.", "info", "ProfilerViewer");
-		return this._dataTable;
-	};
-
-	 /**
-     * Returns the element containing the console's Chart instance.
-     * @method getChart
-     * @return YAHOO.widget.BarChart
-	 * @public
-     */	
-	proto.getChart = function() {
-		YAHOO.log("Chart instance requested via getChart.", "info", "ProfilerViewer");
-		return this._chart;
-	};
-
-
-    //
-    // PRIVATE PROPERTIES
-    //
-    proto._rendered = false;
-	proto._headEl = null;
-	proto._bodyEl = null;
-	proto._toggleVisibleEl = null;
-	proto._busyEl = null;
-	proto._busy = false;
-	
-	proto._tableEl = null;
-	proto._dataTable = null;
-
-	proto._chartEl = null;
-	proto._chartLegendEl = null;
-	proto._chartElHeight = 250;
-	proto._chart = null;
-	proto._chartInitialized = false;
-
-    //
-    // PRIVATE METHODS
-    //
-
-	proto._init = function() {
-		/**
-		 * CUSTOM EVENTS
-		 **/
-		
-		/**
-		 * Fired when a data refresh is requested. No arguments are passed
-		 * with this event.
-		 *
-		 * @event refreshDataEvent
-		 */
-		this.createEvent("dataRefreshEvent");
-		
-		/**
-		 * Fired when the viewer canvas first renders. No arguments are passed
-		 * with this event.
-		 *
-		 * @event renderEvent
-		 */
-		this.createEvent("renderEvent");
-
-		this.on("dataRefreshEvent", this._refreshDataTable, this, true);
-		
-		this._initLauncherDOM();
-		
-		if(this.get("showChart")) {
-			this.on("sortedByChange", this._refreshChart);
-		}
-
-		YAHOO.log("ProfilerViewer instance initialization complete.", "info", "ProfilerViewer");
-	};
-
-	/**
-	 * If no element is passed in, create it as the first element
-	 * in the document.
-	 * @method _createProfilerViewerElement
-	 * @return HTMLElement
-	 * @private
-	 */
-	proto._createProfilerViewerElement = function() {
-		YAHOO.log("Creating root element...", "info", "ProfilerViewer");
-
-		var el = document.createElement("div");
-		document.body.insertBefore(el, document.body.firstChild);
-		Dom.addClass(el, this.SKIN_CLASS);
-		Dom.addClass(el, PV.CLASS);
-		YAHOO.log(el);
-		return el;
-	};
-			
-    /**
-     * Provides a readable name for the ProfilerViewer instance.
-     * @method toString
-     * @return String
-	 * @private
-	 */
-    proto.toString = function() {
-        return "ProfilerViewer " + (this.get('id') || this.get('tagName'));
-    };
-
-    /**
-     * Toggles visibility of the viewer canvas.
-     * @method _toggleVisible
-     * @return void
-	 * @private
-     */	
-	proto._toggleVisible = function() {
-		YAHOO.log("Toggling visibility to " + !this.get("visible") + ".", "info", "ProfilerViewer");
-		
-		var newVis = (this.get("visible")) ? false : true;
-		this.set("visible", newVis);
-    };
-
-    /**
-     * Shows the viewer canvas.
-     * @method show
-     * @return void
-	 * @private
-     */	
-	 proto._show = function() {
-	 	if(!this._busy) {
-			this._setBusyState(true);
-			if(!this._rendered) {
-				var loader = new YAHOO.util.YUILoader();
-				if (this.get("base")) {
-					loader.base = this.get("base");
-				}
-				
-				var modules = ["datatable"];
-				if(this.get("showChart")) {
-					modules.push("charts");
-				}
-				
-				loader.insert({ require: modules,
-								onSuccess: function() {
-									this._render();
-								},
-								scope: this});
-			} else {
-				var el = this.get("element");
-				Dom.removeClass(el, "yui-pv-minimized");
-				this._toggleVisibleEl.innerHTML = PV.STRINGS.buttons.hideprofiler;
-				
-				//The Flash Charts component can't be set to display:none,
-				//and even after positioning it offscreen the screen
-				//may fail to repaint in some browsers.  Adding an empty
-				//style rule to the console body can help force a repaint:
-				Dom.addClass(el, "yui-pv-null");
-				Dom.removeClass(el, "yui-pv-null");
-				
-				//Always refresh data when changing to visible:
-				this.refreshData();
-			}
-		}
-    };
-
-    /**
-     * Hides the viewer canvas.
-     * @method hide
-     * @return void
-	 * @private
-     */	
-	proto._hide = function() {
-		this._toggleVisibleEl.innerHTML = PV.STRINGS.buttons.viewprofiler;
-		Dom.addClass(this.get("element"), "yui-pv-minimized");
-    };
-	
-	/**
-	 * Render the viewer canvas
-	 * @method _render
-	 * @return void
-	 * @private
-	 */
-	proto._render = function() {
-		YAHOO.log("Beginning to render ProfilerViewer canvas...", "info", "ProfilerViewer");
-		
-		Dom.removeClass(this.get("element"), "yui-pv-minimized");
-		
-		this._initViewerDOM();
-		this._initDataTable();
-		if(this.get("showChart")) {
-			this._initChartDOM();
-			this._initChart();
-		}
-		this._rendered = true;
-		this._toggleVisibleEl.innerHTML = PV.STRINGS.buttons.hideprofiler;
-		
-		this.fireEvent("renderEvent");
-
-		YAHOO.log("ProfilerViewer rendering complete...", "info", "ProfilerViewer");
-	};
-	
-	/**
-	 * Set up the DOM structure for the ProfilerViewer launcher.
-	 * @method _initLauncherDOM
-	 * @private
-	 */
-	proto._initLauncherDOM = function() {
-		YAHOO.log("Creating the launcher...", "info", "ProfilerViewer");
-		
-		var el = this.get("element");
-		Dom.addClass(el, PV.CLASS);
-		Dom.addClass(el, "yui-pv-minimized");
-
-		this._headEl = document.createElement("div");
-		Dom.addClass(this._headEl, "hd");
-		
-		var s = PV.STRINGS.buttons;
-		var b = (this.get("visible")) ? s.hideprofiler : s.viewprofiler;
-		
-		this._toggleVisibleEl = this._createButton(b, this._headEl);
-		
-		this._refreshEl = this._createButton(s.refreshdata, this._headEl);
-		Dom.addClass(this._refreshEl, PV.CLASS_REFRESH);
-		
-		this._busyEl = document.createElement("span");
-		this._headEl.appendChild(this._busyEl);
-
-		var title = document.createElement("h4");
-		title.innerHTML = PV.STRINGS.title;
-		this._headEl.appendChild(title);
-		
-		el.appendChild(this._headEl);
-		
-		Event.on(this._toggleVisibleEl, "click", this._toggleVisible, this, true);
-		Event.on(this._refreshEl, "click", function() {
-			if(!this._busy) {
-				this._setBusyState(true);
-				this.fireEvent("dataRefreshEvent");
-			}
-		}, this, true);
-	};
-
-	/**
-	 * Set up the DOM structure for the ProfilerViewer canvas,
-	 * including the holder for the DataTable.
-	 * @method _initViewerDOM
-	 * @private
-	 */
-	proto._initViewerDOM = function() {
-		YAHOO.log("Creating DOM structure for viewer...", "info", "ProfilerViewer");
-		
-		var el = this.get("element");
-		this._bodyEl = document.createElement("div");
-		Dom.addClass(this._bodyEl, "bd");
-	 	this._tableEl = document.createElement("div");
-		Dom.addClass(this._tableEl, PV.CLASS_TABLE);
-		this._bodyEl.appendChild(this._tableEl);
-		el.appendChild(this._bodyEl);
-	};
-
-	/**
-	 * Set up the DOM structure for the ProfilerViewer canvas.
-	 * @method _initChartDOM
-	 * @private
-	 */
-	proto._initChartDOM = function() {
-		YAHOO.log("Adding DOM structure for chart...", "info", "ProfilerViewer");
-		
-		this._chartContainer = document.createElement("div");
-		Dom.addClass(this._chartContainer, PV.CLASS_CHART_CONTAINER);
-		
-		var chl = document.createElement("div");
-		Dom.addClass(chl, PV.CLASS_CHART_LEGEND);
-		
-		var chw = document.createElement("div");
-
-		this._chartLegendEl = document.createElement("dl");
-		this._chartLegendEl.innerHTML = "<dd>" + PV.STRINGS.initMessage + "</dd>";
-		
-		this._chartEl = document.createElement("div");
-		Dom.addClass(this._chartEl, PV.CLASS_CHART);
-		
-		var msg = document.createElement("p");
-		msg.innerHTML = PV.STRINGS.installFlashMessage;
-		this._chartEl.appendChild(msg);
-		
-		this._chartContainer.appendChild(chl);
-		chl.appendChild(chw);
-		chw.appendChild(this._chartLegendEl);
-		this._chartContainer.appendChild(this._chartEl);
-		this._bodyEl.insertBefore(this._chartContainer,this._tableEl);
-	};
-
-
-	/**
-	 * Create anchor elements for use as buttons. Args: label
-	 * is text to appear on the face of the button, parentEl
-	 * is the el to which the anchor will be attached, position
-	 * is true for inserting as the first node and false for
-	 * inserting as the last node of the parentEl.
-	 * @method _createButton
-	 * @private
-	 */	
-	proto._createButton = function(label, parentEl, position) {
-		var b = document.createElement("a");
-		b.innerHTML = b.title = label;
-		if(parentEl) {
-			if(!position) {
-				parentEl.appendChild(b);
-			} else {
-				parentEl.insertBefore(b, parentEl.firstChild);	
-			}
-		}
-		return b;
-	};
-	
-	/**
-	 * Set's console busy state.
-	 * @method _setBusyState
-	 * @private
-	 **/
-	proto._setBusyState = function(b) {
-		if(b) {
-			Dom.addClass(this._busyEl, PV.CLASS_BUSY);
-			this._busy = true;
-		} else {
-			Dom.removeClass(this._busyEl, PV.CLASS_BUSY);
-			this._busy = false;
-		}
-	};
-
-	/**
-	 * Generages a sorting function based on current sortedBy
-	 * values.
-	 * @method _createProfilerViewerElement
-	 * @private
-	 **/
-	proto._genSortFunction = function(key, dir) {
-		var by = key;
-		var direction = dir;
-		return function(a, b) {
-			if (direction == YAHOO.widget.DataTable.CLASS_ASC) {
-				return a[by] - b[by];	
-			} else {
-				return ((a[by] - b[by]) * -1);
-			}
-		};
-	};
-
-	/**
-	 * Utility function for array sums.
-	 * @method _arraySum
-	 * @private
-	 **/	
-	 var _arraySum = function(arr){
-		var ct = 0;
-		for(var i = 0; i < arr.length; ct+=arr[i++]){}
-		return ct;
-	};
-	
-	/**
-	 * Retrieves data from Profiler, filtering and sorting as needed
-	 * based on current widget state.  Adds calculated percentage
-	 * column and function name to data returned by Profiler.
-	 * @method _getProfilerData
-	 * @private
-	 **/
-	proto._getProfilerData = function() {
-		YAHOO.log("Profiler data requested from function DataSource.", "info", "ProfilerViewer");
-		
-		var obj = Profiler.getFullReport();
-		var arr = [];
-		var totalTime = 0;
-		for (name in obj) {
-    		if (YAHOO.lang.hasOwnProperty(obj, name)) {
-				var r = obj[name];
-				var o = {};
-				o.fn = name; //add function name to record
-				o.points = r.points.slice(); //copy live array
-				o.calls = r.calls;
-				o.min = r.min;
-				o.max = r.max;
-				o.avg = r.avg;
-				o.total = _arraySum(o.points);
-				o.points = r.points;
-				var f = this.get("filter");
-				if((!f) || (f(o))) {
-					arr.push(o);
-					totalTime += o.total;
-				}
-			}
-		}
-		
-		//add calculated percentage column
-		for (var i = 0, j = arr.length; i < j; i++) {
-			arr[i].pct = (totalTime) ? (arr[i].total * 100) / totalTime : 0;	
-		}
-
-		var sortedBy = this.get("sortedBy");
-		var key = sortedBy.key;
-		var dir = sortedBy.dir;		
-
-		arr.sort(this._genSortFunction(key, dir));
-		
-		YAHOO.log("Returning data from DataSource: " + YAHOO.lang.dump(arr), "info", "ProfilerViewer");
-		
-		return arr;
-	};
-	
-	/**
-	 * Set up the DataTable.
-	 * @method _initDataTable
-	 * @private
-	 */
-	proto._initDataTable = function() {
-		YAHOO.log("Creating DataTable instance...", "info", "ProfilerViewer");
-		
-		var self = this;
-		
-		//Set up the JS Function DataSource, pulling data from
-		//the Profiler.
-		this._dataSource = new YAHOO.util.DataSource(
-			function() {
-				return self._getProfilerData.call(self);	
-			},
-			{
-				responseType: YAHOO.util.DataSource.TYPE_JSARRAY,
-				maxCacheEntries: 0
-			}
-		);
-		var ds = this._dataSource;
-
-		ds.responseSchema =
-		{
-			fields: [ "fn", "avg", "calls", "max", "min", "total", "pct", "points"]
-		};
-		
-		//Set up the DataTable.
-		var formatTimeValue = function(elCell, oRecord, oColumn, oData) {
-			var a = (oData === Math.floor(oData)) ? oData : (Math.round(oData*1000))/1000;
-			elCell.innerHTML = a + " " + PV.STRINGS.millisecondsAbbrev;
-		};
-
-		var formatPercent = function(elCell, oRecord, oColumn, oData) {
-			var a = (oData === Math.floor(oData)) ? oData : (Math.round(oData*100))/100;
-			elCell.innerHTML = a + "%";
-		};
-		
-		var a = YAHOO.widget.DataTable.CLASS_ASC;
-		var d = YAHOO.widget.DataTable.CLASS_DESC;
-		var c = PV.STRINGS.colHeads;
-		var f = formatTimeValue;
-		
-		var cols = [
-			{key:"fn", sortable:true, label: c.fn[0],
-				sortOptions: {defaultDir:a}, 
-				resizeable: (YAHOO.util.DragDrop) ? true : false,
-				minWidth:c.fn[1]},
-			{key:"calls", sortable:true, label: c.calls[0],
-				sortOptions: {defaultDir:d},
-				width:c.calls[1]},
-			{key:"avg", sortable:true, label: c.avg[0],
-				sortOptions: {defaultDir:d},
-				formatter:f,
-				width:c.avg[1]},
-			{key:"min", sortable:true, label: c.min[0],
-				sortOptions: {defaultDir:a},
-				formatter:f,
-				width:c.min[1]}, 
-			{key:"max", sortable:true, label: c.max[0],
-				sortOptions: {defaultDir:d},
-				formatter:f,
-				width:c.max[1]},
-			{key:"total", sortable:true, label: c.total[0],
-				sortOptions: {defaultDir:d},
-				formatter:f,
-				width:c.total[1]},
-			{key:"pct", sortable:true, label: c.pct[0],
-				sortOptions: {defaultDir:d}, 
-				formatter:formatPercent,
-				width:c.pct[1]}
-		];
-
-		this._dataTable = new YAHOO.widget.DataTable(this._tableEl, cols, ds, {
-			scrollable:true,
-			height:this.get("tableHeight"),
-			initialRequest:null,
-			sortedBy: {
-				key: "total",
-				dir: YAHOO.widget.DataTable.CLASS_DESC
-			}
-		});
-		var dt = this._dataTable;
-
-		//Wire up DataTable events to drive the rest of the UI.
-		dt.subscribe("sortedByChange", this._sortedByChange, this, true);
-		dt.subscribe("renderEvent", this._dataTableRenderHandler, this, true);
-		dt.subscribe("initEvent", this._dataTableRenderHandler, this, true);
-		Event.on(this._tableEl.getElementsByTagName("th"), "click", this._thClickHandler, this, true);
-		YAHOO.log("DataTable initialized.", "info", "ProfilerViewer");
-	};
-		
-	/**
-	 * Proxy the sort event in DataTable into the ProfilerViewer
-	 * attribute.
-	 * @method _sortedByChange
-	 * @private
-	 **/
-	proto._sortedByChange = function(o) {
-		YAHOO.log("Relaying DataTable sortedBy value change; new key: " + o.newValue.key + "; new direction: " + o.newValue.dir + ".", "info", "ProfilerViewer");
-		this.set("sortedBy", {key: o.newValue.key, dir:o.newValue.dir});
-	};
-
-	/**
-	 * Proxy the render event in DataTable into the ProfilerViewer
-	 * attribute.
-	 * @method _dataTableRenderHandler
-	 * @private
-	 **/
-	proto._dataTableRenderHandler = function(o) {
-		YAHOO.log("DataTable's render event has fired.", "info", "ProfilerViewer");
-		this._setBusyState(false);
-	};
-	
-	/**
-	 * Event handler for clicks on the DataTable's sortable column
-	 * heads.
-	 * @method _thClickHandler
-	 * @private
-	 **/
-	proto._thClickHandler = function(o) {
-		YAHOO.log("DataTable's header row was clicked for sorting.", "info", "ProfilerViewer");
-		this._setBusyState(true);
-	};
-
-	/**
-	 * Refresh DataTable, getting new data from Profiler.
-	 * @method _refreshDataTable
-	 * @private
-	 **/
-	proto._refreshDataTable = function(args) {
-		YAHOO.log("Beginning to refresh DataTable contents...", "info", "ProfilerViewer");
-		var dt = this._dataTable;
-		dt.getDataSource().sendRequest("", dt.onDataReturnInitializeTable, dt);
-		YAHOO.log("DataTable refresh complete.", "info", "ProfilerViewer");
-	};
-
-	/**
-	 * Refresh chart, getting new data from table.
-	 * @method _refreshChart
-	 * @private
-	 **/
-	proto._refreshChart = function() {
-		YAHOO.log("Beginning to refresh Chart contents...", "info", "ProfilerViewer");
-		
-		switch (this.get("sortedBy").key) {
-			case "fn":
-				/*Keep the same data on the chart, but force update to 
-				  reflect new sort order on function/method name: */
-				this._chart.set("dataSource", this._chart.get("dataSource"));
-				
-				/*no further action necessary; chart redraws*/
-				return;
-			case "calls":
-				/*Null out the xAxis formatting before redrawing chart.*/
-				this._chart.set("xAxis", this._chartAxisDefinitionPlain);
-				break;
-			case "pct":
-				this._chart.set("xAxis", this._chartAxisDefinitionPercent);
-				break;
-			default:
-				/*Set the default xAxis; redraw legend; set the new series definition.*/
-				this._chart.set("xAxis", this._chartAxisDefinitionTime);
-				break;
-		}
-		
-		this._drawChartLegend();
-		this._chart.set("series", this._getSeriesDef(this.get("sortedBy").key));
-
-		YAHOO.log("Chart refresh complete.", "info", "ProfilerViewer");
-	};
-	
-	/**
-	 * Get data for the Chart from DataTable recordset
-	 * @method _getChartData
-	 * @private
-	 */
-	proto._getChartData = function() {
-		YAHOO.log("Getting data for chart from function DataSource.", "info", "ProfilerViewer");
-		var records = this._dataTable.getRecordSet().getRecords(0, this.get("maxChartFunctions"));
-		var arr = [];
-		for (var i = records.length - 1; i>-1; i--) {
-			arr.push(records[i].getData());	
-		}
-		YAHOO.log("Returning data to Chart: " + YAHOO.lang.dump(arr), "info", "ProfilerViewer");
-		return arr;
-	};
-	
-	/**
-	 * Build series definition based on current configuration attributes.
-	 * @method _getSeriesDef
-	 * @private
-	 */
-	proto._getSeriesDef = function(field) {
-		var sd = this.get("chartSeriesDefinitions")[field];
-		var arr = [];
-		for(var i = 0, j = sd.group.length; i<j; i++) {
-			var c = this.get("chartSeriesDefinitions")[sd.group[i]];
-			arr.push(
-				{displayName:c.displayName,
-				 xField:c.xField,
-				 style: {color:c.style.color, size:c.style.size}
-				}
-			);
-		}
-		
-		YAHOO.log("Returning new series definition to chart: " + YAHOO.lang.dump(arr), "info", "ProfilerViewer");
-		return arr;
-	};
-	
-	/**
-	 * Set up the Chart.
-	 * @method _initChart
-	 * @private
-	 */
-	proto._initChart = function() {
-		YAHOO.log("Initializing chart...", "info", "ProfilerViewer");
-		
-		this._sizeChartCanvas();
-		
-		YAHOO.widget.Chart.SWFURL = this.get("swfUrl");
-
-		var self = this;
-
-		//Create DataSource based on records currently displayed
-		//at the top of the sort list in the DataTable.
-		var ds = new YAHOO.util.DataSource(
-			//force the jsfunction DataSource to run in the scope of
-			//the ProfilerViewer, not in the YAHOO.util.DataSource scope:
-			function() {
-				return self._getChartData.call(self);
-			}, 
-			{
-				responseType: YAHOO.util.DataSource.TYPE_JSARRAY,
-				maxCacheEntries: 0
-			}
-		);
-
-		ds.responseSchema =
-		{
-			fields: [ "fn", "avg", "calls", "max", "min", "total", "pct" ]
-		};
-		
-		ds.subscribe('responseEvent', this._sizeChartCanvas, this, true);
-		
-		//Set up the chart itself.
-		this._chartAxisDefinitionTime = new YAHOO.widget.NumericAxis();
-		this._chartAxisDefinitionTime.labelFunction = "YAHOO.widget.ProfilerViewer.timeAxisLabelFunction";
-		
-		this._chartAxisDefinitionPercent = new YAHOO.widget.NumericAxis();
-		this._chartAxisDefinitionPercent.labelFunction = "YAHOO.widget.ProfilerViewer.percentAxisLabelFunction";
-
-		this._chartAxisDefinitionPlain = new YAHOO.widget.NumericAxis();
-		
-		this._chart = new YAHOO.widget.BarChart( this._chartEl, ds,
-		{
-			yField: "fn",
-			series: this._getSeriesDef(this.get("sortedBy").key),
-			style: this.get("chartStyle"),
-			xAxis: this._chartAxisDefinitionTime
-		} );
-		
-		this._drawChartLegend();
-		this._chartInitialized = true;
-		this._dataTable.unsubscribe("initEvent", this._initChart, this);
-		this._dataTable.subscribe("initEvent", this._refreshChart, this, true);
-		
-		YAHOO.log("Chart initialization complete.", "info", "ProfilerViewer");
-	};
-	
-	/**
-	 * Set up the Chart's legend
-	 * @method _drawChartLegend
-	 * @private
-	 **/
-	proto._drawChartLegend = function() {
-		YAHOO.log("Drawing chart legend...", "info", "ProfilerViewer");
-		var seriesDefs = this.get("chartSeriesDefinitions");
-		var currentDef = seriesDefs[this.get("sortedBy").key];
-		var l = this._chartLegendEl;
-		l.innerHTML = "";
-		for(var i = 0, j = currentDef.group.length; i<j; i++) {
-			var c = seriesDefs[currentDef.group[i]];
-			var dt = document.createElement("dt");
-			Dom.setStyle(dt, "backgroundColor", "#" + c.style.color);
-			var dd = document.createElement("dd");
-			dd.innerHTML = c.displayName;
-			l.appendChild(dt);
-			l.appendChild(dd);
-		}
-	};
-	
-	/**
-	 * Resize the chart's canvas if based on number of records
-	 * returned from the chart's datasource.
-	 * @method _sizeChartCanvas
-	 * @private
-	 **/
-	proto._sizeChartCanvas = function(o) {
-		YAHOO.log("Resizing chart canvas...", "info", "ProfilerViewer");
-		var bars = (o) ? o.response.length : this.get("maxChartFunctions");
-		var s = (bars * 36) + 34;
-		if (s != parseInt(this._chartElHeight, 10)) {
-			this._chartElHeight = s;
-			Dom.setStyle(this._chartEl, "height", s + "px");
-		}
-	};
-
-    /**
-     * setAttributeConfigs TabView specific properties.
-     * @method initAttributes
-     * @param {Object} attr Hash of initial attributes
-	 * @method initAttributes
-	 * @private
-     */
-    proto.initAttributes = function(attr) {
-		YAHOO.log("Initializing attributes...", "info", "ProfilerViewer");
-        YAHOO.widget.ProfilerViewer.superclass.initAttributes.call(this, attr);
-        /**
-         * The YUI Loader base path from which to pull YUI files needed
-		 * in the rendering of the ProfilerViewer canvas.  Passed directly
-		 * to YUI Loader.  Leave blank to draw files from
-		 * yui.yahooapis.com.
-         * @attribute base
-         * @type string
-		 * @default ""
-         */
-        this.setAttributeConfig('base', {
-            value: attr.base
-        });
-
-        /**
-         * The height of the DataTable.  The table will scroll
-		 * vertically if the content overflows the specified
-		 * height.
-         * @attribute tableHeight
-         * @type string
-		 * @default "15em"
-         */
-        this.setAttributeConfig('tableHeight', {
-            value: attr.tableHeight || "15em",
-			method: function(s) {
-				if(this._dataTable) {
-					this._dataTable.set("height", s);
-				}
-			}
-        });
-		
-        /**
-         * The default column key to sort by.  Valid keys are: fn, calls,
-		 * avg, min, max, total.  Valid dir values are: 
-		 * YAHOO.widget.DataTable.CLASS_ASC and
-		 * YAHOO.widget.DataTable.CLASS_DESC (or their
-		 * string equivalents).
-         * @attribute sortedBy
-         * @type string
-		 * @default {key:"total", dir:"yui-dt-desc"}
-         */
-        this.setAttributeConfig('sortedBy', {
-            value: attr.sortedBy || {key:"total", dir:"yui-dt-desc"}
-        });
-
-        /**
-         * A filter function to use in selecting functions that will
-		 * appear in the ProfilerViewer report.  The function is passed
-		 * a function report object and should return a boolean indicating
-		 * whether that function should be included in the ProfilerViewer
-		 * display.  The argument is structured as follows:
-		 *
-		 * {
-		 *	 	fn: <str function name>,
-		 *		calls : <n number of calls>,
-		 *		avg : <n average call duration>,
-		 *		max: <n duration of longest call>,
-		 *		min: <n duration of shortest call>,
-		 *		total: <n total time of all calls>
-		 *		points : <array time in ms of each call>
-		 *	}
-		 *
-		 * For example, you would use the follwing filter function to 
-		 * return only functions that have been called at least once:
-		 * 
-		 * 	function(o) {
-		 *		return (o.calls > 0);
-		 *	}
-		 *
-         * @attribute filter
-         * @type function
-		 * @default null
-         */
-        this.setAttributeConfig('filter', {
-            value: attr.filter || null,
-			validator: YAHOO.lang.isFunction
-        });
-
-		/**
-		 * The path to the YUI Charts swf file; must be a full URI
-		 * or a path relative to the page being profiled. Changes at runtime
-		 * not supported; pass this value in at instantiation.
-		 * @attribute swfUrl
-		 * @type string
-		 * @default "http://yui.yahooapis.com/2.5.0/build/charts/assets/charts.swf"
-		 */
-		this.setAttributeConfig('swfUrl', {
-			value: attr.swfUrl || "http://yui.yahooapis.com/2.5.0/build/charts/assets/charts.swf"
-		});
-
-        /**
-         * The maximum number of functions to profile in the chart. The
-		 * greater the number of functions, the greater the height of the
-		 * chart canvas.
-		 * height.
-         * @attribute maxChartFunctions
-         * @type int
-		 * @default 6
-         */
-        this.setAttributeConfig('maxChartFunctions', {
-            value: attr.maxChartFunctions || 6,
-			method: function(s) {
-				if(this._rendered) {
-					this._sizeChartCanvas();
-				}
-			},
-			validator: YAHOO.lang.isNumber
-        });
-		
-        /**
-         * The style object that defines the chart's visual presentation.
-		 * Conforms to the style attribute passed to the Charts Control
-		 * constructor.  See Charts Control User's Guide for more information
-		 * on how to format this object.
-         * @attribute chartStyle
-         * @type obj
-		 * @default See JS source for default definitions.
-         */
-        this.setAttributeConfig('chartStyle', {
-            value: 	attr.chartStyle || {
-				font:
-					{
-						name: "Arial",
-						color: 0xeeee5c,
-						size: 12
-					},
-					background:
-					{
-						color: "6e6e63"
-					}
-				},
-			method: function() {
-					if(this._rendered && this.get("showChart")) {
-						this._refreshChart();
-					}
-				}
-        });
-		
-        /**
-         * The series definition information to use when charting
-		 * specific fields on the chart.  displayName, xField,
-		 * and style members are used to construct the series
-		 * definition; the "group" member is the array of fields
-		 * that should be charted when the table is sorted by a
-		 * given field.
-         * @attribute chartSeriesDefinitions
-         * @type obj
-		 * @default See JS source for full default definitions.
-         */
-        this.setAttributeConfig('chartSeriesDefinitions', {
-            value: 	attr.chartSeriesDefinitions ||  {
-						total: {
-							displayName: PV.STRINGS.colHeads.total[0],
-							xField: "total",
-							style: {color:"4d95dd", size:20},
-							group: ["total"]
-						},
-						calls: {		
-							displayName: PV.STRINGS.colHeads.calls[0],
-							xField: "calls",
-							style: {color:"edff9f", size:20},
-							group: ["calls"]
-						},
-						avg: {
-							displayName: PV.STRINGS.colHeads.avg[0],
-							xField: "avg",
-							style: {color:"209daf", size:9},
-							group: ["avg", "min", "max"]
-						},
-						min: {
-							displayName: PV.STRINGS.colHeads.min[0],
-							xField: "min",
-							style: {color:"b6ecf4", size:9},
-							group: ["avg", "min", "max"]
-						},
-						max: {
-							displayName: PV.STRINGS.colHeads.max[0],
-							xField: "max",
-							style: {color:"29c7de", size:9},
-							group: ["avg", "min", "max"]
-						},
-						pct: {
-							displayName: PV.STRINGS.colHeads.pct[0],
-							xField: "pct",
-							style: {color:"C96EDB", size:20},
-							group: ["pct"]
-						}
-				},
-			method: function() {
-					if(this._rendered && this.get("showChart")) {
-						this._refreshChart();
-					}
-				}
-        });
-		
-        /**
-         * The default visibility setting for the viewer canvas. If true,
-		 * the viewer will load all necessary files and render itself
-		 * immediately upon instantiation; otherwise, the viewer will
-		 * load only minimal resources until the user toggles visibility
-		 * via the UI.
-         * @attribute visible
-         * @type boolean
-		 * @default false
-         */
-        this.setAttributeConfig('visible', {
-            value: attr.visible || false,
-			validator: YAHOO.lang.isBoolean,
-			method: function(b) {
-				if(b) {
-					this._show();
-				} else {
-					if (this._rendered) {
-						this._hide();
-					}
-				}
-			}
-        });
-
-        /**
-         * The default visibility setting for the chart.
-         * @attribute showChart
-         * @type boolean
-		 * @default true
-         */
-        this.setAttributeConfig('showChart', {
-            value: attr.showChart || true,
-			validator: YAHOO.lang.isBoolean,
-			writeOnce: true
-			
-        });
-		
-		YAHOO.widget.ProfilerViewer.superclass.initAttributes.call(this, attr);
-		
-		YAHOO.log("Attributes initialized.", "info", "ProfilerViewer");
-    };
-	
-})();
-YAHOO.register("profilerviewer", YAHOO.widget.ProfilerViewer, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/profilerviewer/profilerviewer-beta-min.js b/eclipse.org-common/yui/2.6.0/build/profilerviewer/profilerviewer-beta-min.js
deleted file mode 100644
index e1c4a40..0000000
--- a/eclipse.org-common/yui/2.6.0/build/profilerviewer/profilerviewer-beta-min.js
+++ /dev/null
@@ -1,9 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){YAHOO.widget.ProfilerViewer=function(H,G){G=G||{};if(arguments.length==1&&!YAHOO.lang.isString(H)&&!H.nodeName){G=H;H=G.element||null;}if(!H&&!G.element){H=this._createProfilerViewerElement();}YAHOO.widget.ProfilerViewer.superclass.constructor.call(this,H,G);this._init();};YAHOO.extend(YAHOO.widget.ProfilerViewer,YAHOO.util.Element);YAHOO.lang.augmentObject(YAHOO.widget.ProfilerViewer,{CLASS:"yui-pv",CLASS_DASHBOARD:"yui-pv-dashboard",CLASS_REFRESH:"yui-pv-refresh",CLASS_BUSY:"yui-pv-busy",CLASS_CHART_CONTAINER:"yui-pv-chartcontainer",CLASS_CHART:"yui-pv-chart",CLASS_CHART_LEGEND:"yui-pv-chartlegend",CLASS_TABLE:"yui-pv-table",STRINGS:{title:"YUI Profiler (beta)",buttons:{viewprofiler:"View Profiler Data",hideprofiler:"Hide Profiler Report",showchart:"Show Chart",hidechart:"Hide Chart",refreshdata:"Refresh Data"},colHeads:{fn:["Function/Method",null],calls:["Calls",40],avg:["Average",80],min:["Shortest",70],max:["Longest",70],total:["Total Time",70],pct:["Percent",70]},millisecondsAbbrev:"ms",initMessage:"initialiazing chart...",installFlashMessage:"Unable to load Flash content. The YUI Charts Control requires Flash Player 9.0.45 or higher. You can download the latest version of Flash Player from the <a href='http://www.adobe.com/go/getflashplayer'>Adobe Flash Player Download Center</a>."},timeAxisLabelFunction:function(H){var G=(H===Math.floor(H))?H:(Math.round(H*1000))/1000;return(G+" "+YAHOO.widget.ProfilerViewer.STRINGS.millisecondsAbbrev);},percentAxisLabelFunction:function(H){var G=(H===Math.floor(H))?H:(Math.round(H*100))/100;return(G+"%");}},true);var C=YAHOO.util.Dom;var A=YAHOO.util.Event;var B=YAHOO.tool.Profiler;var E=YAHOO.widget.ProfilerViewer;var D=E.prototype;D.refreshData=function(){this.fireEvent("dataRefreshEvent");};D.getHeadEl=function(){return(this._headEl)?C.get(this._headEl):false;};D.getBodyEl=function(){return(this._bodyEl)?C.get(this._bodyEl):false;};D.getChartEl=function(){return(this._chartEl)?C.get(this._chartEl):false;};D.getTableEl=function(){return(this._tableEl)?C.get(this._tableEl):false;};D.getDataTable=function(){return this._dataTable;};D.getChart=function(){return this._chart;};D._rendered=false;D._headEl=null;D._bodyEl=null;D._toggleVisibleEl=null;D._busyEl=null;D._busy=false;D._tableEl=null;D._dataTable=null;D._chartEl=null;D._chartLegendEl=null;D._chartElHeight=250;D._chart=null;D._chartInitialized=false;D._init=function(){this.createEvent("dataRefreshEvent");this.createEvent("renderEvent");this.on("dataRefreshEvent",this._refreshDataTable,this,true);this._initLauncherDOM();if(this.get("showChart")){this.on("sortedByChange",this._refreshChart);}};D._createProfilerViewerElement=function(){var G=document.createElement("div");document.body.insertBefore(G,document.body.firstChild);C.addClass(G,this.SKIN_CLASS);C.addClass(G,E.CLASS);return G;};D.toString=function(){return"ProfilerViewer "+(this.get("id")||this.get("tagName"));};D._toggleVisible=function(){var G=(this.get("visible"))?false:true;this.set("visible",G);};D._show=function(){if(!this._busy){this._setBusyState(true);if(!this._rendered){var G=new YAHOO.util.YUILoader();if(this.get("base")){G.base=this.get("base");}var H=["datatable"];if(this.get("showChart")){H.push("charts");}G.insert({require:H,onSuccess:function(){this._render();},scope:this});}else{var I=this.get("element");C.removeClass(I,"yui-pv-minimized");this._toggleVisibleEl.innerHTML=E.STRINGS.buttons.hideprofiler;C.addClass(I,"yui-pv-null");C.removeClass(I,"yui-pv-null");this.refreshData();}}};D._hide=function(){this._toggleVisibleEl.innerHTML=E.STRINGS.buttons.viewprofiler;C.addClass(this.get("element"),"yui-pv-minimized");};D._render=function(){C.removeClass(this.get("element"),"yui-pv-minimized");this._initViewerDOM();this._initDataTable();if(this.get("showChart")){this._initChartDOM();this._initChart();}this._rendered=true;this._toggleVisibleEl.innerHTML=E.STRINGS.buttons.hideprofiler;this.fireEvent("renderEvent");};D._initLauncherDOM=function(){var I=this.get("element");C.addClass(I,E.CLASS);C.addClass(I,"yui-pv-minimized");this._headEl=document.createElement("div");C.addClass(this._headEl,"hd");var H=E.STRINGS.buttons;var G=(this.get("visible"))?H.hideprofiler:H.viewprofiler;this._toggleVisibleEl=this._createButton(G,this._headEl);this._refreshEl=this._createButton(H.refreshdata,this._headEl);C.addClass(this._refreshEl,E.CLASS_REFRESH);this._busyEl=document.createElement("span");this._headEl.appendChild(this._busyEl);var J=document.createElement("h4");J.innerHTML=E.STRINGS.title;this._headEl.appendChild(J);I.appendChild(this._headEl);A.on(this._toggleVisibleEl,"click",this._toggleVisible,this,true);A.on(this._refreshEl,"click",function(){if(!this._busy){this._setBusyState(true);this.fireEvent("dataRefreshEvent");}},this,true);};D._initViewerDOM=function(){var G=this.get("element");this._bodyEl=document.createElement("div");C.addClass(this._bodyEl,"bd");this._tableEl=document.createElement("div");C.addClass(this._tableEl,E.CLASS_TABLE);this._bodyEl.appendChild(this._tableEl);G.appendChild(this._bodyEl);};D._initChartDOM=function(){this._chartContainer=document.createElement("div");C.addClass(this._chartContainer,E.CLASS_CHART_CONTAINER);var H=document.createElement("div");C.addClass(H,E.CLASS_CHART_LEGEND);var G=document.createElement("div");this._chartLegendEl=document.createElement("dl");this._chartLegendEl.innerHTML="<dd>"+E.STRINGS.initMessage+"</dd>";this._chartEl=document.createElement("div");C.addClass(this._chartEl,E.CLASS_CHART);var I=document.createElement("p");I.innerHTML=E.STRINGS.installFlashMessage;this._chartEl.appendChild(I);this._chartContainer.appendChild(H);H.appendChild(G);G.appendChild(this._chartLegendEl);this._chartContainer.appendChild(this._chartEl);this._bodyEl.insertBefore(this._chartContainer,this._tableEl);};D._createButton=function(I,J,H){var G=document.createElement("a");G.innerHTML=G.title=I;if(J){if(!H){J.appendChild(G);}else{J.insertBefore(G,J.firstChild);}}return G;};D._setBusyState=function(G){if(G){C.addClass(this._busyEl,E.CLASS_BUSY);
-this._busy=true;}else{C.removeClass(this._busyEl,E.CLASS_BUSY);this._busy=false;}};D._genSortFunction=function(H,G){var J=H;var I=G;return function(L,K){if(I==YAHOO.widget.DataTable.CLASS_ASC){return L[J]-K[J];}else{return((L[J]-K[J])*-1);}};};var F=function(G){var I=0;for(var H=0;H<G.length;I+=G[H++]){}return I;};D._getProfilerData=function(){var L=B.getFullReport();var N=[];var H=0;for(name in L){if(YAHOO.lang.hasOwnProperty(L,name)){var G=L[name];var I={};I.fn=name;I.points=G.points.slice();I.calls=G.calls;I.min=G.min;I.max=G.max;I.avg=G.avg;I.total=F(I.points);I.points=G.points;var P=this.get("filter");if((!P)||(P(I))){N.push(I);H+=I.total;}}}for(var M=0,K=N.length;M<K;M++){N[M].pct=(H)?(N[M].total*100)/H:0;}var O=this.get("sortedBy");var Q=O.key;var J=O.dir;N.sort(this._genSortFunction(Q,J));return N;};D._initDataTable=function(){var P=this;this._dataSource=new YAHOO.util.DataSource(function(){return P._getProfilerData.call(P);},{responseType:YAHOO.util.DataSource.TYPE_JSARRAY,maxCacheEntries:0});var H=this._dataSource;H.responseSchema={fields:["fn","avg","calls","max","min","total","pct","points"]};var O=function(S,R,T,U){var Q=(U===Math.floor(U))?U:(Math.round(U*1000))/1000;S.innerHTML=Q+" "+E.STRINGS.millisecondsAbbrev;};var N=function(S,R,T,U){var Q=(U===Math.floor(U))?U:(Math.round(U*100))/100;S.innerHTML=Q+"%";};var M=YAHOO.widget.DataTable.CLASS_ASC;var J=YAHOO.widget.DataTable.CLASS_DESC;var K=E.STRINGS.colHeads;var I=O;var L=[{key:"fn",sortable:true,label:K.fn[0],sortOptions:{defaultDir:M},resizeable:(YAHOO.util.DragDrop)?true:false,minWidth:K.fn[1]},{key:"calls",sortable:true,label:K.calls[0],sortOptions:{defaultDir:J},width:K.calls[1]},{key:"avg",sortable:true,label:K.avg[0],sortOptions:{defaultDir:J},formatter:I,width:K.avg[1]},{key:"min",sortable:true,label:K.min[0],sortOptions:{defaultDir:M},formatter:I,width:K.min[1]},{key:"max",sortable:true,label:K.max[0],sortOptions:{defaultDir:J},formatter:I,width:K.max[1]},{key:"total",sortable:true,label:K.total[0],sortOptions:{defaultDir:J},formatter:I,width:K.total[1]},{key:"pct",sortable:true,label:K.pct[0],sortOptions:{defaultDir:J},formatter:N,width:K.pct[1]}];this._dataTable=new YAHOO.widget.DataTable(this._tableEl,L,H,{scrollable:true,height:this.get("tableHeight"),initialRequest:null,sortedBy:{key:"total",dir:YAHOO.widget.DataTable.CLASS_DESC}});var G=this._dataTable;G.subscribe("sortedByChange",this._sortedByChange,this,true);G.subscribe("renderEvent",this._dataTableRenderHandler,this,true);G.subscribe("initEvent",this._dataTableRenderHandler,this,true);A.on(this._tableEl.getElementsByTagName("th"),"click",this._thClickHandler,this,true);};D._sortedByChange=function(G){this.set("sortedBy",{key:G.newValue.key,dir:G.newValue.dir});};D._dataTableRenderHandler=function(G){this._setBusyState(false);};D._thClickHandler=function(G){this._setBusyState(true);};D._refreshDataTable=function(G){var H=this._dataTable;H.getDataSource().sendRequest("",H.onDataReturnInitializeTable,H);};D._refreshChart=function(){switch(this.get("sortedBy").key){case"fn":this._chart.set("dataSource",this._chart.get("dataSource"));return ;case"calls":this._chart.set("xAxis",this._chartAxisDefinitionPlain);break;case"pct":this._chart.set("xAxis",this._chartAxisDefinitionPercent);break;default:this._chart.set("xAxis",this._chartAxisDefinitionTime);break;}this._drawChartLegend();this._chart.set("series",this._getSeriesDef(this.get("sortedBy").key));};D._getChartData=function(){var H=this._dataTable.getRecordSet().getRecords(0,this.get("maxChartFunctions"));var G=[];for(var I=H.length-1;I>-1;I--){G.push(H[I].getData());}return G;};D._getSeriesDef=function(K){var J=this.get("chartSeriesDefinitions")[K];var G=[];for(var I=0,H=J.group.length;I<H;I++){var L=this.get("chartSeriesDefinitions")[J.group[I]];G.push({displayName:L.displayName,xField:L.xField,style:{color:L.style.color,size:L.style.size}});}return G;};D._initChart=function(){this._sizeChartCanvas();YAHOO.widget.Chart.SWFURL=this.get("swfUrl");var G=this;var H=new YAHOO.util.DataSource(function(){return G._getChartData.call(G);},{responseType:YAHOO.util.DataSource.TYPE_JSARRAY,maxCacheEntries:0});H.responseSchema={fields:["fn","avg","calls","max","min","total","pct"]};H.subscribe("responseEvent",this._sizeChartCanvas,this,true);this._chartAxisDefinitionTime=new YAHOO.widget.NumericAxis();this._chartAxisDefinitionTime.labelFunction="YAHOO.widget.ProfilerViewer.timeAxisLabelFunction";this._chartAxisDefinitionPercent=new YAHOO.widget.NumericAxis();this._chartAxisDefinitionPercent.labelFunction="YAHOO.widget.ProfilerViewer.percentAxisLabelFunction";this._chartAxisDefinitionPlain=new YAHOO.widget.NumericAxis();this._chart=new YAHOO.widget.BarChart(this._chartEl,H,{yField:"fn",series:this._getSeriesDef(this.get("sortedBy").key),style:this.get("chartStyle"),xAxis:this._chartAxisDefinitionTime});this._drawChartLegend();this._chartInitialized=true;this._dataTable.unsubscribe("initEvent",this._initChart,this);this._dataTable.subscribe("initEvent",this._refreshChart,this,true);};D._drawChartLegend=function(){var M=this.get("chartSeriesDefinitions");var I=M[this.get("sortedBy").key];var H=this._chartLegendEl;H.innerHTML="";for(var K=0,J=I.group.length;K<J;K++){var N=M[I.group[K]];var L=document.createElement("dt");C.setStyle(L,"backgroundColor","#"+N.style.color);var G=document.createElement("dd");G.innerHTML=N.displayName;H.appendChild(L);H.appendChild(G);}};D._sizeChartCanvas=function(I){var G=(I)?I.response.length:this.get("maxChartFunctions");var H=(G*36)+34;if(H!=parseInt(this._chartElHeight,10)){this._chartElHeight=H;C.setStyle(this._chartEl,"height",H+"px");}};D.initAttributes=function(G){YAHOO.widget.ProfilerViewer.superclass.initAttributes.call(this,G);this.setAttributeConfig("base",{value:G.base});this.setAttributeConfig("tableHeight",{value:G.tableHeight||"15em",method:function(H){if(this._dataTable){this._dataTable.set("height",H);}}});this.setAttributeConfig("sortedBy",{value:G.sortedBy||{key:"total",dir:"yui-dt-desc"}});
-this.setAttributeConfig("filter",{value:G.filter||null,validator:YAHOO.lang.isFunction});this.setAttributeConfig("swfUrl",{value:G.swfUrl||"http://yui.yahooapis.com/2.5.0/build/charts/assets/charts.swf"});this.setAttributeConfig("maxChartFunctions",{value:G.maxChartFunctions||6,method:function(H){if(this._rendered){this._sizeChartCanvas();}},validator:YAHOO.lang.isNumber});this.setAttributeConfig("chartStyle",{value:G.chartStyle||{font:{name:"Arial",color:15658588,size:12},background:{color:"6e6e63"}},method:function(){if(this._rendered&&this.get("showChart")){this._refreshChart();}}});this.setAttributeConfig("chartSeriesDefinitions",{value:G.chartSeriesDefinitions||{total:{displayName:E.STRINGS.colHeads.total[0],xField:"total",style:{color:"4d95dd",size:20},group:["total"]},calls:{displayName:E.STRINGS.colHeads.calls[0],xField:"calls",style:{color:"edff9f",size:20},group:["calls"]},avg:{displayName:E.STRINGS.colHeads.avg[0],xField:"avg",style:{color:"209daf",size:9},group:["avg","min","max"]},min:{displayName:E.STRINGS.colHeads.min[0],xField:"min",style:{color:"b6ecf4",size:9},group:["avg","min","max"]},max:{displayName:E.STRINGS.colHeads.max[0],xField:"max",style:{color:"29c7de",size:9},group:["avg","min","max"]},pct:{displayName:E.STRINGS.colHeads.pct[0],xField:"pct",style:{color:"C96EDB",size:20},group:["pct"]}},method:function(){if(this._rendered&&this.get("showChart")){this._refreshChart();}}});this.setAttributeConfig("visible",{value:G.visible||false,validator:YAHOO.lang.isBoolean,method:function(H){if(H){this._show();}else{if(this._rendered){this._hide();}}}});this.setAttributeConfig("showChart",{value:G.showChart||true,validator:YAHOO.lang.isBoolean,writeOnce:true});YAHOO.widget.ProfilerViewer.superclass.initAttributes.call(this,G);};})();YAHOO.register("profilerviewer",YAHOO.widget.ProfilerViewer,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/profilerviewer/profilerviewer-beta.js b/eclipse.org-common/yui/2.6.0/build/profilerviewer/profilerviewer-beta.js
deleted file mode 100644
index aaf70a3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/profilerviewer/profilerviewer-beta.js
+++ /dev/null
@@ -1,1190 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function() {
-
-    /**
-     * The ProfilerViewer module provides a graphical display for viewing
-	 * the output of the YUI Profiler <http://developer.yahoo.com/yui/profiler>.
-     * @module profilerviewer
-     * @requires yahoo, dom, event, element, profiler, yuiloader
-     */
-
-    /**
-     * A widget to view YUI Profiler output.
-     * @namespace YAHOO.widget
-     * @class ProfilerViewer
-     * @extends YAHOO.util.Element
-     * @constructor
-     * @param {HTMLElement | String | Object} el(optional) The html 
-     * element into which the ProfileViewer should be rendered. 
-     * An element will be created if none provided.
-     * @param {Object} attr (optional) A key map of the ProfilerViewer's 
-     * initial attributes.  Ignored if first arg is an attributes object.
-     */
-    YAHOO.widget.ProfilerViewer = function(el, attr) {
-        attr = attr || {};
-        if (arguments.length == 1 && !YAHOO.lang.isString(el) && !el.nodeName) {
-            attr = el;
-            el = attr.element || null;
-        }
-        if (!el && !attr.element) {
-            el = this._createProfilerViewerElement();
-        }
-
-    	YAHOO.widget.ProfilerViewer.superclass.constructor.call(this, el, attr); 
-		
-		this._init();
-		
-    };
-
-    YAHOO.extend(YAHOO.widget.ProfilerViewer, YAHOO.util.Element);
-	
-	// Static members of YAHOO.widget.ProfilerViewer:
-	YAHOO.lang.augmentObject(YAHOO.widget.ProfilerViewer, {
-		/**
-		 * Classname for ProfilerViewer containing element.
-		 * @static
-		 * @property CLASS
-		 * @type string
-		 * @public
-		 * @default "yui-pv"
-		 */
-		CLASS: 'yui-pv',
-	
-		/**
-		 * Classname for ProfilerViewer button dashboard. 
-		 * @static
-		 * @property CLASS_DASHBOARD
-		 * @type string
-		 * @public
-		 * @default "yui-pv-dashboard"
-		 */
-		CLASS_DASHBOARD: 'yui-pv-dashboard',
-
-		/**
-		 * Classname for the "refresh data" button. 
-		 * @static
-		 * @property CLASS_REFRESH
-		 * @type string
-		 * @public
-		 * @default "yui-pv-refresh"
-		 */
-		CLASS_REFRESH: 'yui-pv-refresh',
-
-		/**
-		 * Classname for busy indicator in the dashboard. 
-		 * @static
-		 * @property CLASS_BUSY
-		 * @type string
-		 * @public
-		 * @default "yui-pv-busy"
-		 */
-		CLASS_BUSY: 'yui-pv-busy',
-	
-		/**
-		 * Classname for element containing the chart and chart
-		 * legend elements.
-		 * @static
-		 * @property CLASS_CHART_CONTAINER
-		 * @type string
-		 * @public
-		 * @default "yui-pv-chartcontainer"
-		 */
-		CLASS_CHART_CONTAINER: 'yui-pv-chartcontainer',
-	
-		/**
-		 * Classname for element containing the chart.
-		 * @static
-		 * @property CLASS_CHART
-		 * @type string
-		 * @public
-		 * @default "yui-pv-chart"
-		 */
-		CLASS_CHART: 'yui-pv-chart',
-		
-		/**
-		 * Classname for element containing the chart's legend. 
-		 * @static
-		 * @property CLASS_CHART_LEGEND
-		 * @type string
-		 * @public
-		 * @default "yui-pv-chartlegend"
-		 */
-		CLASS_CHART_LEGEND: 'yui-pv-chartlegend',
-		
-		/**
-		 * Classname for element containing the datatable. 
-		 * @static
-		 * @property CLASS_TABLE
-		 * @type string
-		 * @public
-		 * @default "yui-pv-table"
-		 */
-		CLASS_TABLE: 'yui-pv-table',
-		
-		/**
-		 * Strings used in the UI.
-		 * @static
-		 * @property STRINGS
-		 * @object
-		 * @public
-		 * @default English language strings for UI.
-		 */
-		STRINGS: {
-			title: "YUI Profiler (beta)",
-			buttons: {
-				viewprofiler: "View Profiler Data",
-				hideprofiler: "Hide Profiler Report",
-				showchart: "Show Chart",
-				hidechart: "Hide Chart",
-				refreshdata: "Refresh Data"
-			},
-			colHeads: {
-				//key: [column head label, width in pixels]
-				fn: ["Function/Method", null], //must auto-size
-				calls: ["Calls", 40],
-				avg: ["Average", 80],
-				min: ["Shortest", 70],
-				max: ["Longest", 70],
-				total: ["Total Time", 70],
-				pct: ["Percent", 70]
-			},
-			millisecondsAbbrev: "ms",
-			initMessage: "initialiazing chart...",
-			installFlashMessage: "Unable to load Flash content. The YUI Charts Control requires Flash Player 9.0.45 or higher. You can download the latest version of Flash Player from the <a href='http://www.adobe.com/go/getflashplayer'>Adobe Flash Player Download Center</a>."
-		},
-
-		/**
-		 * Function used to format numbers in milliseconds
-		 * for chart; must be publicly accessible, per Charts spec.
-		 * @static
-		 * @property timeAxisLabelFunction
-		 * @type function
-		 * @private
-		 */
-		timeAxisLabelFunction: function(n) {
-			var a = (n === Math.floor(n)) ? n : (Math.round(n*1000))/1000;
-			return (a + " " + YAHOO.widget.ProfilerViewer.STRINGS.millisecondsAbbrev);
-		},
-
-		/**
-		 * Function used to format percent numbers for chart; must
-		 * be publicly accessible, per Charts spec.
-		 * @static
-		 * @property percentAxisLabelFunction
-		 * @type function
-		 * @private
-		 */
-		percentAxisLabelFunction: function(n) {
-			var a = (n === Math.floor(n)) ? n : (Math.round(n*100))/100;
-			return (a + "%");
-		}
-		
-	
-	},true);
-	
-
-	//
-	// STANDARD SHORTCUTS
-	//
-    var Dom = YAHOO.util.Dom;
-    var Event = YAHOO.util.Event;
-	var Profiler = YAHOO.tool.Profiler;
-	var PV = YAHOO.widget.ProfilerViewer;
-	var proto = PV.prototype;
-
-
-	//
-	// PUBLIC METHODS
-	//
-	
-	 /**
-     * Refreshes the data displayed in the ProfilerViewer. When called,
-	 * this will invoke a refresh of the DataTable and (if displayed)
-	 * the Chart.
-     * @method refreshData
-     * @return void
-	 * @public
-     */	
-	proto.refreshData = function() {
-		this.fireEvent("dataRefreshEvent");
-	};
-
-	 /**
-     * Returns the element containing the console's header.
-     * @method getHeadEl
-     * @return HTMLElement
-	 * @public
-     */	
-	proto.getHeadEl = function() {
-		return (this._headEl) ? Dom.get(this._headEl) : false;
-	};
-
-	 /**
-     * Returns the element containing the console's body, including
-	 * the chart and the datatable..
-     * @method getBodyEl
-     * @return HTMLElement
-	 * @public
-     */	
-	proto.getBodyEl = function() {
-		return (this._bodyEl) ? Dom.get(this._bodyEl) : false;
-	};
-
-	 /**
-     * Returns the element containing the console's chart.
-     * @method getChartEl
-     * @return HTMLElement
-	 * @public
-     */	
-	proto.getChartEl = function() {
-		return (this._chartEl) ? Dom.get(this._chartEl) : false;
-	};
-
-	 /**
-     * Returns the element containing the console's dataTable.
-     * @method getTableEl
-     * @return HTMLElement
-	 * @public
-     */	
-	proto.getTableEl = function() {
-		return (this._tableEl) ? Dom.get(this._tableEl) : false;
-	};
-
-	 /**
-     * Returns the element containing the console's DataTable
-	 * instance.
-     * @method getDataTable
-     * @return YAHOO.widget.DataTable
-	 * @public
-     */	
-	proto.getDataTable = function() {
-		return this._dataTable;
-	};
-
-	 /**
-     * Returns the element containing the console's Chart instance.
-     * @method getChart
-     * @return YAHOO.widget.BarChart
-	 * @public
-     */	
-	proto.getChart = function() {
-		return this._chart;
-	};
-
-
-    //
-    // PRIVATE PROPERTIES
-    //
-    proto._rendered = false;
-	proto._headEl = null;
-	proto._bodyEl = null;
-	proto._toggleVisibleEl = null;
-	proto._busyEl = null;
-	proto._busy = false;
-	
-	proto._tableEl = null;
-	proto._dataTable = null;
-
-	proto._chartEl = null;
-	proto._chartLegendEl = null;
-	proto._chartElHeight = 250;
-	proto._chart = null;
-	proto._chartInitialized = false;
-
-    //
-    // PRIVATE METHODS
-    //
-
-	proto._init = function() {
-		/**
-		 * CUSTOM EVENTS
-		 **/
-		
-		/**
-		 * Fired when a data refresh is requested. No arguments are passed
-		 * with this event.
-		 *
-		 * @event refreshDataEvent
-		 */
-		this.createEvent("dataRefreshEvent");
-		
-		/**
-		 * Fired when the viewer canvas first renders. No arguments are passed
-		 * with this event.
-		 *
-		 * @event renderEvent
-		 */
-		this.createEvent("renderEvent");
-
-		this.on("dataRefreshEvent", this._refreshDataTable, this, true);
-		
-		this._initLauncherDOM();
-		
-		if(this.get("showChart")) {
-			this.on("sortedByChange", this._refreshChart);
-		}
-
-	};
-
-	/**
-	 * If no element is passed in, create it as the first element
-	 * in the document.
-	 * @method _createProfilerViewerElement
-	 * @return HTMLElement
-	 * @private
-	 */
-	proto._createProfilerViewerElement = function() {
-
-		var el = document.createElement("div");
-		document.body.insertBefore(el, document.body.firstChild);
-		Dom.addClass(el, this.SKIN_CLASS);
-		Dom.addClass(el, PV.CLASS);
-		return el;
-	};
-			
-    /**
-     * Provides a readable name for the ProfilerViewer instance.
-     * @method toString
-     * @return String
-	 * @private
-	 */
-    proto.toString = function() {
-        return "ProfilerViewer " + (this.get('id') || this.get('tagName'));
-    };
-
-    /**
-     * Toggles visibility of the viewer canvas.
-     * @method _toggleVisible
-     * @return void
-	 * @private
-     */	
-	proto._toggleVisible = function() {
-		
-		var newVis = (this.get("visible")) ? false : true;
-		this.set("visible", newVis);
-    };
-
-    /**
-     * Shows the viewer canvas.
-     * @method show
-     * @return void
-	 * @private
-     */	
-	 proto._show = function() {
-	 	if(!this._busy) {
-			this._setBusyState(true);
-			if(!this._rendered) {
-				var loader = new YAHOO.util.YUILoader();
-				if (this.get("base")) {
-					loader.base = this.get("base");
-				}
-				
-				var modules = ["datatable"];
-				if(this.get("showChart")) {
-					modules.push("charts");
-				}
-				
-				loader.insert({ require: modules,
-								onSuccess: function() {
-									this._render();
-								},
-								scope: this});
-			} else {
-				var el = this.get("element");
-				Dom.removeClass(el, "yui-pv-minimized");
-				this._toggleVisibleEl.innerHTML = PV.STRINGS.buttons.hideprofiler;
-				
-				//The Flash Charts component can't be set to display:none,
-				//and even after positioning it offscreen the screen
-				//may fail to repaint in some browsers.  Adding an empty
-				//style rule to the console body can help force a repaint:
-				Dom.addClass(el, "yui-pv-null");
-				Dom.removeClass(el, "yui-pv-null");
-				
-				//Always refresh data when changing to visible:
-				this.refreshData();
-			}
-		}
-    };
-
-    /**
-     * Hides the viewer canvas.
-     * @method hide
-     * @return void
-	 * @private
-     */	
-	proto._hide = function() {
-		this._toggleVisibleEl.innerHTML = PV.STRINGS.buttons.viewprofiler;
-		Dom.addClass(this.get("element"), "yui-pv-minimized");
-    };
-	
-	/**
-	 * Render the viewer canvas
-	 * @method _render
-	 * @return void
-	 * @private
-	 */
-	proto._render = function() {
-		
-		Dom.removeClass(this.get("element"), "yui-pv-minimized");
-		
-		this._initViewerDOM();
-		this._initDataTable();
-		if(this.get("showChart")) {
-			this._initChartDOM();
-			this._initChart();
-		}
-		this._rendered = true;
-		this._toggleVisibleEl.innerHTML = PV.STRINGS.buttons.hideprofiler;
-		
-		this.fireEvent("renderEvent");
-
-	};
-	
-	/**
-	 * Set up the DOM structure for the ProfilerViewer launcher.
-	 * @method _initLauncherDOM
-	 * @private
-	 */
-	proto._initLauncherDOM = function() {
-		
-		var el = this.get("element");
-		Dom.addClass(el, PV.CLASS);
-		Dom.addClass(el, "yui-pv-minimized");
-
-		this._headEl = document.createElement("div");
-		Dom.addClass(this._headEl, "hd");
-		
-		var s = PV.STRINGS.buttons;
-		var b = (this.get("visible")) ? s.hideprofiler : s.viewprofiler;
-		
-		this._toggleVisibleEl = this._createButton(b, this._headEl);
-		
-		this._refreshEl = this._createButton(s.refreshdata, this._headEl);
-		Dom.addClass(this._refreshEl, PV.CLASS_REFRESH);
-		
-		this._busyEl = document.createElement("span");
-		this._headEl.appendChild(this._busyEl);
-
-		var title = document.createElement("h4");
-		title.innerHTML = PV.STRINGS.title;
-		this._headEl.appendChild(title);
-		
-		el.appendChild(this._headEl);
-		
-		Event.on(this._toggleVisibleEl, "click", this._toggleVisible, this, true);
-		Event.on(this._refreshEl, "click", function() {
-			if(!this._busy) {
-				this._setBusyState(true);
-				this.fireEvent("dataRefreshEvent");
-			}
-		}, this, true);
-	};
-
-	/**
-	 * Set up the DOM structure for the ProfilerViewer canvas,
-	 * including the holder for the DataTable.
-	 * @method _initViewerDOM
-	 * @private
-	 */
-	proto._initViewerDOM = function() {
-		
-		var el = this.get("element");
-		this._bodyEl = document.createElement("div");
-		Dom.addClass(this._bodyEl, "bd");
-	 	this._tableEl = document.createElement("div");
-		Dom.addClass(this._tableEl, PV.CLASS_TABLE);
-		this._bodyEl.appendChild(this._tableEl);
-		el.appendChild(this._bodyEl);
-	};
-
-	/**
-	 * Set up the DOM structure for the ProfilerViewer canvas.
-	 * @method _initChartDOM
-	 * @private
-	 */
-	proto._initChartDOM = function() {
-		
-		this._chartContainer = document.createElement("div");
-		Dom.addClass(this._chartContainer, PV.CLASS_CHART_CONTAINER);
-		
-		var chl = document.createElement("div");
-		Dom.addClass(chl, PV.CLASS_CHART_LEGEND);
-		
-		var chw = document.createElement("div");
-
-		this._chartLegendEl = document.createElement("dl");
-		this._chartLegendEl.innerHTML = "<dd>" + PV.STRINGS.initMessage + "</dd>";
-		
-		this._chartEl = document.createElement("div");
-		Dom.addClass(this._chartEl, PV.CLASS_CHART);
-		
-		var msg = document.createElement("p");
-		msg.innerHTML = PV.STRINGS.installFlashMessage;
-		this._chartEl.appendChild(msg);
-		
-		this._chartContainer.appendChild(chl);
-		chl.appendChild(chw);
-		chw.appendChild(this._chartLegendEl);
-		this._chartContainer.appendChild(this._chartEl);
-		this._bodyEl.insertBefore(this._chartContainer,this._tableEl);
-	};
-
-
-	/**
-	 * Create anchor elements for use as buttons. Args: label
-	 * is text to appear on the face of the button, parentEl
-	 * is the el to which the anchor will be attached, position
-	 * is true for inserting as the first node and false for
-	 * inserting as the last node of the parentEl.
-	 * @method _createButton
-	 * @private
-	 */	
-	proto._createButton = function(label, parentEl, position) {
-		var b = document.createElement("a");
-		b.innerHTML = b.title = label;
-		if(parentEl) {
-			if(!position) {
-				parentEl.appendChild(b);
-			} else {
-				parentEl.insertBefore(b, parentEl.firstChild);	
-			}
-		}
-		return b;
-	};
-	
-	/**
-	 * Set's console busy state.
-	 * @method _setBusyState
-	 * @private
-	 **/
-	proto._setBusyState = function(b) {
-		if(b) {
-			Dom.addClass(this._busyEl, PV.CLASS_BUSY);
-			this._busy = true;
-		} else {
-			Dom.removeClass(this._busyEl, PV.CLASS_BUSY);
-			this._busy = false;
-		}
-	};
-
-	/**
-	 * Generages a sorting function based on current sortedBy
-	 * values.
-	 * @method _createProfilerViewerElement
-	 * @private
-	 **/
-	proto._genSortFunction = function(key, dir) {
-		var by = key;
-		var direction = dir;
-		return function(a, b) {
-			if (direction == YAHOO.widget.DataTable.CLASS_ASC) {
-				return a[by] - b[by];	
-			} else {
-				return ((a[by] - b[by]) * -1);
-			}
-		};
-	};
-
-	/**
-	 * Utility function for array sums.
-	 * @method _arraySum
-	 * @private
-	 **/	
-	 var _arraySum = function(arr){
-		var ct = 0;
-		for(var i = 0; i < arr.length; ct+=arr[i++]){}
-		return ct;
-	};
-	
-	/**
-	 * Retrieves data from Profiler, filtering and sorting as needed
-	 * based on current widget state.  Adds calculated percentage
-	 * column and function name to data returned by Profiler.
-	 * @method _getProfilerData
-	 * @private
-	 **/
-	proto._getProfilerData = function() {
-		
-		var obj = Profiler.getFullReport();
-		var arr = [];
-		var totalTime = 0;
-		for (name in obj) {
-    		if (YAHOO.lang.hasOwnProperty(obj, name)) {
-				var r = obj[name];
-				var o = {};
-				o.fn = name; //add function name to record
-				o.points = r.points.slice(); //copy live array
-				o.calls = r.calls;
-				o.min = r.min;
-				o.max = r.max;
-				o.avg = r.avg;
-				o.total = _arraySum(o.points);
-				o.points = r.points;
-				var f = this.get("filter");
-				if((!f) || (f(o))) {
-					arr.push(o);
-					totalTime += o.total;
-				}
-			}
-		}
-		
-		//add calculated percentage column
-		for (var i = 0, j = arr.length; i < j; i++) {
-			arr[i].pct = (totalTime) ? (arr[i].total * 100) / totalTime : 0;	
-		}
-
-		var sortedBy = this.get("sortedBy");
-		var key = sortedBy.key;
-		var dir = sortedBy.dir;		
-
-		arr.sort(this._genSortFunction(key, dir));
-		
-		
-		return arr;
-	};
-	
-	/**
-	 * Set up the DataTable.
-	 * @method _initDataTable
-	 * @private
-	 */
-	proto._initDataTable = function() {
-		
-		var self = this;
-		
-		//Set up the JS Function DataSource, pulling data from
-		//the Profiler.
-		this._dataSource = new YAHOO.util.DataSource(
-			function() {
-				return self._getProfilerData.call(self);	
-			},
-			{
-				responseType: YAHOO.util.DataSource.TYPE_JSARRAY,
-				maxCacheEntries: 0
-			}
-		);
-		var ds = this._dataSource;
-
-		ds.responseSchema =
-		{
-			fields: [ "fn", "avg", "calls", "max", "min", "total", "pct", "points"]
-		};
-		
-		//Set up the DataTable.
-		var formatTimeValue = function(elCell, oRecord, oColumn, oData) {
-			var a = (oData === Math.floor(oData)) ? oData : (Math.round(oData*1000))/1000;
-			elCell.innerHTML = a + " " + PV.STRINGS.millisecondsAbbrev;
-		};
-
-		var formatPercent = function(elCell, oRecord, oColumn, oData) {
-			var a = (oData === Math.floor(oData)) ? oData : (Math.round(oData*100))/100;
-			elCell.innerHTML = a + "%";
-		};
-		
-		var a = YAHOO.widget.DataTable.CLASS_ASC;
-		var d = YAHOO.widget.DataTable.CLASS_DESC;
-		var c = PV.STRINGS.colHeads;
-		var f = formatTimeValue;
-		
-		var cols = [
-			{key:"fn", sortable:true, label: c.fn[0],
-				sortOptions: {defaultDir:a}, 
-				resizeable: (YAHOO.util.DragDrop) ? true : false,
-				minWidth:c.fn[1]},
-			{key:"calls", sortable:true, label: c.calls[0],
-				sortOptions: {defaultDir:d},
-				width:c.calls[1]},
-			{key:"avg", sortable:true, label: c.avg[0],
-				sortOptions: {defaultDir:d},
-				formatter:f,
-				width:c.avg[1]},
-			{key:"min", sortable:true, label: c.min[0],
-				sortOptions: {defaultDir:a},
-				formatter:f,
-				width:c.min[1]}, 
-			{key:"max", sortable:true, label: c.max[0],
-				sortOptions: {defaultDir:d},
-				formatter:f,
-				width:c.max[1]},
-			{key:"total", sortable:true, label: c.total[0],
-				sortOptions: {defaultDir:d},
-				formatter:f,
-				width:c.total[1]},
-			{key:"pct", sortable:true, label: c.pct[0],
-				sortOptions: {defaultDir:d}, 
-				formatter:formatPercent,
-				width:c.pct[1]}
-		];
-
-		this._dataTable = new YAHOO.widget.DataTable(this._tableEl, cols, ds, {
-			scrollable:true,
-			height:this.get("tableHeight"),
-			initialRequest:null,
-			sortedBy: {
-				key: "total",
-				dir: YAHOO.widget.DataTable.CLASS_DESC
-			}
-		});
-		var dt = this._dataTable;
-
-		//Wire up DataTable events to drive the rest of the UI.
-		dt.subscribe("sortedByChange", this._sortedByChange, this, true);
-		dt.subscribe("renderEvent", this._dataTableRenderHandler, this, true);
-		dt.subscribe("initEvent", this._dataTableRenderHandler, this, true);
-		Event.on(this._tableEl.getElementsByTagName("th"), "click", this._thClickHandler, this, true);
-	};
-		
-	/**
-	 * Proxy the sort event in DataTable into the ProfilerViewer
-	 * attribute.
-	 * @method _sortedByChange
-	 * @private
-	 **/
-	proto._sortedByChange = function(o) {
-		this.set("sortedBy", {key: o.newValue.key, dir:o.newValue.dir});
-	};
-
-	/**
-	 * Proxy the render event in DataTable into the ProfilerViewer
-	 * attribute.
-	 * @method _dataTableRenderHandler
-	 * @private
-	 **/
-	proto._dataTableRenderHandler = function(o) {
-		this._setBusyState(false);
-	};
-	
-	/**
-	 * Event handler for clicks on the DataTable's sortable column
-	 * heads.
-	 * @method _thClickHandler
-	 * @private
-	 **/
-	proto._thClickHandler = function(o) {
-		this._setBusyState(true);
-	};
-
-	/**
-	 * Refresh DataTable, getting new data from Profiler.
-	 * @method _refreshDataTable
-	 * @private
-	 **/
-	proto._refreshDataTable = function(args) {
-		var dt = this._dataTable;
-		dt.getDataSource().sendRequest("", dt.onDataReturnInitializeTable, dt);
-	};
-
-	/**
-	 * Refresh chart, getting new data from table.
-	 * @method _refreshChart
-	 * @private
-	 **/
-	proto._refreshChart = function() {
-		
-		switch (this.get("sortedBy").key) {
-			case "fn":
-				/*Keep the same data on the chart, but force update to 
-				  reflect new sort order on function/method name: */
-				this._chart.set("dataSource", this._chart.get("dataSource"));
-				
-				/*no further action necessary; chart redraws*/
-				return;
-			case "calls":
-				/*Null out the xAxis formatting before redrawing chart.*/
-				this._chart.set("xAxis", this._chartAxisDefinitionPlain);
-				break;
-			case "pct":
-				this._chart.set("xAxis", this._chartAxisDefinitionPercent);
-				break;
-			default:
-				/*Set the default xAxis; redraw legend; set the new series definition.*/
-				this._chart.set("xAxis", this._chartAxisDefinitionTime);
-				break;
-		}
-		
-		this._drawChartLegend();
-		this._chart.set("series", this._getSeriesDef(this.get("sortedBy").key));
-
-	};
-	
-	/**
-	 * Get data for the Chart from DataTable recordset
-	 * @method _getChartData
-	 * @private
-	 */
-	proto._getChartData = function() {
-		var records = this._dataTable.getRecordSet().getRecords(0, this.get("maxChartFunctions"));
-		var arr = [];
-		for (var i = records.length - 1; i>-1; i--) {
-			arr.push(records[i].getData());	
-		}
-		return arr;
-	};
-	
-	/**
-	 * Build series definition based on current configuration attributes.
-	 * @method _getSeriesDef
-	 * @private
-	 */
-	proto._getSeriesDef = function(field) {
-		var sd = this.get("chartSeriesDefinitions")[field];
-		var arr = [];
-		for(var i = 0, j = sd.group.length; i<j; i++) {
-			var c = this.get("chartSeriesDefinitions")[sd.group[i]];
-			arr.push(
-				{displayName:c.displayName,
-				 xField:c.xField,
-				 style: {color:c.style.color, size:c.style.size}
-				}
-			);
-		}
-		
-		return arr;
-	};
-	
-	/**
-	 * Set up the Chart.
-	 * @method _initChart
-	 * @private
-	 */
-	proto._initChart = function() {
-		
-		this._sizeChartCanvas();
-		
-		YAHOO.widget.Chart.SWFURL = this.get("swfUrl");
-
-		var self = this;
-
-		//Create DataSource based on records currently displayed
-		//at the top of the sort list in the DataTable.
-		var ds = new YAHOO.util.DataSource(
-			//force the jsfunction DataSource to run in the scope of
-			//the ProfilerViewer, not in the YAHOO.util.DataSource scope:
-			function() {
-				return self._getChartData.call(self);
-			}, 
-			{
-				responseType: YAHOO.util.DataSource.TYPE_JSARRAY,
-				maxCacheEntries: 0
-			}
-		);
-
-		ds.responseSchema =
-		{
-			fields: [ "fn", "avg", "calls", "max", "min", "total", "pct" ]
-		};
-		
-		ds.subscribe('responseEvent', this._sizeChartCanvas, this, true);
-		
-		//Set up the chart itself.
-		this._chartAxisDefinitionTime = new YAHOO.widget.NumericAxis();
-		this._chartAxisDefinitionTime.labelFunction = "YAHOO.widget.ProfilerViewer.timeAxisLabelFunction";
-		
-		this._chartAxisDefinitionPercent = new YAHOO.widget.NumericAxis();
-		this._chartAxisDefinitionPercent.labelFunction = "YAHOO.widget.ProfilerViewer.percentAxisLabelFunction";
-
-		this._chartAxisDefinitionPlain = new YAHOO.widget.NumericAxis();
-		
-		this._chart = new YAHOO.widget.BarChart( this._chartEl, ds,
-		{
-			yField: "fn",
-			series: this._getSeriesDef(this.get("sortedBy").key),
-			style: this.get("chartStyle"),
-			xAxis: this._chartAxisDefinitionTime
-		} );
-		
-		this._drawChartLegend();
-		this._chartInitialized = true;
-		this._dataTable.unsubscribe("initEvent", this._initChart, this);
-		this._dataTable.subscribe("initEvent", this._refreshChart, this, true);
-		
-	};
-	
-	/**
-	 * Set up the Chart's legend
-	 * @method _drawChartLegend
-	 * @private
-	 **/
-	proto._drawChartLegend = function() {
-		var seriesDefs = this.get("chartSeriesDefinitions");
-		var currentDef = seriesDefs[this.get("sortedBy").key];
-		var l = this._chartLegendEl;
-		l.innerHTML = "";
-		for(var i = 0, j = currentDef.group.length; i<j; i++) {
-			var c = seriesDefs[currentDef.group[i]];
-			var dt = document.createElement("dt");
-			Dom.setStyle(dt, "backgroundColor", "#" + c.style.color);
-			var dd = document.createElement("dd");
-			dd.innerHTML = c.displayName;
-			l.appendChild(dt);
-			l.appendChild(dd);
-		}
-	};
-	
-	/**
-	 * Resize the chart's canvas if based on number of records
-	 * returned from the chart's datasource.
-	 * @method _sizeChartCanvas
-	 * @private
-	 **/
-	proto._sizeChartCanvas = function(o) {
-		var bars = (o) ? o.response.length : this.get("maxChartFunctions");
-		var s = (bars * 36) + 34;
-		if (s != parseInt(this._chartElHeight, 10)) {
-			this._chartElHeight = s;
-			Dom.setStyle(this._chartEl, "height", s + "px");
-		}
-	};
-
-    /**
-     * setAttributeConfigs TabView specific properties.
-     * @method initAttributes
-     * @param {Object} attr Hash of initial attributes
-	 * @method initAttributes
-	 * @private
-     */
-    proto.initAttributes = function(attr) {
-        YAHOO.widget.ProfilerViewer.superclass.initAttributes.call(this, attr);
-        /**
-         * The YUI Loader base path from which to pull YUI files needed
-		 * in the rendering of the ProfilerViewer canvas.  Passed directly
-		 * to YUI Loader.  Leave blank to draw files from
-		 * yui.yahooapis.com.
-         * @attribute base
-         * @type string
-		 * @default ""
-         */
-        this.setAttributeConfig('base', {
-            value: attr.base
-        });
-
-        /**
-         * The height of the DataTable.  The table will scroll
-		 * vertically if the content overflows the specified
-		 * height.
-         * @attribute tableHeight
-         * @type string
-		 * @default "15em"
-         */
-        this.setAttributeConfig('tableHeight', {
-            value: attr.tableHeight || "15em",
-			method: function(s) {
-				if(this._dataTable) {
-					this._dataTable.set("height", s);
-				}
-			}
-        });
-		
-        /**
-         * The default column key to sort by.  Valid keys are: fn, calls,
-		 * avg, min, max, total.  Valid dir values are: 
-		 * YAHOO.widget.DataTable.CLASS_ASC and
-		 * YAHOO.widget.DataTable.CLASS_DESC (or their
-		 * string equivalents).
-         * @attribute sortedBy
-         * @type string
-		 * @default {key:"total", dir:"yui-dt-desc"}
-         */
-        this.setAttributeConfig('sortedBy', {
-            value: attr.sortedBy || {key:"total", dir:"yui-dt-desc"}
-        });
-
-        /**
-         * A filter function to use in selecting functions that will
-		 * appear in the ProfilerViewer report.  The function is passed
-		 * a function report object and should return a boolean indicating
-		 * whether that function should be included in the ProfilerViewer
-		 * display.  The argument is structured as follows:
-		 *
-		 * {
-		 *	 	fn: <str function name>,
-		 *		calls : <n number of calls>,
-		 *		avg : <n average call duration>,
-		 *		max: <n duration of longest call>,
-		 *		min: <n duration of shortest call>,
-		 *		total: <n total time of all calls>
-		 *		points : <array time in ms of each call>
-		 *	}
-		 *
-		 * For example, you would use the follwing filter function to 
-		 * return only functions that have been called at least once:
-		 * 
-		 * 	function(o) {
-		 *		return (o.calls > 0);
-		 *	}
-		 *
-         * @attribute filter
-         * @type function
-		 * @default null
-         */
-        this.setAttributeConfig('filter', {
-            value: attr.filter || null,
-			validator: YAHOO.lang.isFunction
-        });
-
-		/**
-		 * The path to the YUI Charts swf file; must be a full URI
-		 * or a path relative to the page being profiled. Changes at runtime
-		 * not supported; pass this value in at instantiation.
-		 * @attribute swfUrl
-		 * @type string
-		 * @default "http://yui.yahooapis.com/2.5.0/build/charts/assets/charts.swf"
-		 */
-		this.setAttributeConfig('swfUrl', {
-			value: attr.swfUrl || "http://yui.yahooapis.com/2.5.0/build/charts/assets/charts.swf"
-		});
-
-        /**
-         * The maximum number of functions to profile in the chart. The
-		 * greater the number of functions, the greater the height of the
-		 * chart canvas.
-		 * height.
-         * @attribute maxChartFunctions
-         * @type int
-		 * @default 6
-         */
-        this.setAttributeConfig('maxChartFunctions', {
-            value: attr.maxChartFunctions || 6,
-			method: function(s) {
-				if(this._rendered) {
-					this._sizeChartCanvas();
-				}
-			},
-			validator: YAHOO.lang.isNumber
-        });
-		
-        /**
-         * The style object that defines the chart's visual presentation.
-		 * Conforms to the style attribute passed to the Charts Control
-		 * constructor.  See Charts Control User's Guide for more information
-		 * on how to format this object.
-         * @attribute chartStyle
-         * @type obj
-		 * @default See JS source for default definitions.
-         */
-        this.setAttributeConfig('chartStyle', {
-            value: 	attr.chartStyle || {
-				font:
-					{
-						name: "Arial",
-						color: 0xeeee5c,
-						size: 12
-					},
-					background:
-					{
-						color: "6e6e63"
-					}
-				},
-			method: function() {
-					if(this._rendered && this.get("showChart")) {
-						this._refreshChart();
-					}
-				}
-        });
-		
-        /**
-         * The series definition information to use when charting
-		 * specific fields on the chart.  displayName, xField,
-		 * and style members are used to construct the series
-		 * definition; the "group" member is the array of fields
-		 * that should be charted when the table is sorted by a
-		 * given field.
-         * @attribute chartSeriesDefinitions
-         * @type obj
-		 * @default See JS source for full default definitions.
-         */
-        this.setAttributeConfig('chartSeriesDefinitions', {
-            value: 	attr.chartSeriesDefinitions ||  {
-						total: {
-							displayName: PV.STRINGS.colHeads.total[0],
-							xField: "total",
-							style: {color:"4d95dd", size:20},
-							group: ["total"]
-						},
-						calls: {		
-							displayName: PV.STRINGS.colHeads.calls[0],
-							xField: "calls",
-							style: {color:"edff9f", size:20},
-							group: ["calls"]
-						},
-						avg: {
-							displayName: PV.STRINGS.colHeads.avg[0],
-							xField: "avg",
-							style: {color:"209daf", size:9},
-							group: ["avg", "min", "max"]
-						},
-						min: {
-							displayName: PV.STRINGS.colHeads.min[0],
-							xField: "min",
-							style: {color:"b6ecf4", size:9},
-							group: ["avg", "min", "max"]
-						},
-						max: {
-							displayName: PV.STRINGS.colHeads.max[0],
-							xField: "max",
-							style: {color:"29c7de", size:9},
-							group: ["avg", "min", "max"]
-						},
-						pct: {
-							displayName: PV.STRINGS.colHeads.pct[0],
-							xField: "pct",
-							style: {color:"C96EDB", size:20},
-							group: ["pct"]
-						}
-				},
-			method: function() {
-					if(this._rendered && this.get("showChart")) {
-						this._refreshChart();
-					}
-				}
-        });
-		
-        /**
-         * The default visibility setting for the viewer canvas. If true,
-		 * the viewer will load all necessary files and render itself
-		 * immediately upon instantiation; otherwise, the viewer will
-		 * load only minimal resources until the user toggles visibility
-		 * via the UI.
-         * @attribute visible
-         * @type boolean
-		 * @default false
-         */
-        this.setAttributeConfig('visible', {
-            value: attr.visible || false,
-			validator: YAHOO.lang.isBoolean,
-			method: function(b) {
-				if(b) {
-					this._show();
-				} else {
-					if (this._rendered) {
-						this._hide();
-					}
-				}
-			}
-        });
-
-        /**
-         * The default visibility setting for the chart.
-         * @attribute showChart
-         * @type boolean
-		 * @default true
-         */
-        this.setAttributeConfig('showChart', {
-            value: attr.showChart || true,
-			validator: YAHOO.lang.isBoolean,
-			writeOnce: true
-			
-        });
-		
-		YAHOO.widget.ProfilerViewer.superclass.initAttributes.call(this, attr);
-		
-    };
-	
-})();
-YAHOO.register("profilerviewer", YAHOO.widget.ProfilerViewer, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/reset-fonts-grids/README b/eclipse.org-common/yui/2.6.0/build/reset-fonts-grids/README
deleted file mode 100644
index 58fbb28..0000000
--- a/eclipse.org-common/yui/2.6.0/build/reset-fonts-grids/README
+++ /dev/null
@@ -1,32 +0,0 @@
-YUI Library - Reset+Fonts+Grids (RFG) - Release Notes
-
-*** NOTE ***
-
-This document is not updated with each release.  Changes to
-the reset-fonts-grids.css source are noted in the README
-file for each component that comprises this aggregate:
-
-reset/README
-fonts/README
-grids/README
-
-************
-
-Version 2.3.1
-
-  * Fixed bug in Grids. See Grids 2.3.1 README for info.
-
-Version 2.3.0
-
-  * Changes to all three components.
-
-Version 2.2.0 - 2.2.2
-
-  * No changes.
-
-Version 0.12.0
-
-  * Initial release.
-  
-  * This file is a convenience file containing an in-order 
-    concatonation of Reset, Fonts, and Grids.
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/reset-fonts-grids/reset-fonts-grids.css b/eclipse.org-common/yui/2.6.0/build/reset-fonts-grids/reset-fonts-grids.css
deleted file mode 100644
index b3e042c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/reset-fonts-grids/reset-fonts-grids.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}del,ins{text-decoration:none;}body{font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}select,input,button,textarea{font:99% arial,helvetica,clean,sans-serif;}table{font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;}body{text-align:center;}#ft{clear:both;}#doc,#doc2,#doc3,#doc4,.yui-t1,.yui-t2,.yui-t3,.yui-t4,.yui-t5,.yui-t6,.yui-t7{margin:auto;text-align:left;width:57.69em;*width:56.25em;min-width:750px;}#doc2{width:73.076em;*width:71.25em;}#doc3{margin:auto 10px;width:auto;}#doc4{width:74.923em;*width:73.05em;}.yui-b{position:relative;}.yui-b{_position:static;}#yui-main .yui-b{position:static;}#yui-main,.yui-g .yui-u .yui-g{width:100%;}{width:100%;}.yui-t1 #yui-main,.yui-t2 #yui-main,.yui-t3 #yui-main{float:right;margin-left:-25em;}.yui-t4 #yui-main,.yui-t5 #yui-main,.yui-t6 #yui-main{float:left;margin-right:-25em;}.yui-t1 .yui-b{float:left;width:12.30769em;*width:12.00em;}.yui-t1 #yui-main .yui-b{margin-left:13.30769em;*margin-left:13.05em;}.yui-t2 .yui-b{float:left;width:13.8461em;*width:13.50em;}.yui-t2 #yui-main .yui-b{margin-left:14.8461em;*margin-left:14.55em;}.yui-t3 .yui-b{float:left;width:23.0769em;*width:22.50em;}.yui-t3 #yui-main .yui-b{margin-left:24.0769em;*margin-left:23.62em;}.yui-t4 .yui-b{float:right;width:13.8456em;*width:13.50em;}.yui-t4 #yui-main .yui-b{margin-right:14.8456em;*margin-right:14.55em;}.yui-t5 .yui-b{float:right;width:18.4615em;*width:18.00em;}.yui-t5 #yui-main .yui-b{margin-right:19.4615em;*margin-right:19.125em;}.yui-t6 .yui-b{float:right;width:23.0769em;*width:22.50em;}.yui-t6 #yui-main .yui-b{margin-right:24.0769em;*margin-right:23.62em;}.yui-t7 #yui-main .yui-b{display:block;margin:0 0 1em 0;}#yui-main .yui-b{float:none;width:auto;}.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{float:left;}.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf,.yui-gc .yui-u,.yui-gd .yui-g,.yui-g .yui-gc .yui-u,.yui-ge .yui-u,.yui-ge .yui-g,.yui-gf .yui-g,.yui-gf .yui-u{float:right;}.yui-g div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first,.yui-ge div.first,.yui-gf div.first,.yui-g .yui-gc div.first,.yui-g .yui-ge div.first,.yui-gc div.first div.first{float:left;}.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf{width:49.1%;}.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{width:32%;margin-left:1.99%;}.yui-gb .yui-u{*margin-left:1.9%;*width:31.9%;}.yui-gc div.first,.yui-gd .yui-u{width:66%;}.yui-gd div.first{width:32%;}.yui-ge div.first,.yui-gf .yui-u{width:74.2%;}.yui-ge .yui-u,.yui-gf div.first{width:24%;}.yui-g .yui-gb div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first{margin-left:0;}.yui-g .yui-g .yui-u,.yui-gb .yui-g .yui-u,.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u,.yui-ge .yui-g .yui-u,.yui-gf .yui-g .yui-u{width:49%;*width:48.1%;*margin-left:0;}.yui-g .yui-g .yui-u{width:48.1%;}.yui-g .yui-gb div.first,.yui-gb .yui-gb div.first{*margin-right:0;*width:32%;_width:31.7%;}.yui-g .yui-gc div.first,.yui-gd .yui-g{width:66%;}.yui-gb .yui-g div.first{*margin-right:4%;_margin-right:1.3%;}.yui-gb .yui-gc div.first,.yui-gb .yui-gd div.first{*margin-right:0;}.yui-gb .yui-gb .yui-u,.yui-gb .yui-gc .yui-u{*margin-left:1.8%;_margin-left:4%;}.yui-g .yui-gb .yui-u{_margin-left:1.0%;}.yui-gb .yui-gd .yui-u{*width:66%;_width:61.2%;}.yui-gb .yui-gd div.first{*width:31%;_width:29.5%;}.yui-g .yui-gc .yui-u,.yui-gb .yui-gc .yui-u{width:32%;_float:right;margin-right:0;_margin-left:0;}.yui-gb .yui-gc div.first{width:66%;*float:left;*margin-left:0;}.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf .yui-u{margin:0;}.yui-gb .yui-gb .yui-u{_margin-left:.7%;}.yui-gb .yui-g div.first,.yui-gb .yui-gb div.first{*margin-left:0;}.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u{*width:48.1%;*margin-left:0;} .yui-gb .yui-gd div.first{width:32%;}.yui-g .yui-gd div.first{_width:29.9%;}.yui-ge .yui-g{width:24%;}.yui-gf .yui-g{width:74.2%;}.yui-gb .yui-ge div.yui-u,.yui-gb .yui-gf div.yui-u{float:right;}.yui-gb .yui-ge div.first,.yui-gb .yui-gf div.first{float:left;}.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf div.first{*width:24%;_width:20%;}.yui-gb .yui-ge div.first,.yui-gb .yui-gf .yui-u{*width:73.5%;_width:65.5%;}.yui-ge div.first .yui-gd .yui-u{width:65%;}.yui-ge div.first .yui-gd div.first{width:32%;}#bd:after,.yui-g:after,.yui-gb:after,.yui-gc:after,.yui-gd:after,.yui-ge:after,.yui-gf:after{content:".";display:block;height:0;clear:both;visibility:hidden;}#bd,.yui-g,.yui-gb,.yui-gc,.yui-gd,.yui-ge,.yui-gf{zoom:1;}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/reset-fonts/README b/eclipse.org-common/yui/2.6.0/build/reset-fonts/README
deleted file mode 100644
index fa43e8a..0000000
--- a/eclipse.org-common/yui/2.6.0/build/reset-fonts/README
+++ /dev/null
@@ -1,19 +0,0 @@
-YUI Library - Reset+Fonts (RF) - Release Notes
-
-*** NOTE ***
-
-This document is not updated with each release.  Changes to
-the reset-fonts.css source are noted in the README
-file for each component that comprises this aggregate:
-
-reset/README
-fonts/README
-
-************
-
-Version 2.4.0
-
-  * Initial release.
-
-  * This file is a convenience file containing an in-order 
-    concatonation of Reset and Fonts.
diff --git a/eclipse.org-common/yui/2.6.0/build/reset-fonts/reset-fonts.css b/eclipse.org-common/yui/2.6.0/build/reset-fonts/reset-fonts.css
deleted file mode 100644
index 063c8e7..0000000
--- a/eclipse.org-common/yui/2.6.0/build/reset-fonts/reset-fonts.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}del,ins{text-decoration:none;}body{font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}select,input,button,textarea{font:99% arial,helvetica,clean,sans-serif;}table{font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/reset/README b/eclipse.org-common/yui/2.6.0/build/reset/README
deleted file mode 100644
index 1e24515..0000000
--- a/eclipse.org-common/yui/2.6.0/build/reset/README
+++ /dev/null
@@ -1,64 +0,0 @@
-YUI Library - Reset - Release Notes
-
-Version 2.6.0 
-
-  * Added del,ins{text-decoration:none;} per SF-1957908
-  * KNOWN ISSUE:
-    Beginning in Opera 9.5, a padding value of 0 on radio 
-    buttons and checkboxes prevents Opera from rendering 
-    their visually attractive checkmarks and filled circles 
-    for the radios. This has NOT been addressed in 2.6.0, 
-    however you can apply this patch if you desire:
-   	input[type="checkbox"],input[type="radio"] {padding:1px;}
-
-Version 2.5.2
-
-  * No changes.
-
-Version 2.5.1
-
-  * No changes.
-
-Version 2.5.0
-
-  * Added input,textarea,select{*font-size:100%;} to enable resizing on IE
-
-Version 2.4.0
-
-  * Moved background and default font color to HTML from BODY
-  * Removed invalid sub/sup negative line-height values because they
-    were invalid and because they weren't have a big impact.
-  * Added legend element color to accommodate IE6 issues.
-
-Version 2.3.0
-
-  * Removed: ul,ol {list-style:none;}
-  * Added: li {list-style:none;} because it's less impactful (easier to rebuild) and shorter
-  * Added: acronym {font-variant:normal;} to reset the "small-caps" variant that Opera displays
-  * Added: body {color:#000;background:#FFF;}
-  * Added: sup,sub {line-height:-1px;vertical-align: text-top;}sub{vertical-align:text-bottom;}
-  * Added: input, textarea, select{font-family:inherit;font-size:inherit;font-weight:inherit;} (doesn't fix textareas in Opera/Win+Mac, IE6/7
-  * Added: padding:0;margin:0; for the legend element which wasn't fully reset before (has 2px lateral padding on some browsers)
-  
-  
-Version 2.2.0 - 2.2.2
-
-  * No changes.
-
-Version 0.12.1 - 0.12.2
-
-  * No changes.
-
-Version 0.12.0
-
-  * Added: h1,h2,h3,h4,h5,h6{font-weight:normal;}
-  * Added: abbr,acronym {border:0;}
-  * Added: textarea {padding:0;margin:0;}
-
-Version 0.11.0
-
-  * No changes.
-
-Version 0.10.0
-
-  * Initial release.
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/reset/reset-min.css b/eclipse.org-common/yui/2.6.0/build/reset/reset-min.css
deleted file mode 100644
index 07f477e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/reset/reset-min.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}del,ins{text-decoration:none;}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/reset/reset.css b/eclipse.org-common/yui/2.6.0/build/reset/reset.css
deleted file mode 100644
index bd7c2e5..0000000
--- a/eclipse.org-common/yui/2.6.0/build/reset/reset.css
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-html{color:#000;background:#FFF;}
-body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
-table{border-collapse:collapse;border-spacing:0;}
-fieldset,img{border:0;}
-address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
-li{list-style:none;}
-caption,th{text-align:left;}
-h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
-q:before,q:after{content:'';}
-abbr,acronym {border:0;font-variant:normal;}
-/* to preserve line-height and selector appearance */
-sup {vertical-align:text-top;}
-sub {vertical-align:text-bottom;}
-input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
-/*to enable resizing for IE*/
-input,textarea,select{*font-size:100%;}
-/*because legend doesn't inherit in IE */
-legend{color:#000;}
-del,ins{text-decoration:none;}
diff --git a/eclipse.org-common/yui/2.6.0/build/resize/README b/eclipse.org-common/yui/2.6.0/build/resize/README
deleted file mode 100644
index c24be84..0000000
--- a/eclipse.org-common/yui/2.6.0/build/resize/README
+++ /dev/null
@@ -1,24 +0,0 @@
-**** version 2.6.0 ***
-
-    * Widget promoted to GA - beta flag removed
-    * Added support for the new useShim config on Resize objects    
-
-    Bug Fixes:
- 	    * 2000116 - [SF 1993048] YAHOO.util.Easing is undefined (without optional Animation)
-	    * 2086450 - [SF 2020779] [doc] endResize event not documented
-	    * 2119091 - [SF 2034517] Bottom drifts on top drag in IE7/FF3
-	    * 2166985 - [SF 2074283] Splitter fails when dragged over RTE I-frame
-        
-
-**** version 2.5.2 ***
-    * Added an endResize event
-
-**** version 2.5.1 ***
-    
-    Bug Fixes
-        * 1766923 - [SF 1899888] Resize.destroy() not removing status
-        * 1784371 - Status div tracks on resize cancel
-
-**** version 2.5.0 ***
-
-Initial Release
diff --git a/eclipse.org-common/yui/2.6.0/build/resize/assets/resize-core.css b/eclipse.org-common/yui/2.6.0/build/resize/assets/resize-core.css
deleted file mode 100644
index 2525871..0000000
--- a/eclipse.org-common/yui/2.6.0/build/resize/assets/resize-core.css
+++ /dev/null
@@ -1,173 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-resize {
-    position: relative;
-    zoom: 1;
-    z-index: 0;
-}
-.yui-resize-wrap {
-    zoom: 1;
-}
-
-.yui-draggable {
-    cursor: move;
-}
-
-.yui-resize .yui-resize-handle {
-    position: absolute;
-    z-index: 1;
-    font-size: 0;
-    margin: 0;
-    padding: 0;
-    zoom: 1;
-    height: 1px;
-    width: 1px;
-}
-.yui-resize .yui-resize-handle-br {
-    height: 5px;
-    width: 5px;
-    bottom: 0;
-    right: 0;
-    cursor: se-resize;
-    z-index: 2;
-    zoom: 1;
-}
-
-.yui-resize .yui-resize-handle-bl {
-    height: 5px;
-    width: 5px;
-    bottom: 0;
-    left: 0;
-    cursor: sw-resize;
-    z-index: 2;
-    zoom: 1;
-}
-
-.yui-resize .yui-resize-handle-tl {
-    height: 5px;
-    width: 5px;
-    top: 0;
-    left: 0;
-    cursor: nw-resize;
-    z-index: 2;
-    zoom: 1;
-}
-
-.yui-resize .yui-resize-handle-tr {
-    height: 5px;
-    width: 5px;
-    top: 0;
-    right: 0;
-    cursor: ne-resize;
-    z-index: 2;
-    zoom: 1;
-}
-
-.yui-resize .yui-resize-handle-r {
-    width: 5px;
-    height: 100%;
-    top: 0;
-    right: 0;
-    cursor: e-resize;
-    zoom: 1;
-}
-
-.yui-resize .yui-resize-handle-l {
-    height: 100%;
-    width: 5px;
-    top: 0;
-    left: 0;
-    cursor: w-resize;
-    zoom: 1;
-}
-
-.yui-resize .yui-resize-handle-b {
-    width: 100%;
-    height: 5px;
-    bottom: 0;
-    right: 0;
-    cursor: s-resize;
-    zoom: 1;
-}
-.yui-resize .yui-resize-handle-t {
-    width: 100%;
-    height: 5px;
-    top: 0;
-    right: 0;
-    cursor: n-resize;
-    zoom: 1;
-}
-.yui-resize-proxy {
-    position: absolute;
-    border: 1px dashed #000;
-    visibility: hidden;
-    z-index: 1000;
-}
-
-.yui-resize-hover .yui-resize-handle,
-.yui-resize-hidden .yui-resize-handle {
-    opacity: 0;
-    filter: alpha(opacity=0);
-}
-.yui-resize-ghost {
-    opacity: .5;
-    filter: alpha(opacity=50);
-}
-
-.yui-resize-knob .yui-resize-handle {
-    height: 6px;
-    width: 6px;
-}
-.yui-resize-knob .yui-resize-handle-tr {
-    right: -3px;
-    top: -3px;
-}
-.yui-resize-knob .yui-resize-handle-tl {
-    left: -3px;
-    top: -3px;
-}
-.yui-resize-knob .yui-resize-handle-bl {
-    left: -3px;
-    bottom: -3px;
-}
-.yui-resize-knob .yui-resize-handle-br {
-    right: -3px;
-    bottom: -3px;
-}
-.yui-resize-knob .yui-resize-handle-t {
-    left: 45%;
-    top: -3px;
-}
-.yui-resize-knob .yui-resize-handle-r {
-    right: -3px;
-    top: 45%;
-}
-.yui-resize-knob .yui-resize-handle-l {
-    left: -3px;
-    top: 45%;
-}
-.yui-resize-knob .yui-resize-handle-b {
-    left: 45%;
-    bottom: -3px;
-}
-
-.yui-resize-status {
-    position: absolute;
-    top: -999px;
-    left: -999px;
-    padding: 2px;
-    font-size: 80%;
-    display: none;
-    zoom: 1; /* IE hasLayout */
-    z-index: 9999;
-}
-.yui-resize-status strong, .yui-resize-status em {
-    font-weight: normal;
-    font-style: normal;
-    padding: 1px;
-    zoom: 1;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/resize/assets/skins/sam/layout_sprite.png b/eclipse.org-common/yui/2.6.0/build/resize/assets/skins/sam/layout_sprite.png
deleted file mode 100644
index d6fce3c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/resize/assets/skins/sam/layout_sprite.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/resize/assets/skins/sam/resize-skin.css b/eclipse.org-common/yui/2.6.0/build/resize/assets/skins/sam/resize-skin.css
deleted file mode 100644
index ad2e7ef..0000000
--- a/eclipse.org-common/yui/2.6.0/build/resize/assets/skins/sam/resize-skin.css
+++ /dev/null
@@ -1,129 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* Give the handle a background color */
-.yui-skin-sam .yui-resize .yui-resize-handle {
-    background-color: #F2F2F2;
-}
-/* Give the active handle a different color */
-.yui-skin-sam .yui-resize .yui-resize-handle-active {
-    background-color: #7D98B8;
-    zoom: 1;
-}
-.yui-skin-sam .yui-resize .yui-resize-handle-l,
-.yui-skin-sam .yui-resize .yui-resize-handle-r,
-.yui-skin-sam .yui-resize .yui-resize-handle-l-active,
-.yui-skin-sam .yui-resize .yui-resize-handle-r-active {
-    height: 100%;
-}
-/* Give a border to the 8-way knob style handles */
-.yui-skin-sam .yui-resize-knob .yui-resize-handle {
-    border: 1px solid #808080;
-}
-/* Show the active handle when hovered */
-.yui-skin-sam .yui-resize-hover .yui-resize-handle-active {
-    opacity: 1;
-    filter: alpha(opacity=100);
-}
-
-/* Style the resize proxy */
-.yui-skin-sam .yui-resize-proxy {
-    border: 1px dashed #426FD9;
-}
-
-/* Style the status box similar to a tooltip */
-.yui-skin-sam .yui-resize-status {
-    border: 1px solid #A6982B;
-    border-top: 1px solid #D4C237;
-    background-color: #FFEE69;
-    color: #000;
-}
-
-
-/* Style the content of the status box */
-.yui-skin-sam .yui-resize-status strong, .yui-skin-sam .yui-resize-status em {
-    float: left;
-    display: block;
-    clear: both;
-    padding: 1px;
-    text-align: center;
-}
-
-/* Setup the gripper */
-.yui-skin-sam .yui-resize .yui-resize-handle-inner-r,
-.yui-skin-sam .yui-resize .yui-resize-handle-inner-l {
-    background: transparent url( layout_sprite.png) no-repeat 0 -5px;
-    height: 16px;
-    width: 5px;
-    position: absolute;
-    top: 45%;
-}
-
-/* Setup the gripper */
-.yui-skin-sam .yui-resize .yui-resize-handle-inner-t,
-.yui-skin-sam .yui-resize .yui-resize-handle-inner-b {
-    background: transparent url(layout_sprite.png) no-repeat -20px 0;
-    height: 5px;
-    width: 16px;
-    position: absolute;
-    left: 50%;
-}
-
-/* Bottom Right Gripper */
-.yui-skin-sam .yui-resize .yui-resize-handle-br {
-    background-image: url( layout_sprite.png );
-    background-repeat: no-repeat;
-    background-position: -22px -62px;
-}
-
-/* Top Right Gripper */
-.yui-skin-sam .yui-resize .yui-resize-handle-tr {
-    background-image: url( layout_sprite.png );
-    background-repeat: no-repeat;
-    background-position: -22px -42px;
-}
-
-/* Top Left Gripper */
-.yui-skin-sam .yui-resize .yui-resize-handle-tl {
-    background-image: url( layout_sprite.png );
-    background-repeat: no-repeat;
-    background-position: -22px -82px;
-}
-
-/* Bottom Left Gripper */
-.yui-skin-sam .yui-resize .yui-resize-handle-bl {
-    background-image: url( layout_sprite.png );
-    background-repeat: no-repeat;
-    background-position: -22px -23px;
-}
-
-/* Remove the background image from the 8-way knobs */
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-t,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-r,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-b,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-l,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-tl,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-tr,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-bl,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-br,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-t,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-r,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-b,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-l,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-tl,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-tr,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-bl,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-br {
-    background-image: none;
-}
-
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-l,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-r,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-l-active,
-.yui-skin-sam .yui-resize-knob .yui-resize-handle-r-active {
-    height: 6px;
-    width: 6px;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/resize/assets/skins/sam/resize.css b/eclipse.org-common/yui/2.6.0/build/resize/assets/skins/sam/resize.css
deleted file mode 100644
index 01e7918..0000000
--- a/eclipse.org-common/yui/2.6.0/build/resize/assets/skins/sam/resize.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-resize{position:relative;zoom:1;z-index:0;}.yui-resize-wrap{zoom:1;}.yui-draggable{cursor:move;}.yui-resize .yui-resize-handle{position:absolute;z-index:1;font-size:0;margin:0;padding:0;zoom:1;height:1px;width:1px;}.yui-resize .yui-resize-handle-br{height:5px;width:5px;bottom:0;right:0;cursor:se-resize;z-index:2;zoom:1;}.yui-resize .yui-resize-handle-bl{height:5px;width:5px;bottom:0;left:0;cursor:sw-resize;z-index:2;zoom:1;}.yui-resize .yui-resize-handle-tl{height:5px;width:5px;top:0;left:0;cursor:nw-resize;z-index:2;zoom:1;}.yui-resize .yui-resize-handle-tr{height:5px;width:5px;top:0;right:0;cursor:ne-resize;z-index:2;zoom:1;}.yui-resize .yui-resize-handle-r{width:5px;height:100%;top:0;right:0;cursor:e-resize;zoom:1;}.yui-resize .yui-resize-handle-l{height:100%;width:5px;top:0;left:0;cursor:w-resize;zoom:1;}.yui-resize .yui-resize-handle-b{width:100%;height:5px;bottom:0;right:0;cursor:s-resize;zoom:1;}.yui-resize .yui-resize-handle-t{width:100%;height:5px;top:0;right:0;cursor:n-resize;zoom:1;}.yui-resize-proxy{position:absolute;border:1px dashed #000;visibility:hidden;z-index:1000;}.yui-resize-hover .yui-resize-handle,.yui-resize-hidden .yui-resize-handle{opacity:0;filter:alpha(opacity=0);}.yui-resize-ghost{opacity:.5;filter:alpha(opacity=50);}.yui-resize-knob .yui-resize-handle{height:6px;width:6px;}.yui-resize-knob .yui-resize-handle-tr{right:-3px;top:-3px;}.yui-resize-knob .yui-resize-handle-tl{left:-3px;top:-3px;}.yui-resize-knob .yui-resize-handle-bl{left:-3px;bottom:-3px;}.yui-resize-knob .yui-resize-handle-br{right:-3px;bottom:-3px;}.yui-resize-knob .yui-resize-handle-t{left:45%;top:-3px;}.yui-resize-knob .yui-resize-handle-r{right:-3px;top:45%;}.yui-resize-knob .yui-resize-handle-l{left:-3px;top:45%;}.yui-resize-knob .yui-resize-handle-b{left:45%;bottom:-3px;}.yui-resize-status{position:absolute;top:-999px;left:-999px;padding:2px;font-size:80%;display:none;zoom:1;z-index:9999;}.yui-resize-status strong,.yui-resize-status em{font-weight:normal;font-style:normal;padding:1px;zoom:1;}.yui-skin-sam .yui-resize .yui-resize-handle{background-color:#F2F2F2;}.yui-skin-sam .yui-resize .yui-resize-handle-active{background-color:#7D98B8;zoom:1;}.yui-skin-sam .yui-resize .yui-resize-handle-l,.yui-skin-sam .yui-resize .yui-resize-handle-r,.yui-skin-sam .yui-resize .yui-resize-handle-l-active,.yui-skin-sam .yui-resize .yui-resize-handle-r-active{height:100%;}.yui-skin-sam .yui-resize-knob .yui-resize-handle{border:1px solid #808080;}.yui-skin-sam .yui-resize-hover .yui-resize-handle-active{opacity:1;filter:alpha(opacity=100);}.yui-skin-sam .yui-resize-proxy{border:1px dashed #426FD9;}.yui-skin-sam .yui-resize-status{border:1px solid #A6982B;border-top:1px solid #D4C237;background-color:#FFEE69;color:#000;}.yui-skin-sam .yui-resize-status strong,.yui-skin-sam .yui-resize-status em{float:left;display:block;clear:both;padding:1px;text-align:center;}.yui-skin-sam .yui-resize .yui-resize-handle-inner-r,.yui-skin-sam .yui-resize .yui-resize-handle-inner-l{background:transparent url( layout_sprite.png) no-repeat 0 -5px;height:16px;width:5px;position:absolute;top:45%;}.yui-skin-sam .yui-resize .yui-resize-handle-inner-t,.yui-skin-sam .yui-resize .yui-resize-handle-inner-b{background:transparent url(layout_sprite.png) no-repeat -20px 0;height:5px;width:16px;position:absolute;left:50%;}.yui-skin-sam .yui-resize .yui-resize-handle-br{background-image:url( layout_sprite.png );background-repeat:no-repeat;background-position:-22px -62px;}.yui-skin-sam .yui-resize .yui-resize-handle-tr{background-image:url( layout_sprite.png );background-repeat:no-repeat;background-position:-22px -42px;}.yui-skin-sam .yui-resize .yui-resize-handle-tl{background-image:url( layout_sprite.png );background-repeat:no-repeat;background-position:-22px -82px;}.yui-skin-sam .yui-resize .yui-resize-handle-bl{background-image:url( layout_sprite.png );background-repeat:no-repeat;background-position:-22px -23px;}.yui-skin-sam .yui-resize-knob .yui-resize-handle-t,.yui-skin-sam .yui-resize-knob .yui-resize-handle-r,.yui-skin-sam .yui-resize-knob .yui-resize-handle-b,.yui-skin-sam .yui-resize-knob .yui-resize-handle-l,.yui-skin-sam .yui-resize-knob .yui-resize-handle-tl,.yui-skin-sam .yui-resize-knob .yui-resize-handle-tr,.yui-skin-sam .yui-resize-knob .yui-resize-handle-bl,.yui-skin-sam .yui-resize-knob .yui-resize-handle-br,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-t,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-r,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-b,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-l,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-tl,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-tr,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-bl,.yui-skin-sam .yui-resize-knob .yui-resize-handle-inner-br{background-image:none;}.yui-skin-sam .yui-resize-knob .yui-resize-handle-l,.yui-skin-sam .yui-resize-knob .yui-resize-handle-r,.yui-skin-sam .yui-resize-knob .yui-resize-handle-l-active,.yui-skin-sam .yui-resize-knob .yui-resize-handle-r-active{height:6px;width:6px;}
diff --git a/eclipse.org-common/yui/2.6.0/build/resize/resize-debug.js b/eclipse.org-common/yui/2.6.0/build/resize/resize-debug.js
deleted file mode 100644
index e3f81ed..0000000
--- a/eclipse.org-common/yui/2.6.0/build/resize/resize-debug.js
+++ /dev/null
@@ -1,1740 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * @description <p>Makes an element resizable</p>
- * @namespace YAHOO.util
- * @requires yahoo, dom, dragdrop, element, event
- * @optional animation
- * @module resize
- * @beta
- */
-(function() {
-var D = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang;
-
-    /**
-     * @constructor
-     * @class Resize
-     * @extends YAHOO.util.Element
-     * @description <p>Makes an element resizable</p>
-     * @param {String/HTMLElement} el The element to make resizable.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-
-    var Resize = function(el, config) {
-        YAHOO.log('Creating Resize Object', 'info', 'Resize');
-        var oConfig = {
-            element: el,
-            attributes: config || {}
-        };
-
-        Resize.superclass.constructor.call(this, oConfig.element, oConfig.attributes);    
-    };
-
-    /**
-    * @private
-    * @static
-    * @property _instances
-    * @description Internal hash table for all resize instances
-    * @type Object
-    */ 
-    Resize._instances = {};
-    /**
-    * @static
-    * @method getResizeById 
-    * @description Get's a resize object by the HTML id of the element associated with the Resize object.
-    * @return {Object} The Resize Object
-    */ 
-    Resize.getResizeById = function(id) {
-        if (Resize._instances[id]) {
-            return Resize._instances[id];
-        }
-        YAHOO.log('No Instance Found', 'error', 'Resize');
-        return false;
-    };
-
-    YAHOO.extend(Resize, YAHOO.util.Element, {
-        /**
-        * @private
-        * @property CSS_RESIZE
-        * @description Base CSS class name
-        * @type String
-        */ 
-        CSS_RESIZE: 'yui-resize',
-        /**
-        * @private
-        * @property CSS_DRAG
-        * @description Class name added when dragging is enabled
-        * @type String
-        */ 
-        CSS_DRAG: 'yui-draggable',
-        /**
-        * @private
-        * @property CSS_HOVER
-        * @description Class name used for hover only handles
-        * @type String
-        */ 
-        CSS_HOVER: 'yui-resize-hover',
-        /**
-        * @private
-        * @property CSS_PROXY
-        * @description Class name given to the proxy element
-        * @type String
-        */ 
-        CSS_PROXY: 'yui-resize-proxy',
-        /**
-        * @private
-        * @property CSS_WRAP
-        * @description Class name given to the wrap element
-        * @type String
-        */ 
-        CSS_WRAP: 'yui-resize-wrap',
-        /**
-        * @private
-        * @property CSS_KNOB
-        * @description Class name used to make the knob style handles
-        * @type String
-        */ 
-        CSS_KNOB: 'yui-resize-knob',
-        /**
-        * @private
-        * @property CSS_HIDDEN
-        * @description Class name given to the wrap element to make all handles hidden
-        * @type String
-        */ 
-        CSS_HIDDEN: 'yui-resize-hidden',
-        /**
-        * @private
-        * @property CSS_HANDLE
-        * @description Class name given to all handles, used as a base for single handle names as well.. Handle "t" will get this.CSS_HANDLE + '-t' as well as this.CSS_HANDLE
-        * @type String
-        */ 
-        CSS_HANDLE: 'yui-resize-handle',
-        /**
-        * @private
-        * @property CSS_STATUS
-        * @description Class name given to the status element
-        * @type String
-        */ 
-        CSS_STATUS: 'yui-resize-status',
-        /**
-        * @private
-        * @property CSS_GHOST
-        * @description Class name given to the wrap element when the ghost property is active
-        * @type String
-        */ 
-        CSS_GHOST: 'yui-resize-ghost',
-        /**
-        * @private
-        * @property CSS_RESIZING
-        * @description Class name given to the wrap element when a resize action is taking place.
-        * @type String
-        */ 
-        CSS_RESIZING: 'yui-resize-resizing',
-        /**
-        * @private
-        * @property _resizeEvent
-        * @description The mouse event used to resize with
-        * @type Event
-        */ 
-        _resizeEvent: null,
-        /**
-        * @private
-        * @property dd
-        * @description The <a href="YAHOO.util.DragDrop.html">YAHOO.util.DragDrop</a> instance used if draggable is true
-        * @type Object
-        */ 
-        dd: null,
-        /** 
-        * @private
-        * @property browser
-        * @description A copy of the YAHOO.env.ua property
-        * @type Object
-        */
-        browser: YAHOO.env.ua,
-        /** 
-        * @private
-        * @property _locked
-        * @description A flag to show if the resize is locked
-        * @type Boolean
-        */
-        _locked: null,
-        /** 
-        * @private
-        * @property _positioned
-        * @description A flag to show if the element is absolutely positioned
-        * @type Boolean
-        */
-        _positioned: null,
-        /** 
-        * @private
-        * @property _dds
-        * @description An Object containing references to all of the <a href="YAHOO.util.DragDrop.html">YAHOO.util.DragDrop</a> instances used for the resize handles
-        * @type Object
-        */
-        _dds: null,
-        /** 
-        * @private
-        * @property _wrap
-        * @description The HTML reference of the element wrapper
-        * @type HTMLElement
-        */
-        _wrap: null,
-        /** 
-        * @private
-        * @property _proxy
-        * @description The HTML reference of the element proxy
-        * @type HTMLElement
-        */
-        _proxy: null,
-        /** 
-        * @private
-        * @property _handles
-        * @description An object containing references to all of the resize handles.
-        * @type Object
-        */
-        _handles: null,
-        /** 
-        * @private
-        * @property _currentHandle
-        * @description The string identifier of the currently active handle. e.g. 'r', 'br', 'tl'
-        * @type String
-        */
-        _currentHandle: null,
-        /** 
-        * @private
-        * @property _currentDD
-        * @description A link to the currently active DD object
-        * @type Object
-        */
-        _currentDD: null,
-        /** 
-        * @private
-        * @property _cache
-        * @description An lookup table containing key information for the element being resized. e.g. height, width, x position, y position, etc..
-        * @type Object
-        */
-        _cache: null,
-        /** 
-        * @private
-        * @property _active
-        * @description Flag to show if the resize is active. Used for events.
-        * @type Boolean
-        */
-        _active: null,
-        /** 
-        * @private
-        * @method _createProxy
-        * @description Creates the proxy element if the proxy config is true
-        */
-        _createProxy: function() {
-            if (this.get('proxy')) {
-                YAHOO.log('Creating the Proxy Element', 'info', 'Resize');
-                this._proxy = document.createElement('div');
-                this._proxy.className = this.CSS_PROXY;
-                this._proxy.style.height = this.get('element').clientHeight + 'px';
-                this._proxy.style.width = this.get('element').clientWidth + 'px';
-                this._wrap.parentNode.appendChild(this._proxy);
-            } else {
-                YAHOO.log('No proxy element, turn off animate config option', 'info', 'Resize');
-                this.set('animate', false);
-            }
-        },
-        /** 
-        * @private
-        * @method _createWrap
-        * @description Creates the wrap element if the wrap config is true. It will auto wrap the following element types: img, textarea, input, iframe, select
-        */
-        _createWrap: function() {
-            YAHOO.log('Create the wrap element', 'info', 'Resize');
-            this._positioned = false;
-            //Force wrap for elements that can't have children 
-            switch (this.get('element').tagName.toLowerCase()) {
-                case 'img':
-                case 'textarea':
-                case 'input':
-                case 'iframe':
-                case 'select':
-                    this.set('wrap', true);
-                    YAHOO.log('Auto-wrapping the element (' + this.get('element').tagName.toLowerCase() + ')', 'warn', 'Resize');
-                    break;
-            }
-            if (this.get('wrap') === true) {
-                YAHOO.log('Creating the wrap element', 'info', 'Resize');
-                this._wrap = document.createElement('div');
-                this._wrap.id = this.get('element').id + '_wrap';
-                this._wrap.className = this.CSS_WRAP;
-                D.setStyle(this._wrap, 'width', this.get('width') + 'px');
-                D.setStyle(this._wrap, 'height', this.get('height') + 'px');
-                D.setStyle(this._wrap, 'z-index', this.getStyle('z-index'));
-                this.setStyle('z-index', 0);
-                var pos = D.getStyle(this.get('element'), 'position');
-                D.setStyle(this._wrap, 'position', ((pos == 'static') ? 'relative' : pos));
-                D.setStyle(this._wrap, 'top', D.getStyle(this.get('element'), 'top'));
-                D.setStyle(this._wrap, 'left', D.getStyle(this.get('element'), 'left'));
-                if (D.getStyle(this.get('element'), 'position') == 'absolute') {
-                    this._positioned = true;
-                    YAHOO.log('The element is positioned absolute', 'info', 'Resize');
-                    D.setStyle(this.get('element'), 'position', 'relative');
-                    D.setStyle(this.get('element'), 'top', '0');
-                    D.setStyle(this.get('element'), 'left', '0');
-                }
-                var par = this.get('element').parentNode;
-                par.replaceChild(this._wrap, this.get('element'));
-                this._wrap.appendChild(this.get('element'));
-            } else {
-                this._wrap = this.get('element');
-                if (D.getStyle(this._wrap, 'position') == 'absolute') {
-                    this._positioned = true;
-                }
-            }
-            if (this.get('draggable')) {
-                this._setupDragDrop();
-            }
-            if (this.get('hover')) {
-                D.addClass(this._wrap, this.CSS_HOVER);
-            }
-            if (this.get('knobHandles')) {
-                D.addClass(this._wrap, this.CSS_KNOB);
-            }
-            if (this.get('hiddenHandles')) {
-                D.addClass(this._wrap, this.CSS_HIDDEN);
-            }
-            D.addClass(this._wrap, this.CSS_RESIZE);
-        },
-        /** 
-        * @private
-        * @method _setupDragDrop
-        * @description Setup the <a href="YAHOO.util.DragDrop.html">YAHOO.util.DragDrop</a> instance on the element
-        */
-        _setupDragDrop: function() {
-            YAHOO.log('Setting up the dragdrop instance on the element', 'info', 'Resize');
-            D.addClass(this._wrap, this.CSS_DRAG);
-            this.dd = new YAHOO.util.DD(this._wrap, this.get('id') + '-resize', { dragOnly: true, useShim: this.get('useShim') });
-            this.dd.on('dragEvent', function() {
-                this.fireEvent('dragEvent', arguments);
-            }, this, true);
-        },
-        /** 
-        * @private
-        * @method _createHandles
-        * @description Creates the handles as specified in the config
-        */
-        _createHandles: function() {
-            YAHOO.log('Creating the handles', 'info', 'Resize');
-            this._handles = {};
-            this._dds = {};
-            var h = this.get('handles');
-            for (var i = 0; i < h.length; i++) {
-                YAHOO.log('Creating handle position: ' + h[i], 'info', 'Resize');
-                this._handles[h[i]] = document.createElement('div');
-                this._handles[h[i]].id = D.generateId(this._handles[h[i]]);
-                this._handles[h[i]].className = this.CSS_HANDLE + ' ' + this.CSS_HANDLE + '-' + h[i];
-                var k = document.createElement('div');
-                k.className = this.CSS_HANDLE + '-inner-' + h[i];
-                this._handles[h[i]].appendChild(k);
-                this._wrap.appendChild(this._handles[h[i]]);
-                Event.on(this._handles[h[i]], 'mouseover', this._handleMouseOver, this, true);
-                Event.on(this._handles[h[i]], 'mouseout', this._handleMouseOut, this, true);
-                this._dds[h[i]] = new YAHOO.util.DragDrop(this._handles[h[i]], this.get('id') + '-handle-' + h, { useShim: this.get('useShim') });
-                this._dds[h[i]].setPadding(15, 15, 15, 15);
-                this._dds[h[i]].on('startDragEvent', this._handleStartDrag, this._dds[h[i]], this);
-                this._dds[h[i]].on('mouseDownEvent', this._handleMouseDown, this._dds[h[i]], this);
-            }
-            YAHOO.log('Creating the Status box', 'info', 'Resize');
-            this._status = document.createElement('span');
-            this._status.className = this.CSS_STATUS;
-            document.body.insertBefore(this._status, document.body.firstChild);
-        },
-        /** 
-        * @private
-        * @method _ieSelectFix
-        * @description The function we use as the onselectstart handler when we start a drag in Internet Explorer
-        */
-        _ieSelectFix: function() {
-            return false;
-        },
-        /** 
-        * @private
-        * @property _ieSelectBack
-        * @description We will hold a copy of the current "onselectstart" method on this property, and reset it after we are done using it.
-        */
-        _ieSelectBack: null,
-        /** 
-        * @private
-        * @method _setAutoRatio
-        * @param {Event} ev A mouse event.
-        * @description This method checks to see if the "autoRatio" config is set. If it is, we will check to see if the "Shift Key" is pressed. If so, we will set the config ratio to true.
-        */
-        _setAutoRatio: function(ev) {
-            if (this.get('autoRatio')) {
-                YAHOO.log('Setting up AutoRatio', 'info', 'Resize');
-                if (ev && ev.shiftKey) {
-                    //Shift Pressed
-                    YAHOO.log('Shift key presses, turning on ratio', 'info', 'Resize');
-                    this.set('ratio', true);
-                } else {
-                    YAHOO.log('Resetting ratio back to default', 'info', 'Resize');
-                    this.set('ratio', this._configs.ratio._initialConfig.value);
-                }
-            }
-        },
-        /** 
-        * @private
-        * @method _handleMouseDown
-        * @param {Event} ev A mouse event.
-        * @description This method preps the autoRatio on MouseDown.
-        */
-        _handleMouseDown: function(ev) {
-            if (this._locked) {
-                YAHOO.log('Resize Locked', 'info', 'Resize');
-                return false;
-            }
-            if (D.getStyle(this._wrap, 'position') == 'absolute') {
-                this._positioned = true;
-            }
-            if (ev) {
-                this._setAutoRatio(ev);
-            }
-            if (this.browser.ie) {
-                this._ieSelectBack = document.body.onselectstart;
-                document.body.onselectstart = this._ieSelectFix;
-            }
-        },
-        /** 
-        * @private
-        * @method _handleMouseOver
-        * @param {Event} ev A mouse event.
-        * @description Adds CSS class names to the handles
-        */
-        _handleMouseOver: function(ev) {
-            if (this._locked) {
-                YAHOO.log('Resize Locked', 'info', 'Resize');
-                return false;
-            }
-            //Internet Explorer needs this
-            D.removeClass(this._wrap, this.CSS_RESIZE);
-            if (this.get('hover')) {
-                D.removeClass(this._wrap, this.CSS_HOVER);
-            }
-            var tar = Event.getTarget(ev);
-            if (!D.hasClass(tar, this.CSS_HANDLE)) {
-                tar = tar.parentNode;
-            }
-            if (D.hasClass(tar, this.CSS_HANDLE) && !this._active) {
-                D.addClass(tar, this.CSS_HANDLE + '-active');
-                for (var i in this._handles) {
-                    if (Lang.hasOwnProperty(this._handles, i)) {
-                        if (this._handles[i] == tar) {
-                            D.addClass(tar, this.CSS_HANDLE + '-' + i + '-active');
-                            break;
-                        }
-                    }
-                }
-            }
-
-            //Internet Explorer needs this
-            D.addClass(this._wrap, this.CSS_RESIZE);
-        },
-        /** 
-        * @private
-        * @method _handleMouseOut
-        * @param {Event} ev A mouse event.
-        * @description Removes CSS class names to the handles
-        */
-        _handleMouseOut: function(ev) {
-            //Internet Explorer needs this
-            D.removeClass(this._wrap, this.CSS_RESIZE);
-            if (this.get('hover') && !this._active) {
-                D.addClass(this._wrap, this.CSS_HOVER);
-            }
-            var tar = Event.getTarget(ev);
-            if (!D.hasClass(tar, this.CSS_HANDLE)) {
-                tar = tar.parentNode;
-            }
-            if (D.hasClass(tar, this.CSS_HANDLE) && !this._active) {
-                D.removeClass(tar, this.CSS_HANDLE + '-active');
-                for (var i in this._handles) {
-                    if (Lang.hasOwnProperty(this._handles, i)) {
-                        if (this._handles[i] == tar) {
-                            D.removeClass(tar, this.CSS_HANDLE + '-' + i + '-active');
-                            break;
-                        }
-                    }
-                }
-            }
-            //Internet Explorer needs this
-            D.addClass(this._wrap, this.CSS_RESIZE);
-        },
-        /** 
-        * @private
-        * @method _handleStartDrag
-        * @param {Object} args The args passed from the CustomEvent.
-        * @param {Object} dd The <a href="YAHOO.util.DragDrop.html">YAHOO.util.DragDrop</a> object we are working with.
-        * @description Resizes the proxy, sets up the <a href="YAHOO.util.DragDrop.html">YAHOO.util.DragDrop</a> handlers, updates the status div and preps the cache
-        */
-        _handleStartDrag: function(args, dd) {
-            YAHOO.log('startDrag', 'info', 'Resize');
-            var tar = dd.getDragEl();
-            if (D.hasClass(tar, this.CSS_HANDLE)) {
-                if (D.getStyle(this._wrap, 'position') == 'absolute') {
-                    this._positioned = true;
-                }
-                this._active = true;
-                this._currentDD = dd;
-                if (this._proxy) {
-                    YAHOO.log('Activate proxy element', 'info', 'Resize');
-                    this._proxy.style.visibility = 'visible';
-                    this._proxy.style.zIndex = '1000';
-                    this._proxy.style.height = this.get('element').clientHeight + 'px';
-                    this._proxy.style.width = this.get('element').clientWidth + 'px';
-                }
-
-                for (var i in this._handles) {
-                    if (Lang.hasOwnProperty(this._handles, i)) {
-                        if (this._handles[i] == tar) {
-                            this._currentHandle = i;
-                            var handle = '_handle_for_' + i;
-                            D.addClass(tar, this.CSS_HANDLE + '-' + i + '-active');
-                            dd.on('dragEvent', this[handle], this, true);
-                            dd.on('mouseUpEvent', this._handleMouseUp, this, true);
-                            YAHOO.log('Adding DragEvents to: ' + i, 'info', 'Resize');
-                            break;
-                        }
-                    }
-                }
-
-
-                D.addClass(tar, this.CSS_HANDLE + '-active');
-
-                if (this.get('proxy')) {
-                    YAHOO.log('Posiiton Proxy Element', 'info', 'Resize');
-                    var xy = D.getXY(this.get('element'));
-                    D.setXY(this._proxy, xy);
-                    if (this.get('ghost')) {
-                        YAHOO.log('Add Ghost Class', 'info', 'Resize');
-                        this.addClass(this.CSS_GHOST);
-                    }
-                }
-                D.addClass(this._wrap, this.CSS_RESIZING);
-                this._setCache();
-                this._updateStatus(this._cache.height, this._cache.width, this._cache.top, this._cache.left);
-                YAHOO.log('Firing startResize Event', 'info', 'Resize');
-                this.fireEvent('startResize', { type: 'startresize', target: this});
-            }
-        },
-        /** 
-        * @private
-        * @method _setCache
-        * @description Sets up the this._cache hash table.
-        */
-        _setCache: function() {
-            YAHOO.log('Setting up property cache', 'info', 'Resize');
-            this._cache.xy = D.getXY(this._wrap);
-            D.setXY(this._wrap, this._cache.xy);
-            this._cache.height = this.get('clientHeight');
-            this._cache.width = this.get('clientWidth');
-            this._cache.start.height = this._cache.height;
-            this._cache.start.width = this._cache.width;
-            this._cache.start.top = this._cache.xy[1];
-            this._cache.start.left = this._cache.xy[0];
-            this._cache.top = this._cache.xy[1];
-            this._cache.left = this._cache.xy[0];
-            this.set('height', this._cache.height, true);
-            this.set('width', this._cache.width, true);
-        },
-        /** 
-        * @private
-        * @method _handleMouseUp
-        * @param {Event} ev A mouse event.
-        * @description Cleans up listeners, hides proxy element and removes class names.
-        */
-        _handleMouseUp: function(ev) {
-            this._active = false;
-
-            var handle = '_handle_for_' + this._currentHandle;
-            this._currentDD.unsubscribe('dragEvent', this[handle], this, true);
-            this._currentDD.unsubscribe('mouseUpEvent', this._handleMouseUp, this, true);
-
-            if (this._proxy) {
-                YAHOO.log('Hide Proxy Element', 'info', 'Resize');
-                this._proxy.style.visibility = 'hidden';
-                this._proxy.style.zIndex = '-1';
-                if (this.get('setSize')) {
-                    YAHOO.log('Setting Size', 'info', 'Resize');
-                    this.resize(ev, this._cache.height, this._cache.width, this._cache.top, this._cache.left, true);
-                } else {
-                    YAHOO.log('Firing Resize Event', 'info', 'Resize');
-                    this.fireEvent('resize', { ev: 'resize', target: this, height: this._cache.height, width: this._cache.width, top: this._cache.top, left: this._cache.left });
-                }
-
-                if (this.get('ghost')) {
-                    YAHOO.log('Removing Ghost Class', 'info', 'Resize');
-                    this.removeClass(this.CSS_GHOST);
-                }
-            }
-
-            if (this.get('hover')) {
-                D.addClass(this._wrap, this.CSS_HOVER);
-            }
-            if (this._status) {
-                D.setStyle(this._status, 'display', 'none');
-            }
-            if (this.browser.ie) {
-                YAHOO.log('Resetting IE onselectstart function', 'info', 'Resize');
-                document.body.onselectstart = this._ieSelectBack;
-            }
-
-            if (this.browser.ie) {
-                D.removeClass(this._wrap, this.CSS_RESIZE);
-            }
-
-            for (var i in this._handles) {
-                if (Lang.hasOwnProperty(this._handles, i)) {
-                    D.removeClass(this._handles[i], this.CSS_HANDLE + '-active');
-                }
-            }
-            if (this.get('hover') && !this._active) {
-                D.addClass(this._wrap, this.CSS_HOVER);
-            }
-            D.removeClass(this._wrap, this.CSS_RESIZING);
-
-            D.removeClass(this._handles[this._currentHandle], this.CSS_HANDLE + '-' + this._currentHandle + '-active');
-            D.removeClass(this._handles[this._currentHandle], this.CSS_HANDLE + '-active');
-
-            if (this.browser.ie) {
-                D.addClass(this._wrap, this.CSS_RESIZE);
-            }
-
-            this._resizeEvent = null;
-            this._currentHandle = null;
-            
-            if (!this.get('animate')) {
-                this.set('height', this._cache.height, true);
-                this.set('width', this._cache.width, true);
-            }
-
-            YAHOO.log('Firing endResize Event', 'info', 'Resize');
-            this.fireEvent('endResize', { ev: 'endResize', target: this, height: this._cache.height, width: this._cache.width, top: this._cache.top, left: this._cache.left });
-        },
-        /** 
-        * @private
-        * @method _setRatio
-        * @param {Number} h The height offset.
-        * @param {Number} w The with offset.
-        * @param {Number} t The top offset.
-        * @param {Number} l The left offset.
-        * @description Using the Height, Width, Top & Left, it recalcuates them based on the original element size.
-        * @return {Array} The new Height, Width, Top & Left settings
-        */
-        _setRatio: function(h, w, t, l) {
-            YAHOO.log('Setting Ratio', 'info', 'Resize');
-            var oh = h, ow = w;
-            if (this.get('ratio')) {
-                var orgH = this._cache.height,
-                    orgW = this._cache.width,
-                    nh = parseInt(this.get('height'), 10),
-                    nw = parseInt(this.get('width'), 10),
-                    maxH = this.get('maxHeight'),
-                    minH = this.get('minHeight'),
-                    maxW = this.get('maxWidth'),
-                    minW = this.get('minWidth');
-
-                switch (this._currentHandle) {
-                    case 'l':
-                        h = nh * (w / nw);
-                        h = Math.min(Math.max(minH, h), maxH);                        
-                        w = nw * (h / nh);
-                        t = (this._cache.start.top - (-((nh - h) / 2)));
-                        l = (this._cache.start.left - (-((nw - w))));
-                        break;
-                    case 'r':
-                        h = nh * (w / nw);
-                        h = Math.min(Math.max(minH, h), maxH);                        
-                        w = nw * (h / nh);
-                        t = (this._cache.start.top - (-((nh - h) / 2)));
-                        break;
-                    case 't':
-                        w = nw * (h / nh);
-                        h = nh * (w / nw);
-                        l = (this._cache.start.left - (-((nw - w) / 2)));
-                        t = (this._cache.start.top - (-((nh - h))));
-                        break;
-                    case 'b':
-                        w = nw * (h / nh);
-                        h = nh * (w / nw);
-                        l = (this._cache.start.left - (-((nw - w) / 2)));
-                        break;
-                    case 'bl':
-                        h = nh * (w / nw);
-                        w = nw * (h / nh);
-                        l = (this._cache.start.left - (-((nw - w))));
-                        break;
-                    case 'br':
-                        h = nh * (w / nw);
-                        w = nw * (h / nh);
-                        break;
-                    case 'tl':
-                        h = nh * (w / nw);
-                        w = nw * (h / nh);
-                        l = (this._cache.start.left - (-((nw - w))));
-                        t = (this._cache.start.top - (-((nh - h))));
-                        break;
-                    case 'tr':
-                        h = nh * (w / nw);
-                        w = nw * (h / nh);
-                        l = (this._cache.start.left);
-                        t = (this._cache.start.top - (-((nh - h))));
-                        break;
-                }
-                oh = this._checkHeight(h);
-                ow = this._checkWidth(w);
-                if ((oh != h) || (ow != w)) {
-                    t = 0;
-                    l = 0;
-                    if (oh != h) {
-                        ow = this._cache.width;
-                    }
-                    if (ow != w) {
-                        oh = this._cache.height;
-                    }
-                }
-            }
-            return [oh, ow, t, l];
-        },
-        /** 
-        * @private
-        * @method _updateStatus
-        * @param {Number} h The new height setting.
-        * @param {Number} w The new width setting.
-        * @param {Number} t The new top setting.
-        * @param {Number} l The new left setting.
-        * @description Using the Height, Width, Top & Left, it updates the status element with the elements sizes.
-        */
-        _updateStatus: function(h, w, t, l) {
-            if (this._resizeEvent && (!Lang.isString(this._resizeEvent))) {
-                YAHOO.log('Updating Status Box', 'info', 'Resize');
-                if (this.get('status')) {
-                    YAHOO.log('Showing Status Box', 'info', 'Resize');
-                    D.setStyle(this._status, 'display', 'inline');
-                }
-                h = ((h === 0) ? this._cache.start.height : h);
-                w = ((w === 0) ? this._cache.start.width : w);
-                var h1 = parseInt(this.get('height'), 10),
-                    w1 = parseInt(this.get('width'), 10);
-                
-                if (isNaN(h1)) {
-                    h1 = parseInt(h, 10);
-                }
-                if (isNaN(w1)) {
-                    w1 = parseInt(w, 10);
-                }
-                var diffH = (parseInt(h, 10) - h1);
-                var diffW = (parseInt(w, 10) - w1);
-                this._cache.offsetHeight = diffH;
-                this._cache.offsetWidth = diffW;
-                this._status.innerHTML = '<strong>' + parseInt(h, 10) + ' x ' + parseInt(w, 10) + '</strong><em>' + ((diffH > 0) ? '+' : '') + diffH + ' x ' + ((diffW > 0) ? '+' : '') + diffW + '</em>';
-                D.setXY(this._status, [Event.getPageX(this._resizeEvent) + 12, Event.getPageY(this._resizeEvent) + 12]);
-            }
-        },
-        /** 
-        * @method lock
-        * @description Lock the resize so it can't be resized
-        * @param {Boolean} dd If the draggable config is set, lock it too
-        * @return {<a href="YAHOO.util.Resize.html">YAHOO.util.Resize</a>} The Resize instance
-        */
-        lock: function(dd) {
-            this._locked = true;
-            if (dd && this.dd) {
-                D.removeClass(this._wrap, 'yui-draggable');
-                this.dd.lock();
-            }
-            return this;
-        },
-        /** 
-        * @method unlock
-        * @description Unlock the resize so it can be resized
-        * @param {Boolean} dd If the draggable config is set, unlock it too
-        * @return {<a href="YAHOO.util.Resize.html">YAHOO.util.Resize</a>} The Resize instance
-        */
-        unlock: function(dd) {
-            this._locked = false;
-            if (dd && this.dd) {
-                D.addClass(this._wrap, 'yui-draggable');
-                this.dd.unlock();
-            }
-            return this;
-        },
-        /** 
-        * @method isLocked
-        * @description Check the locked status of the resize instance
-        * @return {Boolean}
-        */
-        isLocked: function() {
-            return this._locked;
-        },
-        /** 
-        * @method reset
-        * @description Resets the element to is start state.
-        * @return {<a href="YAHOO.util.Resize.html">YAHOO.util.Resize</a>} The Resize instance
-        */
-        reset: function() {
-            YAHOO.log('Resetting to cached sizes and position', 'info', 'Resize');
-            this.resize(null, this._cache.start.height, this._cache.start.width, this._cache.start.top, this._cache.start.left, true);
-            return this;
-        },
-        /** 
-        * @private
-        * @method resize
-        * @param {Event} ev The mouse event.
-        * @param {Number} h The new height setting.
-        * @param {Number} w The new width setting.
-        * @param {Number} t The new top setting.
-        * @param {Number} l The new left setting.
-        * @param {Boolean} force Resize the element (used for proxy resize).
-        * @param {Boolean} silent Don't fire the beforeResize Event.
-        * @description Resizes the element, wrapper or proxy based on the data from the handlers.
-        * @return {<a href="YAHOO.util.Resize.html">YAHOO.util.Resize</a>} The Resize instance
-        */
-        resize: function(ev, h, w, t, l, force, silent) {
-            if (this._locked) {
-                YAHOO.log('Resize Locked', 'info', 'Resize');
-                return false;
-            }
-            YAHOO.log('Resize: ' + h + ',' + w + ',' + t + ',' + l, 'info', 'Resize');
-            this._resizeEvent = ev;
-            var el = this._wrap, anim = this.get('animate'), set = true;
-            if (this._proxy && !force) {
-                el = this._proxy;
-                anim = false;
-            }
-            this._setAutoRatio(ev);
-            if (this._positioned) {
-                if (this._proxy) {
-                    t = this._cache.top - t;
-                    l = this._cache.left - l;
-                }
-            }
-
-            var ratio = this._setRatio(h, w, t, l);
-            h = parseInt(ratio[0], 10);
-            w = parseInt(ratio[1], 10);
-            t = parseInt(ratio[2], 10);
-            l = parseInt(ratio[3], 10);
-
-            if (t == 0) {
-                //No Offset, get from cache
-                t = D.getY(el);
-            }
-            if (l == 0) {
-                //No Offset, get from cache
-                l = D.getX(el);
-            }
-
-            
-
-            if (this._positioned) {
-                if (this._proxy && force) {
-                    if (!anim) {
-                        el.style.top = this._proxy.style.top;
-                        el.style.left = this._proxy.style.left;
-                    } else {
-                        t = this._proxy.style.top;
-                        l = this._proxy.style.left;
-                    }
-                } else {
-                    if (!this.get('ratio') && !this._proxy) {
-                        t = this._cache.top + -(t);
-                        l = this._cache.left + -(l);
-                    }
-                    if (t) {
-                        if (this.get('minY')) {
-                            if (t < this.get('minY')) {
-                                t = this.get('minY');
-                            }
-                        }
-                        if (this.get('maxY')) {
-                            if (t > this.get('maxY')) {
-                                t = this.get('maxY');
-                            }
-                        }
-                    }
-                    if (l) {
-                        if (this.get('minX')) {
-                            if (l < this.get('minX')) {
-                                l = this.get('minX');
-                            }
-                        }
-                        if (this.get('maxX')) {
-                            if ((l + w) > this.get('maxX')) {
-                                l = (this.get('maxX') - w);
-                            }
-                        }
-                    }
-                }
-            }
-            if (!silent) {
-                YAHOO.log('beforeResize', 'info', 'Resize');
-                var beforeReturn = this.fireEvent('beforeResize', { ev: 'beforeResize', target: this, height: h, width: w, top: t, left: l });
-                if (beforeReturn === false) {
-                    YAHOO.log('Resized cancelled because befireResize returned false', 'info', 'Resize');
-                    return false;
-                }
-            }
-
-            this._updateStatus(h, w, t, l);
-
-            if (this._positioned) {
-                if (this._proxy && force) {
-                    //Do nothing
-                } else {
-                    if (t) {
-                        D.setY(el, t);
-                        this._cache.top = t;
-                    }
-                    if (l) {
-                        D.setX(el, l);
-                        this._cache.left = l;
-                    }
-                }
-            }
-            if (h) {
-                if (!anim) {
-                    set = true;
-                    if (this._proxy && force) {
-                        if (!this.get('setSize')) {
-                            set = false;
-                        }
-                    }
-                    if (set) {
-                        if (this.browser.ie > 6) {
-                            if (h === this._cache.height) {
-                                h = h + 1;
-                            }
-                        }
-                        el.style.height = h + 'px';
-                    }
-                    if ((this._proxy && force) || !this._proxy) {
-                        if (this._wrap != this.get('element')) {
-                            this.get('element').style.height = h + 'px';
-                        }
-                    }
-                }
-                this._cache.height = h;
-            }
-            if (w) {
-                this._cache.width = w;
-                if (!anim) {
-                    set = true;
-                    if (this._proxy && force) {
-                        if (!this.get('setSize')) {
-                            set = false;
-                        }
-                    }
-                    if (set) {
-                        el.style.width = w + 'px';
-                    }
-                    if ((this._proxy && force) || !this._proxy) {
-                        if (this._wrap != this.get('element')) {
-                            this.get('element').style.width = w + 'px';
-                        }
-                    }
-                }
-            }
-            if (anim) {
-                if (YAHOO.util.Anim) {
-                    var _anim = new YAHOO.util.Anim(el, {
-                        height: {
-                            to: this._cache.height
-                        },
-                        width: {
-                            to: this._cache.width
-                        }
-                    }, this.get('animateDuration'), this.get('animateEasing'));
-                    if (this._positioned) {
-                        if (t) {
-                            _anim.attributes.top = {
-                                to: parseInt(t, 10)
-                            };
-                        }
-                        if (l) {
-                            _anim.attributes.left = {
-                                to: parseInt(l, 10)
-                            };
-                        }
-                    }
-
-                    if (this._wrap != this.get('element')) {
-                        _anim.onTween.subscribe(function() {
-                            this.get('element').style.height = el.style.height;
-                            this.get('element').style.width = el.style.width;
-                        }, this, true);
-                    }
-
-                    _anim.onComplete.subscribe(function() {
-                        YAHOO.log('Animation onComplete fired', 'info', 'Resize');
-                        this.set('height', h);
-                        this.set('width', w);
-                        this.fireEvent('resize', { ev: 'resize', target: this, height: h, width: w, top: t, left: l });
-                    }, this, true);
-                    _anim.animate();
-
-                }
-            } else {
-                if (this._proxy && !force) {
-                    YAHOO.log('proxyResize', 'info', 'Resize');
-                    this.fireEvent('proxyResize', { ev: 'proxyresize', target: this, height: h, width: w, top: t, left: l });
-                } else {
-                    YAHOO.log('resize', 'info', 'Resize');
-                    this.fireEvent('resize', { ev: 'resize', target: this, height: h, width: w, top: t, left: l });
-                }
-            }
-            return this;
-        },
-        /** 
-        * @private
-        * @method _handle_for_br
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Bottom Right handle.
-        */
-        _handle_for_br: function(args) {
-            YAHOO.log('Handle BR', 'info', 'Resize');
-            var newW = this._setWidth(args.e);
-            var newH = this._setHeight(args.e);
-            this.resize(args.e, (newH + 1), newW, 0, 0);
-        },
-        /** 
-        * @private
-        * @method _handle_for_bl
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Bottom Left handle.
-        */
-        _handle_for_bl: function(args) {
-            YAHOO.log('Handle BL', 'info', 'Resize');
-            var newW = this._setWidth(args.e, true);
-            var newH = this._setHeight(args.e);
-            var l = (newW - this._cache.width);
-            this.resize(args.e, newH, newW, 0, l);
-        },
-        /** 
-        * @private
-        * @method _handle_for_tl
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Top Left handle.
-        */
-        _handle_for_tl: function(args) {
-            YAHOO.log('Handle TL', 'info', 'Resize');
-            var newW = this._setWidth(args.e, true);
-            var newH = this._setHeight(args.e, true);
-            var t = (newH - this._cache.height);
-            var l = (newW - this._cache.width);
-            this.resize(args.e, newH, newW, t, l);
-        },
-        /** 
-        * @private
-        * @method _handle_for_tr
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Top Right handle.
-        */
-        _handle_for_tr: function(args) {
-            YAHOO.log('Handle TR', 'info', 'Resize');
-            var newW = this._setWidth(args.e);
-            var newH = this._setHeight(args.e, true);
-            var t = (newH - this._cache.height);
-            this.resize(args.e, newH, newW, t, 0);
-        },
-        /** 
-        * @private
-        * @method _handle_for_r
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Right handle.
-        */
-        _handle_for_r: function(args) {
-            YAHOO.log('Handle R', 'info', 'Resize');
-            this._dds.r.setYConstraint(0,0);
-            var newW = this._setWidth(args.e);
-            this.resize(args.e, 0, newW, 0, 0);
-        },
-        /** 
-        * @private
-        * @method _handle_for_l
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Left handle.
-        */
-        _handle_for_l: function(args) {
-            YAHOO.log('Handle L', 'info', 'Resize');
-            this._dds.l.setYConstraint(0,0);
-            var newW = this._setWidth(args.e, true);
-            var l = (newW - this._cache.width);
-            this.resize(args.e, 0, newW, 0, l);
-        },
-        /** 
-        * @private
-        * @method _handle_for_b
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Bottom handle.
-        */
-        _handle_for_b: function(args) {
-            YAHOO.log('Handle B', 'info', 'Resize');
-            this._dds.b.setXConstraint(0,0);
-            var newH = this._setHeight(args.e);
-            this.resize(args.e, newH, 0, 0, 0);
-        },
-        /** 
-        * @private
-        * @method _handle_for_t
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Top handle.
-        */
-        _handle_for_t: function(args) {
-            YAHOO.log('Handle T', 'info', 'Resize');
-            this._dds.t.setXConstraint(0,0);
-            var newH = this._setHeight(args.e, true);
-            var t = (newH - this._cache.height);
-            this.resize(args.e, newH, 0, t, 0);
-        },
-        /** 
-        * @private
-        * @method _setWidth
-        * @param {Event} ev The mouse event.
-        * @param {Boolean} flip Argument to determine the direction of the movement.
-        * @description Calculates the width based on the mouse event.
-        * @return {Number} The new value
-        */
-        _setWidth: function(ev, flip) {
-            YAHOO.log('Set width based on Event', 'info', 'Resize');
-            var xy = this._cache.xy[0],
-                w = this._cache.width,
-                x = Event.getPageX(ev),
-                nw = (x - xy);
-
-                if (flip) {
-                    nw = (xy - x) + parseInt(this.get('width'), 10);
-                }
-                
-                nw = this._snapTick(nw, this.get('yTicks'));
-                nw = this._checkWidth(nw);
-            return nw;
-        },
-        /** 
-        * @private
-        * @method _checkWidth
-        * @param {Number} w The width to check.
-        * @description Checks the value passed against the maxWidth and minWidth.
-        * @return {Number} the new value
-        */
-        _checkWidth: function(w) {
-            YAHOO.log('Checking the min/max width', 'info', 'Resize');
-            if (this.get('minWidth')) {
-                if (w <= this.get('minWidth')) {
-                    YAHOO.log('Using minWidth', 'info', 'Resize');
-                    w = this.get('minWidth');
-                }
-            }
-            if (this.get('maxWidth')) {
-                if (w >= this.get('maxWidth')) {
-                    YAHOO.log('Using Max Width', 'info', 'Resize');
-                    w = this.get('maxWidth');
-                }
-            }
-            return w;
-        },
-        /** 
-        * @private
-        * @method _checkHeight
-        * @param {Number} h The height to check.
-        * @description Checks the value passed against the maxHeight and minHeight.
-        * @return {Number} The new value
-        */
-        _checkHeight: function(h) {
-            YAHOO.log('Checking the min/max height', 'info', 'Resize');
-            if (this.get('minHeight')) {
-                if (h <= this.get('minHeight')) {
-                    YAHOO.log('Using minHeight', 'info', 'Resize');
-                    h = this.get('minHeight');
-                }
-            }
-            if (this.get('maxHeight')) {
-                if (h >= this.get('maxHeight')) {
-                    YAHOO.log('using maxHeight', 'info', 'Resize');
-                    h = this.get('maxHeight');
-                }
-            }
-            return h;
-        },
-        /** 
-        * @private
-        * @method _setHeight
-        * @param {Event} ev The mouse event.
-        * @param {Boolean} flip Argument to determine the direction of the movement.
-        * @description Calculated the height based on the mouse event.
-        * @return {Number} The new value
-        */
-        _setHeight: function(ev, flip) {
-            YAHOO.log('Setting the height based on the Event', 'info', 'Resize');
-            var xy = this._cache.xy[1],
-                h = this._cache.height,
-                y = Event.getPageY(ev),
-                nh = (y - xy);
-
-                if (flip) {
-                    nh = (xy - y) + parseInt(this.get('height'), 10);
-                }
-                nh = this._snapTick(nh, this.get('xTicks'));
-                nh = this._checkHeight(nh);
-                
-            return nh;
-        },
-        /** 
-        * @private
-        * @method _snapTick
-        * @param {Number} size The size to tick against.
-        * @param {Number} pix The tick pixels.
-        * @description Adjusts the number based on the ticks used.
-        * @return {Number} the new snapped position
-        */
-        _snapTick: function(size, pix) {
-            YAHOO.log('Snapping to ticks', 'info', 'Resize');
-            if (!size || !pix) {
-                return size;
-            }
-            var _s = size;
-            var _x = size % pix;
-            if (_x > 0) {
-                if (_x > (pix / 2)) {
-                    _s = size + (pix - _x);
-                } else {
-                    _s = size - _x;
-                }
-            }
-            return _s;
-        },
-        /** 
-        * @private
-        * @method init
-        * @description The Resize class's initialization method
-        */        
-        init: function(p_oElement, p_oAttributes) {
-            YAHOO.log('init', 'info', 'Resize');
-            this._locked = false;
-            this._cache = {
-                xy: [],
-                height: 0,
-                width: 0,
-                top: 0,
-                left: 0,
-                offsetHeight: 0,
-                offsetWidth: 0,
-                start: {
-                    height: 0,
-                    width: 0,
-                    top: 0,
-                    left: 0
-                }
-            };
-
-            Resize.superclass.init.call(this, p_oElement, p_oAttributes);
-
-            this.set('setSize', this.get('setSize'));
-
-            if (p_oAttributes.height) {
-                this.set('height', parseInt(p_oAttributes.height, 10));
-            }
-            if (p_oAttributes.width) {
-                this.set('width', parseInt(p_oAttributes.width, 10));
-            }
-            
-            var id = p_oElement;
-            if (!Lang.isString(id)) {
-                id = D.generateId(id);
-            }
-            Resize._instances[id] = this;
-
-            this._active = false;
-            
-            this._createWrap();
-            this._createProxy();
-            this._createHandles();
-
-        },
-        /**
-        * @method getProxyEl
-        * @description Get the HTML reference for the proxy, returns null if no proxy.
-        * @return {HTMLElement} The proxy element
-        */      
-        getProxyEl: function() {
-            return this._proxy;
-        },
-        /**
-        * @method getWrapEl
-        * @description Get the HTML reference for the wrap element, returns the current element if not wrapped.
-        * @return {HTMLElement} The wrap element
-        */      
-        getWrapEl: function() {
-            return this._wrap;
-        },
-        /**
-        * @method getStatusEl
-        * @description Get the HTML reference for the status element.
-        * @return {HTMLElement} The status element
-        */      
-        getStatusEl: function() {
-            return this._status;
-        },
-        /**
-        * @method getActiveHandleEl
-        * @description Get the HTML reference for the currently active resize handle.
-        * @return {HTMLElement} The handle element that is active
-        */      
-        getActiveHandleEl: function() {
-            return this._handles[this._currentHandle];
-        },
-        /**
-        * @method isActive
-        * @description Returns true or false if a resize operation is currently active on the element.
-        * @return {Boolean}
-        */      
-        isActive: function() {
-            return ((this._active) ? true : false);
-        },
-        /**
-        * @private
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create a resizable element.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the utility.
-        */      
-        initAttributes: function(attr) {
-            Resize.superclass.initAttributes.call(this, attr);
-
-            /**
-            * @attribute useShime
-            * @description This setting will be passed to the DragDrop instances on the resize handles and for the draggable property.
-            * This property should be used if you want the resize handles to work over iframe and other elements.
-            * @type Boolean
-            */
-            this.setAttributeConfig('useShim', {
-                value: ((attr.useShim === true) ? true : false),
-                validator: YAHOO.lang.isBoolean,
-                method: function(u) {
-                    for (var i in this._dds) {
-                        if (Lang.hasOwnProperty(this._dds, i)) {
-                            this._dds[i].useShim = u;
-                        }
-                    }
-                    if (this.dd) {
-                        this.dd.useShim = u;
-                    }
-                }
-            });
-            /**
-            * @attribute setSize
-            * @description Set the size of the resized element, if set to false the element will not be auto resized,
-            * the resize event will contain the dimensions so the end user can resize it on their own.
-            * This setting will only work with proxy set to true and animate set to false.
-            * @type Boolean
-            */
-            this.setAttributeConfig('setSize', {
-                value: ((attr.setSize === false) ? false : true),
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute wrap
-            * @description Should we wrap the element
-            * @type Boolean
-            */
-            this.setAttributeConfig('wrap', {
-                writeOnce: true,
-                validator: YAHOO.lang.isBoolean,
-                value: attr.wrap || false
-            });
-
-            /**
-            * @attribute handles
-            * @description The handles to use (any combination of): 't', 'b', 'r', 'l', 'bl', 'br', 'tl', 'tr'. Defaults to: ['r', 'b', 'br'].
-            * Can use a shortcut of All. Note: 8 way resizing should be done on an element that is absolutely positioned.
-            * @type Array
-            */
-            this.setAttributeConfig('handles', {
-                writeOnce: true,
-                value: attr.handles || ['r', 'b', 'br'],
-                validator: function(handles) {
-                    if (Lang.isString(handles) && handles.toLowerCase() == 'all') {
-                        handles = ['t', 'b', 'r', 'l', 'bl', 'br', 'tl', 'tr'];
-                    }
-                    if (!Lang.isArray(handles)) {
-                        handles = handles.replace(/, /g, ',');
-                        handles = handles.split(',');
-                    }
-                    this._configs.handles.value = handles;
-                }
-            });
-
-            /**
-            * @attribute width
-            * @description The width of the element
-            * @type Number
-            */
-            this.setAttributeConfig('width', {
-                value: attr.width || parseInt(this.getStyle('width'), 10),
-                validator: YAHOO.lang.isNumber,
-                method: function(width) {
-                    width = parseInt(width, 10);
-                    if (width > 0) {
-                        if (this.get('setSize')) {
-                            this.setStyle('width', width + 'px');
-                        }
-                        this._cache.width = width;
-                        this._configs.width.value = width;
-                    }
-                }
-            });
-
-            /**
-            * @attribute height
-            * @description The height of the element
-            * @type Number
-            */
-            this.setAttributeConfig('height', {
-                value: attr.height || parseInt(this.getStyle('height'), 10),
-                validator: YAHOO.lang.isNumber,
-                method: function(height) {
-                    height = parseInt(height, 10);
-                    if (height > 0) {
-                        if (this.get('setSize')) {
-                            this.setStyle('height', height + 'px');
-                        }
-                        this._cache.height = height;
-                        this._configs.height.value = height;
-                    }
-                }
-            });
-
-            /**
-            * @attribute minWidth
-            * @description The minimum width of the element
-            * @type Number
-            */
-            this.setAttributeConfig('minWidth', {
-                value: attr.minWidth || 15,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute minHeight
-            * @description The minimum height of the element
-            * @type Number
-            */
-            this.setAttributeConfig('minHeight', {
-                value: attr.minHeight || 15,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute maxWidth
-            * @description The maximum width of the element
-            * @type Number
-            */
-            this.setAttributeConfig('maxWidth', {
-                value: attr.maxWidth || 10000,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute maxHeight
-            * @description The maximum height of the element
-            * @type Number
-            */
-            this.setAttributeConfig('maxHeight', {
-                value: attr.maxHeight || 10000,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute minY
-            * @description The minimum y coord of the element
-            * @type Number
-            */
-            this.setAttributeConfig('minY', {
-                value: attr.minY || false
-            });
-
-            /**
-            * @attribute minX
-            * @description The minimum x coord of the element
-            * @type Number
-            */
-            this.setAttributeConfig('minX', {
-                value: attr.minX || false
-            });
-            /**
-            * @attribute maxY
-            * @description The max y coord of the element
-            * @type Number
-            */
-            this.setAttributeConfig('maxY', {
-                value: attr.maxY || false
-            });
-
-            /**
-            * @attribute maxX
-            * @description The max x coord of the element
-            * @type Number
-            */
-            this.setAttributeConfig('maxX', {
-                value: attr.maxX || false
-            });
-
-            /**
-            * @attribute animate
-            * @description Should be use animation to resize the element (can only be used if we use proxy).
-            * @type Boolean
-            */
-            this.setAttributeConfig('animate', {
-                value: attr.animate || false,
-                validator: function(value) {
-                    var ret = true;
-                    if (!YAHOO.util.Anim) {
-                        ret = false;
-                    }
-                    return ret;
-                }               
-            });
-
-            /**
-            * @attribute animateEasing
-            * @description The Easing to apply to the animation.
-            * @type Object
-            */
-            this.setAttributeConfig('animateEasing', {
-                value: attr.animateEasing || function() {
-                    var easing = false;
-                    if (YAHOO.util.Easing && YAHOO.util.Easing.easeOut) {
-                        easing = YAHOO.util.Easing.easeOut;
-                    }
-                    return easing;
-                }()
-            });
-
-            /**
-            * @attribute animateDuration
-            * @description The Duration to apply to the animation.
-            * @type Number
-            */
-            this.setAttributeConfig('animateDuration', {
-                value: attr.animateDuration || 0.5
-            });
-
-            /**
-            * @attribute proxy
-            * @description Resize a proxy element instead of the real element.
-            * @type Boolean
-            */
-            this.setAttributeConfig('proxy', {
-                value: attr.proxy || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute ratio
-            * @description Maintain the element's ratio when resizing.
-            * @type Boolean
-            */
-            this.setAttributeConfig('ratio', {
-                value: attr.ratio || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute ghost
-            * @description Apply an opacity filter to the element being resized (only works with proxy).
-            * @type Boolean
-            */
-            this.setAttributeConfig('ghost', {
-                value: attr.ghost || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute draggable
-            * @description A convienence method to make the element draggable
-            * @type Boolean
-            */
-            this.setAttributeConfig('draggable', {
-                value: attr.draggable || false,
-                validator: YAHOO.lang.isBoolean,
-                method: function(dd) {
-                    if (dd && this._wrap) {
-                        this._setupDragDrop();
-                    } else {
-                        if (this.dd) {
-                            D.removeClass(this._wrap, this.CSS_DRAG);
-                            this.dd.unreg();
-                        }
-                    }
-                }
-            });
-
-            /**
-            * @attribute hover
-            * @description Only show the handles when they are being moused over.
-            * @type Boolean
-            */
-            this.setAttributeConfig('hover', {
-                value: attr.hover || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute hiddenHandles
-            * @description Don't show the handles, just use the cursor to the user.
-            * @type Boolean
-            */
-            this.setAttributeConfig('hiddenHandles', {
-                value: attr.hiddenHandles || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute knobHandles
-            * @description Use the smaller handles, instead if the full size handles.
-            * @type Boolean
-            */
-            this.setAttributeConfig('knobHandles', {
-                value: attr.knobHandles || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute xTicks
-            * @description The number of x ticks to span the resize to.
-            * @type Number or False
-            */
-            this.setAttributeConfig('xTicks', {
-                value: attr.xTicks || false
-            });
-
-            /**
-            * @attribute yTicks
-            * @description The number of y ticks to span the resize to.
-            * @type Number or False
-            */
-            this.setAttributeConfig('yTicks', {
-                value: attr.yTicks || false
-            });
-
-            /**
-            * @attribute status
-            * @description Show the status (new size) of the resize.
-            * @type Boolean
-            */
-            this.setAttributeConfig('status', {
-                value: attr.status || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute autoRatio
-            * @description Using the shift key during a resize will toggle the ratio config.
-            * @type Boolean
-            */
-            this.setAttributeConfig('autoRatio', {
-                value: attr.autoRatio || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-        },
-        /**
-        * @method destroy
-        * @description Destroys the resize object and all of it's elements & listeners.
-        */        
-        destroy: function() {
-            YAHOO.log('Destroying Resize', 'info', 'Resize');
-            for (var h in this._handles) {
-                if (Lang.hasOwnProperty(this._handles, h)) {
-                    Event.purgeElement(this._handles[h]);
-                    this._handles[h].parentNode.removeChild(this._handles[h]);
-                }
-            }
-            if (this._proxy) {
-                this._proxy.parentNode.removeChild(this._proxy);
-            }
-            if (this._status) {
-                this._status.parentNode.removeChild(this._status);
-            }
-            if (this.dd) {
-                this.dd.unreg();
-                D.removeClass(this._wrap, this.CSS_DRAG);
-            }
-            if (this._wrap != this.get('element')) {
-                this.setStyle('position', '');
-                this.setStyle('top', '');
-                this.setStyle('left', '');
-                this._wrap.parentNode.replaceChild(this.get('element'), this._wrap);
-            }
-            this.removeClass(this.CSS_RESIZE);
-
-            delete YAHOO.util.Resize._instances[this.get('id')];
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                    delete this[i];
-                }
-            }
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the Resize Object.
-        * @return {String}
-        */        
-        toString: function() {
-            if (this.get) {
-                return 'Resize (#' + this.get('id') + ')';
-            }
-            return 'Resize Utility';
-        }
-    });
-
-    YAHOO.util.Resize = Resize;
- 
-/**
-* @event dragEvent
-* @description Fires when the <a href="YAHOO.util.DragDrop.html">YAHOO.util.DragDrop</a> dragEvent is fired for the config option draggable.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event startResize
-* @description Fires when a resize action is started.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event endResize
-* @description Fires when the mouseUp event from the Drag Instance fires.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event resize
-* @description Fires on every element resize (only fires once when used with proxy config setting).
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeResize
-* @description Fires before every element resize after the size calculations, returning false will stop the resize.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event proxyResize
-* @description Fires on every proxy resize (only fires when used with proxy config setting).
-* @type YAHOO.util.CustomEvent
-*/
-
-})();
-
-YAHOO.register("resize", YAHOO.util.Resize, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/resize/resize-min.js b/eclipse.org-common/yui/2.6.0/build/resize/resize-min.js
deleted file mode 100644
index b376006..0000000
--- a/eclipse.org-common/yui/2.6.0/build/resize/resize-min.js
+++ /dev/null
@@ -1,10 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){var E=YAHOO.util.Dom,A=YAHOO.util.Event,C=YAHOO.lang;var B=function(F,D){var G={element:F,attributes:D||{}};B.superclass.constructor.call(this,G.element,G.attributes);};B._instances={};B.getResizeById=function(D){if(B._instances[D]){return B._instances[D];}return false;};YAHOO.extend(B,YAHOO.util.Element,{CSS_RESIZE:"yui-resize",CSS_DRAG:"yui-draggable",CSS_HOVER:"yui-resize-hover",CSS_PROXY:"yui-resize-proxy",CSS_WRAP:"yui-resize-wrap",CSS_KNOB:"yui-resize-knob",CSS_HIDDEN:"yui-resize-hidden",CSS_HANDLE:"yui-resize-handle",CSS_STATUS:"yui-resize-status",CSS_GHOST:"yui-resize-ghost",CSS_RESIZING:"yui-resize-resizing",_resizeEvent:null,dd:null,browser:YAHOO.env.ua,_locked:null,_positioned:null,_dds:null,_wrap:null,_proxy:null,_handles:null,_currentHandle:null,_currentDD:null,_cache:null,_active:null,_createProxy:function(){if(this.get("proxy")){this._proxy=document.createElement("div");this._proxy.className=this.CSS_PROXY;this._proxy.style.height=this.get("element").clientHeight+"px";this._proxy.style.width=this.get("element").clientWidth+"px";this._wrap.parentNode.appendChild(this._proxy);}else{this.set("animate",false);}},_createWrap:function(){this._positioned=false;switch(this.get("element").tagName.toLowerCase()){case"img":case"textarea":case"input":case"iframe":case"select":this.set("wrap",true);break;}if(this.get("wrap")===true){this._wrap=document.createElement("div");this._wrap.id=this.get("element").id+"_wrap";this._wrap.className=this.CSS_WRAP;E.setStyle(this._wrap,"width",this.get("width")+"px");E.setStyle(this._wrap,"height",this.get("height")+"px");E.setStyle(this._wrap,"z-index",this.getStyle("z-index"));this.setStyle("z-index",0);var F=E.getStyle(this.get("element"),"position");E.setStyle(this._wrap,"position",((F=="static")?"relative":F));E.setStyle(this._wrap,"top",E.getStyle(this.get("element"),"top"));E.setStyle(this._wrap,"left",E.getStyle(this.get("element"),"left"));if(E.getStyle(this.get("element"),"position")=="absolute"){this._positioned=true;E.setStyle(this.get("element"),"position","relative");E.setStyle(this.get("element"),"top","0");E.setStyle(this.get("element"),"left","0");}var D=this.get("element").parentNode;D.replaceChild(this._wrap,this.get("element"));this._wrap.appendChild(this.get("element"));}else{this._wrap=this.get("element");if(E.getStyle(this._wrap,"position")=="absolute"){this._positioned=true;}}if(this.get("draggable")){this._setupDragDrop();}if(this.get("hover")){E.addClass(this._wrap,this.CSS_HOVER);}if(this.get("knobHandles")){E.addClass(this._wrap,this.CSS_KNOB);}if(this.get("hiddenHandles")){E.addClass(this._wrap,this.CSS_HIDDEN);}E.addClass(this._wrap,this.CSS_RESIZE);},_setupDragDrop:function(){E.addClass(this._wrap,this.CSS_DRAG);this.dd=new YAHOO.util.DD(this._wrap,this.get("id")+"-resize",{dragOnly:true,useShim:this.get("useShim")});this.dd.on("dragEvent",function(){this.fireEvent("dragEvent",arguments);},this,true);},_createHandles:function(){this._handles={};this._dds={};var G=this.get("handles");for(var F=0;F<G.length;F++){this._handles[G[F]]=document.createElement("div");this._handles[G[F]].id=E.generateId(this._handles[G[F]]);this._handles[G[F]].className=this.CSS_HANDLE+" "+this.CSS_HANDLE+"-"+G[F];var D=document.createElement("div");D.className=this.CSS_HANDLE+"-inner-"+G[F];this._handles[G[F]].appendChild(D);this._wrap.appendChild(this._handles[G[F]]);A.on(this._handles[G[F]],"mouseover",this._handleMouseOver,this,true);A.on(this._handles[G[F]],"mouseout",this._handleMouseOut,this,true);this._dds[G[F]]=new YAHOO.util.DragDrop(this._handles[G[F]],this.get("id")+"-handle-"+G,{useShim:this.get("useShim")});this._dds[G[F]].setPadding(15,15,15,15);this._dds[G[F]].on("startDragEvent",this._handleStartDrag,this._dds[G[F]],this);this._dds[G[F]].on("mouseDownEvent",this._handleMouseDown,this._dds[G[F]],this);}this._status=document.createElement("span");this._status.className=this.CSS_STATUS;document.body.insertBefore(this._status,document.body.firstChild);},_ieSelectFix:function(){return false;},_ieSelectBack:null,_setAutoRatio:function(D){if(this.get("autoRatio")){if(D&&D.shiftKey){this.set("ratio",true);}else{this.set("ratio",this._configs.ratio._initialConfig.value);}}},_handleMouseDown:function(D){if(this._locked){return false;}if(E.getStyle(this._wrap,"position")=="absolute"){this._positioned=true;}if(D){this._setAutoRatio(D);}if(this.browser.ie){this._ieSelectBack=document.body.onselectstart;document.body.onselectstart=this._ieSelectFix;}},_handleMouseOver:function(G){if(this._locked){return false;}E.removeClass(this._wrap,this.CSS_RESIZE);if(this.get("hover")){E.removeClass(this._wrap,this.CSS_HOVER);}var D=A.getTarget(G);if(!E.hasClass(D,this.CSS_HANDLE)){D=D.parentNode;}if(E.hasClass(D,this.CSS_HANDLE)&&!this._active){E.addClass(D,this.CSS_HANDLE+"-active");for(var F in this._handles){if(C.hasOwnProperty(this._handles,F)){if(this._handles[F]==D){E.addClass(D,this.CSS_HANDLE+"-"+F+"-active");break;}}}}E.addClass(this._wrap,this.CSS_RESIZE);},_handleMouseOut:function(G){E.removeClass(this._wrap,this.CSS_RESIZE);if(this.get("hover")&&!this._active){E.addClass(this._wrap,this.CSS_HOVER);}var D=A.getTarget(G);if(!E.hasClass(D,this.CSS_HANDLE)){D=D.parentNode;}if(E.hasClass(D,this.CSS_HANDLE)&&!this._active){E.removeClass(D,this.CSS_HANDLE+"-active");for(var F in this._handles){if(C.hasOwnProperty(this._handles,F)){if(this._handles[F]==D){E.removeClass(D,this.CSS_HANDLE+"-"+F+"-active");break;}}}}E.addClass(this._wrap,this.CSS_RESIZE);},_handleStartDrag:function(G,F){var D=F.getDragEl();if(E.hasClass(D,this.CSS_HANDLE)){if(E.getStyle(this._wrap,"position")=="absolute"){this._positioned=true;}this._active=true;this._currentDD=F;if(this._proxy){this._proxy.style.visibility="visible";this._proxy.style.zIndex="1000";this._proxy.style.height=this.get("element").clientHeight+"px";this._proxy.style.width=this.get("element").clientWidth+"px";}for(var H in this._handles){if(C.hasOwnProperty(this._handles,H)){if(this._handles[H]==D){this._currentHandle=H;
-var I="_handle_for_"+H;E.addClass(D,this.CSS_HANDLE+"-"+H+"-active");F.on("dragEvent",this[I],this,true);F.on("mouseUpEvent",this._handleMouseUp,this,true);break;}}}E.addClass(D,this.CSS_HANDLE+"-active");if(this.get("proxy")){var J=E.getXY(this.get("element"));E.setXY(this._proxy,J);if(this.get("ghost")){this.addClass(this.CSS_GHOST);}}E.addClass(this._wrap,this.CSS_RESIZING);this._setCache();this._updateStatus(this._cache.height,this._cache.width,this._cache.top,this._cache.left);this.fireEvent("startResize",{type:"startresize",target:this});}},_setCache:function(){this._cache.xy=E.getXY(this._wrap);E.setXY(this._wrap,this._cache.xy);this._cache.height=this.get("clientHeight");this._cache.width=this.get("clientWidth");this._cache.start.height=this._cache.height;this._cache.start.width=this._cache.width;this._cache.start.top=this._cache.xy[1];this._cache.start.left=this._cache.xy[0];this._cache.top=this._cache.xy[1];this._cache.left=this._cache.xy[0];this.set("height",this._cache.height,true);this.set("width",this._cache.width,true);},_handleMouseUp:function(F){this._active=false;var G="_handle_for_"+this._currentHandle;this._currentDD.unsubscribe("dragEvent",this[G],this,true);this._currentDD.unsubscribe("mouseUpEvent",this._handleMouseUp,this,true);if(this._proxy){this._proxy.style.visibility="hidden";this._proxy.style.zIndex="-1";if(this.get("setSize")){this.resize(F,this._cache.height,this._cache.width,this._cache.top,this._cache.left,true);}else{this.fireEvent("resize",{ev:"resize",target:this,height:this._cache.height,width:this._cache.width,top:this._cache.top,left:this._cache.left});}if(this.get("ghost")){this.removeClass(this.CSS_GHOST);}}if(this.get("hover")){E.addClass(this._wrap,this.CSS_HOVER);}if(this._status){E.setStyle(this._status,"display","none");}if(this.browser.ie){document.body.onselectstart=this._ieSelectBack;}if(this.browser.ie){E.removeClass(this._wrap,this.CSS_RESIZE);}for(var D in this._handles){if(C.hasOwnProperty(this._handles,D)){E.removeClass(this._handles[D],this.CSS_HANDLE+"-active");}}if(this.get("hover")&&!this._active){E.addClass(this._wrap,this.CSS_HOVER);}E.removeClass(this._wrap,this.CSS_RESIZING);E.removeClass(this._handles[this._currentHandle],this.CSS_HANDLE+"-"+this._currentHandle+"-active");E.removeClass(this._handles[this._currentHandle],this.CSS_HANDLE+"-active");if(this.browser.ie){E.addClass(this._wrap,this.CSS_RESIZE);}this._resizeEvent=null;this._currentHandle=null;if(!this.get("animate")){this.set("height",this._cache.height,true);this.set("width",this._cache.width,true);}this.fireEvent("endResize",{ev:"endResize",target:this,height:this._cache.height,width:this._cache.width,top:this._cache.top,left:this._cache.left});},_setRatio:function(K,N,Q,I){var O=K,G=N;if(this.get("ratio")){var P=this._cache.height,H=this._cache.width,F=parseInt(this.get("height"),10),L=parseInt(this.get("width"),10),M=this.get("maxHeight"),R=this.get("minHeight"),D=this.get("maxWidth"),J=this.get("minWidth");switch(this._currentHandle){case"l":K=F*(N/L);K=Math.min(Math.max(R,K),M);N=L*(K/F);Q=(this._cache.start.top-(-((F-K)/2)));I=(this._cache.start.left-(-((L-N))));break;case"r":K=F*(N/L);K=Math.min(Math.max(R,K),M);N=L*(K/F);Q=(this._cache.start.top-(-((F-K)/2)));break;case"t":N=L*(K/F);K=F*(N/L);I=(this._cache.start.left-(-((L-N)/2)));Q=(this._cache.start.top-(-((F-K))));break;case"b":N=L*(K/F);K=F*(N/L);I=(this._cache.start.left-(-((L-N)/2)));break;case"bl":K=F*(N/L);N=L*(K/F);I=(this._cache.start.left-(-((L-N))));break;case"br":K=F*(N/L);N=L*(K/F);break;case"tl":K=F*(N/L);N=L*(K/F);I=(this._cache.start.left-(-((L-N))));Q=(this._cache.start.top-(-((F-K))));break;case"tr":K=F*(N/L);N=L*(K/F);I=(this._cache.start.left);Q=(this._cache.start.top-(-((F-K))));break;}O=this._checkHeight(K);G=this._checkWidth(N);if((O!=K)||(G!=N)){Q=0;I=0;if(O!=K){G=this._cache.width;}if(G!=N){O=this._cache.height;}}}return[O,G,Q,I];},_updateStatus:function(K,G,J,F){if(this._resizeEvent&&(!C.isString(this._resizeEvent))){if(this.get("status")){E.setStyle(this._status,"display","inline");}K=((K===0)?this._cache.start.height:K);G=((G===0)?this._cache.start.width:G);var I=parseInt(this.get("height"),10),D=parseInt(this.get("width"),10);if(isNaN(I)){I=parseInt(K,10);}if(isNaN(D)){D=parseInt(G,10);}var L=(parseInt(K,10)-I);var H=(parseInt(G,10)-D);this._cache.offsetHeight=L;this._cache.offsetWidth=H;this._status.innerHTML="<strong>"+parseInt(K,10)+" x "+parseInt(G,10)+"</strong><em>"+((L>0)?"+":"")+L+" x "+((H>0)?"+":"")+H+"</em>";E.setXY(this._status,[A.getPageX(this._resizeEvent)+12,A.getPageY(this._resizeEvent)+12]);}},lock:function(D){this._locked=true;if(D&&this.dd){E.removeClass(this._wrap,"yui-draggable");this.dd.lock();}return this;},unlock:function(D){this._locked=false;if(D&&this.dd){E.addClass(this._wrap,"yui-draggable");this.dd.unlock();}return this;},isLocked:function(){return this._locked;},reset:function(){this.resize(null,this._cache.start.height,this._cache.start.width,this._cache.start.top,this._cache.start.left,true);return this;},resize:function(M,J,P,Q,H,F,K){if(this._locked){return false;}this._resizeEvent=M;var G=this._wrap,I=this.get("animate"),O=true;if(this._proxy&&!F){G=this._proxy;I=false;}this._setAutoRatio(M);if(this._positioned){if(this._proxy){Q=this._cache.top-Q;H=this._cache.left-H;}}var L=this._setRatio(J,P,Q,H);J=parseInt(L[0],10);P=parseInt(L[1],10);Q=parseInt(L[2],10);H=parseInt(L[3],10);if(Q==0){Q=E.getY(G);}if(H==0){H=E.getX(G);}if(this._positioned){if(this._proxy&&F){if(!I){G.style.top=this._proxy.style.top;G.style.left=this._proxy.style.left;}else{Q=this._proxy.style.top;H=this._proxy.style.left;}}else{if(!this.get("ratio")&&!this._proxy){Q=this._cache.top+-(Q);H=this._cache.left+-(H);}if(Q){if(this.get("minY")){if(Q<this.get("minY")){Q=this.get("minY");}}if(this.get("maxY")){if(Q>this.get("maxY")){Q=this.get("maxY");}}}if(H){if(this.get("minX")){if(H<this.get("minX")){H=this.get("minX");}}if(this.get("maxX")){if((H+P)>this.get("maxX")){H=(this.get("maxX")-P);
-}}}}}if(!K){var N=this.fireEvent("beforeResize",{ev:"beforeResize",target:this,height:J,width:P,top:Q,left:H});if(N===false){return false;}}this._updateStatus(J,P,Q,H);if(this._positioned){if(this._proxy&&F){}else{if(Q){E.setY(G,Q);this._cache.top=Q;}if(H){E.setX(G,H);this._cache.left=H;}}}if(J){if(!I){O=true;if(this._proxy&&F){if(!this.get("setSize")){O=false;}}if(O){if(this.browser.ie>6){if(J===this._cache.height){J=J+1;}}G.style.height=J+"px";}if((this._proxy&&F)||!this._proxy){if(this._wrap!=this.get("element")){this.get("element").style.height=J+"px";}}}this._cache.height=J;}if(P){this._cache.width=P;if(!I){O=true;if(this._proxy&&F){if(!this.get("setSize")){O=false;}}if(O){G.style.width=P+"px";}if((this._proxy&&F)||!this._proxy){if(this._wrap!=this.get("element")){this.get("element").style.width=P+"px";}}}}if(I){if(YAHOO.util.Anim){var D=new YAHOO.util.Anim(G,{height:{to:this._cache.height},width:{to:this._cache.width}},this.get("animateDuration"),this.get("animateEasing"));if(this._positioned){if(Q){D.attributes.top={to:parseInt(Q,10)};}if(H){D.attributes.left={to:parseInt(H,10)};}}if(this._wrap!=this.get("element")){D.onTween.subscribe(function(){this.get("element").style.height=G.style.height;this.get("element").style.width=G.style.width;},this,true);}D.onComplete.subscribe(function(){this.set("height",J);this.set("width",P);this.fireEvent("resize",{ev:"resize",target:this,height:J,width:P,top:Q,left:H});},this,true);D.animate();}}else{if(this._proxy&&!F){this.fireEvent("proxyResize",{ev:"proxyresize",target:this,height:J,width:P,top:Q,left:H});}else{this.fireEvent("resize",{ev:"resize",target:this,height:J,width:P,top:Q,left:H});}}return this;},_handle_for_br:function(F){var G=this._setWidth(F.e);var D=this._setHeight(F.e);this.resize(F.e,(D+1),G,0,0);},_handle_for_bl:function(G){var H=this._setWidth(G.e,true);var F=this._setHeight(G.e);var D=(H-this._cache.width);this.resize(G.e,F,H,0,D);},_handle_for_tl:function(G){var I=this._setWidth(G.e,true);var F=this._setHeight(G.e,true);var H=(F-this._cache.height);var D=(I-this._cache.width);this.resize(G.e,F,I,H,D);},_handle_for_tr:function(F){var H=this._setWidth(F.e);var D=this._setHeight(F.e,true);var G=(D-this._cache.height);this.resize(F.e,D,H,G,0);},_handle_for_r:function(D){this._dds.r.setYConstraint(0,0);var F=this._setWidth(D.e);this.resize(D.e,0,F,0,0);},_handle_for_l:function(F){this._dds.l.setYConstraint(0,0);var G=this._setWidth(F.e,true);var D=(G-this._cache.width);this.resize(F.e,0,G,0,D);},_handle_for_b:function(F){this._dds.b.setXConstraint(0,0);var D=this._setHeight(F.e);this.resize(F.e,D,0,0,0);},_handle_for_t:function(F){this._dds.t.setXConstraint(0,0);var D=this._setHeight(F.e,true);var G=(D-this._cache.height);this.resize(F.e,D,0,G,0);},_setWidth:function(H,J){var I=this._cache.xy[0],G=this._cache.width,D=A.getPageX(H),F=(D-I);if(J){F=(I-D)+parseInt(this.get("width"),10);}F=this._snapTick(F,this.get("yTicks"));F=this._checkWidth(F);return F;},_checkWidth:function(D){if(this.get("minWidth")){if(D<=this.get("minWidth")){D=this.get("minWidth");}}if(this.get("maxWidth")){if(D>=this.get("maxWidth")){D=this.get("maxWidth");}}return D;},_checkHeight:function(D){if(this.get("minHeight")){if(D<=this.get("minHeight")){D=this.get("minHeight");}}if(this.get("maxHeight")){if(D>=this.get("maxHeight")){D=this.get("maxHeight");}}return D;},_setHeight:function(G,I){var H=this._cache.xy[1],F=this._cache.height,J=A.getPageY(G),D=(J-H);if(I){D=(H-J)+parseInt(this.get("height"),10);}D=this._snapTick(D,this.get("xTicks"));D=this._checkHeight(D);return D;},_snapTick:function(G,F){if(!G||!F){return G;}var H=G;var D=G%F;if(D>0){if(D>(F/2)){H=G+(F-D);}else{H=G-D;}}return H;},init:function(F,D){this._locked=false;this._cache={xy:[],height:0,width:0,top:0,left:0,offsetHeight:0,offsetWidth:0,start:{height:0,width:0,top:0,left:0}};B.superclass.init.call(this,F,D);this.set("setSize",this.get("setSize"));if(D.height){this.set("height",parseInt(D.height,10));}if(D.width){this.set("width",parseInt(D.width,10));}var G=F;if(!C.isString(G)){G=E.generateId(G);}B._instances[G]=this;this._active=false;this._createWrap();this._createProxy();this._createHandles();},getProxyEl:function(){return this._proxy;},getWrapEl:function(){return this._wrap;},getStatusEl:function(){return this._status;},getActiveHandleEl:function(){return this._handles[this._currentHandle];},isActive:function(){return((this._active)?true:false);},initAttributes:function(D){B.superclass.initAttributes.call(this,D);this.setAttributeConfig("useShim",{value:((D.useShim===true)?true:false),validator:YAHOO.lang.isBoolean,method:function(F){for(var G in this._dds){if(C.hasOwnProperty(this._dds,G)){this._dds[G].useShim=F;}}if(this.dd){this.dd.useShim=F;}}});this.setAttributeConfig("setSize",{value:((D.setSize===false)?false:true),validator:YAHOO.lang.isBoolean});this.setAttributeConfig("wrap",{writeOnce:true,validator:YAHOO.lang.isBoolean,value:D.wrap||false});this.setAttributeConfig("handles",{writeOnce:true,value:D.handles||["r","b","br"],validator:function(F){if(C.isString(F)&&F.toLowerCase()=="all"){F=["t","b","r","l","bl","br","tl","tr"];}if(!C.isArray(F)){F=F.replace(/, /g,",");F=F.split(",");}this._configs.handles.value=F;}});this.setAttributeConfig("width",{value:D.width||parseInt(this.getStyle("width"),10),validator:YAHOO.lang.isNumber,method:function(F){F=parseInt(F,10);if(F>0){if(this.get("setSize")){this.setStyle("width",F+"px");}this._cache.width=F;this._configs.width.value=F;}}});this.setAttributeConfig("height",{value:D.height||parseInt(this.getStyle("height"),10),validator:YAHOO.lang.isNumber,method:function(F){F=parseInt(F,10);if(F>0){if(this.get("setSize")){this.setStyle("height",F+"px");}this._cache.height=F;this._configs.height.value=F;}}});this.setAttributeConfig("minWidth",{value:D.minWidth||15,validator:YAHOO.lang.isNumber});this.setAttributeConfig("minHeight",{value:D.minHeight||15,validator:YAHOO.lang.isNumber});this.setAttributeConfig("maxWidth",{value:D.maxWidth||10000,validator:YAHOO.lang.isNumber});
-this.setAttributeConfig("maxHeight",{value:D.maxHeight||10000,validator:YAHOO.lang.isNumber});this.setAttributeConfig("minY",{value:D.minY||false});this.setAttributeConfig("minX",{value:D.minX||false});this.setAttributeConfig("maxY",{value:D.maxY||false});this.setAttributeConfig("maxX",{value:D.maxX||false});this.setAttributeConfig("animate",{value:D.animate||false,validator:function(G){var F=true;if(!YAHOO.util.Anim){F=false;}return F;}});this.setAttributeConfig("animateEasing",{value:D.animateEasing||function(){var F=false;if(YAHOO.util.Easing&&YAHOO.util.Easing.easeOut){F=YAHOO.util.Easing.easeOut;}return F;}()});this.setAttributeConfig("animateDuration",{value:D.animateDuration||0.5});this.setAttributeConfig("proxy",{value:D.proxy||false,validator:YAHOO.lang.isBoolean});this.setAttributeConfig("ratio",{value:D.ratio||false,validator:YAHOO.lang.isBoolean});this.setAttributeConfig("ghost",{value:D.ghost||false,validator:YAHOO.lang.isBoolean});this.setAttributeConfig("draggable",{value:D.draggable||false,validator:YAHOO.lang.isBoolean,method:function(F){if(F&&this._wrap){this._setupDragDrop();}else{if(this.dd){E.removeClass(this._wrap,this.CSS_DRAG);this.dd.unreg();}}}});this.setAttributeConfig("hover",{value:D.hover||false,validator:YAHOO.lang.isBoolean});this.setAttributeConfig("hiddenHandles",{value:D.hiddenHandles||false,validator:YAHOO.lang.isBoolean});this.setAttributeConfig("knobHandles",{value:D.knobHandles||false,validator:YAHOO.lang.isBoolean});this.setAttributeConfig("xTicks",{value:D.xTicks||false});this.setAttributeConfig("yTicks",{value:D.yTicks||false});this.setAttributeConfig("status",{value:D.status||false,validator:YAHOO.lang.isBoolean});this.setAttributeConfig("autoRatio",{value:D.autoRatio||false,validator:YAHOO.lang.isBoolean});},destroy:function(){for(var F in this._handles){if(C.hasOwnProperty(this._handles,F)){A.purgeElement(this._handles[F]);this._handles[F].parentNode.removeChild(this._handles[F]);}}if(this._proxy){this._proxy.parentNode.removeChild(this._proxy);}if(this._status){this._status.parentNode.removeChild(this._status);}if(this.dd){this.dd.unreg();E.removeClass(this._wrap,this.CSS_DRAG);}if(this._wrap!=this.get("element")){this.setStyle("position","");this.setStyle("top","");this.setStyle("left","");this._wrap.parentNode.replaceChild(this.get("element"),this._wrap);}this.removeClass(this.CSS_RESIZE);delete YAHOO.util.Resize._instances[this.get("id")];for(var D in this){if(C.hasOwnProperty(this,D)){this[D]=null;delete this[D];}}},toString:function(){if(this.get){return"Resize (#"+this.get("id")+")";}return"Resize Utility";}});YAHOO.util.Resize=B;})();YAHOO.register("resize",YAHOO.util.Resize,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/resize/resize.js b/eclipse.org-common/yui/2.6.0/build/resize/resize.js
deleted file mode 100644
index 08b3b70..0000000
--- a/eclipse.org-common/yui/2.6.0/build/resize/resize.js
+++ /dev/null
@@ -1,1680 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * @description <p>Makes an element resizable</p>
- * @namespace YAHOO.util
- * @requires yahoo, dom, dragdrop, element, event
- * @optional animation
- * @module resize
- * @beta
- */
-(function() {
-var D = YAHOO.util.Dom,
-    Event = YAHOO.util.Event,
-    Lang = YAHOO.lang;
-
-    /**
-     * @constructor
-     * @class Resize
-     * @extends YAHOO.util.Element
-     * @description <p>Makes an element resizable</p>
-     * @param {String/HTMLElement} el The element to make resizable.
-     * @param {Object} attrs Object liternal containing configuration parameters.
-    */
-
-    var Resize = function(el, config) {
-        var oConfig = {
-            element: el,
-            attributes: config || {}
-        };
-
-        Resize.superclass.constructor.call(this, oConfig.element, oConfig.attributes);    
-    };
-
-    /**
-    * @private
-    * @static
-    * @property _instances
-    * @description Internal hash table for all resize instances
-    * @type Object
-    */ 
-    Resize._instances = {};
-    /**
-    * @static
-    * @method getResizeById 
-    * @description Get's a resize object by the HTML id of the element associated with the Resize object.
-    * @return {Object} The Resize Object
-    */ 
-    Resize.getResizeById = function(id) {
-        if (Resize._instances[id]) {
-            return Resize._instances[id];
-        }
-        return false;
-    };
-
-    YAHOO.extend(Resize, YAHOO.util.Element, {
-        /**
-        * @private
-        * @property CSS_RESIZE
-        * @description Base CSS class name
-        * @type String
-        */ 
-        CSS_RESIZE: 'yui-resize',
-        /**
-        * @private
-        * @property CSS_DRAG
-        * @description Class name added when dragging is enabled
-        * @type String
-        */ 
-        CSS_DRAG: 'yui-draggable',
-        /**
-        * @private
-        * @property CSS_HOVER
-        * @description Class name used for hover only handles
-        * @type String
-        */ 
-        CSS_HOVER: 'yui-resize-hover',
-        /**
-        * @private
-        * @property CSS_PROXY
-        * @description Class name given to the proxy element
-        * @type String
-        */ 
-        CSS_PROXY: 'yui-resize-proxy',
-        /**
-        * @private
-        * @property CSS_WRAP
-        * @description Class name given to the wrap element
-        * @type String
-        */ 
-        CSS_WRAP: 'yui-resize-wrap',
-        /**
-        * @private
-        * @property CSS_KNOB
-        * @description Class name used to make the knob style handles
-        * @type String
-        */ 
-        CSS_KNOB: 'yui-resize-knob',
-        /**
-        * @private
-        * @property CSS_HIDDEN
-        * @description Class name given to the wrap element to make all handles hidden
-        * @type String
-        */ 
-        CSS_HIDDEN: 'yui-resize-hidden',
-        /**
-        * @private
-        * @property CSS_HANDLE
-        * @description Class name given to all handles, used as a base for single handle names as well.. Handle "t" will get this.CSS_HANDLE + '-t' as well as this.CSS_HANDLE
-        * @type String
-        */ 
-        CSS_HANDLE: 'yui-resize-handle',
-        /**
-        * @private
-        * @property CSS_STATUS
-        * @description Class name given to the status element
-        * @type String
-        */ 
-        CSS_STATUS: 'yui-resize-status',
-        /**
-        * @private
-        * @property CSS_GHOST
-        * @description Class name given to the wrap element when the ghost property is active
-        * @type String
-        */ 
-        CSS_GHOST: 'yui-resize-ghost',
-        /**
-        * @private
-        * @property CSS_RESIZING
-        * @description Class name given to the wrap element when a resize action is taking place.
-        * @type String
-        */ 
-        CSS_RESIZING: 'yui-resize-resizing',
-        /**
-        * @private
-        * @property _resizeEvent
-        * @description The mouse event used to resize with
-        * @type Event
-        */ 
-        _resizeEvent: null,
-        /**
-        * @private
-        * @property dd
-        * @description The <a href="YAHOO.util.DragDrop.html">YAHOO.util.DragDrop</a> instance used if draggable is true
-        * @type Object
-        */ 
-        dd: null,
-        /** 
-        * @private
-        * @property browser
-        * @description A copy of the YAHOO.env.ua property
-        * @type Object
-        */
-        browser: YAHOO.env.ua,
-        /** 
-        * @private
-        * @property _locked
-        * @description A flag to show if the resize is locked
-        * @type Boolean
-        */
-        _locked: null,
-        /** 
-        * @private
-        * @property _positioned
-        * @description A flag to show if the element is absolutely positioned
-        * @type Boolean
-        */
-        _positioned: null,
-        /** 
-        * @private
-        * @property _dds
-        * @description An Object containing references to all of the <a href="YAHOO.util.DragDrop.html">YAHOO.util.DragDrop</a> instances used for the resize handles
-        * @type Object
-        */
-        _dds: null,
-        /** 
-        * @private
-        * @property _wrap
-        * @description The HTML reference of the element wrapper
-        * @type HTMLElement
-        */
-        _wrap: null,
-        /** 
-        * @private
-        * @property _proxy
-        * @description The HTML reference of the element proxy
-        * @type HTMLElement
-        */
-        _proxy: null,
-        /** 
-        * @private
-        * @property _handles
-        * @description An object containing references to all of the resize handles.
-        * @type Object
-        */
-        _handles: null,
-        /** 
-        * @private
-        * @property _currentHandle
-        * @description The string identifier of the currently active handle. e.g. 'r', 'br', 'tl'
-        * @type String
-        */
-        _currentHandle: null,
-        /** 
-        * @private
-        * @property _currentDD
-        * @description A link to the currently active DD object
-        * @type Object
-        */
-        _currentDD: null,
-        /** 
-        * @private
-        * @property _cache
-        * @description An lookup table containing key information for the element being resized. e.g. height, width, x position, y position, etc..
-        * @type Object
-        */
-        _cache: null,
-        /** 
-        * @private
-        * @property _active
-        * @description Flag to show if the resize is active. Used for events.
-        * @type Boolean
-        */
-        _active: null,
-        /** 
-        * @private
-        * @method _createProxy
-        * @description Creates the proxy element if the proxy config is true
-        */
-        _createProxy: function() {
-            if (this.get('proxy')) {
-                this._proxy = document.createElement('div');
-                this._proxy.className = this.CSS_PROXY;
-                this._proxy.style.height = this.get('element').clientHeight + 'px';
-                this._proxy.style.width = this.get('element').clientWidth + 'px';
-                this._wrap.parentNode.appendChild(this._proxy);
-            } else {
-                this.set('animate', false);
-            }
-        },
-        /** 
-        * @private
-        * @method _createWrap
-        * @description Creates the wrap element if the wrap config is true. It will auto wrap the following element types: img, textarea, input, iframe, select
-        */
-        _createWrap: function() {
-            this._positioned = false;
-            //Force wrap for elements that can't have children 
-            switch (this.get('element').tagName.toLowerCase()) {
-                case 'img':
-                case 'textarea':
-                case 'input':
-                case 'iframe':
-                case 'select':
-                    this.set('wrap', true);
-                    break;
-            }
-            if (this.get('wrap') === true) {
-                this._wrap = document.createElement('div');
-                this._wrap.id = this.get('element').id + '_wrap';
-                this._wrap.className = this.CSS_WRAP;
-                D.setStyle(this._wrap, 'width', this.get('width') + 'px');
-                D.setStyle(this._wrap, 'height', this.get('height') + 'px');
-                D.setStyle(this._wrap, 'z-index', this.getStyle('z-index'));
-                this.setStyle('z-index', 0);
-                var pos = D.getStyle(this.get('element'), 'position');
-                D.setStyle(this._wrap, 'position', ((pos == 'static') ? 'relative' : pos));
-                D.setStyle(this._wrap, 'top', D.getStyle(this.get('element'), 'top'));
-                D.setStyle(this._wrap, 'left', D.getStyle(this.get('element'), 'left'));
-                if (D.getStyle(this.get('element'), 'position') == 'absolute') {
-                    this._positioned = true;
-                    D.setStyle(this.get('element'), 'position', 'relative');
-                    D.setStyle(this.get('element'), 'top', '0');
-                    D.setStyle(this.get('element'), 'left', '0');
-                }
-                var par = this.get('element').parentNode;
-                par.replaceChild(this._wrap, this.get('element'));
-                this._wrap.appendChild(this.get('element'));
-            } else {
-                this._wrap = this.get('element');
-                if (D.getStyle(this._wrap, 'position') == 'absolute') {
-                    this._positioned = true;
-                }
-            }
-            if (this.get('draggable')) {
-                this._setupDragDrop();
-            }
-            if (this.get('hover')) {
-                D.addClass(this._wrap, this.CSS_HOVER);
-            }
-            if (this.get('knobHandles')) {
-                D.addClass(this._wrap, this.CSS_KNOB);
-            }
-            if (this.get('hiddenHandles')) {
-                D.addClass(this._wrap, this.CSS_HIDDEN);
-            }
-            D.addClass(this._wrap, this.CSS_RESIZE);
-        },
-        /** 
-        * @private
-        * @method _setupDragDrop
-        * @description Setup the <a href="YAHOO.util.DragDrop.html">YAHOO.util.DragDrop</a> instance on the element
-        */
-        _setupDragDrop: function() {
-            D.addClass(this._wrap, this.CSS_DRAG);
-            this.dd = new YAHOO.util.DD(this._wrap, this.get('id') + '-resize', { dragOnly: true, useShim: this.get('useShim') });
-            this.dd.on('dragEvent', function() {
-                this.fireEvent('dragEvent', arguments);
-            }, this, true);
-        },
-        /** 
-        * @private
-        * @method _createHandles
-        * @description Creates the handles as specified in the config
-        */
-        _createHandles: function() {
-            this._handles = {};
-            this._dds = {};
-            var h = this.get('handles');
-            for (var i = 0; i < h.length; i++) {
-                this._handles[h[i]] = document.createElement('div');
-                this._handles[h[i]].id = D.generateId(this._handles[h[i]]);
-                this._handles[h[i]].className = this.CSS_HANDLE + ' ' + this.CSS_HANDLE + '-' + h[i];
-                var k = document.createElement('div');
-                k.className = this.CSS_HANDLE + '-inner-' + h[i];
-                this._handles[h[i]].appendChild(k);
-                this._wrap.appendChild(this._handles[h[i]]);
-                Event.on(this._handles[h[i]], 'mouseover', this._handleMouseOver, this, true);
-                Event.on(this._handles[h[i]], 'mouseout', this._handleMouseOut, this, true);
-                this._dds[h[i]] = new YAHOO.util.DragDrop(this._handles[h[i]], this.get('id') + '-handle-' + h, { useShim: this.get('useShim') });
-                this._dds[h[i]].setPadding(15, 15, 15, 15);
-                this._dds[h[i]].on('startDragEvent', this._handleStartDrag, this._dds[h[i]], this);
-                this._dds[h[i]].on('mouseDownEvent', this._handleMouseDown, this._dds[h[i]], this);
-            }
-            this._status = document.createElement('span');
-            this._status.className = this.CSS_STATUS;
-            document.body.insertBefore(this._status, document.body.firstChild);
-        },
-        /** 
-        * @private
-        * @method _ieSelectFix
-        * @description The function we use as the onselectstart handler when we start a drag in Internet Explorer
-        */
-        _ieSelectFix: function() {
-            return false;
-        },
-        /** 
-        * @private
-        * @property _ieSelectBack
-        * @description We will hold a copy of the current "onselectstart" method on this property, and reset it after we are done using it.
-        */
-        _ieSelectBack: null,
-        /** 
-        * @private
-        * @method _setAutoRatio
-        * @param {Event} ev A mouse event.
-        * @description This method checks to see if the "autoRatio" config is set. If it is, we will check to see if the "Shift Key" is pressed. If so, we will set the config ratio to true.
-        */
-        _setAutoRatio: function(ev) {
-            if (this.get('autoRatio')) {
-                if (ev && ev.shiftKey) {
-                    //Shift Pressed
-                    this.set('ratio', true);
-                } else {
-                    this.set('ratio', this._configs.ratio._initialConfig.value);
-                }
-            }
-        },
-        /** 
-        * @private
-        * @method _handleMouseDown
-        * @param {Event} ev A mouse event.
-        * @description This method preps the autoRatio on MouseDown.
-        */
-        _handleMouseDown: function(ev) {
-            if (this._locked) {
-                return false;
-            }
-            if (D.getStyle(this._wrap, 'position') == 'absolute') {
-                this._positioned = true;
-            }
-            if (ev) {
-                this._setAutoRatio(ev);
-            }
-            if (this.browser.ie) {
-                this._ieSelectBack = document.body.onselectstart;
-                document.body.onselectstart = this._ieSelectFix;
-            }
-        },
-        /** 
-        * @private
-        * @method _handleMouseOver
-        * @param {Event} ev A mouse event.
-        * @description Adds CSS class names to the handles
-        */
-        _handleMouseOver: function(ev) {
-            if (this._locked) {
-                return false;
-            }
-            //Internet Explorer needs this
-            D.removeClass(this._wrap, this.CSS_RESIZE);
-            if (this.get('hover')) {
-                D.removeClass(this._wrap, this.CSS_HOVER);
-            }
-            var tar = Event.getTarget(ev);
-            if (!D.hasClass(tar, this.CSS_HANDLE)) {
-                tar = tar.parentNode;
-            }
-            if (D.hasClass(tar, this.CSS_HANDLE) && !this._active) {
-                D.addClass(tar, this.CSS_HANDLE + '-active');
-                for (var i in this._handles) {
-                    if (Lang.hasOwnProperty(this._handles, i)) {
-                        if (this._handles[i] == tar) {
-                            D.addClass(tar, this.CSS_HANDLE + '-' + i + '-active');
-                            break;
-                        }
-                    }
-                }
-            }
-
-            //Internet Explorer needs this
-            D.addClass(this._wrap, this.CSS_RESIZE);
-        },
-        /** 
-        * @private
-        * @method _handleMouseOut
-        * @param {Event} ev A mouse event.
-        * @description Removes CSS class names to the handles
-        */
-        _handleMouseOut: function(ev) {
-            //Internet Explorer needs this
-            D.removeClass(this._wrap, this.CSS_RESIZE);
-            if (this.get('hover') && !this._active) {
-                D.addClass(this._wrap, this.CSS_HOVER);
-            }
-            var tar = Event.getTarget(ev);
-            if (!D.hasClass(tar, this.CSS_HANDLE)) {
-                tar = tar.parentNode;
-            }
-            if (D.hasClass(tar, this.CSS_HANDLE) && !this._active) {
-                D.removeClass(tar, this.CSS_HANDLE + '-active');
-                for (var i in this._handles) {
-                    if (Lang.hasOwnProperty(this._handles, i)) {
-                        if (this._handles[i] == tar) {
-                            D.removeClass(tar, this.CSS_HANDLE + '-' + i + '-active');
-                            break;
-                        }
-                    }
-                }
-            }
-            //Internet Explorer needs this
-            D.addClass(this._wrap, this.CSS_RESIZE);
-        },
-        /** 
-        * @private
-        * @method _handleStartDrag
-        * @param {Object} args The args passed from the CustomEvent.
-        * @param {Object} dd The <a href="YAHOO.util.DragDrop.html">YAHOO.util.DragDrop</a> object we are working with.
-        * @description Resizes the proxy, sets up the <a href="YAHOO.util.DragDrop.html">YAHOO.util.DragDrop</a> handlers, updates the status div and preps the cache
-        */
-        _handleStartDrag: function(args, dd) {
-            var tar = dd.getDragEl();
-            if (D.hasClass(tar, this.CSS_HANDLE)) {
-                if (D.getStyle(this._wrap, 'position') == 'absolute') {
-                    this._positioned = true;
-                }
-                this._active = true;
-                this._currentDD = dd;
-                if (this._proxy) {
-                    this._proxy.style.visibility = 'visible';
-                    this._proxy.style.zIndex = '1000';
-                    this._proxy.style.height = this.get('element').clientHeight + 'px';
-                    this._proxy.style.width = this.get('element').clientWidth + 'px';
-                }
-
-                for (var i in this._handles) {
-                    if (Lang.hasOwnProperty(this._handles, i)) {
-                        if (this._handles[i] == tar) {
-                            this._currentHandle = i;
-                            var handle = '_handle_for_' + i;
-                            D.addClass(tar, this.CSS_HANDLE + '-' + i + '-active');
-                            dd.on('dragEvent', this[handle], this, true);
-                            dd.on('mouseUpEvent', this._handleMouseUp, this, true);
-                            break;
-                        }
-                    }
-                }
-
-
-                D.addClass(tar, this.CSS_HANDLE + '-active');
-
-                if (this.get('proxy')) {
-                    var xy = D.getXY(this.get('element'));
-                    D.setXY(this._proxy, xy);
-                    if (this.get('ghost')) {
-                        this.addClass(this.CSS_GHOST);
-                    }
-                }
-                D.addClass(this._wrap, this.CSS_RESIZING);
-                this._setCache();
-                this._updateStatus(this._cache.height, this._cache.width, this._cache.top, this._cache.left);
-                this.fireEvent('startResize', { type: 'startresize', target: this});
-            }
-        },
-        /** 
-        * @private
-        * @method _setCache
-        * @description Sets up the this._cache hash table.
-        */
-        _setCache: function() {
-            this._cache.xy = D.getXY(this._wrap);
-            D.setXY(this._wrap, this._cache.xy);
-            this._cache.height = this.get('clientHeight');
-            this._cache.width = this.get('clientWidth');
-            this._cache.start.height = this._cache.height;
-            this._cache.start.width = this._cache.width;
-            this._cache.start.top = this._cache.xy[1];
-            this._cache.start.left = this._cache.xy[0];
-            this._cache.top = this._cache.xy[1];
-            this._cache.left = this._cache.xy[0];
-            this.set('height', this._cache.height, true);
-            this.set('width', this._cache.width, true);
-        },
-        /** 
-        * @private
-        * @method _handleMouseUp
-        * @param {Event} ev A mouse event.
-        * @description Cleans up listeners, hides proxy element and removes class names.
-        */
-        _handleMouseUp: function(ev) {
-            this._active = false;
-
-            var handle = '_handle_for_' + this._currentHandle;
-            this._currentDD.unsubscribe('dragEvent', this[handle], this, true);
-            this._currentDD.unsubscribe('mouseUpEvent', this._handleMouseUp, this, true);
-
-            if (this._proxy) {
-                this._proxy.style.visibility = 'hidden';
-                this._proxy.style.zIndex = '-1';
-                if (this.get('setSize')) {
-                    this.resize(ev, this._cache.height, this._cache.width, this._cache.top, this._cache.left, true);
-                } else {
-                    this.fireEvent('resize', { ev: 'resize', target: this, height: this._cache.height, width: this._cache.width, top: this._cache.top, left: this._cache.left });
-                }
-
-                if (this.get('ghost')) {
-                    this.removeClass(this.CSS_GHOST);
-                }
-            }
-
-            if (this.get('hover')) {
-                D.addClass(this._wrap, this.CSS_HOVER);
-            }
-            if (this._status) {
-                D.setStyle(this._status, 'display', 'none');
-            }
-            if (this.browser.ie) {
-                document.body.onselectstart = this._ieSelectBack;
-            }
-
-            if (this.browser.ie) {
-                D.removeClass(this._wrap, this.CSS_RESIZE);
-            }
-
-            for (var i in this._handles) {
-                if (Lang.hasOwnProperty(this._handles, i)) {
-                    D.removeClass(this._handles[i], this.CSS_HANDLE + '-active');
-                }
-            }
-            if (this.get('hover') && !this._active) {
-                D.addClass(this._wrap, this.CSS_HOVER);
-            }
-            D.removeClass(this._wrap, this.CSS_RESIZING);
-
-            D.removeClass(this._handles[this._currentHandle], this.CSS_HANDLE + '-' + this._currentHandle + '-active');
-            D.removeClass(this._handles[this._currentHandle], this.CSS_HANDLE + '-active');
-
-            if (this.browser.ie) {
-                D.addClass(this._wrap, this.CSS_RESIZE);
-            }
-
-            this._resizeEvent = null;
-            this._currentHandle = null;
-            
-            if (!this.get('animate')) {
-                this.set('height', this._cache.height, true);
-                this.set('width', this._cache.width, true);
-            }
-
-            this.fireEvent('endResize', { ev: 'endResize', target: this, height: this._cache.height, width: this._cache.width, top: this._cache.top, left: this._cache.left });
-        },
-        /** 
-        * @private
-        * @method _setRatio
-        * @param {Number} h The height offset.
-        * @param {Number} w The with offset.
-        * @param {Number} t The top offset.
-        * @param {Number} l The left offset.
-        * @description Using the Height, Width, Top & Left, it recalcuates them based on the original element size.
-        * @return {Array} The new Height, Width, Top & Left settings
-        */
-        _setRatio: function(h, w, t, l) {
-            var oh = h, ow = w;
-            if (this.get('ratio')) {
-                var orgH = this._cache.height,
-                    orgW = this._cache.width,
-                    nh = parseInt(this.get('height'), 10),
-                    nw = parseInt(this.get('width'), 10),
-                    maxH = this.get('maxHeight'),
-                    minH = this.get('minHeight'),
-                    maxW = this.get('maxWidth'),
-                    minW = this.get('minWidth');
-
-                switch (this._currentHandle) {
-                    case 'l':
-                        h = nh * (w / nw);
-                        h = Math.min(Math.max(minH, h), maxH);                        
-                        w = nw * (h / nh);
-                        t = (this._cache.start.top - (-((nh - h) / 2)));
-                        l = (this._cache.start.left - (-((nw - w))));
-                        break;
-                    case 'r':
-                        h = nh * (w / nw);
-                        h = Math.min(Math.max(minH, h), maxH);                        
-                        w = nw * (h / nh);
-                        t = (this._cache.start.top - (-((nh - h) / 2)));
-                        break;
-                    case 't':
-                        w = nw * (h / nh);
-                        h = nh * (w / nw);
-                        l = (this._cache.start.left - (-((nw - w) / 2)));
-                        t = (this._cache.start.top - (-((nh - h))));
-                        break;
-                    case 'b':
-                        w = nw * (h / nh);
-                        h = nh * (w / nw);
-                        l = (this._cache.start.left - (-((nw - w) / 2)));
-                        break;
-                    case 'bl':
-                        h = nh * (w / nw);
-                        w = nw * (h / nh);
-                        l = (this._cache.start.left - (-((nw - w))));
-                        break;
-                    case 'br':
-                        h = nh * (w / nw);
-                        w = nw * (h / nh);
-                        break;
-                    case 'tl':
-                        h = nh * (w / nw);
-                        w = nw * (h / nh);
-                        l = (this._cache.start.left - (-((nw - w))));
-                        t = (this._cache.start.top - (-((nh - h))));
-                        break;
-                    case 'tr':
-                        h = nh * (w / nw);
-                        w = nw * (h / nh);
-                        l = (this._cache.start.left);
-                        t = (this._cache.start.top - (-((nh - h))));
-                        break;
-                }
-                oh = this._checkHeight(h);
-                ow = this._checkWidth(w);
-                if ((oh != h) || (ow != w)) {
-                    t = 0;
-                    l = 0;
-                    if (oh != h) {
-                        ow = this._cache.width;
-                    }
-                    if (ow != w) {
-                        oh = this._cache.height;
-                    }
-                }
-            }
-            return [oh, ow, t, l];
-        },
-        /** 
-        * @private
-        * @method _updateStatus
-        * @param {Number} h The new height setting.
-        * @param {Number} w The new width setting.
-        * @param {Number} t The new top setting.
-        * @param {Number} l The new left setting.
-        * @description Using the Height, Width, Top & Left, it updates the status element with the elements sizes.
-        */
-        _updateStatus: function(h, w, t, l) {
-            if (this._resizeEvent && (!Lang.isString(this._resizeEvent))) {
-                if (this.get('status')) {
-                    D.setStyle(this._status, 'display', 'inline');
-                }
-                h = ((h === 0) ? this._cache.start.height : h);
-                w = ((w === 0) ? this._cache.start.width : w);
-                var h1 = parseInt(this.get('height'), 10),
-                    w1 = parseInt(this.get('width'), 10);
-                
-                if (isNaN(h1)) {
-                    h1 = parseInt(h, 10);
-                }
-                if (isNaN(w1)) {
-                    w1 = parseInt(w, 10);
-                }
-                var diffH = (parseInt(h, 10) - h1);
-                var diffW = (parseInt(w, 10) - w1);
-                this._cache.offsetHeight = diffH;
-                this._cache.offsetWidth = diffW;
-                this._status.innerHTML = '<strong>' + parseInt(h, 10) + ' x ' + parseInt(w, 10) + '</strong><em>' + ((diffH > 0) ? '+' : '') + diffH + ' x ' + ((diffW > 0) ? '+' : '') + diffW + '</em>';
-                D.setXY(this._status, [Event.getPageX(this._resizeEvent) + 12, Event.getPageY(this._resizeEvent) + 12]);
-            }
-        },
-        /** 
-        * @method lock
-        * @description Lock the resize so it can't be resized
-        * @param {Boolean} dd If the draggable config is set, lock it too
-        * @return {<a href="YAHOO.util.Resize.html">YAHOO.util.Resize</a>} The Resize instance
-        */
-        lock: function(dd) {
-            this._locked = true;
-            if (dd && this.dd) {
-                D.removeClass(this._wrap, 'yui-draggable');
-                this.dd.lock();
-            }
-            return this;
-        },
-        /** 
-        * @method unlock
-        * @description Unlock the resize so it can be resized
-        * @param {Boolean} dd If the draggable config is set, unlock it too
-        * @return {<a href="YAHOO.util.Resize.html">YAHOO.util.Resize</a>} The Resize instance
-        */
-        unlock: function(dd) {
-            this._locked = false;
-            if (dd && this.dd) {
-                D.addClass(this._wrap, 'yui-draggable');
-                this.dd.unlock();
-            }
-            return this;
-        },
-        /** 
-        * @method isLocked
-        * @description Check the locked status of the resize instance
-        * @return {Boolean}
-        */
-        isLocked: function() {
-            return this._locked;
-        },
-        /** 
-        * @method reset
-        * @description Resets the element to is start state.
-        * @return {<a href="YAHOO.util.Resize.html">YAHOO.util.Resize</a>} The Resize instance
-        */
-        reset: function() {
-            this.resize(null, this._cache.start.height, this._cache.start.width, this._cache.start.top, this._cache.start.left, true);
-            return this;
-        },
-        /** 
-        * @private
-        * @method resize
-        * @param {Event} ev The mouse event.
-        * @param {Number} h The new height setting.
-        * @param {Number} w The new width setting.
-        * @param {Number} t The new top setting.
-        * @param {Number} l The new left setting.
-        * @param {Boolean} force Resize the element (used for proxy resize).
-        * @param {Boolean} silent Don't fire the beforeResize Event.
-        * @description Resizes the element, wrapper or proxy based on the data from the handlers.
-        * @return {<a href="YAHOO.util.Resize.html">YAHOO.util.Resize</a>} The Resize instance
-        */
-        resize: function(ev, h, w, t, l, force, silent) {
-            if (this._locked) {
-                return false;
-            }
-            this._resizeEvent = ev;
-            var el = this._wrap, anim = this.get('animate'), set = true;
-            if (this._proxy && !force) {
-                el = this._proxy;
-                anim = false;
-            }
-            this._setAutoRatio(ev);
-            if (this._positioned) {
-                if (this._proxy) {
-                    t = this._cache.top - t;
-                    l = this._cache.left - l;
-                }
-            }
-
-            var ratio = this._setRatio(h, w, t, l);
-            h = parseInt(ratio[0], 10);
-            w = parseInt(ratio[1], 10);
-            t = parseInt(ratio[2], 10);
-            l = parseInt(ratio[3], 10);
-
-            if (t == 0) {
-                //No Offset, get from cache
-                t = D.getY(el);
-            }
-            if (l == 0) {
-                //No Offset, get from cache
-                l = D.getX(el);
-            }
-
-            
-
-            if (this._positioned) {
-                if (this._proxy && force) {
-                    if (!anim) {
-                        el.style.top = this._proxy.style.top;
-                        el.style.left = this._proxy.style.left;
-                    } else {
-                        t = this._proxy.style.top;
-                        l = this._proxy.style.left;
-                    }
-                } else {
-                    if (!this.get('ratio') && !this._proxy) {
-                        t = this._cache.top + -(t);
-                        l = this._cache.left + -(l);
-                    }
-                    if (t) {
-                        if (this.get('minY')) {
-                            if (t < this.get('minY')) {
-                                t = this.get('minY');
-                            }
-                        }
-                        if (this.get('maxY')) {
-                            if (t > this.get('maxY')) {
-                                t = this.get('maxY');
-                            }
-                        }
-                    }
-                    if (l) {
-                        if (this.get('minX')) {
-                            if (l < this.get('minX')) {
-                                l = this.get('minX');
-                            }
-                        }
-                        if (this.get('maxX')) {
-                            if ((l + w) > this.get('maxX')) {
-                                l = (this.get('maxX') - w);
-                            }
-                        }
-                    }
-                }
-            }
-            if (!silent) {
-                var beforeReturn = this.fireEvent('beforeResize', { ev: 'beforeResize', target: this, height: h, width: w, top: t, left: l });
-                if (beforeReturn === false) {
-                    return false;
-                }
-            }
-
-            this._updateStatus(h, w, t, l);
-
-            if (this._positioned) {
-                if (this._proxy && force) {
-                    //Do nothing
-                } else {
-                    if (t) {
-                        D.setY(el, t);
-                        this._cache.top = t;
-                    }
-                    if (l) {
-                        D.setX(el, l);
-                        this._cache.left = l;
-                    }
-                }
-            }
-            if (h) {
-                if (!anim) {
-                    set = true;
-                    if (this._proxy && force) {
-                        if (!this.get('setSize')) {
-                            set = false;
-                        }
-                    }
-                    if (set) {
-                        if (this.browser.ie > 6) {
-                            if (h === this._cache.height) {
-                                h = h + 1;
-                            }
-                        }
-                        el.style.height = h + 'px';
-                    }
-                    if ((this._proxy && force) || !this._proxy) {
-                        if (this._wrap != this.get('element')) {
-                            this.get('element').style.height = h + 'px';
-                        }
-                    }
-                }
-                this._cache.height = h;
-            }
-            if (w) {
-                this._cache.width = w;
-                if (!anim) {
-                    set = true;
-                    if (this._proxy && force) {
-                        if (!this.get('setSize')) {
-                            set = false;
-                        }
-                    }
-                    if (set) {
-                        el.style.width = w + 'px';
-                    }
-                    if ((this._proxy && force) || !this._proxy) {
-                        if (this._wrap != this.get('element')) {
-                            this.get('element').style.width = w + 'px';
-                        }
-                    }
-                }
-            }
-            if (anim) {
-                if (YAHOO.util.Anim) {
-                    var _anim = new YAHOO.util.Anim(el, {
-                        height: {
-                            to: this._cache.height
-                        },
-                        width: {
-                            to: this._cache.width
-                        }
-                    }, this.get('animateDuration'), this.get('animateEasing'));
-                    if (this._positioned) {
-                        if (t) {
-                            _anim.attributes.top = {
-                                to: parseInt(t, 10)
-                            };
-                        }
-                        if (l) {
-                            _anim.attributes.left = {
-                                to: parseInt(l, 10)
-                            };
-                        }
-                    }
-
-                    if (this._wrap != this.get('element')) {
-                        _anim.onTween.subscribe(function() {
-                            this.get('element').style.height = el.style.height;
-                            this.get('element').style.width = el.style.width;
-                        }, this, true);
-                    }
-
-                    _anim.onComplete.subscribe(function() {
-                        this.set('height', h);
-                        this.set('width', w);
-                        this.fireEvent('resize', { ev: 'resize', target: this, height: h, width: w, top: t, left: l });
-                    }, this, true);
-                    _anim.animate();
-
-                }
-            } else {
-                if (this._proxy && !force) {
-                    this.fireEvent('proxyResize', { ev: 'proxyresize', target: this, height: h, width: w, top: t, left: l });
-                } else {
-                    this.fireEvent('resize', { ev: 'resize', target: this, height: h, width: w, top: t, left: l });
-                }
-            }
-            return this;
-        },
-        /** 
-        * @private
-        * @method _handle_for_br
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Bottom Right handle.
-        */
-        _handle_for_br: function(args) {
-            var newW = this._setWidth(args.e);
-            var newH = this._setHeight(args.e);
-            this.resize(args.e, (newH + 1), newW, 0, 0);
-        },
-        /** 
-        * @private
-        * @method _handle_for_bl
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Bottom Left handle.
-        */
-        _handle_for_bl: function(args) {
-            var newW = this._setWidth(args.e, true);
-            var newH = this._setHeight(args.e);
-            var l = (newW - this._cache.width);
-            this.resize(args.e, newH, newW, 0, l);
-        },
-        /** 
-        * @private
-        * @method _handle_for_tl
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Top Left handle.
-        */
-        _handle_for_tl: function(args) {
-            var newW = this._setWidth(args.e, true);
-            var newH = this._setHeight(args.e, true);
-            var t = (newH - this._cache.height);
-            var l = (newW - this._cache.width);
-            this.resize(args.e, newH, newW, t, l);
-        },
-        /** 
-        * @private
-        * @method _handle_for_tr
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Top Right handle.
-        */
-        _handle_for_tr: function(args) {
-            var newW = this._setWidth(args.e);
-            var newH = this._setHeight(args.e, true);
-            var t = (newH - this._cache.height);
-            this.resize(args.e, newH, newW, t, 0);
-        },
-        /** 
-        * @private
-        * @method _handle_for_r
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Right handle.
-        */
-        _handle_for_r: function(args) {
-            this._dds.r.setYConstraint(0,0);
-            var newW = this._setWidth(args.e);
-            this.resize(args.e, 0, newW, 0, 0);
-        },
-        /** 
-        * @private
-        * @method _handle_for_l
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Left handle.
-        */
-        _handle_for_l: function(args) {
-            this._dds.l.setYConstraint(0,0);
-            var newW = this._setWidth(args.e, true);
-            var l = (newW - this._cache.width);
-            this.resize(args.e, 0, newW, 0, l);
-        },
-        /** 
-        * @private
-        * @method _handle_for_b
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Bottom handle.
-        */
-        _handle_for_b: function(args) {
-            this._dds.b.setXConstraint(0,0);
-            var newH = this._setHeight(args.e);
-            this.resize(args.e, newH, 0, 0, 0);
-        },
-        /** 
-        * @private
-        * @method _handle_for_t
-        * @param {Object} args The arguments from the CustomEvent.
-        * @description Handles the sizes for the Top handle.
-        */
-        _handle_for_t: function(args) {
-            this._dds.t.setXConstraint(0,0);
-            var newH = this._setHeight(args.e, true);
-            var t = (newH - this._cache.height);
-            this.resize(args.e, newH, 0, t, 0);
-        },
-        /** 
-        * @private
-        * @method _setWidth
-        * @param {Event} ev The mouse event.
-        * @param {Boolean} flip Argument to determine the direction of the movement.
-        * @description Calculates the width based on the mouse event.
-        * @return {Number} The new value
-        */
-        _setWidth: function(ev, flip) {
-            var xy = this._cache.xy[0],
-                w = this._cache.width,
-                x = Event.getPageX(ev),
-                nw = (x - xy);
-
-                if (flip) {
-                    nw = (xy - x) + parseInt(this.get('width'), 10);
-                }
-                
-                nw = this._snapTick(nw, this.get('yTicks'));
-                nw = this._checkWidth(nw);
-            return nw;
-        },
-        /** 
-        * @private
-        * @method _checkWidth
-        * @param {Number} w The width to check.
-        * @description Checks the value passed against the maxWidth and minWidth.
-        * @return {Number} the new value
-        */
-        _checkWidth: function(w) {
-            if (this.get('minWidth')) {
-                if (w <= this.get('minWidth')) {
-                    w = this.get('minWidth');
-                }
-            }
-            if (this.get('maxWidth')) {
-                if (w >= this.get('maxWidth')) {
-                    w = this.get('maxWidth');
-                }
-            }
-            return w;
-        },
-        /** 
-        * @private
-        * @method _checkHeight
-        * @param {Number} h The height to check.
-        * @description Checks the value passed against the maxHeight and minHeight.
-        * @return {Number} The new value
-        */
-        _checkHeight: function(h) {
-            if (this.get('minHeight')) {
-                if (h <= this.get('minHeight')) {
-                    h = this.get('minHeight');
-                }
-            }
-            if (this.get('maxHeight')) {
-                if (h >= this.get('maxHeight')) {
-                    h = this.get('maxHeight');
-                }
-            }
-            return h;
-        },
-        /** 
-        * @private
-        * @method _setHeight
-        * @param {Event} ev The mouse event.
-        * @param {Boolean} flip Argument to determine the direction of the movement.
-        * @description Calculated the height based on the mouse event.
-        * @return {Number} The new value
-        */
-        _setHeight: function(ev, flip) {
-            var xy = this._cache.xy[1],
-                h = this._cache.height,
-                y = Event.getPageY(ev),
-                nh = (y - xy);
-
-                if (flip) {
-                    nh = (xy - y) + parseInt(this.get('height'), 10);
-                }
-                nh = this._snapTick(nh, this.get('xTicks'));
-                nh = this._checkHeight(nh);
-                
-            return nh;
-        },
-        /** 
-        * @private
-        * @method _snapTick
-        * @param {Number} size The size to tick against.
-        * @param {Number} pix The tick pixels.
-        * @description Adjusts the number based on the ticks used.
-        * @return {Number} the new snapped position
-        */
-        _snapTick: function(size, pix) {
-            if (!size || !pix) {
-                return size;
-            }
-            var _s = size;
-            var _x = size % pix;
-            if (_x > 0) {
-                if (_x > (pix / 2)) {
-                    _s = size + (pix - _x);
-                } else {
-                    _s = size - _x;
-                }
-            }
-            return _s;
-        },
-        /** 
-        * @private
-        * @method init
-        * @description The Resize class's initialization method
-        */        
-        init: function(p_oElement, p_oAttributes) {
-            this._locked = false;
-            this._cache = {
-                xy: [],
-                height: 0,
-                width: 0,
-                top: 0,
-                left: 0,
-                offsetHeight: 0,
-                offsetWidth: 0,
-                start: {
-                    height: 0,
-                    width: 0,
-                    top: 0,
-                    left: 0
-                }
-            };
-
-            Resize.superclass.init.call(this, p_oElement, p_oAttributes);
-
-            this.set('setSize', this.get('setSize'));
-
-            if (p_oAttributes.height) {
-                this.set('height', parseInt(p_oAttributes.height, 10));
-            }
-            if (p_oAttributes.width) {
-                this.set('width', parseInt(p_oAttributes.width, 10));
-            }
-            
-            var id = p_oElement;
-            if (!Lang.isString(id)) {
-                id = D.generateId(id);
-            }
-            Resize._instances[id] = this;
-
-            this._active = false;
-            
-            this._createWrap();
-            this._createProxy();
-            this._createHandles();
-
-        },
-        /**
-        * @method getProxyEl
-        * @description Get the HTML reference for the proxy, returns null if no proxy.
-        * @return {HTMLElement} The proxy element
-        */      
-        getProxyEl: function() {
-            return this._proxy;
-        },
-        /**
-        * @method getWrapEl
-        * @description Get the HTML reference for the wrap element, returns the current element if not wrapped.
-        * @return {HTMLElement} The wrap element
-        */      
-        getWrapEl: function() {
-            return this._wrap;
-        },
-        /**
-        * @method getStatusEl
-        * @description Get the HTML reference for the status element.
-        * @return {HTMLElement} The status element
-        */      
-        getStatusEl: function() {
-            return this._status;
-        },
-        /**
-        * @method getActiveHandleEl
-        * @description Get the HTML reference for the currently active resize handle.
-        * @return {HTMLElement} The handle element that is active
-        */      
-        getActiveHandleEl: function() {
-            return this._handles[this._currentHandle];
-        },
-        /**
-        * @method isActive
-        * @description Returns true or false if a resize operation is currently active on the element.
-        * @return {Boolean}
-        */      
-        isActive: function() {
-            return ((this._active) ? true : false);
-        },
-        /**
-        * @private
-        * @method initAttributes
-        * @description Initializes all of the configuration attributes used to create a resizable element.
-        * @param {Object} attr Object literal specifying a set of 
-        * configuration attributes used to create the utility.
-        */      
-        initAttributes: function(attr) {
-            Resize.superclass.initAttributes.call(this, attr);
-
-            /**
-            * @attribute useShime
-            * @description This setting will be passed to the DragDrop instances on the resize handles and for the draggable property.
-            * This property should be used if you want the resize handles to work over iframe and other elements.
-            * @type Boolean
-            */
-            this.setAttributeConfig('useShim', {
-                value: ((attr.useShim === true) ? true : false),
-                validator: YAHOO.lang.isBoolean,
-                method: function(u) {
-                    for (var i in this._dds) {
-                        if (Lang.hasOwnProperty(this._dds, i)) {
-                            this._dds[i].useShim = u;
-                        }
-                    }
-                    if (this.dd) {
-                        this.dd.useShim = u;
-                    }
-                }
-            });
-            /**
-            * @attribute setSize
-            * @description Set the size of the resized element, if set to false the element will not be auto resized,
-            * the resize event will contain the dimensions so the end user can resize it on their own.
-            * This setting will only work with proxy set to true and animate set to false.
-            * @type Boolean
-            */
-            this.setAttributeConfig('setSize', {
-                value: ((attr.setSize === false) ? false : true),
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute wrap
-            * @description Should we wrap the element
-            * @type Boolean
-            */
-            this.setAttributeConfig('wrap', {
-                writeOnce: true,
-                validator: YAHOO.lang.isBoolean,
-                value: attr.wrap || false
-            });
-
-            /**
-            * @attribute handles
-            * @description The handles to use (any combination of): 't', 'b', 'r', 'l', 'bl', 'br', 'tl', 'tr'. Defaults to: ['r', 'b', 'br'].
-            * Can use a shortcut of All. Note: 8 way resizing should be done on an element that is absolutely positioned.
-            * @type Array
-            */
-            this.setAttributeConfig('handles', {
-                writeOnce: true,
-                value: attr.handles || ['r', 'b', 'br'],
-                validator: function(handles) {
-                    if (Lang.isString(handles) && handles.toLowerCase() == 'all') {
-                        handles = ['t', 'b', 'r', 'l', 'bl', 'br', 'tl', 'tr'];
-                    }
-                    if (!Lang.isArray(handles)) {
-                        handles = handles.replace(/, /g, ',');
-                        handles = handles.split(',');
-                    }
-                    this._configs.handles.value = handles;
-                }
-            });
-
-            /**
-            * @attribute width
-            * @description The width of the element
-            * @type Number
-            */
-            this.setAttributeConfig('width', {
-                value: attr.width || parseInt(this.getStyle('width'), 10),
-                validator: YAHOO.lang.isNumber,
-                method: function(width) {
-                    width = parseInt(width, 10);
-                    if (width > 0) {
-                        if (this.get('setSize')) {
-                            this.setStyle('width', width + 'px');
-                        }
-                        this._cache.width = width;
-                        this._configs.width.value = width;
-                    }
-                }
-            });
-
-            /**
-            * @attribute height
-            * @description The height of the element
-            * @type Number
-            */
-            this.setAttributeConfig('height', {
-                value: attr.height || parseInt(this.getStyle('height'), 10),
-                validator: YAHOO.lang.isNumber,
-                method: function(height) {
-                    height = parseInt(height, 10);
-                    if (height > 0) {
-                        if (this.get('setSize')) {
-                            this.setStyle('height', height + 'px');
-                        }
-                        this._cache.height = height;
-                        this._configs.height.value = height;
-                    }
-                }
-            });
-
-            /**
-            * @attribute minWidth
-            * @description The minimum width of the element
-            * @type Number
-            */
-            this.setAttributeConfig('minWidth', {
-                value: attr.minWidth || 15,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute minHeight
-            * @description The minimum height of the element
-            * @type Number
-            */
-            this.setAttributeConfig('minHeight', {
-                value: attr.minHeight || 15,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute maxWidth
-            * @description The maximum width of the element
-            * @type Number
-            */
-            this.setAttributeConfig('maxWidth', {
-                value: attr.maxWidth || 10000,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute maxHeight
-            * @description The maximum height of the element
-            * @type Number
-            */
-            this.setAttributeConfig('maxHeight', {
-                value: attr.maxHeight || 10000,
-                validator: YAHOO.lang.isNumber
-            });
-
-            /**
-            * @attribute minY
-            * @description The minimum y coord of the element
-            * @type Number
-            */
-            this.setAttributeConfig('minY', {
-                value: attr.minY || false
-            });
-
-            /**
-            * @attribute minX
-            * @description The minimum x coord of the element
-            * @type Number
-            */
-            this.setAttributeConfig('minX', {
-                value: attr.minX || false
-            });
-            /**
-            * @attribute maxY
-            * @description The max y coord of the element
-            * @type Number
-            */
-            this.setAttributeConfig('maxY', {
-                value: attr.maxY || false
-            });
-
-            /**
-            * @attribute maxX
-            * @description The max x coord of the element
-            * @type Number
-            */
-            this.setAttributeConfig('maxX', {
-                value: attr.maxX || false
-            });
-
-            /**
-            * @attribute animate
-            * @description Should be use animation to resize the element (can only be used if we use proxy).
-            * @type Boolean
-            */
-            this.setAttributeConfig('animate', {
-                value: attr.animate || false,
-                validator: function(value) {
-                    var ret = true;
-                    if (!YAHOO.util.Anim) {
-                        ret = false;
-                    }
-                    return ret;
-                }               
-            });
-
-            /**
-            * @attribute animateEasing
-            * @description The Easing to apply to the animation.
-            * @type Object
-            */
-            this.setAttributeConfig('animateEasing', {
-                value: attr.animateEasing || function() {
-                    var easing = false;
-                    if (YAHOO.util.Easing && YAHOO.util.Easing.easeOut) {
-                        easing = YAHOO.util.Easing.easeOut;
-                    }
-                    return easing;
-                }()
-            });
-
-            /**
-            * @attribute animateDuration
-            * @description The Duration to apply to the animation.
-            * @type Number
-            */
-            this.setAttributeConfig('animateDuration', {
-                value: attr.animateDuration || 0.5
-            });
-
-            /**
-            * @attribute proxy
-            * @description Resize a proxy element instead of the real element.
-            * @type Boolean
-            */
-            this.setAttributeConfig('proxy', {
-                value: attr.proxy || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute ratio
-            * @description Maintain the element's ratio when resizing.
-            * @type Boolean
-            */
-            this.setAttributeConfig('ratio', {
-                value: attr.ratio || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute ghost
-            * @description Apply an opacity filter to the element being resized (only works with proxy).
-            * @type Boolean
-            */
-            this.setAttributeConfig('ghost', {
-                value: attr.ghost || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute draggable
-            * @description A convienence method to make the element draggable
-            * @type Boolean
-            */
-            this.setAttributeConfig('draggable', {
-                value: attr.draggable || false,
-                validator: YAHOO.lang.isBoolean,
-                method: function(dd) {
-                    if (dd && this._wrap) {
-                        this._setupDragDrop();
-                    } else {
-                        if (this.dd) {
-                            D.removeClass(this._wrap, this.CSS_DRAG);
-                            this.dd.unreg();
-                        }
-                    }
-                }
-            });
-
-            /**
-            * @attribute hover
-            * @description Only show the handles when they are being moused over.
-            * @type Boolean
-            */
-            this.setAttributeConfig('hover', {
-                value: attr.hover || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute hiddenHandles
-            * @description Don't show the handles, just use the cursor to the user.
-            * @type Boolean
-            */
-            this.setAttributeConfig('hiddenHandles', {
-                value: attr.hiddenHandles || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute knobHandles
-            * @description Use the smaller handles, instead if the full size handles.
-            * @type Boolean
-            */
-            this.setAttributeConfig('knobHandles', {
-                value: attr.knobHandles || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute xTicks
-            * @description The number of x ticks to span the resize to.
-            * @type Number or False
-            */
-            this.setAttributeConfig('xTicks', {
-                value: attr.xTicks || false
-            });
-
-            /**
-            * @attribute yTicks
-            * @description The number of y ticks to span the resize to.
-            * @type Number or False
-            */
-            this.setAttributeConfig('yTicks', {
-                value: attr.yTicks || false
-            });
-
-            /**
-            * @attribute status
-            * @description Show the status (new size) of the resize.
-            * @type Boolean
-            */
-            this.setAttributeConfig('status', {
-                value: attr.status || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-            /**
-            * @attribute autoRatio
-            * @description Using the shift key during a resize will toggle the ratio config.
-            * @type Boolean
-            */
-            this.setAttributeConfig('autoRatio', {
-                value: attr.autoRatio || false,
-                validator: YAHOO.lang.isBoolean
-            });
-
-        },
-        /**
-        * @method destroy
-        * @description Destroys the resize object and all of it's elements & listeners.
-        */        
-        destroy: function() {
-            for (var h in this._handles) {
-                if (Lang.hasOwnProperty(this._handles, h)) {
-                    Event.purgeElement(this._handles[h]);
-                    this._handles[h].parentNode.removeChild(this._handles[h]);
-                }
-            }
-            if (this._proxy) {
-                this._proxy.parentNode.removeChild(this._proxy);
-            }
-            if (this._status) {
-                this._status.parentNode.removeChild(this._status);
-            }
-            if (this.dd) {
-                this.dd.unreg();
-                D.removeClass(this._wrap, this.CSS_DRAG);
-            }
-            if (this._wrap != this.get('element')) {
-                this.setStyle('position', '');
-                this.setStyle('top', '');
-                this.setStyle('left', '');
-                this._wrap.parentNode.replaceChild(this.get('element'), this._wrap);
-            }
-            this.removeClass(this.CSS_RESIZE);
-
-            delete YAHOO.util.Resize._instances[this.get('id')];
-            //Brutal Object Destroy
-            for (var i in this) {
-                if (Lang.hasOwnProperty(this, i)) {
-                    this[i] = null;
-                    delete this[i];
-                }
-            }
-        },
-        /**
-        * @method toString
-        * @description Returns a string representing the Resize Object.
-        * @return {String}
-        */        
-        toString: function() {
-            if (this.get) {
-                return 'Resize (#' + this.get('id') + ')';
-            }
-            return 'Resize Utility';
-        }
-    });
-
-    YAHOO.util.Resize = Resize;
- 
-/**
-* @event dragEvent
-* @description Fires when the <a href="YAHOO.util.DragDrop.html">YAHOO.util.DragDrop</a> dragEvent is fired for the config option draggable.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event startResize
-* @description Fires when a resize action is started.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event endResize
-* @description Fires when the mouseUp event from the Drag Instance fires.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event resize
-* @description Fires on every element resize (only fires once when used with proxy config setting).
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event beforeResize
-* @description Fires before every element resize after the size calculations, returning false will stop the resize.
-* @type YAHOO.util.CustomEvent
-*/
-/**
-* @event proxyResize
-* @description Fires on every proxy resize (only fires when used with proxy config setting).
-* @type YAHOO.util.CustomEvent
-*/
-
-})();
-
-YAHOO.register("resize", YAHOO.util.Resize, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/selector/README b/eclipse.org-common/yui/2.6.0/build/selector/README
deleted file mode 100644
index 4863bb8..0000000
--- a/eclipse.org-common/yui/2.6.0/build/selector/README
+++ /dev/null
@@ -1,23 +0,0 @@
-YUI Library - Selector - Release Notes
-
-2.6.0
-  * now supporting cross-browser "for" attribute 
-  * gracefully handling non-existant IDs 
-
-2.5.2
-  * no change
-
-2.5.1
-
-  * query() returns null when firstOnly and no result 
-  * correctly handle quoted attributes 
-
-2.5.0
-
-  * query() now returns single node (not array) when firstOnly is true
-  * filter() now works with ID input
-  * pseudos and attributes correctly handle spaces
-
-2.4.0
-
-  * Beta release
diff --git a/eclipse.org-common/yui/2.6.0/build/selector/selector-beta-debug.js b/eclipse.org-common/yui/2.6.0/build/selector/selector-beta-debug.js
deleted file mode 100644
index 344b35d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/selector/selector-beta-debug.js
+++ /dev/null
@@ -1,673 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The selector module provides helper methods allowing CSS3 Selectors to be used with DOM elements.
- * @module selector
- * @title Selector Utility
- * @namespace YAHOO.util
- * @requires yahoo, dom
- */
-
-(function() {
-/**
- * Provides helper methods for collecting and filtering DOM elements.
- * @namespace YAHOO.util
- * @class Selector
- * @static
- */
-var Selector = function() {};
-
-var Y = YAHOO.util;
-
-var reNth = /^(?:([-]?\d*)(n){1}|(odd|even)$)*([-+]?\d*)$/;
-
-Selector.prototype = {
-    /**
-     * Default document for use queries 
-     * @property document
-     * @type object
-     * @default window.document
-     */
-    document: window.document,
-    /**
-     * Mapping of attributes to aliases, normally to work around HTMLAttributes
-     * that conflict with JS reserved words.
-     * @property attrAliases
-     * @type object
-     */
-    attrAliases: {
-    },
-
-    /**
-     * Mapping of shorthand tokens to corresponding attribute selector 
-     * @property shorthand
-     * @type object
-     */
-    shorthand: {
-        //'(?:(?:[^\\)\\]\\s*>+~,]+)(?:-?[_a-z]+[-\\w]))+#(-?[_a-z]+[-\\w]*)': '[id=$1]',
-        '\\#(-?[_a-z]+[-\\w]*)': '[id=$1]',
-        '\\.(-?[_a-z]+[-\\w]*)': '[class~=$1]'
-    },
-
-    /**
-     * List of operators and corresponding boolean functions. 
-     * These functions are passed the attribute and the current node's value of the attribute.
-     * @property operators
-     * @type object
-     */
-    operators: {
-        '=': function(attr, val) { return attr === val; }, // Equality
-        '!=': function(attr, val) { return attr !== val; }, // Inequality
-        '~=': function(attr, val) { // Match one of space seperated words 
-            var s = ' ';
-            return (s + attr + s).indexOf((s + val + s)) > -1;
-        },
-        '|=': function(attr, val) { return getRegExp('^' + val + '[-]?').test(attr); }, // Match start with value followed by optional hyphen
-        '^=': function(attr, val) { return attr.indexOf(val) === 0; }, // Match starts with value
-        '$=': function(attr, val) { return attr.lastIndexOf(val) === attr.length - val.length; }, // Match ends with value
-        '*=': function(attr, val) { return attr.indexOf(val) > -1; }, // Match contains value as substring 
-        '': function(attr, val) { return attr; } // Just test for existence of attribute
-    },
-
-    /**
-     * List of pseudo-classes and corresponding boolean functions. 
-     * These functions are called with the current node, and any value that was parsed with the pseudo regex.
-     * @property pseudos
-     * @type object
-     */
-    pseudos: {
-        'root': function(node) {
-            return node === node.ownerDocument.documentElement;
-        },
-
-        'nth-child': function(node, val) {
-            return getNth(node, val);
-        },
-
-        'nth-last-child': function(node, val) {
-            return getNth(node, val, null, true);
-        },
-
-        'nth-of-type': function(node, val) {
-            return getNth(node, val, node.tagName);
-        },
-         
-        'nth-last-of-type': function(node, val) {
-            return getNth(node, val, node.tagName, true);
-        },
-         
-        'first-child': function(node) {
-            return getChildren(node.parentNode)[0] === node;
-        },
-
-        'last-child': function(node) {
-            var children = getChildren(node.parentNode);
-            return children[children.length - 1] === node;
-        },
-
-        'first-of-type': function(node, val) {
-            return getChildren(node.parentNode, node.tagName.toLowerCase())[0];
-        },
-         
-        'last-of-type': function(node, val) {
-            var children = getChildren(node.parentNode, node.tagName.toLowerCase());
-            return children[children.length - 1];
-        },
-         
-        'only-child': function(node) {
-            var children = getChildren(node.parentNode);
-            return children.length === 1 && children[0] === node;
-        },
-
-        'only-of-type': function(node) {
-            return getChildren(node.parentNode, node.tagName.toLowerCase()).length === 1;
-        },
-
-        'empty': function(node) {
-            return node.childNodes.length === 0;
-        },
-
-        'not': function(node, simple) {
-            return !Selector.test(node, simple);
-        },
-
-        'contains': function(node, str) {
-            var text = node.innerText || node.textContent || '';
-            return text.indexOf(str) > -1;
-        },
-        'checked': function(node) {
-            return node.checked === true;
-        }
-    },
-
-    /**
-     * Test if the supplied node matches the supplied selector.
-     * @method test
-     *
-     * @param {HTMLElement | String} node An id or node reference to the HTMLElement being tested.
-     * @param {string} selector The CSS Selector to test the node against.
-     * @return{boolean} Whether or not the node matches the selector.
-     * @static
-    
-     */
-    test: function(node, selector) {
-        node = Selector.document.getElementById(node) || node;
-
-        if (!node) {
-            return false;
-        }
-
-        var groups = selector ? selector.split(',') : [];
-        if (groups.length) {
-            for (var i = 0, len = groups.length; i < len; ++i) {
-                if ( rTestNode(node, groups[i]) ) { // passes if ANY group matches
-                    return true;
-                }
-            }
-            return false;
-        }
-        return rTestNode(node, selector);
-    },
-
-    /**
-     * Filters a set of nodes based on a given CSS selector. 
-     * @method filter
-     *
-     * @param {array} nodes A set of nodes/ids to filter. 
-     * @param {string} selector The selector used to test each node.
-     * @return{array} An array of nodes from the supplied array that match the given selector.
-     * @static
-     */
-    filter: function(nodes, selector) {
-        nodes = nodes || [];
-
-        var node,
-            result = [],
-            tokens = tokenize(selector);
-
-        if (!nodes.item) { // if not HTMLCollection, handle arrays of ids and/or nodes
-            YAHOO.log('filter: scanning input for HTMLElements/IDs', 'info', 'Selector');
-            for (var i = 0, len = nodes.length; i < len; ++i) {
-                if (!nodes[i].tagName) { // tagName limits to HTMLElements 
-                    node = Selector.document.getElementById(nodes[i]);
-                    if (node) { // skip IDs that return null 
-                        nodes[i] = node;
-                    } else {
-                        YAHOO.log('filter: skipping invalid node', 'warn', 'Selector');
-                    }
-                }
-            }
-        }
-        result = rFilter(nodes, tokenize(selector)[0]);
-        clearParentCache();
-        YAHOO.log('filter: returning:' + result.length, 'info', 'Selector');
-        return result;
-    },
-
-    /**
-     * Retrieves a set of nodes based on a given CSS selector. 
-     * @method query
-     *
-     * @param {string} selector The CSS Selector to test the node against.
-     * @param {HTMLElement | String} root optional An id or HTMLElement to start the query from. Defaults to Selector.document.
-     * @param {Boolean} firstOnly optional Whether or not to return only the first match.
-     * @return {Array} An array of nodes that match the given selector.
-     * @static
-     */
-    query: function(selector, root, firstOnly) {
-        var result = query(selector, root, firstOnly);
-        YAHOO.log('query: returning ' + result, 'info', 'Selector');
-        return result;
-    }
-};
-
-var query = function(selector, root, firstOnly, deDupe) {
-    var result =  (firstOnly) ? null : [];
-    if (!selector) {
-        return result;
-    }
-
-    var groups = selector.split(','); // TODO: handle comma in attribute/pseudo
-
-    if (groups.length > 1) {
-        var found;
-        for (var i = 0, len = groups.length; i < len; ++i) {
-            found = arguments.callee(groups[i], root, firstOnly, true);
-            result = firstOnly ? found : result.concat(found); 
-        }
-        clearFoundCache();
-        return result;
-    }
-
-    if (root && !root.nodeName) { // assume ID
-        root = Selector.document.getElementById(root);
-        if (!root) {
-            YAHOO.log('invalid root node provided', 'warn', 'Selector');
-            return result;
-        }
-    }
-
-    root = root || Selector.document;
-    var tokens = tokenize(selector);
-    var idToken = tokens[getIdTokenIndex(tokens)],
-        nodes = [],
-        node,
-        id,
-        token = tokens.pop() || {};
-        
-    if (idToken) {
-        id = getId(idToken.attributes);
-    }
-
-    // use id shortcut when possible
-    if (id) {
-        node = Selector.document.getElementById(id);
-
-        if (node && (root.nodeName == '#document' || contains(node, root))) {
-            if ( rTestNode(node, null, idToken) ) {
-                if (idToken === token) {
-                    nodes = [node]; // simple selector
-                } else {
-                    root = node; // start from here
-                }
-            }
-        } else {
-            return result;
-        }
-    }
-
-    if (root && !nodes.length) {
-        nodes = root.getElementsByTagName(token.tag);
-    }
-
-    if (nodes.length) {
-        result = rFilter(nodes, token, firstOnly, deDupe); 
-    }
-
-    clearParentCache();
-    return result;
-};
-
-var contains = function() {
-    if (document.documentElement.contains && !YAHOO.env.ua.webkit < 422)  { // IE & Opera, Safari < 3 contains is broken
-        return function(needle, haystack) {
-            return haystack.contains(needle);
-        };
-    } else if ( document.documentElement.compareDocumentPosition ) { // gecko
-        return function(needle, haystack) {
-            return !!(haystack.compareDocumentPosition(needle) & 16);
-        };
-    } else  { // Safari < 3
-        return function(needle, haystack) {
-            var parent = needle.parentNode;
-            while (parent) {
-                if (needle === parent) {
-                    return true;
-                }
-                parent = parent.parentNode;
-            } 
-            return false;
-        }; 
-    }
-}();
-
-var rFilter = function(nodes, token, firstOnly, deDupe) {
-    var result = firstOnly ? null : [];
-
-    for (var i = 0, len = nodes.length; i < len; i++) {
-        if (! rTestNode(nodes[i], '', token, deDupe)) {
-            continue;
-        }
-
-        if (firstOnly) {
-            return nodes[i];
-        }
-        if (deDupe) {
-            if (nodes[i]._found) {
-                continue;
-            }
-            nodes[i]._found = true;
-            foundCache[foundCache.length] = nodes[i];
-        }
-
-        result[result.length] = nodes[i];
-    }
-
-    return result;
-};
-
-var rTestNode = function(node, selector, token, deDupe) {
-    token = token || tokenize(selector).pop() || {};
-
-    if (!node.tagName ||
-        (token.tag !== '*' && node.tagName.toUpperCase() !== token.tag) ||
-        (deDupe && node._found) ) {
-        return false;
-    }
-
-    if (token.attributes.length) {
-        var attribute;
-        for (var i = 0, len = token.attributes.length; i < len; ++i) {
-            attribute = node.getAttribute(token.attributes[i][0], 2);
-            if (attribute === null || attribute === undefined) {
-                return false;
-            }
-            if ( Selector.operators[token.attributes[i][1]] &&
-                    !Selector.operators[token.attributes[i][1]](attribute, token.attributes[i][2])) {
-                return false;
-            }
-        }
-    }
-
-    if (token.pseudos.length) {
-        for (var i = 0, len = token.pseudos.length; i < len; ++i) {
-            if (Selector.pseudos[token.pseudos[i][0]] &&
-                    !Selector.pseudos[token.pseudos[i][0]](node, token.pseudos[i][1])) {
-                return false;
-            }
-        }
-    }
-
-    return (token.previous && token.previous.combinator !== ',') ?
-            combinators[token.previous.combinator](node, token) :
-            true;
-};
-
-
-var foundCache = [];
-var parentCache = [];
-var regexCache = {};
-
-var clearFoundCache = function() {
-    YAHOO.log('getBySelector: clearing found cache of ' + foundCache.length + ' elements');
-    for (var i = 0, len = foundCache.length; i < len; ++i) {
-        try { // IE no like delete
-            delete foundCache[i]._found;
-        } catch(e) {
-            foundCache[i].removeAttribute('_found');
-        }
-    }
-    foundCache = [];
-    YAHOO.log('getBySelector: done clearing foundCache');
-};
-
-var clearParentCache = function() {
-    if (!document.documentElement.children) { // caching children lookups for gecko
-        return function() {
-            for (var i = 0, len = parentCache.length; i < len; ++i) {
-                delete parentCache[i]._children;
-            }
-            parentCache = [];
-        };
-    } else return function() {}; // do nothing
-}();
-
-var getRegExp = function(str, flags) {
-    flags = flags || '';
-    if (!regexCache[str + flags]) {
-        regexCache[str + flags] = new RegExp(str, flags);
-    }
-    return regexCache[str + flags];
-};
-
-var combinators = {
-    ' ': function(node, token) {
-        while (node = node.parentNode) {
-            if (rTestNode(node, '', token.previous)) {
-                return true;
-            }
-        }  
-        return false;
-    },
-
-    '>': function(node, token) {
-        return rTestNode(node.parentNode, null, token.previous);
-    },
-
-    '+': function(node, token) {
-        var sib = node.previousSibling;
-        while (sib && sib.nodeType !== 1) {
-            sib = sib.previousSibling;
-        }
-
-        if (sib && rTestNode(sib, null, token.previous)) {
-            return true; 
-        }
-        return false;
-    },
-
-    '~': function(node, token) {
-        var sib = node.previousSibling;
-        while (sib) {
-            if (sib.nodeType === 1 && rTestNode(sib, null, token.previous)) {
-                return true;
-            }
-            sib = sib.previousSibling;
-        }
-
-        return false;
-    }
-};
-
-var getChildren = function() {
-    if (document.documentElement.children) { // document for capability test
-        return function(node, tag) {
-            return (tag) ? node.children.tags(tag) : node.children || [];
-        };
-    } else {
-        return function(node, tag) {
-            if (node._children) {
-                return node._children;
-            }
-            var children = [],
-                childNodes = node.childNodes;
-
-            for (var i = 0, len = childNodes.length; i < len; ++i) {
-                if (childNodes[i].tagName) {
-                    if (!tag || childNodes[i].tagName.toLowerCase() === tag) {
-                        children[children.length] = childNodes[i];
-                    }
-                }
-            }
-            node._children = children;
-            parentCache[parentCache.length] = node;
-            return children;
-        };
-    }
-}();
-
-/*
-    an+b = get every _a_th node starting at the _b_th
-    0n+b = no repeat ("0" and "n" may both be omitted (together) , e.g. "0n+1" or "1", not "0+1"), return only the _b_th element
-    1n+b =  get every element starting from b ("1" may may be omitted, e.g. "1n+0" or "n+0" or "n")
-    an+0 = get every _a_th element, "0" may be omitted 
-*/
-var getNth = function(node, expr, tag, reverse) {
-    if (tag) tag = tag.toLowerCase();
-    reNth.test(expr);
-    var a = parseInt(RegExp.$1, 10), // include every _a_ elements (zero means no repeat, just first _a_)
-        n = RegExp.$2, // "n"
-        oddeven = RegExp.$3, // "odd" or "even"
-        b = parseInt(RegExp.$4, 10) || 0, // start scan from element _b_
-        result = [];
-
-    var siblings = getChildren(node.parentNode, tag);
-
-    if (oddeven) {
-        a = 2; // always every other
-        op = '+';
-        n = 'n';
-        b = (oddeven === 'odd') ? 1 : 0;
-    } else if ( isNaN(a) ) {
-        a = (n) ? 1 : 0; // start from the first or no repeat
-    }
-
-    if (a === 0) { // just the first
-        if (reverse) {
-            b = siblings.length - b + 1; 
-        }
-
-        if (siblings[b - 1] === node) {
-            return true;
-        } else {
-            return false;
-        }
-
-    } else if (a < 0) {
-        reverse = !!reverse;
-        a = Math.abs(a);
-    }
-
-    if (!reverse) {
-        for (var i = b - 1, len = siblings.length; i < len; i += a) {
-            if ( i >= 0 && siblings[i] === node ) {
-                return true;
-            }
-        }
-    } else {
-        for (var i = siblings.length - b, len = siblings.length; i >= 0; i -= a) {
-            if ( i < len && siblings[i] === node ) {
-                return true;
-            }
-        }
-    }
-    return false;
-};
-
-var getId = function(attr) {
-    for (var i = 0, len = attr.length; i < len; ++i) {
-        if (attr[i][0] == 'id' && attr[i][1] === '=') {
-            return attr[i][2];
-        }
-    }
-};
-
-var getIdTokenIndex = function(tokens) {
-    for (var i = 0, len = tokens.length; i < len; ++i) {
-        if (getId(tokens[i].attributes)) {
-            return i;
-        }
-    }
-    return -1;
-};
-
-var patterns = {
-    tag: /^((?:-?[_a-z]+[\w-]*)|\*)/i,
-    attributes: /^\[([a-z]+\w*)+([~\|\^\$\*!=]=?)?['"]?([^\]]*?)['"]?\]/i,
-    //attributes: /^\[([a-z]+\w*)+([~\|\^\$\*!=]=?)?['"]?([^'"\]]*)['"]?\]*/i,
-    pseudos: /^:([-\w]+)(?:\(['"]?(.+)['"]?\))*/i,
-    combinator: /^\s*([>+~]|\s)\s*/
-};
-
-/**
-    Break selector into token units per simple selector.
-    Combinator is attached to left-hand selector.
- */
-var tokenize = function(selector) {
-    var token = {},     // one token per simple selector (left selector holds combinator)
-        tokens = [],    // array of tokens
-        id,             // unique id for the simple selector (if found)
-        found = false,  // whether or not any matches were found this pass
-        match;          // the regex match
-
-    selector = replaceShorthand(selector); // convert ID and CLASS shortcuts to attributes
-
-    /*
-        Search for selector patterns, store, and strip them from the selector string
-        until no patterns match (invalid selector) or we run out of chars.
-
-        Multiple attributes and pseudos are allowed, in any order.
-        for example:
-            'form:first-child[type=button]:not(button)[lang|=en]'
-    */
-    do {
-        found = false; // reset after full pass
-        for (var re in patterns) {
-                if (!YAHOO.lang.hasOwnProperty(patterns, re)) {
-                    continue;
-                }
-                if (re != 'tag' && re != 'combinator') { // only one allowed
-                    token[re] = token[re] || [];
-                }
-            if (match = patterns[re].exec(selector)) { // note assignment
-                found = true;
-                if (re != 'tag' && re != 'combinator') { // only one allowed
-                    //token[re] = token[re] || [];
-
-                    // capture ID for fast path to element
-                    if (re === 'attributes' && match[1] === 'id') {
-                        token.id = match[3];
-                    }
-
-                    token[re].push(match.slice(1));
-                } else { // single selector (tag, combinator)
-                    token[re] = match[1];
-                }
-                selector = selector.replace(match[0], ''); // strip current match from selector
-                if (re === 'combinator' || !selector.length) { // next token or done
-                    token.attributes = fixAttributes(token.attributes);
-                    token.pseudos = token.pseudos || [];
-                    token.tag = token.tag ? token.tag.toUpperCase() : '*';
-                    tokens.push(token);
-
-                    token = { // prep next token
-                        previous: token
-                    };
-                }
-            }
-        }
-    } while (found);
-
-    return tokens;
-};
-
-var fixAttributes = function(attr) {
-    var aliases = Selector.attrAliases;
-    attr = attr || [];
-    for (var i = 0, len = attr.length; i < len; ++i) {
-        if (aliases[attr[i][0]]) { // convert reserved words, etc
-            attr[i][0] = aliases[attr[i][0]];
-        }
-        if (!attr[i][1]) { // use exists operator
-            attr[i][1] = '';
-        }
-    }
-    return attr;
-};
-
-var replaceShorthand = function(selector) {
-    var shorthand = Selector.shorthand;
-    var attrs = selector.match(patterns.attributes); // pull attributes to avoid false pos on "." and "#"
-    if (attrs) {
-        selector = selector.replace(patterns.attributes, 'REPLACED_ATTRIBUTE');
-    }
-    for (var re in shorthand) {
-        if (!YAHOO.lang.hasOwnProperty(shorthand, re)) {
-            continue;
-        }
-        selector = selector.replace(getRegExp(re, 'gi'), shorthand[re]);
-    }
-
-    if (attrs) {
-        for (var i = 0, len = attrs.length; i < len; ++i) {
-            selector = selector.replace('REPLACED_ATTRIBUTE', attrs[i]);
-        }
-    }
-    return selector;
-};
-
-Selector = new Selector();
-Selector.patterns = patterns;
-Y.Selector = Selector;
-
-if (YAHOO.env.ua.ie) { // rewrite class for IE (others use getAttribute('class')
-    Y.Selector.attrAliases['class'] = 'className';
-    Y.Selector.attrAliases['for'] = 'htmlFor';
-}
-
-})();
-YAHOO.register("selector", YAHOO.util.Selector, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/selector/selector-beta-min.js b/eclipse.org-common/yui/2.6.0/build/selector/selector-beta-min.js
deleted file mode 100644
index ce55bff..0000000
--- a/eclipse.org-common/yui/2.6.0/build/selector/selector-beta-min.js
+++ /dev/null
@@ -1,8 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){var T=function(){};var E=YAHOO.util;var U=/^(?:([-]?\d*)(n){1}|(odd|even)$)*([-+]?\d*)$/;T.prototype={document:window.document,attrAliases:{},shorthand:{"\\#(-?[_a-z]+[-\\w]*)":"[id=$1]","\\.(-?[_a-z]+[-\\w]*)":"[class~=$1]"},operators:{"=":function(W,X){return W===X;},"!=":function(W,X){return W!==X;},"~=":function(W,Y){var X=" ";return(X+W+X).indexOf((X+Y+X))>-1;},"|=":function(W,X){return G("^"+X+"[-]?").test(W);},"^=":function(W,X){return W.indexOf(X)===0;},"$=":function(W,X){return W.lastIndexOf(X)===W.length-X.length;},"*=":function(W,X){return W.indexOf(X)>-1;},"":function(W,X){return W;}},pseudos:{"root":function(W){return W===W.ownerDocument.documentElement;},"nth-child":function(W,X){return R(W,X);},"nth-last-child":function(W,X){return R(W,X,null,true);},"nth-of-type":function(W,X){return R(W,X,W.tagName);},"nth-last-of-type":function(W,X){return R(W,X,W.tagName,true);},"first-child":function(W){return F(W.parentNode)[0]===W;},"last-child":function(X){var W=F(X.parentNode);return W[W.length-1]===X;},"first-of-type":function(W,X){return F(W.parentNode,W.tagName.toLowerCase())[0];},"last-of-type":function(X,Y){var W=F(X.parentNode,X.tagName.toLowerCase());return W[W.length-1];},"only-child":function(X){var W=F(X.parentNode);return W.length===1&&W[0]===X;},"only-of-type":function(W){return F(W.parentNode,W.tagName.toLowerCase()).length===1;},"empty":function(W){return W.childNodes.length===0;},"not":function(W,X){return !T.test(W,X);},"contains":function(W,Y){var X=W.innerText||W.textContent||"";return X.indexOf(Y)>-1;},"checked":function(W){return W.checked===true;}},test:function(a,Y){a=T.document.getElementById(a)||a;if(!a){return false;}var X=Y?Y.split(","):[];if(X.length){for(var Z=0,W=X.length;Z<W;++Z){if(V(a,X[Z])){return true;}}return false;}return V(a,Y);},filter:function(Z,Y){Z=Z||[];var b,X=[],c=C(Y);if(!Z.item){for(var a=0,W=Z.length;a<W;++a){if(!Z[a].tagName){b=T.document.getElementById(Z[a]);if(b){Z[a]=b;}else{}}}}X=Q(Z,C(Y)[0]);B();return X;},query:function(X,Y,Z){var W=H(X,Y,Z);return W;}};var H=function(c,h,j,a){var l=(j)?null:[];if(!c){return l;}var Y=c.split(",");if(Y.length>1){var k;for(var d=0,e=Y.length;d<e;++d){k=arguments.callee(Y[d],h,j,true);l=j?k:l.concat(k);}I();return l;}if(h&&!h.nodeName){h=T.document.getElementById(h);if(!h){return l;}}h=h||T.document;var g=C(c);var f=g[N(g)],W=[],Z,X,b=g.pop()||{};if(f){X=P(f.attributes);}if(X){Z=T.document.getElementById(X);if(Z&&(h.nodeName=="#document"||L(Z,h))){if(V(Z,null,f)){if(f===b){W=[Z];}else{h=Z;}}}else{return l;}}if(h&&!W.length){W=h.getElementsByTagName(b.tag);}if(W.length){l=Q(W,b,j,a);}B();return l;};var L=function(){if(document.documentElement.contains&&!YAHOO.env.ua.webkit<422){return function(X,W){return W.contains(X);};}else{if(document.documentElement.compareDocumentPosition){return function(X,W){return !!(W.compareDocumentPosition(X)&16);};}else{return function(Y,X){var W=Y.parentNode;while(W){if(Y===W){return true;}W=W.parentNode;}return false;};}}}();var Q=function(Z,b,c,Y){var X=c?null:[];for(var a=0,W=Z.length;a<W;a++){if(!V(Z[a],"",b,Y)){continue;}if(c){return Z[a];}if(Y){if(Z[a]._found){continue;}Z[a]._found=true;M[M.length]=Z[a];}X[X.length]=Z[a];}return X;};var V=function(c,X,a,Y){a=a||C(X).pop()||{};if(!c.tagName||(a.tag!=="*"&&c.tagName.toUpperCase()!==a.tag)||(Y&&c._found)){return false;}if(a.attributes.length){var b;for(var Z=0,W=a.attributes.length;Z<W;++Z){b=c.getAttribute(a.attributes[Z][0],2);if(b===null||b===undefined){return false;}if(T.operators[a.attributes[Z][1]]&&!T.operators[a.attributes[Z][1]](b,a.attributes[Z][2])){return false;}}}if(a.pseudos.length){for(var Z=0,W=a.pseudos.length;Z<W;++Z){if(T.pseudos[a.pseudos[Z][0]]&&!T.pseudos[a.pseudos[Z][0]](c,a.pseudos[Z][1])){return false;}}}return(a.previous&&a.previous.combinator!==",")?O[a.previous.combinator](c,a):true;};var M=[];var K=[];var S={};var I=function(){for(var X=0,W=M.length;X<W;++X){try{delete M[X]._found;}catch(Y){M[X].removeAttribute("_found");}}M=[];};var B=function(){if(!document.documentElement.children){return function(){for(var X=0,W=K.length;X<W;++X){delete K[X]._children;}K=[];};}else{return function(){};}}();var G=function(X,W){W=W||"";if(!S[X+W]){S[X+W]=new RegExp(X,W);}return S[X+W];};var O={" ":function(X,W){while(X=X.parentNode){if(V(X,"",W.previous)){return true;}}return false;},">":function(X,W){return V(X.parentNode,null,W.previous);},"+":function(Y,X){var W=Y.previousSibling;while(W&&W.nodeType!==1){W=W.previousSibling;}if(W&&V(W,null,X.previous)){return true;}return false;},"~":function(Y,X){var W=Y.previousSibling;while(W){if(W.nodeType===1&&V(W,null,X.previous)){return true;}W=W.previousSibling;}return false;}};var F=function(){if(document.documentElement.children){return function(X,W){return(W)?X.children.tags(W):X.children||[];};}else{return function(a,X){if(a._children){return a._children;}var Z=[],b=a.childNodes;for(var Y=0,W=b.length;Y<W;++Y){if(b[Y].tagName){if(!X||b[Y].tagName.toLowerCase()===X){Z[Z.length]=b[Y];}}}a._children=Z;K[K.length]=a;return Z;};}}();var R=function(X,h,k,c){if(k){k=k.toLowerCase();}U.test(h);var g=parseInt(RegExp.$1,10),W=RegExp.$2,d=RegExp.$3,e=parseInt(RegExp.$4,10)||0,j=[];var f=F(X.parentNode,k);if(d){g=2;op="+";W="n";e=(d==="odd")?1:0;}else{if(isNaN(g)){g=(W)?1:0;}}if(g===0){if(c){e=f.length-e+1;}if(f[e-1]===X){return true;}else{return false;}}else{if(g<0){c=!!c;g=Math.abs(g);}}if(!c){for(var Y=e-1,Z=f.length;Y<Z;Y+=g){if(Y>=0&&f[Y]===X){return true;}}}else{for(var Y=f.length-e,Z=f.length;Y>=0;Y-=g){if(Y<Z&&f[Y]===X){return true;}}}return false;};var P=function(X){for(var Y=0,W=X.length;Y<W;++Y){if(X[Y][0]=="id"&&X[Y][1]==="="){return X[Y][2];}}};var N=function(Y){for(var X=0,W=Y.length;X<W;++X){if(P(Y[X].attributes)){return X;}}return -1;};var D={tag:/^((?:-?[_a-z]+[\w-]*)|\*)/i,attributes:/^\[([a-z]+\w*)+([~\|\^\$\*!=]=?)?['"]?([^\]]*?)['"]?\]/i,pseudos:/^:([-\w]+)(?:\(['"]?(.+)['"]?\))*/i,combinator:/^\s*([>+~]|\s)\s*/};var C=function(W){var Y={},b=[],c,a=false,X;
-W=A(W);do{a=false;for(var Z in D){if(!YAHOO.lang.hasOwnProperty(D,Z)){continue;}if(Z!="tag"&&Z!="combinator"){Y[Z]=Y[Z]||[];}if(X=D[Z].exec(W)){a=true;if(Z!="tag"&&Z!="combinator"){if(Z==="attributes"&&X[1]==="id"){Y.id=X[3];}Y[Z].push(X.slice(1));}else{Y[Z]=X[1];}W=W.replace(X[0],"");if(Z==="combinator"||!W.length){Y.attributes=J(Y.attributes);Y.pseudos=Y.pseudos||[];Y.tag=Y.tag?Y.tag.toUpperCase():"*";b.push(Y);Y={previous:Y};}}}}while(a);return b;};var J=function(X){var Y=T.attrAliases;X=X||[];for(var Z=0,W=X.length;Z<W;++Z){if(Y[X[Z][0]]){X[Z][0]=Y[X[Z][0]];}if(!X[Z][1]){X[Z][1]="";}}return X;};var A=function(X){var Y=T.shorthand;var Z=X.match(D.attributes);if(Z){X=X.replace(D.attributes,"REPLACED_ATTRIBUTE");}for(var b in Y){if(!YAHOO.lang.hasOwnProperty(Y,b)){continue;}X=X.replace(G(b,"gi"),Y[b]);}if(Z){for(var a=0,W=Z.length;a<W;++a){X=X.replace("REPLACED_ATTRIBUTE",Z[a]);}}return X;};T=new T();T.patterns=D;E.Selector=T;if(YAHOO.env.ua.ie){E.Selector.attrAliases["class"]="className";E.Selector.attrAliases["for"]="htmlFor";}})();YAHOO.register("selector",YAHOO.util.Selector,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/selector/selector-beta.js b/eclipse.org-common/yui/2.6.0/build/selector/selector-beta.js
deleted file mode 100644
index db222b5..0000000
--- a/eclipse.org-common/yui/2.6.0/build/selector/selector-beta.js
+++ /dev/null
@@ -1,666 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The selector module provides helper methods allowing CSS3 Selectors to be used with DOM elements.
- * @module selector
- * @title Selector Utility
- * @namespace YAHOO.util
- * @requires yahoo, dom
- */
-
-(function() {
-/**
- * Provides helper methods for collecting and filtering DOM elements.
- * @namespace YAHOO.util
- * @class Selector
- * @static
- */
-var Selector = function() {};
-
-var Y = YAHOO.util;
-
-var reNth = /^(?:([-]?\d*)(n){1}|(odd|even)$)*([-+]?\d*)$/;
-
-Selector.prototype = {
-    /**
-     * Default document for use queries 
-     * @property document
-     * @type object
-     * @default window.document
-     */
-    document: window.document,
-    /**
-     * Mapping of attributes to aliases, normally to work around HTMLAttributes
-     * that conflict with JS reserved words.
-     * @property attrAliases
-     * @type object
-     */
-    attrAliases: {
-    },
-
-    /**
-     * Mapping of shorthand tokens to corresponding attribute selector 
-     * @property shorthand
-     * @type object
-     */
-    shorthand: {
-        //'(?:(?:[^\\)\\]\\s*>+~,]+)(?:-?[_a-z]+[-\\w]))+#(-?[_a-z]+[-\\w]*)': '[id=$1]',
-        '\\#(-?[_a-z]+[-\\w]*)': '[id=$1]',
-        '\\.(-?[_a-z]+[-\\w]*)': '[class~=$1]'
-    },
-
-    /**
-     * List of operators and corresponding boolean functions. 
-     * These functions are passed the attribute and the current node's value of the attribute.
-     * @property operators
-     * @type object
-     */
-    operators: {
-        '=': function(attr, val) { return attr === val; }, // Equality
-        '!=': function(attr, val) { return attr !== val; }, // Inequality
-        '~=': function(attr, val) { // Match one of space seperated words 
-            var s = ' ';
-            return (s + attr + s).indexOf((s + val + s)) > -1;
-        },
-        '|=': function(attr, val) { return getRegExp('^' + val + '[-]?').test(attr); }, // Match start with value followed by optional hyphen
-        '^=': function(attr, val) { return attr.indexOf(val) === 0; }, // Match starts with value
-        '$=': function(attr, val) { return attr.lastIndexOf(val) === attr.length - val.length; }, // Match ends with value
-        '*=': function(attr, val) { return attr.indexOf(val) > -1; }, // Match contains value as substring 
-        '': function(attr, val) { return attr; } // Just test for existence of attribute
-    },
-
-    /**
-     * List of pseudo-classes and corresponding boolean functions. 
-     * These functions are called with the current node, and any value that was parsed with the pseudo regex.
-     * @property pseudos
-     * @type object
-     */
-    pseudos: {
-        'root': function(node) {
-            return node === node.ownerDocument.documentElement;
-        },
-
-        'nth-child': function(node, val) {
-            return getNth(node, val);
-        },
-
-        'nth-last-child': function(node, val) {
-            return getNth(node, val, null, true);
-        },
-
-        'nth-of-type': function(node, val) {
-            return getNth(node, val, node.tagName);
-        },
-         
-        'nth-last-of-type': function(node, val) {
-            return getNth(node, val, node.tagName, true);
-        },
-         
-        'first-child': function(node) {
-            return getChildren(node.parentNode)[0] === node;
-        },
-
-        'last-child': function(node) {
-            var children = getChildren(node.parentNode);
-            return children[children.length - 1] === node;
-        },
-
-        'first-of-type': function(node, val) {
-            return getChildren(node.parentNode, node.tagName.toLowerCase())[0];
-        },
-         
-        'last-of-type': function(node, val) {
-            var children = getChildren(node.parentNode, node.tagName.toLowerCase());
-            return children[children.length - 1];
-        },
-         
-        'only-child': function(node) {
-            var children = getChildren(node.parentNode);
-            return children.length === 1 && children[0] === node;
-        },
-
-        'only-of-type': function(node) {
-            return getChildren(node.parentNode, node.tagName.toLowerCase()).length === 1;
-        },
-
-        'empty': function(node) {
-            return node.childNodes.length === 0;
-        },
-
-        'not': function(node, simple) {
-            return !Selector.test(node, simple);
-        },
-
-        'contains': function(node, str) {
-            var text = node.innerText || node.textContent || '';
-            return text.indexOf(str) > -1;
-        },
-        'checked': function(node) {
-            return node.checked === true;
-        }
-    },
-
-    /**
-     * Test if the supplied node matches the supplied selector.
-     * @method test
-     *
-     * @param {HTMLElement | String} node An id or node reference to the HTMLElement being tested.
-     * @param {string} selector The CSS Selector to test the node against.
-     * @return{boolean} Whether or not the node matches the selector.
-     * @static
-    
-     */
-    test: function(node, selector) {
-        node = Selector.document.getElementById(node) || node;
-
-        if (!node) {
-            return false;
-        }
-
-        var groups = selector ? selector.split(',') : [];
-        if (groups.length) {
-            for (var i = 0, len = groups.length; i < len; ++i) {
-                if ( rTestNode(node, groups[i]) ) { // passes if ANY group matches
-                    return true;
-                }
-            }
-            return false;
-        }
-        return rTestNode(node, selector);
-    },
-
-    /**
-     * Filters a set of nodes based on a given CSS selector. 
-     * @method filter
-     *
-     * @param {array} nodes A set of nodes/ids to filter. 
-     * @param {string} selector The selector used to test each node.
-     * @return{array} An array of nodes from the supplied array that match the given selector.
-     * @static
-     */
-    filter: function(nodes, selector) {
-        nodes = nodes || [];
-
-        var node,
-            result = [],
-            tokens = tokenize(selector);
-
-        if (!nodes.item) { // if not HTMLCollection, handle arrays of ids and/or nodes
-            for (var i = 0, len = nodes.length; i < len; ++i) {
-                if (!nodes[i].tagName) { // tagName limits to HTMLElements 
-                    node = Selector.document.getElementById(nodes[i]);
-                    if (node) { // skip IDs that return null 
-                        nodes[i] = node;
-                    } else {
-                    }
-                }
-            }
-        }
-        result = rFilter(nodes, tokenize(selector)[0]);
-        clearParentCache();
-        return result;
-    },
-
-    /**
-     * Retrieves a set of nodes based on a given CSS selector. 
-     * @method query
-     *
-     * @param {string} selector The CSS Selector to test the node against.
-     * @param {HTMLElement | String} root optional An id or HTMLElement to start the query from. Defaults to Selector.document.
-     * @param {Boolean} firstOnly optional Whether or not to return only the first match.
-     * @return {Array} An array of nodes that match the given selector.
-     * @static
-     */
-    query: function(selector, root, firstOnly) {
-        var result = query(selector, root, firstOnly);
-        return result;
-    }
-};
-
-var query = function(selector, root, firstOnly, deDupe) {
-    var result =  (firstOnly) ? null : [];
-    if (!selector) {
-        return result;
-    }
-
-    var groups = selector.split(','); // TODO: handle comma in attribute/pseudo
-
-    if (groups.length > 1) {
-        var found;
-        for (var i = 0, len = groups.length; i < len; ++i) {
-            found = arguments.callee(groups[i], root, firstOnly, true);
-            result = firstOnly ? found : result.concat(found); 
-        }
-        clearFoundCache();
-        return result;
-    }
-
-    if (root && !root.nodeName) { // assume ID
-        root = Selector.document.getElementById(root);
-        if (!root) {
-            return result;
-        }
-    }
-
-    root = root || Selector.document;
-    var tokens = tokenize(selector);
-    var idToken = tokens[getIdTokenIndex(tokens)],
-        nodes = [],
-        node,
-        id,
-        token = tokens.pop() || {};
-        
-    if (idToken) {
-        id = getId(idToken.attributes);
-    }
-
-    // use id shortcut when possible
-    if (id) {
-        node = Selector.document.getElementById(id);
-
-        if (node && (root.nodeName == '#document' || contains(node, root))) {
-            if ( rTestNode(node, null, idToken) ) {
-                if (idToken === token) {
-                    nodes = [node]; // simple selector
-                } else {
-                    root = node; // start from here
-                }
-            }
-        } else {
-            return result;
-        }
-    }
-
-    if (root && !nodes.length) {
-        nodes = root.getElementsByTagName(token.tag);
-    }
-
-    if (nodes.length) {
-        result = rFilter(nodes, token, firstOnly, deDupe); 
-    }
-
-    clearParentCache();
-    return result;
-};
-
-var contains = function() {
-    if (document.documentElement.contains && !YAHOO.env.ua.webkit < 422)  { // IE & Opera, Safari < 3 contains is broken
-        return function(needle, haystack) {
-            return haystack.contains(needle);
-        };
-    } else if ( document.documentElement.compareDocumentPosition ) { // gecko
-        return function(needle, haystack) {
-            return !!(haystack.compareDocumentPosition(needle) & 16);
-        };
-    } else  { // Safari < 3
-        return function(needle, haystack) {
-            var parent = needle.parentNode;
-            while (parent) {
-                if (needle === parent) {
-                    return true;
-                }
-                parent = parent.parentNode;
-            } 
-            return false;
-        }; 
-    }
-}();
-
-var rFilter = function(nodes, token, firstOnly, deDupe) {
-    var result = firstOnly ? null : [];
-
-    for (var i = 0, len = nodes.length; i < len; i++) {
-        if (! rTestNode(nodes[i], '', token, deDupe)) {
-            continue;
-        }
-
-        if (firstOnly) {
-            return nodes[i];
-        }
-        if (deDupe) {
-            if (nodes[i]._found) {
-                continue;
-            }
-            nodes[i]._found = true;
-            foundCache[foundCache.length] = nodes[i];
-        }
-
-        result[result.length] = nodes[i];
-    }
-
-    return result;
-};
-
-var rTestNode = function(node, selector, token, deDupe) {
-    token = token || tokenize(selector).pop() || {};
-
-    if (!node.tagName ||
-        (token.tag !== '*' && node.tagName.toUpperCase() !== token.tag) ||
-        (deDupe && node._found) ) {
-        return false;
-    }
-
-    if (token.attributes.length) {
-        var attribute;
-        for (var i = 0, len = token.attributes.length; i < len; ++i) {
-            attribute = node.getAttribute(token.attributes[i][0], 2);
-            if (attribute === null || attribute === undefined) {
-                return false;
-            }
-            if ( Selector.operators[token.attributes[i][1]] &&
-                    !Selector.operators[token.attributes[i][1]](attribute, token.attributes[i][2])) {
-                return false;
-            }
-        }
-    }
-
-    if (token.pseudos.length) {
-        for (var i = 0, len = token.pseudos.length; i < len; ++i) {
-            if (Selector.pseudos[token.pseudos[i][0]] &&
-                    !Selector.pseudos[token.pseudos[i][0]](node, token.pseudos[i][1])) {
-                return false;
-            }
-        }
-    }
-
-    return (token.previous && token.previous.combinator !== ',') ?
-            combinators[token.previous.combinator](node, token) :
-            true;
-};
-
-
-var foundCache = [];
-var parentCache = [];
-var regexCache = {};
-
-var clearFoundCache = function() {
-    for (var i = 0, len = foundCache.length; i < len; ++i) {
-        try { // IE no like delete
-            delete foundCache[i]._found;
-        } catch(e) {
-            foundCache[i].removeAttribute('_found');
-        }
-    }
-    foundCache = [];
-};
-
-var clearParentCache = function() {
-    if (!document.documentElement.children) { // caching children lookups for gecko
-        return function() {
-            for (var i = 0, len = parentCache.length; i < len; ++i) {
-                delete parentCache[i]._children;
-            }
-            parentCache = [];
-        };
-    } else return function() {}; // do nothing
-}();
-
-var getRegExp = function(str, flags) {
-    flags = flags || '';
-    if (!regexCache[str + flags]) {
-        regexCache[str + flags] = new RegExp(str, flags);
-    }
-    return regexCache[str + flags];
-};
-
-var combinators = {
-    ' ': function(node, token) {
-        while (node = node.parentNode) {
-            if (rTestNode(node, '', token.previous)) {
-                return true;
-            }
-        }  
-        return false;
-    },
-
-    '>': function(node, token) {
-        return rTestNode(node.parentNode, null, token.previous);
-    },
-
-    '+': function(node, token) {
-        var sib = node.previousSibling;
-        while (sib && sib.nodeType !== 1) {
-            sib = sib.previousSibling;
-        }
-
-        if (sib && rTestNode(sib, null, token.previous)) {
-            return true; 
-        }
-        return false;
-    },
-
-    '~': function(node, token) {
-        var sib = node.previousSibling;
-        while (sib) {
-            if (sib.nodeType === 1 && rTestNode(sib, null, token.previous)) {
-                return true;
-            }
-            sib = sib.previousSibling;
-        }
-
-        return false;
-    }
-};
-
-var getChildren = function() {
-    if (document.documentElement.children) { // document for capability test
-        return function(node, tag) {
-            return (tag) ? node.children.tags(tag) : node.children || [];
-        };
-    } else {
-        return function(node, tag) {
-            if (node._children) {
-                return node._children;
-            }
-            var children = [],
-                childNodes = node.childNodes;
-
-            for (var i = 0, len = childNodes.length; i < len; ++i) {
-                if (childNodes[i].tagName) {
-                    if (!tag || childNodes[i].tagName.toLowerCase() === tag) {
-                        children[children.length] = childNodes[i];
-                    }
-                }
-            }
-            node._children = children;
-            parentCache[parentCache.length] = node;
-            return children;
-        };
-    }
-}();
-
-/*
-    an+b = get every _a_th node starting at the _b_th
-    0n+b = no repeat ("0" and "n" may both be omitted (together) , e.g. "0n+1" or "1", not "0+1"), return only the _b_th element
-    1n+b =  get every element starting from b ("1" may may be omitted, e.g. "1n+0" or "n+0" or "n")
-    an+0 = get every _a_th element, "0" may be omitted 
-*/
-var getNth = function(node, expr, tag, reverse) {
-    if (tag) tag = tag.toLowerCase();
-    reNth.test(expr);
-    var a = parseInt(RegExp.$1, 10), // include every _a_ elements (zero means no repeat, just first _a_)
-        n = RegExp.$2, // "n"
-        oddeven = RegExp.$3, // "odd" or "even"
-        b = parseInt(RegExp.$4, 10) || 0, // start scan from element _b_
-        result = [];
-
-    var siblings = getChildren(node.parentNode, tag);
-
-    if (oddeven) {
-        a = 2; // always every other
-        op = '+';
-        n = 'n';
-        b = (oddeven === 'odd') ? 1 : 0;
-    } else if ( isNaN(a) ) {
-        a = (n) ? 1 : 0; // start from the first or no repeat
-    }
-
-    if (a === 0) { // just the first
-        if (reverse) {
-            b = siblings.length - b + 1; 
-        }
-
-        if (siblings[b - 1] === node) {
-            return true;
-        } else {
-            return false;
-        }
-
-    } else if (a < 0) {
-        reverse = !!reverse;
-        a = Math.abs(a);
-    }
-
-    if (!reverse) {
-        for (var i = b - 1, len = siblings.length; i < len; i += a) {
-            if ( i >= 0 && siblings[i] === node ) {
-                return true;
-            }
-        }
-    } else {
-        for (var i = siblings.length - b, len = siblings.length; i >= 0; i -= a) {
-            if ( i < len && siblings[i] === node ) {
-                return true;
-            }
-        }
-    }
-    return false;
-};
-
-var getId = function(attr) {
-    for (var i = 0, len = attr.length; i < len; ++i) {
-        if (attr[i][0] == 'id' && attr[i][1] === '=') {
-            return attr[i][2];
-        }
-    }
-};
-
-var getIdTokenIndex = function(tokens) {
-    for (var i = 0, len = tokens.length; i < len; ++i) {
-        if (getId(tokens[i].attributes)) {
-            return i;
-        }
-    }
-    return -1;
-};
-
-var patterns = {
-    tag: /^((?:-?[_a-z]+[\w-]*)|\*)/i,
-    attributes: /^\[([a-z]+\w*)+([~\|\^\$\*!=]=?)?['"]?([^\]]*?)['"]?\]/i,
-    //attributes: /^\[([a-z]+\w*)+([~\|\^\$\*!=]=?)?['"]?([^'"\]]*)['"]?\]*/i,
-    pseudos: /^:([-\w]+)(?:\(['"]?(.+)['"]?\))*/i,
-    combinator: /^\s*([>+~]|\s)\s*/
-};
-
-/**
-    Break selector into token units per simple selector.
-    Combinator is attached to left-hand selector.
- */
-var tokenize = function(selector) {
-    var token = {},     // one token per simple selector (left selector holds combinator)
-        tokens = [],    // array of tokens
-        id,             // unique id for the simple selector (if found)
-        found = false,  // whether or not any matches were found this pass
-        match;          // the regex match
-
-    selector = replaceShorthand(selector); // convert ID and CLASS shortcuts to attributes
-
-    /*
-        Search for selector patterns, store, and strip them from the selector string
-        until no patterns match (invalid selector) or we run out of chars.
-
-        Multiple attributes and pseudos are allowed, in any order.
-        for example:
-            'form:first-child[type=button]:not(button)[lang|=en]'
-    */
-    do {
-        found = false; // reset after full pass
-        for (var re in patterns) {
-                if (!YAHOO.lang.hasOwnProperty(patterns, re)) {
-                    continue;
-                }
-                if (re != 'tag' && re != 'combinator') { // only one allowed
-                    token[re] = token[re] || [];
-                }
-            if (match = patterns[re].exec(selector)) { // note assignment
-                found = true;
-                if (re != 'tag' && re != 'combinator') { // only one allowed
-                    //token[re] = token[re] || [];
-
-                    // capture ID for fast path to element
-                    if (re === 'attributes' && match[1] === 'id') {
-                        token.id = match[3];
-                    }
-
-                    token[re].push(match.slice(1));
-                } else { // single selector (tag, combinator)
-                    token[re] = match[1];
-                }
-                selector = selector.replace(match[0], ''); // strip current match from selector
-                if (re === 'combinator' || !selector.length) { // next token or done
-                    token.attributes = fixAttributes(token.attributes);
-                    token.pseudos = token.pseudos || [];
-                    token.tag = token.tag ? token.tag.toUpperCase() : '*';
-                    tokens.push(token);
-
-                    token = { // prep next token
-                        previous: token
-                    };
-                }
-            }
-        }
-    } while (found);
-
-    return tokens;
-};
-
-var fixAttributes = function(attr) {
-    var aliases = Selector.attrAliases;
-    attr = attr || [];
-    for (var i = 0, len = attr.length; i < len; ++i) {
-        if (aliases[attr[i][0]]) { // convert reserved words, etc
-            attr[i][0] = aliases[attr[i][0]];
-        }
-        if (!attr[i][1]) { // use exists operator
-            attr[i][1] = '';
-        }
-    }
-    return attr;
-};
-
-var replaceShorthand = function(selector) {
-    var shorthand = Selector.shorthand;
-    var attrs = selector.match(patterns.attributes); // pull attributes to avoid false pos on "." and "#"
-    if (attrs) {
-        selector = selector.replace(patterns.attributes, 'REPLACED_ATTRIBUTE');
-    }
-    for (var re in shorthand) {
-        if (!YAHOO.lang.hasOwnProperty(shorthand, re)) {
-            continue;
-        }
-        selector = selector.replace(getRegExp(re, 'gi'), shorthand[re]);
-    }
-
-    if (attrs) {
-        for (var i = 0, len = attrs.length; i < len; ++i) {
-            selector = selector.replace('REPLACED_ATTRIBUTE', attrs[i]);
-        }
-    }
-    return selector;
-};
-
-Selector = new Selector();
-Selector.patterns = patterns;
-Y.Selector = Selector;
-
-if (YAHOO.env.ua.ie) { // rewrite class for IE (others use getAttribute('class')
-    Y.Selector.attrAliases['class'] = 'className';
-    Y.Selector.attrAliases['for'] = 'htmlFor';
-}
-
-})();
-YAHOO.register("selector", YAHOO.util.Selector, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/README b/eclipse.org-common/yui/2.6.0/build/slider/README
deleted file mode 100644
index aa06bf7..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/README
+++ /dev/null
@@ -1,114 +0,0 @@
-Slider - Release Notes
-
-2.6.0
-    * Vertical DualSlider correctly calculates minRange
-    * Correct handling of backgroundEnabled and lock()ing
-    * Added basic skin and image assets
-    * verifyOffset correction for background element moving in response to change event handler
-    * Target x,y rounded in response to FF (at least) producing subpixel coords
-    * _slideEnd now cleans state before firing slideEnd event
-
-2.5.2
-    * No change
-
-2.5.1
-    * No change
-
-2.5.0
-    * Slider onDrag now calls fireEvents, so bg mousedown, drag, mouseup fires change events
-    * Slider uses new dragOnly=true property added in dragdrop
-    * Introduced DualSlider
-
-2.4.0
-    * No change
-
-2.3.1
-
-   * getValue will return the last value or 0 rather than NaN if the control 
-     is display:none.
-
-   * The slider will not fire slideStart/change/slideEnd events during its
-     initial setup unless setValue was called prior to initialization.
-
-   * slideStart/slideEnd now fire consistently among the various methods of
-     changing the slider value (setValue, bg click, thumb drag).  A bg click
-     and drag continuation will result in two start/end events.
-
-   * Added a silent flag to setValue and setRegionValue to silence all of the
-     events during that operation.
-
-2.3.0
-   * Added valueChangeSource, which specifies whether the last value change
-     was the result of user interaction with the control, or a result of a
-     programmatic update (setValue)
-
-2.2.2
-   * No change
-
-2.2.1
-   * No change
-
-2.2.0
-   * Added the missing "force" parameter to the signature for setRegionValue
-   * Deprecated the moveComplete flag
-
-0.12.2
-   * No change
-
-0.12.1
-
-   * Removed unnecessary getXY calls that were contributing to slower performance
-     in FireFox when the slider was deeply nested in the DOM.
-
-0.12.0
-
-   * Added "slideStart", "slideEnd", and "change" custom events.  The abstract
-     methods these will eventually replace still work.
-
-   * The default animation duration is 0.2 seconds (reduced from 0.4 seconds),
-     and is configurable via the animationDuration property.
-
-   * Keyboard navigation is now built in.  The background needs a tabindex for
-     keyboard nav to work.  Keyboard nav can be disabled by setting enableKeys
-     to false.  The number of pixels the slider moves when the arrow keys
-     are pressed is controlled by keyIncrement, and defaults to 20.  Note, 
-     Safari support limited to background element types that support focus
-     in that browser. http://bugs.webkit.org/show_bug.cgi?id=7138
-
-   * Fixed broken doctype in examples/index.html
-
-   * Catching an unhandled script exception in FF that could occur when
-     attempting to focus the slider background while a text field without
-     autocomplete="false" has focus
-
-0.11.3
-
-   * No change
-
-0.11.0
-
-   * When the thumb is clicked and dragged, the click position delta is properly
-     applied.
-
-   * The slider background can be disabled by setting backgroundEnabled to false.
-
-   * Added SliderThumb->clearTicks
-
-   * Incorporated updated drag and drop performance improvements
-
-0.10.0
-
-   * Drag and drop's autoscroll feature is now turned off by default
-     in the slider.
-
-   * The slider no longer sets its initial value upon initialization
-
-   * RGB slider example fixed for IE7.
-
-   * Updated to work with the onAvailable feature in Drag and Drop.
-
-   * Updated the basic slider example page to make the control more
-     accessible to non-FF1.5 browsers.
-
-   * Split the examples into separate pages
-
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/bg-fader.gif b/eclipse.org-common/yui/2.6.0/build/slider/assets/bg-fader.gif
deleted file mode 100644
index 7db8eb7..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/bg-fader.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/bg-h.gif b/eclipse.org-common/yui/2.6.0/build/slider/assets/bg-h.gif
deleted file mode 100644
index 9962889..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/bg-h.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/bg-v-e.gif b/eclipse.org-common/yui/2.6.0/build/slider/assets/bg-v-e.gif
deleted file mode 100644
index d2a4216..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/bg-v-e.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/bg-v.gif b/eclipse.org-common/yui/2.6.0/build/slider/assets/bg-v.gif
deleted file mode 100644
index 8e287cd..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/bg-v.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/left-thumb.png b/eclipse.org-common/yui/2.6.0/build/slider/assets/left-thumb.png
deleted file mode 100644
index ca90ecb..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/left-thumb.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/right-thumb.png b/eclipse.org-common/yui/2.6.0/build/slider/assets/right-thumb.png
deleted file mode 100644
index 09e5d27..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/right-thumb.png
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/skins/sam/slider-skin.css b/eclipse.org-common/yui/2.6.0/build/slider/assets/skins/sam/slider-skin.css
deleted file mode 100644
index fc5c140..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/skins/sam/slider-skin.css
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-skin-sam .yui-h-slider {
-    background: url(../../bg-h.gif) no-repeat 5px 0;
-    height: 28px;
-    width: 228px;
-}
-.yui-skin-sam .yui-h-slider .yui-slider-thumb {
-    top: 4px;
-}
-
-.yui-skin-sam .yui-v-slider {
-    background: url(../../bg-v.gif) no-repeat 12px 0;
-    height: 228px;
-    width: 48px;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/skins/sam/slider.css b/eclipse.org-common/yui/2.6.0/build/slider/assets/skins/sam/slider.css
deleted file mode 100644
index 073d43e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/skins/sam/slider.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-h-slider,.yui-v-slider{position:relative;}.yui-h-slider .yui-slider-thumb,.yui-v-slider .yui-slider-thumb{position:absolute;cursor:default;}.yui-skin-sam .yui-h-slider{background:url(../../bg-h.gif) no-repeat 5px 0;height:28px;width:228px;}.yui-skin-sam .yui-h-slider .yui-slider-thumb{top:4px;}.yui-skin-sam .yui-v-slider{background:url(../../bg-v.gif) no-repeat 12px 0;height:228px;width:48px;}
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/slider-core.css b/eclipse.org-common/yui/2.6.0/build/slider/assets/slider-core.css
deleted file mode 100644
index c56485f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/slider-core.css
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-h-slider,
-.yui-v-slider {
-    position: relative;
-}
-.yui-h-slider .yui-slider-thumb,
-.yui-v-slider .yui-slider-thumb {
-    position: absolute;
-    cursor: default;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-bar.gif b/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-bar.gif
deleted file mode 100644
index cb5b733..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-bar.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-e.gif b/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-e.gif
deleted file mode 100644
index b2f3301..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-e.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-fader.gif b/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-fader.gif
deleted file mode 100644
index 5eb6aab..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-fader.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-n.gif b/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-n.gif
deleted file mode 100644
index c91a332..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-n.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-s.gif b/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-s.gif
deleted file mode 100644
index a0670a4..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-s.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-w.gif b/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-w.gif
deleted file mode 100644
index 79b3101..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/assets/thumb-w.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/slider-debug.js b/eclipse.org-common/yui/2.6.0/build/slider/slider-debug.js
deleted file mode 100644
index c14f423..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/slider-debug.js
+++ /dev/null
@@ -1,1976 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The Slider component is a UI control that enables the user to adjust 
- * values in a finite range along one or two axes. Typically, the Slider 
- * control is used in a web application as a rich, visual replacement 
- * for an input box that takes a number as input. The Slider control can 
- * also easily accommodate a second dimension, providing x,y output for 
- * a selection point chosen from a rectangular region.
- *
- * @module    slider
- * @title     Slider Widget
- * @namespace YAHOO.widget
- * @requires  yahoo,dom,dragdrop,event
- * @optional  animation
- */
-
-/**
- * A DragDrop implementation that can be used as a background for a
- * slider.  It takes a reference to the thumb instance 
- * so it can delegate some of the events to it.  The goal is to make the 
- * thumb jump to the location on the background when the background is 
- * clicked.  
- *
- * @class Slider
- * @extends YAHOO.util.DragDrop
- * @uses YAHOO.util.EventProvider
- * @constructor
- * @param {String}      id     The id of the element linked to this instance
- * @param {String}      sGroup The group of related DragDrop items
- * @param {SliderThumb} oThumb The thumb for this slider
- * @param {String}      sType  The type of slider (horiz, vert, region)
- */
-YAHOO.widget.Slider = function(sElementId, sGroup, oThumb, sType) {
-
-    YAHOO.widget.Slider.ANIM_AVAIL = 
-        (!YAHOO.lang.isUndefined(YAHOO.util.Anim));
-
-    if (sElementId) {
-        this.init(sElementId, sGroup, true);
-        this.initSlider(sType);
-        this.initThumb(oThumb);
-    }
-};
-
-/**
- * Factory method for creating a horizontal slider
- * @method YAHOO.widget.Slider.getHorizSlider
- * @static
- * @param {String} sBGElId the id of the slider's background element
- * @param {String} sHandleElId the id of the thumb element
- * @param {int} iLeft the number of pixels the element can move left
- * @param {int} iRight the number of pixels the element can move right
- * @param {int} iTickSize optional parameter for specifying that the element 
- * should move a certain number pixels at a time.
- * @return {Slider} a horizontal slider control
- */
-YAHOO.widget.Slider.getHorizSlider = 
-    function (sBGElId, sHandleElId, iLeft, iRight, iTickSize) {
-        return new YAHOO.widget.Slider(sBGElId, sBGElId, 
-            new YAHOO.widget.SliderThumb(sHandleElId, sBGElId, 
-                               iLeft, iRight, 0, 0, iTickSize), "horiz");
-};
-
-/**
- * Factory method for creating a vertical slider
- * @method YAHOO.widget.Slider.getVertSlider
- * @static
- * @param {String} sBGElId the id of the slider's background element
- * @param {String} sHandleElId the id of the thumb element
- * @param {int} iUp the number of pixels the element can move up
- * @param {int} iDown the number of pixels the element can move down
- * @param {int} iTickSize optional parameter for specifying that the element 
- * should move a certain number pixels at a time.
- * @return {Slider} a vertical slider control
- */
-YAHOO.widget.Slider.getVertSlider = 
-    function (sBGElId, sHandleElId, iUp, iDown, iTickSize) {
-        return new YAHOO.widget.Slider(sBGElId, sBGElId, 
-            new YAHOO.widget.SliderThumb(sHandleElId, sBGElId, 0, 0, 
-                               iUp, iDown, iTickSize), "vert");
-};
-
-/**
- * Factory method for creating a slider region like the one in the color
- * picker example
- * @method YAHOO.widget.Slider.getSliderRegion
- * @static
- * @param {String} sBGElId the id of the slider's background element
- * @param {String} sHandleElId the id of the thumb element
- * @param {int} iLeft the number of pixels the element can move left
- * @param {int} iRight the number of pixels the element can move right
- * @param {int} iUp the number of pixels the element can move up
- * @param {int} iDown the number of pixels the element can move down
- * @param {int} iTickSize optional parameter for specifying that the element 
- * should move a certain number pixels at a time.
- * @return {Slider} a slider region control
- */
-YAHOO.widget.Slider.getSliderRegion = 
-    function (sBGElId, sHandleElId, iLeft, iRight, iUp, iDown, iTickSize) {
-        return new YAHOO.widget.Slider(sBGElId, sBGElId, 
-            new YAHOO.widget.SliderThumb(sHandleElId, sBGElId, iLeft, iRight, 
-                               iUp, iDown, iTickSize), "region");
-};
-
-/**
- * By default, animation is available if the animation utility is detected.
- * @property YAHOO.widget.Slider.ANIM_AVAIL
- * @static
- * @type boolean
- */
-YAHOO.widget.Slider.ANIM_AVAIL = false;
-
-YAHOO.extend(YAHOO.widget.Slider, YAHOO.util.DragDrop, {
-
-    /**
-     * Override the default setting of dragOnly to true.
-     * @property dragOnly
-     * @type boolean
-     * @default true
-     */
-    dragOnly : true,
-
-    /**
-     * Initializes the slider.  Executed in the constructor
-     * @method initSlider
-     * @param {string} sType the type of slider (horiz, vert, region)
-     */
-    initSlider: function(sType) {
-
-        /**
-         * The type of the slider (horiz, vert, region)
-         * @property type
-         * @type string
-         */
-        this.type = sType;
-
-        //this.removeInvalidHandleType("A");
-
-        this.logger = new YAHOO.widget.LogWriter(this.toString());
-
-        /**
-         * Event the fires when the value of the control changes.  If 
-         * the control is animated the event will fire every point
-         * along the way.
-         * @event change
-         * @param {int} newOffset|x the new offset for normal sliders, or the new
-         *                          x offset for region sliders
-         * @param {int} y the number of pixels the thumb has moved on the y axis
-         *                (region sliders only)
-         */
-        this.createEvent("change", this);
-
-        /**
-         * Event that fires at the beginning of a slider thumb move.
-         * @event slideStart
-         */
-        this.createEvent("slideStart", this);
-
-        /**
-         * Event that fires at the end of a slider thumb move
-         * @event slideEnd
-         */
-        this.createEvent("slideEnd", this);
-
-        /**
-         * Overrides the isTarget property in YAHOO.util.DragDrop
-         * @property isTarget
-         * @private
-         */
-        this.isTarget = false;
-    
-        /**
-         * Flag that determines if the thumb will animate when moved
-         * @property animate
-         * @type boolean
-         */
-        this.animate = YAHOO.widget.Slider.ANIM_AVAIL;
-
-        /**
-         * Set to false to disable a background click thumb move
-         * @property backgroundEnabled
-         * @type boolean
-         */
-        this.backgroundEnabled = true;
-
-        /**
-         * Adjustment factor for tick animation, the more ticks, the
-         * faster the animation (by default)
-         * @property tickPause
-         * @type int
-         */
-        this.tickPause = 40;
-
-        /**
-         * Enables the arrow, home and end keys, defaults to true.
-         * @property enableKeys
-         * @type boolean
-         */
-        this.enableKeys = true;
-
-        /**
-         * Specifies the number of pixels the arrow keys will move the slider.
-         * Default is 20.
-         * @property keyIncrement
-         * @type int
-         */
-        this.keyIncrement = 20;
-
-        /**
-         * moveComplete is set to true when the slider has moved to its final
-         * destination.  For animated slider, this value can be checked in 
-         * the onChange handler to make it possible to execute logic only
-         * when the move is complete rather than at all points along the way.
-         * Deprecated because this flag is only useful when the background is
-         * clicked and the slider is animated.  If the user drags the thumb,
-         * the flag is updated when the drag is over ... the final onDrag event
-         * fires before the mouseup the ends the drag, so the implementer will
-         * never see it.
-         *
-         * @property moveComplete
-         * @type Boolean
-         * @deprecated use the slideEnd event instead
-         */
-        this.moveComplete = true;
-
-        /**
-         * If animation is configured, specifies the length of the animation
-         * in seconds.
-         * @property animationDuration
-         * @type int
-         * @default 0.2
-         */
-        this.animationDuration = 0.2;
-
-        /**
-         * Constant for valueChangeSource, indicating that the user clicked or
-         * dragged the slider to change the value.
-         * @property SOURCE_UI_EVENT
-         * @final
-         * @default 1
-         */
-        this.SOURCE_UI_EVENT = 1;
-
-        /**
-         * Constant for valueChangeSource, indicating that the value was altered
-         * by a programmatic call to setValue/setRegionValue.
-         * @property SOURCE_SET_VALUE
-         * @final
-         * @default 2
-         */
-        this.SOURCE_SET_VALUE = 2;
-
-        /**
-         * When the slider value changes, this property is set to identify where
-         * the update came from.  This will be either 1, meaning the slider was
-         * clicked or dragged, or 2, meaning that it was set via a setValue() call.
-         * This can be used within event handlers to apply some of the logic only
-         * when dealing with one source or another.
-         * @property valueChangeSource
-         * @type int
-         * @since 2.3.0
-         */
-        this.valueChangeSource = 0;
-
-        /**
-         * Indicates whether or not events will be supressed for the current
-         * slide operation
-         * @property _silent
-         * @type boolean
-         * @private
-         */
-        this._silent = false;
-
-        /**
-         * Saved offset used to protect against NaN problems when slider is
-         * set to display:none
-         * @property lastOffset
-         * @type [int, int]
-         */
-        this.lastOffset = [0,0];
-    },
-
-    /**
-     * Initializes the slider's thumb. Executed in the constructor.
-     * @method initThumb
-     * @param {YAHOO.widget.SliderThumb} t the slider thumb
-     */
-    initThumb: function(t) {
-
-        var self = this;
-
-        /**
-         * A YAHOO.widget.SliderThumb instance that we will use to 
-         * reposition the thumb when the background is clicked
-         * @property thumb
-         * @type YAHOO.widget.SliderThumb
-         */
-        this.thumb = t;
-        t.cacheBetweenDrags = true;
-
-        // add handler for the handle onchange event
-        //t.onChange = function() { 
-            //self.handleThumbChange(); 
-        //};
-
-        if (t._isHoriz && t.xTicks && t.xTicks.length) {
-            this.tickPause = Math.round(360 / t.xTicks.length);
-        } else if (t.yTicks && t.yTicks.length) {
-            this.tickPause = Math.round(360 / t.yTicks.length);
-        }
-
-        this.logger.log("tickPause: " + this.tickPause);
-
-        // delegate thumb methods
-        t.onAvailable = function() { 
-                return self.setStartSliderState(); 
-            };
-        t.onMouseDown = function () { 
-                return self.focus(); 
-            };
-        t.startDrag = function() { 
-                self._slideStart(); 
-            };
-        t.onDrag = function() { 
-                self.fireEvents(true); 
-            };
-        t.onMouseUp = function() { 
-                self.thumbMouseUp(); 
-            };
-
-    },
-
-    /**
-     * Executed when the slider element is available
-     * @method onAvailable
-     */
-    onAvailable: function() {
-        var Event = YAHOO.util.Event;
-        Event.on(this.id, "keydown",  this.handleKeyDown,  this, true);
-        Event.on(this.id, "keypress", this.handleKeyPress, this, true);
-    },
- 
-    /**
-     * Executed when a keypress event happens with the control focused.
-     * Prevents the default behavior for navigation keys.  The actual
-     * logic for moving the slider thumb in response to a key event
-     * happens in handleKeyDown.
-     * @param {Event} e the keypress event
-     */
-    handleKeyPress: function(e) {
-        if (this.enableKeys) {
-            var Event = YAHOO.util.Event;
-            var kc = Event.getCharCode(e);
-            switch (kc) {
-                case 0x25: // left
-                case 0x26: // up
-                case 0x27: // right
-                case 0x28: // down
-                case 0x24: // home
-                case 0x23: // end
-                    Event.preventDefault(e);
-                    break;
-                default:
-            }
-        }
-    },
-
-    /**
-     * Executed when a keydown event happens with the control focused.
-     * Updates the slider value and display when the keypress is an
-     * arrow key, home, or end as long as enableKeys is set to true.
-     * @param {Event} e the keydown event
-     */
-    handleKeyDown: function(e) {
-        if (this.enableKeys) {
-            var Event = YAHOO.util.Event;
-
-            var kc = Event.getCharCode(e), t=this.thumb;
-            var h=this.getXValue(),v=this.getYValue();
-
-            var horiz = false;
-            var changeValue = true;
-            switch (kc) {
-
-                // left
-                case 0x25: h -= this.keyIncrement; break;
-
-                // up
-                case 0x26: v -= this.keyIncrement; break;
-
-                // right
-                case 0x27: h += this.keyIncrement; break;
-
-                // down
-                case 0x28: v += this.keyIncrement; break;
-
-                // home
-                case 0x24: h = t.leftConstraint;    
-                           v = t.topConstraint;    
-                           break;
-
-                // end
-                case 0x23: h = t.rightConstraint; 
-                           v = t.bottomConstraint;    
-                           break;
-
-                default:   changeValue = false;
-            }
-
-            if (changeValue) {
-                if (t._isRegion) {
-                    this.setRegionValue(h, v, true);
-                } else {
-                    var newVal = (t._isHoriz) ? h : v;
-                    this.setValue(newVal, true);
-                }
-                Event.stopEvent(e);
-            }
-
-        }
-    },
-
-    /**
-     * Initialization that sets up the value offsets once the elements are ready
-     * @method setStartSliderState
-     */
-    setStartSliderState: function() {
-
-        this.logger.log("Fixing state");
-
-        this.setThumbCenterPoint();
-
-        /**
-         * The basline position of the background element, used
-         * to determine if the background has moved since the last
-         * operation.
-         * @property baselinePos
-         * @type [int, int]
-         */
-        this.baselinePos = YAHOO.util.Dom.getXY(this.getEl());
-
-        this.thumb.startOffset = this.thumb.getOffsetFromParent(this.baselinePos);
-
-        if (this.thumb._isRegion) {
-            if (this.deferredSetRegionValue) {
-                this.setRegionValue.apply(this, this.deferredSetRegionValue);
-                this.deferredSetRegionValue = null;
-            } else {
-                this.setRegionValue(0, 0, true, true, true);
-            }
-        } else {
-            if (this.deferredSetValue) {
-                this.setValue.apply(this, this.deferredSetValue);
-                this.deferredSetValue = null;
-            } else {
-                this.setValue(0, true, true, true);
-            }
-        }
-    },
-
-    /**
-     * When the thumb is available, we cache the centerpoint of the element so
-     * we can position the element correctly when the background is clicked
-     * @method setThumbCenterPoint
-     */
-    setThumbCenterPoint: function() {
-
-        var el = this.thumb.getEl();
-
-        if (el) {
-            /**
-             * The center of the slider element is stored so we can 
-             * place it in the correct position when the background is clicked.
-             * @property thumbCenterPoint
-             * @type {"x": int, "y": int}
-             */
-            this.thumbCenterPoint = { 
-                    x: parseInt(el.offsetWidth/2, 10), 
-                    y: parseInt(el.offsetHeight/2, 10) 
-            };
-        }
-
-    },
-
-    /**
-     * Locks the slider, overrides YAHOO.util.DragDrop
-     * @method lock
-     */
-    lock: function() {
-        this.logger.log("locking");
-        this.thumb.lock();
-        this.locked = true;
-    },
-
-    /**
-     * Unlocks the slider, overrides YAHOO.util.DragDrop
-     * @method unlock
-     */
-    unlock: function() {
-        this.logger.log("unlocking");
-        this.thumb.unlock();
-        this.locked = false;
-    },
-
-    /**
-     * Handles mouseup event on the thumb
-     * @method thumbMouseUp
-     * @private
-     */
-    thumbMouseUp: function() {
-        this.logger.log("thumb mouseup");
-        if (!this.isLocked() && !this.moveComplete) {
-            this.endMove();
-        }
-
-    },
-
-    onMouseUp: function() {
-        this.logger.log("bg mouseup");
-        if (this.backgroundEnabled && !this.isLocked() && !this.moveComplete) {
-            this.endMove();
-        }
-    },
-
-    /**
-     * Returns a reference to this slider's thumb
-     * @method getThumb
-     * @return {SliderThumb} this slider's thumb
-     */
-    getThumb: function() {
-        return this.thumb;
-    },
-
-    /**
-     * Try to focus the element when clicked so we can add
-     * accessibility features
-     * @method focus
-     * @private
-     */
-    focus: function() {
-        this.logger.log("focus");
-        this.valueChangeSource = this.SOURCE_UI_EVENT;
-
-        // Focus the background element if possible
-        var el = this.getEl();
-
-        if (el.focus) {
-            try {
-                el.focus();
-            } catch(e) {
-                // Prevent permission denied unhandled exception in FF that can
-                // happen when setting focus while another element is handling
-                // the blur.  @TODO this is still writing to the error log 
-                // (unhandled error) in FF1.5 with strict error checking on.
-            }
-        }
-
-        this.verifyOffset();
-
-        if (this.isLocked()) {
-            return false;
-        } else {
-            this._slideStart();
-            return true;
-        }
-    },
-
-    /**
-     * Event that fires when the value of the slider has changed
-     * @method onChange
-     * @param {int} firstOffset the number of pixels the thumb has moved
-     * from its start position. Normal horizontal and vertical sliders will only
-     * have the firstOffset.  Regions will have both, the first is the horizontal
-     * offset, the second the vertical.
-     * @param {int} secondOffset the y offset for region sliders
-     * @deprecated use instance.subscribe("change") instead
-     */
-    onChange: function (firstOffset, secondOffset) { 
-        /* override me */ 
-        this.logger.log("onChange: " + firstOffset + ", " + secondOffset);
-    },
-
-    /**
-     * Event that fires when the at the beginning of the slider thumb move
-     * @method onSlideStart
-     * @deprecated use instance.subscribe("slideStart") instead
-     */
-    onSlideStart: function () { 
-        /* override me */ 
-        this.logger.log("onSlideStart");
-    },
-
-    /**
-     * Event that fires at the end of a slider thumb move
-     * @method onSliderEnd
-     * @deprecated use instance.subscribe("slideEnd") instead
-     */
-    onSlideEnd: function () { 
-        /* override me */ 
-        this.logger.log("onSlideEnd");
-    },
-
-    /**
-     * Returns the slider's thumb offset from the start position
-     * @method getValue
-     * @return {int} the current value
-     */
-    getValue: function () { 
-        return this.thumb.getValue();
-    },
-
-    /**
-     * Returns the slider's thumb X offset from the start position
-     * @method getXValue
-     * @return {int} the current horizontal offset
-     */
-    getXValue: function () { 
-        return this.thumb.getXValue();
-    },
-
-    /**
-     * Returns the slider's thumb Y offset from the start position
-     * @method getYValue
-     * @return {int} the current vertical offset
-     */
-    getYValue: function () { 
-        return this.thumb.getYValue();
-    },
-
-    /**
-     * Internal handler for the slider thumb's onChange event
-     * @method handleThumbChange
-     * @private
-     */
-    handleThumbChange: function () { 
-        /*
-        var t = this.thumb;
-        if (t._isRegion) {
-
-            if (!this._silent) {
-                t.onChange(t.getXValue(), t.getYValue());
-                this.fireEvent("change", { x: t.getXValue(), y: t.getYValue() } );
-            }
-        } else {
-            if (!this._silent) {
-                t.onChange(t.getValue());
-                this.fireEvent("change", t.getValue());
-            }
-        }
-        */
-
-    },
-
-    /**
-     * Provides a way to set the value of the slider in code.
-     * @method setValue
-     * @param {int} newOffset the number of pixels the thumb should be
-     * positioned away from the initial start point 
-     * @param {boolean} skipAnim set to true to disable the animation
-     * for this move action (but not others).
-     * @param {boolean} force ignore the locked setting and set value anyway
-     * @param {boolean} silent when true, do not fire events
-     * @return {boolean} true if the move was performed, false if it failed
-     */
-    setValue: function(newOffset, skipAnim, force, silent) {
-        this.logger.log("setValue " + newOffset);
-
-        this._silent = silent;
-        this.valueChangeSource = this.SOURCE_SET_VALUE;
-
-        if (!this.thumb.available) {
-            this.logger.log("defer setValue until after onAvailble");
-            this.deferredSetValue = arguments;
-            return false;
-        }
-
-        if (this.isLocked() && !force) {
-            this.logger.log("Can't set the value, the control is locked");
-            return false;
-        }
-
-        if ( isNaN(newOffset) ) {
-            this.logger.log("setValue, Illegal argument: " + newOffset);
-            return false;
-        }
-
-        var t = this.thumb;
-        t.lastOffset = [newOffset, newOffset];
-        var newX, newY;
-        this.verifyOffset(true);
-        if (t._isRegion) {
-            return false;
-        } else if (t._isHoriz) {
-            this._slideStart();
-            // this.fireEvent("slideStart");
-            newX = t.initPageX + newOffset + this.thumbCenterPoint.x;
-            this.moveThumb(newX, t.initPageY, skipAnim);
-        } else {
-            this._slideStart();
-            // this.fireEvent("slideStart");
-            newY = t.initPageY + newOffset + this.thumbCenterPoint.y;
-            this.moveThumb(t.initPageX, newY, skipAnim);
-        }
-
-        return true;
-    },
-
-    /**
-     * Provides a way to set the value of the region slider in code.
-     * @method setRegionValue
-     * @param {int} newOffset the number of pixels the thumb should be
-     * positioned away from the initial start point (x axis for region)
-     * @param {int} newOffset2 the number of pixels the thumb should be
-     * positioned away from the initial start point (y axis for region)
-     * @param {boolean} skipAnim set to true to disable the animation
-     * for this move action (but not others).
-     * @param {boolean} force ignore the locked setting and set value anyway
-     * @param {boolean} silent when true, do not fire events
-     * @return {boolean} true if the move was performed, false if it failed
-     */
-    setRegionValue: function(newOffset, newOffset2, skipAnim, force, silent) {
-
-        this._silent = silent;
-
-        this.valueChangeSource = this.SOURCE_SET_VALUE;
-
-        if (!this.thumb.available) {
-            this.logger.log("defer setRegionValue until after onAvailble");
-            this.deferredSetRegionValue = arguments;
-            return false;
-        }
-
-        if (this.isLocked() && !force) {
-            this.logger.log("Can't set the value, the control is locked");
-            return false;
-        }
-
-        if ( isNaN(newOffset) ) {
-            this.logger.log("setRegionValue, Illegal argument: " + newOffset);
-            return false;
-        }
-
-        var t = this.thumb;
-        t.lastOffset = [newOffset, newOffset2];
-        this.verifyOffset(true);
-        if (t._isRegion) {
-            this._slideStart();
-            var newX = t.initPageX + newOffset + this.thumbCenterPoint.x;
-            var newY = t.initPageY + newOffset2 + this.thumbCenterPoint.y;
-            this.moveThumb(newX, newY, skipAnim);
-            return true;
-        }
-
-        return false;
-
-    },
-
-    /**
-     * Checks the background position element position.  If it has moved from the
-     * baseline position, the constraints for the thumb are reset
-     * @param checkPos {boolean} check the position instead of using cached value
-     * @method verifyOffset
-     * @return {boolean} True if the offset is the same as the baseline.
-     */
-    verifyOffset: function(checkPos) {
-
-        var xy = YAHOO.util.Dom.getXY(this.getEl()),
-            t  = this.thumb;
-
-        if (xy) {
-
-            this.logger.log("newPos: " + xy);
-
-            if (xy[0] != this.baselinePos[0] || xy[1] != this.baselinePos[1]) {
-                this.logger.log("background moved, resetting constraints");
-
-                // Reset background
-                this.setInitPosition();
-                this.baselinePos = xy;
-
-                // Reset thumb
-                t.initPageX = this.initPageX + t.startOffset[0];
-                t.initPageY = this.initPageY + t.startOffset[1];
-                //t.deltaSetXY = [-this.initPageX,-this.initPageY];
-                t.deltaSetXY = null;
-                //this.resetConstraints();
-                this.resetThumbConstraints();
-
-                return false;
-            }
-        }
-
-        return true;
-    },
-
-    /**
-     * Move the associated slider moved to a timeout to try to get around the 
-     * mousedown stealing moz does when I move the slider element between the 
-     * cursor and the background during the mouseup event
-     * @method moveThumb
-     * @param {int} x the X coordinate of the click
-     * @param {int} y the Y coordinate of the click
-     * @param {boolean} skipAnim don't animate if the move happend onDrag
-     * @param {boolean} midMove set to true if this is not terminating
-     * the slider movement
-     * @private
-     */
-    moveThumb: function(x, y, skipAnim, midMove) {
-
-        var t = this.thumb;
-        var self = this;
-
-        if (!t.available) {
-            this.logger.log("thumb is not available yet, aborting move");
-            return;
-        }
-
-        this.logger.log("move thumb, x: "  + x + ", y: " + y);
-
-        t.setDelta(this.thumbCenterPoint.x, this.thumbCenterPoint.y);
-
-        var _p = t.getTargetCoord(x, y);
-        var p = [Math.round(_p.x), Math.round(_p.y)];
-
-        this._slideStart();
-
-        if (this.animate && YAHOO.widget.Slider.ANIM_AVAIL && t._graduated && !skipAnim) {
-            this.logger.log("graduated");
-            // this.thumb._animating = true;
-            this.lock();
-
-            // cache the current thumb pos
-            this.curCoord = YAHOO.util.Dom.getXY(this.thumb.getEl());
-            this.curCoord = [Math.round(this.curCoord[0]), Math.round(this.curCoord[1])];
-
-            setTimeout( function() { self.moveOneTick(p); }, this.tickPause );
-
-        } else if (this.animate && YAHOO.widget.Slider.ANIM_AVAIL && !skipAnim) {
-            this.logger.log("animating to " + p);
-
-            // this.thumb._animating = true;
-            this.lock();
-
-            var oAnim = new YAHOO.util.Motion( 
-                    t.id, { points: { to: p } }, 
-                    this.animationDuration, 
-                    YAHOO.util.Easing.easeOut );
-
-            oAnim.onComplete.subscribe( function() { 
-                    
-                    self.endMove(); 
-                } );
-            oAnim.animate();
-        } else {
-            t.setDragElPos(x, y);
-            // this.fireEvents();
-            if (!midMove) {
-                this.endMove();
-            }
-        }
-    },
-
-    _slideStart: function() {
-        if (!this._sliding) {
-            if (!this._silent) {
-                this.onSlideStart();
-                this.fireEvent("slideStart");
-            }
-            this._sliding = true;
-        }
-    },
-
-    _slideEnd: function() {
-
-        if (this._sliding && this.moveComplete) {
-            // Reset state before firing slideEnd
-            var silent = this._silent;
-            this._sliding = false;
-            this._silent = false;
-            this.moveComplete = false;
-            if (!silent) {
-                this.onSlideEnd();
-                this.fireEvent("slideEnd");
-            }
-        }
-    },
-
-    /**
-     * Move the slider one tick mark towards its final coordinate.  Used
-     * for the animation when tick marks are defined
-     * @method moveOneTick
-     * @param {int[]} the destination coordinate
-     * @private
-     */
-    moveOneTick: function(finalCoord) {
-
-        var t = this.thumb, tmp;
-
-
-        // redundant call to getXY since we set the position most of time prior 
-        // to getting here.  Moved to this.curCoord
-        //var curCoord = YAHOO.util.Dom.getXY(t.getEl());
-
-        // alignElWithMouse caches position in lastPageX, lastPageY .. doesn't work
-        //var curCoord = [this.lastPageX, this.lastPageY];
-
-        // var thresh = Math.min(t.tickSize + (Math.floor(t.tickSize/2)), 10);
-        // var thresh = 10;
-        // var thresh = t.tickSize + (Math.floor(t.tickSize/2));
-
-        var nextCoord = null,
-            tmpX, tmpY;
-
-        if (t._isRegion) {
-            nextCoord = this._getNextX(this.curCoord, finalCoord);
-            tmpX = (nextCoord !== null) ? nextCoord[0] : this.curCoord[0];
-            nextCoord = this._getNextY(this.curCoord, finalCoord);
-            tmpY = (nextCoord !== null) ? nextCoord[1] : this.curCoord[1];
-
-            nextCoord = tmpX !== this.curCoord[0] || tmpY !== this.curCoord[1] ?
-                [ tmpX, tmpY ] : null;
-        } else if (t._isHoriz) {
-            nextCoord = this._getNextX(this.curCoord, finalCoord);
-        } else {
-            nextCoord = this._getNextY(this.curCoord, finalCoord);
-        }
-
-        this.logger.log("moveOneTick: " + 
-                " finalCoord: " + finalCoord +
-                " this.curCoord: " + this.curCoord +
-                " nextCoord: " + nextCoord);
-
-        if (nextCoord) {
-
-            // cache the position
-            this.curCoord = nextCoord;
-
-            // move to the next coord
-            // YAHOO.util.Dom.setXY(t.getEl(), nextCoord);
-
-            // var el = t.getEl();
-            // YAHOO.util.Dom.setStyle(el, "left", (nextCoord[0] + this.thumb.deltaSetXY[0]) + "px");
-            // YAHOO.util.Dom.setStyle(el, "top",  (nextCoord[1] + this.thumb.deltaSetXY[1]) + "px");
-
-            this.thumb.alignElWithMouse(t.getEl(), nextCoord[0] + this.thumbCenterPoint.x, nextCoord[1] + this.thumbCenterPoint.y);
-            
-            // check if we are in the final position, if not make a recursive call
-            if (!(nextCoord[0] == finalCoord[0] && nextCoord[1] == finalCoord[1])) {
-                var self = this;
-                setTimeout(function() { self.moveOneTick(finalCoord); }, 
-                        this.tickPause);
-            } else {
-                this.endMove();
-            }
-        } else {
-            this.endMove();
-        }
-
-        //this.tickPause = Math.round(this.tickPause/2);
-    },
-
-    /**
-     * Returns the next X tick value based on the current coord and the target coord.
-     * @method _getNextX
-     * @private
-     */
-    _getNextX: function(curCoord, finalCoord) {
-        this.logger.log("getNextX: " + curCoord + ", " + finalCoord);
-        var t = this.thumb;
-        var thresh;
-        var tmp = [];
-        var nextCoord = null;
-        if (curCoord[0] > finalCoord[0]) {
-            thresh = t.tickSize - this.thumbCenterPoint.x;
-            tmp = t.getTargetCoord( curCoord[0] - thresh, curCoord[1] );
-            nextCoord = [tmp.x, tmp.y];
-        } else if (curCoord[0] < finalCoord[0]) {
-            thresh = t.tickSize + this.thumbCenterPoint.x;
-            tmp = t.getTargetCoord( curCoord[0] + thresh, curCoord[1] );
-            nextCoord = [tmp.x, tmp.y];
-        } else {
-            // equal, do nothing
-        }
-
-        return nextCoord;
-    },
-
-    /**
-     * Returns the next Y tick value based on the current coord and the target coord.
-     * @method _getNextY
-     * @private
-     */
-    _getNextY: function(curCoord, finalCoord) {
-        var t = this.thumb;
-        var thresh;
-        var tmp = [];
-        var nextCoord = null;
-
-        if (curCoord[1] > finalCoord[1]) {
-            thresh = t.tickSize - this.thumbCenterPoint.y;
-            tmp = t.getTargetCoord( curCoord[0], curCoord[1] - thresh );
-            nextCoord = [tmp.x, tmp.y];
-        } else if (curCoord[1] < finalCoord[1]) {
-            thresh = t.tickSize + this.thumbCenterPoint.y;
-            tmp = t.getTargetCoord( curCoord[0], curCoord[1] + thresh );
-            nextCoord = [tmp.x, tmp.y];
-        } else {
-            // equal, do nothing
-        }
-
-        return nextCoord;
-    },
-
-    /**
-     * Resets the constraints before moving the thumb.
-     * @method b4MouseDown
-     * @private
-     */
-    b4MouseDown: function(e) {
-        if (!this.backgroundEnabled) {
-            return false;
-        }
-
-        this.thumb.autoOffset();
-        //this.thumb.resetConstraints();
-        this.resetThumbConstraints();
-    },
-
-    /**
-     * Handles the mousedown event for the slider background
-     * @method onMouseDown
-     * @private
-     */
-    onMouseDown: function(e) {
-        // this.resetConstraints(true);
-        // this.thumb.resetConstraints(true);
-
-        if (!this.backgroundEnabled || this.isLocked()) {
-            return false;
-        }
-
-        var x = YAHOO.util.Event.getPageX(e);
-        var y = YAHOO.util.Event.getPageY(e);
-        this.logger.log("bg mousedown: " + x + "," + y);
-
-        this.focus();
-        this.moveThumb(x, y);
-    },
-
-    /**
-     * Handles the onDrag event for the slider background
-     * @method onDrag
-     * @private
-     */
-    onDrag: function(e) {
-        if (this.backgroundEnabled && !this.isLocked()) {
-            var x = YAHOO.util.Event.getPageX(e);
-            var y = YAHOO.util.Event.getPageY(e);
-            this.moveThumb(x, y, true, true);
-            this.fireEvents();
-        }
-    },
-
-    /**
-     * Fired when the slider movement ends
-     * @method endMove
-     * @private
-     */
-    endMove: function () {
-        // this._animating = false;
-        this.unlock();
-        this.moveComplete = true;
-        this.fireEvents();
-    },
-
-    /**
-     * Resets the X and Y contraints for the thumb.  Used in lieu of the thumb
-     * instance's inherited resetConstraints because some logic was not
-     * applicable.
-     * @method resetThumbConstraints
-     * @protected
-     */
-    resetThumbConstraints: function () {
-        var t = this.thumb;
-
-        t.setXConstraint(t.leftConstraint, t.rightConstraint, t.xTickSize);
-        t.setYConstraint(t.topConstraint, t.bottomConstraint, t.xTickSize);
-    },
-
-    /**
-     * Fires the change event if the value has been changed.  Ignored if we are in
-     * the middle of an animation as the event will fire when the animation is
-     * complete
-     * @method fireEvents
-     * @param {boolean} thumbEvent set to true if this event is fired from an event
-     *                  that occurred on the thumb.  If it is, the state of the
-     *                  thumb dd object should be correct.  Otherwise, the event
-     *                  originated on the background, so the thumb state needs to
-     *                  be refreshed before proceeding.
-     * @private
-     */
-    fireEvents: function (thumbEvent) {
-
-        var t = this.thumb;
-        // this.logger.log("FireEvents: " + t._isRegion);
-
-        if (!thumbEvent) {
-            t.cachePosition();
-        }
-
-        if (! this.isLocked()) {
-            if (t._isRegion) {
-                this.logger.log("region");
-                var newX = t.getXValue();
-                var newY = t.getYValue();
-
-                if (newX != this.previousX || newY != this.previousY) {
-                    // this.logger.log("Firing onchange");
-                    if (!this._silent) {
-                        this.onChange(newX, newY);
-                        this.fireEvent("change", { x: newX, y: newY });
-                    }
-                }
-
-                this.previousX = newX;
-                this.previousY = newY;
-
-            } else {
-                var newVal = t.getValue();
-                if (newVal != this.previousVal) {
-                    this.logger.log("Firing onchange: " + newVal);
-                    if (!this._silent) {
-                        this.onChange( newVal );
-                        this.fireEvent("change", newVal);
-                    }
-                }
-                this.previousVal = newVal;
-            }
-
-            this._slideEnd();
-
-        }
-    },
-
-    /**
-     * Slider toString
-     * @method toString
-     * @return {string} string representation of the instance
-     */
-    toString: function () { 
-        return ("Slider (" + this.type +") " + this.id);
-    }
-
-});
-
-YAHOO.augment(YAHOO.widget.Slider, YAHOO.util.EventProvider);
-
-/**
- * A drag and drop implementation to be used as the thumb of a slider.
- * @class SliderThumb
- * @extends YAHOO.util.DD
- * @constructor
- * @param {String} id the id of the slider html element
- * @param {String} sGroup the group of related DragDrop items
- * @param {int} iLeft the number of pixels the element can move left
- * @param {int} iRight the number of pixels the element can move right
- * @param {int} iUp the number of pixels the element can move up
- * @param {int} iDown the number of pixels the element can move down
- * @param {int} iTickSize optional parameter for specifying that the element 
- * should move a certain number pixels at a time.
- */
-YAHOO.widget.SliderThumb = function(id, sGroup, iLeft, iRight, iUp, iDown, iTickSize) {
-
-    if (id) {
-        //this.init(id, sGroup);
-        YAHOO.widget.SliderThumb.superclass.constructor.call(this, id, sGroup);
-
-        /**
-         * The id of the thumbs parent HTML element (the slider background 
-         * element).
-         * @property parentElId
-         * @type string
-         */
-        this.parentElId = sGroup;
-    }
-
-
-    //this.removeInvalidHandleType("A");
-
-    this.logger = new YAHOO.widget.LogWriter(this.toString());
-
-    /**
-     * Overrides the isTarget property in YAHOO.util.DragDrop
-     * @property isTarget
-     * @private
-     */
-    this.isTarget = false;
-
-    /**
-     * The tick size for this slider
-     * @property tickSize
-     * @type int
-     * @private
-     */
-    this.tickSize = iTickSize;
-
-    /**
-     * Informs the drag and drop util that the offsets should remain when
-     * resetting the constraints.  This preserves the slider value when
-     * the constraints are reset
-     * @property maintainOffset
-     * @type boolean
-     * @private
-     */
-    this.maintainOffset = true;
-
-    this.initSlider(iLeft, iRight, iUp, iDown, iTickSize);
-
-    /**
-     * Turns off the autoscroll feature in drag and drop
-     * @property scroll
-     * @private
-     */
-    this.scroll = false;
-
-}; 
-
-YAHOO.extend(YAHOO.widget.SliderThumb, YAHOO.util.DD, {
-
-    /**
-     * The (X and Y) difference between the thumb location and its parent 
-     * (the slider background) when the control is instantiated.
-     * @property startOffset
-     * @type [int, int]
-     */
-    startOffset: null,
-
-    /**
-     * Override the default setting of dragOnly to true.
-     * @property dragOnly
-     * @type boolean
-     * @default true
-     */
-    dragOnly : true,
-
-    /**
-     * Flag used to figure out if this is a horizontal or vertical slider
-     * @property _isHoriz
-     * @type boolean
-     * @private
-     */
-    _isHoriz: false,
-
-    /**
-     * Cache the last value so we can check for change
-     * @property _prevVal
-     * @type int
-     * @private
-     */
-    _prevVal: 0,
-
-    /**
-     * The slider is _graduated if there is a tick interval defined
-     * @property _graduated
-     * @type boolean
-     * @private
-     */
-    _graduated: false,
-
-
-    /**
-     * Returns the difference between the location of the thumb and its parent.
-     * @method getOffsetFromParent
-     * @param {[int, int]} parentPos Optionally accepts the position of the parent
-     * @type [int, int]
-     */
-    getOffsetFromParent0: function(parentPos) {
-        var myPos = YAHOO.util.Dom.getXY(this.getEl());
-        var ppos  = parentPos || YAHOO.util.Dom.getXY(this.parentElId);
-
-        return [ (myPos[0] - ppos[0]), (myPos[1] - ppos[1]) ];
-    },
-
-    getOffsetFromParent: function(parentPos) {
-
-        var el = this.getEl(), newOffset;
-
-        if (!this.deltaOffset) {
-
-            var myPos = YAHOO.util.Dom.getXY(el);
-            var ppos  = parentPos || YAHOO.util.Dom.getXY(this.parentElId);
-
-            newOffset = [ (myPos[0] - ppos[0]), (myPos[1] - ppos[1]) ];
-
-            var l = parseInt( YAHOO.util.Dom.getStyle(el, "left"), 10 );
-            var t = parseInt( YAHOO.util.Dom.getStyle(el, "top" ), 10 );
-
-            var deltaX = l - newOffset[0];
-            var deltaY = t - newOffset[1];
-
-            if (isNaN(deltaX) || isNaN(deltaY)) {
-                this.logger.log("element does not have a position style def yet");
-            } else {
-                this.deltaOffset = [deltaX, deltaY];
-            }
-
-        } else {
-            var newLeft = parseInt( YAHOO.util.Dom.getStyle(el, "left"), 10 );
-            var newTop  = parseInt( YAHOO.util.Dom.getStyle(el, "top" ), 10 );
-
-            newOffset  = [newLeft + this.deltaOffset[0], newTop + this.deltaOffset[1]];
-        }
-
-        return newOffset;
-
-        //return [ (myPos[0] - ppos[0]), (myPos[1] - ppos[1]) ];
-    },
-
-    /**
-     * Set up the slider, must be called in the constructor of all subclasses
-     * @method initSlider
-     * @param {int} iLeft the number of pixels the element can move left
-     * @param {int} iRight the number of pixels the element can move right
-     * @param {int} iUp the number of pixels the element can move up
-     * @param {int} iDown the number of pixels the element can move down
-     * @param {int} iTickSize the width of the tick interval.
-     */
-    initSlider: function (iLeft, iRight, iUp, iDown, iTickSize) {
-
-
-        //document these.  new for 0.12.1
-        this.initLeft = iLeft;
-        this.initRight = iRight;
-        this.initUp = iUp;
-        this.initDown = iDown;
-
-        this.setXConstraint(iLeft, iRight, iTickSize);
-        this.setYConstraint(iUp, iDown, iTickSize);
-
-        if (iTickSize && iTickSize > 1) {
-            this._graduated = true;
-        }
-
-        this._isHoriz  = (iLeft || iRight); 
-        this._isVert   = (iUp   || iDown);
-        this._isRegion = (this._isHoriz && this._isVert); 
-
-    },
-
-    /**
-     * Clear's the slider's ticks
-     * @method clearTicks
-     */
-    clearTicks: function () {
-        YAHOO.widget.SliderThumb.superclass.clearTicks.call(this);
-        this.tickSize = 0;
-        this._graduated = false;
-    },
-
-
-    /**
-     * Gets the current offset from the element's start position in
-     * pixels.
-     * @method getValue
-     * @return {int} the number of pixels (positive or negative) the
-     * slider has moved from the start position.
-     */
-    getValue: function () {
-        return (this._isHoriz) ? this.getXValue() : this.getYValue();
-        //this.logger.log("getVal: " + val);
-    },
-
-    /**
-     * Gets the current X offset from the element's start position in
-     * pixels.
-     * @method getXValue
-     * @return {int} the number of pixels (positive or negative) the
-     * slider has moved horizontally from the start position.
-     */
-    getXValue: function () {
-        if (!this.available) { 
-            return 0; 
-        }
-        var newOffset = this.getOffsetFromParent();
-        if (YAHOO.lang.isNumber(newOffset[0])) {
-            this.lastOffset = newOffset;
-            return (newOffset[0] - this.startOffset[0]);
-        } else {
-            this.logger.log("can't get offset, using old value: " + 
-                this.lastOffset[0]);
-            return (this.lastOffset[0] - this.startOffset[0]);
-        }
-    },
-
-    /**
-     * Gets the current Y offset from the element's start position in
-     * pixels.
-     * @method getYValue
-     * @return {int} the number of pixels (positive or negative) the
-     * slider has moved vertically from the start position.
-     */
-    getYValue: function () {
-        if (!this.available) { 
-            return 0; 
-        }
-        var newOffset = this.getOffsetFromParent();
-        if (YAHOO.lang.isNumber(newOffset[1])) {
-            this.lastOffset = newOffset;
-            return (newOffset[1] - this.startOffset[1]);
-        } else {
-            this.logger.log("can't get offset, using old value: " + 
-                this.lastOffset[1]);
-            return (this.lastOffset[1] - this.startOffset[1]);
-        }
-    },
-
-    /**
-     * Thumb toString
-     * @method toString
-     * @return {string} string representation of the instance
-     */
-    toString: function () { 
-        return "SliderThumb " + this.id;
-    },
-
-    /**
-     * The onchange event for the handle/thumb is delegated to the YAHOO.widget.Slider
-     * instance it belongs to.
-     * @method onChange
-     * @private
-     */
-    onChange: function (x, y) { 
-    }
-
-});
-
-/**
- * A slider with two thumbs, one that represents the min value and 
- * the other the max.  Actually a composition of two sliders, both with
- * the same background.  The constraints for each slider are adjusted
- * dynamically so that the min value of the max slider is equal or greater
- * to the current value of the min slider, and the max value of the min
- * slider is the current value of the max slider.
- * Constructor assumes both thumbs are positioned absolutely at the 0 mark on
- * the background.
- *
- * @namespace YAHOO.widget
- * @class DualSlider
- * @uses YAHOO.util.EventProvider
- * @constructor
- * @param {Slider} minSlider The Slider instance used for the min value thumb
- * @param {Slider} maxSlider The Slider instance used for the max value thumb
- * @param {int}    range The number of pixels the thumbs may move within
- * @param {Array}  initVals (optional) [min,max] Initial thumb placement
- */
-YAHOO.widget.DualSlider = function(minSlider, maxSlider, range, initVals) {
-
-    var self = this,
-        lang = YAHOO.lang;
-
-    /**
-     * A slider instance that keeps track of the lower value of the range.
-     * <strong>read only</strong>
-     * @property minSlider
-     * @type Slider
-     */
-    this.minSlider = minSlider;
-
-    /**
-     * A slider instance that keeps track of the upper value of the range.
-     * <strong>read only</strong>
-     * @property maxSlider
-     * @type Slider
-     */
-    this.maxSlider = maxSlider;
-
-    /**
-     * The currently active slider (min or max). <strong>read only</strong>
-     * @property activeSlider
-     * @type Slider
-     */
-    this.activeSlider = minSlider;
-
-    /**
-     * Is the DualSlider oriented horizontally or vertically?
-     * <strong>read only</strong>
-     * @property isHoriz
-     * @type boolean
-     */
-    this.isHoriz = minSlider.thumb._isHoriz;
-
-    // Validate initial values
-    initVals = YAHOO.lang.isArray(initVals) ? initVals : [0,range];
-    initVals[0] = Math.min(Math.max(parseInt(initVals[0],10)|0,0),range);
-    initVals[1] = Math.max(Math.min(parseInt(initVals[1],10)|0,range),0);
-    // Swap initVals if min > max
-    if (initVals[0] > initVals[1]) {
-        initVals.splice(0,2,initVals[1],initVals[0]);
-    }
-
-    var ready = { min : false, max : false };
-
-    this.minSlider.thumb.onAvailable = function () {
-        minSlider.setStartSliderState();
-        ready.min = true;
-        if (ready.max) {
-            minSlider.setValue(initVals[0],true,true,true);
-            maxSlider.setValue(initVals[1],true,true,true);
-            self.updateValue(true);
-            self.fireEvent('ready',self);
-        }
-    };
-    this.maxSlider.thumb.onAvailable = function () {
-        maxSlider.setStartSliderState();
-        ready.max = true;
-        if (ready.min) {
-            minSlider.setValue(initVals[0],true,true,true);
-            maxSlider.setValue(initVals[1],true,true,true);
-            self.updateValue(true);
-            self.fireEvent('ready',self);
-        }
-    };
-
-    // dispatch mousedowns to the active slider
-    minSlider.onMouseDown = function(e) {
-        return self._handleMouseDown(e);
-    };
-
-    // we can safely ignore a mousedown on one of the sliders since
-    // they share a background
-    maxSlider.onMouseDown = function(e) { 
-        if (self.minSlider.isLocked() && !self.minSlider._sliding) {
-            return self._handleMouseDown(e);
-        } else {
-            YAHOO.util.Event.stopEvent(e); 
-            return false;
-        }
-    };
-
-    // Fix the drag behavior so that only the active slider
-    // follows the drag
-    minSlider.onDrag =
-    maxSlider.onDrag = function(e) {
-        self._handleDrag(e);
-    };
-
-    // The core events for each slider are handled so we can expose a single
-    // event for when the event happens on either slider
-    minSlider.subscribe("change", this._handleMinChange, minSlider, this);
-    minSlider.subscribe("slideStart", this._handleSlideStart, minSlider, this);
-    minSlider.subscribe("slideEnd", this._handleSlideEnd, minSlider, this);
-
-    maxSlider.subscribe("change", this._handleMaxChange, maxSlider, this);
-    maxSlider.subscribe("slideStart", this._handleSlideStart, maxSlider, this);
-    maxSlider.subscribe("slideEnd", this._handleSlideEnd, maxSlider, this);
-
-    /**
-     * Event that fires when the slider is finished setting up
-     * @event ready
-     * @param {DualSlider} dualslider the DualSlider instance
-     */
-    this.createEvent("ready", this);
-
-    /**
-     * Event that fires when either the min or max value changes
-     * @event change
-     * @param {DualSlider} dualslider the DualSlider instance
-     */
-    this.createEvent("change", this);
-
-    /**
-     * Event that fires when one of the thumbs begins to move
-     * @event slideStart
-     * @param {Slider} activeSlider the moving slider
-     */
-    this.createEvent("slideStart", this);
-
-    /**
-     * Event that fires when one of the thumbs finishes moving
-     * @event slideEnd
-     * @param {Slider} activeSlider the moving slider
-     */
-    this.createEvent("slideEnd", this);
-};
-
-YAHOO.widget.DualSlider.prototype = {
-
-    /**
-     * The current value of the min thumb. <strong>read only</strong>.
-     * @property minVal
-     * @type int
-     */
-    minVal : -1,
-
-    /**
-     * The current value of the max thumb. <strong>read only</strong>.
-     * @property maxVal
-     * @type int
-     */
-    maxVal : -1,
-
-    /**
-     * Pixel distance to maintain between thumbs.
-     * @property minRange
-     * @type int
-     * @default 0
-     */
-    minRange : 0,
-
-    /**
-     * Executed when one of the sliders fires the slideStart event
-     * @method _handleSlideStart
-     * @private
-     */
-    _handleSlideStart: function(data, slider) {
-        this.fireEvent("slideStart", slider);
-    },
-
-    /**
-     * Executed when one of the sliders fires the slideEnd event
-     * @method _handleSlideEnd
-     * @private
-     */
-    _handleSlideEnd: function(data, slider) {
-        this.fireEvent("slideEnd", slider);
-    },
-
-    /**
-     * Overrides the onDrag method for both sliders
-     * @method _handleDrag
-     * @private
-     */
-    _handleDrag: function(e) {
-        YAHOO.widget.Slider.prototype.onDrag.call(this.activeSlider, e);
-    },
-
-    /**
-     * Executed when the min slider fires the change event
-     * @method _handleMinChange
-     * @private
-     */
-    _handleMinChange: function() {
-        this.activeSlider = this.minSlider;
-        this.updateValue();
-    },
-
-    /**
-     * Executed when the max slider fires the change event
-     * @method _handleMaxChange
-     * @private
-     */
-    _handleMaxChange: function() {
-        this.activeSlider = this.maxSlider;
-        this.updateValue();
-    },
-
-    /**
-     * Sets the min and max thumbs to new values.
-     * @method setValues
-     * @param min {int} Pixel offset to assign to the min thumb
-     * @param max {int} Pixel offset to assign to the max thumb
-     * @param skipAnim {boolean} (optional) Set to true to skip thumb animation.
-     * Default false
-     * @param force {boolean} (optional) ignore the locked setting and set
-     * value anyway. Default false
-     * @param silent {boolean} (optional) Set to true to skip firing change
-     * events.  Default false
-     */
-    setValues : function (min, max, skipAnim, force, silent) {
-        var mins = this.minSlider,
-            maxs = this.maxSlider,
-            mint = mins.thumb,
-            maxt = maxs.thumb,
-            self = this,
-            done = { min : false, max : false };
-
-        // Clear constraints to prevent animated thumbs from prematurely
-        // stopping when hitting a constraint that's moving with the other
-        // thumb.
-        if (mint._isHoriz) {
-            mint.setXConstraint(mint.leftConstraint,maxt.rightConstraint,mint.tickSize);
-            maxt.setXConstraint(mint.leftConstraint,maxt.rightConstraint,maxt.tickSize);
-        } else {
-            mint.setYConstraint(mint.topConstraint,maxt.bottomConstraint,mint.tickSize);
-            maxt.setYConstraint(mint.topConstraint,maxt.bottomConstraint,maxt.tickSize);
-        }
-
-        // Set up one-time slideEnd callbacks to call updateValue when both
-        // thumbs have been set
-        this._oneTimeCallback(mins,'slideEnd',function () {
-            done.min = true;
-            if (done.max) {
-                self.updateValue(silent);
-                // Clean the slider's slideEnd events on a timeout since this
-                // will be executed from inside the event's fire
-                setTimeout(function () {
-                    self._cleanEvent(mins,'slideEnd');
-                    self._cleanEvent(maxs,'slideEnd');
-                },0);
-            }
-        });
-
-        this._oneTimeCallback(maxs,'slideEnd',function () {
-            done.max = true;
-            if (done.min) {
-                self.updateValue(silent);
-                // Clean both sliders' slideEnd events on a timeout since this
-                // will be executed from inside one of the event's fire
-                setTimeout(function () {
-                    self._cleanEvent(mins,'slideEnd');
-                    self._cleanEvent(maxs,'slideEnd');
-                },0);
-            }
-        });
-
-        // Must emit Slider slideEnd event to propagate to updateValue
-        mins.setValue(min,skipAnim,force,false);
-        maxs.setValue(max,skipAnim,force,false);
-    },
-
-    /**
-     * Set the min thumb position to a new value.
-     * @method setMinValue
-     * @param min {int} Pixel offset for min thumb
-     * @param skipAnim {boolean} (optional) Set to true to skip thumb animation.
-     * Default false
-     * @param force {boolean} (optional) ignore the locked setting and set
-     * value anyway. Default false
-     * @param silent {boolean} (optional) Set to true to skip firing change
-     * events.  Default false
-     */
-    setMinValue : function (min, skipAnim, force, silent) {
-        var mins = this.minSlider;
-
-        this.activeSlider = mins;
-
-        // Use a one-time event callback to delay the updateValue call
-        // until after the slide operation is done
-        var self = this;
-        this._oneTimeCallback(mins,'slideEnd',function () {
-            self.updateValue(silent);
-            // Clean the slideEnd event on a timeout since this
-            // will be executed from inside the event's fire
-            setTimeout(function () { self._cleanEvent(mins,'slideEnd'); }, 0);
-        });
-
-        mins.setValue(min, skipAnim, force, silent);
-    },
-
-    /**
-     * Set the max thumb position to a new value.
-     * @method setMaxValue
-     * @param max {int} Pixel offset for max thumb
-     * @param skipAnim {boolean} (optional) Set to true to skip thumb animation.
-     * Default false
-     * @param force {boolean} (optional) ignore the locked setting and set
-     * value anyway. Default false
-     * @param silent {boolean} (optional) Set to true to skip firing change
-     * events.  Default false
-     */
-    setMaxValue : function (max, skipAnim, force, silent) {
-        var maxs = this.maxSlider;
-
-        this.activeSlider = maxs;
-
-        // Use a one-time event callback to delay the updateValue call
-        // until after the slide operation is done
-        var self = this;
-        this._oneTimeCallback(maxs,'slideEnd',function () {
-            self.updateValue(silent);
-            // Clean the slideEnd event on a timeout since this
-            // will be executed from inside the event's fire
-            setTimeout(function () { self._cleanEvent(maxs,'slideEnd'); }, 0);
-        });
-
-        maxs.setValue(max, skipAnim, force, silent);
-    },
-
-    /**
-     * Executed when one of the sliders is moved
-     * @method updateValue
-     * @param silent {boolean} (optional) Set to true to skip firing change
-     * events.  Default false
-     * @private
-     */
-    updateValue: function(silent) {
-        var min     = this.minSlider.getValue(),
-            max     = this.maxSlider.getValue(),
-            changed = false;
-
-        if (min != this.minVal || max != this.maxVal) {
-            changed = true;
-
-            var mint = this.minSlider.thumb,
-                maxt = this.maxSlider.thumb,
-                dim  = this.isHoriz ? 'x' : 'y';
-
-            var thumbInnerWidth = this.minSlider.thumbCenterPoint[dim] +
-                                  this.maxSlider.thumbCenterPoint[dim];
-
-            // Establish barriers within the respective other thumb's edge, less
-            // the minRange.  Limit to the Slider's range in the case of
-            // negative minRanges.
-            var minConstraint = Math.max(max-thumbInnerWidth-this.minRange,0);
-            var maxConstraint = Math.min(-min-thumbInnerWidth-this.minRange,0);
-
-            if (this.isHoriz) {
-                minConstraint = Math.min(minConstraint,maxt.rightConstraint);
-
-                mint.setXConstraint(mint.leftConstraint,minConstraint, mint.tickSize);
-
-                maxt.setXConstraint(maxConstraint,maxt.rightConstraint, maxt.tickSize);
-            } else {
-                minConstraint = Math.min(minConstraint,maxt.bottomConstraint);
-                mint.setYConstraint(mint.leftConstraint,minConstraint, mint.tickSize);
-
-                maxt.setYConstraint(maxConstraint,maxt.bottomConstraint, maxt.tickSize);
-            }
-        }
-
-        this.minVal = min;
-        this.maxVal = max;
-
-        if (changed && !silent) {
-            this.fireEvent("change", this);
-        }
-    },
-
-    /**
-     * A background click will move the slider thumb nearest to the click.
-     * Override if you need different behavior.
-     * @method selectActiveSlider
-     * @param e {Event} the mousedown event
-     * @private
-     */
-    selectActiveSlider: function(e) {
-        var min = this.minSlider,
-            max = this.maxSlider,
-            minLocked = min.isLocked(),
-            maxLocked = max.isLocked(),
-            Ev  = YAHOO.util.Event,
-            d;
-
-        if (minLocked || maxLocked) {
-            this.activeSlider = minLocked ? max : min;
-        } else {
-            if (this.isHoriz) {
-                d = Ev.getPageX(e)-min.thumb.initPageX-min.thumbCenterPoint.x;
-            } else {
-                d = Ev.getPageY(e)-min.thumb.initPageY-min.thumbCenterPoint.y;
-            }
-                    
-            this.activeSlider = d*2 > max.getValue()+min.getValue() ? max : min;
-        }
-    },
-
-    /**
-     * Overrides the onMouseDown for both slider, only moving the active slider
-     * @method handleMouseDown
-     * @private
-     */
-    _handleMouseDown: function(e) {
-        this.selectActiveSlider(e);
-        YAHOO.widget.Slider.prototype.onMouseDown.call(this.activeSlider, e);
-    },
-
-    /**
-     * Schedule an event callback that will execute once, then unsubscribe
-     * itself.
-     * @method _oneTimeCallback
-     * @param o {EventProvider} Object to attach the event to
-     * @param evt {string} Name of the event
-     * @param fn {Function} function to execute once
-     * @private
-     */
-    _oneTimeCallback : function (o,evt,fn) {
-        o.subscribe(evt,function () {
-            // Unsubscribe myself
-            o.unsubscribe(evt,arguments.callee);
-            // Pass the event handler arguments to the one time callback
-            fn.apply({},[].slice.apply(arguments));
-        });
-    },
-
-    /**
-     * Clean up the slideEnd event subscribers array, since each one-time
-     * callback will be replaced in the event's subscribers property with
-     * null.  This will cause memory bloat and loss of performance.
-     * @method _cleanEvent
-     * @param o {EventProvider} object housing the CustomEvent
-     * @param evt {string} name of the CustomEvent
-     * @private
-     */
-    _cleanEvent : function (o,evt) {
-        if (o.__yui_events && o.events[evt]) {
-            var ce, i, len;
-            for (i = o.__yui_events.length; i >= 0; --i) {
-                if (o.__yui_events[i].type === evt) {
-                    ce = o.__yui_events[i];
-                    break;
-                }
-            }
-            if (ce) {
-                var subs    = ce.subscribers,
-                    newSubs = [],
-                    j = 0;
-                for (i = 0, len = subs.length; i < len; ++i) {
-                    if (subs[i]) {
-                        newSubs[j++] = subs[i];
-                    }
-                }
-                ce.subscribers = newSubs;
-            }
-        }
-    }
-
-};
-
-YAHOO.augment(YAHOO.widget.DualSlider, YAHOO.util.EventProvider);
-
-
-/**
- * Factory method for creating a horizontal dual-thumb slider
- * @for YAHOO.widget.Slider
- * @method YAHOO.widget.Slider.getHorizDualSlider
- * @static
- * @param {String} bg the id of the slider's background element
- * @param {String} minthumb the id of the min thumb
- * @param {String} maxthumb the id of the thumb thumb
- * @param {int} range the number of pixels the thumbs can move within
- * @param {int} iTickSize (optional) the element should move this many pixels
- * at a time
- * @param {Array}  initVals (optional) [min,max] Initial thumb placement
- * @return {DualSlider} a horizontal dual-thumb slider control
- */
-YAHOO.widget.Slider.getHorizDualSlider = 
-    function (bg, minthumb, maxthumb, range, iTickSize, initVals) {
-        var mint, maxt;
-        var YW = YAHOO.widget, Slider = YW.Slider, Thumb = YW.SliderThumb;
-
-        mint = new Thumb(minthumb, bg, 0, range, 0, 0, iTickSize);
-        maxt = new Thumb(maxthumb, bg, 0, range, 0, 0, iTickSize);
-
-        return new YW.DualSlider(new Slider(bg, bg, mint, "horiz"), new Slider(bg, bg, maxt, "horiz"), range, initVals);
-};
-
-/**
- * Factory method for creating a vertical dual-thumb slider.
- * @for YAHOO.widget.Slider
- * @method YAHOO.widget.Slider.getVertDualSlider
- * @static
- * @param {String} bg the id of the slider's background element
- * @param {String} minthumb the id of the min thumb
- * @param {String} maxthumb the id of the thumb thumb
- * @param {int} range the number of pixels the thumbs can move within
- * @param {int} iTickSize (optional) the element should move this many pixels
- * at a time
- * @param {Array}  initVals (optional) [min,max] Initial thumb placement
- * @return {DualSlider} a vertical dual-thumb slider control
- */
-YAHOO.widget.Slider.getVertDualSlider = 
-    function (bg, minthumb, maxthumb, range, iTickSize, initVals) {
-        var mint, maxt;
-        var YW = YAHOO.widget, Slider = YW.Slider, Thumb = YW.SliderThumb;
-
-        mint = new Thumb(minthumb, bg, 0, 0, 0, range, iTickSize);
-        maxt = new Thumb(maxthumb, bg, 0, 0, 0, range, iTickSize);
-
-        return new YW.DualSlider(new Slider(bg, bg, mint, "vert"), new Slider(bg, bg, maxt, "vert"), range, initVals);
-};
-YAHOO.register("slider", YAHOO.widget.Slider, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/slider-min.js b/eclipse.org-common/yui/2.6.0/build/slider/slider-min.js
deleted file mode 100644
index c76592d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/slider-min.js
+++ /dev/null
@@ -1,9 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.widget.Slider=function(C,A,B,D){YAHOO.widget.Slider.ANIM_AVAIL=(!YAHOO.lang.isUndefined(YAHOO.util.Anim));if(C){this.init(C,A,true);this.initSlider(D);this.initThumb(B);}};YAHOO.widget.Slider.getHorizSlider=function(B,C,E,D,A){return new YAHOO.widget.Slider(B,B,new YAHOO.widget.SliderThumb(C,B,E,D,0,0,A),"horiz");};YAHOO.widget.Slider.getVertSlider=function(C,D,A,E,B){return new YAHOO.widget.Slider(C,C,new YAHOO.widget.SliderThumb(D,C,0,0,A,E,B),"vert");};YAHOO.widget.Slider.getSliderRegion=function(C,D,F,E,A,G,B){return new YAHOO.widget.Slider(C,C,new YAHOO.widget.SliderThumb(D,C,F,E,A,G,B),"region");};YAHOO.widget.Slider.ANIM_AVAIL=false;YAHOO.extend(YAHOO.widget.Slider,YAHOO.util.DragDrop,{dragOnly:true,initSlider:function(A){this.type=A;this.createEvent("change",this);this.createEvent("slideStart",this);this.createEvent("slideEnd",this);this.isTarget=false;this.animate=YAHOO.widget.Slider.ANIM_AVAIL;this.backgroundEnabled=true;this.tickPause=40;this.enableKeys=true;this.keyIncrement=20;this.moveComplete=true;this.animationDuration=0.2;this.SOURCE_UI_EVENT=1;this.SOURCE_SET_VALUE=2;this.valueChangeSource=0;this._silent=false;this.lastOffset=[0,0];},initThumb:function(B){var A=this;this.thumb=B;B.cacheBetweenDrags=true;if(B._isHoriz&&B.xTicks&&B.xTicks.length){this.tickPause=Math.round(360/B.xTicks.length);}else{if(B.yTicks&&B.yTicks.length){this.tickPause=Math.round(360/B.yTicks.length);}}B.onAvailable=function(){return A.setStartSliderState();};B.onMouseDown=function(){return A.focus();};B.startDrag=function(){A._slideStart();};B.onDrag=function(){A.fireEvents(true);};B.onMouseUp=function(){A.thumbMouseUp();};},onAvailable:function(){var A=YAHOO.util.Event;A.on(this.id,"keydown",this.handleKeyDown,this,true);A.on(this.id,"keypress",this.handleKeyPress,this,true);},handleKeyPress:function(C){if(this.enableKeys){var A=YAHOO.util.Event;var B=A.getCharCode(C);switch(B){case 37:case 38:case 39:case 40:case 36:case 35:A.preventDefault(C);break;default:}}},handleKeyDown:function(E){if(this.enableKeys){var G=YAHOO.util.Event;var C=G.getCharCode(E),I=this.thumb;var B=this.getXValue(),F=this.getYValue();var H=false;var D=true;switch(C){case 37:B-=this.keyIncrement;break;case 38:F-=this.keyIncrement;break;case 39:B+=this.keyIncrement;break;case 40:F+=this.keyIncrement;break;case 36:B=I.leftConstraint;F=I.topConstraint;break;case 35:B=I.rightConstraint;F=I.bottomConstraint;break;default:D=false;}if(D){if(I._isRegion){this.setRegionValue(B,F,true);}else{var A=(I._isHoriz)?B:F;this.setValue(A,true);}G.stopEvent(E);}}},setStartSliderState:function(){this.setThumbCenterPoint();this.baselinePos=YAHOO.util.Dom.getXY(this.getEl());this.thumb.startOffset=this.thumb.getOffsetFromParent(this.baselinePos);if(this.thumb._isRegion){if(this.deferredSetRegionValue){this.setRegionValue.apply(this,this.deferredSetRegionValue);this.deferredSetRegionValue=null;}else{this.setRegionValue(0,0,true,true,true);}}else{if(this.deferredSetValue){this.setValue.apply(this,this.deferredSetValue);this.deferredSetValue=null;}else{this.setValue(0,true,true,true);}}},setThumbCenterPoint:function(){var A=this.thumb.getEl();if(A){this.thumbCenterPoint={x:parseInt(A.offsetWidth/2,10),y:parseInt(A.offsetHeight/2,10)};}},lock:function(){this.thumb.lock();this.locked=true;},unlock:function(){this.thumb.unlock();this.locked=false;},thumbMouseUp:function(){if(!this.isLocked()&&!this.moveComplete){this.endMove();}},onMouseUp:function(){if(this.backgroundEnabled&&!this.isLocked()&&!this.moveComplete){this.endMove();}},getThumb:function(){return this.thumb;},focus:function(){this.valueChangeSource=this.SOURCE_UI_EVENT;var A=this.getEl();if(A.focus){try{A.focus();}catch(B){}}this.verifyOffset();if(this.isLocked()){return false;}else{this._slideStart();return true;}},onChange:function(A,B){},onSlideStart:function(){},onSlideEnd:function(){},getValue:function(){return this.thumb.getValue();},getXValue:function(){return this.thumb.getXValue();},getYValue:function(){return this.thumb.getYValue();},handleThumbChange:function(){},setValue:function(G,C,D,A){this._silent=A;this.valueChangeSource=this.SOURCE_SET_VALUE;if(!this.thumb.available){this.deferredSetValue=arguments;return false;}if(this.isLocked()&&!D){return false;}if(isNaN(G)){return false;}var B=this.thumb;B.lastOffset=[G,G];var F,E;this.verifyOffset(true);if(B._isRegion){return false;}else{if(B._isHoriz){this._slideStart();F=B.initPageX+G+this.thumbCenterPoint.x;this.moveThumb(F,B.initPageY,C);}else{this._slideStart();E=B.initPageY+G+this.thumbCenterPoint.y;this.moveThumb(B.initPageX,E,C);}}return true;},setRegionValue:function(H,A,D,E,B){this._silent=B;this.valueChangeSource=this.SOURCE_SET_VALUE;if(!this.thumb.available){this.deferredSetRegionValue=arguments;return false;}if(this.isLocked()&&!E){return false;}if(isNaN(H)){return false;}var C=this.thumb;C.lastOffset=[H,A];this.verifyOffset(true);if(C._isRegion){this._slideStart();var G=C.initPageX+H+this.thumbCenterPoint.x;var F=C.initPageY+A+this.thumbCenterPoint.y;this.moveThumb(G,F,D);return true;}return false;},verifyOffset:function(B){var C=YAHOO.util.Dom.getXY(this.getEl()),A=this.thumb;if(C){if(C[0]!=this.baselinePos[0]||C[1]!=this.baselinePos[1]){this.setInitPosition();this.baselinePos=C;A.initPageX=this.initPageX+A.startOffset[0];A.initPageY=this.initPageY+A.startOffset[1];A.deltaSetXY=null;this.resetThumbConstraints();return false;}}return true;},moveThumb:function(G,F,E,D){var H=this.thumb;var I=this;if(!H.available){return ;}H.setDelta(this.thumbCenterPoint.x,this.thumbCenterPoint.y);var B=H.getTargetCoord(G,F);var C=[Math.round(B.x),Math.round(B.y)];this._slideStart();if(this.animate&&YAHOO.widget.Slider.ANIM_AVAIL&&H._graduated&&!E){this.lock();this.curCoord=YAHOO.util.Dom.getXY(this.thumb.getEl());this.curCoord=[Math.round(this.curCoord[0]),Math.round(this.curCoord[1])];setTimeout(function(){I.moveOneTick(C);},this.tickPause);}else{if(this.animate&&YAHOO.widget.Slider.ANIM_AVAIL&&!E){this.lock();var A=new YAHOO.util.Motion(H.id,{points:{to:C}},this.animationDuration,YAHOO.util.Easing.easeOut);
-A.onComplete.subscribe(function(){I.endMove();});A.animate();}else{H.setDragElPos(G,F);if(!D){this.endMove();}}}},_slideStart:function(){if(!this._sliding){if(!this._silent){this.onSlideStart();this.fireEvent("slideStart");}this._sliding=true;}},_slideEnd:function(){if(this._sliding&&this.moveComplete){var A=this._silent;this._sliding=false;this._silent=false;this.moveComplete=false;if(!A){this.onSlideEnd();this.fireEvent("slideEnd");}}},moveOneTick:function(B){var E=this.thumb,D;var F=null,A,G;if(E._isRegion){F=this._getNextX(this.curCoord,B);A=(F!==null)?F[0]:this.curCoord[0];F=this._getNextY(this.curCoord,B);G=(F!==null)?F[1]:this.curCoord[1];F=A!==this.curCoord[0]||G!==this.curCoord[1]?[A,G]:null;}else{if(E._isHoriz){F=this._getNextX(this.curCoord,B);}else{F=this._getNextY(this.curCoord,B);}}if(F){this.curCoord=F;this.thumb.alignElWithMouse(E.getEl(),F[0]+this.thumbCenterPoint.x,F[1]+this.thumbCenterPoint.y);if(!(F[0]==B[0]&&F[1]==B[1])){var C=this;setTimeout(function(){C.moveOneTick(B);},this.tickPause);}else{this.endMove();}}else{this.endMove();}},_getNextX:function(A,B){var D=this.thumb;var F;var C=[];var E=null;if(A[0]>B[0]){F=D.tickSize-this.thumbCenterPoint.x;C=D.getTargetCoord(A[0]-F,A[1]);E=[C.x,C.y];}else{if(A[0]<B[0]){F=D.tickSize+this.thumbCenterPoint.x;C=D.getTargetCoord(A[0]+F,A[1]);E=[C.x,C.y];}else{}}return E;},_getNextY:function(A,B){var D=this.thumb;var F;var C=[];var E=null;if(A[1]>B[1]){F=D.tickSize-this.thumbCenterPoint.y;C=D.getTargetCoord(A[0],A[1]-F);E=[C.x,C.y];}else{if(A[1]<B[1]){F=D.tickSize+this.thumbCenterPoint.y;C=D.getTargetCoord(A[0],A[1]+F);E=[C.x,C.y];}else{}}return E;},b4MouseDown:function(A){if(!this.backgroundEnabled){return false;}this.thumb.autoOffset();this.resetThumbConstraints();},onMouseDown:function(B){if(!this.backgroundEnabled||this.isLocked()){return false;}var A=YAHOO.util.Event.getPageX(B);var C=YAHOO.util.Event.getPageY(B);this.focus();this.moveThumb(A,C);},onDrag:function(B){if(this.backgroundEnabled&&!this.isLocked()){var A=YAHOO.util.Event.getPageX(B);var C=YAHOO.util.Event.getPageY(B);this.moveThumb(A,C,true,true);this.fireEvents();}},endMove:function(){this.unlock();this.moveComplete=true;this.fireEvents();},resetThumbConstraints:function(){var A=this.thumb;A.setXConstraint(A.leftConstraint,A.rightConstraint,A.xTickSize);A.setYConstraint(A.topConstraint,A.bottomConstraint,A.xTickSize);},fireEvents:function(C){var B=this.thumb;if(!C){B.cachePosition();}if(!this.isLocked()){if(B._isRegion){var E=B.getXValue();var D=B.getYValue();if(E!=this.previousX||D!=this.previousY){if(!this._silent){this.onChange(E,D);this.fireEvent("change",{x:E,y:D});}}this.previousX=E;this.previousY=D;}else{var A=B.getValue();if(A!=this.previousVal){if(!this._silent){this.onChange(A);this.fireEvent("change",A);}}this.previousVal=A;}this._slideEnd();}},toString:function(){return("Slider ("+this.type+") "+this.id);}});YAHOO.augment(YAHOO.widget.Slider,YAHOO.util.EventProvider);YAHOO.widget.SliderThumb=function(G,B,E,D,A,F,C){if(G){YAHOO.widget.SliderThumb.superclass.constructor.call(this,G,B);this.parentElId=B;}this.isTarget=false;this.tickSize=C;this.maintainOffset=true;this.initSlider(E,D,A,F,C);this.scroll=false;};YAHOO.extend(YAHOO.widget.SliderThumb,YAHOO.util.DD,{startOffset:null,dragOnly:true,_isHoriz:false,_prevVal:0,_graduated:false,getOffsetFromParent0:function(C){var A=YAHOO.util.Dom.getXY(this.getEl());var B=C||YAHOO.util.Dom.getXY(this.parentElId);return[(A[0]-B[0]),(A[1]-B[1])];},getOffsetFromParent:function(H){var A=this.getEl(),E;if(!this.deltaOffset){var I=YAHOO.util.Dom.getXY(A);var F=H||YAHOO.util.Dom.getXY(this.parentElId);E=[(I[0]-F[0]),(I[1]-F[1])];var B=parseInt(YAHOO.util.Dom.getStyle(A,"left"),10);var K=parseInt(YAHOO.util.Dom.getStyle(A,"top"),10);var D=B-E[0];var C=K-E[1];if(isNaN(D)||isNaN(C)){}else{this.deltaOffset=[D,C];}}else{var J=parseInt(YAHOO.util.Dom.getStyle(A,"left"),10);var G=parseInt(YAHOO.util.Dom.getStyle(A,"top"),10);E=[J+this.deltaOffset[0],G+this.deltaOffset[1]];}return E;},initSlider:function(D,C,A,E,B){this.initLeft=D;this.initRight=C;this.initUp=A;this.initDown=E;this.setXConstraint(D,C,B);this.setYConstraint(A,E,B);if(B&&B>1){this._graduated=true;}this._isHoriz=(D||C);this._isVert=(A||E);this._isRegion=(this._isHoriz&&this._isVert);},clearTicks:function(){YAHOO.widget.SliderThumb.superclass.clearTicks.call(this);this.tickSize=0;this._graduated=false;},getValue:function(){return(this._isHoriz)?this.getXValue():this.getYValue();},getXValue:function(){if(!this.available){return 0;}var A=this.getOffsetFromParent();if(YAHOO.lang.isNumber(A[0])){this.lastOffset=A;return(A[0]-this.startOffset[0]);}else{return(this.lastOffset[0]-this.startOffset[0]);}},getYValue:function(){if(!this.available){return 0;}var A=this.getOffsetFromParent();if(YAHOO.lang.isNumber(A[1])){this.lastOffset=A;return(A[1]-this.startOffset[1]);}else{return(this.lastOffset[1]-this.startOffset[1]);}},toString:function(){return"SliderThumb "+this.id;},onChange:function(A,B){}});YAHOO.widget.DualSlider=function(E,B,D,A){var C=this,G=YAHOO.lang;this.minSlider=E;this.maxSlider=B;this.activeSlider=E;this.isHoriz=E.thumb._isHoriz;A=YAHOO.lang.isArray(A)?A:[0,D];A[0]=Math.min(Math.max(parseInt(A[0],10)|0,0),D);A[1]=Math.max(Math.min(parseInt(A[1],10)|0,D),0);if(A[0]>A[1]){A.splice(0,2,A[1],A[0]);}var F={min:false,max:false};this.minSlider.thumb.onAvailable=function(){E.setStartSliderState();F.min=true;if(F.max){E.setValue(A[0],true,true,true);B.setValue(A[1],true,true,true);C.updateValue(true);C.fireEvent("ready",C);}};this.maxSlider.thumb.onAvailable=function(){B.setStartSliderState();F.max=true;if(F.min){E.setValue(A[0],true,true,true);B.setValue(A[1],true,true,true);C.updateValue(true);C.fireEvent("ready",C);}};E.onMouseDown=function(H){return C._handleMouseDown(H);};B.onMouseDown=function(H){if(C.minSlider.isLocked()&&!C.minSlider._sliding){return C._handleMouseDown(H);}else{YAHOO.util.Event.stopEvent(H);return false;}};E.onDrag=B.onDrag=function(H){C._handleDrag(H);
-};E.subscribe("change",this._handleMinChange,E,this);E.subscribe("slideStart",this._handleSlideStart,E,this);E.subscribe("slideEnd",this._handleSlideEnd,E,this);B.subscribe("change",this._handleMaxChange,B,this);B.subscribe("slideStart",this._handleSlideStart,B,this);B.subscribe("slideEnd",this._handleSlideEnd,B,this);this.createEvent("ready",this);this.createEvent("change",this);this.createEvent("slideStart",this);this.createEvent("slideEnd",this);};YAHOO.widget.DualSlider.prototype={minVal:-1,maxVal:-1,minRange:0,_handleSlideStart:function(B,A){this.fireEvent("slideStart",A);},_handleSlideEnd:function(B,A){this.fireEvent("slideEnd",A);},_handleDrag:function(A){YAHOO.widget.Slider.prototype.onDrag.call(this.activeSlider,A);},_handleMinChange:function(){this.activeSlider=this.minSlider;this.updateValue();},_handleMaxChange:function(){this.activeSlider=this.maxSlider;this.updateValue();},setValues:function(E,H,F,B,G){var C=this.minSlider,J=this.maxSlider,A=C.thumb,I=J.thumb,K=this,D={min:false,max:false};if(A._isHoriz){A.setXConstraint(A.leftConstraint,I.rightConstraint,A.tickSize);I.setXConstraint(A.leftConstraint,I.rightConstraint,I.tickSize);}else{A.setYConstraint(A.topConstraint,I.bottomConstraint,A.tickSize);I.setYConstraint(A.topConstraint,I.bottomConstraint,I.tickSize);}this._oneTimeCallback(C,"slideEnd",function(){D.min=true;if(D.max){K.updateValue(G);setTimeout(function(){K._cleanEvent(C,"slideEnd");K._cleanEvent(J,"slideEnd");},0);}});this._oneTimeCallback(J,"slideEnd",function(){D.max=true;if(D.min){K.updateValue(G);setTimeout(function(){K._cleanEvent(C,"slideEnd");K._cleanEvent(J,"slideEnd");},0);}});C.setValue(E,F,B,false);J.setValue(H,F,B,false);},setMinValue:function(C,E,F,B){var D=this.minSlider;this.activeSlider=D;var A=this;this._oneTimeCallback(D,"slideEnd",function(){A.updateValue(B);setTimeout(function(){A._cleanEvent(D,"slideEnd");},0);});D.setValue(C,E,F,B);},setMaxValue:function(A,E,F,C){var D=this.maxSlider;this.activeSlider=D;var B=this;this._oneTimeCallback(D,"slideEnd",function(){B.updateValue(C);setTimeout(function(){B._cleanEvent(D,"slideEnd");},0);});D.setValue(A,E,F,C);},updateValue:function(G){var B=this.minSlider.getValue(),H=this.maxSlider.getValue(),C=false;if(B!=this.minVal||H!=this.maxVal){C=true;var A=this.minSlider.thumb,J=this.maxSlider.thumb,D=this.isHoriz?"x":"y";var E=this.minSlider.thumbCenterPoint[D]+this.maxSlider.thumbCenterPoint[D];var F=Math.max(H-E-this.minRange,0);var I=Math.min(-B-E-this.minRange,0);if(this.isHoriz){F=Math.min(F,J.rightConstraint);A.setXConstraint(A.leftConstraint,F,A.tickSize);J.setXConstraint(I,J.rightConstraint,J.tickSize);}else{F=Math.min(F,J.bottomConstraint);A.setYConstraint(A.leftConstraint,F,A.tickSize);J.setYConstraint(I,J.bottomConstraint,J.tickSize);}}this.minVal=B;this.maxVal=H;if(C&&!G){this.fireEvent("change",this);}},selectActiveSlider:function(E){var B=this.minSlider,A=this.maxSlider,G=B.isLocked(),D=A.isLocked(),C=YAHOO.util.Event,F;if(G||D){this.activeSlider=G?A:B;}else{if(this.isHoriz){F=C.getPageX(E)-B.thumb.initPageX-B.thumbCenterPoint.x;}else{F=C.getPageY(E)-B.thumb.initPageY-B.thumbCenterPoint.y;}this.activeSlider=F*2>A.getValue()+B.getValue()?A:B;}},_handleMouseDown:function(A){this.selectActiveSlider(A);YAHOO.widget.Slider.prototype.onMouseDown.call(this.activeSlider,A);},_oneTimeCallback:function(C,A,B){C.subscribe(A,function(){C.unsubscribe(A,arguments.callee);B.apply({},[].slice.apply(arguments));});},_cleanEvent:function(H,B){if(H.__yui_events&&H.events[B]){var G,F,A;for(F=H.__yui_events.length;F>=0;--F){if(H.__yui_events[F].type===B){G=H.__yui_events[F];break;}}if(G){var E=G.subscribers,C=[],D=0;for(F=0,A=E.length;F<A;++F){if(E[F]){C[D++]=E[F];}}G.subscribers=C;}}}};YAHOO.augment(YAHOO.widget.DualSlider,YAHOO.util.EventProvider);YAHOO.widget.Slider.getHorizDualSlider=function(F,C,K,G,H,B){var A,J;var D=YAHOO.widget,E=D.Slider,I=D.SliderThumb;A=new I(C,F,0,G,0,0,H);J=new I(K,F,0,G,0,0,H);return new D.DualSlider(new E(F,F,A,"horiz"),new E(F,F,J,"horiz"),G,B);};YAHOO.widget.Slider.getVertDualSlider=function(F,C,K,G,H,B){var A,J;var D=YAHOO.widget,E=D.Slider,I=D.SliderThumb;A=new I(C,F,0,0,0,G,H);J=new I(K,F,0,0,0,G,H);return new D.DualSlider(new E(F,F,A,"vert"),new E(F,F,J,"vert"),G,B);};YAHOO.register("slider",YAHOO.widget.Slider,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/slider/slider.js b/eclipse.org-common/yui/2.6.0/build/slider/slider.js
deleted file mode 100644
index cf06c89..0000000
--- a/eclipse.org-common/yui/2.6.0/build/slider/slider.js
+++ /dev/null
@@ -1,1935 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The Slider component is a UI control that enables the user to adjust 
- * values in a finite range along one or two axes. Typically, the Slider 
- * control is used in a web application as a rich, visual replacement 
- * for an input box that takes a number as input. The Slider control can 
- * also easily accommodate a second dimension, providing x,y output for 
- * a selection point chosen from a rectangular region.
- *
- * @module    slider
- * @title     Slider Widget
- * @namespace YAHOO.widget
- * @requires  yahoo,dom,dragdrop,event
- * @optional  animation
- */
-
-/**
- * A DragDrop implementation that can be used as a background for a
- * slider.  It takes a reference to the thumb instance 
- * so it can delegate some of the events to it.  The goal is to make the 
- * thumb jump to the location on the background when the background is 
- * clicked.  
- *
- * @class Slider
- * @extends YAHOO.util.DragDrop
- * @uses YAHOO.util.EventProvider
- * @constructor
- * @param {String}      id     The id of the element linked to this instance
- * @param {String}      sGroup The group of related DragDrop items
- * @param {SliderThumb} oThumb The thumb for this slider
- * @param {String}      sType  The type of slider (horiz, vert, region)
- */
-YAHOO.widget.Slider = function(sElementId, sGroup, oThumb, sType) {
-
-    YAHOO.widget.Slider.ANIM_AVAIL = 
-        (!YAHOO.lang.isUndefined(YAHOO.util.Anim));
-
-    if (sElementId) {
-        this.init(sElementId, sGroup, true);
-        this.initSlider(sType);
-        this.initThumb(oThumb);
-    }
-};
-
-/**
- * Factory method for creating a horizontal slider
- * @method YAHOO.widget.Slider.getHorizSlider
- * @static
- * @param {String} sBGElId the id of the slider's background element
- * @param {String} sHandleElId the id of the thumb element
- * @param {int} iLeft the number of pixels the element can move left
- * @param {int} iRight the number of pixels the element can move right
- * @param {int} iTickSize optional parameter for specifying that the element 
- * should move a certain number pixels at a time.
- * @return {Slider} a horizontal slider control
- */
-YAHOO.widget.Slider.getHorizSlider = 
-    function (sBGElId, sHandleElId, iLeft, iRight, iTickSize) {
-        return new YAHOO.widget.Slider(sBGElId, sBGElId, 
-            new YAHOO.widget.SliderThumb(sHandleElId, sBGElId, 
-                               iLeft, iRight, 0, 0, iTickSize), "horiz");
-};
-
-/**
- * Factory method for creating a vertical slider
- * @method YAHOO.widget.Slider.getVertSlider
- * @static
- * @param {String} sBGElId the id of the slider's background element
- * @param {String} sHandleElId the id of the thumb element
- * @param {int} iUp the number of pixels the element can move up
- * @param {int} iDown the number of pixels the element can move down
- * @param {int} iTickSize optional parameter for specifying that the element 
- * should move a certain number pixels at a time.
- * @return {Slider} a vertical slider control
- */
-YAHOO.widget.Slider.getVertSlider = 
-    function (sBGElId, sHandleElId, iUp, iDown, iTickSize) {
-        return new YAHOO.widget.Slider(sBGElId, sBGElId, 
-            new YAHOO.widget.SliderThumb(sHandleElId, sBGElId, 0, 0, 
-                               iUp, iDown, iTickSize), "vert");
-};
-
-/**
- * Factory method for creating a slider region like the one in the color
- * picker example
- * @method YAHOO.widget.Slider.getSliderRegion
- * @static
- * @param {String} sBGElId the id of the slider's background element
- * @param {String} sHandleElId the id of the thumb element
- * @param {int} iLeft the number of pixels the element can move left
- * @param {int} iRight the number of pixels the element can move right
- * @param {int} iUp the number of pixels the element can move up
- * @param {int} iDown the number of pixels the element can move down
- * @param {int} iTickSize optional parameter for specifying that the element 
- * should move a certain number pixels at a time.
- * @return {Slider} a slider region control
- */
-YAHOO.widget.Slider.getSliderRegion = 
-    function (sBGElId, sHandleElId, iLeft, iRight, iUp, iDown, iTickSize) {
-        return new YAHOO.widget.Slider(sBGElId, sBGElId, 
-            new YAHOO.widget.SliderThumb(sHandleElId, sBGElId, iLeft, iRight, 
-                               iUp, iDown, iTickSize), "region");
-};
-
-/**
- * By default, animation is available if the animation utility is detected.
- * @property YAHOO.widget.Slider.ANIM_AVAIL
- * @static
- * @type boolean
- */
-YAHOO.widget.Slider.ANIM_AVAIL = false;
-
-YAHOO.extend(YAHOO.widget.Slider, YAHOO.util.DragDrop, {
-
-    /**
-     * Override the default setting of dragOnly to true.
-     * @property dragOnly
-     * @type boolean
-     * @default true
-     */
-    dragOnly : true,
-
-    /**
-     * Initializes the slider.  Executed in the constructor
-     * @method initSlider
-     * @param {string} sType the type of slider (horiz, vert, region)
-     */
-    initSlider: function(sType) {
-
-        /**
-         * The type of the slider (horiz, vert, region)
-         * @property type
-         * @type string
-         */
-        this.type = sType;
-
-        //this.removeInvalidHandleType("A");
-
-
-        /**
-         * Event the fires when the value of the control changes.  If 
-         * the control is animated the event will fire every point
-         * along the way.
-         * @event change
-         * @param {int} newOffset|x the new offset for normal sliders, or the new
-         *                          x offset for region sliders
-         * @param {int} y the number of pixels the thumb has moved on the y axis
-         *                (region sliders only)
-         */
-        this.createEvent("change", this);
-
-        /**
-         * Event that fires at the beginning of a slider thumb move.
-         * @event slideStart
-         */
-        this.createEvent("slideStart", this);
-
-        /**
-         * Event that fires at the end of a slider thumb move
-         * @event slideEnd
-         */
-        this.createEvent("slideEnd", this);
-
-        /**
-         * Overrides the isTarget property in YAHOO.util.DragDrop
-         * @property isTarget
-         * @private
-         */
-        this.isTarget = false;
-    
-        /**
-         * Flag that determines if the thumb will animate when moved
-         * @property animate
-         * @type boolean
-         */
-        this.animate = YAHOO.widget.Slider.ANIM_AVAIL;
-
-        /**
-         * Set to false to disable a background click thumb move
-         * @property backgroundEnabled
-         * @type boolean
-         */
-        this.backgroundEnabled = true;
-
-        /**
-         * Adjustment factor for tick animation, the more ticks, the
-         * faster the animation (by default)
-         * @property tickPause
-         * @type int
-         */
-        this.tickPause = 40;
-
-        /**
-         * Enables the arrow, home and end keys, defaults to true.
-         * @property enableKeys
-         * @type boolean
-         */
-        this.enableKeys = true;
-
-        /**
-         * Specifies the number of pixels the arrow keys will move the slider.
-         * Default is 20.
-         * @property keyIncrement
-         * @type int
-         */
-        this.keyIncrement = 20;
-
-        /**
-         * moveComplete is set to true when the slider has moved to its final
-         * destination.  For animated slider, this value can be checked in 
-         * the onChange handler to make it possible to execute logic only
-         * when the move is complete rather than at all points along the way.
-         * Deprecated because this flag is only useful when the background is
-         * clicked and the slider is animated.  If the user drags the thumb,
-         * the flag is updated when the drag is over ... the final onDrag event
-         * fires before the mouseup the ends the drag, so the implementer will
-         * never see it.
-         *
-         * @property moveComplete
-         * @type Boolean
-         * @deprecated use the slideEnd event instead
-         */
-        this.moveComplete = true;
-
-        /**
-         * If animation is configured, specifies the length of the animation
-         * in seconds.
-         * @property animationDuration
-         * @type int
-         * @default 0.2
-         */
-        this.animationDuration = 0.2;
-
-        /**
-         * Constant for valueChangeSource, indicating that the user clicked or
-         * dragged the slider to change the value.
-         * @property SOURCE_UI_EVENT
-         * @final
-         * @default 1
-         */
-        this.SOURCE_UI_EVENT = 1;
-
-        /**
-         * Constant for valueChangeSource, indicating that the value was altered
-         * by a programmatic call to setValue/setRegionValue.
-         * @property SOURCE_SET_VALUE
-         * @final
-         * @default 2
-         */
-        this.SOURCE_SET_VALUE = 2;
-
-        /**
-         * When the slider value changes, this property is set to identify where
-         * the update came from.  This will be either 1, meaning the slider was
-         * clicked or dragged, or 2, meaning that it was set via a setValue() call.
-         * This can be used within event handlers to apply some of the logic only
-         * when dealing with one source or another.
-         * @property valueChangeSource
-         * @type int
-         * @since 2.3.0
-         */
-        this.valueChangeSource = 0;
-
-        /**
-         * Indicates whether or not events will be supressed for the current
-         * slide operation
-         * @property _silent
-         * @type boolean
-         * @private
-         */
-        this._silent = false;
-
-        /**
-         * Saved offset used to protect against NaN problems when slider is
-         * set to display:none
-         * @property lastOffset
-         * @type [int, int]
-         */
-        this.lastOffset = [0,0];
-    },
-
-    /**
-     * Initializes the slider's thumb. Executed in the constructor.
-     * @method initThumb
-     * @param {YAHOO.widget.SliderThumb} t the slider thumb
-     */
-    initThumb: function(t) {
-
-        var self = this;
-
-        /**
-         * A YAHOO.widget.SliderThumb instance that we will use to 
-         * reposition the thumb when the background is clicked
-         * @property thumb
-         * @type YAHOO.widget.SliderThumb
-         */
-        this.thumb = t;
-        t.cacheBetweenDrags = true;
-
-        // add handler for the handle onchange event
-        //t.onChange = function() { 
-            //self.handleThumbChange(); 
-        //};
-
-        if (t._isHoriz && t.xTicks && t.xTicks.length) {
-            this.tickPause = Math.round(360 / t.xTicks.length);
-        } else if (t.yTicks && t.yTicks.length) {
-            this.tickPause = Math.round(360 / t.yTicks.length);
-        }
-
-
-        // delegate thumb methods
-        t.onAvailable = function() { 
-                return self.setStartSliderState(); 
-            };
-        t.onMouseDown = function () { 
-                return self.focus(); 
-            };
-        t.startDrag = function() { 
-                self._slideStart(); 
-            };
-        t.onDrag = function() { 
-                self.fireEvents(true); 
-            };
-        t.onMouseUp = function() { 
-                self.thumbMouseUp(); 
-            };
-
-    },
-
-    /**
-     * Executed when the slider element is available
-     * @method onAvailable
-     */
-    onAvailable: function() {
-        var Event = YAHOO.util.Event;
-        Event.on(this.id, "keydown",  this.handleKeyDown,  this, true);
-        Event.on(this.id, "keypress", this.handleKeyPress, this, true);
-    },
- 
-    /**
-     * Executed when a keypress event happens with the control focused.
-     * Prevents the default behavior for navigation keys.  The actual
-     * logic for moving the slider thumb in response to a key event
-     * happens in handleKeyDown.
-     * @param {Event} e the keypress event
-     */
-    handleKeyPress: function(e) {
-        if (this.enableKeys) {
-            var Event = YAHOO.util.Event;
-            var kc = Event.getCharCode(e);
-            switch (kc) {
-                case 0x25: // left
-                case 0x26: // up
-                case 0x27: // right
-                case 0x28: // down
-                case 0x24: // home
-                case 0x23: // end
-                    Event.preventDefault(e);
-                    break;
-                default:
-            }
-        }
-    },
-
-    /**
-     * Executed when a keydown event happens with the control focused.
-     * Updates the slider value and display when the keypress is an
-     * arrow key, home, or end as long as enableKeys is set to true.
-     * @param {Event} e the keydown event
-     */
-    handleKeyDown: function(e) {
-        if (this.enableKeys) {
-            var Event = YAHOO.util.Event;
-
-            var kc = Event.getCharCode(e), t=this.thumb;
-            var h=this.getXValue(),v=this.getYValue();
-
-            var horiz = false;
-            var changeValue = true;
-            switch (kc) {
-
-                // left
-                case 0x25: h -= this.keyIncrement; break;
-
-                // up
-                case 0x26: v -= this.keyIncrement; break;
-
-                // right
-                case 0x27: h += this.keyIncrement; break;
-
-                // down
-                case 0x28: v += this.keyIncrement; break;
-
-                // home
-                case 0x24: h = t.leftConstraint;    
-                           v = t.topConstraint;    
-                           break;
-
-                // end
-                case 0x23: h = t.rightConstraint; 
-                           v = t.bottomConstraint;    
-                           break;
-
-                default:   changeValue = false;
-            }
-
-            if (changeValue) {
-                if (t._isRegion) {
-                    this.setRegionValue(h, v, true);
-                } else {
-                    var newVal = (t._isHoriz) ? h : v;
-                    this.setValue(newVal, true);
-                }
-                Event.stopEvent(e);
-            }
-
-        }
-    },
-
-    /**
-     * Initialization that sets up the value offsets once the elements are ready
-     * @method setStartSliderState
-     */
-    setStartSliderState: function() {
-
-
-        this.setThumbCenterPoint();
-
-        /**
-         * The basline position of the background element, used
-         * to determine if the background has moved since the last
-         * operation.
-         * @property baselinePos
-         * @type [int, int]
-         */
-        this.baselinePos = YAHOO.util.Dom.getXY(this.getEl());
-
-        this.thumb.startOffset = this.thumb.getOffsetFromParent(this.baselinePos);
-
-        if (this.thumb._isRegion) {
-            if (this.deferredSetRegionValue) {
-                this.setRegionValue.apply(this, this.deferredSetRegionValue);
-                this.deferredSetRegionValue = null;
-            } else {
-                this.setRegionValue(0, 0, true, true, true);
-            }
-        } else {
-            if (this.deferredSetValue) {
-                this.setValue.apply(this, this.deferredSetValue);
-                this.deferredSetValue = null;
-            } else {
-                this.setValue(0, true, true, true);
-            }
-        }
-    },
-
-    /**
-     * When the thumb is available, we cache the centerpoint of the element so
-     * we can position the element correctly when the background is clicked
-     * @method setThumbCenterPoint
-     */
-    setThumbCenterPoint: function() {
-
-        var el = this.thumb.getEl();
-
-        if (el) {
-            /**
-             * The center of the slider element is stored so we can 
-             * place it in the correct position when the background is clicked.
-             * @property thumbCenterPoint
-             * @type {"x": int, "y": int}
-             */
-            this.thumbCenterPoint = { 
-                    x: parseInt(el.offsetWidth/2, 10), 
-                    y: parseInt(el.offsetHeight/2, 10) 
-            };
-        }
-
-    },
-
-    /**
-     * Locks the slider, overrides YAHOO.util.DragDrop
-     * @method lock
-     */
-    lock: function() {
-        this.thumb.lock();
-        this.locked = true;
-    },
-
-    /**
-     * Unlocks the slider, overrides YAHOO.util.DragDrop
-     * @method unlock
-     */
-    unlock: function() {
-        this.thumb.unlock();
-        this.locked = false;
-    },
-
-    /**
-     * Handles mouseup event on the thumb
-     * @method thumbMouseUp
-     * @private
-     */
-    thumbMouseUp: function() {
-        if (!this.isLocked() && !this.moveComplete) {
-            this.endMove();
-        }
-
-    },
-
-    onMouseUp: function() {
-        if (this.backgroundEnabled && !this.isLocked() && !this.moveComplete) {
-            this.endMove();
-        }
-    },
-
-    /**
-     * Returns a reference to this slider's thumb
-     * @method getThumb
-     * @return {SliderThumb} this slider's thumb
-     */
-    getThumb: function() {
-        return this.thumb;
-    },
-
-    /**
-     * Try to focus the element when clicked so we can add
-     * accessibility features
-     * @method focus
-     * @private
-     */
-    focus: function() {
-        this.valueChangeSource = this.SOURCE_UI_EVENT;
-
-        // Focus the background element if possible
-        var el = this.getEl();
-
-        if (el.focus) {
-            try {
-                el.focus();
-            } catch(e) {
-                // Prevent permission denied unhandled exception in FF that can
-                // happen when setting focus while another element is handling
-                // the blur.  @TODO this is still writing to the error log 
-                // (unhandled error) in FF1.5 with strict error checking on.
-            }
-        }
-
-        this.verifyOffset();
-
-        if (this.isLocked()) {
-            return false;
-        } else {
-            this._slideStart();
-            return true;
-        }
-    },
-
-    /**
-     * Event that fires when the value of the slider has changed
-     * @method onChange
-     * @param {int} firstOffset the number of pixels the thumb has moved
-     * from its start position. Normal horizontal and vertical sliders will only
-     * have the firstOffset.  Regions will have both, the first is the horizontal
-     * offset, the second the vertical.
-     * @param {int} secondOffset the y offset for region sliders
-     * @deprecated use instance.subscribe("change") instead
-     */
-    onChange: function (firstOffset, secondOffset) { 
-        /* override me */ 
-    },
-
-    /**
-     * Event that fires when the at the beginning of the slider thumb move
-     * @method onSlideStart
-     * @deprecated use instance.subscribe("slideStart") instead
-     */
-    onSlideStart: function () { 
-        /* override me */ 
-    },
-
-    /**
-     * Event that fires at the end of a slider thumb move
-     * @method onSliderEnd
-     * @deprecated use instance.subscribe("slideEnd") instead
-     */
-    onSlideEnd: function () { 
-        /* override me */ 
-    },
-
-    /**
-     * Returns the slider's thumb offset from the start position
-     * @method getValue
-     * @return {int} the current value
-     */
-    getValue: function () { 
-        return this.thumb.getValue();
-    },
-
-    /**
-     * Returns the slider's thumb X offset from the start position
-     * @method getXValue
-     * @return {int} the current horizontal offset
-     */
-    getXValue: function () { 
-        return this.thumb.getXValue();
-    },
-
-    /**
-     * Returns the slider's thumb Y offset from the start position
-     * @method getYValue
-     * @return {int} the current vertical offset
-     */
-    getYValue: function () { 
-        return this.thumb.getYValue();
-    },
-
-    /**
-     * Internal handler for the slider thumb's onChange event
-     * @method handleThumbChange
-     * @private
-     */
-    handleThumbChange: function () { 
-        /*
-        var t = this.thumb;
-        if (t._isRegion) {
-
-            if (!this._silent) {
-                t.onChange(t.getXValue(), t.getYValue());
-                this.fireEvent("change", { x: t.getXValue(), y: t.getYValue() } );
-            }
-        } else {
-            if (!this._silent) {
-                t.onChange(t.getValue());
-                this.fireEvent("change", t.getValue());
-            }
-        }
-        */
-
-    },
-
-    /**
-     * Provides a way to set the value of the slider in code.
-     * @method setValue
-     * @param {int} newOffset the number of pixels the thumb should be
-     * positioned away from the initial start point 
-     * @param {boolean} skipAnim set to true to disable the animation
-     * for this move action (but not others).
-     * @param {boolean} force ignore the locked setting and set value anyway
-     * @param {boolean} silent when true, do not fire events
-     * @return {boolean} true if the move was performed, false if it failed
-     */
-    setValue: function(newOffset, skipAnim, force, silent) {
-
-        this._silent = silent;
-        this.valueChangeSource = this.SOURCE_SET_VALUE;
-
-        if (!this.thumb.available) {
-            this.deferredSetValue = arguments;
-            return false;
-        }
-
-        if (this.isLocked() && !force) {
-            return false;
-        }
-
-        if ( isNaN(newOffset) ) {
-            return false;
-        }
-
-        var t = this.thumb;
-        t.lastOffset = [newOffset, newOffset];
-        var newX, newY;
-        this.verifyOffset(true);
-        if (t._isRegion) {
-            return false;
-        } else if (t._isHoriz) {
-            this._slideStart();
-            // this.fireEvent("slideStart");
-            newX = t.initPageX + newOffset + this.thumbCenterPoint.x;
-            this.moveThumb(newX, t.initPageY, skipAnim);
-        } else {
-            this._slideStart();
-            // this.fireEvent("slideStart");
-            newY = t.initPageY + newOffset + this.thumbCenterPoint.y;
-            this.moveThumb(t.initPageX, newY, skipAnim);
-        }
-
-        return true;
-    },
-
-    /**
-     * Provides a way to set the value of the region slider in code.
-     * @method setRegionValue
-     * @param {int} newOffset the number of pixels the thumb should be
-     * positioned away from the initial start point (x axis for region)
-     * @param {int} newOffset2 the number of pixels the thumb should be
-     * positioned away from the initial start point (y axis for region)
-     * @param {boolean} skipAnim set to true to disable the animation
-     * for this move action (but not others).
-     * @param {boolean} force ignore the locked setting and set value anyway
-     * @param {boolean} silent when true, do not fire events
-     * @return {boolean} true if the move was performed, false if it failed
-     */
-    setRegionValue: function(newOffset, newOffset2, skipAnim, force, silent) {
-
-        this._silent = silent;
-
-        this.valueChangeSource = this.SOURCE_SET_VALUE;
-
-        if (!this.thumb.available) {
-            this.deferredSetRegionValue = arguments;
-            return false;
-        }
-
-        if (this.isLocked() && !force) {
-            return false;
-        }
-
-        if ( isNaN(newOffset) ) {
-            return false;
-        }
-
-        var t = this.thumb;
-        t.lastOffset = [newOffset, newOffset2];
-        this.verifyOffset(true);
-        if (t._isRegion) {
-            this._slideStart();
-            var newX = t.initPageX + newOffset + this.thumbCenterPoint.x;
-            var newY = t.initPageY + newOffset2 + this.thumbCenterPoint.y;
-            this.moveThumb(newX, newY, skipAnim);
-            return true;
-        }
-
-        return false;
-
-    },
-
-    /**
-     * Checks the background position element position.  If it has moved from the
-     * baseline position, the constraints for the thumb are reset
-     * @param checkPos {boolean} check the position instead of using cached value
-     * @method verifyOffset
-     * @return {boolean} True if the offset is the same as the baseline.
-     */
-    verifyOffset: function(checkPos) {
-
-        var xy = YAHOO.util.Dom.getXY(this.getEl()),
-            t  = this.thumb;
-
-        if (xy) {
-
-
-            if (xy[0] != this.baselinePos[0] || xy[1] != this.baselinePos[1]) {
-
-                // Reset background
-                this.setInitPosition();
-                this.baselinePos = xy;
-
-                // Reset thumb
-                t.initPageX = this.initPageX + t.startOffset[0];
-                t.initPageY = this.initPageY + t.startOffset[1];
-                //t.deltaSetXY = [-this.initPageX,-this.initPageY];
-                t.deltaSetXY = null;
-                //this.resetConstraints();
-                this.resetThumbConstraints();
-
-                return false;
-            }
-        }
-
-        return true;
-    },
-
-    /**
-     * Move the associated slider moved to a timeout to try to get around the 
-     * mousedown stealing moz does when I move the slider element between the 
-     * cursor and the background during the mouseup event
-     * @method moveThumb
-     * @param {int} x the X coordinate of the click
-     * @param {int} y the Y coordinate of the click
-     * @param {boolean} skipAnim don't animate if the move happend onDrag
-     * @param {boolean} midMove set to true if this is not terminating
-     * the slider movement
-     * @private
-     */
-    moveThumb: function(x, y, skipAnim, midMove) {
-
-        var t = this.thumb;
-        var self = this;
-
-        if (!t.available) {
-            return;
-        }
-
-
-        t.setDelta(this.thumbCenterPoint.x, this.thumbCenterPoint.y);
-
-        var _p = t.getTargetCoord(x, y);
-        var p = [Math.round(_p.x), Math.round(_p.y)];
-
-        this._slideStart();
-
-        if (this.animate && YAHOO.widget.Slider.ANIM_AVAIL && t._graduated && !skipAnim) {
-            // this.thumb._animating = true;
-            this.lock();
-
-            // cache the current thumb pos
-            this.curCoord = YAHOO.util.Dom.getXY(this.thumb.getEl());
-            this.curCoord = [Math.round(this.curCoord[0]), Math.round(this.curCoord[1])];
-
-            setTimeout( function() { self.moveOneTick(p); }, this.tickPause );
-
-        } else if (this.animate && YAHOO.widget.Slider.ANIM_AVAIL && !skipAnim) {
-
-            // this.thumb._animating = true;
-            this.lock();
-
-            var oAnim = new YAHOO.util.Motion( 
-                    t.id, { points: { to: p } }, 
-                    this.animationDuration, 
-                    YAHOO.util.Easing.easeOut );
-
-            oAnim.onComplete.subscribe( function() { 
-                    
-                    self.endMove(); 
-                } );
-            oAnim.animate();
-        } else {
-            t.setDragElPos(x, y);
-            // this.fireEvents();
-            if (!midMove) {
-                this.endMove();
-            }
-        }
-    },
-
-    _slideStart: function() {
-        if (!this._sliding) {
-            if (!this._silent) {
-                this.onSlideStart();
-                this.fireEvent("slideStart");
-            }
-            this._sliding = true;
-        }
-    },
-
-    _slideEnd: function() {
-
-        if (this._sliding && this.moveComplete) {
-            // Reset state before firing slideEnd
-            var silent = this._silent;
-            this._sliding = false;
-            this._silent = false;
-            this.moveComplete = false;
-            if (!silent) {
-                this.onSlideEnd();
-                this.fireEvent("slideEnd");
-            }
-        }
-    },
-
-    /**
-     * Move the slider one tick mark towards its final coordinate.  Used
-     * for the animation when tick marks are defined
-     * @method moveOneTick
-     * @param {int[]} the destination coordinate
-     * @private
-     */
-    moveOneTick: function(finalCoord) {
-
-        var t = this.thumb, tmp;
-
-
-        // redundant call to getXY since we set the position most of time prior 
-        // to getting here.  Moved to this.curCoord
-        //var curCoord = YAHOO.util.Dom.getXY(t.getEl());
-
-        // alignElWithMouse caches position in lastPageX, lastPageY .. doesn't work
-        //var curCoord = [this.lastPageX, this.lastPageY];
-
-        // var thresh = Math.min(t.tickSize + (Math.floor(t.tickSize/2)), 10);
-        // var thresh = 10;
-        // var thresh = t.tickSize + (Math.floor(t.tickSize/2));
-
-        var nextCoord = null,
-            tmpX, tmpY;
-
-        if (t._isRegion) {
-            nextCoord = this._getNextX(this.curCoord, finalCoord);
-            tmpX = (nextCoord !== null) ? nextCoord[0] : this.curCoord[0];
-            nextCoord = this._getNextY(this.curCoord, finalCoord);
-            tmpY = (nextCoord !== null) ? nextCoord[1] : this.curCoord[1];
-
-            nextCoord = tmpX !== this.curCoord[0] || tmpY !== this.curCoord[1] ?
-                [ tmpX, tmpY ] : null;
-        } else if (t._isHoriz) {
-            nextCoord = this._getNextX(this.curCoord, finalCoord);
-        } else {
-            nextCoord = this._getNextY(this.curCoord, finalCoord);
-        }
-
-
-        if (nextCoord) {
-
-            // cache the position
-            this.curCoord = nextCoord;
-
-            // move to the next coord
-            // YAHOO.util.Dom.setXY(t.getEl(), nextCoord);
-
-            // var el = t.getEl();
-            // YAHOO.util.Dom.setStyle(el, "left", (nextCoord[0] + this.thumb.deltaSetXY[0]) + "px");
-            // YAHOO.util.Dom.setStyle(el, "top",  (nextCoord[1] + this.thumb.deltaSetXY[1]) + "px");
-
-            this.thumb.alignElWithMouse(t.getEl(), nextCoord[0] + this.thumbCenterPoint.x, nextCoord[1] + this.thumbCenterPoint.y);
-            
-            // check if we are in the final position, if not make a recursive call
-            if (!(nextCoord[0] == finalCoord[0] && nextCoord[1] == finalCoord[1])) {
-                var self = this;
-                setTimeout(function() { self.moveOneTick(finalCoord); }, 
-                        this.tickPause);
-            } else {
-                this.endMove();
-            }
-        } else {
-            this.endMove();
-        }
-
-        //this.tickPause = Math.round(this.tickPause/2);
-    },
-
-    /**
-     * Returns the next X tick value based on the current coord and the target coord.
-     * @method _getNextX
-     * @private
-     */
-    _getNextX: function(curCoord, finalCoord) {
-        var t = this.thumb;
-        var thresh;
-        var tmp = [];
-        var nextCoord = null;
-        if (curCoord[0] > finalCoord[0]) {
-            thresh = t.tickSize - this.thumbCenterPoint.x;
-            tmp = t.getTargetCoord( curCoord[0] - thresh, curCoord[1] );
-            nextCoord = [tmp.x, tmp.y];
-        } else if (curCoord[0] < finalCoord[0]) {
-            thresh = t.tickSize + this.thumbCenterPoint.x;
-            tmp = t.getTargetCoord( curCoord[0] + thresh, curCoord[1] );
-            nextCoord = [tmp.x, tmp.y];
-        } else {
-            // equal, do nothing
-        }
-
-        return nextCoord;
-    },
-
-    /**
-     * Returns the next Y tick value based on the current coord and the target coord.
-     * @method _getNextY
-     * @private
-     */
-    _getNextY: function(curCoord, finalCoord) {
-        var t = this.thumb;
-        var thresh;
-        var tmp = [];
-        var nextCoord = null;
-
-        if (curCoord[1] > finalCoord[1]) {
-            thresh = t.tickSize - this.thumbCenterPoint.y;
-            tmp = t.getTargetCoord( curCoord[0], curCoord[1] - thresh );
-            nextCoord = [tmp.x, tmp.y];
-        } else if (curCoord[1] < finalCoord[1]) {
-            thresh = t.tickSize + this.thumbCenterPoint.y;
-            tmp = t.getTargetCoord( curCoord[0], curCoord[1] + thresh );
-            nextCoord = [tmp.x, tmp.y];
-        } else {
-            // equal, do nothing
-        }
-
-        return nextCoord;
-    },
-
-    /**
-     * Resets the constraints before moving the thumb.
-     * @method b4MouseDown
-     * @private
-     */
-    b4MouseDown: function(e) {
-        if (!this.backgroundEnabled) {
-            return false;
-        }
-
-        this.thumb.autoOffset();
-        //this.thumb.resetConstraints();
-        this.resetThumbConstraints();
-    },
-
-    /**
-     * Handles the mousedown event for the slider background
-     * @method onMouseDown
-     * @private
-     */
-    onMouseDown: function(e) {
-        // this.resetConstraints(true);
-        // this.thumb.resetConstraints(true);
-
-        if (!this.backgroundEnabled || this.isLocked()) {
-            return false;
-        }
-
-        var x = YAHOO.util.Event.getPageX(e);
-        var y = YAHOO.util.Event.getPageY(e);
-
-        this.focus();
-        this.moveThumb(x, y);
-    },
-
-    /**
-     * Handles the onDrag event for the slider background
-     * @method onDrag
-     * @private
-     */
-    onDrag: function(e) {
-        if (this.backgroundEnabled && !this.isLocked()) {
-            var x = YAHOO.util.Event.getPageX(e);
-            var y = YAHOO.util.Event.getPageY(e);
-            this.moveThumb(x, y, true, true);
-            this.fireEvents();
-        }
-    },
-
-    /**
-     * Fired when the slider movement ends
-     * @method endMove
-     * @private
-     */
-    endMove: function () {
-        // this._animating = false;
-        this.unlock();
-        this.moveComplete = true;
-        this.fireEvents();
-    },
-
-    /**
-     * Resets the X and Y contraints for the thumb.  Used in lieu of the thumb
-     * instance's inherited resetConstraints because some logic was not
-     * applicable.
-     * @method resetThumbConstraints
-     * @protected
-     */
-    resetThumbConstraints: function () {
-        var t = this.thumb;
-
-        t.setXConstraint(t.leftConstraint, t.rightConstraint, t.xTickSize);
-        t.setYConstraint(t.topConstraint, t.bottomConstraint, t.xTickSize);
-    },
-
-    /**
-     * Fires the change event if the value has been changed.  Ignored if we are in
-     * the middle of an animation as the event will fire when the animation is
-     * complete
-     * @method fireEvents
-     * @param {boolean} thumbEvent set to true if this event is fired from an event
-     *                  that occurred on the thumb.  If it is, the state of the
-     *                  thumb dd object should be correct.  Otherwise, the event
-     *                  originated on the background, so the thumb state needs to
-     *                  be refreshed before proceeding.
-     * @private
-     */
-    fireEvents: function (thumbEvent) {
-
-        var t = this.thumb;
-
-        if (!thumbEvent) {
-            t.cachePosition();
-        }
-
-        if (! this.isLocked()) {
-            if (t._isRegion) {
-                var newX = t.getXValue();
-                var newY = t.getYValue();
-
-                if (newX != this.previousX || newY != this.previousY) {
-                    if (!this._silent) {
-                        this.onChange(newX, newY);
-                        this.fireEvent("change", { x: newX, y: newY });
-                    }
-                }
-
-                this.previousX = newX;
-                this.previousY = newY;
-
-            } else {
-                var newVal = t.getValue();
-                if (newVal != this.previousVal) {
-                    if (!this._silent) {
-                        this.onChange( newVal );
-                        this.fireEvent("change", newVal);
-                    }
-                }
-                this.previousVal = newVal;
-            }
-
-            this._slideEnd();
-
-        }
-    },
-
-    /**
-     * Slider toString
-     * @method toString
-     * @return {string} string representation of the instance
-     */
-    toString: function () { 
-        return ("Slider (" + this.type +") " + this.id);
-    }
-
-});
-
-YAHOO.augment(YAHOO.widget.Slider, YAHOO.util.EventProvider);
-
-/**
- * A drag and drop implementation to be used as the thumb of a slider.
- * @class SliderThumb
- * @extends YAHOO.util.DD
- * @constructor
- * @param {String} id the id of the slider html element
- * @param {String} sGroup the group of related DragDrop items
- * @param {int} iLeft the number of pixels the element can move left
- * @param {int} iRight the number of pixels the element can move right
- * @param {int} iUp the number of pixels the element can move up
- * @param {int} iDown the number of pixels the element can move down
- * @param {int} iTickSize optional parameter for specifying that the element 
- * should move a certain number pixels at a time.
- */
-YAHOO.widget.SliderThumb = function(id, sGroup, iLeft, iRight, iUp, iDown, iTickSize) {
-
-    if (id) {
-        //this.init(id, sGroup);
-        YAHOO.widget.SliderThumb.superclass.constructor.call(this, id, sGroup);
-
-        /**
-         * The id of the thumbs parent HTML element (the slider background 
-         * element).
-         * @property parentElId
-         * @type string
-         */
-        this.parentElId = sGroup;
-    }
-
-
-    //this.removeInvalidHandleType("A");
-
-
-    /**
-     * Overrides the isTarget property in YAHOO.util.DragDrop
-     * @property isTarget
-     * @private
-     */
-    this.isTarget = false;
-
-    /**
-     * The tick size for this slider
-     * @property tickSize
-     * @type int
-     * @private
-     */
-    this.tickSize = iTickSize;
-
-    /**
-     * Informs the drag and drop util that the offsets should remain when
-     * resetting the constraints.  This preserves the slider value when
-     * the constraints are reset
-     * @property maintainOffset
-     * @type boolean
-     * @private
-     */
-    this.maintainOffset = true;
-
-    this.initSlider(iLeft, iRight, iUp, iDown, iTickSize);
-
-    /**
-     * Turns off the autoscroll feature in drag and drop
-     * @property scroll
-     * @private
-     */
-    this.scroll = false;
-
-}; 
-
-YAHOO.extend(YAHOO.widget.SliderThumb, YAHOO.util.DD, {
-
-    /**
-     * The (X and Y) difference between the thumb location and its parent 
-     * (the slider background) when the control is instantiated.
-     * @property startOffset
-     * @type [int, int]
-     */
-    startOffset: null,
-
-    /**
-     * Override the default setting of dragOnly to true.
-     * @property dragOnly
-     * @type boolean
-     * @default true
-     */
-    dragOnly : true,
-
-    /**
-     * Flag used to figure out if this is a horizontal or vertical slider
-     * @property _isHoriz
-     * @type boolean
-     * @private
-     */
-    _isHoriz: false,
-
-    /**
-     * Cache the last value so we can check for change
-     * @property _prevVal
-     * @type int
-     * @private
-     */
-    _prevVal: 0,
-
-    /**
-     * The slider is _graduated if there is a tick interval defined
-     * @property _graduated
-     * @type boolean
-     * @private
-     */
-    _graduated: false,
-
-
-    /**
-     * Returns the difference between the location of the thumb and its parent.
-     * @method getOffsetFromParent
-     * @param {[int, int]} parentPos Optionally accepts the position of the parent
-     * @type [int, int]
-     */
-    getOffsetFromParent0: function(parentPos) {
-        var myPos = YAHOO.util.Dom.getXY(this.getEl());
-        var ppos  = parentPos || YAHOO.util.Dom.getXY(this.parentElId);
-
-        return [ (myPos[0] - ppos[0]), (myPos[1] - ppos[1]) ];
-    },
-
-    getOffsetFromParent: function(parentPos) {
-
-        var el = this.getEl(), newOffset;
-
-        if (!this.deltaOffset) {
-
-            var myPos = YAHOO.util.Dom.getXY(el);
-            var ppos  = parentPos || YAHOO.util.Dom.getXY(this.parentElId);
-
-            newOffset = [ (myPos[0] - ppos[0]), (myPos[1] - ppos[1]) ];
-
-            var l = parseInt( YAHOO.util.Dom.getStyle(el, "left"), 10 );
-            var t = parseInt( YAHOO.util.Dom.getStyle(el, "top" ), 10 );
-
-            var deltaX = l - newOffset[0];
-            var deltaY = t - newOffset[1];
-
-            if (isNaN(deltaX) || isNaN(deltaY)) {
-            } else {
-                this.deltaOffset = [deltaX, deltaY];
-            }
-
-        } else {
-            var newLeft = parseInt( YAHOO.util.Dom.getStyle(el, "left"), 10 );
-            var newTop  = parseInt( YAHOO.util.Dom.getStyle(el, "top" ), 10 );
-
-            newOffset  = [newLeft + this.deltaOffset[0], newTop + this.deltaOffset[1]];
-        }
-
-        return newOffset;
-
-        //return [ (myPos[0] - ppos[0]), (myPos[1] - ppos[1]) ];
-    },
-
-    /**
-     * Set up the slider, must be called in the constructor of all subclasses
-     * @method initSlider
-     * @param {int} iLeft the number of pixels the element can move left
-     * @param {int} iRight the number of pixels the element can move right
-     * @param {int} iUp the number of pixels the element can move up
-     * @param {int} iDown the number of pixels the element can move down
-     * @param {int} iTickSize the width of the tick interval.
-     */
-    initSlider: function (iLeft, iRight, iUp, iDown, iTickSize) {
-
-
-        //document these.  new for 0.12.1
-        this.initLeft = iLeft;
-        this.initRight = iRight;
-        this.initUp = iUp;
-        this.initDown = iDown;
-
-        this.setXConstraint(iLeft, iRight, iTickSize);
-        this.setYConstraint(iUp, iDown, iTickSize);
-
-        if (iTickSize && iTickSize > 1) {
-            this._graduated = true;
-        }
-
-        this._isHoriz  = (iLeft || iRight); 
-        this._isVert   = (iUp   || iDown);
-        this._isRegion = (this._isHoriz && this._isVert); 
-
-    },
-
-    /**
-     * Clear's the slider's ticks
-     * @method clearTicks
-     */
-    clearTicks: function () {
-        YAHOO.widget.SliderThumb.superclass.clearTicks.call(this);
-        this.tickSize = 0;
-        this._graduated = false;
-    },
-
-
-    /**
-     * Gets the current offset from the element's start position in
-     * pixels.
-     * @method getValue
-     * @return {int} the number of pixels (positive or negative) the
-     * slider has moved from the start position.
-     */
-    getValue: function () {
-        return (this._isHoriz) ? this.getXValue() : this.getYValue();
-    },
-
-    /**
-     * Gets the current X offset from the element's start position in
-     * pixels.
-     * @method getXValue
-     * @return {int} the number of pixels (positive or negative) the
-     * slider has moved horizontally from the start position.
-     */
-    getXValue: function () {
-        if (!this.available) { 
-            return 0; 
-        }
-        var newOffset = this.getOffsetFromParent();
-        if (YAHOO.lang.isNumber(newOffset[0])) {
-            this.lastOffset = newOffset;
-            return (newOffset[0] - this.startOffset[0]);
-        } else {
-            return (this.lastOffset[0] - this.startOffset[0]);
-        }
-    },
-
-    /**
-     * Gets the current Y offset from the element's start position in
-     * pixels.
-     * @method getYValue
-     * @return {int} the number of pixels (positive or negative) the
-     * slider has moved vertically from the start position.
-     */
-    getYValue: function () {
-        if (!this.available) { 
-            return 0; 
-        }
-        var newOffset = this.getOffsetFromParent();
-        if (YAHOO.lang.isNumber(newOffset[1])) {
-            this.lastOffset = newOffset;
-            return (newOffset[1] - this.startOffset[1]);
-        } else {
-            return (this.lastOffset[1] - this.startOffset[1]);
-        }
-    },
-
-    /**
-     * Thumb toString
-     * @method toString
-     * @return {string} string representation of the instance
-     */
-    toString: function () { 
-        return "SliderThumb " + this.id;
-    },
-
-    /**
-     * The onchange event for the handle/thumb is delegated to the YAHOO.widget.Slider
-     * instance it belongs to.
-     * @method onChange
-     * @private
-     */
-    onChange: function (x, y) { 
-    }
-
-});
-
-/**
- * A slider with two thumbs, one that represents the min value and 
- * the other the max.  Actually a composition of two sliders, both with
- * the same background.  The constraints for each slider are adjusted
- * dynamically so that the min value of the max slider is equal or greater
- * to the current value of the min slider, and the max value of the min
- * slider is the current value of the max slider.
- * Constructor assumes both thumbs are positioned absolutely at the 0 mark on
- * the background.
- *
- * @namespace YAHOO.widget
- * @class DualSlider
- * @uses YAHOO.util.EventProvider
- * @constructor
- * @param {Slider} minSlider The Slider instance used for the min value thumb
- * @param {Slider} maxSlider The Slider instance used for the max value thumb
- * @param {int}    range The number of pixels the thumbs may move within
- * @param {Array}  initVals (optional) [min,max] Initial thumb placement
- */
-YAHOO.widget.DualSlider = function(minSlider, maxSlider, range, initVals) {
-
-    var self = this,
-        lang = YAHOO.lang;
-
-    /**
-     * A slider instance that keeps track of the lower value of the range.
-     * <strong>read only</strong>
-     * @property minSlider
-     * @type Slider
-     */
-    this.minSlider = minSlider;
-
-    /**
-     * A slider instance that keeps track of the upper value of the range.
-     * <strong>read only</strong>
-     * @property maxSlider
-     * @type Slider
-     */
-    this.maxSlider = maxSlider;
-
-    /**
-     * The currently active slider (min or max). <strong>read only</strong>
-     * @property activeSlider
-     * @type Slider
-     */
-    this.activeSlider = minSlider;
-
-    /**
-     * Is the DualSlider oriented horizontally or vertically?
-     * <strong>read only</strong>
-     * @property isHoriz
-     * @type boolean
-     */
-    this.isHoriz = minSlider.thumb._isHoriz;
-
-    // Validate initial values
-    initVals = YAHOO.lang.isArray(initVals) ? initVals : [0,range];
-    initVals[0] = Math.min(Math.max(parseInt(initVals[0],10)|0,0),range);
-    initVals[1] = Math.max(Math.min(parseInt(initVals[1],10)|0,range),0);
-    // Swap initVals if min > max
-    if (initVals[0] > initVals[1]) {
-        initVals.splice(0,2,initVals[1],initVals[0]);
-    }
-
-    var ready = { min : false, max : false };
-
-    this.minSlider.thumb.onAvailable = function () {
-        minSlider.setStartSliderState();
-        ready.min = true;
-        if (ready.max) {
-            minSlider.setValue(initVals[0],true,true,true);
-            maxSlider.setValue(initVals[1],true,true,true);
-            self.updateValue(true);
-            self.fireEvent('ready',self);
-        }
-    };
-    this.maxSlider.thumb.onAvailable = function () {
-        maxSlider.setStartSliderState();
-        ready.max = true;
-        if (ready.min) {
-            minSlider.setValue(initVals[0],true,true,true);
-            maxSlider.setValue(initVals[1],true,true,true);
-            self.updateValue(true);
-            self.fireEvent('ready',self);
-        }
-    };
-
-    // dispatch mousedowns to the active slider
-    minSlider.onMouseDown = function(e) {
-        return self._handleMouseDown(e);
-    };
-
-    // we can safely ignore a mousedown on one of the sliders since
-    // they share a background
-    maxSlider.onMouseDown = function(e) { 
-        if (self.minSlider.isLocked() && !self.minSlider._sliding) {
-            return self._handleMouseDown(e);
-        } else {
-            YAHOO.util.Event.stopEvent(e); 
-            return false;
-        }
-    };
-
-    // Fix the drag behavior so that only the active slider
-    // follows the drag
-    minSlider.onDrag =
-    maxSlider.onDrag = function(e) {
-        self._handleDrag(e);
-    };
-
-    // The core events for each slider are handled so we can expose a single
-    // event for when the event happens on either slider
-    minSlider.subscribe("change", this._handleMinChange, minSlider, this);
-    minSlider.subscribe("slideStart", this._handleSlideStart, minSlider, this);
-    minSlider.subscribe("slideEnd", this._handleSlideEnd, minSlider, this);
-
-    maxSlider.subscribe("change", this._handleMaxChange, maxSlider, this);
-    maxSlider.subscribe("slideStart", this._handleSlideStart, maxSlider, this);
-    maxSlider.subscribe("slideEnd", this._handleSlideEnd, maxSlider, this);
-
-    /**
-     * Event that fires when the slider is finished setting up
-     * @event ready
-     * @param {DualSlider} dualslider the DualSlider instance
-     */
-    this.createEvent("ready", this);
-
-    /**
-     * Event that fires when either the min or max value changes
-     * @event change
-     * @param {DualSlider} dualslider the DualSlider instance
-     */
-    this.createEvent("change", this);
-
-    /**
-     * Event that fires when one of the thumbs begins to move
-     * @event slideStart
-     * @param {Slider} activeSlider the moving slider
-     */
-    this.createEvent("slideStart", this);
-
-    /**
-     * Event that fires when one of the thumbs finishes moving
-     * @event slideEnd
-     * @param {Slider} activeSlider the moving slider
-     */
-    this.createEvent("slideEnd", this);
-};
-
-YAHOO.widget.DualSlider.prototype = {
-
-    /**
-     * The current value of the min thumb. <strong>read only</strong>.
-     * @property minVal
-     * @type int
-     */
-    minVal : -1,
-
-    /**
-     * The current value of the max thumb. <strong>read only</strong>.
-     * @property maxVal
-     * @type int
-     */
-    maxVal : -1,
-
-    /**
-     * Pixel distance to maintain between thumbs.
-     * @property minRange
-     * @type int
-     * @default 0
-     */
-    minRange : 0,
-
-    /**
-     * Executed when one of the sliders fires the slideStart event
-     * @method _handleSlideStart
-     * @private
-     */
-    _handleSlideStart: function(data, slider) {
-        this.fireEvent("slideStart", slider);
-    },
-
-    /**
-     * Executed when one of the sliders fires the slideEnd event
-     * @method _handleSlideEnd
-     * @private
-     */
-    _handleSlideEnd: function(data, slider) {
-        this.fireEvent("slideEnd", slider);
-    },
-
-    /**
-     * Overrides the onDrag method for both sliders
-     * @method _handleDrag
-     * @private
-     */
-    _handleDrag: function(e) {
-        YAHOO.widget.Slider.prototype.onDrag.call(this.activeSlider, e);
-    },
-
-    /**
-     * Executed when the min slider fires the change event
-     * @method _handleMinChange
-     * @private
-     */
-    _handleMinChange: function() {
-        this.activeSlider = this.minSlider;
-        this.updateValue();
-    },
-
-    /**
-     * Executed when the max slider fires the change event
-     * @method _handleMaxChange
-     * @private
-     */
-    _handleMaxChange: function() {
-        this.activeSlider = this.maxSlider;
-        this.updateValue();
-    },
-
-    /**
-     * Sets the min and max thumbs to new values.
-     * @method setValues
-     * @param min {int} Pixel offset to assign to the min thumb
-     * @param max {int} Pixel offset to assign to the max thumb
-     * @param skipAnim {boolean} (optional) Set to true to skip thumb animation.
-     * Default false
-     * @param force {boolean} (optional) ignore the locked setting and set
-     * value anyway. Default false
-     * @param silent {boolean} (optional) Set to true to skip firing change
-     * events.  Default false
-     */
-    setValues : function (min, max, skipAnim, force, silent) {
-        var mins = this.minSlider,
-            maxs = this.maxSlider,
-            mint = mins.thumb,
-            maxt = maxs.thumb,
-            self = this,
-            done = { min : false, max : false };
-
-        // Clear constraints to prevent animated thumbs from prematurely
-        // stopping when hitting a constraint that's moving with the other
-        // thumb.
-        if (mint._isHoriz) {
-            mint.setXConstraint(mint.leftConstraint,maxt.rightConstraint,mint.tickSize);
-            maxt.setXConstraint(mint.leftConstraint,maxt.rightConstraint,maxt.tickSize);
-        } else {
-            mint.setYConstraint(mint.topConstraint,maxt.bottomConstraint,mint.tickSize);
-            maxt.setYConstraint(mint.topConstraint,maxt.bottomConstraint,maxt.tickSize);
-        }
-
-        // Set up one-time slideEnd callbacks to call updateValue when both
-        // thumbs have been set
-        this._oneTimeCallback(mins,'slideEnd',function () {
-            done.min = true;
-            if (done.max) {
-                self.updateValue(silent);
-                // Clean the slider's slideEnd events on a timeout since this
-                // will be executed from inside the event's fire
-                setTimeout(function () {
-                    self._cleanEvent(mins,'slideEnd');
-                    self._cleanEvent(maxs,'slideEnd');
-                },0);
-            }
-        });
-
-        this._oneTimeCallback(maxs,'slideEnd',function () {
-            done.max = true;
-            if (done.min) {
-                self.updateValue(silent);
-                // Clean both sliders' slideEnd events on a timeout since this
-                // will be executed from inside one of the event's fire
-                setTimeout(function () {
-                    self._cleanEvent(mins,'slideEnd');
-                    self._cleanEvent(maxs,'slideEnd');
-                },0);
-            }
-        });
-
-        // Must emit Slider slideEnd event to propagate to updateValue
-        mins.setValue(min,skipAnim,force,false);
-        maxs.setValue(max,skipAnim,force,false);
-    },
-
-    /**
-     * Set the min thumb position to a new value.
-     * @method setMinValue
-     * @param min {int} Pixel offset for min thumb
-     * @param skipAnim {boolean} (optional) Set to true to skip thumb animation.
-     * Default false
-     * @param force {boolean} (optional) ignore the locked setting and set
-     * value anyway. Default false
-     * @param silent {boolean} (optional) Set to true to skip firing change
-     * events.  Default false
-     */
-    setMinValue : function (min, skipAnim, force, silent) {
-        var mins = this.minSlider;
-
-        this.activeSlider = mins;
-
-        // Use a one-time event callback to delay the updateValue call
-        // until after the slide operation is done
-        var self = this;
-        this._oneTimeCallback(mins,'slideEnd',function () {
-            self.updateValue(silent);
-            // Clean the slideEnd event on a timeout since this
-            // will be executed from inside the event's fire
-            setTimeout(function () { self._cleanEvent(mins,'slideEnd'); }, 0);
-        });
-
-        mins.setValue(min, skipAnim, force, silent);
-    },
-
-    /**
-     * Set the max thumb position to a new value.
-     * @method setMaxValue
-     * @param max {int} Pixel offset for max thumb
-     * @param skipAnim {boolean} (optional) Set to true to skip thumb animation.
-     * Default false
-     * @param force {boolean} (optional) ignore the locked setting and set
-     * value anyway. Default false
-     * @param silent {boolean} (optional) Set to true to skip firing change
-     * events.  Default false
-     */
-    setMaxValue : function (max, skipAnim, force, silent) {
-        var maxs = this.maxSlider;
-
-        this.activeSlider = maxs;
-
-        // Use a one-time event callback to delay the updateValue call
-        // until after the slide operation is done
-        var self = this;
-        this._oneTimeCallback(maxs,'slideEnd',function () {
-            self.updateValue(silent);
-            // Clean the slideEnd event on a timeout since this
-            // will be executed from inside the event's fire
-            setTimeout(function () { self._cleanEvent(maxs,'slideEnd'); }, 0);
-        });
-
-        maxs.setValue(max, skipAnim, force, silent);
-    },
-
-    /**
-     * Executed when one of the sliders is moved
-     * @method updateValue
-     * @param silent {boolean} (optional) Set to true to skip firing change
-     * events.  Default false
-     * @private
-     */
-    updateValue: function(silent) {
-        var min     = this.minSlider.getValue(),
-            max     = this.maxSlider.getValue(),
-            changed = false;
-
-        if (min != this.minVal || max != this.maxVal) {
-            changed = true;
-
-            var mint = this.minSlider.thumb,
-                maxt = this.maxSlider.thumb,
-                dim  = this.isHoriz ? 'x' : 'y';
-
-            var thumbInnerWidth = this.minSlider.thumbCenterPoint[dim] +
-                                  this.maxSlider.thumbCenterPoint[dim];
-
-            // Establish barriers within the respective other thumb's edge, less
-            // the minRange.  Limit to the Slider's range in the case of
-            // negative minRanges.
-            var minConstraint = Math.max(max-thumbInnerWidth-this.minRange,0);
-            var maxConstraint = Math.min(-min-thumbInnerWidth-this.minRange,0);
-
-            if (this.isHoriz) {
-                minConstraint = Math.min(minConstraint,maxt.rightConstraint);
-
-                mint.setXConstraint(mint.leftConstraint,minConstraint, mint.tickSize);
-
-                maxt.setXConstraint(maxConstraint,maxt.rightConstraint, maxt.tickSize);
-            } else {
-                minConstraint = Math.min(minConstraint,maxt.bottomConstraint);
-                mint.setYConstraint(mint.leftConstraint,minConstraint, mint.tickSize);
-
-                maxt.setYConstraint(maxConstraint,maxt.bottomConstraint, maxt.tickSize);
-            }
-        }
-
-        this.minVal = min;
-        this.maxVal = max;
-
-        if (changed && !silent) {
-            this.fireEvent("change", this);
-        }
-    },
-
-    /**
-     * A background click will move the slider thumb nearest to the click.
-     * Override if you need different behavior.
-     * @method selectActiveSlider
-     * @param e {Event} the mousedown event
-     * @private
-     */
-    selectActiveSlider: function(e) {
-        var min = this.minSlider,
-            max = this.maxSlider,
-            minLocked = min.isLocked(),
-            maxLocked = max.isLocked(),
-            Ev  = YAHOO.util.Event,
-            d;
-
-        if (minLocked || maxLocked) {
-            this.activeSlider = minLocked ? max : min;
-        } else {
-            if (this.isHoriz) {
-                d = Ev.getPageX(e)-min.thumb.initPageX-min.thumbCenterPoint.x;
-            } else {
-                d = Ev.getPageY(e)-min.thumb.initPageY-min.thumbCenterPoint.y;
-            }
-                    
-            this.activeSlider = d*2 > max.getValue()+min.getValue() ? max : min;
-        }
-    },
-
-    /**
-     * Overrides the onMouseDown for both slider, only moving the active slider
-     * @method handleMouseDown
-     * @private
-     */
-    _handleMouseDown: function(e) {
-        this.selectActiveSlider(e);
-        YAHOO.widget.Slider.prototype.onMouseDown.call(this.activeSlider, e);
-    },
-
-    /**
-     * Schedule an event callback that will execute once, then unsubscribe
-     * itself.
-     * @method _oneTimeCallback
-     * @param o {EventProvider} Object to attach the event to
-     * @param evt {string} Name of the event
-     * @param fn {Function} function to execute once
-     * @private
-     */
-    _oneTimeCallback : function (o,evt,fn) {
-        o.subscribe(evt,function () {
-            // Unsubscribe myself
-            o.unsubscribe(evt,arguments.callee);
-            // Pass the event handler arguments to the one time callback
-            fn.apply({},[].slice.apply(arguments));
-        });
-    },
-
-    /**
-     * Clean up the slideEnd event subscribers array, since each one-time
-     * callback will be replaced in the event's subscribers property with
-     * null.  This will cause memory bloat and loss of performance.
-     * @method _cleanEvent
-     * @param o {EventProvider} object housing the CustomEvent
-     * @param evt {string} name of the CustomEvent
-     * @private
-     */
-    _cleanEvent : function (o,evt) {
-        if (o.__yui_events && o.events[evt]) {
-            var ce, i, len;
-            for (i = o.__yui_events.length; i >= 0; --i) {
-                if (o.__yui_events[i].type === evt) {
-                    ce = o.__yui_events[i];
-                    break;
-                }
-            }
-            if (ce) {
-                var subs    = ce.subscribers,
-                    newSubs = [],
-                    j = 0;
-                for (i = 0, len = subs.length; i < len; ++i) {
-                    if (subs[i]) {
-                        newSubs[j++] = subs[i];
-                    }
-                }
-                ce.subscribers = newSubs;
-            }
-        }
-    }
-
-};
-
-YAHOO.augment(YAHOO.widget.DualSlider, YAHOO.util.EventProvider);
-
-
-/**
- * Factory method for creating a horizontal dual-thumb slider
- * @for YAHOO.widget.Slider
- * @method YAHOO.widget.Slider.getHorizDualSlider
- * @static
- * @param {String} bg the id of the slider's background element
- * @param {String} minthumb the id of the min thumb
- * @param {String} maxthumb the id of the thumb thumb
- * @param {int} range the number of pixels the thumbs can move within
- * @param {int} iTickSize (optional) the element should move this many pixels
- * at a time
- * @param {Array}  initVals (optional) [min,max] Initial thumb placement
- * @return {DualSlider} a horizontal dual-thumb slider control
- */
-YAHOO.widget.Slider.getHorizDualSlider = 
-    function (bg, minthumb, maxthumb, range, iTickSize, initVals) {
-        var mint, maxt;
-        var YW = YAHOO.widget, Slider = YW.Slider, Thumb = YW.SliderThumb;
-
-        mint = new Thumb(minthumb, bg, 0, range, 0, 0, iTickSize);
-        maxt = new Thumb(maxthumb, bg, 0, range, 0, 0, iTickSize);
-
-        return new YW.DualSlider(new Slider(bg, bg, mint, "horiz"), new Slider(bg, bg, maxt, "horiz"), range, initVals);
-};
-
-/**
- * Factory method for creating a vertical dual-thumb slider.
- * @for YAHOO.widget.Slider
- * @method YAHOO.widget.Slider.getVertDualSlider
- * @static
- * @param {String} bg the id of the slider's background element
- * @param {String} minthumb the id of the min thumb
- * @param {String} maxthumb the id of the thumb thumb
- * @param {int} range the number of pixels the thumbs can move within
- * @param {int} iTickSize (optional) the element should move this many pixels
- * at a time
- * @param {Array}  initVals (optional) [min,max] Initial thumb placement
- * @return {DualSlider} a vertical dual-thumb slider control
- */
-YAHOO.widget.Slider.getVertDualSlider = 
-    function (bg, minthumb, maxthumb, range, iTickSize, initVals) {
-        var mint, maxt;
-        var YW = YAHOO.widget, Slider = YW.Slider, Thumb = YW.SliderThumb;
-
-        mint = new Thumb(minthumb, bg, 0, 0, 0, range, iTickSize);
-        maxt = new Thumb(maxthumb, bg, 0, 0, 0, range, iTickSize);
-
-        return new YW.DualSlider(new Slider(bg, bg, mint, "vert"), new Slider(bg, bg, maxt, "vert"), range, initVals);
-};
-YAHOO.register("slider", YAHOO.widget.Slider, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/tabview/README b/eclipse.org-common/yui/2.6.0/build/tabview/README
deleted file mode 100644
index 4bf9e5c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/tabview/README
+++ /dev/null
@@ -1,51 +0,0 @@
-TabView Release Notes
-
-*** version 2.6.0 ***
-* activeIndex and activeTab sync issue fixed
-* activeIndex change events mapped to activeTab (and vice-versa)
-
-*** version 2.5.2 ***
-* no change
-
-*** version 2.5.1 ***
-* no change
-
-*** version 2.5.0 ***
-* moved Tab default "title" attribute to static Tab.TITLE 
-
-*** version 2.4.0 ***
-* no change
-
-*** version 2.3.1 ***
-* removed Xoutline from tabview-core.css
-
-** version 2.3.0 ***
-* no longer firing tabChange if already selected
-* multiple clicks no longer trigger extra xhr if in progress
-* now using existing href for Tab href attribute
-* CLASSNAME now added if not present on tabview element
-
-*** version 2.2.2 ***
-
-* no change
-
-
-*** version 2.2.1 ***
-* no change
-
-*** version 2.2.0 ***
-* Element broken out into seperate pkg
-  NOTE: new dependency required - element-beta.js
-
-*** version 0.12.2 ***
-* var Tab is now private
-* fixed Element.configureAttribute
-
-*** version 0.12.1 ***
-* tabs.css renamed to tabview.css
-* calls to "set" now queued so they can be made before "contentReady"
-
-
-*** version 0.12.0 ***
-* TabView widget introduced
-* Note: border_tabs.css included as basic skin to enable "tabs" look
diff --git a/eclipse.org-common/yui/2.6.0/build/tabview/assets/border_tabs.css b/eclipse.org-common/yui/2.6.0/build/tabview/assets/border_tabs.css
deleted file mode 100644
index 7018a94..0000000
--- a/eclipse.org-common/yui/2.6.0/build/tabview/assets/border_tabs.css
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-navset .yui-nav li a,
-.yui-navset .yui-content {
-    border:1px solid #000;  /* label and content borders */
-}
-
-.yui-navset .yui-nav .selected a,
-.yui-navset .yui-nav a:hover,
-.yui-navset .yui-content {
-    background-color:#f6f7ee; /* active tab, tab hover, and content bgcolor */
-}
-
-.yui-navset .yui-nav li em { padding:.5em; } /* tab padding */
-
-/* defaults to orientation "top" */
-.yui-navset .yui-nav .selected a, 
-.yui-navset .yui-navset-top .yui-nav .selected a { 
-    border-width:1px 1px 0; /* no bottom border for active tab */
-    padding:0 0 1px; /* to match height of other tabs */
-}
-.yui-navset .yui-content,
-.yui-navset .yui-navset-top .yui-content {
-    margin:-1px 0 0; /* for active tab overlap */
-}
-
-/* overrides for other orientations */
-.yui-navset .yui-navset-bottom .yui-nav .selected a,
-.yui-navset-bottom .yui-nav .selected a {
-    border-width:0 1px 1px; /* no top border for active tab */
-    padding:1px 0 0; /* to match height of other tabs */
-}
-.yui-navset .yui-navset-bottom .yui-content,
-.yui-navset-bottom .yui-content {
-    margin:0 0 -1px; /* for active tab overlap */
-}
-.yui-navset .yui-navset-left .yui-nav li.selected a,
-.yui-navset-left .yui-nav li.selected a {
-    border-width:1px 0 1px 1px; /* no right border for active tab */
-    padding:0 1px 0 0; /* to match width of other tabs */
-}
-.yui-navset .yui-navset-left .yui-content,
-.yui-navset-left .yui-content {
-    margin:0 0 0 -1px; /* for active tab overlap */
-}
-.yui-navset .yui-navset-right .yui-nav li.selected a,
-.yui-navset-right .yui-nav li.selected a {
-    border-width:1px 1px 1px 0; /* no left border for active tab */
-    padding:0 0 0 1px; /* to match width of other tabs */
-}
-
-.yui-navset-right .yui-content {
-    margin:0 -1px 0 0; /* for active tab overlap */
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/tabview/assets/loading.gif b/eclipse.org-common/yui/2.6.0/build/tabview/assets/loading.gif
deleted file mode 100644
index 6a56815..0000000
--- a/eclipse.org-common/yui/2.6.0/build/tabview/assets/loading.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/tabview/assets/skin-sam.css b/eclipse.org-common/yui/2.6.0/build/tabview/assets/skin-sam.css
deleted file mode 100644
index c6301c3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/tabview/assets/skin-sam.css
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-navset .yui-nav li {
-    margin-right:0.16em; /* space between tabs */
-    padding-top:1px; /* gecko: make room for overflow */
-    zoom:1;
-}
-
-.yui-navset .yui-nav .selected { 
-    margin-bottom:-1px; /* for overlap */
-}
-
-.yui-navset .yui-nav a {
-    background:#dadbdb url(../../assets/skins/sam/sprite.png) repeat-x; /* sprite position for normal gradient */
-    border:solid #a3a3a3;
-    border-width:0 1px;
-    color:#000;
-    text-decoration:none;
-}
-
-.yui-navset .yui-nav li a em {
-    border-top:solid 1px #a3a3a3;
-    border-bottom:0;
-    cursor:hand;
-    padding:0.2em 0.5em;
-    top:-1px; /* for 1px rounded corners */
-    position:relative;
-}
-
-.yui-navset .yui-nav .selected a,
-.yui-navset .yui-nav a:focus,
-.yui-navset .yui-nav a:hover {
-    background:#214197 url(../../assets/skins/sam/sprite.png) repeat-x left -1400px;
-    color:#fff;
-}
-
-.yui-navset .yui-nav .selected a em {
-    padding:0.3em 0.5em; /* raise selected tab */
-}
-
-.yui-navset .yui-nav .selected a,
-.yui-navset .yui-nav a:hover,
-.yui-navset .yui-nav a:focus {
-    border-color:#243356;
-}
-
-.yui-navset .yui-nav a:hover em,
-.yui-navset .yui-nav a:focus em,
-.yui-navset .yui-nav .selected a em {
-    border-color:#233356 #406ed9;
-}
-
-.yui-navset .yui-nav {
-    border-bottom:1px solid #243356;
-    position:relative;
-    zoom:1;
-}
-
-.yui-navset .yui-content {
-    background:#abceff;
-    border-top:5px solid #214095;
-}
-
-.yui-navset .yui-content div {
-    border:1px solid #808080;
-    border-top-color:#243356;
-    padding:0.25em 0.5em;
-}
-
-.yui-navset .yui-content div div { /* kill inheritance */
-    border:0; 
-    padding:0;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/tabview/assets/skins/sam/tabview-skin.css b/eclipse.org-common/yui/2.6.0/build/tabview/assets/skins/sam/tabview-skin.css
deleted file mode 100644
index 9dca8ab..0000000
--- a/eclipse.org-common/yui/2.6.0/build/tabview/assets/skins/sam/tabview-skin.css
+++ /dev/null
@@ -1,187 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* .yui-navset defaults to .yui-navset-top */
-.yui-skin-sam .yui-navset .yui-nav,
-.yui-skin-sam .yui-navset .yui-navset-top .yui-nav { /* protect nested tabviews from other orientations */
-    border:solid #2647a0; /* color between tab list and content */
-    border-width:0 0 5px;
-    Xposition:relative;
-    zoom:1;
-}
-
-.yui-skin-sam .yui-navset .yui-nav li,
-.yui-skin-sam .yui-navset .yui-navset-top .yui-nav li {
-    margin:0 0.16em 0 0; /* space between tabs */
-    padding:1px 0 0; /* gecko: make room for overflow */
-    zoom:1;
-}
-
-.yui-skin-sam .yui-navset .yui-nav .selected,
-.yui-skin-sam .yui-navset .yui-navset-top .yui-nav .selected { 
-    margin:0 0.16em -1px 0; /* for overlap */
-}
-
-.yui-skin-sam .yui-navset .yui-nav a,
-.yui-skin-sam .yui-navset .yui-navset-top .yui-nav a {
-    background:#d8d8d8 url(../../../../assets/skins/sam/sprite.png) repeat-x; /* tab background */
-    border:solid #a3a3a3;
-    border-width:0 1px;
-    color:#000;
-    position:relative;
-    text-decoration:none;
-}
-
-.yui-skin-sam .yui-navset .yui-nav a em,
-.yui-skin-sam .yui-navset .yui-navset-top .yui-nav a em {
-    border:solid #a3a3a3;
-    border-width:1px 0 0;
-    cursor:hand;
-    padding:0.25em .75em;
-    left:0; right: 0; bottom: 0; /* protect from other orientations */
-    top:-1px; /* for 1px rounded corners */
-    position:relative;
-}
-
-.yui-skin-sam .yui-navset .yui-nav .selected a,
-.yui-skin-sam .yui-navset .yui-nav .selected a:focus, /* no focus effect for selected */
-.yui-skin-sam .yui-navset .yui-nav .selected a:hover { /* no hover effect for selected */
-    background:#2647a0 url(../../../../assets/skins/sam/sprite.png) repeat-x left -1400px; /* selected tab background */
-    color:#fff;
-}
-
-.yui-skin-sam .yui-navset .yui-nav a:hover,
-.yui-skin-sam .yui-navset .yui-nav a:focus {
-    background:#bfdaff url(../../../../assets/skins/sam/sprite.png) repeat-x left -1300px; /* selected tab background */
-    outline:0;
-}
-
-.yui-skin-sam .yui-navset .yui-nav .selected a em {
-    padding:0.35em 0.75em; /* raise selected tab */
-}
-
-.yui-skin-sam .yui-navset .yui-nav .selected a,
-.yui-skin-sam .yui-navset .yui-nav .selected a em {
-    border-color:#243356; /* selected tab border color */
-}
-
-.yui-skin-sam .yui-navset .yui-content {
-    background:#edf5ff; /* content background color */
-}
-
-.yui-skin-sam .yui-navset .yui-content,
-.yui-skin-sam .yui-navset .yui-navset-top .yui-content {
-    border:1px solid #808080; /* content border */
-    border-top-color:#243356; /* different border color */
-    padding:0.25em 0.5em; /* content padding */
-}
-
-/* left and right orientations */
-.yui-skin-sam .yui-navset-left .yui-nav,
-.yui-skin-sam .yui-navset .yui-navset-left .yui-nav,
-.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,
-.yui-skin-sam .yui-navset-right .yui-nav {
-    border-width:0 5px 0 0;
-    Xposition:absolute; /* from tabview-core; have to reiterate for skin-sam due to pos:rel on skin-sam yui-nav */
-    top:0; bottom:0; /* stretch to fill content height */
-}
-
-.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,
-.yui-skin-sam .yui-navset-right .yui-nav {
-    border-width:0 0 0 5px;
-}
-
-.yui-skin-sam .yui-navset-left .yui-nav li,
-.yui-skin-sam .yui-navset .yui-navset-left .yui-nav li,
-.yui-skin-sam .yui-navset-right .yui-nav li {
-    margin:0 0 0.16em; /* space between tabs */
-    padding:0 0 0 1px; /* gecko: make room for overflow */
-}
-
-.yui-skin-sam .yui-navset-right .yui-nav li {
-    padding:0 1px 0 0; /* gecko: make room for overflow */
-}
-
-.yui-skin-sam .yui-navset-left .yui-nav .selected,
-.yui-skin-sam .yui-navset .yui-navset-left .yui-nav .selected { 
-    margin:0 -1px 0.16em 0;
-}
-
-.yui-skin-sam .yui-navset-right .yui-nav .selected { 
-    margin:0 0 0.16em -1px;
-}
-
-.yui-skin-sam .yui-navset-left .yui-nav a,
-.yui-skin-sam .yui-navset-right .yui-nav a {
-    border-width:1px 0;
-}
-
-.yui-skin-sam .yui-navset-left .yui-nav a em,
-.yui-skin-sam .yui-navset .yui-navset-left .yui-nav a em,
-.yui-skin-sam .yui-navset-right .yui-nav a em {
-    border-width:0 0 0 1px;
-    padding:0.2em .75em;
-    top:auto;
-    left:-1px; /* for 1px rounded corners */
-}
-
-.yui-skin-sam .yui-navset-right .yui-nav a em {
-    border-width:0 1px 0 0;
-    left:auto;
-    right:-1px; /* for 1px rounded corners */
-}
-
-.yui-skin-sam .yui-navset-left .yui-nav a,
-.yui-skin-sam .yui-navset-left .yui-nav .selected a,
-.yui-skin-sam .yui-navset-left .yui-nav a:hover,
-.yui-skin-sam .yui-navset-right .yui-nav a,
-.yui-skin-sam .yui-navset-right .yui-nav .selected a,
-.yui-skin-sam .yui-navset-right .yui-nav a:hover,
-.yui-skin-sam .yui-navset-bottom .yui-nav a,
-.yui-skin-sam .yui-navset-bottom .yui-nav .selected a,
-.yui-skin-sam .yui-navset-bottom .yui-nav a:hover {
-    background-image:none; /* no left-right or bottom-top gradient */
-}
-
-.yui-skin-sam .yui-navset-left .yui-content {
-    border:1px solid #808080; /* content border */
-    border-left-color:#243356; /* different border color */
-}
-
-/* bottom orientation */
-.yui-skin-sam .yui-navset-bottom .yui-nav,
-.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav {
-    border-width:5px 0 0; /* color between tab list and content */
-}
-
-.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav .selected,
-.yui-skin-sam .yui-navset-bottom .yui-nav .selected { 
-    margin:-1px 0.16em 0 0; /* for overlap */
-}
-
-.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li,
-.yui-skin-sam .yui-navset-bottom .yui-nav li { 
-    padding:0 0 1px 0; /* gecko: make room for overflow */
-    vertical-align:top;
-}
-
-.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li a,
-.yui-skin-sam .yui-navset-bottom .yui-nav li a { 
-}
-
-.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav a em,
-.yui-skin-sam .yui-navset-bottom .yui-nav a em {
-    border-width:0 0 1px;
-    top:auto;
-    bottom:-1px; /* for 1px rounded corners */
-}
-
-.yui-skin-sam .yui-navset-bottom .yui-content,
-.yui-skin-sam .yui-navset .yui-navset-bottom .yui-content {
-    border:1px solid #808080; /* content border */
-    border-bottom-color:#243356; /* different border color */
-}
-
diff --git a/eclipse.org-common/yui/2.6.0/build/tabview/assets/skins/sam/tabview.css b/eclipse.org-common/yui/2.6.0/build/tabview/assets/skins/sam/tabview.css
deleted file mode 100644
index c166d7e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/tabview/assets/skins/sam/tabview.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-navset .yui-nav li,.yui-navset .yui-navset-top .yui-nav li,.yui-navset .yui-navset-bottom .yui-nav li{margin:0 0.5em 0 0;}.yui-navset-left .yui-nav li,.yui-navset-right .yui-nav li{margin:0 0 0.5em;}.yui-navset .yui-content .yui-hidden{display:none;}.yui-navset .yui-navset-left .yui-nav,.yui-navset .yui-navset-right .yui-nav,.yui-navset-left .yui-nav,.yui-navset-right .yui-nav{width:6em;}.yui-navset-top .yui-nav,.yui-navset-bottom .yui-nav{width:auto;}.yui-navset .yui-navset-left,.yui-navset-left{padding:0 0 0 6em;}.yui-navset-right{padding:0 6em 0 0;}.yui-navset-top,.yui-navset-bottom{padding:auto;}.yui-nav,.yui-nav li{margin:0;padding:0;list-style:none;}.yui-navset li em{font-style:normal;}.yui-navset{position:relative;zoom:1;}.yui-navset .yui-content{zoom:1;}.yui-navset .yui-nav li,.yui-navset .yui-navset-top .yui-nav li,.yui-navset .yui-navset-bottom .yui-nav li{display:inline-block;display:-moz-inline-stack;*display:inline;vertical-align:bottom;cursor:pointer;zoom:1;}.yui-navset-left .yui-nav li,.yui-navset-right .yui-nav li{display:block;}.yui-navset .yui-nav a{position:relative;}.yui-navset .yui-nav li a,.yui-navset-top .yui-nav li a,.yui-navset-bottom .yui-nav li a{display:block;display:inline-block;vertical-align:bottom;zoom:1;}.yui-navset-left .yui-nav li a,.yui-navset-right .yui-nav li a{display:block;}.yui-navset-bottom .yui-nav li a{vertical-align:text-top;}.yui-navset .yui-nav li a em,.yui-navset-top .yui-nav li a em,.yui-navset-bottom .yui-nav li a em{display:block;}.yui-navset .yui-navset-left .yui-nav,.yui-navset .yui-navset-right .yui-nav,.yui-navset-left .yui-nav,.yui-navset-right .yui-nav{position:absolute;z-index:1;}.yui-navset-top .yui-nav,.yui-navset-bottom .yui-nav{position:static;}.yui-navset .yui-navset-left .yui-nav,.yui-navset-left .yui-nav{left:0;right:auto;}.yui-navset .yui-navset-right .yui-nav,.yui-navset-right .yui-nav{right:0;left:auto;}.yui-skin-sam .yui-navset .yui-nav,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav{border:solid #2647a0;border-width:0 0 5px;Xposition:relative;zoom:1;}.yui-skin-sam .yui-navset .yui-nav li,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav li{margin:0 0.16em 0 0;padding:1px 0 0;zoom:1;}.yui-skin-sam .yui-navset .yui-nav .selected,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav .selected{margin:0 0.16em -1px 0;}.yui-skin-sam .yui-navset .yui-nav a,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav a{background:#d8d8d8 url(../../../../assets/skins/sam/sprite.png) repeat-x;border:solid #a3a3a3;border-width:0 1px;color:#000;position:relative;text-decoration:none;}.yui-skin-sam .yui-navset .yui-nav a em,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav a em{border:solid #a3a3a3;border-width:1px 0 0;cursor:hand;padding:0.25em .75em;left:0;right:0;bottom:0;top:-1px;position:relative;}.yui-skin-sam .yui-navset .yui-nav .selected a,.yui-skin-sam .yui-navset .yui-nav .selected a:focus,.yui-skin-sam .yui-navset .yui-nav .selected a:hover{background:#2647a0 url(../../../../assets/skins/sam/sprite.png) repeat-x left -1400px;color:#fff;}.yui-skin-sam .yui-navset .yui-nav a:hover,.yui-skin-sam .yui-navset .yui-nav a:focus{background:#bfdaff url(../../../../assets/skins/sam/sprite.png) repeat-x left -1300px;outline:0;}.yui-skin-sam .yui-navset .yui-nav .selected a em{padding:0.35em 0.75em;}.yui-skin-sam .yui-navset .yui-nav .selected a,.yui-skin-sam .yui-navset .yui-nav .selected a em{border-color:#243356;}.yui-skin-sam .yui-navset .yui-content{background:#edf5ff;}.yui-skin-sam .yui-navset .yui-content,.yui-skin-sam .yui-navset .yui-navset-top .yui-content{border:1px solid #808080;border-top-color:#243356;padding:0.25em 0.5em;}.yui-skin-sam .yui-navset-left .yui-nav,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav,.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav{border-width:0 5px 0 0;Xposition:absolute;top:0;bottom:0;}.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav{border-width:0 0 0 5px;}.yui-skin-sam .yui-navset-left .yui-nav li,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav li,.yui-skin-sam .yui-navset-right .yui-nav li{margin:0 0 0.16em;padding:0 0 0 1px;}.yui-skin-sam .yui-navset-right .yui-nav li{padding:0 1px 0 0;}.yui-skin-sam .yui-navset-left .yui-nav .selected,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav .selected{margin:0 -1px 0.16em 0;}.yui-skin-sam .yui-navset-right .yui-nav .selected{margin:0 0 0.16em -1px;}.yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav a{border-width:1px 0;}.yui-skin-sam .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset-right .yui-nav a em{border-width:0 0 0 1px;padding:0.2em .75em;top:auto;left:-1px;}.yui-skin-sam .yui-navset-right .yui-nav a em{border-width:0 1px 0 0;left:auto;right:-1px;}.yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-left .yui-nav .selected a,.yui-skin-sam .yui-navset-left .yui-nav a:hover,.yui-skin-sam .yui-navset-right .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav .selected a,.yui-skin-sam .yui-navset-right .yui-nav a:hover,.yui-skin-sam .yui-navset-bottom .yui-nav a,.yui-skin-sam .yui-navset-bottom .yui-nav .selected a,.yui-skin-sam .yui-navset-bottom .yui-nav a:hover{background-image:none;}.yui-skin-sam .yui-navset-left .yui-content{border:1px solid #808080;border-left-color:#243356;}.yui-skin-sam .yui-navset-bottom .yui-nav,.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav{border-width:5px 0 0;}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav .selected,.yui-skin-sam .yui-navset-bottom .yui-nav .selected{margin:-1px 0.16em 0 0;}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li,.yui-skin-sam .yui-navset-bottom .yui-nav li{padding:0 0 1px 0;vertical-align:top;}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li a,.yui-skin-sam .yui-navset-bottom .yui-nav li a{}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav a em,.yui-skin-sam .yui-navset-bottom .yui-nav a em{border-width:0 0 1px;top:auto;bottom:-1px;}.yui-skin-sam .yui-navset-bottom .yui-content,.yui-skin-sam .yui-navset .yui-navset-bottom .yui-content{border:1px solid #808080;border-bottom-color:#243356;}
diff --git a/eclipse.org-common/yui/2.6.0/build/tabview/assets/tabview-core.css b/eclipse.org-common/yui/2.6.0/build/tabview/assets/tabview-core.css
deleted file mode 100644
index 8319dc2..0000000
--- a/eclipse.org-common/yui/2.6.0/build/tabview/assets/tabview-core.css
+++ /dev/null
@@ -1,122 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* default space between tabs */
-.yui-navset .yui-nav li,
-.yui-navset .yui-navset-top .yui-nav li,
-.yui-navset .yui-navset-bottom .yui-nav li {
-    margin:0 0.5em 0 0; /* horizontal tabs */
-}
-.yui-navset-left .yui-nav li,
-.yui-navset-right .yui-nav li {
-    margin:0 0 0.5em; /* vertical tabs */
-}
-
-.yui-navset .yui-content .yui-hidden {
-    display:none;
-}
-
-/* default width for side tabs */
-.yui-navset .yui-navset-left .yui-nav,
-.yui-navset .yui-navset-right .yui-nav,
-.yui-navset-left .yui-nav,
-.yui-navset-right .yui-nav { width:6em; }
-
-.yui-navset-top .yui-nav,
-.yui-navset-bottom .yui-nav {
-    width:auto;
-}
-.yui-navset .yui-navset-left,
-.yui-navset-left { padding:0 0 0 6em; } /* map to nav width */
-.yui-navset-right { padding:0 6em 0 0; } /* ditto */
-
-.yui-navset-top,
-.yui-navset-bottom {
-    padding:auto;
-}
-/* core */
-
-.yui-nav,
-.yui-nav li {
-    margin:0;
-    padding:0;
-    list-style:none;
-}
-.yui-navset li em { font-style:normal; }
-
-.yui-navset {
-    position:relative; /* contain absolute positioned tabs (left/right) */
-    zoom:1;
-}
-
-.yui-navset .yui-content {
-    zoom:1;
-}
-
-.yui-navset .yui-content:after {
-    content:'';
-    display:block;
-    clear:both;
-}
-
-.yui-navset .yui-nav li,
-.yui-navset .yui-navset-top .yui-nav li, /* in case nested */
-.yui-navset .yui-navset-bottom .yui-nav li {
-    display:inline-block;
-    display:-moz-inline-stack;
-    *display:inline; /* IE */
-    vertical-align:bottom; /* safari: for overlap */
-    cursor:pointer; /* gecko: due to -moz-inline-stack on anchor */
-    zoom:1; /* IE: kill space between horizontal tabs */
-}
-
-.yui-navset-left .yui-nav li,
-.yui-navset-right .yui-nav li {
-    display:block;
-}
-
-.yui-navset .yui-nav a { position:relative; } /* IE: to allow overlap */
-
-.yui-navset .yui-nav li a,
-.yui-navset-top .yui-nav li a,
-.yui-navset-bottom .yui-nav li a {
-    display:block;
-    display:inline-block;
-    vertical-align:bottom; /* safari: for overlap */
-    zoom:1;
-}
-
-.yui-navset-left .yui-nav li a,
-.yui-navset-right .yui-nav li a {
-    display:block;
-}
-
-.yui-navset-bottom .yui-nav li a {
-    vertical-align:text-top; /* for inline overlap (reverse for Opera border bug) */
-}
-
-.yui-navset .yui-nav li a em,
-.yui-navset-top .yui-nav li a em,
-.yui-navset-bottom .yui-nav li a em { display:block; }
-
-/* position left and right oriented tabs */
-.yui-navset .yui-navset-left .yui-nav,
-.yui-navset .yui-navset-right .yui-nav,
-.yui-navset-left .yui-nav,
-.yui-navset-right .yui-nav {
-   position:absolute;
-   z-index:1; 
-}
-
-.yui-navset-top .yui-nav,
-.yui-navset-bottom .yui-nav {
-    position:static;
-}
-.yui-navset .yui-navset-left .yui-nav,
-.yui-navset-left .yui-nav { left:0; right:auto; }
-
-.yui-navset .yui-navset-right .yui-nav,
-.yui-navset-right .yui-nav { right:0; left:auto; }
diff --git a/eclipse.org-common/yui/2.6.0/build/tabview/assets/tabview.css b/eclipse.org-common/yui/2.6.0/build/tabview/assets/tabview.css
deleted file mode 100644
index afcfd69..0000000
--- a/eclipse.org-common/yui/2.6.0/build/tabview/assets/tabview.css
+++ /dev/null
@@ -1,113 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/* default space between tabs */
-.yui-navset .yui-nav li,
-.yui-navset .yui-navset-top .yui-nav li,
-.yui-navset .yui-navset-bottom .yui-nav li {
-    margin:0 0.5em 0 0; /* horizontal tabs */
-}
-.yui-navset-left .yui-nav li,
-.yui-navset-right .yui-nav li {
-    margin:0 0 0.5em; /* vertical tabs */
-}
-
-/* default width for side tabs */
-.yui-navset .yui-navset-left .yui-nav,
-.yui-navset .yui-navset-right .yui-nav,
-.yui-navset-left .yui-nav,
-.yui-navset-right .yui-nav { width:6em; }
-.yui-navset-top .yui-nav,
-.yui-navset-bottom .yui-nav {
-    width:auto;
-}
-.yui-navset .yui-navset-left,
-.yui-navset-left { padding:0 0 0 6em; } /* map to nav width */
-.yui-navset-right { padding:0 6em 0 0; } /* ditto */
-
-.yui-navset-top,
-.yui-navset-bottom {
-    padding:auto;
-}
-/* core */
-
-.yui-nav,
-.yui-nav li {
-    margin:0;
-    padding:0;
-    list-style:none;
-}
-.yui-navset li em { font-style:normal; }
-
-.yui-navset {
-    position:relative; /* contain absolute positioned tabs (left/right) */
-    zoom:1;
-}
-
-.yui-navset .yui-content { zoom:1; }
-
-.yui-navset .yui-nav li,
-.yui-navset .yui-navset-top .yui-nav li, /* in case nested */
-.yui-navset .yui-navset-bottom .yui-nav li {
-    display:inline-block;
-    display:-moz-inline-stack;
-    *display:inline; /* IE */
-    vertical-align:bottom; /* safari: for overlap */
-    cursor:pointer; /* gecko: due to -moz-inline-stack on anchor */
-    zoom:1; /* IE: kill space between horizontal tabs */
-}
-
-.yui-navset-left .yui-nav li,
-.yui-navset-right .yui-nav li {
-    display:block;
-}
-
-.yui-navset .yui-nav a {
-    outline:0; /* gecko: keep from shifting */
-}
-
-.yui-navset .yui-nav a { position:relative; } /* IE: to allow overlap */
-
-.yui-navset .yui-nav li a,
-.yui-navset-top .yui-nav li a,
-.yui-navset-bottom .yui-nav li a {
-    display:block;
-    display:inline-block;
-    vertical-align:bottom; /* safari: for overlap */
-    zoom:1;
-}
-
-.yui-navset-left .yui-nav li a,
-.yui-navset-right .yui-nav li a {
-    display:block;
-}
-
-.yui-navset-bottom .yui-nav li a {
-    vertical-align:text-top; /* for inline overlap (reverse for Opera border bug) */
-}
-
-.yui-navset .yui-nav li a em,
-.yui-navset-top .yui-nav li a em,
-.yui-navset-bottom .yui-nav li a em { display:block; }
-
-/* position left and right oriented tabs */
-.yui-navset .yui-navset-left .yui-nav,
-.yui-navset .yui-navset-right .yui-nav,
-.yui-navset-left .yui-nav,
-.yui-navset-right .yui-nav {
-   position:absolute;
-   z-index:1; 
-}
-
-.yui-navset-top .yui-nav,
-.yui-navset-bottom .yui-nav {
-    position:static;
-}
-.yui-navset .yui-navset-left .yui-nav,
-.yui-navset-left .yui-nav { left:0; right:auto; }
-
-.yui-navset .yui-navset-right .yui-nav,
-.yui-navset-right .yui-nav { right:0; left:auto; }
diff --git a/eclipse.org-common/yui/2.6.0/build/tabview/tabview-debug.js b/eclipse.org-common/yui/2.6.0/build/tabview/tabview-debug.js
deleted file mode 100644
index e211373..0000000
--- a/eclipse.org-common/yui/2.6.0/build/tabview/tabview-debug.js
+++ /dev/null
@@ -1,949 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function() {
-
-    /**
-     * The tabview module provides a widget for managing content bound to tabs.
-     * @module tabview
-     * @requires yahoo, dom, event, element
-     *
-     */
-
-    var Dom = YAHOO.util.Dom,
-        Event = YAHOO.util.Event,
-        Tab = YAHOO.widget.Tab,
-        doc = document;
-    
-    // STRING CONSTANTS
-    var ELEMENT = 'element';
-    
-    /**
-     * A widget to control tabbed views.
-     * @namespace YAHOO.widget
-     * @class TabView
-     * @extends YAHOO.util.Element
-     * @constructor
-     * @param {HTMLElement | String | Object} el(optional) The html 
-     * element that represents the TabView, or the attribute object to use. 
-     * An element will be created if none provided.
-     * @param {Object} attr (optional) A key map of the tabView's 
-     * initial attributes.  Ignored if first arg is attributes object.
-     */
-    var TabView = function(el, attr) {
-        attr = attr || {};
-        if (arguments.length == 1 && !YAHOO.lang.isString(el) && !el.nodeName) {
-            attr = el; // treat first arg as attr object
-            el = attr.element || null;
-        }
-        
-        if (!el && !attr.element) { // create if we dont have one
-            el = _createTabViewElement.call(this, attr);
-        }
-    	TabView.superclass.constructor.call(this, el, attr); 
-    };
-
-    YAHOO.extend(TabView, YAHOO.util.Element, {
-        /**
-         * The className to add when building from scratch. 
-         * @property CLASSNAME
-         * @default "navset"
-         */
-        CLASSNAME: 'yui-navset',
-        
-        /**
-         * The className of the HTMLElement containing the TabView's tab elements
-         * to look for when building from existing markup, or to add when building
-         * from scratch. 
-         * All childNodes of the tab container are treated as Tabs when building
-         * from existing markup.
-         * @property TAB_PARENT_CLASSNAME
-         * @default "nav"
-         */
-        TAB_PARENT_CLASSNAME: 'yui-nav',
-        
-        /**
-         * The className of the HTMLElement containing the TabView's label elements
-         * to look for when building from existing markup, or to add when building
-         * from scratch. 
-         * All childNodes of the content container are treated as content elements when
-         * building from existing markup.
-         * @property CONTENT_PARENT_CLASSNAME
-         * @default "nav-content"
-         */
-        CONTENT_PARENT_CLASSNAME: 'yui-content',
-        
-        _tabParent: null,
-        _contentParent: null,
-        
-        /**
-         * Adds a Tab to the TabView instance.  
-         * If no index is specified, the tab is added to the end of the tab list.
-         * @method addTab
-         * @param {YAHOO.widget.Tab} tab A Tab instance to add.
-         * @param {Integer} index The position to add the tab. 
-         * @return void
-         */
-        addTab: function(tab, index) {
-            var tabs = this.get('tabs');
-            if (!tabs) { // not ready yet
-                this._queue[this._queue.length] = ['addTab', arguments];
-                return false;
-            }
-            
-            index = (index === undefined) ? tabs.length : index;
-            
-            var before = this.getTab(index);
-            
-            var self = this;
-            var el = this.get(ELEMENT);
-            var tabParent = this._tabParent;
-            var contentParent = this._contentParent;
-
-            var tabElement = tab.get(ELEMENT);
-            var contentEl = tab.get('contentEl');
-
-            if ( before ) {
-                tabParent.insertBefore(tabElement, before.get(ELEMENT));
-            } else {
-                tabParent.appendChild(tabElement);
-            }
-
-            if ( contentEl && !Dom.isAncestor(contentParent, contentEl) ) {
-                contentParent.appendChild(contentEl);
-            }
-            
-            if ( !tab.get('active') ) {
-                tab.set('contentVisible', false, true); /* hide if not active */
-            } else {
-                this.set('activeTab', tab, true);
-                
-            }
-
-            var activate = function(e) {
-                YAHOO.util.Event.preventDefault(e);
-                var silent = false;
-
-                if (this == self.get('activeTab')) {
-                    silent = true; // dont fire activeTabChange if already active
-                }
-                self.set('activeTab', this, silent);
-            };
-            
-            tab.addListener( tab.get('activationEvent'), activate);
-            
-            tab.addListener('activationEventChange', function(e) {
-                if (e.prevValue != e.newValue) {
-                    tab.removeListener(e.prevValue, activate);
-                    tab.addListener(e.newValue, activate);
-                }
-            });
-            
-            tabs.splice(index, 0, tab);
-        },
-
-        /**
-         * Routes childNode events.
-         * @method DOMEventHandler
-         * @param {event} e The Dom event that is being handled.
-         * @return void
-         */
-        DOMEventHandler: function(e) {
-            var el = this.get(ELEMENT);
-            var target = YAHOO.util.Event.getTarget(e);
-            var tabParent = this._tabParent;
-            
-            if (Dom.isAncestor(tabParent, target) ) {
-                var tabEl;
-                var tab = null;
-                var contentEl;
-                var tabs = this.get('tabs');
-
-                for (var i = 0, len = tabs.length; i < len; i++) {
-                    tabEl = tabs[i].get(ELEMENT);
-                    contentEl = tabs[i].get('contentEl');
-
-                    if ( target == tabEl || Dom.isAncestor(tabEl, target) ) {
-                        tab = tabs[i];
-                        break; // note break
-                    }
-                } 
-                
-                if (tab) {
-                    tab.fireEvent(e.type, e);
-                }
-            }
-        },
-        
-        /**
-         * Returns the Tab instance at the specified index.
-         * @method getTab
-         * @param {Integer} index The position of the Tab.
-         * @return YAHOO.widget.Tab
-         */
-        getTab: function(index) {
-            return this.get('tabs')[index];
-        },
-        
-        /**
-         * Returns the index of given tab.
-         * @method getTabIndex
-         * @param {YAHOO.widget.Tab} tab The tab whose index will be returned.
-         * @return int
-         */
-        getTabIndex: function(tab) {
-            var index = null;
-            var tabs = this.get('tabs');
-            for (var i = 0, len = tabs.length; i < len; ++i) {
-                if (tab == tabs[i]) {
-                    index = i;
-                    break;
-                }
-            }
-            
-            return index;
-        },
-        
-        /**
-         * Removes the specified Tab from the TabView.
-         * @method removeTab
-         * @param {YAHOO.widget.Tab} item The Tab instance to be removed.
-         * @return void
-         */
-        removeTab: function(tab) {
-            var tabCount = this.get('tabs').length;
-
-            var index = this.getTabIndex(tab);
-            var nextIndex = index + 1;
-            if ( tab == this.get('activeTab') ) { // select next tab
-                if (tabCount > 1) {
-                    if (index + 1 == tabCount) {
-                        this.set('activeIndex', index - 1);
-                    } else {
-                        this.set('activeIndex', index + 1);
-                    }
-                }
-            }
-            
-            this._tabParent.removeChild( tab.get(ELEMENT) );
-            this._contentParent.removeChild( tab.get('contentEl') );
-            this._configs.tabs.value.splice(index, 1);
-            
-        },
-        
-        /**
-         * Provides a readable name for the TabView instance.
-         * @method toString
-         * @return String
-         */
-        toString: function() {
-            var name = this.get('id') || this.get('tagName');
-            return "TabView " + name; 
-        },
-        
-        /**
-         * The transiton to use when switching between tabs.
-         * @method contentTransition
-         */
-        contentTransition: function(newTab, oldTab) {
-            newTab.set('contentVisible', true);
-            oldTab.set('contentVisible', false);
-        },
-        
-        /**
-         * setAttributeConfigs TabView specific properties.
-         * @method initAttributes
-         * @param {Object} attr Hash of initial attributes
-         */
-        initAttributes: function(attr) {
-            TabView.superclass.initAttributes.call(this, attr);
-            
-            if (!attr.orientation) {
-                attr.orientation = 'top';
-            }
-            
-            var el = this.get(ELEMENT);
-
-            if (!Dom.hasClass(el, this.CLASSNAME)) {
-                Dom.addClass(el, this.CLASSNAME);        
-            }
-            
-            /**
-             * The Tabs belonging to the TabView instance.
-             * @attribute tabs
-             * @type Array
-             */
-            this.setAttributeConfig('tabs', {
-                value: [],
-                readOnly: true
-            });
-
-            /**
-             * The container of the tabView's label elements.
-             * @property _tabParent
-             * @private
-             * @type HTMLElement
-             */
-            this._tabParent = 
-                    this.getElementsByClassName(this.TAB_PARENT_CLASSNAME,
-                            'ul' )[0] || _createTabParent.call(this);
-                
-            /**
-             * The container of the tabView's content elements.
-             * @property _contentParent
-             * @type HTMLElement
-             * @private
-             */
-            this._contentParent = 
-                    this.getElementsByClassName(this.CONTENT_PARENT_CLASSNAME,
-                            'div')[0] ||  _createContentParent.call(this);
-            
-            /**
-             * How the Tabs should be oriented relative to the TabView.
-             * @attribute orientation
-             * @type String
-             * @default "top"
-             */
-            this.setAttributeConfig('orientation', {
-                value: attr.orientation,
-                method: function(value) {
-                    var current = this.get('orientation');
-                    this.addClass('yui-navset-' + value);
-                    
-                    if (current != value) {
-                        this.removeClass('yui-navset-' + current);
-                    }
-                    
-                    switch(value) {
-                        case 'bottom':
-                        this.appendChild(this._tabParent);
-                        break;
-                    }
-                }
-            });
-            
-            /**
-             * The index of the tab currently active.
-             * @attribute activeIndex
-             * @type Int
-             */
-            this.setAttributeConfig('activeIndex', {
-                value: attr.activeIndex,
-                method: function(value) {
-                    //this.set('activeTab', this.getTab(value));
-                },
-                validator: function(value) {
-                    return !this.getTab(value).get('disabled'); // cannot activate if disabled
-                }
-            });
-            
-            /**
-             * The tab currently active.
-             * @attribute activeTab
-             * @type YAHOO.widget.Tab
-             */
-            this.setAttributeConfig('activeTab', {
-                value: attr.activeTab,
-                method: function(tab) {
-                    var activeTab = this.get('activeTab');
-                    
-                    if (tab) {
-                        tab.set('active', true);
-                        //this._configs['activeIndex'].value = this.getTabIndex(tab); // keep in sync
-                    }
-                    
-                    if (activeTab && activeTab != tab) {
-                        activeTab.set('active', false);
-                    }
-                    
-                    if (activeTab && tab != activeTab) { // no transition if only 1
-                        this.contentTransition(tab, activeTab);
-                    } else if (tab) {
-                        tab.set('contentVisible', true);
-                    }
-                },
-                validator: function(value) {
-                    return !value.get('disabled'); // cannot activate if disabled
-                }
-            });
-
-            this.on('activeTabChange', this._handleActiveTabChange);
-            this.on('activeIndexChange', this._handleActiveIndexChange);
-
-            YAHOO.log('attributes initialized', 'info', 'TabView');
-            if ( this._tabParent ) {
-                _initTabs.call(this);
-            }
-            
-            // Due to delegation we add all DOM_EVENTS to the TabView container
-            // but IE will leak when unsupported events are added, so remove these
-            this.DOM_EVENTS.submit = false;
-            this.DOM_EVENTS.focus = false;
-            this.DOM_EVENTS.blur = false;
-
-            for (var type in this.DOM_EVENTS) {
-                if ( YAHOO.lang.hasOwnProperty(this.DOM_EVENTS, type) ) {
-                    this.addListener.call(this, type, this.DOMEventHandler);
-                }
-            }
-        },
-
-        _handleActiveTabChange: function(e) {
-            var activeIndex = this.get('activeIndex'),
-                newIndex = this.getTabIndex(e.newValue);
-
-            if (activeIndex !== newIndex) {
-                if (!(this.set('activeIndex', newIndex)) ) { // NOTE: setting
-                     // revert if activeIndex update fails (cancelled via beforeChange) 
-                    this.set('activeTab', e.prevValue);
-                }
-            }
-        },
-        
-        _handleActiveIndexChange: function(e) {
-            // no set if called from ActiveTabChange event
-            if (e.newValue !== this.getTabIndex(this.get('activeTab'))) {
-                if (!(this.set('activeTab', this.getTab(e.newValue))) ) { // NOTE: setting
-                     // revert if activeTab update fails (cancelled via beforeChange) 
-                    this.set('activeIndex', e.prevValue);
-                }
-            }
-        }
-    });
-    
-    
-    /**
-     * Creates Tab instances from a collection of HTMLElements.
-     * @method initTabs
-     * @private
-     * @return void
-     */
-    var _initTabs = function() {
-        var tab,
-            attr,
-            contentEl;
-            
-        var el = this.get(ELEMENT);   
-        var tabs = Dom.getChildren(this._tabParent);
-        var contentElements = Dom.getChildren(this._contentParent);
-
-        for (var i = 0, len = tabs.length; i < len; ++i) {
-            attr = {};
-            
-            if (contentElements[i]) {
-                attr.contentEl = contentElements[i];
-            }
-
-            tab = new YAHOO.widget.Tab(tabs[i], attr);
-            this.addTab(tab);
-            
-            if (tab.hasClass(tab.ACTIVE_CLASSNAME) ) {
-                this._configs.activeTab.value = tab; // dont invoke method
-                this._configs.activeIndex.value = this.getTabIndex(tab);
-            }
-        }
-    };
-    
-    var _createTabViewElement = function(attr) {
-        var el = doc.createElement('div');
-
-        if ( this.CLASSNAME ) {
-            el.className = this.CLASSNAME;
-        }
-        
-        YAHOO.log('TabView Dom created', 'info', 'TabView');
-        return el;
-    };
-    
-    var _createTabParent = function(attr) {
-        var el = doc.createElement('ul');
-
-        if ( this.TAB_PARENT_CLASSNAME ) {
-            el.className = this.TAB_PARENT_CLASSNAME;
-        }
-        
-        this.get(ELEMENT).appendChild(el);
-        
-        return el;
-    };
-    
-    var _createContentParent = function(attr) {
-        var el = doc.createElement('div');
-
-        if ( this.CONTENT_PARENT_CLASSNAME ) {
-            el.className = this.CONTENT_PARENT_CLASSNAME;
-        }
-        
-        this.get(ELEMENT).appendChild(el);
-        
-        return el;
-    };
-    
-    YAHOO.widget.TabView = TabView;
-})();
-
-(function() {
-    var Dom = YAHOO.util.Dom,
-        Event = YAHOO.util.Event,
-        Lang = YAHOO.lang;
-    
-
-    // STRING CONSTANTS
-    var CONTENT_EL = 'contentEl',
-        LABEL_EL = 'labelEl',
-        CONTENT = 'content',
-        ELEMENT = 'element',
-        CACHE_DATA = 'cacheData',
-        DATA_SRC = 'dataSrc',
-        DATA_LOADED = 'dataLoaded',
-        DATA_TIMEOUT = 'dataTimeout',
-        LOAD_METHOD = 'loadMethod',
-        POST_DATA = 'postData',
-        DISABLED = 'disabled';
-    
-    /**
-     * A representation of a Tab's label and content.
-     * @namespace YAHOO.widget
-     * @class Tab
-     * @extends YAHOO.util.Element
-     * @constructor
-     * @param element {HTMLElement | String} (optional) The html element that 
-     * represents the TabView. An element will be created if none provided.
-     * @param {Object} properties A key map of initial properties
-     */
-    var Tab = function(el, attr) {
-        attr = attr || {};
-        if (arguments.length == 1 && !Lang.isString(el) && !el.nodeName) {
-            attr = el;
-            el = attr.element;
-        }
-
-        if (!el && !attr.element) {
-            el = _createTabElement.call(this, attr);
-        }
-
-        this.loadHandler =  {
-            success: function(o) {
-                this.set(CONTENT, o.responseText);
-            },
-            failure: function(o) {
-            }
-        };
-        
-        Tab.superclass.constructor.call(this, el, attr);
-        
-        this.DOM_EVENTS = {}; // delegating to tabView
-    };
-
-    YAHOO.extend(Tab, YAHOO.util.Element, {
-        /**
-         * The default tag name for a Tab's inner element.
-         * @property LABEL_INNER_TAGNAME
-         * @type String
-         * @default "em"
-         */
-        LABEL_TAGNAME: 'em',
-        
-        /**
-         * The class name applied to active tabs.
-         * @property ACTIVE_CLASSNAME
-         * @type String
-         * @default "selected"
-         */
-        ACTIVE_CLASSNAME: 'selected',
-        
-        /**
-         * The class name applied to active tabs.
-         * @property ACTIVE_CLASSNAME
-         * @type String
-         * @default "selected"
-         */
-        HIDDEN_CLASSNAME: 'yui-hidden',
-        
-        /**
-         * The title applied to active tabs.
-         * @property ACTIVE_TITLE
-         * @type String
-         * @default "active"
-         */
-        ACTIVE_TITLE: 'active',
-
-        /**
-         * The class name applied to disabled tabs.
-         * @property DISABLED_CLASSNAME
-         * @type String
-         * @default "disabled"
-         */
-        DISABLED_CLASSNAME: DISABLED,
-        
-        /**
-         * The class name applied to dynamic tabs while loading.
-         * @property LOADING_CLASSNAME
-         * @type String
-         * @default "disabled"
-         */
-        LOADING_CLASSNAME: 'loading',
-
-        /**
-         * Provides a reference to the connection request object when data is
-         * loaded dynamically.
-         * @property dataConnection
-         * @type Object
-         */
-        dataConnection: null,
-        
-        /**
-         * Object containing success and failure callbacks for loading data.
-         * @property loadHandler
-         * @type object
-         */
-        loadHandler: null,
-
-        _loading: false,
-        
-        /**
-         * Provides a readable name for the tab.
-         * @method toString
-         * @return String
-         */
-        toString: function() {
-            var el = this.get(ELEMENT);
-            var id = el.id || el.tagName;
-            return "Tab " + id; 
-        },
-        
-        /**
-         * setAttributeConfigs TabView specific properties.
-         * @method initAttributes
-         * @param {Object} attr Hash of initial attributes
-         */
-        initAttributes: function(attr) {
-            attr = attr || {};
-            Tab.superclass.initAttributes.call(this, attr);
-            
-            var el = this.get(ELEMENT);
-            
-            /**
-             * The event that triggers the tab's activation.
-             * @attribute activationEvent
-             * @type String
-             */
-            this.setAttributeConfig('activationEvent', {
-                value: attr.activationEvent || 'click'
-            });        
-
-            /**
-             * The element that contains the tab's label.
-             * @attribute labelEl
-             * @type HTMLElement
-             */
-            this.setAttributeConfig(LABEL_EL, {
-                value: attr.labelEl || _getlabelEl.call(this),
-                method: function(value) {
-                    var current = this.get(LABEL_EL);
-
-                    if (current) {
-                        if (current == value) {
-                            return false; // already set
-                        }
-                        
-                        this.replaceChild(value, current);
-                    } else if (el.firstChild) { // ensure label is firstChild by default
-                        this.insertBefore(value, el.firstChild);
-                    } else {
-                        this.appendChild(value);
-                    }  
-                } 
-            });
-
-            /**
-             * The tab's label text (or innerHTML).
-             * @attribute label
-             * @type String
-             */
-            this.setAttributeConfig('label', {
-                value: attr.label || _getLabel.call(this),
-                method: function(value) {
-                    var labelEl = this.get(LABEL_EL);
-                    if (!labelEl) { // create if needed
-                        this.set(LABEL_EL, _createlabelEl.call(this));
-                    }
-                    
-                    _setLabel.call(this, value);
-                }
-            });
-            
-            /**
-             * The HTMLElement that contains the tab's content.
-             * @attribute contentEl
-             * @type HTMLElement
-             */
-            this.setAttributeConfig(CONTENT_EL, {
-                value: attr.contentEl || document.createElement('div'),
-                method: function(value) {
-                    var current = this.get(CONTENT_EL);
-
-                    if (current) {
-                        if (current == value) {
-                            return false; // already set
-                        }
-                        this.replaceChild(value, current);
-                    }
-                }
-            });
-            
-            /**
-             * The tab's content.
-             * @attribute content
-             * @type String
-             */
-            this.setAttributeConfig(CONTENT, {
-                value: attr.content,
-                method: function(value) {
-                    this.get(CONTENT_EL).innerHTML = value;
-                }
-            });
-
-            var _dataLoaded = false;
-            
-            /**
-             * The tab's data source, used for loading content dynamically.
-             * @attribute dataSrc
-             * @type String
-             */
-            this.setAttributeConfig(DATA_SRC, {
-                value: attr.dataSrc
-            });
-            
-            /**
-             * Whether or not content should be reloaded for every view.
-             * @attribute cacheData
-             * @type Boolean
-             * @default false
-             */
-            this.setAttributeConfig(CACHE_DATA, {
-                value: attr.cacheData || false,
-                validator: Lang.isBoolean
-            });
-            
-            /**
-             * The method to use for the data request.
-             * @attribute loadMethod
-             * @type String
-             * @default "GET"
-             */
-            this.setAttributeConfig(LOAD_METHOD, {
-                value: attr.loadMethod || 'GET',
-                validator: Lang.isString
-            });
-
-            /**
-             * Whether or not any data has been loaded from the server.
-             * @attribute dataLoaded
-             * @type Boolean
-             */        
-            this.setAttributeConfig(DATA_LOADED, {
-                value: false,
-                validator: Lang.isBoolean,
-                writeOnce: true
-            });
-            
-            /**
-             * Number if milliseconds before aborting and calling failure handler.
-             * @attribute dataTimeout
-             * @type Number
-             * @default null
-             */
-            this.setAttributeConfig(DATA_TIMEOUT, {
-                value: attr.dataTimeout || null,
-                validator: Lang.isNumber
-            });
-            
-            /**
-             * Arguments to pass when POST method is used 
-             * @attribute postData
-             * @default null
-             */
-            this.setAttributeConfig(POST_DATA, {
-                value: attr.postData || null
-            });
-
-            /**
-             * Whether or not the tab is currently active.
-             * If a dataSrc is set for the tab, the content will be loaded from
-             * the given source.
-             * @attribute active
-             * @type Boolean
-             */
-            this.setAttributeConfig('active', {
-                value: attr.active || this.hasClass(this.ACTIVE_CLASSNAME),
-                method: function(value) {
-                    if (value === true) {
-                        this.addClass(this.ACTIVE_CLASSNAME);
-                        this.set('title', this.ACTIVE_TITLE);
-                    } else {
-                        this.removeClass(this.ACTIVE_CLASSNAME);
-                        this.set('title', '');
-                    }
-                },
-                validator: function(value) {
-                    return Lang.isBoolean(value) && !this.get(DISABLED) ;
-                }
-            });
-            
-            /**
-             * Whether or not the tab is disabled.
-             * @attribute disabled
-             * @type Boolean
-             */
-            this.setAttributeConfig(DISABLED, {
-                value: attr.disabled || this.hasClass(this.DISABLED_CLASSNAME),
-                method: function(value) {
-                    if (value === true) {
-                        Dom.addClass(this.get(ELEMENT), this.DISABLED_CLASSNAME);
-                    } else {
-                        Dom.removeClass(this.get(ELEMENT), this.DISABLED_CLASSNAME);
-                    }
-                },
-                validator: Lang.isBoolean
-            });
-            
-            /**
-             * The href of the tab's anchor element.
-             * @attribute href
-             * @type String
-             * @default '#'
-             */
-            this.setAttributeConfig('href', {
-                value: attr.href ||
-                        this.getElementsByTagName('a')[0].getAttribute('href', 2) || '#',
-                method: function(value) {
-                    this.getElementsByTagName('a')[0].href = value;
-                },
-                validator: Lang.isString
-            });
-            
-            /**
-             * The Whether or not the tab's content is visible.
-             * @attribute contentVisible
-             * @type Boolean
-             * @default false
-             */
-            this.setAttributeConfig('contentVisible', {
-                value: attr.contentVisible,
-                method: function(value) {
-                    if (value) {
-                        //this.get(CONTENT_EL).style.display = 'block';
-                        Dom.removeClass(this.get(CONTENT_EL), this.HIDDEN_CLASSNAME);
-                        
-                        if ( this.get(DATA_SRC) ) {
-                         // load dynamic content unless already loading or loaded and caching
-                            if ( !this._loading && !(this.get(DATA_LOADED) && this.get(CACHE_DATA)) ) {
-                                this._dataConnect();
-                            }
-                        }
-                    } else {
-                        Dom.addClass(this.get(CONTENT_EL), this.HIDDEN_CLASSNAME);
-                    }
-                },
-                validator: Lang.isBoolean
-            });
-            YAHOO.log('attributes initialized', 'info', 'Tab');
-        },
-        
-        _dataConnect: function() {
-            if (!YAHOO.util.Connect) {
-                YAHOO.log('YAHOO.util.Connect dependency not met',
-                        'error', 'Tab');
-                return false;
-            }
-
-            Dom.addClass(this.get(CONTENT_EL).parentNode, this.LOADING_CLASSNAME);
-            this._loading = true; 
-            this.dataConnection = YAHOO.util.Connect.asyncRequest(
-                this.get(LOAD_METHOD),
-                this.get(DATA_SRC), 
-                {
-                    success: function(o) {
-                        YAHOO.log('content loaded successfully', 'info', 'Tab');
-                        this.loadHandler.success.call(this, o);
-                        this.set(DATA_LOADED, true);
-                        this.dataConnection = null;
-                        Dom.removeClass(this.get(CONTENT_EL).parentNode,
-                                this.LOADING_CLASSNAME);
-                        this._loading = false;
-                    },
-                    failure: function(o) {
-                        YAHOO.log('loading failed: ' + o.statusText, 'error', 'Tab');
-                        this.loadHandler.failure.call(this, o);
-                        this.dataConnection = null;
-                        Dom.removeClass(this.get(CONTENT_EL).parentNode,
-                                this.LOADING_CLASSNAME);
-                        this._loading = false;
-                    },
-                    scope: this,
-                    timeout: this.get(DATA_TIMEOUT)
-                },
-
-                this.get(POST_DATA)
-            );
-        }
-    });
-    
-    var _createTabElement = function(attr) {
-        var el = document.createElement('li');
-        var a = document.createElement('a');
-        
-        a.href = attr.href || '#';
-        
-        el.appendChild(a);
-        
-        var label = attr.label || null;
-        var labelEl = attr.labelEl || null;
-        
-        if (labelEl) { // user supplied labelEl
-            if (!label) { // user supplied label
-                label = _getLabel.call(this, labelEl);
-            }
-        } else {
-            labelEl = _createlabelEl.call(this);
-        }
-        
-        a.appendChild(labelEl);
-        
-        YAHOO.log('creating Tab Dom', 'info', 'Tab');
-        return el;
-    };
-    
-    var _getlabelEl = function() {
-        return this.getElementsByTagName(this.LABEL_TAGNAME)[0];
-    };
-    
-    var _createlabelEl = function() {
-        var el = document.createElement(this.LABEL_TAGNAME);
-        return el;
-    };
-    
-    var _setLabel = function(label) {
-        var el = this.get(LABEL_EL);
-        el.innerHTML = label;
-    };
-    
-    var _getLabel = function() {
-        var label,
-            el = this.get(LABEL_EL);
-            
-            if (!el) {
-                return undefined;
-            }
-        
-        return el.innerHTML;
-    };
-    
-    YAHOO.widget.Tab = Tab;
-})();
-
-YAHOO.register("tabview", YAHOO.widget.TabView, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/tabview/tabview-min.js b/eclipse.org-common/yui/2.6.0/build/tabview/tabview-min.js
deleted file mode 100644
index 1326da3..0000000
--- a/eclipse.org-common/yui/2.6.0/build/tabview/tabview-min.js
+++ /dev/null
@@ -1,8 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){var D=YAHOO.util.Dom,H=YAHOO.util.Event,C=YAHOO.widget.Tab,F=document;var E="element";var J=function(L,K){K=K||{};if(arguments.length==1&&!YAHOO.lang.isString(L)&&!L.nodeName){K=L;L=K.element||null;}if(!L&&!K.element){L=I.call(this,K);}J.superclass.constructor.call(this,L,K);};YAHOO.extend(J,YAHOO.util.Element,{CLASSNAME:"yui-navset",TAB_PARENT_CLASSNAME:"yui-nav",CONTENT_PARENT_CLASSNAME:"yui-content",_tabParent:null,_contentParent:null,addTab:function(N,P){var Q=this.get("tabs");if(!Q){this._queue[this._queue.length]=["addTab",arguments];return false;}P=(P===undefined)?Q.length:P;var S=this.getTab(P);var U=this;var M=this.get(E);var T=this._tabParent;var R=this._contentParent;var K=N.get(E);var L=N.get("contentEl");if(S){T.insertBefore(K,S.get(E));}else{T.appendChild(K);}if(L&&!D.isAncestor(R,L)){R.appendChild(L);}if(!N.get("active")){N.set("contentVisible",false,true);}else{this.set("activeTab",N,true);}var O=function(W){YAHOO.util.Event.preventDefault(W);var V=false;if(this==U.get("activeTab")){V=true;}U.set("activeTab",this,V);};N.addListener(N.get("activationEvent"),O);N.addListener("activationEventChange",function(V){if(V.prevValue!=V.newValue){N.removeListener(V.prevValue,O);N.addListener(V.newValue,O);}});Q.splice(P,0,N);},DOMEventHandler:function(Q){var L=this.get(E);var R=YAHOO.util.Event.getTarget(Q);var T=this._tabParent;if(D.isAncestor(T,R)){var M;var N=null;var K;var S=this.get("tabs");for(var O=0,P=S.length;O<P;O++){M=S[O].get(E);K=S[O].get("contentEl");if(R==M||D.isAncestor(M,R)){N=S[O];break;}}if(N){N.fireEvent(Q.type,Q);}}},getTab:function(K){return this.get("tabs")[K];},getTabIndex:function(O){var L=null;var N=this.get("tabs");for(var M=0,K=N.length;M<K;++M){if(O==N[M]){L=M;break;}}return L;},removeTab:function(N){var M=this.get("tabs").length;var L=this.getTabIndex(N);var K=L+1;if(N==this.get("activeTab")){if(M>1){if(L+1==M){this.set("activeIndex",L-1);}else{this.set("activeIndex",L+1);}}}this._tabParent.removeChild(N.get(E));this._contentParent.removeChild(N.get("contentEl"));this._configs.tabs.value.splice(L,1);},toString:function(){var K=this.get("id")||this.get("tagName");return"TabView "+K;},contentTransition:function(L,K){L.set("contentVisible",true);K.set("contentVisible",false);},initAttributes:function(K){J.superclass.initAttributes.call(this,K);if(!K.orientation){K.orientation="top";}var M=this.get(E);if(!D.hasClass(M,this.CLASSNAME)){D.addClass(M,this.CLASSNAME);}this.setAttributeConfig("tabs",{value:[],readOnly:true});this._tabParent=this.getElementsByClassName(this.TAB_PARENT_CLASSNAME,"ul")[0]||G.call(this);this._contentParent=this.getElementsByClassName(this.CONTENT_PARENT_CLASSNAME,"div")[0]||B.call(this);this.setAttributeConfig("orientation",{value:K.orientation,method:function(N){var O=this.get("orientation");this.addClass("yui-navset-"+N);if(O!=N){this.removeClass("yui-navset-"+O);}switch(N){case"bottom":this.appendChild(this._tabParent);break;}}});this.setAttributeConfig("activeIndex",{value:K.activeIndex,method:function(N){},validator:function(N){return !this.getTab(N).get("disabled");}});this.setAttributeConfig("activeTab",{value:K.activeTab,method:function(O){var N=this.get("activeTab");if(O){O.set("active",true);}if(N&&N!=O){N.set("active",false);}if(N&&O!=N){this.contentTransition(O,N);}else{if(O){O.set("contentVisible",true);}}},validator:function(N){return !N.get("disabled");}});this.on("activeTabChange",this._handleActiveTabChange);this.on("activeIndexChange",this._handleActiveIndexChange);if(this._tabParent){A.call(this);}this.DOM_EVENTS.submit=false;this.DOM_EVENTS.focus=false;this.DOM_EVENTS.blur=false;for(var L in this.DOM_EVENTS){if(YAHOO.lang.hasOwnProperty(this.DOM_EVENTS,L)){this.addListener.call(this,L,this.DOMEventHandler);}}},_handleActiveTabChange:function(M){var K=this.get("activeIndex"),L=this.getTabIndex(M.newValue);if(K!==L){if(!(this.set("activeIndex",L))){this.set("activeTab",M.prevValue);}}},_handleActiveIndexChange:function(K){if(K.newValue!==this.getTabIndex(this.get("activeTab"))){if(!(this.set("activeTab",this.getTab(K.newValue)))){this.set("activeIndex",K.prevValue);}}}});var A=function(){var R,M,Q;var P=this.get(E);var O=D.getChildren(this._tabParent);var L=D.getChildren(this._contentParent);for(var N=0,K=O.length;N<K;++N){M={};if(L[N]){M.contentEl=L[N];}R=new YAHOO.widget.Tab(O[N],M);this.addTab(R);if(R.hasClass(R.ACTIVE_CLASSNAME)){this._configs.activeTab.value=R;this._configs.activeIndex.value=this.getTabIndex(R);}}};var I=function(K){var L=F.createElement("div");if(this.CLASSNAME){L.className=this.CLASSNAME;}return L;};var G=function(K){var L=F.createElement("ul");if(this.TAB_PARENT_CLASSNAME){L.className=this.TAB_PARENT_CLASSNAME;}this.get(E).appendChild(L);return L;};var B=function(K){var L=F.createElement("div");if(this.CONTENT_PARENT_CLASSNAME){L.className=this.CONTENT_PARENT_CLASSNAME;}this.get(E).appendChild(L);return L;};YAHOO.widget.TabView=J;})();(function(){var B=YAHOO.util.Dom,T=YAHOO.util.Event,D=YAHOO.lang;var E="contentEl",Q="labelEl",G="content",M="element",C="cacheData",K="dataSrc",J="dataLoaded",F="dataTimeout",I="loadMethod",L="postData",P="disabled";var H=function(V,U){U=U||{};if(arguments.length==1&&!D.isString(V)&&!V.nodeName){U=V;V=U.element;}if(!V&&!U.element){V=N.call(this,U);}this.loadHandler={success:function(W){this.set(G,W.responseText);},failure:function(W){}};H.superclass.constructor.call(this,V,U);this.DOM_EVENTS={};};YAHOO.extend(H,YAHOO.util.Element,{LABEL_TAGNAME:"em",ACTIVE_CLASSNAME:"selected",HIDDEN_CLASSNAME:"yui-hidden",ACTIVE_TITLE:"active",DISABLED_CLASSNAME:P,LOADING_CLASSNAME:"loading",dataConnection:null,loadHandler:null,_loading:false,toString:function(){var U=this.get(M);var V=U.id||U.tagName;return"Tab "+V;},initAttributes:function(U){U=U||{};H.superclass.initAttributes.call(this,U);var W=this.get(M);this.setAttributeConfig("activationEvent",{value:U.activationEvent||"click"});this.setAttributeConfig(Q,{value:U.labelEl||O.call(this),method:function(X){var Y=this.get(Q);
-if(Y){if(Y==X){return false;}this.replaceChild(X,Y);}else{if(W.firstChild){this.insertBefore(X,W.firstChild);}else{this.appendChild(X);}}}});this.setAttributeConfig("label",{value:U.label||A.call(this),method:function(Y){var X=this.get(Q);if(!X){this.set(Q,S.call(this));}R.call(this,Y);}});this.setAttributeConfig(E,{value:U.contentEl||document.createElement("div"),method:function(X){var Y=this.get(E);if(Y){if(Y==X){return false;}this.replaceChild(X,Y);}}});this.setAttributeConfig(G,{value:U.content,method:function(X){this.get(E).innerHTML=X;}});var V=false;this.setAttributeConfig(K,{value:U.dataSrc});this.setAttributeConfig(C,{value:U.cacheData||false,validator:D.isBoolean});this.setAttributeConfig(I,{value:U.loadMethod||"GET",validator:D.isString});this.setAttributeConfig(J,{value:false,validator:D.isBoolean,writeOnce:true});this.setAttributeConfig(F,{value:U.dataTimeout||null,validator:D.isNumber});this.setAttributeConfig(L,{value:U.postData||null});this.setAttributeConfig("active",{value:U.active||this.hasClass(this.ACTIVE_CLASSNAME),method:function(X){if(X===true){this.addClass(this.ACTIVE_CLASSNAME);this.set("title",this.ACTIVE_TITLE);}else{this.removeClass(this.ACTIVE_CLASSNAME);this.set("title","");}},validator:function(X){return D.isBoolean(X)&&!this.get(P);}});this.setAttributeConfig(P,{value:U.disabled||this.hasClass(this.DISABLED_CLASSNAME),method:function(X){if(X===true){B.addClass(this.get(M),this.DISABLED_CLASSNAME);}else{B.removeClass(this.get(M),this.DISABLED_CLASSNAME);}},validator:D.isBoolean});this.setAttributeConfig("href",{value:U.href||this.getElementsByTagName("a")[0].getAttribute("href",2)||"#",method:function(X){this.getElementsByTagName("a")[0].href=X;},validator:D.isString});this.setAttributeConfig("contentVisible",{value:U.contentVisible,method:function(X){if(X){B.removeClass(this.get(E),this.HIDDEN_CLASSNAME);if(this.get(K)){if(!this._loading&&!(this.get(J)&&this.get(C))){this._dataConnect();}}}else{B.addClass(this.get(E),this.HIDDEN_CLASSNAME);}},validator:D.isBoolean});},_dataConnect:function(){if(!YAHOO.util.Connect){return false;}B.addClass(this.get(E).parentNode,this.LOADING_CLASSNAME);this._loading=true;this.dataConnection=YAHOO.util.Connect.asyncRequest(this.get(I),this.get(K),{success:function(U){this.loadHandler.success.call(this,U);this.set(J,true);this.dataConnection=null;B.removeClass(this.get(E).parentNode,this.LOADING_CLASSNAME);this._loading=false;},failure:function(U){this.loadHandler.failure.call(this,U);this.dataConnection=null;B.removeClass(this.get(E).parentNode,this.LOADING_CLASSNAME);this._loading=false;},scope:this,timeout:this.get(F)},this.get(L));}});var N=function(U){var Y=document.createElement("li");var V=document.createElement("a");V.href=U.href||"#";Y.appendChild(V);var X=U.label||null;var W=U.labelEl||null;if(W){if(!X){X=A.call(this,W);}}else{W=S.call(this);}V.appendChild(W);return Y;};var O=function(){return this.getElementsByTagName(this.LABEL_TAGNAME)[0];};var S=function(){var U=document.createElement(this.LABEL_TAGNAME);return U;};var R=function(U){var V=this.get(Q);V.innerHTML=U;};var A=function(){var U,V=this.get(Q);if(!V){return undefined;}return V.innerHTML;};YAHOO.widget.Tab=H;})();YAHOO.register("tabview",YAHOO.widget.TabView,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/tabview/tabview.js b/eclipse.org-common/yui/2.6.0/build/tabview/tabview.js
deleted file mode 100644
index 6075fe1..0000000
--- a/eclipse.org-common/yui/2.6.0/build/tabview/tabview.js
+++ /dev/null
@@ -1,941 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function() {
-
-    /**
-     * The tabview module provides a widget for managing content bound to tabs.
-     * @module tabview
-     * @requires yahoo, dom, event, element
-     *
-     */
-
-    var Dom = YAHOO.util.Dom,
-        Event = YAHOO.util.Event,
-        Tab = YAHOO.widget.Tab,
-        doc = document;
-    
-    // STRING CONSTANTS
-    var ELEMENT = 'element';
-    
-    /**
-     * A widget to control tabbed views.
-     * @namespace YAHOO.widget
-     * @class TabView
-     * @extends YAHOO.util.Element
-     * @constructor
-     * @param {HTMLElement | String | Object} el(optional) The html 
-     * element that represents the TabView, or the attribute object to use. 
-     * An element will be created if none provided.
-     * @param {Object} attr (optional) A key map of the tabView's 
-     * initial attributes.  Ignored if first arg is attributes object.
-     */
-    var TabView = function(el, attr) {
-        attr = attr || {};
-        if (arguments.length == 1 && !YAHOO.lang.isString(el) && !el.nodeName) {
-            attr = el; // treat first arg as attr object
-            el = attr.element || null;
-        }
-        
-        if (!el && !attr.element) { // create if we dont have one
-            el = _createTabViewElement.call(this, attr);
-        }
-    	TabView.superclass.constructor.call(this, el, attr); 
-    };
-
-    YAHOO.extend(TabView, YAHOO.util.Element, {
-        /**
-         * The className to add when building from scratch. 
-         * @property CLASSNAME
-         * @default "navset"
-         */
-        CLASSNAME: 'yui-navset',
-        
-        /**
-         * The className of the HTMLElement containing the TabView's tab elements
-         * to look for when building from existing markup, or to add when building
-         * from scratch. 
-         * All childNodes of the tab container are treated as Tabs when building
-         * from existing markup.
-         * @property TAB_PARENT_CLASSNAME
-         * @default "nav"
-         */
-        TAB_PARENT_CLASSNAME: 'yui-nav',
-        
-        /**
-         * The className of the HTMLElement containing the TabView's label elements
-         * to look for when building from existing markup, or to add when building
-         * from scratch. 
-         * All childNodes of the content container are treated as content elements when
-         * building from existing markup.
-         * @property CONTENT_PARENT_CLASSNAME
-         * @default "nav-content"
-         */
-        CONTENT_PARENT_CLASSNAME: 'yui-content',
-        
-        _tabParent: null,
-        _contentParent: null,
-        
-        /**
-         * Adds a Tab to the TabView instance.  
-         * If no index is specified, the tab is added to the end of the tab list.
-         * @method addTab
-         * @param {YAHOO.widget.Tab} tab A Tab instance to add.
-         * @param {Integer} index The position to add the tab. 
-         * @return void
-         */
-        addTab: function(tab, index) {
-            var tabs = this.get('tabs');
-            if (!tabs) { // not ready yet
-                this._queue[this._queue.length] = ['addTab', arguments];
-                return false;
-            }
-            
-            index = (index === undefined) ? tabs.length : index;
-            
-            var before = this.getTab(index);
-            
-            var self = this;
-            var el = this.get(ELEMENT);
-            var tabParent = this._tabParent;
-            var contentParent = this._contentParent;
-
-            var tabElement = tab.get(ELEMENT);
-            var contentEl = tab.get('contentEl');
-
-            if ( before ) {
-                tabParent.insertBefore(tabElement, before.get(ELEMENT));
-            } else {
-                tabParent.appendChild(tabElement);
-            }
-
-            if ( contentEl && !Dom.isAncestor(contentParent, contentEl) ) {
-                contentParent.appendChild(contentEl);
-            }
-            
-            if ( !tab.get('active') ) {
-                tab.set('contentVisible', false, true); /* hide if not active */
-            } else {
-                this.set('activeTab', tab, true);
-                
-            }
-
-            var activate = function(e) {
-                YAHOO.util.Event.preventDefault(e);
-                var silent = false;
-
-                if (this == self.get('activeTab')) {
-                    silent = true; // dont fire activeTabChange if already active
-                }
-                self.set('activeTab', this, silent);
-            };
-            
-            tab.addListener( tab.get('activationEvent'), activate);
-            
-            tab.addListener('activationEventChange', function(e) {
-                if (e.prevValue != e.newValue) {
-                    tab.removeListener(e.prevValue, activate);
-                    tab.addListener(e.newValue, activate);
-                }
-            });
-            
-            tabs.splice(index, 0, tab);
-        },
-
-        /**
-         * Routes childNode events.
-         * @method DOMEventHandler
-         * @param {event} e The Dom event that is being handled.
-         * @return void
-         */
-        DOMEventHandler: function(e) {
-            var el = this.get(ELEMENT);
-            var target = YAHOO.util.Event.getTarget(e);
-            var tabParent = this._tabParent;
-            
-            if (Dom.isAncestor(tabParent, target) ) {
-                var tabEl;
-                var tab = null;
-                var contentEl;
-                var tabs = this.get('tabs');
-
-                for (var i = 0, len = tabs.length; i < len; i++) {
-                    tabEl = tabs[i].get(ELEMENT);
-                    contentEl = tabs[i].get('contentEl');
-
-                    if ( target == tabEl || Dom.isAncestor(tabEl, target) ) {
-                        tab = tabs[i];
-                        break; // note break
-                    }
-                } 
-                
-                if (tab) {
-                    tab.fireEvent(e.type, e);
-                }
-            }
-        },
-        
-        /**
-         * Returns the Tab instance at the specified index.
-         * @method getTab
-         * @param {Integer} index The position of the Tab.
-         * @return YAHOO.widget.Tab
-         */
-        getTab: function(index) {
-            return this.get('tabs')[index];
-        },
-        
-        /**
-         * Returns the index of given tab.
-         * @method getTabIndex
-         * @param {YAHOO.widget.Tab} tab The tab whose index will be returned.
-         * @return int
-         */
-        getTabIndex: function(tab) {
-            var index = null;
-            var tabs = this.get('tabs');
-            for (var i = 0, len = tabs.length; i < len; ++i) {
-                if (tab == tabs[i]) {
-                    index = i;
-                    break;
-                }
-            }
-            
-            return index;
-        },
-        
-        /**
-         * Removes the specified Tab from the TabView.
-         * @method removeTab
-         * @param {YAHOO.widget.Tab} item The Tab instance to be removed.
-         * @return void
-         */
-        removeTab: function(tab) {
-            var tabCount = this.get('tabs').length;
-
-            var index = this.getTabIndex(tab);
-            var nextIndex = index + 1;
-            if ( tab == this.get('activeTab') ) { // select next tab
-                if (tabCount > 1) {
-                    if (index + 1 == tabCount) {
-                        this.set('activeIndex', index - 1);
-                    } else {
-                        this.set('activeIndex', index + 1);
-                    }
-                }
-            }
-            
-            this._tabParent.removeChild( tab.get(ELEMENT) );
-            this._contentParent.removeChild( tab.get('contentEl') );
-            this._configs.tabs.value.splice(index, 1);
-            
-        },
-        
-        /**
-         * Provides a readable name for the TabView instance.
-         * @method toString
-         * @return String
-         */
-        toString: function() {
-            var name = this.get('id') || this.get('tagName');
-            return "TabView " + name; 
-        },
-        
-        /**
-         * The transiton to use when switching between tabs.
-         * @method contentTransition
-         */
-        contentTransition: function(newTab, oldTab) {
-            newTab.set('contentVisible', true);
-            oldTab.set('contentVisible', false);
-        },
-        
-        /**
-         * setAttributeConfigs TabView specific properties.
-         * @method initAttributes
-         * @param {Object} attr Hash of initial attributes
-         */
-        initAttributes: function(attr) {
-            TabView.superclass.initAttributes.call(this, attr);
-            
-            if (!attr.orientation) {
-                attr.orientation = 'top';
-            }
-            
-            var el = this.get(ELEMENT);
-
-            if (!Dom.hasClass(el, this.CLASSNAME)) {
-                Dom.addClass(el, this.CLASSNAME);        
-            }
-            
-            /**
-             * The Tabs belonging to the TabView instance.
-             * @attribute tabs
-             * @type Array
-             */
-            this.setAttributeConfig('tabs', {
-                value: [],
-                readOnly: true
-            });
-
-            /**
-             * The container of the tabView's label elements.
-             * @property _tabParent
-             * @private
-             * @type HTMLElement
-             */
-            this._tabParent = 
-                    this.getElementsByClassName(this.TAB_PARENT_CLASSNAME,
-                            'ul' )[0] || _createTabParent.call(this);
-                
-            /**
-             * The container of the tabView's content elements.
-             * @property _contentParent
-             * @type HTMLElement
-             * @private
-             */
-            this._contentParent = 
-                    this.getElementsByClassName(this.CONTENT_PARENT_CLASSNAME,
-                            'div')[0] ||  _createContentParent.call(this);
-            
-            /**
-             * How the Tabs should be oriented relative to the TabView.
-             * @attribute orientation
-             * @type String
-             * @default "top"
-             */
-            this.setAttributeConfig('orientation', {
-                value: attr.orientation,
-                method: function(value) {
-                    var current = this.get('orientation');
-                    this.addClass('yui-navset-' + value);
-                    
-                    if (current != value) {
-                        this.removeClass('yui-navset-' + current);
-                    }
-                    
-                    switch(value) {
-                        case 'bottom':
-                        this.appendChild(this._tabParent);
-                        break;
-                    }
-                }
-            });
-            
-            /**
-             * The index of the tab currently active.
-             * @attribute activeIndex
-             * @type Int
-             */
-            this.setAttributeConfig('activeIndex', {
-                value: attr.activeIndex,
-                method: function(value) {
-                    //this.set('activeTab', this.getTab(value));
-                },
-                validator: function(value) {
-                    return !this.getTab(value).get('disabled'); // cannot activate if disabled
-                }
-            });
-            
-            /**
-             * The tab currently active.
-             * @attribute activeTab
-             * @type YAHOO.widget.Tab
-             */
-            this.setAttributeConfig('activeTab', {
-                value: attr.activeTab,
-                method: function(tab) {
-                    var activeTab = this.get('activeTab');
-                    
-                    if (tab) {
-                        tab.set('active', true);
-                        //this._configs['activeIndex'].value = this.getTabIndex(tab); // keep in sync
-                    }
-                    
-                    if (activeTab && activeTab != tab) {
-                        activeTab.set('active', false);
-                    }
-                    
-                    if (activeTab && tab != activeTab) { // no transition if only 1
-                        this.contentTransition(tab, activeTab);
-                    } else if (tab) {
-                        tab.set('contentVisible', true);
-                    }
-                },
-                validator: function(value) {
-                    return !value.get('disabled'); // cannot activate if disabled
-                }
-            });
-
-            this.on('activeTabChange', this._handleActiveTabChange);
-            this.on('activeIndexChange', this._handleActiveIndexChange);
-
-            if ( this._tabParent ) {
-                _initTabs.call(this);
-            }
-            
-            // Due to delegation we add all DOM_EVENTS to the TabView container
-            // but IE will leak when unsupported events are added, so remove these
-            this.DOM_EVENTS.submit = false;
-            this.DOM_EVENTS.focus = false;
-            this.DOM_EVENTS.blur = false;
-
-            for (var type in this.DOM_EVENTS) {
-                if ( YAHOO.lang.hasOwnProperty(this.DOM_EVENTS, type) ) {
-                    this.addListener.call(this, type, this.DOMEventHandler);
-                }
-            }
-        },
-
-        _handleActiveTabChange: function(e) {
-            var activeIndex = this.get('activeIndex'),
-                newIndex = this.getTabIndex(e.newValue);
-
-            if (activeIndex !== newIndex) {
-                if (!(this.set('activeIndex', newIndex)) ) { // NOTE: setting
-                     // revert if activeIndex update fails (cancelled via beforeChange) 
-                    this.set('activeTab', e.prevValue);
-                }
-            }
-        },
-        
-        _handleActiveIndexChange: function(e) {
-            // no set if called from ActiveTabChange event
-            if (e.newValue !== this.getTabIndex(this.get('activeTab'))) {
-                if (!(this.set('activeTab', this.getTab(e.newValue))) ) { // NOTE: setting
-                     // revert if activeTab update fails (cancelled via beforeChange) 
-                    this.set('activeIndex', e.prevValue);
-                }
-            }
-        }
-    });
-    
-    
-    /**
-     * Creates Tab instances from a collection of HTMLElements.
-     * @method initTabs
-     * @private
-     * @return void
-     */
-    var _initTabs = function() {
-        var tab,
-            attr,
-            contentEl;
-            
-        var el = this.get(ELEMENT);   
-        var tabs = Dom.getChildren(this._tabParent);
-        var contentElements = Dom.getChildren(this._contentParent);
-
-        for (var i = 0, len = tabs.length; i < len; ++i) {
-            attr = {};
-            
-            if (contentElements[i]) {
-                attr.contentEl = contentElements[i];
-            }
-
-            tab = new YAHOO.widget.Tab(tabs[i], attr);
-            this.addTab(tab);
-            
-            if (tab.hasClass(tab.ACTIVE_CLASSNAME) ) {
-                this._configs.activeTab.value = tab; // dont invoke method
-                this._configs.activeIndex.value = this.getTabIndex(tab);
-            }
-        }
-    };
-    
-    var _createTabViewElement = function(attr) {
-        var el = doc.createElement('div');
-
-        if ( this.CLASSNAME ) {
-            el.className = this.CLASSNAME;
-        }
-        
-        return el;
-    };
-    
-    var _createTabParent = function(attr) {
-        var el = doc.createElement('ul');
-
-        if ( this.TAB_PARENT_CLASSNAME ) {
-            el.className = this.TAB_PARENT_CLASSNAME;
-        }
-        
-        this.get(ELEMENT).appendChild(el);
-        
-        return el;
-    };
-    
-    var _createContentParent = function(attr) {
-        var el = doc.createElement('div');
-
-        if ( this.CONTENT_PARENT_CLASSNAME ) {
-            el.className = this.CONTENT_PARENT_CLASSNAME;
-        }
-        
-        this.get(ELEMENT).appendChild(el);
-        
-        return el;
-    };
-    
-    YAHOO.widget.TabView = TabView;
-})();
-
-(function() {
-    var Dom = YAHOO.util.Dom,
-        Event = YAHOO.util.Event,
-        Lang = YAHOO.lang;
-    
-
-    // STRING CONSTANTS
-    var CONTENT_EL = 'contentEl',
-        LABEL_EL = 'labelEl',
-        CONTENT = 'content',
-        ELEMENT = 'element',
-        CACHE_DATA = 'cacheData',
-        DATA_SRC = 'dataSrc',
-        DATA_LOADED = 'dataLoaded',
-        DATA_TIMEOUT = 'dataTimeout',
-        LOAD_METHOD = 'loadMethod',
-        POST_DATA = 'postData',
-        DISABLED = 'disabled';
-    
-    /**
-     * A representation of a Tab's label and content.
-     * @namespace YAHOO.widget
-     * @class Tab
-     * @extends YAHOO.util.Element
-     * @constructor
-     * @param element {HTMLElement | String} (optional) The html element that 
-     * represents the TabView. An element will be created if none provided.
-     * @param {Object} properties A key map of initial properties
-     */
-    var Tab = function(el, attr) {
-        attr = attr || {};
-        if (arguments.length == 1 && !Lang.isString(el) && !el.nodeName) {
-            attr = el;
-            el = attr.element;
-        }
-
-        if (!el && !attr.element) {
-            el = _createTabElement.call(this, attr);
-        }
-
-        this.loadHandler =  {
-            success: function(o) {
-                this.set(CONTENT, o.responseText);
-            },
-            failure: function(o) {
-            }
-        };
-        
-        Tab.superclass.constructor.call(this, el, attr);
-        
-        this.DOM_EVENTS = {}; // delegating to tabView
-    };
-
-    YAHOO.extend(Tab, YAHOO.util.Element, {
-        /**
-         * The default tag name for a Tab's inner element.
-         * @property LABEL_INNER_TAGNAME
-         * @type String
-         * @default "em"
-         */
-        LABEL_TAGNAME: 'em',
-        
-        /**
-         * The class name applied to active tabs.
-         * @property ACTIVE_CLASSNAME
-         * @type String
-         * @default "selected"
-         */
-        ACTIVE_CLASSNAME: 'selected',
-        
-        /**
-         * The class name applied to active tabs.
-         * @property ACTIVE_CLASSNAME
-         * @type String
-         * @default "selected"
-         */
-        HIDDEN_CLASSNAME: 'yui-hidden',
-        
-        /**
-         * The title applied to active tabs.
-         * @property ACTIVE_TITLE
-         * @type String
-         * @default "active"
-         */
-        ACTIVE_TITLE: 'active',
-
-        /**
-         * The class name applied to disabled tabs.
-         * @property DISABLED_CLASSNAME
-         * @type String
-         * @default "disabled"
-         */
-        DISABLED_CLASSNAME: DISABLED,
-        
-        /**
-         * The class name applied to dynamic tabs while loading.
-         * @property LOADING_CLASSNAME
-         * @type String
-         * @default "disabled"
-         */
-        LOADING_CLASSNAME: 'loading',
-
-        /**
-         * Provides a reference to the connection request object when data is
-         * loaded dynamically.
-         * @property dataConnection
-         * @type Object
-         */
-        dataConnection: null,
-        
-        /**
-         * Object containing success and failure callbacks for loading data.
-         * @property loadHandler
-         * @type object
-         */
-        loadHandler: null,
-
-        _loading: false,
-        
-        /**
-         * Provides a readable name for the tab.
-         * @method toString
-         * @return String
-         */
-        toString: function() {
-            var el = this.get(ELEMENT);
-            var id = el.id || el.tagName;
-            return "Tab " + id; 
-        },
-        
-        /**
-         * setAttributeConfigs TabView specific properties.
-         * @method initAttributes
-         * @param {Object} attr Hash of initial attributes
-         */
-        initAttributes: function(attr) {
-            attr = attr || {};
-            Tab.superclass.initAttributes.call(this, attr);
-            
-            var el = this.get(ELEMENT);
-            
-            /**
-             * The event that triggers the tab's activation.
-             * @attribute activationEvent
-             * @type String
-             */
-            this.setAttributeConfig('activationEvent', {
-                value: attr.activationEvent || 'click'
-            });        
-
-            /**
-             * The element that contains the tab's label.
-             * @attribute labelEl
-             * @type HTMLElement
-             */
-            this.setAttributeConfig(LABEL_EL, {
-                value: attr.labelEl || _getlabelEl.call(this),
-                method: function(value) {
-                    var current = this.get(LABEL_EL);
-
-                    if (current) {
-                        if (current == value) {
-                            return false; // already set
-                        }
-                        
-                        this.replaceChild(value, current);
-                    } else if (el.firstChild) { // ensure label is firstChild by default
-                        this.insertBefore(value, el.firstChild);
-                    } else {
-                        this.appendChild(value);
-                    }  
-                } 
-            });
-
-            /**
-             * The tab's label text (or innerHTML).
-             * @attribute label
-             * @type String
-             */
-            this.setAttributeConfig('label', {
-                value: attr.label || _getLabel.call(this),
-                method: function(value) {
-                    var labelEl = this.get(LABEL_EL);
-                    if (!labelEl) { // create if needed
-                        this.set(LABEL_EL, _createlabelEl.call(this));
-                    }
-                    
-                    _setLabel.call(this, value);
-                }
-            });
-            
-            /**
-             * The HTMLElement that contains the tab's content.
-             * @attribute contentEl
-             * @type HTMLElement
-             */
-            this.setAttributeConfig(CONTENT_EL, {
-                value: attr.contentEl || document.createElement('div'),
-                method: function(value) {
-                    var current = this.get(CONTENT_EL);
-
-                    if (current) {
-                        if (current == value) {
-                            return false; // already set
-                        }
-                        this.replaceChild(value, current);
-                    }
-                }
-            });
-            
-            /**
-             * The tab's content.
-             * @attribute content
-             * @type String
-             */
-            this.setAttributeConfig(CONTENT, {
-                value: attr.content,
-                method: function(value) {
-                    this.get(CONTENT_EL).innerHTML = value;
-                }
-            });
-
-            var _dataLoaded = false;
-            
-            /**
-             * The tab's data source, used for loading content dynamically.
-             * @attribute dataSrc
-             * @type String
-             */
-            this.setAttributeConfig(DATA_SRC, {
-                value: attr.dataSrc
-            });
-            
-            /**
-             * Whether or not content should be reloaded for every view.
-             * @attribute cacheData
-             * @type Boolean
-             * @default false
-             */
-            this.setAttributeConfig(CACHE_DATA, {
-                value: attr.cacheData || false,
-                validator: Lang.isBoolean
-            });
-            
-            /**
-             * The method to use for the data request.
-             * @attribute loadMethod
-             * @type String
-             * @default "GET"
-             */
-            this.setAttributeConfig(LOAD_METHOD, {
-                value: attr.loadMethod || 'GET',
-                validator: Lang.isString
-            });
-
-            /**
-             * Whether or not any data has been loaded from the server.
-             * @attribute dataLoaded
-             * @type Boolean
-             */        
-            this.setAttributeConfig(DATA_LOADED, {
-                value: false,
-                validator: Lang.isBoolean,
-                writeOnce: true
-            });
-            
-            /**
-             * Number if milliseconds before aborting and calling failure handler.
-             * @attribute dataTimeout
-             * @type Number
-             * @default null
-             */
-            this.setAttributeConfig(DATA_TIMEOUT, {
-                value: attr.dataTimeout || null,
-                validator: Lang.isNumber
-            });
-            
-            /**
-             * Arguments to pass when POST method is used 
-             * @attribute postData
-             * @default null
-             */
-            this.setAttributeConfig(POST_DATA, {
-                value: attr.postData || null
-            });
-
-            /**
-             * Whether or not the tab is currently active.
-             * If a dataSrc is set for the tab, the content will be loaded from
-             * the given source.
-             * @attribute active
-             * @type Boolean
-             */
-            this.setAttributeConfig('active', {
-                value: attr.active || this.hasClass(this.ACTIVE_CLASSNAME),
-                method: function(value) {
-                    if (value === true) {
-                        this.addClass(this.ACTIVE_CLASSNAME);
-                        this.set('title', this.ACTIVE_TITLE);
-                    } else {
-                        this.removeClass(this.ACTIVE_CLASSNAME);
-                        this.set('title', '');
-                    }
-                },
-                validator: function(value) {
-                    return Lang.isBoolean(value) && !this.get(DISABLED) ;
-                }
-            });
-            
-            /**
-             * Whether or not the tab is disabled.
-             * @attribute disabled
-             * @type Boolean
-             */
-            this.setAttributeConfig(DISABLED, {
-                value: attr.disabled || this.hasClass(this.DISABLED_CLASSNAME),
-                method: function(value) {
-                    if (value === true) {
-                        Dom.addClass(this.get(ELEMENT), this.DISABLED_CLASSNAME);
-                    } else {
-                        Dom.removeClass(this.get(ELEMENT), this.DISABLED_CLASSNAME);
-                    }
-                },
-                validator: Lang.isBoolean
-            });
-            
-            /**
-             * The href of the tab's anchor element.
-             * @attribute href
-             * @type String
-             * @default '#'
-             */
-            this.setAttributeConfig('href', {
-                value: attr.href ||
-                        this.getElementsByTagName('a')[0].getAttribute('href', 2) || '#',
-                method: function(value) {
-                    this.getElementsByTagName('a')[0].href = value;
-                },
-                validator: Lang.isString
-            });
-            
-            /**
-             * The Whether or not the tab's content is visible.
-             * @attribute contentVisible
-             * @type Boolean
-             * @default false
-             */
-            this.setAttributeConfig('contentVisible', {
-                value: attr.contentVisible,
-                method: function(value) {
-                    if (value) {
-                        //this.get(CONTENT_EL).style.display = 'block';
-                        Dom.removeClass(this.get(CONTENT_EL), this.HIDDEN_CLASSNAME);
-                        
-                        if ( this.get(DATA_SRC) ) {
-                         // load dynamic content unless already loading or loaded and caching
-                            if ( !this._loading && !(this.get(DATA_LOADED) && this.get(CACHE_DATA)) ) {
-                                this._dataConnect();
-                            }
-                        }
-                    } else {
-                        Dom.addClass(this.get(CONTENT_EL), this.HIDDEN_CLASSNAME);
-                    }
-                },
-                validator: Lang.isBoolean
-            });
-        },
-        
-        _dataConnect: function() {
-            if (!YAHOO.util.Connect) {
-                return false;
-            }
-
-            Dom.addClass(this.get(CONTENT_EL).parentNode, this.LOADING_CLASSNAME);
-            this._loading = true; 
-            this.dataConnection = YAHOO.util.Connect.asyncRequest(
-                this.get(LOAD_METHOD),
-                this.get(DATA_SRC), 
-                {
-                    success: function(o) {
-                        this.loadHandler.success.call(this, o);
-                        this.set(DATA_LOADED, true);
-                        this.dataConnection = null;
-                        Dom.removeClass(this.get(CONTENT_EL).parentNode,
-                                this.LOADING_CLASSNAME);
-                        this._loading = false;
-                    },
-                    failure: function(o) {
-                        this.loadHandler.failure.call(this, o);
-                        this.dataConnection = null;
-                        Dom.removeClass(this.get(CONTENT_EL).parentNode,
-                                this.LOADING_CLASSNAME);
-                        this._loading = false;
-                    },
-                    scope: this,
-                    timeout: this.get(DATA_TIMEOUT)
-                },
-
-                this.get(POST_DATA)
-            );
-        }
-    });
-    
-    var _createTabElement = function(attr) {
-        var el = document.createElement('li');
-        var a = document.createElement('a');
-        
-        a.href = attr.href || '#';
-        
-        el.appendChild(a);
-        
-        var label = attr.label || null;
-        var labelEl = attr.labelEl || null;
-        
-        if (labelEl) { // user supplied labelEl
-            if (!label) { // user supplied label
-                label = _getLabel.call(this, labelEl);
-            }
-        } else {
-            labelEl = _createlabelEl.call(this);
-        }
-        
-        a.appendChild(labelEl);
-        
-        return el;
-    };
-    
-    var _getlabelEl = function() {
-        return this.getElementsByTagName(this.LABEL_TAGNAME)[0];
-    };
-    
-    var _createlabelEl = function() {
-        var el = document.createElement(this.LABEL_TAGNAME);
-        return el;
-    };
-    
-    var _setLabel = function(label) {
-        var el = this.get(LABEL_EL);
-        el.innerHTML = label;
-    };
-    
-    var _getLabel = function() {
-        var label,
-            el = this.get(LABEL_EL);
-            
-            if (!el) {
-                return undefined;
-            }
-        
-        return el.innerHTML;
-    };
-    
-    YAHOO.widget.Tab = Tab;
-})();
-
-YAHOO.register("tabview", YAHOO.widget.TabView, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/README b/eclipse.org-common/yui/2.6.0/build/treeview/README
deleted file mode 100644
index 1ee76d2..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/README
+++ /dev/null
@@ -1,211 +0,0 @@
-TreeView - Release Notes
-
-2.6.0
-  * Keyboard Navigation
-  * Delegated event listeners replace the inline listeners
-  * Tree serialization/deserialization
-  * Build tree from existing markup
-  * Node click and dblclick events
-  * DateNode (calendar control integration)
-  * Editable node labels (double-click to edit the label)
-  * render/destroy methods
-
-2.5.2
-  * Made CSS adjustments to work with base.css
-
-2.5.1
-  * No change
-
-2.5.0
-  * Added isLeaf property to Node that allows dynamically loaded trees to
-    have nodes that are not dynamically loaded (without configuring dynamic
-    load for each individual dynamic node, which was the requirement previously).  
-    If set to true, dynamic loading will be disabled for the node and it 
-    will always have the leaf node presentation (rather than the expand icon).
-  * Made CSS adjustments to work with base.css
-  * HTMLNode: removed unused property 'content', and documented the correct
-    property 'html'.
-
-2.4.0
-  * added TreeView getNodeByElement, which will return a YAHOO.widget.Node 
-    reference for any ancestor HTML element of a node in the tree.
-  * Added 'title' property to TextNode
-  * Added treeview/tooltip example
-  * Passing a null or invalid animation type to setExpandAnim/setCollapseAnim
-    will turn off animation for the tree.
-  * Spacer style set to 12px width to fix layout inside overflow containers.
-  * Fixed removeAll() when executed on the root node.
-  * TextNode's href property is now escaped.
-  * The 'expanded' property in a node's constructor now works for dynamically
-    loaded nodes.
-
-2.3.1
-
-  * The "expand" event no longer fires twice for dynamically loaded nodes.
-
-  * Added setHtml() to HTMLNode, which will synchronize the html and data
-    properties, as well as the content of the node if it has been rendered.
-
-2.3.0
-
-  * The image preload feature was restored.
-
-  * Added the new skin
-
-  * Leaf nodes created with expanded=true have the child div hidden initially
-    to work around an IE rendering issue.
-
-2.2.2
-
-  * No change
-
-2.2.1
-
-  * Fixed the default value in the documentation for the nowrap property in Node
-    (the default value is false).
-
-2.2.0
-
-  * Node::insertAfter properly nulls the nextSibling attribute when the
-    inserted before the firstChild.
-
-  * MenuNodes inserted at the root level will no longer lose the menu behavior.
-
-  * TextNode::setUpLabel sets the data.label property as well as the label property.
-
-  * TaskNode example: made the logger optional, and moved the creation of the logger
-    instance to the proper location.
-
-  * TaskNodes added to a node that is in a fully selected state will update the
-    parent to a partially selected state.
-
-  * TaskNode example fixed to propagate the labelClick event
-
-
-0.12.2
-
-  * removeChildren will now work properly on the root node.
-
-0.12.1
-
-  * Added custom events for expandComplete and collapseComplete.  These events are
-    needed in situations where the implementer needs to resize or reposition 
-    something based on the new offset.
-
-  * Added a "nowrap" property to Node, and set the default to false.  Specifies
-    whether or not the content area of the node should be allowed to wrap
-    naturally.
-
-  * Added additional HTML elements to preserve the tree presentation when constrained
-    by a parent element.
-
-0.12.0
-
-  * TreeView now augments EventProvider, and has custom events for expand,
-    collapse, animStart, animComplete, and labelClick.  Existing implementations
-    using abstract methods for these events (if they exist) will still work.
-    New events can be plugged into the tree by the Node implementation.  For
-    example, TaskNode adds a checkClick event.  EventProvider makes it safe
-    to do this because implementing code can call subscribe() prior to the
-    event creation.
-
-  * YAHOO.util.Event is now a requirement for the widget
-
-  * TreeView::removeChildren no longer expands and collapses the node.
-
-  * Documented the moveComplete property
-
-  * createElement("DIV") changed to createElement("div")
-
-0.11.4
-
-   * Fixed a javascript error on the HTML node example page.
-
-0.11.3
-
-   * popNode now clears the tree, previousSibling, nextSibling, and parent
-     properties of the node that is being removed from the tree.
-
-   * Fixed the paths to the images in the tree.css file that is included in
-     build/assets.
-
-0.11.0
-
-   * Added TreeView -> popNode, which differs from removeNode in that the
-     node's children are preserved so the entire branch can be re-inserted
-     into another part of the tree, or another tree.
-
-   * Added TreeView -> getNodesByProperty, which differs from 
-     getNodeByProperty by returning an array of all nodes that have the
-     specified property rather than just the first one.
-
-   * Added Node -> insertBefore, insertAfter, and appendTo.  These method
-     can be used to reorganize the tree.
-
-   * removeChildren properly resets the node icon when executed against a 
-     collpased node.
-     
-   * Moved depth assignment from the constructor to appendChild so that the
-     value is set properly if the node is moved within the tree.
-
-   * Fixed broken loop in removeChildren.
-
-   * RootNode -> loadComplete calls tree.draw for hot-wiring the dynamic load
-     feature for the top level nodes.
-
-   * The treeview constructor will accept an element instead of an id.
-
-0.10.0
-
-   * If the child collection changes prior to a refresh(), the icon is now
-     changed appropriately.
-
-   * Added TreeView removeChildren(node).  This will recursively purge the node's
-     children, and reset its dynamic load state.  
-
-   * previousSibling and nextSibling are now adjusted correctly when a
-     node is deleted.
-
-   * expand()/collapse() now will not expand/collapse the node if false is
-     returned from the onExpand/onCollapse event handlers.
-
-   * The onExpand and onCollapse events now fire before the node is expanded
-     or collapsed so that the implementer can modify the node's child collection
-     prior to display.
-
-   * The childrenRendered property previous was used to indicate both that
-     a dynamically loaded node has received its data, and also to indicate
-     that the children html has been created.  This has been split into
-     two properties.  dynamicLoadComplete and childrenRendered.
-
-   * Implemented the renderHidden flag.  If set to true, the html for the entire
-     tree will be created when tree.draw() is called, not just the html for the
-     visible nodes.
-
-   * Added an onLabelClick listener to TextNode
-
-   * TreeView.removeNode no longer automatically refreshes the tree.  It has an
-     optional parameter to perform the refresh.
-
-   * removeNode can now be executed on nodes that have not been rendered.
-
-   * You can now delete top-level nodes.
-
-   * Added onCheckClick listener to the TaskNode example
-
-   * Added Node.iconMode, which is a property that configures the way 
-     dynamically loaded nodes are displayed when they are expanded and contain 
-     no children.
-
-   * TreeView/Node.setDynamicLoad now accepts an optional second parameter to 
-     set the iconMode property.
-
-   * Fixed an issue in the TaskNode.js example that prevented setting the checked
-     state of a node through the constructor.
-
-   * Fixed an issue in HTMLNode that caused rendering issues when hasIcon was 
-     set to true.
-
-   * Added TreeView.removeNode
-
-   * Added Node.refresh
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/loading.gif b/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/loading.gif
deleted file mode 100644
index 0bbf3bc..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/loading.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/treeview-loading.gif b/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/treeview-loading.gif
deleted file mode 100644
index 0bbf3bc..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/treeview-loading.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/treeview-skin.css b/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/treeview-skin.css
deleted file mode 100644
index 0c914ce..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/treeview-skin.css
+++ /dev/null
@@ -1,198 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.5.2
-*/
-
-/* the style of the div around each node */
-.ygtvitem { }  
-
-.ygtvitem table {
-    margin-bottom:0; border:none;
-}
-
-/*.ygtvitem td {*/
-.ygtvrow td {
-    border: none; padding: 0;
-}
-.ygtvrow td a {
-	text-decoration:none;
-}
-
-
-/* first or middle sibling, no children */
-.ygtvtn {
-    width:18px; height:22px; 
-    background: url(treeview-sprite.gif) 0 -5600px no-repeat; 
-}
-
-/* first or middle sibling, collapsable */
-.ygtvtm {
-    width:18px; height:22px; 
-    cursor:pointer ;
-    background: url(treeview-sprite.gif) 0 -4000px no-repeat; 
-}
-
-/* first or middle sibling, collapsable, hover */
-.ygtvtmh,.ygtvtmhh {
-    width:18px; height:22px; 
-    cursor:pointer ;
-    background: url(treeview-sprite.gif) 0 -4800px no-repeat; 
-}
-
-/* first or middle sibling, expandable */
-.ygtvtp {
-    width:18px; height:22px; 
-    cursor:pointer ;
-    background: url(treeview-sprite.gif) 0 -6400px no-repeat; 
-}
-
-/* first or middle sibling, expandable, hover */
-.ygtvtph ,.ygtvtphh {
-    width:18px; height:22px; 
-    cursor:pointer ;
-    background: url(treeview-sprite.gif) 0 -7200px no-repeat; 
-}
-
-/* last sibling, no children */
-.ygtvln {
-    width:18px; height:22px; 
-    background: url(treeview-sprite.gif) 0 -1600px no-repeat; 
-}
-
-/* Last sibling, collapsable */
-.ygtvlm {
-    width:18px; height:22px; 
-    cursor:pointer ;
-    background: url(treeview-sprite.gif) 0 0px no-repeat; 
-}
-
-/* Last sibling, collapsable, hover */
-.ygtvlmh,.ygtvlmhh {
-    width:18px; height:22px; 
-    cursor:pointer ;
-    background: url(treeview-sprite.gif) 0 -800px no-repeat; 
-}
-
-/* Last sibling, expandable */
-.ygtvlp { 
-    width:18px; height:22px; 
-    cursor:pointer ;
-    background: url(treeview-sprite.gif) 0 -2400px no-repeat; 
-}
-
-/* Last sibling, expandable, hover */
-.ygtvlph,.ygtvlphh { 
-    width:18px; height:22px; cursor:pointer ;
-    background: url(treeview-sprite.gif) 0 -3200px no-repeat; 
-}
-
-/* Loading icon */
-.ygtvloading { 
-    width:18px; height:22px; 
-    background: url(treeview-loading.gif) 0 0 no-repeat; 
-}
-
-/* the style for the empty cells that are used for rendering the depth 
- * of the node */
-.ygtvdepthcell { 
-    width:18px; height:22px; 
-    background: url(treeview-sprite.gif) 0 -8000px no-repeat; 
-}
-
-.ygtvblankdepthcell { width:18px; height:22px; }
-
-
-/* the style of the div around each node's collection of children */
-.ygtvchildren {  }  
-* html .ygtvchildren { height:2%; }  
-
-/* the style of the text label in ygTextNode */
-.ygtvlabel, .ygtvlabel:link, .ygtvlabel:visited, .ygtvlabel:hover { 
-    margin-left:2px;
-    text-decoration: none;
-    background-color: white; /* workaround for IE font smoothing bug */
-	cursor:pointer;
-}
-
-.ygtvcontent {
-	cursor:default;
-}
-
-.ygtvspacer { height: 22px; width: 12px; }
-
-.ygtvfocus {
-	background-color: #c0e0e0;
-	border: none;
-}
-.ygtvfocus .ygtvlabel, .ygtvfocus .ygtvlabel:link, .ygtvfocus .ygtvlabel:visited, .ygtvfocus .ygtvlabel:hover {
-	background-color: #c0e0e0;
-}
-
-.ygtvfocus a , .ygtvrow  td a {
-	outline-style:none;
-}
-
-
-.ygtvok {
-    width:18px; height:22px; 
-    background: url(treeview-sprite.gif) 0 -8800px no-repeat; 
-}
-
-.ygtvok:hover {
-    background: url(treeview-sprite.gif) 0 -8844px no-repeat; 
-}
-	
-.ygtvcancel {
-    width:18px; height:22px; 
-    background: url(treeview-sprite.gif) 0 -8822px no-repeat; 
-}
-
-.ygtvcancel:hover  {
-    background: url(treeview-sprite.gif) 0 -8866px no-repeat; 
-}
-
-.ygtv-label-editor {
-	background-color:#f2f2f2;
-	border: 1px solid silver;
-	position:absolute;
-	display:none;
-	overflow:hidden;
-	margin:auto;
-	z-index:9000;
-}
-
-.ygtv-edit-TextNode  {
-	width: 190px;
-}
-
-.ygtv-edit-TextNode .ygtvcancel, .ygtv-edit-TextNode .ygtvok  {
-	border:none;
-}
-
-.ygtv-edit-TextNode .ygtv-button-container {
-	float: right;
-}
-
-.ygtv-edit-TextNode .ygtv-input  input{
-	width: 140px;
-}
-
-.ygtv-edit-DateNode .ygtvcancel {
-	border:none;
-}
-.ygtv-edit-DateNode .ygtvok  {
-	display:none;
-}
-
-.ygtv-edit-DateNode   .ygtv-button-container {
-	text-align:right;
-	margin:auto;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/treeview-sprite.gif b/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/treeview-sprite.gif
deleted file mode 100644
index 8fb3f01..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/treeview-sprite.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/treeview.css b/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/treeview.css
deleted file mode 100644
index 5798ff7..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/assets/skins/sam/treeview.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.ygtvitem{}.ygtvitem table{margin-bottom:0;border:none;}.ygtvrow td{border:none;padding:0;}.ygtvrow td a{text-decoration:none;}.ygtvtn{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -5600px no-repeat;}.ygtvtm{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -4000px no-repeat;}.ygtvtmh,.ygtvtmhh{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -4800px no-repeat;}.ygtvtp{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -6400px no-repeat;}.ygtvtph,.ygtvtphh{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -7200px no-repeat;}.ygtvln{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -1600px no-repeat;}.ygtvlm{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 0px no-repeat;}.ygtvlmh,.ygtvlmhh{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -800px no-repeat;}.ygtvlp{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -2400px no-repeat;}.ygtvlph,.ygtvlphh{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -3200px no-repeat;}.ygtvloading{width:18px;height:22px;background:url(treeview-loading.gif) 0 0 no-repeat;}.ygtvdepthcell{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -8000px no-repeat;}.ygtvblankdepthcell{width:18px;height:22px;}.ygtvchildren{}* html .ygtvchildren{height:2%;}.ygtvlabel,.ygtvlabel:link,.ygtvlabel:visited,.ygtvlabel:hover{margin-left:2px;text-decoration:none;background-color:white;cursor:pointer;}.ygtvcontent{cursor:default;}.ygtvspacer{height:22px;width:12px;}.ygtvfocus{background-color:#c0e0e0;border:none;}.ygtvfocus .ygtvlabel,.ygtvfocus .ygtvlabel:link,.ygtvfocus .ygtvlabel:visited,.ygtvfocus .ygtvlabel:hover{background-color:#c0e0e0;}.ygtvfocus a,.ygtvrow td a{outline-style:none;}.ygtvok{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -8800px no-repeat;}.ygtvok:hover{background:url(treeview-sprite.gif) 0 -8844px no-repeat;}.ygtvcancel{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -8822px no-repeat;}.ygtvcancel:hover{background:url(treeview-sprite.gif) 0 -8866px no-repeat;}.ygtv-label-editor{background-color:#f2f2f2;border:1px solid silver;position:absolute;display:none;overflow:hidden;margin:auto;z-index:9000;}.ygtv-edit-TextNode{width:190px;}.ygtv-edit-TextNode .ygtvcancel,.ygtv-edit-TextNode .ygtvok{border:none;}.ygtv-edit-TextNode .ygtv-button-container{float:right;}.ygtv-edit-TextNode .ygtv-input input{width:140px;}.ygtv-edit-DateNode .ygtvcancel{border:none;}.ygtv-edit-DateNode .ygtvok{display:none;}.ygtv-edit-DateNode .ygtv-button-container{text-align:right;margin:auto;}
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/assets/sprite-menu.gif b/eclipse.org-common/yui/2.6.0/build/treeview/assets/sprite-menu.gif
deleted file mode 100644
index 261ed91..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/assets/sprite-menu.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/assets/sprite-orig.gif b/eclipse.org-common/yui/2.6.0/build/treeview/assets/sprite-orig.gif
deleted file mode 100644
index fdf6fcf..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/assets/sprite-orig.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/assets/treeview-core.css b/eclipse.org-common/yui/2.6.0/build/treeview/assets/treeview-core.css
deleted file mode 100644
index 7922b6d..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/assets/treeview-core.css
+++ /dev/null
@@ -1,6 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/assets/treeview-loading.gif b/eclipse.org-common/yui/2.6.0/build/treeview/assets/treeview-loading.gif
deleted file mode 100644
index 0bbf3bc..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/assets/treeview-loading.gif
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/assets/treeview-menu.css b/eclipse.org-common/yui/2.6.0/build/treeview/assets/treeview-menu.css
deleted file mode 100644
index de9899a..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/assets/treeview-menu.css
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.ygtvtn {

-background:transparent none repeat scroll 0 0;

-height:20px;

-width:1em;

-}

-.ygtvtm {

-background:transparent url(sprite-menu.gif) no-repeat scroll -8px 2px;

-height:20px;

-width:1em;

-}

-.ygtvtmh {

-background:transparent url(sprite-menu.gif) no-repeat scroll -8px -77px;

-height:20px;

-width:1em;

-}

-.ygtvtp {

-background:transparent url(sprite-menu.gif) no-repeat scroll -8px -315px;

-height:20px;

-width:1em;

-}

-.ygtvtph {

-background:transparent url(sprite-menu.gif) no-repeat scroll -8px -395px;

-height:20px;

-width:1em;

-}

-.ygtvln {

-background:transparent none repeat scroll 0 0;

-height:20px;

-width:1em;

-}

-.ygtvlm {

-background:transparent url(sprite-menu.gif) no-repeat scroll -8px 2px;

-height:20px;

-width:1em;

-}

-.ygtvlmh {

-background:transparent url(sprite-menu.gif) no-repeat scroll -8px -77px;

-height:20px;

-width:1em;

-}

-.ygtvlp {

-background:transparent url(sprite-menu.gif) no-repeat scroll -8px -315px;

-height:20px;

-width:1em;

-}

-.ygtvlph {

-background:transparent url(sprite-menu.gif) no-repeat scroll -8px -395px;

-height:20px;

-width:1em;

-}

-.ygtvdepthcell {

-background:transparent none repeat scroll 0 0;

-height:20px;

-width:1em;

-cursor:default;

-}

-.ygtvln, .ygtvtn {

-	cursor:default;

-}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/assets/treeview.css b/eclipse.org-common/yui/2.6.0/build/treeview/assets/treeview.css
deleted file mode 100644
index 1736ce0..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/assets/treeview.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.ygtvitem table{margin-bottom:0;border:none;}.ygtvitem td{border:none;padding:0;}.ygtvtn{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -5600px no-repeat;}.ygtvtm{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -4000px no-repeat;}.ygtvtmh{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -4800px no-repeat;}.ygtvtp{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -6400px no-repeat;}.ygtvtph{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -7200px no-repeat;}.ygtvln{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -1600px no-repeat;}.ygtvlm{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 0 no-repeat;}.ygtvlmh{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -800px no-repeat;}.ygtvlp{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -2400px no-repeat;}.ygtvlph{width:18px;height:22px;cursor:pointer;background:url(treeview-sprite.gif) 0 -3200px no-repeat;}.ygtvloading{width:18px;height:22px;background:url(treeview-loading.gif) 0 0 no-repeat;}.ygtvdepthcell{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -8000px no-repeat;}.ygtvblankdepthcell{width:18px;height:22px;}* html .ygtvchildren{height:2%;}.ygtvlabel,.ygtvlabel:link,.ygtvlabel:visited,.ygtvlabel:hover{margin-left:2px;text-decoration:none;background-color:white;}.ygtvspacer{height:22px;width:12px;}.ygtvfocus{background-color:#c0e0e0;}.ygtvfocus .ygtvlabel,.ygtvfocus .ygtvlabel:link,.ygtvfocus .ygtvlabel:visited,.ygtvfocus .ygtvlabel:hover{background-color:#c0e0e0;}.ygtvok{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -8800px no-repeat;}.ygtvok:hover{background:url(treeview-sprite.gif) 0 -8844px no-repeat;}.ygtvcancel{width:18px;height:22px;background:url(treeview-sprite.gif) 0 -8822px no-repeat;}.ygtvcancel:hover{background:url(treeview-sprite.gif) 0 -8866px no-repeat;}.ygtv-label-editor{background-color:#f2f2f2;border:1px solid silver;position:absolute;display:none;overflow:hidden;margin:auto;}.ygtv-edit-TextNode .ygtvcancel,.ygtv-edit-TextNode .ygtvok{border:none;}.ygtv-edit-TextNode .ygtv-button-container{display:inline-block;}.ygtv-edit-TextNode .ygtv-input{float:left;}.ygtv-edit-DateNode .ygtvcancel{border:none;}.ygtv-edit-DateNode .ygtvok{display:none;}.ygtv-edit-DateNode .ygtv-button-container{width:100%;text-align:right;}
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/treeview-debug.js b/eclipse.org-common/yui/2.6.0/build/treeview/treeview-debug.js
deleted file mode 100644
index 2aa5c09..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/treeview-debug.js
+++ /dev/null
@@ -1,3435 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function () {
-	var Dom = YAHOO.util.Dom,
-		Event = YAHOO.util.Event,
-		Lang = YAHOO.lang,
-		Widget = YAHOO.widget;
-
-/**
- * The treeview widget is a generic tree building tool.
- * @module treeview
- * @title TreeView Widget
- * @requires yahoo, event
- * @optional animation
- * @namespace YAHOO.widget
- */
-
-/**
- * Contains the tree view state data and the root node.
- *
- * @class TreeView
- * @uses YAHOO.util.EventProvider
- * @constructor
- * @param {string|HTMLElement} id The id of the element, or the element itself that the tree will be inserted into.  Existing markup in this element, if valid, will be used to build the tree
- * @param {Array|object|string}  oConfig (optional)  An array containing the definition of the tree.  Objects will be converted to arrays of one element.  A string will produce a single TextNode
- * 
- */
-YAHOO.widget.TreeView = function(id, oConfig) {
-    if (id) { this.init(id); }
-	if (oConfig) {
-		if (!Lang.isArray(oConfig)) {
-			oConfig = [oConfig];
-		}
-		this.buildTreeFromObject(oConfig);
-	} else if (Lang.trim(this._el.innerHTML)) {
-		this.buildTreeFromMarkup(id);
-	}
-};
-
-var TV = Widget.TreeView;
-
-TV.prototype = {
-
-    /**
-     * The id of tree container element
-     * @property id
-     * @type String
-     */
-    id: null,
-
-    /**
-     * The host element for this tree
-     * @property _el
-     * @private
-     * @type HTMLelement
-     */
-    _el: null,
-
-     /**
-     * Flat collection of all nodes in this tree.  This is a sparse
-     * array, so the length property can't be relied upon for a
-     * node count for the tree.
-     * @property _nodes
-     * @type Node[]
-     * @private
-     */
-    _nodes: null,
-
-    /**
-     * We lock the tree control while waiting for the dynamic loader to return
-     * @property locked
-     * @type boolean
-     */
-    locked: false,
-
-    /**
-     * The animation to use for expanding children, if any
-     * @property _expandAnim
-     * @type string
-     * @private
-     */
-    _expandAnim: null,
-
-    /**
-     * The animation to use for collapsing children, if any
-     * @property _collapseAnim
-     * @type string
-     * @private
-     */
-    _collapseAnim: null,
-
-    /**
-     * The current number of animations that are executing
-     * @property _animCount
-     * @type int
-     * @private
-     */
-    _animCount: 0,
-
-    /**
-     * The maximum number of animations to run at one time.
-     * @property maxAnim
-     * @type int
-     */
-    maxAnim: 2,
-
-    /**
-     * Whether there is any subscriber to dblClickEvent
-     * @property _hasDblClickSubscriber
-     * @type boolean
-     * @private
-     */
-    _hasDblClickSubscriber: false,
-	
-    /**
-     * Stores the timer used to check for double clicks
-     * @property _dblClickTimer
-     * @type window.timer object
-     * @private
-     */
-    _dblClickTimer: null,
-
-
-    /**
-     * Sets up the animation for expanding children
-     * @method setExpandAnim
-     * @param {string} type the type of animation (acceptable values defined 
-     * in YAHOO.widget.TVAnim)
-     */
-    setExpandAnim: function(type) {
-        this._expandAnim = (Widget.TVAnim.isValid(type)) ? type : null;
-    },
-
-    /**
-     * Sets up the animation for collapsing children
-     * @method setCollapseAnim
-     * @param {string} the type of animation (acceptable values defined in 
-     * YAHOO.widget.TVAnim)
-     */
-    setCollapseAnim: function(type) {
-        this._collapseAnim = (Widget.TVAnim.isValid(type)) ? type : null;
-    },
-
-    /**
-     * Perform the expand animation if configured, or just show the
-     * element if not configured or too many animations are in progress
-     * @method animateExpand
-     * @param el {HTMLElement} the element to animate
-     * @param node {YAHOO.util.Node} the node that was expanded
-     * @return {boolean} true if animation could be invoked, false otherwise
-     */
-    animateExpand: function(el, node) {
-        this.logger.log("animating expand");
-
-        if (this._expandAnim && this._animCount < this.maxAnim) {
-            // this.locked = true;
-            var tree = this;
-            var a = Widget.TVAnim.getAnim(this._expandAnim, el, 
-                            function() { tree.expandComplete(node); });
-            if (a) { 
-                ++this._animCount;
-                this.fireEvent("animStart", {
-                        "node": node, 
-                        "type": "expand"
-                    });
-                a.animate();
-            }
-
-            return true;
-        }
-
-        return false;
-    },
-
-    /**
-     * Perform the collapse animation if configured, or just show the
-     * element if not configured or too many animations are in progress
-     * @method animateCollapse
-     * @param el {HTMLElement} the element to animate
-     * @param node {YAHOO.util.Node} the node that was expanded
-     * @return {boolean} true if animation could be invoked, false otherwise
-     */
-    animateCollapse: function(el, node) {
-        this.logger.log("animating collapse");
-
-        if (this._collapseAnim && this._animCount < this.maxAnim) {
-            // this.locked = true;
-            var tree = this;
-            var a = Widget.TVAnim.getAnim(this._collapseAnim, el, 
-                            function() { tree.collapseComplete(node); });
-            if (a) { 
-                ++this._animCount;
-                this.fireEvent("animStart", {
-                        "node": node, 
-                        "type": "collapse"
-                    });
-                a.animate();
-            }
-
-            return true;
-        }
-
-        return false;
-    },
-
-    /**
-     * Function executed when the expand animation completes
-     * @method expandComplete
-     */
-    expandComplete: function(node) {
-        this.logger.log("expand complete: " + this.id);
-        --this._animCount;
-        this.fireEvent("animComplete", {
-                "node": node, 
-                "type": "expand"
-            });
-        // this.locked = false;
-    },
-
-    /**
-     * Function executed when the collapse animation completes
-     * @method collapseComplete
-     */
-    collapseComplete: function(node) {
-        this.logger.log("collapse complete: " + this.id);
-        --this._animCount;
-        this.fireEvent("animComplete", {
-                "node": node, 
-                "type": "collapse"
-            });
-        // this.locked = false;
-    },
-
-    /**
-     * Initializes the tree
-     * @method init
-     * @parm {string|HTMLElement} id the id of the element that will hold the tree
-     * @private
-     */
-    init: function(id) {
-		this._el = Dom.get(id);
-		this.id = Dom.generateId(this._el,"yui-tv-auto-id-");
-
-    /**
-         * When animation is enabled, this event fires when the animation
-         * starts
-         * @event animStart
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node that is expanding/collapsing
-         * @parm {String} type the type of animation ("expand" or "collapse")
-         */
-        this.createEvent("animStart", this);
-
-        /**
-         * When animation is enabled, this event fires when the animation
-         * completes
-         * @event animComplete
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node that is expanding/collapsing
-         * @parm {String} type the type of animation ("expand" or "collapse")
-         */
-        this.createEvent("animComplete", this);
-
-        /**
-         * Fires when a node is going to be collapsed.  Return false to stop
-         * the collapse.
-         * @event collapse
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node that is collapsing
-         */
-        this.createEvent("collapse", this);
-
-        /**
-         * Fires after a node is successfully collapsed.  This event will not fire
-         * if the "collapse" event was cancelled.
-         * @event collapseComplete
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node that was collapsed
-         */
-        this.createEvent("collapseComplete", this);
-
-        /**
-         * Fires when a node is going to be expanded.  Return false to stop
-         * the collapse.
-         * @event expand
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node that is expanding
-         */
-        this.createEvent("expand", this);
-
-        /**
-         * Fires after a node is successfully expanded.  This event will not fire
-         * if the "expand" event was cancelled.
-         * @event expandComplete
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node that was expanded
-         */
-        this.createEvent("expandComplete", this);
-
-    /**
-         * Fires when the Enter key is pressed on a node that has the focus
-         * @event enterKeyPressed
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node that has the focus
-         */
-        this.createEvent("enterKeyPressed", this);
-		
-    /**
-         * Fires when the label in a TextNode or MenuNode or content in an HTMLNode receives a Click.
-	* The listener may return false to cancel toggling and focusing on the node.
-         * @event clickEvent
-         * @type CustomEvent
-         * @param oArgs.event  {HTMLEvent} The event object
-         * @param oArgs.node {YAHOO.widget.Node} node the node that was clicked
-         */
-        this.createEvent("clickEvent", this);
-
-	/**
-         * Fires when the label in a TextNode or MenuNode or content in an HTMLNode receives a double Click
-         * @event dblClickEvent
-         * @type CustomEvent
-         * @param oArgs.event  {HTMLEvent} The event object
-         * @param oArgs.node {YAHOO.widget.Node} node the node that was clicked
-         */
-		var self = this;
-        this.createEvent("dblClickEvent", {
-			scope:this,
-			onSubscribeCallback: function() {
-				self._hasDblClickSubscriber = true;
-			}
-		});
-		
-	/**
-         * Custom event that is fired when the text node label is clicked. 
-         *  The node clicked is  provided as an argument
-         *
-         * @event labelClick
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node clicked
-	* @deprecated use clickEvent or dblClickEvent
-         */
-		this.createEvent("labelClick", this);
-
-
-        this._nodes = [];
-
-        // store a global reference
-        TV.trees[this.id] = this;
-
-        // Set up the root node
-        this.root = new Widget.RootNode(this);
-
-        var LW = Widget.LogWriter;
-
-        this.logger = (LW) ? new LW(this.toString()) : YAHOO;
-
-        this.logger.log("tree init: " + this.id);
-		
-        // YAHOO.util.Event.onContentReady(this.id, this.handleAvailable, this, true);
-        // YAHOO.util.Event.on(this.id, "click", this.handleClick, this, true);
-    },
-
-    //handleAvailable: function() {
-        //var Event = YAHOO.util.Event;
-        //Event.on(this.id, 
-    //},
- /**
-     * Builds the TreeView from an object.  This is the method called by the constructor to build the tree when it has a second argument.
-     * @method buildTreeFromObject
-     * @param  oConfig {Array}  array containing a full description of the tree
-     * 
-     */
-	buildTreeFromObject: function (oConfig) {
-		this.logger.log('Building tree from object');
-		var build = function (parent, oConfig) {
-			var i, item, node, children, type, NodeType, ThisType;
-			for (i = 0; i < oConfig.length; i++) {
-				item = oConfig[i];
-				if (Lang.isString(item)) {
-					node = new Widget.TextNode(item, parent);
-				} else if (Lang.isObject(item)) {
-					children = item.children;
-					delete item.children;
-					type = item.type || 'text';
-					delete item.type;
-					switch (type.toLowerCase()) {
-						case 'text':
-							node = new Widget.TextNode(item, parent);
-							break;
-						case 'menu':
-							node = new Widget.MenuNode(item, parent);
-							break;
-						case 'html':
-							node = new Widget.HTMLNode(item, parent);
-							break;
-						default:
-							NodeType = Widget[type];
-							if (Lang.isObject(NodeType)) {
-								for (ThisType = NodeType; ThisType && ThisType !== Widget.Node; ThisType = ThisType.superclass.constructor) {}
-								if (ThisType) {
-									node = new NodeType(item, parent);
-								} else {
-									this.logger.log('Invalid type in node definition: ' + type,'error');
-								}
-							} else {
-								this.logger.log('Invalid type in node definition: ' + type,'error');
-							}
-					}
-					if (children) {
-						build(node,children);
-					}
-				} else {
-					this.logger.log('Invalid node definition','error');
-				}
-			}
-		};
-							
-					
-		build(this.root,oConfig);
-	},
-/**
-     * Builds the TreeView from existing markup.   Markup should consist of &lt;UL&gt; or &lt;OL&gt; elements, possibly nested.  
-     * Depending what the &lt;LI&gt; elements contain the following will be created: <ul>
-     * 	         <li>plain text:  a regular TextNode</li>
-     * 	         <li>an (un-)ordered list: a nested branch</li>
-     * 	         <li>anything else: an HTMLNode</li></ul>
-     * Only the first  outermost (un-)ordered list in the markup and its children will be parsed.
-     * Tree will be fully collapsed.
-     *  HTMLNodes have hasIcon set to true if the markup for that node has a className called hasIcon.
-     * @method buildTreeFromMarkup
-     * @param {string|HTMLElement} id the id of the element that contains the markup or a reference to it.
-     */
-	buildTreeFromMarkup: function (id) {
-		this.logger.log('Building tree from existing markup');
-		var build = function (parent,markup) {
-			var el, node, child, text;
-			for (el = Dom.getFirstChild(markup); el; el = Dom.getNextSibling(el)) {
-				if (el.nodeType == 1) {
-					switch (el.tagName.toUpperCase()) {
-						case 'LI':
-							for (child = el.firstChild; child; child = child.nextSibling) {
-								if (child.nodeType == 3) {
-									text = Lang.trim(child.nodeValue);
-									if (text.length) {
-										node = new Widget.TextNode(text, parent, false);
-									}
-								} else {
-									switch (child.tagName.toUpperCase()) {
-										case 'UL':
-										case 'OL':
-											build(node,child);
-											break;
-										case 'A':
-											node = new Widget.TextNode({
-												label:child.innerHTML,
-												href: child.href,
-												target:child.target,
-												title:child.title ||child.alt
-											},parent,false);
-											break;
-										default:
-											node = new Widget.HTMLNode(child.parentNode.innerHTML, parent, false, true);
-											break;
-									}
-								}
-							}
-							break;
-						case 'UL':
-						case 'OL':
-							this.logger.log('ULs or OLs can only contain LI elements, not other UL or OL.  This will not work in some browsers','error');
-							build(node, el);
-							break;
-					}
-				}
-			}
-		
-		};
-		var markup = Dom.getChildrenBy(Dom.get(id),function (el) { 
-			var tag = el.tagName.toUpperCase();
-			return  tag == 'UL' || tag == 'OL';
-		});
-		if (markup.length) {
-			build(this.root, markup[0]);
-		} else {
-			this.logger.log('Markup contains no UL or OL elements','warn');
-		}
-	},
-    /**
-     * Renders the tree boilerplate and visible nodes
-     * @method render
-     */
-    render: function() {
-        var html = this.root.getHtml();
-        this.getEl().innerHTML = html;
-		var getTarget = function (ev) {
-			var target = Event.getTarget(ev); 
-			if (target.tagName.toUpperCase() != 'TD') { target = Dom.getAncestorByTagName(target,'td'); }
-			if (Lang.isNull(target)) { return null; }
-			if (target.className.length === 0) {
-				target = target.previousSibling;
-				if (Lang.isNull(target)) { return null; }
-			}
-			return target;
-		};
-		if (!this._hasEvents) {
-			Event.on(
-				this.getEl(),
-				'click',
-				function (ev) {
-					var self = this,
-						el = Event.getTarget(ev),
-						node = this.getNodeByElement(el);
-					if (!node) { return; }
-						
-					var toggle = function () {
-						if (node.expanded) {
-							node.collapse();
-						} else {
-							node.expand();
-						}
-						node.focus();
-					};
-					
-					if (Dom.hasClass(el, node.labelStyle) || Dom.getAncestorByClassName(el,node.labelStyle)) {
-						this.logger.log("onLabelClick " + node.label);
-						this.fireEvent('labelClick',node);
-					}
-					while (el && !Dom.hasClass(el.parentNode,'ygtvrow') && !/ygtv[tl][mp]h?h?/.test(el.className)) {
-						el = Dom.getAncestorByTagName(el,'td');
-					}
-					if (el) {
-						// If it is a spacer cell, do nothing
-						if (/ygtv(blank)?depthcell/.test(el.className)) { return;}
-						//  If it is a toggle cell, toggle
-						if (/ygtv[tl][mp]h?h?/.test(el.className)) {
-							toggle();
-						} else {
-							if (this._dblClickTimer) {
-								window.clearTimeout(this._dblClickTimer);
-								this._dblClickTimer = null;
-							} else {
-								if (this._hasDblClickSubscriber) {
-									this._dblClickTimer = window.setTimeout(function () {
-										self._dblClickTimer = null;
-										if (self.fireEvent('clickEvent', {event:ev,node:node}) !== false) { 
-											toggle();
-										}
-									}, 200);
-								} else {
-									if (self.fireEvent('clickEvent', {event:ev,node:node}) !== false) { 
-										toggle();
-									}
-								}
-							}
-						}
-					}
-				},
-				this,
-				true
-			);
-			
-			Event.on(
-				this.getEl(),
-				'dblclick',
-				function (ev) {
-					if (!this._hasDblClickSubscriber) { return; }
-					var el = Event.getTarget(ev);
-					while (!Dom.hasClass(el.parentNode,'ygtvrow')) {
-						el = Dom.getAncestorByTagName(el,'td');
-					}
-					if (/ygtv(blank)?depthcell/.test(el.className)) { return;}
-					if (!(/ygtv[tl][mp]h?h?/.test(el.className))) {
-						this.fireEvent('dblClickEvent', {event:ev, node:this.getNodeByElement(el)}); 
-						if (this._dblClickTimer) {
-							window.clearTimeout(this._dblClickTimer);
-							this._dblClickTimer = null;
-						}
-					}
-				},
-				this,
-				true
-			);
-			Event.on(
-				this.getEl(),
-				'mouseover',
-				function (ev) {
-					var target = getTarget(ev);
-					if (target) {
-target.className = target.className.replace(/ygtv([lt])([mp])/gi, 'ygtv$1$2h').replace(/h+/, 'h');
-					}
-				}
-			);
-			Event.on(
-				this.getEl(),
-				'mouseout',
-				function (ev) {
-					var target = getTarget(ev);
-					if (target) {
-						target.className = target.className.replace(/ygtv([lt])([mp])h/gi,'ygtv$1$2');
-					}
-				}
-			);
-			Event.on(
-				this.getEl(),
-				'keydown',
-				function (ev) {
-					var target = Event.getTarget(ev),
-						node = this.getNodeByElement(target),
-						newNode = node,
-						KEY = YAHOO.util.KeyListener.KEY;
-
-					switch(ev.keyCode) {
-						case KEY.UP:
-							this.logger.log('UP');
-							do {
-								if (newNode.previousSibling) {
-									newNode = newNode.previousSibling;
-								} else {
-									newNode = newNode.parent;
-								}
-							} while (newNode && !newNode.focus());
-							if (!newNode) { node.focus(); }
-							Event.preventDefault(ev);
-							break;
-						case KEY.DOWN:
-							this.logger.log('DOWN');
-							do {
-								if (newNode.nextSibling) {
-									newNode = newNode.nextSibling;
-								} else {
-									newNode.expand();
-									newNode = (newNode.children.length || null) && newNode.children[0];
-								}
-							} while (newNode && !newNode.focus());
-							if (!newNode) { node.focus(); }
-							Event.preventDefault(ev);
-							break;
-						case KEY.LEFT:
-							this.logger.log('LEFT');
-							do {
-								if (newNode.parent) {
-									newNode = newNode.parent;
-								} else {
-									newNode = newNode.previousSibling;
-								}
-							} while (newNode && !newNode.focus());
-							if (!newNode) { node.focus(); }
-							Event.preventDefault(ev);
-							break;
-						case KEY.RIGHT:
-							this.logger.log('RIGHT');
-							do {
-								newNode.expand();
-								if (newNode.children.length) {
-									newNode = newNode.children[0];
-								} else {
-									newNode = newNode.nextSibling;
-								}
-							} while (newNode && !newNode.focus());
-							if (!newNode) { node.focus(); }
-							Event.preventDefault(ev);
-							break;
-						case KEY.ENTER:
-							this.logger.log('ENTER: ' + newNode.href);
-							if (node.href) {
-								if (node.target) {
-									window.open(node.href,node.target);
-								} else {
-									window.location(node.href);
-								}
-							} else {
-								node.toggle();
-							}
-							this.fireEvent('enterKeyPressed',node);
-							Event.preventDefault(ev);
-							break;
-						case KEY.HOME:
-							this.logger.log('HOME');
-							newNode = this.getRoot();
-							if (newNode.children.length) {newNode = newNode.children[0];}
-							if (!newNode.focus()) { node.focus(); }
-							Event.preventDefault(ev);
-							break;
-						case KEY.END:
-							this.logger.log('END');
-							newNode = newNode.parent.children;
-							newNode = newNode[newNode.length -1];
-							if (!newNode.focus()) { node.focus(); }
-							Event.preventDefault(ev);
-							break;
-						// case KEY.PAGE_UP:
-							// this.logger.log('PAGE_UP');
-							// break;
-						// case KEY.PAGE_DOWN:
-							// this.logger.log('PAGE_DOWN');
-							// break;
-						case 107:  // plus key
-							if (ev.shiftKey) {
-								this.logger.log('Shift-PLUS');
-								node.parent.expandAll();
-							} else {
-								this.logger.log('PLUS');
-								node.expand();
-							}
-							break;
-						case 109: // minus key
-							if (ev.shiftKey) {
-								this.logger.log('Shift-MINUS');
-								node.parent.collapseAll();
-							} else {
-								this.logger.log('MINUS');
-								node.collapse();
-							}
-							break;
-						default:
-							break;
-					}
-				},
-				this,
-				true
-			);
-		}
-		this._hasEvents = true;
-    },
-	
-  /**
-     * Returns the tree's host element
-     * @method getEl
-     * @return {HTMLElement} the host element
-     */
-    getEl: function() {
-        if (! this._el) {
-            this._el = Dom.get(this.id);
-        }
-        return this._el;
-    },
-
-    /**
-     * Nodes register themselves with the tree instance when they are created.
-     * @method regNode
-     * @param node {Node} the node to register
-     * @private
-     */
-    regNode: function(node) {
-        this._nodes[node.index] = node;
-    },
-
-    /**
-     * Returns the root node of this tree
-     * @method getRoot
-     * @return {Node} the root node
-     */
-    getRoot: function() {
-        return this.root;
-    },
-
-    /**
-     * Configures this tree to dynamically load all child data
-     * @method setDynamicLoad
-     * @param {function} fnDataLoader the function that will be called to get the data
-     * @param iconMode {int} configures the icon that is displayed when a dynamic
-     * load node is expanded the first time without children.  By default, the 
-     * "collapse" icon will be used.  If set to 1, the leaf node icon will be
-     * displayed.
-     */
-    setDynamicLoad: function(fnDataLoader, iconMode) { 
-        this.root.setDynamicLoad(fnDataLoader, iconMode);
-    },
-
-    /**
-     * Expands all child nodes.  Note: this conflicts with the "multiExpand"
-     * node property.  If expand all is called in a tree with nodes that
-     * do not allow multiple siblings to be displayed, only the last sibling
-     * will be expanded.
-     * @method expandAll
-     */
-    expandAll: function() { 
-        if (!this.locked) {
-            this.root.expandAll(); 
-        }
-    },
-
-    /**
-     * Collapses all expanded child nodes in the entire tree.
-     * @method collapseAll
-     */
-    collapseAll: function() { 
-        if (!this.locked) {
-            this.root.collapseAll(); 
-        }
-    },
-
-    /**
-     * Returns a node in the tree that has the specified index (this index
-     * is created internally, so this function probably will only be used
-     * in html generated for a given node.)
-     * @method getNodeByIndex
-     * @param {int} nodeIndex the index of the node wanted
-     * @return {Node} the node with index=nodeIndex, null if no match
-     */
-    getNodeByIndex: function(nodeIndex) {
-        var n = this._nodes[nodeIndex];
-        return (n) ? n : null;
-    },
-
-    /**
-     * Returns a node that has a matching property and value in the data
-     * object that was passed into its constructor.
-     * @method getNodeByProperty
-     * @param {object} property the property to search (usually a string)
-     * @param {object} value the value we want to find (usuall an int or string)
-     * @return {Node} the matching node, null if no match
-     */
-    getNodeByProperty: function(property, value) {
-        for (var i in this._nodes) {
-			if (this._nodes.hasOwnProperty(i)) {
-	            var n = this._nodes[i];
-	            if (n.data && value == n.data[property]) {
-	                return n;
-	            }
-			}
-        }
-
-        return null;
-    },
-
-    /**
-     * Returns a collection of nodes that have a matching property 
-     * and value in the data object that was passed into its constructor.  
-     * @method getNodesByProperty
-     * @param {object} property the property to search (usually a string)
-     * @param {object} value the value we want to find (usuall an int or string)
-     * @return {Array} the matching collection of nodes, null if no match
-     */
-    getNodesByProperty: function(property, value) {
-        var values = [];
-        for (var i in this._nodes) {
-			if (this._nodes.hasOwnProperty(i)) {
-	            var n = this._nodes[i];
-	            if (n.data && value == n.data[property]) {
-	                values.push(n);
-	            }
-			}
-        }
-
-        return (values.length) ? values : null;
-    },
-
-    /**
-     * Returns the treeview node reference for an anscestor element
-     * of the node, or null if it is not contained within any node
-     * in this tree.
-     * @method getNodeByElement
-     * @param {HTMLElement} the element to test
-     * @return {YAHOO.widget.Node} a node reference or null
-     */
-    getNodeByElement: function(el) {
-
-        var p=el, m, re=/ygtv([^\d]*)(.*)/;
-
-        do {
-
-            if (p && p.id) {
-                m = p.id.match(re);
-                if (m && m[2]) {
-                    return this.getNodeByIndex(m[2]);
-                }
-            }
-
-            p = p.parentNode;
-
-            if (!p || !p.tagName) {
-                break;
-            }
-
-        } 
-        while (p.id !== this.id && p.tagName.toLowerCase() !== "body");
-
-        return null;
-    },
-
-    /**
-     * Removes the node and its children, and optionally refreshes the 
-     * branch of the tree that was affected.
-     * @method removeNode
-     * @param {Node} The node to remove
-     * @param {boolean} autoRefresh automatically refreshes branch if true
-     * @return {boolean} False is there was a problem, true otherwise.
-     */
-    removeNode: function(node, autoRefresh) { 
-
-        // Don't delete the root node
-        if (node.isRoot()) {
-            return false;
-        }
-
-        // Get the branch that we may need to refresh
-        var p = node.parent;
-        if (p.parent) {
-            p = p.parent;
-        }
-
-        // Delete the node and its children
-        this._deleteNode(node);
-
-        // Refresh the parent of the parent
-        if (autoRefresh && p && p.childrenRendered) {
-            p.refresh();
-        }
-
-        return true;
-    },
-
-    /**
-     * wait until the animation is complete before deleting 
-     * to avoid javascript errors
-     * @method _removeChildren_animComplete
-     * @param o the custom event payload
-     * @private
-     */
-    _removeChildren_animComplete: function(o) {
-        this.unsubscribe(this._removeChildren_animComplete);
-        this.removeChildren(o.node);
-    },
-
-    /**
-     * Deletes this nodes child collection, recursively.  Also collapses
-     * the node, and resets the dynamic load flag.  The primary use for
-     * this method is to purge a node and allow it to fetch its data
-     * dynamically again.
-     * @method removeChildren
-     * @param {Node} node the node to purge
-     */
-    removeChildren: function(node) { 
-
-        if (node.expanded) {
-            // wait until the animation is complete before deleting to
-            // avoid javascript errors
-            if (this._collapseAnim) {
-                this.subscribe("animComplete", 
-                        this._removeChildren_animComplete, this, true);
-                Widget.Node.prototype.collapse.call(node);
-                return;
-            }
-
-            node.collapse();
-        }
-
-        this.logger.log("Removing children for " + node);
-        while (node.children.length) {
-            this._deleteNode(node.children[0]);
-        }
-
-        if (node.isRoot()) {
-            Widget.Node.prototype.expand.call(node);
-        }
-
-        node.childrenRendered = false;
-        node.dynamicLoadComplete = false;
-
-        node.updateIcon();
-    },
-
-    /**
-     * Deletes the node and recurses children
-     * @method _deleteNode
-     * @private
-     */
-    _deleteNode: function(node) { 
-        // Remove all the child nodes first
-        this.removeChildren(node);
-
-        // Remove the node from the tree
-        this.popNode(node);
-    },
-
-    /**
-     * Removes the node from the tree, preserving the child collection 
-     * to make it possible to insert the branch into another part of the 
-     * tree, or another tree.
-     * @method popNode
-     * @param {Node} the node to remove
-     */
-    popNode: function(node) { 
-        var p = node.parent;
-
-        // Update the parent's collection of children
-        var a = [];
-
-        for (var i=0, len=p.children.length;i<len;++i) {
-            if (p.children[i] != node) {
-                a[a.length] = p.children[i];
-            }
-        }
-
-        p.children = a;
-
-        // reset the childrenRendered flag for the parent
-        p.childrenRendered = false;
-
-         // Update the sibling relationship
-        if (node.previousSibling) {
-            node.previousSibling.nextSibling = node.nextSibling;
-        }
-
-        if (node.nextSibling) {
-            node.nextSibling.previousSibling = node.previousSibling;
-        }
-
-        node.parent = null;
-        node.previousSibling = null;
-        node.nextSibling = null;
-        node.tree = null;
-
-        // Update the tree's node collection 
-        delete this._nodes[node.index];
-    },
-
-	/**
-	* Nulls out the entire TreeView instance and related objects, removes attached
-	* event listeners, and clears out DOM elements inside the container. After
-	* calling this method, the instance reference should be expliclitly nulled by
-	* implementer, as in myDataTable = null. Use with caution!
-	*
-	* @method destroy
-	*/
-	destroy : function() {
-		// Since the label editor can be separated from the main TreeView control
-		// the destroy method for it might not be there.
-		if (this._destroyEditor) { this._destroyEditor(); }
-		var el = this.getEl();
-		Event.removeListener(el,'click');
-		Event.removeListener(el,'dblclick');
-		Event.removeListener(el,'mouseover');
-		Event.removeListener(el,'mouseout');
-		Event.removeListener(el,'keydown');
-		for (var i = 0 ; i < this._nodes.length; i++) {
-			var node = this._nodes[i];
-			if (node && node.destroy) {node.destroy(); }
-		}
-		el.parentNode.removeChild(el);
-		this._hasEvents = false;
-	},
-		
-			
-
-
-    /**
-     * TreeView instance toString
-     * @method toString
-     * @return {string} string representation of the tree
-     */
-    toString: function() {
-        return "TreeView " + this.id;
-    },
-
-    /**
-     * Count of nodes in tree
-     * @method getNodeCount
-     * @return {int} number of nodes in the tree
-     */
-    getNodeCount: function() {
-        return this.getRoot().getNodeCount();
-    },
-
-    /**
-     * Returns an object which could be used to rebuild the tree.
-     * It can be passed to the tree constructor to reproduce the same tree.
-     * It will return false if any node loads dynamically, regardless of whether it is loaded or not.
-     * @method getTreeDefinition
-     * @return {Object | false}  definition of the tree or false if any node is defined as dynamic
-     */
-    getTreeDefinition: function() {
-        return this.getRoot().getNodeDefinition();
-    },
-
-    /**
-     * Abstract method that is executed when a node is expanded
-     * @method onExpand
-     * @param node {Node} the node that was expanded
-     * @deprecated use treeobj.subscribe("expand") instead
-     */
-    onExpand: function(node) { },
-
-    /**
-     * Abstract method that is executed when a node is collapsed.
-     * @method onCollapse
-     * @param node {Node} the node that was collapsed.
-     * @deprecated use treeobj.subscribe("collapse") instead
-     */
-    onCollapse: function(node) { }
-
-};
-
-/* Backwards compatibility aliases */
-var PROT = TV.prototype;
- /**
-     * Renders the tree boilerplate and visible nodes.
-     *  Alias for render
-     * @method draw
-     * @deprecated Use render instead
-     */
-PROT.draw = PROT.render;
-
-/* end backwards compatibility aliases */
-
-YAHOO.augment(TV, YAHOO.util.EventProvider);
-
-/**
- * Running count of all nodes created in all trees.  This is 
- * used to provide unique identifies for all nodes.  Deleting
- * nodes does not change the nodeCount.
- * @property YAHOO.widget.TreeView.nodeCount
- * @type int
- * @static
- */
-TV.nodeCount = 0;
-
-/**
- * Global cache of tree instances
- * @property YAHOO.widget.TreeView.trees
- * @type Array
- * @static
- * @private
- */
-TV.trees = [];
-
-/**
- * Global method for getting a tree by its id.  Used in the generated
- * tree html.
- * @method YAHOO.widget.TreeView.getTree
- * @param treeId {String} the id of the tree instance
- * @return {TreeView} the tree instance requested, null if not found.
- * @static
- */
-TV.getTree = function(treeId) {
-    var t = TV.trees[treeId];
-    return (t) ? t : null;
-};
-
-
-/**
- * Global method for getting a node by its id.  Used in the generated
- * tree html.
- * @method YAHOO.widget.TreeView.getNode
- * @param treeId {String} the id of the tree instance
- * @param nodeIndex {String} the index of the node to return
- * @return {Node} the node instance requested, null if not found
- * @static
- */
-TV.getNode = function(treeId, nodeIndex) {
-    var t = TV.getTree(treeId);
-    return (t) ? t.getNodeByIndex(nodeIndex) : null;
-};
-
-
-/**
-     * Class name assigned to elements that have the focus
-     *
-     * @property TreeView.FOCUS_CLASS_NAME
-     * @type String
-     * @static
-     * @final
-     * @default "ygtvfocus"
-
-	*/ 
-TV.FOCUS_CLASS_NAME = 'ygtvfocus';
-
-/**
- * Attempts to preload the images defined in the styles used to draw the tree by
- * rendering off-screen elements that use the styles.
- * @method YAHOO.widget.TreeView.preload
- * @param {string} prefix the prefix to use to generate the names of the
- * images to preload, default is ygtv
- * @static
- */
-TV.preload = function(e, prefix) {
-    prefix = prefix || "ygtv";
-
-    YAHOO.log("Preloading images: " + prefix, "info", "TreeView");
-
-    var styles = ["tn","tm","tmh","tp","tph","ln","lm","lmh","lp","lph","loading"];
-    // var styles = ["tp"];
-
-    var sb = [];
-    
-    // save the first one for the outer container
-    for (var i=1; i < styles.length; i=i+1) { 
-        sb[sb.length] = '<span class="' + prefix + styles[i] + '">&#160;</span>';
-    }
-
-    var f = document.createElement("div");
-    var s = f.style;
-    s.className = prefix + styles[0];
-    s.position = "absolute";
-    s.height = "1px";
-    s.width = "1px";
-    s.top = "-1000px";
-    s.left = "-1000px";
-    f.innerHTML = sb.join("");
-
-    document.body.appendChild(f);
-
-    Event.removeListener(window, "load", TV.preload);
-
-};
-
-Event.addListener(window,"load", TV.preload);
-})();
-(function () {
-	var Dom = YAHOO.util.Dom,
-		Lang = YAHOO.lang,
-		Event = YAHOO.util.Event;
-/**
- * The base class for all tree nodes.  The node's presentation and behavior in
- * response to mouse events is handled in Node subclasses.
- * @namespace YAHOO.widget
- * @class Node
- * @uses YAHOO.util.EventProvider
- * @param oData {object} a string or object containing the data that will
- * be used to render this node, and any custom attributes that should be
- * stored with the node (which is available in noderef.data).
- * All values in oData will be used to set equally named properties in the node
- * as long as the node does have such properties, they are not undefined, private or functions.
- * @param oParent {Node} this node's parent node
- * @param expanded {boolean} the initial expanded/collapsed state (deprecated, use oData.expanded)
- * @constructor
- */
-YAHOO.widget.Node = function(oData, oParent, expanded) {
-    if (oData) { this.init(oData, oParent, expanded); }
-};
-
-YAHOO.widget.Node.prototype = {
-
-    /**
-     * The index for this instance obtained from global counter in YAHOO.widget.TreeView.
-     * @property index
-     * @type int
-     */
-    index: 0,
-
-    /**
-     * This node's child node collection.
-     * @property children
-     * @type Node[] 
-     */
-    children: null,
-
-    /**
-     * Tree instance this node is part of
-     * @property tree
-     * @type TreeView
-     */
-    tree: null,
-
-    /**
-     * The data linked to this node.  This can be any object or primitive
-     * value, and the data can be used in getNodeHtml().
-     * @property data
-     * @type object
-     */
-    data: null,
-
-    /**
-     * Parent node
-     * @property parent
-     * @type Node
-     */
-    parent: null,
-
-    /**
-     * The depth of this node.  We start at -1 for the root node.
-     * @property depth
-     * @type int
-     */
-    depth: -1,
-
-    /**
-     * The href for the node's label.  If one is not specified, the href will
-     * be set so that it toggles the node.
-     * @property href
-     * @type string
-     */
-    href: null,
-
-    /**
-     * The label href target, defaults to current window
-     * @property target
-     * @type string
-     */
-    target: "_self",
-
-    /**
-     * The node's expanded/collapsed state
-     * @property expanded
-     * @type boolean
-     */
-    expanded: false,
-
-    /**
-     * Can multiple children be expanded at once?
-     * @property multiExpand
-     * @type boolean
-     */
-    multiExpand: true,
-
-    /**
-     * Should we render children for a collapsed node?  It is possible that the
-     * implementer will want to render the hidden data...  @todo verify that we 
-     * need this, and implement it if we do.
-     * @property renderHidden
-     * @type boolean
-     */
-    renderHidden: false,
-
-    /**
-     * This flag is set to true when the html is generated for this node's
-     * children, and set to false when new children are added.
-     * @property childrenRendered
-     * @type boolean
-     */
-    childrenRendered: false,
-
-    /**
-     * Dynamically loaded nodes only fetch the data the first time they are
-     * expanded.  This flag is set to true once the data has been fetched.
-     * @property dynamicLoadComplete
-     * @type boolean
-     */
-    dynamicLoadComplete: false,
-
-    /**
-     * This node's previous sibling
-     * @property previousSibling
-     * @type Node
-     */
-    previousSibling: null,
-
-    /**
-     * This node's next sibling
-     * @property nextSibling
-     * @type Node
-     */
-    nextSibling: null,
-
-    /**
-     * We can set the node up to call an external method to get the child
-     * data dynamically.
-     * @property _dynLoad
-     * @type boolean
-     * @private
-     */
-    _dynLoad: false,
-
-    /**
-     * Function to execute when we need to get this node's child data.
-     * @property dataLoader
-     * @type function
-     */
-    dataLoader: null,
-
-    /**
-     * This is true for dynamically loading nodes while waiting for the
-     * callback to return.
-     * @property isLoading
-     * @type boolean
-     */
-    isLoading: false,
-
-    /**
-     * The toggle/branch icon will not show if this is set to false.  This
-     * could be useful if the implementer wants to have the child contain
-     * extra info about the parent, rather than an actual node.
-     * @property hasIcon
-     * @type boolean
-     */
-    hasIcon: true,
-
-    /**
-     * Used to configure what happens when a dynamic load node is expanded
-     * and we discover that it does not have children.  By default, it is
-     * treated as if it still could have children (plus/minus icon).  Set
-     * iconMode to have it display like a leaf node instead.
-     * @property iconMode
-     * @type int
-     */
-    iconMode: 0,
-
-    /**
-     * Specifies whether or not the content area of the node should be allowed
-     * to wrap.
-     * @property nowrap
-     * @type boolean
-     * @default false
-     */
-    nowrap: false,
-
- /**
-     * If true, the node will alway be rendered as a leaf node.  This can be
-     * used to override the presentation when dynamically loading the entire
-     * tree.  Setting this to true also disables the dynamic load call for the
-     * node.
-     * @property isLeaf
-     * @type boolean
-     * @default false
-     */
-    isLeaf: false,
-
-/**
-     * The CSS class for the html content container.  Defaults to ygtvhtml, but 
-     * can be overridden to provide a custom presentation for a specific node.
-     * @property contentStyle
-     * @type string
-     */
-    contentStyle: "",
-
-    /**
-     * The generated id that will contain the data passed in by the implementer.
-     * @property contentElId
-     * @type string
-     */
-    contentElId: null,
- /**
-     * The node type
-     * @property _type
-     * @private
-     * @type string
-     * @default "Node"
-*/
-    _type: "Node",
-
-    /*
-    spacerPath: "http://us.i1.yimg.com/us.yimg.com/i/space.gif",
-    expandedText: "Expanded",
-    collapsedText: "Collapsed",
-    loadingText: "Loading",
-    */
-
-    /**
-     * Initializes this node, gets some of the properties from the parent
-     * @method init
-     * @param oData {object} a string or object containing the data that will
-     * be used to render this node
-     * @param oParent {Node} this node's parent node
-     * @param expanded {boolean} the initial expanded/collapsed state
-     */
-    init: function(oData, oParent, expanded) {
-
-        this.data       = oData;
-        this.children   = [];
-        this.index      = YAHOO.widget.TreeView.nodeCount;
-        ++YAHOO.widget.TreeView.nodeCount;
-		this.contentElId = "ygtvcontentel" + this.index;
-		
-		if (Lang.isObject(oData)) {
-			for (var property in oData) {
-				if (property.charAt(0) != '_'  && oData.hasOwnProperty(property) && !Lang.isUndefined(this[property]) && !Lang.isFunction(this[property]) ) {
-					this[property] = oData[property];
-				}
-			}
-		}
-		if (!Lang.isUndefined(expanded) ) {	this.expanded  = expanded;	}
-		
-        this.logger     = new YAHOO.widget.LogWriter(this.toString());
-
-        /**
-         * The parentChange event is fired when a parent element is applied
-         * to the node.  This is useful if you need to apply tree-level
-         * properties to a tree that need to happen if a node is moved from
-         * one tree to another.
-         *
-         * @event parentChange
-         * @type CustomEvent
-         */
-        this.createEvent("parentChange", this);
-
-        // oParent should never be null except when we create the root node.
-        if (oParent) {
-            oParent.appendChild(this);
-        }
-    },
-
-    /**
-     * Certain properties for the node cannot be set until the parent
-     * is known. This is called after the node is inserted into a tree.
-     * the parent is also applied to this node's children in order to
-     * make it possible to move a branch from one tree to another.
-     * @method applyParent
-     * @param {Node} parentNode this node's parent node
-     * @return {boolean} true if the application was successful
-     */
-    applyParent: function(parentNode) {
-        if (!parentNode) {
-            return false;
-        }
-
-        this.tree   = parentNode.tree;
-        this.parent = parentNode;
-        this.depth  = parentNode.depth + 1;
-
-        // @todo why was this put here.  This causes new nodes added at the
-        // root level to lose the menu behavior.
-        // if (! this.multiExpand) {
-            // this.multiExpand = parentNode.multiExpand;
-        // }
-
-        this.tree.regNode(this);
-        parentNode.childrenRendered = false;
-
-        // cascade update existing children
-        for (var i=0, len=this.children.length;i<len;++i) {
-            this.children[i].applyParent(this);
-        }
-
-        this.fireEvent("parentChange");
-
-        return true;
-    },
-
-    /**
-     * Appends a node to the child collection.
-     * @method appendChild
-     * @param childNode {Node} the new node
-     * @return {Node} the child node
-     * @private
-     */
-    appendChild: function(childNode) {
-        if (this.hasChildren()) {
-            var sib = this.children[this.children.length - 1];
-            sib.nextSibling = childNode;
-            childNode.previousSibling = sib;
-        }
-        this.children[this.children.length] = childNode;
-        childNode.applyParent(this);
-
-        // part of the IE display issue workaround. If child nodes
-        // are added after the initial render, and the node was
-        // instantiated with expanded = true, we need to show the
-        // children div now that the node has a child.
-        if (this.childrenRendered && this.expanded) {
-            this.getChildrenEl().style.display = "";
-        }
-
-        return childNode;
-    },
-
-    /**
-     * Appends this node to the supplied node's child collection
-     * @method appendTo
-     * @param parentNode {Node} the node to append to.
-     * @return {Node} The appended node
-     */
-    appendTo: function(parentNode) {
-        return parentNode.appendChild(this);
-    },
-
-    /**
-    * Inserts this node before this supplied node
-    * @method insertBefore
-    * @param node {Node} the node to insert this node before
-    * @return {Node} the inserted node
-    */
-    insertBefore: function(node) {
-        this.logger.log("insertBefore: " + node);
-        var p = node.parent;
-        if (p) {
-
-            if (this.tree) {
-                this.tree.popNode(this);
-            }
-
-            var refIndex = node.isChildOf(p);
-            //this.logger.log(refIndex);
-            p.children.splice(refIndex, 0, this);
-            if (node.previousSibling) {
-                node.previousSibling.nextSibling = this;
-            }
-            this.previousSibling = node.previousSibling;
-            this.nextSibling = node;
-            node.previousSibling = this;
-
-            this.applyParent(p);
-        }
-
-        return this;
-    },
- 
-    /**
-    * Inserts this node after the supplied node
-    * @method insertAfter
-    * @param node {Node} the node to insert after
-    * @return {Node} the inserted node
-    */
-    insertAfter: function(node) {
-        this.logger.log("insertAfter: " + node);
-        var p = node.parent;
-        if (p) {
-
-            if (this.tree) {
-                this.tree.popNode(this);
-            }
-
-            var refIndex = node.isChildOf(p);
-            this.logger.log(refIndex);
-
-            if (!node.nextSibling) {
-                this.nextSibling = null;
-                return this.appendTo(p);
-            }
-
-            p.children.splice(refIndex + 1, 0, this);
-
-            node.nextSibling.previousSibling = this;
-            this.previousSibling = node;
-            this.nextSibling = node.nextSibling;
-            node.nextSibling = this;
-
-            this.applyParent(p);
-        }
-
-        return this;
-    },
-
-    /**
-    * Returns true if the Node is a child of supplied Node
-    * @method isChildOf
-    * @param parentNode {Node} the Node to check
-    * @return {boolean} The node index if this Node is a child of 
-    *                   supplied Node, else -1.
-    * @private
-    */
-    isChildOf: function(parentNode) {
-        if (parentNode && parentNode.children) {
-            for (var i=0, len=parentNode.children.length; i<len ; ++i) {
-                if (parentNode.children[i] === this) {
-                    return i;
-                }
-            }
-        }
-
-        return -1;
-    },
-
-    /**
-     * Returns a node array of this node's siblings, null if none.
-     * @method getSiblings
-     * @return Node[]
-     */
-    getSiblings: function() {
-		var sib =  this.parent.children.slice(0);
-		for (var i=0;i < sib.length && sib[i] != this;i++) {}
-		sib.splice(i,1);
-		if (sib.length) { return sib; }
-		return null;
-    },
-
-    /**
-     * Shows this node's children
-     * @method showChildren
-     */
-    showChildren: function() {
-        if (!this.tree.animateExpand(this.getChildrenEl(), this)) {
-            if (this.hasChildren()) {
-                this.getChildrenEl().style.display = "";
-            }
-        }
-    },
-
-    /**
-     * Hides this node's children
-     * @method hideChildren
-     */
-    hideChildren: function() {
-        this.logger.log("hiding " + this.index);
-
-        if (!this.tree.animateCollapse(this.getChildrenEl(), this)) {
-            this.getChildrenEl().style.display = "none";
-        }
-    },
-
-    /**
-     * Returns the id for this node's container div
-     * @method getElId
-     * @return {string} the element id
-     */
-    getElId: function() {
-        return "ygtv" + this.index;
-    },
-
-    /**
-     * Returns the id for this node's children div
-     * @method getChildrenElId
-     * @return {string} the element id for this node's children div
-     */
-    getChildrenElId: function() {
-        return "ygtvc" + this.index;
-    },
-
-    /**
-     * Returns the id for this node's toggle element
-     * @method getToggleElId
-     * @return {string} the toggel element id
-     */
-    getToggleElId: function() {
-        return "ygtvt" + this.index;
-    },
-
-
-    /*
-     * Returns the id for this node's spacer image.  The spacer is positioned
-     * over the toggle and provides feedback for screen readers.
-     * @method getSpacerId
-     * @return {string} the id for the spacer image
-     */
-    /*
-    getSpacerId: function() {
-        return "ygtvspacer" + this.index;
-    }, 
-    */
-
-    /**
-     * Returns this node's container html element
-     * @method getEl
-     * @return {HTMLElement} the container html element
-     */
-    getEl: function() {
-        return Dom.get(this.getElId());
-    },
-
-    /**
-     * Returns the div that was generated for this node's children
-     * @method getChildrenEl
-     * @return {HTMLElement} this node's children div
-     */
-    getChildrenEl: function() {
-        return Dom.get(this.getChildrenElId());
-    },
-
-    /**
-     * Returns the element that is being used for this node's toggle.
-     * @method getToggleEl
-     * @return {HTMLElement} this node's toggle html element
-     */
-    getToggleEl: function() {
-        return Dom.get(this.getToggleElId());
-    },
-    /**
-	* Returns the outer html element for this node's content
-	* @method getContentEl
-	* @return {HTMLElement} the element
-	*/
-    getContentEl: function() { 
-        return Dom.get(this.contentElId);
-    },
-
-
-    /*
-     * Returns the element that is being used for this node's spacer.
-     * @method getSpacer
-     * @return {HTMLElement} this node's spacer html element
-     */
-    /*
-    getSpacer: function() {
-        return document.getElementById( this.getSpacerId() ) || {};
-    },
-    */
-
-    /*
-    getStateText: function() {
-        if (this.isLoading) {
-            return this.loadingText;
-        } else if (this.hasChildren(true)) {
-            if (this.expanded) {
-                return this.expandedText;
-            } else {
-                return this.collapsedText;
-            }
-        } else {
-            return "";
-        }
-    },
-    */
-
-  /**
-     * Hides this nodes children (creating them if necessary), changes the toggle style.
-     * @method collapse
-     */
-    collapse: function() {
-        // Only collapse if currently expanded
-        if (!this.expanded) { return; }
-
-        // fire the collapse event handler
-        var ret = this.tree.onCollapse(this);
-
-        if (false === ret) {
-            this.logger.log("Collapse was stopped by the abstract onCollapse");
-            return;
-        }
-
-        ret = this.tree.fireEvent("collapse", this);
-
-        if (false === ret) {
-            this.logger.log("Collapse was stopped by a custom event handler");
-            return;
-        }
-
-
-        if (!this.getEl()) {
-            this.expanded = false;
-        } else {
-            // hide the child div
-            this.hideChildren();
-            this.expanded = false;
-
-            this.updateIcon();
-        }
-
-        // this.getSpacer().title = this.getStateText();
-
-        ret = this.tree.fireEvent("collapseComplete", this);
-
-    },
-
-    /**
-     * Shows this nodes children (creating them if necessary), changes the
-     * toggle style, and collapses its siblings if multiExpand is not set.
-     * @method expand
-     */
-    expand: function(lazySource) {
-        // Only expand if currently collapsed.
-        if (this.expanded && !lazySource) { 
-            return; 
-        }
-
-        var ret = true;
-
-        // When returning from the lazy load handler, expand is called again
-        // in order to render the new children.  The "expand" event already
-        // fired before fething the new data, so we need to skip it now.
-        if (!lazySource) {
-            // fire the expand event handler
-            ret = this.tree.onExpand(this);
-
-            if (false === ret) {
-                this.logger.log("Expand was stopped by the abstract onExpand");
-                return;
-            }
-            
-            ret = this.tree.fireEvent("expand", this);
-        }
-
-        if (false === ret) {
-            this.logger.log("Expand was stopped by the custom event handler");
-            return;
-        }
-
-        if (!this.getEl()) {
-            this.expanded = true;
-            return;
-        }
-
-        if (!this.childrenRendered) {
-            this.logger.log("children not rendered yet");
-            this.getChildrenEl().innerHTML = this.renderChildren();
-        } else {
-            this.logger.log("children already rendered");
-        }
-
-        this.expanded = true;
-
-        this.updateIcon();
-
-        // this.getSpacer().title = this.getStateText();
-
-        // We do an extra check for children here because the lazy
-        // load feature can expose nodes that have no children.
-
-        // if (!this.hasChildren()) {
-        if (this.isLoading) {
-            this.expanded = false;
-            return;
-        }
-
-        if (! this.multiExpand) {
-            var sibs = this.getSiblings();
-            for (var i=0; sibs && i<sibs.length; ++i) {
-                if (sibs[i] != this && sibs[i].expanded) { 
-                    sibs[i].collapse(); 
-                }
-            }
-        }
-
-        this.showChildren();
-
-        ret = this.tree.fireEvent("expandComplete", this);
-    },
-
-    updateIcon: function() {
-        if (this.hasIcon) {
-            var el = this.getToggleEl();
-            if (el) {
-                el.className = el.className.replace(/ygtv(([tl][pmn]h?)|(loading))/,this.getStyle());
-            }
-        }
-    },
-
-    /**
-     * Returns the css style name for the toggle
-     * @method getStyle
-     * @return {string} the css class for this node's toggle
-     */
-    getStyle: function() {
-        // this.logger.log("No children, " + " isDyanmic: " + this.isDynamic() + " expanded: " + this.expanded);
-        if (this.isLoading) {
-            this.logger.log("returning the loading icon");
-            return "ygtvloading";
-        } else {
-            // location top or bottom, middle nodes also get the top style
-            var loc = (this.nextSibling) ? "t" : "l";
-
-            // type p=plus(expand), m=minus(collapase), n=none(no children)
-            var type = "n";
-            if (this.hasChildren(true) || (this.isDynamic() && !this.getIconMode())) {
-            // if (this.hasChildren(true)) {
-                type = (this.expanded) ? "m" : "p";
-            }
-
-            // this.logger.log("ygtv" + loc + type);
-            return "ygtv" + loc + type;
-        }
-    },
-
-    /**
-     * Returns the hover style for the icon
-     * @return {string} the css class hover state
-     * @method getHoverStyle
-     */
-    getHoverStyle: function() { 
-        var s = this.getStyle();
-        if (this.hasChildren(true) && !this.isLoading) { 
-            s += "h"; 
-        }
-        return s;
-    },
-
-    /**
-     * Recursively expands all of this node's children.
-     * @method expandAll
-     */
-    expandAll: function() { 
-        for (var i=0;i<this.children.length;++i) {
-            var c = this.children[i];
-            if (c.isDynamic()) {
-                this.logger.log("Not supported (lazy load + expand all)");
-                break;
-            } else if (! c.multiExpand) {
-                this.logger.log("Not supported (no multi-expand + expand all)");
-                break;
-            } else {
-                c.expand();
-                c.expandAll();
-            }
-        }
-    },
-
-    /**
-     * Recursively collapses all of this node's children.
-     * @method collapseAll
-     */
-    collapseAll: function() { 
-        for (var i=0;i<this.children.length;++i) {
-            this.children[i].collapse();
-            this.children[i].collapseAll();
-        }
-    },
-
-    /**
-     * Configures this node for dynamically obtaining the child data
-     * when the node is first expanded.  Calling it without the callback
-     * will turn off dynamic load for the node.
-     * @method setDynamicLoad
-     * @param fmDataLoader {function} the function that will be used to get the data.
-     * @param iconMode {int} configures the icon that is displayed when a dynamic
-     * load node is expanded the first time without children.  By default, the 
-     * "collapse" icon will be used.  If set to 1, the leaf node icon will be
-     * displayed.
-     */
-    setDynamicLoad: function(fnDataLoader, iconMode) { 
-        if (fnDataLoader) {
-            this.dataLoader = fnDataLoader;
-            this._dynLoad = true;
-        } else {
-            this.dataLoader = null;
-            this._dynLoad = false;
-        }
-
-        if (iconMode) {
-            this.iconMode = iconMode;
-        }
-    },
-
-    /**
-     * Evaluates if this node is the root node of the tree
-     * @method isRoot
-     * @return {boolean} true if this is the root node
-     */
-    isRoot: function() { 
-        return (this == this.tree.root);
-    },
-
-    /**
-     * Evaluates if this node's children should be loaded dynamically.  Looks for
-     * the property both in this instance and the root node.  If the tree is
-     * defined to load all children dynamically, the data callback function is
-     * defined in the root node
-     * @method isDynamic
-     * @return {boolean} true if this node's children are to be loaded dynamically
-     */
-    isDynamic: function() { 
-        if (this.isLeaf) {
-            return false;
-        } else {
-            return (!this.isRoot() && (this._dynLoad || this.tree.root._dynLoad));
-            // this.logger.log("isDynamic: " + lazy);
-            // return lazy;
-        }
-    },
-
-    /**
-     * Returns the current icon mode.  This refers to the way childless dynamic
-     * load nodes appear (this comes into play only after the initial dynamic
-     * load request produced no children).
-     * @method getIconMode
-     * @return {int} 0 for collapse style, 1 for leaf node style
-     */
-    getIconMode: function() {
-        return (this.iconMode || this.tree.root.iconMode);
-    },
-
-    /**
-     * Checks if this node has children.  If this node is lazy-loading and the
-     * children have not been rendered, we do not know whether or not there
-     * are actual children.  In most cases, we need to assume that there are
-     * children (for instance, the toggle needs to show the expandable 
-     * presentation state).  In other times we want to know if there are rendered
-     * children.  For the latter, "checkForLazyLoad" should be false.
-     * @method hasChildren
-     * @param checkForLazyLoad {boolean} should we check for unloaded children?
-     * @return {boolean} true if this has children or if it might and we are
-     * checking for this condition.
-     */
-    hasChildren: function(checkForLazyLoad) { 
-        if (this.isLeaf) {
-            return false;
-        } else {
-            return ( this.children.length > 0 || 
-(checkForLazyLoad && this.isDynamic() && !this.dynamicLoadComplete) );
-        }
-    },
-
-    /**
-     * Expands if node is collapsed, collapses otherwise.
-     * @method toggle
-     */
-    toggle: function() {
-        if (!this.tree.locked && ( this.hasChildren(true) || this.isDynamic()) ) {
-            if (this.expanded) { this.collapse(); } else { this.expand(); }
-        }
-    },
-
-    /**
-     * Returns the markup for this node and its children.
-     * @method getHtml
-     * @return {string} the markup for this node and its expanded children.
-     */
-    getHtml: function() {
-
-        this.childrenRendered = false;
-
-        var sb = [];
-        sb[sb.length] = '<div class="ygtvitem" id="' + this.getElId() + '">';
-        sb[sb.length] = this.getNodeHtml();
-        sb[sb.length] = this.getChildrenHtml();
-        sb[sb.length] = '</div>';
-        return sb.join("");
-    },
-
-    /**
-     * Called when first rendering the tree.  We always build the div that will
-     * contain this nodes children, but we don't render the children themselves
-     * unless this node is expanded.
-     * @method getChildrenHtml
-     * @return {string} the children container div html and any expanded children
-     * @private
-     */
-    getChildrenHtml: function() {
-
-
-        var sb = [];
-        sb[sb.length] = '<div class="ygtvchildren"';
-        sb[sb.length] = ' id="' + this.getChildrenElId() + '"';
-
-        // This is a workaround for an IE rendering issue, the child div has layout
-        // in IE, creating extra space if a leaf node is created with the expanded
-        // property set to true.
-        if (!this.expanded || !this.hasChildren()) {
-            sb[sb.length] = ' style="display:none;"';
-        }
-        sb[sb.length] = '>';
-
-        // this.logger.log(["index", this.index, 
-                         // "hasChildren", this.hasChildren(true), 
-                         // "expanded", this.expanded, 
-                         // "renderHidden", this.renderHidden, 
-                         // "isDynamic", this.isDynamic()]);
-
-        // Don't render the actual child node HTML unless this node is expanded.
-        if ( (this.hasChildren(true) && this.expanded) ||
-                (this.renderHidden && !this.isDynamic()) ) {
-            sb[sb.length] = this.renderChildren();
-        }
-
-        sb[sb.length] = '</div>';
-
-        return sb.join("");
-    },
-
-    /**
-     * Generates the markup for the child nodes.  This is not done until the node
-     * is expanded.
-     * @method renderChildren
-     * @return {string} the html for this node's children
-     * @private
-     */
-    renderChildren: function() {
-
-        this.logger.log("rendering children for " + this.index);
-
-        var node = this;
-
-        if (this.isDynamic() && !this.dynamicLoadComplete) {
-            this.isLoading = true;
-            this.tree.locked = true;
-
-            if (this.dataLoader) {
-                this.logger.log("Using dynamic loader defined for this node");
-
-                setTimeout( 
-                    function() {
-                        node.dataLoader(node, 
-                            function() { 
-                                node.loadComplete(); 
-                            });
-                    }, 10);
-                
-            } else if (this.tree.root.dataLoader) {
-                this.logger.log("Using the tree-level dynamic loader");
-
-                setTimeout( 
-                    function() {
-                        node.tree.root.dataLoader(node, 
-                            function() { 
-                                node.loadComplete(); 
-                            });
-                    }, 10);
-
-            } else {
-                this.logger.log("no loader found");
-                return "Error: data loader not found or not specified.";
-            }
-
-            return "";
-
-        } else {
-            return this.completeRender();
-        }
-    },
-
-    /**
-     * Called when we know we have all the child data.
-     * @method completeRender
-     * @return {string} children html
-     */
-    completeRender: function() {
-        this.logger.log("completeRender: " + this.index + ", # of children: " + this.children.length);
-        var sb = [];
-
-        for (var i=0; i < this.children.length; ++i) {
-            // this.children[i].childrenRendered = false;
-            sb[sb.length] = this.children[i].getHtml();
-        }
-        
-        this.childrenRendered = true;
-
-        return sb.join("");
-    },
-
-    /**
-     * Load complete is the callback function we pass to the data provider
-     * in dynamic load situations.
-     * @method loadComplete
-     */
-    loadComplete: function() {
-        this.logger.log(this.index + " loadComplete, children: " + this.children.length);
-        this.getChildrenEl().innerHTML = this.completeRender();
-        this.dynamicLoadComplete = true;
-        this.isLoading = false;
-        this.expand(true);
-        this.tree.locked = false;
-    },
-
-    /**
-     * Returns this node's ancestor at the specified depth.
-     * @method getAncestor
-     * @param {int} depth the depth of the ancestor.
-     * @return {Node} the ancestor
-     */
-    getAncestor: function(depth) {
-        if (depth >= this.depth || depth < 0)  {
-            this.logger.log("illegal getAncestor depth: " + depth);
-            return null;
-        }
-
-        var p = this.parent;
-        
-        while (p.depth > depth) {
-            p = p.parent;
-        }
-
-        return p;
-    },
-
-    /**
-     * Returns the css class for the spacer at the specified depth for
-     * this node.  If this node's ancestor at the specified depth
-     * has a next sibling the presentation is different than if it
-     * does not have a next sibling
-     * @method getDepthStyle
-     * @param {int} depth the depth of the ancestor.
-     * @return {string} the css class for the spacer
-     */
-    getDepthStyle: function(depth) {
-        return (this.getAncestor(depth).nextSibling) ? 
-            "ygtvdepthcell" : "ygtvblankdepthcell";
-    },
-
-    /**
-     * Get the markup for the node.  This may be overrided so that we can
-     * support different types of nodes.
-     * @method getNodeHtml
-     * @return {string} The HTML that will render this node.
-     */
-    getNodeHtml: function() { 
-        this.logger.log("Generating html");
-        var sb = [];
-
-        sb[sb.length] = '<table border="0" cellpadding="0" cellspacing="0" class="ygtvdepth' + this.depth + '">';
-        sb[sb.length] = '<tr class="ygtvrow">';
-        
-        for (var i=0;i<this.depth;++i) {
-            sb[sb.length] = '<td class="' + this.getDepthStyle(i) + '"><div class="ygtvspacer"></div></td>';
-        }
-
-        if (this.hasIcon) {
-            sb[sb.length] = '<td'; 
-            sb[sb.length] = ' id="' + this.getToggleElId() + '"';
-            sb[sb.length] = ' class="' + this.getStyle() + '"';
-            sb[sb.length] = '><a href="#" class="ygtvspacer">&nbsp;</a></td>';
-        }
-
-        sb[sb.length] = '<td';
-        sb[sb.length] = ' id="' + this.contentElId + '"'; 
-        sb[sb.length] = ' class="' + this.contentStyle  + ' ygtvcontent" ';
-        sb[sb.length] = (this.nowrap) ? ' nowrap="nowrap" ' : '';
-        sb[sb.length] = ' >';
-		sb[sb.length] = this.getContentHtml();
-        sb[sb.length] = '</td>';
-        sb[sb.length] = '</tr>';
-        sb[sb.length] = '</table>';
-
-        return sb.join("");
-
-    },
-	/**
-     * Get the markup for the contents of the node.  This is designed to be overrided so that we can
-     * support different types of nodes.
-     * @method getContentHtml
-     * @return {string} The HTML that will render the content of this node.
-     */
-	getContentHtml: function () {
-		return "";
-	},
-
-    /**
-     * Regenerates the html for this node and its children.  To be used when the
-     * node is expanded and new children have been added.
-     * @method refresh
-     */
-    refresh: function() {
-        // this.loadComplete();
-        this.getChildrenEl().innerHTML = this.completeRender();
-
-        if (this.hasIcon) {
-            var el = this.getToggleEl();
-            if (el) {
-                el.className = this.getStyle();
-            }
-        }
-    },
-
-    /**
-     * Node toString
-     * @method toString
-     * @return {string} string representation of the node
-     */
-    toString: function() {
-        return this._type + " (" + this.index + ")";
-    },
-	/**
-	* array of items that had the focus set on them
-	* so that they can be cleaned when focus is lost
-	* @property _focusHighlightedItems
-	* @type Array of DOM elements
-	* @private
-	*/
-	_focusHighlightedItems: [],
-	_focusedItem: null,
-	/**
-	* Sets the focus on the node element.
-	* It will only be able to set the focus on nodes that have anchor elements in it.  
-	* Toggle or branch icons have anchors and can be focused on.  
-	* If will fail in nodes that have no anchor
-	* @method focus
-	* @return {boolean} success
-	*/
-	focus: function () {
-		var focused = false, self = this;
-
-		var removeListeners = function () {
-			var el;
-			if (self._focusedItem) {
-				Event.removeListener(self._focusedItem,'blur');
-				self._focusedItem = null;
-			}
-			
-			while ((el = self._focusHighlightedItems.shift())) {  // yes, it is meant as an assignment, really
-				Dom.removeClass(el,YAHOO.widget.TreeView.FOCUS_CLASS_NAME );
-			}
-		};
-		removeListeners();
-
-		Dom.getElementsBy  ( 
-			function (el) {
-				return /ygtv(([tl][pmn]h?)|(content))/.test(el.className);
-			} ,
-			'td' , 
-			this.getEl().firstChild , 
-			function (el) {
-				Dom.addClass(el, YAHOO.widget.TreeView.FOCUS_CLASS_NAME );
-				if (!focused) { 
-					var aEl = el.getElementsByTagName('a');
-					if (aEl.length) {
-						aEl = aEl[0];
-						aEl.focus();
-						self._focusedItem = aEl;
-						Event.on(aEl,'blur',removeListeners);
-						focused = true;
-					}
-				}
-				self._focusHighlightedItems.push(el);
-			}
-		);
-		if (!focused) { removeListeners(); }
-		return focused;
-	},
-
-  /**
-     * Count of nodes in tree
-     * @method getNodeCount
-     * @return {int} number of nodes in the tree
-     */
-    getNodeCount: function() {
-		for (var i = 0, count = 0;i< this.children.length;i++) {
-			count += this.children[i].getNodeCount();
-		}
-        return count + 1;
-    },
-	
-	  /**
-     * Returns an object which could be used to build a tree out of this node and its children.
-     * It can be passed to the tree constructor to reproduce this node as a tree.
-     * It will return false if the node or any children loads dynamically, regardless of whether it is loaded or not.
-     * @method getNodeDefinition
-     * @return {Object | false}  definition of the tree or false if the node or any children is defined as dynamic
-     */
-    getNodeDefinition: function() {
-	
-		if (this.isDynamic()) { return false; }
-		
-		var def, defs = this.data, children = []; 
-		
-		
-		if (this.href) { defs.href = this.href; }
-		if (this.target != '_self') { defs.target = this.target; }
-		if (this.expanded) {defs.expanded = this.expanded; }
-		if (!this.multiExpand) { defs.multiExpand = this.multiExpand; }
-		if (!this.hasIcon) { defs.hasIcon = this.hasIcon; }
-		if (this.nowrap) { defs.nowrap = this.nowrap; }
-		defs.type = this._type;
-		
-		
-		
-		for (var i = 0; i < this.children.length;i++) {
-			def = this.children[i].getNodeDefinition();
-			if (def === false) { return false;}
-			children.push(def);
-		}
-		if (children.length) { defs.children = children; }
-		return defs;
-    },
-
-
-    /**
-     * Generates the link that will invoke this node's toggle method
-     * @method getToggleLink
-     * @return {string} the javascript url for toggling this node
-     */
-    getToggleLink: function() {
-        return 'return false;';
-    }
-
-};
-
-YAHOO.augment(YAHOO.widget.Node, YAHOO.util.EventProvider);
-})();
-(function () {
-	var Dom = YAHOO.util.Dom,
-		Lang = YAHOO.lang,
-		Event = YAHOO.util.Event;
-/**
- * The default node presentation.  The first parameter should be
- * either a string that will be used as the node's label, or an object
- * that has at least a string property called label.  By default,  clicking the
- * label will toggle the expanded/collapsed state of the node.  By
- * setting the href property of the instance, this behavior can be
- * changed so that the label will go to the specified href.
- * @namespace YAHOO.widget
- * @class TextNode
- * @extends YAHOO.widget.Node
- * @constructor
- * @param oData {object} a string or object containing the data that will
- * be used to render this node.
- * Providing a string is the same as providing an object with a single property named label.
- * All values in the oData will be used to set equally named properties in the node
- * as long as the node does have such properties, they are not undefined, private or functions.
- * All attributes are made available in noderef.data, which
- * can be used to store custom attributes.  TreeView.getNode(s)ByProperty
- * can be used to retrieve a node by one of the attributes.
- * @param oParent {YAHOO.widget.Node} this node's parent node
- * @param expanded {boolean} the initial expanded/collapsed state (deprecated; use oData.expanded) 
- */
-YAHOO.widget.TextNode = function(oData, oParent, expanded) {
-
-    if (oData) { 
-        if (Lang.isString(oData)) {
-            oData = { label: oData };
-        }
-        this.init(oData, oParent, expanded);
-        this.setUpLabel(oData);
-    }
-
-    this.logger     = new YAHOO.widget.LogWriter(this.toString());
-};
-
-YAHOO.extend(YAHOO.widget.TextNode, YAHOO.widget.Node, {
-    
-    /**
-     * The CSS class for the label href.  Defaults to ygtvlabel, but can be
-     * overridden to provide a custom presentation for a specific node.
-     * @property labelStyle
-     * @type string
-     */
-    labelStyle: "ygtvlabel",
-
-    /**
-     * The derived element id of the label for this node
-     * @property labelElId
-     * @type string
-     */
-    labelElId: null,
-
-    /**
-     * The text for the label.  It is assumed that the oData parameter will
-     * either be a string that will be used as the label, or an object that
-     * has a property called "label" that we will use.
-     * @property label
-     * @type string
-     */
-    label: null,
-
-    /**
-     * The text for the title (tooltip) for the label element
-     * @property title
-     * @type string
-     */
-    title: null,
-	
-/**
-     * The node type
-     * @property _type
-     * @private
-     * @type string
-     * @default "TextNode"
-     */
-    _type: "TextNode",
-
-
-    /**
-     * Sets up the node label
-     * @method setUpLabel
-     * @param oData string containing the label, or an object with a label property
-     */
-    setUpLabel: function(oData) { 
-        
-        if (Lang.isString(oData)) {
-            oData = { 
-                label: oData 
-            };
-        } else {
-        if (oData.style) {
-            this.labelStyle = oData.style;
-        }
-        }
-
-        this.label = oData.label;
-
-        this.labelElId = "ygtvlabelel" + this.index;
-		
-    },
-
-    /**
-     * Returns the label element
-     * @for YAHOO.widget.TextNode
-     * @method getLabelEl
-     * @return {object} the element
-     */
-    getLabelEl: function() { 
-        return Dom.get(this.labelElId);
-    },
-
-    // overrides YAHOO.widget.Node
-	getContentHtml: function() { 
-        var sb = [];
-        sb[sb.length] = this.href?'<a':'<span';
-        sb[sb.length] = ' id="' + this.labelElId + '"';
-        if (this.title) {
-            sb[sb.length] = ' title="' + this.title + '"';
-        }
-        sb[sb.length] = ' class="' + this.labelStyle  + '"';
-		if (this.href) {
-			sb[sb.length] = ' href="' + this.href + '"';
-			sb[sb.length] = ' target="' + this.target + '"';
-		} 
-        sb[sb.length] = ' >';
-        sb[sb.length] = this.label;
-        sb[sb.length] = this.href?'</a>':'</span>';
-        return sb.join("");
-    },
-
-
-
-  /**
-     * Returns an object which could be used to build a tree out of this node and its children.
-     * It can be passed to the tree constructor to reproduce this node as a tree.
-     * It will return false if the node or any descendant loads dynamically, regardless of whether it is loaded or not.
-     * @method getNodeDefinition
-     * @return {Object | false}  definition of the tree or false if this node or any descendant is defined as dynamic
-     */
-    getNodeDefinition: function() {
-		var def = YAHOO.widget.TextNode.superclass.getNodeDefinition.call(this);
-		if (def === false) { return false; }
-
-		// Node specific properties
-		def.label = this.label;
-		if (this.labelStyle != 'ygtvlabel') { def.style = this.labelStyle; }
-		if (this.title) { def.title = this.title ; }
-
-		return def;
-	
-	},
-
-    toString: function() { 
-        return YAHOO.widget.TextNode.superclass.toString.call(this) + ": " + this.label;
-    },
-
-    // deprecated
-    onLabelClick: function() {
-		return false;
-    }
-});
-})();
-/**
- * A custom YAHOO.widget.Node that handles the unique nature of 
- * the virtual, presentationless root node.
- * @namespace YAHOO.widget
- * @class RootNode
- * @extends YAHOO.widget.Node
- * @param oTree {YAHOO.widget.TreeView} The tree instance this node belongs to
- * @constructor
- */
-YAHOO.widget.RootNode = function(oTree) {
-	// Initialize the node with null params.  The root node is a
-	// special case where the node has no presentation.  So we have
-	// to alter the standard properties a bit.
-	this.init(null, null, true);
-	
-	/*
-	 * For the root node, we get the tree reference from as a param
-	 * to the constructor instead of from the parent element.
-	 */
-	this.tree = oTree;
-};
-
-YAHOO.extend(YAHOO.widget.RootNode, YAHOO.widget.Node, {
-    
-   /**
-     * The node type
-     * @property _type
-      * @type string
-     * @private
-     * @default "RootNode"
-     */
-    _type: "RootNode",
-	
-    // overrides YAHOO.widget.Node
-    getNodeHtml: function() { 
-        return ""; 
-    },
-
-    toString: function() { 
-        return this._type;
-    },
-
-    loadComplete: function() { 
-        this.tree.draw();
-    },
-	
-   /**
-     * Count of nodes in tree.  
-    * It overrides Nodes.getNodeCount because the root node should not be counted.
-     * @method getNodeCount
-     * @return {int} number of nodes in the tree
-     */
-    getNodeCount: function() {
-		for (var i = 0, count = 0;i< this.children.length;i++) {
-			count += this.children[i].getNodeCount();
-		}
-        return count;
-    },
-
-  /**
-     * Returns an object which could be used to build a tree out of this node and its children.
-     * It can be passed to the tree constructor to reproduce this node as a tree.
-     * Since the RootNode is automatically created by treeView, 
-     * its own definition is excluded from the returned node definition
-     * which only contains its children.
-     * @method getNodeDefinition
-     * @return {Object | false}  definition of the tree or false if any child node is defined as dynamic
-     */
-    getNodeDefinition: function() {
-		
-		for (var def, defs = [], i = 0; i < this.children.length;i++) {
-			def = this.children[i].getNodeDefinition();
-			if (def === false) { return false;}
-			defs.push(def);
-		}
-		return defs;
-    },
-
-    collapse: function() {},
-    expand: function() {},
-	getSiblings: function() { return null; },
-	focus: function () {}
-
-});
-(function () {
-	var Dom = YAHOO.util.Dom,
-		Lang = YAHOO.lang,
-		Event = YAHOO.util.Event;
-
-/**
- * This implementation takes either a string or object for the
- * oData argument.  If is it a string, it will use it for the display
- * of this node (and it can contain any html code).  If the parameter
- * is an object,it looks for a parameter called "html" that will be
- * used for this node's display.
- * @namespace YAHOO.widget
- * @class HTMLNode
- * @extends YAHOO.widget.Node
- * @constructor
- * @param oData {object} a string or object containing the data that will
- * be used to render this node.  
- * Providing a string is the same as providing an object with a single property named html.
- * All values in the oData will be used to set equally named properties in the node
- * as long as the node does have such properties, they are not undefined, private or functions.
- * All other attributes are made available in noderef.data, which
- * can be used to store custom attributes.  TreeView.getNode(s)ByProperty
- * can be used to retrieve a node by one of the attributes.
- * @param oParent {YAHOO.widget.Node} this node's parent node
- * @param expanded {boolean} the initial expanded/collapsed state (deprecated; use oData.expanded) 
- * @param hasIcon {boolean} specifies whether or not leaf nodes should
- * be rendered with or without a horizontal line line and/or toggle icon. If the icon
- * is not displayed, the content fills the space it would have occupied.
- * This option operates independently of the leaf node presentation logic
- * for dynamic nodes.
- * (deprecated; use oData.hasIcon) 
- */
-YAHOO.widget.HTMLNode = function(oData, oParent, expanded, hasIcon) {
-    if (oData) { 
-        this.init(oData, oParent, expanded);
-        this.initContent(oData, hasIcon);
-    }
-};
-
-YAHOO.extend(YAHOO.widget.HTMLNode, YAHOO.widget.Node, {
-
-    /**
-     * The CSS class for the html content container.  Defaults to ygtvhtml, but 
-     * can be overridden to provide a custom presentation for a specific node.
-     * @property contentStyle
-     * @type string
-     */
-    contentStyle: "ygtvhtml",
-
-
-    /**
-     * The HTML content to use for this node's display
-     * @property html
-     * @type string
-     */
-    html: null,
-	
-/**
-     * The node type
-     * @property _type
-     * @private
-     * @type string
-     * @default "HTMLNode"
-     */
-    _type: "HTMLNode",
-
-    /**
-     * Sets up the node label
-     * @property initContent
-     * @param oData {object} An html string or object containing an html property
-     * @param hasIcon {boolean} determines if the node will be rendered with an
-     * icon or not
-     */
-    initContent: function(oData, hasIcon) { 
-        this.setHtml(oData);
-        this.contentElId = "ygtvcontentel" + this.index;
-		if (!Lang.isUndefined(hasIcon)) { this.hasIcon  = hasIcon; }
-		
-        this.logger = new YAHOO.widget.LogWriter(this.toString());
-    },
-
-    /**
-     * Synchronizes the node.data, node.html, and the node's content
-     * @property setHtml
-     * @param o {object} An html string or object containing an html property
-     */
-    setHtml: function(o) {
-
-        this.data = o;
-        this.html = (typeof o === "string") ? o : o.html;
-
-        var el = this.getContentEl();
-        if (el) {
-            el.innerHTML = this.html;
-        }
-
-    },
-
-    // overrides YAHOO.widget.Node
-    getContentHtml: function() { 
-        return this.html;
-    },
-	
-	  /**
-     * Returns an object which could be used to build a tree out of this node and its children.
-     * It can be passed to the tree constructor to reproduce this node as a tree.
-     * It will return false if any node loads dynamically, regardless of whether it is loaded or not.
-     * @method getNodeDefinition
-     * @return {Object | false}  definition of the tree or false if any node is defined as dynamic
-     */
-    getNodeDefinition: function() {
-		var def = YAHOO.widget.HTMLNode.superclass.getNodeDefinition.call(this);
-		if (def === false) { return false; }
-		def.html = this.html;
-		return def;
-	
-	}
-});
-})();
-/**
- * A menu-specific implementation that differs from TextNode in that only 
- * one sibling can be expanded at a time.
- * @namespace YAHOO.widget
- * @class MenuNode
- * @extends YAHOO.widget.TextNode
- * @param oData {object} a string or object containing the data that will
- * be used to render this node.
- * Providing a string is the same as providing an object with a single property named label.
- * All values in the oData will be used to set equally named properties in the node
- * as long as the node does have such properties, they are not undefined, private or functions.
- * All attributes are made available in noderef.data, which
- * can be used to store custom attributes.  TreeView.getNode(s)ByProperty
- * can be used to retrieve a node by one of the attributes.
- * @param oParent {YAHOO.widget.Node} this node's parent node
- * @param expanded {boolean} the initial expanded/collapsed state (deprecated; use oData.expanded) 
- * @constructor
- */
-YAHOO.widget.MenuNode = function(oData, oParent, expanded) {
-	YAHOO.widget.MenuNode.superclass.constructor.call(this,oData,oParent,expanded);
-
-   /*
-     * Menus usually allow only one branch to be open at a time.
-     */
-	this.multiExpand = false;
-
-};
-
-YAHOO.extend(YAHOO.widget.MenuNode, YAHOO.widget.TextNode, {
-
-    /**
-     * The node type
-     * @property _type
-     * @private
-    * @default "MenuNode"
-     */
-    _type: "MenuNode"
-
-});
-(function () {
-	var Dom = YAHOO.util.Dom,
-		Lang = YAHOO.lang,
-		Event = YAHOO.util.Event,
-		Calendar = YAHOO.widget.Calendar;
-		
-/**
- * A Date-specific implementation that differs from TextNode in that it uses 
- * YAHOO.widget.Calendar as an in-line editor, if available
- * If Calendar is not available, it behaves as a plain TextNode.
- * @namespace YAHOO.widget
- * @class DateNode
- * @extends YAHOO.widget.TextNode
- * @param oData {object} a string or object containing the data that will
- * be used to render this node.
- * Providing a string is the same as providing an object with a single property named label.
- * All values in the oData will be used to set equally named properties in the node
- * as long as the node does have such properties, they are not undefined, private nor functions.
- * All attributes are made available in noderef.data, which
- * can be used to store custom attributes.  TreeView.getNode(s)ByProperty
- * can be used to retrieve a node by one of the attributes.
- * @param oParent {YAHOO.widget.Node} this node's parent node
- * @param expanded {boolean} the initial expanded/collapsed state (deprecated; use oData.expanded) 
- * @constructor
- */
-YAHOO.widget.DateNode = function(oData, oParent, expanded) {
-	YAHOO.widget.DateNode.superclass.constructor.call(this,oData, oParent, expanded);
-};
-
-YAHOO.extend(YAHOO.widget.DateNode, YAHOO.widget.TextNode, {
-
-    /**
-     * The node type
-     * @property _type
-     * @type string
-     * @private
-     * @default  "DateNode"
-     */
-    _type: "DateNode",
-	
-	/**
-	* Configuration object for the Calendar editor, if used.
-	* See <a href="http://developer.yahoo.com/yui/calendar/#internationalization">http://developer.yahoo.com/yui/calendar/#internationalization</a>
-	* @property calendarConfig
-	*/
-	calendarConfig: null,
-	
-	
-	
-	/** 
-	 *  If YAHOO.widget.Calendar is available, it will pop up a Calendar to enter a new date.  Otherwise, it falls back to a plain &lt;input&gt;  textbox
-	 * @method fillEditorContainer
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 * @return void
-	 */
-	fillEditorContainer: function (editorData) {
-	
-		var cal, container = editorData.inputContainer;
-		
-		if (Lang.isUndefined(Calendar)) {
-			Dom.replaceClass(editorData.editorPanel,'ygtv-edit-DateNode','ygtv-edit-TextNode');
-			YAHOO.widget.DateNode.superclass.fillEditorContainer.call(this, editorData);
-			return;
-		}
-			
-		if (editorData.nodeType != this._type) {
-			editorData.nodeType = this._type;
-			editorData.saveOnEnter = false;
-			
-			editorData.node.destroyEditorContents(editorData);
-
-			editorData.inputObject = cal = new Calendar(container.appendChild(document.createElement('div')));
-			if (this.calendarConfig) { 
-				cal.cfg.applyConfig(this.calendarConfig,true); 
-				cal.cfg.fireQueue();
-			}
-			cal.selectEvent.subscribe(function () {
-				this.tree._closeEditor(true);
-			},this,true);
-		} else {
-			cal = editorData.inputObject;
-		}
-
-		cal.cfg.setProperty("selected",this.label, false); 
-
-		var delim = cal.cfg.getProperty('DATE_FIELD_DELIMITER');
-		var pageDate = this.label.split(delim);
-		cal.cfg.setProperty('pagedate',pageDate[cal.cfg.getProperty('MDY_MONTH_POSITION') -1] + delim + pageDate[cal.cfg.getProperty('MDY_YEAR_POSITION') -1]);
-		cal.cfg.fireQueue();
-
-		cal.render();
-		cal.oDomContainer.focus();
-	},
-	/**
-	* Saves the date entered in the editor into the DateNode label property and displays it.
-	* Overrides Node.saveEditorValue
-	* @method saveEditorValue
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 */
-	saveEditorValue: function (editorData) {
-		var node = editorData.node, value;
-		if (Lang.isUndefined(Calendar)) {
-			value = editorData.inputElement.value;
-		} else {
-			var cal = editorData.inputObject,
-				date = cal.getSelectedDates()[0],
-				dd = [];
-				
-			dd[cal.cfg.getProperty('MDY_DAY_POSITION') -1] = date.getDate();
-			dd[cal.cfg.getProperty('MDY_MONTH_POSITION') -1] = date.getMonth() + 1;
-			dd[cal.cfg.getProperty('MDY_YEAR_POSITION') -1] = date.getFullYear();
-			value = dd.join(cal.cfg.getProperty('DATE_FIELD_DELIMITER'));
-		}
-
-		node.label = value;
-		node.data.label = value;
-		node.getLabelEl().innerHTML = value;
-	}
-
-});
-})();
-(function () {
-	var Dom = YAHOO.util.Dom,
-		Lang = YAHOO.lang, 
-		Event = YAHOO.util.Event,
-		TV = YAHOO.widget.TreeView,
-		TVproto = TV.prototype;
-
-	/**
-	 * An object to store information used for in-line editing
-	 * for all Nodes of all TreeViews. It contains:
-	 * <ul>
-	* <li>active {boolean}, whether there is an active cell editor </li>
-	* <li>whoHasIt {YAHOO.widget.TreeView} TreeView instance that is currently using the editor</li>
-	* <li>nodeType {string} value of static Node._type property, allows reuse of input element if node is of the same type.</li>
-	* <li>editorPanel {HTMLelement (&lt;div&gt;)} element holding the in-line editor</li>
-	* <li>inputContainer {HTMLelement (&lt;div&gt;)} element which will hold the type-specific input element(s) to be filled by the fillEditorContainer method</li>
-	* <li>buttonsContainer {HTMLelement (&lt;div&gt;)} element which holds the &lt;button&gt; elements for Ok/Cancel.  If you don't want any of the buttons, hide it via CSS styles, don't destroy it</li>
-	* <li>node {YAHOO.widget.Node} reference to the Node being edited</li>
-	* <li>saveOnEnter {boolean}, whether the Enter key should be accepted as a Save command (Esc. is always taken as Cancel), disable for multi-line input elements </li>
-	* </ul>
-	*  Editors are free to use this object to store additional data.
-	 * @property editorData
-	 * @static
-	 * @for YAHOO.widget.TreeView
-	 */
-	TV.editorData = {
-		active:false,
-		whoHasIt:null, // which TreeView has it
-		nodeType:null,
-		editorPanel:null,
-		inputContainer:null,
-		buttonsContainer:null,
-		node:null, // which Node is being edited
-		saveOnEnter:true
-		// Each node type is free to add its own properties to this as it sees fit.
-	};
-	
-	/**
-	* Entry point of the editing plug-in.  
-	* TreeView will call this method if it exists when a node label is clicked
-	* @method _nodeEditing
-	* @param node {YAHOO.widget.Node} the node to be edited
-	* @return {Boolean} true to indicate that the node is editable and prevent any further bubbling of the click.
-	 * @for YAHOO.widget.TreeView
-	*/
-	
-	
-	TVproto._nodeEditing = function (node) {
-		if (node.fillEditorContainer && node.editable) {
-			var ed, topLeft, buttons, button, editorData = TV.editorData;
-			editorData.active = true;
-			editorData.whoHasIt = this;
-			if (!editorData.nodeType) {
-				editorData.editorPanel = ed = document.body.appendChild(document.createElement('div'));
-				Dom.addClass(ed,'ygtv-label-editor');
-
-				buttons = editorData.buttonsContainer = ed.appendChild(document.createElement('div'));
-				Dom.addClass(buttons,'ygtv-button-container');
-				button = buttons.appendChild(document.createElement('button'));
-				Dom.addClass(button,'ygtvok');
-				button.innerHTML = ' ';
-				button = buttons.appendChild(document.createElement('button'));
-				Dom.addClass(button,'ygtvcancel');
-				button.innerHTML = ' ';
-				Event.on(buttons, 'click', function (ev) {
-					this.logger.log('click on editor');
-					var target = Event.getTarget(ev);
-					var node = TV.editorData.node;
-					if (Dom.hasClass(target,'ygtvok')) {
-						node.logger.log('ygtvok');
-						Event.stopEvent(ev);
-						this._closeEditor(true);
-					}
-					if (Dom.hasClass(target,'ygtvcancel')) {
-						node.logger.log('ygtvcancel');
-						Event.stopEvent(ev);
-						this._closeEditor(false);
-					}
-				}, this, true);
-
-				editorData.inputContainer = ed.appendChild(document.createElement('div'));
-				Dom.addClass(editorData.inputContainer,'ygtv-input');
-				
-				Event.on(ed,'keydown',function (ev) {
-					var editorData = TV.editorData,
-						KEY = YAHOO.util.KeyListener.KEY;
-					switch (ev.keyCode) {
-						case KEY.ENTER:
-							this.logger.log('ENTER');
-							Event.stopEvent(ev);
-							if (editorData.saveOnEnter) { 
-								this._closeEditor(true);
-							}
-							break;
-						case KEY.ESCAPE:
-							this.logger.log('ESC');
-							Event.stopEvent(ev);
-							this._closeEditor(false);
-							break;
-					}
-				},this,true);
-
-
-				
-			} else {
-				ed = editorData.editorPanel;
-			}
-			editorData.node = node;
-			if (editorData.nodeType) {
-				Dom.removeClass(ed,'ygtv-edit-' + editorData.nodeType);
-			}
-			Dom.addClass(ed,' ygtv-edit-' + node._type);
-			topLeft = Dom.getXY(node.getContentEl());
-			Dom.setStyle(ed,'left',topLeft[0] + 'px');
-			Dom.setStyle(ed,'top',topLeft[1] + 'px');
-			Dom.setStyle(ed,'display','block');
-			ed.focus();
-			node.fillEditorContainer(editorData);
-
-			return true;  // If inline editor available, don't do anything else.
-		}
-	};
-	
-	/**
-	* Method to be associated with an event (clickEvent, dblClickEvent or enterKeyPressed) to pop up the contents editor
-	*  It calls the corresponding node editNode method.
-	* @method onEventEditNode
-	* @param oArgs {object} Object passed as arguments to TreeView event listeners
-	 * @for YAHOO.widget.TreeView
-	*/
-
-	TVproto.onEventEditNode = function (oArgs) {
-		if (oArgs instanceof YAHOO.widget.Node) {
-			oArgs.editNode();
-		} else if (oArgs.node instanceof YAHOO.widget.Node) {
-			oArgs.node.editNode();
-		}
-	};
-	
-	/**
-	* Method to be called when the inline editing is finished and the editor is to be closed
-	* @method _closeEditor
-	* @param save {Boolean} true if the edited value is to be saved, false if discarded
-	* @private
-	 * @for YAHOO.widget.TreeView
-	*/
-	
-	TVproto._closeEditor = function (save) {
-		var ed = TV.editorData, 
-			node = ed.node;
-		if (save) { 
-			ed.node.saveEditorValue(ed); 
-		}
-		Dom.setStyle(ed.editorPanel,'display','none');	
-		ed.active = false;
-		node.focus();
-	};
-	
-	/**
-	*  Entry point for TreeView's destroy method to destroy whatever the editing plug-in has created
-	* @method _destroyEditor
-	* @private
-	 * @for YAHOO.widget.TreeView
-	*/
-	TVproto._destroyEditor = function() {
-		var ed = TV.editorData;
-		if (ed && ed.nodeType && (!ed.active || ed.whoHasIt === this)) {
-			Event.removeListener(ed.editorPanel,'keydown');
-			Event.removeListener(ed.buttonContainer,'click');
-			ed.node.destroyEditorContents(ed);
-			document.body.removeChild(ed.editorPanel);
-			ed.nodeType = ed.editorPanel = ed.inputContainer = ed.buttonsContainer = ed.whoHasIt = ed.node = null;
-			ed.active = false;
-		}
-	};
-	
-	var Nproto = YAHOO.widget.Node.prototype;
-	
-	/**
-	* Signals if the label is editable.  (Ignored on TextNodes with href set.)
-	* @property editable
-	* @type boolean
-         * @for YAHOO.widget.Node
-	*/
-	Nproto.editable = false;
-	
-	/**
-	* pops up the contents editor, if there is one and the node is declared editable
-	* @method editNode
-	 * @for YAHOO.widget.Node
-	*/
-	
-	Nproto.editNode = function () {
-		this.tree._nodeEditing(this);
-	};
-	
-	
-
-
-	/** Placeholder for a function that should provide the inline node label editor.
-	 *   Leaving it set to null will indicate that this node type is not editable.
-	 * It should be overridden by nodes that provide inline editing.
-	 *  The Node-specific editing element (input box, textarea or whatever) should be inserted into editorData.inputContainer.
-	 * @method fillEditorContainer
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 * @return void
-	 * @for YAHOO.widget.Node
-	 */
-	Nproto.fillEditorContainer = null;
-
-	
-	/**
-	* Node-specific destroy function to empty the contents of the inline editor panel
-	* This function is the worst case alternative that will purge all possible events and remove the editor contents
-	* Method Event.purgeElement is somewhat costly so if it can be replaced by specifc Event.removeListeners, it is better to do so.
-	* @method destroyEditorContents
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 * @for YAHOO.widget.Node
-	 */
-	Nproto.destroyEditorContents = function (editorData) {
-		// In the worst case, if the input editor (such as the Calendar) has no destroy method
-		// we can only try to remove all possible events on it.
-		Event.purgeElement(editorData.inputContainer,true);
-		editorData.inputContainer.innerHTML = '';
-	};
-
-	/**
-	* Saves the value entered into the editor.
-	* Should be overridden by each node type
-	* @method saveEditorValue
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 * @for YAHOO.widget.Node
-	 */
-	Nproto.saveEditorValue = function (editorData) {
-	};
-	
-	var TNproto = YAHOO.widget.TextNode.prototype;
-	
-
-
-	/** 
-	 *  Places an &lt;input&gt;  textbox in the input container and loads the label text into it
-	 * @method fillEditorContainer
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 * @return void
-	 * @for YAHOO.widget.TextNode
-	 */
-	TNproto.fillEditorContainer = function (editorData) {
-	
-		var input;
-		// If last node edited is not of the same type as this one, delete it and fill it with our editor
-		if (editorData.nodeType != this._type) {
-			editorData.nodeType = this._type;
-			editorData.saveOnEnter = true;
-			editorData.node.destroyEditorContents(editorData);
-
-			editorData.inputElement = input = editorData.inputContainer.appendChild(document.createElement('input'));
-			
-		} else {
-			// if the last node edited was of the same time, reuse the input element.
-			input = editorData.inputElement;
-		}
-
-		input.value = this.label;
-		input.focus();
-		input.select();
-	};
-	
-	/**
-	* Saves the value entered in the editor into the TextNode label property and displays it
-	* Overrides Node.saveEditorValue
-	* @method saveEditorValue
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 * @for YAHOO.widget.TextNode
-	 */
-	TNproto.saveEditorValue = function (editorData) {
-		var node = editorData.node, value = editorData.inputElement.value;
-		node.label = value;
-		node.data.label = value;
-		node.getLabelEl().innerHTML = value;
-	};
-
-	/**
-	* Destroys the contents of the inline editor panel
-	* Overrides Node.destroyEditorContent
-	* Since we didn't set any event listeners on this inline editor, it is more efficient to avoid the generic method in Node
-	* @method destroyEditorContents
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 * @for YAHOO.widget.TextNode
-	 */
-	TNproto.destroyEditorContents = function (editorData) {
-		editorData.inputContainer.innerHTML = '';
-	};
-})();
-/**
- * A static factory class for tree view expand/collapse animations
- * @class TVAnim
- * @static
- */
-YAHOO.widget.TVAnim = function() {
-    return {
-        /**
-         * Constant for the fade in animation
-         * @property FADE_IN
-         * @type string
-         * @static
-         */
-        FADE_IN: "TVFadeIn",
-
-        /**
-         * Constant for the fade out animation
-         * @property FADE_OUT
-         * @type string
-         * @static
-         */
-        FADE_OUT: "TVFadeOut",
-
-        /**
-         * Returns a ygAnim instance of the given type
-         * @method getAnim
-         * @param type {string} the type of animation
-         * @param el {HTMLElement} the element to element (probably the children div)
-         * @param callback {function} function to invoke when the animation is done.
-         * @return {YAHOO.util.Animation} the animation instance
-         * @static
-         */
-        getAnim: function(type, el, callback) {
-            if (YAHOO.widget[type]) {
-                return new YAHOO.widget[type](el, callback);
-            } else {
-                return null;
-            }
-        },
-
-        /**
-         * Returns true if the specified animation class is available
-         * @method isValid
-         * @param type {string} the type of animation
-         * @return {boolean} true if valid, false if not
-         * @static
-         */
-        isValid: function(type) {
-            return (YAHOO.widget[type]);
-        }
-    };
-} ();
-/**
- * A 1/2 second fade-in animation.
- * @class TVFadeIn
- * @constructor
- * @param el {HTMLElement} the element to animate
- * @param callback {function} function to invoke when the animation is finished
- */
-YAHOO.widget.TVFadeIn = function(el, callback) {
-    /**
-     * The element to animate
-     * @property el
-     * @type HTMLElement
-     */
-    this.el = el;
-
-    /**
-     * the callback to invoke when the animation is complete
-     * @property callback
-     * @type function
-     */
-    this.callback = callback;
-
-    this.logger = new YAHOO.widget.LogWriter(this.toString());
-};
-
-YAHOO.widget.TVFadeIn.prototype = {
-    /**
-     * Performs the animation
-     * @method animate
-     */
-    animate: function() {
-        var tvanim = this;
-
-        var s = this.el.style;
-        s.opacity = 0.1;
-        s.filter = "alpha(opacity=10)";
-        s.display = "";
-
-        var dur = 0.4; 
-        var a = new YAHOO.util.Anim(this.el, {opacity: {from: 0.1, to: 1, unit:""}}, dur);
-        a.onComplete.subscribe( function() { tvanim.onComplete(); } );
-        a.animate();
-    },
-
-    /**
-     * Clean up and invoke callback
-     * @method onComplete
-     */
-    onComplete: function() {
-        this.callback();
-    },
-
-    /**
-     * toString
-     * @method toString
-     * @return {string} the string representation of the instance
-     */
-    toString: function() {
-        return "TVFadeIn";
-    }
-};
-/**
- * A 1/2 second fade out animation.
- * @class TVFadeOut
- * @constructor
- * @param el {HTMLElement} the element to animate
- * @param callback {Function} function to invoke when the animation is finished
- */
-YAHOO.widget.TVFadeOut = function(el, callback) {
-    /**
-     * The element to animate
-     * @property el
-     * @type HTMLElement
-     */
-    this.el = el;
-
-    /**
-     * the callback to invoke when the animation is complete
-     * @property callback
-     * @type function
-     */
-    this.callback = callback;
-
-    this.logger = new YAHOO.widget.LogWriter(this.toString());
-};
-
-YAHOO.widget.TVFadeOut.prototype = {
-    /**
-     * Performs the animation
-     * @method animate
-     */
-    animate: function() {
-        var tvanim = this;
-        var dur = 0.4;
-        var a = new YAHOO.util.Anim(this.el, {opacity: {from: 1, to: 0.1, unit:""}}, dur);
-        a.onComplete.subscribe( function() { tvanim.onComplete(); } );
-        a.animate();
-    },
-
-    /**
-     * Clean up and invoke callback
-     * @method onComplete
-     */
-    onComplete: function() {
-        var s = this.el.style;
-        s.display = "none";
-        // s.opacity = 1;
-        s.filter = "alpha(opacity=100)";
-        this.callback();
-    },
-
-    /**
-     * toString
-     * @method toString
-     * @return {string} the string representation of the instance
-     */
-    toString: function() {
-        return "TVFadeOut";
-    }
-};
-YAHOO.register("treeview", YAHOO.widget.TreeView, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/treeview-min.js b/eclipse.org-common/yui/2.6.0/build/treeview/treeview-min.js
deleted file mode 100644
index e7e3efd..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/treeview-min.js
+++ /dev/null
@@ -1,11 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function(){var D=YAHOO.util.Dom,B=YAHOO.util.Event,F=YAHOO.lang,E=YAHOO.widget;YAHOO.widget.TreeView=function(H,G){if(H){this.init(H);}if(G){if(!F.isArray(G)){G=[G];}this.buildTreeFromObject(G);}else{if(F.trim(this._el.innerHTML)){this.buildTreeFromMarkup(H);}}};var C=E.TreeView;C.prototype={id:null,_el:null,_nodes:null,locked:false,_expandAnim:null,_collapseAnim:null,_animCount:0,maxAnim:2,_hasDblClickSubscriber:false,_dblClickTimer:null,setExpandAnim:function(G){this._expandAnim=(E.TVAnim.isValid(G))?G:null;},setCollapseAnim:function(G){this._collapseAnim=(E.TVAnim.isValid(G))?G:null;},animateExpand:function(I,J){if(this._expandAnim&&this._animCount<this.maxAnim){var G=this;var H=E.TVAnim.getAnim(this._expandAnim,I,function(){G.expandComplete(J);});if(H){++this._animCount;this.fireEvent("animStart",{"node":J,"type":"expand"});H.animate();}return true;}return false;},animateCollapse:function(I,J){if(this._collapseAnim&&this._animCount<this.maxAnim){var G=this;var H=E.TVAnim.getAnim(this._collapseAnim,I,function(){G.collapseComplete(J);});if(H){++this._animCount;this.fireEvent("animStart",{"node":J,"type":"collapse"});H.animate();}return true;}return false;},expandComplete:function(G){--this._animCount;this.fireEvent("animComplete",{"node":G,"type":"expand"});},collapseComplete:function(G){--this._animCount;this.fireEvent("animComplete",{"node":G,"type":"collapse"});},init:function(I){this._el=D.get(I);this.id=D.generateId(this._el,"yui-tv-auto-id-");this.createEvent("animStart",this);this.createEvent("animComplete",this);this.createEvent("collapse",this);this.createEvent("collapseComplete",this);this.createEvent("expand",this);this.createEvent("expandComplete",this);this.createEvent("enterKeyPressed",this);this.createEvent("clickEvent",this);var G=this;this.createEvent("dblClickEvent",{scope:this,onSubscribeCallback:function(){G._hasDblClickSubscriber=true;}});this.createEvent("labelClick",this);this._nodes=[];C.trees[this.id]=this;this.root=new E.RootNode(this);var H=E.LogWriter;},buildTreeFromObject:function(G){var H=function(P,M){var L,Q,K,J,O,I,N;for(L=0;L<M.length;L++){Q=M[L];if(F.isString(Q)){K=new E.TextNode(Q,P);}else{if(F.isObject(Q)){J=Q.children;delete Q.children;O=Q.type||"text";delete Q.type;switch(O.toLowerCase()){case"text":K=new E.TextNode(Q,P);break;case"menu":K=new E.MenuNode(Q,P);break;case"html":K=new E.HTMLNode(Q,P);break;default:I=E[O];if(F.isObject(I)){for(N=I;N&&N!==E.Node;N=N.superclass.constructor){}if(N){K=new I(Q,P);}else{}}else{}}if(J){H(K,J);}}else{}}}};H(this.root,G);},buildTreeFromMarkup:function(I){var H=function(L,J){var K,M,O,N;for(K=D.getFirstChild(J);K;K=D.getNextSibling(K)){if(K.nodeType==1){switch(K.tagName.toUpperCase()){case"LI":for(O=K.firstChild;O;O=O.nextSibling){if(O.nodeType==3){N=F.trim(O.nodeValue);if(N.length){M=new E.TextNode(N,L,false);}}else{switch(O.tagName.toUpperCase()){case"UL":case"OL":H(M,O);break;case"A":M=new E.TextNode({label:O.innerHTML,href:O.href,target:O.target,title:O.title||O.alt},L,false);break;default:M=new E.HTMLNode(O.parentNode.innerHTML,L,false,true);break;}}}break;case"UL":case"OL":H(M,K);break;}}}};var G=D.getChildrenBy(D.get(I),function(K){var J=K.tagName.toUpperCase();return J=="UL"||J=="OL";});if(G.length){H(this.root,G[0]);}else{}},render:function(){var G=this.root.getHtml();this.getEl().innerHTML=G;var H=function(I){var J=B.getTarget(I);if(J.tagName.toUpperCase()!="TD"){J=D.getAncestorByTagName(J,"td");}if(F.isNull(J)){return null;}if(J.className.length===0){J=J.previousSibling;if(F.isNull(J)){return null;}}return J;};if(!this._hasEvents){B.on(this.getEl(),"click",function(M){var J=this,K=B.getTarget(M),L=this.getNodeByElement(K);if(!L){return ;}var I=function(){if(L.expanded){L.collapse();}else{L.expand();}L.focus();};if(D.hasClass(K,L.labelStyle)||D.getAncestorByClassName(K,L.labelStyle)){this.fireEvent("labelClick",L);}while(K&&!D.hasClass(K.parentNode,"ygtvrow")&&!/ygtv[tl][mp]h?h?/.test(K.className)){K=D.getAncestorByTagName(K,"td");}if(K){if(/ygtv(blank)?depthcell/.test(K.className)){return ;}if(/ygtv[tl][mp]h?h?/.test(K.className)){I();}else{if(this._dblClickTimer){window.clearTimeout(this._dblClickTimer);this._dblClickTimer=null;}else{if(this._hasDblClickSubscriber){this._dblClickTimer=window.setTimeout(function(){J._dblClickTimer=null;if(J.fireEvent("clickEvent",{event:M,node:L})!==false){I();}},200);}else{if(J.fireEvent("clickEvent",{event:M,node:L})!==false){I();}}}}}},this,true);B.on(this.getEl(),"dblclick",function(J){if(!this._hasDblClickSubscriber){return ;}var I=B.getTarget(J);while(!D.hasClass(I.parentNode,"ygtvrow")){I=D.getAncestorByTagName(I,"td");}if(/ygtv(blank)?depthcell/.test(I.className)){return ;}if(!(/ygtv[tl][mp]h?h?/.test(I.className))){this.fireEvent("dblClickEvent",{event:J,node:this.getNodeByElement(I)});if(this._dblClickTimer){window.clearTimeout(this._dblClickTimer);this._dblClickTimer=null;}}},this,true);B.on(this.getEl(),"mouseover",function(I){var J=H(I);if(J){J.className=J.className.replace(/ygtv([lt])([mp])/gi,"ygtv$1$2h").replace(/h+/,"h");}});B.on(this.getEl(),"mouseout",function(I){var J=H(I);if(J){J.className=J.className.replace(/ygtv([lt])([mp])h/gi,"ygtv$1$2");}});B.on(this.getEl(),"keydown",function(L){var M=B.getTarget(L),K=this.getNodeByElement(M),J=K,I=YAHOO.util.KeyListener.KEY;switch(L.keyCode){case I.UP:do{if(J.previousSibling){J=J.previousSibling;}else{J=J.parent;}}while(J&&!J.focus());if(!J){K.focus();}B.preventDefault(L);break;case I.DOWN:do{if(J.nextSibling){J=J.nextSibling;}else{J.expand();J=(J.children.length||null)&&J.children[0];}}while(J&&!J.focus());if(!J){K.focus();}B.preventDefault(L);break;case I.LEFT:do{if(J.parent){J=J.parent;}else{J=J.previousSibling;}}while(J&&!J.focus());if(!J){K.focus();}B.preventDefault(L);break;case I.RIGHT:do{J.expand();if(J.children.length){J=J.children[0];}else{J=J.nextSibling;}}while(J&&!J.focus());if(!J){K.focus();}B.preventDefault(L);break;case I.ENTER:if(K.href){if(K.target){window.open(K.href,K.target);}else{window.location(K.href);
-}}else{K.toggle();}this.fireEvent("enterKeyPressed",K);B.preventDefault(L);break;case I.HOME:J=this.getRoot();if(J.children.length){J=J.children[0];}if(!J.focus()){K.focus();}B.preventDefault(L);break;case I.END:J=J.parent.children;J=J[J.length-1];if(!J.focus()){K.focus();}B.preventDefault(L);break;case 107:if(L.shiftKey){K.parent.expandAll();}else{K.expand();}break;case 109:if(L.shiftKey){K.parent.collapseAll();}else{K.collapse();}break;default:break;}},this,true);}this._hasEvents=true;},getEl:function(){if(!this._el){this._el=D.get(this.id);}return this._el;},regNode:function(G){this._nodes[G.index]=G;},getRoot:function(){return this.root;},setDynamicLoad:function(G,H){this.root.setDynamicLoad(G,H);},expandAll:function(){if(!this.locked){this.root.expandAll();}},collapseAll:function(){if(!this.locked){this.root.collapseAll();}},getNodeByIndex:function(H){var G=this._nodes[H];return(G)?G:null;},getNodeByProperty:function(I,H){for(var G in this._nodes){if(this._nodes.hasOwnProperty(G)){var J=this._nodes[G];if(J.data&&H==J.data[I]){return J;}}}return null;},getNodesByProperty:function(J,I){var G=[];for(var H in this._nodes){if(this._nodes.hasOwnProperty(H)){var K=this._nodes[H];if(K.data&&I==K.data[J]){G.push(K);}}}return(G.length)?G:null;},getNodeByElement:function(I){var J=I,G,H=/ygtv([^\d]*)(.*)/;do{if(J&&J.id){G=J.id.match(H);if(G&&G[2]){return this.getNodeByIndex(G[2]);}}J=J.parentNode;if(!J||!J.tagName){break;}}while(J.id!==this.id&&J.tagName.toLowerCase()!=="body");return null;},removeNode:function(H,G){if(H.isRoot()){return false;}var I=H.parent;if(I.parent){I=I.parent;}this._deleteNode(H);if(G&&I&&I.childrenRendered){I.refresh();}return true;},_removeChildren_animComplete:function(G){this.unsubscribe(this._removeChildren_animComplete);this.removeChildren(G.node);},removeChildren:function(G){if(G.expanded){if(this._collapseAnim){this.subscribe("animComplete",this._removeChildren_animComplete,this,true);E.Node.prototype.collapse.call(G);return ;}G.collapse();}while(G.children.length){this._deleteNode(G.children[0]);}if(G.isRoot()){E.Node.prototype.expand.call(G);}G.childrenRendered=false;G.dynamicLoadComplete=false;G.updateIcon();},_deleteNode:function(G){this.removeChildren(G);this.popNode(G);},popNode:function(J){var K=J.parent;var H=[];for(var I=0,G=K.children.length;I<G;++I){if(K.children[I]!=J){H[H.length]=K.children[I];}}K.children=H;K.childrenRendered=false;if(J.previousSibling){J.previousSibling.nextSibling=J.nextSibling;}if(J.nextSibling){J.nextSibling.previousSibling=J.previousSibling;}J.parent=null;J.previousSibling=null;J.nextSibling=null;J.tree=null;delete this._nodes[J.index];},destroy:function(){if(this._destroyEditor){this._destroyEditor();}var H=this.getEl();B.removeListener(H,"click");B.removeListener(H,"dblclick");B.removeListener(H,"mouseover");B.removeListener(H,"mouseout");B.removeListener(H,"keydown");for(var G=0;G<this._nodes.length;G++){var I=this._nodes[G];if(I&&I.destroy){I.destroy();}}H.parentNode.removeChild(H);this._hasEvents=false;},toString:function(){return"TreeView "+this.id;},getNodeCount:function(){return this.getRoot().getNodeCount();},getTreeDefinition:function(){return this.getRoot().getNodeDefinition();},onExpand:function(G){},onCollapse:function(G){}};var A=C.prototype;A.draw=A.render;YAHOO.augment(C,YAHOO.util.EventProvider);C.nodeCount=0;C.trees=[];C.getTree=function(H){var G=C.trees[H];return(G)?G:null;};C.getNode=function(H,I){var G=C.getTree(H);return(G)?G.getNodeByIndex(I):null;};C.FOCUS_CLASS_NAME="ygtvfocus";C.preload=function(L,K){K=K||"ygtv";var I=["tn","tm","tmh","tp","tph","ln","lm","lmh","lp","lph","loading"];var M=[];for(var G=1;G<I.length;G=G+1){M[M.length]='<span class="'+K+I[G]+'">&#160;</span>';}var J=document.createElement("div");var H=J.style;H.className=K+I[0];H.position="absolute";H.height="1px";H.width="1px";H.top="-1000px";H.left="-1000px";J.innerHTML=M.join("");document.body.appendChild(J);B.removeListener(window,"load",C.preload);};B.addListener(window,"load",C.preload);})();(function(){var B=YAHOO.util.Dom,C=YAHOO.lang,A=YAHOO.util.Event;YAHOO.widget.Node=function(F,E,D){if(F){this.init(F,E,D);}};YAHOO.widget.Node.prototype={index:0,children:null,tree:null,data:null,parent:null,depth:-1,href:null,target:"_self",expanded:false,multiExpand:true,renderHidden:false,childrenRendered:false,dynamicLoadComplete:false,previousSibling:null,nextSibling:null,_dynLoad:false,dataLoader:null,isLoading:false,hasIcon:true,iconMode:0,nowrap:false,isLeaf:false,contentStyle:"",contentElId:null,_type:"Node",init:function(G,F,D){this.data=G;this.children=[];this.index=YAHOO.widget.TreeView.nodeCount;++YAHOO.widget.TreeView.nodeCount;this.contentElId="ygtvcontentel"+this.index;if(C.isObject(G)){for(var E in G){if(E.charAt(0)!="_"&&G.hasOwnProperty(E)&&!C.isUndefined(this[E])&&!C.isFunction(this[E])){this[E]=G[E];}}}if(!C.isUndefined(D)){this.expanded=D;}this.createEvent("parentChange",this);if(F){F.appendChild(this);}},applyParent:function(E){if(!E){return false;}this.tree=E.tree;this.parent=E;this.depth=E.depth+1;this.tree.regNode(this);E.childrenRendered=false;for(var F=0,D=this.children.length;F<D;++F){this.children[F].applyParent(this);}this.fireEvent("parentChange");return true;},appendChild:function(E){if(this.hasChildren()){var D=this.children[this.children.length-1];D.nextSibling=E;E.previousSibling=D;}this.children[this.children.length]=E;E.applyParent(this);if(this.childrenRendered&&this.expanded){this.getChildrenEl().style.display="";}return E;},appendTo:function(D){return D.appendChild(this);},insertBefore:function(D){var F=D.parent;if(F){if(this.tree){this.tree.popNode(this);}var E=D.isChildOf(F);F.children.splice(E,0,this);if(D.previousSibling){D.previousSibling.nextSibling=this;}this.previousSibling=D.previousSibling;this.nextSibling=D;D.previousSibling=this;this.applyParent(F);}return this;},insertAfter:function(D){var F=D.parent;if(F){if(this.tree){this.tree.popNode(this);}var E=D.isChildOf(F);if(!D.nextSibling){this.nextSibling=null;
-return this.appendTo(F);}F.children.splice(E+1,0,this);D.nextSibling.previousSibling=this;this.previousSibling=D;this.nextSibling=D.nextSibling;D.nextSibling=this;this.applyParent(F);}return this;},isChildOf:function(E){if(E&&E.children){for(var F=0,D=E.children.length;F<D;++F){if(E.children[F]===this){return F;}}}return -1;},getSiblings:function(){var D=this.parent.children.slice(0);for(var E=0;E<D.length&&D[E]!=this;E++){}D.splice(E,1);if(D.length){return D;}return null;},showChildren:function(){if(!this.tree.animateExpand(this.getChildrenEl(),this)){if(this.hasChildren()){this.getChildrenEl().style.display="";}}},hideChildren:function(){if(!this.tree.animateCollapse(this.getChildrenEl(),this)){this.getChildrenEl().style.display="none";}},getElId:function(){return"ygtv"+this.index;},getChildrenElId:function(){return"ygtvc"+this.index;},getToggleElId:function(){return"ygtvt"+this.index;},getEl:function(){return B.get(this.getElId());},getChildrenEl:function(){return B.get(this.getChildrenElId());},getToggleEl:function(){return B.get(this.getToggleElId());},getContentEl:function(){return B.get(this.contentElId);},collapse:function(){if(!this.expanded){return ;}var D=this.tree.onCollapse(this);if(false===D){return ;}D=this.tree.fireEvent("collapse",this);if(false===D){return ;}if(!this.getEl()){this.expanded=false;}else{this.hideChildren();this.expanded=false;this.updateIcon();}D=this.tree.fireEvent("collapseComplete",this);},expand:function(F){if(this.expanded&&!F){return ;}var D=true;if(!F){D=this.tree.onExpand(this);if(false===D){return ;}D=this.tree.fireEvent("expand",this);}if(false===D){return ;}if(!this.getEl()){this.expanded=true;return ;}if(!this.childrenRendered){this.getChildrenEl().innerHTML=this.renderChildren();}else{}this.expanded=true;this.updateIcon();if(this.isLoading){this.expanded=false;return ;}if(!this.multiExpand){var G=this.getSiblings();for(var E=0;G&&E<G.length;++E){if(G[E]!=this&&G[E].expanded){G[E].collapse();}}}this.showChildren();D=this.tree.fireEvent("expandComplete",this);},updateIcon:function(){if(this.hasIcon){var D=this.getToggleEl();if(D){D.className=D.className.replace(/ygtv(([tl][pmn]h?)|(loading))/,this.getStyle());}}},getStyle:function(){if(this.isLoading){return"ygtvloading";}else{var E=(this.nextSibling)?"t":"l";var D="n";if(this.hasChildren(true)||(this.isDynamic()&&!this.getIconMode())){D=(this.expanded)?"m":"p";}return"ygtv"+E+D;}},getHoverStyle:function(){var D=this.getStyle();if(this.hasChildren(true)&&!this.isLoading){D+="h";}return D;},expandAll:function(){for(var D=0;D<this.children.length;++D){var E=this.children[D];if(E.isDynamic()){break;}else{if(!E.multiExpand){break;}else{E.expand();E.expandAll();}}}},collapseAll:function(){for(var D=0;D<this.children.length;++D){this.children[D].collapse();this.children[D].collapseAll();}},setDynamicLoad:function(D,E){if(D){this.dataLoader=D;this._dynLoad=true;}else{this.dataLoader=null;this._dynLoad=false;}if(E){this.iconMode=E;}},isRoot:function(){return(this==this.tree.root);},isDynamic:function(){if(this.isLeaf){return false;}else{return(!this.isRoot()&&(this._dynLoad||this.tree.root._dynLoad));}},getIconMode:function(){return(this.iconMode||this.tree.root.iconMode);},hasChildren:function(D){if(this.isLeaf){return false;}else{return(this.children.length>0||(D&&this.isDynamic()&&!this.dynamicLoadComplete));}},toggle:function(){if(!this.tree.locked&&(this.hasChildren(true)||this.isDynamic())){if(this.expanded){this.collapse();}else{this.expand();}}},getHtml:function(){this.childrenRendered=false;var D=[];D[D.length]='<div class="ygtvitem" id="'+this.getElId()+'">';D[D.length]=this.getNodeHtml();D[D.length]=this.getChildrenHtml();D[D.length]="</div>";return D.join("");},getChildrenHtml:function(){var D=[];D[D.length]='<div class="ygtvchildren"';D[D.length]=' id="'+this.getChildrenElId()+'"';if(!this.expanded||!this.hasChildren()){D[D.length]=' style="display:none;"';}D[D.length]=">";if((this.hasChildren(true)&&this.expanded)||(this.renderHidden&&!this.isDynamic())){D[D.length]=this.renderChildren();}D[D.length]="</div>";return D.join("");},renderChildren:function(){var D=this;if(this.isDynamic()&&!this.dynamicLoadComplete){this.isLoading=true;this.tree.locked=true;if(this.dataLoader){setTimeout(function(){D.dataLoader(D,function(){D.loadComplete();});},10);}else{if(this.tree.root.dataLoader){setTimeout(function(){D.tree.root.dataLoader(D,function(){D.loadComplete();});},10);}else{return"Error: data loader not found or not specified.";}}return"";}else{return this.completeRender();}},completeRender:function(){var E=[];for(var D=0;D<this.children.length;++D){E[E.length]=this.children[D].getHtml();}this.childrenRendered=true;return E.join("");},loadComplete:function(){this.getChildrenEl().innerHTML=this.completeRender();this.dynamicLoadComplete=true;this.isLoading=false;this.expand(true);this.tree.locked=false;},getAncestor:function(E){if(E>=this.depth||E<0){return null;}var D=this.parent;while(D.depth>E){D=D.parent;}return D;},getDepthStyle:function(D){return(this.getAncestor(D).nextSibling)?"ygtvdepthcell":"ygtvblankdepthcell";},getNodeHtml:function(){var E=[];E[E.length]='<table border="0" cellpadding="0" cellspacing="0" class="ygtvdepth'+this.depth+'">';E[E.length]='<tr class="ygtvrow">';for(var D=0;D<this.depth;++D){E[E.length]='<td class="'+this.getDepthStyle(D)+'"><div class="ygtvspacer"></div></td>';}if(this.hasIcon){E[E.length]="<td";E[E.length]=' id="'+this.getToggleElId()+'"';E[E.length]=' class="'+this.getStyle()+'"';E[E.length]='><a href="#" class="ygtvspacer">&nbsp;</a></td>';}E[E.length]="<td";E[E.length]=' id="'+this.contentElId+'"';E[E.length]=' class="'+this.contentStyle+' ygtvcontent" ';E[E.length]=(this.nowrap)?' nowrap="nowrap" ':"";E[E.length]=" >";E[E.length]=this.getContentHtml();E[E.length]="</td>";E[E.length]="</tr>";E[E.length]="</table>";return E.join("");},getContentHtml:function(){return"";},refresh:function(){this.getChildrenEl().innerHTML=this.completeRender();if(this.hasIcon){var D=this.getToggleEl();
-if(D){D.className=this.getStyle();}}},toString:function(){return this._type+" ("+this.index+")";},_focusHighlightedItems:[],_focusedItem:null,focus:function(){var F=false,D=this;var E=function(){var G;if(D._focusedItem){A.removeListener(D._focusedItem,"blur");D._focusedItem=null;}while((G=D._focusHighlightedItems.shift())){B.removeClass(G,YAHOO.widget.TreeView.FOCUS_CLASS_NAME);}};E();B.getElementsBy(function(G){return/ygtv(([tl][pmn]h?)|(content))/.test(G.className);},"td",this.getEl().firstChild,function(H){B.addClass(H,YAHOO.widget.TreeView.FOCUS_CLASS_NAME);if(!F){var G=H.getElementsByTagName("a");if(G.length){G=G[0];G.focus();D._focusedItem=G;A.on(G,"blur",E);F=true;}}D._focusHighlightedItems.push(H);});if(!F){E();}return F;},getNodeCount:function(){for(var D=0,E=0;D<this.children.length;D++){E+=this.children[D].getNodeCount();}return E+1;},getNodeDefinition:function(){if(this.isDynamic()){return false;}var G,D=this.data,F=[];if(this.href){D.href=this.href;}if(this.target!="_self"){D.target=this.target;}if(this.expanded){D.expanded=this.expanded;}if(!this.multiExpand){D.multiExpand=this.multiExpand;}if(!this.hasIcon){D.hasIcon=this.hasIcon;}if(this.nowrap){D.nowrap=this.nowrap;}D.type=this._type;for(var E=0;E<this.children.length;E++){G=this.children[E].getNodeDefinition();if(G===false){return false;}F.push(G);}if(F.length){D.children=F;}return D;},getToggleLink:function(){return"return false;";}};YAHOO.augment(YAHOO.widget.Node,YAHOO.util.EventProvider);})();(function(){var B=YAHOO.util.Dom,C=YAHOO.lang,A=YAHOO.util.Event;YAHOO.widget.TextNode=function(F,E,D){if(F){if(C.isString(F)){F={label:F};}this.init(F,E,D);this.setUpLabel(F);}};YAHOO.extend(YAHOO.widget.TextNode,YAHOO.widget.Node,{labelStyle:"ygtvlabel",labelElId:null,label:null,title:null,_type:"TextNode",setUpLabel:function(D){if(C.isString(D)){D={label:D};}else{if(D.style){this.labelStyle=D.style;}}this.label=D.label;this.labelElId="ygtvlabelel"+this.index;},getLabelEl:function(){return B.get(this.labelElId);},getContentHtml:function(){var D=[];D[D.length]=this.href?"<a":"<span";D[D.length]=' id="'+this.labelElId+'"';if(this.title){D[D.length]=' title="'+this.title+'"';}D[D.length]=' class="'+this.labelStyle+'"';if(this.href){D[D.length]=' href="'+this.href+'"';D[D.length]=' target="'+this.target+'"';}D[D.length]=" >";D[D.length]=this.label;D[D.length]=this.href?"</a>":"</span>";return D.join("");},getNodeDefinition:function(){var D=YAHOO.widget.TextNode.superclass.getNodeDefinition.call(this);if(D===false){return false;}D.label=this.label;if(this.labelStyle!="ygtvlabel"){D.style=this.labelStyle;}if(this.title){D.title=this.title;}return D;},toString:function(){return YAHOO.widget.TextNode.superclass.toString.call(this)+": "+this.label;},onLabelClick:function(){return false;}});})();YAHOO.widget.RootNode=function(A){this.init(null,null,true);this.tree=A;};YAHOO.extend(YAHOO.widget.RootNode,YAHOO.widget.Node,{_type:"RootNode",getNodeHtml:function(){return"";},toString:function(){return this._type;},loadComplete:function(){this.tree.draw();},getNodeCount:function(){for(var A=0,B=0;A<this.children.length;A++){B+=this.children[A].getNodeCount();}return B;},getNodeDefinition:function(){for(var C,A=[],B=0;B<this.children.length;B++){C=this.children[B].getNodeDefinition();if(C===false){return false;}A.push(C);}return A;},collapse:function(){},expand:function(){},getSiblings:function(){return null;},focus:function(){}});(function(){var B=YAHOO.util.Dom,C=YAHOO.lang,A=YAHOO.util.Event;YAHOO.widget.HTMLNode=function(G,F,E,D){if(G){this.init(G,F,E);this.initContent(G,D);}};YAHOO.extend(YAHOO.widget.HTMLNode,YAHOO.widget.Node,{contentStyle:"ygtvhtml",html:null,_type:"HTMLNode",initContent:function(E,D){this.setHtml(E);this.contentElId="ygtvcontentel"+this.index;if(!C.isUndefined(D)){this.hasIcon=D;}},setHtml:function(E){this.data=E;this.html=(typeof E==="string")?E:E.html;var D=this.getContentEl();if(D){D.innerHTML=this.html;}},getContentHtml:function(){return this.html;},getNodeDefinition:function(){var D=YAHOO.widget.HTMLNode.superclass.getNodeDefinition.call(this);if(D===false){return false;}D.html=this.html;return D;}});})();YAHOO.widget.MenuNode=function(C,B,A){YAHOO.widget.MenuNode.superclass.constructor.call(this,C,B,A);this.multiExpand=false;};YAHOO.extend(YAHOO.widget.MenuNode,YAHOO.widget.TextNode,{_type:"MenuNode"});(function(){var B=YAHOO.util.Dom,C=YAHOO.lang,A=YAHOO.util.Event,D=YAHOO.widget.Calendar;YAHOO.widget.DateNode=function(G,F,E){YAHOO.widget.DateNode.superclass.constructor.call(this,G,F,E);};YAHOO.extend(YAHOO.widget.DateNode,YAHOO.widget.TextNode,{_type:"DateNode",calendarConfig:null,fillEditorContainer:function(G){var H,F=G.inputContainer;if(C.isUndefined(D)){B.replaceClass(G.editorPanel,"ygtv-edit-DateNode","ygtv-edit-TextNode");YAHOO.widget.DateNode.superclass.fillEditorContainer.call(this,G);return ;}if(G.nodeType!=this._type){G.nodeType=this._type;G.saveOnEnter=false;G.node.destroyEditorContents(G);G.inputObject=H=new D(F.appendChild(document.createElement("div")));if(this.calendarConfig){H.cfg.applyConfig(this.calendarConfig,true);H.cfg.fireQueue();}H.selectEvent.subscribe(function(){this.tree._closeEditor(true);},this,true);}else{H=G.inputObject;}H.cfg.setProperty("selected",this.label,false);var I=H.cfg.getProperty("DATE_FIELD_DELIMITER");var E=this.label.split(I);H.cfg.setProperty("pagedate",E[H.cfg.getProperty("MDY_MONTH_POSITION")-1]+I+E[H.cfg.getProperty("MDY_YEAR_POSITION")-1]);H.cfg.fireQueue();H.render();H.oDomContainer.focus();},saveEditorValue:function(F){var H=F.node,I;if(C.isUndefined(D)){I=F.inputElement.value;}else{var J=F.inputObject,G=J.getSelectedDates()[0],E=[];E[J.cfg.getProperty("MDY_DAY_POSITION")-1]=G.getDate();E[J.cfg.getProperty("MDY_MONTH_POSITION")-1]=G.getMonth()+1;E[J.cfg.getProperty("MDY_YEAR_POSITION")-1]=G.getFullYear();I=E.join(J.cfg.getProperty("DATE_FIELD_DELIMITER"));}H.label=I;H.data.label=I;H.getLabelEl().innerHTML=I;}});})();(function(){var E=YAHOO.util.Dom,F=YAHOO.lang,B=YAHOO.util.Event,D=YAHOO.widget.TreeView,C=D.prototype;
-D.editorData={active:false,whoHasIt:null,nodeType:null,editorPanel:null,inputContainer:null,buttonsContainer:null,node:null,saveOnEnter:true};C._nodeEditing=function(M){if(M.fillEditorContainer&&M.editable){var I,K,L,J,H=D.editorData;H.active=true;H.whoHasIt=this;if(!H.nodeType){H.editorPanel=I=document.body.appendChild(document.createElement("div"));E.addClass(I,"ygtv-label-editor");L=H.buttonsContainer=I.appendChild(document.createElement("div"));E.addClass(L,"ygtv-button-container");J=L.appendChild(document.createElement("button"));E.addClass(J,"ygtvok");J.innerHTML=" ";J=L.appendChild(document.createElement("button"));E.addClass(J,"ygtvcancel");J.innerHTML=" ";B.on(L,"click",function(O){var P=B.getTarget(O);var N=D.editorData.node;if(E.hasClass(P,"ygtvok")){B.stopEvent(O);this._closeEditor(true);}if(E.hasClass(P,"ygtvcancel")){B.stopEvent(O);this._closeEditor(false);}},this,true);H.inputContainer=I.appendChild(document.createElement("div"));E.addClass(H.inputContainer,"ygtv-input");B.on(I,"keydown",function(P){var O=D.editorData,N=YAHOO.util.KeyListener.KEY;switch(P.keyCode){case N.ENTER:B.stopEvent(P);if(O.saveOnEnter){this._closeEditor(true);}break;case N.ESCAPE:B.stopEvent(P);this._closeEditor(false);break;}},this,true);}else{I=H.editorPanel;}H.node=M;if(H.nodeType){E.removeClass(I,"ygtv-edit-"+H.nodeType);}E.addClass(I," ygtv-edit-"+M._type);K=E.getXY(M.getContentEl());E.setStyle(I,"left",K[0]+"px");E.setStyle(I,"top",K[1]+"px");E.setStyle(I,"display","block");I.focus();M.fillEditorContainer(H);return true;}};C.onEventEditNode=function(H){if(H instanceof YAHOO.widget.Node){H.editNode();}else{if(H.node instanceof YAHOO.widget.Node){H.node.editNode();}}};C._closeEditor=function(J){var H=D.editorData,I=H.node;if(J){H.node.saveEditorValue(H);}E.setStyle(H.editorPanel,"display","none");H.active=false;I.focus();};C._destroyEditor=function(){var H=D.editorData;if(H&&H.nodeType&&(!H.active||H.whoHasIt===this)){B.removeListener(H.editorPanel,"keydown");B.removeListener(H.buttonContainer,"click");H.node.destroyEditorContents(H);document.body.removeChild(H.editorPanel);H.nodeType=H.editorPanel=H.inputContainer=H.buttonsContainer=H.whoHasIt=H.node=null;H.active=false;}};var G=YAHOO.widget.Node.prototype;G.editable=false;G.editNode=function(){this.tree._nodeEditing(this);};G.fillEditorContainer=null;G.destroyEditorContents=function(H){B.purgeElement(H.inputContainer,true);H.inputContainer.innerHTML="";};G.saveEditorValue=function(H){};var A=YAHOO.widget.TextNode.prototype;A.fillEditorContainer=function(I){var H;if(I.nodeType!=this._type){I.nodeType=this._type;I.saveOnEnter=true;I.node.destroyEditorContents(I);I.inputElement=H=I.inputContainer.appendChild(document.createElement("input"));}else{H=I.inputElement;}H.value=this.label;H.focus();H.select();};A.saveEditorValue=function(H){var I=H.node,J=H.inputElement.value;I.label=J;I.data.label=J;I.getLabelEl().innerHTML=J;};A.destroyEditorContents=function(H){H.inputContainer.innerHTML="";};})();YAHOO.widget.TVAnim=function(){return{FADE_IN:"TVFadeIn",FADE_OUT:"TVFadeOut",getAnim:function(B,A,C){if(YAHOO.widget[B]){return new YAHOO.widget[B](A,C);}else{return null;}},isValid:function(A){return(YAHOO.widget[A]);}};}();YAHOO.widget.TVFadeIn=function(A,B){this.el=A;this.callback=B;};YAHOO.widget.TVFadeIn.prototype={animate:function(){var D=this;var C=this.el.style;C.opacity=0.1;C.filter="alpha(opacity=10)";C.display="";var B=0.4;var A=new YAHOO.util.Anim(this.el,{opacity:{from:0.1,to:1,unit:""}},B);A.onComplete.subscribe(function(){D.onComplete();});A.animate();},onComplete:function(){this.callback();},toString:function(){return"TVFadeIn";}};YAHOO.widget.TVFadeOut=function(A,B){this.el=A;this.callback=B;};YAHOO.widget.TVFadeOut.prototype={animate:function(){var C=this;var B=0.4;var A=new YAHOO.util.Anim(this.el,{opacity:{from:1,to:0.1,unit:""}},B);A.onComplete.subscribe(function(){C.onComplete();});A.animate();},onComplete:function(){var A=this.el.style;A.display="none";A.filter="alpha(opacity=100)";this.callback();},toString:function(){return"TVFadeOut";}};YAHOO.register("treeview",YAHOO.widget.TreeView,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/treeview/treeview.js b/eclipse.org-common/yui/2.6.0/build/treeview/treeview.js
deleted file mode 100644
index 1084dcb..0000000
--- a/eclipse.org-common/yui/2.6.0/build/treeview/treeview.js
+++ /dev/null
@@ -1,3366 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-(function () {
-	var Dom = YAHOO.util.Dom,
-		Event = YAHOO.util.Event,
-		Lang = YAHOO.lang,
-		Widget = YAHOO.widget;
-
-/**
- * The treeview widget is a generic tree building tool.
- * @module treeview
- * @title TreeView Widget
- * @requires yahoo, event
- * @optional animation
- * @namespace YAHOO.widget
- */
-
-/**
- * Contains the tree view state data and the root node.
- *
- * @class TreeView
- * @uses YAHOO.util.EventProvider
- * @constructor
- * @param {string|HTMLElement} id The id of the element, or the element itself that the tree will be inserted into.  Existing markup in this element, if valid, will be used to build the tree
- * @param {Array|object|string}  oConfig (optional)  An array containing the definition of the tree.  Objects will be converted to arrays of one element.  A string will produce a single TextNode
- * 
- */
-YAHOO.widget.TreeView = function(id, oConfig) {
-    if (id) { this.init(id); }
-	if (oConfig) {
-		if (!Lang.isArray(oConfig)) {
-			oConfig = [oConfig];
-		}
-		this.buildTreeFromObject(oConfig);
-	} else if (Lang.trim(this._el.innerHTML)) {
-		this.buildTreeFromMarkup(id);
-	}
-};
-
-var TV = Widget.TreeView;
-
-TV.prototype = {
-
-    /**
-     * The id of tree container element
-     * @property id
-     * @type String
-     */
-    id: null,
-
-    /**
-     * The host element for this tree
-     * @property _el
-     * @private
-     * @type HTMLelement
-     */
-    _el: null,
-
-     /**
-     * Flat collection of all nodes in this tree.  This is a sparse
-     * array, so the length property can't be relied upon for a
-     * node count for the tree.
-     * @property _nodes
-     * @type Node[]
-     * @private
-     */
-    _nodes: null,
-
-    /**
-     * We lock the tree control while waiting for the dynamic loader to return
-     * @property locked
-     * @type boolean
-     */
-    locked: false,
-
-    /**
-     * The animation to use for expanding children, if any
-     * @property _expandAnim
-     * @type string
-     * @private
-     */
-    _expandAnim: null,
-
-    /**
-     * The animation to use for collapsing children, if any
-     * @property _collapseAnim
-     * @type string
-     * @private
-     */
-    _collapseAnim: null,
-
-    /**
-     * The current number of animations that are executing
-     * @property _animCount
-     * @type int
-     * @private
-     */
-    _animCount: 0,
-
-    /**
-     * The maximum number of animations to run at one time.
-     * @property maxAnim
-     * @type int
-     */
-    maxAnim: 2,
-
-    /**
-     * Whether there is any subscriber to dblClickEvent
-     * @property _hasDblClickSubscriber
-     * @type boolean
-     * @private
-     */
-    _hasDblClickSubscriber: false,
-	
-    /**
-     * Stores the timer used to check for double clicks
-     * @property _dblClickTimer
-     * @type window.timer object
-     * @private
-     */
-    _dblClickTimer: null,
-
-
-    /**
-     * Sets up the animation for expanding children
-     * @method setExpandAnim
-     * @param {string} type the type of animation (acceptable values defined 
-     * in YAHOO.widget.TVAnim)
-     */
-    setExpandAnim: function(type) {
-        this._expandAnim = (Widget.TVAnim.isValid(type)) ? type : null;
-    },
-
-    /**
-     * Sets up the animation for collapsing children
-     * @method setCollapseAnim
-     * @param {string} the type of animation (acceptable values defined in 
-     * YAHOO.widget.TVAnim)
-     */
-    setCollapseAnim: function(type) {
-        this._collapseAnim = (Widget.TVAnim.isValid(type)) ? type : null;
-    },
-
-    /**
-     * Perform the expand animation if configured, or just show the
-     * element if not configured or too many animations are in progress
-     * @method animateExpand
-     * @param el {HTMLElement} the element to animate
-     * @param node {YAHOO.util.Node} the node that was expanded
-     * @return {boolean} true if animation could be invoked, false otherwise
-     */
-    animateExpand: function(el, node) {
-
-        if (this._expandAnim && this._animCount < this.maxAnim) {
-            // this.locked = true;
-            var tree = this;
-            var a = Widget.TVAnim.getAnim(this._expandAnim, el, 
-                            function() { tree.expandComplete(node); });
-            if (a) { 
-                ++this._animCount;
-                this.fireEvent("animStart", {
-                        "node": node, 
-                        "type": "expand"
-                    });
-                a.animate();
-            }
-
-            return true;
-        }
-
-        return false;
-    },
-
-    /**
-     * Perform the collapse animation if configured, or just show the
-     * element if not configured or too many animations are in progress
-     * @method animateCollapse
-     * @param el {HTMLElement} the element to animate
-     * @param node {YAHOO.util.Node} the node that was expanded
-     * @return {boolean} true if animation could be invoked, false otherwise
-     */
-    animateCollapse: function(el, node) {
-
-        if (this._collapseAnim && this._animCount < this.maxAnim) {
-            // this.locked = true;
-            var tree = this;
-            var a = Widget.TVAnim.getAnim(this._collapseAnim, el, 
-                            function() { tree.collapseComplete(node); });
-            if (a) { 
-                ++this._animCount;
-                this.fireEvent("animStart", {
-                        "node": node, 
-                        "type": "collapse"
-                    });
-                a.animate();
-            }
-
-            return true;
-        }
-
-        return false;
-    },
-
-    /**
-     * Function executed when the expand animation completes
-     * @method expandComplete
-     */
-    expandComplete: function(node) {
-        --this._animCount;
-        this.fireEvent("animComplete", {
-                "node": node, 
-                "type": "expand"
-            });
-        // this.locked = false;
-    },
-
-    /**
-     * Function executed when the collapse animation completes
-     * @method collapseComplete
-     */
-    collapseComplete: function(node) {
-        --this._animCount;
-        this.fireEvent("animComplete", {
-                "node": node, 
-                "type": "collapse"
-            });
-        // this.locked = false;
-    },
-
-    /**
-     * Initializes the tree
-     * @method init
-     * @parm {string|HTMLElement} id the id of the element that will hold the tree
-     * @private
-     */
-    init: function(id) {
-		this._el = Dom.get(id);
-		this.id = Dom.generateId(this._el,"yui-tv-auto-id-");
-
-    /**
-         * When animation is enabled, this event fires when the animation
-         * starts
-         * @event animStart
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node that is expanding/collapsing
-         * @parm {String} type the type of animation ("expand" or "collapse")
-         */
-        this.createEvent("animStart", this);
-
-        /**
-         * When animation is enabled, this event fires when the animation
-         * completes
-         * @event animComplete
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node that is expanding/collapsing
-         * @parm {String} type the type of animation ("expand" or "collapse")
-         */
-        this.createEvent("animComplete", this);
-
-        /**
-         * Fires when a node is going to be collapsed.  Return false to stop
-         * the collapse.
-         * @event collapse
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node that is collapsing
-         */
-        this.createEvent("collapse", this);
-
-        /**
-         * Fires after a node is successfully collapsed.  This event will not fire
-         * if the "collapse" event was cancelled.
-         * @event collapseComplete
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node that was collapsed
-         */
-        this.createEvent("collapseComplete", this);
-
-        /**
-         * Fires when a node is going to be expanded.  Return false to stop
-         * the collapse.
-         * @event expand
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node that is expanding
-         */
-        this.createEvent("expand", this);
-
-        /**
-         * Fires after a node is successfully expanded.  This event will not fire
-         * if the "expand" event was cancelled.
-         * @event expandComplete
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node that was expanded
-         */
-        this.createEvent("expandComplete", this);
-
-    /**
-         * Fires when the Enter key is pressed on a node that has the focus
-         * @event enterKeyPressed
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node that has the focus
-         */
-        this.createEvent("enterKeyPressed", this);
-		
-    /**
-         * Fires when the label in a TextNode or MenuNode or content in an HTMLNode receives a Click.
-	* The listener may return false to cancel toggling and focusing on the node.
-         * @event clickEvent
-         * @type CustomEvent
-         * @param oArgs.event  {HTMLEvent} The event object
-         * @param oArgs.node {YAHOO.widget.Node} node the node that was clicked
-         */
-        this.createEvent("clickEvent", this);
-
-	/**
-         * Fires when the label in a TextNode or MenuNode or content in an HTMLNode receives a double Click
-         * @event dblClickEvent
-         * @type CustomEvent
-         * @param oArgs.event  {HTMLEvent} The event object
-         * @param oArgs.node {YAHOO.widget.Node} node the node that was clicked
-         */
-		var self = this;
-        this.createEvent("dblClickEvent", {
-			scope:this,
-			onSubscribeCallback: function() {
-				self._hasDblClickSubscriber = true;
-			}
-		});
-		
-	/**
-         * Custom event that is fired when the text node label is clicked. 
-         *  The node clicked is  provided as an argument
-         *
-         * @event labelClick
-         * @type CustomEvent
-         * @param {YAHOO.widget.Node} node the node clicked
-	* @deprecated use clickEvent or dblClickEvent
-         */
-		this.createEvent("labelClick", this);
-
-
-        this._nodes = [];
-
-        // store a global reference
-        TV.trees[this.id] = this;
-
-        // Set up the root node
-        this.root = new Widget.RootNode(this);
-
-        var LW = Widget.LogWriter;
-
-
-		
-        // YAHOO.util.Event.onContentReady(this.id, this.handleAvailable, this, true);
-        // YAHOO.util.Event.on(this.id, "click", this.handleClick, this, true);
-    },
-
-    //handleAvailable: function() {
-        //var Event = YAHOO.util.Event;
-        //Event.on(this.id, 
-    //},
- /**
-     * Builds the TreeView from an object.  This is the method called by the constructor to build the tree when it has a second argument.
-     * @method buildTreeFromObject
-     * @param  oConfig {Array}  array containing a full description of the tree
-     * 
-     */
-	buildTreeFromObject: function (oConfig) {
-		var build = function (parent, oConfig) {
-			var i, item, node, children, type, NodeType, ThisType;
-			for (i = 0; i < oConfig.length; i++) {
-				item = oConfig[i];
-				if (Lang.isString(item)) {
-					node = new Widget.TextNode(item, parent);
-				} else if (Lang.isObject(item)) {
-					children = item.children;
-					delete item.children;
-					type = item.type || 'text';
-					delete item.type;
-					switch (type.toLowerCase()) {
-						case 'text':
-							node = new Widget.TextNode(item, parent);
-							break;
-						case 'menu':
-							node = new Widget.MenuNode(item, parent);
-							break;
-						case 'html':
-							node = new Widget.HTMLNode(item, parent);
-							break;
-						default:
-							NodeType = Widget[type];
-							if (Lang.isObject(NodeType)) {
-								for (ThisType = NodeType; ThisType && ThisType !== Widget.Node; ThisType = ThisType.superclass.constructor) {}
-								if (ThisType) {
-									node = new NodeType(item, parent);
-								} else {
-								}
-							} else {
-							}
-					}
-					if (children) {
-						build(node,children);
-					}
-				} else {
-				}
-			}
-		};
-							
-					
-		build(this.root,oConfig);
-	},
-/**
-     * Builds the TreeView from existing markup.   Markup should consist of &lt;UL&gt; or &lt;OL&gt; elements, possibly nested.  
-     * Depending what the &lt;LI&gt; elements contain the following will be created: <ul>
-     * 	         <li>plain text:  a regular TextNode</li>
-     * 	         <li>an (un-)ordered list: a nested branch</li>
-     * 	         <li>anything else: an HTMLNode</li></ul>
-     * Only the first  outermost (un-)ordered list in the markup and its children will be parsed.
-     * Tree will be fully collapsed.
-     *  HTMLNodes have hasIcon set to true if the markup for that node has a className called hasIcon.
-     * @method buildTreeFromMarkup
-     * @param {string|HTMLElement} id the id of the element that contains the markup or a reference to it.
-     */
-	buildTreeFromMarkup: function (id) {
-		var build = function (parent,markup) {
-			var el, node, child, text;
-			for (el = Dom.getFirstChild(markup); el; el = Dom.getNextSibling(el)) {
-				if (el.nodeType == 1) {
-					switch (el.tagName.toUpperCase()) {
-						case 'LI':
-							for (child = el.firstChild; child; child = child.nextSibling) {
-								if (child.nodeType == 3) {
-									text = Lang.trim(child.nodeValue);
-									if (text.length) {
-										node = new Widget.TextNode(text, parent, false);
-									}
-								} else {
-									switch (child.tagName.toUpperCase()) {
-										case 'UL':
-										case 'OL':
-											build(node,child);
-											break;
-										case 'A':
-											node = new Widget.TextNode({
-												label:child.innerHTML,
-												href: child.href,
-												target:child.target,
-												title:child.title ||child.alt
-											},parent,false);
-											break;
-										default:
-											node = new Widget.HTMLNode(child.parentNode.innerHTML, parent, false, true);
-											break;
-									}
-								}
-							}
-							break;
-						case 'UL':
-						case 'OL':
-							build(node, el);
-							break;
-					}
-				}
-			}
-		
-		};
-		var markup = Dom.getChildrenBy(Dom.get(id),function (el) { 
-			var tag = el.tagName.toUpperCase();
-			return  tag == 'UL' || tag == 'OL';
-		});
-		if (markup.length) {
-			build(this.root, markup[0]);
-		} else {
-		}
-	},
-    /**
-     * Renders the tree boilerplate and visible nodes
-     * @method render
-     */
-    render: function() {
-        var html = this.root.getHtml();
-        this.getEl().innerHTML = html;
-		var getTarget = function (ev) {
-			var target = Event.getTarget(ev); 
-			if (target.tagName.toUpperCase() != 'TD') { target = Dom.getAncestorByTagName(target,'td'); }
-			if (Lang.isNull(target)) { return null; }
-			if (target.className.length === 0) {
-				target = target.previousSibling;
-				if (Lang.isNull(target)) { return null; }
-			}
-			return target;
-		};
-		if (!this._hasEvents) {
-			Event.on(
-				this.getEl(),
-				'click',
-				function (ev) {
-					var self = this,
-						el = Event.getTarget(ev),
-						node = this.getNodeByElement(el);
-					if (!node) { return; }
-						
-					var toggle = function () {
-						if (node.expanded) {
-							node.collapse();
-						} else {
-							node.expand();
-						}
-						node.focus();
-					};
-					
-					if (Dom.hasClass(el, node.labelStyle) || Dom.getAncestorByClassName(el,node.labelStyle)) {
-						this.fireEvent('labelClick',node);
-					}
-					while (el && !Dom.hasClass(el.parentNode,'ygtvrow') && !/ygtv[tl][mp]h?h?/.test(el.className)) {
-						el = Dom.getAncestorByTagName(el,'td');
-					}
-					if (el) {
-						// If it is a spacer cell, do nothing
-						if (/ygtv(blank)?depthcell/.test(el.className)) { return;}
-						//  If it is a toggle cell, toggle
-						if (/ygtv[tl][mp]h?h?/.test(el.className)) {
-							toggle();
-						} else {
-							if (this._dblClickTimer) {
-								window.clearTimeout(this._dblClickTimer);
-								this._dblClickTimer = null;
-							} else {
-								if (this._hasDblClickSubscriber) {
-									this._dblClickTimer = window.setTimeout(function () {
-										self._dblClickTimer = null;
-										if (self.fireEvent('clickEvent', {event:ev,node:node}) !== false) { 
-											toggle();
-										}
-									}, 200);
-								} else {
-									if (self.fireEvent('clickEvent', {event:ev,node:node}) !== false) { 
-										toggle();
-									}
-								}
-							}
-						}
-					}
-				},
-				this,
-				true
-			);
-			
-			Event.on(
-				this.getEl(),
-				'dblclick',
-				function (ev) {
-					if (!this._hasDblClickSubscriber) { return; }
-					var el = Event.getTarget(ev);
-					while (!Dom.hasClass(el.parentNode,'ygtvrow')) {
-						el = Dom.getAncestorByTagName(el,'td');
-					}
-					if (/ygtv(blank)?depthcell/.test(el.className)) { return;}
-					if (!(/ygtv[tl][mp]h?h?/.test(el.className))) {
-						this.fireEvent('dblClickEvent', {event:ev, node:this.getNodeByElement(el)}); 
-						if (this._dblClickTimer) {
-							window.clearTimeout(this._dblClickTimer);
-							this._dblClickTimer = null;
-						}
-					}
-				},
-				this,
-				true
-			);
-			Event.on(
-				this.getEl(),
-				'mouseover',
-				function (ev) {
-					var target = getTarget(ev);
-					if (target) {
-target.className = target.className.replace(/ygtv([lt])([mp])/gi, 'ygtv$1$2h').replace(/h+/, 'h');
-					}
-				}
-			);
-			Event.on(
-				this.getEl(),
-				'mouseout',
-				function (ev) {
-					var target = getTarget(ev);
-					if (target) {
-						target.className = target.className.replace(/ygtv([lt])([mp])h/gi,'ygtv$1$2');
-					}
-				}
-			);
-			Event.on(
-				this.getEl(),
-				'keydown',
-				function (ev) {
-					var target = Event.getTarget(ev),
-						node = this.getNodeByElement(target),
-						newNode = node,
-						KEY = YAHOO.util.KeyListener.KEY;
-
-					switch(ev.keyCode) {
-						case KEY.UP:
-							do {
-								if (newNode.previousSibling) {
-									newNode = newNode.previousSibling;
-								} else {
-									newNode = newNode.parent;
-								}
-							} while (newNode && !newNode.focus());
-							if (!newNode) { node.focus(); }
-							Event.preventDefault(ev);
-							break;
-						case KEY.DOWN:
-							do {
-								if (newNode.nextSibling) {
-									newNode = newNode.nextSibling;
-								} else {
-									newNode.expand();
-									newNode = (newNode.children.length || null) && newNode.children[0];
-								}
-							} while (newNode && !newNode.focus());
-							if (!newNode) { node.focus(); }
-							Event.preventDefault(ev);
-							break;
-						case KEY.LEFT:
-							do {
-								if (newNode.parent) {
-									newNode = newNode.parent;
-								} else {
-									newNode = newNode.previousSibling;
-								}
-							} while (newNode && !newNode.focus());
-							if (!newNode) { node.focus(); }
-							Event.preventDefault(ev);
-							break;
-						case KEY.RIGHT:
-							do {
-								newNode.expand();
-								if (newNode.children.length) {
-									newNode = newNode.children[0];
-								} else {
-									newNode = newNode.nextSibling;
-								}
-							} while (newNode && !newNode.focus());
-							if (!newNode) { node.focus(); }
-							Event.preventDefault(ev);
-							break;
-						case KEY.ENTER:
-							if (node.href) {
-								if (node.target) {
-									window.open(node.href,node.target);
-								} else {
-									window.location(node.href);
-								}
-							} else {
-								node.toggle();
-							}
-							this.fireEvent('enterKeyPressed',node);
-							Event.preventDefault(ev);
-							break;
-						case KEY.HOME:
-							newNode = this.getRoot();
-							if (newNode.children.length) {newNode = newNode.children[0];}
-							if (!newNode.focus()) { node.focus(); }
-							Event.preventDefault(ev);
-							break;
-						case KEY.END:
-							newNode = newNode.parent.children;
-							newNode = newNode[newNode.length -1];
-							if (!newNode.focus()) { node.focus(); }
-							Event.preventDefault(ev);
-							break;
-						// case KEY.PAGE_UP:
-							// break;
-						// case KEY.PAGE_DOWN:
-							// break;
-						case 107:  // plus key
-							if (ev.shiftKey) {
-								node.parent.expandAll();
-							} else {
-								node.expand();
-							}
-							break;
-						case 109: // minus key
-							if (ev.shiftKey) {
-								node.parent.collapseAll();
-							} else {
-								node.collapse();
-							}
-							break;
-						default:
-							break;
-					}
-				},
-				this,
-				true
-			);
-		}
-		this._hasEvents = true;
-    },
-	
-  /**
-     * Returns the tree's host element
-     * @method getEl
-     * @return {HTMLElement} the host element
-     */
-    getEl: function() {
-        if (! this._el) {
-            this._el = Dom.get(this.id);
-        }
-        return this._el;
-    },
-
-    /**
-     * Nodes register themselves with the tree instance when they are created.
-     * @method regNode
-     * @param node {Node} the node to register
-     * @private
-     */
-    regNode: function(node) {
-        this._nodes[node.index] = node;
-    },
-
-    /**
-     * Returns the root node of this tree
-     * @method getRoot
-     * @return {Node} the root node
-     */
-    getRoot: function() {
-        return this.root;
-    },
-
-    /**
-     * Configures this tree to dynamically load all child data
-     * @method setDynamicLoad
-     * @param {function} fnDataLoader the function that will be called to get the data
-     * @param iconMode {int} configures the icon that is displayed when a dynamic
-     * load node is expanded the first time without children.  By default, the 
-     * "collapse" icon will be used.  If set to 1, the leaf node icon will be
-     * displayed.
-     */
-    setDynamicLoad: function(fnDataLoader, iconMode) { 
-        this.root.setDynamicLoad(fnDataLoader, iconMode);
-    },
-
-    /**
-     * Expands all child nodes.  Note: this conflicts with the "multiExpand"
-     * node property.  If expand all is called in a tree with nodes that
-     * do not allow multiple siblings to be displayed, only the last sibling
-     * will be expanded.
-     * @method expandAll
-     */
-    expandAll: function() { 
-        if (!this.locked) {
-            this.root.expandAll(); 
-        }
-    },
-
-    /**
-     * Collapses all expanded child nodes in the entire tree.
-     * @method collapseAll
-     */
-    collapseAll: function() { 
-        if (!this.locked) {
-            this.root.collapseAll(); 
-        }
-    },
-
-    /**
-     * Returns a node in the tree that has the specified index (this index
-     * is created internally, so this function probably will only be used
-     * in html generated for a given node.)
-     * @method getNodeByIndex
-     * @param {int} nodeIndex the index of the node wanted
-     * @return {Node} the node with index=nodeIndex, null if no match
-     */
-    getNodeByIndex: function(nodeIndex) {
-        var n = this._nodes[nodeIndex];
-        return (n) ? n : null;
-    },
-
-    /**
-     * Returns a node that has a matching property and value in the data
-     * object that was passed into its constructor.
-     * @method getNodeByProperty
-     * @param {object} property the property to search (usually a string)
-     * @param {object} value the value we want to find (usuall an int or string)
-     * @return {Node} the matching node, null if no match
-     */
-    getNodeByProperty: function(property, value) {
-        for (var i in this._nodes) {
-			if (this._nodes.hasOwnProperty(i)) {
-	            var n = this._nodes[i];
-	            if (n.data && value == n.data[property]) {
-	                return n;
-	            }
-			}
-        }
-
-        return null;
-    },
-
-    /**
-     * Returns a collection of nodes that have a matching property 
-     * and value in the data object that was passed into its constructor.  
-     * @method getNodesByProperty
-     * @param {object} property the property to search (usually a string)
-     * @param {object} value the value we want to find (usuall an int or string)
-     * @return {Array} the matching collection of nodes, null if no match
-     */
-    getNodesByProperty: function(property, value) {
-        var values = [];
-        for (var i in this._nodes) {
-			if (this._nodes.hasOwnProperty(i)) {
-	            var n = this._nodes[i];
-	            if (n.data && value == n.data[property]) {
-	                values.push(n);
-	            }
-			}
-        }
-
-        return (values.length) ? values : null;
-    },
-
-    /**
-     * Returns the treeview node reference for an anscestor element
-     * of the node, or null if it is not contained within any node
-     * in this tree.
-     * @method getNodeByElement
-     * @param {HTMLElement} the element to test
-     * @return {YAHOO.widget.Node} a node reference or null
-     */
-    getNodeByElement: function(el) {
-
-        var p=el, m, re=/ygtv([^\d]*)(.*)/;
-
-        do {
-
-            if (p && p.id) {
-                m = p.id.match(re);
-                if (m && m[2]) {
-                    return this.getNodeByIndex(m[2]);
-                }
-            }
-
-            p = p.parentNode;
-
-            if (!p || !p.tagName) {
-                break;
-            }
-
-        } 
-        while (p.id !== this.id && p.tagName.toLowerCase() !== "body");
-
-        return null;
-    },
-
-    /**
-     * Removes the node and its children, and optionally refreshes the 
-     * branch of the tree that was affected.
-     * @method removeNode
-     * @param {Node} The node to remove
-     * @param {boolean} autoRefresh automatically refreshes branch if true
-     * @return {boolean} False is there was a problem, true otherwise.
-     */
-    removeNode: function(node, autoRefresh) { 
-
-        // Don't delete the root node
-        if (node.isRoot()) {
-            return false;
-        }
-
-        // Get the branch that we may need to refresh
-        var p = node.parent;
-        if (p.parent) {
-            p = p.parent;
-        }
-
-        // Delete the node and its children
-        this._deleteNode(node);
-
-        // Refresh the parent of the parent
-        if (autoRefresh && p && p.childrenRendered) {
-            p.refresh();
-        }
-
-        return true;
-    },
-
-    /**
-     * wait until the animation is complete before deleting 
-     * to avoid javascript errors
-     * @method _removeChildren_animComplete
-     * @param o the custom event payload
-     * @private
-     */
-    _removeChildren_animComplete: function(o) {
-        this.unsubscribe(this._removeChildren_animComplete);
-        this.removeChildren(o.node);
-    },
-
-    /**
-     * Deletes this nodes child collection, recursively.  Also collapses
-     * the node, and resets the dynamic load flag.  The primary use for
-     * this method is to purge a node and allow it to fetch its data
-     * dynamically again.
-     * @method removeChildren
-     * @param {Node} node the node to purge
-     */
-    removeChildren: function(node) { 
-
-        if (node.expanded) {
-            // wait until the animation is complete before deleting to
-            // avoid javascript errors
-            if (this._collapseAnim) {
-                this.subscribe("animComplete", 
-                        this._removeChildren_animComplete, this, true);
-                Widget.Node.prototype.collapse.call(node);
-                return;
-            }
-
-            node.collapse();
-        }
-
-        while (node.children.length) {
-            this._deleteNode(node.children[0]);
-        }
-
-        if (node.isRoot()) {
-            Widget.Node.prototype.expand.call(node);
-        }
-
-        node.childrenRendered = false;
-        node.dynamicLoadComplete = false;
-
-        node.updateIcon();
-    },
-
-    /**
-     * Deletes the node and recurses children
-     * @method _deleteNode
-     * @private
-     */
-    _deleteNode: function(node) { 
-        // Remove all the child nodes first
-        this.removeChildren(node);
-
-        // Remove the node from the tree
-        this.popNode(node);
-    },
-
-    /**
-     * Removes the node from the tree, preserving the child collection 
-     * to make it possible to insert the branch into another part of the 
-     * tree, or another tree.
-     * @method popNode
-     * @param {Node} the node to remove
-     */
-    popNode: function(node) { 
-        var p = node.parent;
-
-        // Update the parent's collection of children
-        var a = [];
-
-        for (var i=0, len=p.children.length;i<len;++i) {
-            if (p.children[i] != node) {
-                a[a.length] = p.children[i];
-            }
-        }
-
-        p.children = a;
-
-        // reset the childrenRendered flag for the parent
-        p.childrenRendered = false;
-
-         // Update the sibling relationship
-        if (node.previousSibling) {
-            node.previousSibling.nextSibling = node.nextSibling;
-        }
-
-        if (node.nextSibling) {
-            node.nextSibling.previousSibling = node.previousSibling;
-        }
-
-        node.parent = null;
-        node.previousSibling = null;
-        node.nextSibling = null;
-        node.tree = null;
-
-        // Update the tree's node collection 
-        delete this._nodes[node.index];
-    },
-
-	/**
-	* Nulls out the entire TreeView instance and related objects, removes attached
-	* event listeners, and clears out DOM elements inside the container. After
-	* calling this method, the instance reference should be expliclitly nulled by
-	* implementer, as in myDataTable = null. Use with caution!
-	*
-	* @method destroy
-	*/
-	destroy : function() {
-		// Since the label editor can be separated from the main TreeView control
-		// the destroy method for it might not be there.
-		if (this._destroyEditor) { this._destroyEditor(); }
-		var el = this.getEl();
-		Event.removeListener(el,'click');
-		Event.removeListener(el,'dblclick');
-		Event.removeListener(el,'mouseover');
-		Event.removeListener(el,'mouseout');
-		Event.removeListener(el,'keydown');
-		for (var i = 0 ; i < this._nodes.length; i++) {
-			var node = this._nodes[i];
-			if (node && node.destroy) {node.destroy(); }
-		}
-		el.parentNode.removeChild(el);
-		this._hasEvents = false;
-	},
-		
-			
-
-
-    /**
-     * TreeView instance toString
-     * @method toString
-     * @return {string} string representation of the tree
-     */
-    toString: function() {
-        return "TreeView " + this.id;
-    },
-
-    /**
-     * Count of nodes in tree
-     * @method getNodeCount
-     * @return {int} number of nodes in the tree
-     */
-    getNodeCount: function() {
-        return this.getRoot().getNodeCount();
-    },
-
-    /**
-     * Returns an object which could be used to rebuild the tree.
-     * It can be passed to the tree constructor to reproduce the same tree.
-     * It will return false if any node loads dynamically, regardless of whether it is loaded or not.
-     * @method getTreeDefinition
-     * @return {Object | false}  definition of the tree or false if any node is defined as dynamic
-     */
-    getTreeDefinition: function() {
-        return this.getRoot().getNodeDefinition();
-    },
-
-    /**
-     * Abstract method that is executed when a node is expanded
-     * @method onExpand
-     * @param node {Node} the node that was expanded
-     * @deprecated use treeobj.subscribe("expand") instead
-     */
-    onExpand: function(node) { },
-
-    /**
-     * Abstract method that is executed when a node is collapsed.
-     * @method onCollapse
-     * @param node {Node} the node that was collapsed.
-     * @deprecated use treeobj.subscribe("collapse") instead
-     */
-    onCollapse: function(node) { }
-
-};
-
-/* Backwards compatibility aliases */
-var PROT = TV.prototype;
- /**
-     * Renders the tree boilerplate and visible nodes.
-     *  Alias for render
-     * @method draw
-     * @deprecated Use render instead
-     */
-PROT.draw = PROT.render;
-
-/* end backwards compatibility aliases */
-
-YAHOO.augment(TV, YAHOO.util.EventProvider);
-
-/**
- * Running count of all nodes created in all trees.  This is 
- * used to provide unique identifies for all nodes.  Deleting
- * nodes does not change the nodeCount.
- * @property YAHOO.widget.TreeView.nodeCount
- * @type int
- * @static
- */
-TV.nodeCount = 0;
-
-/**
- * Global cache of tree instances
- * @property YAHOO.widget.TreeView.trees
- * @type Array
- * @static
- * @private
- */
-TV.trees = [];
-
-/**
- * Global method for getting a tree by its id.  Used in the generated
- * tree html.
- * @method YAHOO.widget.TreeView.getTree
- * @param treeId {String} the id of the tree instance
- * @return {TreeView} the tree instance requested, null if not found.
- * @static
- */
-TV.getTree = function(treeId) {
-    var t = TV.trees[treeId];
-    return (t) ? t : null;
-};
-
-
-/**
- * Global method for getting a node by its id.  Used in the generated
- * tree html.
- * @method YAHOO.widget.TreeView.getNode
- * @param treeId {String} the id of the tree instance
- * @param nodeIndex {String} the index of the node to return
- * @return {Node} the node instance requested, null if not found
- * @static
- */
-TV.getNode = function(treeId, nodeIndex) {
-    var t = TV.getTree(treeId);
-    return (t) ? t.getNodeByIndex(nodeIndex) : null;
-};
-
-
-/**
-     * Class name assigned to elements that have the focus
-     *
-     * @property TreeView.FOCUS_CLASS_NAME
-     * @type String
-     * @static
-     * @final
-     * @default "ygtvfocus"
-
-	*/ 
-TV.FOCUS_CLASS_NAME = 'ygtvfocus';
-
-/**
- * Attempts to preload the images defined in the styles used to draw the tree by
- * rendering off-screen elements that use the styles.
- * @method YAHOO.widget.TreeView.preload
- * @param {string} prefix the prefix to use to generate the names of the
- * images to preload, default is ygtv
- * @static
- */
-TV.preload = function(e, prefix) {
-    prefix = prefix || "ygtv";
-
-
-    var styles = ["tn","tm","tmh","tp","tph","ln","lm","lmh","lp","lph","loading"];
-    // var styles = ["tp"];
-
-    var sb = [];
-    
-    // save the first one for the outer container
-    for (var i=1; i < styles.length; i=i+1) { 
-        sb[sb.length] = '<span class="' + prefix + styles[i] + '">&#160;</span>';
-    }
-
-    var f = document.createElement("div");
-    var s = f.style;
-    s.className = prefix + styles[0];
-    s.position = "absolute";
-    s.height = "1px";
-    s.width = "1px";
-    s.top = "-1000px";
-    s.left = "-1000px";
-    f.innerHTML = sb.join("");
-
-    document.body.appendChild(f);
-
-    Event.removeListener(window, "load", TV.preload);
-
-};
-
-Event.addListener(window,"load", TV.preload);
-})();
-(function () {
-	var Dom = YAHOO.util.Dom,
-		Lang = YAHOO.lang,
-		Event = YAHOO.util.Event;
-/**
- * The base class for all tree nodes.  The node's presentation and behavior in
- * response to mouse events is handled in Node subclasses.
- * @namespace YAHOO.widget
- * @class Node
- * @uses YAHOO.util.EventProvider
- * @param oData {object} a string or object containing the data that will
- * be used to render this node, and any custom attributes that should be
- * stored with the node (which is available in noderef.data).
- * All values in oData will be used to set equally named properties in the node
- * as long as the node does have such properties, they are not undefined, private or functions.
- * @param oParent {Node} this node's parent node
- * @param expanded {boolean} the initial expanded/collapsed state (deprecated, use oData.expanded)
- * @constructor
- */
-YAHOO.widget.Node = function(oData, oParent, expanded) {
-    if (oData) { this.init(oData, oParent, expanded); }
-};
-
-YAHOO.widget.Node.prototype = {
-
-    /**
-     * The index for this instance obtained from global counter in YAHOO.widget.TreeView.
-     * @property index
-     * @type int
-     */
-    index: 0,
-
-    /**
-     * This node's child node collection.
-     * @property children
-     * @type Node[] 
-     */
-    children: null,
-
-    /**
-     * Tree instance this node is part of
-     * @property tree
-     * @type TreeView
-     */
-    tree: null,
-
-    /**
-     * The data linked to this node.  This can be any object or primitive
-     * value, and the data can be used in getNodeHtml().
-     * @property data
-     * @type object
-     */
-    data: null,
-
-    /**
-     * Parent node
-     * @property parent
-     * @type Node
-     */
-    parent: null,
-
-    /**
-     * The depth of this node.  We start at -1 for the root node.
-     * @property depth
-     * @type int
-     */
-    depth: -1,
-
-    /**
-     * The href for the node's label.  If one is not specified, the href will
-     * be set so that it toggles the node.
-     * @property href
-     * @type string
-     */
-    href: null,
-
-    /**
-     * The label href target, defaults to current window
-     * @property target
-     * @type string
-     */
-    target: "_self",
-
-    /**
-     * The node's expanded/collapsed state
-     * @property expanded
-     * @type boolean
-     */
-    expanded: false,
-
-    /**
-     * Can multiple children be expanded at once?
-     * @property multiExpand
-     * @type boolean
-     */
-    multiExpand: true,
-
-    /**
-     * Should we render children for a collapsed node?  It is possible that the
-     * implementer will want to render the hidden data...  @todo verify that we 
-     * need this, and implement it if we do.
-     * @property renderHidden
-     * @type boolean
-     */
-    renderHidden: false,
-
-    /**
-     * This flag is set to true when the html is generated for this node's
-     * children, and set to false when new children are added.
-     * @property childrenRendered
-     * @type boolean
-     */
-    childrenRendered: false,
-
-    /**
-     * Dynamically loaded nodes only fetch the data the first time they are
-     * expanded.  This flag is set to true once the data has been fetched.
-     * @property dynamicLoadComplete
-     * @type boolean
-     */
-    dynamicLoadComplete: false,
-
-    /**
-     * This node's previous sibling
-     * @property previousSibling
-     * @type Node
-     */
-    previousSibling: null,
-
-    /**
-     * This node's next sibling
-     * @property nextSibling
-     * @type Node
-     */
-    nextSibling: null,
-
-    /**
-     * We can set the node up to call an external method to get the child
-     * data dynamically.
-     * @property _dynLoad
-     * @type boolean
-     * @private
-     */
-    _dynLoad: false,
-
-    /**
-     * Function to execute when we need to get this node's child data.
-     * @property dataLoader
-     * @type function
-     */
-    dataLoader: null,
-
-    /**
-     * This is true for dynamically loading nodes while waiting for the
-     * callback to return.
-     * @property isLoading
-     * @type boolean
-     */
-    isLoading: false,
-
-    /**
-     * The toggle/branch icon will not show if this is set to false.  This
-     * could be useful if the implementer wants to have the child contain
-     * extra info about the parent, rather than an actual node.
-     * @property hasIcon
-     * @type boolean
-     */
-    hasIcon: true,
-
-    /**
-     * Used to configure what happens when a dynamic load node is expanded
-     * and we discover that it does not have children.  By default, it is
-     * treated as if it still could have children (plus/minus icon).  Set
-     * iconMode to have it display like a leaf node instead.
-     * @property iconMode
-     * @type int
-     */
-    iconMode: 0,
-
-    /**
-     * Specifies whether or not the content area of the node should be allowed
-     * to wrap.
-     * @property nowrap
-     * @type boolean
-     * @default false
-     */
-    nowrap: false,
-
- /**
-     * If true, the node will alway be rendered as a leaf node.  This can be
-     * used to override the presentation when dynamically loading the entire
-     * tree.  Setting this to true also disables the dynamic load call for the
-     * node.
-     * @property isLeaf
-     * @type boolean
-     * @default false
-     */
-    isLeaf: false,
-
-/**
-     * The CSS class for the html content container.  Defaults to ygtvhtml, but 
-     * can be overridden to provide a custom presentation for a specific node.
-     * @property contentStyle
-     * @type string
-     */
-    contentStyle: "",
-
-    /**
-     * The generated id that will contain the data passed in by the implementer.
-     * @property contentElId
-     * @type string
-     */
-    contentElId: null,
- /**
-     * The node type
-     * @property _type
-     * @private
-     * @type string
-     * @default "Node"
-*/
-    _type: "Node",
-
-    /*
-    spacerPath: "http://us.i1.yimg.com/us.yimg.com/i/space.gif",
-    expandedText: "Expanded",
-    collapsedText: "Collapsed",
-    loadingText: "Loading",
-    */
-
-    /**
-     * Initializes this node, gets some of the properties from the parent
-     * @method init
-     * @param oData {object} a string or object containing the data that will
-     * be used to render this node
-     * @param oParent {Node} this node's parent node
-     * @param expanded {boolean} the initial expanded/collapsed state
-     */
-    init: function(oData, oParent, expanded) {
-
-        this.data       = oData;
-        this.children   = [];
-        this.index      = YAHOO.widget.TreeView.nodeCount;
-        ++YAHOO.widget.TreeView.nodeCount;
-		this.contentElId = "ygtvcontentel" + this.index;
-		
-		if (Lang.isObject(oData)) {
-			for (var property in oData) {
-				if (property.charAt(0) != '_'  && oData.hasOwnProperty(property) && !Lang.isUndefined(this[property]) && !Lang.isFunction(this[property]) ) {
-					this[property] = oData[property];
-				}
-			}
-		}
-		if (!Lang.isUndefined(expanded) ) {	this.expanded  = expanded;	}
-		
-
-        /**
-         * The parentChange event is fired when a parent element is applied
-         * to the node.  This is useful if you need to apply tree-level
-         * properties to a tree that need to happen if a node is moved from
-         * one tree to another.
-         *
-         * @event parentChange
-         * @type CustomEvent
-         */
-        this.createEvent("parentChange", this);
-
-        // oParent should never be null except when we create the root node.
-        if (oParent) {
-            oParent.appendChild(this);
-        }
-    },
-
-    /**
-     * Certain properties for the node cannot be set until the parent
-     * is known. This is called after the node is inserted into a tree.
-     * the parent is also applied to this node's children in order to
-     * make it possible to move a branch from one tree to another.
-     * @method applyParent
-     * @param {Node} parentNode this node's parent node
-     * @return {boolean} true if the application was successful
-     */
-    applyParent: function(parentNode) {
-        if (!parentNode) {
-            return false;
-        }
-
-        this.tree   = parentNode.tree;
-        this.parent = parentNode;
-        this.depth  = parentNode.depth + 1;
-
-        // @todo why was this put here.  This causes new nodes added at the
-        // root level to lose the menu behavior.
-        // if (! this.multiExpand) {
-            // this.multiExpand = parentNode.multiExpand;
-        // }
-
-        this.tree.regNode(this);
-        parentNode.childrenRendered = false;
-
-        // cascade update existing children
-        for (var i=0, len=this.children.length;i<len;++i) {
-            this.children[i].applyParent(this);
-        }
-
-        this.fireEvent("parentChange");
-
-        return true;
-    },
-
-    /**
-     * Appends a node to the child collection.
-     * @method appendChild
-     * @param childNode {Node} the new node
-     * @return {Node} the child node
-     * @private
-     */
-    appendChild: function(childNode) {
-        if (this.hasChildren()) {
-            var sib = this.children[this.children.length - 1];
-            sib.nextSibling = childNode;
-            childNode.previousSibling = sib;
-        }
-        this.children[this.children.length] = childNode;
-        childNode.applyParent(this);
-
-        // part of the IE display issue workaround. If child nodes
-        // are added after the initial render, and the node was
-        // instantiated with expanded = true, we need to show the
-        // children div now that the node has a child.
-        if (this.childrenRendered && this.expanded) {
-            this.getChildrenEl().style.display = "";
-        }
-
-        return childNode;
-    },
-
-    /**
-     * Appends this node to the supplied node's child collection
-     * @method appendTo
-     * @param parentNode {Node} the node to append to.
-     * @return {Node} The appended node
-     */
-    appendTo: function(parentNode) {
-        return parentNode.appendChild(this);
-    },
-
-    /**
-    * Inserts this node before this supplied node
-    * @method insertBefore
-    * @param node {Node} the node to insert this node before
-    * @return {Node} the inserted node
-    */
-    insertBefore: function(node) {
-        var p = node.parent;
-        if (p) {
-
-            if (this.tree) {
-                this.tree.popNode(this);
-            }
-
-            var refIndex = node.isChildOf(p);
-            p.children.splice(refIndex, 0, this);
-            if (node.previousSibling) {
-                node.previousSibling.nextSibling = this;
-            }
-            this.previousSibling = node.previousSibling;
-            this.nextSibling = node;
-            node.previousSibling = this;
-
-            this.applyParent(p);
-        }
-
-        return this;
-    },
- 
-    /**
-    * Inserts this node after the supplied node
-    * @method insertAfter
-    * @param node {Node} the node to insert after
-    * @return {Node} the inserted node
-    */
-    insertAfter: function(node) {
-        var p = node.parent;
-        if (p) {
-
-            if (this.tree) {
-                this.tree.popNode(this);
-            }
-
-            var refIndex = node.isChildOf(p);
-
-            if (!node.nextSibling) {
-                this.nextSibling = null;
-                return this.appendTo(p);
-            }
-
-            p.children.splice(refIndex + 1, 0, this);
-
-            node.nextSibling.previousSibling = this;
-            this.previousSibling = node;
-            this.nextSibling = node.nextSibling;
-            node.nextSibling = this;
-
-            this.applyParent(p);
-        }
-
-        return this;
-    },
-
-    /**
-    * Returns true if the Node is a child of supplied Node
-    * @method isChildOf
-    * @param parentNode {Node} the Node to check
-    * @return {boolean} The node index if this Node is a child of 
-    *                   supplied Node, else -1.
-    * @private
-    */
-    isChildOf: function(parentNode) {
-        if (parentNode && parentNode.children) {
-            for (var i=0, len=parentNode.children.length; i<len ; ++i) {
-                if (parentNode.children[i] === this) {
-                    return i;
-                }
-            }
-        }
-
-        return -1;
-    },
-
-    /**
-     * Returns a node array of this node's siblings, null if none.
-     * @method getSiblings
-     * @return Node[]
-     */
-    getSiblings: function() {
-		var sib =  this.parent.children.slice(0);
-		for (var i=0;i < sib.length && sib[i] != this;i++) {}
-		sib.splice(i,1);
-		if (sib.length) { return sib; }
-		return null;
-    },
-
-    /**
-     * Shows this node's children
-     * @method showChildren
-     */
-    showChildren: function() {
-        if (!this.tree.animateExpand(this.getChildrenEl(), this)) {
-            if (this.hasChildren()) {
-                this.getChildrenEl().style.display = "";
-            }
-        }
-    },
-
-    /**
-     * Hides this node's children
-     * @method hideChildren
-     */
-    hideChildren: function() {
-
-        if (!this.tree.animateCollapse(this.getChildrenEl(), this)) {
-            this.getChildrenEl().style.display = "none";
-        }
-    },
-
-    /**
-     * Returns the id for this node's container div
-     * @method getElId
-     * @return {string} the element id
-     */
-    getElId: function() {
-        return "ygtv" + this.index;
-    },
-
-    /**
-     * Returns the id for this node's children div
-     * @method getChildrenElId
-     * @return {string} the element id for this node's children div
-     */
-    getChildrenElId: function() {
-        return "ygtvc" + this.index;
-    },
-
-    /**
-     * Returns the id for this node's toggle element
-     * @method getToggleElId
-     * @return {string} the toggel element id
-     */
-    getToggleElId: function() {
-        return "ygtvt" + this.index;
-    },
-
-
-    /*
-     * Returns the id for this node's spacer image.  The spacer is positioned
-     * over the toggle and provides feedback for screen readers.
-     * @method getSpacerId
-     * @return {string} the id for the spacer image
-     */
-    /*
-    getSpacerId: function() {
-        return "ygtvspacer" + this.index;
-    }, 
-    */
-
-    /**
-     * Returns this node's container html element
-     * @method getEl
-     * @return {HTMLElement} the container html element
-     */
-    getEl: function() {
-        return Dom.get(this.getElId());
-    },
-
-    /**
-     * Returns the div that was generated for this node's children
-     * @method getChildrenEl
-     * @return {HTMLElement} this node's children div
-     */
-    getChildrenEl: function() {
-        return Dom.get(this.getChildrenElId());
-    },
-
-    /**
-     * Returns the element that is being used for this node's toggle.
-     * @method getToggleEl
-     * @return {HTMLElement} this node's toggle html element
-     */
-    getToggleEl: function() {
-        return Dom.get(this.getToggleElId());
-    },
-    /**
-	* Returns the outer html element for this node's content
-	* @method getContentEl
-	* @return {HTMLElement} the element
-	*/
-    getContentEl: function() { 
-        return Dom.get(this.contentElId);
-    },
-
-
-    /*
-     * Returns the element that is being used for this node's spacer.
-     * @method getSpacer
-     * @return {HTMLElement} this node's spacer html element
-     */
-    /*
-    getSpacer: function() {
-        return document.getElementById( this.getSpacerId() ) || {};
-    },
-    */
-
-    /*
-    getStateText: function() {
-        if (this.isLoading) {
-            return this.loadingText;
-        } else if (this.hasChildren(true)) {
-            if (this.expanded) {
-                return this.expandedText;
-            } else {
-                return this.collapsedText;
-            }
-        } else {
-            return "";
-        }
-    },
-    */
-
-  /**
-     * Hides this nodes children (creating them if necessary), changes the toggle style.
-     * @method collapse
-     */
-    collapse: function() {
-        // Only collapse if currently expanded
-        if (!this.expanded) { return; }
-
-        // fire the collapse event handler
-        var ret = this.tree.onCollapse(this);
-
-        if (false === ret) {
-            return;
-        }
-
-        ret = this.tree.fireEvent("collapse", this);
-
-        if (false === ret) {
-            return;
-        }
-
-
-        if (!this.getEl()) {
-            this.expanded = false;
-        } else {
-            // hide the child div
-            this.hideChildren();
-            this.expanded = false;
-
-            this.updateIcon();
-        }
-
-        // this.getSpacer().title = this.getStateText();
-
-        ret = this.tree.fireEvent("collapseComplete", this);
-
-    },
-
-    /**
-     * Shows this nodes children (creating them if necessary), changes the
-     * toggle style, and collapses its siblings if multiExpand is not set.
-     * @method expand
-     */
-    expand: function(lazySource) {
-        // Only expand if currently collapsed.
-        if (this.expanded && !lazySource) { 
-            return; 
-        }
-
-        var ret = true;
-
-        // When returning from the lazy load handler, expand is called again
-        // in order to render the new children.  The "expand" event already
-        // fired before fething the new data, so we need to skip it now.
-        if (!lazySource) {
-            // fire the expand event handler
-            ret = this.tree.onExpand(this);
-
-            if (false === ret) {
-                return;
-            }
-            
-            ret = this.tree.fireEvent("expand", this);
-        }
-
-        if (false === ret) {
-            return;
-        }
-
-        if (!this.getEl()) {
-            this.expanded = true;
-            return;
-        }
-
-        if (!this.childrenRendered) {
-            this.getChildrenEl().innerHTML = this.renderChildren();
-        } else {
-        }
-
-        this.expanded = true;
-
-        this.updateIcon();
-
-        // this.getSpacer().title = this.getStateText();
-
-        // We do an extra check for children here because the lazy
-        // load feature can expose nodes that have no children.
-
-        // if (!this.hasChildren()) {
-        if (this.isLoading) {
-            this.expanded = false;
-            return;
-        }
-
-        if (! this.multiExpand) {
-            var sibs = this.getSiblings();
-            for (var i=0; sibs && i<sibs.length; ++i) {
-                if (sibs[i] != this && sibs[i].expanded) { 
-                    sibs[i].collapse(); 
-                }
-            }
-        }
-
-        this.showChildren();
-
-        ret = this.tree.fireEvent("expandComplete", this);
-    },
-
-    updateIcon: function() {
-        if (this.hasIcon) {
-            var el = this.getToggleEl();
-            if (el) {
-                el.className = el.className.replace(/ygtv(([tl][pmn]h?)|(loading))/,this.getStyle());
-            }
-        }
-    },
-
-    /**
-     * Returns the css style name for the toggle
-     * @method getStyle
-     * @return {string} the css class for this node's toggle
-     */
-    getStyle: function() {
-        if (this.isLoading) {
-            return "ygtvloading";
-        } else {
-            // location top or bottom, middle nodes also get the top style
-            var loc = (this.nextSibling) ? "t" : "l";
-
-            // type p=plus(expand), m=minus(collapase), n=none(no children)
-            var type = "n";
-            if (this.hasChildren(true) || (this.isDynamic() && !this.getIconMode())) {
-            // if (this.hasChildren(true)) {
-                type = (this.expanded) ? "m" : "p";
-            }
-
-            return "ygtv" + loc + type;
-        }
-    },
-
-    /**
-     * Returns the hover style for the icon
-     * @return {string} the css class hover state
-     * @method getHoverStyle
-     */
-    getHoverStyle: function() { 
-        var s = this.getStyle();
-        if (this.hasChildren(true) && !this.isLoading) { 
-            s += "h"; 
-        }
-        return s;
-    },
-
-    /**
-     * Recursively expands all of this node's children.
-     * @method expandAll
-     */
-    expandAll: function() { 
-        for (var i=0;i<this.children.length;++i) {
-            var c = this.children[i];
-            if (c.isDynamic()) {
-                break;
-            } else if (! c.multiExpand) {
-                break;
-            } else {
-                c.expand();
-                c.expandAll();
-            }
-        }
-    },
-
-    /**
-     * Recursively collapses all of this node's children.
-     * @method collapseAll
-     */
-    collapseAll: function() { 
-        for (var i=0;i<this.children.length;++i) {
-            this.children[i].collapse();
-            this.children[i].collapseAll();
-        }
-    },
-
-    /**
-     * Configures this node for dynamically obtaining the child data
-     * when the node is first expanded.  Calling it without the callback
-     * will turn off dynamic load for the node.
-     * @method setDynamicLoad
-     * @param fmDataLoader {function} the function that will be used to get the data.
-     * @param iconMode {int} configures the icon that is displayed when a dynamic
-     * load node is expanded the first time without children.  By default, the 
-     * "collapse" icon will be used.  If set to 1, the leaf node icon will be
-     * displayed.
-     */
-    setDynamicLoad: function(fnDataLoader, iconMode) { 
-        if (fnDataLoader) {
-            this.dataLoader = fnDataLoader;
-            this._dynLoad = true;
-        } else {
-            this.dataLoader = null;
-            this._dynLoad = false;
-        }
-
-        if (iconMode) {
-            this.iconMode = iconMode;
-        }
-    },
-
-    /**
-     * Evaluates if this node is the root node of the tree
-     * @method isRoot
-     * @return {boolean} true if this is the root node
-     */
-    isRoot: function() { 
-        return (this == this.tree.root);
-    },
-
-    /**
-     * Evaluates if this node's children should be loaded dynamically.  Looks for
-     * the property both in this instance and the root node.  If the tree is
-     * defined to load all children dynamically, the data callback function is
-     * defined in the root node
-     * @method isDynamic
-     * @return {boolean} true if this node's children are to be loaded dynamically
-     */
-    isDynamic: function() { 
-        if (this.isLeaf) {
-            return false;
-        } else {
-            return (!this.isRoot() && (this._dynLoad || this.tree.root._dynLoad));
-            // return lazy;
-        }
-    },
-
-    /**
-     * Returns the current icon mode.  This refers to the way childless dynamic
-     * load nodes appear (this comes into play only after the initial dynamic
-     * load request produced no children).
-     * @method getIconMode
-     * @return {int} 0 for collapse style, 1 for leaf node style
-     */
-    getIconMode: function() {
-        return (this.iconMode || this.tree.root.iconMode);
-    },
-
-    /**
-     * Checks if this node has children.  If this node is lazy-loading and the
-     * children have not been rendered, we do not know whether or not there
-     * are actual children.  In most cases, we need to assume that there are
-     * children (for instance, the toggle needs to show the expandable 
-     * presentation state).  In other times we want to know if there are rendered
-     * children.  For the latter, "checkForLazyLoad" should be false.
-     * @method hasChildren
-     * @param checkForLazyLoad {boolean} should we check for unloaded children?
-     * @return {boolean} true if this has children or if it might and we are
-     * checking for this condition.
-     */
-    hasChildren: function(checkForLazyLoad) { 
-        if (this.isLeaf) {
-            return false;
-        } else {
-            return ( this.children.length > 0 || 
-(checkForLazyLoad && this.isDynamic() && !this.dynamicLoadComplete) );
-        }
-    },
-
-    /**
-     * Expands if node is collapsed, collapses otherwise.
-     * @method toggle
-     */
-    toggle: function() {
-        if (!this.tree.locked && ( this.hasChildren(true) || this.isDynamic()) ) {
-            if (this.expanded) { this.collapse(); } else { this.expand(); }
-        }
-    },
-
-    /**
-     * Returns the markup for this node and its children.
-     * @method getHtml
-     * @return {string} the markup for this node and its expanded children.
-     */
-    getHtml: function() {
-
-        this.childrenRendered = false;
-
-        var sb = [];
-        sb[sb.length] = '<div class="ygtvitem" id="' + this.getElId() + '">';
-        sb[sb.length] = this.getNodeHtml();
-        sb[sb.length] = this.getChildrenHtml();
-        sb[sb.length] = '</div>';
-        return sb.join("");
-    },
-
-    /**
-     * Called when first rendering the tree.  We always build the div that will
-     * contain this nodes children, but we don't render the children themselves
-     * unless this node is expanded.
-     * @method getChildrenHtml
-     * @return {string} the children container div html and any expanded children
-     * @private
-     */
-    getChildrenHtml: function() {
-
-
-        var sb = [];
-        sb[sb.length] = '<div class="ygtvchildren"';
-        sb[sb.length] = ' id="' + this.getChildrenElId() + '"';
-
-        // This is a workaround for an IE rendering issue, the child div has layout
-        // in IE, creating extra space if a leaf node is created with the expanded
-        // property set to true.
-        if (!this.expanded || !this.hasChildren()) {
-            sb[sb.length] = ' style="display:none;"';
-        }
-        sb[sb.length] = '>';
-
-
-        // Don't render the actual child node HTML unless this node is expanded.
-        if ( (this.hasChildren(true) && this.expanded) ||
-                (this.renderHidden && !this.isDynamic()) ) {
-            sb[sb.length] = this.renderChildren();
-        }
-
-        sb[sb.length] = '</div>';
-
-        return sb.join("");
-    },
-
-    /**
-     * Generates the markup for the child nodes.  This is not done until the node
-     * is expanded.
-     * @method renderChildren
-     * @return {string} the html for this node's children
-     * @private
-     */
-    renderChildren: function() {
-
-
-        var node = this;
-
-        if (this.isDynamic() && !this.dynamicLoadComplete) {
-            this.isLoading = true;
-            this.tree.locked = true;
-
-            if (this.dataLoader) {
-
-                setTimeout( 
-                    function() {
-                        node.dataLoader(node, 
-                            function() { 
-                                node.loadComplete(); 
-                            });
-                    }, 10);
-                
-            } else if (this.tree.root.dataLoader) {
-
-                setTimeout( 
-                    function() {
-                        node.tree.root.dataLoader(node, 
-                            function() { 
-                                node.loadComplete(); 
-                            });
-                    }, 10);
-
-            } else {
-                return "Error: data loader not found or not specified.";
-            }
-
-            return "";
-
-        } else {
-            return this.completeRender();
-        }
-    },
-
-    /**
-     * Called when we know we have all the child data.
-     * @method completeRender
-     * @return {string} children html
-     */
-    completeRender: function() {
-        var sb = [];
-
-        for (var i=0; i < this.children.length; ++i) {
-            // this.children[i].childrenRendered = false;
-            sb[sb.length] = this.children[i].getHtml();
-        }
-        
-        this.childrenRendered = true;
-
-        return sb.join("");
-    },
-
-    /**
-     * Load complete is the callback function we pass to the data provider
-     * in dynamic load situations.
-     * @method loadComplete
-     */
-    loadComplete: function() {
-        this.getChildrenEl().innerHTML = this.completeRender();
-        this.dynamicLoadComplete = true;
-        this.isLoading = false;
-        this.expand(true);
-        this.tree.locked = false;
-    },
-
-    /**
-     * Returns this node's ancestor at the specified depth.
-     * @method getAncestor
-     * @param {int} depth the depth of the ancestor.
-     * @return {Node} the ancestor
-     */
-    getAncestor: function(depth) {
-        if (depth >= this.depth || depth < 0)  {
-            return null;
-        }
-
-        var p = this.parent;
-        
-        while (p.depth > depth) {
-            p = p.parent;
-        }
-
-        return p;
-    },
-
-    /**
-     * Returns the css class for the spacer at the specified depth for
-     * this node.  If this node's ancestor at the specified depth
-     * has a next sibling the presentation is different than if it
-     * does not have a next sibling
-     * @method getDepthStyle
-     * @param {int} depth the depth of the ancestor.
-     * @return {string} the css class for the spacer
-     */
-    getDepthStyle: function(depth) {
-        return (this.getAncestor(depth).nextSibling) ? 
-            "ygtvdepthcell" : "ygtvblankdepthcell";
-    },
-
-    /**
-     * Get the markup for the node.  This may be overrided so that we can
-     * support different types of nodes.
-     * @method getNodeHtml
-     * @return {string} The HTML that will render this node.
-     */
-    getNodeHtml: function() { 
-        var sb = [];
-
-        sb[sb.length] = '<table border="0" cellpadding="0" cellspacing="0" class="ygtvdepth' + this.depth + '">';
-        sb[sb.length] = '<tr class="ygtvrow">';
-        
-        for (var i=0;i<this.depth;++i) {
-            sb[sb.length] = '<td class="' + this.getDepthStyle(i) + '"><div class="ygtvspacer"></div></td>';
-        }
-
-        if (this.hasIcon) {
-            sb[sb.length] = '<td'; 
-            sb[sb.length] = ' id="' + this.getToggleElId() + '"';
-            sb[sb.length] = ' class="' + this.getStyle() + '"';
-            sb[sb.length] = '><a href="#" class="ygtvspacer">&nbsp;</a></td>';
-        }
-
-        sb[sb.length] = '<td';
-        sb[sb.length] = ' id="' + this.contentElId + '"'; 
-        sb[sb.length] = ' class="' + this.contentStyle  + ' ygtvcontent" ';
-        sb[sb.length] = (this.nowrap) ? ' nowrap="nowrap" ' : '';
-        sb[sb.length] = ' >';
-		sb[sb.length] = this.getContentHtml();
-        sb[sb.length] = '</td>';
-        sb[sb.length] = '</tr>';
-        sb[sb.length] = '</table>';
-
-        return sb.join("");
-
-    },
-	/**
-     * Get the markup for the contents of the node.  This is designed to be overrided so that we can
-     * support different types of nodes.
-     * @method getContentHtml
-     * @return {string} The HTML that will render the content of this node.
-     */
-	getContentHtml: function () {
-		return "";
-	},
-
-    /**
-     * Regenerates the html for this node and its children.  To be used when the
-     * node is expanded and new children have been added.
-     * @method refresh
-     */
-    refresh: function() {
-        // this.loadComplete();
-        this.getChildrenEl().innerHTML = this.completeRender();
-
-        if (this.hasIcon) {
-            var el = this.getToggleEl();
-            if (el) {
-                el.className = this.getStyle();
-            }
-        }
-    },
-
-    /**
-     * Node toString
-     * @method toString
-     * @return {string} string representation of the node
-     */
-    toString: function() {
-        return this._type + " (" + this.index + ")";
-    },
-	/**
-	* array of items that had the focus set on them
-	* so that they can be cleaned when focus is lost
-	* @property _focusHighlightedItems
-	* @type Array of DOM elements
-	* @private
-	*/
-	_focusHighlightedItems: [],
-	_focusedItem: null,
-	/**
-	* Sets the focus on the node element.
-	* It will only be able to set the focus on nodes that have anchor elements in it.  
-	* Toggle or branch icons have anchors and can be focused on.  
-	* If will fail in nodes that have no anchor
-	* @method focus
-	* @return {boolean} success
-	*/
-	focus: function () {
-		var focused = false, self = this;
-
-		var removeListeners = function () {
-			var el;
-			if (self._focusedItem) {
-				Event.removeListener(self._focusedItem,'blur');
-				self._focusedItem = null;
-			}
-			
-			while ((el = self._focusHighlightedItems.shift())) {  // yes, it is meant as an assignment, really
-				Dom.removeClass(el,YAHOO.widget.TreeView.FOCUS_CLASS_NAME );
-			}
-		};
-		removeListeners();
-
-		Dom.getElementsBy  ( 
-			function (el) {
-				return /ygtv(([tl][pmn]h?)|(content))/.test(el.className);
-			} ,
-			'td' , 
-			this.getEl().firstChild , 
-			function (el) {
-				Dom.addClass(el, YAHOO.widget.TreeView.FOCUS_CLASS_NAME );
-				if (!focused) { 
-					var aEl = el.getElementsByTagName('a');
-					if (aEl.length) {
-						aEl = aEl[0];
-						aEl.focus();
-						self._focusedItem = aEl;
-						Event.on(aEl,'blur',removeListeners);
-						focused = true;
-					}
-				}
-				self._focusHighlightedItems.push(el);
-			}
-		);
-		if (!focused) { removeListeners(); }
-		return focused;
-	},
-
-  /**
-     * Count of nodes in tree
-     * @method getNodeCount
-     * @return {int} number of nodes in the tree
-     */
-    getNodeCount: function() {
-		for (var i = 0, count = 0;i< this.children.length;i++) {
-			count += this.children[i].getNodeCount();
-		}
-        return count + 1;
-    },
-	
-	  /**
-     * Returns an object which could be used to build a tree out of this node and its children.
-     * It can be passed to the tree constructor to reproduce this node as a tree.
-     * It will return false if the node or any children loads dynamically, regardless of whether it is loaded or not.
-     * @method getNodeDefinition
-     * @return {Object | false}  definition of the tree or false if the node or any children is defined as dynamic
-     */
-    getNodeDefinition: function() {
-	
-		if (this.isDynamic()) { return false; }
-		
-		var def, defs = this.data, children = []; 
-		
-		
-		if (this.href) { defs.href = this.href; }
-		if (this.target != '_self') { defs.target = this.target; }
-		if (this.expanded) {defs.expanded = this.expanded; }
-		if (!this.multiExpand) { defs.multiExpand = this.multiExpand; }
-		if (!this.hasIcon) { defs.hasIcon = this.hasIcon; }
-		if (this.nowrap) { defs.nowrap = this.nowrap; }
-		defs.type = this._type;
-		
-		
-		
-		for (var i = 0; i < this.children.length;i++) {
-			def = this.children[i].getNodeDefinition();
-			if (def === false) { return false;}
-			children.push(def);
-		}
-		if (children.length) { defs.children = children; }
-		return defs;
-    },
-
-
-    /**
-     * Generates the link that will invoke this node's toggle method
-     * @method getToggleLink
-     * @return {string} the javascript url for toggling this node
-     */
-    getToggleLink: function() {
-        return 'return false;';
-    }
-
-};
-
-YAHOO.augment(YAHOO.widget.Node, YAHOO.util.EventProvider);
-})();
-(function () {
-	var Dom = YAHOO.util.Dom,
-		Lang = YAHOO.lang,
-		Event = YAHOO.util.Event;
-/**
- * The default node presentation.  The first parameter should be
- * either a string that will be used as the node's label, or an object
- * that has at least a string property called label.  By default,  clicking the
- * label will toggle the expanded/collapsed state of the node.  By
- * setting the href property of the instance, this behavior can be
- * changed so that the label will go to the specified href.
- * @namespace YAHOO.widget
- * @class TextNode
- * @extends YAHOO.widget.Node
- * @constructor
- * @param oData {object} a string or object containing the data that will
- * be used to render this node.
- * Providing a string is the same as providing an object with a single property named label.
- * All values in the oData will be used to set equally named properties in the node
- * as long as the node does have such properties, they are not undefined, private or functions.
- * All attributes are made available in noderef.data, which
- * can be used to store custom attributes.  TreeView.getNode(s)ByProperty
- * can be used to retrieve a node by one of the attributes.
- * @param oParent {YAHOO.widget.Node} this node's parent node
- * @param expanded {boolean} the initial expanded/collapsed state (deprecated; use oData.expanded) 
- */
-YAHOO.widget.TextNode = function(oData, oParent, expanded) {
-
-    if (oData) { 
-        if (Lang.isString(oData)) {
-            oData = { label: oData };
-        }
-        this.init(oData, oParent, expanded);
-        this.setUpLabel(oData);
-    }
-
-};
-
-YAHOO.extend(YAHOO.widget.TextNode, YAHOO.widget.Node, {
-    
-    /**
-     * The CSS class for the label href.  Defaults to ygtvlabel, but can be
-     * overridden to provide a custom presentation for a specific node.
-     * @property labelStyle
-     * @type string
-     */
-    labelStyle: "ygtvlabel",
-
-    /**
-     * The derived element id of the label for this node
-     * @property labelElId
-     * @type string
-     */
-    labelElId: null,
-
-    /**
-     * The text for the label.  It is assumed that the oData parameter will
-     * either be a string that will be used as the label, or an object that
-     * has a property called "label" that we will use.
-     * @property label
-     * @type string
-     */
-    label: null,
-
-    /**
-     * The text for the title (tooltip) for the label element
-     * @property title
-     * @type string
-     */
-    title: null,
-	
-/**
-     * The node type
-     * @property _type
-     * @private
-     * @type string
-     * @default "TextNode"
-     */
-    _type: "TextNode",
-
-
-    /**
-     * Sets up the node label
-     * @method setUpLabel
-     * @param oData string containing the label, or an object with a label property
-     */
-    setUpLabel: function(oData) { 
-        
-        if (Lang.isString(oData)) {
-            oData = { 
-                label: oData 
-            };
-        } else {
-        if (oData.style) {
-            this.labelStyle = oData.style;
-        }
-        }
-
-        this.label = oData.label;
-
-        this.labelElId = "ygtvlabelel" + this.index;
-		
-    },
-
-    /**
-     * Returns the label element
-     * @for YAHOO.widget.TextNode
-     * @method getLabelEl
-     * @return {object} the element
-     */
-    getLabelEl: function() { 
-        return Dom.get(this.labelElId);
-    },
-
-    // overrides YAHOO.widget.Node
-	getContentHtml: function() { 
-        var sb = [];
-        sb[sb.length] = this.href?'<a':'<span';
-        sb[sb.length] = ' id="' + this.labelElId + '"';
-        if (this.title) {
-            sb[sb.length] = ' title="' + this.title + '"';
-        }
-        sb[sb.length] = ' class="' + this.labelStyle  + '"';
-		if (this.href) {
-			sb[sb.length] = ' href="' + this.href + '"';
-			sb[sb.length] = ' target="' + this.target + '"';
-		} 
-        sb[sb.length] = ' >';
-        sb[sb.length] = this.label;
-        sb[sb.length] = this.href?'</a>':'</span>';
-        return sb.join("");
-    },
-
-
-
-  /**
-     * Returns an object which could be used to build a tree out of this node and its children.
-     * It can be passed to the tree constructor to reproduce this node as a tree.
-     * It will return false if the node or any descendant loads dynamically, regardless of whether it is loaded or not.
-     * @method getNodeDefinition
-     * @return {Object | false}  definition of the tree or false if this node or any descendant is defined as dynamic
-     */
-    getNodeDefinition: function() {
-		var def = YAHOO.widget.TextNode.superclass.getNodeDefinition.call(this);
-		if (def === false) { return false; }
-
-		// Node specific properties
-		def.label = this.label;
-		if (this.labelStyle != 'ygtvlabel') { def.style = this.labelStyle; }
-		if (this.title) { def.title = this.title ; }
-
-		return def;
-	
-	},
-
-    toString: function() { 
-        return YAHOO.widget.TextNode.superclass.toString.call(this) + ": " + this.label;
-    },
-
-    // deprecated
-    onLabelClick: function() {
-		return false;
-    }
-});
-})();
-/**
- * A custom YAHOO.widget.Node that handles the unique nature of 
- * the virtual, presentationless root node.
- * @namespace YAHOO.widget
- * @class RootNode
- * @extends YAHOO.widget.Node
- * @param oTree {YAHOO.widget.TreeView} The tree instance this node belongs to
- * @constructor
- */
-YAHOO.widget.RootNode = function(oTree) {
-	// Initialize the node with null params.  The root node is a
-	// special case where the node has no presentation.  So we have
-	// to alter the standard properties a bit.
-	this.init(null, null, true);
-	
-	/*
-	 * For the root node, we get the tree reference from as a param
-	 * to the constructor instead of from the parent element.
-	 */
-	this.tree = oTree;
-};
-
-YAHOO.extend(YAHOO.widget.RootNode, YAHOO.widget.Node, {
-    
-   /**
-     * The node type
-     * @property _type
-      * @type string
-     * @private
-     * @default "RootNode"
-     */
-    _type: "RootNode",
-	
-    // overrides YAHOO.widget.Node
-    getNodeHtml: function() { 
-        return ""; 
-    },
-
-    toString: function() { 
-        return this._type;
-    },
-
-    loadComplete: function() { 
-        this.tree.draw();
-    },
-	
-   /**
-     * Count of nodes in tree.  
-    * It overrides Nodes.getNodeCount because the root node should not be counted.
-     * @method getNodeCount
-     * @return {int} number of nodes in the tree
-     */
-    getNodeCount: function() {
-		for (var i = 0, count = 0;i< this.children.length;i++) {
-			count += this.children[i].getNodeCount();
-		}
-        return count;
-    },
-
-  /**
-     * Returns an object which could be used to build a tree out of this node and its children.
-     * It can be passed to the tree constructor to reproduce this node as a tree.
-     * Since the RootNode is automatically created by treeView, 
-     * its own definition is excluded from the returned node definition
-     * which only contains its children.
-     * @method getNodeDefinition
-     * @return {Object | false}  definition of the tree or false if any child node is defined as dynamic
-     */
-    getNodeDefinition: function() {
-		
-		for (var def, defs = [], i = 0; i < this.children.length;i++) {
-			def = this.children[i].getNodeDefinition();
-			if (def === false) { return false;}
-			defs.push(def);
-		}
-		return defs;
-    },
-
-    collapse: function() {},
-    expand: function() {},
-	getSiblings: function() { return null; },
-	focus: function () {}
-
-});
-(function () {
-	var Dom = YAHOO.util.Dom,
-		Lang = YAHOO.lang,
-		Event = YAHOO.util.Event;
-
-/**
- * This implementation takes either a string or object for the
- * oData argument.  If is it a string, it will use it for the display
- * of this node (and it can contain any html code).  If the parameter
- * is an object,it looks for a parameter called "html" that will be
- * used for this node's display.
- * @namespace YAHOO.widget
- * @class HTMLNode
- * @extends YAHOO.widget.Node
- * @constructor
- * @param oData {object} a string or object containing the data that will
- * be used to render this node.  
- * Providing a string is the same as providing an object with a single property named html.
- * All values in the oData will be used to set equally named properties in the node
- * as long as the node does have such properties, they are not undefined, private or functions.
- * All other attributes are made available in noderef.data, which
- * can be used to store custom attributes.  TreeView.getNode(s)ByProperty
- * can be used to retrieve a node by one of the attributes.
- * @param oParent {YAHOO.widget.Node} this node's parent node
- * @param expanded {boolean} the initial expanded/collapsed state (deprecated; use oData.expanded) 
- * @param hasIcon {boolean} specifies whether or not leaf nodes should
- * be rendered with or without a horizontal line line and/or toggle icon. If the icon
- * is not displayed, the content fills the space it would have occupied.
- * This option operates independently of the leaf node presentation logic
- * for dynamic nodes.
- * (deprecated; use oData.hasIcon) 
- */
-YAHOO.widget.HTMLNode = function(oData, oParent, expanded, hasIcon) {
-    if (oData) { 
-        this.init(oData, oParent, expanded);
-        this.initContent(oData, hasIcon);
-    }
-};
-
-YAHOO.extend(YAHOO.widget.HTMLNode, YAHOO.widget.Node, {
-
-    /**
-     * The CSS class for the html content container.  Defaults to ygtvhtml, but 
-     * can be overridden to provide a custom presentation for a specific node.
-     * @property contentStyle
-     * @type string
-     */
-    contentStyle: "ygtvhtml",
-
-
-    /**
-     * The HTML content to use for this node's display
-     * @property html
-     * @type string
-     */
-    html: null,
-	
-/**
-     * The node type
-     * @property _type
-     * @private
-     * @type string
-     * @default "HTMLNode"
-     */
-    _type: "HTMLNode",
-
-    /**
-     * Sets up the node label
-     * @property initContent
-     * @param oData {object} An html string or object containing an html property
-     * @param hasIcon {boolean} determines if the node will be rendered with an
-     * icon or not
-     */
-    initContent: function(oData, hasIcon) { 
-        this.setHtml(oData);
-        this.contentElId = "ygtvcontentel" + this.index;
-		if (!Lang.isUndefined(hasIcon)) { this.hasIcon  = hasIcon; }
-		
-    },
-
-    /**
-     * Synchronizes the node.data, node.html, and the node's content
-     * @property setHtml
-     * @param o {object} An html string or object containing an html property
-     */
-    setHtml: function(o) {
-
-        this.data = o;
-        this.html = (typeof o === "string") ? o : o.html;
-
-        var el = this.getContentEl();
-        if (el) {
-            el.innerHTML = this.html;
-        }
-
-    },
-
-    // overrides YAHOO.widget.Node
-    getContentHtml: function() { 
-        return this.html;
-    },
-	
-	  /**
-     * Returns an object which could be used to build a tree out of this node and its children.
-     * It can be passed to the tree constructor to reproduce this node as a tree.
-     * It will return false if any node loads dynamically, regardless of whether it is loaded or not.
-     * @method getNodeDefinition
-     * @return {Object | false}  definition of the tree or false if any node is defined as dynamic
-     */
-    getNodeDefinition: function() {
-		var def = YAHOO.widget.HTMLNode.superclass.getNodeDefinition.call(this);
-		if (def === false) { return false; }
-		def.html = this.html;
-		return def;
-	
-	}
-});
-})();
-/**
- * A menu-specific implementation that differs from TextNode in that only 
- * one sibling can be expanded at a time.
- * @namespace YAHOO.widget
- * @class MenuNode
- * @extends YAHOO.widget.TextNode
- * @param oData {object} a string or object containing the data that will
- * be used to render this node.
- * Providing a string is the same as providing an object with a single property named label.
- * All values in the oData will be used to set equally named properties in the node
- * as long as the node does have such properties, they are not undefined, private or functions.
- * All attributes are made available in noderef.data, which
- * can be used to store custom attributes.  TreeView.getNode(s)ByProperty
- * can be used to retrieve a node by one of the attributes.
- * @param oParent {YAHOO.widget.Node} this node's parent node
- * @param expanded {boolean} the initial expanded/collapsed state (deprecated; use oData.expanded) 
- * @constructor
- */
-YAHOO.widget.MenuNode = function(oData, oParent, expanded) {
-	YAHOO.widget.MenuNode.superclass.constructor.call(this,oData,oParent,expanded);
-
-   /*
-     * Menus usually allow only one branch to be open at a time.
-     */
-	this.multiExpand = false;
-
-};
-
-YAHOO.extend(YAHOO.widget.MenuNode, YAHOO.widget.TextNode, {
-
-    /**
-     * The node type
-     * @property _type
-     * @private
-    * @default "MenuNode"
-     */
-    _type: "MenuNode"
-
-});
-(function () {
-	var Dom = YAHOO.util.Dom,
-		Lang = YAHOO.lang,
-		Event = YAHOO.util.Event,
-		Calendar = YAHOO.widget.Calendar;
-		
-/**
- * A Date-specific implementation that differs from TextNode in that it uses 
- * YAHOO.widget.Calendar as an in-line editor, if available
- * If Calendar is not available, it behaves as a plain TextNode.
- * @namespace YAHOO.widget
- * @class DateNode
- * @extends YAHOO.widget.TextNode
- * @param oData {object} a string or object containing the data that will
- * be used to render this node.
- * Providing a string is the same as providing an object with a single property named label.
- * All values in the oData will be used to set equally named properties in the node
- * as long as the node does have such properties, they are not undefined, private nor functions.
- * All attributes are made available in noderef.data, which
- * can be used to store custom attributes.  TreeView.getNode(s)ByProperty
- * can be used to retrieve a node by one of the attributes.
- * @param oParent {YAHOO.widget.Node} this node's parent node
- * @param expanded {boolean} the initial expanded/collapsed state (deprecated; use oData.expanded) 
- * @constructor
- */
-YAHOO.widget.DateNode = function(oData, oParent, expanded) {
-	YAHOO.widget.DateNode.superclass.constructor.call(this,oData, oParent, expanded);
-};
-
-YAHOO.extend(YAHOO.widget.DateNode, YAHOO.widget.TextNode, {
-
-    /**
-     * The node type
-     * @property _type
-     * @type string
-     * @private
-     * @default  "DateNode"
-     */
-    _type: "DateNode",
-	
-	/**
-	* Configuration object for the Calendar editor, if used.
-	* See <a href="http://developer.yahoo.com/yui/calendar/#internationalization">http://developer.yahoo.com/yui/calendar/#internationalization</a>
-	* @property calendarConfig
-	*/
-	calendarConfig: null,
-	
-	
-	
-	/** 
-	 *  If YAHOO.widget.Calendar is available, it will pop up a Calendar to enter a new date.  Otherwise, it falls back to a plain &lt;input&gt;  textbox
-	 * @method fillEditorContainer
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 * @return void
-	 */
-	fillEditorContainer: function (editorData) {
-	
-		var cal, container = editorData.inputContainer;
-		
-		if (Lang.isUndefined(Calendar)) {
-			Dom.replaceClass(editorData.editorPanel,'ygtv-edit-DateNode','ygtv-edit-TextNode');
-			YAHOO.widget.DateNode.superclass.fillEditorContainer.call(this, editorData);
-			return;
-		}
-			
-		if (editorData.nodeType != this._type) {
-			editorData.nodeType = this._type;
-			editorData.saveOnEnter = false;
-			
-			editorData.node.destroyEditorContents(editorData);
-
-			editorData.inputObject = cal = new Calendar(container.appendChild(document.createElement('div')));
-			if (this.calendarConfig) { 
-				cal.cfg.applyConfig(this.calendarConfig,true); 
-				cal.cfg.fireQueue();
-			}
-			cal.selectEvent.subscribe(function () {
-				this.tree._closeEditor(true);
-			},this,true);
-		} else {
-			cal = editorData.inputObject;
-		}
-
-		cal.cfg.setProperty("selected",this.label, false); 
-
-		var delim = cal.cfg.getProperty('DATE_FIELD_DELIMITER');
-		var pageDate = this.label.split(delim);
-		cal.cfg.setProperty('pagedate',pageDate[cal.cfg.getProperty('MDY_MONTH_POSITION') -1] + delim + pageDate[cal.cfg.getProperty('MDY_YEAR_POSITION') -1]);
-		cal.cfg.fireQueue();
-
-		cal.render();
-		cal.oDomContainer.focus();
-	},
-	/**
-	* Saves the date entered in the editor into the DateNode label property and displays it.
-	* Overrides Node.saveEditorValue
-	* @method saveEditorValue
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 */
-	saveEditorValue: function (editorData) {
-		var node = editorData.node, value;
-		if (Lang.isUndefined(Calendar)) {
-			value = editorData.inputElement.value;
-		} else {
-			var cal = editorData.inputObject,
-				date = cal.getSelectedDates()[0],
-				dd = [];
-				
-			dd[cal.cfg.getProperty('MDY_DAY_POSITION') -1] = date.getDate();
-			dd[cal.cfg.getProperty('MDY_MONTH_POSITION') -1] = date.getMonth() + 1;
-			dd[cal.cfg.getProperty('MDY_YEAR_POSITION') -1] = date.getFullYear();
-			value = dd.join(cal.cfg.getProperty('DATE_FIELD_DELIMITER'));
-		}
-
-		node.label = value;
-		node.data.label = value;
-		node.getLabelEl().innerHTML = value;
-	}
-
-});
-})();
-(function () {
-	var Dom = YAHOO.util.Dom,
-		Lang = YAHOO.lang, 
-		Event = YAHOO.util.Event,
-		TV = YAHOO.widget.TreeView,
-		TVproto = TV.prototype;
-
-	/**
-	 * An object to store information used for in-line editing
-	 * for all Nodes of all TreeViews. It contains:
-	 * <ul>
-	* <li>active {boolean}, whether there is an active cell editor </li>
-	* <li>whoHasIt {YAHOO.widget.TreeView} TreeView instance that is currently using the editor</li>
-	* <li>nodeType {string} value of static Node._type property, allows reuse of input element if node is of the same type.</li>
-	* <li>editorPanel {HTMLelement (&lt;div&gt;)} element holding the in-line editor</li>
-	* <li>inputContainer {HTMLelement (&lt;div&gt;)} element which will hold the type-specific input element(s) to be filled by the fillEditorContainer method</li>
-	* <li>buttonsContainer {HTMLelement (&lt;div&gt;)} element which holds the &lt;button&gt; elements for Ok/Cancel.  If you don't want any of the buttons, hide it via CSS styles, don't destroy it</li>
-	* <li>node {YAHOO.widget.Node} reference to the Node being edited</li>
-	* <li>saveOnEnter {boolean}, whether the Enter key should be accepted as a Save command (Esc. is always taken as Cancel), disable for multi-line input elements </li>
-	* </ul>
-	*  Editors are free to use this object to store additional data.
-	 * @property editorData
-	 * @static
-	 * @for YAHOO.widget.TreeView
-	 */
-	TV.editorData = {
-		active:false,
-		whoHasIt:null, // which TreeView has it
-		nodeType:null,
-		editorPanel:null,
-		inputContainer:null,
-		buttonsContainer:null,
-		node:null, // which Node is being edited
-		saveOnEnter:true
-		// Each node type is free to add its own properties to this as it sees fit.
-	};
-	
-	/**
-	* Entry point of the editing plug-in.  
-	* TreeView will call this method if it exists when a node label is clicked
-	* @method _nodeEditing
-	* @param node {YAHOO.widget.Node} the node to be edited
-	* @return {Boolean} true to indicate that the node is editable and prevent any further bubbling of the click.
-	 * @for YAHOO.widget.TreeView
-	*/
-	
-	
-	TVproto._nodeEditing = function (node) {
-		if (node.fillEditorContainer && node.editable) {
-			var ed, topLeft, buttons, button, editorData = TV.editorData;
-			editorData.active = true;
-			editorData.whoHasIt = this;
-			if (!editorData.nodeType) {
-				editorData.editorPanel = ed = document.body.appendChild(document.createElement('div'));
-				Dom.addClass(ed,'ygtv-label-editor');
-
-				buttons = editorData.buttonsContainer = ed.appendChild(document.createElement('div'));
-				Dom.addClass(buttons,'ygtv-button-container');
-				button = buttons.appendChild(document.createElement('button'));
-				Dom.addClass(button,'ygtvok');
-				button.innerHTML = ' ';
-				button = buttons.appendChild(document.createElement('button'));
-				Dom.addClass(button,'ygtvcancel');
-				button.innerHTML = ' ';
-				Event.on(buttons, 'click', function (ev) {
-					var target = Event.getTarget(ev);
-					var node = TV.editorData.node;
-					if (Dom.hasClass(target,'ygtvok')) {
-						Event.stopEvent(ev);
-						this._closeEditor(true);
-					}
-					if (Dom.hasClass(target,'ygtvcancel')) {
-						Event.stopEvent(ev);
-						this._closeEditor(false);
-					}
-				}, this, true);
-
-				editorData.inputContainer = ed.appendChild(document.createElement('div'));
-				Dom.addClass(editorData.inputContainer,'ygtv-input');
-				
-				Event.on(ed,'keydown',function (ev) {
-					var editorData = TV.editorData,
-						KEY = YAHOO.util.KeyListener.KEY;
-					switch (ev.keyCode) {
-						case KEY.ENTER:
-							Event.stopEvent(ev);
-							if (editorData.saveOnEnter) { 
-								this._closeEditor(true);
-							}
-							break;
-						case KEY.ESCAPE:
-							Event.stopEvent(ev);
-							this._closeEditor(false);
-							break;
-					}
-				},this,true);
-
-
-				
-			} else {
-				ed = editorData.editorPanel;
-			}
-			editorData.node = node;
-			if (editorData.nodeType) {
-				Dom.removeClass(ed,'ygtv-edit-' + editorData.nodeType);
-			}
-			Dom.addClass(ed,' ygtv-edit-' + node._type);
-			topLeft = Dom.getXY(node.getContentEl());
-			Dom.setStyle(ed,'left',topLeft[0] + 'px');
-			Dom.setStyle(ed,'top',topLeft[1] + 'px');
-			Dom.setStyle(ed,'display','block');
-			ed.focus();
-			node.fillEditorContainer(editorData);
-
-			return true;  // If inline editor available, don't do anything else.
-		}
-	};
-	
-	/**
-	* Method to be associated with an event (clickEvent, dblClickEvent or enterKeyPressed) to pop up the contents editor
-	*  It calls the corresponding node editNode method.
-	* @method onEventEditNode
-	* @param oArgs {object} Object passed as arguments to TreeView event listeners
-	 * @for YAHOO.widget.TreeView
-	*/
-
-	TVproto.onEventEditNode = function (oArgs) {
-		if (oArgs instanceof YAHOO.widget.Node) {
-			oArgs.editNode();
-		} else if (oArgs.node instanceof YAHOO.widget.Node) {
-			oArgs.node.editNode();
-		}
-	};
-	
-	/**
-	* Method to be called when the inline editing is finished and the editor is to be closed
-	* @method _closeEditor
-	* @param save {Boolean} true if the edited value is to be saved, false if discarded
-	* @private
-	 * @for YAHOO.widget.TreeView
-	*/
-	
-	TVproto._closeEditor = function (save) {
-		var ed = TV.editorData, 
-			node = ed.node;
-		if (save) { 
-			ed.node.saveEditorValue(ed); 
-		}
-		Dom.setStyle(ed.editorPanel,'display','none');	
-		ed.active = false;
-		node.focus();
-	};
-	
-	/**
-	*  Entry point for TreeView's destroy method to destroy whatever the editing plug-in has created
-	* @method _destroyEditor
-	* @private
-	 * @for YAHOO.widget.TreeView
-	*/
-	TVproto._destroyEditor = function() {
-		var ed = TV.editorData;
-		if (ed && ed.nodeType && (!ed.active || ed.whoHasIt === this)) {
-			Event.removeListener(ed.editorPanel,'keydown');
-			Event.removeListener(ed.buttonContainer,'click');
-			ed.node.destroyEditorContents(ed);
-			document.body.removeChild(ed.editorPanel);
-			ed.nodeType = ed.editorPanel = ed.inputContainer = ed.buttonsContainer = ed.whoHasIt = ed.node = null;
-			ed.active = false;
-		}
-	};
-	
-	var Nproto = YAHOO.widget.Node.prototype;
-	
-	/**
-	* Signals if the label is editable.  (Ignored on TextNodes with href set.)
-	* @property editable
-	* @type boolean
-         * @for YAHOO.widget.Node
-	*/
-	Nproto.editable = false;
-	
-	/**
-	* pops up the contents editor, if there is one and the node is declared editable
-	* @method editNode
-	 * @for YAHOO.widget.Node
-	*/
-	
-	Nproto.editNode = function () {
-		this.tree._nodeEditing(this);
-	};
-	
-	
-
-
-	/** Placeholder for a function that should provide the inline node label editor.
-	 *   Leaving it set to null will indicate that this node type is not editable.
-	 * It should be overridden by nodes that provide inline editing.
-	 *  The Node-specific editing element (input box, textarea or whatever) should be inserted into editorData.inputContainer.
-	 * @method fillEditorContainer
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 * @return void
-	 * @for YAHOO.widget.Node
-	 */
-	Nproto.fillEditorContainer = null;
-
-	
-	/**
-	* Node-specific destroy function to empty the contents of the inline editor panel
-	* This function is the worst case alternative that will purge all possible events and remove the editor contents
-	* Method Event.purgeElement is somewhat costly so if it can be replaced by specifc Event.removeListeners, it is better to do so.
-	* @method destroyEditorContents
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 * @for YAHOO.widget.Node
-	 */
-	Nproto.destroyEditorContents = function (editorData) {
-		// In the worst case, if the input editor (such as the Calendar) has no destroy method
-		// we can only try to remove all possible events on it.
-		Event.purgeElement(editorData.inputContainer,true);
-		editorData.inputContainer.innerHTML = '';
-	};
-
-	/**
-	* Saves the value entered into the editor.
-	* Should be overridden by each node type
-	* @method saveEditorValue
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 * @for YAHOO.widget.Node
-	 */
-	Nproto.saveEditorValue = function (editorData) {
-	};
-	
-	var TNproto = YAHOO.widget.TextNode.prototype;
-	
-
-
-	/** 
-	 *  Places an &lt;input&gt;  textbox in the input container and loads the label text into it
-	 * @method fillEditorContainer
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 * @return void
-	 * @for YAHOO.widget.TextNode
-	 */
-	TNproto.fillEditorContainer = function (editorData) {
-	
-		var input;
-		// If last node edited is not of the same type as this one, delete it and fill it with our editor
-		if (editorData.nodeType != this._type) {
-			editorData.nodeType = this._type;
-			editorData.saveOnEnter = true;
-			editorData.node.destroyEditorContents(editorData);
-
-			editorData.inputElement = input = editorData.inputContainer.appendChild(document.createElement('input'));
-			
-		} else {
-			// if the last node edited was of the same time, reuse the input element.
-			input = editorData.inputElement;
-		}
-
-		input.value = this.label;
-		input.focus();
-		input.select();
-	};
-	
-	/**
-	* Saves the value entered in the editor into the TextNode label property and displays it
-	* Overrides Node.saveEditorValue
-	* @method saveEditorValue
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 * @for YAHOO.widget.TextNode
-	 */
-	TNproto.saveEditorValue = function (editorData) {
-		var node = editorData.node, value = editorData.inputElement.value;
-		node.label = value;
-		node.data.label = value;
-		node.getLabelEl().innerHTML = value;
-	};
-
-	/**
-	* Destroys the contents of the inline editor panel
-	* Overrides Node.destroyEditorContent
-	* Since we didn't set any event listeners on this inline editor, it is more efficient to avoid the generic method in Node
-	* @method destroyEditorContents
-	 * @param editorData {YAHOO.widget.TreeView.editorData}  a shortcut to the static object holding editing information
-	 * @for YAHOO.widget.TextNode
-	 */
-	TNproto.destroyEditorContents = function (editorData) {
-		editorData.inputContainer.innerHTML = '';
-	};
-})();
-/**
- * A static factory class for tree view expand/collapse animations
- * @class TVAnim
- * @static
- */
-YAHOO.widget.TVAnim = function() {
-    return {
-        /**
-         * Constant for the fade in animation
-         * @property FADE_IN
-         * @type string
-         * @static
-         */
-        FADE_IN: "TVFadeIn",
-
-        /**
-         * Constant for the fade out animation
-         * @property FADE_OUT
-         * @type string
-         * @static
-         */
-        FADE_OUT: "TVFadeOut",
-
-        /**
-         * Returns a ygAnim instance of the given type
-         * @method getAnim
-         * @param type {string} the type of animation
-         * @param el {HTMLElement} the element to element (probably the children div)
-         * @param callback {function} function to invoke when the animation is done.
-         * @return {YAHOO.util.Animation} the animation instance
-         * @static
-         */
-        getAnim: function(type, el, callback) {
-            if (YAHOO.widget[type]) {
-                return new YAHOO.widget[type](el, callback);
-            } else {
-                return null;
-            }
-        },
-
-        /**
-         * Returns true if the specified animation class is available
-         * @method isValid
-         * @param type {string} the type of animation
-         * @return {boolean} true if valid, false if not
-         * @static
-         */
-        isValid: function(type) {
-            return (YAHOO.widget[type]);
-        }
-    };
-} ();
-/**
- * A 1/2 second fade-in animation.
- * @class TVFadeIn
- * @constructor
- * @param el {HTMLElement} the element to animate
- * @param callback {function} function to invoke when the animation is finished
- */
-YAHOO.widget.TVFadeIn = function(el, callback) {
-    /**
-     * The element to animate
-     * @property el
-     * @type HTMLElement
-     */
-    this.el = el;
-
-    /**
-     * the callback to invoke when the animation is complete
-     * @property callback
-     * @type function
-     */
-    this.callback = callback;
-
-};
-
-YAHOO.widget.TVFadeIn.prototype = {
-    /**
-     * Performs the animation
-     * @method animate
-     */
-    animate: function() {
-        var tvanim = this;
-
-        var s = this.el.style;
-        s.opacity = 0.1;
-        s.filter = "alpha(opacity=10)";
-        s.display = "";
-
-        var dur = 0.4; 
-        var a = new YAHOO.util.Anim(this.el, {opacity: {from: 0.1, to: 1, unit:""}}, dur);
-        a.onComplete.subscribe( function() { tvanim.onComplete(); } );
-        a.animate();
-    },
-
-    /**
-     * Clean up and invoke callback
-     * @method onComplete
-     */
-    onComplete: function() {
-        this.callback();
-    },
-
-    /**
-     * toString
-     * @method toString
-     * @return {string} the string representation of the instance
-     */
-    toString: function() {
-        return "TVFadeIn";
-    }
-};
-/**
- * A 1/2 second fade out animation.
- * @class TVFadeOut
- * @constructor
- * @param el {HTMLElement} the element to animate
- * @param callback {Function} function to invoke when the animation is finished
- */
-YAHOO.widget.TVFadeOut = function(el, callback) {
-    /**
-     * The element to animate
-     * @property el
-     * @type HTMLElement
-     */
-    this.el = el;
-
-    /**
-     * the callback to invoke when the animation is complete
-     * @property callback
-     * @type function
-     */
-    this.callback = callback;
-
-};
-
-YAHOO.widget.TVFadeOut.prototype = {
-    /**
-     * Performs the animation
-     * @method animate
-     */
-    animate: function() {
-        var tvanim = this;
-        var dur = 0.4;
-        var a = new YAHOO.util.Anim(this.el, {opacity: {from: 1, to: 0.1, unit:""}}, dur);
-        a.onComplete.subscribe( function() { tvanim.onComplete(); } );
-        a.animate();
-    },
-
-    /**
-     * Clean up and invoke callback
-     * @method onComplete
-     */
-    onComplete: function() {
-        var s = this.el.style;
-        s.display = "none";
-        // s.opacity = 1;
-        s.filter = "alpha(opacity=100)";
-        this.callback();
-    },
-
-    /**
-     * toString
-     * @method toString
-     * @return {string} the string representation of the instance
-     */
-    toString: function() {
-        return "TVFadeOut";
-    }
-};
-YAHOO.register("treeview", YAHOO.widget.TreeView, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/uploader/README b/eclipse.org-common/yui/2.6.0/build/uploader/README
deleted file mode 100644
index 5aaca61..0000000
--- a/eclipse.org-common/yui/2.6.0/build/uploader/README
+++ /dev/null
@@ -1,30 +0,0 @@
-YUI Library - Uploader - Release Notes
-
-2.6.0
-  * Changes due to new security rules in Flash Player 10:
-     * Browse() function has been eliminated; the uploader now has to have an internal Flash UI.
-     * The Uploader can be rendered as a transparent Flash layer, or as a skinned button.
-     * Mouse events on the Uploader are exposed to JavaScript.
-
-  * Known issues:
-	 * The intended behavior of the uploader is not to send any cookies with its requests. Due to a limitation 
-	   of the Windows networking library, when running in IE, the uploader sends the cookies with the upload.
-	   However, you cannot rely on this behavior for authentication, because it's absent in other browsers. 
-	   As a workaround, we suggest either using a cookieless upload method or appending document.cookie
-	   to the upload request.
-	 * There are some known issues around keyboard interaction with the uploader. In particular, when the 
-	   uploader is rendered as a transparent layer, it does not respond to keyboard presses - only mouse
-	   functionality is available. When the uploader is rendered as an image, it receives "Space" and "Enter" 
-	   key presses as triggers, but only if the focus is on the uploader component itself. Keyboard tabbing 
-	   to the component behaves differently in different browsers.
-	 * Because of Flash limitations, the uploader does not support basic authentication.
-	 * Because of Flash limitations, the uploader behavior when working through a proxy server is inconsistent 
-	   and unreliable.
-     * When uploading to HTTPS servers, be aware that Flash does not support self-signed certificates. You 
-       would need to obtain certificates from a recognized certificate authority.
-
-2.5.1
-  * Fix to ensure UploadCancel fires when expected.
-  
-2.5.0
-  * Experimental release
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/uploader/assets/uploader.swf b/eclipse.org-common/yui/2.6.0/build/uploader/assets/uploader.swf
deleted file mode 100644
index 95f2420..0000000
--- a/eclipse.org-common/yui/2.6.0/build/uploader/assets/uploader.swf
+++ /dev/null
Binary files differ
diff --git a/eclipse.org-common/yui/2.6.0/build/uploader/uploader-experimental-debug.js b/eclipse.org-common/yui/2.6.0/build/uploader/uploader-experimental-debug.js
deleted file mode 100644
index abc4134..0000000
--- a/eclipse.org-common/yui/2.6.0/build/uploader/uploader-experimental-debug.js
+++ /dev/null
@@ -1,1069 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/*extern ActiveXObject, __flash_unloadHandler, __flash_savedUnloadHandler */
-/*!
- * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
- *
- * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
- * http://www.opensource.org/licenses/mit-license.php
- */
-var deconcept = deconcept || {};
-
-if(typeof deconcept.util == "undefined" || !deconcept.util)
-{
-	deconcept.util = {};
-}
-
-if(typeof deconcept.SWFObjectUtil == "undefined" || !deconcept.SWFObjectUtil)
-{
-	deconcept.SWFObjectUtil = {};
-}
-
-deconcept.SWFObject = function(swf, id, w, h, ver, c, quality, xiRedirectUrl, redirectUrl, detectKey)
-{
-	if(!document.getElementById) { return; }
-	this.DETECT_KEY = detectKey ? detectKey : 'detectflash';
-	this.skipDetect = deconcept.util.getRequestParameter(this.DETECT_KEY);
-	this.params = {};
-	this.variables = {};
-	this.attributes = [];
-	if(swf) { this.setAttribute('swf', swf); }
-	if(id) { this.setAttribute('id', id); }
-	if(w) { this.setAttribute('width', w); }
-	if(h) { this.setAttribute('height', h); }
-	if(ver) { this.setAttribute('version', new deconcept.PlayerVersion(ver.toString().split("."))); }
-	this.installedVer = deconcept.SWFObjectUtil.getPlayerVersion();
-	if (!window.opera && document.all && this.installedVer.major > 7)
-	{
-		// only add the onunload cleanup if the Flash Player version supports External Interface and we are in IE
-		deconcept.SWFObject.doPrepUnload = true;
-	}
-	if(c)
-	{
-		this.addParam('bgcolor', c);
-	}
-	var q = quality ? quality : 'high';
-	this.addParam('quality', q);
-	this.setAttribute('useExpressInstall', false);
-	this.setAttribute('doExpressInstall', false);
-	var xir = (xiRedirectUrl) ? xiRedirectUrl : window.location;
-	this.setAttribute('xiRedirectUrl', xir);
-	this.setAttribute('redirectUrl', '');
-	if(redirectUrl)
-	{
-		this.setAttribute('redirectUrl', redirectUrl);
-	}
-};
-
-deconcept.SWFObject.prototype =
-{
-	useExpressInstall: function(path)
-	{
-		this.xiSWFPath = !path ? "expressinstall.swf" : path;
-		this.setAttribute('useExpressInstall', true);
-	},
-	setAttribute: function(name, value){
-		this.attributes[name] = value;
-	},
-	getAttribute: function(name){
-		return this.attributes[name];
-	},
-	addParam: function(name, value){
-		this.params[name] = value;
-	},
-	getParams: function(){
-		return this.params;
-	},
-	addVariable: function(name, value){
-		this.variables[name] = value;
-	},
-	getVariable: function(name){
-		return this.variables[name];
-	},
-	getVariables: function(){
-		return this.variables;
-	},
-	getVariablePairs: function(){
-		var variablePairs = [];
-		var key;
-		var variables = this.getVariables();
-		for(key in variables)
-		{
-			if(variables.hasOwnProperty(key))
-			{
-				variablePairs[variablePairs.length] = key +"="+ variables[key];
-			}
-		}
-		return variablePairs;
-	},
-	getSWFHTML: function() {
-		var swfNode = "";
-		var params = {};
-		var key = "";
-		var pairs = "";
-		if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { // netscape plugin architecture
-			if (this.getAttribute("doExpressInstall")) {
-				this.addVariable("MMplayerType", "PlugIn");
-				this.setAttribute('swf', this.xiSWFPath);
-			}
-			swfNode = '<embed type="application/x-shockwave-flash" src="'+ this.getAttribute('swf') +'" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" style="'+ this.getAttribute('style') +'"';
-			swfNode += ' id="'+ this.getAttribute('id') +'" name="'+ this.getAttribute('id') +'" ';
-			params = this.getParams();
-			for(key in params)
-			{
-				if(params.hasOwnProperty(key))
-				{
-					swfNode += [key] +'="'+ params[key] +'" ';
-				}
-			}
-			pairs = this.getVariablePairs().join("&");
-			if (pairs.length > 0){ swfNode += 'flashvars="'+ pairs +'"'; }
-			swfNode += '/>';
-		} else { // PC IE
-			if (this.getAttribute("doExpressInstall")) {
-				this.addVariable("MMplayerType", "ActiveX");
-				this.setAttribute('swf', this.xiSWFPath);
-			}
-			swfNode = '<object id="'+ this.getAttribute('id') +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" style="'+ this.getAttribute('style') +'">';
-			swfNode += '<param name="movie" value="'+ this.getAttribute('swf') +'" />';
-			params = this.getParams();
-			for(key in params)
-			{
-				if(params.hasOwnProperty(key))
-				{
-					swfNode += '<param name="'+ key +'" value="'+ params[key] +'" />';
-				}
-			}
-			pairs = this.getVariablePairs().join("&");
-			if(pairs.length > 0) {swfNode += '<param name="flashvars" value="'+ pairs +'" />';}
-			swfNode += "</object>";
-		}
-		return swfNode;
-	},
-	write: function(elementId)
-	{
-		if(this.getAttribute('useExpressInstall')) {
-			// check to see if we need to do an express install
-			var expressInstallReqVer = new deconcept.PlayerVersion([6,0,65]);
-			if (this.installedVer.versionIsValid(expressInstallReqVer) && !this.installedVer.versionIsValid(this.getAttribute('version'))) {
-				this.setAttribute('doExpressInstall', true);
-				this.addVariable("MMredirectURL", escape(this.getAttribute('xiRedirectUrl')));
-				document.title = document.title.slice(0, 47) + " - Flash Player Installation";
-				this.addVariable("MMdoctitle", document.title);
-			}
-		}
-		if(this.skipDetect || this.getAttribute('doExpressInstall') || this.installedVer.versionIsValid(this.getAttribute('version')))
-		{
-			var n = (typeof elementId == 'string') ? document.getElementById(elementId) : elementId;
-			n.innerHTML = this.getSWFHTML();
-			return true;
-		}
-		else
-		{
-			if(this.getAttribute('redirectUrl') !== "")
-			{
-				document.location.replace(this.getAttribute('redirectUrl'));
-			}
-		}
-		return false;
-	}
-};
-
-/* ---- detection functions ---- */
-deconcept.SWFObjectUtil.getPlayerVersion = function()
-{
-	var axo = null;
-	var PlayerVersion = new deconcept.PlayerVersion([0,0,0]);
-	if(navigator.plugins && navigator.mimeTypes.length)
-	{
-		var x = navigator.plugins["Shockwave Flash"];
-		if(x && x.description)
-		{
-			PlayerVersion = new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split("."));
-		}
-	}
-	else if (navigator.userAgent && navigator.userAgent.indexOf("Windows CE") >= 0)
-	{ // if Windows CE
-		var counter = 3;
-		while(axo)
-		{
-			try
-			{
-				counter++;
-				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+ counter);
-//				document.write("player v: "+ counter);
-				PlayerVersion = new deconcept.PlayerVersion([counter,0,0]);
-			}
-			catch(e)
-			{
-				axo = null;
-			}
-		}
-	}
-	else
-	{ // Win IE (non mobile)
-		// do minor version lookup in IE, but avoid fp6 crashing issues
-		// see http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/
-		try
-		{
-			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
-		}
-		catch(e)
-		{
-			try
-			{
-				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
-				PlayerVersion = new deconcept.PlayerVersion([6,0,21]);
-				axo.AllowScriptAccess = "always"; // error if player version < 6.0.47 (thanks to Michael Williams @ Adobe for this code)
-			}
-			catch(e)
-			{
-				if(PlayerVersion.major == 6)
-				{
-					return PlayerVersion;
-				}
-			}
-			try
-			{
-				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
-			}
-			catch(e) {}
-		}
-		
-		if(axo !== null)
-		{
-			PlayerVersion = new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
-		}
-	}
-	return PlayerVersion;
-};
-
-deconcept.PlayerVersion = function(arrVersion)
-{
-	this.major = arrVersion[0] !== null ? parseInt(arrVersion[0], 0) : 0;
-	this.minor = arrVersion[1] !== null ? parseInt(arrVersion[1], 0) : 0;
-	this.rev = arrVersion[2] !== null ? parseInt(arrVersion[2], 0) : 0;
-};
-
-deconcept.PlayerVersion.prototype.versionIsValid = function(fv)
-{
-	if(this.major < fv.major)
-	{
-		return false;
-	}
-	if(this.major > fv.major)
-	{
-		return true;
-	}
-	if(this.minor < fv.minor)
-	{
-		return false;
-	}
-	if(this.minor > fv.minor)
-	{
-		return true;
-	}
-	if(this.rev < fv.rev)
-	{
-		return false;
-	}
-	return true;
-};
-
-/* ---- get value of query string param ---- */
-deconcept.util =
-{
-	getRequestParameter: function(param)
-	{
-		var q = document.location.search || document.location.hash;
-		if(param === null) { return q; }
-		if(q)
-		{
-			var pairs = q.substring(1).split("&");
-			for(var i=0; i < pairs.length; i++)
-			{
-				if (pairs[i].substring(0, pairs[i].indexOf("=")) == param)
-				{
-					return pairs[i].substring((pairs[i].indexOf("=") + 1));
-				}
-			}
-		}
-		return "";
-	}
-};
-
-/* fix for video streaming bug */
-deconcept.SWFObjectUtil.cleanupSWFs = function()
-{
-	var objects = document.getElementsByTagName("OBJECT");
-	for(var i = objects.length - 1; i >= 0; i--)
-	{
-		objects[i].style.display = 'none';
-		for(var x in objects[i])
-		{
-			if(typeof objects[i][x] == 'function')
-			{
-				objects[i][x] = function(){};
-			}
-		}
-	}
-};
-
-// fixes bug in some fp9 versions see http://blog.deconcept.com/2006/07/28/swfobject-143-released/
-if(deconcept.SWFObject.doPrepUnload)
-{
-	if(!deconcept.unloadSet)
-	{
-		deconcept.SWFObjectUtil.prepUnload = function()
-		{
-			__flash_unloadHandler = function(){};
-			__flash_savedUnloadHandler = function(){};
-			window.attachEvent("onunload", deconcept.SWFObjectUtil.cleanupSWFs);
-		};
-		window.attachEvent("onbeforeunload", deconcept.SWFObjectUtil.prepUnload);
-		deconcept.unloadSet = true;
-	}
-}
-
-/* add document.getElementById if needed (mobile IE < 5) */
-if(!document.getElementById && document.all)
-{
-	document.getElementById = function(id) { return document.all[id]; };
-}
-
-/* add some aliases for ease of use/backwards compatibility */
-var getQueryParamValue = deconcept.util.getRequestParameter;
-var FlashObject = deconcept.SWFObject; // for legacy support
-var SWFObject = deconcept.SWFObject;
-/**
- * Wraps Flash embedding functionality and allows communication with SWF through
- * attributes.
- *
- * @namespace YAHOO.widget
- * @class FlashAdapter
- * @uses YAHOO.util.AttributeProvider
- */
-YAHOO.widget.FlashAdapter = function(swfURL, containerID, attributes, buttonSkin)
-{
-	// set up the initial events and attributes stuff
-	this._queue = this._queue || [];
-	this._events = this._events || {};
-	this._configs = this._configs || {};
-	attributes = attributes || {};
-	
-	//the Flash Player external interface code from Adobe doesn't play nicely
-	//with the default value, yui-gen, in IE
-	this._id = attributes.id = attributes.id || YAHOO.util.Dom.generateId(null, "yuigen");
-	attributes.version = attributes.version || "9.0.45";
-	attributes.backgroundColor = attributes.backgroundColor || "#ffffff";
-	
-	//we can't use the initial attributes right away
-	//so save them for once the SWF finishes loading
-	this._attributes = attributes;
-	
-	this._swfURL = swfURL;
-	this._containerID = containerID;
-	
-	//embed the SWF file in the page
-	this._embedSWF(this._swfURL, this._containerID, attributes.id, attributes.version,
-		attributes.backgroundColor, attributes.expressInstall, attributes.wmode, buttonSkin);
-	
-	/**
-	 * Fires when the SWF is initialized and communication is possible.
-	 * @event contentReady
-	 */
-	//Fix for iframe cross-domain issue with FF2x 
-	try
-	{
-		this.createEvent("contentReady");
-	}
-	catch(e){}
-};
-
-YAHOO.extend(YAHOO.widget.FlashAdapter, YAHOO.util.AttributeProvider,
-{
-	/**
-	 * The URL of the SWF file.
-	 * @property _swfURL
-	 * @type String
-	 * @private
-	 */
-	_swfURL: null,
-
-	/**
-	 * The ID of the containing DIV.
-	 * @property _containerID
-	 * @type String
-	 * @private
-	 */
-	_containerID: null,
-
-	/**
-	 * A reference to the embedded SWF file.
-	 * @property _swf
-	 * @private
-	 */
-	_swf: null,
-
-	/**
-	 * The id of this instance.
-	 * @property _id
-	 * @type String
-	 * @private
-	 */
-	_id: null,
-
-	/**
-	 * Indicates whether the SWF has been initialized and is ready
-	 * to communicate with JavaScript
-	 * @property _initialized
-	 * @type Boolean
-	 * @private
-	 */
-	_initialized: false,
-	
-	/**
-	 * The initializing attributes are stored here until the SWF is ready.
-	 * @property _attributes
-	 * @type Object
-	 * @private
-	 */
-	_attributes: null, //the intializing attributes
-
-	/**
-	 * Public accessor to the unique name of the FlashAdapter instance.
-	 *
-	 * @method toString
-	 * @return {String} Unique name of the FlashAdapter instance.
-	 */
-	toString: function()
-	{
-		return "FlashAdapter " + this._id;
-	},
-
-	/**
-	 * Nulls out the entire FlashAdapter instance and related objects and removes attached
-	 * event listeners and clears out DOM elements inside the container. After calling
-	 * this method, the instance reference should be expliclitly nulled by implementer,
-	 * as in myChart = null. Use with caution!
-	 *
-	 * @method destroy
-	 */
-	destroy: function()
-	{
-		//kill the Flash Player instance
-		if(this._swf)
-		{
-			var container = YAHOO.util.Dom.get(this._containerID);
-			container.removeChild(this._swf);
-		}
-		
-		var instanceName = this._id;
-		
-		//null out properties
-		for(var prop in this)
-		{
-			if(YAHOO.lang.hasOwnProperty(this, prop))
-			{
-				this[prop] = null;
-			}
-		}
-		
-		YAHOO.log("FlashAdapter instance destroyed: " + instanceName);
-	},
-
-	/**
-	 * Embeds the SWF in the page and associates it with this instance.
-	 *
-	 * @method _embedSWF
-	 * @private
-	 */
-	_embedSWF: function(swfURL, containerID, swfID, version, backgroundColor, expressInstall, wmode, buttonSkin)
-	{
-		//standard SWFObject embed
-		var swfObj = new deconcept.SWFObject(swfURL, swfID, "100%", "100%", version, backgroundColor);
-
-		if(expressInstall)
-		{
-			swfObj.useExpressInstall(expressInstall);
-		}
-
-		//make sure we can communicate with ExternalInterface
-		swfObj.addParam("allowScriptAccess", "always");
-		
-		if(wmode)
-		{
-			swfObj.addParam("wmode", wmode);
-		}
-		
-		swfObj.addParam("menu", "false");
-		
-		//again, a useful ExternalInterface trick
-		swfObj.addVariable("allowedDomain", document.location.hostname);
-
-		//tell the SWF which HTML element it is in
-		swfObj.addVariable("elementID", swfID);
-
-		// set the name of the function to call when the swf has an event
-		swfObj.addVariable("eventHandler", "YAHOO.widget.FlashAdapter.eventHandler");
-		if (buttonSkin) {
-		swfObj.addVariable("buttonSkin", buttonSkin);
-		}
-		var container = YAHOO.util.Dom.get(containerID);
-		var result = swfObj.write(container);
-		if(result)
-		{
-			this._swf = YAHOO.util.Dom.get(swfID);
-			//if successful, let's add an owner property to the SWF reference
-			//this will allow the event handler to communicate with a YAHOO.widget.FlashAdapter
-			this._swf.owner = this;
-		}
-		else
-		{
-			YAHOO.log("Unable to load SWF " + swfURL);
-		}
-	},
-
-	/**
-	 * Handles or re-dispatches events received from the SWF.
-	 *
-	 * @method _eventHandler
-	 * @private
-	 */
-	_eventHandler: function(event)
-	{
-		var type = event.type;
-		switch(type)
-		{
-			case "swfReady":
-   				this._loadHandler();
-				return;
-			case "log":
-				YAHOO.log(event.message, event.category, this.toString());
-				return;
-		}
-		
-		//be sure to return after your case or the event will automatically fire!
-		this.fireEvent(type, event);
-	},
-
-	/**
-	 * Called when the SWF has been initialized.
-	 *
-	 * @method _loadHandler
-	 * @private
-	 */
-	_loadHandler: function()
-	{
-		this._initialized = false;
-		this._initAttributes(this._attributes);
-		this.setAttributes(this._attributes, true);
-		
-		this._initialized = true;
-		this.fireEvent("contentReady");
-	},
-	
-	set: function(name, value)
-	{
-		//save all the attributes in case the swf reloads
-		//so that we can pass them in again
-		this._attributes[name] = value;
-		YAHOO.widget.FlashAdapter.superclass.set.call(this, name, value);
-	},
-	
-	/**
-	 * Initializes the attributes.
-	 *
-	 * @method _initAttributes
-	 * @private
-	 */
-	_initAttributes: function(attributes)
-	{
-		//should be overridden if other attributes need to be set up
-
-		/**
-		 * @attribute wmode
-		 * @description Sets the window mode of the Flash Player control. May be
-		 *		"window", "opaque", or "transparent". Only available in the constructor
-		 *		because it may not be set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-		 
-		/**
-		 * @attribute expressInstall
-		 * @description URL pointing to a SWF file that handles Flash Player's express
-		 *		install feature. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-
-		/**
-		 * @attribute version
-		 * @description Minimum required version for the SWF file. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-
-		/**
-		 * @attribute backgroundColor
-		 * @description The background color of the SWF. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-		 
-		/**
-		 * @attribute altText
-		 * @description The alternative text to provide for screen readers and other assistive technology.
-		 * @type String
-		 */
-		this.getAttributeConfig("altText",
-		{
-			method: this._getAltText
-		});
-		this.setAttributeConfig("altText",
-		{
-			method: this._setAltText
-		});
-		
-		/**
-		 * @attribute swfURL
-		 * @description Absolute or relative URL to the SWF displayed by the FlashAdapter. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-		this.getAttributeConfig("swfURL",
-		{
-			method: this._getSWFURL
-		});
-	},
-	
-	/**
-	 * Getter for swfURL attribute.
-	 *
-	 * @method _getSWFURL
-	 * @private
-	 */
-	_getSWFURL: function()
-	{
-		return this._swfURL;
-	},
-	
-	/**
-	 * Getter for altText attribute.
-	 *
-	 * @method _getAltText
-	 * @private
-	 */
-	_getAltText: function()
-	{
-		return this._swf.getAltText();
-	},
-
-	/**
-	 * Setter for altText attribute.
-	 *
-	 * @method _setAltText
-	 * @private
-	 */
-	_setAltText: function(value)
-	{
-		return this._swf.setAltText(value);
-	}
-});
-
-/**
- * Receives event messages from SWF and passes them to the correct instance
- * of FlashAdapter.
- *
- * @method YAHOO.widget.FlashAdapter.eventHandler
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.eventHandler = function(elementID, event)
-{
-	var loadedSWF = YAHOO.util.Dom.get(elementID);
-	if(!loadedSWF.owner)
-	{
-		//fix for ie: if owner doesn't exist yet, try again in a moment
-		setTimeout(function() { YAHOO.widget.FlashAdapter.eventHandler( elementID, event ); }, 0);
-	}
-	else
-	{
-		loadedSWF.owner._eventHandler(event);
-	}
-};
-
-/**
- * The number of proxy functions that have been created.
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.proxyFunctionCount = 0;
-
-/**
- * Creates a globally accessible function that wraps a function reference.
- * Returns the proxy function's name as a string for use by the SWF through
- * ExternalInterface.
- *
- * @method YAHOO.widget.FlashAdapter.createProxyFunction
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.createProxyFunction = function(func)
-{
-	var index = YAHOO.widget.FlashAdapter.proxyFunctionCount;
-	YAHOO.widget.FlashAdapter["proxyFunction" + index] = function()
-	{
-		return func.apply(null, arguments);
-	};
-	YAHOO.widget.FlashAdapter.proxyFunctionCount++;
-	return "YAHOO.widget.FlashAdapter.proxyFunction" + index.toString();
-};
-
-/**
- * Removes a function created with createProxyFunction()
- * 
- * @method YAHOO.widget.FlashAdapter.removeProxyFunction
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.removeProxyFunction = function(funcName)
-{
-	//quick error check
-	if(!funcName || funcName.indexOf("YAHOO.widget.FlashAdapter.proxyFunction") < 0)
-	{
-		return;
-	}
-	
-	funcName = funcName.substr(26);
-	YAHOO.widget.FlashAdapter[funcName] = null;
-};
-/**
- * The YUI Uploader Control
- * @module uploader
- * @description <p>YUI Uploader provides file upload functionality that goes beyond the basic browser-based methods. 
- * Specifically, the YUI Uploader allows for:
- * <ol>
- * <li> Multiple file selection in a single "Open File" dialog.</li>
- * <li> File extension filters to facilitate the user's selection.</li>
- * <li> Progress tracking for file uploads.</li>
- * <li> A range of file metadata: filename, size, date created, date modified, and author.</li>
- * <li> A set of events dispatched on various aspects of the file upload process: file selection, upload progress, upload completion, etc.</li>
- * <li> Inclusion of additional data in the file upload POST request.</li>
- * <li> Faster file upload on broadband connections due to the modified SEND buffer size.</li>
- * <li> Same-page server response upon completion of the file upload.</li>
- * </ol>
- * </p>
- * @title Uploader
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event
- */
-/**
- * Uploader class for the YUI Uploader component.
- *
- * @namespace YAHOO.widget
- * @class Uploader
- * @uses YAHOO.widget.FlashAdapter
- * @constructor
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param buttonSkin {String} [optional]. If defined, the uploader is 
- * rendered as a button. This parameter must provide the URL of a button
- * skin sprite image. Acceptable types are: jpg, gif, png and swf. The 
- * sprite is divided evenly into four sections along its height (e.g., if
- * the sprite is 200 px tall, it's divided into four sections 50px each).
- * Each section is used as a skin for a specific state of the button: top
- * section is "up", second section is "over", third section is "down", and
- * fourth section is "disabled". 
- * If the parameter is not supplied, the uploader is rendered transparent,
- * and it's the developer's responsibility to create a visible UI below it.
-  */
-YAHOO.widget.Uploader = function(containerId, buttonSkin)
-{
-	var newWMode = "window";
-
-	if (!(buttonSkin)) {
-		newWMode = "transparent";
-	}
-	
- 	YAHOO.widget.Uploader.superclass.constructor.call(this, YAHOO.widget.Uploader.SWFURL, containerId, {wmode:newWMode}, buttonSkin);
-
-	this._swf.tabIndex="1";
-
-	/**
-	 * Fires when the mouse is pressed over the Uploader.
-	 * Only fires when the Uploader UI is enabled and
-	 * the render type is 'transparent'.
-	 *
-	 * @event mouseDown
-	 * @param event.type {String} The event type
-	 */
-	this.createEvent("mouseDown");
-	
-	/**
-	 * Fires when the mouse is released over the Uploader.
-	 * Only fires when the Uploader UI is enabled and
-	 * the render type is 'transparent'.
-	 *
-	 * @event mouseUp
-	 * @param event.type {String} The event type
-	 */
-	this.createEvent("mouseUp");
-
-	/**
-	 * Fires when the mouse rolls over the Uploader.
-	 *
-	 * @event rollOver
-	 * @param event.type {String} The event type
-	 */
-	this.createEvent("rollOver");
-	
-	/**
-	 * Fires when the mouse rolls out of the Uploader.
-	 *
-	 * @event rollOut
-	 * @param event.type {String} The event type
-	 */
-	this.createEvent("rollOut");
-	
-	/**
-	 * Fires when the uploader is clicked.
-	 *
-	 * @event click
-	 * @param event.type {String} The event type
-	 */
-	this.createEvent("click");
-	
-	/**
-	 * Fires when the user has finished selecting files in the "Open File" dialog.
-	 *
-	 * @event fileSelect
-	 * @param event.type {String} The event type
-	 * @param event.fileList {Array} An array of objects with file information
-	 * @param event.fileList[].size {Number} File size in bytes for a specific file in fileList
-	 * @param event.fileList[].cDate {Date} Creation date for a specific file in fileList
-	 * @param event.fileList[].mDate {Date} Modification date for a specific file in fileList
-	 * @param event.fileList[].name {String} File name for a specific file in fileList
-	 * @param event.fileList[].id {String} Unique file id of a specific file in fileList
-	 */
-	this.createEvent("fileSelect");
-
-	/**
-	 * Fires when an upload of a specific file has started.
-	 *
-	 * @event uploadStart
-	 * @param event.type {String} The event type
-	 * @param event.id {String} The id of the file that's started to upload
-	 */
-	this.createEvent("uploadStart");
-
-	/**
-	 * Fires when new information about the upload progress for a specific file is available.
-	 *
-	 * @event uploadProgress
-	 * @param event.type {String} The event type
-	 * @param event.id {String} The id of the file with which the upload progress data is associated
-	 * @param bytesLoaded {Number} The number of bytes of the file uploaded so far
-	 * @param bytesTotal {Number} The total size of the file
-	 */
-	this.createEvent("uploadProgress");
-	
-	/**
-	 * Fires when an upload for a specific file is cancelled.
-	 *
-	 * @event uploadCancel
-	 * @param event.type {String} The event type
-	 * @param event.id {String} The id of the file with which the upload has been cancelled.
-	 */	
-	this.createEvent("uploadCancel");
-
-	/**
-	 * Fires when an upload for a specific file is complete.
-	 *
-	 * @event uploadComplete
-	 * @param event.type {String} The event type
-	 * @param event.id {String} The id of the file for which the upload has been completed.
-	 */	
-	this.createEvent("uploadComplete");
-
-	/**
-	 * Fires when the server sends data in response to a completed upload.
-	 *
-	 * @event uploadCompleteData
-	 * @param event.type {String} The event type
-	 * @param event.id {String} The id of the file for which the upload has been completed.
-	 * @param event.data {String} The raw data returned by the server in response to the upload.
-	 */	
-	this.createEvent("uploadCompleteData");
-	
-	/**
-	 * Fires when an upload error occurs.
-	 *
-	 * @event uploadError
-	 * @param event.type {String} The event type
-	 * @param event.id {String} The id of the file that was being uploaded when the error has occurred.
-	 * @param event.status {String} The status message associated with the error.
-	 */	
-	this.createEvent("uploadError");
-}
-
-/**
- * Location of the Uploader SWF
- *
- * @property Chart.SWFURL
- * @private
- * @static
- * @final
- * @default "assets/uploader.swf"
- */
-YAHOO.widget.Uploader.SWFURL = "assets/uploader.swf";
-
-YAHOO.extend(YAHOO.widget.Uploader, YAHOO.widget.FlashAdapter,
-{	
-/**
- * Starts the upload of the file specified by fileID to the location specified by uploadScriptPath.
- *
- * @param fileID {String} The id of the file to start uploading.
- * @param uploadScriptPath {String} The URL of the upload location.
- * @param method {String} Either "GET" or "POST", specifying how the variables accompanying the file upload POST request should be submitted. "GET" by default.
- * @param vars {Object} The object containing variables to be sent in the same request as the file upload.
- * @param fieldName {String} The name of the variable in the POST request containing the file data. "Filedata" by default.
- * @param headers {Object} An object containing variables that should be set as headers in the POST request. The following header names
- * cannot be used: 
- * <code>
- * Accept-Charset, Accept-Encoding, Accept-Ranges, Age, Allow, Allowed, Authorization, Charge-To, Connect, Connection, 
- * Content-Length, Content-Location, Content-Range, Cookie, Date, Delete, ETag, Expect, Get, Head, Host, Keep-Alive, 
- * Last-Modified, Location, Max-Forwards, Options, Post, Proxy-Authenticate, Proxy-Authorization, Proxy-Connection, 
- * Public, Put, Range, Referer, Request-Range, Retry-After, Server, TE, Trace, Trailer, Transfer-Encoding, Upgrade, 
- * URI, User-Agent, Vary, Via, Warning, WWW-Authenticate, x-flash-version.
- * </code> 
- */
-	upload: function(fileID, uploadScriptPath, method, vars, fieldName)
-	{
-		this._swf.upload(fileID, uploadScriptPath, method, vars, fieldName);
-	},
-	
-/**
- * Starts uploading all files in the queue. If this function is called, the upload queue is automatically managed.
- *
- * @param uploadScriptPath {String} The URL of the upload location.
- * @param method {String} Either "GET" or "POST", specifying how the variables accompanying the file upload POST request should be submitted. "GET" by default.
- * @param vars {Object} The object containing variables to be sent in the same request as the file upload.
- * @param fieldName {String} The name of the variable in the POST request containing the file data. "Filedata" by default.
- * @param headers {Object} An object containing variables that should be set as headers in the POST request. The following header names
- * cannot be used: 
- * <code>
- * Accept-Charset, Accept-Encoding, Accept-Ranges, Age, Allow, Allowed, Authorization, Charge-To, Connect, Connection, 
- * Content-Length, Content-Location, Content-Range, Cookie, Date, Delete, ETag, Expect, Get, Head, Host, Keep-Alive, 
- * Last-Modified, Location, Max-Forwards, Options, Post, Proxy-Authenticate, Proxy-Authorization, Proxy-Connection, 
- * Public, Put, Range, Referer, Request-Range, Retry-After, Server, TE, Trace, Trailer, Transfer-Encoding, Upgrade, 
- * URI, User-Agent, Vary, Via, Warning, WWW-Authenticate, x-flash-version.
- * </code> 
- */
-	uploadAll: function(uploadScriptPath, method, vars, fieldName)
-	{
-		this._swf.uploadAll(uploadScriptPath, method, vars, fieldName);
-	},
-
-/**
- * Cancels the upload of a specified file. If no file id is specified, all ongoing uploads are cancelled.
- *
- * @param fileID {String} The ID of the file whose upload should be cancelled.
- */
-	cancel: function(fileID)
-	{
-		this._swf.cancel(fileID);
-	},
-
-/**
- * Clears the list of files queued for upload.
- *
- */
-	clearFileList: function()
-	{
-		this._swf.clearFileList();
-	},
-	
-/**
- * Removes the specified file from the upload queue. 
- *
- * @param fileID {String} The id of the file to remove from the upload queue. 
- */
-	removeFile: function (fileID) 
-	{
-		this._swf.removeFile(fileID);
-	},
-
-/**
- * Turns the logging functionality on.
- * Uses Flash internal trace logging, as well as YUI Logger, if available.
- *
- * @param allowLogging {Boolean} If true, logs are output; otherwise, no logs are produced.
- */
-    setAllowLogging: function (allowLogging)
-    {
-       this._swf.setAllowLogging(allowLogging);
-    },
-
-/**
- * Sets the number of simultaneous uploads when using uploadAll()
- * The minimum value is 1, and maximum value is 5. The default value is 2.
- *
- * @param simUploadLimit {int} Number of simultaneous uploads, between 1 and 5.
- */
-    setSimUploadLimit : function (simUploadLimit)
-    {
-       this._swf.setSimUploadLimit(simUploadLimit);
-    },
-
-/**
- * Sets the flag allowing users to select multiple files for the upload.
- *
- * @param allowMultipleFiles {Boolean} If true, multiple files can be selected. False by default.
- */     
-    setAllowMultipleFiles : function (allowMultipleFiles) 
-    {
-       this._swf.setAllowMultipleFiles(allowMultipleFiles);
-    },
-
-/**
- * Sets the file filters for the "Browse" dialog.
- *
- *  @param newFilterArray An array of sets of key-value pairs of the form
- *  {extensions: extensionString, description: descriptionString, [optional]macType: macTypeString}
- *  The extensions string is a semicolon-delimited list of elements of the form "*.xxx", 
- *  e.g. "*.jpg;*.gif;*.png". 
- */       
-    setFileFilters : function (fileFilters) 
-    {
-       this._swf.setFileFilters(fileFilters);
-    },
-
-	/**
-	 * Enables the mouse events on the Uploader.
-	 * If the uploader is being rendered as a button,
-	 * then the button's skin is set to "up"
-	 * (first section of the button skin sprite).
-	 *
-	 */
-	enable : function ()
-	{
-		this._swf.enable();
-	},
-
-	/**
-	 * Disables the mouse events on the Uploader.
-	 * If the uploader is being rendered as a button,
-	 * then the button's skin is set to "disabled"
-	 * (fourth section of the button skin sprite).
-	 *
-	 */
-	disable : function () 
-	{
-		this._swf.disable();
-	}
-});
-YAHOO.register("uploader", YAHOO.widget.Uploader, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/uploader/uploader-experimental-min.js b/eclipse.org-common/yui/2.6.0/build/uploader/uploader-experimental-min.js
deleted file mode 100644
index 11cbb77..0000000
--- a/eclipse.org-common/yui/2.6.0/build/uploader/uploader-experimental-min.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/*
- * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
- *
- * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
- * http://www.opensource.org/licenses/mit-license.php
- */
-var deconcept=deconcept||{};if(typeof deconcept.util=="undefined"||!deconcept.util){deconcept.util={};}if(typeof deconcept.SWFObjectUtil=="undefined"||!deconcept.SWFObjectUtil){deconcept.SWFObjectUtil={};}deconcept.SWFObject=function(E,C,K,F,H,J,L,G,A,D){if(!document.getElementById){return ;}this.DETECT_KEY=D?D:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params={};this.variables={};this.attributes=[];if(E){this.setAttribute("swf",E);}if(C){this.setAttribute("id",C);}if(K){this.setAttribute("width",K);}if(F){this.setAttribute("height",F);}if(H){this.setAttribute("version",new deconcept.PlayerVersion(H.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(J){this.addParam("bgcolor",J);}var B=L?L:"high";this.addParam("quality",B);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var I=(G)?G:window.location;this.setAttribute("xiRedirectUrl",I);this.setAttribute("redirectUrl","");if(A){this.setAttribute("redirectUrl",A);}};deconcept.SWFObject.prototype={useExpressInstall:function(A){this.xiSWFPath=!A?"expressinstall.swf":A;this.setAttribute("useExpressInstall",true);},setAttribute:function(A,B){this.attributes[A]=B;},getAttribute:function(A){return this.attributes[A];},addParam:function(A,B){this.params[A]=B;},getParams:function(){return this.params;},addVariable:function(A,B){this.variables[A]=B;},getVariable:function(A){return this.variables[A];},getVariables:function(){return this.variables;},getVariablePairs:function(){var A=[];var B;var C=this.getVariables();for(B in C){if(C.hasOwnProperty(B)){A[A.length]=B+"="+C[B];}}return A;},getSWFHTML:function(){var D="";var C={};var A="";var B="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}D='<embed type="application/x-shockwave-flash" src="'+this.getAttribute("swf")+'" width="'+this.getAttribute("width")+'" height="'+this.getAttribute("height")+'" style="'+this.getAttribute("style")+'"';D+=' id="'+this.getAttribute("id")+'" name="'+this.getAttribute("id")+'" ';C=this.getParams();for(A in C){if(C.hasOwnProperty(A)){D+=[A]+'="'+C[A]+'" ';}}B=this.getVariablePairs().join("&");if(B.length>0){D+='flashvars="'+B+'"';}D+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}D='<object id="'+this.getAttribute("id")+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+this.getAttribute("width")+'" height="'+this.getAttribute("height")+'" style="'+this.getAttribute("style")+'">';D+='<param name="movie" value="'+this.getAttribute("swf")+'" />';C=this.getParams();for(A in C){if(C.hasOwnProperty(A)){D+='<param name="'+A+'" value="'+C[A]+'" />';}}B=this.getVariablePairs().join("&");if(B.length>0){D+='<param name="flashvars" value="'+B+'" />';}D+="</object>";}return D;},write:function(A){if(this.getAttribute("useExpressInstall")){var B=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(B)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var C=(typeof A=="string")?document.getElementById(A):A;C.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!==""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var D=null;var C=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var A=navigator.plugins["Shockwave Flash"];if(A&&A.description){C=new deconcept.PlayerVersion(A.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var B=3;while(D){try{B++;D=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+B);C=new deconcept.PlayerVersion([B,0,0]);}catch(E){D=null;}}}else{try{D=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(E){try{D=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");C=new deconcept.PlayerVersion([6,0,21]);D.AllowScriptAccess="always";}catch(E){if(C.major==6){return C;}}try{D=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(E){}}if(D!==null){C=new deconcept.PlayerVersion(D.GetVariable("$version").split(" ")[1].split(","));}}}return C;};deconcept.PlayerVersion=function(A){this.major=A[0]!==null?parseInt(A[0],0):0;this.minor=A[1]!==null?parseInt(A[1],0):0;this.rev=A[2]!==null?parseInt(A[2],0):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(A){if(this.major<A.major){return false;}if(this.major>A.major){return true;}if(this.minor<A.minor){return false;}if(this.minor>A.minor){return true;}if(this.rev<A.rev){return false;}return true;};deconcept.util={getRequestParameter:function(D){var C=document.location.search||document.location.hash;if(D===null){return C;}if(C){var B=C.substring(1).split("&");for(var A=0;A<B.length;A++){if(B[A].substring(0,B[A].indexOf("="))==D){return B[A].substring((B[A].indexOf("=")+1));}}}return"";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var C=document.getElementsByTagName("OBJECT");for(var B=C.length-1;B>=0;B--){C[B].style.display="none";for(var A in C[B]){if(typeof C[B][A]=="function"){C[B][A]=function(){};
-}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(A){return document.all[A];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;YAHOO.widget.FlashAdapter=function(E,A,B,C){this._queue=this._queue||[];this._events=this._events||{};this._configs=this._configs||{};B=B||{};this._id=B.id=B.id||YAHOO.util.Dom.generateId(null,"yuigen");B.version=B.version||"9.0.45";B.backgroundColor=B.backgroundColor||"#ffffff";this._attributes=B;this._swfURL=E;this._containerID=A;this._embedSWF(this._swfURL,this._containerID,B.id,B.version,B.backgroundColor,B.expressInstall,B.wmode,C);try{this.createEvent("contentReady");}catch(D){}};YAHOO.extend(YAHOO.widget.FlashAdapter,YAHOO.util.AttributeProvider,{_swfURL:null,_containerID:null,_swf:null,_id:null,_initialized:false,_attributes:null,toString:function(){return"FlashAdapter "+this._id;},destroy:function(){if(this._swf){var B=YAHOO.util.Dom.get(this._containerID);B.removeChild(this._swf);}var A=this._id;for(var C in this){if(YAHOO.lang.hasOwnProperty(this,C)){this[C]=null;}}},_embedSWF:function(J,I,E,C,F,G,B,H){var D=new deconcept.SWFObject(J,E,"100%","100%",C,F);if(G){D.useExpressInstall(G);}D.addParam("allowScriptAccess","always");if(B){D.addParam("wmode",B);}D.addParam("menu","false");D.addVariable("allowedDomain",document.location.hostname);D.addVariable("elementID",E);D.addVariable("eventHandler","YAHOO.widget.FlashAdapter.eventHandler");if(H){D.addVariable("buttonSkin",H);}var A=YAHOO.util.Dom.get(I);var K=D.write(A);if(K){this._swf=YAHOO.util.Dom.get(E);this._swf.owner=this;}else{}},_eventHandler:function(B){var A=B.type;switch(A){case"swfReady":this._loadHandler();return ;case"log":return ;}this.fireEvent(A,B);},_loadHandler:function(){this._initialized=false;this._initAttributes(this._attributes);this.setAttributes(this._attributes,true);this._initialized=true;this.fireEvent("contentReady");},set:function(A,B){this._attributes[A]=B;YAHOO.widget.FlashAdapter.superclass.set.call(this,A,B);},_initAttributes:function(A){this.getAttributeConfig("altText",{method:this._getAltText});this.setAttributeConfig("altText",{method:this._setAltText});this.getAttributeConfig("swfURL",{method:this._getSWFURL});},_getSWFURL:function(){return this._swfURL;},_getAltText:function(){return this._swf.getAltText();},_setAltText:function(A){return this._swf.setAltText(A);}});YAHOO.widget.FlashAdapter.eventHandler=function(A,C){var B=YAHOO.util.Dom.get(A);if(!B.owner){setTimeout(function(){YAHOO.widget.FlashAdapter.eventHandler(A,C);},0);}else{B.owner._eventHandler(C);}};YAHOO.widget.FlashAdapter.proxyFunctionCount=0;YAHOO.widget.FlashAdapter.createProxyFunction=function(B){var A=YAHOO.widget.FlashAdapter.proxyFunctionCount;YAHOO.widget.FlashAdapter["proxyFunction"+A]=function(){return B.apply(null,arguments);};YAHOO.widget.FlashAdapter.proxyFunctionCount++;return"YAHOO.widget.FlashAdapter.proxyFunction"+A.toString();};YAHOO.widget.FlashAdapter.removeProxyFunction=function(A){if(!A||A.indexOf("YAHOO.widget.FlashAdapter.proxyFunction")<0){return ;}A=A.substr(26);YAHOO.widget.FlashAdapter[A]=null;};YAHOO.widget.Uploader=function(A,B){var C="window";if(!(B)){C="transparent";}YAHOO.widget.Uploader.superclass.constructor.call(this,YAHOO.widget.Uploader.SWFURL,A,{wmode:C},B);this._swf.tabIndex="1";this.createEvent("mouseDown");this.createEvent("mouseUp");this.createEvent("rollOver");this.createEvent("rollOut");this.createEvent("click");this.createEvent("fileSelect");this.createEvent("uploadStart");this.createEvent("uploadProgress");this.createEvent("uploadCancel");this.createEvent("uploadComplete");this.createEvent("uploadCompleteData");this.createEvent("uploadError");};YAHOO.widget.Uploader.SWFURL="assets/uploader.swf";YAHOO.extend(YAHOO.widget.Uploader,YAHOO.widget.FlashAdapter,{upload:function(A,B,E,C,D){this._swf.upload(A,B,E,C,D);},uploadAll:function(A,D,B,C){this._swf.uploadAll(A,D,B,C);},cancel:function(A){this._swf.cancel(A);},clearFileList:function(){this._swf.clearFileList();},removeFile:function(A){this._swf.removeFile(A);},setAllowLogging:function(A){this._swf.setAllowLogging(A);},setSimUploadLimit:function(A){this._swf.setSimUploadLimit(A);},setAllowMultipleFiles:function(A){this._swf.setAllowMultipleFiles(A);},setFileFilters:function(A){this._swf.setFileFilters(A);},enable:function(){this._swf.enable();},disable:function(){this._swf.disable();}});YAHOO.register("uploader",YAHOO.widget.Uploader,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/uploader/uploader-experimental.js b/eclipse.org-common/yui/2.6.0/build/uploader/uploader-experimental.js
deleted file mode 100644
index 5758899..0000000
--- a/eclipse.org-common/yui/2.6.0/build/uploader/uploader-experimental.js
+++ /dev/null
@@ -1,1066 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/*extern ActiveXObject, __flash_unloadHandler, __flash_savedUnloadHandler */
-/*!
- * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
- *
- * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
- * http://www.opensource.org/licenses/mit-license.php
- */
-var deconcept = deconcept || {};
-
-if(typeof deconcept.util == "undefined" || !deconcept.util)
-{
-	deconcept.util = {};
-}
-
-if(typeof deconcept.SWFObjectUtil == "undefined" || !deconcept.SWFObjectUtil)
-{
-	deconcept.SWFObjectUtil = {};
-}
-
-deconcept.SWFObject = function(swf, id, w, h, ver, c, quality, xiRedirectUrl, redirectUrl, detectKey)
-{
-	if(!document.getElementById) { return; }
-	this.DETECT_KEY = detectKey ? detectKey : 'detectflash';
-	this.skipDetect = deconcept.util.getRequestParameter(this.DETECT_KEY);
-	this.params = {};
-	this.variables = {};
-	this.attributes = [];
-	if(swf) { this.setAttribute('swf', swf); }
-	if(id) { this.setAttribute('id', id); }
-	if(w) { this.setAttribute('width', w); }
-	if(h) { this.setAttribute('height', h); }
-	if(ver) { this.setAttribute('version', new deconcept.PlayerVersion(ver.toString().split("."))); }
-	this.installedVer = deconcept.SWFObjectUtil.getPlayerVersion();
-	if (!window.opera && document.all && this.installedVer.major > 7)
-	{
-		// only add the onunload cleanup if the Flash Player version supports External Interface and we are in IE
-		deconcept.SWFObject.doPrepUnload = true;
-	}
-	if(c)
-	{
-		this.addParam('bgcolor', c);
-	}
-	var q = quality ? quality : 'high';
-	this.addParam('quality', q);
-	this.setAttribute('useExpressInstall', false);
-	this.setAttribute('doExpressInstall', false);
-	var xir = (xiRedirectUrl) ? xiRedirectUrl : window.location;
-	this.setAttribute('xiRedirectUrl', xir);
-	this.setAttribute('redirectUrl', '');
-	if(redirectUrl)
-	{
-		this.setAttribute('redirectUrl', redirectUrl);
-	}
-};
-
-deconcept.SWFObject.prototype =
-{
-	useExpressInstall: function(path)
-	{
-		this.xiSWFPath = !path ? "expressinstall.swf" : path;
-		this.setAttribute('useExpressInstall', true);
-	},
-	setAttribute: function(name, value){
-		this.attributes[name] = value;
-	},
-	getAttribute: function(name){
-		return this.attributes[name];
-	},
-	addParam: function(name, value){
-		this.params[name] = value;
-	},
-	getParams: function(){
-		return this.params;
-	},
-	addVariable: function(name, value){
-		this.variables[name] = value;
-	},
-	getVariable: function(name){
-		return this.variables[name];
-	},
-	getVariables: function(){
-		return this.variables;
-	},
-	getVariablePairs: function(){
-		var variablePairs = [];
-		var key;
-		var variables = this.getVariables();
-		for(key in variables)
-		{
-			if(variables.hasOwnProperty(key))
-			{
-				variablePairs[variablePairs.length] = key +"="+ variables[key];
-			}
-		}
-		return variablePairs;
-	},
-	getSWFHTML: function() {
-		var swfNode = "";
-		var params = {};
-		var key = "";
-		var pairs = "";
-		if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { // netscape plugin architecture
-			if (this.getAttribute("doExpressInstall")) {
-				this.addVariable("MMplayerType", "PlugIn");
-				this.setAttribute('swf', this.xiSWFPath);
-			}
-			swfNode = '<embed type="application/x-shockwave-flash" src="'+ this.getAttribute('swf') +'" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" style="'+ this.getAttribute('style') +'"';
-			swfNode += ' id="'+ this.getAttribute('id') +'" name="'+ this.getAttribute('id') +'" ';
-			params = this.getParams();
-			for(key in params)
-			{
-				if(params.hasOwnProperty(key))
-				{
-					swfNode += [key] +'="'+ params[key] +'" ';
-				}
-			}
-			pairs = this.getVariablePairs().join("&");
-			if (pairs.length > 0){ swfNode += 'flashvars="'+ pairs +'"'; }
-			swfNode += '/>';
-		} else { // PC IE
-			if (this.getAttribute("doExpressInstall")) {
-				this.addVariable("MMplayerType", "ActiveX");
-				this.setAttribute('swf', this.xiSWFPath);
-			}
-			swfNode = '<object id="'+ this.getAttribute('id') +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" style="'+ this.getAttribute('style') +'">';
-			swfNode += '<param name="movie" value="'+ this.getAttribute('swf') +'" />';
-			params = this.getParams();
-			for(key in params)
-			{
-				if(params.hasOwnProperty(key))
-				{
-					swfNode += '<param name="'+ key +'" value="'+ params[key] +'" />';
-				}
-			}
-			pairs = this.getVariablePairs().join("&");
-			if(pairs.length > 0) {swfNode += '<param name="flashvars" value="'+ pairs +'" />';}
-			swfNode += "</object>";
-		}
-		return swfNode;
-	},
-	write: function(elementId)
-	{
-		if(this.getAttribute('useExpressInstall')) {
-			// check to see if we need to do an express install
-			var expressInstallReqVer = new deconcept.PlayerVersion([6,0,65]);
-			if (this.installedVer.versionIsValid(expressInstallReqVer) && !this.installedVer.versionIsValid(this.getAttribute('version'))) {
-				this.setAttribute('doExpressInstall', true);
-				this.addVariable("MMredirectURL", escape(this.getAttribute('xiRedirectUrl')));
-				document.title = document.title.slice(0, 47) + " - Flash Player Installation";
-				this.addVariable("MMdoctitle", document.title);
-			}
-		}
-		if(this.skipDetect || this.getAttribute('doExpressInstall') || this.installedVer.versionIsValid(this.getAttribute('version')))
-		{
-			var n = (typeof elementId == 'string') ? document.getElementById(elementId) : elementId;
-			n.innerHTML = this.getSWFHTML();
-			return true;
-		}
-		else
-		{
-			if(this.getAttribute('redirectUrl') !== "")
-			{
-				document.location.replace(this.getAttribute('redirectUrl'));
-			}
-		}
-		return false;
-	}
-};
-
-/* ---- detection functions ---- */
-deconcept.SWFObjectUtil.getPlayerVersion = function()
-{
-	var axo = null;
-	var PlayerVersion = new deconcept.PlayerVersion([0,0,0]);
-	if(navigator.plugins && navigator.mimeTypes.length)
-	{
-		var x = navigator.plugins["Shockwave Flash"];
-		if(x && x.description)
-		{
-			PlayerVersion = new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split("."));
-		}
-	}
-	else if (navigator.userAgent && navigator.userAgent.indexOf("Windows CE") >= 0)
-	{ // if Windows CE
-		var counter = 3;
-		while(axo)
-		{
-			try
-			{
-				counter++;
-				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+ counter);
-//				document.write("player v: "+ counter);
-				PlayerVersion = new deconcept.PlayerVersion([counter,0,0]);
-			}
-			catch(e)
-			{
-				axo = null;
-			}
-		}
-	}
-	else
-	{ // Win IE (non mobile)
-		// do minor version lookup in IE, but avoid fp6 crashing issues
-		// see http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/
-		try
-		{
-			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
-		}
-		catch(e)
-		{
-			try
-			{
-				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
-				PlayerVersion = new deconcept.PlayerVersion([6,0,21]);
-				axo.AllowScriptAccess = "always"; // error if player version < 6.0.47 (thanks to Michael Williams @ Adobe for this code)
-			}
-			catch(e)
-			{
-				if(PlayerVersion.major == 6)
-				{
-					return PlayerVersion;
-				}
-			}
-			try
-			{
-				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
-			}
-			catch(e) {}
-		}
-		
-		if(axo !== null)
-		{
-			PlayerVersion = new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
-		}
-	}
-	return PlayerVersion;
-};
-
-deconcept.PlayerVersion = function(arrVersion)
-{
-	this.major = arrVersion[0] !== null ? parseInt(arrVersion[0], 0) : 0;
-	this.minor = arrVersion[1] !== null ? parseInt(arrVersion[1], 0) : 0;
-	this.rev = arrVersion[2] !== null ? parseInt(arrVersion[2], 0) : 0;
-};
-
-deconcept.PlayerVersion.prototype.versionIsValid = function(fv)
-{
-	if(this.major < fv.major)
-	{
-		return false;
-	}
-	if(this.major > fv.major)
-	{
-		return true;
-	}
-	if(this.minor < fv.minor)
-	{
-		return false;
-	}
-	if(this.minor > fv.minor)
-	{
-		return true;
-	}
-	if(this.rev < fv.rev)
-	{
-		return false;
-	}
-	return true;
-};
-
-/* ---- get value of query string param ---- */
-deconcept.util =
-{
-	getRequestParameter: function(param)
-	{
-		var q = document.location.search || document.location.hash;
-		if(param === null) { return q; }
-		if(q)
-		{
-			var pairs = q.substring(1).split("&");
-			for(var i=0; i < pairs.length; i++)
-			{
-				if (pairs[i].substring(0, pairs[i].indexOf("=")) == param)
-				{
-					return pairs[i].substring((pairs[i].indexOf("=") + 1));
-				}
-			}
-		}
-		return "";
-	}
-};
-
-/* fix for video streaming bug */
-deconcept.SWFObjectUtil.cleanupSWFs = function()
-{
-	var objects = document.getElementsByTagName("OBJECT");
-	for(var i = objects.length - 1; i >= 0; i--)
-	{
-		objects[i].style.display = 'none';
-		for(var x in objects[i])
-		{
-			if(typeof objects[i][x] == 'function')
-			{
-				objects[i][x] = function(){};
-			}
-		}
-	}
-};
-
-// fixes bug in some fp9 versions see http://blog.deconcept.com/2006/07/28/swfobject-143-released/
-if(deconcept.SWFObject.doPrepUnload)
-{
-	if(!deconcept.unloadSet)
-	{
-		deconcept.SWFObjectUtil.prepUnload = function()
-		{
-			__flash_unloadHandler = function(){};
-			__flash_savedUnloadHandler = function(){};
-			window.attachEvent("onunload", deconcept.SWFObjectUtil.cleanupSWFs);
-		};
-		window.attachEvent("onbeforeunload", deconcept.SWFObjectUtil.prepUnload);
-		deconcept.unloadSet = true;
-	}
-}
-
-/* add document.getElementById if needed (mobile IE < 5) */
-if(!document.getElementById && document.all)
-{
-	document.getElementById = function(id) { return document.all[id]; };
-}
-
-/* add some aliases for ease of use/backwards compatibility */
-var getQueryParamValue = deconcept.util.getRequestParameter;
-var FlashObject = deconcept.SWFObject; // for legacy support
-var SWFObject = deconcept.SWFObject;
-/**
- * Wraps Flash embedding functionality and allows communication with SWF through
- * attributes.
- *
- * @namespace YAHOO.widget
- * @class FlashAdapter
- * @uses YAHOO.util.AttributeProvider
- */
-YAHOO.widget.FlashAdapter = function(swfURL, containerID, attributes, buttonSkin)
-{
-	// set up the initial events and attributes stuff
-	this._queue = this._queue || [];
-	this._events = this._events || {};
-	this._configs = this._configs || {};
-	attributes = attributes || {};
-	
-	//the Flash Player external interface code from Adobe doesn't play nicely
-	//with the default value, yui-gen, in IE
-	this._id = attributes.id = attributes.id || YAHOO.util.Dom.generateId(null, "yuigen");
-	attributes.version = attributes.version || "9.0.45";
-	attributes.backgroundColor = attributes.backgroundColor || "#ffffff";
-	
-	//we can't use the initial attributes right away
-	//so save them for once the SWF finishes loading
-	this._attributes = attributes;
-	
-	this._swfURL = swfURL;
-	this._containerID = containerID;
-	
-	//embed the SWF file in the page
-	this._embedSWF(this._swfURL, this._containerID, attributes.id, attributes.version,
-		attributes.backgroundColor, attributes.expressInstall, attributes.wmode, buttonSkin);
-	
-	/**
-	 * Fires when the SWF is initialized and communication is possible.
-	 * @event contentReady
-	 */
-	//Fix for iframe cross-domain issue with FF2x 
-	try
-	{
-		this.createEvent("contentReady");
-	}
-	catch(e){}
-};
-
-YAHOO.extend(YAHOO.widget.FlashAdapter, YAHOO.util.AttributeProvider,
-{
-	/**
-	 * The URL of the SWF file.
-	 * @property _swfURL
-	 * @type String
-	 * @private
-	 */
-	_swfURL: null,
-
-	/**
-	 * The ID of the containing DIV.
-	 * @property _containerID
-	 * @type String
-	 * @private
-	 */
-	_containerID: null,
-
-	/**
-	 * A reference to the embedded SWF file.
-	 * @property _swf
-	 * @private
-	 */
-	_swf: null,
-
-	/**
-	 * The id of this instance.
-	 * @property _id
-	 * @type String
-	 * @private
-	 */
-	_id: null,
-
-	/**
-	 * Indicates whether the SWF has been initialized and is ready
-	 * to communicate with JavaScript
-	 * @property _initialized
-	 * @type Boolean
-	 * @private
-	 */
-	_initialized: false,
-	
-	/**
-	 * The initializing attributes are stored here until the SWF is ready.
-	 * @property _attributes
-	 * @type Object
-	 * @private
-	 */
-	_attributes: null, //the intializing attributes
-
-	/**
-	 * Public accessor to the unique name of the FlashAdapter instance.
-	 *
-	 * @method toString
-	 * @return {String} Unique name of the FlashAdapter instance.
-	 */
-	toString: function()
-	{
-		return "FlashAdapter " + this._id;
-	},
-
-	/**
-	 * Nulls out the entire FlashAdapter instance and related objects and removes attached
-	 * event listeners and clears out DOM elements inside the container. After calling
-	 * this method, the instance reference should be expliclitly nulled by implementer,
-	 * as in myChart = null. Use with caution!
-	 *
-	 * @method destroy
-	 */
-	destroy: function()
-	{
-		//kill the Flash Player instance
-		if(this._swf)
-		{
-			var container = YAHOO.util.Dom.get(this._containerID);
-			container.removeChild(this._swf);
-		}
-		
-		var instanceName = this._id;
-		
-		//null out properties
-		for(var prop in this)
-		{
-			if(YAHOO.lang.hasOwnProperty(this, prop))
-			{
-				this[prop] = null;
-			}
-		}
-		
-	},
-
-	/**
-	 * Embeds the SWF in the page and associates it with this instance.
-	 *
-	 * @method _embedSWF
-	 * @private
-	 */
-	_embedSWF: function(swfURL, containerID, swfID, version, backgroundColor, expressInstall, wmode, buttonSkin)
-	{
-		//standard SWFObject embed
-		var swfObj = new deconcept.SWFObject(swfURL, swfID, "100%", "100%", version, backgroundColor);
-
-		if(expressInstall)
-		{
-			swfObj.useExpressInstall(expressInstall);
-		}
-
-		//make sure we can communicate with ExternalInterface
-		swfObj.addParam("allowScriptAccess", "always");
-		
-		if(wmode)
-		{
-			swfObj.addParam("wmode", wmode);
-		}
-		
-		swfObj.addParam("menu", "false");
-		
-		//again, a useful ExternalInterface trick
-		swfObj.addVariable("allowedDomain", document.location.hostname);
-
-		//tell the SWF which HTML element it is in
-		swfObj.addVariable("elementID", swfID);
-
-		// set the name of the function to call when the swf has an event
-		swfObj.addVariable("eventHandler", "YAHOO.widget.FlashAdapter.eventHandler");
-		if (buttonSkin) {
-		swfObj.addVariable("buttonSkin", buttonSkin);
-		}
-		var container = YAHOO.util.Dom.get(containerID);
-		var result = swfObj.write(container);
-		if(result)
-		{
-			this._swf = YAHOO.util.Dom.get(swfID);
-			//if successful, let's add an owner property to the SWF reference
-			//this will allow the event handler to communicate with a YAHOO.widget.FlashAdapter
-			this._swf.owner = this;
-		}
-		else
-		{
-		}
-	},
-
-	/**
-	 * Handles or re-dispatches events received from the SWF.
-	 *
-	 * @method _eventHandler
-	 * @private
-	 */
-	_eventHandler: function(event)
-	{
-		var type = event.type;
-		switch(type)
-		{
-			case "swfReady":
-   				this._loadHandler();
-				return;
-			case "log":
-				return;
-		}
-		
-		//be sure to return after your case or the event will automatically fire!
-		this.fireEvent(type, event);
-	},
-
-	/**
-	 * Called when the SWF has been initialized.
-	 *
-	 * @method _loadHandler
-	 * @private
-	 */
-	_loadHandler: function()
-	{
-		this._initialized = false;
-		this._initAttributes(this._attributes);
-		this.setAttributes(this._attributes, true);
-		
-		this._initialized = true;
-		this.fireEvent("contentReady");
-	},
-	
-	set: function(name, value)
-	{
-		//save all the attributes in case the swf reloads
-		//so that we can pass them in again
-		this._attributes[name] = value;
-		YAHOO.widget.FlashAdapter.superclass.set.call(this, name, value);
-	},
-	
-	/**
-	 * Initializes the attributes.
-	 *
-	 * @method _initAttributes
-	 * @private
-	 */
-	_initAttributes: function(attributes)
-	{
-		//should be overridden if other attributes need to be set up
-
-		/**
-		 * @attribute wmode
-		 * @description Sets the window mode of the Flash Player control. May be
-		 *		"window", "opaque", or "transparent". Only available in the constructor
-		 *		because it may not be set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-		 
-		/**
-		 * @attribute expressInstall
-		 * @description URL pointing to a SWF file that handles Flash Player's express
-		 *		install feature. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-
-		/**
-		 * @attribute version
-		 * @description Minimum required version for the SWF file. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-
-		/**
-		 * @attribute backgroundColor
-		 * @description The background color of the SWF. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-		 
-		/**
-		 * @attribute altText
-		 * @description The alternative text to provide for screen readers and other assistive technology.
-		 * @type String
-		 */
-		this.getAttributeConfig("altText",
-		{
-			method: this._getAltText
-		});
-		this.setAttributeConfig("altText",
-		{
-			method: this._setAltText
-		});
-		
-		/**
-		 * @attribute swfURL
-		 * @description Absolute or relative URL to the SWF displayed by the FlashAdapter. Only available in the constructor because it may not be
-		 *		set after Flash Player has been embedded in the page.
-		 * @type String
-		 */
-		this.getAttributeConfig("swfURL",
-		{
-			method: this._getSWFURL
-		});
-	},
-	
-	/**
-	 * Getter for swfURL attribute.
-	 *
-	 * @method _getSWFURL
-	 * @private
-	 */
-	_getSWFURL: function()
-	{
-		return this._swfURL;
-	},
-	
-	/**
-	 * Getter for altText attribute.
-	 *
-	 * @method _getAltText
-	 * @private
-	 */
-	_getAltText: function()
-	{
-		return this._swf.getAltText();
-	},
-
-	/**
-	 * Setter for altText attribute.
-	 *
-	 * @method _setAltText
-	 * @private
-	 */
-	_setAltText: function(value)
-	{
-		return this._swf.setAltText(value);
-	}
-});
-
-/**
- * Receives event messages from SWF and passes them to the correct instance
- * of FlashAdapter.
- *
- * @method YAHOO.widget.FlashAdapter.eventHandler
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.eventHandler = function(elementID, event)
-{
-	var loadedSWF = YAHOO.util.Dom.get(elementID);
-	if(!loadedSWF.owner)
-	{
-		//fix for ie: if owner doesn't exist yet, try again in a moment
-		setTimeout(function() { YAHOO.widget.FlashAdapter.eventHandler( elementID, event ); }, 0);
-	}
-	else
-	{
-		loadedSWF.owner._eventHandler(event);
-	}
-};
-
-/**
- * The number of proxy functions that have been created.
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.proxyFunctionCount = 0;
-
-/**
- * Creates a globally accessible function that wraps a function reference.
- * Returns the proxy function's name as a string for use by the SWF through
- * ExternalInterface.
- *
- * @method YAHOO.widget.FlashAdapter.createProxyFunction
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.createProxyFunction = function(func)
-{
-	var index = YAHOO.widget.FlashAdapter.proxyFunctionCount;
-	YAHOO.widget.FlashAdapter["proxyFunction" + index] = function()
-	{
-		return func.apply(null, arguments);
-	};
-	YAHOO.widget.FlashAdapter.proxyFunctionCount++;
-	return "YAHOO.widget.FlashAdapter.proxyFunction" + index.toString();
-};
-
-/**
- * Removes a function created with createProxyFunction()
- * 
- * @method YAHOO.widget.FlashAdapter.removeProxyFunction
- * @static
- * @private
- */
-YAHOO.widget.FlashAdapter.removeProxyFunction = function(funcName)
-{
-	//quick error check
-	if(!funcName || funcName.indexOf("YAHOO.widget.FlashAdapter.proxyFunction") < 0)
-	{
-		return;
-	}
-	
-	funcName = funcName.substr(26);
-	YAHOO.widget.FlashAdapter[funcName] = null;
-};
-/**
- * The YUI Uploader Control
- * @module uploader
- * @description <p>YUI Uploader provides file upload functionality that goes beyond the basic browser-based methods. 
- * Specifically, the YUI Uploader allows for:
- * <ol>
- * <li> Multiple file selection in a single "Open File" dialog.</li>
- * <li> File extension filters to facilitate the user's selection.</li>
- * <li> Progress tracking for file uploads.</li>
- * <li> A range of file metadata: filename, size, date created, date modified, and author.</li>
- * <li> A set of events dispatched on various aspects of the file upload process: file selection, upload progress, upload completion, etc.</li>
- * <li> Inclusion of additional data in the file upload POST request.</li>
- * <li> Faster file upload on broadband connections due to the modified SEND buffer size.</li>
- * <li> Same-page server response upon completion of the file upload.</li>
- * </ol>
- * </p>
- * @title Uploader
- * @namespace YAHOO.widget
- * @requires yahoo, dom, element, event
- */
-/**
- * Uploader class for the YUI Uploader component.
- *
- * @namespace YAHOO.widget
- * @class Uploader
- * @uses YAHOO.widget.FlashAdapter
- * @constructor
- * @param containerId {HTMLElement} Container element for the Flash Player instance.
- * @param buttonSkin {String} [optional]. If defined, the uploader is 
- * rendered as a button. This parameter must provide the URL of a button
- * skin sprite image. Acceptable types are: jpg, gif, png and swf. The 
- * sprite is divided evenly into four sections along its height (e.g., if
- * the sprite is 200 px tall, it's divided into four sections 50px each).
- * Each section is used as a skin for a specific state of the button: top
- * section is "up", second section is "over", third section is "down", and
- * fourth section is "disabled". 
- * If the parameter is not supplied, the uploader is rendered transparent,
- * and it's the developer's responsibility to create a visible UI below it.
-  */
-YAHOO.widget.Uploader = function(containerId, buttonSkin)
-{
-	var newWMode = "window";
-
-	if (!(buttonSkin)) {
-		newWMode = "transparent";
-	}
-	
- 	YAHOO.widget.Uploader.superclass.constructor.call(this, YAHOO.widget.Uploader.SWFURL, containerId, {wmode:newWMode}, buttonSkin);
-
-	this._swf.tabIndex="1";
-
-	/**
-	 * Fires when the mouse is pressed over the Uploader.
-	 * Only fires when the Uploader UI is enabled and
-	 * the render type is 'transparent'.
-	 *
-	 * @event mouseDown
-	 * @param event.type {String} The event type
-	 */
-	this.createEvent("mouseDown");
-	
-	/**
-	 * Fires when the mouse is released over the Uploader.
-	 * Only fires when the Uploader UI is enabled and
-	 * the render type is 'transparent'.
-	 *
-	 * @event mouseUp
-	 * @param event.type {String} The event type
-	 */
-	this.createEvent("mouseUp");
-
-	/**
-	 * Fires when the mouse rolls over the Uploader.
-	 *
-	 * @event rollOver
-	 * @param event.type {String} The event type
-	 */
-	this.createEvent("rollOver");
-	
-	/**
-	 * Fires when the mouse rolls out of the Uploader.
-	 *
-	 * @event rollOut
-	 * @param event.type {String} The event type
-	 */
-	this.createEvent("rollOut");
-	
-	/**
-	 * Fires when the uploader is clicked.
-	 *
-	 * @event click
-	 * @param event.type {String} The event type
-	 */
-	this.createEvent("click");
-	
-	/**
-	 * Fires when the user has finished selecting files in the "Open File" dialog.
-	 *
-	 * @event fileSelect
-	 * @param event.type {String} The event type
-	 * @param event.fileList {Array} An array of objects with file information
-	 * @param event.fileList[].size {Number} File size in bytes for a specific file in fileList
-	 * @param event.fileList[].cDate {Date} Creation date for a specific file in fileList
-	 * @param event.fileList[].mDate {Date} Modification date for a specific file in fileList
-	 * @param event.fileList[].name {String} File name for a specific file in fileList
-	 * @param event.fileList[].id {String} Unique file id of a specific file in fileList
-	 */
-	this.createEvent("fileSelect");
-
-	/**
-	 * Fires when an upload of a specific file has started.
-	 *
-	 * @event uploadStart
-	 * @param event.type {String} The event type
-	 * @param event.id {String} The id of the file that's started to upload
-	 */
-	this.createEvent("uploadStart");
-
-	/**
-	 * Fires when new information about the upload progress for a specific file is available.
-	 *
-	 * @event uploadProgress
-	 * @param event.type {String} The event type
-	 * @param event.id {String} The id of the file with which the upload progress data is associated
-	 * @param bytesLoaded {Number} The number of bytes of the file uploaded so far
-	 * @param bytesTotal {Number} The total size of the file
-	 */
-	this.createEvent("uploadProgress");
-	
-	/**
-	 * Fires when an upload for a specific file is cancelled.
-	 *
-	 * @event uploadCancel
-	 * @param event.type {String} The event type
-	 * @param event.id {String} The id of the file with which the upload has been cancelled.
-	 */	
-	this.createEvent("uploadCancel");
-
-	/**
-	 * Fires when an upload for a specific file is complete.
-	 *
-	 * @event uploadComplete
-	 * @param event.type {String} The event type
-	 * @param event.id {String} The id of the file for which the upload has been completed.
-	 */	
-	this.createEvent("uploadComplete");
-
-	/**
-	 * Fires when the server sends data in response to a completed upload.
-	 *
-	 * @event uploadCompleteData
-	 * @param event.type {String} The event type
-	 * @param event.id {String} The id of the file for which the upload has been completed.
-	 * @param event.data {String} The raw data returned by the server in response to the upload.
-	 */	
-	this.createEvent("uploadCompleteData");
-	
-	/**
-	 * Fires when an upload error occurs.
-	 *
-	 * @event uploadError
-	 * @param event.type {String} The event type
-	 * @param event.id {String} The id of the file that was being uploaded when the error has occurred.
-	 * @param event.status {String} The status message associated with the error.
-	 */	
-	this.createEvent("uploadError");
-}
-
-/**
- * Location of the Uploader SWF
- *
- * @property Chart.SWFURL
- * @private
- * @static
- * @final
- * @default "assets/uploader.swf"
- */
-YAHOO.widget.Uploader.SWFURL = "assets/uploader.swf";
-
-YAHOO.extend(YAHOO.widget.Uploader, YAHOO.widget.FlashAdapter,
-{	
-/**
- * Starts the upload of the file specified by fileID to the location specified by uploadScriptPath.
- *
- * @param fileID {String} The id of the file to start uploading.
- * @param uploadScriptPath {String} The URL of the upload location.
- * @param method {String} Either "GET" or "POST", specifying how the variables accompanying the file upload POST request should be submitted. "GET" by default.
- * @param vars {Object} The object containing variables to be sent in the same request as the file upload.
- * @param fieldName {String} The name of the variable in the POST request containing the file data. "Filedata" by default.
- * @param headers {Object} An object containing variables that should be set as headers in the POST request. The following header names
- * cannot be used: 
- * <code>
- * Accept-Charset, Accept-Encoding, Accept-Ranges, Age, Allow, Allowed, Authorization, Charge-To, Connect, Connection, 
- * Content-Length, Content-Location, Content-Range, Cookie, Date, Delete, ETag, Expect, Get, Head, Host, Keep-Alive, 
- * Last-Modified, Location, Max-Forwards, Options, Post, Proxy-Authenticate, Proxy-Authorization, Proxy-Connection, 
- * Public, Put, Range, Referer, Request-Range, Retry-After, Server, TE, Trace, Trailer, Transfer-Encoding, Upgrade, 
- * URI, User-Agent, Vary, Via, Warning, WWW-Authenticate, x-flash-version.
- * </code> 
- */
-	upload: function(fileID, uploadScriptPath, method, vars, fieldName)
-	{
-		this._swf.upload(fileID, uploadScriptPath, method, vars, fieldName);
-	},
-	
-/**
- * Starts uploading all files in the queue. If this function is called, the upload queue is automatically managed.
- *
- * @param uploadScriptPath {String} The URL of the upload location.
- * @param method {String} Either "GET" or "POST", specifying how the variables accompanying the file upload POST request should be submitted. "GET" by default.
- * @param vars {Object} The object containing variables to be sent in the same request as the file upload.
- * @param fieldName {String} The name of the variable in the POST request containing the file data. "Filedata" by default.
- * @param headers {Object} An object containing variables that should be set as headers in the POST request. The following header names
- * cannot be used: 
- * <code>
- * Accept-Charset, Accept-Encoding, Accept-Ranges, Age, Allow, Allowed, Authorization, Charge-To, Connect, Connection, 
- * Content-Length, Content-Location, Content-Range, Cookie, Date, Delete, ETag, Expect, Get, Head, Host, Keep-Alive, 
- * Last-Modified, Location, Max-Forwards, Options, Post, Proxy-Authenticate, Proxy-Authorization, Proxy-Connection, 
- * Public, Put, Range, Referer, Request-Range, Retry-After, Server, TE, Trace, Trailer, Transfer-Encoding, Upgrade, 
- * URI, User-Agent, Vary, Via, Warning, WWW-Authenticate, x-flash-version.
- * </code> 
- */
-	uploadAll: function(uploadScriptPath, method, vars, fieldName)
-	{
-		this._swf.uploadAll(uploadScriptPath, method, vars, fieldName);
-	},
-
-/**
- * Cancels the upload of a specified file. If no file id is specified, all ongoing uploads are cancelled.
- *
- * @param fileID {String} The ID of the file whose upload should be cancelled.
- */
-	cancel: function(fileID)
-	{
-		this._swf.cancel(fileID);
-	},
-
-/**
- * Clears the list of files queued for upload.
- *
- */
-	clearFileList: function()
-	{
-		this._swf.clearFileList();
-	},
-	
-/**
- * Removes the specified file from the upload queue. 
- *
- * @param fileID {String} The id of the file to remove from the upload queue. 
- */
-	removeFile: function (fileID) 
-	{
-		this._swf.removeFile(fileID);
-	},
-
-/**
- * Turns the logging functionality on.
- * Uses Flash internal trace logging, as well as YUI Logger, if available.
- *
- * @param allowLogging {Boolean} If true, logs are output; otherwise, no logs are produced.
- */
-    setAllowLogging: function (allowLogging)
-    {
-       this._swf.setAllowLogging(allowLogging);
-    },
-
-/**
- * Sets the number of simultaneous uploads when using uploadAll()
- * The minimum value is 1, and maximum value is 5. The default value is 2.
- *
- * @param simUploadLimit {int} Number of simultaneous uploads, between 1 and 5.
- */
-    setSimUploadLimit : function (simUploadLimit)
-    {
-       this._swf.setSimUploadLimit(simUploadLimit);
-    },
-
-/**
- * Sets the flag allowing users to select multiple files for the upload.
- *
- * @param allowMultipleFiles {Boolean} If true, multiple files can be selected. False by default.
- */     
-    setAllowMultipleFiles : function (allowMultipleFiles) 
-    {
-       this._swf.setAllowMultipleFiles(allowMultipleFiles);
-    },
-
-/**
- * Sets the file filters for the "Browse" dialog.
- *
- *  @param newFilterArray An array of sets of key-value pairs of the form
- *  {extensions: extensionString, description: descriptionString, [optional]macType: macTypeString}
- *  The extensions string is a semicolon-delimited list of elements of the form "*.xxx", 
- *  e.g. "*.jpg;*.gif;*.png". 
- */       
-    setFileFilters : function (fileFilters) 
-    {
-       this._swf.setFileFilters(fileFilters);
-    },
-
-	/**
-	 * Enables the mouse events on the Uploader.
-	 * If the uploader is being rendered as a button,
-	 * then the button's skin is set to "up"
-	 * (first section of the button skin sprite).
-	 *
-	 */
-	enable : function ()
-	{
-		this._swf.enable();
-	},
-
-	/**
-	 * Disables the mouse events on the Uploader.
-	 * If the uploader is being rendered as a button,
-	 * then the button's skin is set to "disabled"
-	 * (fourth section of the button skin sprite).
-	 *
-	 */
-	disable : function () 
-	{
-		this._swf.disable();
-	}
-});
-YAHOO.register("uploader", YAHOO.widget.Uploader, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/utilities/README b/eclipse.org-common/yui/2.6.0/build/utilities/README
deleted file mode 100644
index d372798..0000000
--- a/eclipse.org-common/yui/2.6.0/build/utilities/README
+++ /dev/null
@@ -1,40 +0,0 @@
-utilities.js - Release Notes
-
-*** NOTE ***
-
-This document is not updated with each release.  Changes to
-the utilities.js source are noted in the README
-file for each component that comprises this aggregate:
-
-yahoo/README
-dom/README
-event/README
-connection/README
-animation/README
-dragdrop/README
-element/README
-get/README
-yuiloader/README
-
-*************
-
-The utilities.js file rolls up all of the YUI utility components into a single
-file; it includes the following components:
-
-* Yahoo Global Object
-* Event
-* Dom
-* Connection Manager
-* Animation
-* Drag &amp; Drop
-* Element
-* Get
-* YUI Loader
-
-For implementations that use four or more  of these files, it may prove
-more efficient to include utilities.js as opposed to including separate files
-for each component.
-
-Note: If you require only the Yahoo Global Object, Event Utility and Dom
-collection, consider using the special yahoo-dom-event.js aggregate instead.
-
diff --git a/eclipse.org-common/yui/2.6.0/build/utilities/utilities.js b/eclipse.org-common/yui/2.6.0/build/utilities/utilities.js
deleted file mode 100644
index 5c50b83..0000000
--- a/eclipse.org-common/yui/2.6.0/build/utilities/utilities.js
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-if(typeof YAHOO=="undefined"||!YAHOO){var YAHOO={};}YAHOO.namespace=function(){var A=arguments,E=null,C,B,D;for(C=0;C<A.length;C=C+1){D=A[C].split(".");E=YAHOO;for(B=(D[0]=="YAHOO")?1:0;B<D.length;B=B+1){E[D[B]]=E[D[B]]||{};E=E[D[B]];}}return E;};YAHOO.log=function(D,A,C){var B=YAHOO.widget.Logger;if(B&&B.log){return B.log(D,A,C);}else{return false;}};YAHOO.register=function(A,E,D){var I=YAHOO.env.modules;if(!I[A]){I[A]={versions:[],builds:[]};}var B=I[A],H=D.version,G=D.build,F=YAHOO.env.listeners;B.name=A;B.version=H;B.build=G;B.versions.push(H);B.builds.push(G);B.mainClass=E;for(var C=0;C<F.length;C=C+1){F[C](B);}if(E){E.VERSION=H;E.BUILD=G;}else{YAHOO.log("mainClass is undefined for module "+A,"warn");}};YAHOO.env=YAHOO.env||{modules:[],listeners:[]};YAHOO.env.getVersion=function(A){return YAHOO.env.modules[A]||null;};YAHOO.env.ua=function(){var C={ie:0,opera:0,gecko:0,webkit:0,mobile:null,air:0};var B=navigator.userAgent,A;if((/KHTML/).test(B)){C.webkit=1;}A=B.match(/AppleWebKit\/([^\s]*)/);if(A&&A[1]){C.webkit=parseFloat(A[1]);if(/ Mobile\//.test(B)){C.mobile="Apple";}else{A=B.match(/NokiaN[^\/]*/);if(A){C.mobile=A[0];}}A=B.match(/AdobeAIR\/([^\s]*)/);if(A){C.air=A[0];}}if(!C.webkit){A=B.match(/Opera[\s\/]([^\s]*)/);if(A&&A[1]){C.opera=parseFloat(A[1]);A=B.match(/Opera Mini[^;]*/);if(A){C.mobile=A[0];}}else{A=B.match(/MSIE\s([^;]*)/);if(A&&A[1]){C.ie=parseFloat(A[1]);}else{A=B.match(/Gecko\/([^\s]*)/);if(A){C.gecko=1;A=B.match(/rv:([^\s\)]*)/);if(A&&A[1]){C.gecko=parseFloat(A[1]);}}}}}return C;}();(function(){YAHOO.namespace("util","widget","example");if("undefined"!==typeof YAHOO_config){var B=YAHOO_config.listener,A=YAHOO.env.listeners,D=true,C;if(B){for(C=0;C<A.length;C=C+1){if(A[C]==B){D=false;break;}}if(D){A.push(B);}}}})();YAHOO.lang=YAHOO.lang||{};(function(){var A=YAHOO.lang,C=["toString","valueOf"],B={isArray:function(D){if(D){return A.isNumber(D.length)&&A.isFunction(D.splice);}return false;},isBoolean:function(D){return typeof D==="boolean";},isFunction:function(D){return typeof D==="function";},isNull:function(D){return D===null;},isNumber:function(D){return typeof D==="number"&&isFinite(D);},isObject:function(D){return(D&&(typeof D==="object"||A.isFunction(D)))||false;},isString:function(D){return typeof D==="string";},isUndefined:function(D){return typeof D==="undefined";},_IEEnumFix:(YAHOO.env.ua.ie)?function(F,E){for(var D=0;D<C.length;D=D+1){var H=C[D],G=E[H];if(A.isFunction(G)&&G!=Object.prototype[H]){F[H]=G;}}}:function(){},extend:function(H,I,G){if(!I||!H){throw new Error("extend failed, please check that "+"all dependencies are included.");}var E=function(){};E.prototype=I.prototype;H.prototype=new E();H.prototype.constructor=H;H.superclass=I.prototype;if(I.prototype.constructor==Object.prototype.constructor){I.prototype.constructor=I;}if(G){for(var D in G){if(A.hasOwnProperty(G,D)){H.prototype[D]=G[D];}}A._IEEnumFix(H.prototype,G);}},augmentObject:function(H,G){if(!G||!H){throw new Error("Absorb failed, verify dependencies.");}var D=arguments,F,I,E=D[2];if(E&&E!==true){for(F=2;F<D.length;F=F+1){H[D[F]]=G[D[F]];}}else{for(I in G){if(E||!(I in H)){H[I]=G[I];}}A._IEEnumFix(H,G);}},augmentProto:function(G,F){if(!F||!G){throw new Error("Augment failed, verify dependencies.");}var D=[G.prototype,F.prototype];for(var E=2;E<arguments.length;E=E+1){D.push(arguments[E]);}A.augmentObject.apply(this,D);},dump:function(D,I){var F,H,K=[],L="{...}",E="f(){...}",J=", ",G=" => ";if(!A.isObject(D)){return D+"";}else{if(D instanceof Date||("nodeType" in D&&"tagName" in D)){return D;}else{if(A.isFunction(D)){return E;}}}I=(A.isNumber(I))?I:3;if(A.isArray(D)){K.push("[");for(F=0,H=D.length;F<H;F=F+1){if(A.isObject(D[F])){K.push((I>0)?A.dump(D[F],I-1):L);}else{K.push(D[F]);}K.push(J);}if(K.length>1){K.pop();}K.push("]");}else{K.push("{");for(F in D){if(A.hasOwnProperty(D,F)){K.push(F+G);if(A.isObject(D[F])){K.push((I>0)?A.dump(D[F],I-1):L);}else{K.push(D[F]);}K.push(J);}}if(K.length>1){K.pop();}K.push("}");}return K.join("");},substitute:function(S,E,L){var I,H,G,O,P,R,N=[],F,J="dump",M=" ",D="{",Q="}";for(;;){I=S.lastIndexOf(D);if(I<0){break;}H=S.indexOf(Q,I);if(I+1>=H){break;}F=S.substring(I+1,H);O=F;R=null;G=O.indexOf(M);if(G>-1){R=O.substring(G+1);O=O.substring(0,G);}P=E[O];if(L){P=L(O,P,R);}if(A.isObject(P)){if(A.isArray(P)){P=A.dump(P,parseInt(R,10));}else{R=R||"";var K=R.indexOf(J);if(K>-1){R=R.substring(4);}if(P.toString===Object.prototype.toString||K>-1){P=A.dump(P,parseInt(R,10));}else{P=P.toString();}}}else{if(!A.isString(P)&&!A.isNumber(P)){P="~-"+N.length+"-~";N[N.length]=F;}}S=S.substring(0,I)+P+S.substring(H+1);}for(I=N.length-1;I>=0;I=I-1){S=S.replace(new RegExp("~-"+I+"-~"),"{"+N[I]+"}","g");}return S;},trim:function(D){try{return D.replace(/^\s+|\s+$/g,"");}catch(E){return D;}},merge:function(){var G={},E=arguments;for(var F=0,D=E.length;F<D;F=F+1){A.augmentObject(G,E[F],true);}return G;},later:function(K,E,L,G,H){K=K||0;E=E||{};var F=L,J=G,I,D;if(A.isString(L)){F=E[L];}if(!F){throw new TypeError("method undefined");}if(!A.isArray(J)){J=[G];}I=function(){F.apply(E,J);};D=(H)?setInterval(I,K):setTimeout(I,K);return{interval:H,cancel:function(){if(this.interval){clearInterval(D);}else{clearTimeout(D);}}};},isValue:function(D){return(A.isObject(D)||A.isString(D)||A.isNumber(D)||A.isBoolean(D));}};A.hasOwnProperty=(Object.prototype.hasOwnProperty)?function(D,E){return D&&D.hasOwnProperty(E);}:function(D,E){return !A.isUndefined(D[E])&&D.constructor.prototype[E]!==D[E];};B.augmentObject(A,B,true);YAHOO.util.Lang=A;A.augment=A.augmentProto;YAHOO.augment=A.augmentProto;YAHOO.extend=A.extend;})();YAHOO.register("yahoo",YAHOO,{version:"2.6.0",build:"1321"});YAHOO.util.Get=function(){var M={},L=0,R=0,E=false,N=YAHOO.env.ua,S=YAHOO.lang;var J=function(W,T,X){var U=X||window,Y=U.document,Z=Y.createElement(W);for(var V in T){if(T[V]&&YAHOO.lang.hasOwnProperty(T,V)){Z.setAttribute(V,T[V]);}}return Z;};var I=function(T,U,W){var V=W||"utf-8";return J("link",{"id":"yui__dyn_"+(R++),"type":"text/css","charset":V,"rel":"stylesheet","href":T},U);
-};var P=function(T,U,W){var V=W||"utf-8";return J("script",{"id":"yui__dyn_"+(R++),"type":"text/javascript","charset":V,"src":T},U);};var A=function(T,U){return{tId:T.tId,win:T.win,data:T.data,nodes:T.nodes,msg:U,purge:function(){D(this.tId);}};};var B=function(T,W){var U=M[W],V=(S.isString(T))?U.win.document.getElementById(T):T;if(!V){Q(W,"target node not found: "+T);}return V;};var Q=function(W,V){var T=M[W];if(T.onFailure){var U=T.scope||T.win;T.onFailure.call(U,A(T,V));}};var C=function(W){var T=M[W];T.finished=true;if(T.aborted){var V="transaction "+W+" was aborted";Q(W,V);return ;}if(T.onSuccess){var U=T.scope||T.win;T.onSuccess.call(U,A(T));}};var O=function(V){var T=M[V];if(T.onTimeout){var U=T.context||T;T.onTimeout.call(U,A(T));}};var G=function(V,Z){var U=M[V];if(U.timer){U.timer.cancel();}if(U.aborted){var X="transaction "+V+" was aborted";Q(V,X);return ;}if(Z){U.url.shift();if(U.varName){U.varName.shift();}}else{U.url=(S.isString(U.url))?[U.url]:U.url;if(U.varName){U.varName=(S.isString(U.varName))?[U.varName]:U.varName;}}var c=U.win,b=c.document,a=b.getElementsByTagName("head")[0],W;if(U.url.length===0){if(U.type==="script"&&N.webkit&&N.webkit<420&&!U.finalpass&&!U.varName){var Y=P(null,U.win,U.charset);Y.innerHTML='YAHOO.util.Get._finalize("'+V+'");';U.nodes.push(Y);a.appendChild(Y);}else{C(V);}return ;}var T=U.url[0];if(!T){U.url.shift();return G(V);}if(U.timeout){U.timer=S.later(U.timeout,U,O,V);}if(U.type==="script"){W=P(T,c,U.charset);}else{W=I(T,c,U.charset);}F(U.type,W,V,T,c,U.url.length);U.nodes.push(W);if(U.insertBefore){var e=B(U.insertBefore,V);if(e){e.parentNode.insertBefore(W,e);}}else{a.appendChild(W);}if((N.webkit||N.gecko)&&U.type==="css"){G(V,T);}};var K=function(){if(E){return ;}E=true;for(var T in M){var U=M[T];if(U.autopurge&&U.finished){D(U.tId);delete M[T];}}E=false;};var D=function(a){var X=M[a];if(X){var Z=X.nodes,T=Z.length,Y=X.win.document,W=Y.getElementsByTagName("head")[0];if(X.insertBefore){var V=B(X.insertBefore,a);if(V){W=V.parentNode;}}for(var U=0;U<T;U=U+1){W.removeChild(Z[U]);}X.nodes=[];}};var H=function(U,T,V){var X="q"+(L++);V=V||{};if(L%YAHOO.util.Get.PURGE_THRESH===0){K();}M[X]=S.merge(V,{tId:X,type:U,url:T,finished:false,aborted:false,nodes:[]});var W=M[X];W.win=W.win||window;W.scope=W.scope||W.win;W.autopurge=("autopurge" in W)?W.autopurge:(U==="script")?true:false;S.later(0,W,G,X);return{tId:X};};var F=function(c,X,W,U,Y,Z,b){var a=b||G;if(N.ie){X.onreadystatechange=function(){var d=this.readyState;if("loaded"===d||"complete"===d){X.onreadystatechange=null;a(W,U);}};}else{if(N.webkit){if(c==="script"){if(N.webkit>=420){X.addEventListener("load",function(){a(W,U);});}else{var T=M[W];if(T.varName){var V=YAHOO.util.Get.POLL_FREQ;T.maxattempts=YAHOO.util.Get.TIMEOUT/V;T.attempts=0;T._cache=T.varName[0].split(".");T.timer=S.later(V,T,function(j){var f=this._cache,e=f.length,d=this.win,g;for(g=0;g<e;g=g+1){d=d[f[g]];if(!d){this.attempts++;if(this.attempts++>this.maxattempts){var h="Over retry limit, giving up";T.timer.cancel();Q(W,h);}else{}return ;}}T.timer.cancel();a(W,U);},null,true);}else{S.later(YAHOO.util.Get.POLL_FREQ,null,a,[W,U]);}}}}else{X.onload=function(){a(W,U);};}}};return{POLL_FREQ:10,PURGE_THRESH:20,TIMEOUT:2000,_finalize:function(T){S.later(0,null,C,T);},abort:function(U){var V=(S.isString(U))?U:U.tId;var T=M[V];if(T){T.aborted=true;}},script:function(T,U){return H("script",T,U);},css:function(T,U){return H("css",T,U);}};}();YAHOO.register("get",YAHOO.util.Get,{version:"2.6.0",build:"1321"});(function(){var Y=YAHOO,util=Y.util,lang=Y.lang,env=Y.env,PROV="_provides",SUPER="_supersedes",REQ="expanded",AFTER="_after";var YUI={dupsAllowed:{"yahoo":true,"get":true},info:{"root":"2.6.0/build/","base":"http://yui.yahooapis.com/2.6.0/build/","comboBase":"http://yui.yahooapis.com/combo?","skin":{"defaultSkin":"sam","base":"assets/skins/","path":"skin.css","after":["reset","fonts","grids","base"],"rollup":3},dupsAllowed:["yahoo","get"],"moduleInfo":{"animation":{"type":"js","path":"animation/animation-min.js","requires":["dom","event"]},"autocomplete":{"type":"js","path":"autocomplete/autocomplete-min.js","requires":["dom","event","datasource"],"optional":["connection","animation"],"skinnable":true},"base":{"type":"css","path":"base/base-min.css","after":["reset","fonts","grids"]},"button":{"type":"js","path":"button/button-min.js","requires":["element"],"optional":["menu"],"skinnable":true},"calendar":{"type":"js","path":"calendar/calendar-min.js","requires":["event","dom"],"skinnable":true},"carousel":{"type":"js","path":"carousel/carousel-beta-min.js","requires":["element"],"optional":["animation"],"skinnable":true},"charts":{"type":"js","path":"charts/charts-experimental-min.js","requires":["element","json","datasource"]},"colorpicker":{"type":"js","path":"colorpicker/colorpicker-min.js","requires":["slider","element"],"optional":["animation"],"skinnable":true},"connection":{"type":"js","path":"connection/connection-min.js","requires":["event"]},"container":{"type":"js","path":"container/container-min.js","requires":["dom","event"],"optional":["dragdrop","animation","connection"],"supersedes":["containercore"],"skinnable":true},"containercore":{"type":"js","path":"container/container_core-min.js","requires":["dom","event"],"pkg":"container"},"cookie":{"type":"js","path":"cookie/cookie-min.js","requires":["yahoo"]},"datasource":{"type":"js","path":"datasource/datasource-min.js","requires":["event"],"optional":["connection"]},"datatable":{"type":"js","path":"datatable/datatable-min.js","requires":["element","datasource"],"optional":["calendar","dragdrop","paginator"],"skinnable":true},"dom":{"type":"js","path":"dom/dom-min.js","requires":["yahoo"]},"dragdrop":{"type":"js","path":"dragdrop/dragdrop-min.js","requires":["dom","event"]},"editor":{"type":"js","path":"editor/editor-min.js","requires":["menu","element","button"],"optional":["animation","dragdrop"],"supersedes":["simpleeditor"],"skinnable":true},"element":{"type":"js","path":"element/element-beta-min.js","requires":["dom","event"]},"event":{"type":"js","path":"event/event-min.js","requires":["yahoo"]},"fonts":{"type":"css","path":"fonts/fonts-min.css"},"get":{"type":"js","path":"get/get-min.js","requires":["yahoo"]},"grids":{"type":"css","path":"grids/grids-min.css","requires":["fonts"],"optional":["reset"]},"history":{"type":"js","path":"history/history-min.js","requires":["event"]},"imagecropper":{"type":"js","path":"imagecropper/imagecropper-beta-min.js","requires":["dom","event","dragdrop","element","resize"],"skinnable":true},"imageloader":{"type":"js","path":"imageloader/imageloader-min.js","requires":["event","dom"]},"json":{"type":"js","path":"json/json-min.js","requires":["yahoo"]},"layout":{"type":"js","path":"layout/layout-min.js","requires":["dom","event","element"],"optional":["animation","dragdrop","resize","selector"],"skinnable":true},"logger":{"type":"js","path":"logger/logger-min.js","requires":["event","dom"],"optional":["dragdrop"],"skinnable":true},"menu":{"type":"js","path":"menu/menu-min.js","requires":["containercore"],"skinnable":true},"paginator":{"type":"js","path":"paginator/paginator-min.js","requires":["element"],"skinnable":true},"profiler":{"type":"js","path":"profiler/profiler-min.js","requires":["yahoo"]},"profilerviewer":{"type":"js","path":"profilerviewer/profilerviewer-beta-min.js","requires":["profiler","yuiloader","element"],"skinnable":true},"reset":{"type":"css","path":"reset/reset-min.css"},"reset-fonts-grids":{"type":"css","path":"reset-fonts-grids/reset-fonts-grids.css","supersedes":["reset","fonts","grids","reset-fonts"],"rollup":4},"reset-fonts":{"type":"css","path":"reset-fonts/reset-fonts.css","supersedes":["reset","fonts"],"rollup":2},"resize":{"type":"js","path":"resize/resize-min.js","requires":["dom","event","dragdrop","element"],"optional":["animation"],"skinnable":true},"selector":{"type":"js","path":"selector/selector-beta-min.js","requires":["yahoo","dom"]},"simpleeditor":{"type":"js","path":"editor/simpleeditor-min.js","requires":["element"],"optional":["containercore","menu","button","animation","dragdrop"],"skinnable":true,"pkg":"editor"},"slider":{"type":"js","path":"slider/slider-min.js","requires":["dragdrop"],"optional":["animation"],"skinnable":true},"tabview":{"type":"js","path":"tabview/tabview-min.js","requires":["element"],"optional":["connection"],"skinnable":true},"treeview":{"type":"js","path":"treeview/treeview-min.js","requires":["event","dom"],"skinnable":true},"uploader":{"type":"js","path":"uploader/uploader-experimental.js","requires":["element"]},"utilities":{"type":"js","path":"utilities/utilities.js","supersedes":["yahoo","event","dragdrop","animation","dom","connection","element","yahoo-dom-event","get","yuiloader","yuiloader-dom-event"],"rollup":8},"yahoo":{"type":"js","path":"yahoo/yahoo-min.js"},"yahoo-dom-event":{"type":"js","path":"yahoo-dom-event/yahoo-dom-event.js","supersedes":["yahoo","event","dom"],"rollup":3},"yuiloader":{"type":"js","path":"yuiloader/yuiloader-min.js","supersedes":["yahoo","get"]},"yuiloader-dom-event":{"type":"js","path":"yuiloader-dom-event/yuiloader-dom-event.js","supersedes":["yahoo","dom","event","get","yuiloader","yahoo-dom-event"],"rollup":5},"yuitest":{"type":"js","path":"yuitest/yuitest-min.js","requires":["logger"],"skinnable":true}}},ObjectUtil:{appendArray:function(o,a){if(a){for(var i=0;
-i<a.length;i=i+1){o[a[i]]=true;}}},keys:function(o,ordered){var a=[],i;for(i in o){if(lang.hasOwnProperty(o,i)){a.push(i);}}return a;}},ArrayUtil:{appendArray:function(a1,a2){Array.prototype.push.apply(a1,a2);},indexOf:function(a,val){for(var i=0;i<a.length;i=i+1){if(a[i]===val){return i;}}return -1;},toObject:function(a){var o={};for(var i=0;i<a.length;i=i+1){o[a[i]]=true;}return o;},uniq:function(a){return YUI.ObjectUtil.keys(YUI.ArrayUtil.toObject(a));}}};YAHOO.util.YUILoader=function(o){this._internalCallback=null;this._useYahooListener=false;this.onSuccess=null;this.onFailure=Y.log;this.onProgress=null;this.onTimeout=null;this.scope=this;this.data=null;this.insertBefore=null;this.charset=null;this.varName=null;this.base=YUI.info.base;this.comboBase=YUI.info.comboBase;this.combine=false;this.root=YUI.info.root;this.timeout=0;this.ignore=null;this.force=null;this.allowRollup=true;this.filter=null;this.required={};this.moduleInfo=lang.merge(YUI.info.moduleInfo);this.rollups=null;this.loadOptional=false;this.sorted=[];this.loaded={};this.dirty=true;this.inserted={};var self=this;env.listeners.push(function(m){if(self._useYahooListener){self.loadNext(m.name);}});this.skin=lang.merge(YUI.info.skin);this._config(o);};Y.util.YUILoader.prototype={FILTERS:{RAW:{"searchExp":"-min\\.js","replaceStr":".js"},DEBUG:{"searchExp":"-min\\.js","replaceStr":"-debug.js"}},SKIN_PREFIX:"skin-",_config:function(o){if(o){for(var i in o){if(lang.hasOwnProperty(o,i)){if(i=="require"){this.require(o[i]);}else{this[i]=o[i];}}}}var f=this.filter;if(lang.isString(f)){f=f.toUpperCase();if(f==="DEBUG"){this.require("logger");}if(!Y.widget.LogWriter){Y.widget.LogWriter=function(){return Y;};}this.filter=this.FILTERS[f];}},addModule:function(o){if(!o||!o.name||!o.type||(!o.path&&!o.fullpath)){return false;}o.ext=("ext" in o)?o.ext:true;o.requires=o.requires||[];this.moduleInfo[o.name]=o;this.dirty=true;return true;},require:function(what){var a=(typeof what==="string")?arguments:what;this.dirty=true;YUI.ObjectUtil.appendArray(this.required,a);},_addSkin:function(skin,mod){var name=this.formatSkin(skin),info=this.moduleInfo,sinf=this.skin,ext=info[mod]&&info[mod].ext;if(!info[name]){this.addModule({"name":name,"type":"css","path":sinf.base+skin+"/"+sinf.path,"after":sinf.after,"rollup":sinf.rollup,"ext":ext});}if(mod){name=this.formatSkin(skin,mod);if(!info[name]){var mdef=info[mod],pkg=mdef.pkg||mod;this.addModule({"name":name,"type":"css","after":sinf.after,"path":pkg+"/"+sinf.base+skin+"/"+mod+".css","ext":ext});}}return name;},getRequires:function(mod){if(!mod){return[];}if(!this.dirty&&mod.expanded){return mod.expanded;}mod.requires=mod.requires||[];var i,d=[],r=mod.requires,o=mod.optional,info=this.moduleInfo,m;for(i=0;i<r.length;i=i+1){d.push(r[i]);m=info[r[i]];YUI.ArrayUtil.appendArray(d,this.getRequires(m));}if(o&&this.loadOptional){for(i=0;i<o.length;i=i+1){d.push(o[i]);YUI.ArrayUtil.appendArray(d,this.getRequires(info[o[i]]));}}mod.expanded=YUI.ArrayUtil.uniq(d);return mod.expanded;},getProvides:function(name,notMe){var addMe=!(notMe),ckey=(addMe)?PROV:SUPER,m=this.moduleInfo[name],o={};if(!m){return o;}if(m[ckey]){return m[ckey];}var s=m.supersedes,done={},me=this;var add=function(mm){if(!done[mm]){done[mm]=true;lang.augmentObject(o,me.getProvides(mm));}};if(s){for(var i=0;i<s.length;i=i+1){add(s[i]);}}m[SUPER]=o;m[PROV]=lang.merge(o);m[PROV][name]=true;return m[ckey];},calculate:function(o){if(o||this.dirty){this._config(o);this._setup();this._explode();if(this.allowRollup){this._rollup();}this._reduce();this._sort();this.dirty=false;}},_setup:function(){var info=this.moduleInfo,name,i,j;for(name in info){if(lang.hasOwnProperty(info,name)){var m=info[name];if(m&&m.skinnable){var o=this.skin.overrides,smod;if(o&&o[name]){for(i=0;i<o[name].length;i=i+1){smod=this._addSkin(o[name][i],name);}}else{smod=this._addSkin(this.skin.defaultSkin,name);}m.requires.push(smod);}}}var l=lang.merge(this.inserted);if(!this._sandbox){l=lang.merge(l,env.modules);}if(this.ignore){YUI.ObjectUtil.appendArray(l,this.ignore);}if(this.force){for(i=0;i<this.force.length;i=i+1){if(this.force[i] in l){delete l[this.force[i]];}}}for(j in l){if(lang.hasOwnProperty(l,j)){lang.augmentObject(l,this.getProvides(j));}}this.loaded=l;},_explode:function(){var r=this.required,i,mod;for(i in r){if(lang.hasOwnProperty(r,i)){mod=this.moduleInfo[i];if(mod){var req=this.getRequires(mod);if(req){YUI.ObjectUtil.appendArray(r,req);}}}}},_skin:function(){},formatSkin:function(skin,mod){var s=this.SKIN_PREFIX+skin;if(mod){s=s+"-"+mod;}return s;},parseSkin:function(mod){if(mod.indexOf(this.SKIN_PREFIX)===0){var a=mod.split("-");return{skin:a[1],module:a[2]};}return null;},_rollup:function(){var i,j,m,s,rollups={},r=this.required,roll,info=this.moduleInfo;if(this.dirty||!this.rollups){for(i in info){if(lang.hasOwnProperty(info,i)){m=info[i];if(m&&m.rollup){rollups[i]=m;}}}this.rollups=rollups;}for(;;){var rolled=false;for(i in rollups){if(!r[i]&&!this.loaded[i]){m=info[i];s=m.supersedes;roll=false;if(!m.rollup){continue;}var skin=(m.ext)?false:this.parseSkin(i),c=0;if(skin){for(j in r){if(lang.hasOwnProperty(r,j)){if(i!==j&&this.parseSkin(j)){c++;roll=(c>=m.rollup);if(roll){break;}}}}}else{for(j=0;j<s.length;j=j+1){if(this.loaded[s[j]]&&(!YUI.dupsAllowed[s[j]])){roll=false;break;}else{if(r[s[j]]){c++;roll=(c>=m.rollup);if(roll){break;}}}}}if(roll){r[i]=true;rolled=true;this.getRequires(m);}}}if(!rolled){break;}}},_reduce:function(){var i,j,s,m,r=this.required;for(i in r){if(i in this.loaded){delete r[i];}else{var skinDef=this.parseSkin(i);if(skinDef){if(!skinDef.module){var skin_pre=this.SKIN_PREFIX+skinDef.skin;for(j in r){if(lang.hasOwnProperty(r,j)){m=this.moduleInfo[j];var ext=m&&m.ext;if(!ext&&j!==i&&j.indexOf(skin_pre)>-1){delete r[j];}}}}}else{m=this.moduleInfo[i];s=m&&m.supersedes;if(s){for(j=0;j<s.length;j=j+1){if(s[j] in r){delete r[s[j]];}}}}}}},_onFailure:function(msg){YAHOO.log("Failure","info","loader");var f=this.onFailure;if(f){f.call(this.scope,{msg:"failure: "+msg,data:this.data,success:false});
-}},_onTimeout:function(){YAHOO.log("Timeout","info","loader");var f=this.onTimeout;if(f){f.call(this.scope,{msg:"timeout",data:this.data,success:false});}},_sort:function(){var s=[],info=this.moduleInfo,loaded=this.loaded,checkOptional=!this.loadOptional,me=this;var requires=function(aa,bb){var mm=info[aa];if(loaded[bb]||!mm){return false;}var ii,rr=mm.expanded,after=mm.after,other=info[bb],optional=mm.optional;if(rr&&YUI.ArrayUtil.indexOf(rr,bb)>-1){return true;}if(after&&YUI.ArrayUtil.indexOf(after,bb)>-1){return true;}if(checkOptional&&optional&&YUI.ArrayUtil.indexOf(optional,bb)>-1){return true;}var ss=info[bb]&&info[bb].supersedes;if(ss){for(ii=0;ii<ss.length;ii=ii+1){if(requires(aa,ss[ii])){return true;}}}if(mm.ext&&mm.type=="css"&&!other.ext&&other.type=="css"){return true;}return false;};for(var i in this.required){if(lang.hasOwnProperty(this.required,i)){s.push(i);}}var p=0;for(;;){var l=s.length,a,b,j,k,moved=false;for(j=p;j<l;j=j+1){a=s[j];for(k=j+1;k<l;k=k+1){if(requires(a,s[k])){b=s.splice(k,1);s.splice(j,0,b[0]);moved=true;break;}}if(moved){break;}else{p=p+1;}}if(!moved){break;}}this.sorted=s;},toString:function(){var o={type:"YUILoader",base:this.base,filter:this.filter,required:this.required,loaded:this.loaded,inserted:this.inserted};lang.dump(o,1);},_combine:function(){this._combining=[];var self=this,s=this.sorted,len=s.length,js=this.comboBase,css=this.comboBase,target,startLen=js.length,i,m,type=this.loadType;YAHOO.log("type "+type);for(i=0;i<len;i=i+1){m=this.moduleInfo[s[i]];if(m&&!m.ext&&(!type||type===m.type)){target=this.root+m.path;target+="&";if(m.type=="js"){js+=target;}else{css+=target;}this._combining.push(s[i]);}}if(this._combining.length){YAHOO.log("Attempting to combine: "+this._combining,"info","loader");var callback=function(o){var c=this._combining,len=c.length,i,m;for(i=0;i<len;i=i+1){this.inserted[c[i]]=true;}this.loadNext(o.data);},loadScript=function(){if(js.length>startLen){YAHOO.util.Get.script(self._filter(js),{data:self._loading,onSuccess:callback,onFailure:self._onFailure,onTimeout:self._onTimeout,insertBefore:self.insertBefore,charset:self.charset,timeout:self.timeout,scope:self});}};if(css.length>startLen){YAHOO.util.Get.css(this._filter(css),{data:this._loading,onSuccess:loadScript,onFailure:this._onFailure,onTimeout:this._onTimeout,insertBefore:this.insertBefore,charset:this.charset,timeout:this.timeout,scope:self});}else{loadScript();}return ;}else{this.loadNext(this._loading);}},insert:function(o,type){this.calculate(o);this._loading=true;this.loadType=type;if(this.combine){return this._combine();}if(!type){var self=this;this._internalCallback=function(){self._internalCallback=null;self.insert(null,"js");};this.insert(null,"css");return ;}this.loadNext();},sandbox:function(o,type){this._config(o);if(!this.onSuccess){throw new Error("You must supply an onSuccess handler for your sandbox");}this._sandbox=true;var self=this;if(!type||type!=="js"){this._internalCallback=function(){self._internalCallback=null;self.sandbox(null,"js");};this.insert(null,"css");return ;}if(!util.Connect){var ld=new YAHOO.util.YUILoader();ld.insert({base:this.base,filter:this.filter,require:"connection",insertBefore:this.insertBefore,charset:this.charset,onSuccess:function(){this.sandbox(null,"js");},scope:this},"js");return ;}this._scriptText=[];this._loadCount=0;this._stopCount=this.sorted.length;this._xhr=[];this.calculate();var s=this.sorted,l=s.length,i,m,url;for(i=0;i<l;i=i+1){m=this.moduleInfo[s[i]];if(!m){this._onFailure("undefined module "+m);for(var j=0;j<this._xhr.length;j=j+1){this._xhr[j].abort();}return ;}if(m.type!=="js"){this._loadCount++;continue;}url=m.fullpath;url=(url)?this._filter(url):this._url(m.path);var xhrData={success:function(o){var idx=o.argument[0],name=o.argument[2];this._scriptText[idx]=o.responseText;if(this.onProgress){this.onProgress.call(this.scope,{name:name,scriptText:o.responseText,xhrResponse:o,data:this.data});}this._loadCount++;if(this._loadCount>=this._stopCount){var v=this.varName||"YAHOO";var t="(function() {\n";var b="\nreturn "+v+";\n})();";var ref=eval(t+this._scriptText.join("\n")+b);this._pushEvents(ref);if(ref){this.onSuccess.call(this.scope,{reference:ref,data:this.data});}else{this._onFailure.call(this.varName+" reference failure");}}},failure:function(o){this.onFailure.call(this.scope,{msg:"XHR failure",xhrResponse:o,data:this.data});},scope:this,argument:[i,url,s[i]]};this._xhr.push(util.Connect.asyncRequest("GET",url,xhrData));}},loadNext:function(mname){if(!this._loading){return ;}if(mname){if(mname!==this._loading){return ;}this.inserted[mname]=true;if(this.onProgress){this.onProgress.call(this.scope,{name:mname,data:this.data});}}var s=this.sorted,len=s.length,i,m;for(i=0;i<len;i=i+1){if(s[i] in this.inserted){continue;}if(s[i]===this._loading){return ;}m=this.moduleInfo[s[i]];if(!m){this.onFailure.call(this.scope,{msg:"undefined module "+m,data:this.data});return ;}if(!this.loadType||this.loadType===m.type){this._loading=s[i];var fn=(m.type==="css")?util.Get.css:util.Get.script,url=m.fullpath,self=this,c=function(o){self.loadNext(o.data);};url=(url)?this._filter(url):this._url(m.path);if(env.ua.webkit&&env.ua.webkit<420&&m.type==="js"&&!m.varName){c=null;this._useYahooListener=true;}fn(url,{data:s[i],onSuccess:c,onFailure:this._onFailure,onTimeout:this._onTimeout,insertBefore:this.insertBefore,charset:this.charset,timeout:this.timeout,varName:m.varName,scope:self});return ;}}this._loading=null;if(this._internalCallback){var f=this._internalCallback;this._internalCallback=null;f.call(this);}else{if(this.onSuccess){this._pushEvents();this.onSuccess.call(this.scope,{data:this.data});}}},_pushEvents:function(ref){var r=ref||YAHOO;if(r.util&&r.util.Event){r.util.Event._load();}},_filter:function(str){var f=this.filter;return(f)?str.replace(new RegExp(f.searchExp),f.replaceStr):str;},_url:function(path){var u=this.base||"",f=this.filter;u=u+path;return this._filter(u);}};})();(function(){var B=YAHOO.util,F=YAHOO.lang,L,J,K={},G={},N=window.document;YAHOO.env._id_counter=YAHOO.env._id_counter||0;var C=YAHOO.env.ua.opera,M=YAHOO.env.ua.webkit,A=YAHOO.env.ua.gecko,H=YAHOO.env.ua.ie;var E={HYPHEN:/(-[a-z])/i,ROOT_TAG:/^body|html$/i,OP_SCROLL:/^(?:inline|table-row)$/i};var O=function(Q){if(!E.HYPHEN.test(Q)){return Q;}if(K[Q]){return K[Q];}var R=Q;while(E.HYPHEN.exec(R)){R=R.replace(RegExp.$1,RegExp.$1.substr(1).toUpperCase());}K[Q]=R;return R;};var P=function(R){var Q=G[R];if(!Q){Q=new RegExp("(?:^|\\s+)"+R+"(?:\\s+|$)");G[R]=Q;}return Q;};if(N.defaultView&&N.defaultView.getComputedStyle){L=function(Q,T){var S=null;if(T=="float"){T="cssFloat";}var R=Q.ownerDocument.defaultView.getComputedStyle(Q,"");if(R){S=R[O(T)];}return Q.style[T]||S;};}else{if(N.documentElement.currentStyle&&H){L=function(Q,S){switch(O(S)){case"opacity":var U=100;try{U=Q.filters["DXImageTransform.Microsoft.Alpha"].opacity;}catch(T){try{U=Q.filters("alpha").opacity;}catch(T){}}return U/100;case"float":S="styleFloat";default:var R=Q.currentStyle?Q.currentStyle[S]:null;return(Q.style[S]||R);}};}else{L=function(Q,R){return Q.style[R];};}}if(H){J=function(Q,R,S){switch(R){case"opacity":if(F.isString(Q.style.filter)){Q.style.filter="alpha(opacity="+S*100+")";if(!Q.currentStyle||!Q.currentStyle.hasLayout){Q.style.zoom=1;}}break;case"float":R="styleFloat";default:Q.style[R]=S;}};}else{J=function(Q,R,S){if(R=="float"){R="cssFloat";}Q.style[R]=S;};}var D=function(Q,R){return Q&&Q.nodeType==1&&(!R||R(Q));};YAHOO.util.Dom={get:function(S){if(S){if(S.nodeType||S.item){return S;}if(typeof S==="string"){return N.getElementById(S);}if("length" in S){var T=[];for(var R=0,Q=S.length;R<Q;++R){T[T.length]=B.Dom.get(S[R]);}return T;}return S;}return null;},getStyle:function(Q,S){S=O(S);var R=function(T){return L(T,S);};return B.Dom.batch(Q,R,B.Dom,true);},setStyle:function(Q,S,T){S=O(S);var R=function(U){J(U,S,T);};B.Dom.batch(Q,R,B.Dom,true);},getXY:function(Q){var R=function(S){if((S.parentNode===null||S.offsetParent===null||this.getStyle(S,"display")=="none")&&S!=S.ownerDocument.body){return false;}return I(S);};return B.Dom.batch(Q,R,B.Dom,true);},getX:function(Q){var R=function(S){return B.Dom.getXY(S)[0];};return B.Dom.batch(Q,R,B.Dom,true);},getY:function(Q){var R=function(S){return B.Dom.getXY(S)[1];};return B.Dom.batch(Q,R,B.Dom,true);},setXY:function(Q,T,S){var R=function(W){var V=this.getStyle(W,"position");if(V=="static"){this.setStyle(W,"position","relative");V="relative";}var Y=this.getXY(W);if(Y===false){return false;}var X=[parseInt(this.getStyle(W,"left"),10),parseInt(this.getStyle(W,"top"),10)];if(isNaN(X[0])){X[0]=(V=="relative")?0:W.offsetLeft;}if(isNaN(X[1])){X[1]=(V=="relative")?0:W.offsetTop;}if(T[0]!==null){W.style.left=T[0]-Y[0]+X[0]+"px";}if(T[1]!==null){W.style.top=T[1]-Y[1]+X[1]+"px";}if(!S){var U=this.getXY(W);if((T[0]!==null&&U[0]!=T[0])||(T[1]!==null&&U[1]!=T[1])){this.setXY(W,T,true);}}};B.Dom.batch(Q,R,B.Dom,true);},setX:function(R,Q){B.Dom.setXY(R,[Q,null]);},setY:function(Q,R){B.Dom.setXY(Q,[null,R]);},getRegion:function(Q){var R=function(S){if((S.parentNode===null||S.offsetParent===null||this.getStyle(S,"display")=="none")&&S!=S.ownerDocument.body){return false;}var T=B.Region.getRegion(S);return T;};return B.Dom.batch(Q,R,B.Dom,true);},getClientWidth:function(){return B.Dom.getViewportWidth();},getClientHeight:function(){return B.Dom.getViewportHeight();},getElementsByClassName:function(U,Y,V,W){U=F.trim(U);Y=Y||"*";V=(V)?B.Dom.get(V):null||N;if(!V){return[];}var R=[],Q=V.getElementsByTagName(Y),X=P(U);for(var S=0,T=Q.length;S<T;++S){if(X.test(Q[S].className)){R[R.length]=Q[S];if(W){W.call(Q[S],Q[S]);}}}return R;},hasClass:function(S,R){var Q=P(R);var T=function(U){return Q.test(U.className);};return B.Dom.batch(S,T,B.Dom,true);},addClass:function(R,Q){var S=function(T){if(this.hasClass(T,Q)){return false;}T.className=F.trim([T.className,Q].join(" "));return true;};return B.Dom.batch(R,S,B.Dom,true);},removeClass:function(S,R){var Q=P(R);var T=function(W){var V=false,X=W.className;if(R&&X&&this.hasClass(W,R)){W.className=X.replace(Q," ");if(this.hasClass(W,R)){this.removeClass(W,R);}W.className=F.trim(W.className);if(W.className===""){var U=(W.hasAttribute)?"class":"className";W.removeAttribute(U);}V=true;}return V;};return B.Dom.batch(S,T,B.Dom,true);},replaceClass:function(T,R,Q){if(!Q||R===Q){return false;}var S=P(R);var U=function(V){if(!this.hasClass(V,R)){this.addClass(V,Q);return true;}V.className=V.className.replace(S," "+Q+" ");if(this.hasClass(V,R)){this.removeClass(V,R);}V.className=F.trim(V.className);return true;};return B.Dom.batch(T,U,B.Dom,true);},generateId:function(Q,S){S=S||"yui-gen";var R=function(T){if(T&&T.id){return T.id;}var U=S+YAHOO.env._id_counter++;if(T){T.id=U;}return U;};return B.Dom.batch(Q,R,B.Dom,true)||R.apply(B.Dom,arguments);},isAncestor:function(R,S){R=B.Dom.get(R);S=B.Dom.get(S);var Q=false;if((R&&S)&&(R.nodeType&&S.nodeType)){if(R.contains&&R!==S){Q=R.contains(S);}else{if(R.compareDocumentPosition){Q=!!(R.compareDocumentPosition(S)&16);}}}else{}return Q;},inDocument:function(Q){return this.isAncestor(N.documentElement,Q);},getElementsBy:function(X,R,S,U){R=R||"*";S=(S)?B.Dom.get(S):null||N;if(!S){return[];}var T=[],W=S.getElementsByTagName(R);for(var V=0,Q=W.length;V<Q;++V){if(X(W[V])){T[T.length]=W[V];if(U){U(W[V]);}}}return T;},batch:function(U,X,W,S){U=(U&&(U.tagName||U.item))?U:B.Dom.get(U);if(!U||!X){return false;}var T=(S)?W:window;if(U.tagName||U.length===undefined){return X.call(T,U,W);}var V=[];for(var R=0,Q=U.length;R<Q;++R){V[V.length]=X.call(T,U[R],W);}return V;},getDocumentHeight:function(){var R=(N.compatMode!="CSS1Compat")?N.body.scrollHeight:N.documentElement.scrollHeight;var Q=Math.max(R,B.Dom.getViewportHeight());return Q;},getDocumentWidth:function(){var R=(N.compatMode!="CSS1Compat")?N.body.scrollWidth:N.documentElement.scrollWidth;var Q=Math.max(R,B.Dom.getViewportWidth());return Q;},getViewportHeight:function(){var Q=self.innerHeight;
-var R=N.compatMode;if((R||H)&&!C){Q=(R=="CSS1Compat")?N.documentElement.clientHeight:N.body.clientHeight;}return Q;},getViewportWidth:function(){var Q=self.innerWidth;var R=N.compatMode;if(R||H){Q=(R=="CSS1Compat")?N.documentElement.clientWidth:N.body.clientWidth;}return Q;},getAncestorBy:function(Q,R){while((Q=Q.parentNode)){if(D(Q,R)){return Q;}}return null;},getAncestorByClassName:function(R,Q){R=B.Dom.get(R);if(!R){return null;}var S=function(T){return B.Dom.hasClass(T,Q);};return B.Dom.getAncestorBy(R,S);},getAncestorByTagName:function(R,Q){R=B.Dom.get(R);if(!R){return null;}var S=function(T){return T.tagName&&T.tagName.toUpperCase()==Q.toUpperCase();};return B.Dom.getAncestorBy(R,S);},getPreviousSiblingBy:function(Q,R){while(Q){Q=Q.previousSibling;if(D(Q,R)){return Q;}}return null;},getPreviousSibling:function(Q){Q=B.Dom.get(Q);if(!Q){return null;}return B.Dom.getPreviousSiblingBy(Q);},getNextSiblingBy:function(Q,R){while(Q){Q=Q.nextSibling;if(D(Q,R)){return Q;}}return null;},getNextSibling:function(Q){Q=B.Dom.get(Q);if(!Q){return null;}return B.Dom.getNextSiblingBy(Q);},getFirstChildBy:function(Q,S){var R=(D(Q.firstChild,S))?Q.firstChild:null;return R||B.Dom.getNextSiblingBy(Q.firstChild,S);},getFirstChild:function(Q,R){Q=B.Dom.get(Q);if(!Q){return null;}return B.Dom.getFirstChildBy(Q);},getLastChildBy:function(Q,S){if(!Q){return null;}var R=(D(Q.lastChild,S))?Q.lastChild:null;return R||B.Dom.getPreviousSiblingBy(Q.lastChild,S);},getLastChild:function(Q){Q=B.Dom.get(Q);return B.Dom.getLastChildBy(Q);},getChildrenBy:function(R,T){var S=B.Dom.getFirstChildBy(R,T);var Q=S?[S]:[];B.Dom.getNextSiblingBy(S,function(U){if(!T||T(U)){Q[Q.length]=U;}return false;});return Q;},getChildren:function(Q){Q=B.Dom.get(Q);if(!Q){}return B.Dom.getChildrenBy(Q);},getDocumentScrollLeft:function(Q){Q=Q||N;return Math.max(Q.documentElement.scrollLeft,Q.body.scrollLeft);},getDocumentScrollTop:function(Q){Q=Q||N;return Math.max(Q.documentElement.scrollTop,Q.body.scrollTop);},insertBefore:function(R,Q){R=B.Dom.get(R);Q=B.Dom.get(Q);if(!R||!Q||!Q.parentNode){return null;}return Q.parentNode.insertBefore(R,Q);},insertAfter:function(R,Q){R=B.Dom.get(R);Q=B.Dom.get(Q);if(!R||!Q||!Q.parentNode){return null;}if(Q.nextSibling){return Q.parentNode.insertBefore(R,Q.nextSibling);}else{return Q.parentNode.appendChild(R);}},getClientRegion:function(){var S=B.Dom.getDocumentScrollTop(),R=B.Dom.getDocumentScrollLeft(),T=B.Dom.getViewportWidth()+R,Q=B.Dom.getViewportHeight()+S;return new B.Region(S,T,Q,R);}};var I=function(){if(N.documentElement.getBoundingClientRect){return function(S){var T=S.getBoundingClientRect(),R=Math.round;var Q=S.ownerDocument;return[R(T.left+B.Dom.getDocumentScrollLeft(Q)),R(T.top+B.Dom.getDocumentScrollTop(Q))];};}else{return function(S){var T=[S.offsetLeft,S.offsetTop];var R=S.offsetParent;var Q=(M&&B.Dom.getStyle(S,"position")=="absolute"&&S.offsetParent==S.ownerDocument.body);if(R!=S){while(R){T[0]+=R.offsetLeft;T[1]+=R.offsetTop;if(!Q&&M&&B.Dom.getStyle(R,"position")=="absolute"){Q=true;}R=R.offsetParent;}}if(Q){T[0]-=S.ownerDocument.body.offsetLeft;T[1]-=S.ownerDocument.body.offsetTop;}R=S.parentNode;while(R.tagName&&!E.ROOT_TAG.test(R.tagName)){if(R.scrollTop||R.scrollLeft){T[0]-=R.scrollLeft;T[1]-=R.scrollTop;}R=R.parentNode;}return T;};}}();})();YAHOO.util.Region=function(C,D,A,B){this.top=C;this[1]=C;this.right=D;this.bottom=A;this.left=B;this[0]=B;};YAHOO.util.Region.prototype.contains=function(A){return(A.left>=this.left&&A.right<=this.right&&A.top>=this.top&&A.bottom<=this.bottom);};YAHOO.util.Region.prototype.getArea=function(){return((this.bottom-this.top)*(this.right-this.left));};YAHOO.util.Region.prototype.intersect=function(E){var C=Math.max(this.top,E.top);var D=Math.min(this.right,E.right);var A=Math.min(this.bottom,E.bottom);var B=Math.max(this.left,E.left);if(A>=C&&D>=B){return new YAHOO.util.Region(C,D,A,B);}else{return null;}};YAHOO.util.Region.prototype.union=function(E){var C=Math.min(this.top,E.top);var D=Math.max(this.right,E.right);var A=Math.max(this.bottom,E.bottom);var B=Math.min(this.left,E.left);return new YAHOO.util.Region(C,D,A,B);};YAHOO.util.Region.prototype.toString=function(){return("Region {"+"top: "+this.top+", right: "+this.right+", bottom: "+this.bottom+", left: "+this.left+"}");};YAHOO.util.Region.getRegion=function(D){var F=YAHOO.util.Dom.getXY(D);var C=F[1];var E=F[0]+D.offsetWidth;var A=F[1]+D.offsetHeight;var B=F[0];return new YAHOO.util.Region(C,E,A,B);};YAHOO.util.Point=function(A,B){if(YAHOO.lang.isArray(A)){B=A[1];A=A[0];}this.x=this.right=this.left=this[0]=A;this.y=this.top=this.bottom=this[1]=B;};YAHOO.util.Point.prototype=new YAHOO.util.Region();YAHOO.register("dom",YAHOO.util.Dom,{version:"2.6.0",build:"1321"});YAHOO.util.CustomEvent=function(D,B,C,A){this.type=D;this.scope=B||window;this.silent=C;this.signature=A||YAHOO.util.CustomEvent.LIST;this.subscribers=[];if(!this.silent){}var E="_YUICEOnSubscribe";if(D!==E){this.subscribeEvent=new YAHOO.util.CustomEvent(E,this,true);}this.lastError=null;};YAHOO.util.CustomEvent.LIST=0;YAHOO.util.CustomEvent.FLAT=1;YAHOO.util.CustomEvent.prototype={subscribe:function(B,C,A){if(!B){throw new Error("Invalid callback for subscriber to '"+this.type+"'");}if(this.subscribeEvent){this.subscribeEvent.fire(B,C,A);}this.subscribers.push(new YAHOO.util.Subscriber(B,C,A));},unsubscribe:function(D,F){if(!D){return this.unsubscribeAll();}var E=false;for(var B=0,A=this.subscribers.length;B<A;++B){var C=this.subscribers[B];if(C&&C.contains(D,F)){this._delete(B);E=true;}}return E;},fire:function(){this.lastError=null;var K=[],E=this.subscribers.length;if(!E&&this.silent){return true;}var I=[].slice.call(arguments,0),G=true,D,J=false;if(!this.silent){}var C=this.subscribers.slice(),A=YAHOO.util.Event.throwErrors;for(D=0;D<E;++D){var M=C[D];if(!M){J=true;}else{if(!this.silent){}var L=M.getScope(this.scope);if(this.signature==YAHOO.util.CustomEvent.FLAT){var B=null;if(I.length>0){B=I[0];}try{G=M.fn.call(L,B,M.obj);}catch(F){this.lastError=F;if(A){throw F;}}}else{try{G=M.fn.call(L,this.type,I,M.obj);}catch(H){this.lastError=H;if(A){throw H;}}}if(false===G){if(!this.silent){}break;}}}return(G!==false);},unsubscribeAll:function(){for(var A=this.subscribers.length-1;A>-1;A--){this._delete(A);}this.subscribers=[];return A;},_delete:function(A){var B=this.subscribers[A];if(B){delete B.fn;delete B.obj;}this.subscribers.splice(A,1);},toString:function(){return"CustomEvent: "+"'"+this.type+"', "+"scope: "+this.scope;}};YAHOO.util.Subscriber=function(B,C,A){this.fn=B;this.obj=YAHOO.lang.isUndefined(C)?null:C;this.override=A;};YAHOO.util.Subscriber.prototype.getScope=function(A){if(this.override){if(this.override===true){return this.obj;}else{return this.override;}}return A;};YAHOO.util.Subscriber.prototype.contains=function(A,B){if(B){return(this.fn==A&&this.obj==B);}else{return(this.fn==A);}};YAHOO.util.Subscriber.prototype.toString=function(){return"Subscriber { obj: "+this.obj+", override: "+(this.override||"no")+" }";};if(!YAHOO.util.Event){YAHOO.util.Event=function(){var H=false;var I=[];var J=[];var G=[];var E=[];var C=0;var F=[];var B=[];var A=0;var D={63232:38,63233:40,63234:37,63235:39,63276:33,63277:34,25:9};var K=YAHOO.env.ua.ie?"focusin":"focus";var L=YAHOO.env.ua.ie?"focusout":"blur";return{POLL_RETRYS:2000,POLL_INTERVAL:20,EL:0,TYPE:1,FN:2,WFN:3,UNLOAD_OBJ:3,ADJ_SCOPE:4,OBJ:5,OVERRIDE:6,CAPTURE:7,lastError:null,isSafari:YAHOO.env.ua.webkit,webkit:YAHOO.env.ua.webkit,isIE:YAHOO.env.ua.ie,_interval:null,_dri:null,DOMReady:false,throwErrors:false,startInterval:function(){if(!this._interval){var M=this;var N=function(){M._tryPreloadAttach();};this._interval=setInterval(N,this.POLL_INTERVAL);}},onAvailable:function(R,O,S,Q,P){var M=(YAHOO.lang.isString(R))?[R]:R;for(var N=0;N<M.length;N=N+1){F.push({id:M[N],fn:O,obj:S,override:Q,checkReady:P});}C=this.POLL_RETRYS;this.startInterval();},onContentReady:function(O,M,P,N){this.onAvailable(O,M,P,N,true);},onDOMReady:function(M,O,N){if(this.DOMReady){setTimeout(function(){var P=window;if(N){if(N===true){P=O;}else{P=N;}}M.call(P,"DOMReady",[],O);},0);}else{this.DOMReadyEvent.subscribe(M,O,N);}},_addListener:function(O,M,X,S,N,a){if(!X||!X.call){return false;}if(this._isValidCollection(O)){var Y=true;for(var T=0,V=O.length;T<V;++T){Y=this._addListener(O[T],M,X,S,N,a)&&Y;}return Y;}else{if(YAHOO.lang.isString(O)){var R=this.getEl(O);if(R){O=R;}else{this.onAvailable(O,function(){YAHOO.util.Event._addListener(O,M,X,S,N,a);});return true;}}}if(!O){return false;}if("unload"==M&&S!==this){J[J.length]=[O,M,X,S,N,a];return true;}var b=O;if(N){if(N===true){b=S;}else{b=N;}}var P=function(c){return X.call(b,YAHOO.util.Event.getEvent(c,O),S);};var Z=[O,M,X,P,b,S,N,a];var U=I.length;I[U]=Z;if(this.useLegacyEvent(O,M)){var Q=this.getLegacyIndex(O,M);if(Q==-1||O!=G[Q][0]){Q=G.length;B[O.id+M]=Q;G[Q]=[O,M,O["on"+M]];E[Q]=[];O["on"+M]=function(c){YAHOO.util.Event.fireLegacyEvent(YAHOO.util.Event.getEvent(c),Q);};}E[Q].push(Z);}else{try{this._simpleAdd(O,M,P,a);}catch(W){this.lastError=W;this._removeListener(O,M,X,a);return false;}}return true;},addListener:function(O,Q,N,P,M){return this._addListener(O,Q,N,P,M,false);},addFocusListener:function(O,N,P,M){return this._addListener(O,K,N,P,M,true);},removeFocusListener:function(N,M){return this._removeListener(N,K,M,true);},addBlurListener:function(O,N,P,M){return this._addListener(O,L,N,P,M,true);},removeBlurListener:function(N,M){return this._removeListener(N,L,M,true);},fireLegacyEvent:function(Q,O){var S=true,M,U,T,V,R;U=E[O].slice();for(var N=0,P=U.length;N<P;++N){T=U[N];if(T&&T[this.WFN]){V=T[this.ADJ_SCOPE];R=T[this.WFN].call(V,Q);S=(S&&R);}}M=G[O];if(M&&M[2]){M[2](Q);}return S;},getLegacyIndex:function(N,O){var M=this.generateId(N)+O;if(typeof B[M]=="undefined"){return -1;}else{return B[M];}},useLegacyEvent:function(M,N){return(this.webkit&&this.webkit<419&&("click"==N||"dblclick"==N));},_removeListener:function(N,M,V,Y){var Q,T,X;if(typeof N=="string"){N=this.getEl(N);}else{if(this._isValidCollection(N)){var W=true;for(Q=N.length-1;Q>-1;Q--){W=(this._removeListener(N[Q],M,V,Y)&&W);}return W;}}if(!V||!V.call){return this.purgeElement(N,false,M);}if("unload"==M){for(Q=J.length-1;Q>-1;Q--){X=J[Q];if(X&&X[0]==N&&X[1]==M&&X[2]==V){J.splice(Q,1);return true;}}return false;}var R=null;var S=arguments[4];if("undefined"===typeof S){S=this._getCacheIndex(N,M,V);}if(S>=0){R=I[S];}if(!N||!R){return false;}if(this.useLegacyEvent(N,M)){var P=this.getLegacyIndex(N,M);var O=E[P];if(O){for(Q=0,T=O.length;Q<T;++Q){X=O[Q];if(X&&X[this.EL]==N&&X[this.TYPE]==M&&X[this.FN]==V){O.splice(Q,1);break;}}}}else{try{this._simpleRemove(N,M,R[this.WFN],Y);}catch(U){this.lastError=U;return false;}}delete I[S][this.WFN];delete I[S][this.FN];
-I.splice(S,1);return true;},removeListener:function(N,O,M){return this._removeListener(N,O,M,false);},getTarget:function(O,N){var M=O.target||O.srcElement;return this.resolveTextNode(M);},resolveTextNode:function(N){try{if(N&&3==N.nodeType){return N.parentNode;}}catch(M){}return N;},getPageX:function(N){var M=N.pageX;if(!M&&0!==M){M=N.clientX||0;if(this.isIE){M+=this._getScrollLeft();}}return M;},getPageY:function(M){var N=M.pageY;if(!N&&0!==N){N=M.clientY||0;if(this.isIE){N+=this._getScrollTop();}}return N;},getXY:function(M){return[this.getPageX(M),this.getPageY(M)];},getRelatedTarget:function(N){var M=N.relatedTarget;if(!M){if(N.type=="mouseout"){M=N.toElement;}else{if(N.type=="mouseover"){M=N.fromElement;}}}return this.resolveTextNode(M);},getTime:function(O){if(!O.time){var N=new Date().getTime();try{O.time=N;}catch(M){this.lastError=M;return N;}}return O.time;},stopEvent:function(M){this.stopPropagation(M);this.preventDefault(M);},stopPropagation:function(M){if(M.stopPropagation){M.stopPropagation();}else{M.cancelBubble=true;}},preventDefault:function(M){if(M.preventDefault){M.preventDefault();}else{M.returnValue=false;}},getEvent:function(O,M){var N=O||window.event;if(!N){var P=this.getEvent.caller;while(P){N=P.arguments[0];if(N&&Event==N.constructor){break;}P=P.caller;}}return N;},getCharCode:function(N){var M=N.keyCode||N.charCode||0;if(YAHOO.env.ua.webkit&&(M in D)){M=D[M];}return M;},_getCacheIndex:function(Q,R,P){for(var O=0,N=I.length;O<N;O=O+1){var M=I[O];if(M&&M[this.FN]==P&&M[this.EL]==Q&&M[this.TYPE]==R){return O;}}return -1;},generateId:function(M){var N=M.id;if(!N){N="yuievtautoid-"+A;++A;M.id=N;}return N;},_isValidCollection:function(N){try{return(N&&typeof N!=="string"&&N.length&&!N.tagName&&!N.alert&&typeof N[0]!=="undefined");}catch(M){return false;}},elCache:{},getEl:function(M){return(typeof M==="string")?document.getElementById(M):M;},clearCache:function(){},DOMReadyEvent:new YAHOO.util.CustomEvent("DOMReady",this),_load:function(N){if(!H){H=true;var M=YAHOO.util.Event;M._ready();M._tryPreloadAttach();}},_ready:function(N){var M=YAHOO.util.Event;if(!M.DOMReady){M.DOMReady=true;M.DOMReadyEvent.fire();M._simpleRemove(document,"DOMContentLoaded",M._ready);}},_tryPreloadAttach:function(){if(F.length===0){C=0;clearInterval(this._interval);this._interval=null;return ;}if(this.locked){return ;}if(this.isIE){if(!this.DOMReady){this.startInterval();return ;}}this.locked=true;var S=!H;if(!S){S=(C>0&&F.length>0);}var R=[];var T=function(V,W){var U=V;if(W.override){if(W.override===true){U=W.obj;}else{U=W.override;}}W.fn.call(U,W.obj);};var N,M,Q,P,O=[];for(N=0,M=F.length;N<M;N=N+1){Q=F[N];if(Q){P=this.getEl(Q.id);if(P){if(Q.checkReady){if(H||P.nextSibling||!S){O.push(Q);F[N]=null;}}else{T(P,Q);F[N]=null;}}else{R.push(Q);}}}for(N=0,M=O.length;N<M;N=N+1){Q=O[N];T(this.getEl(Q.id),Q);}C--;if(S){for(N=F.length-1;N>-1;N--){Q=F[N];if(!Q||!Q.id){F.splice(N,1);}}this.startInterval();}else{clearInterval(this._interval);this._interval=null;}this.locked=false;},purgeElement:function(Q,R,T){var O=(YAHOO.lang.isString(Q))?this.getEl(Q):Q;var S=this.getListeners(O,T),P,M;if(S){for(P=S.length-1;P>-1;P--){var N=S[P];this._removeListener(O,N.type,N.fn,N.capture);}}if(R&&O&&O.childNodes){for(P=0,M=O.childNodes.length;P<M;++P){this.purgeElement(O.childNodes[P],R,T);}}},getListeners:function(O,M){var R=[],N;if(!M){N=[I,J];}else{if(M==="unload"){N=[J];}else{N=[I];}}var T=(YAHOO.lang.isString(O))?this.getEl(O):O;for(var Q=0;Q<N.length;Q=Q+1){var V=N[Q];if(V){for(var S=0,U=V.length;S<U;++S){var P=V[S];if(P&&P[this.EL]===T&&(!M||M===P[this.TYPE])){R.push({type:P[this.TYPE],fn:P[this.FN],obj:P[this.OBJ],adjust:P[this.OVERRIDE],scope:P[this.ADJ_SCOPE],capture:P[this.CAPTURE],index:S});}}}}return(R.length)?R:null;},_unload:function(S){var M=YAHOO.util.Event,P,O,N,R,Q,T=J.slice();for(P=0,R=J.length;P<R;++P){N=T[P];if(N){var U=window;if(N[M.ADJ_SCOPE]){if(N[M.ADJ_SCOPE]===true){U=N[M.UNLOAD_OBJ];}else{U=N[M.ADJ_SCOPE];}}N[M.FN].call(U,M.getEvent(S,N[M.EL]),N[M.UNLOAD_OBJ]);T[P]=null;N=null;U=null;}}J=null;if(I){for(O=I.length-1;O>-1;O--){N=I[O];if(N){M._removeListener(N[M.EL],N[M.TYPE],N[M.FN],N[M.CAPTURE],O);}}N=null;}G=null;M._simpleRemove(window,"unload",M._unload);},_getScrollLeft:function(){return this._getScroll()[1];},_getScrollTop:function(){return this._getScroll()[0];},_getScroll:function(){var M=document.documentElement,N=document.body;if(M&&(M.scrollTop||M.scrollLeft)){return[M.scrollTop,M.scrollLeft];}else{if(N){return[N.scrollTop,N.scrollLeft];}else{return[0,0];}}},regCE:function(){},_simpleAdd:function(){if(window.addEventListener){return function(O,P,N,M){O.addEventListener(P,N,(M));};}else{if(window.attachEvent){return function(O,P,N,M){O.attachEvent("on"+P,N);};}else{return function(){};}}}(),_simpleRemove:function(){if(window.removeEventListener){return function(O,P,N,M){O.removeEventListener(P,N,(M));};}else{if(window.detachEvent){return function(N,O,M){N.detachEvent("on"+O,M);};}else{return function(){};}}}()};}();(function(){var EU=YAHOO.util.Event;EU.on=EU.addListener;EU.onFocus=EU.addFocusListener;EU.onBlur=EU.addBlurListener;
-/* DOMReady: based on work by: Dean Edwards/John Resig/Matthias Miller */
-if(EU.isIE){YAHOO.util.Event.onDOMReady(YAHOO.util.Event._tryPreloadAttach,YAHOO.util.Event,true);var n=document.createElement("p");EU._dri=setInterval(function(){try{n.doScroll("left");clearInterval(EU._dri);EU._dri=null;EU._ready();n=null;}catch(ex){}},EU.POLL_INTERVAL);}else{if(EU.webkit&&EU.webkit<525){EU._dri=setInterval(function(){var rs=document.readyState;if("loaded"==rs||"complete"==rs){clearInterval(EU._dri);EU._dri=null;EU._ready();}},EU.POLL_INTERVAL);}else{EU._simpleAdd(document,"DOMContentLoaded",EU._ready);}}EU._simpleAdd(window,"load",EU._load);EU._simpleAdd(window,"unload",EU._unload);EU._tryPreloadAttach();})();}YAHOO.util.EventProvider=function(){};YAHOO.util.EventProvider.prototype={__yui_events:null,__yui_subscribers:null,subscribe:function(A,C,F,E){this.__yui_events=this.__yui_events||{};
-var D=this.__yui_events[A];if(D){D.subscribe(C,F,E);}else{this.__yui_subscribers=this.__yui_subscribers||{};var B=this.__yui_subscribers;if(!B[A]){B[A]=[];}B[A].push({fn:C,obj:F,override:E});}},unsubscribe:function(C,E,G){this.__yui_events=this.__yui_events||{};var A=this.__yui_events;if(C){var F=A[C];if(F){return F.unsubscribe(E,G);}}else{var B=true;for(var D in A){if(YAHOO.lang.hasOwnProperty(A,D)){B=B&&A[D].unsubscribe(E,G);}}return B;}return false;},unsubscribeAll:function(A){return this.unsubscribe(A);},createEvent:function(G,D){this.__yui_events=this.__yui_events||{};var A=D||{};var I=this.__yui_events;if(I[G]){}else{var H=A.scope||this;var E=(A.silent);var B=new YAHOO.util.CustomEvent(G,H,E,YAHOO.util.CustomEvent.FLAT);I[G]=B;if(A.onSubscribeCallback){B.subscribeEvent.subscribe(A.onSubscribeCallback);}this.__yui_subscribers=this.__yui_subscribers||{};var F=this.__yui_subscribers[G];if(F){for(var C=0;C<F.length;++C){B.subscribe(F[C].fn,F[C].obj,F[C].override);}}}return I[G];},fireEvent:function(E,D,A,C){this.__yui_events=this.__yui_events||{};var G=this.__yui_events[E];if(!G){return null;}var B=[];for(var F=1;F<arguments.length;++F){B.push(arguments[F]);}return G.fire.apply(G,B);},hasEvent:function(A){if(this.__yui_events){if(this.__yui_events[A]){return true;}}return false;}};YAHOO.util.KeyListener=function(A,F,B,C){if(!A){}else{if(!F){}else{if(!B){}}}if(!C){C=YAHOO.util.KeyListener.KEYDOWN;}var D=new YAHOO.util.CustomEvent("keyPressed");this.enabledEvent=new YAHOO.util.CustomEvent("enabled");this.disabledEvent=new YAHOO.util.CustomEvent("disabled");if(typeof A=="string"){A=document.getElementById(A);}if(typeof B=="function"){D.subscribe(B);}else{D.subscribe(B.fn,B.scope,B.correctScope);}function E(J,I){if(!F.shift){F.shift=false;}if(!F.alt){F.alt=false;}if(!F.ctrl){F.ctrl=false;}if(J.shiftKey==F.shift&&J.altKey==F.alt&&J.ctrlKey==F.ctrl){var G;if(F.keys instanceof Array){for(var H=0;H<F.keys.length;H++){G=F.keys[H];if(G==J.charCode){D.fire(J.charCode,J);break;}else{if(G==J.keyCode){D.fire(J.keyCode,J);break;}}}}else{G=F.keys;if(G==J.charCode){D.fire(J.charCode,J);}else{if(G==J.keyCode){D.fire(J.keyCode,J);}}}}}this.enable=function(){if(!this.enabled){YAHOO.util.Event.addListener(A,C,E);this.enabledEvent.fire(F);}this.enabled=true;};this.disable=function(){if(this.enabled){YAHOO.util.Event.removeListener(A,C,E);this.disabledEvent.fire(F);}this.enabled=false;};this.toString=function(){return"KeyListener ["+F.keys+"] "+A.tagName+(A.id?"["+A.id+"]":"");};};YAHOO.util.KeyListener.KEYDOWN="keydown";YAHOO.util.KeyListener.KEYUP="keyup";YAHOO.util.KeyListener.KEY={ALT:18,BACK_SPACE:8,CAPS_LOCK:20,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,META:224,NUM_LOCK:144,PAGE_DOWN:34,PAGE_UP:33,PAUSE:19,PRINTSCREEN:44,RIGHT:39,SCROLL_LOCK:145,SHIFT:16,SPACE:32,TAB:9,UP:38};YAHOO.register("event",YAHOO.util.Event,{version:"2.6.0",build:"1321"});YAHOO.util.Connect={_msxml_progid:["Microsoft.XMLHTTP","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP"],_http_headers:{},_has_http_headers:false,_use_default_post_header:true,_default_post_header:"application/x-www-form-urlencoded; charset=UTF-8",_default_form_header:"application/x-www-form-urlencoded",_use_default_xhr_header:true,_default_xhr_header:"XMLHttpRequest",_has_default_headers:true,_default_headers:{},_isFormSubmit:false,_isFileUpload:false,_formNode:null,_sFormData:null,_poll:{},_timeOut:{},_polling_interval:50,_transaction_id:0,_submitElementValue:null,_hasSubmitListener:(function(){if(YAHOO.util.Event){YAHOO.util.Event.addListener(document,"click",function(B){var A=YAHOO.util.Event.getTarget(B);if(A.nodeName.toLowerCase()=="input"&&(A.type&&A.type.toLowerCase()=="submit")){YAHOO.util.Connect._submitElementValue=encodeURIComponent(A.name)+"="+encodeURIComponent(A.value);}});return true;}return false;})(),startEvent:new YAHOO.util.CustomEvent("start"),completeEvent:new YAHOO.util.CustomEvent("complete"),successEvent:new YAHOO.util.CustomEvent("success"),failureEvent:new YAHOO.util.CustomEvent("failure"),uploadEvent:new YAHOO.util.CustomEvent("upload"),abortEvent:new YAHOO.util.CustomEvent("abort"),_customEvents:{onStart:["startEvent","start"],onComplete:["completeEvent","complete"],onSuccess:["successEvent","success"],onFailure:["failureEvent","failure"],onUpload:["uploadEvent","upload"],onAbort:["abortEvent","abort"]},setProgId:function(A){this._msxml_progid.unshift(A);},setDefaultPostHeader:function(A){if(typeof A=="string"){this._default_post_header=A;}else{if(typeof A=="boolean"){this._use_default_post_header=A;}}},setDefaultXhrHeader:function(A){if(typeof A=="string"){this._default_xhr_header=A;}else{this._use_default_xhr_header=A;}},setPollingInterval:function(A){if(typeof A=="number"&&isFinite(A)){this._polling_interval=A;}},createXhrObject:function(F){var E,A;try{A=new XMLHttpRequest();E={conn:A,tId:F};}catch(D){for(var B=0;B<this._msxml_progid.length;++B){try{A=new ActiveXObject(this._msxml_progid[B]);E={conn:A,tId:F};break;}catch(C){}}}finally{return E;}},getConnectionObject:function(A){var C;var D=this._transaction_id;try{if(!A){C=this.createXhrObject(D);}else{C={};C.tId=D;C.isUpload=true;}if(C){this._transaction_id++;}}catch(B){}finally{return C;}},asyncRequest:function(F,C,E,A){var D=(this._isFileUpload)?this.getConnectionObject(true):this.getConnectionObject();var B=(E&&E.argument)?E.argument:null;if(!D){return null;}else{if(E&&E.customevents){this.initCustomEvents(D,E);}if(this._isFormSubmit){if(this._isFileUpload){this.uploadFile(D,E,C,A);return D;}if(F.toUpperCase()=="GET"){if(this._sFormData.length!==0){C+=((C.indexOf("?")==-1)?"?":"&")+this._sFormData;}}else{if(F.toUpperCase()=="POST"){A=A?this._sFormData+"&"+A:this._sFormData;}}}if(F.toUpperCase()=="GET"&&(E&&E.cache===false)){C+=((C.indexOf("?")==-1)?"?":"&")+"rnd="+new Date().valueOf().toString();}D.conn.open(F,C,true);if(this._use_default_xhr_header){if(!this._default_headers["X-Requested-With"]){this.initHeader("X-Requested-With",this._default_xhr_header,true);}}if((F.toUpperCase()==="POST"&&this._use_default_post_header)&&this._isFormSubmit===false){this.initHeader("Content-Type",this._default_post_header);}if(this._has_default_headers||this._has_http_headers){this.setHeader(D);}this.handleReadyState(D,E);D.conn.send(A||"");if(this._isFormSubmit===true){this.resetFormState();}this.startEvent.fire(D,B);if(D.startEvent){D.startEvent.fire(D,B);}return D;}},initCustomEvents:function(A,C){var B;for(B in C.customevents){if(this._customEvents[B][0]){A[this._customEvents[B][0]]=new YAHOO.util.CustomEvent(this._customEvents[B][1],(C.scope)?C.scope:null);A[this._customEvents[B][0]].subscribe(C.customevents[B]);}}},handleReadyState:function(C,D){var B=this;var A=(D&&D.argument)?D.argument:null;if(D&&D.timeout){this._timeOut[C.tId]=window.setTimeout(function(){B.abort(C,D,true);},D.timeout);}this._poll[C.tId]=window.setInterval(function(){if(C.conn&&C.conn.readyState===4){window.clearInterval(B._poll[C.tId]);delete B._poll[C.tId];if(D&&D.timeout){window.clearTimeout(B._timeOut[C.tId]);delete B._timeOut[C.tId];}B.completeEvent.fire(C,A);if(C.completeEvent){C.completeEvent.fire(C,A);}B.handleTransactionResponse(C,D);}},this._polling_interval);},handleTransactionResponse:function(F,G,A){var D,C;var B=(G&&G.argument)?G.argument:null;try{if(F.conn.status!==undefined&&F.conn.status!==0){D=F.conn.status;}else{D=13030;}}catch(E){D=13030;}if(D>=200&&D<300||D===1223){C=this.createResponseObject(F,B);if(G&&G.success){if(!G.scope){G.success(C);}else{G.success.apply(G.scope,[C]);}}this.successEvent.fire(C);if(F.successEvent){F.successEvent.fire(C);}}else{switch(D){case 12002:case 12029:case 12030:case 12031:case 12152:case 13030:C=this.createExceptionObject(F.tId,B,(A?A:false));if(G&&G.failure){if(!G.scope){G.failure(C);}else{G.failure.apply(G.scope,[C]);}}break;default:C=this.createResponseObject(F,B);if(G&&G.failure){if(!G.scope){G.failure(C);}else{G.failure.apply(G.scope,[C]);}}}this.failureEvent.fire(C);if(F.failureEvent){F.failureEvent.fire(C);}}this.releaseObject(F);C=null;},createResponseObject:function(A,G){var D={};var I={};try{var C=A.conn.getAllResponseHeaders();var F=C.split("\n");for(var E=0;E<F.length;E++){var B=F[E].indexOf(":");if(B!=-1){I[F[E].substring(0,B)]=F[E].substring(B+2);}}}catch(H){}D.tId=A.tId;D.status=(A.conn.status==1223)?204:A.conn.status;D.statusText=(A.conn.status==1223)?"No Content":A.conn.statusText;D.getResponseHeader=I;D.getAllResponseHeaders=C;D.responseText=A.conn.responseText;D.responseXML=A.conn.responseXML;if(G){D.argument=G;}return D;},createExceptionObject:function(H,D,A){var F=0;var G="communication failure";var C=-1;var B="transaction aborted";var E={};E.tId=H;if(A){E.status=C;E.statusText=B;}else{E.status=F;E.statusText=G;}if(D){E.argument=D;}return E;},initHeader:function(A,D,C){var B=(C)?this._default_headers:this._http_headers;B[A]=D;if(C){this._has_default_headers=true;}else{this._has_http_headers=true;
-}},setHeader:function(A){var B;if(this._has_default_headers){for(B in this._default_headers){if(YAHOO.lang.hasOwnProperty(this._default_headers,B)){A.conn.setRequestHeader(B,this._default_headers[B]);}}}if(this._has_http_headers){for(B in this._http_headers){if(YAHOO.lang.hasOwnProperty(this._http_headers,B)){A.conn.setRequestHeader(B,this._http_headers[B]);}}delete this._http_headers;this._http_headers={};this._has_http_headers=false;}},resetDefaultHeaders:function(){delete this._default_headers;this._default_headers={};this._has_default_headers=false;},setForm:function(M,H,C){var L,B,K,I,P,J=false,F=[],O=0,E,G,D,N,A;this.resetFormState();if(typeof M=="string"){L=(document.getElementById(M)||document.forms[M]);}else{if(typeof M=="object"){L=M;}else{return ;}}if(H){this.createFrame(C?C:null);this._isFormSubmit=true;this._isFileUpload=true;this._formNode=L;return ;}for(E=0,G=L.elements.length;E<G;++E){B=L.elements[E];P=B.disabled;K=B.name;if(!P&&K){K=encodeURIComponent(K)+"=";I=encodeURIComponent(B.value);switch(B.type){case"select-one":if(B.selectedIndex>-1){A=B.options[B.selectedIndex];F[O++]=K+encodeURIComponent((A.attributes.value&&A.attributes.value.specified)?A.value:A.text);}break;case"select-multiple":if(B.selectedIndex>-1){for(D=B.selectedIndex,N=B.options.length;D<N;++D){A=B.options[D];if(A.selected){F[O++]=K+encodeURIComponent((A.attributes.value&&A.attributes.value.specified)?A.value:A.text);}}}break;case"radio":case"checkbox":if(B.checked){F[O++]=K+I;}break;case"file":case undefined:case"reset":case"button":break;case"submit":if(J===false){if(this._hasSubmitListener&&this._submitElementValue){F[O++]=this._submitElementValue;}else{F[O++]=K+I;}J=true;}break;default:F[O++]=K+I;}}}this._isFormSubmit=true;this._sFormData=F.join("&");this.initHeader("Content-Type",this._default_form_header);return this._sFormData;},resetFormState:function(){this._isFormSubmit=false;this._isFileUpload=false;this._formNode=null;this._sFormData="";},createFrame:function(A){var B="yuiIO"+this._transaction_id;var C;if(YAHOO.env.ua.ie){C=document.createElement('<iframe id="'+B+'" name="'+B+'" />');if(typeof A=="boolean"){C.src="javascript:false";}}else{C=document.createElement("iframe");C.id=B;C.name=B;}C.style.position="absolute";C.style.top="-1000px";C.style.left="-1000px";document.body.appendChild(C);},appendPostData:function(A){var D=[],B=A.split("&"),C,E;for(C=0;C<B.length;C++){E=B[C].indexOf("=");if(E!=-1){D[C]=document.createElement("input");D[C].type="hidden";D[C].name=decodeURIComponent(B[C].substring(0,E));D[C].value=decodeURIComponent(B[C].substring(E+1));this._formNode.appendChild(D[C]);}}return D;},uploadFile:function(D,N,E,C){var I="yuiIO"+D.tId,J="multipart/form-data",L=document.getElementById(I),O=this,K=(N&&N.argument)?N.argument:null,M,H,B,G;var A={action:this._formNode.getAttribute("action"),method:this._formNode.getAttribute("method"),target:this._formNode.getAttribute("target")};this._formNode.setAttribute("action",E);this._formNode.setAttribute("method","POST");this._formNode.setAttribute("target",I);if(YAHOO.env.ua.ie){this._formNode.setAttribute("encoding",J);}else{this._formNode.setAttribute("enctype",J);}if(C){M=this.appendPostData(C);}this._formNode.submit();this.startEvent.fire(D,K);if(D.startEvent){D.startEvent.fire(D,K);}if(N&&N.timeout){this._timeOut[D.tId]=window.setTimeout(function(){O.abort(D,N,true);},N.timeout);}if(M&&M.length>0){for(H=0;H<M.length;H++){this._formNode.removeChild(M[H]);}}for(B in A){if(YAHOO.lang.hasOwnProperty(A,B)){if(A[B]){this._formNode.setAttribute(B,A[B]);}else{this._formNode.removeAttribute(B);}}}this.resetFormState();var F=function(){if(N&&N.timeout){window.clearTimeout(O._timeOut[D.tId]);delete O._timeOut[D.tId];}O.completeEvent.fire(D,K);if(D.completeEvent){D.completeEvent.fire(D,K);}G={tId:D.tId,argument:N.argument};try{G.responseText=L.contentWindow.document.body?L.contentWindow.document.body.innerHTML:L.contentWindow.document.documentElement.textContent;G.responseXML=L.contentWindow.document.XMLDocument?L.contentWindow.document.XMLDocument:L.contentWindow.document;}catch(P){}if(N&&N.upload){if(!N.scope){N.upload(G);}else{N.upload.apply(N.scope,[G]);}}O.uploadEvent.fire(G);if(D.uploadEvent){D.uploadEvent.fire(G);}YAHOO.util.Event.removeListener(L,"load",F);setTimeout(function(){document.body.removeChild(L);O.releaseObject(D);},100);};YAHOO.util.Event.addListener(L,"load",F);},abort:function(E,G,A){var D;var B=(G&&G.argument)?G.argument:null;if(E&&E.conn){if(this.isCallInProgress(E)){E.conn.abort();window.clearInterval(this._poll[E.tId]);delete this._poll[E.tId];if(A){window.clearTimeout(this._timeOut[E.tId]);delete this._timeOut[E.tId];}D=true;}}else{if(E&&E.isUpload===true){var C="yuiIO"+E.tId;var F=document.getElementById(C);if(F){YAHOO.util.Event.removeListener(F,"load");document.body.removeChild(F);if(A){window.clearTimeout(this._timeOut[E.tId]);delete this._timeOut[E.tId];}D=true;}}else{D=false;}}if(D===true){this.abortEvent.fire(E,B);if(E.abortEvent){E.abortEvent.fire(E,B);}this.handleTransactionResponse(E,G,true);}return D;},isCallInProgress:function(B){if(B&&B.conn){return B.conn.readyState!==4&&B.conn.readyState!==0;}else{if(B&&B.isUpload===true){var A="yuiIO"+B.tId;return document.getElementById(A)?true:false;}else{return false;}}},releaseObject:function(A){if(A&&A.conn){A.conn=null;A=null;}}};YAHOO.register("connection",YAHOO.util.Connect,{version:"2.6.0",build:"1321"});(function(){var B=YAHOO.util;var A=function(D,C,E,F){if(!D){}this.init(D,C,E,F);};A.NAME="Anim";A.prototype={toString:function(){var C=this.getEl()||{};var D=C.id||C.tagName;return(this.constructor.NAME+": "+D);},patterns:{noNegatives:/width|height|opacity|padding/i,offsetAttribute:/^((width|height)|(top|left))$/,defaultUnit:/width|height|top$|bottom$|left$|right$/i,offsetUnit:/\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i},doMethod:function(C,E,D){return this.method(this.currentFrame,E,D-E,this.totalFrames);},setAttribute:function(C,E,D){if(this.patterns.noNegatives.test(C)){E=(E>0)?E:0;}B.Dom.setStyle(this.getEl(),C,E+D);},getAttribute:function(C){var E=this.getEl();var G=B.Dom.getStyle(E,C);if(G!=="auto"&&!this.patterns.offsetUnit.test(G)){return parseFloat(G);}var D=this.patterns.offsetAttribute.exec(C)||[];var H=!!(D[3]);var F=!!(D[2]);if(F||(B.Dom.getStyle(E,"position")=="absolute"&&H)){G=E["offset"+D[0].charAt(0).toUpperCase()+D[0].substr(1)];}else{G=0;}return G;},getDefaultUnit:function(C){if(this.patterns.defaultUnit.test(C)){return"px";}return"";},setRuntimeAttribute:function(D){var I;var E;var F=this.attributes;this.runtimeAttributes[D]={};var H=function(J){return(typeof J!=="undefined");};if(!H(F[D]["to"])&&!H(F[D]["by"])){return false;}I=(H(F[D]["from"]))?F[D]["from"]:this.getAttribute(D);if(H(F[D]["to"])){E=F[D]["to"];}else{if(H(F[D]["by"])){if(I.constructor==Array){E=[];for(var G=0,C=I.length;G<C;++G){E[G]=I[G]+F[D]["by"][G]*1;}}else{E=I+F[D]["by"]*1;}}}this.runtimeAttributes[D].start=I;this.runtimeAttributes[D].end=E;this.runtimeAttributes[D].unit=(H(F[D].unit))?F[D]["unit"]:this.getDefaultUnit(D);return true;},init:function(E,J,I,C){var D=false;var F=null;var H=0;E=B.Dom.get(E);this.attributes=J||{};this.duration=!YAHOO.lang.isUndefined(I)?I:1;this.method=C||B.Easing.easeNone;this.useSeconds=true;this.currentFrame=0;this.totalFrames=B.AnimMgr.fps;this.setEl=function(M){E=B.Dom.get(M);};this.getEl=function(){return E;};this.isAnimated=function(){return D;};this.getStartTime=function(){return F;};this.runtimeAttributes={};this.animate=function(){if(this.isAnimated()){return false;}this.currentFrame=0;this.totalFrames=(this.useSeconds)?Math.ceil(B.AnimMgr.fps*this.duration):this.duration;if(this.duration===0&&this.useSeconds){this.totalFrames=1;}B.AnimMgr.registerElement(this);return true;};this.stop=function(M){if(!this.isAnimated()){return false;}if(M){this.currentFrame=this.totalFrames;this._onTween.fire();}B.AnimMgr.stop(this);};var L=function(){this.onStart.fire();this.runtimeAttributes={};for(var M in this.attributes){this.setRuntimeAttribute(M);}D=true;H=0;F=new Date();};var K=function(){var O={duration:new Date()-this.getStartTime(),currentFrame:this.currentFrame};O.toString=function(){return("duration: "+O.duration+", currentFrame: "+O.currentFrame);};this.onTween.fire(O);var N=this.runtimeAttributes;for(var M in N){this.setAttribute(M,this.doMethod(M,N[M].start,N[M].end),N[M].unit);}H+=1;};var G=function(){var M=(new Date()-F)/1000;var N={duration:M,frames:H,fps:H/M};N.toString=function(){return("duration: "+N.duration+", frames: "+N.frames+", fps: "+N.fps);};D=false;H=0;this.onComplete.fire(N);};this._onStart=new B.CustomEvent("_start",this,true);this.onStart=new B.CustomEvent("start",this);this.onTween=new B.CustomEvent("tween",this);this._onTween=new B.CustomEvent("_tween",this,true);this.onComplete=new B.CustomEvent("complete",this);this._onComplete=new B.CustomEvent("_complete",this,true);this._onStart.subscribe(L);this._onTween.subscribe(K);this._onComplete.subscribe(G);}};B.Anim=A;})();YAHOO.util.AnimMgr=new function(){var C=null;var B=[];var A=0;this.fps=1000;this.delay=1;this.registerElement=function(F){B[B.length]=F;A+=1;F._onStart.fire();this.start();};this.unRegister=function(G,F){F=F||E(G);if(!G.isAnimated()||F==-1){return false;}G._onComplete.fire();B.splice(F,1);A-=1;if(A<=0){this.stop();}return true;};this.start=function(){if(C===null){C=setInterval(this.run,this.delay);}};this.stop=function(H){if(!H){clearInterval(C);for(var G=0,F=B.length;G<F;++G){this.unRegister(B[0],0);}B=[];C=null;A=0;}else{this.unRegister(H);}};this.run=function(){for(var H=0,F=B.length;H<F;++H){var G=B[H];if(!G||!G.isAnimated()){continue;}if(G.currentFrame<G.totalFrames||G.totalFrames===null){G.currentFrame+=1;if(G.useSeconds){D(G);}G._onTween.fire();}else{YAHOO.util.AnimMgr.stop(G,H);}}};var E=function(H){for(var G=0,F=B.length;G<F;++G){if(B[G]==H){return G;}}return -1;};var D=function(G){var J=G.totalFrames;var I=G.currentFrame;var H=(G.currentFrame*G.duration*1000/G.totalFrames);var F=(new Date()-G.getStartTime());var K=0;if(F<G.duration*1000){K=Math.round((F/H-1)*G.currentFrame);}else{K=J-(I+1);}if(K>0&&isFinite(K)){if(G.currentFrame+K>=J){K=J-(I+1);}G.currentFrame+=K;}};};YAHOO.util.Bezier=new function(){this.getPosition=function(E,D){var F=E.length;var C=[];for(var B=0;B<F;++B){C[B]=[E[B][0],E[B][1]];}for(var A=1;A<F;++A){for(B=0;B<F-A;++B){C[B][0]=(1-D)*C[B][0]+D*C[parseInt(B+1,10)][0];C[B][1]=(1-D)*C[B][1]+D*C[parseInt(B+1,10)][1];}}return[C[0][0],C[0][1]];};};(function(){var A=function(F,E,G,H){A.superclass.constructor.call(this,F,E,G,H);};A.NAME="ColorAnim";A.DEFAULT_BGCOLOR="#fff";var C=YAHOO.util;YAHOO.extend(A,C.Anim);var D=A.superclass;var B=A.prototype;B.patterns.color=/color$/i;B.patterns.rgb=/^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;B.patterns.hex=/^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;B.patterns.hex3=/^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;B.patterns.transparent=/^transparent|rgba\(0, 0, 0, 0\)$/;B.parseColor=function(E){if(E.length==3){return E;}var F=this.patterns.hex.exec(E);if(F&&F.length==4){return[parseInt(F[1],16),parseInt(F[2],16),parseInt(F[3],16)];}F=this.patterns.rgb.exec(E);if(F&&F.length==4){return[parseInt(F[1],10),parseInt(F[2],10),parseInt(F[3],10)];}F=this.patterns.hex3.exec(E);if(F&&F.length==4){return[parseInt(F[1]+F[1],16),parseInt(F[2]+F[2],16),parseInt(F[3]+F[3],16)];}return null;};B.getAttribute=function(E){var G=this.getEl();
-if(this.patterns.color.test(E)){var I=YAHOO.util.Dom.getStyle(G,E);var H=this;if(this.patterns.transparent.test(I)){var F=YAHOO.util.Dom.getAncestorBy(G,function(J){return !H.patterns.transparent.test(I);});if(F){I=C.Dom.getStyle(F,E);}else{I=A.DEFAULT_BGCOLOR;}}}else{I=D.getAttribute.call(this,E);}return I;};B.doMethod=function(F,J,G){var I;if(this.patterns.color.test(F)){I=[];for(var H=0,E=J.length;H<E;++H){I[H]=D.doMethod.call(this,F,J[H],G[H]);}I="rgb("+Math.floor(I[0])+","+Math.floor(I[1])+","+Math.floor(I[2])+")";}else{I=D.doMethod.call(this,F,J,G);}return I;};B.setRuntimeAttribute=function(F){D.setRuntimeAttribute.call(this,F);if(this.patterns.color.test(F)){var H=this.attributes;var J=this.parseColor(this.runtimeAttributes[F].start);var G=this.parseColor(this.runtimeAttributes[F].end);if(typeof H[F]["to"]==="undefined"&&typeof H[F]["by"]!=="undefined"){G=this.parseColor(H[F].by);for(var I=0,E=J.length;I<E;++I){G[I]=J[I]+G[I];}}this.runtimeAttributes[F].start=J;this.runtimeAttributes[F].end=G;}};C.ColorAnim=A;})();
-/*
-TERMS OF USE - EASING EQUATIONS
-Open source under the BSD License.
-Copyright 2001 Robert Penner All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
- * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-*/
-YAHOO.util.Easing={easeNone:function(B,A,D,C){return D*B/C+A;},easeIn:function(B,A,D,C){return D*(B/=C)*B+A;},easeOut:function(B,A,D,C){return -D*(B/=C)*(B-2)+A;},easeBoth:function(B,A,D,C){if((B/=C/2)<1){return D/2*B*B+A;}return -D/2*((--B)*(B-2)-1)+A;},easeInStrong:function(B,A,D,C){return D*(B/=C)*B*B*B+A;},easeOutStrong:function(B,A,D,C){return -D*((B=B/C-1)*B*B*B-1)+A;},easeBothStrong:function(B,A,D,C){if((B/=C/2)<1){return D/2*B*B*B*B+A;}return -D/2*((B-=2)*B*B*B-2)+A;},elasticIn:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F)==1){return A+G;}if(!E){E=F*0.3;}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}return -(B*Math.pow(2,10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E))+A;},elasticOut:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F)==1){return A+G;}if(!E){E=F*0.3;}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}return B*Math.pow(2,-10*C)*Math.sin((C*F-D)*(2*Math.PI)/E)+G+A;},elasticBoth:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F/2)==2){return A+G;}if(!E){E=F*(0.3*1.5);}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}if(C<1){return -0.5*(B*Math.pow(2,10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E))+A;}return B*Math.pow(2,-10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E)*0.5+G+A;},backIn:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}return E*(B/=D)*B*((C+1)*B-C)+A;},backOut:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}return E*((B=B/D-1)*B*((C+1)*B+C)+1)+A;},backBoth:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}if((B/=D/2)<1){return E/2*(B*B*(((C*=(1.525))+1)*B-C))+A;}return E/2*((B-=2)*B*(((C*=(1.525))+1)*B+C)+2)+A;},bounceIn:function(B,A,D,C){return D-YAHOO.util.Easing.bounceOut(C-B,0,D,C)+A;},bounceOut:function(B,A,D,C){if((B/=C)<(1/2.75)){return D*(7.5625*B*B)+A;}else{if(B<(2/2.75)){return D*(7.5625*(B-=(1.5/2.75))*B+0.75)+A;}else{if(B<(2.5/2.75)){return D*(7.5625*(B-=(2.25/2.75))*B+0.9375)+A;}}}return D*(7.5625*(B-=(2.625/2.75))*B+0.984375)+A;},bounceBoth:function(B,A,D,C){if(B<C/2){return YAHOO.util.Easing.bounceIn(B*2,0,D,C)*0.5+A;}return YAHOO.util.Easing.bounceOut(B*2-C,0,D,C)*0.5+D*0.5+A;}};(function(){var A=function(H,G,I,J){if(H){A.superclass.constructor.call(this,H,G,I,J);}};A.NAME="Motion";var E=YAHOO.util;YAHOO.extend(A,E.ColorAnim);var F=A.superclass;var C=A.prototype;C.patterns.points=/^points$/i;C.setAttribute=function(G,I,H){if(this.patterns.points.test(G)){H=H||"px";F.setAttribute.call(this,"left",I[0],H);F.setAttribute.call(this,"top",I[1],H);}else{F.setAttribute.call(this,G,I,H);}};C.getAttribute=function(G){if(this.patterns.points.test(G)){var H=[F.getAttribute.call(this,"left"),F.getAttribute.call(this,"top")];}else{H=F.getAttribute.call(this,G);}return H;};C.doMethod=function(G,K,H){var J=null;if(this.patterns.points.test(G)){var I=this.method(this.currentFrame,0,100,this.totalFrames)/100;J=E.Bezier.getPosition(this.runtimeAttributes[G],I);}else{J=F.doMethod.call(this,G,K,H);}return J;};C.setRuntimeAttribute=function(P){if(this.patterns.points.test(P)){var H=this.getEl();var J=this.attributes;var G;var L=J["points"]["control"]||[];var I;var M,O;if(L.length>0&&!(L[0] instanceof Array)){L=[L];}else{var K=[];for(M=0,O=L.length;M<O;++M){K[M]=L[M];}L=K;}if(E.Dom.getStyle(H,"position")=="static"){E.Dom.setStyle(H,"position","relative");}if(D(J["points"]["from"])){E.Dom.setXY(H,J["points"]["from"]);}else{E.Dom.setXY(H,E.Dom.getXY(H));
-}G=this.getAttribute("points");if(D(J["points"]["to"])){I=B.call(this,J["points"]["to"],G);var N=E.Dom.getXY(this.getEl());for(M=0,O=L.length;M<O;++M){L[M]=B.call(this,L[M],G);}}else{if(D(J["points"]["by"])){I=[G[0]+J["points"]["by"][0],G[1]+J["points"]["by"][1]];for(M=0,O=L.length;M<O;++M){L[M]=[G[0]+L[M][0],G[1]+L[M][1]];}}}this.runtimeAttributes[P]=[G];if(L.length>0){this.runtimeAttributes[P]=this.runtimeAttributes[P].concat(L);}this.runtimeAttributes[P][this.runtimeAttributes[P].length]=I;}else{F.setRuntimeAttribute.call(this,P);}};var B=function(G,I){var H=E.Dom.getXY(this.getEl());G=[G[0]-H[0]+I[0],G[1]-H[1]+I[1]];return G;};var D=function(G){return(typeof G!=="undefined");};E.Motion=A;})();(function(){var D=function(F,E,G,H){if(F){D.superclass.constructor.call(this,F,E,G,H);}};D.NAME="Scroll";var B=YAHOO.util;YAHOO.extend(D,B.ColorAnim);var C=D.superclass;var A=D.prototype;A.doMethod=function(E,H,F){var G=null;if(E=="scroll"){G=[this.method(this.currentFrame,H[0],F[0]-H[0],this.totalFrames),this.method(this.currentFrame,H[1],F[1]-H[1],this.totalFrames)];}else{G=C.doMethod.call(this,E,H,F);}return G;};A.getAttribute=function(E){var G=null;var F=this.getEl();if(E=="scroll"){G=[F.scrollLeft,F.scrollTop];}else{G=C.getAttribute.call(this,E);}return G;};A.setAttribute=function(E,H,G){var F=this.getEl();if(E=="scroll"){F.scrollLeft=H[0];F.scrollTop=H[1];}else{C.setAttribute.call(this,E,H,G);}};B.Scroll=D;})();YAHOO.register("animation",YAHOO.util.Anim,{version:"2.6.0",build:"1321"});if(!YAHOO.util.DragDropMgr){YAHOO.util.DragDropMgr=function(){var A=YAHOO.util.Event,B=YAHOO.util.Dom;return{useShim:false,_shimActive:false,_shimState:false,_debugShim:false,_createShim:function(){var C=document.createElement("div");C.id="yui-ddm-shim";if(document.body.firstChild){document.body.insertBefore(C,document.body.firstChild);}else{document.body.appendChild(C);}C.style.display="none";C.style.backgroundColor="red";C.style.position="absolute";C.style.zIndex="99999";B.setStyle(C,"opacity","0");this._shim=C;A.on(C,"mouseup",this.handleMouseUp,this,true);A.on(C,"mousemove",this.handleMouseMove,this,true);A.on(window,"scroll",this._sizeShim,this,true);},_sizeShim:function(){if(this._shimActive){var C=this._shim;C.style.height=B.getDocumentHeight()+"px";C.style.width=B.getDocumentWidth()+"px";C.style.top="0";C.style.left="0";}},_activateShim:function(){if(this.useShim){if(!this._shim){this._createShim();}this._shimActive=true;var C=this._shim,D="0";if(this._debugShim){D=".5";}B.setStyle(C,"opacity",D);this._sizeShim();C.style.display="block";}},_deactivateShim:function(){this._shim.style.display="none";this._shimActive=false;},_shim:null,ids:{},handleIds:{},dragCurrent:null,dragOvers:{},deltaX:0,deltaY:0,preventDefault:true,stopPropagation:true,initialized:false,locked:false,interactionInfo:null,init:function(){this.initialized=true;},POINT:0,INTERSECT:1,STRICT_INTERSECT:2,mode:0,_execOnAll:function(E,D){for(var F in this.ids){for(var C in this.ids[F]){var G=this.ids[F][C];if(!this.isTypeOfDD(G)){continue;}G[E].apply(G,D);}}},_onLoad:function(){this.init();A.on(document,"mouseup",this.handleMouseUp,this,true);A.on(document,"mousemove",this.handleMouseMove,this,true);A.on(window,"unload",this._onUnload,this,true);A.on(window,"resize",this._onResize,this,true);},_onResize:function(C){this._execOnAll("resetConstraints",[]);},lock:function(){this.locked=true;},unlock:function(){this.locked=false;},isLocked:function(){return this.locked;},locationCache:{},useCache:true,clickPixelThresh:3,clickTimeThresh:1000,dragThreshMet:false,clickTimeout:null,startX:0,startY:0,fromTimeout:false,regDragDrop:function(D,C){if(!this.initialized){this.init();}if(!this.ids[C]){this.ids[C]={};}this.ids[C][D.id]=D;},removeDDFromGroup:function(E,C){if(!this.ids[C]){this.ids[C]={};}var D=this.ids[C];if(D&&D[E.id]){delete D[E.id];}},_remove:function(E){for(var D in E.groups){if(D){var C=this.ids[D];if(C&&C[E.id]){delete C[E.id];}}}delete this.handleIds[E.id];},regHandle:function(D,C){if(!this.handleIds[D]){this.handleIds[D]={};}this.handleIds[D][C]=C;},isDragDrop:function(C){return(this.getDDById(C))?true:false;},getRelated:function(H,D){var G=[];for(var F in H.groups){for(var E in this.ids[F]){var C=this.ids[F][E];if(!this.isTypeOfDD(C)){continue;}if(!D||C.isTarget){G[G.length]=C;}}}return G;},isLegalTarget:function(G,F){var D=this.getRelated(G,true);for(var E=0,C=D.length;E<C;++E){if(D[E].id==F.id){return true;}}return false;},isTypeOfDD:function(C){return(C&&C.__ygDragDrop);},isHandle:function(D,C){return(this.handleIds[D]&&this.handleIds[D][C]);},getDDById:function(D){for(var C in this.ids){if(this.ids[C][D]){return this.ids[C][D];}}return null;},handleMouseDown:function(E,D){this.currentTarget=YAHOO.util.Event.getTarget(E);this.dragCurrent=D;var C=D.getEl();this.startX=YAHOO.util.Event.getPageX(E);this.startY=YAHOO.util.Event.getPageY(E);this.deltaX=this.startX-C.offsetLeft;this.deltaY=this.startY-C.offsetTop;this.dragThreshMet=false;this.clickTimeout=setTimeout(function(){var F=YAHOO.util.DDM;F.startDrag(F.startX,F.startY);F.fromTimeout=true;},this.clickTimeThresh);},startDrag:function(C,E){if(this.dragCurrent&&this.dragCurrent.useShim){this._shimState=this.useShim;this.useShim=true;}this._activateShim();clearTimeout(this.clickTimeout);var D=this.dragCurrent;if(D&&D.events.b4StartDrag){D.b4StartDrag(C,E);D.fireEvent("b4StartDragEvent",{x:C,y:E});}if(D&&D.events.startDrag){D.startDrag(C,E);D.fireEvent("startDragEvent",{x:C,y:E});}this.dragThreshMet=true;},handleMouseUp:function(C){if(this.dragCurrent){clearTimeout(this.clickTimeout);if(this.dragThreshMet){if(this.fromTimeout){this.fromTimeout=false;this.handleMouseMove(C);}this.fromTimeout=false;this.fireEvents(C,true);}else{}this.stopDrag(C);this.stopEvent(C);}},stopEvent:function(C){if(this.stopPropagation){YAHOO.util.Event.stopPropagation(C);}if(this.preventDefault){YAHOO.util.Event.preventDefault(C);}},stopDrag:function(E,D){var C=this.dragCurrent;if(C&&!D){if(this.dragThreshMet){if(C.events.b4EndDrag){C.b4EndDrag(E);C.fireEvent("b4EndDragEvent",{e:E});}if(C.events.endDrag){C.endDrag(E);C.fireEvent("endDragEvent",{e:E});}}if(C.events.mouseUp){C.onMouseUp(E);C.fireEvent("mouseUpEvent",{e:E});}}if(this._shimActive){this._deactivateShim();if(this.dragCurrent&&this.dragCurrent.useShim){this.useShim=this._shimState;this._shimState=false;}}this.dragCurrent=null;this.dragOvers={};},handleMouseMove:function(F){var C=this.dragCurrent;if(C){if(YAHOO.util.Event.isIE&&!F.button){this.stopEvent(F);return this.handleMouseUp(F);}else{if(F.clientX<0||F.clientY<0){}}if(!this.dragThreshMet){var E=Math.abs(this.startX-YAHOO.util.Event.getPageX(F));var D=Math.abs(this.startY-YAHOO.util.Event.getPageY(F));if(E>this.clickPixelThresh||D>this.clickPixelThresh){this.startDrag(this.startX,this.startY);}}if(this.dragThreshMet){if(C&&C.events.b4Drag){C.b4Drag(F);C.fireEvent("b4DragEvent",{e:F});}if(C&&C.events.drag){C.onDrag(F);C.fireEvent("dragEvent",{e:F});}if(C){this.fireEvents(F,false);}}this.stopEvent(F);}},fireEvents:function(V,L){var a=this.dragCurrent;if(!a||a.isLocked()||a.dragOnly){return ;}var N=YAHOO.util.Event.getPageX(V),M=YAHOO.util.Event.getPageY(V),P=new YAHOO.util.Point(N,M),K=a.getTargetCoord(P.x,P.y),F=a.getDragEl(),E=["out","over","drop","enter"],U=new YAHOO.util.Region(K.y,K.x+F.offsetWidth,K.y+F.offsetHeight,K.x),I=[],D={},Q=[],c={outEvts:[],overEvts:[],dropEvts:[],enterEvts:[]};for(var S in this.dragOvers){var d=this.dragOvers[S];if(!this.isTypeOfDD(d)){continue;
-}if(!this.isOverTarget(P,d,this.mode,U)){c.outEvts.push(d);}I[S]=true;delete this.dragOvers[S];}for(var R in a.groups){if("string"!=typeof R){continue;}for(S in this.ids[R]){var G=this.ids[R][S];if(!this.isTypeOfDD(G)){continue;}if(G.isTarget&&!G.isLocked()&&G!=a){if(this.isOverTarget(P,G,this.mode,U)){D[R]=true;if(L){c.dropEvts.push(G);}else{if(!I[G.id]){c.enterEvts.push(G);}else{c.overEvts.push(G);}this.dragOvers[G.id]=G;}}}}}this.interactionInfo={out:c.outEvts,enter:c.enterEvts,over:c.overEvts,drop:c.dropEvts,point:P,draggedRegion:U,sourceRegion:this.locationCache[a.id],validDrop:L};for(var C in D){Q.push(C);}if(L&&!c.dropEvts.length){this.interactionInfo.validDrop=false;if(a.events.invalidDrop){a.onInvalidDrop(V);a.fireEvent("invalidDropEvent",{e:V});}}for(S=0;S<E.length;S++){var Y=null;if(c[E[S]+"Evts"]){Y=c[E[S]+"Evts"];}if(Y&&Y.length){var H=E[S].charAt(0).toUpperCase()+E[S].substr(1),X="onDrag"+H,J="b4Drag"+H,O="drag"+H+"Event",W="drag"+H;if(this.mode){if(a.events[J]){a[J](V,Y,Q);a.fireEvent(J+"Event",{event:V,info:Y,group:Q});}if(a.events[W]){a[X](V,Y,Q);a.fireEvent(O,{event:V,info:Y,group:Q});}}else{for(var Z=0,T=Y.length;Z<T;++Z){if(a.events[J]){a[J](V,Y[Z].id,Q[0]);a.fireEvent(J+"Event",{event:V,info:Y[Z].id,group:Q[0]});}if(a.events[W]){a[X](V,Y[Z].id,Q[0]);a.fireEvent(O,{event:V,info:Y[Z].id,group:Q[0]});}}}}}},getBestMatch:function(E){var G=null;var D=E.length;if(D==1){G=E[0];}else{for(var F=0;F<D;++F){var C=E[F];if(this.mode==this.INTERSECT&&C.cursorIsOver){G=C;break;}else{if(!G||!G.overlap||(C.overlap&&G.overlap.getArea()<C.overlap.getArea())){G=C;}}}}return G;},refreshCache:function(D){var F=D||this.ids;for(var C in F){if("string"!=typeof C){continue;}for(var E in this.ids[C]){var G=this.ids[C][E];if(this.isTypeOfDD(G)){var H=this.getLocation(G);if(H){this.locationCache[G.id]=H;}else{delete this.locationCache[G.id];}}}}},verifyEl:function(D){try{if(D){var C=D.offsetParent;if(C){return true;}}}catch(E){}return false;},getLocation:function(H){if(!this.isTypeOfDD(H)){return null;}var F=H.getEl(),K,E,D,M,L,N,C,J,G;try{K=YAHOO.util.Dom.getXY(F);}catch(I){}if(!K){return null;}E=K[0];D=E+F.offsetWidth;M=K[1];L=M+F.offsetHeight;N=M-H.padding[0];C=D+H.padding[1];J=L+H.padding[2];G=E-H.padding[3];return new YAHOO.util.Region(N,C,J,G);},isOverTarget:function(K,C,E,F){var G=this.locationCache[C.id];if(!G||!this.useCache){G=this.getLocation(C);this.locationCache[C.id]=G;}if(!G){return false;}C.cursorIsOver=G.contains(K);var J=this.dragCurrent;if(!J||(!E&&!J.constrainX&&!J.constrainY)){return C.cursorIsOver;}C.overlap=null;if(!F){var H=J.getTargetCoord(K.x,K.y);var D=J.getDragEl();F=new YAHOO.util.Region(H.y,H.x+D.offsetWidth,H.y+D.offsetHeight,H.x);}var I=F.intersect(G);if(I){C.overlap=I;return(E)?true:C.cursorIsOver;}else{return false;}},_onUnload:function(D,C){this.unregAll();},unregAll:function(){if(this.dragCurrent){this.stopDrag();this.dragCurrent=null;}this._execOnAll("unreg",[]);this.ids={};},elementCache:{},getElWrapper:function(D){var C=this.elementCache[D];if(!C||!C.el){C=this.elementCache[D]=new this.ElementWrapper(YAHOO.util.Dom.get(D));}return C;},getElement:function(C){return YAHOO.util.Dom.get(C);},getCss:function(D){var C=YAHOO.util.Dom.get(D);return(C)?C.style:null;},ElementWrapper:function(C){this.el=C||null;this.id=this.el&&C.id;this.css=this.el&&C.style;},getPosX:function(C){return YAHOO.util.Dom.getX(C);},getPosY:function(C){return YAHOO.util.Dom.getY(C);},swapNode:function(E,C){if(E.swapNode){E.swapNode(C);}else{var F=C.parentNode;var D=C.nextSibling;if(D==E){F.insertBefore(E,C);}else{if(C==E.nextSibling){F.insertBefore(C,E);}else{E.parentNode.replaceChild(C,E);F.insertBefore(E,D);}}}},getScroll:function(){var E,C,F=document.documentElement,D=document.body;if(F&&(F.scrollTop||F.scrollLeft)){E=F.scrollTop;C=F.scrollLeft;}else{if(D){E=D.scrollTop;C=D.scrollLeft;}else{}}return{top:E,left:C};},getStyle:function(D,C){return YAHOO.util.Dom.getStyle(D,C);},getScrollTop:function(){return this.getScroll().top;},getScrollLeft:function(){return this.getScroll().left;},moveToEl:function(C,E){var D=YAHOO.util.Dom.getXY(E);YAHOO.util.Dom.setXY(C,D);},getClientHeight:function(){return YAHOO.util.Dom.getViewportHeight();},getClientWidth:function(){return YAHOO.util.Dom.getViewportWidth();},numericSort:function(D,C){return(D-C);},_timeoutCount:0,_addListeners:function(){var C=YAHOO.util.DDM;if(YAHOO.util.Event&&document){C._onLoad();}else{if(C._timeoutCount>2000){}else{setTimeout(C._addListeners,10);if(document&&document.body){C._timeoutCount+=1;}}}},handleWasClicked:function(C,E){if(this.isHandle(E,C.id)){return true;}else{var D=C.parentNode;while(D){if(this.isHandle(E,D.id)){return true;}else{D=D.parentNode;}}}return false;}};}();YAHOO.util.DDM=YAHOO.util.DragDropMgr;YAHOO.util.DDM._addListeners();}(function(){var A=YAHOO.util.Event;var B=YAHOO.util.Dom;YAHOO.util.DragDrop=function(E,C,D){if(E){this.init(E,C,D);}};YAHOO.util.DragDrop.prototype={events:null,on:function(){this.subscribe.apply(this,arguments);},id:null,config:null,dragElId:null,handleElId:null,invalidHandleTypes:null,invalidHandleIds:null,invalidHandleClasses:null,startPageX:0,startPageY:0,groups:null,locked:false,lock:function(){this.locked=true;},unlock:function(){this.locked=false;},isTarget:true,padding:null,dragOnly:false,useShim:false,_domRef:null,__ygDragDrop:true,constrainX:false,constrainY:false,minX:0,maxX:0,minY:0,maxY:0,deltaX:0,deltaY:0,maintainOffset:false,xTicks:null,yTicks:null,primaryButtonOnly:true,available:false,hasOuterHandles:false,cursorIsOver:false,overlap:null,b4StartDrag:function(C,D){},startDrag:function(C,D){},b4Drag:function(C){},onDrag:function(C){},onDragEnter:function(C,D){},b4DragOver:function(C){},onDragOver:function(C,D){},b4DragOut:function(C){},onDragOut:function(C,D){},b4DragDrop:function(C){},onDragDrop:function(C,D){},onInvalidDrop:function(C){},b4EndDrag:function(C){},endDrag:function(C){},b4MouseDown:function(C){},onMouseDown:function(C){},onMouseUp:function(C){},onAvailable:function(){},getEl:function(){if(!this._domRef){this._domRef=B.get(this.id);
-}return this._domRef;},getDragEl:function(){return B.get(this.dragElId);},init:function(F,C,D){this.initTarget(F,C,D);A.on(this._domRef||this.id,"mousedown",this.handleMouseDown,this,true);for(var E in this.events){this.createEvent(E+"Event");}},initTarget:function(E,C,D){this.config=D||{};this.events={};this.DDM=YAHOO.util.DDM;this.groups={};if(typeof E!=="string"){this._domRef=E;E=B.generateId(E);}this.id=E;this.addToGroup((C)?C:"default");this.handleElId=E;A.onAvailable(E,this.handleOnAvailable,this,true);this.setDragElId(E);this.invalidHandleTypes={A:"A"};this.invalidHandleIds={};this.invalidHandleClasses=[];this.applyConfig();},applyConfig:function(){this.events={mouseDown:true,b4MouseDown:true,mouseUp:true,b4StartDrag:true,startDrag:true,b4EndDrag:true,endDrag:true,drag:true,b4Drag:true,invalidDrop:true,b4DragOut:true,dragOut:true,dragEnter:true,b4DragOver:true,dragOver:true,b4DragDrop:true,dragDrop:true};if(this.config.events){for(var C in this.config.events){if(this.config.events[C]===false){this.events[C]=false;}}}this.padding=this.config.padding||[0,0,0,0];this.isTarget=(this.config.isTarget!==false);this.maintainOffset=(this.config.maintainOffset);this.primaryButtonOnly=(this.config.primaryButtonOnly!==false);this.dragOnly=((this.config.dragOnly===true)?true:false);this.useShim=((this.config.useShim===true)?true:false);},handleOnAvailable:function(){this.available=true;this.resetConstraints();this.onAvailable();},setPadding:function(E,C,F,D){if(!C&&0!==C){this.padding=[E,E,E,E];}else{if(!F&&0!==F){this.padding=[E,C,E,C];}else{this.padding=[E,C,F,D];}}},setInitPosition:function(F,E){var G=this.getEl();if(!this.DDM.verifyEl(G)){if(G&&G.style&&(G.style.display=="none")){}else{}return ;}var D=F||0;var C=E||0;var H=B.getXY(G);this.initPageX=H[0]-D;this.initPageY=H[1]-C;this.lastPageX=H[0];this.lastPageY=H[1];this.setStartPosition(H);},setStartPosition:function(D){var C=D||B.getXY(this.getEl());this.deltaSetXY=null;this.startPageX=C[0];this.startPageY=C[1];},addToGroup:function(C){this.groups[C]=true;this.DDM.regDragDrop(this,C);},removeFromGroup:function(C){if(this.groups[C]){delete this.groups[C];}this.DDM.removeDDFromGroup(this,C);},setDragElId:function(C){this.dragElId=C;},setHandleElId:function(C){if(typeof C!=="string"){C=B.generateId(C);}this.handleElId=C;this.DDM.regHandle(this.id,C);},setOuterHandleElId:function(C){if(typeof C!=="string"){C=B.generateId(C);}A.on(C,"mousedown",this.handleMouseDown,this,true);this.setHandleElId(C);this.hasOuterHandles=true;},unreg:function(){A.removeListener(this.id,"mousedown",this.handleMouseDown);this._domRef=null;this.DDM._remove(this);},isLocked:function(){return(this.DDM.isLocked()||this.locked);},handleMouseDown:function(J,I){var D=J.which||J.button;if(this.primaryButtonOnly&&D>1){return ;}if(this.isLocked()){return ;}var C=this.b4MouseDown(J),F=true;if(this.events.b4MouseDown){F=this.fireEvent("b4MouseDownEvent",J);}var E=this.onMouseDown(J),H=true;if(this.events.mouseDown){H=this.fireEvent("mouseDownEvent",J);}if((C===false)||(E===false)||(F===false)||(H===false)){return ;}this.DDM.refreshCache(this.groups);var G=new YAHOO.util.Point(A.getPageX(J),A.getPageY(J));if(!this.hasOuterHandles&&!this.DDM.isOverTarget(G,this)){}else{if(this.clickValidator(J)){this.setStartPosition();this.DDM.handleMouseDown(J,this);this.DDM.stopEvent(J);}else{}}},clickValidator:function(D){var C=YAHOO.util.Event.getTarget(D);return(this.isValidHandleChild(C)&&(this.id==this.handleElId||this.DDM.handleWasClicked(C,this.id)));},getTargetCoord:function(E,D){var C=E-this.deltaX;var F=D-this.deltaY;if(this.constrainX){if(C<this.minX){C=this.minX;}if(C>this.maxX){C=this.maxX;}}if(this.constrainY){if(F<this.minY){F=this.minY;}if(F>this.maxY){F=this.maxY;}}C=this.getTick(C,this.xTicks);F=this.getTick(F,this.yTicks);return{x:C,y:F};},addInvalidHandleType:function(C){var D=C.toUpperCase();this.invalidHandleTypes[D]=D;},addInvalidHandleId:function(C){if(typeof C!=="string"){C=B.generateId(C);}this.invalidHandleIds[C]=C;},addInvalidHandleClass:function(C){this.invalidHandleClasses.push(C);},removeInvalidHandleType:function(C){var D=C.toUpperCase();delete this.invalidHandleTypes[D];},removeInvalidHandleId:function(C){if(typeof C!=="string"){C=B.generateId(C);}delete this.invalidHandleIds[C];},removeInvalidHandleClass:function(D){for(var E=0,C=this.invalidHandleClasses.length;E<C;++E){if(this.invalidHandleClasses[E]==D){delete this.invalidHandleClasses[E];}}},isValidHandleChild:function(F){var E=true;var H;try{H=F.nodeName.toUpperCase();}catch(G){H=F.nodeName;}E=E&&!this.invalidHandleTypes[H];E=E&&!this.invalidHandleIds[F.id];for(var D=0,C=this.invalidHandleClasses.length;E&&D<C;++D){E=!B.hasClass(F,this.invalidHandleClasses[D]);}return E;},setXTicks:function(F,C){this.xTicks=[];this.xTickSize=C;var E={};for(var D=this.initPageX;D>=this.minX;D=D-C){if(!E[D]){this.xTicks[this.xTicks.length]=D;E[D]=true;}}for(D=this.initPageX;D<=this.maxX;D=D+C){if(!E[D]){this.xTicks[this.xTicks.length]=D;E[D]=true;}}this.xTicks.sort(this.DDM.numericSort);},setYTicks:function(F,C){this.yTicks=[];this.yTickSize=C;var E={};for(var D=this.initPageY;D>=this.minY;D=D-C){if(!E[D]){this.yTicks[this.yTicks.length]=D;E[D]=true;}}for(D=this.initPageY;D<=this.maxY;D=D+C){if(!E[D]){this.yTicks[this.yTicks.length]=D;E[D]=true;}}this.yTicks.sort(this.DDM.numericSort);},setXConstraint:function(E,D,C){this.leftConstraint=parseInt(E,10);this.rightConstraint=parseInt(D,10);this.minX=this.initPageX-this.leftConstraint;this.maxX=this.initPageX+this.rightConstraint;if(C){this.setXTicks(this.initPageX,C);}this.constrainX=true;},clearConstraints:function(){this.constrainX=false;this.constrainY=false;this.clearTicks();},clearTicks:function(){this.xTicks=null;this.yTicks=null;this.xTickSize=0;this.yTickSize=0;},setYConstraint:function(C,E,D){this.topConstraint=parseInt(C,10);this.bottomConstraint=parseInt(E,10);this.minY=this.initPageY-this.topConstraint;this.maxY=this.initPageY+this.bottomConstraint;if(D){this.setYTicks(this.initPageY,D);
-}this.constrainY=true;},resetConstraints:function(){if(this.initPageX||this.initPageX===0){var D=(this.maintainOffset)?this.lastPageX-this.initPageX:0;var C=(this.maintainOffset)?this.lastPageY-this.initPageY:0;this.setInitPosition(D,C);}else{this.setInitPosition();}if(this.constrainX){this.setXConstraint(this.leftConstraint,this.rightConstraint,this.xTickSize);}if(this.constrainY){this.setYConstraint(this.topConstraint,this.bottomConstraint,this.yTickSize);}},getTick:function(I,F){if(!F){return I;}else{if(F[0]>=I){return F[0];}else{for(var D=0,C=F.length;D<C;++D){var E=D+1;if(F[E]&&F[E]>=I){var H=I-F[D];var G=F[E]-I;return(G>H)?F[D]:F[E];}}return F[F.length-1];}}},toString:function(){return("DragDrop "+this.id);}};YAHOO.augment(YAHOO.util.DragDrop,YAHOO.util.EventProvider);})();YAHOO.util.DD=function(C,A,B){if(C){this.init(C,A,B);}};YAHOO.extend(YAHOO.util.DD,YAHOO.util.DragDrop,{scroll:true,autoOffset:function(C,B){var A=C-this.startPageX;var D=B-this.startPageY;this.setDelta(A,D);},setDelta:function(B,A){this.deltaX=B;this.deltaY=A;},setDragElPos:function(C,B){var A=this.getDragEl();this.alignElWithMouse(A,C,B);},alignElWithMouse:function(C,G,F){var E=this.getTargetCoord(G,F);if(!this.deltaSetXY){var H=[E.x,E.y];YAHOO.util.Dom.setXY(C,H);var D=parseInt(YAHOO.util.Dom.getStyle(C,"left"),10);var B=parseInt(YAHOO.util.Dom.getStyle(C,"top"),10);this.deltaSetXY=[D-E.x,B-E.y];}else{YAHOO.util.Dom.setStyle(C,"left",(E.x+this.deltaSetXY[0])+"px");YAHOO.util.Dom.setStyle(C,"top",(E.y+this.deltaSetXY[1])+"px");}this.cachePosition(E.x,E.y);var A=this;setTimeout(function(){A.autoScroll.call(A,E.x,E.y,C.offsetHeight,C.offsetWidth);},0);},cachePosition:function(B,A){if(B){this.lastPageX=B;this.lastPageY=A;}else{var C=YAHOO.util.Dom.getXY(this.getEl());this.lastPageX=C[0];this.lastPageY=C[1];}},autoScroll:function(J,I,E,K){if(this.scroll){var L=this.DDM.getClientHeight();var B=this.DDM.getClientWidth();var N=this.DDM.getScrollTop();var D=this.DDM.getScrollLeft();var H=E+I;var M=K+J;var G=(L+N-I-this.deltaY);var F=(B+D-J-this.deltaX);var C=40;var A=(document.all)?80:30;if(H>L&&G<C){window.scrollTo(D,N+A);}if(I<N&&N>0&&I-N<C){window.scrollTo(D,N-A);}if(M>B&&F<C){window.scrollTo(D+A,N);}if(J<D&&D>0&&J-D<C){window.scrollTo(D-A,N);}}},applyConfig:function(){YAHOO.util.DD.superclass.applyConfig.call(this);this.scroll=(this.config.scroll!==false);},b4MouseDown:function(A){this.setStartPosition();this.autoOffset(YAHOO.util.Event.getPageX(A),YAHOO.util.Event.getPageY(A));},b4Drag:function(A){this.setDragElPos(YAHOO.util.Event.getPageX(A),YAHOO.util.Event.getPageY(A));},toString:function(){return("DD "+this.id);}});YAHOO.util.DDProxy=function(C,A,B){if(C){this.init(C,A,B);this.initFrame();}};YAHOO.util.DDProxy.dragElId="ygddfdiv";YAHOO.extend(YAHOO.util.DDProxy,YAHOO.util.DD,{resizeFrame:true,centerFrame:false,createFrame:function(){var B=this,A=document.body;if(!A||!A.firstChild){setTimeout(function(){B.createFrame();},50);return ;}var G=this.getDragEl(),E=YAHOO.util.Dom;if(!G){G=document.createElement("div");G.id=this.dragElId;var D=G.style;D.position="absolute";D.visibility="hidden";D.cursor="move";D.border="2px solid #aaa";D.zIndex=999;D.height="25px";D.width="25px";var C=document.createElement("div");E.setStyle(C,"height","100%");E.setStyle(C,"width","100%");E.setStyle(C,"background-color","#ccc");E.setStyle(C,"opacity","0");G.appendChild(C);if(YAHOO.env.ua.ie){var F=document.createElement("iframe");F.setAttribute("src","javascript: false;");F.setAttribute("scrolling","no");F.setAttribute("frameborder","0");G.insertBefore(F,G.firstChild);E.setStyle(F,"height","100%");E.setStyle(F,"width","100%");E.setStyle(F,"position","absolute");E.setStyle(F,"top","0");E.setStyle(F,"left","0");E.setStyle(F,"opacity","0");E.setStyle(F,"zIndex","-1");E.setStyle(F.nextSibling,"zIndex","2");}A.insertBefore(G,A.firstChild);}},initFrame:function(){this.createFrame();},applyConfig:function(){YAHOO.util.DDProxy.superclass.applyConfig.call(this);this.resizeFrame=(this.config.resizeFrame!==false);this.centerFrame=(this.config.centerFrame);this.setDragElId(this.config.dragElId||YAHOO.util.DDProxy.dragElId);},showFrame:function(E,D){var C=this.getEl();var A=this.getDragEl();var B=A.style;this._resizeProxy();if(this.centerFrame){this.setDelta(Math.round(parseInt(B.width,10)/2),Math.round(parseInt(B.height,10)/2));}this.setDragElPos(E,D);YAHOO.util.Dom.setStyle(A,"visibility","visible");},_resizeProxy:function(){if(this.resizeFrame){var H=YAHOO.util.Dom;var B=this.getEl();var C=this.getDragEl();var G=parseInt(H.getStyle(C,"borderTopWidth"),10);var I=parseInt(H.getStyle(C,"borderRightWidth"),10);var F=parseInt(H.getStyle(C,"borderBottomWidth"),10);var D=parseInt(H.getStyle(C,"borderLeftWidth"),10);if(isNaN(G)){G=0;}if(isNaN(I)){I=0;}if(isNaN(F)){F=0;}if(isNaN(D)){D=0;}var E=Math.max(0,B.offsetWidth-I-D);var A=Math.max(0,B.offsetHeight-G-F);H.setStyle(C,"width",E+"px");H.setStyle(C,"height",A+"px");}},b4MouseDown:function(B){this.setStartPosition();var A=YAHOO.util.Event.getPageX(B);var C=YAHOO.util.Event.getPageY(B);this.autoOffset(A,C);},b4StartDrag:function(A,B){this.showFrame(A,B);},b4EndDrag:function(A){YAHOO.util.Dom.setStyle(this.getDragEl(),"visibility","hidden");},endDrag:function(D){var C=YAHOO.util.Dom;var B=this.getEl();var A=this.getDragEl();C.setStyle(A,"visibility","");C.setStyle(B,"visibility","hidden");YAHOO.util.DDM.moveToEl(B,A);C.setStyle(A,"visibility","hidden");C.setStyle(B,"visibility","");},toString:function(){return("DDProxy "+this.id);}});YAHOO.util.DDTarget=function(C,A,B){if(C){this.initTarget(C,A,B);}};YAHOO.extend(YAHOO.util.DDTarget,YAHOO.util.DragDrop,{toString:function(){return("DDTarget "+this.id);}});YAHOO.register("dragdrop",YAHOO.util.DragDropMgr,{version:"2.6.0",build:"1321"});YAHOO.util.Attribute=function(B,A){if(A){this.owner=A;this.configure(B,true);}};YAHOO.util.Attribute.prototype={name:undefined,value:null,owner:null,readOnly:false,writeOnce:false,_initialConfig:null,_written:false,method:null,validator:null,getValue:function(){return this.value;},setValue:function(F,B){var E;var A=this.owner;var C=this.name;var D={type:C,prevValue:this.getValue(),newValue:F};if(this.readOnly||(this.writeOnce&&this._written)){return false;}if(this.validator&&!this.validator.call(A,F)){return false;}if(!B){E=A.fireBeforeChangeEvent(D);if(E===false){return false;}}if(this.method){this.method.call(A,F);}this.value=F;this._written=true;D.type=C;if(!B){this.owner.fireChangeEvent(D);}return true;},configure:function(B,C){B=B||{};this._written=false;this._initialConfig=this._initialConfig||{};for(var A in B){if(B.hasOwnProperty(A)){this[A]=B[A];if(C){this._initialConfig[A]=B[A];}}}},resetValue:function(){return this.setValue(this._initialConfig.value);},resetConfig:function(){this.configure(this._initialConfig);},refresh:function(A){this.setValue(this.value,A);}};(function(){var A=YAHOO.util.Lang;YAHOO.util.AttributeProvider=function(){};YAHOO.util.AttributeProvider.prototype={_configs:null,get:function(C){this._configs=this._configs||{};var B=this._configs[C];if(!B||!this._configs.hasOwnProperty(C)){return undefined;}return B.value;},set:function(D,E,B){this._configs=this._configs||{};var C=this._configs[D];if(!C){return false;}return C.setValue(E,B);},getAttributeKeys:function(){this._configs=this._configs;var D=[];var B;for(var C in this._configs){B=this._configs[C];if(A.hasOwnProperty(this._configs,C)&&!A.isUndefined(B)){D[D.length]=C;}}return D;},setAttributes:function(D,B){for(var C in D){if(A.hasOwnProperty(D,C)){this.set(C,D[C],B);}}},resetValue:function(C,B){this._configs=this._configs||{};if(this._configs[C]){this.set(C,this._configs[C]._initialConfig.value,B);return true;}return false;},refresh:function(E,C){this._configs=this._configs||{};var F=this._configs;E=((A.isString(E))?[E]:E)||this.getAttributeKeys();for(var D=0,B=E.length;D<B;++D){if(F.hasOwnProperty(E[D])){this._configs[E[D]].refresh(C);}}},register:function(B,C){this.setAttributeConfig(B,C);},getAttributeConfig:function(C){this._configs=this._configs||{};var B=this._configs[C]||{};var D={};for(C in B){if(A.hasOwnProperty(B,C)){D[C]=B[C];}}return D;},setAttributeConfig:function(B,C,D){this._configs=this._configs||{};C=C||{};if(!this._configs[B]){C.name=B;this._configs[B]=this.createAttribute(C);}else{this._configs[B].configure(C,D);}},configureAttribute:function(B,C,D){this.setAttributeConfig(B,C,D);},resetAttributeConfig:function(B){this._configs=this._configs||{};this._configs[B].resetConfig();},subscribe:function(B,C){this._events=this._events||{};if(!(B in this._events)){this._events[B]=this.createEvent(B);}YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments);},on:function(){this.subscribe.apply(this,arguments);},addListener:function(){this.subscribe.apply(this,arguments);},fireBeforeChangeEvent:function(C){var B="before";B+=C.type.charAt(0).toUpperCase()+C.type.substr(1)+"Change";C.type=B;return this.fireEvent(C.type,C);},fireChangeEvent:function(B){B.type+="Change";return this.fireEvent(B.type,B);},createAttribute:function(B){return new YAHOO.util.Attribute(B,this);}};YAHOO.augment(YAHOO.util.AttributeProvider,YAHOO.util.EventProvider);})();(function(){var D=YAHOO.util.Dom,F=YAHOO.util.AttributeProvider;YAHOO.util.Element=function(G,H){if(arguments.length){this.init(G,H);}};YAHOO.util.Element.prototype={DOM_EVENTS:null,appendChild:function(G){G=G.get?G.get("element"):G;return this.get("element").appendChild(G);},getElementsByTagName:function(G){return this.get("element").getElementsByTagName(G);},hasChildNodes:function(){return this.get("element").hasChildNodes();},insertBefore:function(G,H){G=G.get?G.get("element"):G;H=(H&&H.get)?H.get("element"):H;return this.get("element").insertBefore(G,H);},removeChild:function(G){G=G.get?G.get("element"):G;return this.get("element").removeChild(G);},replaceChild:function(G,H){G=G.get?G.get("element"):G;H=H.get?H.get("element"):H;return this.get("element").replaceChild(G,H);},initAttributes:function(G){},addListener:function(K,J,L,I){var H=this.get("element")||this.get("id");I=I||this;var G=this;if(!this._events[K]){if(H&&this.DOM_EVENTS[K]){YAHOO.util.Event.addListener(H,K,function(M){if(M.srcElement&&!M.target){M.target=M.srcElement;}G.fireEvent(K,M);},L,I);}this.createEvent(K,this);}return YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments);},on:function(){return this.addListener.apply(this,arguments);},subscribe:function(){return this.addListener.apply(this,arguments);},removeListener:function(H,G){return this.unsubscribe.apply(this,arguments);},addClass:function(G){D.addClass(this.get("element"),G);},getElementsByClassName:function(H,G){return D.getElementsByClassName(H,G,this.get("element"));},hasClass:function(G){return D.hasClass(this.get("element"),G);},removeClass:function(G){return D.removeClass(this.get("element"),G);},replaceClass:function(H,G){return D.replaceClass(this.get("element"),H,G);},setStyle:function(I,H){var G=this.get("element");if(!G){return this._queue[this._queue.length]=["setStyle",arguments];}return D.setStyle(G,I,H);},getStyle:function(G){return D.getStyle(this.get("element"),G);},fireQueue:function(){var H=this._queue;for(var I=0,G=H.length;I<G;++I){this[H[I][0]].apply(this,H[I][1]);}},appendTo:function(H,I){H=(H.get)?H.get("element"):D.get(H);this.fireEvent("beforeAppendTo",{type:"beforeAppendTo",target:H});I=(I&&I.get)?I.get("element"):D.get(I);var G=this.get("element");if(!G){return false;}if(!H){return false;}if(G.parent!=H){if(I){H.insertBefore(G,I);}else{H.appendChild(G);}}this.fireEvent("appendTo",{type:"appendTo",target:H});return G;},get:function(G){var I=this._configs||{};var H=I.element;if(H&&!I[G]&&!YAHOO.lang.isUndefined(H.value[G])){return H.value[G];}return F.prototype.get.call(this,G);},setAttributes:function(L,H){var K=this.get("element");
-for(var J in L){if(!this._configs[J]&&!YAHOO.lang.isUndefined(K[J])){this.setAttributeConfig(J);}}for(var I=0,G=this._configOrder.length;I<G;++I){if(L[this._configOrder[I]]!==undefined){this.set(this._configOrder[I],L[this._configOrder[I]],H);}}},set:function(H,J,G){var I=this.get("element");if(!I){this._queue[this._queue.length]=["set",arguments];if(this._configs[H]){this._configs[H].value=J;}return ;}if(!this._configs[H]&&!YAHOO.lang.isUndefined(I[H])){C.call(this,H);}return F.prototype.set.apply(this,arguments);},setAttributeConfig:function(G,I,J){var H=this.get("element");if(H&&!this._configs[G]&&!YAHOO.lang.isUndefined(H[G])){C.call(this,G,I);}else{F.prototype.setAttributeConfig.apply(this,arguments);}this._configOrder.push(G);},getAttributeKeys:function(){var H=this.get("element");var I=F.prototype.getAttributeKeys.call(this);for(var G in H){if(!this._configs[G]){I[G]=I[G]||H[G];}}return I;},createEvent:function(H,G){this._events[H]=true;F.prototype.createEvent.apply(this,arguments);},init:function(H,G){A.apply(this,arguments);}};var A=function(H,G){this._queue=this._queue||[];this._events=this._events||{};this._configs=this._configs||{};this._configOrder=[];G=G||{};G.element=G.element||H||null;this.DOM_EVENTS={"click":true,"dblclick":true,"keydown":true,"keypress":true,"keyup":true,"mousedown":true,"mousemove":true,"mouseout":true,"mouseover":true,"mouseup":true,"focus":true,"blur":true,"submit":true};var I=false;if(typeof G.element==="string"){C.call(this,"id",{value:G.element});}if(D.get(G.element)){I=true;E.call(this,G);B.call(this,G);}YAHOO.util.Event.onAvailable(G.element,function(){if(!I){E.call(this,G);}this.fireEvent("available",{type:"available",target:D.get(G.element)});},this,true);YAHOO.util.Event.onContentReady(G.element,function(){if(!I){B.call(this,G);}this.fireEvent("contentReady",{type:"contentReady",target:D.get(G.element)});},this,true);};var E=function(G){this.setAttributeConfig("element",{value:D.get(G.element),readOnly:true});};var B=function(G){this.initAttributes(G);this.setAttributes(G,true);this.fireQueue();};var C=function(G,I){var H=this.get("element");I=I||{};I.name=G;I.method=I.method||function(J){if(H){H[G]=J;}};I.value=I.value||H[G];this._configs[G]=new YAHOO.util.Attribute(I,this);};YAHOO.augment(YAHOO.util.Element,F);})();YAHOO.register("element",YAHOO.util.Element,{version:"2.6.0",build:"1321"});YAHOO.register("utilities", YAHOO, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/yahoo-dom-event/README b/eclipse.org-common/yui/2.6.0/build/yahoo-dom-event/README
deleted file mode 100644
index 1552038..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yahoo-dom-event/README
+++ /dev/null
@@ -1,35 +0,0 @@
-yahoo-event-dom.js Release Notes
-
-*** NOTE ***
-
-This document is not updated with each release.  Changes to
-the yahoo-dom-event.js source are noted in the README
-file for each component that comprises this aggregate:
-
-yahoo/README
-dom/README
-event/README
-
-************
-
-*** version 0.12.0 ***
-
-The yahoo-event-dom.js file rolls up the three most commonly-used YUI Utilities
-into a single file; it includes the following files:
-
-* Yahoo Global Object
-* Dom
-* Event
-
-These three files serve as a common foundation for most YUI components and
-third-party implementations.  On pages where you do not need additional YUI
-Utilities (Connection Manager, Animation Utility, Drag & Drop Utility), the
-yahoo-event-dom.js aggregate will often be an optimal choice.
-
-Note: If you do require additional utilities, the full utilities.js file is
-provided in this distribution; utilities.js includes all YUI Utilities in a
-single file.
-
-Please see the blog article on www.yuiblog.com titled "YUI: Weighing in on
-Pageweights" at http://yuiblog.com/blog/2006/10/16/pageweight-yui0114/ for more
-details.
diff --git a/eclipse.org-common/yui/2.6.0/build/yahoo-dom-event/yahoo-dom-event.js b/eclipse.org-common/yui/2.6.0/build/yahoo-dom-event/yahoo-dom-event.js
deleted file mode 100644
index 2465a2a..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yahoo-dom-event/yahoo-dom-event.js
+++ /dev/null
@@ -1,12 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-if(typeof YAHOO=="undefined"||!YAHOO){var YAHOO={};}YAHOO.namespace=function(){var A=arguments,E=null,C,B,D;for(C=0;C<A.length;C=C+1){D=A[C].split(".");E=YAHOO;for(B=(D[0]=="YAHOO")?1:0;B<D.length;B=B+1){E[D[B]]=E[D[B]]||{};E=E[D[B]];}}return E;};YAHOO.log=function(D,A,C){var B=YAHOO.widget.Logger;if(B&&B.log){return B.log(D,A,C);}else{return false;}};YAHOO.register=function(A,E,D){var I=YAHOO.env.modules;if(!I[A]){I[A]={versions:[],builds:[]};}var B=I[A],H=D.version,G=D.build,F=YAHOO.env.listeners;B.name=A;B.version=H;B.build=G;B.versions.push(H);B.builds.push(G);B.mainClass=E;for(var C=0;C<F.length;C=C+1){F[C](B);}if(E){E.VERSION=H;E.BUILD=G;}else{YAHOO.log("mainClass is undefined for module "+A,"warn");}};YAHOO.env=YAHOO.env||{modules:[],listeners:[]};YAHOO.env.getVersion=function(A){return YAHOO.env.modules[A]||null;};YAHOO.env.ua=function(){var C={ie:0,opera:0,gecko:0,webkit:0,mobile:null,air:0};var B=navigator.userAgent,A;if((/KHTML/).test(B)){C.webkit=1;}A=B.match(/AppleWebKit\/([^\s]*)/);if(A&&A[1]){C.webkit=parseFloat(A[1]);if(/ Mobile\//.test(B)){C.mobile="Apple";}else{A=B.match(/NokiaN[^\/]*/);if(A){C.mobile=A[0];}}A=B.match(/AdobeAIR\/([^\s]*)/);if(A){C.air=A[0];}}if(!C.webkit){A=B.match(/Opera[\s\/]([^\s]*)/);if(A&&A[1]){C.opera=parseFloat(A[1]);A=B.match(/Opera Mini[^;]*/);if(A){C.mobile=A[0];}}else{A=B.match(/MSIE\s([^;]*)/);if(A&&A[1]){C.ie=parseFloat(A[1]);}else{A=B.match(/Gecko\/([^\s]*)/);if(A){C.gecko=1;A=B.match(/rv:([^\s\)]*)/);if(A&&A[1]){C.gecko=parseFloat(A[1]);}}}}}return C;}();(function(){YAHOO.namespace("util","widget","example");if("undefined"!==typeof YAHOO_config){var B=YAHOO_config.listener,A=YAHOO.env.listeners,D=true,C;if(B){for(C=0;C<A.length;C=C+1){if(A[C]==B){D=false;break;}}if(D){A.push(B);}}}})();YAHOO.lang=YAHOO.lang||{};(function(){var A=YAHOO.lang,C=["toString","valueOf"],B={isArray:function(D){if(D){return A.isNumber(D.length)&&A.isFunction(D.splice);}return false;},isBoolean:function(D){return typeof D==="boolean";},isFunction:function(D){return typeof D==="function";},isNull:function(D){return D===null;},isNumber:function(D){return typeof D==="number"&&isFinite(D);},isObject:function(D){return(D&&(typeof D==="object"||A.isFunction(D)))||false;},isString:function(D){return typeof D==="string";},isUndefined:function(D){return typeof D==="undefined";},_IEEnumFix:(YAHOO.env.ua.ie)?function(F,E){for(var D=0;D<C.length;D=D+1){var H=C[D],G=E[H];if(A.isFunction(G)&&G!=Object.prototype[H]){F[H]=G;}}}:function(){},extend:function(H,I,G){if(!I||!H){throw new Error("extend failed, please check that "+"all dependencies are included.");}var E=function(){};E.prototype=I.prototype;H.prototype=new E();H.prototype.constructor=H;H.superclass=I.prototype;if(I.prototype.constructor==Object.prototype.constructor){I.prototype.constructor=I;}if(G){for(var D in G){if(A.hasOwnProperty(G,D)){H.prototype[D]=G[D];}}A._IEEnumFix(H.prototype,G);}},augmentObject:function(H,G){if(!G||!H){throw new Error("Absorb failed, verify dependencies.");}var D=arguments,F,I,E=D[2];if(E&&E!==true){for(F=2;F<D.length;F=F+1){H[D[F]]=G[D[F]];}}else{for(I in G){if(E||!(I in H)){H[I]=G[I];}}A._IEEnumFix(H,G);}},augmentProto:function(G,F){if(!F||!G){throw new Error("Augment failed, verify dependencies.");}var D=[G.prototype,F.prototype];for(var E=2;E<arguments.length;E=E+1){D.push(arguments[E]);}A.augmentObject.apply(this,D);},dump:function(D,I){var F,H,K=[],L="{...}",E="f(){...}",J=", ",G=" => ";if(!A.isObject(D)){return D+"";}else{if(D instanceof Date||("nodeType" in D&&"tagName" in D)){return D;}else{if(A.isFunction(D)){return E;}}}I=(A.isNumber(I))?I:3;if(A.isArray(D)){K.push("[");for(F=0,H=D.length;F<H;F=F+1){if(A.isObject(D[F])){K.push((I>0)?A.dump(D[F],I-1):L);}else{K.push(D[F]);}K.push(J);}if(K.length>1){K.pop();}K.push("]");}else{K.push("{");for(F in D){if(A.hasOwnProperty(D,F)){K.push(F+G);if(A.isObject(D[F])){K.push((I>0)?A.dump(D[F],I-1):L);}else{K.push(D[F]);}K.push(J);}}if(K.length>1){K.pop();}K.push("}");}return K.join("");},substitute:function(S,E,L){var I,H,G,O,P,R,N=[],F,J="dump",M=" ",D="{",Q="}";for(;;){I=S.lastIndexOf(D);if(I<0){break;}H=S.indexOf(Q,I);if(I+1>=H){break;}F=S.substring(I+1,H);O=F;R=null;G=O.indexOf(M);if(G>-1){R=O.substring(G+1);O=O.substring(0,G);}P=E[O];if(L){P=L(O,P,R);}if(A.isObject(P)){if(A.isArray(P)){P=A.dump(P,parseInt(R,10));}else{R=R||"";var K=R.indexOf(J);if(K>-1){R=R.substring(4);}if(P.toString===Object.prototype.toString||K>-1){P=A.dump(P,parseInt(R,10));}else{P=P.toString();}}}else{if(!A.isString(P)&&!A.isNumber(P)){P="~-"+N.length+"-~";N[N.length]=F;}}S=S.substring(0,I)+P+S.substring(H+1);}for(I=N.length-1;I>=0;I=I-1){S=S.replace(new RegExp("~-"+I+"-~"),"{"+N[I]+"}","g");}return S;},trim:function(D){try{return D.replace(/^\s+|\s+$/g,"");}catch(E){return D;}},merge:function(){var G={},E=arguments;for(var F=0,D=E.length;F<D;F=F+1){A.augmentObject(G,E[F],true);}return G;},later:function(K,E,L,G,H){K=K||0;E=E||{};var F=L,J=G,I,D;if(A.isString(L)){F=E[L];}if(!F){throw new TypeError("method undefined");}if(!A.isArray(J)){J=[G];}I=function(){F.apply(E,J);};D=(H)?setInterval(I,K):setTimeout(I,K);return{interval:H,cancel:function(){if(this.interval){clearInterval(D);}else{clearTimeout(D);}}};},isValue:function(D){return(A.isObject(D)||A.isString(D)||A.isNumber(D)||A.isBoolean(D));}};A.hasOwnProperty=(Object.prototype.hasOwnProperty)?function(D,E){return D&&D.hasOwnProperty(E);}:function(D,E){return !A.isUndefined(D[E])&&D.constructor.prototype[E]!==D[E];};B.augmentObject(A,B,true);YAHOO.util.Lang=A;A.augment=A.augmentProto;YAHOO.augment=A.augmentProto;YAHOO.extend=A.extend;})();YAHOO.register("yahoo",YAHOO,{version:"2.6.0",build:"1321"});(function(){var B=YAHOO.util,F=YAHOO.lang,L,J,K={},G={},N=window.document;YAHOO.env._id_counter=YAHOO.env._id_counter||0;var C=YAHOO.env.ua.opera,M=YAHOO.env.ua.webkit,A=YAHOO.env.ua.gecko,H=YAHOO.env.ua.ie;var E={HYPHEN:/(-[a-z])/i,ROOT_TAG:/^body|html$/i,OP_SCROLL:/^(?:inline|table-row)$/i};var O=function(Q){if(!E.HYPHEN.test(Q)){return Q;}if(K[Q]){return K[Q];}var R=Q;while(E.HYPHEN.exec(R)){R=R.replace(RegExp.$1,RegExp.$1.substr(1).toUpperCase());}K[Q]=R;return R;};var P=function(R){var Q=G[R];if(!Q){Q=new RegExp("(?:^|\\s+)"+R+"(?:\\s+|$)");G[R]=Q;}return Q;};if(N.defaultView&&N.defaultView.getComputedStyle){L=function(Q,T){var S=null;if(T=="float"){T="cssFloat";}var R=Q.ownerDocument.defaultView.getComputedStyle(Q,"");if(R){S=R[O(T)];}return Q.style[T]||S;};}else{if(N.documentElement.currentStyle&&H){L=function(Q,S){switch(O(S)){case"opacity":var U=100;try{U=Q.filters["DXImageTransform.Microsoft.Alpha"].opacity;}catch(T){try{U=Q.filters("alpha").opacity;}catch(T){}}return U/100;case"float":S="styleFloat";default:var R=Q.currentStyle?Q.currentStyle[S]:null;return(Q.style[S]||R);}};}else{L=function(Q,R){return Q.style[R];};}}if(H){J=function(Q,R,S){switch(R){case"opacity":if(F.isString(Q.style.filter)){Q.style.filter="alpha(opacity="+S*100+")";if(!Q.currentStyle||!Q.currentStyle.hasLayout){Q.style.zoom=1;}}break;case"float":R="styleFloat";default:Q.style[R]=S;}};}else{J=function(Q,R,S){if(R=="float"){R="cssFloat";}Q.style[R]=S;};}var D=function(Q,R){return Q&&Q.nodeType==1&&(!R||R(Q));};YAHOO.util.Dom={get:function(S){if(S){if(S.nodeType||S.item){return S;}if(typeof S==="string"){return N.getElementById(S);}if("length" in S){var T=[];for(var R=0,Q=S.length;R<Q;++R){T[T.length]=B.Dom.get(S[R]);}return T;}return S;}return null;},getStyle:function(Q,S){S=O(S);var R=function(T){return L(T,S);};return B.Dom.batch(Q,R,B.Dom,true);},setStyle:function(Q,S,T){S=O(S);var R=function(U){J(U,S,T);};B.Dom.batch(Q,R,B.Dom,true);},getXY:function(Q){var R=function(S){if((S.parentNode===null||S.offsetParent===null||this.getStyle(S,"display")=="none")&&S!=S.ownerDocument.body){return false;}return I(S);};return B.Dom.batch(Q,R,B.Dom,true);},getX:function(Q){var R=function(S){return B.Dom.getXY(S)[0];};return B.Dom.batch(Q,R,B.Dom,true);},getY:function(Q){var R=function(S){return B.Dom.getXY(S)[1];};return B.Dom.batch(Q,R,B.Dom,true);},setXY:function(Q,T,S){var R=function(W){var V=this.getStyle(W,"position");if(V=="static"){this.setStyle(W,"position","relative");V="relative";}var Y=this.getXY(W);if(Y===false){return false;}var X=[parseInt(this.getStyle(W,"left"),10),parseInt(this.getStyle(W,"top"),10)];if(isNaN(X[0])){X[0]=(V=="relative")?0:W.offsetLeft;}if(isNaN(X[1])){X[1]=(V=="relative")?0:W.offsetTop;}if(T[0]!==null){W.style.left=T[0]-Y[0]+X[0]+"px";}if(T[1]!==null){W.style.top=T[1]-Y[1]+X[1]+"px";}if(!S){var U=this.getXY(W);if((T[0]!==null&&U[0]!=T[0])||(T[1]!==null&&U[1]!=T[1])){this.setXY(W,T,true);}}};B.Dom.batch(Q,R,B.Dom,true);},setX:function(R,Q){B.Dom.setXY(R,[Q,null]);},setY:function(Q,R){B.Dom.setXY(Q,[null,R]);},getRegion:function(Q){var R=function(S){if((S.parentNode===null||S.offsetParent===null||this.getStyle(S,"display")=="none")&&S!=S.ownerDocument.body){return false;}var T=B.Region.getRegion(S);return T;};return B.Dom.batch(Q,R,B.Dom,true);},getClientWidth:function(){return B.Dom.getViewportWidth();},getClientHeight:function(){return B.Dom.getViewportHeight();},getElementsByClassName:function(U,Y,V,W){U=F.trim(U);Y=Y||"*";V=(V)?B.Dom.get(V):null||N;if(!V){return[];}var R=[],Q=V.getElementsByTagName(Y),X=P(U);for(var S=0,T=Q.length;S<T;++S){if(X.test(Q[S].className)){R[R.length]=Q[S];if(W){W.call(Q[S],Q[S]);}}}return R;},hasClass:function(S,R){var Q=P(R);var T=function(U){return Q.test(U.className);};return B.Dom.batch(S,T,B.Dom,true);},addClass:function(R,Q){var S=function(T){if(this.hasClass(T,Q)){return false;}T.className=F.trim([T.className,Q].join(" "));return true;};return B.Dom.batch(R,S,B.Dom,true);},removeClass:function(S,R){var Q=P(R);var T=function(W){var V=false,X=W.className;if(R&&X&&this.hasClass(W,R)){W.className=X.replace(Q," ");if(this.hasClass(W,R)){this.removeClass(W,R);}W.className=F.trim(W.className);if(W.className===""){var U=(W.hasAttribute)?"class":"className";W.removeAttribute(U);}V=true;}return V;};return B.Dom.batch(S,T,B.Dom,true);},replaceClass:function(T,R,Q){if(!Q||R===Q){return false;}var S=P(R);var U=function(V){if(!this.hasClass(V,R)){this.addClass(V,Q);return true;}V.className=V.className.replace(S," "+Q+" ");if(this.hasClass(V,R)){this.removeClass(V,R);}V.className=F.trim(V.className);return true;};return B.Dom.batch(T,U,B.Dom,true);},generateId:function(Q,S){S=S||"yui-gen";var R=function(T){if(T&&T.id){return T.id;}var U=S+YAHOO.env._id_counter++;if(T){T.id=U;}return U;};return B.Dom.batch(Q,R,B.Dom,true)||R.apply(B.Dom,arguments);},isAncestor:function(R,S){R=B.Dom.get(R);S=B.Dom.get(S);var Q=false;if((R&&S)&&(R.nodeType&&S.nodeType)){if(R.contains&&R!==S){Q=R.contains(S);}else{if(R.compareDocumentPosition){Q=!!(R.compareDocumentPosition(S)&16);}}}else{}return Q;},inDocument:function(Q){return this.isAncestor(N.documentElement,Q);},getElementsBy:function(X,R,S,U){R=R||"*";S=(S)?B.Dom.get(S):null||N;if(!S){return[];}var T=[],W=S.getElementsByTagName(R);for(var V=0,Q=W.length;V<Q;++V){if(X(W[V])){T[T.length]=W[V];if(U){U(W[V]);}}}return T;},batch:function(U,X,W,S){U=(U&&(U.tagName||U.item))?U:B.Dom.get(U);if(!U||!X){return false;}var T=(S)?W:window;if(U.tagName||U.length===undefined){return X.call(T,U,W);}var V=[];for(var R=0,Q=U.length;R<Q;++R){V[V.length]=X.call(T,U[R],W);}return V;},getDocumentHeight:function(){var R=(N.compatMode!="CSS1Compat")?N.body.scrollHeight:N.documentElement.scrollHeight;var Q=Math.max(R,B.Dom.getViewportHeight());return Q;},getDocumentWidth:function(){var R=(N.compatMode!="CSS1Compat")?N.body.scrollWidth:N.documentElement.scrollWidth;var Q=Math.max(R,B.Dom.getViewportWidth());return Q;},getViewportHeight:function(){var Q=self.innerHeight;
-var R=N.compatMode;if((R||H)&&!C){Q=(R=="CSS1Compat")?N.documentElement.clientHeight:N.body.clientHeight;}return Q;},getViewportWidth:function(){var Q=self.innerWidth;var R=N.compatMode;if(R||H){Q=(R=="CSS1Compat")?N.documentElement.clientWidth:N.body.clientWidth;}return Q;},getAncestorBy:function(Q,R){while((Q=Q.parentNode)){if(D(Q,R)){return Q;}}return null;},getAncestorByClassName:function(R,Q){R=B.Dom.get(R);if(!R){return null;}var S=function(T){return B.Dom.hasClass(T,Q);};return B.Dom.getAncestorBy(R,S);},getAncestorByTagName:function(R,Q){R=B.Dom.get(R);if(!R){return null;}var S=function(T){return T.tagName&&T.tagName.toUpperCase()==Q.toUpperCase();};return B.Dom.getAncestorBy(R,S);},getPreviousSiblingBy:function(Q,R){while(Q){Q=Q.previousSibling;if(D(Q,R)){return Q;}}return null;},getPreviousSibling:function(Q){Q=B.Dom.get(Q);if(!Q){return null;}return B.Dom.getPreviousSiblingBy(Q);},getNextSiblingBy:function(Q,R){while(Q){Q=Q.nextSibling;if(D(Q,R)){return Q;}}return null;},getNextSibling:function(Q){Q=B.Dom.get(Q);if(!Q){return null;}return B.Dom.getNextSiblingBy(Q);},getFirstChildBy:function(Q,S){var R=(D(Q.firstChild,S))?Q.firstChild:null;return R||B.Dom.getNextSiblingBy(Q.firstChild,S);},getFirstChild:function(Q,R){Q=B.Dom.get(Q);if(!Q){return null;}return B.Dom.getFirstChildBy(Q);},getLastChildBy:function(Q,S){if(!Q){return null;}var R=(D(Q.lastChild,S))?Q.lastChild:null;return R||B.Dom.getPreviousSiblingBy(Q.lastChild,S);},getLastChild:function(Q){Q=B.Dom.get(Q);return B.Dom.getLastChildBy(Q);},getChildrenBy:function(R,T){var S=B.Dom.getFirstChildBy(R,T);var Q=S?[S]:[];B.Dom.getNextSiblingBy(S,function(U){if(!T||T(U)){Q[Q.length]=U;}return false;});return Q;},getChildren:function(Q){Q=B.Dom.get(Q);if(!Q){}return B.Dom.getChildrenBy(Q);},getDocumentScrollLeft:function(Q){Q=Q||N;return Math.max(Q.documentElement.scrollLeft,Q.body.scrollLeft);},getDocumentScrollTop:function(Q){Q=Q||N;return Math.max(Q.documentElement.scrollTop,Q.body.scrollTop);},insertBefore:function(R,Q){R=B.Dom.get(R);Q=B.Dom.get(Q);if(!R||!Q||!Q.parentNode){return null;}return Q.parentNode.insertBefore(R,Q);},insertAfter:function(R,Q){R=B.Dom.get(R);Q=B.Dom.get(Q);if(!R||!Q||!Q.parentNode){return null;}if(Q.nextSibling){return Q.parentNode.insertBefore(R,Q.nextSibling);}else{return Q.parentNode.appendChild(R);}},getClientRegion:function(){var S=B.Dom.getDocumentScrollTop(),R=B.Dom.getDocumentScrollLeft(),T=B.Dom.getViewportWidth()+R,Q=B.Dom.getViewportHeight()+S;return new B.Region(S,T,Q,R);}};var I=function(){if(N.documentElement.getBoundingClientRect){return function(S){var T=S.getBoundingClientRect(),R=Math.round;var Q=S.ownerDocument;return[R(T.left+B.Dom.getDocumentScrollLeft(Q)),R(T.top+B.Dom.getDocumentScrollTop(Q))];};}else{return function(S){var T=[S.offsetLeft,S.offsetTop];var R=S.offsetParent;var Q=(M&&B.Dom.getStyle(S,"position")=="absolute"&&S.offsetParent==S.ownerDocument.body);if(R!=S){while(R){T[0]+=R.offsetLeft;T[1]+=R.offsetTop;if(!Q&&M&&B.Dom.getStyle(R,"position")=="absolute"){Q=true;}R=R.offsetParent;}}if(Q){T[0]-=S.ownerDocument.body.offsetLeft;T[1]-=S.ownerDocument.body.offsetTop;}R=S.parentNode;while(R.tagName&&!E.ROOT_TAG.test(R.tagName)){if(R.scrollTop||R.scrollLeft){T[0]-=R.scrollLeft;T[1]-=R.scrollTop;}R=R.parentNode;}return T;};}}();})();YAHOO.util.Region=function(C,D,A,B){this.top=C;this[1]=C;this.right=D;this.bottom=A;this.left=B;this[0]=B;};YAHOO.util.Region.prototype.contains=function(A){return(A.left>=this.left&&A.right<=this.right&&A.top>=this.top&&A.bottom<=this.bottom);};YAHOO.util.Region.prototype.getArea=function(){return((this.bottom-this.top)*(this.right-this.left));};YAHOO.util.Region.prototype.intersect=function(E){var C=Math.max(this.top,E.top);var D=Math.min(this.right,E.right);var A=Math.min(this.bottom,E.bottom);var B=Math.max(this.left,E.left);if(A>=C&&D>=B){return new YAHOO.util.Region(C,D,A,B);}else{return null;}};YAHOO.util.Region.prototype.union=function(E){var C=Math.min(this.top,E.top);var D=Math.max(this.right,E.right);var A=Math.max(this.bottom,E.bottom);var B=Math.min(this.left,E.left);return new YAHOO.util.Region(C,D,A,B);};YAHOO.util.Region.prototype.toString=function(){return("Region {"+"top: "+this.top+", right: "+this.right+", bottom: "+this.bottom+", left: "+this.left+"}");};YAHOO.util.Region.getRegion=function(D){var F=YAHOO.util.Dom.getXY(D);var C=F[1];var E=F[0]+D.offsetWidth;var A=F[1]+D.offsetHeight;var B=F[0];return new YAHOO.util.Region(C,E,A,B);};YAHOO.util.Point=function(A,B){if(YAHOO.lang.isArray(A)){B=A[1];A=A[0];}this.x=this.right=this.left=this[0]=A;this.y=this.top=this.bottom=this[1]=B;};YAHOO.util.Point.prototype=new YAHOO.util.Region();YAHOO.register("dom",YAHOO.util.Dom,{version:"2.6.0",build:"1321"});YAHOO.util.CustomEvent=function(D,B,C,A){this.type=D;this.scope=B||window;this.silent=C;this.signature=A||YAHOO.util.CustomEvent.LIST;this.subscribers=[];if(!this.silent){}var E="_YUICEOnSubscribe";if(D!==E){this.subscribeEvent=new YAHOO.util.CustomEvent(E,this,true);}this.lastError=null;};YAHOO.util.CustomEvent.LIST=0;YAHOO.util.CustomEvent.FLAT=1;YAHOO.util.CustomEvent.prototype={subscribe:function(B,C,A){if(!B){throw new Error("Invalid callback for subscriber to '"+this.type+"'");}if(this.subscribeEvent){this.subscribeEvent.fire(B,C,A);}this.subscribers.push(new YAHOO.util.Subscriber(B,C,A));},unsubscribe:function(D,F){if(!D){return this.unsubscribeAll();}var E=false;for(var B=0,A=this.subscribers.length;B<A;++B){var C=this.subscribers[B];if(C&&C.contains(D,F)){this._delete(B);E=true;}}return E;},fire:function(){this.lastError=null;var K=[],E=this.subscribers.length;if(!E&&this.silent){return true;}var I=[].slice.call(arguments,0),G=true,D,J=false;if(!this.silent){}var C=this.subscribers.slice(),A=YAHOO.util.Event.throwErrors;for(D=0;D<E;++D){var M=C[D];if(!M){J=true;}else{if(!this.silent){}var L=M.getScope(this.scope);if(this.signature==YAHOO.util.CustomEvent.FLAT){var B=null;if(I.length>0){B=I[0];}try{G=M.fn.call(L,B,M.obj);}catch(F){this.lastError=F;if(A){throw F;}}}else{try{G=M.fn.call(L,this.type,I,M.obj);}catch(H){this.lastError=H;if(A){throw H;}}}if(false===G){if(!this.silent){}break;}}}return(G!==false);},unsubscribeAll:function(){for(var A=this.subscribers.length-1;A>-1;A--){this._delete(A);}this.subscribers=[];return A;},_delete:function(A){var B=this.subscribers[A];if(B){delete B.fn;delete B.obj;}this.subscribers.splice(A,1);},toString:function(){return"CustomEvent: "+"'"+this.type+"', "+"scope: "+this.scope;}};YAHOO.util.Subscriber=function(B,C,A){this.fn=B;this.obj=YAHOO.lang.isUndefined(C)?null:C;this.override=A;};YAHOO.util.Subscriber.prototype.getScope=function(A){if(this.override){if(this.override===true){return this.obj;}else{return this.override;}}return A;};YAHOO.util.Subscriber.prototype.contains=function(A,B){if(B){return(this.fn==A&&this.obj==B);}else{return(this.fn==A);}};YAHOO.util.Subscriber.prototype.toString=function(){return"Subscriber { obj: "+this.obj+", override: "+(this.override||"no")+" }";};if(!YAHOO.util.Event){YAHOO.util.Event=function(){var H=false;var I=[];var J=[];var G=[];var E=[];var C=0;var F=[];var B=[];var A=0;var D={63232:38,63233:40,63234:37,63235:39,63276:33,63277:34,25:9};var K=YAHOO.env.ua.ie?"focusin":"focus";var L=YAHOO.env.ua.ie?"focusout":"blur";return{POLL_RETRYS:2000,POLL_INTERVAL:20,EL:0,TYPE:1,FN:2,WFN:3,UNLOAD_OBJ:3,ADJ_SCOPE:4,OBJ:5,OVERRIDE:6,CAPTURE:7,lastError:null,isSafari:YAHOO.env.ua.webkit,webkit:YAHOO.env.ua.webkit,isIE:YAHOO.env.ua.ie,_interval:null,_dri:null,DOMReady:false,throwErrors:false,startInterval:function(){if(!this._interval){var M=this;var N=function(){M._tryPreloadAttach();};this._interval=setInterval(N,this.POLL_INTERVAL);}},onAvailable:function(R,O,S,Q,P){var M=(YAHOO.lang.isString(R))?[R]:R;for(var N=0;N<M.length;N=N+1){F.push({id:M[N],fn:O,obj:S,override:Q,checkReady:P});}C=this.POLL_RETRYS;this.startInterval();},onContentReady:function(O,M,P,N){this.onAvailable(O,M,P,N,true);},onDOMReady:function(M,O,N){if(this.DOMReady){setTimeout(function(){var P=window;if(N){if(N===true){P=O;}else{P=N;}}M.call(P,"DOMReady",[],O);},0);}else{this.DOMReadyEvent.subscribe(M,O,N);}},_addListener:function(O,M,X,S,N,a){if(!X||!X.call){return false;}if(this._isValidCollection(O)){var Y=true;for(var T=0,V=O.length;T<V;++T){Y=this._addListener(O[T],M,X,S,N,a)&&Y;}return Y;}else{if(YAHOO.lang.isString(O)){var R=this.getEl(O);if(R){O=R;}else{this.onAvailable(O,function(){YAHOO.util.Event._addListener(O,M,X,S,N,a);});return true;}}}if(!O){return false;}if("unload"==M&&S!==this){J[J.length]=[O,M,X,S,N,a];return true;}var b=O;if(N){if(N===true){b=S;}else{b=N;}}var P=function(c){return X.call(b,YAHOO.util.Event.getEvent(c,O),S);};var Z=[O,M,X,P,b,S,N,a];var U=I.length;I[U]=Z;if(this.useLegacyEvent(O,M)){var Q=this.getLegacyIndex(O,M);if(Q==-1||O!=G[Q][0]){Q=G.length;B[O.id+M]=Q;G[Q]=[O,M,O["on"+M]];E[Q]=[];O["on"+M]=function(c){YAHOO.util.Event.fireLegacyEvent(YAHOO.util.Event.getEvent(c),Q);};}E[Q].push(Z);}else{try{this._simpleAdd(O,M,P,a);}catch(W){this.lastError=W;this._removeListener(O,M,X,a);return false;}}return true;},addListener:function(O,Q,N,P,M){return this._addListener(O,Q,N,P,M,false);},addFocusListener:function(O,N,P,M){return this._addListener(O,K,N,P,M,true);},removeFocusListener:function(N,M){return this._removeListener(N,K,M,true);},addBlurListener:function(O,N,P,M){return this._addListener(O,L,N,P,M,true);},removeBlurListener:function(N,M){return this._removeListener(N,L,M,true);},fireLegacyEvent:function(Q,O){var S=true,M,U,T,V,R;U=E[O].slice();for(var N=0,P=U.length;N<P;++N){T=U[N];if(T&&T[this.WFN]){V=T[this.ADJ_SCOPE];R=T[this.WFN].call(V,Q);S=(S&&R);}}M=G[O];if(M&&M[2]){M[2](Q);}return S;},getLegacyIndex:function(N,O){var M=this.generateId(N)+O;if(typeof B[M]=="undefined"){return -1;}else{return B[M];}},useLegacyEvent:function(M,N){return(this.webkit&&this.webkit<419&&("click"==N||"dblclick"==N));},_removeListener:function(N,M,V,Y){var Q,T,X;if(typeof N=="string"){N=this.getEl(N);}else{if(this._isValidCollection(N)){var W=true;for(Q=N.length-1;Q>-1;Q--){W=(this._removeListener(N[Q],M,V,Y)&&W);}return W;}}if(!V||!V.call){return this.purgeElement(N,false,M);}if("unload"==M){for(Q=J.length-1;Q>-1;Q--){X=J[Q];if(X&&X[0]==N&&X[1]==M&&X[2]==V){J.splice(Q,1);return true;}}return false;}var R=null;var S=arguments[4];if("undefined"===typeof S){S=this._getCacheIndex(N,M,V);}if(S>=0){R=I[S];}if(!N||!R){return false;}if(this.useLegacyEvent(N,M)){var P=this.getLegacyIndex(N,M);var O=E[P];if(O){for(Q=0,T=O.length;Q<T;++Q){X=O[Q];if(X&&X[this.EL]==N&&X[this.TYPE]==M&&X[this.FN]==V){O.splice(Q,1);break;}}}}else{try{this._simpleRemove(N,M,R[this.WFN],Y);}catch(U){this.lastError=U;return false;}}delete I[S][this.WFN];delete I[S][this.FN];
-I.splice(S,1);return true;},removeListener:function(N,O,M){return this._removeListener(N,O,M,false);},getTarget:function(O,N){var M=O.target||O.srcElement;return this.resolveTextNode(M);},resolveTextNode:function(N){try{if(N&&3==N.nodeType){return N.parentNode;}}catch(M){}return N;},getPageX:function(N){var M=N.pageX;if(!M&&0!==M){M=N.clientX||0;if(this.isIE){M+=this._getScrollLeft();}}return M;},getPageY:function(M){var N=M.pageY;if(!N&&0!==N){N=M.clientY||0;if(this.isIE){N+=this._getScrollTop();}}return N;},getXY:function(M){return[this.getPageX(M),this.getPageY(M)];},getRelatedTarget:function(N){var M=N.relatedTarget;if(!M){if(N.type=="mouseout"){M=N.toElement;}else{if(N.type=="mouseover"){M=N.fromElement;}}}return this.resolveTextNode(M);},getTime:function(O){if(!O.time){var N=new Date().getTime();try{O.time=N;}catch(M){this.lastError=M;return N;}}return O.time;},stopEvent:function(M){this.stopPropagation(M);this.preventDefault(M);},stopPropagation:function(M){if(M.stopPropagation){M.stopPropagation();}else{M.cancelBubble=true;}},preventDefault:function(M){if(M.preventDefault){M.preventDefault();}else{M.returnValue=false;}},getEvent:function(O,M){var N=O||window.event;if(!N){var P=this.getEvent.caller;while(P){N=P.arguments[0];if(N&&Event==N.constructor){break;}P=P.caller;}}return N;},getCharCode:function(N){var M=N.keyCode||N.charCode||0;if(YAHOO.env.ua.webkit&&(M in D)){M=D[M];}return M;},_getCacheIndex:function(Q,R,P){for(var O=0,N=I.length;O<N;O=O+1){var M=I[O];if(M&&M[this.FN]==P&&M[this.EL]==Q&&M[this.TYPE]==R){return O;}}return -1;},generateId:function(M){var N=M.id;if(!N){N="yuievtautoid-"+A;++A;M.id=N;}return N;},_isValidCollection:function(N){try{return(N&&typeof N!=="string"&&N.length&&!N.tagName&&!N.alert&&typeof N[0]!=="undefined");}catch(M){return false;}},elCache:{},getEl:function(M){return(typeof M==="string")?document.getElementById(M):M;},clearCache:function(){},DOMReadyEvent:new YAHOO.util.CustomEvent("DOMReady",this),_load:function(N){if(!H){H=true;var M=YAHOO.util.Event;M._ready();M._tryPreloadAttach();}},_ready:function(N){var M=YAHOO.util.Event;if(!M.DOMReady){M.DOMReady=true;M.DOMReadyEvent.fire();M._simpleRemove(document,"DOMContentLoaded",M._ready);}},_tryPreloadAttach:function(){if(F.length===0){C=0;clearInterval(this._interval);this._interval=null;return ;}if(this.locked){return ;}if(this.isIE){if(!this.DOMReady){this.startInterval();return ;}}this.locked=true;var S=!H;if(!S){S=(C>0&&F.length>0);}var R=[];var T=function(V,W){var U=V;if(W.override){if(W.override===true){U=W.obj;}else{U=W.override;}}W.fn.call(U,W.obj);};var N,M,Q,P,O=[];for(N=0,M=F.length;N<M;N=N+1){Q=F[N];if(Q){P=this.getEl(Q.id);if(P){if(Q.checkReady){if(H||P.nextSibling||!S){O.push(Q);F[N]=null;}}else{T(P,Q);F[N]=null;}}else{R.push(Q);}}}for(N=0,M=O.length;N<M;N=N+1){Q=O[N];T(this.getEl(Q.id),Q);}C--;if(S){for(N=F.length-1;N>-1;N--){Q=F[N];if(!Q||!Q.id){F.splice(N,1);}}this.startInterval();}else{clearInterval(this._interval);this._interval=null;}this.locked=false;},purgeElement:function(Q,R,T){var O=(YAHOO.lang.isString(Q))?this.getEl(Q):Q;var S=this.getListeners(O,T),P,M;if(S){for(P=S.length-1;P>-1;P--){var N=S[P];this._removeListener(O,N.type,N.fn,N.capture);}}if(R&&O&&O.childNodes){for(P=0,M=O.childNodes.length;P<M;++P){this.purgeElement(O.childNodes[P],R,T);}}},getListeners:function(O,M){var R=[],N;if(!M){N=[I,J];}else{if(M==="unload"){N=[J];}else{N=[I];}}var T=(YAHOO.lang.isString(O))?this.getEl(O):O;for(var Q=0;Q<N.length;Q=Q+1){var V=N[Q];if(V){for(var S=0,U=V.length;S<U;++S){var P=V[S];if(P&&P[this.EL]===T&&(!M||M===P[this.TYPE])){R.push({type:P[this.TYPE],fn:P[this.FN],obj:P[this.OBJ],adjust:P[this.OVERRIDE],scope:P[this.ADJ_SCOPE],capture:P[this.CAPTURE],index:S});}}}}return(R.length)?R:null;},_unload:function(S){var M=YAHOO.util.Event,P,O,N,R,Q,T=J.slice();for(P=0,R=J.length;P<R;++P){N=T[P];if(N){var U=window;if(N[M.ADJ_SCOPE]){if(N[M.ADJ_SCOPE]===true){U=N[M.UNLOAD_OBJ];}else{U=N[M.ADJ_SCOPE];}}N[M.FN].call(U,M.getEvent(S,N[M.EL]),N[M.UNLOAD_OBJ]);T[P]=null;N=null;U=null;}}J=null;if(I){for(O=I.length-1;O>-1;O--){N=I[O];if(N){M._removeListener(N[M.EL],N[M.TYPE],N[M.FN],N[M.CAPTURE],O);}}N=null;}G=null;M._simpleRemove(window,"unload",M._unload);},_getScrollLeft:function(){return this._getScroll()[1];},_getScrollTop:function(){return this._getScroll()[0];},_getScroll:function(){var M=document.documentElement,N=document.body;if(M&&(M.scrollTop||M.scrollLeft)){return[M.scrollTop,M.scrollLeft];}else{if(N){return[N.scrollTop,N.scrollLeft];}else{return[0,0];}}},regCE:function(){},_simpleAdd:function(){if(window.addEventListener){return function(O,P,N,M){O.addEventListener(P,N,(M));};}else{if(window.attachEvent){return function(O,P,N,M){O.attachEvent("on"+P,N);};}else{return function(){};}}}(),_simpleRemove:function(){if(window.removeEventListener){return function(O,P,N,M){O.removeEventListener(P,N,(M));};}else{if(window.detachEvent){return function(N,O,M){N.detachEvent("on"+O,M);};}else{return function(){};}}}()};}();(function(){var EU=YAHOO.util.Event;EU.on=EU.addListener;EU.onFocus=EU.addFocusListener;EU.onBlur=EU.addBlurListener;
-/* DOMReady: based on work by: Dean Edwards/John Resig/Matthias Miller */
-if(EU.isIE){YAHOO.util.Event.onDOMReady(YAHOO.util.Event._tryPreloadAttach,YAHOO.util.Event,true);var n=document.createElement("p");EU._dri=setInterval(function(){try{n.doScroll("left");clearInterval(EU._dri);EU._dri=null;EU._ready();n=null;}catch(ex){}},EU.POLL_INTERVAL);}else{if(EU.webkit&&EU.webkit<525){EU._dri=setInterval(function(){var rs=document.readyState;if("loaded"==rs||"complete"==rs){clearInterval(EU._dri);EU._dri=null;EU._ready();}},EU.POLL_INTERVAL);}else{EU._simpleAdd(document,"DOMContentLoaded",EU._ready);}}EU._simpleAdd(window,"load",EU._load);EU._simpleAdd(window,"unload",EU._unload);EU._tryPreloadAttach();})();}YAHOO.util.EventProvider=function(){};YAHOO.util.EventProvider.prototype={__yui_events:null,__yui_subscribers:null,subscribe:function(A,C,F,E){this.__yui_events=this.__yui_events||{};
-var D=this.__yui_events[A];if(D){D.subscribe(C,F,E);}else{this.__yui_subscribers=this.__yui_subscribers||{};var B=this.__yui_subscribers;if(!B[A]){B[A]=[];}B[A].push({fn:C,obj:F,override:E});}},unsubscribe:function(C,E,G){this.__yui_events=this.__yui_events||{};var A=this.__yui_events;if(C){var F=A[C];if(F){return F.unsubscribe(E,G);}}else{var B=true;for(var D in A){if(YAHOO.lang.hasOwnProperty(A,D)){B=B&&A[D].unsubscribe(E,G);}}return B;}return false;},unsubscribeAll:function(A){return this.unsubscribe(A);},createEvent:function(G,D){this.__yui_events=this.__yui_events||{};var A=D||{};var I=this.__yui_events;if(I[G]){}else{var H=A.scope||this;var E=(A.silent);var B=new YAHOO.util.CustomEvent(G,H,E,YAHOO.util.CustomEvent.FLAT);I[G]=B;if(A.onSubscribeCallback){B.subscribeEvent.subscribe(A.onSubscribeCallback);}this.__yui_subscribers=this.__yui_subscribers||{};var F=this.__yui_subscribers[G];if(F){for(var C=0;C<F.length;++C){B.subscribe(F[C].fn,F[C].obj,F[C].override);}}}return I[G];},fireEvent:function(E,D,A,C){this.__yui_events=this.__yui_events||{};var G=this.__yui_events[E];if(!G){return null;}var B=[];for(var F=1;F<arguments.length;++F){B.push(arguments[F]);}return G.fire.apply(G,B);},hasEvent:function(A){if(this.__yui_events){if(this.__yui_events[A]){return true;}}return false;}};YAHOO.util.KeyListener=function(A,F,B,C){if(!A){}else{if(!F){}else{if(!B){}}}if(!C){C=YAHOO.util.KeyListener.KEYDOWN;}var D=new YAHOO.util.CustomEvent("keyPressed");this.enabledEvent=new YAHOO.util.CustomEvent("enabled");this.disabledEvent=new YAHOO.util.CustomEvent("disabled");if(typeof A=="string"){A=document.getElementById(A);}if(typeof B=="function"){D.subscribe(B);}else{D.subscribe(B.fn,B.scope,B.correctScope);}function E(J,I){if(!F.shift){F.shift=false;}if(!F.alt){F.alt=false;}if(!F.ctrl){F.ctrl=false;}if(J.shiftKey==F.shift&&J.altKey==F.alt&&J.ctrlKey==F.ctrl){var G;if(F.keys instanceof Array){for(var H=0;H<F.keys.length;H++){G=F.keys[H];if(G==J.charCode){D.fire(J.charCode,J);break;}else{if(G==J.keyCode){D.fire(J.keyCode,J);break;}}}}else{G=F.keys;if(G==J.charCode){D.fire(J.charCode,J);}else{if(G==J.keyCode){D.fire(J.keyCode,J);}}}}}this.enable=function(){if(!this.enabled){YAHOO.util.Event.addListener(A,C,E);this.enabledEvent.fire(F);}this.enabled=true;};this.disable=function(){if(this.enabled){YAHOO.util.Event.removeListener(A,C,E);this.disabledEvent.fire(F);}this.enabled=false;};this.toString=function(){return"KeyListener ["+F.keys+"] "+A.tagName+(A.id?"["+A.id+"]":"");};};YAHOO.util.KeyListener.KEYDOWN="keydown";YAHOO.util.KeyListener.KEYUP="keyup";YAHOO.util.KeyListener.KEY={ALT:18,BACK_SPACE:8,CAPS_LOCK:20,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,META:224,NUM_LOCK:144,PAGE_DOWN:34,PAGE_UP:33,PAUSE:19,PRINTSCREEN:44,RIGHT:39,SCROLL_LOCK:145,SHIFT:16,SPACE:32,TAB:9,UP:38};YAHOO.register("event",YAHOO.util.Event,{version:"2.6.0",build:"1321"});YAHOO.register("yahoo-dom-event", YAHOO, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/yahoo/README b/eclipse.org-common/yui/2.6.0/build/yahoo/README
deleted file mode 100644
index acb86e2..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yahoo/README
+++ /dev/null
@@ -1,106 +0,0 @@
-YAHOO Global - Release Notes
-
-2.6.0
-  * No change.
-
-2.5.2
-  * YAHOO.lang now overwrites existing methods when included a second time,
-    but preserves methods that are in the old version but not in the new.
-  * augmentObject overwrite flag works correctly with falsy values
-
-2.5.1
-  * Added Adobe AIR detection.
-
-2.5.0
-  * API doc updates
-
-2.4.0
-  * Added YAHOO.env.ua.mobile
-  * Removed the hasOwnProperty check in isArray to make it perform a bit better.
-  * YAHOO will be created/overwritten if YAHOO is undefined or the defined YAHOO is falsy
-  * YAHOO.lang is now preserved when YAHOO is included a second time.
-
-2.3.1
-  * YAHOO.lang.dump casts primitives to strings
-
-2.3.0
-  * Added YAHOO.env.ua - browser detection
-  * Added YAHOO.lang.merge - object merge
-  * Added YAHOO.lang.trim - whitespace removal
-  * Added YAHOO.lang.augmentObject - mixins.  Renamed augment to augmentProto and 
-    made augment an alias to augmentProto
-  * isObject/isArray return false rather than null when testing null
-
-2.2.2
-
-  * No change
-
-2.2.1
-
-  * YAHOO.lang.isObject returns false for null
-  * YAHOO.lang.isArray no longer generates an error when the argument is null/undefined
-  * Better error messages for YAHOO.lang.augment/extend failures that are usually due 
-    to missing dependencies.
-
-2.2.0a
-
-  * Fixed a typo that prevented the proper detection of multiple YAHOO_config listeners
-
-2.2.0
-
-  * Added configuration of the library via a YAHOO_config object defined
-    prior to the reference to the library.  Currently it supports a listener
-    parameter that will execute every time a new module YUI module is loaded.
-
-  * Added YAHOO.register & YAHOO.getVersion for version stamping modules.
-  
-  * Added YAHOO.env which is the home for the information about the loaded
-    YUI modules, and will host more info later.
-    
-  * YAHOO.util.Lang was relocated to this package and is now YAHOO.lang.
-    YAHOO.extend and YAHOO.augment have moved to env (the original
-    functions still work).
-
-0.12.2
-
-  * No change
-
-0.12.1
-
-  * No change
-
-0.12.0
-
-   * Added YAHOO.augment, which copies all or part of the prototype of one
-     object to another.  
-
-   * YAHOO.namespace now can create multiple namespaces.
-
-   * Added an optional third parameter to YAHOO.extend: overrides.  It takes
-     an object literal of properties/methods to apply to the subclass
-     prototype, overriding the superclass if present.
-
-0.11.4
-
-   * Changed window.YAHOO = window.YAHOO || {} to 
-     if (typeof YAHOO == "undefined") YAHOO = {} because the previous statement
-     contributed to a memory leak in IE6 when the library was hosted in an 
-     iframe.
-
-0.11.3
-
-   * Changed var YAHOO = window.YAHOO || {} to window.YAHOO = window.YAHOO || {}.
-     This fixes an issue in IE where YAHOO would get overwritten if previously
-     defined via array notation (window["YAHOO"]).
-
-0.11.0
-
-   * Added YAHOO.extend, which provides an easy way to assign the prototype,
-     constructor, and superclass properties inheritance properties.  It also
-     prevents the constructor of the superclass from being exectuted twice.
-
-0.10.0
-
-   * Added YAHOO.log that provides a safe way to plumb logging statements in
-     code that will work if the logging component isn't available.
-
diff --git a/eclipse.org-common/yui/2.6.0/build/yahoo/yahoo-debug.js b/eclipse.org-common/yui/2.6.0/build/yahoo/yahoo-debug.js
deleted file mode 100644
index 92ba865..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yahoo/yahoo-debug.js
+++ /dev/null
@@ -1,986 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The YAHOO object is the single global object used by YUI Library.  It
- * contains utility function for setting up namespaces, inheritance, and
- * logging.  YAHOO.util, YAHOO.widget, and YAHOO.example are namespaces
- * created automatically for and used by the library.
- * @module yahoo
- * @title  YAHOO Global
- */
-
-/**
- * YAHOO_config is not included as part of the library.  Instead it is an 
- * object that can be defined by the implementer immediately before 
- * including the YUI library.  The properties included in this object
- * will be used to configure global properties needed as soon as the 
- * library begins to load.
- * @class YAHOO_config
- * @static
- */
-
-/**
- * A reference to a function that will be executed every time a YAHOO module
- * is loaded.  As parameter, this function will receive the version
- * information for the module. See <a href="YAHOO.env.html#getVersion">
- * YAHOO.env.getVersion</a> for the description of the version data structure.
- * @property listener
- * @type Function
- * @static
- * @default undefined
- */
-
-/**
- * Set to true if the library will be dynamically loaded after window.onload.
- * Defaults to false 
- * @property injecting
- * @type boolean
- * @static
- * @default undefined
- */
-
-/**
- * Instructs the yuiloader component to dynamically load yui components and
- * their dependencies.  See the yuiloader documentation for more information
- * about dynamic loading
- * @property load
- * @static
- * @default undefined
- * @see yuiloader
- */
-
-/**
- * Forces the use of the supplied locale where applicable in the library
- * @property locale
- * @type string
- * @static
- * @default undefined
- */
-
-if (typeof YAHOO == "undefined" || !YAHOO) {
-    /**
-     * The YAHOO global namespace object.  If YAHOO is already defined, the
-     * existing YAHOO object will not be overwritten so that defined
-     * namespaces are preserved.
-     * @class YAHOO
-     * @static
-     */
-    var YAHOO = {};
-}
-
-/**
- * Returns the namespace specified and creates it if it doesn't exist
- * <pre>
- * YAHOO.namespace("property.package");
- * YAHOO.namespace("YAHOO.property.package");
- * </pre>
- * Either of the above would create YAHOO.property, then
- * YAHOO.property.package
- *
- * Be careful when naming packages. Reserved words may work in some browsers
- * and not others. For instance, the following will fail in Safari:
- * <pre>
- * YAHOO.namespace("really.long.nested.namespace");
- * </pre>
- * This fails because "long" is a future reserved word in ECMAScript
- *
- * @method namespace
- * @static
- * @param  {String*} arguments 1-n namespaces to create 
- * @return {Object}  A reference to the last namespace object created
- */
-YAHOO.namespace = function() {
-    var a=arguments, o=null, i, j, d;
-    for (i=0; i<a.length; i=i+1) {
-        d=a[i].split(".");
-        o=YAHOO;
-
-        // YAHOO is implied, so it is ignored if it is included
-        for (j=(d[0] == "YAHOO") ? 1 : 0; j<d.length; j=j+1) {
-            o[d[j]]=o[d[j]] || {};
-            o=o[d[j]];
-        }
-    }
-
-    return o;
-};
-
-/**
- * Uses YAHOO.widget.Logger to output a log message, if the widget is
- * available.
- *
- * @method log
- * @static
- * @param  {String}  msg  The message to log.
- * @param  {String}  cat  The log category for the message.  Default
- *                        categories are "info", "warn", "error", time".
- *                        Custom categories can be used as well. (opt)
- * @param  {String}  src  The source of the the message (opt)
- * @return {Boolean}      True if the log operation was successful.
- */
-YAHOO.log = function(msg, cat, src) {
-    var l=YAHOO.widget.Logger;
-    if(l && l.log) {
-        return l.log(msg, cat, src);
-    } else {
-        return false;
-    }
-};
-
-/**
- * Registers a module with the YAHOO object
- * @method register
- * @static
- * @param {String}   name    the name of the module (event, slider, etc)
- * @param {Function} mainClass a reference to class in the module.  This
- *                             class will be tagged with the version info
- *                             so that it will be possible to identify the
- *                             version that is in use when multiple versions
- *                             have loaded
- * @param {Object}   data      metadata object for the module.  Currently it
- *                             is expected to contain a "version" property
- *                             and a "build" property at minimum.
- */
-YAHOO.register = function(name, mainClass, data) {
-    var mods = YAHOO.env.modules;
-    if (!mods[name]) {
-        mods[name] = { versions:[], builds:[] };
-    }
-    var m=mods[name],v=data.version,b=data.build,ls=YAHOO.env.listeners;
-    m.name = name;
-    m.version = v;
-    m.build = b;
-    m.versions.push(v);
-    m.builds.push(b);
-    m.mainClass = mainClass;
-    // fire the module load listeners
-    for (var i=0;i<ls.length;i=i+1) {
-        ls[i](m);
-    }
-    // label the main class
-    if (mainClass) {
-        mainClass.VERSION = v;
-        mainClass.BUILD = b;
-    } else {
-        YAHOO.log("mainClass is undefined for module " + name, "warn");
-    }
-};
-
-/**
- * YAHOO.env is used to keep track of what is known about the YUI library and
- * the browsing environment
- * @class YAHOO.env
- * @static
- */
-YAHOO.env = YAHOO.env || {
-
-    /**
-     * Keeps the version info for all YUI modules that have reported themselves
-     * @property modules
-     * @type Object[]
-     */
-    modules: [],
-    
-    /**
-     * List of functions that should be executed every time a YUI module
-     * reports itself.
-     * @property listeners
-     * @type Function[]
-     */
-    listeners: []
-};
-
-/**
- * Returns the version data for the specified module:
- *      <dl>
- *      <dt>name:</dt>      <dd>The name of the module</dd>
- *      <dt>version:</dt>   <dd>The version in use</dd>
- *      <dt>build:</dt>     <dd>The build number in use</dd>
- *      <dt>versions:</dt>  <dd>All versions that were registered</dd>
- *      <dt>builds:</dt>    <dd>All builds that were registered.</dd>
- *      <dt>mainClass:</dt> <dd>An object that was was stamped with the
- *                 current version and build. If 
- *                 mainClass.VERSION != version or mainClass.BUILD != build,
- *                 multiple versions of pieces of the library have been
- *                 loaded, potentially causing issues.</dd>
- *       </dl>
- *
- * @method getVersion
- * @static
- * @param {String}  name the name of the module (event, slider, etc)
- * @return {Object} The version info
- */
-YAHOO.env.getVersion = function(name) {
-    return YAHOO.env.modules[name] || null;
-};
-
-/**
- * Do not fork for a browser if it can be avoided.  Use feature detection when
- * you can.  Use the user agent as a last resort.  YAHOO.env.ua stores a version
- * number for the browser engine, 0 otherwise.  This value may or may not map
- * to the version number of the browser using the engine.  The value is 
- * presented as a float so that it can easily be used for boolean evaluation 
- * as well as for looking for a particular range of versions.  Because of this, 
- * some of the granularity of the version info may be lost (e.g., Gecko 1.8.0.9 
- * reports 1.8).
- * @class YAHOO.env.ua
- * @static
- */
-YAHOO.env.ua = function() {
-    var o={
-
-        /**
-         * Internet Explorer version number or 0.  Example: 6
-         * @property ie
-         * @type float
-         */
-        ie:0,
-
-        /**
-         * Opera version number or 0.  Example: 9.2
-         * @property opera
-         * @type float
-         */
-        opera:0,
-
-        /**
-         * Gecko engine revision number.  Will evaluate to 1 if Gecko 
-         * is detected but the revision could not be found. Other browsers
-         * will be 0.  Example: 1.8
-         * <pre>
-         * Firefox 1.0.0.4: 1.7.8   <-- Reports 1.7
-         * Firefox 1.5.0.9: 1.8.0.9 <-- Reports 1.8
-         * Firefox 2.0.0.3: 1.8.1.3 <-- Reports 1.8
-         * Firefox 3 alpha: 1.9a4   <-- Reports 1.9
-         * </pre>
-         * @property gecko
-         * @type float
-         */
-        gecko:0,
-
-        /**
-         * AppleWebKit version.  KHTML browsers that are not WebKit browsers 
-         * will evaluate to 1, other browsers 0.  Example: 418.9.1
-         * <pre>
-         * Safari 1.3.2 (312.6): 312.8.1 <-- Reports 312.8 -- currently the 
-         *                                   latest available for Mac OSX 10.3.
-         * Safari 2.0.2:         416     <-- hasOwnProperty introduced
-         * Safari 2.0.4:         418     <-- preventDefault fixed
-         * Safari 2.0.4 (419.3): 418.9.1 <-- One version of Safari may run
-         *                                   different versions of webkit
-         * Safari 2.0.4 (419.3): 419     <-- Tiger installations that have been
-         *                                   updated, but not updated
-         *                                   to the latest patch.
-         * Webkit 212 nightly:   522+    <-- Safari 3.0 precursor (with native SVG
-         *                                   and many major issues fixed).  
-         * 3.x yahoo.com, flickr:422     <-- Safari 3.x hacks the user agent
-         *                                   string when hitting yahoo.com and 
-         *                                   flickr.com.
-         * Safari 3.0.4 (523.12):523.12  <-- First Tiger release - automatic update
-         *                                   from 2.x via the 10.4.11 OS patch
-         * Webkit nightly 1/2008:525+    <-- Supports DOMContentLoaded event.
-         *                                   yahoo.com user agent hack removed.
-         *                                   
-         * </pre>
-         * http://developer.apple.com/internet/safari/uamatrix.html
-         * @property webkit
-         * @type float
-         */
-        webkit: 0,
-
-        /**
-         * The mobile property will be set to a string containing any relevant
-         * user agent information when a modern mobile browser is detected.
-         * Currently limited to Safari on the iPhone/iPod Touch, Nokia N-series
-         * devices with the WebKit-based browser, and Opera Mini.  
-         * @property mobile 
-         * @type string
-         */
-        mobile: null,
-
-        /**
-         * Adobe AIR version number or 0.  Only populated if webkit is detected.
-         * Example: 1.0
-         * @property air
-         * @type float
-         */
-        air: 0
-
-    };
-
-    var ua=navigator.userAgent, m;
-
-    // Modern KHTML browsers should qualify as Safari X-Grade
-    if ((/KHTML/).test(ua)) {
-        o.webkit=1;
-    }
-    // Modern WebKit browsers are at least X-Grade
-    m=ua.match(/AppleWebKit\/([^\s]*)/);
-    if (m&&m[1]) {
-        o.webkit=parseFloat(m[1]);
-
-        // Mobile browser check
-        if (/ Mobile\//.test(ua)) {
-            o.mobile = "Apple"; // iPhone or iPod Touch
-        } else {
-            m=ua.match(/NokiaN[^\/]*/);
-            if (m) {
-                o.mobile = m[0]; // Nokia N-series, ex: NokiaN95
-            }
-        }
-
-        m=ua.match(/AdobeAIR\/([^\s]*)/);
-        if (m) {
-            o.air = m[0]; // Adobe AIR 1.0 or better
-        }
-
-    }
-
-    if (!o.webkit) { // not webkit
-        // @todo check Opera/8.01 (J2ME/MIDP; Opera Mini/2.0.4509/1316; fi; U; ssr)
-        m=ua.match(/Opera[\s\/]([^\s]*)/);
-        if (m&&m[1]) {
-            o.opera=parseFloat(m[1]);
-            m=ua.match(/Opera Mini[^;]*/);
-            if (m) {
-                o.mobile = m[0]; // ex: Opera Mini/2.0.4509/1316
-            }
-        } else { // not opera or webkit
-            m=ua.match(/MSIE\s([^;]*)/);
-            if (m&&m[1]) {
-                o.ie=parseFloat(m[1]);
-            } else { // not opera, webkit, or ie
-                m=ua.match(/Gecko\/([^\s]*)/);
-                if (m) {
-                    o.gecko=1; // Gecko detected, look for revision
-                    m=ua.match(/rv:([^\s\)]*)/);
-                    if (m&&m[1]) {
-                        o.gecko=parseFloat(m[1]);
-                    }
-                }
-            }
-        }
-    }
-    
-    return o;
-}();
-
-/*
- * Initializes the global by creating the default namespaces and applying
- * any new configuration information that is detected.  This is the setup
- * for env.
- * @method init
- * @static
- * @private
- */
-(function() {
-    YAHOO.namespace("util", "widget", "example");
-    if ("undefined" !== typeof YAHOO_config) {
-        var l=YAHOO_config.listener,ls=YAHOO.env.listeners,unique=true,i;
-        if (l) {
-            // if YAHOO is loaded multiple times we need to check to see if
-            // this is a new config object.  If it is, add the new component
-            // load listener to the stack
-            for (i=0;i<ls.length;i=i+1) {
-                if (ls[i]==l) {
-                    unique=false;
-                    break;
-                }
-            }
-            if (unique) {
-                ls.push(l);
-            }
-        }
-    }
-})();
-/**
- * Provides the language utilites and extensions used by the library
- * @class YAHOO.lang
- */
-YAHOO.lang = YAHOO.lang || {};
-
-(function() {
-
-var L = YAHOO.lang,
-
-    // ADD = ["toString", "valueOf", "hasOwnProperty"],
-    ADD = ["toString", "valueOf"],
-
-    OB = {
-
-    /**
-     * Determines whether or not the provided object is an array.
-     * Testing typeof/instanceof/constructor of arrays across frame 
-     * boundaries isn't possible in Safari unless you have a reference
-     * to the other frame to test against its Array prototype.  To
-     * handle this case, we test well-known array properties instead.
-     * properties.
-     * @method isArray
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isArray: function(o) { 
-        if (o) {
-           return L.isNumber(o.length) && L.isFunction(o.splice);
-        }
-        return false;
-    },
-
-    /**
-     * Determines whether or not the provided object is a boolean
-     * @method isBoolean
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isBoolean: function(o) {
-        return typeof o === 'boolean';
-    },
-    
-    /**
-     * Determines whether or not the provided object is a function
-     * @method isFunction
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isFunction: function(o) {
-        return typeof o === 'function';
-    },
-        
-    /**
-     * Determines whether or not the provided object is null
-     * @method isNull
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isNull: function(o) {
-        return o === null;
-    },
-        
-    /**
-     * Determines whether or not the provided object is a legal number
-     * @method isNumber
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isNumber: function(o) {
-        return typeof o === 'number' && isFinite(o);
-    },
-      
-    /**
-     * Determines whether or not the provided object is of type object
-     * or function
-     * @method isObject
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */  
-    isObject: function(o) {
-return (o && (typeof o === 'object' || L.isFunction(o))) || false;
-    },
-        
-    /**
-     * Determines whether or not the provided object is a string
-     * @method isString
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isString: function(o) {
-        return typeof o === 'string';
-    },
-        
-    /**
-     * Determines whether or not the provided object is undefined
-     * @method isUndefined
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isUndefined: function(o) {
-        return typeof o === 'undefined';
-    },
-    
- 
-    /**
-     * IE will not enumerate native functions in a derived object even if the
-     * function was overridden.  This is a workaround for specific functions 
-     * we care about on the Object prototype. 
-     * @property _IEEnumFix
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @static
-     * @private
-     */
-    _IEEnumFix: (YAHOO.env.ua.ie) ? function(r, s) {
-            for (var i=0;i<ADD.length;i=i+1) {
-                var fname=ADD[i],f=s[fname];
-                if (L.isFunction(f) && f!=Object.prototype[fname]) {
-                    r[fname]=f;
-                }
-            }
-    } : function(){},
-       
-    /**
-     * Utility to set up the prototype, constructor and superclass properties to
-     * support an inheritance strategy that can chain constructors and methods.
-     * Static members will not be inherited.
-     *
-     * @method extend
-     * @static
-     * @param {Function} subc   the object to modify
-     * @param {Function} superc the object to inherit
-     * @param {Object} overrides  additional properties/methods to add to the
-     *                              subclass prototype.  These will override the
-     *                              matching items obtained from the superclass 
-     *                              if present.
-     */
-    extend: function(subc, superc, overrides) {
-        if (!superc||!subc) {
-            throw new Error("extend failed, please check that " +
-                            "all dependencies are included.");
-        }
-        var F = function() {};
-        F.prototype=superc.prototype;
-        subc.prototype=new F();
-        subc.prototype.constructor=subc;
-        subc.superclass=superc.prototype;
-        if (superc.prototype.constructor == Object.prototype.constructor) {
-            superc.prototype.constructor=superc;
-        }
-    
-        if (overrides) {
-            for (var i in overrides) {
-                if (L.hasOwnProperty(overrides, i)) {
-                    subc.prototype[i]=overrides[i];
-                }
-            }
-
-            L._IEEnumFix(subc.prototype, overrides);
-        }
-    },
-   
-    /**
-     * Applies all properties in the supplier to the receiver if the
-     * receiver does not have these properties yet.  Optionally, one or 
-     * more methods/properties can be specified (as additional 
-     * parameters).  This option will overwrite the property if receiver 
-     * has it already.  If true is passed as the third parameter, all 
-     * properties will be applied and _will_ overwrite properties in 
-     * the receiver.
-     *
-     * @method augmentObject
-     * @static
-     * @since 2.3.0
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @param {String*|boolean}  arguments zero or more properties methods 
-     *        to augment the receiver with.  If none specified, everything
-     *        in the supplier will be used unless it would
-     *        overwrite an existing property in the receiver. If true
-     *        is specified as the third parameter, all properties will
-     *        be applied and will overwrite an existing property in
-     *        the receiver
-     */
-    augmentObject: function(r, s) {
-        if (!s||!r) {
-            throw new Error("Absorb failed, verify dependencies.");
-        }
-        var a=arguments, i, p, override=a[2];
-        if (override && override!==true) { // only absorb the specified properties
-            for (i=2; i<a.length; i=i+1) {
-                r[a[i]] = s[a[i]];
-            }
-        } else { // take everything, overwriting only if the third parameter is true
-            for (p in s) { 
-                if (override || !(p in r)) {
-                    r[p] = s[p];
-                }
-            }
-            
-            L._IEEnumFix(r, s);
-        }
-    },
- 
-    /**
-     * Same as YAHOO.lang.augmentObject, except it only applies prototype properties
-     * @see YAHOO.lang.augmentObject
-     * @method augmentProto
-     * @static
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @param {String*|boolean}  arguments zero or more properties methods 
-     *        to augment the receiver with.  If none specified, everything 
-     *        in the supplier will be used unless it would overwrite an existing 
-     *        property in the receiver.  if true is specified as the third 
-     *        parameter, all properties will be applied and will overwrite an 
-     *        existing property in the receiver
-     */
-    augmentProto: function(r, s) {
-        if (!s||!r) {
-            throw new Error("Augment failed, verify dependencies.");
-        }
-        //var a=[].concat(arguments);
-        var a=[r.prototype,s.prototype];
-        for (var i=2;i<arguments.length;i=i+1) {
-            a.push(arguments[i]);
-        }
-        L.augmentObject.apply(this, a);
-    },
-
-      
-    /**
-     * Returns a simple string representation of the object or array.
-     * Other types of objects will be returned unprocessed.  Arrays
-     * are expected to be indexed.  Use object notation for
-     * associative arrays.
-     * @method dump
-     * @since 2.3.0
-     * @param o {Object} The object to dump
-     * @param d {int} How deep to recurse child objects, default 3
-     * @return {String} the dump result
-     */
-    dump: function(o, d) {
-        var i,len,s=[],OBJ="{...}",FUN="f(){...}",
-            COMMA=', ', ARROW=' => ';
-
-        // Cast non-objects to string
-        // Skip dates because the std toString is what we want
-        // Skip HTMLElement-like objects because trying to dump 
-        // an element will cause an unhandled exception in FF 2.x
-        if (!L.isObject(o)) {
-            return o + "";
-        } else if (o instanceof Date || ("nodeType" in o && "tagName" in o)) {
-            return o;
-        } else if  (L.isFunction(o)) {
-            return FUN;
-        }
-
-        // dig into child objects the depth specifed. Default 3
-        d = (L.isNumber(d)) ? d : 3;
-
-        // arrays [1, 2, 3]
-        if (L.isArray(o)) {
-            s.push("[");
-            for (i=0,len=o.length;i<len;i=i+1) {
-                if (L.isObject(o[i])) {
-                    s.push((d > 0) ? L.dump(o[i], d-1) : OBJ);
-                } else {
-                    s.push(o[i]);
-                }
-                s.push(COMMA);
-            }
-            if (s.length > 1) {
-                s.pop();
-            }
-            s.push("]");
-        // objects {k1 => v1, k2 => v2}
-        } else {
-            s.push("{");
-            for (i in o) {
-                if (L.hasOwnProperty(o, i)) {
-                    s.push(i + ARROW);
-                    if (L.isObject(o[i])) {
-                        s.push((d > 0) ? L.dump(o[i], d-1) : OBJ);
-                    } else {
-                        s.push(o[i]);
-                    }
-                    s.push(COMMA);
-                }
-            }
-            if (s.length > 1) {
-                s.pop();
-            }
-            s.push("}");
-        }
-
-        return s.join("");
-    },
-
-    /**
-     * Does variable substitution on a string. It scans through the string 
-     * looking for expressions enclosed in { } braces. If an expression 
-     * is found, it is used a key on the object.  If there is a space in
-     * the key, the first word is used for the key and the rest is provided
-     * to an optional function to be used to programatically determine the
-     * value (the extra information might be used for this decision). If 
-     * the value for the key in the object, or what is returned from the
-     * function has a string value, number value, or object value, it is 
-     * substituted for the bracket expression and it repeats.  If this
-     * value is an object, it uses the Object's toString() if this has
-     * been overridden, otherwise it does a shallow dump of the key/value
-     * pairs.
-     * @method substitute
-     * @since 2.3.0
-     * @param s {String} The string that will be modified.
-     * @param o {Object} An object containing the replacement values
-     * @param f {Function} An optional function that can be used to
-     *                     process each match.  It receives the key,
-     *                     value, and any extra metadata included with
-     *                     the key inside of the braces.
-     * @return {String} the substituted string
-     */
-    substitute: function (s, o, f) {
-        var i, j, k, key, v, meta, saved=[], token, 
-            DUMP='dump', SPACE=' ', LBRACE='{', RBRACE='}';
-
-
-        for (;;) {
-            i = s.lastIndexOf(LBRACE);
-            if (i < 0) {
-                break;
-            }
-            j = s.indexOf(RBRACE, i);
-            if (i + 1 >= j) {
-                break;
-            }
-
-            //Extract key and meta info 
-            token = s.substring(i + 1, j);
-            key = token;
-            meta = null;
-            k = key.indexOf(SPACE);
-            if (k > -1) {
-                meta = key.substring(k + 1);
-                key = key.substring(0, k);
-            }
-
-            // lookup the value
-            v = o[key];
-
-            // if a substitution function was provided, execute it
-            if (f) {
-                v = f(key, v, meta);
-            }
-
-            if (L.isObject(v)) {
-                if (L.isArray(v)) {
-                    v = L.dump(v, parseInt(meta, 10));
-                } else {
-                    meta = meta || "";
-
-                    // look for the keyword 'dump', if found force obj dump
-                    var dump = meta.indexOf(DUMP);
-                    if (dump > -1) {
-                        meta = meta.substring(4);
-                    }
-
-                    // use the toString if it is not the Object toString 
-                    // and the 'dump' meta info was not found
-                    if (v.toString===Object.prototype.toString||dump>-1) {
-                        v = L.dump(v, parseInt(meta, 10));
-                    } else {
-                        v = v.toString();
-                    }
-                }
-            } else if (!L.isString(v) && !L.isNumber(v)) {
-                // This {block} has no replace string. Save it for later.
-                v = "~-" + saved.length + "-~";
-                saved[saved.length] = token;
-
-                // break;
-            }
-
-            s = s.substring(0, i) + v + s.substring(j + 1);
-
-
-        }
-
-        // restore saved {block}s
-        for (i=saved.length-1; i>=0; i=i-1) {
-            s = s.replace(new RegExp("~-" + i + "-~"), "{"  + saved[i] + "}", "g");
-        }
-
-        return s;
-    },
-
-
-    /**
-     * Returns a string without any leading or trailing whitespace.  If 
-     * the input is not a string, the input will be returned untouched.
-     * @method trim
-     * @since 2.3.0
-     * @param s {string} the string to trim
-     * @return {string} the trimmed string
-     */
-    trim: function(s){
-        try {
-            return s.replace(/^\s+|\s+$/g, "");
-        } catch(e) {
-            return s;
-        }
-    },
-
-    /**
-     * Returns a new object containing all of the properties of
-     * all the supplied objects.  The properties from later objects
-     * will overwrite those in earlier objects.
-     * @method merge
-     * @since 2.3.0
-     * @param arguments {Object*} the objects to merge
-     * @return the new merged object
-     */
-    merge: function() {
-        var o={}, a=arguments;
-        for (var i=0, l=a.length; i<l; i=i+1) {
-            L.augmentObject(o, a[i], true);
-        }
-        return o;
-    },
-
-    /**
-     * Executes the supplied function in the context of the supplied 
-     * object 'when' milliseconds later.  Executes the function a 
-     * single time unless periodic is set to true.
-     * @method later
-     * @since 2.4.0
-     * @param when {int} the number of milliseconds to wait until the fn 
-     * is executed
-     * @param o the context object
-     * @param fn {Function|String} the function to execute or the name of 
-     * the method in the 'o' object to execute
-     * @param data [Array] data that is provided to the function.  This accepts
-     * either a single item or an array.  If an array is provided, the
-     * function is executed with one parameter for each array item.  If
-     * you need to pass a single array parameter, it needs to be wrapped in
-     * an array [myarray]
-     * @param periodic {boolean} if true, executes continuously at supplied 
-     * interval until canceled
-     * @return a timer object. Call the cancel() method on this object to 
-     * stop the timer.
-     */
-    later: function(when, o, fn, data, periodic) {
-        when = when || 0; 
-        o = o || {};
-        var m=fn, d=data, f, r;
-
-        if (L.isString(fn)) {
-            m = o[fn];
-        }
-
-        if (!m) {
-            throw new TypeError("method undefined");
-        }
-
-        if (!L.isArray(d)) {
-            d = [data];
-        }
-
-        f = function() {
-            m.apply(o, d);
-        };
-
-        r = (periodic) ? setInterval(f, when) : setTimeout(f, when);
-
-        return {
-            interval: periodic,
-            cancel: function() {
-                if (this.interval) {
-                    clearInterval(r);
-                } else {
-                    clearTimeout(r);
-                }
-            }
-        };
-    },
-    
-    /**
-     * A convenience method for detecting a legitimate non-null value.
-     * Returns false for null/undefined/NaN, true for other values, 
-     * including 0/false/''
-     * @method isValue
-     * @since 2.3.0
-     * @param o {any} the item to test
-     * @return {boolean} true if it is not null/undefined/NaN || false
-     */
-    isValue: function(o) {
-        // return (o || o === false || o === 0 || o === ''); // Infinity fails
-return (L.isObject(o) || L.isString(o) || L.isNumber(o) || L.isBoolean(o));
-    }
-
-};
-
-/**
- * Determines whether or not the property was added
- * to the object instance.  Returns false if the property is not present
- * in the object, or was inherited from the prototype.
- * This abstraction is provided to enable hasOwnProperty for Safari 1.3.x.
- * There is a discrepancy between YAHOO.lang.hasOwnProperty and
- * Object.prototype.hasOwnProperty when the property is a primitive added to
- * both the instance AND prototype with the same value:
- * <pre>
- * var A = function() {};
- * A.prototype.foo = 'foo';
- * var a = new A();
- * a.foo = 'foo';
- * alert(a.hasOwnProperty('foo')); // true
- * alert(YAHOO.lang.hasOwnProperty(a, 'foo')); // false when using fallback
- * </pre>
- * @method hasOwnProperty
- * @param {any} o The object being testing
- * @param prop {string} the name of the property to test
- * @return {boolean} the result
- */
-L.hasOwnProperty = (Object.prototype.hasOwnProperty) ?
-    function(o, prop) {
-        return o && o.hasOwnProperty(prop);
-    } : function(o, prop) {
-        return !L.isUndefined(o[prop]) && 
-                o.constructor.prototype[prop] !== o[prop];
-    };
-
-// new lang wins
-OB.augmentObject(L, OB, true);
-
-/*
- * An alias for <a href="YAHOO.lang.html">YAHOO.lang</a>
- * @class YAHOO.util.Lang
- */
-YAHOO.util.Lang = L;
- 
-/**
- * Same as YAHOO.lang.augmentObject, except it only applies prototype 
- * properties.  This is an alias for augmentProto.
- * @see YAHOO.lang.augmentObject
- * @method augment
- * @static
- * @param {Function} r  the object to receive the augmentation
- * @param {Function} s  the object that supplies the properties to augment
- * @param {String*|boolean}  arguments zero or more properties methods to 
- *        augment the receiver with.  If none specified, everything
- *        in the supplier will be used unless it would
- *        overwrite an existing property in the receiver.  if true
- *        is specified as the third parameter, all properties will
- *        be applied and will overwrite an existing property in
- *        the receiver
- */
-L.augment = L.augmentProto;
-
-/**
- * An alias for <a href="YAHOO.lang.html#augment">YAHOO.lang.augment</a>
- * @for YAHOO
- * @method augment
- * @static
- * @param {Function} r  the object to receive the augmentation
- * @param {Function} s  the object that supplies the properties to augment
- * @param {String*}  arguments zero or more properties methods to 
- *        augment the receiver with.  If none specified, everything
- *        in the supplier will be used unless it would
- *        overwrite an existing property in the receiver
- */
-YAHOO.augment = L.augmentProto;
-       
-/**
- * An alias for <a href="YAHOO.lang.html#extend">YAHOO.lang.extend</a>
- * @method extend
- * @static
- * @param {Function} subc   the object to modify
- * @param {Function} superc the object to inherit
- * @param {Object} overrides  additional properties/methods to add to the
- *        subclass prototype.  These will override the
- *        matching items obtained from the superclass if present.
- */
-YAHOO.extend = L.extend;
-
-})();
-YAHOO.register("yahoo", YAHOO, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/yahoo/yahoo-min.js b/eclipse.org-common/yui/2.6.0/build/yahoo/yahoo-min.js
deleted file mode 100644
index 6312cbe..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yahoo/yahoo-min.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-if(typeof YAHOO=="undefined"||!YAHOO){var YAHOO={};}YAHOO.namespace=function(){var A=arguments,E=null,C,B,D;for(C=0;C<A.length;C=C+1){D=A[C].split(".");E=YAHOO;for(B=(D[0]=="YAHOO")?1:0;B<D.length;B=B+1){E[D[B]]=E[D[B]]||{};E=E[D[B]];}}return E;};YAHOO.log=function(D,A,C){var B=YAHOO.widget.Logger;if(B&&B.log){return B.log(D,A,C);}else{return false;}};YAHOO.register=function(A,E,D){var I=YAHOO.env.modules;if(!I[A]){I[A]={versions:[],builds:[]};}var B=I[A],H=D.version,G=D.build,F=YAHOO.env.listeners;B.name=A;B.version=H;B.build=G;B.versions.push(H);B.builds.push(G);B.mainClass=E;for(var C=0;C<F.length;C=C+1){F[C](B);}if(E){E.VERSION=H;E.BUILD=G;}else{YAHOO.log("mainClass is undefined for module "+A,"warn");}};YAHOO.env=YAHOO.env||{modules:[],listeners:[]};YAHOO.env.getVersion=function(A){return YAHOO.env.modules[A]||null;};YAHOO.env.ua=function(){var C={ie:0,opera:0,gecko:0,webkit:0,mobile:null,air:0};var B=navigator.userAgent,A;if((/KHTML/).test(B)){C.webkit=1;}A=B.match(/AppleWebKit\/([^\s]*)/);if(A&&A[1]){C.webkit=parseFloat(A[1]);if(/ Mobile\//.test(B)){C.mobile="Apple";}else{A=B.match(/NokiaN[^\/]*/);if(A){C.mobile=A[0];}}A=B.match(/AdobeAIR\/([^\s]*)/);if(A){C.air=A[0];}}if(!C.webkit){A=B.match(/Opera[\s\/]([^\s]*)/);if(A&&A[1]){C.opera=parseFloat(A[1]);A=B.match(/Opera Mini[^;]*/);if(A){C.mobile=A[0];}}else{A=B.match(/MSIE\s([^;]*)/);if(A&&A[1]){C.ie=parseFloat(A[1]);}else{A=B.match(/Gecko\/([^\s]*)/);if(A){C.gecko=1;A=B.match(/rv:([^\s\)]*)/);if(A&&A[1]){C.gecko=parseFloat(A[1]);}}}}}return C;}();(function(){YAHOO.namespace("util","widget","example");if("undefined"!==typeof YAHOO_config){var B=YAHOO_config.listener,A=YAHOO.env.listeners,D=true,C;if(B){for(C=0;C<A.length;C=C+1){if(A[C]==B){D=false;break;}}if(D){A.push(B);}}}})();YAHOO.lang=YAHOO.lang||{};(function(){var A=YAHOO.lang,C=["toString","valueOf"],B={isArray:function(D){if(D){return A.isNumber(D.length)&&A.isFunction(D.splice);}return false;},isBoolean:function(D){return typeof D==="boolean";},isFunction:function(D){return typeof D==="function";},isNull:function(D){return D===null;},isNumber:function(D){return typeof D==="number"&&isFinite(D);},isObject:function(D){return(D&&(typeof D==="object"||A.isFunction(D)))||false;},isString:function(D){return typeof D==="string";},isUndefined:function(D){return typeof D==="undefined";},_IEEnumFix:(YAHOO.env.ua.ie)?function(F,E){for(var D=0;D<C.length;D=D+1){var H=C[D],G=E[H];if(A.isFunction(G)&&G!=Object.prototype[H]){F[H]=G;}}}:function(){},extend:function(H,I,G){if(!I||!H){throw new Error("extend failed, please check that "+"all dependencies are included.");}var E=function(){};E.prototype=I.prototype;H.prototype=new E();H.prototype.constructor=H;H.superclass=I.prototype;if(I.prototype.constructor==Object.prototype.constructor){I.prototype.constructor=I;}if(G){for(var D in G){if(A.hasOwnProperty(G,D)){H.prototype[D]=G[D];}}A._IEEnumFix(H.prototype,G);}},augmentObject:function(H,G){if(!G||!H){throw new Error("Absorb failed, verify dependencies.");}var D=arguments,F,I,E=D[2];if(E&&E!==true){for(F=2;F<D.length;F=F+1){H[D[F]]=G[D[F]];}}else{for(I in G){if(E||!(I in H)){H[I]=G[I];}}A._IEEnumFix(H,G);}},augmentProto:function(G,F){if(!F||!G){throw new Error("Augment failed, verify dependencies.");}var D=[G.prototype,F.prototype];for(var E=2;E<arguments.length;E=E+1){D.push(arguments[E]);}A.augmentObject.apply(this,D);},dump:function(D,I){var F,H,K=[],L="{...}",E="f(){...}",J=", ",G=" => ";if(!A.isObject(D)){return D+"";}else{if(D instanceof Date||("nodeType" in D&&"tagName" in D)){return D;}else{if(A.isFunction(D)){return E;}}}I=(A.isNumber(I))?I:3;if(A.isArray(D)){K.push("[");for(F=0,H=D.length;F<H;F=F+1){if(A.isObject(D[F])){K.push((I>0)?A.dump(D[F],I-1):L);}else{K.push(D[F]);}K.push(J);}if(K.length>1){K.pop();}K.push("]");}else{K.push("{");for(F in D){if(A.hasOwnProperty(D,F)){K.push(F+G);if(A.isObject(D[F])){K.push((I>0)?A.dump(D[F],I-1):L);}else{K.push(D[F]);}K.push(J);}}if(K.length>1){K.pop();}K.push("}");}return K.join("");},substitute:function(S,E,L){var I,H,G,O,P,R,N=[],F,J="dump",M=" ",D="{",Q="}";for(;;){I=S.lastIndexOf(D);if(I<0){break;}H=S.indexOf(Q,I);if(I+1>=H){break;}F=S.substring(I+1,H);O=F;R=null;G=O.indexOf(M);if(G>-1){R=O.substring(G+1);O=O.substring(0,G);}P=E[O];if(L){P=L(O,P,R);}if(A.isObject(P)){if(A.isArray(P)){P=A.dump(P,parseInt(R,10));}else{R=R||"";var K=R.indexOf(J);if(K>-1){R=R.substring(4);}if(P.toString===Object.prototype.toString||K>-1){P=A.dump(P,parseInt(R,10));}else{P=P.toString();}}}else{if(!A.isString(P)&&!A.isNumber(P)){P="~-"+N.length+"-~";N[N.length]=F;}}S=S.substring(0,I)+P+S.substring(H+1);}for(I=N.length-1;I>=0;I=I-1){S=S.replace(new RegExp("~-"+I+"-~"),"{"+N[I]+"}","g");}return S;},trim:function(D){try{return D.replace(/^\s+|\s+$/g,"");}catch(E){return D;}},merge:function(){var G={},E=arguments;for(var F=0,D=E.length;F<D;F=F+1){A.augmentObject(G,E[F],true);}return G;},later:function(K,E,L,G,H){K=K||0;E=E||{};var F=L,J=G,I,D;if(A.isString(L)){F=E[L];}if(!F){throw new TypeError("method undefined");}if(!A.isArray(J)){J=[G];}I=function(){F.apply(E,J);};D=(H)?setInterval(I,K):setTimeout(I,K);return{interval:H,cancel:function(){if(this.interval){clearInterval(D);}else{clearTimeout(D);}}};},isValue:function(D){return(A.isObject(D)||A.isString(D)||A.isNumber(D)||A.isBoolean(D));}};A.hasOwnProperty=(Object.prototype.hasOwnProperty)?function(D,E){return D&&D.hasOwnProperty(E);}:function(D,E){return !A.isUndefined(D[E])&&D.constructor.prototype[E]!==D[E];};B.augmentObject(A,B,true);YAHOO.util.Lang=A;A.augment=A.augmentProto;YAHOO.augment=A.augmentProto;YAHOO.extend=A.extend;})();YAHOO.register("yahoo",YAHOO,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/yahoo/yahoo.js b/eclipse.org-common/yui/2.6.0/build/yahoo/yahoo.js
deleted file mode 100644
index 92ba865..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yahoo/yahoo.js
+++ /dev/null
@@ -1,986 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The YAHOO object is the single global object used by YUI Library.  It
- * contains utility function for setting up namespaces, inheritance, and
- * logging.  YAHOO.util, YAHOO.widget, and YAHOO.example are namespaces
- * created automatically for and used by the library.
- * @module yahoo
- * @title  YAHOO Global
- */
-
-/**
- * YAHOO_config is not included as part of the library.  Instead it is an 
- * object that can be defined by the implementer immediately before 
- * including the YUI library.  The properties included in this object
- * will be used to configure global properties needed as soon as the 
- * library begins to load.
- * @class YAHOO_config
- * @static
- */
-
-/**
- * A reference to a function that will be executed every time a YAHOO module
- * is loaded.  As parameter, this function will receive the version
- * information for the module. See <a href="YAHOO.env.html#getVersion">
- * YAHOO.env.getVersion</a> for the description of the version data structure.
- * @property listener
- * @type Function
- * @static
- * @default undefined
- */
-
-/**
- * Set to true if the library will be dynamically loaded after window.onload.
- * Defaults to false 
- * @property injecting
- * @type boolean
- * @static
- * @default undefined
- */
-
-/**
- * Instructs the yuiloader component to dynamically load yui components and
- * their dependencies.  See the yuiloader documentation for more information
- * about dynamic loading
- * @property load
- * @static
- * @default undefined
- * @see yuiloader
- */
-
-/**
- * Forces the use of the supplied locale where applicable in the library
- * @property locale
- * @type string
- * @static
- * @default undefined
- */
-
-if (typeof YAHOO == "undefined" || !YAHOO) {
-    /**
-     * The YAHOO global namespace object.  If YAHOO is already defined, the
-     * existing YAHOO object will not be overwritten so that defined
-     * namespaces are preserved.
-     * @class YAHOO
-     * @static
-     */
-    var YAHOO = {};
-}
-
-/**
- * Returns the namespace specified and creates it if it doesn't exist
- * <pre>
- * YAHOO.namespace("property.package");
- * YAHOO.namespace("YAHOO.property.package");
- * </pre>
- * Either of the above would create YAHOO.property, then
- * YAHOO.property.package
- *
- * Be careful when naming packages. Reserved words may work in some browsers
- * and not others. For instance, the following will fail in Safari:
- * <pre>
- * YAHOO.namespace("really.long.nested.namespace");
- * </pre>
- * This fails because "long" is a future reserved word in ECMAScript
- *
- * @method namespace
- * @static
- * @param  {String*} arguments 1-n namespaces to create 
- * @return {Object}  A reference to the last namespace object created
- */
-YAHOO.namespace = function() {
-    var a=arguments, o=null, i, j, d;
-    for (i=0; i<a.length; i=i+1) {
-        d=a[i].split(".");
-        o=YAHOO;
-
-        // YAHOO is implied, so it is ignored if it is included
-        for (j=(d[0] == "YAHOO") ? 1 : 0; j<d.length; j=j+1) {
-            o[d[j]]=o[d[j]] || {};
-            o=o[d[j]];
-        }
-    }
-
-    return o;
-};
-
-/**
- * Uses YAHOO.widget.Logger to output a log message, if the widget is
- * available.
- *
- * @method log
- * @static
- * @param  {String}  msg  The message to log.
- * @param  {String}  cat  The log category for the message.  Default
- *                        categories are "info", "warn", "error", time".
- *                        Custom categories can be used as well. (opt)
- * @param  {String}  src  The source of the the message (opt)
- * @return {Boolean}      True if the log operation was successful.
- */
-YAHOO.log = function(msg, cat, src) {
-    var l=YAHOO.widget.Logger;
-    if(l && l.log) {
-        return l.log(msg, cat, src);
-    } else {
-        return false;
-    }
-};
-
-/**
- * Registers a module with the YAHOO object
- * @method register
- * @static
- * @param {String}   name    the name of the module (event, slider, etc)
- * @param {Function} mainClass a reference to class in the module.  This
- *                             class will be tagged with the version info
- *                             so that it will be possible to identify the
- *                             version that is in use when multiple versions
- *                             have loaded
- * @param {Object}   data      metadata object for the module.  Currently it
- *                             is expected to contain a "version" property
- *                             and a "build" property at minimum.
- */
-YAHOO.register = function(name, mainClass, data) {
-    var mods = YAHOO.env.modules;
-    if (!mods[name]) {
-        mods[name] = { versions:[], builds:[] };
-    }
-    var m=mods[name],v=data.version,b=data.build,ls=YAHOO.env.listeners;
-    m.name = name;
-    m.version = v;
-    m.build = b;
-    m.versions.push(v);
-    m.builds.push(b);
-    m.mainClass = mainClass;
-    // fire the module load listeners
-    for (var i=0;i<ls.length;i=i+1) {
-        ls[i](m);
-    }
-    // label the main class
-    if (mainClass) {
-        mainClass.VERSION = v;
-        mainClass.BUILD = b;
-    } else {
-        YAHOO.log("mainClass is undefined for module " + name, "warn");
-    }
-};
-
-/**
- * YAHOO.env is used to keep track of what is known about the YUI library and
- * the browsing environment
- * @class YAHOO.env
- * @static
- */
-YAHOO.env = YAHOO.env || {
-
-    /**
-     * Keeps the version info for all YUI modules that have reported themselves
-     * @property modules
-     * @type Object[]
-     */
-    modules: [],
-    
-    /**
-     * List of functions that should be executed every time a YUI module
-     * reports itself.
-     * @property listeners
-     * @type Function[]
-     */
-    listeners: []
-};
-
-/**
- * Returns the version data for the specified module:
- *      <dl>
- *      <dt>name:</dt>      <dd>The name of the module</dd>
- *      <dt>version:</dt>   <dd>The version in use</dd>
- *      <dt>build:</dt>     <dd>The build number in use</dd>
- *      <dt>versions:</dt>  <dd>All versions that were registered</dd>
- *      <dt>builds:</dt>    <dd>All builds that were registered.</dd>
- *      <dt>mainClass:</dt> <dd>An object that was was stamped with the
- *                 current version and build. If 
- *                 mainClass.VERSION != version or mainClass.BUILD != build,
- *                 multiple versions of pieces of the library have been
- *                 loaded, potentially causing issues.</dd>
- *       </dl>
- *
- * @method getVersion
- * @static
- * @param {String}  name the name of the module (event, slider, etc)
- * @return {Object} The version info
- */
-YAHOO.env.getVersion = function(name) {
-    return YAHOO.env.modules[name] || null;
-};
-
-/**
- * Do not fork for a browser if it can be avoided.  Use feature detection when
- * you can.  Use the user agent as a last resort.  YAHOO.env.ua stores a version
- * number for the browser engine, 0 otherwise.  This value may or may not map
- * to the version number of the browser using the engine.  The value is 
- * presented as a float so that it can easily be used for boolean evaluation 
- * as well as for looking for a particular range of versions.  Because of this, 
- * some of the granularity of the version info may be lost (e.g., Gecko 1.8.0.9 
- * reports 1.8).
- * @class YAHOO.env.ua
- * @static
- */
-YAHOO.env.ua = function() {
-    var o={
-
-        /**
-         * Internet Explorer version number or 0.  Example: 6
-         * @property ie
-         * @type float
-         */
-        ie:0,
-
-        /**
-         * Opera version number or 0.  Example: 9.2
-         * @property opera
-         * @type float
-         */
-        opera:0,
-
-        /**
-         * Gecko engine revision number.  Will evaluate to 1 if Gecko 
-         * is detected but the revision could not be found. Other browsers
-         * will be 0.  Example: 1.8
-         * <pre>
-         * Firefox 1.0.0.4: 1.7.8   <-- Reports 1.7
-         * Firefox 1.5.0.9: 1.8.0.9 <-- Reports 1.8
-         * Firefox 2.0.0.3: 1.8.1.3 <-- Reports 1.8
-         * Firefox 3 alpha: 1.9a4   <-- Reports 1.9
-         * </pre>
-         * @property gecko
-         * @type float
-         */
-        gecko:0,
-
-        /**
-         * AppleWebKit version.  KHTML browsers that are not WebKit browsers 
-         * will evaluate to 1, other browsers 0.  Example: 418.9.1
-         * <pre>
-         * Safari 1.3.2 (312.6): 312.8.1 <-- Reports 312.8 -- currently the 
-         *                                   latest available for Mac OSX 10.3.
-         * Safari 2.0.2:         416     <-- hasOwnProperty introduced
-         * Safari 2.0.4:         418     <-- preventDefault fixed
-         * Safari 2.0.4 (419.3): 418.9.1 <-- One version of Safari may run
-         *                                   different versions of webkit
-         * Safari 2.0.4 (419.3): 419     <-- Tiger installations that have been
-         *                                   updated, but not updated
-         *                                   to the latest patch.
-         * Webkit 212 nightly:   522+    <-- Safari 3.0 precursor (with native SVG
-         *                                   and many major issues fixed).  
-         * 3.x yahoo.com, flickr:422     <-- Safari 3.x hacks the user agent
-         *                                   string when hitting yahoo.com and 
-         *                                   flickr.com.
-         * Safari 3.0.4 (523.12):523.12  <-- First Tiger release - automatic update
-         *                                   from 2.x via the 10.4.11 OS patch
-         * Webkit nightly 1/2008:525+    <-- Supports DOMContentLoaded event.
-         *                                   yahoo.com user agent hack removed.
-         *                                   
-         * </pre>
-         * http://developer.apple.com/internet/safari/uamatrix.html
-         * @property webkit
-         * @type float
-         */
-        webkit: 0,
-
-        /**
-         * The mobile property will be set to a string containing any relevant
-         * user agent information when a modern mobile browser is detected.
-         * Currently limited to Safari on the iPhone/iPod Touch, Nokia N-series
-         * devices with the WebKit-based browser, and Opera Mini.  
-         * @property mobile 
-         * @type string
-         */
-        mobile: null,
-
-        /**
-         * Adobe AIR version number or 0.  Only populated if webkit is detected.
-         * Example: 1.0
-         * @property air
-         * @type float
-         */
-        air: 0
-
-    };
-
-    var ua=navigator.userAgent, m;
-
-    // Modern KHTML browsers should qualify as Safari X-Grade
-    if ((/KHTML/).test(ua)) {
-        o.webkit=1;
-    }
-    // Modern WebKit browsers are at least X-Grade
-    m=ua.match(/AppleWebKit\/([^\s]*)/);
-    if (m&&m[1]) {
-        o.webkit=parseFloat(m[1]);
-
-        // Mobile browser check
-        if (/ Mobile\//.test(ua)) {
-            o.mobile = "Apple"; // iPhone or iPod Touch
-        } else {
-            m=ua.match(/NokiaN[^\/]*/);
-            if (m) {
-                o.mobile = m[0]; // Nokia N-series, ex: NokiaN95
-            }
-        }
-
-        m=ua.match(/AdobeAIR\/([^\s]*)/);
-        if (m) {
-            o.air = m[0]; // Adobe AIR 1.0 or better
-        }
-
-    }
-
-    if (!o.webkit) { // not webkit
-        // @todo check Opera/8.01 (J2ME/MIDP; Opera Mini/2.0.4509/1316; fi; U; ssr)
-        m=ua.match(/Opera[\s\/]([^\s]*)/);
-        if (m&&m[1]) {
-            o.opera=parseFloat(m[1]);
-            m=ua.match(/Opera Mini[^;]*/);
-            if (m) {
-                o.mobile = m[0]; // ex: Opera Mini/2.0.4509/1316
-            }
-        } else { // not opera or webkit
-            m=ua.match(/MSIE\s([^;]*)/);
-            if (m&&m[1]) {
-                o.ie=parseFloat(m[1]);
-            } else { // not opera, webkit, or ie
-                m=ua.match(/Gecko\/([^\s]*)/);
-                if (m) {
-                    o.gecko=1; // Gecko detected, look for revision
-                    m=ua.match(/rv:([^\s\)]*)/);
-                    if (m&&m[1]) {
-                        o.gecko=parseFloat(m[1]);
-                    }
-                }
-            }
-        }
-    }
-    
-    return o;
-}();
-
-/*
- * Initializes the global by creating the default namespaces and applying
- * any new configuration information that is detected.  This is the setup
- * for env.
- * @method init
- * @static
- * @private
- */
-(function() {
-    YAHOO.namespace("util", "widget", "example");
-    if ("undefined" !== typeof YAHOO_config) {
-        var l=YAHOO_config.listener,ls=YAHOO.env.listeners,unique=true,i;
-        if (l) {
-            // if YAHOO is loaded multiple times we need to check to see if
-            // this is a new config object.  If it is, add the new component
-            // load listener to the stack
-            for (i=0;i<ls.length;i=i+1) {
-                if (ls[i]==l) {
-                    unique=false;
-                    break;
-                }
-            }
-            if (unique) {
-                ls.push(l);
-            }
-        }
-    }
-})();
-/**
- * Provides the language utilites and extensions used by the library
- * @class YAHOO.lang
- */
-YAHOO.lang = YAHOO.lang || {};
-
-(function() {
-
-var L = YAHOO.lang,
-
-    // ADD = ["toString", "valueOf", "hasOwnProperty"],
-    ADD = ["toString", "valueOf"],
-
-    OB = {
-
-    /**
-     * Determines whether or not the provided object is an array.
-     * Testing typeof/instanceof/constructor of arrays across frame 
-     * boundaries isn't possible in Safari unless you have a reference
-     * to the other frame to test against its Array prototype.  To
-     * handle this case, we test well-known array properties instead.
-     * properties.
-     * @method isArray
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isArray: function(o) { 
-        if (o) {
-           return L.isNumber(o.length) && L.isFunction(o.splice);
-        }
-        return false;
-    },
-
-    /**
-     * Determines whether or not the provided object is a boolean
-     * @method isBoolean
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isBoolean: function(o) {
-        return typeof o === 'boolean';
-    },
-    
-    /**
-     * Determines whether or not the provided object is a function
-     * @method isFunction
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isFunction: function(o) {
-        return typeof o === 'function';
-    },
-        
-    /**
-     * Determines whether or not the provided object is null
-     * @method isNull
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isNull: function(o) {
-        return o === null;
-    },
-        
-    /**
-     * Determines whether or not the provided object is a legal number
-     * @method isNumber
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isNumber: function(o) {
-        return typeof o === 'number' && isFinite(o);
-    },
-      
-    /**
-     * Determines whether or not the provided object is of type object
-     * or function
-     * @method isObject
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */  
-    isObject: function(o) {
-return (o && (typeof o === 'object' || L.isFunction(o))) || false;
-    },
-        
-    /**
-     * Determines whether or not the provided object is a string
-     * @method isString
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isString: function(o) {
-        return typeof o === 'string';
-    },
-        
-    /**
-     * Determines whether or not the provided object is undefined
-     * @method isUndefined
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isUndefined: function(o) {
-        return typeof o === 'undefined';
-    },
-    
- 
-    /**
-     * IE will not enumerate native functions in a derived object even if the
-     * function was overridden.  This is a workaround for specific functions 
-     * we care about on the Object prototype. 
-     * @property _IEEnumFix
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @static
-     * @private
-     */
-    _IEEnumFix: (YAHOO.env.ua.ie) ? function(r, s) {
-            for (var i=0;i<ADD.length;i=i+1) {
-                var fname=ADD[i],f=s[fname];
-                if (L.isFunction(f) && f!=Object.prototype[fname]) {
-                    r[fname]=f;
-                }
-            }
-    } : function(){},
-       
-    /**
-     * Utility to set up the prototype, constructor and superclass properties to
-     * support an inheritance strategy that can chain constructors and methods.
-     * Static members will not be inherited.
-     *
-     * @method extend
-     * @static
-     * @param {Function} subc   the object to modify
-     * @param {Function} superc the object to inherit
-     * @param {Object} overrides  additional properties/methods to add to the
-     *                              subclass prototype.  These will override the
-     *                              matching items obtained from the superclass 
-     *                              if present.
-     */
-    extend: function(subc, superc, overrides) {
-        if (!superc||!subc) {
-            throw new Error("extend failed, please check that " +
-                            "all dependencies are included.");
-        }
-        var F = function() {};
-        F.prototype=superc.prototype;
-        subc.prototype=new F();
-        subc.prototype.constructor=subc;
-        subc.superclass=superc.prototype;
-        if (superc.prototype.constructor == Object.prototype.constructor) {
-            superc.prototype.constructor=superc;
-        }
-    
-        if (overrides) {
-            for (var i in overrides) {
-                if (L.hasOwnProperty(overrides, i)) {
-                    subc.prototype[i]=overrides[i];
-                }
-            }
-
-            L._IEEnumFix(subc.prototype, overrides);
-        }
-    },
-   
-    /**
-     * Applies all properties in the supplier to the receiver if the
-     * receiver does not have these properties yet.  Optionally, one or 
-     * more methods/properties can be specified (as additional 
-     * parameters).  This option will overwrite the property if receiver 
-     * has it already.  If true is passed as the third parameter, all 
-     * properties will be applied and _will_ overwrite properties in 
-     * the receiver.
-     *
-     * @method augmentObject
-     * @static
-     * @since 2.3.0
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @param {String*|boolean}  arguments zero or more properties methods 
-     *        to augment the receiver with.  If none specified, everything
-     *        in the supplier will be used unless it would
-     *        overwrite an existing property in the receiver. If true
-     *        is specified as the third parameter, all properties will
-     *        be applied and will overwrite an existing property in
-     *        the receiver
-     */
-    augmentObject: function(r, s) {
-        if (!s||!r) {
-            throw new Error("Absorb failed, verify dependencies.");
-        }
-        var a=arguments, i, p, override=a[2];
-        if (override && override!==true) { // only absorb the specified properties
-            for (i=2; i<a.length; i=i+1) {
-                r[a[i]] = s[a[i]];
-            }
-        } else { // take everything, overwriting only if the third parameter is true
-            for (p in s) { 
-                if (override || !(p in r)) {
-                    r[p] = s[p];
-                }
-            }
-            
-            L._IEEnumFix(r, s);
-        }
-    },
- 
-    /**
-     * Same as YAHOO.lang.augmentObject, except it only applies prototype properties
-     * @see YAHOO.lang.augmentObject
-     * @method augmentProto
-     * @static
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @param {String*|boolean}  arguments zero or more properties methods 
-     *        to augment the receiver with.  If none specified, everything 
-     *        in the supplier will be used unless it would overwrite an existing 
-     *        property in the receiver.  if true is specified as the third 
-     *        parameter, all properties will be applied and will overwrite an 
-     *        existing property in the receiver
-     */
-    augmentProto: function(r, s) {
-        if (!s||!r) {
-            throw new Error("Augment failed, verify dependencies.");
-        }
-        //var a=[].concat(arguments);
-        var a=[r.prototype,s.prototype];
-        for (var i=2;i<arguments.length;i=i+1) {
-            a.push(arguments[i]);
-        }
-        L.augmentObject.apply(this, a);
-    },
-
-      
-    /**
-     * Returns a simple string representation of the object or array.
-     * Other types of objects will be returned unprocessed.  Arrays
-     * are expected to be indexed.  Use object notation for
-     * associative arrays.
-     * @method dump
-     * @since 2.3.0
-     * @param o {Object} The object to dump
-     * @param d {int} How deep to recurse child objects, default 3
-     * @return {String} the dump result
-     */
-    dump: function(o, d) {
-        var i,len,s=[],OBJ="{...}",FUN="f(){...}",
-            COMMA=', ', ARROW=' => ';
-
-        // Cast non-objects to string
-        // Skip dates because the std toString is what we want
-        // Skip HTMLElement-like objects because trying to dump 
-        // an element will cause an unhandled exception in FF 2.x
-        if (!L.isObject(o)) {
-            return o + "";
-        } else if (o instanceof Date || ("nodeType" in o && "tagName" in o)) {
-            return o;
-        } else if  (L.isFunction(o)) {
-            return FUN;
-        }
-
-        // dig into child objects the depth specifed. Default 3
-        d = (L.isNumber(d)) ? d : 3;
-
-        // arrays [1, 2, 3]
-        if (L.isArray(o)) {
-            s.push("[");
-            for (i=0,len=o.length;i<len;i=i+1) {
-                if (L.isObject(o[i])) {
-                    s.push((d > 0) ? L.dump(o[i], d-1) : OBJ);
-                } else {
-                    s.push(o[i]);
-                }
-                s.push(COMMA);
-            }
-            if (s.length > 1) {
-                s.pop();
-            }
-            s.push("]");
-        // objects {k1 => v1, k2 => v2}
-        } else {
-            s.push("{");
-            for (i in o) {
-                if (L.hasOwnProperty(o, i)) {
-                    s.push(i + ARROW);
-                    if (L.isObject(o[i])) {
-                        s.push((d > 0) ? L.dump(o[i], d-1) : OBJ);
-                    } else {
-                        s.push(o[i]);
-                    }
-                    s.push(COMMA);
-                }
-            }
-            if (s.length > 1) {
-                s.pop();
-            }
-            s.push("}");
-        }
-
-        return s.join("");
-    },
-
-    /**
-     * Does variable substitution on a string. It scans through the string 
-     * looking for expressions enclosed in { } braces. If an expression 
-     * is found, it is used a key on the object.  If there is a space in
-     * the key, the first word is used for the key and the rest is provided
-     * to an optional function to be used to programatically determine the
-     * value (the extra information might be used for this decision). If 
-     * the value for the key in the object, or what is returned from the
-     * function has a string value, number value, or object value, it is 
-     * substituted for the bracket expression and it repeats.  If this
-     * value is an object, it uses the Object's toString() if this has
-     * been overridden, otherwise it does a shallow dump of the key/value
-     * pairs.
-     * @method substitute
-     * @since 2.3.0
-     * @param s {String} The string that will be modified.
-     * @param o {Object} An object containing the replacement values
-     * @param f {Function} An optional function that can be used to
-     *                     process each match.  It receives the key,
-     *                     value, and any extra metadata included with
-     *                     the key inside of the braces.
-     * @return {String} the substituted string
-     */
-    substitute: function (s, o, f) {
-        var i, j, k, key, v, meta, saved=[], token, 
-            DUMP='dump', SPACE=' ', LBRACE='{', RBRACE='}';
-
-
-        for (;;) {
-            i = s.lastIndexOf(LBRACE);
-            if (i < 0) {
-                break;
-            }
-            j = s.indexOf(RBRACE, i);
-            if (i + 1 >= j) {
-                break;
-            }
-
-            //Extract key and meta info 
-            token = s.substring(i + 1, j);
-            key = token;
-            meta = null;
-            k = key.indexOf(SPACE);
-            if (k > -1) {
-                meta = key.substring(k + 1);
-                key = key.substring(0, k);
-            }
-
-            // lookup the value
-            v = o[key];
-
-            // if a substitution function was provided, execute it
-            if (f) {
-                v = f(key, v, meta);
-            }
-
-            if (L.isObject(v)) {
-                if (L.isArray(v)) {
-                    v = L.dump(v, parseInt(meta, 10));
-                } else {
-                    meta = meta || "";
-
-                    // look for the keyword 'dump', if found force obj dump
-                    var dump = meta.indexOf(DUMP);
-                    if (dump > -1) {
-                        meta = meta.substring(4);
-                    }
-
-                    // use the toString if it is not the Object toString 
-                    // and the 'dump' meta info was not found
-                    if (v.toString===Object.prototype.toString||dump>-1) {
-                        v = L.dump(v, parseInt(meta, 10));
-                    } else {
-                        v = v.toString();
-                    }
-                }
-            } else if (!L.isString(v) && !L.isNumber(v)) {
-                // This {block} has no replace string. Save it for later.
-                v = "~-" + saved.length + "-~";
-                saved[saved.length] = token;
-
-                // break;
-            }
-
-            s = s.substring(0, i) + v + s.substring(j + 1);
-
-
-        }
-
-        // restore saved {block}s
-        for (i=saved.length-1; i>=0; i=i-1) {
-            s = s.replace(new RegExp("~-" + i + "-~"), "{"  + saved[i] + "}", "g");
-        }
-
-        return s;
-    },
-
-
-    /**
-     * Returns a string without any leading or trailing whitespace.  If 
-     * the input is not a string, the input will be returned untouched.
-     * @method trim
-     * @since 2.3.0
-     * @param s {string} the string to trim
-     * @return {string} the trimmed string
-     */
-    trim: function(s){
-        try {
-            return s.replace(/^\s+|\s+$/g, "");
-        } catch(e) {
-            return s;
-        }
-    },
-
-    /**
-     * Returns a new object containing all of the properties of
-     * all the supplied objects.  The properties from later objects
-     * will overwrite those in earlier objects.
-     * @method merge
-     * @since 2.3.0
-     * @param arguments {Object*} the objects to merge
-     * @return the new merged object
-     */
-    merge: function() {
-        var o={}, a=arguments;
-        for (var i=0, l=a.length; i<l; i=i+1) {
-            L.augmentObject(o, a[i], true);
-        }
-        return o;
-    },
-
-    /**
-     * Executes the supplied function in the context of the supplied 
-     * object 'when' milliseconds later.  Executes the function a 
-     * single time unless periodic is set to true.
-     * @method later
-     * @since 2.4.0
-     * @param when {int} the number of milliseconds to wait until the fn 
-     * is executed
-     * @param o the context object
-     * @param fn {Function|String} the function to execute or the name of 
-     * the method in the 'o' object to execute
-     * @param data [Array] data that is provided to the function.  This accepts
-     * either a single item or an array.  If an array is provided, the
-     * function is executed with one parameter for each array item.  If
-     * you need to pass a single array parameter, it needs to be wrapped in
-     * an array [myarray]
-     * @param periodic {boolean} if true, executes continuously at supplied 
-     * interval until canceled
-     * @return a timer object. Call the cancel() method on this object to 
-     * stop the timer.
-     */
-    later: function(when, o, fn, data, periodic) {
-        when = when || 0; 
-        o = o || {};
-        var m=fn, d=data, f, r;
-
-        if (L.isString(fn)) {
-            m = o[fn];
-        }
-
-        if (!m) {
-            throw new TypeError("method undefined");
-        }
-
-        if (!L.isArray(d)) {
-            d = [data];
-        }
-
-        f = function() {
-            m.apply(o, d);
-        };
-
-        r = (periodic) ? setInterval(f, when) : setTimeout(f, when);
-
-        return {
-            interval: periodic,
-            cancel: function() {
-                if (this.interval) {
-                    clearInterval(r);
-                } else {
-                    clearTimeout(r);
-                }
-            }
-        };
-    },
-    
-    /**
-     * A convenience method for detecting a legitimate non-null value.
-     * Returns false for null/undefined/NaN, true for other values, 
-     * including 0/false/''
-     * @method isValue
-     * @since 2.3.0
-     * @param o {any} the item to test
-     * @return {boolean} true if it is not null/undefined/NaN || false
-     */
-    isValue: function(o) {
-        // return (o || o === false || o === 0 || o === ''); // Infinity fails
-return (L.isObject(o) || L.isString(o) || L.isNumber(o) || L.isBoolean(o));
-    }
-
-};
-
-/**
- * Determines whether or not the property was added
- * to the object instance.  Returns false if the property is not present
- * in the object, or was inherited from the prototype.
- * This abstraction is provided to enable hasOwnProperty for Safari 1.3.x.
- * There is a discrepancy between YAHOO.lang.hasOwnProperty and
- * Object.prototype.hasOwnProperty when the property is a primitive added to
- * both the instance AND prototype with the same value:
- * <pre>
- * var A = function() {};
- * A.prototype.foo = 'foo';
- * var a = new A();
- * a.foo = 'foo';
- * alert(a.hasOwnProperty('foo')); // true
- * alert(YAHOO.lang.hasOwnProperty(a, 'foo')); // false when using fallback
- * </pre>
- * @method hasOwnProperty
- * @param {any} o The object being testing
- * @param prop {string} the name of the property to test
- * @return {boolean} the result
- */
-L.hasOwnProperty = (Object.prototype.hasOwnProperty) ?
-    function(o, prop) {
-        return o && o.hasOwnProperty(prop);
-    } : function(o, prop) {
-        return !L.isUndefined(o[prop]) && 
-                o.constructor.prototype[prop] !== o[prop];
-    };
-
-// new lang wins
-OB.augmentObject(L, OB, true);
-
-/*
- * An alias for <a href="YAHOO.lang.html">YAHOO.lang</a>
- * @class YAHOO.util.Lang
- */
-YAHOO.util.Lang = L;
- 
-/**
- * Same as YAHOO.lang.augmentObject, except it only applies prototype 
- * properties.  This is an alias for augmentProto.
- * @see YAHOO.lang.augmentObject
- * @method augment
- * @static
- * @param {Function} r  the object to receive the augmentation
- * @param {Function} s  the object that supplies the properties to augment
- * @param {String*|boolean}  arguments zero or more properties methods to 
- *        augment the receiver with.  If none specified, everything
- *        in the supplier will be used unless it would
- *        overwrite an existing property in the receiver.  if true
- *        is specified as the third parameter, all properties will
- *        be applied and will overwrite an existing property in
- *        the receiver
- */
-L.augment = L.augmentProto;
-
-/**
- * An alias for <a href="YAHOO.lang.html#augment">YAHOO.lang.augment</a>
- * @for YAHOO
- * @method augment
- * @static
- * @param {Function} r  the object to receive the augmentation
- * @param {Function} s  the object that supplies the properties to augment
- * @param {String*}  arguments zero or more properties methods to 
- *        augment the receiver with.  If none specified, everything
- *        in the supplier will be used unless it would
- *        overwrite an existing property in the receiver
- */
-YAHOO.augment = L.augmentProto;
-       
-/**
- * An alias for <a href="YAHOO.lang.html#extend">YAHOO.lang.extend</a>
- * @method extend
- * @static
- * @param {Function} subc   the object to modify
- * @param {Function} superc the object to inherit
- * @param {Object} overrides  additional properties/methods to add to the
- *        subclass prototype.  These will override the
- *        matching items obtained from the superclass if present.
- */
-YAHOO.extend = L.extend;
-
-})();
-YAHOO.register("yahoo", YAHOO, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/yuiloader-dom-event/README b/eclipse.org-common/yui/2.6.0/build/yuiloader-dom-event/README
deleted file mode 100644
index b0604c2..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuiloader-dom-event/README
+++ /dev/null
@@ -1,13 +0,0 @@
-yuiloader-event-dom.js Release Notes
-
-*** NOTE ***
-
-This document is not updated with each release.  Changes to
-the yuiloader-dom-event.js source are noted in the README
-file for each component that comprises this aggregate:
-
-yahoo/README
-dom/README
-event/README
-get/README
-yuiloader/README
diff --git a/eclipse.org-common/yui/2.6.0/build/yuiloader-dom-event/yuiloader-dom-event.js b/eclipse.org-common/yui/2.6.0/build/yuiloader-dom-event/yuiloader-dom-event.js
deleted file mode 100644
index 9eeecd1..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuiloader-dom-event/yuiloader-dom-event.js
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-if(typeof YAHOO=="undefined"||!YAHOO){var YAHOO={};}YAHOO.namespace=function(){var A=arguments,E=null,C,B,D;for(C=0;C<A.length;C=C+1){D=A[C].split(".");E=YAHOO;for(B=(D[0]=="YAHOO")?1:0;B<D.length;B=B+1){E[D[B]]=E[D[B]]||{};E=E[D[B]];}}return E;};YAHOO.log=function(D,A,C){var B=YAHOO.widget.Logger;if(B&&B.log){return B.log(D,A,C);}else{return false;}};YAHOO.register=function(A,E,D){var I=YAHOO.env.modules;if(!I[A]){I[A]={versions:[],builds:[]};}var B=I[A],H=D.version,G=D.build,F=YAHOO.env.listeners;B.name=A;B.version=H;B.build=G;B.versions.push(H);B.builds.push(G);B.mainClass=E;for(var C=0;C<F.length;C=C+1){F[C](B);}if(E){E.VERSION=H;E.BUILD=G;}else{YAHOO.log("mainClass is undefined for module "+A,"warn");}};YAHOO.env=YAHOO.env||{modules:[],listeners:[]};YAHOO.env.getVersion=function(A){return YAHOO.env.modules[A]||null;};YAHOO.env.ua=function(){var C={ie:0,opera:0,gecko:0,webkit:0,mobile:null,air:0};var B=navigator.userAgent,A;if((/KHTML/).test(B)){C.webkit=1;}A=B.match(/AppleWebKit\/([^\s]*)/);if(A&&A[1]){C.webkit=parseFloat(A[1]);if(/ Mobile\//.test(B)){C.mobile="Apple";}else{A=B.match(/NokiaN[^\/]*/);if(A){C.mobile=A[0];}}A=B.match(/AdobeAIR\/([^\s]*)/);if(A){C.air=A[0];}}if(!C.webkit){A=B.match(/Opera[\s\/]([^\s]*)/);if(A&&A[1]){C.opera=parseFloat(A[1]);A=B.match(/Opera Mini[^;]*/);if(A){C.mobile=A[0];}}else{A=B.match(/MSIE\s([^;]*)/);if(A&&A[1]){C.ie=parseFloat(A[1]);}else{A=B.match(/Gecko\/([^\s]*)/);if(A){C.gecko=1;A=B.match(/rv:([^\s\)]*)/);if(A&&A[1]){C.gecko=parseFloat(A[1]);}}}}}return C;}();(function(){YAHOO.namespace("util","widget","example");if("undefined"!==typeof YAHOO_config){var B=YAHOO_config.listener,A=YAHOO.env.listeners,D=true,C;if(B){for(C=0;C<A.length;C=C+1){if(A[C]==B){D=false;break;}}if(D){A.push(B);}}}})();YAHOO.lang=YAHOO.lang||{};(function(){var A=YAHOO.lang,C=["toString","valueOf"],B={isArray:function(D){if(D){return A.isNumber(D.length)&&A.isFunction(D.splice);}return false;},isBoolean:function(D){return typeof D==="boolean";},isFunction:function(D){return typeof D==="function";},isNull:function(D){return D===null;},isNumber:function(D){return typeof D==="number"&&isFinite(D);},isObject:function(D){return(D&&(typeof D==="object"||A.isFunction(D)))||false;},isString:function(D){return typeof D==="string";},isUndefined:function(D){return typeof D==="undefined";},_IEEnumFix:(YAHOO.env.ua.ie)?function(F,E){for(var D=0;D<C.length;D=D+1){var H=C[D],G=E[H];if(A.isFunction(G)&&G!=Object.prototype[H]){F[H]=G;}}}:function(){},extend:function(H,I,G){if(!I||!H){throw new Error("extend failed, please check that "+"all dependencies are included.");}var E=function(){};E.prototype=I.prototype;H.prototype=new E();H.prototype.constructor=H;H.superclass=I.prototype;if(I.prototype.constructor==Object.prototype.constructor){I.prototype.constructor=I;}if(G){for(var D in G){if(A.hasOwnProperty(G,D)){H.prototype[D]=G[D];}}A._IEEnumFix(H.prototype,G);}},augmentObject:function(H,G){if(!G||!H){throw new Error("Absorb failed, verify dependencies.");}var D=arguments,F,I,E=D[2];if(E&&E!==true){for(F=2;F<D.length;F=F+1){H[D[F]]=G[D[F]];}}else{for(I in G){if(E||!(I in H)){H[I]=G[I];}}A._IEEnumFix(H,G);}},augmentProto:function(G,F){if(!F||!G){throw new Error("Augment failed, verify dependencies.");}var D=[G.prototype,F.prototype];for(var E=2;E<arguments.length;E=E+1){D.push(arguments[E]);}A.augmentObject.apply(this,D);},dump:function(D,I){var F,H,K=[],L="{...}",E="f(){...}",J=", ",G=" => ";if(!A.isObject(D)){return D+"";}else{if(D instanceof Date||("nodeType" in D&&"tagName" in D)){return D;}else{if(A.isFunction(D)){return E;}}}I=(A.isNumber(I))?I:3;if(A.isArray(D)){K.push("[");for(F=0,H=D.length;F<H;F=F+1){if(A.isObject(D[F])){K.push((I>0)?A.dump(D[F],I-1):L);}else{K.push(D[F]);}K.push(J);}if(K.length>1){K.pop();}K.push("]");}else{K.push("{");for(F in D){if(A.hasOwnProperty(D,F)){K.push(F+G);if(A.isObject(D[F])){K.push((I>0)?A.dump(D[F],I-1):L);}else{K.push(D[F]);}K.push(J);}}if(K.length>1){K.pop();}K.push("}");}return K.join("");},substitute:function(S,E,L){var I,H,G,O,P,R,N=[],F,J="dump",M=" ",D="{",Q="}";for(;;){I=S.lastIndexOf(D);if(I<0){break;}H=S.indexOf(Q,I);if(I+1>=H){break;}F=S.substring(I+1,H);O=F;R=null;G=O.indexOf(M);if(G>-1){R=O.substring(G+1);O=O.substring(0,G);}P=E[O];if(L){P=L(O,P,R);}if(A.isObject(P)){if(A.isArray(P)){P=A.dump(P,parseInt(R,10));}else{R=R||"";var K=R.indexOf(J);if(K>-1){R=R.substring(4);}if(P.toString===Object.prototype.toString||K>-1){P=A.dump(P,parseInt(R,10));}else{P=P.toString();}}}else{if(!A.isString(P)&&!A.isNumber(P)){P="~-"+N.length+"-~";N[N.length]=F;}}S=S.substring(0,I)+P+S.substring(H+1);}for(I=N.length-1;I>=0;I=I-1){S=S.replace(new RegExp("~-"+I+"-~"),"{"+N[I]+"}","g");}return S;},trim:function(D){try{return D.replace(/^\s+|\s+$/g,"");}catch(E){return D;}},merge:function(){var G={},E=arguments;for(var F=0,D=E.length;F<D;F=F+1){A.augmentObject(G,E[F],true);}return G;},later:function(K,E,L,G,H){K=K||0;E=E||{};var F=L,J=G,I,D;if(A.isString(L)){F=E[L];}if(!F){throw new TypeError("method undefined");}if(!A.isArray(J)){J=[G];}I=function(){F.apply(E,J);};D=(H)?setInterval(I,K):setTimeout(I,K);return{interval:H,cancel:function(){if(this.interval){clearInterval(D);}else{clearTimeout(D);}}};},isValue:function(D){return(A.isObject(D)||A.isString(D)||A.isNumber(D)||A.isBoolean(D));}};A.hasOwnProperty=(Object.prototype.hasOwnProperty)?function(D,E){return D&&D.hasOwnProperty(E);}:function(D,E){return !A.isUndefined(D[E])&&D.constructor.prototype[E]!==D[E];};B.augmentObject(A,B,true);YAHOO.util.Lang=A;A.augment=A.augmentProto;YAHOO.augment=A.augmentProto;YAHOO.extend=A.extend;})();YAHOO.register("yahoo",YAHOO,{version:"2.6.0",build:"1321"});YAHOO.util.Get=function(){var M={},L=0,R=0,E=false,N=YAHOO.env.ua,S=YAHOO.lang;var J=function(W,T,X){var U=X||window,Y=U.document,Z=Y.createElement(W);for(var V in T){if(T[V]&&YAHOO.lang.hasOwnProperty(T,V)){Z.setAttribute(V,T[V]);}}return Z;};var I=function(T,U,W){var V=W||"utf-8";return J("link",{"id":"yui__dyn_"+(R++),"type":"text/css","charset":V,"rel":"stylesheet","href":T},U);
-};var P=function(T,U,W){var V=W||"utf-8";return J("script",{"id":"yui__dyn_"+(R++),"type":"text/javascript","charset":V,"src":T},U);};var A=function(T,U){return{tId:T.tId,win:T.win,data:T.data,nodes:T.nodes,msg:U,purge:function(){D(this.tId);}};};var B=function(T,W){var U=M[W],V=(S.isString(T))?U.win.document.getElementById(T):T;if(!V){Q(W,"target node not found: "+T);}return V;};var Q=function(W,V){var T=M[W];if(T.onFailure){var U=T.scope||T.win;T.onFailure.call(U,A(T,V));}};var C=function(W){var T=M[W];T.finished=true;if(T.aborted){var V="transaction "+W+" was aborted";Q(W,V);return ;}if(T.onSuccess){var U=T.scope||T.win;T.onSuccess.call(U,A(T));}};var O=function(V){var T=M[V];if(T.onTimeout){var U=T.context||T;T.onTimeout.call(U,A(T));}};var G=function(V,Z){var U=M[V];if(U.timer){U.timer.cancel();}if(U.aborted){var X="transaction "+V+" was aborted";Q(V,X);return ;}if(Z){U.url.shift();if(U.varName){U.varName.shift();}}else{U.url=(S.isString(U.url))?[U.url]:U.url;if(U.varName){U.varName=(S.isString(U.varName))?[U.varName]:U.varName;}}var c=U.win,b=c.document,a=b.getElementsByTagName("head")[0],W;if(U.url.length===0){if(U.type==="script"&&N.webkit&&N.webkit<420&&!U.finalpass&&!U.varName){var Y=P(null,U.win,U.charset);Y.innerHTML='YAHOO.util.Get._finalize("'+V+'");';U.nodes.push(Y);a.appendChild(Y);}else{C(V);}return ;}var T=U.url[0];if(!T){U.url.shift();return G(V);}if(U.timeout){U.timer=S.later(U.timeout,U,O,V);}if(U.type==="script"){W=P(T,c,U.charset);}else{W=I(T,c,U.charset);}F(U.type,W,V,T,c,U.url.length);U.nodes.push(W);if(U.insertBefore){var e=B(U.insertBefore,V);if(e){e.parentNode.insertBefore(W,e);}}else{a.appendChild(W);}if((N.webkit||N.gecko)&&U.type==="css"){G(V,T);}};var K=function(){if(E){return ;}E=true;for(var T in M){var U=M[T];if(U.autopurge&&U.finished){D(U.tId);delete M[T];}}E=false;};var D=function(a){var X=M[a];if(X){var Z=X.nodes,T=Z.length,Y=X.win.document,W=Y.getElementsByTagName("head")[0];if(X.insertBefore){var V=B(X.insertBefore,a);if(V){W=V.parentNode;}}for(var U=0;U<T;U=U+1){W.removeChild(Z[U]);}X.nodes=[];}};var H=function(U,T,V){var X="q"+(L++);V=V||{};if(L%YAHOO.util.Get.PURGE_THRESH===0){K();}M[X]=S.merge(V,{tId:X,type:U,url:T,finished:false,aborted:false,nodes:[]});var W=M[X];W.win=W.win||window;W.scope=W.scope||W.win;W.autopurge=("autopurge" in W)?W.autopurge:(U==="script")?true:false;S.later(0,W,G,X);return{tId:X};};var F=function(c,X,W,U,Y,Z,b){var a=b||G;if(N.ie){X.onreadystatechange=function(){var d=this.readyState;if("loaded"===d||"complete"===d){X.onreadystatechange=null;a(W,U);}};}else{if(N.webkit){if(c==="script"){if(N.webkit>=420){X.addEventListener("load",function(){a(W,U);});}else{var T=M[W];if(T.varName){var V=YAHOO.util.Get.POLL_FREQ;T.maxattempts=YAHOO.util.Get.TIMEOUT/V;T.attempts=0;T._cache=T.varName[0].split(".");T.timer=S.later(V,T,function(j){var f=this._cache,e=f.length,d=this.win,g;for(g=0;g<e;g=g+1){d=d[f[g]];if(!d){this.attempts++;if(this.attempts++>this.maxattempts){var h="Over retry limit, giving up";T.timer.cancel();Q(W,h);}else{}return ;}}T.timer.cancel();a(W,U);},null,true);}else{S.later(YAHOO.util.Get.POLL_FREQ,null,a,[W,U]);}}}}else{X.onload=function(){a(W,U);};}}};return{POLL_FREQ:10,PURGE_THRESH:20,TIMEOUT:2000,_finalize:function(T){S.later(0,null,C,T);},abort:function(U){var V=(S.isString(U))?U:U.tId;var T=M[V];if(T){T.aborted=true;}},script:function(T,U){return H("script",T,U);},css:function(T,U){return H("css",T,U);}};}();YAHOO.register("get",YAHOO.util.Get,{version:"2.6.0",build:"1321"});(function(){var Y=YAHOO,util=Y.util,lang=Y.lang,env=Y.env,PROV="_provides",SUPER="_supersedes",REQ="expanded",AFTER="_after";var YUI={dupsAllowed:{"yahoo":true,"get":true},info:{"root":"2.6.0/build/","base":"http://yui.yahooapis.com/2.6.0/build/","comboBase":"http://yui.yahooapis.com/combo?","skin":{"defaultSkin":"sam","base":"assets/skins/","path":"skin.css","after":["reset","fonts","grids","base"],"rollup":3},dupsAllowed:["yahoo","get"],"moduleInfo":{"animation":{"type":"js","path":"animation/animation-min.js","requires":["dom","event"]},"autocomplete":{"type":"js","path":"autocomplete/autocomplete-min.js","requires":["dom","event","datasource"],"optional":["connection","animation"],"skinnable":true},"base":{"type":"css","path":"base/base-min.css","after":["reset","fonts","grids"]},"button":{"type":"js","path":"button/button-min.js","requires":["element"],"optional":["menu"],"skinnable":true},"calendar":{"type":"js","path":"calendar/calendar-min.js","requires":["event","dom"],"skinnable":true},"carousel":{"type":"js","path":"carousel/carousel-beta-min.js","requires":["element"],"optional":["animation"],"skinnable":true},"charts":{"type":"js","path":"charts/charts-experimental-min.js","requires":["element","json","datasource"]},"colorpicker":{"type":"js","path":"colorpicker/colorpicker-min.js","requires":["slider","element"],"optional":["animation"],"skinnable":true},"connection":{"type":"js","path":"connection/connection-min.js","requires":["event"]},"container":{"type":"js","path":"container/container-min.js","requires":["dom","event"],"optional":["dragdrop","animation","connection"],"supersedes":["containercore"],"skinnable":true},"containercore":{"type":"js","path":"container/container_core-min.js","requires":["dom","event"],"pkg":"container"},"cookie":{"type":"js","path":"cookie/cookie-min.js","requires":["yahoo"]},"datasource":{"type":"js","path":"datasource/datasource-min.js","requires":["event"],"optional":["connection"]},"datatable":{"type":"js","path":"datatable/datatable-min.js","requires":["element","datasource"],"optional":["calendar","dragdrop","paginator"],"skinnable":true},"dom":{"type":"js","path":"dom/dom-min.js","requires":["yahoo"]},"dragdrop":{"type":"js","path":"dragdrop/dragdrop-min.js","requires":["dom","event"]},"editor":{"type":"js","path":"editor/editor-min.js","requires":["menu","element","button"],"optional":["animation","dragdrop"],"supersedes":["simpleeditor"],"skinnable":true},"element":{"type":"js","path":"element/element-beta-min.js","requires":["dom","event"]},"event":{"type":"js","path":"event/event-min.js","requires":["yahoo"]},"fonts":{"type":"css","path":"fonts/fonts-min.css"},"get":{"type":"js","path":"get/get-min.js","requires":["yahoo"]},"grids":{"type":"css","path":"grids/grids-min.css","requires":["fonts"],"optional":["reset"]},"history":{"type":"js","path":"history/history-min.js","requires":["event"]},"imagecropper":{"type":"js","path":"imagecropper/imagecropper-beta-min.js","requires":["dom","event","dragdrop","element","resize"],"skinnable":true},"imageloader":{"type":"js","path":"imageloader/imageloader-min.js","requires":["event","dom"]},"json":{"type":"js","path":"json/json-min.js","requires":["yahoo"]},"layout":{"type":"js","path":"layout/layout-min.js","requires":["dom","event","element"],"optional":["animation","dragdrop","resize","selector"],"skinnable":true},"logger":{"type":"js","path":"logger/logger-min.js","requires":["event","dom"],"optional":["dragdrop"],"skinnable":true},"menu":{"type":"js","path":"menu/menu-min.js","requires":["containercore"],"skinnable":true},"paginator":{"type":"js","path":"paginator/paginator-min.js","requires":["element"],"skinnable":true},"profiler":{"type":"js","path":"profiler/profiler-min.js","requires":["yahoo"]},"profilerviewer":{"type":"js","path":"profilerviewer/profilerviewer-beta-min.js","requires":["profiler","yuiloader","element"],"skinnable":true},"reset":{"type":"css","path":"reset/reset-min.css"},"reset-fonts-grids":{"type":"css","path":"reset-fonts-grids/reset-fonts-grids.css","supersedes":["reset","fonts","grids","reset-fonts"],"rollup":4},"reset-fonts":{"type":"css","path":"reset-fonts/reset-fonts.css","supersedes":["reset","fonts"],"rollup":2},"resize":{"type":"js","path":"resize/resize-min.js","requires":["dom","event","dragdrop","element"],"optional":["animation"],"skinnable":true},"selector":{"type":"js","path":"selector/selector-beta-min.js","requires":["yahoo","dom"]},"simpleeditor":{"type":"js","path":"editor/simpleeditor-min.js","requires":["element"],"optional":["containercore","menu","button","animation","dragdrop"],"skinnable":true,"pkg":"editor"},"slider":{"type":"js","path":"slider/slider-min.js","requires":["dragdrop"],"optional":["animation"],"skinnable":true},"tabview":{"type":"js","path":"tabview/tabview-min.js","requires":["element"],"optional":["connection"],"skinnable":true},"treeview":{"type":"js","path":"treeview/treeview-min.js","requires":["event","dom"],"skinnable":true},"uploader":{"type":"js","path":"uploader/uploader-experimental.js","requires":["element"]},"utilities":{"type":"js","path":"utilities/utilities.js","supersedes":["yahoo","event","dragdrop","animation","dom","connection","element","yahoo-dom-event","get","yuiloader","yuiloader-dom-event"],"rollup":8},"yahoo":{"type":"js","path":"yahoo/yahoo-min.js"},"yahoo-dom-event":{"type":"js","path":"yahoo-dom-event/yahoo-dom-event.js","supersedes":["yahoo","event","dom"],"rollup":3},"yuiloader":{"type":"js","path":"yuiloader/yuiloader-min.js","supersedes":["yahoo","get"]},"yuiloader-dom-event":{"type":"js","path":"yuiloader-dom-event/yuiloader-dom-event.js","supersedes":["yahoo","dom","event","get","yuiloader","yahoo-dom-event"],"rollup":5},"yuitest":{"type":"js","path":"yuitest/yuitest-min.js","requires":["logger"],"skinnable":true}}},ObjectUtil:{appendArray:function(o,a){if(a){for(var i=0;
-i<a.length;i=i+1){o[a[i]]=true;}}},keys:function(o,ordered){var a=[],i;for(i in o){if(lang.hasOwnProperty(o,i)){a.push(i);}}return a;}},ArrayUtil:{appendArray:function(a1,a2){Array.prototype.push.apply(a1,a2);},indexOf:function(a,val){for(var i=0;i<a.length;i=i+1){if(a[i]===val){return i;}}return -1;},toObject:function(a){var o={};for(var i=0;i<a.length;i=i+1){o[a[i]]=true;}return o;},uniq:function(a){return YUI.ObjectUtil.keys(YUI.ArrayUtil.toObject(a));}}};YAHOO.util.YUILoader=function(o){this._internalCallback=null;this._useYahooListener=false;this.onSuccess=null;this.onFailure=Y.log;this.onProgress=null;this.onTimeout=null;this.scope=this;this.data=null;this.insertBefore=null;this.charset=null;this.varName=null;this.base=YUI.info.base;this.comboBase=YUI.info.comboBase;this.combine=false;this.root=YUI.info.root;this.timeout=0;this.ignore=null;this.force=null;this.allowRollup=true;this.filter=null;this.required={};this.moduleInfo=lang.merge(YUI.info.moduleInfo);this.rollups=null;this.loadOptional=false;this.sorted=[];this.loaded={};this.dirty=true;this.inserted={};var self=this;env.listeners.push(function(m){if(self._useYahooListener){self.loadNext(m.name);}});this.skin=lang.merge(YUI.info.skin);this._config(o);};Y.util.YUILoader.prototype={FILTERS:{RAW:{"searchExp":"-min\\.js","replaceStr":".js"},DEBUG:{"searchExp":"-min\\.js","replaceStr":"-debug.js"}},SKIN_PREFIX:"skin-",_config:function(o){if(o){for(var i in o){if(lang.hasOwnProperty(o,i)){if(i=="require"){this.require(o[i]);}else{this[i]=o[i];}}}}var f=this.filter;if(lang.isString(f)){f=f.toUpperCase();if(f==="DEBUG"){this.require("logger");}if(!Y.widget.LogWriter){Y.widget.LogWriter=function(){return Y;};}this.filter=this.FILTERS[f];}},addModule:function(o){if(!o||!o.name||!o.type||(!o.path&&!o.fullpath)){return false;}o.ext=("ext" in o)?o.ext:true;o.requires=o.requires||[];this.moduleInfo[o.name]=o;this.dirty=true;return true;},require:function(what){var a=(typeof what==="string")?arguments:what;this.dirty=true;YUI.ObjectUtil.appendArray(this.required,a);},_addSkin:function(skin,mod){var name=this.formatSkin(skin),info=this.moduleInfo,sinf=this.skin,ext=info[mod]&&info[mod].ext;if(!info[name]){this.addModule({"name":name,"type":"css","path":sinf.base+skin+"/"+sinf.path,"after":sinf.after,"rollup":sinf.rollup,"ext":ext});}if(mod){name=this.formatSkin(skin,mod);if(!info[name]){var mdef=info[mod],pkg=mdef.pkg||mod;this.addModule({"name":name,"type":"css","after":sinf.after,"path":pkg+"/"+sinf.base+skin+"/"+mod+".css","ext":ext});}}return name;},getRequires:function(mod){if(!mod){return[];}if(!this.dirty&&mod.expanded){return mod.expanded;}mod.requires=mod.requires||[];var i,d=[],r=mod.requires,o=mod.optional,info=this.moduleInfo,m;for(i=0;i<r.length;i=i+1){d.push(r[i]);m=info[r[i]];YUI.ArrayUtil.appendArray(d,this.getRequires(m));}if(o&&this.loadOptional){for(i=0;i<o.length;i=i+1){d.push(o[i]);YUI.ArrayUtil.appendArray(d,this.getRequires(info[o[i]]));}}mod.expanded=YUI.ArrayUtil.uniq(d);return mod.expanded;},getProvides:function(name,notMe){var addMe=!(notMe),ckey=(addMe)?PROV:SUPER,m=this.moduleInfo[name],o={};if(!m){return o;}if(m[ckey]){return m[ckey];}var s=m.supersedes,done={},me=this;var add=function(mm){if(!done[mm]){done[mm]=true;lang.augmentObject(o,me.getProvides(mm));}};if(s){for(var i=0;i<s.length;i=i+1){add(s[i]);}}m[SUPER]=o;m[PROV]=lang.merge(o);m[PROV][name]=true;return m[ckey];},calculate:function(o){if(o||this.dirty){this._config(o);this._setup();this._explode();if(this.allowRollup){this._rollup();}this._reduce();this._sort();this.dirty=false;}},_setup:function(){var info=this.moduleInfo,name,i,j;for(name in info){if(lang.hasOwnProperty(info,name)){var m=info[name];if(m&&m.skinnable){var o=this.skin.overrides,smod;if(o&&o[name]){for(i=0;i<o[name].length;i=i+1){smod=this._addSkin(o[name][i],name);}}else{smod=this._addSkin(this.skin.defaultSkin,name);}m.requires.push(smod);}}}var l=lang.merge(this.inserted);if(!this._sandbox){l=lang.merge(l,env.modules);}if(this.ignore){YUI.ObjectUtil.appendArray(l,this.ignore);}if(this.force){for(i=0;i<this.force.length;i=i+1){if(this.force[i] in l){delete l[this.force[i]];}}}for(j in l){if(lang.hasOwnProperty(l,j)){lang.augmentObject(l,this.getProvides(j));}}this.loaded=l;},_explode:function(){var r=this.required,i,mod;for(i in r){if(lang.hasOwnProperty(r,i)){mod=this.moduleInfo[i];if(mod){var req=this.getRequires(mod);if(req){YUI.ObjectUtil.appendArray(r,req);}}}}},_skin:function(){},formatSkin:function(skin,mod){var s=this.SKIN_PREFIX+skin;if(mod){s=s+"-"+mod;}return s;},parseSkin:function(mod){if(mod.indexOf(this.SKIN_PREFIX)===0){var a=mod.split("-");return{skin:a[1],module:a[2]};}return null;},_rollup:function(){var i,j,m,s,rollups={},r=this.required,roll,info=this.moduleInfo;if(this.dirty||!this.rollups){for(i in info){if(lang.hasOwnProperty(info,i)){m=info[i];if(m&&m.rollup){rollups[i]=m;}}}this.rollups=rollups;}for(;;){var rolled=false;for(i in rollups){if(!r[i]&&!this.loaded[i]){m=info[i];s=m.supersedes;roll=false;if(!m.rollup){continue;}var skin=(m.ext)?false:this.parseSkin(i),c=0;if(skin){for(j in r){if(lang.hasOwnProperty(r,j)){if(i!==j&&this.parseSkin(j)){c++;roll=(c>=m.rollup);if(roll){break;}}}}}else{for(j=0;j<s.length;j=j+1){if(this.loaded[s[j]]&&(!YUI.dupsAllowed[s[j]])){roll=false;break;}else{if(r[s[j]]){c++;roll=(c>=m.rollup);if(roll){break;}}}}}if(roll){r[i]=true;rolled=true;this.getRequires(m);}}}if(!rolled){break;}}},_reduce:function(){var i,j,s,m,r=this.required;for(i in r){if(i in this.loaded){delete r[i];}else{var skinDef=this.parseSkin(i);if(skinDef){if(!skinDef.module){var skin_pre=this.SKIN_PREFIX+skinDef.skin;for(j in r){if(lang.hasOwnProperty(r,j)){m=this.moduleInfo[j];var ext=m&&m.ext;if(!ext&&j!==i&&j.indexOf(skin_pre)>-1){delete r[j];}}}}}else{m=this.moduleInfo[i];s=m&&m.supersedes;if(s){for(j=0;j<s.length;j=j+1){if(s[j] in r){delete r[s[j]];}}}}}}},_onFailure:function(msg){YAHOO.log("Failure","info","loader");var f=this.onFailure;if(f){f.call(this.scope,{msg:"failure: "+msg,data:this.data,success:false});
-}},_onTimeout:function(){YAHOO.log("Timeout","info","loader");var f=this.onTimeout;if(f){f.call(this.scope,{msg:"timeout",data:this.data,success:false});}},_sort:function(){var s=[],info=this.moduleInfo,loaded=this.loaded,checkOptional=!this.loadOptional,me=this;var requires=function(aa,bb){var mm=info[aa];if(loaded[bb]||!mm){return false;}var ii,rr=mm.expanded,after=mm.after,other=info[bb],optional=mm.optional;if(rr&&YUI.ArrayUtil.indexOf(rr,bb)>-1){return true;}if(after&&YUI.ArrayUtil.indexOf(after,bb)>-1){return true;}if(checkOptional&&optional&&YUI.ArrayUtil.indexOf(optional,bb)>-1){return true;}var ss=info[bb]&&info[bb].supersedes;if(ss){for(ii=0;ii<ss.length;ii=ii+1){if(requires(aa,ss[ii])){return true;}}}if(mm.ext&&mm.type=="css"&&!other.ext&&other.type=="css"){return true;}return false;};for(var i in this.required){if(lang.hasOwnProperty(this.required,i)){s.push(i);}}var p=0;for(;;){var l=s.length,a,b,j,k,moved=false;for(j=p;j<l;j=j+1){a=s[j];for(k=j+1;k<l;k=k+1){if(requires(a,s[k])){b=s.splice(k,1);s.splice(j,0,b[0]);moved=true;break;}}if(moved){break;}else{p=p+1;}}if(!moved){break;}}this.sorted=s;},toString:function(){var o={type:"YUILoader",base:this.base,filter:this.filter,required:this.required,loaded:this.loaded,inserted:this.inserted};lang.dump(o,1);},_combine:function(){this._combining=[];var self=this,s=this.sorted,len=s.length,js=this.comboBase,css=this.comboBase,target,startLen=js.length,i,m,type=this.loadType;YAHOO.log("type "+type);for(i=0;i<len;i=i+1){m=this.moduleInfo[s[i]];if(m&&!m.ext&&(!type||type===m.type)){target=this.root+m.path;target+="&";if(m.type=="js"){js+=target;}else{css+=target;}this._combining.push(s[i]);}}if(this._combining.length){YAHOO.log("Attempting to combine: "+this._combining,"info","loader");var callback=function(o){var c=this._combining,len=c.length,i,m;for(i=0;i<len;i=i+1){this.inserted[c[i]]=true;}this.loadNext(o.data);},loadScript=function(){if(js.length>startLen){YAHOO.util.Get.script(self._filter(js),{data:self._loading,onSuccess:callback,onFailure:self._onFailure,onTimeout:self._onTimeout,insertBefore:self.insertBefore,charset:self.charset,timeout:self.timeout,scope:self});}};if(css.length>startLen){YAHOO.util.Get.css(this._filter(css),{data:this._loading,onSuccess:loadScript,onFailure:this._onFailure,onTimeout:this._onTimeout,insertBefore:this.insertBefore,charset:this.charset,timeout:this.timeout,scope:self});}else{loadScript();}return ;}else{this.loadNext(this._loading);}},insert:function(o,type){this.calculate(o);this._loading=true;this.loadType=type;if(this.combine){return this._combine();}if(!type){var self=this;this._internalCallback=function(){self._internalCallback=null;self.insert(null,"js");};this.insert(null,"css");return ;}this.loadNext();},sandbox:function(o,type){this._config(o);if(!this.onSuccess){throw new Error("You must supply an onSuccess handler for your sandbox");}this._sandbox=true;var self=this;if(!type||type!=="js"){this._internalCallback=function(){self._internalCallback=null;self.sandbox(null,"js");};this.insert(null,"css");return ;}if(!util.Connect){var ld=new YAHOO.util.YUILoader();ld.insert({base:this.base,filter:this.filter,require:"connection",insertBefore:this.insertBefore,charset:this.charset,onSuccess:function(){this.sandbox(null,"js");},scope:this},"js");return ;}this._scriptText=[];this._loadCount=0;this._stopCount=this.sorted.length;this._xhr=[];this.calculate();var s=this.sorted,l=s.length,i,m,url;for(i=0;i<l;i=i+1){m=this.moduleInfo[s[i]];if(!m){this._onFailure("undefined module "+m);for(var j=0;j<this._xhr.length;j=j+1){this._xhr[j].abort();}return ;}if(m.type!=="js"){this._loadCount++;continue;}url=m.fullpath;url=(url)?this._filter(url):this._url(m.path);var xhrData={success:function(o){var idx=o.argument[0],name=o.argument[2];this._scriptText[idx]=o.responseText;if(this.onProgress){this.onProgress.call(this.scope,{name:name,scriptText:o.responseText,xhrResponse:o,data:this.data});}this._loadCount++;if(this._loadCount>=this._stopCount){var v=this.varName||"YAHOO";var t="(function() {\n";var b="\nreturn "+v+";\n})();";var ref=eval(t+this._scriptText.join("\n")+b);this._pushEvents(ref);if(ref){this.onSuccess.call(this.scope,{reference:ref,data:this.data});}else{this._onFailure.call(this.varName+" reference failure");}}},failure:function(o){this.onFailure.call(this.scope,{msg:"XHR failure",xhrResponse:o,data:this.data});},scope:this,argument:[i,url,s[i]]};this._xhr.push(util.Connect.asyncRequest("GET",url,xhrData));}},loadNext:function(mname){if(!this._loading){return ;}if(mname){if(mname!==this._loading){return ;}this.inserted[mname]=true;if(this.onProgress){this.onProgress.call(this.scope,{name:mname,data:this.data});}}var s=this.sorted,len=s.length,i,m;for(i=0;i<len;i=i+1){if(s[i] in this.inserted){continue;}if(s[i]===this._loading){return ;}m=this.moduleInfo[s[i]];if(!m){this.onFailure.call(this.scope,{msg:"undefined module "+m,data:this.data});return ;}if(!this.loadType||this.loadType===m.type){this._loading=s[i];var fn=(m.type==="css")?util.Get.css:util.Get.script,url=m.fullpath,self=this,c=function(o){self.loadNext(o.data);};url=(url)?this._filter(url):this._url(m.path);if(env.ua.webkit&&env.ua.webkit<420&&m.type==="js"&&!m.varName){c=null;this._useYahooListener=true;}fn(url,{data:s[i],onSuccess:c,onFailure:this._onFailure,onTimeout:this._onTimeout,insertBefore:this.insertBefore,charset:this.charset,timeout:this.timeout,varName:m.varName,scope:self});return ;}}this._loading=null;if(this._internalCallback){var f=this._internalCallback;this._internalCallback=null;f.call(this);}else{if(this.onSuccess){this._pushEvents();this.onSuccess.call(this.scope,{data:this.data});}}},_pushEvents:function(ref){var r=ref||YAHOO;if(r.util&&r.util.Event){r.util.Event._load();}},_filter:function(str){var f=this.filter;return(f)?str.replace(new RegExp(f.searchExp),f.replaceStr):str;},_url:function(path){var u=this.base||"",f=this.filter;u=u+path;return this._filter(u);}};})();(function(){var B=YAHOO.util,F=YAHOO.lang,L,J,K={},G={},N=window.document;YAHOO.env._id_counter=YAHOO.env._id_counter||0;var C=YAHOO.env.ua.opera,M=YAHOO.env.ua.webkit,A=YAHOO.env.ua.gecko,H=YAHOO.env.ua.ie;var E={HYPHEN:/(-[a-z])/i,ROOT_TAG:/^body|html$/i,OP_SCROLL:/^(?:inline|table-row)$/i};var O=function(Q){if(!E.HYPHEN.test(Q)){return Q;}if(K[Q]){return K[Q];}var R=Q;while(E.HYPHEN.exec(R)){R=R.replace(RegExp.$1,RegExp.$1.substr(1).toUpperCase());}K[Q]=R;return R;};var P=function(R){var Q=G[R];if(!Q){Q=new RegExp("(?:^|\\s+)"+R+"(?:\\s+|$)");G[R]=Q;}return Q;};if(N.defaultView&&N.defaultView.getComputedStyle){L=function(Q,T){var S=null;if(T=="float"){T="cssFloat";}var R=Q.ownerDocument.defaultView.getComputedStyle(Q,"");if(R){S=R[O(T)];}return Q.style[T]||S;};}else{if(N.documentElement.currentStyle&&H){L=function(Q,S){switch(O(S)){case"opacity":var U=100;try{U=Q.filters["DXImageTransform.Microsoft.Alpha"].opacity;}catch(T){try{U=Q.filters("alpha").opacity;}catch(T){}}return U/100;case"float":S="styleFloat";default:var R=Q.currentStyle?Q.currentStyle[S]:null;return(Q.style[S]||R);}};}else{L=function(Q,R){return Q.style[R];};}}if(H){J=function(Q,R,S){switch(R){case"opacity":if(F.isString(Q.style.filter)){Q.style.filter="alpha(opacity="+S*100+")";if(!Q.currentStyle||!Q.currentStyle.hasLayout){Q.style.zoom=1;}}break;case"float":R="styleFloat";default:Q.style[R]=S;}};}else{J=function(Q,R,S){if(R=="float"){R="cssFloat";}Q.style[R]=S;};}var D=function(Q,R){return Q&&Q.nodeType==1&&(!R||R(Q));};YAHOO.util.Dom={get:function(S){if(S){if(S.nodeType||S.item){return S;}if(typeof S==="string"){return N.getElementById(S);}if("length" in S){var T=[];for(var R=0,Q=S.length;R<Q;++R){T[T.length]=B.Dom.get(S[R]);}return T;}return S;}return null;},getStyle:function(Q,S){S=O(S);var R=function(T){return L(T,S);};return B.Dom.batch(Q,R,B.Dom,true);},setStyle:function(Q,S,T){S=O(S);var R=function(U){J(U,S,T);};B.Dom.batch(Q,R,B.Dom,true);},getXY:function(Q){var R=function(S){if((S.parentNode===null||S.offsetParent===null||this.getStyle(S,"display")=="none")&&S!=S.ownerDocument.body){return false;}return I(S);};return B.Dom.batch(Q,R,B.Dom,true);},getX:function(Q){var R=function(S){return B.Dom.getXY(S)[0];};return B.Dom.batch(Q,R,B.Dom,true);},getY:function(Q){var R=function(S){return B.Dom.getXY(S)[1];};return B.Dom.batch(Q,R,B.Dom,true);},setXY:function(Q,T,S){var R=function(W){var V=this.getStyle(W,"position");if(V=="static"){this.setStyle(W,"position","relative");V="relative";}var Y=this.getXY(W);if(Y===false){return false;}var X=[parseInt(this.getStyle(W,"left"),10),parseInt(this.getStyle(W,"top"),10)];if(isNaN(X[0])){X[0]=(V=="relative")?0:W.offsetLeft;}if(isNaN(X[1])){X[1]=(V=="relative")?0:W.offsetTop;}if(T[0]!==null){W.style.left=T[0]-Y[0]+X[0]+"px";}if(T[1]!==null){W.style.top=T[1]-Y[1]+X[1]+"px";}if(!S){var U=this.getXY(W);if((T[0]!==null&&U[0]!=T[0])||(T[1]!==null&&U[1]!=T[1])){this.setXY(W,T,true);}}};B.Dom.batch(Q,R,B.Dom,true);},setX:function(R,Q){B.Dom.setXY(R,[Q,null]);},setY:function(Q,R){B.Dom.setXY(Q,[null,R]);},getRegion:function(Q){var R=function(S){if((S.parentNode===null||S.offsetParent===null||this.getStyle(S,"display")=="none")&&S!=S.ownerDocument.body){return false;}var T=B.Region.getRegion(S);return T;};return B.Dom.batch(Q,R,B.Dom,true);},getClientWidth:function(){return B.Dom.getViewportWidth();},getClientHeight:function(){return B.Dom.getViewportHeight();},getElementsByClassName:function(U,Y,V,W){U=F.trim(U);Y=Y||"*";V=(V)?B.Dom.get(V):null||N;if(!V){return[];}var R=[],Q=V.getElementsByTagName(Y),X=P(U);for(var S=0,T=Q.length;S<T;++S){if(X.test(Q[S].className)){R[R.length]=Q[S];if(W){W.call(Q[S],Q[S]);}}}return R;},hasClass:function(S,R){var Q=P(R);var T=function(U){return Q.test(U.className);};return B.Dom.batch(S,T,B.Dom,true);},addClass:function(R,Q){var S=function(T){if(this.hasClass(T,Q)){return false;}T.className=F.trim([T.className,Q].join(" "));return true;};return B.Dom.batch(R,S,B.Dom,true);},removeClass:function(S,R){var Q=P(R);var T=function(W){var V=false,X=W.className;if(R&&X&&this.hasClass(W,R)){W.className=X.replace(Q," ");if(this.hasClass(W,R)){this.removeClass(W,R);}W.className=F.trim(W.className);if(W.className===""){var U=(W.hasAttribute)?"class":"className";W.removeAttribute(U);}V=true;}return V;};return B.Dom.batch(S,T,B.Dom,true);},replaceClass:function(T,R,Q){if(!Q||R===Q){return false;}var S=P(R);var U=function(V){if(!this.hasClass(V,R)){this.addClass(V,Q);return true;}V.className=V.className.replace(S," "+Q+" ");if(this.hasClass(V,R)){this.removeClass(V,R);}V.className=F.trim(V.className);return true;};return B.Dom.batch(T,U,B.Dom,true);},generateId:function(Q,S){S=S||"yui-gen";var R=function(T){if(T&&T.id){return T.id;}var U=S+YAHOO.env._id_counter++;if(T){T.id=U;}return U;};return B.Dom.batch(Q,R,B.Dom,true)||R.apply(B.Dom,arguments);},isAncestor:function(R,S){R=B.Dom.get(R);S=B.Dom.get(S);var Q=false;if((R&&S)&&(R.nodeType&&S.nodeType)){if(R.contains&&R!==S){Q=R.contains(S);}else{if(R.compareDocumentPosition){Q=!!(R.compareDocumentPosition(S)&16);}}}else{}return Q;},inDocument:function(Q){return this.isAncestor(N.documentElement,Q);},getElementsBy:function(X,R,S,U){R=R||"*";S=(S)?B.Dom.get(S):null||N;if(!S){return[];}var T=[],W=S.getElementsByTagName(R);for(var V=0,Q=W.length;V<Q;++V){if(X(W[V])){T[T.length]=W[V];if(U){U(W[V]);}}}return T;},batch:function(U,X,W,S){U=(U&&(U.tagName||U.item))?U:B.Dom.get(U);if(!U||!X){return false;}var T=(S)?W:window;if(U.tagName||U.length===undefined){return X.call(T,U,W);}var V=[];for(var R=0,Q=U.length;R<Q;++R){V[V.length]=X.call(T,U[R],W);}return V;},getDocumentHeight:function(){var R=(N.compatMode!="CSS1Compat")?N.body.scrollHeight:N.documentElement.scrollHeight;var Q=Math.max(R,B.Dom.getViewportHeight());return Q;},getDocumentWidth:function(){var R=(N.compatMode!="CSS1Compat")?N.body.scrollWidth:N.documentElement.scrollWidth;var Q=Math.max(R,B.Dom.getViewportWidth());return Q;},getViewportHeight:function(){var Q=self.innerHeight;
-var R=N.compatMode;if((R||H)&&!C){Q=(R=="CSS1Compat")?N.documentElement.clientHeight:N.body.clientHeight;}return Q;},getViewportWidth:function(){var Q=self.innerWidth;var R=N.compatMode;if(R||H){Q=(R=="CSS1Compat")?N.documentElement.clientWidth:N.body.clientWidth;}return Q;},getAncestorBy:function(Q,R){while((Q=Q.parentNode)){if(D(Q,R)){return Q;}}return null;},getAncestorByClassName:function(R,Q){R=B.Dom.get(R);if(!R){return null;}var S=function(T){return B.Dom.hasClass(T,Q);};return B.Dom.getAncestorBy(R,S);},getAncestorByTagName:function(R,Q){R=B.Dom.get(R);if(!R){return null;}var S=function(T){return T.tagName&&T.tagName.toUpperCase()==Q.toUpperCase();};return B.Dom.getAncestorBy(R,S);},getPreviousSiblingBy:function(Q,R){while(Q){Q=Q.previousSibling;if(D(Q,R)){return Q;}}return null;},getPreviousSibling:function(Q){Q=B.Dom.get(Q);if(!Q){return null;}return B.Dom.getPreviousSiblingBy(Q);},getNextSiblingBy:function(Q,R){while(Q){Q=Q.nextSibling;if(D(Q,R)){return Q;}}return null;},getNextSibling:function(Q){Q=B.Dom.get(Q);if(!Q){return null;}return B.Dom.getNextSiblingBy(Q);},getFirstChildBy:function(Q,S){var R=(D(Q.firstChild,S))?Q.firstChild:null;return R||B.Dom.getNextSiblingBy(Q.firstChild,S);},getFirstChild:function(Q,R){Q=B.Dom.get(Q);if(!Q){return null;}return B.Dom.getFirstChildBy(Q);},getLastChildBy:function(Q,S){if(!Q){return null;}var R=(D(Q.lastChild,S))?Q.lastChild:null;return R||B.Dom.getPreviousSiblingBy(Q.lastChild,S);},getLastChild:function(Q){Q=B.Dom.get(Q);return B.Dom.getLastChildBy(Q);},getChildrenBy:function(R,T){var S=B.Dom.getFirstChildBy(R,T);var Q=S?[S]:[];B.Dom.getNextSiblingBy(S,function(U){if(!T||T(U)){Q[Q.length]=U;}return false;});return Q;},getChildren:function(Q){Q=B.Dom.get(Q);if(!Q){}return B.Dom.getChildrenBy(Q);},getDocumentScrollLeft:function(Q){Q=Q||N;return Math.max(Q.documentElement.scrollLeft,Q.body.scrollLeft);},getDocumentScrollTop:function(Q){Q=Q||N;return Math.max(Q.documentElement.scrollTop,Q.body.scrollTop);},insertBefore:function(R,Q){R=B.Dom.get(R);Q=B.Dom.get(Q);if(!R||!Q||!Q.parentNode){return null;}return Q.parentNode.insertBefore(R,Q);},insertAfter:function(R,Q){R=B.Dom.get(R);Q=B.Dom.get(Q);if(!R||!Q||!Q.parentNode){return null;}if(Q.nextSibling){return Q.parentNode.insertBefore(R,Q.nextSibling);}else{return Q.parentNode.appendChild(R);}},getClientRegion:function(){var S=B.Dom.getDocumentScrollTop(),R=B.Dom.getDocumentScrollLeft(),T=B.Dom.getViewportWidth()+R,Q=B.Dom.getViewportHeight()+S;return new B.Region(S,T,Q,R);}};var I=function(){if(N.documentElement.getBoundingClientRect){return function(S){var T=S.getBoundingClientRect(),R=Math.round;var Q=S.ownerDocument;return[R(T.left+B.Dom.getDocumentScrollLeft(Q)),R(T.top+B.Dom.getDocumentScrollTop(Q))];};}else{return function(S){var T=[S.offsetLeft,S.offsetTop];var R=S.offsetParent;var Q=(M&&B.Dom.getStyle(S,"position")=="absolute"&&S.offsetParent==S.ownerDocument.body);if(R!=S){while(R){T[0]+=R.offsetLeft;T[1]+=R.offsetTop;if(!Q&&M&&B.Dom.getStyle(R,"position")=="absolute"){Q=true;}R=R.offsetParent;}}if(Q){T[0]-=S.ownerDocument.body.offsetLeft;T[1]-=S.ownerDocument.body.offsetTop;}R=S.parentNode;while(R.tagName&&!E.ROOT_TAG.test(R.tagName)){if(R.scrollTop||R.scrollLeft){T[0]-=R.scrollLeft;T[1]-=R.scrollTop;}R=R.parentNode;}return T;};}}();})();YAHOO.util.Region=function(C,D,A,B){this.top=C;this[1]=C;this.right=D;this.bottom=A;this.left=B;this[0]=B;};YAHOO.util.Region.prototype.contains=function(A){return(A.left>=this.left&&A.right<=this.right&&A.top>=this.top&&A.bottom<=this.bottom);};YAHOO.util.Region.prototype.getArea=function(){return((this.bottom-this.top)*(this.right-this.left));};YAHOO.util.Region.prototype.intersect=function(E){var C=Math.max(this.top,E.top);var D=Math.min(this.right,E.right);var A=Math.min(this.bottom,E.bottom);var B=Math.max(this.left,E.left);if(A>=C&&D>=B){return new YAHOO.util.Region(C,D,A,B);}else{return null;}};YAHOO.util.Region.prototype.union=function(E){var C=Math.min(this.top,E.top);var D=Math.max(this.right,E.right);var A=Math.max(this.bottom,E.bottom);var B=Math.min(this.left,E.left);return new YAHOO.util.Region(C,D,A,B);};YAHOO.util.Region.prototype.toString=function(){return("Region {"+"top: "+this.top+", right: "+this.right+", bottom: "+this.bottom+", left: "+this.left+"}");};YAHOO.util.Region.getRegion=function(D){var F=YAHOO.util.Dom.getXY(D);var C=F[1];var E=F[0]+D.offsetWidth;var A=F[1]+D.offsetHeight;var B=F[0];return new YAHOO.util.Region(C,E,A,B);};YAHOO.util.Point=function(A,B){if(YAHOO.lang.isArray(A)){B=A[1];A=A[0];}this.x=this.right=this.left=this[0]=A;this.y=this.top=this.bottom=this[1]=B;};YAHOO.util.Point.prototype=new YAHOO.util.Region();YAHOO.register("dom",YAHOO.util.Dom,{version:"2.6.0",build:"1321"});YAHOO.util.CustomEvent=function(D,B,C,A){this.type=D;this.scope=B||window;this.silent=C;this.signature=A||YAHOO.util.CustomEvent.LIST;this.subscribers=[];if(!this.silent){}var E="_YUICEOnSubscribe";if(D!==E){this.subscribeEvent=new YAHOO.util.CustomEvent(E,this,true);}this.lastError=null;};YAHOO.util.CustomEvent.LIST=0;YAHOO.util.CustomEvent.FLAT=1;YAHOO.util.CustomEvent.prototype={subscribe:function(B,C,A){if(!B){throw new Error("Invalid callback for subscriber to '"+this.type+"'");}if(this.subscribeEvent){this.subscribeEvent.fire(B,C,A);}this.subscribers.push(new YAHOO.util.Subscriber(B,C,A));},unsubscribe:function(D,F){if(!D){return this.unsubscribeAll();}var E=false;for(var B=0,A=this.subscribers.length;B<A;++B){var C=this.subscribers[B];if(C&&C.contains(D,F)){this._delete(B);E=true;}}return E;},fire:function(){this.lastError=null;var K=[],E=this.subscribers.length;if(!E&&this.silent){return true;}var I=[].slice.call(arguments,0),G=true,D,J=false;if(!this.silent){}var C=this.subscribers.slice(),A=YAHOO.util.Event.throwErrors;for(D=0;D<E;++D){var M=C[D];if(!M){J=true;}else{if(!this.silent){}var L=M.getScope(this.scope);if(this.signature==YAHOO.util.CustomEvent.FLAT){var B=null;if(I.length>0){B=I[0];}try{G=M.fn.call(L,B,M.obj);}catch(F){this.lastError=F;if(A){throw F;}}}else{try{G=M.fn.call(L,this.type,I,M.obj);}catch(H){this.lastError=H;if(A){throw H;}}}if(false===G){if(!this.silent){}break;}}}return(G!==false);},unsubscribeAll:function(){for(var A=this.subscribers.length-1;A>-1;A--){this._delete(A);}this.subscribers=[];return A;},_delete:function(A){var B=this.subscribers[A];if(B){delete B.fn;delete B.obj;}this.subscribers.splice(A,1);},toString:function(){return"CustomEvent: "+"'"+this.type+"', "+"scope: "+this.scope;}};YAHOO.util.Subscriber=function(B,C,A){this.fn=B;this.obj=YAHOO.lang.isUndefined(C)?null:C;this.override=A;};YAHOO.util.Subscriber.prototype.getScope=function(A){if(this.override){if(this.override===true){return this.obj;}else{return this.override;}}return A;};YAHOO.util.Subscriber.prototype.contains=function(A,B){if(B){return(this.fn==A&&this.obj==B);}else{return(this.fn==A);}};YAHOO.util.Subscriber.prototype.toString=function(){return"Subscriber { obj: "+this.obj+", override: "+(this.override||"no")+" }";};if(!YAHOO.util.Event){YAHOO.util.Event=function(){var H=false;var I=[];var J=[];var G=[];var E=[];var C=0;var F=[];var B=[];var A=0;var D={63232:38,63233:40,63234:37,63235:39,63276:33,63277:34,25:9};var K=YAHOO.env.ua.ie?"focusin":"focus";var L=YAHOO.env.ua.ie?"focusout":"blur";return{POLL_RETRYS:2000,POLL_INTERVAL:20,EL:0,TYPE:1,FN:2,WFN:3,UNLOAD_OBJ:3,ADJ_SCOPE:4,OBJ:5,OVERRIDE:6,CAPTURE:7,lastError:null,isSafari:YAHOO.env.ua.webkit,webkit:YAHOO.env.ua.webkit,isIE:YAHOO.env.ua.ie,_interval:null,_dri:null,DOMReady:false,throwErrors:false,startInterval:function(){if(!this._interval){var M=this;var N=function(){M._tryPreloadAttach();};this._interval=setInterval(N,this.POLL_INTERVAL);}},onAvailable:function(R,O,S,Q,P){var M=(YAHOO.lang.isString(R))?[R]:R;for(var N=0;N<M.length;N=N+1){F.push({id:M[N],fn:O,obj:S,override:Q,checkReady:P});}C=this.POLL_RETRYS;this.startInterval();},onContentReady:function(O,M,P,N){this.onAvailable(O,M,P,N,true);},onDOMReady:function(M,O,N){if(this.DOMReady){setTimeout(function(){var P=window;if(N){if(N===true){P=O;}else{P=N;}}M.call(P,"DOMReady",[],O);},0);}else{this.DOMReadyEvent.subscribe(M,O,N);}},_addListener:function(O,M,X,S,N,a){if(!X||!X.call){return false;}if(this._isValidCollection(O)){var Y=true;for(var T=0,V=O.length;T<V;++T){Y=this._addListener(O[T],M,X,S,N,a)&&Y;}return Y;}else{if(YAHOO.lang.isString(O)){var R=this.getEl(O);if(R){O=R;}else{this.onAvailable(O,function(){YAHOO.util.Event._addListener(O,M,X,S,N,a);});return true;}}}if(!O){return false;}if("unload"==M&&S!==this){J[J.length]=[O,M,X,S,N,a];return true;}var b=O;if(N){if(N===true){b=S;}else{b=N;}}var P=function(c){return X.call(b,YAHOO.util.Event.getEvent(c,O),S);};var Z=[O,M,X,P,b,S,N,a];var U=I.length;I[U]=Z;if(this.useLegacyEvent(O,M)){var Q=this.getLegacyIndex(O,M);if(Q==-1||O!=G[Q][0]){Q=G.length;B[O.id+M]=Q;G[Q]=[O,M,O["on"+M]];E[Q]=[];O["on"+M]=function(c){YAHOO.util.Event.fireLegacyEvent(YAHOO.util.Event.getEvent(c),Q);};}E[Q].push(Z);}else{try{this._simpleAdd(O,M,P,a);}catch(W){this.lastError=W;this._removeListener(O,M,X,a);return false;}}return true;},addListener:function(O,Q,N,P,M){return this._addListener(O,Q,N,P,M,false);},addFocusListener:function(O,N,P,M){return this._addListener(O,K,N,P,M,true);},removeFocusListener:function(N,M){return this._removeListener(N,K,M,true);},addBlurListener:function(O,N,P,M){return this._addListener(O,L,N,P,M,true);},removeBlurListener:function(N,M){return this._removeListener(N,L,M,true);},fireLegacyEvent:function(Q,O){var S=true,M,U,T,V,R;U=E[O].slice();for(var N=0,P=U.length;N<P;++N){T=U[N];if(T&&T[this.WFN]){V=T[this.ADJ_SCOPE];R=T[this.WFN].call(V,Q);S=(S&&R);}}M=G[O];if(M&&M[2]){M[2](Q);}return S;},getLegacyIndex:function(N,O){var M=this.generateId(N)+O;if(typeof B[M]=="undefined"){return -1;}else{return B[M];}},useLegacyEvent:function(M,N){return(this.webkit&&this.webkit<419&&("click"==N||"dblclick"==N));},_removeListener:function(N,M,V,Y){var Q,T,X;if(typeof N=="string"){N=this.getEl(N);}else{if(this._isValidCollection(N)){var W=true;for(Q=N.length-1;Q>-1;Q--){W=(this._removeListener(N[Q],M,V,Y)&&W);}return W;}}if(!V||!V.call){return this.purgeElement(N,false,M);}if("unload"==M){for(Q=J.length-1;Q>-1;Q--){X=J[Q];if(X&&X[0]==N&&X[1]==M&&X[2]==V){J.splice(Q,1);return true;}}return false;}var R=null;var S=arguments[4];if("undefined"===typeof S){S=this._getCacheIndex(N,M,V);}if(S>=0){R=I[S];}if(!N||!R){return false;}if(this.useLegacyEvent(N,M)){var P=this.getLegacyIndex(N,M);var O=E[P];if(O){for(Q=0,T=O.length;Q<T;++Q){X=O[Q];if(X&&X[this.EL]==N&&X[this.TYPE]==M&&X[this.FN]==V){O.splice(Q,1);break;}}}}else{try{this._simpleRemove(N,M,R[this.WFN],Y);}catch(U){this.lastError=U;return false;}}delete I[S][this.WFN];delete I[S][this.FN];
-I.splice(S,1);return true;},removeListener:function(N,O,M){return this._removeListener(N,O,M,false);},getTarget:function(O,N){var M=O.target||O.srcElement;return this.resolveTextNode(M);},resolveTextNode:function(N){try{if(N&&3==N.nodeType){return N.parentNode;}}catch(M){}return N;},getPageX:function(N){var M=N.pageX;if(!M&&0!==M){M=N.clientX||0;if(this.isIE){M+=this._getScrollLeft();}}return M;},getPageY:function(M){var N=M.pageY;if(!N&&0!==N){N=M.clientY||0;if(this.isIE){N+=this._getScrollTop();}}return N;},getXY:function(M){return[this.getPageX(M),this.getPageY(M)];},getRelatedTarget:function(N){var M=N.relatedTarget;if(!M){if(N.type=="mouseout"){M=N.toElement;}else{if(N.type=="mouseover"){M=N.fromElement;}}}return this.resolveTextNode(M);},getTime:function(O){if(!O.time){var N=new Date().getTime();try{O.time=N;}catch(M){this.lastError=M;return N;}}return O.time;},stopEvent:function(M){this.stopPropagation(M);this.preventDefault(M);},stopPropagation:function(M){if(M.stopPropagation){M.stopPropagation();}else{M.cancelBubble=true;}},preventDefault:function(M){if(M.preventDefault){M.preventDefault();}else{M.returnValue=false;}},getEvent:function(O,M){var N=O||window.event;if(!N){var P=this.getEvent.caller;while(P){N=P.arguments[0];if(N&&Event==N.constructor){break;}P=P.caller;}}return N;},getCharCode:function(N){var M=N.keyCode||N.charCode||0;if(YAHOO.env.ua.webkit&&(M in D)){M=D[M];}return M;},_getCacheIndex:function(Q,R,P){for(var O=0,N=I.length;O<N;O=O+1){var M=I[O];if(M&&M[this.FN]==P&&M[this.EL]==Q&&M[this.TYPE]==R){return O;}}return -1;},generateId:function(M){var N=M.id;if(!N){N="yuievtautoid-"+A;++A;M.id=N;}return N;},_isValidCollection:function(N){try{return(N&&typeof N!=="string"&&N.length&&!N.tagName&&!N.alert&&typeof N[0]!=="undefined");}catch(M){return false;}},elCache:{},getEl:function(M){return(typeof M==="string")?document.getElementById(M):M;},clearCache:function(){},DOMReadyEvent:new YAHOO.util.CustomEvent("DOMReady",this),_load:function(N){if(!H){H=true;var M=YAHOO.util.Event;M._ready();M._tryPreloadAttach();}},_ready:function(N){var M=YAHOO.util.Event;if(!M.DOMReady){M.DOMReady=true;M.DOMReadyEvent.fire();M._simpleRemove(document,"DOMContentLoaded",M._ready);}},_tryPreloadAttach:function(){if(F.length===0){C=0;clearInterval(this._interval);this._interval=null;return ;}if(this.locked){return ;}if(this.isIE){if(!this.DOMReady){this.startInterval();return ;}}this.locked=true;var S=!H;if(!S){S=(C>0&&F.length>0);}var R=[];var T=function(V,W){var U=V;if(W.override){if(W.override===true){U=W.obj;}else{U=W.override;}}W.fn.call(U,W.obj);};var N,M,Q,P,O=[];for(N=0,M=F.length;N<M;N=N+1){Q=F[N];if(Q){P=this.getEl(Q.id);if(P){if(Q.checkReady){if(H||P.nextSibling||!S){O.push(Q);F[N]=null;}}else{T(P,Q);F[N]=null;}}else{R.push(Q);}}}for(N=0,M=O.length;N<M;N=N+1){Q=O[N];T(this.getEl(Q.id),Q);}C--;if(S){for(N=F.length-1;N>-1;N--){Q=F[N];if(!Q||!Q.id){F.splice(N,1);}}this.startInterval();}else{clearInterval(this._interval);this._interval=null;}this.locked=false;},purgeElement:function(Q,R,T){var O=(YAHOO.lang.isString(Q))?this.getEl(Q):Q;var S=this.getListeners(O,T),P,M;if(S){for(P=S.length-1;P>-1;P--){var N=S[P];this._removeListener(O,N.type,N.fn,N.capture);}}if(R&&O&&O.childNodes){for(P=0,M=O.childNodes.length;P<M;++P){this.purgeElement(O.childNodes[P],R,T);}}},getListeners:function(O,M){var R=[],N;if(!M){N=[I,J];}else{if(M==="unload"){N=[J];}else{N=[I];}}var T=(YAHOO.lang.isString(O))?this.getEl(O):O;for(var Q=0;Q<N.length;Q=Q+1){var V=N[Q];if(V){for(var S=0,U=V.length;S<U;++S){var P=V[S];if(P&&P[this.EL]===T&&(!M||M===P[this.TYPE])){R.push({type:P[this.TYPE],fn:P[this.FN],obj:P[this.OBJ],adjust:P[this.OVERRIDE],scope:P[this.ADJ_SCOPE],capture:P[this.CAPTURE],index:S});}}}}return(R.length)?R:null;},_unload:function(S){var M=YAHOO.util.Event,P,O,N,R,Q,T=J.slice();for(P=0,R=J.length;P<R;++P){N=T[P];if(N){var U=window;if(N[M.ADJ_SCOPE]){if(N[M.ADJ_SCOPE]===true){U=N[M.UNLOAD_OBJ];}else{U=N[M.ADJ_SCOPE];}}N[M.FN].call(U,M.getEvent(S,N[M.EL]),N[M.UNLOAD_OBJ]);T[P]=null;N=null;U=null;}}J=null;if(I){for(O=I.length-1;O>-1;O--){N=I[O];if(N){M._removeListener(N[M.EL],N[M.TYPE],N[M.FN],N[M.CAPTURE],O);}}N=null;}G=null;M._simpleRemove(window,"unload",M._unload);},_getScrollLeft:function(){return this._getScroll()[1];},_getScrollTop:function(){return this._getScroll()[0];},_getScroll:function(){var M=document.documentElement,N=document.body;if(M&&(M.scrollTop||M.scrollLeft)){return[M.scrollTop,M.scrollLeft];}else{if(N){return[N.scrollTop,N.scrollLeft];}else{return[0,0];}}},regCE:function(){},_simpleAdd:function(){if(window.addEventListener){return function(O,P,N,M){O.addEventListener(P,N,(M));};}else{if(window.attachEvent){return function(O,P,N,M){O.attachEvent("on"+P,N);};}else{return function(){};}}}(),_simpleRemove:function(){if(window.removeEventListener){return function(O,P,N,M){O.removeEventListener(P,N,(M));};}else{if(window.detachEvent){return function(N,O,M){N.detachEvent("on"+O,M);};}else{return function(){};}}}()};}();(function(){var EU=YAHOO.util.Event;EU.on=EU.addListener;EU.onFocus=EU.addFocusListener;EU.onBlur=EU.addBlurListener;
-/* DOMReady: based on work by: Dean Edwards/John Resig/Matthias Miller */
-if(EU.isIE){YAHOO.util.Event.onDOMReady(YAHOO.util.Event._tryPreloadAttach,YAHOO.util.Event,true);var n=document.createElement("p");EU._dri=setInterval(function(){try{n.doScroll("left");clearInterval(EU._dri);EU._dri=null;EU._ready();n=null;}catch(ex){}},EU.POLL_INTERVAL);}else{if(EU.webkit&&EU.webkit<525){EU._dri=setInterval(function(){var rs=document.readyState;if("loaded"==rs||"complete"==rs){clearInterval(EU._dri);EU._dri=null;EU._ready();}},EU.POLL_INTERVAL);}else{EU._simpleAdd(document,"DOMContentLoaded",EU._ready);}}EU._simpleAdd(window,"load",EU._load);EU._simpleAdd(window,"unload",EU._unload);EU._tryPreloadAttach();})();}YAHOO.util.EventProvider=function(){};YAHOO.util.EventProvider.prototype={__yui_events:null,__yui_subscribers:null,subscribe:function(A,C,F,E){this.__yui_events=this.__yui_events||{};
-var D=this.__yui_events[A];if(D){D.subscribe(C,F,E);}else{this.__yui_subscribers=this.__yui_subscribers||{};var B=this.__yui_subscribers;if(!B[A]){B[A]=[];}B[A].push({fn:C,obj:F,override:E});}},unsubscribe:function(C,E,G){this.__yui_events=this.__yui_events||{};var A=this.__yui_events;if(C){var F=A[C];if(F){return F.unsubscribe(E,G);}}else{var B=true;for(var D in A){if(YAHOO.lang.hasOwnProperty(A,D)){B=B&&A[D].unsubscribe(E,G);}}return B;}return false;},unsubscribeAll:function(A){return this.unsubscribe(A);},createEvent:function(G,D){this.__yui_events=this.__yui_events||{};var A=D||{};var I=this.__yui_events;if(I[G]){}else{var H=A.scope||this;var E=(A.silent);var B=new YAHOO.util.CustomEvent(G,H,E,YAHOO.util.CustomEvent.FLAT);I[G]=B;if(A.onSubscribeCallback){B.subscribeEvent.subscribe(A.onSubscribeCallback);}this.__yui_subscribers=this.__yui_subscribers||{};var F=this.__yui_subscribers[G];if(F){for(var C=0;C<F.length;++C){B.subscribe(F[C].fn,F[C].obj,F[C].override);}}}return I[G];},fireEvent:function(E,D,A,C){this.__yui_events=this.__yui_events||{};var G=this.__yui_events[E];if(!G){return null;}var B=[];for(var F=1;F<arguments.length;++F){B.push(arguments[F]);}return G.fire.apply(G,B);},hasEvent:function(A){if(this.__yui_events){if(this.__yui_events[A]){return true;}}return false;}};YAHOO.util.KeyListener=function(A,F,B,C){if(!A){}else{if(!F){}else{if(!B){}}}if(!C){C=YAHOO.util.KeyListener.KEYDOWN;}var D=new YAHOO.util.CustomEvent("keyPressed");this.enabledEvent=new YAHOO.util.CustomEvent("enabled");this.disabledEvent=new YAHOO.util.CustomEvent("disabled");if(typeof A=="string"){A=document.getElementById(A);}if(typeof B=="function"){D.subscribe(B);}else{D.subscribe(B.fn,B.scope,B.correctScope);}function E(J,I){if(!F.shift){F.shift=false;}if(!F.alt){F.alt=false;}if(!F.ctrl){F.ctrl=false;}if(J.shiftKey==F.shift&&J.altKey==F.alt&&J.ctrlKey==F.ctrl){var G;if(F.keys instanceof Array){for(var H=0;H<F.keys.length;H++){G=F.keys[H];if(G==J.charCode){D.fire(J.charCode,J);break;}else{if(G==J.keyCode){D.fire(J.keyCode,J);break;}}}}else{G=F.keys;if(G==J.charCode){D.fire(J.charCode,J);}else{if(G==J.keyCode){D.fire(J.keyCode,J);}}}}}this.enable=function(){if(!this.enabled){YAHOO.util.Event.addListener(A,C,E);this.enabledEvent.fire(F);}this.enabled=true;};this.disable=function(){if(this.enabled){YAHOO.util.Event.removeListener(A,C,E);this.disabledEvent.fire(F);}this.enabled=false;};this.toString=function(){return"KeyListener ["+F.keys+"] "+A.tagName+(A.id?"["+A.id+"]":"");};};YAHOO.util.KeyListener.KEYDOWN="keydown";YAHOO.util.KeyListener.KEYUP="keyup";YAHOO.util.KeyListener.KEY={ALT:18,BACK_SPACE:8,CAPS_LOCK:20,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,META:224,NUM_LOCK:144,PAGE_DOWN:34,PAGE_UP:33,PAUSE:19,PRINTSCREEN:44,RIGHT:39,SCROLL_LOCK:145,SHIFT:16,SPACE:32,TAB:9,UP:38};YAHOO.register("event",YAHOO.util.Event,{version:"2.6.0",build:"1321"});YAHOO.register("yuiloader-dom-event", YAHOO, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/yuiloader/README b/eclipse.org-common/yui/2.6.0/build/yuiloader/README
deleted file mode 100644
index 66fdbdf..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuiloader/README
+++ /dev/null
@@ -1,83 +0,0 @@
-yuiloader - Release Notes
-
-2.6.0
- * Autocomplete requires datasource.
- * Config always used if provided to insert().
- * Added timeout support, which is off by default.  Add a 'timeout'
-   config value greater than zero and an onTimeout handler to use it.
- * Added combo handler support, which is off by default.  Set
-   'combine' to true to use it.
- * Filters are applied to new modules that have a 'fullpath' attribute.
- * resize, editor, simpleeditor, layout, datasource, datatable,
-   cookie, profiler, yuiloader out of beta.
- * Added carousel, paginator
- * Added slider skin.
-
-2.5.2
-  * uploader requires element.
-  * editer supersedes simpleditor.
-  * Optional dependencies are sorted correctly when present even when
-    loadOptional is not specified.
-
-2.5.1
-   * Updated metadata for 2.5.1.
-   * Added the get utility's support for 'insertBefore'.
-   * Added the get utility's support for 'charset'.
-   * Fixed profilerviewer's dependency list.
-   * Increased rollup threshold for reset-fonts-grids so reset-fonts will be 
-     selected when appropriate.
-   * yuiloader supersedes yahoo and get.
-   * Modules now can have an 'after' property that can be used to specify
-     a list of modules that are not dependencies, but need to be included
-     above the module if they are present.
-   * base will always be included after reset, fonts, and grids. Skin css
-     will be included after all of the above.
-   * Added a new rollup: yuiloader-dom-event (yuiloader includes yahoo and get as well).
-   * utilities.js now includes yuiloader and get.
-   * loaded modules which supersede other modules but don't allow automatic 
-     rollup work correctly (the superseded modules won't load).
-   * Addessed a source order issue when logger is included after a component
-     which tries to instantiate it at load time.
-   * The filter property can be set on the instance.
-   * Custom css modules are always sorted below YUI css.
-   * The loader will not attempt to rollup the skin css for custom skinnable modules.
-
-2.5.0
-   * Updated metadata for 2.5.0
-   * (from the get utility) fixed autopurge.
-
-2.4.1
-   * Updated metadata for 2.4.1
-
-2.4.0
-   * NOTE: the API in this release has changed significantly.  Existing implementations
-     will need to be modified in order to use the new version.
-   * yuiloader now includes the yahoo and get components.  This removes the timing
-     problems in the previous versions that forced one to use YAHOO_config or include
-     yahoo.js on the page before yuiloader.
-   * No longer uses YAHOO_config for loading, you must use YAHOO.util.YUILoader
-   * Interacting with YAHOO.register or supplying a verifier function is no longer
-     required to load non-YUI resources.
-   * Supports script sandboxing.  Does not support x-domain sandboxing at this time
-   * removed verifier property, added varName property which is only needed when
-     using external scripts and the application needs to support Safari 2.x.
-   * YUI metadata updates:
-       * Added 'base', 'reset-fonts', 'get', 'json', 'simpleeditor', 'charts, and 'selector'
-       * button and history are no longer beta components.
-       * imageloader promoted from experimental to beta.
-
-2.3.1
-   * The "skin.overrides" property is now applied correctly.  Previously
-     it was looking for "skin.override".
-
-2.3.0
-   * Initial release.  YUILoader can dynamically load the optimized list of dependencies
-     for a given set of requirements.  It is designed to be the only YUI component you
-     need on your page in order to get the library running.  It includes the pieces of YUI
-     that it requires to work.  If you are using yuiloader.js, then you don't need the
-     following:
-
-     yahoo.js
-     get.js
-     
-
diff --git a/eclipse.org-common/yui/2.6.0/build/yuiloader/yuiloader-debug.js b/eclipse.org-common/yui/2.6.0/build/yuiloader/yuiloader-debug.js
deleted file mode 100644
index 7a5d243..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuiloader/yuiloader-debug.js
+++ /dev/null
@@ -1,3677 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The YAHOO object is the single global object used by YUI Library.  It
- * contains utility function for setting up namespaces, inheritance, and
- * logging.  YAHOO.util, YAHOO.widget, and YAHOO.example are namespaces
- * created automatically for and used by the library.
- * @module yahoo
- * @title  YAHOO Global
- */
-
-/**
- * YAHOO_config is not included as part of the library.  Instead it is an 
- * object that can be defined by the implementer immediately before 
- * including the YUI library.  The properties included in this object
- * will be used to configure global properties needed as soon as the 
- * library begins to load.
- * @class YAHOO_config
- * @static
- */
-
-/**
- * A reference to a function that will be executed every time a YAHOO module
- * is loaded.  As parameter, this function will receive the version
- * information for the module. See <a href="YAHOO.env.html#getVersion">
- * YAHOO.env.getVersion</a> for the description of the version data structure.
- * @property listener
- * @type Function
- * @static
- * @default undefined
- */
-
-/**
- * Set to true if the library will be dynamically loaded after window.onload.
- * Defaults to false 
- * @property injecting
- * @type boolean
- * @static
- * @default undefined
- */
-
-/**
- * Instructs the yuiloader component to dynamically load yui components and
- * their dependencies.  See the yuiloader documentation for more information
- * about dynamic loading
- * @property load
- * @static
- * @default undefined
- * @see yuiloader
- */
-
-/**
- * Forces the use of the supplied locale where applicable in the library
- * @property locale
- * @type string
- * @static
- * @default undefined
- */
-
-if (typeof YAHOO == "undefined" || !YAHOO) {
-    /**
-     * The YAHOO global namespace object.  If YAHOO is already defined, the
-     * existing YAHOO object will not be overwritten so that defined
-     * namespaces are preserved.
-     * @class YAHOO
-     * @static
-     */
-    var YAHOO = {};
-}
-
-/**
- * Returns the namespace specified and creates it if it doesn't exist
- * <pre>
- * YAHOO.namespace("property.package");
- * YAHOO.namespace("YAHOO.property.package");
- * </pre>
- * Either of the above would create YAHOO.property, then
- * YAHOO.property.package
- *
- * Be careful when naming packages. Reserved words may work in some browsers
- * and not others. For instance, the following will fail in Safari:
- * <pre>
- * YAHOO.namespace("really.long.nested.namespace");
- * </pre>
- * This fails because "long" is a future reserved word in ECMAScript
- *
- * @method namespace
- * @static
- * @param  {String*} arguments 1-n namespaces to create 
- * @return {Object}  A reference to the last namespace object created
- */
-YAHOO.namespace = function() {
-    var a=arguments, o=null, i, j, d;
-    for (i=0; i<a.length; i=i+1) {
-        d=a[i].split(".");
-        o=YAHOO;
-
-        // YAHOO is implied, so it is ignored if it is included
-        for (j=(d[0] == "YAHOO") ? 1 : 0; j<d.length; j=j+1) {
-            o[d[j]]=o[d[j]] || {};
-            o=o[d[j]];
-        }
-    }
-
-    return o;
-};
-
-/**
- * Uses YAHOO.widget.Logger to output a log message, if the widget is
- * available.
- *
- * @method log
- * @static
- * @param  {String}  msg  The message to log.
- * @param  {String}  cat  The log category for the message.  Default
- *                        categories are "info", "warn", "error", time".
- *                        Custom categories can be used as well. (opt)
- * @param  {String}  src  The source of the the message (opt)
- * @return {Boolean}      True if the log operation was successful.
- */
-YAHOO.log = function(msg, cat, src) {
-    var l=YAHOO.widget.Logger;
-    if(l && l.log) {
-        return l.log(msg, cat, src);
-    } else {
-        return false;
-    }
-};
-
-/**
- * Registers a module with the YAHOO object
- * @method register
- * @static
- * @param {String}   name    the name of the module (event, slider, etc)
- * @param {Function} mainClass a reference to class in the module.  This
- *                             class will be tagged with the version info
- *                             so that it will be possible to identify the
- *                             version that is in use when multiple versions
- *                             have loaded
- * @param {Object}   data      metadata object for the module.  Currently it
- *                             is expected to contain a "version" property
- *                             and a "build" property at minimum.
- */
-YAHOO.register = function(name, mainClass, data) {
-    var mods = YAHOO.env.modules;
-    if (!mods[name]) {
-        mods[name] = { versions:[], builds:[] };
-    }
-    var m=mods[name],v=data.version,b=data.build,ls=YAHOO.env.listeners;
-    m.name = name;
-    m.version = v;
-    m.build = b;
-    m.versions.push(v);
-    m.builds.push(b);
-    m.mainClass = mainClass;
-    // fire the module load listeners
-    for (var i=0;i<ls.length;i=i+1) {
-        ls[i](m);
-    }
-    // label the main class
-    if (mainClass) {
-        mainClass.VERSION = v;
-        mainClass.BUILD = b;
-    } else {
-        YAHOO.log("mainClass is undefined for module " + name, "warn");
-    }
-};
-
-/**
- * YAHOO.env is used to keep track of what is known about the YUI library and
- * the browsing environment
- * @class YAHOO.env
- * @static
- */
-YAHOO.env = YAHOO.env || {
-
-    /**
-     * Keeps the version info for all YUI modules that have reported themselves
-     * @property modules
-     * @type Object[]
-     */
-    modules: [],
-    
-    /**
-     * List of functions that should be executed every time a YUI module
-     * reports itself.
-     * @property listeners
-     * @type Function[]
-     */
-    listeners: []
-};
-
-/**
- * Returns the version data for the specified module:
- *      <dl>
- *      <dt>name:</dt>      <dd>The name of the module</dd>
- *      <dt>version:</dt>   <dd>The version in use</dd>
- *      <dt>build:</dt>     <dd>The build number in use</dd>
- *      <dt>versions:</dt>  <dd>All versions that were registered</dd>
- *      <dt>builds:</dt>    <dd>All builds that were registered.</dd>
- *      <dt>mainClass:</dt> <dd>An object that was was stamped with the
- *                 current version and build. If 
- *                 mainClass.VERSION != version or mainClass.BUILD != build,
- *                 multiple versions of pieces of the library have been
- *                 loaded, potentially causing issues.</dd>
- *       </dl>
- *
- * @method getVersion
- * @static
- * @param {String}  name the name of the module (event, slider, etc)
- * @return {Object} The version info
- */
-YAHOO.env.getVersion = function(name) {
-    return YAHOO.env.modules[name] || null;
-};
-
-/**
- * Do not fork for a browser if it can be avoided.  Use feature detection when
- * you can.  Use the user agent as a last resort.  YAHOO.env.ua stores a version
- * number for the browser engine, 0 otherwise.  This value may or may not map
- * to the version number of the browser using the engine.  The value is 
- * presented as a float so that it can easily be used for boolean evaluation 
- * as well as for looking for a particular range of versions.  Because of this, 
- * some of the granularity of the version info may be lost (e.g., Gecko 1.8.0.9 
- * reports 1.8).
- * @class YAHOO.env.ua
- * @static
- */
-YAHOO.env.ua = function() {
-    var o={
-
-        /**
-         * Internet Explorer version number or 0.  Example: 6
-         * @property ie
-         * @type float
-         */
-        ie:0,
-
-        /**
-         * Opera version number or 0.  Example: 9.2
-         * @property opera
-         * @type float
-         */
-        opera:0,
-
-        /**
-         * Gecko engine revision number.  Will evaluate to 1 if Gecko 
-         * is detected but the revision could not be found. Other browsers
-         * will be 0.  Example: 1.8
-         * <pre>
-         * Firefox 1.0.0.4: 1.7.8   <-- Reports 1.7
-         * Firefox 1.5.0.9: 1.8.0.9 <-- Reports 1.8
-         * Firefox 2.0.0.3: 1.8.1.3 <-- Reports 1.8
-         * Firefox 3 alpha: 1.9a4   <-- Reports 1.9
-         * </pre>
-         * @property gecko
-         * @type float
-         */
-        gecko:0,
-
-        /**
-         * AppleWebKit version.  KHTML browsers that are not WebKit browsers 
-         * will evaluate to 1, other browsers 0.  Example: 418.9.1
-         * <pre>
-         * Safari 1.3.2 (312.6): 312.8.1 <-- Reports 312.8 -- currently the 
-         *                                   latest available for Mac OSX 10.3.
-         * Safari 2.0.2:         416     <-- hasOwnProperty introduced
-         * Safari 2.0.4:         418     <-- preventDefault fixed
-         * Safari 2.0.4 (419.3): 418.9.1 <-- One version of Safari may run
-         *                                   different versions of webkit
-         * Safari 2.0.4 (419.3): 419     <-- Tiger installations that have been
-         *                                   updated, but not updated
-         *                                   to the latest patch.
-         * Webkit 212 nightly:   522+    <-- Safari 3.0 precursor (with native SVG
-         *                                   and many major issues fixed).  
-         * 3.x yahoo.com, flickr:422     <-- Safari 3.x hacks the user agent
-         *                                   string when hitting yahoo.com and 
-         *                                   flickr.com.
-         * Safari 3.0.4 (523.12):523.12  <-- First Tiger release - automatic update
-         *                                   from 2.x via the 10.4.11 OS patch
-         * Webkit nightly 1/2008:525+    <-- Supports DOMContentLoaded event.
-         *                                   yahoo.com user agent hack removed.
-         *                                   
-         * </pre>
-         * http://developer.apple.com/internet/safari/uamatrix.html
-         * @property webkit
-         * @type float
-         */
-        webkit: 0,
-
-        /**
-         * The mobile property will be set to a string containing any relevant
-         * user agent information when a modern mobile browser is detected.
-         * Currently limited to Safari on the iPhone/iPod Touch, Nokia N-series
-         * devices with the WebKit-based browser, and Opera Mini.  
-         * @property mobile 
-         * @type string
-         */
-        mobile: null,
-
-        /**
-         * Adobe AIR version number or 0.  Only populated if webkit is detected.
-         * Example: 1.0
-         * @property air
-         * @type float
-         */
-        air: 0
-
-    };
-
-    var ua=navigator.userAgent, m;
-
-    // Modern KHTML browsers should qualify as Safari X-Grade
-    if ((/KHTML/).test(ua)) {
-        o.webkit=1;
-    }
-    // Modern WebKit browsers are at least X-Grade
-    m=ua.match(/AppleWebKit\/([^\s]*)/);
-    if (m&&m[1]) {
-        o.webkit=parseFloat(m[1]);
-
-        // Mobile browser check
-        if (/ Mobile\//.test(ua)) {
-            o.mobile = "Apple"; // iPhone or iPod Touch
-        } else {
-            m=ua.match(/NokiaN[^\/]*/);
-            if (m) {
-                o.mobile = m[0]; // Nokia N-series, ex: NokiaN95
-            }
-        }
-
-        m=ua.match(/AdobeAIR\/([^\s]*)/);
-        if (m) {
-            o.air = m[0]; // Adobe AIR 1.0 or better
-        }
-
-    }
-
-    if (!o.webkit) { // not webkit
-        // @todo check Opera/8.01 (J2ME/MIDP; Opera Mini/2.0.4509/1316; fi; U; ssr)
-        m=ua.match(/Opera[\s\/]([^\s]*)/);
-        if (m&&m[1]) {
-            o.opera=parseFloat(m[1]);
-            m=ua.match(/Opera Mini[^;]*/);
-            if (m) {
-                o.mobile = m[0]; // ex: Opera Mini/2.0.4509/1316
-            }
-        } else { // not opera or webkit
-            m=ua.match(/MSIE\s([^;]*)/);
-            if (m&&m[1]) {
-                o.ie=parseFloat(m[1]);
-            } else { // not opera, webkit, or ie
-                m=ua.match(/Gecko\/([^\s]*)/);
-                if (m) {
-                    o.gecko=1; // Gecko detected, look for revision
-                    m=ua.match(/rv:([^\s\)]*)/);
-                    if (m&&m[1]) {
-                        o.gecko=parseFloat(m[1]);
-                    }
-                }
-            }
-        }
-    }
-    
-    return o;
-}();
-
-/*
- * Initializes the global by creating the default namespaces and applying
- * any new configuration information that is detected.  This is the setup
- * for env.
- * @method init
- * @static
- * @private
- */
-(function() {
-    YAHOO.namespace("util", "widget", "example");
-    if ("undefined" !== typeof YAHOO_config) {
-        var l=YAHOO_config.listener,ls=YAHOO.env.listeners,unique=true,i;
-        if (l) {
-            // if YAHOO is loaded multiple times we need to check to see if
-            // this is a new config object.  If it is, add the new component
-            // load listener to the stack
-            for (i=0;i<ls.length;i=i+1) {
-                if (ls[i]==l) {
-                    unique=false;
-                    break;
-                }
-            }
-            if (unique) {
-                ls.push(l);
-            }
-        }
-    }
-})();
-/**
- * Provides the language utilites and extensions used by the library
- * @class YAHOO.lang
- */
-YAHOO.lang = YAHOO.lang || {};
-
-(function() {
-
-var L = YAHOO.lang,
-
-    // ADD = ["toString", "valueOf", "hasOwnProperty"],
-    ADD = ["toString", "valueOf"],
-
-    OB = {
-
-    /**
-     * Determines whether or not the provided object is an array.
-     * Testing typeof/instanceof/constructor of arrays across frame 
-     * boundaries isn't possible in Safari unless you have a reference
-     * to the other frame to test against its Array prototype.  To
-     * handle this case, we test well-known array properties instead.
-     * properties.
-     * @method isArray
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isArray: function(o) { 
-        if (o) {
-           return L.isNumber(o.length) && L.isFunction(o.splice);
-        }
-        return false;
-    },
-
-    /**
-     * Determines whether or not the provided object is a boolean
-     * @method isBoolean
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isBoolean: function(o) {
-        return typeof o === 'boolean';
-    },
-    
-    /**
-     * Determines whether or not the provided object is a function
-     * @method isFunction
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isFunction: function(o) {
-        return typeof o === 'function';
-    },
-        
-    /**
-     * Determines whether or not the provided object is null
-     * @method isNull
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isNull: function(o) {
-        return o === null;
-    },
-        
-    /**
-     * Determines whether or not the provided object is a legal number
-     * @method isNumber
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isNumber: function(o) {
-        return typeof o === 'number' && isFinite(o);
-    },
-      
-    /**
-     * Determines whether or not the provided object is of type object
-     * or function
-     * @method isObject
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */  
-    isObject: function(o) {
-return (o && (typeof o === 'object' || L.isFunction(o))) || false;
-    },
-        
-    /**
-     * Determines whether or not the provided object is a string
-     * @method isString
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isString: function(o) {
-        return typeof o === 'string';
-    },
-        
-    /**
-     * Determines whether or not the provided object is undefined
-     * @method isUndefined
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isUndefined: function(o) {
-        return typeof o === 'undefined';
-    },
-    
- 
-    /**
-     * IE will not enumerate native functions in a derived object even if the
-     * function was overridden.  This is a workaround for specific functions 
-     * we care about on the Object prototype. 
-     * @property _IEEnumFix
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @static
-     * @private
-     */
-    _IEEnumFix: (YAHOO.env.ua.ie) ? function(r, s) {
-            for (var i=0;i<ADD.length;i=i+1) {
-                var fname=ADD[i],f=s[fname];
-                if (L.isFunction(f) && f!=Object.prototype[fname]) {
-                    r[fname]=f;
-                }
-            }
-    } : function(){},
-       
-    /**
-     * Utility to set up the prototype, constructor and superclass properties to
-     * support an inheritance strategy that can chain constructors and methods.
-     * Static members will not be inherited.
-     *
-     * @method extend
-     * @static
-     * @param {Function} subc   the object to modify
-     * @param {Function} superc the object to inherit
-     * @param {Object} overrides  additional properties/methods to add to the
-     *                              subclass prototype.  These will override the
-     *                              matching items obtained from the superclass 
-     *                              if present.
-     */
-    extend: function(subc, superc, overrides) {
-        if (!superc||!subc) {
-            throw new Error("extend failed, please check that " +
-                            "all dependencies are included.");
-        }
-        var F = function() {};
-        F.prototype=superc.prototype;
-        subc.prototype=new F();
-        subc.prototype.constructor=subc;
-        subc.superclass=superc.prototype;
-        if (superc.prototype.constructor == Object.prototype.constructor) {
-            superc.prototype.constructor=superc;
-        }
-    
-        if (overrides) {
-            for (var i in overrides) {
-                if (L.hasOwnProperty(overrides, i)) {
-                    subc.prototype[i]=overrides[i];
-                }
-            }
-
-            L._IEEnumFix(subc.prototype, overrides);
-        }
-    },
-   
-    /**
-     * Applies all properties in the supplier to the receiver if the
-     * receiver does not have these properties yet.  Optionally, one or 
-     * more methods/properties can be specified (as additional 
-     * parameters).  This option will overwrite the property if receiver 
-     * has it already.  If true is passed as the third parameter, all 
-     * properties will be applied and _will_ overwrite properties in 
-     * the receiver.
-     *
-     * @method augmentObject
-     * @static
-     * @since 2.3.0
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @param {String*|boolean}  arguments zero or more properties methods 
-     *        to augment the receiver with.  If none specified, everything
-     *        in the supplier will be used unless it would
-     *        overwrite an existing property in the receiver. If true
-     *        is specified as the third parameter, all properties will
-     *        be applied and will overwrite an existing property in
-     *        the receiver
-     */
-    augmentObject: function(r, s) {
-        if (!s||!r) {
-            throw new Error("Absorb failed, verify dependencies.");
-        }
-        var a=arguments, i, p, override=a[2];
-        if (override && override!==true) { // only absorb the specified properties
-            for (i=2; i<a.length; i=i+1) {
-                r[a[i]] = s[a[i]];
-            }
-        } else { // take everything, overwriting only if the third parameter is true
-            for (p in s) { 
-                if (override || !(p in r)) {
-                    r[p] = s[p];
-                }
-            }
-            
-            L._IEEnumFix(r, s);
-        }
-    },
- 
-    /**
-     * Same as YAHOO.lang.augmentObject, except it only applies prototype properties
-     * @see YAHOO.lang.augmentObject
-     * @method augmentProto
-     * @static
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @param {String*|boolean}  arguments zero or more properties methods 
-     *        to augment the receiver with.  If none specified, everything 
-     *        in the supplier will be used unless it would overwrite an existing 
-     *        property in the receiver.  if true is specified as the third 
-     *        parameter, all properties will be applied and will overwrite an 
-     *        existing property in the receiver
-     */
-    augmentProto: function(r, s) {
-        if (!s||!r) {
-            throw new Error("Augment failed, verify dependencies.");
-        }
-        //var a=[].concat(arguments);
-        var a=[r.prototype,s.prototype];
-        for (var i=2;i<arguments.length;i=i+1) {
-            a.push(arguments[i]);
-        }
-        L.augmentObject.apply(this, a);
-    },
-
-      
-    /**
-     * Returns a simple string representation of the object or array.
-     * Other types of objects will be returned unprocessed.  Arrays
-     * are expected to be indexed.  Use object notation for
-     * associative arrays.
-     * @method dump
-     * @since 2.3.0
-     * @param o {Object} The object to dump
-     * @param d {int} How deep to recurse child objects, default 3
-     * @return {String} the dump result
-     */
-    dump: function(o, d) {
-        var i,len,s=[],OBJ="{...}",FUN="f(){...}",
-            COMMA=', ', ARROW=' => ';
-
-        // Cast non-objects to string
-        // Skip dates because the std toString is what we want
-        // Skip HTMLElement-like objects because trying to dump 
-        // an element will cause an unhandled exception in FF 2.x
-        if (!L.isObject(o)) {
-            return o + "";
-        } else if (o instanceof Date || ("nodeType" in o && "tagName" in o)) {
-            return o;
-        } else if  (L.isFunction(o)) {
-            return FUN;
-        }
-
-        // dig into child objects the depth specifed. Default 3
-        d = (L.isNumber(d)) ? d : 3;
-
-        // arrays [1, 2, 3]
-        if (L.isArray(o)) {
-            s.push("[");
-            for (i=0,len=o.length;i<len;i=i+1) {
-                if (L.isObject(o[i])) {
-                    s.push((d > 0) ? L.dump(o[i], d-1) : OBJ);
-                } else {
-                    s.push(o[i]);
-                }
-                s.push(COMMA);
-            }
-            if (s.length > 1) {
-                s.pop();
-            }
-            s.push("]");
-        // objects {k1 => v1, k2 => v2}
-        } else {
-            s.push("{");
-            for (i in o) {
-                if (L.hasOwnProperty(o, i)) {
-                    s.push(i + ARROW);
-                    if (L.isObject(o[i])) {
-                        s.push((d > 0) ? L.dump(o[i], d-1) : OBJ);
-                    } else {
-                        s.push(o[i]);
-                    }
-                    s.push(COMMA);
-                }
-            }
-            if (s.length > 1) {
-                s.pop();
-            }
-            s.push("}");
-        }
-
-        return s.join("");
-    },
-
-    /**
-     * Does variable substitution on a string. It scans through the string 
-     * looking for expressions enclosed in { } braces. If an expression 
-     * is found, it is used a key on the object.  If there is a space in
-     * the key, the first word is used for the key and the rest is provided
-     * to an optional function to be used to programatically determine the
-     * value (the extra information might be used for this decision). If 
-     * the value for the key in the object, or what is returned from the
-     * function has a string value, number value, or object value, it is 
-     * substituted for the bracket expression and it repeats.  If this
-     * value is an object, it uses the Object's toString() if this has
-     * been overridden, otherwise it does a shallow dump of the key/value
-     * pairs.
-     * @method substitute
-     * @since 2.3.0
-     * @param s {String} The string that will be modified.
-     * @param o {Object} An object containing the replacement values
-     * @param f {Function} An optional function that can be used to
-     *                     process each match.  It receives the key,
-     *                     value, and any extra metadata included with
-     *                     the key inside of the braces.
-     * @return {String} the substituted string
-     */
-    substitute: function (s, o, f) {
-        var i, j, k, key, v, meta, saved=[], token, 
-            DUMP='dump', SPACE=' ', LBRACE='{', RBRACE='}';
-
-
-        for (;;) {
-            i = s.lastIndexOf(LBRACE);
-            if (i < 0) {
-                break;
-            }
-            j = s.indexOf(RBRACE, i);
-            if (i + 1 >= j) {
-                break;
-            }
-
-            //Extract key and meta info 
-            token = s.substring(i + 1, j);
-            key = token;
-            meta = null;
-            k = key.indexOf(SPACE);
-            if (k > -1) {
-                meta = key.substring(k + 1);
-                key = key.substring(0, k);
-            }
-
-            // lookup the value
-            v = o[key];
-
-            // if a substitution function was provided, execute it
-            if (f) {
-                v = f(key, v, meta);
-            }
-
-            if (L.isObject(v)) {
-                if (L.isArray(v)) {
-                    v = L.dump(v, parseInt(meta, 10));
-                } else {
-                    meta = meta || "";
-
-                    // look for the keyword 'dump', if found force obj dump
-                    var dump = meta.indexOf(DUMP);
-                    if (dump > -1) {
-                        meta = meta.substring(4);
-                    }
-
-                    // use the toString if it is not the Object toString 
-                    // and the 'dump' meta info was not found
-                    if (v.toString===Object.prototype.toString||dump>-1) {
-                        v = L.dump(v, parseInt(meta, 10));
-                    } else {
-                        v = v.toString();
-                    }
-                }
-            } else if (!L.isString(v) && !L.isNumber(v)) {
-                // This {block} has no replace string. Save it for later.
-                v = "~-" + saved.length + "-~";
-                saved[saved.length] = token;
-
-                // break;
-            }
-
-            s = s.substring(0, i) + v + s.substring(j + 1);
-
-
-        }
-
-        // restore saved {block}s
-        for (i=saved.length-1; i>=0; i=i-1) {
-            s = s.replace(new RegExp("~-" + i + "-~"), "{"  + saved[i] + "}", "g");
-        }
-
-        return s;
-    },
-
-
-    /**
-     * Returns a string without any leading or trailing whitespace.  If 
-     * the input is not a string, the input will be returned untouched.
-     * @method trim
-     * @since 2.3.0
-     * @param s {string} the string to trim
-     * @return {string} the trimmed string
-     */
-    trim: function(s){
-        try {
-            return s.replace(/^\s+|\s+$/g, "");
-        } catch(e) {
-            return s;
-        }
-    },
-
-    /**
-     * Returns a new object containing all of the properties of
-     * all the supplied objects.  The properties from later objects
-     * will overwrite those in earlier objects.
-     * @method merge
-     * @since 2.3.0
-     * @param arguments {Object*} the objects to merge
-     * @return the new merged object
-     */
-    merge: function() {
-        var o={}, a=arguments;
-        for (var i=0, l=a.length; i<l; i=i+1) {
-            L.augmentObject(o, a[i], true);
-        }
-        return o;
-    },
-
-    /**
-     * Executes the supplied function in the context of the supplied 
-     * object 'when' milliseconds later.  Executes the function a 
-     * single time unless periodic is set to true.
-     * @method later
-     * @since 2.4.0
-     * @param when {int} the number of milliseconds to wait until the fn 
-     * is executed
-     * @param o the context object
-     * @param fn {Function|String} the function to execute or the name of 
-     * the method in the 'o' object to execute
-     * @param data [Array] data that is provided to the function.  This accepts
-     * either a single item or an array.  If an array is provided, the
-     * function is executed with one parameter for each array item.  If
-     * you need to pass a single array parameter, it needs to be wrapped in
-     * an array [myarray]
-     * @param periodic {boolean} if true, executes continuously at supplied 
-     * interval until canceled
-     * @return a timer object. Call the cancel() method on this object to 
-     * stop the timer.
-     */
-    later: function(when, o, fn, data, periodic) {
-        when = when || 0; 
-        o = o || {};
-        var m=fn, d=data, f, r;
-
-        if (L.isString(fn)) {
-            m = o[fn];
-        }
-
-        if (!m) {
-            throw new TypeError("method undefined");
-        }
-
-        if (!L.isArray(d)) {
-            d = [data];
-        }
-
-        f = function() {
-            m.apply(o, d);
-        };
-
-        r = (periodic) ? setInterval(f, when) : setTimeout(f, when);
-
-        return {
-            interval: periodic,
-            cancel: function() {
-                if (this.interval) {
-                    clearInterval(r);
-                } else {
-                    clearTimeout(r);
-                }
-            }
-        };
-    },
-    
-    /**
-     * A convenience method for detecting a legitimate non-null value.
-     * Returns false for null/undefined/NaN, true for other values, 
-     * including 0/false/''
-     * @method isValue
-     * @since 2.3.0
-     * @param o {any} the item to test
-     * @return {boolean} true if it is not null/undefined/NaN || false
-     */
-    isValue: function(o) {
-        // return (o || o === false || o === 0 || o === ''); // Infinity fails
-return (L.isObject(o) || L.isString(o) || L.isNumber(o) || L.isBoolean(o));
-    }
-
-};
-
-/**
- * Determines whether or not the property was added
- * to the object instance.  Returns false if the property is not present
- * in the object, or was inherited from the prototype.
- * This abstraction is provided to enable hasOwnProperty for Safari 1.3.x.
- * There is a discrepancy between YAHOO.lang.hasOwnProperty and
- * Object.prototype.hasOwnProperty when the property is a primitive added to
- * both the instance AND prototype with the same value:
- * <pre>
- * var A = function() {};
- * A.prototype.foo = 'foo';
- * var a = new A();
- * a.foo = 'foo';
- * alert(a.hasOwnProperty('foo')); // true
- * alert(YAHOO.lang.hasOwnProperty(a, 'foo')); // false when using fallback
- * </pre>
- * @method hasOwnProperty
- * @param {any} o The object being testing
- * @param prop {string} the name of the property to test
- * @return {boolean} the result
- */
-L.hasOwnProperty = (Object.prototype.hasOwnProperty) ?
-    function(o, prop) {
-        return o && o.hasOwnProperty(prop);
-    } : function(o, prop) {
-        return !L.isUndefined(o[prop]) && 
-                o.constructor.prototype[prop] !== o[prop];
-    };
-
-// new lang wins
-OB.augmentObject(L, OB, true);
-
-/*
- * An alias for <a href="YAHOO.lang.html">YAHOO.lang</a>
- * @class YAHOO.util.Lang
- */
-YAHOO.util.Lang = L;
- 
-/**
- * Same as YAHOO.lang.augmentObject, except it only applies prototype 
- * properties.  This is an alias for augmentProto.
- * @see YAHOO.lang.augmentObject
- * @method augment
- * @static
- * @param {Function} r  the object to receive the augmentation
- * @param {Function} s  the object that supplies the properties to augment
- * @param {String*|boolean}  arguments zero or more properties methods to 
- *        augment the receiver with.  If none specified, everything
- *        in the supplier will be used unless it would
- *        overwrite an existing property in the receiver.  if true
- *        is specified as the third parameter, all properties will
- *        be applied and will overwrite an existing property in
- *        the receiver
- */
-L.augment = L.augmentProto;
-
-/**
- * An alias for <a href="YAHOO.lang.html#augment">YAHOO.lang.augment</a>
- * @for YAHOO
- * @method augment
- * @static
- * @param {Function} r  the object to receive the augmentation
- * @param {Function} s  the object that supplies the properties to augment
- * @param {String*}  arguments zero or more properties methods to 
- *        augment the receiver with.  If none specified, everything
- *        in the supplier will be used unless it would
- *        overwrite an existing property in the receiver
- */
-YAHOO.augment = L.augmentProto;
-       
-/**
- * An alias for <a href="YAHOO.lang.html#extend">YAHOO.lang.extend</a>
- * @method extend
- * @static
- * @param {Function} subc   the object to modify
- * @param {Function} superc the object to inherit
- * @param {Object} overrides  additional properties/methods to add to the
- *        subclass prototype.  These will override the
- *        matching items obtained from the superclass if present.
- */
-YAHOO.extend = L.extend;
-
-})();
-YAHOO.register("yahoo", YAHOO, {version: "2.6.0", build: "1321"});
-/**
- * Provides a mechanism to fetch remote resources and
- * insert them into a document
- * @module get
- * @requires yahoo
- */
-
-/**
- * Fetches and inserts one or more script or link nodes into the document 
- * @namespace YAHOO.util
- * @class YAHOO.util.Get
- */
-YAHOO.util.Get = function() {
-
-    /**
-     * hash of queues to manage multiple requests
-     * @property queues
-     * @private
-     */
-    var queues={}, 
-        
-    /**
-     * queue index used to generate transaction ids
-     * @property qidx
-     * @type int
-     * @private
-     */
-        qidx=0, 
-        
-    /**
-     * node index used to generate unique node ids
-     * @property nidx
-     * @type int
-     * @private
-     */
-        nidx=0, 
-
-        // ridx=0,
-
-        // sandboxFrame=null,
-
-    /**
-     * interal property used to prevent multiple simultaneous purge 
-     * processes
-     * @property purging
-     * @type boolean
-     * @private
-     */
-        purging=false,
-
-        ua=YAHOO.env.ua, 
-        
-        lang=YAHOO.lang;
-    
-    /** 
-     * Generates an HTML element, this is not appended to a document
-     * @method _node
-     * @param type {string} the type of element
-     * @param attr {string} the attributes
-     * @param win {Window} optional window to create the element in
-     * @return {HTMLElement} the generated node
-     * @private
-     */
-    var _node = function(type, attr, win) {
-        var w = win || window, d=w.document, n=d.createElement(type);
-
-        for (var i in attr) {
-            if (attr[i] && YAHOO.lang.hasOwnProperty(attr, i)) {
-                n.setAttribute(i, attr[i]);
-            }
-        }
-
-        return n;
-    };
-
-    /**
-     * Generates a link node
-     * @method _linkNode
-     * @param url {string} the url for the css file
-     * @param win {Window} optional window to create the node in
-     * @return {HTMLElement} the generated node
-     * @private
-     */
-    var _linkNode = function(url, win, charset) {
-        var c = charset || "utf-8";
-        return _node("link", {
-                "id":      "yui__dyn_" + (nidx++),
-                "type":    "text/css",
-                "charset": c,
-                "rel":     "stylesheet",
-                "href":    url
-            }, win);
-    };
-
-    /**
-     * Generates a script node
-     * @method _scriptNode
-     * @param url {string} the url for the script file
-     * @param win {Window} optional window to create the node in
-     * @return {HTMLElement} the generated node
-     * @private
-     */
-    var _scriptNode = function(url, win, charset) {
-        var c = charset || "utf-8";
-        return _node("script", {
-                "id":      "yui__dyn_" + (nidx++),
-                "type":    "text/javascript",
-                "charset": c,
-                "src":     url
-            }, win);
-    };
-
-    /**
-     * Returns the data payload for callback functions
-     * @method _returnData
-     * @private
-     */
-    var _returnData = function(q, msg) {
-        return {
-                tId: q.tId,
-                win: q.win,
-                data: q.data,
-                nodes: q.nodes,
-                msg: msg,
-                purge: function() {
-                    _purge(this.tId);
-                }
-            };
-    };
-
-    var _get = function(nId, tId) {
-        var q = queues[tId],
-            n = (lang.isString(nId)) ? q.win.document.getElementById(nId) : nId;
-        if (!n) {
-            _fail(tId, "target node not found: " + nId);
-        }
-
-        return n;
-    };
-
-    /*
-     * The request failed, execute fail handler with whatever
-     * was accomplished.  There isn't a failure case at the
-     * moment unless you count aborted transactions
-     * @method _fail
-     * @param id {string} the id of the request
-     * @private
-     */
-    var _fail = function(id, msg) {
-        var q = queues[id];
-        // execute failure callback
-        if (q.onFailure) {
-            var sc=q.scope || q.win;
-            q.onFailure.call(sc, _returnData(q, msg));
-        }
-    };
-
-    /**
-     * The request is complete, so executing the requester's callback
-     * @method _finish
-     * @param id {string} the id of the request
-     * @private
-     */
-    var _finish = function(id) {
-        var q = queues[id];
-        q.finished = true;
-
-        if (q.aborted) {
-            var msg = "transaction " + id + " was aborted";
-            _fail(id, msg);
-            return;
-        }
-
-        // execute success callback
-        if (q.onSuccess) {
-            var sc=q.scope || q.win;
-            q.onSuccess.call(sc, _returnData(q));
-        }
-    };
-
-    /**
-     * Timeout detected
-     * @method _timeout
-     * @param id {string} the id of the request
-     * @private
-     */
-    var _timeout = function(id) {
-        var q = queues[id];
-        if (q.onTimeout) {
-            var sc=q.context || q;
-            q.onTimeout.call(sc, _returnData(q));
-        }
-    };
-
-    /**
-     * Loads the next item for a given request
-     * @method _next
-     * @param id {string} the id of the request
-     * @param loaded {string} the url that was just loaded, if any
-     * @private
-     */
-    var _next = function(id, loaded) {
-        var q = queues[id];
-
-        if (q.timer) {
-            // Y.log('cancel timer');
-            q.timer.cancel();
-        }
-
-        if (q.aborted) {
-            var msg = "transaction " + id + " was aborted";
-            _fail(id, msg);
-            return;
-        }
-
-        if (loaded) {
-            q.url.shift(); 
-            if (q.varName) {
-                q.varName.shift(); 
-            }
-        } else {
-            // This is the first pass: make sure the url is an array
-            q.url = (lang.isString(q.url)) ? [q.url] : q.url;
-            if (q.varName) {
-                q.varName = (lang.isString(q.varName)) ? [q.varName] : q.varName;
-            }
-        }
-
-        var w=q.win, d=w.document, h=d.getElementsByTagName("head")[0], n;
-
-        if (q.url.length === 0) {
-            // Safari 2.x workaround - There is no way to know when 
-            // a script is ready in versions of Safari prior to 3.x.
-            // Adding an extra node reduces the problem, but doesn't
-            // eliminate it completely because the browser executes
-            // them asynchronously. 
-            if (q.type === "script" && ua.webkit && ua.webkit < 420 && 
-                    !q.finalpass && !q.varName) {
-                // Add another script node.  This does not guarantee that the
-                // scripts will execute in order, but it does appear to fix the
-                // problem on fast connections more effectively than using an
-                // arbitrary timeout.  It is possible that the browser does
-                // block subsequent script execution in this case for a limited
-                // time.
-                var extra = _scriptNode(null, q.win, q.charset);
-                extra.innerHTML='YAHOO.util.Get._finalize("' + id + '");';
-                q.nodes.push(extra); h.appendChild(extra);
-
-            } else {
-                _finish(id);
-            }
-
-            return;
-        } 
-
-
-        var url = q.url[0];
-
-        // if the url is undefined, this is probably a trailing comma problem in IE
-        if (!url) {
-            q.url.shift(); 
-            return _next(id);
-        }
-
-
-        if (q.timeout) {
-            // Y.log('create timer');
-            q.timer = lang.later(q.timeout, q, _timeout, id);
-        }
-
-        if (q.type === "script") {
-            n = _scriptNode(url, w, q.charset);
-        } else {
-            n = _linkNode(url, w, q.charset);
-        }
-
-        // track this node's load progress
-        _track(q.type, n, id, url, w, q.url.length);
-
-        // add the node to the queue so we can return it to the user supplied callback
-        q.nodes.push(n);
-
-        // add it to the head or insert it before 'insertBefore'
-        if (q.insertBefore) {
-            var s = _get(q.insertBefore, id);
-            if (s) {
-                s.parentNode.insertBefore(n, s);
-            }
-        } else {
-            h.appendChild(n);
-        }
-        
-
-        // FireFox does not support the onload event for link nodes, so there is
-        // no way to make the css requests synchronous. This means that the css 
-        // rules in multiple files could be applied out of order in this browser
-        // if a later request returns before an earlier one.  Safari too.
-        if ((ua.webkit || ua.gecko) && q.type === "css") {
-            _next(id, url);
-        }
-    };
-
-    /**
-     * Removes processed queues and corresponding nodes
-     * @method _autoPurge
-     * @private
-     */
-    var _autoPurge = function() {
-
-        if (purging) {
-            return;
-        }
-
-        purging = true;
-        for (var i in queues) {
-            var q = queues[i];
-            if (q.autopurge && q.finished) {
-                _purge(q.tId);
-                delete queues[i];
-            }
-        }
-
-        purging = false;
-    };
-
-    /**
-     * Removes the nodes for the specified queue
-     * @method _purge
-     * @private
-     */
-    var _purge = function(tId) {
-        var q=queues[tId];
-        if (q) {
-            var n=q.nodes, l=n.length, d=q.win.document, 
-                h=d.getElementsByTagName("head")[0];
-
-            if (q.insertBefore) {
-                var s = _get(q.insertBefore, tId);
-                if (s) {
-                    h = s.parentNode;
-                }
-            }
-
-            for (var i=0; i<l; i=i+1) {
-                h.removeChild(n[i]);
-            }
-
-            q.nodes = [];
-        }
-    };
-
-    /**
-     * Saves the state for the request and begins loading
-     * the requested urls
-     * @method queue
-     * @param type {string} the type of node to insert
-     * @param url {string} the url to load
-     * @param opts the hash of options for this request
-     * @private
-     */
-    var _queue = function(type, url, opts) {
-
-        var id = "q" + (qidx++);
-        opts = opts || {};
-
-        if (qidx % YAHOO.util.Get.PURGE_THRESH === 0) {
-            _autoPurge();
-        }
-
-        queues[id] = lang.merge(opts, {
-            tId: id,
-            type: type,
-            url: url,
-            finished: false,
-            aborted: false,
-            nodes: []
-        });
-
-        var q = queues[id];
-        q.win = q.win || window;
-        q.scope = q.scope || q.win;
-        q.autopurge = ("autopurge" in q) ? q.autopurge : 
-                      (type === "script") ? true : false;
-
-        lang.later(0, q, _next, id);
-
-        return {
-            tId: id
-        };
-    };
-
-    /**
-     * Detects when a node has been loaded.  In the case of
-     * script nodes, this does not guarantee that contained
-     * script is ready to use.
-     * @method _track
-     * @param type {string} the type of node to track
-     * @param n {HTMLElement} the node to track
-     * @param id {string} the id of the request
-     * @param url {string} the url that is being loaded
-     * @param win {Window} the targeted window
-     * @param qlength the number of remaining items in the queue,
-     * including this one
-     * @param trackfn {Function} function to execute when finished
-     * the default is _next
-     * @private
-     */
-    var _track = function(type, n, id, url, win, qlength, trackfn) {
-        var f = trackfn || _next;
-
-        // IE supports the readystatechange event for script and css nodes
-        if (ua.ie) {
-            n.onreadystatechange = function() {
-                var rs = this.readyState;
-                if ("loaded" === rs || "complete" === rs) {
-                    n.onreadystatechange = null;
-                    f(id, url);
-                }
-            };
-
-        // webkit prior to 3.x is problemmatic
-        } else if (ua.webkit) {
-
-            if (type === "script") {
-
-                // Safari 3.x supports the load event for script nodes (DOM2)
-                if (ua.webkit >= 420) {
-
-                    n.addEventListener("load", function() {
-                        f(id, url);
-                    });
-
-                // Nothing can be done with Safari < 3.x except to pause and hope
-                // for the best, particularly after last script is inserted. The
-                // scripts will always execute in the order they arrive, not
-                // necessarily the order in which they were inserted.  To support
-                // script nodes with complete reliability in these browsers, script
-                // nodes either need to invoke a function in the window once they
-                // are loaded or the implementer needs to provide a well-known
-                // property that the utility can poll for.
-                } else {
-                    // Poll for the existence of the named variable, if it
-                    // was supplied.
-                    var q = queues[id];
-                    if (q.varName) {
-                        var freq=YAHOO.util.Get.POLL_FREQ;
-                        q.maxattempts = YAHOO.util.Get.TIMEOUT/freq;
-                        q.attempts = 0;
-                        q._cache = q.varName[0].split(".");
-                        q.timer = lang.later(freq, q, function(o) {
-                            var a=this._cache, l=a.length, w=this.win, i;
-                            for (i=0; i<l; i=i+1) {
-                                w = w[a[i]];
-                                if (!w) {
-                                    // if we have exausted our attempts, give up
-                                    this.attempts++;
-                                    if (this.attempts++ > this.maxattempts) {
-                                        var msg = "Over retry limit, giving up";
-                                        q.timer.cancel();
-                                        _fail(id, msg);
-                                    } else {
-                                    }
-                                    return;
-                                }
-                            }
-                            
-
-                            q.timer.cancel();
-                            f(id, url);
-
-                        }, null, true);
-                    } else {
-                        lang.later(YAHOO.util.Get.POLL_FREQ, null, f, [id, url]);
-                    }
-                }
-            } 
-
-        // FireFox and Opera support onload (but not DOM2 in FF) handlers for
-        // script nodes.  Opera, but not FF, supports the onload event for link
-        // nodes.
-        } else { 
-            n.onload = function() {
-                f(id, url);
-            };
-        }
-    };
-
-    return {
-
-        /**
-         * The default poll freqency in ms, when needed
-         * @property POLL_FREQ
-         * @static
-         * @type int
-         * @default 10
-         */
-        POLL_FREQ: 10,
-
-        /**
-         * The number of request required before an automatic purge.
-         * property PURGE_THRESH
-         * @static
-         * @type int
-         * @default 20
-         */
-        PURGE_THRESH: 20,
-
-        /**
-         * The length time to poll for varName when loading a script in
-         * Safari 2.x before the transaction fails.
-         * property TIMEOUT
-         * @static
-         * @type int
-         * @default 2000
-         */
-        TIMEOUT: 2000,
-        
-        /**
-         * Called by the the helper for detecting script load in Safari
-         * @method _finalize
-         * @param id {string} the transaction id
-         * @private
-         */
-        _finalize: function(id) {
-            lang.later(0, null, _finish, id);
-        },
-
-        /**
-         * Abort a transaction
-         * @method abort
-         * @param {string|object} either the tId or the object returned from
-         * script() or css()
-         */
-        abort: function(o) {
-            var id = (lang.isString(o)) ? o : o.tId;
-            var q = queues[id];
-            if (q) {
-                q.aborted = true;
-            }
-        }, 
-
-        /**
-         * Fetches and inserts one or more script nodes into the head
-         * of the current document or the document in a specified window.
-         *
-         * @method script
-         * @static
-         * @param url {string|string[]} the url or urls to the script(s)
-         * @param opts {object} Options: 
-         * <dl>
-         * <dt>onSuccess</dt>
-         * <dd>
-         * callback to execute when the script(s) are finished loading
-         * The callback receives an object back with the following
-         * data:
-         * <dl>
-         * <dt>win</dt>
-         * <dd>the window the script(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove the nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>onFailure</dt>
-         * <dd>
-         * callback to execute when the script load operation fails
-         * The callback receives an object back with the following
-         * data:
-         * <dl>
-         * <dt>win</dt>
-         * <dd>the window the script(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted successfully</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove any nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>onTimeout</dt>
-         * <dd>
-         * callback to execute when a timeout occurs.
-         * The callback receives an object back with the following
-         * data:
-         * <dl>
-         * <dt>win</dt>
-         * <dd>the window the script(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove the nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>scope</dt>
-         * <dd>the execution context for the callbacks</dd>
-         * <dt>win</dt>
-         * <dd>a window other than the one the utility occupies</dd>
-         * <dt>autopurge</dt>
-         * <dd>
-         * setting to true will let the utilities cleanup routine purge 
-         * the script once loaded
-         * </dd>
-         * <dt>data</dt>
-         * <dd>
-         * data that is supplied to the callback when the script(s) are
-         * loaded.
-         * </dd>
-         * <dt>varName</dt>
-         * <dd>
-         * variable that should be available when a script is finished
-         * loading.  Used to help Safari 2.x and below with script load 
-         * detection.  The type of this property should match what was
-         * passed into the url parameter: if loading a single url, a
-         * string can be supplied.  If loading multiple scripts, you
-         * must supply an array that contains the variable name for
-         * each script.
-         * </dd>
-         * <dt>insertBefore</dt>
-         * <dd>node or node id that will become the new node's nextSibling</dd>
-         * </dl>
-         * <dt>charset</dt>
-         * <dd>Node charset, default utf-8</dd>
-         * <dt>timeout</dt>
-         * <dd>Number of milliseconds to wait before aborting and firing the timeout event</dd>
-         * <pre>
-         * // assumes yahoo, dom, and event are already on the page
-         * &nbsp;&nbsp;YAHOO.util.Get.script(
-         * &nbsp;&nbsp;["http://yui.yahooapis.com/2.3.1/build/dragdrop/dragdrop-min.js",
-         * &nbsp;&nbsp;&nbsp;"http://yui.yahooapis.com/2.3.1/build/animation/animation-min.js"], &#123;
-         * &nbsp;&nbsp;&nbsp;&nbsp;onSuccess: function(o) &#123;
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;new YAHOO.util.DDProxy("dd1"); // also new o.reference("dd1"); would work
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this.log("won't cause error because YAHOO is the scope");
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this.log(o.nodes.length === 2) // true
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// o.purge(); // optionally remove the script nodes immediately
-         * &nbsp;&nbsp;&nbsp;&nbsp;&#125;,
-         * &nbsp;&nbsp;&nbsp;&nbsp;onFailure: function(o) &#123;
-         * &nbsp;&nbsp;&nbsp;&nbsp;&#125;,
-         * &nbsp;&nbsp;&nbsp;&nbsp;data: "foo",
-         * &nbsp;&nbsp;&nbsp;&nbsp;timeout: 10000, // 10 second timeout
-         * &nbsp;&nbsp;&nbsp;&nbsp;scope: YAHOO,
-         * &nbsp;&nbsp;&nbsp;&nbsp;// win: otherframe // target another window/frame
-         * &nbsp;&nbsp;&nbsp;&nbsp;autopurge: true // allow the utility to choose when to remove the nodes
-         * &nbsp;&nbsp;&#125;);
-         * </pre>
-         * @return {tId: string} an object containing info about the transaction
-         */
-        script: function(url, opts) { return _queue("script", url, opts); },
-
-        /**
-         * Fetches and inserts one or more css link nodes into the 
-         * head of the current document or the document in a specified
-         * window.
-         * @method css
-         * @static
-         * @param url {string} the url or urls to the css file(s)
-         * @param opts Options: 
-         * <dl>
-         * <dt>onSuccess</dt>
-         * <dd>
-         * callback to execute when the css file(s) are finished loading
-         * The callback receives an object back with the following
-         * data:
-         * <dl>win</dl>
-         * <dd>the window the link nodes(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove the nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>scope</dt>
-         * <dd>the execution context for the callbacks</dd>
-         * <dt>win</dt>
-         * <dd>a window other than the one the utility occupies</dd>
-         * <dt>data</dt>
-         * <dd>
-         * data that is supplied to the callbacks when the nodes(s) are
-         * loaded.
-         * </dd>
-         * <dt>insertBefore</dt>
-         * <dd>node or node id that will become the new node's nextSibling</dd>
-         * <dt>charset</dt>
-         * <dd>Node charset, default utf-8</dd>
-         * </dl>
-         * <pre>
-         *      YAHOO.util.Get.css("http://yui.yahooapis.com/2.3.1/build/menu/assets/skins/sam/menu.css");
-         * </pre>
-         * <pre>
-         *      YAHOO.util.Get.css(["http://yui.yahooapis.com/2.3.1/build/menu/assets/skins/sam/menu.css",
-         * </pre>
-         * @return {tId: string} an object containing info about the transaction
-         */
-        css: function(url, opts) {
-            return _queue("css", url, opts); 
-        }
-    };
-}();
-
-YAHOO.register("get", YAHOO.util.Get, {version: "2.6.0", build: "1321"});
-/**
- * Provides dynamic loading for the YUI library.  It includes the dependency
- * info for the library, and will automatically pull in dependencies for
- * the modules requested.  It supports rollup files (such as utilities.js
- * and yahoo-dom-event.js), and will automatically use these when
- * appropriate in order to minimize the number of http connections
- * required to load all of the dependencies.
- * 
- * @module yuiloader
- * @namespace YAHOO.util
- */
-
-/**
- * YUILoader provides dynamic loading for YUI.
- * @class YAHOO.util.YUILoader
- * @todo
- *      version management, automatic sandboxing
- */
-(function() {
-
-    var Y=YAHOO, util=Y.util, lang=Y.lang, env=Y.env,
-        PROV = "_provides", SUPER = "_supersedes",
-        REQ = "expanded", AFTER = "_after";
- 
-    var YUI = {
-
-        dupsAllowed: {'yahoo': true, 'get': true},
-
-        /*
-         * The library metadata for the current release  The is the default
-         * value for YAHOO.util.YUILoader.moduleInfo
-         * @property YUIInfo
-         * @static
-         */
-        info: {
-
-    // 'root': '2.5.2/build/',
-    // 'base': 'http://yui.yahooapis.com/2.5.2/build/',
-
-    'root': '2.6.0/build/',
-    'base': 'http://yui.yahooapis.com/2.6.0/build/',
-
-    'comboBase': 'http://yui.yahooapis.com/combo?',
-
-    'skin': {
-        'defaultSkin': 'sam',
-        'base': 'assets/skins/',
-        'path': 'skin.css',
-        'after': ['reset', 'fonts', 'grids', 'base'],
-        'rollup': 3
-    },
-
-    dupsAllowed: ['yahoo', 'get'],
-
-    'moduleInfo': {
-
-        'animation': {
-            'type': 'js',
-            'path': 'animation/animation-min.js',
-            'requires': ['dom', 'event']
-        },
-
-        'autocomplete': {
-            'type': 'js',
-            'path': 'autocomplete/autocomplete-min.js',
-            'requires': ['dom', 'event', 'datasource'],
-            'optional': ['connection', 'animation'],
-            'skinnable': true
-        },
-
-        'base': {
-            'type': 'css',
-            'path': 'base/base-min.css',
-            'after': ['reset', 'fonts', 'grids']
-        },
-
-        'button': {
-            'type': 'js',
-            'path': 'button/button-min.js',
-            'requires': ['element'],
-            'optional': ['menu'],
-            'skinnable': true
-        },
-
-        'calendar': {
-            'type': 'js',
-            'path': 'calendar/calendar-min.js',
-            'requires': ['event', 'dom'],
-            'skinnable': true
-        },
-
-        'carousel': {
-            'type': 'js',
-            'path': 'carousel/carousel-beta-min.js',
-            'requires': ['element'],
-            'optional': ['animation'],
-            'skinnable': true
-        },
-
-        'charts': {
-            'type': 'js',
-            'path': 'charts/charts-experimental-min.js',
-            'requires': ['element', 'json', 'datasource']
-        },
-
-        'colorpicker': {
-            'type': 'js',
-            'path': 'colorpicker/colorpicker-min.js',
-            'requires': ['slider', 'element'],
-            'optional': ['animation'],
-            'skinnable': true
-        },
-
-        'connection': {
-            'type': 'js',
-            'path': 'connection/connection-min.js',
-            'requires': ['event']
-        },
-
-        'container': {
-            'type': 'js',
-            'path': 'container/container-min.js',
-            'requires': ['dom', 'event'],
-            // button is also optional, but this creates a circular 
-            // dependency when loadOptional is specified.  button
-            // optionally includes menu, menu requires container.
-            'optional': ['dragdrop', 'animation', 'connection'],
-            'supersedes': ['containercore'],
-            'skinnable': true
-        },
-
-        'containercore': {
-            'type': 'js',
-            'path': 'container/container_core-min.js',
-            'requires': ['dom', 'event'],
-            'pkg': 'container'
-        },
-
-        'cookie': {
-            'type': 'js',
-            'path': 'cookie/cookie-min.js',
-            'requires': ['yahoo']
-        },
-
-        'datasource': {
-            'type': 'js',
-            'path': 'datasource/datasource-min.js',
-            'requires': ['event'],
-            'optional': ['connection']
-        },
-
-        'datatable': {
-            'type': 'js',
-            'path': 'datatable/datatable-min.js',
-            'requires': ['element', 'datasource'],
-            'optional': ['calendar', 'dragdrop', 'paginator'],
-            'skinnable': true
-        },
-
-        'dom': {
-            'type': 'js',
-            'path': 'dom/dom-min.js',
-            'requires': ['yahoo']
-        },
-
-        'dragdrop': {
-            'type': 'js',
-            'path': 'dragdrop/dragdrop-min.js',
-            'requires': ['dom', 'event']
-        },
-
-        'editor': {
-            'type': 'js',
-            'path': 'editor/editor-min.js',
-            'requires': ['menu', 'element', 'button'],
-            'optional': ['animation', 'dragdrop'],
-            'supersedes': ['simpleeditor'],
-            'skinnable': true
-        },
-
-        'element': {
-            'type': 'js',
-            'path': 'element/element-beta-min.js',
-            'requires': ['dom', 'event']
-        },
-
-        'event': {
-            'type': 'js',
-            'path': 'event/event-min.js',
-            'requires': ['yahoo']
-        },
-
-        'fonts': {
-            'type': 'css',
-            'path': 'fonts/fonts-min.css'
-        },
-
-        'get': {
-            'type': 'js',
-            'path': 'get/get-min.js',
-            'requires': ['yahoo']
-        },
-
-        'grids': {
-            'type': 'css',
-            'path': 'grids/grids-min.css',
-            'requires': ['fonts'],
-            'optional': ['reset']
-        },
-
-        'history': {
-            'type': 'js',
-            'path': 'history/history-min.js',
-            'requires': ['event']
-        },
-
-         'imagecropper': {
-             'type': 'js',
-             'path': 'imagecropper/imagecropper-beta-min.js',
-             'requires': ['dom', 'event', 'dragdrop', 'element', 'resize'],
-             'skinnable': true
-         },
-
-         'imageloader': {
-            'type': 'js',
-            'path': 'imageloader/imageloader-min.js',
-            'requires': ['event', 'dom']
-         },
-
-         'json': {
-            'type': 'js',
-            'path': 'json/json-min.js',
-            'requires': ['yahoo']
-         },
-
-         'layout': {
-             'type': 'js',
-             'path': 'layout/layout-min.js',
-             'requires': ['dom', 'event', 'element'],
-             'optional': ['animation', 'dragdrop', 'resize', 'selector'],
-             'skinnable': true
-         }, 
-
-        'logger': {
-            'type': 'js',
-            'path': 'logger/logger-min.js',
-            'requires': ['event', 'dom'],
-            'optional': ['dragdrop'],
-            'skinnable': true
-        },
-
-        'menu': {
-            'type': 'js',
-            'path': 'menu/menu-min.js',
-            'requires': ['containercore'],
-            'skinnable': true
-        },
-
-        'paginator': {
-            'type': 'js',
-            'path': 'paginator/paginator-min.js',
-            'requires': ['element'],
-            'skinnable': true
-        },
-
-        'profiler': {
-            'type': 'js',
-            'path': 'profiler/profiler-min.js',
-            'requires': ['yahoo']
-        },
-
-
-        'profilerviewer': {
-            'type': 'js',
-            'path': 'profilerviewer/profilerviewer-beta-min.js',
-            'requires': ['profiler', 'yuiloader', 'element'],
-            'skinnable': true
-        },
-
-        'reset': {
-            'type': 'css',
-            'path': 'reset/reset-min.css'
-        },
-
-        'reset-fonts-grids': {
-            'type': 'css',
-            'path': 'reset-fonts-grids/reset-fonts-grids.css',
-            'supersedes': ['reset', 'fonts', 'grids', 'reset-fonts'],
-            'rollup': 4
-        },
-
-        'reset-fonts': {
-            'type': 'css',
-            'path': 'reset-fonts/reset-fonts.css',
-            'supersedes': ['reset', 'fonts'],
-            'rollup': 2
-        },
-
-         'resize': {
-             'type': 'js',
-             'path': 'resize/resize-min.js',
-             'requires': ['dom', 'event', 'dragdrop', 'element'],
-             'optional': ['animation'],
-             'skinnable': true
-         },
-
-        'selector': {
-            'type': 'js',
-            'path': 'selector/selector-beta-min.js',
-            'requires': ['yahoo', 'dom']
-        },
-
-        'simpleeditor': {
-            'type': 'js',
-            'path': 'editor/simpleeditor-min.js',
-            'requires': ['element'],
-            'optional': ['containercore', 'menu', 'button', 'animation', 'dragdrop'],
-            'skinnable': true,
-            'pkg': 'editor'
-        },
-
-        'slider': {
-            'type': 'js',
-            'path': 'slider/slider-min.js',
-            'requires': ['dragdrop'],
-            'optional': ['animation'],
-            'skinnable': true
-        },
-
-        'tabview': {
-            'type': 'js',
-            'path': 'tabview/tabview-min.js',
-            'requires': ['element'],
-            'optional': ['connection'],
-            'skinnable': true
-        },
-
-        'treeview': {
-            'type': 'js',
-            'path': 'treeview/treeview-min.js',
-            'requires': ['event', 'dom'],
-            'skinnable': true
-        },
-
-        'uploader': {
-            'type': 'js',
-            'path': 'uploader/uploader-experimental.js',
-            'requires': ['element']
-        },
-
-        'utilities': {
-            'type': 'js',
-            'path': 'utilities/utilities.js',
-            'supersedes': ['yahoo', 'event', 'dragdrop', 'animation', 'dom', 'connection', 'element', 'yahoo-dom-event', 'get', 'yuiloader', 'yuiloader-dom-event'],
-            'rollup': 8
-        },
-
-        'yahoo': {
-            'type': 'js',
-            'path': 'yahoo/yahoo-min.js'
-        },
-
-        'yahoo-dom-event': {
-            'type': 'js',
-            'path': 'yahoo-dom-event/yahoo-dom-event.js',
-            'supersedes': ['yahoo', 'event', 'dom'],
-            'rollup': 3
-        },
-
-        'yuiloader': {
-            'type': 'js',
-            'path': 'yuiloader/yuiloader-min.js',
-            'supersedes': ['yahoo', 'get']
-        },
-
-        'yuiloader-dom-event': {
-            'type': 'js',
-            'path': 'yuiloader-dom-event/yuiloader-dom-event.js',
-            'supersedes': ['yahoo', 'dom', 'event', 'get', 'yuiloader', 'yahoo-dom-event'],
-            'rollup': 5
-        },
-
-        'yuitest': {
-            'type': 'js',
-            'path': 'yuitest/yuitest-min.js',
-            'requires': ['logger'],
-            'skinnable': true
-        }
-    }
-}
- , 
-
-        ObjectUtil: {
-            appendArray: function(o, a) {
-                if (a) {
-                    for (var i=0; i<a.length; i=i+1) {
-                        o[a[i]] = true;
-                    }
-                }
-            },
-
-            keys: function(o, ordered) {
-                var a=[], i;
-                for (i in o) {
-                    if (lang.hasOwnProperty(o, i)) {
-                        a.push(i);
-                    }
-                }
-
-                return a;
-            }
-        },
-
-        ArrayUtil: {
-
-            appendArray: function(a1, a2) {
-                Array.prototype.push.apply(a1, a2);
-                /*
-                for (var i=0; i<a2.length; i=i+1) {
-                    a1.push(a2[i]);
-                }
-                */
-            },
-
-            indexOf: function(a, val) {
-                for (var i=0; i<a.length; i=i+1) {
-                    if (a[i] === val) {
-                        return i;
-                    }
-                }
-
-                return -1;
-            },
-
-            toObject: function(a) {
-                var o = {};
-                for (var i=0; i<a.length; i=i+1) {
-                    o[a[i]] = true;
-                }
-
-                return o;
-            },
-
-            /*
-             * Returns a unique array.  Does not maintain order, which is fine
-             * for this application, and performs better than it would if it
-             * did.
-             */
-            uniq: function(a) {
-                return YUI.ObjectUtil.keys(YUI.ArrayUtil.toObject(a));
-            }
-        }
-    };
-
-    YAHOO.util.YUILoader = function(o) {
-
-        /**
-         * Internal callback to handle multiple internal insert() calls
-         * so that css is inserted prior to js
-         * @property _internalCallback
-         * @private
-         */
-        this._internalCallback = null;
-
-        /**
-         * Use the YAHOO environment listener to detect script load.  This
-         * is only switched on for Safari 2.x and below.
-         * @property _useYahooListener
-         * @private
-         */
-        this._useYahooListener = false;
-
-        /**
-         * Callback that will be executed when the loader is finished
-         * with an insert
-         * @method onSuccess
-         * @type function
-         */
-        this.onSuccess = null;
-
-        /**
-         * Callback that will be executed if there is a failure
-         * @method onFailure
-         * @type function
-         */
-        this.onFailure = Y.log;
-
-        /**
-         * Callback that will be executed each time a new module is loaded
-         * @method onProgress
-         * @type function
-         */
-        this.onProgress = null;
-
-        /**
-         * Callback that will be executed if a timeout occurs
-         * @method onTimeout
-         * @type function
-         */
-        this.onTimeout = null;
-
-        /**
-         * The execution scope for all callbacks
-         * @property scope
-         * @default this
-         */
-        this.scope = this;
-
-        /**
-         * Data that is passed to all callbacks
-         * @property data
-         */
-        this.data = null;
-
-        /**
-         * Node reference or id where new nodes should be inserted before
-         * @property insertBefore
-         * @type string|HTMLElement
-         */
-        this.insertBefore = null;
-
-        /**
-         * The charset attribute for inserted nodes
-         * @property charset
-         * @type string
-         * @default utf-8
-         */
-        this.charset = null;
-
-        /**
-         * The name of the variable in a sandbox or script node 
-         * (for external script support in Safari 2.x and earlier)
-         * to reference when the load is complete.  If this variable 
-         * is not available in the specified scripts, the operation will 
-         * fail.  
-         * @property varName
-         * @type string
-         */
-        this.varName = null;
-
-        /**
-         * The base directory.
-         * @property base
-         * @type string
-         * @default http://yui.yahooapis.com/[YUI VERSION]/build/
-         */
-        this.base = YUI.info.base;
-
-        /**
-         * Base path for the combo service
-         * @property comboBase
-         * @type string
-         * @default http://yui.yahooapis.com/combo?
-         */
-        this.comboBase = YUI.info.comboBase;
-
-        /**
-         * If configured, YUI will use the the combo handler on the
-         * Yahoo! CDN to pontentially reduce the number of http requests
-         * required.
-         * @property combine
-         * @type boolean
-         * @default false
-         */
-        // this.combine = (o && !('base' in o));
-        this.combine = false;
-
-
-        /**
-         * Root path to prepend to module path for the combo
-         * service
-         * @property root
-         * @type string
-         * @default [YUI VERSION]/build/
-         */
-        this.root = YUI.info.root;
-
-        /**
-         * Timeout value in milliseconds.  If set, this value will be used by
-         * the get utility.  the timeout event will fire if
-         * a timeout occurs.
-         * @property timeout
-         * @type int
-         */
-        this.timeout = 0;
-
-        /**
-         * A list of modules that should not be loaded, even if
-         * they turn up in the dependency tree
-         * @property ignore
-         * @type string[]
-         */
-        this.ignore = null;
-
-        /**
-         * A list of modules that should always be loaded, even
-         * if they have already been inserted into the page.
-         * @property force
-         * @type string[]
-         */
-        this.force = null;
-
-        /**
-         * Should we allow rollups
-         * @property allowRollup
-         * @type boolean
-         * @default true
-         */
-        this.allowRollup = true;
-
-        /**
-         * A filter to apply to result urls.  This filter will modify the default
-         * path for all modules.  The default path for the YUI library is the
-         * minified version of the files (e.g., event-min.js).  The filter property
-         * can be a predefined filter or a custom filter.  The valid predefined 
-         * filters are:
-         * <dl>
-         *  <dt>DEBUG</dt>
-         *  <dd>Selects the debug versions of the library (e.g., event-debug.js).
-         *      This option will automatically include the logger widget</dd>
-         *  <dt>RAW</dt>
-         *  <dd>Selects the non-minified version of the library (e.g., event.js).
-         * </dl>
-         * You can also define a custom filter, which must be an object literal 
-         * containing a search expression and a replace string:
-         * <pre>
-         *  myFilter: &#123; 
-         *      'searchExp': "-min\\.js", 
-         *      'replaceStr': "-debug.js"
-         *  &#125;
-         * </pre>
-         * @property filter
-         * @type string|{searchExp: string, replaceStr: string}
-         */
-        this.filter = null;
-
-        /**
-         * The list of requested modules
-         * @property required
-         * @type {string: boolean}
-         */
-        this.required = {};
-
-        /**
-         * The library metadata
-         * @property moduleInfo
-         */
-        this.moduleInfo = lang.merge(YUI.info.moduleInfo);
-
-        /**
-         * List of rollup files found in the library metadata
-         * @property rollups
-         */
-        this.rollups = null;
-
-        /**
-         * Whether or not to load optional dependencies for 
-         * the requested modules
-         * @property loadOptional
-         * @type boolean
-         * @default false
-         */
-        this.loadOptional = false;
-
-        /**
-         * All of the derived dependencies in sorted order, which
-         * will be populated when either calculate() or insert()
-         * is called
-         * @property sorted
-         * @type string[]
-         */
-        this.sorted = [];
-
-        /**
-         * Set when beginning to compute the dependency tree. 
-         * Composed of what YAHOO reports to be loaded combined
-         * with what has been loaded by the tool
-         * @propery loaded
-         * @type {string: boolean}
-         */
-        this.loaded = {};
-
-        /**
-         * Flag to indicate the dependency tree needs to be recomputed
-         * if insert is called again.
-         * @property dirty
-         * @type boolean
-         * @default true
-         */
-        this.dirty = true;
-
-        /**
-         * List of modules inserted by the utility
-         * @property inserted
-         * @type {string: boolean}
-         */
-        this.inserted = {};
-
-        /**
-         * Provides the information used to skin the skinnable components.
-         * The following skin definition would result in 'skin1' and 'skin2'
-         * being loaded for calendar (if calendar was requested), and
-         * 'sam' for all other skinnable components:
-         *
-         *   <code>
-         *   skin: {
-         *
-         *      // The default skin, which is automatically applied if not
-         *      // overriden by a component-specific skin definition.
-         *      // Change this in to apply a different skin globally
-         *      defaultSkin: 'sam', 
-         *
-         *      // This is combined with the loader base property to get
-         *      // the default root directory for a skin. ex:
-         *      // http://yui.yahooapis.com/2.3.0/build/assets/skins/sam/
-         *      base: 'assets/skins/',
-         *
-         *      // The name of the rollup css file for the skin
-         *      path: 'skin.css',
-         *
-         *      // The number of skinnable components requested that are
-         *      // required before using the rollup file rather than the
-         *      // individual component css files
-         *      rollup: 3,
-         *
-         *      // Any component-specific overrides can be specified here,
-         *      // making it possible to load different skins for different
-         *      // components.  It is possible to load more than one skin
-         *      // for a given component as well.
-         *      overrides: {
-         *          calendar: ['skin1', 'skin2']
-         *      }
-         *   }
-         *   </code>
-         *   @property skin
-         */
-
-        var self = this;
-
-        env.listeners.push(function(m) {
-            if (self._useYahooListener) {
-                //Y.log("YAHOO listener: " + m.name);
-                self.loadNext(m.name);
-            }
-        });
-
-        this.skin = lang.merge(YUI.info.skin); 
-
-        this._config(o);
-
-    };
-
-    Y.util.YUILoader.prototype = {
-
-        FILTERS: {
-            RAW: { 
-                'searchExp': "-min\\.js", 
-                'replaceStr': ".js"
-            },
-            DEBUG: { 
-                'searchExp': "-min\\.js", 
-                'replaceStr': "-debug.js"
-            }
-        },
-
-        SKIN_PREFIX: "skin-",
-
-        _config: function(o) {
-
-            // apply config values
-            if (o) {
-                for (var i in o) {
-                    if (lang.hasOwnProperty(o, i)) {
-                        if (i == "require") {
-                            this.require(o[i]);
-                        } else {
-                            this[i] = o[i];
-                        }
-                    }
-                }
-            }
-
-            // fix filter
-            var f = this.filter;
-
-            if (lang.isString(f)) {
-                f = f.toUpperCase();
-
-                // the logger must be available in order to use the debug
-                // versions of the library
-                if (f === "DEBUG") {
-                    this.require("logger");
-                }
-
-                // hack to handle a a bug where LogWriter is being instantiated
-                // at load time, and the loader has no way to sort above it
-                // at the moment.
-                if (!Y.widget.LogWriter) {
-                    Y.widget.LogWriter = function() {
-                        return Y;
-                    };
-                }
-
-                this.filter = this.FILTERS[f];
-            }
-
-        },
-
-        /** Add a new module to the component metadata.         
-         * <dl>
-         *     <dt>name:</dt>       <dd>required, the component name</dd>
-         *     <dt>type:</dt>       <dd>required, the component type (js or css)</dd>
-         *     <dt>path:</dt>       <dd>required, the path to the script from "base"</dd>
-         *     <dt>requires:</dt>   <dd>array of modules required by this component</dd>
-         *     <dt>optional:</dt>   <dd>array of optional modules for this component</dd>
-         *     <dt>supersedes:</dt> <dd>array of the modules this component replaces</dd>
-         *     <dt>after:</dt>      <dd>array of modules the components which, if present, should be sorted above this one</dd>
-         *     <dt>rollup:</dt>     <dd>the number of superseded modules required for automatic rollup</dd>
-         *     <dt>fullpath:</dt>   <dd>If fullpath is specified, this is used instead of the configured base + path</dd>
-         *     <dt>skinnable:</dt>  <dd>flag to determine if skin assets should automatically be pulled in</dd>
-         * </dl>
-         * @method addModule
-         * @param o An object containing the module data
-         * @return {boolean} true if the module was added, false if 
-         * the object passed in did not provide all required attributes
-         */
-        addModule: function(o) {
-
-            if (!o || !o.name || !o.type || (!o.path && !o.fullpath)) {
-                return false;
-            }
-
-            o.ext = ('ext' in o) ? o.ext : true;
-            o.requires = o.requires || [];
-
-            this.moduleInfo[o.name] = o;
-            this.dirty = true;
-
-            return true;
-        },
-
-        /**
-         * Add a requirement for one or more module
-         * @method require
-         * @param what {string[] | string*} the modules to load
-         */
-        require: function(what) {
-            var a = (typeof what === "string") ? arguments : what;
-            this.dirty = true;
-            YUI.ObjectUtil.appendArray(this.required, a);
-        },
-
-        /**
-         * Adds the skin def to the module info
-         * @method _addSkin
-         * @param skin {string} the name of the skin
-         * @param mod {string} the name of the module
-         * @return {string} the module name for the skin
-         * @private
-         */
-        _addSkin: function(skin, mod) {
-
-            // Add a module definition for the skin rollup css
-            var name = this.formatSkin(skin), info = this.moduleInfo,
-                sinf = this.skin, ext = info[mod] && info[mod].ext;
-
-            // Y.log('ext? ' + mod + ": " + ext);
-            if (!info[name]) {
-                // Y.log('adding skin ' + name);
-                this.addModule({
-                    'name': name,
-                    'type': 'css',
-                    'path': sinf.base + skin + '/' + sinf.path,
-                    //'supersedes': '*',
-                    'after': sinf.after,
-                    'rollup': sinf.rollup,
-                    'ext': ext
-                });
-            }
-
-            // Add a module definition for the module-specific skin css
-            if (mod) {
-                name = this.formatSkin(skin, mod);
-                if (!info[name]) {
-                    var mdef = info[mod], pkg = mdef.pkg || mod;
-                    // Y.log('adding skin ' + name);
-                    this.addModule({
-                        'name': name,
-                        'type': 'css',
-                        'after': sinf.after,
-                        'path': pkg + '/' + sinf.base + skin + '/' + mod + '.css',
-                        'ext': ext
-                    });
-                }
-            }
-
-            return name;
-        },
-
-        /**
-         * Returns an object containing properties for all modules required
-         * in order to load the requested module
-         * @method getRequires
-         * @param mod The module definition from moduleInfo
-         */
-        getRequires: function(mod) {
-            if (!mod) {
-                return [];
-            }
-
-            if (!this.dirty && mod.expanded) {
-                return mod.expanded;
-            }
-
-            mod.requires=mod.requires || [];
-            var i, d=[], r=mod.requires, o=mod.optional, info=this.moduleInfo, m;
-            for (i=0; i<r.length; i=i+1) {
-                d.push(r[i]);
-                m = info[r[i]];
-                YUI.ArrayUtil.appendArray(d, this.getRequires(m));
-
-                // add existing skins for skinnable modules as well.  The only
-                // way to do this is go through the list of required items (this
-                // assumes that _skin is called before getRequires is called on
-                // the module.
-                // if (m.skinnable) {
-                //     var req=this.required, l=req.length;
-                //     for (var j=0; j<l; j=j+1) {
-                //         // YAHOO.log('checking ' + r[j]);
-                //         if (req[j].indexOf(r[j]) > -1) {
-                //             // YAHOO.log('adding ' + r[j]);
-                //             d.push(req[j]);
-                //         }
-                //     }
-                // }
-            }
-
-            if (o && this.loadOptional) {
-                for (i=0; i<o.length; i=i+1) {
-                    d.push(o[i]);
-                    YUI.ArrayUtil.appendArray(d, this.getRequires(info[o[i]]));
-                }
-            }
-
-            mod.expanded = YUI.ArrayUtil.uniq(d);
-
-            return mod.expanded;
-        },
-
-
-        /**
-         * Returns an object literal of the modules the supplied module satisfies
-         * @method getProvides
-         * @param name{string} The name of the module
-         * @param notMe {string} don't add this module name, only include superseded modules
-         * @return what this module provides
-         */
-        getProvides: function(name, notMe) {
-            var addMe = !(notMe), ckey = (addMe) ? PROV : SUPER,
-                m = this.moduleInfo[name], o = {};
-
-            if (!m) {
-                return o;
-            }
-
-            if (m[ckey]) {
-// Y.log('cached: ' + name + ' ' + ckey + ' ' + lang.dump(this.moduleInfo[name][ckey], 0));
-                return m[ckey];
-            }
-
-            var s = m.supersedes, done={}, me = this;
-
-            // use worker to break cycles
-            var add = function(mm) {
-                if (!done[mm]) {
-                    // Y.log(name + ' provides worker trying: ' + mm);
-                    done[mm] = true;
-                    // we always want the return value normal behavior 
-                    // (provides) for superseded modules.
-                    lang.augmentObject(o, me.getProvides(mm));
-                } 
-                
-                // else {
-                // Y.log(name + ' provides worker skipping done: ' + mm);
-                // }
-            };
-
-            // calculate superseded modules
-            if (s) {
-                for (var i=0; i<s.length; i=i+1) {
-                    add(s[i]);
-                }
-            }
-
-            // supersedes cache
-            m[SUPER] = o;
-            // provides cache
-            m[PROV] = lang.merge(o);
-            m[PROV][name] = true;
-
-// Y.log(name + " supersedes " + lang.dump(m[SUPER], 0));
-// Y.log(name + " provides " + lang.dump(m[PROV], 0));
-
-            return m[ckey];
-        },
-
-
-        /**
-         * Calculates the dependency tree, the result is stored in the sorted 
-         * property
-         * @method calculate
-         * @param o optional options object
-         */
-        calculate: function(o) {
-            if (o || this.dirty) {
-                this._config(o);
-                this._setup();
-                this._explode();
-                // this._skin(); // deprecated
-                if (this.allowRollup) {
-                    this._rollup();
-                }
-                this._reduce();
-                this._sort();
-
-                // Y.log("after calculate: " + lang.dump(this.required));
-
-                this.dirty = false;
-            }
-        },
-
-        /**
-         * Investigates the current YUI configuration on the page.  By default,
-         * modules already detected will not be loaded again unless a force
-         * option is encountered.  Called by calculate()
-         * @method _setup
-         * @private
-         */
-        _setup: function() {
-
-            var info = this.moduleInfo, name, i, j;
-
-            // Create skin modules
-            for (name in info) {
-
-                if (lang.hasOwnProperty(info, name)) {
-                    var m = info[name];
-                    if (m && m.skinnable) {
-                        // Y.log("skinning: " + name);
-                        var o=this.skin.overrides, smod;
-                        if (o && o[name]) {
-                            for (i=0; i<o[name].length; i=i+1) {
-                                smod = this._addSkin(o[name][i], name);
-                            }
-                        } else {
-                            smod = this._addSkin(this.skin.defaultSkin, name);
-                        }
-
-                        m.requires.push(smod);
-                    }
-                }
-
-            }
-
-            var l = lang.merge(this.inserted); // shallow clone
-            
-            if (!this._sandbox) {
-                l = lang.merge(l, env.modules);
-            }
-
-            // Y.log("Already loaded stuff: " + lang.dump(l, 0));
-
-            // add the ignore list to the list of loaded packages
-            if (this.ignore) {
-                YUI.ObjectUtil.appendArray(l, this.ignore);
-            }
-
-            // remove modules on the force list from the loaded list
-            if (this.force) {
-                for (i=0; i<this.force.length; i=i+1) {
-                    if (this.force[i] in l) {
-                        delete l[this.force[i]];
-                    }
-                }
-            }
-
-            // expand the list to include superseded modules
-            for (j in l) {
-                // Y.log("expanding: " + j);
-                if (lang.hasOwnProperty(l, j)) {
-                    lang.augmentObject(l, this.getProvides(j));
-                }
-            }
-
-            // Y.log("loaded expanded: " + lang.dump(l, 0));
-
-            this.loaded = l;
-
-        },
-        
-
-        /**
-         * Inspects the required modules list looking for additional 
-         * dependencies.  Expands the required list to include all 
-         * required modules.  Called by calculate()
-         * @method _explode
-         * @private
-         */
-        _explode: function() {
-
-            var r=this.required, i, mod;
-
-            for (i in r) {
-                if (lang.hasOwnProperty(r, i)) {
-                    mod = this.moduleInfo[i];
-                    if (mod) {
-
-                        var req = this.getRequires(mod);
-
-                        if (req) {
-                            YUI.ObjectUtil.appendArray(r, req);
-                        }
-                    }
-                }
-            }
-        },
-
-        /**
-         * Sets up the requirements for the skin assets if any of the
-         * requested modules are skinnable
-         * @method _skin
-         * @private
-         * @deprecated skin modules are generated for all skinnable
-         *             components during _setup(), and the components
-         *             are configured to require the skin.
-         */
-        _skin: function() {
-
-        },
-
-        /**
-         * Returns the skin module name for the specified skin name.  If a
-         * module name is supplied, the returned skin module name is 
-         * specific to the module passed in.
-         * @method formatSkin
-         * @param skin {string} the name of the skin
-         * @param mod {string} optional: the name of a module to skin
-         * @return {string} the full skin module name
-         */
-        formatSkin: function(skin, mod) {
-            var s = this.SKIN_PREFIX + skin;
-            if (mod) {
-                s = s + "-" + mod;
-            }
-
-            return s;
-        },
-        
-        /**
-         * Reverses <code>formatSkin</code>, providing the skin name and
-         * module name if the string matches the pattern for skins.
-         * @method parseSkin
-         * @param mod {string} the module name to parse
-         * @return {skin: string, module: string} the parsed skin name 
-         * and module name, or null if the supplied string does not match
-         * the skin pattern
-         */
-        parseSkin: function(mod) {
-            
-            if (mod.indexOf(this.SKIN_PREFIX) === 0) {
-                var a = mod.split("-");
-                return {skin: a[1], module: a[2]};
-            } 
-
-            return null;
-        },
-
-        /**
-         * Look for rollup packages to determine if all of the modules a
-         * rollup supersedes are required.  If so, include the rollup to
-         * help reduce the total number of connections required.  Called
-         * by calculate()
-         * @method _rollup
-         * @private
-         */
-        _rollup: function() {
-            var i, j, m, s, rollups={}, r=this.required, roll,
-                info = this.moduleInfo;
-
-            // find and cache rollup modules
-            if (this.dirty || !this.rollups) {
-                for (i in info) {
-                    if (lang.hasOwnProperty(info, i)) {
-                        m = info[i];
-                        //if (m && m.rollup && m.supersedes) {
-                        if (m && m.rollup) {
-                            rollups[i] = m;
-                        }
-                    }
-                }
-
-                this.rollups = rollups;
-            }
-
-            // make as many passes as needed to pick up rollup rollups
-            for (;;) {
-                var rolled = false;
-
-                // go through the rollup candidates
-                for (i in rollups) { 
-
-                    // there can be only one
-                    if (!r[i] && !this.loaded[i]) {
-                        m =info[i]; s = m.supersedes; roll=false;
-
-                        if (!m.rollup) {
-                            continue;
-                        }
-
-                        var skin = (m.ext) ? false : this.parseSkin(i), c = 0;
-
-                        // Y.log('skin? ' + i + ": " + skin);
-                        if (skin) {
-                            for (j in r) {
-                                if (lang.hasOwnProperty(r, j)) {
-                                    if (i !== j && this.parseSkin(j)) {
-                                        c++;
-                                        roll = (c >= m.rollup);
-                                        if (roll) {
-                                            // Y.log("skin rollup " + lang.dump(r));
-                                            break;
-                                        }
-                                    }
-                                }
-                            }
-
-                        } else {
-
-                            // check the threshold
-                            for (j=0;j<s.length;j=j+1) {
-
-                                // if the superseded module is loaded, we can't load the rollup
-                                if (this.loaded[s[j]] && (!YUI.dupsAllowed[s[j]])) {
-                                    roll = false;
-                                    break;
-                                // increment the counter if this module is required.  if we are
-                                // beyond the rollup threshold, we will use the rollup module
-                                } else if (r[s[j]]) {
-                                    c++;
-                                    roll = (c >= m.rollup);
-                                    if (roll) {
-                                        // Y.log("over thresh " + c + ", " + lang.dump(r));
-                                        break;
-                                    }
-                                }
-                            }
-                        }
-
-                        if (roll) {
-                            // Y.log("rollup: " +  i + ", " + lang.dump(this, 1));
-                            // add the rollup
-                            r[i] = true;
-                            rolled = true;
-
-                            // expand the rollup's dependencies
-                            this.getRequires(m);
-                        }
-                    }
-                }
-
-                // if we made it here w/o rolling up something, we are done
-                if (!rolled) {
-                    break;
-                }
-            }
-        },
-
-        /**
-         * Remove superceded modules and loaded modules.  Called by
-         * calculate() after we have the mega list of all dependencies
-         * @method _reduce
-         * @private
-         */
-        _reduce: function() {
-
-            var i, j, s, m, r=this.required;
-            for (i in r) {
-
-                // remove if already loaded
-                if (i in this.loaded) { 
-                    delete r[i];
-
-                // remove anything this module supersedes
-                } else {
-
-                    var skinDef = this.parseSkin(i);
-
-                    if (skinDef) {
-                        //YAHOO.log("skin found in reduce: " + skinDef.skin + ", " + skinDef.module);
-                        // the skin rollup will not have a module name
-                        if (!skinDef.module) {
-                            var skin_pre = this.SKIN_PREFIX + skinDef.skin;
-                            //YAHOO.log("skin_pre: " + skin_pre);
-                            for (j in r) {
-
-                                if (lang.hasOwnProperty(r, j)) {
-                                    m = this.moduleInfo[j];
-                                    var ext = m && m.ext;
-                                    if (!ext && j !== i && j.indexOf(skin_pre) > -1) {
-                                        // Y.log ("removing component skin: " + j);
-                                        delete r[j];
-                                    }
-                                }
-                            }
-                        }
-                    } else {
-
-                         m = this.moduleInfo[i];
-                         s = m && m.supersedes;
-                         if (s) {
-                             for (j=0; j<s.length; j=j+1) {
-                                 if (s[j] in r) {
-                                     delete r[s[j]];
-                                 }
-                             }
-                         }
-                    }
-                }
-            }
-        },
-
-        _onFailure: function(msg) {
-            YAHOO.log('Failure', 'info', 'loader');
-
-            var f = this.onFailure;
-            if (f) {
-                f.call(this.scope, {
-                    msg: 'failure: ' + msg,
-                    data: this.data,
-                    success: false
-                });
-            }
-        },
-
-        _onTimeout: function() {
-            YAHOO.log('Timeout', 'info', 'loader');
-            var f = this.onTimeout;
-            if (f) {
-                f.call(this.scope, {
-                    msg: 'timeout',
-                    data: this.data,
-                    success: false
-                });
-            }
-        },
-        
-        /**
-         * Sorts the dependency tree.  The last step of calculate()
-         * @method _sort
-         * @private
-         */
-        _sort: function() {
-            // create an indexed list
-            var s=[], info=this.moduleInfo, loaded=this.loaded,
-                checkOptional=!this.loadOptional, me = this;
-
-            // returns true if b is not loaded, and is required
-            // directly or by means of modules it supersedes.
-            var requires = function(aa, bb) {
-
-                var mm=info[aa];
-
-                if (loaded[bb] || !mm) {
-                    return false;
-                }
-
-                var ii, 
-                    rr = mm.expanded, 
-                    after = mm.after, 
-                    other = info[bb],
-                    optional = mm.optional;
-
-
-                // check if this module requires the other directly
-                if (rr && YUI.ArrayUtil.indexOf(rr, bb) > -1) {
-                    return true;
-                }
-
-                // check if this module should be sorted after the other
-                if (after && YUI.ArrayUtil.indexOf(after, bb) > -1) {
-                    return true;
-                }
-
-                // if loadOptional is not specified, optional dependencies still
-                // must be sorted correctly when present.
-                if (checkOptional && optional && YUI.ArrayUtil.indexOf(optional, bb) > -1) {
-                    return true;
-                }
-
-                // check if this module requires one the other supersedes
-                var ss=info[bb] && info[bb].supersedes;
-                if (ss) {
-                    for (ii=0; ii<ss.length; ii=ii+1) {
-                        if (requires(aa, ss[ii])) {
-                            return true;
-                        }
-                    }
-                }
-
-                // var ss=me.getProvides(bb, true);
-                // if (ss) {
-                //     for (ii in ss) {
-                //         if (requires(aa, ii)) {
-                //             return true;
-                //         }
-                //     }
-                // }
-
-                // external css files should be sorted below yui css
-                if (mm.ext && mm.type == 'css' && !other.ext && other.type == 'css') {
-                    return true;
-                }
-
-                return false;
-            };
-
-            // get the required items out of the obj into an array so we
-            // can sort
-            for (var i in this.required) {
-                if (lang.hasOwnProperty(this.required, i)) {
-                    s.push(i);
-                }
-            }
-
-            // pointer to the first unsorted item
-            var p=0; 
-
-            // keep going until we make a pass without moving anything
-            for (;;) {
-               
-                var l=s.length, a, b, j, k, moved=false;
-
-                // start the loop after items that are already sorted
-                for (j=p; j<l; j=j+1) {
-
-                    // check the next module on the list to see if its
-                    // dependencies have been met
-                    a = s[j];
-
-                    // check everything below current item and move if we
-                    // find a requirement for the current item
-                    for (k=j+1; k<l; k=k+1) {
-                        if (requires(a, s[k])) {
-
-                            // extract the dependency so we can move it up
-                            b = s.splice(k, 1);
-
-                            // insert the dependency above the item that 
-                            // requires it
-                            s.splice(j, 0, b[0]);
-
-                            moved = true;
-                            break;
-                        }
-                    }
-
-                    // jump out of loop if we moved something
-                    if (moved) {
-                        break;
-                    // this item is sorted, move our pointer and keep going
-                    } else {
-                        p = p + 1;
-                    }
-                }
-
-                // when we make it here and moved is false, we are 
-                // finished sorting
-                if (!moved) {
-                    break;
-                }
-
-            }
-
-            this.sorted = s;
-        },
-
-        toString: function() {
-            var o = {
-                type: "YUILoader",
-                base: this.base,
-                filter: this.filter,
-                required: this.required,
-                loaded: this.loaded,
-                inserted: this.inserted
-            };
-
-            lang.dump(o, 1);
-        },
-
-        _combine: function() {
-
-                this._combining = []; 
-
-                var self = this,
-                    s=this.sorted,
-                    len = s.length,
-                    js = this.comboBase,
-                    css = this.comboBase,
-                    target, 
-                    startLen = js.length,
-                    i, m, type = this.loadType;
-
-                YAHOO.log('type ' + type);
-
-                for (i=0; i<len; i=i+1) {
-
-                    m = this.moduleInfo[s[i]];
-
-                    if (m && !m.ext && (!type || type === m.type)) {
-
-                        target = this.root + m.path;
-
-                        // if (i < len-1) {
-                        target += '&';
-                        // }
-
-                        if (m.type == 'js') {
-                            js += target;
-                        } else {
-                            css += target;
-                        }
-
-                        // YAHOO.log(target);
-                        this._combining.push(s[i]);
-                    }
-                }
-
-                if (this._combining.length) {
-
-YAHOO.log('Attempting to combine: ' + this._combining, "info", "loader");
-
-                    var callback=function(o) {
-                        // YAHOO.log('Combo complete: ' + o.data, "info", "loader");
-                        // this._combineComplete = true;
-
-                        var c=this._combining, len=c.length, i, m;
-                        for (i=0; i<len; i=i+1) {
-                            this.inserted[c[i]] = true;
-                        }
-
-                        this.loadNext(o.data);
-                    }, 
-                    
-                    loadScript = function() {
-                        // YAHOO.log('combining js: ' + js);
-                        if (js.length > startLen) {
-                            YAHOO.util.Get.script(self._filter(js), {
-                                data: self._loading,
-                                onSuccess: callback,
-                                onFailure: self._onFailure,
-                                onTimeout: self._onTimeout,
-                                insertBefore: self.insertBefore,
-                                charset: self.charset,
-                                timeout: self.timeout,
-                                scope: self 
-                            });
-                        }
-                    };
-
-                    // load the css first
-                    // YAHOO.log('combining css: ' + css);
-                    if (css.length > startLen) {
-                        YAHOO.util.Get.css(this._filter(css), {
-                            data: this._loading,
-                            onSuccess: loadScript,
-                            onFailure: this._onFailure,
-                            onTimeout: this._onTimeout,
-                            insertBefore: this.insertBefore,
-                            charset: this.charset,
-                            timeout: this.timeout,
-                            scope: self 
-                        });
-                    } else {
-                        loadScript();
-                    }
-
-                    return;
-
-                } else {
-                    // this._combineComplete = true;
-                    this.loadNext(this._loading);
-                }
-        }, 
-
-        /**
-         * inserts the requested modules and their dependencies.  
-         * <code>type</code> can be "js" or "css".  Both script and 
-         * css are inserted if type is not provided.
-         * @method insert
-         * @param o optional options object
-         * @param type {string} the type of dependency to insert
-         */
-        insert: function(o, type) {
-            // if (o) {
-            //     Y.log("insert: " + lang.dump(o, 1) + ", " + type);
-            // } else {
-            //     Y.log("insert: " + this.toString() + ", " + type);
-            // }
-
-            // build the dependency list
-            this.calculate(o);
-
-
-            // set a flag to indicate the load has started
-            this._loading = true;
-
-            // flag to indicate we are done with the combo service
-            // and any additional files will need to be loaded
-            // individually
-            // this._combineComplete = false;
-
-            // keep the loadType (js, css or undefined) cached
-            this.loadType = type;
-
-            if (this.combine) {
-                return this._combine();
-            }
-
-            if (!type) {
-                // Y.log("trying to load css first");
-                var self = this;
-                this._internalCallback = function() {
-                            self._internalCallback = null;
-                            self.insert(null, "js");
-                        };
-                this.insert(null, "css");
-                return;
-            }
-
-
-            // start the load
-            this.loadNext();
-
-        },
-
-        /**
-         * Interns the script for the requested modules.  The callback is
-         * provided a reference to the sandboxed YAHOO object.  This only
-         * applies to the script: css can not be sandboxed; css will be
-         * loaded into the page normally if specified.
-         * @method sandbox
-         * @param callback {Function} the callback to exectued when the load is
-         *        complete.
-         */
-        sandbox: function(o, type) {
-            // if (o) {
-                // YAHOO.log("sandbox: " + lang.dump(o, 1) + ", " + type);
-            // } else {
-                // YAHOO.log("sandbox: " + this.toString() + ", " + type);
-            // }
-
-            this._config(o);
-
-            if (!this.onSuccess) {
-throw new Error("You must supply an onSuccess handler for your sandbox");
-            }
-
-            this._sandbox = true;
-
-            var self = this;
-
-            // take care of any css first (this can't be sandboxed)
-            if (!type || type !== "js") {
-                this._internalCallback = function() {
-                            self._internalCallback = null;
-                            self.sandbox(null, "js");
-                        };
-                this.insert(null, "css");
-                return;
-            }
-
-            // get the connection manager if not on the page
-            if (!util.Connect) {
-                // get a new loader instance to load connection.
-                var ld = new YAHOO.util.YUILoader();
-                ld.insert({
-                    base: this.base,
-                    filter: this.filter,
-                    require: "connection",
-                    insertBefore: this.insertBefore,
-                    charset: this.charset,
-                    onSuccess: function() {
-                        this.sandbox(null, "js");
-                    },
-                    scope: this
-                }, "js");
-                return;
-            }
-
-            this._scriptText = [];
-            this._loadCount = 0;
-            this._stopCount = this.sorted.length;
-            this._xhr = [];
-
-            this.calculate();
-
-            var s=this.sorted, l=s.length, i, m, url;
-
-            for (i=0; i<l; i=i+1) {
-                m = this.moduleInfo[s[i]];
-
-                // undefined modules cause a failure
-                if (!m) {
-                    this._onFailure("undefined module " + m);
-                    for (var j=0;j<this._xhr.length;j=j+1) {
-                        this._xhr[j].abort();
-                    }
-                    return;
-                }
-
-                // css files should be done
-                if (m.type !== "js") {
-                    this._loadCount++;
-                    continue;
-                }
-
-                url = m.fullpath;
-                url = (url) ? this._filter(url) : this._url(m.path);
-
-                // YAHOO.log("xhr request: " + url + ", " + i);
-
-                var xhrData = {
-
-                    success: function(o) {
-                        
-                        var idx=o.argument[0], name=o.argument[2];
-
-                        // store the response in the position it was requested
-                        this._scriptText[idx] = o.responseText; 
-                        
-                        // YAHOO.log("received: " + o.responseText.substr(0, 100) + ", " + idx);
-                    
-                        if (this.onProgress) {
-                            this.onProgress.call(this.scope, {
-                                        name: name,
-                                        scriptText: o.responseText,
-                                        xhrResponse: o,
-                                        data: this.data
-                                    });
-                        }
-
-                        // only generate the sandbox once everything is loaded
-                        this._loadCount++;
-
-                        if (this._loadCount >= this._stopCount) {
-
-                            // the variable to find
-                            var v = this.varName || "YAHOO";
-
-                            // wrap the contents of the requested modules in an anonymous function
-                            var t = "(function() {\n";
-                        
-                            // return the locally scoped reference.
-                            var b = "\nreturn " + v + ";\n})();";
-
-                            var ref = eval(t + this._scriptText.join("\n") + b);
-
-                            this._pushEvents(ref);
-
-                            if (ref) {
-                                this.onSuccess.call(this.scope, {
-                                        reference: ref,
-                                        data: this.data
-                                    });
-                            } else {
-                                this._onFailure.call(this.varName + " reference failure");
-                            }
-                        }
-                    },
-
-                    failure: function(o) {
-                        this.onFailure.call(this.scope, {
-                                msg: "XHR failure",
-                                xhrResponse: o,
-                                data: this.data
-                            });
-                    },
-
-                    scope: this,
-
-                    // module index, module name, sandbox name
-                    argument: [i, url, s[i]]
-
-                };
-
-                this._xhr.push(util.Connect.asyncRequest('GET', url, xhrData));
-            }
-        },
-
-        /**
-         * Executed every time a module is loaded, and if we are in a load
-         * cycle, we attempt to load the next script.  Public so that it
-         * is possible to call this if using a method other than
-         * YAHOO.register to determine when scripts are fully loaded
-         * @method loadNext
-         * @param mname {string} optional the name of the module that has
-         * been loaded (which is usually why it is time to load the next
-         * one)
-         */
-        loadNext: function(mname) {
-
-            // It is possible that this function is executed due to something
-            // else one the page loading a YUI module.  Only react when we
-            // are actively loading something
-            if (!this._loading) {
-                return;
-            }
-
-
-            if (mname) {
-
-                // if the module that was just loaded isn't what we were expecting,
-                // continue to wait
-                if (mname !== this._loading) {
-                    return;
-                }
-
-                // YAHOO.log("loadNext executing, just loaded " + mname);
-
-                // The global handler that is called when each module is loaded
-                // will pass that module name to this function.  Storing this
-                // data to avoid loading the same module multiple times
-                this.inserted[mname] = true;
-
-                if (this.onProgress) {
-                    this.onProgress.call(this.scope, {
-                            name: mname,
-                            data: this.data
-                        });
-                }
-                //var o = this.getProvides(mname);
-                //this.inserted = lang.merge(this.inserted, o);
-            }
-
-            var s=this.sorted, len=s.length, i, m;
-
-            for (i=0; i<len; i=i+1) {
-
-                // This.inserted keeps track of what the loader has loaded
-                if (s[i] in this.inserted) {
-                    // YAHOO.log(s[i] + " alread loaded ");
-                    continue;
-                }
-
-                // Because rollups will cause multiple load notifications
-                // from YAHOO, loadNext may be called multiple times for
-                // the same module when loading a rollup.  We can safely
-                // skip the subsequent requests
-                if (s[i] === this._loading) {
-                    // YAHOO.log("still loading " + s[i] + ", waiting");
-                    return;
-                }
-
-                // log("inserting " + s[i]);
-                m = this.moduleInfo[s[i]];
-
-                if (!m) {
-                    this.onFailure.call(this.scope, {
-                            msg: "undefined module " + m,
-                            data: this.data
-                        });
-                    return;
-                }
-
-                // The load type is stored to offer the possibility to load
-                // the css separately from the script.
-                if (!this.loadType || this.loadType === m.type) {
-                    this._loading = s[i];
-                    //YAHOO.log("attempting to load " + s[i] + ", " + this.base);
-
-                    var fn=(m.type === "css") ? util.Get.css : util.Get.script,
-                        url = m.fullpath,
-                        self=this, 
-                        c=function(o) {
-                            self.loadNext(o.data);
-                        };
-
-                        url = (url) ? this._filter(url) : this._url(m.path);
-
-                    // safari 2.x or lower, script, and part of YUI
-                    if (env.ua.webkit && env.ua.webkit < 420 && m.type === "js" && 
-                          !m.varName) {
-                          //YUI.info.moduleInfo[s[i]]) {
-                          //YAHOO.log("using YAHOO env " + s[i] + ", " + m.varName);
-                        c = null;
-                        this._useYahooListener = true;
-                    }
-
-                    fn(url, {
-                        data: s[i],
-                        onSuccess: c,
-                        onFailure: this._onFailure,
-                        onTimeout: this._onTimeout,
-                        insertBefore: this.insertBefore,
-                        charset: this.charset,
-                        timeout: this.timeout,
-                        varName: m.varName,
-                        scope: self 
-                    });
-
-                    return;
-                }
-            }
-
-            // we are finished
-            this._loading = null;
-
-            // internal callback for loading css first
-            if (this._internalCallback) {
-                var f = this._internalCallback;
-                this._internalCallback = null;
-                f.call(this);
-            } else if (this.onSuccess) {
-                this._pushEvents();
-                this.onSuccess.call(this.scope, {
-                        data: this.data
-                    });
-            }
-
-        },
-
-        /**
-         * In IE, the onAvailable/onDOMReady events need help when Event is
-         * loaded dynamically
-         * @method _pushEvents
-         * @param {Function} optional function reference
-         * @private
-         */
-        _pushEvents: function(ref) {
-            var r = ref || YAHOO;
-            if (r.util && r.util.Event) {
-                r.util.Event._load();
-            }
-        },
-
-        /**
-         * Applies filter
-         * method _filter
-         * @return {string} the filtered string
-         * @private
-         */
-        _filter: function(str) {
-            var f = this.filter;
-            return (f) ?  str.replace(new RegExp(f.searchExp), f.replaceStr) : str;
-        },
-
-        /**
-         * Generates the full url for a module
-         * method _url
-         * @param path {string} the path fragment
-         * @return {string} the full url
-         * @private
-         */
-        _url: function(path) {
-            
-            var u = this.base || "", f=this.filter;
-            u = u + path;
-            return this._filter(u);
-        }
-
-    };
-
-})();
diff --git a/eclipse.org-common/yui/2.6.0/build/yuiloader/yuiloader-min.js b/eclipse.org-common/yui/2.6.0/build/yuiloader/yuiloader-min.js
deleted file mode 100644
index 1665744..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuiloader/yuiloader-min.js
+++ /dev/null
@@ -1,10 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-if(typeof YAHOO=="undefined"||!YAHOO){var YAHOO={};}YAHOO.namespace=function(){var A=arguments,E=null,C,B,D;for(C=0;C<A.length;C=C+1){D=A[C].split(".");E=YAHOO;for(B=(D[0]=="YAHOO")?1:0;B<D.length;B=B+1){E[D[B]]=E[D[B]]||{};E=E[D[B]];}}return E;};YAHOO.log=function(D,A,C){var B=YAHOO.widget.Logger;if(B&&B.log){return B.log(D,A,C);}else{return false;}};YAHOO.register=function(A,E,D){var I=YAHOO.env.modules;if(!I[A]){I[A]={versions:[],builds:[]};}var B=I[A],H=D.version,G=D.build,F=YAHOO.env.listeners;B.name=A;B.version=H;B.build=G;B.versions.push(H);B.builds.push(G);B.mainClass=E;for(var C=0;C<F.length;C=C+1){F[C](B);}if(E){E.VERSION=H;E.BUILD=G;}else{YAHOO.log("mainClass is undefined for module "+A,"warn");}};YAHOO.env=YAHOO.env||{modules:[],listeners:[]};YAHOO.env.getVersion=function(A){return YAHOO.env.modules[A]||null;};YAHOO.env.ua=function(){var C={ie:0,opera:0,gecko:0,webkit:0,mobile:null,air:0};var B=navigator.userAgent,A;if((/KHTML/).test(B)){C.webkit=1;}A=B.match(/AppleWebKit\/([^\s]*)/);if(A&&A[1]){C.webkit=parseFloat(A[1]);if(/ Mobile\//.test(B)){C.mobile="Apple";}else{A=B.match(/NokiaN[^\/]*/);if(A){C.mobile=A[0];}}A=B.match(/AdobeAIR\/([^\s]*)/);if(A){C.air=A[0];}}if(!C.webkit){A=B.match(/Opera[\s\/]([^\s]*)/);if(A&&A[1]){C.opera=parseFloat(A[1]);A=B.match(/Opera Mini[^;]*/);if(A){C.mobile=A[0];}}else{A=B.match(/MSIE\s([^;]*)/);if(A&&A[1]){C.ie=parseFloat(A[1]);}else{A=B.match(/Gecko\/([^\s]*)/);if(A){C.gecko=1;A=B.match(/rv:([^\s\)]*)/);if(A&&A[1]){C.gecko=parseFloat(A[1]);}}}}}return C;}();(function(){YAHOO.namespace("util","widget","example");if("undefined"!==typeof YAHOO_config){var B=YAHOO_config.listener,A=YAHOO.env.listeners,D=true,C;if(B){for(C=0;C<A.length;C=C+1){if(A[C]==B){D=false;break;}}if(D){A.push(B);}}}})();YAHOO.lang=YAHOO.lang||{};(function(){var A=YAHOO.lang,C=["toString","valueOf"],B={isArray:function(D){if(D){return A.isNumber(D.length)&&A.isFunction(D.splice);}return false;},isBoolean:function(D){return typeof D==="boolean";},isFunction:function(D){return typeof D==="function";},isNull:function(D){return D===null;},isNumber:function(D){return typeof D==="number"&&isFinite(D);},isObject:function(D){return(D&&(typeof D==="object"||A.isFunction(D)))||false;},isString:function(D){return typeof D==="string";},isUndefined:function(D){return typeof D==="undefined";},_IEEnumFix:(YAHOO.env.ua.ie)?function(F,E){for(var D=0;D<C.length;D=D+1){var H=C[D],G=E[H];if(A.isFunction(G)&&G!=Object.prototype[H]){F[H]=G;}}}:function(){},extend:function(H,I,G){if(!I||!H){throw new Error("extend failed, please check that "+"all dependencies are included.");}var E=function(){};E.prototype=I.prototype;H.prototype=new E();H.prototype.constructor=H;H.superclass=I.prototype;if(I.prototype.constructor==Object.prototype.constructor){I.prototype.constructor=I;}if(G){for(var D in G){if(A.hasOwnProperty(G,D)){H.prototype[D]=G[D];}}A._IEEnumFix(H.prototype,G);}},augmentObject:function(H,G){if(!G||!H){throw new Error("Absorb failed, verify dependencies.");}var D=arguments,F,I,E=D[2];if(E&&E!==true){for(F=2;F<D.length;F=F+1){H[D[F]]=G[D[F]];}}else{for(I in G){if(E||!(I in H)){H[I]=G[I];}}A._IEEnumFix(H,G);}},augmentProto:function(G,F){if(!F||!G){throw new Error("Augment failed, verify dependencies.");}var D=[G.prototype,F.prototype];for(var E=2;E<arguments.length;E=E+1){D.push(arguments[E]);}A.augmentObject.apply(this,D);},dump:function(D,I){var F,H,K=[],L="{...}",E="f(){...}",J=", ",G=" => ";if(!A.isObject(D)){return D+"";}else{if(D instanceof Date||("nodeType" in D&&"tagName" in D)){return D;}else{if(A.isFunction(D)){return E;}}}I=(A.isNumber(I))?I:3;if(A.isArray(D)){K.push("[");for(F=0,H=D.length;F<H;F=F+1){if(A.isObject(D[F])){K.push((I>0)?A.dump(D[F],I-1):L);}else{K.push(D[F]);}K.push(J);}if(K.length>1){K.pop();}K.push("]");}else{K.push("{");for(F in D){if(A.hasOwnProperty(D,F)){K.push(F+G);if(A.isObject(D[F])){K.push((I>0)?A.dump(D[F],I-1):L);}else{K.push(D[F]);}K.push(J);}}if(K.length>1){K.pop();}K.push("}");}return K.join("");},substitute:function(S,E,L){var I,H,G,O,P,R,N=[],F,J="dump",M=" ",D="{",Q="}";for(;;){I=S.lastIndexOf(D);if(I<0){break;}H=S.indexOf(Q,I);if(I+1>=H){break;}F=S.substring(I+1,H);O=F;R=null;G=O.indexOf(M);if(G>-1){R=O.substring(G+1);O=O.substring(0,G);}P=E[O];if(L){P=L(O,P,R);}if(A.isObject(P)){if(A.isArray(P)){P=A.dump(P,parseInt(R,10));}else{R=R||"";var K=R.indexOf(J);if(K>-1){R=R.substring(4);}if(P.toString===Object.prototype.toString||K>-1){P=A.dump(P,parseInt(R,10));}else{P=P.toString();}}}else{if(!A.isString(P)&&!A.isNumber(P)){P="~-"+N.length+"-~";N[N.length]=F;}}S=S.substring(0,I)+P+S.substring(H+1);}for(I=N.length-1;I>=0;I=I-1){S=S.replace(new RegExp("~-"+I+"-~"),"{"+N[I]+"}","g");}return S;},trim:function(D){try{return D.replace(/^\s+|\s+$/g,"");}catch(E){return D;}},merge:function(){var G={},E=arguments;for(var F=0,D=E.length;F<D;F=F+1){A.augmentObject(G,E[F],true);}return G;},later:function(K,E,L,G,H){K=K||0;E=E||{};var F=L,J=G,I,D;if(A.isString(L)){F=E[L];}if(!F){throw new TypeError("method undefined");}if(!A.isArray(J)){J=[G];}I=function(){F.apply(E,J);};D=(H)?setInterval(I,K):setTimeout(I,K);return{interval:H,cancel:function(){if(this.interval){clearInterval(D);}else{clearTimeout(D);}}};},isValue:function(D){return(A.isObject(D)||A.isString(D)||A.isNumber(D)||A.isBoolean(D));}};A.hasOwnProperty=(Object.prototype.hasOwnProperty)?function(D,E){return D&&D.hasOwnProperty(E);}:function(D,E){return !A.isUndefined(D[E])&&D.constructor.prototype[E]!==D[E];};B.augmentObject(A,B,true);YAHOO.util.Lang=A;A.augment=A.augmentProto;YAHOO.augment=A.augmentProto;YAHOO.extend=A.extend;})();YAHOO.register("yahoo",YAHOO,{version:"2.6.0",build:"1321"});YAHOO.util.Get=function(){var M={},L=0,R=0,E=false,N=YAHOO.env.ua,S=YAHOO.lang;var J=function(W,T,X){var U=X||window,Y=U.document,Z=Y.createElement(W);for(var V in T){if(T[V]&&YAHOO.lang.hasOwnProperty(T,V)){Z.setAttribute(V,T[V]);}}return Z;};var I=function(T,U,W){var V=W||"utf-8";return J("link",{"id":"yui__dyn_"+(R++),"type":"text/css","charset":V,"rel":"stylesheet","href":T},U);
-};var P=function(T,U,W){var V=W||"utf-8";return J("script",{"id":"yui__dyn_"+(R++),"type":"text/javascript","charset":V,"src":T},U);};var A=function(T,U){return{tId:T.tId,win:T.win,data:T.data,nodes:T.nodes,msg:U,purge:function(){D(this.tId);}};};var B=function(T,W){var U=M[W],V=(S.isString(T))?U.win.document.getElementById(T):T;if(!V){Q(W,"target node not found: "+T);}return V;};var Q=function(W,V){var T=M[W];if(T.onFailure){var U=T.scope||T.win;T.onFailure.call(U,A(T,V));}};var C=function(W){var T=M[W];T.finished=true;if(T.aborted){var V="transaction "+W+" was aborted";Q(W,V);return ;}if(T.onSuccess){var U=T.scope||T.win;T.onSuccess.call(U,A(T));}};var O=function(V){var T=M[V];if(T.onTimeout){var U=T.context||T;T.onTimeout.call(U,A(T));}};var G=function(V,Z){var U=M[V];if(U.timer){U.timer.cancel();}if(U.aborted){var X="transaction "+V+" was aborted";Q(V,X);return ;}if(Z){U.url.shift();if(U.varName){U.varName.shift();}}else{U.url=(S.isString(U.url))?[U.url]:U.url;if(U.varName){U.varName=(S.isString(U.varName))?[U.varName]:U.varName;}}var c=U.win,b=c.document,a=b.getElementsByTagName("head")[0],W;if(U.url.length===0){if(U.type==="script"&&N.webkit&&N.webkit<420&&!U.finalpass&&!U.varName){var Y=P(null,U.win,U.charset);Y.innerHTML='YAHOO.util.Get._finalize("'+V+'");';U.nodes.push(Y);a.appendChild(Y);}else{C(V);}return ;}var T=U.url[0];if(!T){U.url.shift();return G(V);}if(U.timeout){U.timer=S.later(U.timeout,U,O,V);}if(U.type==="script"){W=P(T,c,U.charset);}else{W=I(T,c,U.charset);}F(U.type,W,V,T,c,U.url.length);U.nodes.push(W);if(U.insertBefore){var e=B(U.insertBefore,V);if(e){e.parentNode.insertBefore(W,e);}}else{a.appendChild(W);}if((N.webkit||N.gecko)&&U.type==="css"){G(V,T);}};var K=function(){if(E){return ;}E=true;for(var T in M){var U=M[T];if(U.autopurge&&U.finished){D(U.tId);delete M[T];}}E=false;};var D=function(a){var X=M[a];if(X){var Z=X.nodes,T=Z.length,Y=X.win.document,W=Y.getElementsByTagName("head")[0];if(X.insertBefore){var V=B(X.insertBefore,a);if(V){W=V.parentNode;}}for(var U=0;U<T;U=U+1){W.removeChild(Z[U]);}X.nodes=[];}};var H=function(U,T,V){var X="q"+(L++);V=V||{};if(L%YAHOO.util.Get.PURGE_THRESH===0){K();}M[X]=S.merge(V,{tId:X,type:U,url:T,finished:false,aborted:false,nodes:[]});var W=M[X];W.win=W.win||window;W.scope=W.scope||W.win;W.autopurge=("autopurge" in W)?W.autopurge:(U==="script")?true:false;S.later(0,W,G,X);return{tId:X};};var F=function(c,X,W,U,Y,Z,b){var a=b||G;if(N.ie){X.onreadystatechange=function(){var d=this.readyState;if("loaded"===d||"complete"===d){X.onreadystatechange=null;a(W,U);}};}else{if(N.webkit){if(c==="script"){if(N.webkit>=420){X.addEventListener("load",function(){a(W,U);});}else{var T=M[W];if(T.varName){var V=YAHOO.util.Get.POLL_FREQ;T.maxattempts=YAHOO.util.Get.TIMEOUT/V;T.attempts=0;T._cache=T.varName[0].split(".");T.timer=S.later(V,T,function(j){var f=this._cache,e=f.length,d=this.win,g;for(g=0;g<e;g=g+1){d=d[f[g]];if(!d){this.attempts++;if(this.attempts++>this.maxattempts){var h="Over retry limit, giving up";T.timer.cancel();Q(W,h);}else{}return ;}}T.timer.cancel();a(W,U);},null,true);}else{S.later(YAHOO.util.Get.POLL_FREQ,null,a,[W,U]);}}}}else{X.onload=function(){a(W,U);};}}};return{POLL_FREQ:10,PURGE_THRESH:20,TIMEOUT:2000,_finalize:function(T){S.later(0,null,C,T);},abort:function(U){var V=(S.isString(U))?U:U.tId;var T=M[V];if(T){T.aborted=true;}},script:function(T,U){return H("script",T,U);},css:function(T,U){return H("css",T,U);}};}();YAHOO.register("get",YAHOO.util.Get,{version:"2.6.0",build:"1321"});(function(){var Y=YAHOO,util=Y.util,lang=Y.lang,env=Y.env,PROV="_provides",SUPER="_supersedes",REQ="expanded",AFTER="_after";var YUI={dupsAllowed:{"yahoo":true,"get":true},info:{"root":"2.6.0/build/","base":"http://yui.yahooapis.com/2.6.0/build/","comboBase":"http://yui.yahooapis.com/combo?","skin":{"defaultSkin":"sam","base":"assets/skins/","path":"skin.css","after":["reset","fonts","grids","base"],"rollup":3},dupsAllowed:["yahoo","get"],"moduleInfo":{"animation":{"type":"js","path":"animation/animation-min.js","requires":["dom","event"]},"autocomplete":{"type":"js","path":"autocomplete/autocomplete-min.js","requires":["dom","event","datasource"],"optional":["connection","animation"],"skinnable":true},"base":{"type":"css","path":"base/base-min.css","after":["reset","fonts","grids"]},"button":{"type":"js","path":"button/button-min.js","requires":["element"],"optional":["menu"],"skinnable":true},"calendar":{"type":"js","path":"calendar/calendar-min.js","requires":["event","dom"],"skinnable":true},"carousel":{"type":"js","path":"carousel/carousel-beta-min.js","requires":["element"],"optional":["animation"],"skinnable":true},"charts":{"type":"js","path":"charts/charts-experimental-min.js","requires":["element","json","datasource"]},"colorpicker":{"type":"js","path":"colorpicker/colorpicker-min.js","requires":["slider","element"],"optional":["animation"],"skinnable":true},"connection":{"type":"js","path":"connection/connection-min.js","requires":["event"]},"container":{"type":"js","path":"container/container-min.js","requires":["dom","event"],"optional":["dragdrop","animation","connection"],"supersedes":["containercore"],"skinnable":true},"containercore":{"type":"js","path":"container/container_core-min.js","requires":["dom","event"],"pkg":"container"},"cookie":{"type":"js","path":"cookie/cookie-min.js","requires":["yahoo"]},"datasource":{"type":"js","path":"datasource/datasource-min.js","requires":["event"],"optional":["connection"]},"datatable":{"type":"js","path":"datatable/datatable-min.js","requires":["element","datasource"],"optional":["calendar","dragdrop","paginator"],"skinnable":true},"dom":{"type":"js","path":"dom/dom-min.js","requires":["yahoo"]},"dragdrop":{"type":"js","path":"dragdrop/dragdrop-min.js","requires":["dom","event"]},"editor":{"type":"js","path":"editor/editor-min.js","requires":["menu","element","button"],"optional":["animation","dragdrop"],"supersedes":["simpleeditor"],"skinnable":true},"element":{"type":"js","path":"element/element-beta-min.js","requires":["dom","event"]},"event":{"type":"js","path":"event/event-min.js","requires":["yahoo"]},"fonts":{"type":"css","path":"fonts/fonts-min.css"},"get":{"type":"js","path":"get/get-min.js","requires":["yahoo"]},"grids":{"type":"css","path":"grids/grids-min.css","requires":["fonts"],"optional":["reset"]},"history":{"type":"js","path":"history/history-min.js","requires":["event"]},"imagecropper":{"type":"js","path":"imagecropper/imagecropper-beta-min.js","requires":["dom","event","dragdrop","element","resize"],"skinnable":true},"imageloader":{"type":"js","path":"imageloader/imageloader-min.js","requires":["event","dom"]},"json":{"type":"js","path":"json/json-min.js","requires":["yahoo"]},"layout":{"type":"js","path":"layout/layout-min.js","requires":["dom","event","element"],"optional":["animation","dragdrop","resize","selector"],"skinnable":true},"logger":{"type":"js","path":"logger/logger-min.js","requires":["event","dom"],"optional":["dragdrop"],"skinnable":true},"menu":{"type":"js","path":"menu/menu-min.js","requires":["containercore"],"skinnable":true},"paginator":{"type":"js","path":"paginator/paginator-min.js","requires":["element"],"skinnable":true},"profiler":{"type":"js","path":"profiler/profiler-min.js","requires":["yahoo"]},"profilerviewer":{"type":"js","path":"profilerviewer/profilerviewer-beta-min.js","requires":["profiler","yuiloader","element"],"skinnable":true},"reset":{"type":"css","path":"reset/reset-min.css"},"reset-fonts-grids":{"type":"css","path":"reset-fonts-grids/reset-fonts-grids.css","supersedes":["reset","fonts","grids","reset-fonts"],"rollup":4},"reset-fonts":{"type":"css","path":"reset-fonts/reset-fonts.css","supersedes":["reset","fonts"],"rollup":2},"resize":{"type":"js","path":"resize/resize-min.js","requires":["dom","event","dragdrop","element"],"optional":["animation"],"skinnable":true},"selector":{"type":"js","path":"selector/selector-beta-min.js","requires":["yahoo","dom"]},"simpleeditor":{"type":"js","path":"editor/simpleeditor-min.js","requires":["element"],"optional":["containercore","menu","button","animation","dragdrop"],"skinnable":true,"pkg":"editor"},"slider":{"type":"js","path":"slider/slider-min.js","requires":["dragdrop"],"optional":["animation"],"skinnable":true},"tabview":{"type":"js","path":"tabview/tabview-min.js","requires":["element"],"optional":["connection"],"skinnable":true},"treeview":{"type":"js","path":"treeview/treeview-min.js","requires":["event","dom"],"skinnable":true},"uploader":{"type":"js","path":"uploader/uploader-experimental.js","requires":["element"]},"utilities":{"type":"js","path":"utilities/utilities.js","supersedes":["yahoo","event","dragdrop","animation","dom","connection","element","yahoo-dom-event","get","yuiloader","yuiloader-dom-event"],"rollup":8},"yahoo":{"type":"js","path":"yahoo/yahoo-min.js"},"yahoo-dom-event":{"type":"js","path":"yahoo-dom-event/yahoo-dom-event.js","supersedes":["yahoo","event","dom"],"rollup":3},"yuiloader":{"type":"js","path":"yuiloader/yuiloader-min.js","supersedes":["yahoo","get"]},"yuiloader-dom-event":{"type":"js","path":"yuiloader-dom-event/yuiloader-dom-event.js","supersedes":["yahoo","dom","event","get","yuiloader","yahoo-dom-event"],"rollup":5},"yuitest":{"type":"js","path":"yuitest/yuitest-min.js","requires":["logger"],"skinnable":true}}},ObjectUtil:{appendArray:function(o,a){if(a){for(var i=0;
-i<a.length;i=i+1){o[a[i]]=true;}}},keys:function(o,ordered){var a=[],i;for(i in o){if(lang.hasOwnProperty(o,i)){a.push(i);}}return a;}},ArrayUtil:{appendArray:function(a1,a2){Array.prototype.push.apply(a1,a2);},indexOf:function(a,val){for(var i=0;i<a.length;i=i+1){if(a[i]===val){return i;}}return -1;},toObject:function(a){var o={};for(var i=0;i<a.length;i=i+1){o[a[i]]=true;}return o;},uniq:function(a){return YUI.ObjectUtil.keys(YUI.ArrayUtil.toObject(a));}}};YAHOO.util.YUILoader=function(o){this._internalCallback=null;this._useYahooListener=false;this.onSuccess=null;this.onFailure=Y.log;this.onProgress=null;this.onTimeout=null;this.scope=this;this.data=null;this.insertBefore=null;this.charset=null;this.varName=null;this.base=YUI.info.base;this.comboBase=YUI.info.comboBase;this.combine=false;this.root=YUI.info.root;this.timeout=0;this.ignore=null;this.force=null;this.allowRollup=true;this.filter=null;this.required={};this.moduleInfo=lang.merge(YUI.info.moduleInfo);this.rollups=null;this.loadOptional=false;this.sorted=[];this.loaded={};this.dirty=true;this.inserted={};var self=this;env.listeners.push(function(m){if(self._useYahooListener){self.loadNext(m.name);}});this.skin=lang.merge(YUI.info.skin);this._config(o);};Y.util.YUILoader.prototype={FILTERS:{RAW:{"searchExp":"-min\\.js","replaceStr":".js"},DEBUG:{"searchExp":"-min\\.js","replaceStr":"-debug.js"}},SKIN_PREFIX:"skin-",_config:function(o){if(o){for(var i in o){if(lang.hasOwnProperty(o,i)){if(i=="require"){this.require(o[i]);}else{this[i]=o[i];}}}}var f=this.filter;if(lang.isString(f)){f=f.toUpperCase();if(f==="DEBUG"){this.require("logger");}if(!Y.widget.LogWriter){Y.widget.LogWriter=function(){return Y;};}this.filter=this.FILTERS[f];}},addModule:function(o){if(!o||!o.name||!o.type||(!o.path&&!o.fullpath)){return false;}o.ext=("ext" in o)?o.ext:true;o.requires=o.requires||[];this.moduleInfo[o.name]=o;this.dirty=true;return true;},require:function(what){var a=(typeof what==="string")?arguments:what;this.dirty=true;YUI.ObjectUtil.appendArray(this.required,a);},_addSkin:function(skin,mod){var name=this.formatSkin(skin),info=this.moduleInfo,sinf=this.skin,ext=info[mod]&&info[mod].ext;if(!info[name]){this.addModule({"name":name,"type":"css","path":sinf.base+skin+"/"+sinf.path,"after":sinf.after,"rollup":sinf.rollup,"ext":ext});}if(mod){name=this.formatSkin(skin,mod);if(!info[name]){var mdef=info[mod],pkg=mdef.pkg||mod;this.addModule({"name":name,"type":"css","after":sinf.after,"path":pkg+"/"+sinf.base+skin+"/"+mod+".css","ext":ext});}}return name;},getRequires:function(mod){if(!mod){return[];}if(!this.dirty&&mod.expanded){return mod.expanded;}mod.requires=mod.requires||[];var i,d=[],r=mod.requires,o=mod.optional,info=this.moduleInfo,m;for(i=0;i<r.length;i=i+1){d.push(r[i]);m=info[r[i]];YUI.ArrayUtil.appendArray(d,this.getRequires(m));}if(o&&this.loadOptional){for(i=0;i<o.length;i=i+1){d.push(o[i]);YUI.ArrayUtil.appendArray(d,this.getRequires(info[o[i]]));}}mod.expanded=YUI.ArrayUtil.uniq(d);return mod.expanded;},getProvides:function(name,notMe){var addMe=!(notMe),ckey=(addMe)?PROV:SUPER,m=this.moduleInfo[name],o={};if(!m){return o;}if(m[ckey]){return m[ckey];}var s=m.supersedes,done={},me=this;var add=function(mm){if(!done[mm]){done[mm]=true;lang.augmentObject(o,me.getProvides(mm));}};if(s){for(var i=0;i<s.length;i=i+1){add(s[i]);}}m[SUPER]=o;m[PROV]=lang.merge(o);m[PROV][name]=true;return m[ckey];},calculate:function(o){if(o||this.dirty){this._config(o);this._setup();this._explode();if(this.allowRollup){this._rollup();}this._reduce();this._sort();this.dirty=false;}},_setup:function(){var info=this.moduleInfo,name,i,j;for(name in info){if(lang.hasOwnProperty(info,name)){var m=info[name];if(m&&m.skinnable){var o=this.skin.overrides,smod;if(o&&o[name]){for(i=0;i<o[name].length;i=i+1){smod=this._addSkin(o[name][i],name);}}else{smod=this._addSkin(this.skin.defaultSkin,name);}m.requires.push(smod);}}}var l=lang.merge(this.inserted);if(!this._sandbox){l=lang.merge(l,env.modules);}if(this.ignore){YUI.ObjectUtil.appendArray(l,this.ignore);}if(this.force){for(i=0;i<this.force.length;i=i+1){if(this.force[i] in l){delete l[this.force[i]];}}}for(j in l){if(lang.hasOwnProperty(l,j)){lang.augmentObject(l,this.getProvides(j));}}this.loaded=l;},_explode:function(){var r=this.required,i,mod;for(i in r){if(lang.hasOwnProperty(r,i)){mod=this.moduleInfo[i];if(mod){var req=this.getRequires(mod);if(req){YUI.ObjectUtil.appendArray(r,req);}}}}},_skin:function(){},formatSkin:function(skin,mod){var s=this.SKIN_PREFIX+skin;if(mod){s=s+"-"+mod;}return s;},parseSkin:function(mod){if(mod.indexOf(this.SKIN_PREFIX)===0){var a=mod.split("-");return{skin:a[1],module:a[2]};}return null;},_rollup:function(){var i,j,m,s,rollups={},r=this.required,roll,info=this.moduleInfo;if(this.dirty||!this.rollups){for(i in info){if(lang.hasOwnProperty(info,i)){m=info[i];if(m&&m.rollup){rollups[i]=m;}}}this.rollups=rollups;}for(;;){var rolled=false;for(i in rollups){if(!r[i]&&!this.loaded[i]){m=info[i];s=m.supersedes;roll=false;if(!m.rollup){continue;}var skin=(m.ext)?false:this.parseSkin(i),c=0;if(skin){for(j in r){if(lang.hasOwnProperty(r,j)){if(i!==j&&this.parseSkin(j)){c++;roll=(c>=m.rollup);if(roll){break;}}}}}else{for(j=0;j<s.length;j=j+1){if(this.loaded[s[j]]&&(!YUI.dupsAllowed[s[j]])){roll=false;break;}else{if(r[s[j]]){c++;roll=(c>=m.rollup);if(roll){break;}}}}}if(roll){r[i]=true;rolled=true;this.getRequires(m);}}}if(!rolled){break;}}},_reduce:function(){var i,j,s,m,r=this.required;for(i in r){if(i in this.loaded){delete r[i];}else{var skinDef=this.parseSkin(i);if(skinDef){if(!skinDef.module){var skin_pre=this.SKIN_PREFIX+skinDef.skin;for(j in r){if(lang.hasOwnProperty(r,j)){m=this.moduleInfo[j];var ext=m&&m.ext;if(!ext&&j!==i&&j.indexOf(skin_pre)>-1){delete r[j];}}}}}else{m=this.moduleInfo[i];s=m&&m.supersedes;if(s){for(j=0;j<s.length;j=j+1){if(s[j] in r){delete r[s[j]];}}}}}}},_onFailure:function(msg){YAHOO.log("Failure","info","loader");var f=this.onFailure;if(f){f.call(this.scope,{msg:"failure: "+msg,data:this.data,success:false});
-}},_onTimeout:function(){YAHOO.log("Timeout","info","loader");var f=this.onTimeout;if(f){f.call(this.scope,{msg:"timeout",data:this.data,success:false});}},_sort:function(){var s=[],info=this.moduleInfo,loaded=this.loaded,checkOptional=!this.loadOptional,me=this;var requires=function(aa,bb){var mm=info[aa];if(loaded[bb]||!mm){return false;}var ii,rr=mm.expanded,after=mm.after,other=info[bb],optional=mm.optional;if(rr&&YUI.ArrayUtil.indexOf(rr,bb)>-1){return true;}if(after&&YUI.ArrayUtil.indexOf(after,bb)>-1){return true;}if(checkOptional&&optional&&YUI.ArrayUtil.indexOf(optional,bb)>-1){return true;}var ss=info[bb]&&info[bb].supersedes;if(ss){for(ii=0;ii<ss.length;ii=ii+1){if(requires(aa,ss[ii])){return true;}}}if(mm.ext&&mm.type=="css"&&!other.ext&&other.type=="css"){return true;}return false;};for(var i in this.required){if(lang.hasOwnProperty(this.required,i)){s.push(i);}}var p=0;for(;;){var l=s.length,a,b,j,k,moved=false;for(j=p;j<l;j=j+1){a=s[j];for(k=j+1;k<l;k=k+1){if(requires(a,s[k])){b=s.splice(k,1);s.splice(j,0,b[0]);moved=true;break;}}if(moved){break;}else{p=p+1;}}if(!moved){break;}}this.sorted=s;},toString:function(){var o={type:"YUILoader",base:this.base,filter:this.filter,required:this.required,loaded:this.loaded,inserted:this.inserted};lang.dump(o,1);},_combine:function(){this._combining=[];var self=this,s=this.sorted,len=s.length,js=this.comboBase,css=this.comboBase,target,startLen=js.length,i,m,type=this.loadType;YAHOO.log("type "+type);for(i=0;i<len;i=i+1){m=this.moduleInfo[s[i]];if(m&&!m.ext&&(!type||type===m.type)){target=this.root+m.path;target+="&";if(m.type=="js"){js+=target;}else{css+=target;}this._combining.push(s[i]);}}if(this._combining.length){YAHOO.log("Attempting to combine: "+this._combining,"info","loader");var callback=function(o){var c=this._combining,len=c.length,i,m;for(i=0;i<len;i=i+1){this.inserted[c[i]]=true;}this.loadNext(o.data);},loadScript=function(){if(js.length>startLen){YAHOO.util.Get.script(self._filter(js),{data:self._loading,onSuccess:callback,onFailure:self._onFailure,onTimeout:self._onTimeout,insertBefore:self.insertBefore,charset:self.charset,timeout:self.timeout,scope:self});}};if(css.length>startLen){YAHOO.util.Get.css(this._filter(css),{data:this._loading,onSuccess:loadScript,onFailure:this._onFailure,onTimeout:this._onTimeout,insertBefore:this.insertBefore,charset:this.charset,timeout:this.timeout,scope:self});}else{loadScript();}return ;}else{this.loadNext(this._loading);}},insert:function(o,type){this.calculate(o);this._loading=true;this.loadType=type;if(this.combine){return this._combine();}if(!type){var self=this;this._internalCallback=function(){self._internalCallback=null;self.insert(null,"js");};this.insert(null,"css");return ;}this.loadNext();},sandbox:function(o,type){this._config(o);if(!this.onSuccess){throw new Error("You must supply an onSuccess handler for your sandbox");}this._sandbox=true;var self=this;if(!type||type!=="js"){this._internalCallback=function(){self._internalCallback=null;self.sandbox(null,"js");};this.insert(null,"css");return ;}if(!util.Connect){var ld=new YAHOO.util.YUILoader();ld.insert({base:this.base,filter:this.filter,require:"connection",insertBefore:this.insertBefore,charset:this.charset,onSuccess:function(){this.sandbox(null,"js");},scope:this},"js");return ;}this._scriptText=[];this._loadCount=0;this._stopCount=this.sorted.length;this._xhr=[];this.calculate();var s=this.sorted,l=s.length,i,m,url;for(i=0;i<l;i=i+1){m=this.moduleInfo[s[i]];if(!m){this._onFailure("undefined module "+m);for(var j=0;j<this._xhr.length;j=j+1){this._xhr[j].abort();}return ;}if(m.type!=="js"){this._loadCount++;continue;}url=m.fullpath;url=(url)?this._filter(url):this._url(m.path);var xhrData={success:function(o){var idx=o.argument[0],name=o.argument[2];this._scriptText[idx]=o.responseText;if(this.onProgress){this.onProgress.call(this.scope,{name:name,scriptText:o.responseText,xhrResponse:o,data:this.data});}this._loadCount++;if(this._loadCount>=this._stopCount){var v=this.varName||"YAHOO";var t="(function() {\n";var b="\nreturn "+v+";\n})();";var ref=eval(t+this._scriptText.join("\n")+b);this._pushEvents(ref);if(ref){this.onSuccess.call(this.scope,{reference:ref,data:this.data});}else{this._onFailure.call(this.varName+" reference failure");}}},failure:function(o){this.onFailure.call(this.scope,{msg:"XHR failure",xhrResponse:o,data:this.data});},scope:this,argument:[i,url,s[i]]};this._xhr.push(util.Connect.asyncRequest("GET",url,xhrData));}},loadNext:function(mname){if(!this._loading){return ;}if(mname){if(mname!==this._loading){return ;}this.inserted[mname]=true;if(this.onProgress){this.onProgress.call(this.scope,{name:mname,data:this.data});}}var s=this.sorted,len=s.length,i,m;for(i=0;i<len;i=i+1){if(s[i] in this.inserted){continue;}if(s[i]===this._loading){return ;}m=this.moduleInfo[s[i]];if(!m){this.onFailure.call(this.scope,{msg:"undefined module "+m,data:this.data});return ;}if(!this.loadType||this.loadType===m.type){this._loading=s[i];var fn=(m.type==="css")?util.Get.css:util.Get.script,url=m.fullpath,self=this,c=function(o){self.loadNext(o.data);};url=(url)?this._filter(url):this._url(m.path);if(env.ua.webkit&&env.ua.webkit<420&&m.type==="js"&&!m.varName){c=null;this._useYahooListener=true;}fn(url,{data:s[i],onSuccess:c,onFailure:this._onFailure,onTimeout:this._onTimeout,insertBefore:this.insertBefore,charset:this.charset,timeout:this.timeout,varName:m.varName,scope:self});return ;}}this._loading=null;if(this._internalCallback){var f=this._internalCallback;this._internalCallback=null;f.call(this);}else{if(this.onSuccess){this._pushEvents();this.onSuccess.call(this.scope,{data:this.data});}}},_pushEvents:function(ref){var r=ref||YAHOO;if(r.util&&r.util.Event){r.util.Event._load();}},_filter:function(str){var f=this.filter;return(f)?str.replace(new RegExp(f.searchExp),f.replaceStr):str;},_url:function(path){var u=this.base||"",f=this.filter;u=u+path;return this._filter(u);}};})();
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/yuiloader/yuiloader.js b/eclipse.org-common/yui/2.6.0/build/yuiloader/yuiloader.js
deleted file mode 100644
index 7a5d243..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuiloader/yuiloader.js
+++ /dev/null
@@ -1,3677 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-/**
- * The YAHOO object is the single global object used by YUI Library.  It
- * contains utility function for setting up namespaces, inheritance, and
- * logging.  YAHOO.util, YAHOO.widget, and YAHOO.example are namespaces
- * created automatically for and used by the library.
- * @module yahoo
- * @title  YAHOO Global
- */
-
-/**
- * YAHOO_config is not included as part of the library.  Instead it is an 
- * object that can be defined by the implementer immediately before 
- * including the YUI library.  The properties included in this object
- * will be used to configure global properties needed as soon as the 
- * library begins to load.
- * @class YAHOO_config
- * @static
- */
-
-/**
- * A reference to a function that will be executed every time a YAHOO module
- * is loaded.  As parameter, this function will receive the version
- * information for the module. See <a href="YAHOO.env.html#getVersion">
- * YAHOO.env.getVersion</a> for the description of the version data structure.
- * @property listener
- * @type Function
- * @static
- * @default undefined
- */
-
-/**
- * Set to true if the library will be dynamically loaded after window.onload.
- * Defaults to false 
- * @property injecting
- * @type boolean
- * @static
- * @default undefined
- */
-
-/**
- * Instructs the yuiloader component to dynamically load yui components and
- * their dependencies.  See the yuiloader documentation for more information
- * about dynamic loading
- * @property load
- * @static
- * @default undefined
- * @see yuiloader
- */
-
-/**
- * Forces the use of the supplied locale where applicable in the library
- * @property locale
- * @type string
- * @static
- * @default undefined
- */
-
-if (typeof YAHOO == "undefined" || !YAHOO) {
-    /**
-     * The YAHOO global namespace object.  If YAHOO is already defined, the
-     * existing YAHOO object will not be overwritten so that defined
-     * namespaces are preserved.
-     * @class YAHOO
-     * @static
-     */
-    var YAHOO = {};
-}
-
-/**
- * Returns the namespace specified and creates it if it doesn't exist
- * <pre>
- * YAHOO.namespace("property.package");
- * YAHOO.namespace("YAHOO.property.package");
- * </pre>
- * Either of the above would create YAHOO.property, then
- * YAHOO.property.package
- *
- * Be careful when naming packages. Reserved words may work in some browsers
- * and not others. For instance, the following will fail in Safari:
- * <pre>
- * YAHOO.namespace("really.long.nested.namespace");
- * </pre>
- * This fails because "long" is a future reserved word in ECMAScript
- *
- * @method namespace
- * @static
- * @param  {String*} arguments 1-n namespaces to create 
- * @return {Object}  A reference to the last namespace object created
- */
-YAHOO.namespace = function() {
-    var a=arguments, o=null, i, j, d;
-    for (i=0; i<a.length; i=i+1) {
-        d=a[i].split(".");
-        o=YAHOO;
-
-        // YAHOO is implied, so it is ignored if it is included
-        for (j=(d[0] == "YAHOO") ? 1 : 0; j<d.length; j=j+1) {
-            o[d[j]]=o[d[j]] || {};
-            o=o[d[j]];
-        }
-    }
-
-    return o;
-};
-
-/**
- * Uses YAHOO.widget.Logger to output a log message, if the widget is
- * available.
- *
- * @method log
- * @static
- * @param  {String}  msg  The message to log.
- * @param  {String}  cat  The log category for the message.  Default
- *                        categories are "info", "warn", "error", time".
- *                        Custom categories can be used as well. (opt)
- * @param  {String}  src  The source of the the message (opt)
- * @return {Boolean}      True if the log operation was successful.
- */
-YAHOO.log = function(msg, cat, src) {
-    var l=YAHOO.widget.Logger;
-    if(l && l.log) {
-        return l.log(msg, cat, src);
-    } else {
-        return false;
-    }
-};
-
-/**
- * Registers a module with the YAHOO object
- * @method register
- * @static
- * @param {String}   name    the name of the module (event, slider, etc)
- * @param {Function} mainClass a reference to class in the module.  This
- *                             class will be tagged with the version info
- *                             so that it will be possible to identify the
- *                             version that is in use when multiple versions
- *                             have loaded
- * @param {Object}   data      metadata object for the module.  Currently it
- *                             is expected to contain a "version" property
- *                             and a "build" property at minimum.
- */
-YAHOO.register = function(name, mainClass, data) {
-    var mods = YAHOO.env.modules;
-    if (!mods[name]) {
-        mods[name] = { versions:[], builds:[] };
-    }
-    var m=mods[name],v=data.version,b=data.build,ls=YAHOO.env.listeners;
-    m.name = name;
-    m.version = v;
-    m.build = b;
-    m.versions.push(v);
-    m.builds.push(b);
-    m.mainClass = mainClass;
-    // fire the module load listeners
-    for (var i=0;i<ls.length;i=i+1) {
-        ls[i](m);
-    }
-    // label the main class
-    if (mainClass) {
-        mainClass.VERSION = v;
-        mainClass.BUILD = b;
-    } else {
-        YAHOO.log("mainClass is undefined for module " + name, "warn");
-    }
-};
-
-/**
- * YAHOO.env is used to keep track of what is known about the YUI library and
- * the browsing environment
- * @class YAHOO.env
- * @static
- */
-YAHOO.env = YAHOO.env || {
-
-    /**
-     * Keeps the version info for all YUI modules that have reported themselves
-     * @property modules
-     * @type Object[]
-     */
-    modules: [],
-    
-    /**
-     * List of functions that should be executed every time a YUI module
-     * reports itself.
-     * @property listeners
-     * @type Function[]
-     */
-    listeners: []
-};
-
-/**
- * Returns the version data for the specified module:
- *      <dl>
- *      <dt>name:</dt>      <dd>The name of the module</dd>
- *      <dt>version:</dt>   <dd>The version in use</dd>
- *      <dt>build:</dt>     <dd>The build number in use</dd>
- *      <dt>versions:</dt>  <dd>All versions that were registered</dd>
- *      <dt>builds:</dt>    <dd>All builds that were registered.</dd>
- *      <dt>mainClass:</dt> <dd>An object that was was stamped with the
- *                 current version and build. If 
- *                 mainClass.VERSION != version or mainClass.BUILD != build,
- *                 multiple versions of pieces of the library have been
- *                 loaded, potentially causing issues.</dd>
- *       </dl>
- *
- * @method getVersion
- * @static
- * @param {String}  name the name of the module (event, slider, etc)
- * @return {Object} The version info
- */
-YAHOO.env.getVersion = function(name) {
-    return YAHOO.env.modules[name] || null;
-};
-
-/**
- * Do not fork for a browser if it can be avoided.  Use feature detection when
- * you can.  Use the user agent as a last resort.  YAHOO.env.ua stores a version
- * number for the browser engine, 0 otherwise.  This value may or may not map
- * to the version number of the browser using the engine.  The value is 
- * presented as a float so that it can easily be used for boolean evaluation 
- * as well as for looking for a particular range of versions.  Because of this, 
- * some of the granularity of the version info may be lost (e.g., Gecko 1.8.0.9 
- * reports 1.8).
- * @class YAHOO.env.ua
- * @static
- */
-YAHOO.env.ua = function() {
-    var o={
-
-        /**
-         * Internet Explorer version number or 0.  Example: 6
-         * @property ie
-         * @type float
-         */
-        ie:0,
-
-        /**
-         * Opera version number or 0.  Example: 9.2
-         * @property opera
-         * @type float
-         */
-        opera:0,
-
-        /**
-         * Gecko engine revision number.  Will evaluate to 1 if Gecko 
-         * is detected but the revision could not be found. Other browsers
-         * will be 0.  Example: 1.8
-         * <pre>
-         * Firefox 1.0.0.4: 1.7.8   <-- Reports 1.7
-         * Firefox 1.5.0.9: 1.8.0.9 <-- Reports 1.8
-         * Firefox 2.0.0.3: 1.8.1.3 <-- Reports 1.8
-         * Firefox 3 alpha: 1.9a4   <-- Reports 1.9
-         * </pre>
-         * @property gecko
-         * @type float
-         */
-        gecko:0,
-
-        /**
-         * AppleWebKit version.  KHTML browsers that are not WebKit browsers 
-         * will evaluate to 1, other browsers 0.  Example: 418.9.1
-         * <pre>
-         * Safari 1.3.2 (312.6): 312.8.1 <-- Reports 312.8 -- currently the 
-         *                                   latest available for Mac OSX 10.3.
-         * Safari 2.0.2:         416     <-- hasOwnProperty introduced
-         * Safari 2.0.4:         418     <-- preventDefault fixed
-         * Safari 2.0.4 (419.3): 418.9.1 <-- One version of Safari may run
-         *                                   different versions of webkit
-         * Safari 2.0.4 (419.3): 419     <-- Tiger installations that have been
-         *                                   updated, but not updated
-         *                                   to the latest patch.
-         * Webkit 212 nightly:   522+    <-- Safari 3.0 precursor (with native SVG
-         *                                   and many major issues fixed).  
-         * 3.x yahoo.com, flickr:422     <-- Safari 3.x hacks the user agent
-         *                                   string when hitting yahoo.com and 
-         *                                   flickr.com.
-         * Safari 3.0.4 (523.12):523.12  <-- First Tiger release - automatic update
-         *                                   from 2.x via the 10.4.11 OS patch
-         * Webkit nightly 1/2008:525+    <-- Supports DOMContentLoaded event.
-         *                                   yahoo.com user agent hack removed.
-         *                                   
-         * </pre>
-         * http://developer.apple.com/internet/safari/uamatrix.html
-         * @property webkit
-         * @type float
-         */
-        webkit: 0,
-
-        /**
-         * The mobile property will be set to a string containing any relevant
-         * user agent information when a modern mobile browser is detected.
-         * Currently limited to Safari on the iPhone/iPod Touch, Nokia N-series
-         * devices with the WebKit-based browser, and Opera Mini.  
-         * @property mobile 
-         * @type string
-         */
-        mobile: null,
-
-        /**
-         * Adobe AIR version number or 0.  Only populated if webkit is detected.
-         * Example: 1.0
-         * @property air
-         * @type float
-         */
-        air: 0
-
-    };
-
-    var ua=navigator.userAgent, m;
-
-    // Modern KHTML browsers should qualify as Safari X-Grade
-    if ((/KHTML/).test(ua)) {
-        o.webkit=1;
-    }
-    // Modern WebKit browsers are at least X-Grade
-    m=ua.match(/AppleWebKit\/([^\s]*)/);
-    if (m&&m[1]) {
-        o.webkit=parseFloat(m[1]);
-
-        // Mobile browser check
-        if (/ Mobile\//.test(ua)) {
-            o.mobile = "Apple"; // iPhone or iPod Touch
-        } else {
-            m=ua.match(/NokiaN[^\/]*/);
-            if (m) {
-                o.mobile = m[0]; // Nokia N-series, ex: NokiaN95
-            }
-        }
-
-        m=ua.match(/AdobeAIR\/([^\s]*)/);
-        if (m) {
-            o.air = m[0]; // Adobe AIR 1.0 or better
-        }
-
-    }
-
-    if (!o.webkit) { // not webkit
-        // @todo check Opera/8.01 (J2ME/MIDP; Opera Mini/2.0.4509/1316; fi; U; ssr)
-        m=ua.match(/Opera[\s\/]([^\s]*)/);
-        if (m&&m[1]) {
-            o.opera=parseFloat(m[1]);
-            m=ua.match(/Opera Mini[^;]*/);
-            if (m) {
-                o.mobile = m[0]; // ex: Opera Mini/2.0.4509/1316
-            }
-        } else { // not opera or webkit
-            m=ua.match(/MSIE\s([^;]*)/);
-            if (m&&m[1]) {
-                o.ie=parseFloat(m[1]);
-            } else { // not opera, webkit, or ie
-                m=ua.match(/Gecko\/([^\s]*)/);
-                if (m) {
-                    o.gecko=1; // Gecko detected, look for revision
-                    m=ua.match(/rv:([^\s\)]*)/);
-                    if (m&&m[1]) {
-                        o.gecko=parseFloat(m[1]);
-                    }
-                }
-            }
-        }
-    }
-    
-    return o;
-}();
-
-/*
- * Initializes the global by creating the default namespaces and applying
- * any new configuration information that is detected.  This is the setup
- * for env.
- * @method init
- * @static
- * @private
- */
-(function() {
-    YAHOO.namespace("util", "widget", "example");
-    if ("undefined" !== typeof YAHOO_config) {
-        var l=YAHOO_config.listener,ls=YAHOO.env.listeners,unique=true,i;
-        if (l) {
-            // if YAHOO is loaded multiple times we need to check to see if
-            // this is a new config object.  If it is, add the new component
-            // load listener to the stack
-            for (i=0;i<ls.length;i=i+1) {
-                if (ls[i]==l) {
-                    unique=false;
-                    break;
-                }
-            }
-            if (unique) {
-                ls.push(l);
-            }
-        }
-    }
-})();
-/**
- * Provides the language utilites and extensions used by the library
- * @class YAHOO.lang
- */
-YAHOO.lang = YAHOO.lang || {};
-
-(function() {
-
-var L = YAHOO.lang,
-
-    // ADD = ["toString", "valueOf", "hasOwnProperty"],
-    ADD = ["toString", "valueOf"],
-
-    OB = {
-
-    /**
-     * Determines whether or not the provided object is an array.
-     * Testing typeof/instanceof/constructor of arrays across frame 
-     * boundaries isn't possible in Safari unless you have a reference
-     * to the other frame to test against its Array prototype.  To
-     * handle this case, we test well-known array properties instead.
-     * properties.
-     * @method isArray
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isArray: function(o) { 
-        if (o) {
-           return L.isNumber(o.length) && L.isFunction(o.splice);
-        }
-        return false;
-    },
-
-    /**
-     * Determines whether or not the provided object is a boolean
-     * @method isBoolean
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isBoolean: function(o) {
-        return typeof o === 'boolean';
-    },
-    
-    /**
-     * Determines whether or not the provided object is a function
-     * @method isFunction
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isFunction: function(o) {
-        return typeof o === 'function';
-    },
-        
-    /**
-     * Determines whether or not the provided object is null
-     * @method isNull
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isNull: function(o) {
-        return o === null;
-    },
-        
-    /**
-     * Determines whether or not the provided object is a legal number
-     * @method isNumber
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isNumber: function(o) {
-        return typeof o === 'number' && isFinite(o);
-    },
-      
-    /**
-     * Determines whether or not the provided object is of type object
-     * or function
-     * @method isObject
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */  
-    isObject: function(o) {
-return (o && (typeof o === 'object' || L.isFunction(o))) || false;
-    },
-        
-    /**
-     * Determines whether or not the provided object is a string
-     * @method isString
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isString: function(o) {
-        return typeof o === 'string';
-    },
-        
-    /**
-     * Determines whether or not the provided object is undefined
-     * @method isUndefined
-     * @param {any} o The object being testing
-     * @return {boolean} the result
-     */
-    isUndefined: function(o) {
-        return typeof o === 'undefined';
-    },
-    
- 
-    /**
-     * IE will not enumerate native functions in a derived object even if the
-     * function was overridden.  This is a workaround for specific functions 
-     * we care about on the Object prototype. 
-     * @property _IEEnumFix
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @static
-     * @private
-     */
-    _IEEnumFix: (YAHOO.env.ua.ie) ? function(r, s) {
-            for (var i=0;i<ADD.length;i=i+1) {
-                var fname=ADD[i],f=s[fname];
-                if (L.isFunction(f) && f!=Object.prototype[fname]) {
-                    r[fname]=f;
-                }
-            }
-    } : function(){},
-       
-    /**
-     * Utility to set up the prototype, constructor and superclass properties to
-     * support an inheritance strategy that can chain constructors and methods.
-     * Static members will not be inherited.
-     *
-     * @method extend
-     * @static
-     * @param {Function} subc   the object to modify
-     * @param {Function} superc the object to inherit
-     * @param {Object} overrides  additional properties/methods to add to the
-     *                              subclass prototype.  These will override the
-     *                              matching items obtained from the superclass 
-     *                              if present.
-     */
-    extend: function(subc, superc, overrides) {
-        if (!superc||!subc) {
-            throw new Error("extend failed, please check that " +
-                            "all dependencies are included.");
-        }
-        var F = function() {};
-        F.prototype=superc.prototype;
-        subc.prototype=new F();
-        subc.prototype.constructor=subc;
-        subc.superclass=superc.prototype;
-        if (superc.prototype.constructor == Object.prototype.constructor) {
-            superc.prototype.constructor=superc;
-        }
-    
-        if (overrides) {
-            for (var i in overrides) {
-                if (L.hasOwnProperty(overrides, i)) {
-                    subc.prototype[i]=overrides[i];
-                }
-            }
-
-            L._IEEnumFix(subc.prototype, overrides);
-        }
-    },
-   
-    /**
-     * Applies all properties in the supplier to the receiver if the
-     * receiver does not have these properties yet.  Optionally, one or 
-     * more methods/properties can be specified (as additional 
-     * parameters).  This option will overwrite the property if receiver 
-     * has it already.  If true is passed as the third parameter, all 
-     * properties will be applied and _will_ overwrite properties in 
-     * the receiver.
-     *
-     * @method augmentObject
-     * @static
-     * @since 2.3.0
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @param {String*|boolean}  arguments zero or more properties methods 
-     *        to augment the receiver with.  If none specified, everything
-     *        in the supplier will be used unless it would
-     *        overwrite an existing property in the receiver. If true
-     *        is specified as the third parameter, all properties will
-     *        be applied and will overwrite an existing property in
-     *        the receiver
-     */
-    augmentObject: function(r, s) {
-        if (!s||!r) {
-            throw new Error("Absorb failed, verify dependencies.");
-        }
-        var a=arguments, i, p, override=a[2];
-        if (override && override!==true) { // only absorb the specified properties
-            for (i=2; i<a.length; i=i+1) {
-                r[a[i]] = s[a[i]];
-            }
-        } else { // take everything, overwriting only if the third parameter is true
-            for (p in s) { 
-                if (override || !(p in r)) {
-                    r[p] = s[p];
-                }
-            }
-            
-            L._IEEnumFix(r, s);
-        }
-    },
- 
-    /**
-     * Same as YAHOO.lang.augmentObject, except it only applies prototype properties
-     * @see YAHOO.lang.augmentObject
-     * @method augmentProto
-     * @static
-     * @param {Function} r  the object to receive the augmentation
-     * @param {Function} s  the object that supplies the properties to augment
-     * @param {String*|boolean}  arguments zero or more properties methods 
-     *        to augment the receiver with.  If none specified, everything 
-     *        in the supplier will be used unless it would overwrite an existing 
-     *        property in the receiver.  if true is specified as the third 
-     *        parameter, all properties will be applied and will overwrite an 
-     *        existing property in the receiver
-     */
-    augmentProto: function(r, s) {
-        if (!s||!r) {
-            throw new Error("Augment failed, verify dependencies.");
-        }
-        //var a=[].concat(arguments);
-        var a=[r.prototype,s.prototype];
-        for (var i=2;i<arguments.length;i=i+1) {
-            a.push(arguments[i]);
-        }
-        L.augmentObject.apply(this, a);
-    },
-
-      
-    /**
-     * Returns a simple string representation of the object or array.
-     * Other types of objects will be returned unprocessed.  Arrays
-     * are expected to be indexed.  Use object notation for
-     * associative arrays.
-     * @method dump
-     * @since 2.3.0
-     * @param o {Object} The object to dump
-     * @param d {int} How deep to recurse child objects, default 3
-     * @return {String} the dump result
-     */
-    dump: function(o, d) {
-        var i,len,s=[],OBJ="{...}",FUN="f(){...}",
-            COMMA=', ', ARROW=' => ';
-
-        // Cast non-objects to string
-        // Skip dates because the std toString is what we want
-        // Skip HTMLElement-like objects because trying to dump 
-        // an element will cause an unhandled exception in FF 2.x
-        if (!L.isObject(o)) {
-            return o + "";
-        } else if (o instanceof Date || ("nodeType" in o && "tagName" in o)) {
-            return o;
-        } else if  (L.isFunction(o)) {
-            return FUN;
-        }
-
-        // dig into child objects the depth specifed. Default 3
-        d = (L.isNumber(d)) ? d : 3;
-
-        // arrays [1, 2, 3]
-        if (L.isArray(o)) {
-            s.push("[");
-            for (i=0,len=o.length;i<len;i=i+1) {
-                if (L.isObject(o[i])) {
-                    s.push((d > 0) ? L.dump(o[i], d-1) : OBJ);
-                } else {
-                    s.push(o[i]);
-                }
-                s.push(COMMA);
-            }
-            if (s.length > 1) {
-                s.pop();
-            }
-            s.push("]");
-        // objects {k1 => v1, k2 => v2}
-        } else {
-            s.push("{");
-            for (i in o) {
-                if (L.hasOwnProperty(o, i)) {
-                    s.push(i + ARROW);
-                    if (L.isObject(o[i])) {
-                        s.push((d > 0) ? L.dump(o[i], d-1) : OBJ);
-                    } else {
-                        s.push(o[i]);
-                    }
-                    s.push(COMMA);
-                }
-            }
-            if (s.length > 1) {
-                s.pop();
-            }
-            s.push("}");
-        }
-
-        return s.join("");
-    },
-
-    /**
-     * Does variable substitution on a string. It scans through the string 
-     * looking for expressions enclosed in { } braces. If an expression 
-     * is found, it is used a key on the object.  If there is a space in
-     * the key, the first word is used for the key and the rest is provided
-     * to an optional function to be used to programatically determine the
-     * value (the extra information might be used for this decision). If 
-     * the value for the key in the object, or what is returned from the
-     * function has a string value, number value, or object value, it is 
-     * substituted for the bracket expression and it repeats.  If this
-     * value is an object, it uses the Object's toString() if this has
-     * been overridden, otherwise it does a shallow dump of the key/value
-     * pairs.
-     * @method substitute
-     * @since 2.3.0
-     * @param s {String} The string that will be modified.
-     * @param o {Object} An object containing the replacement values
-     * @param f {Function} An optional function that can be used to
-     *                     process each match.  It receives the key,
-     *                     value, and any extra metadata included with
-     *                     the key inside of the braces.
-     * @return {String} the substituted string
-     */
-    substitute: function (s, o, f) {
-        var i, j, k, key, v, meta, saved=[], token, 
-            DUMP='dump', SPACE=' ', LBRACE='{', RBRACE='}';
-
-
-        for (;;) {
-            i = s.lastIndexOf(LBRACE);
-            if (i < 0) {
-                break;
-            }
-            j = s.indexOf(RBRACE, i);
-            if (i + 1 >= j) {
-                break;
-            }
-
-            //Extract key and meta info 
-            token = s.substring(i + 1, j);
-            key = token;
-            meta = null;
-            k = key.indexOf(SPACE);
-            if (k > -1) {
-                meta = key.substring(k + 1);
-                key = key.substring(0, k);
-            }
-
-            // lookup the value
-            v = o[key];
-
-            // if a substitution function was provided, execute it
-            if (f) {
-                v = f(key, v, meta);
-            }
-
-            if (L.isObject(v)) {
-                if (L.isArray(v)) {
-                    v = L.dump(v, parseInt(meta, 10));
-                } else {
-                    meta = meta || "";
-
-                    // look for the keyword 'dump', if found force obj dump
-                    var dump = meta.indexOf(DUMP);
-                    if (dump > -1) {
-                        meta = meta.substring(4);
-                    }
-
-                    // use the toString if it is not the Object toString 
-                    // and the 'dump' meta info was not found
-                    if (v.toString===Object.prototype.toString||dump>-1) {
-                        v = L.dump(v, parseInt(meta, 10));
-                    } else {
-                        v = v.toString();
-                    }
-                }
-            } else if (!L.isString(v) && !L.isNumber(v)) {
-                // This {block} has no replace string. Save it for later.
-                v = "~-" + saved.length + "-~";
-                saved[saved.length] = token;
-
-                // break;
-            }
-
-            s = s.substring(0, i) + v + s.substring(j + 1);
-
-
-        }
-
-        // restore saved {block}s
-        for (i=saved.length-1; i>=0; i=i-1) {
-            s = s.replace(new RegExp("~-" + i + "-~"), "{"  + saved[i] + "}", "g");
-        }
-
-        return s;
-    },
-
-
-    /**
-     * Returns a string without any leading or trailing whitespace.  If 
-     * the input is not a string, the input will be returned untouched.
-     * @method trim
-     * @since 2.3.0
-     * @param s {string} the string to trim
-     * @return {string} the trimmed string
-     */
-    trim: function(s){
-        try {
-            return s.replace(/^\s+|\s+$/g, "");
-        } catch(e) {
-            return s;
-        }
-    },
-
-    /**
-     * Returns a new object containing all of the properties of
-     * all the supplied objects.  The properties from later objects
-     * will overwrite those in earlier objects.
-     * @method merge
-     * @since 2.3.0
-     * @param arguments {Object*} the objects to merge
-     * @return the new merged object
-     */
-    merge: function() {
-        var o={}, a=arguments;
-        for (var i=0, l=a.length; i<l; i=i+1) {
-            L.augmentObject(o, a[i], true);
-        }
-        return o;
-    },
-
-    /**
-     * Executes the supplied function in the context of the supplied 
-     * object 'when' milliseconds later.  Executes the function a 
-     * single time unless periodic is set to true.
-     * @method later
-     * @since 2.4.0
-     * @param when {int} the number of milliseconds to wait until the fn 
-     * is executed
-     * @param o the context object
-     * @param fn {Function|String} the function to execute or the name of 
-     * the method in the 'o' object to execute
-     * @param data [Array] data that is provided to the function.  This accepts
-     * either a single item or an array.  If an array is provided, the
-     * function is executed with one parameter for each array item.  If
-     * you need to pass a single array parameter, it needs to be wrapped in
-     * an array [myarray]
-     * @param periodic {boolean} if true, executes continuously at supplied 
-     * interval until canceled
-     * @return a timer object. Call the cancel() method on this object to 
-     * stop the timer.
-     */
-    later: function(when, o, fn, data, periodic) {
-        when = when || 0; 
-        o = o || {};
-        var m=fn, d=data, f, r;
-
-        if (L.isString(fn)) {
-            m = o[fn];
-        }
-
-        if (!m) {
-            throw new TypeError("method undefined");
-        }
-
-        if (!L.isArray(d)) {
-            d = [data];
-        }
-
-        f = function() {
-            m.apply(o, d);
-        };
-
-        r = (periodic) ? setInterval(f, when) : setTimeout(f, when);
-
-        return {
-            interval: periodic,
-            cancel: function() {
-                if (this.interval) {
-                    clearInterval(r);
-                } else {
-                    clearTimeout(r);
-                }
-            }
-        };
-    },
-    
-    /**
-     * A convenience method for detecting a legitimate non-null value.
-     * Returns false for null/undefined/NaN, true for other values, 
-     * including 0/false/''
-     * @method isValue
-     * @since 2.3.0
-     * @param o {any} the item to test
-     * @return {boolean} true if it is not null/undefined/NaN || false
-     */
-    isValue: function(o) {
-        // return (o || o === false || o === 0 || o === ''); // Infinity fails
-return (L.isObject(o) || L.isString(o) || L.isNumber(o) || L.isBoolean(o));
-    }
-
-};
-
-/**
- * Determines whether or not the property was added
- * to the object instance.  Returns false if the property is not present
- * in the object, or was inherited from the prototype.
- * This abstraction is provided to enable hasOwnProperty for Safari 1.3.x.
- * There is a discrepancy between YAHOO.lang.hasOwnProperty and
- * Object.prototype.hasOwnProperty when the property is a primitive added to
- * both the instance AND prototype with the same value:
- * <pre>
- * var A = function() {};
- * A.prototype.foo = 'foo';
- * var a = new A();
- * a.foo = 'foo';
- * alert(a.hasOwnProperty('foo')); // true
- * alert(YAHOO.lang.hasOwnProperty(a, 'foo')); // false when using fallback
- * </pre>
- * @method hasOwnProperty
- * @param {any} o The object being testing
- * @param prop {string} the name of the property to test
- * @return {boolean} the result
- */
-L.hasOwnProperty = (Object.prototype.hasOwnProperty) ?
-    function(o, prop) {
-        return o && o.hasOwnProperty(prop);
-    } : function(o, prop) {
-        return !L.isUndefined(o[prop]) && 
-                o.constructor.prototype[prop] !== o[prop];
-    };
-
-// new lang wins
-OB.augmentObject(L, OB, true);
-
-/*
- * An alias for <a href="YAHOO.lang.html">YAHOO.lang</a>
- * @class YAHOO.util.Lang
- */
-YAHOO.util.Lang = L;
- 
-/**
- * Same as YAHOO.lang.augmentObject, except it only applies prototype 
- * properties.  This is an alias for augmentProto.
- * @see YAHOO.lang.augmentObject
- * @method augment
- * @static
- * @param {Function} r  the object to receive the augmentation
- * @param {Function} s  the object that supplies the properties to augment
- * @param {String*|boolean}  arguments zero or more properties methods to 
- *        augment the receiver with.  If none specified, everything
- *        in the supplier will be used unless it would
- *        overwrite an existing property in the receiver.  if true
- *        is specified as the third parameter, all properties will
- *        be applied and will overwrite an existing property in
- *        the receiver
- */
-L.augment = L.augmentProto;
-
-/**
- * An alias for <a href="YAHOO.lang.html#augment">YAHOO.lang.augment</a>
- * @for YAHOO
- * @method augment
- * @static
- * @param {Function} r  the object to receive the augmentation
- * @param {Function} s  the object that supplies the properties to augment
- * @param {String*}  arguments zero or more properties methods to 
- *        augment the receiver with.  If none specified, everything
- *        in the supplier will be used unless it would
- *        overwrite an existing property in the receiver
- */
-YAHOO.augment = L.augmentProto;
-       
-/**
- * An alias for <a href="YAHOO.lang.html#extend">YAHOO.lang.extend</a>
- * @method extend
- * @static
- * @param {Function} subc   the object to modify
- * @param {Function} superc the object to inherit
- * @param {Object} overrides  additional properties/methods to add to the
- *        subclass prototype.  These will override the
- *        matching items obtained from the superclass if present.
- */
-YAHOO.extend = L.extend;
-
-})();
-YAHOO.register("yahoo", YAHOO, {version: "2.6.0", build: "1321"});
-/**
- * Provides a mechanism to fetch remote resources and
- * insert them into a document
- * @module get
- * @requires yahoo
- */
-
-/**
- * Fetches and inserts one or more script or link nodes into the document 
- * @namespace YAHOO.util
- * @class YAHOO.util.Get
- */
-YAHOO.util.Get = function() {
-
-    /**
-     * hash of queues to manage multiple requests
-     * @property queues
-     * @private
-     */
-    var queues={}, 
-        
-    /**
-     * queue index used to generate transaction ids
-     * @property qidx
-     * @type int
-     * @private
-     */
-        qidx=0, 
-        
-    /**
-     * node index used to generate unique node ids
-     * @property nidx
-     * @type int
-     * @private
-     */
-        nidx=0, 
-
-        // ridx=0,
-
-        // sandboxFrame=null,
-
-    /**
-     * interal property used to prevent multiple simultaneous purge 
-     * processes
-     * @property purging
-     * @type boolean
-     * @private
-     */
-        purging=false,
-
-        ua=YAHOO.env.ua, 
-        
-        lang=YAHOO.lang;
-    
-    /** 
-     * Generates an HTML element, this is not appended to a document
-     * @method _node
-     * @param type {string} the type of element
-     * @param attr {string} the attributes
-     * @param win {Window} optional window to create the element in
-     * @return {HTMLElement} the generated node
-     * @private
-     */
-    var _node = function(type, attr, win) {
-        var w = win || window, d=w.document, n=d.createElement(type);
-
-        for (var i in attr) {
-            if (attr[i] && YAHOO.lang.hasOwnProperty(attr, i)) {
-                n.setAttribute(i, attr[i]);
-            }
-        }
-
-        return n;
-    };
-
-    /**
-     * Generates a link node
-     * @method _linkNode
-     * @param url {string} the url for the css file
-     * @param win {Window} optional window to create the node in
-     * @return {HTMLElement} the generated node
-     * @private
-     */
-    var _linkNode = function(url, win, charset) {
-        var c = charset || "utf-8";
-        return _node("link", {
-                "id":      "yui__dyn_" + (nidx++),
-                "type":    "text/css",
-                "charset": c,
-                "rel":     "stylesheet",
-                "href":    url
-            }, win);
-    };
-
-    /**
-     * Generates a script node
-     * @method _scriptNode
-     * @param url {string} the url for the script file
-     * @param win {Window} optional window to create the node in
-     * @return {HTMLElement} the generated node
-     * @private
-     */
-    var _scriptNode = function(url, win, charset) {
-        var c = charset || "utf-8";
-        return _node("script", {
-                "id":      "yui__dyn_" + (nidx++),
-                "type":    "text/javascript",
-                "charset": c,
-                "src":     url
-            }, win);
-    };
-
-    /**
-     * Returns the data payload for callback functions
-     * @method _returnData
-     * @private
-     */
-    var _returnData = function(q, msg) {
-        return {
-                tId: q.tId,
-                win: q.win,
-                data: q.data,
-                nodes: q.nodes,
-                msg: msg,
-                purge: function() {
-                    _purge(this.tId);
-                }
-            };
-    };
-
-    var _get = function(nId, tId) {
-        var q = queues[tId],
-            n = (lang.isString(nId)) ? q.win.document.getElementById(nId) : nId;
-        if (!n) {
-            _fail(tId, "target node not found: " + nId);
-        }
-
-        return n;
-    };
-
-    /*
-     * The request failed, execute fail handler with whatever
-     * was accomplished.  There isn't a failure case at the
-     * moment unless you count aborted transactions
-     * @method _fail
-     * @param id {string} the id of the request
-     * @private
-     */
-    var _fail = function(id, msg) {
-        var q = queues[id];
-        // execute failure callback
-        if (q.onFailure) {
-            var sc=q.scope || q.win;
-            q.onFailure.call(sc, _returnData(q, msg));
-        }
-    };
-
-    /**
-     * The request is complete, so executing the requester's callback
-     * @method _finish
-     * @param id {string} the id of the request
-     * @private
-     */
-    var _finish = function(id) {
-        var q = queues[id];
-        q.finished = true;
-
-        if (q.aborted) {
-            var msg = "transaction " + id + " was aborted";
-            _fail(id, msg);
-            return;
-        }
-
-        // execute success callback
-        if (q.onSuccess) {
-            var sc=q.scope || q.win;
-            q.onSuccess.call(sc, _returnData(q));
-        }
-    };
-
-    /**
-     * Timeout detected
-     * @method _timeout
-     * @param id {string} the id of the request
-     * @private
-     */
-    var _timeout = function(id) {
-        var q = queues[id];
-        if (q.onTimeout) {
-            var sc=q.context || q;
-            q.onTimeout.call(sc, _returnData(q));
-        }
-    };
-
-    /**
-     * Loads the next item for a given request
-     * @method _next
-     * @param id {string} the id of the request
-     * @param loaded {string} the url that was just loaded, if any
-     * @private
-     */
-    var _next = function(id, loaded) {
-        var q = queues[id];
-
-        if (q.timer) {
-            // Y.log('cancel timer');
-            q.timer.cancel();
-        }
-
-        if (q.aborted) {
-            var msg = "transaction " + id + " was aborted";
-            _fail(id, msg);
-            return;
-        }
-
-        if (loaded) {
-            q.url.shift(); 
-            if (q.varName) {
-                q.varName.shift(); 
-            }
-        } else {
-            // This is the first pass: make sure the url is an array
-            q.url = (lang.isString(q.url)) ? [q.url] : q.url;
-            if (q.varName) {
-                q.varName = (lang.isString(q.varName)) ? [q.varName] : q.varName;
-            }
-        }
-
-        var w=q.win, d=w.document, h=d.getElementsByTagName("head")[0], n;
-
-        if (q.url.length === 0) {
-            // Safari 2.x workaround - There is no way to know when 
-            // a script is ready in versions of Safari prior to 3.x.
-            // Adding an extra node reduces the problem, but doesn't
-            // eliminate it completely because the browser executes
-            // them asynchronously. 
-            if (q.type === "script" && ua.webkit && ua.webkit < 420 && 
-                    !q.finalpass && !q.varName) {
-                // Add another script node.  This does not guarantee that the
-                // scripts will execute in order, but it does appear to fix the
-                // problem on fast connections more effectively than using an
-                // arbitrary timeout.  It is possible that the browser does
-                // block subsequent script execution in this case for a limited
-                // time.
-                var extra = _scriptNode(null, q.win, q.charset);
-                extra.innerHTML='YAHOO.util.Get._finalize("' + id + '");';
-                q.nodes.push(extra); h.appendChild(extra);
-
-            } else {
-                _finish(id);
-            }
-
-            return;
-        } 
-
-
-        var url = q.url[0];
-
-        // if the url is undefined, this is probably a trailing comma problem in IE
-        if (!url) {
-            q.url.shift(); 
-            return _next(id);
-        }
-
-
-        if (q.timeout) {
-            // Y.log('create timer');
-            q.timer = lang.later(q.timeout, q, _timeout, id);
-        }
-
-        if (q.type === "script") {
-            n = _scriptNode(url, w, q.charset);
-        } else {
-            n = _linkNode(url, w, q.charset);
-        }
-
-        // track this node's load progress
-        _track(q.type, n, id, url, w, q.url.length);
-
-        // add the node to the queue so we can return it to the user supplied callback
-        q.nodes.push(n);
-
-        // add it to the head or insert it before 'insertBefore'
-        if (q.insertBefore) {
-            var s = _get(q.insertBefore, id);
-            if (s) {
-                s.parentNode.insertBefore(n, s);
-            }
-        } else {
-            h.appendChild(n);
-        }
-        
-
-        // FireFox does not support the onload event for link nodes, so there is
-        // no way to make the css requests synchronous. This means that the css 
-        // rules in multiple files could be applied out of order in this browser
-        // if a later request returns before an earlier one.  Safari too.
-        if ((ua.webkit || ua.gecko) && q.type === "css") {
-            _next(id, url);
-        }
-    };
-
-    /**
-     * Removes processed queues and corresponding nodes
-     * @method _autoPurge
-     * @private
-     */
-    var _autoPurge = function() {
-
-        if (purging) {
-            return;
-        }
-
-        purging = true;
-        for (var i in queues) {
-            var q = queues[i];
-            if (q.autopurge && q.finished) {
-                _purge(q.tId);
-                delete queues[i];
-            }
-        }
-
-        purging = false;
-    };
-
-    /**
-     * Removes the nodes for the specified queue
-     * @method _purge
-     * @private
-     */
-    var _purge = function(tId) {
-        var q=queues[tId];
-        if (q) {
-            var n=q.nodes, l=n.length, d=q.win.document, 
-                h=d.getElementsByTagName("head")[0];
-
-            if (q.insertBefore) {
-                var s = _get(q.insertBefore, tId);
-                if (s) {
-                    h = s.parentNode;
-                }
-            }
-
-            for (var i=0; i<l; i=i+1) {
-                h.removeChild(n[i]);
-            }
-
-            q.nodes = [];
-        }
-    };
-
-    /**
-     * Saves the state for the request and begins loading
-     * the requested urls
-     * @method queue
-     * @param type {string} the type of node to insert
-     * @param url {string} the url to load
-     * @param opts the hash of options for this request
-     * @private
-     */
-    var _queue = function(type, url, opts) {
-
-        var id = "q" + (qidx++);
-        opts = opts || {};
-
-        if (qidx % YAHOO.util.Get.PURGE_THRESH === 0) {
-            _autoPurge();
-        }
-
-        queues[id] = lang.merge(opts, {
-            tId: id,
-            type: type,
-            url: url,
-            finished: false,
-            aborted: false,
-            nodes: []
-        });
-
-        var q = queues[id];
-        q.win = q.win || window;
-        q.scope = q.scope || q.win;
-        q.autopurge = ("autopurge" in q) ? q.autopurge : 
-                      (type === "script") ? true : false;
-
-        lang.later(0, q, _next, id);
-
-        return {
-            tId: id
-        };
-    };
-
-    /**
-     * Detects when a node has been loaded.  In the case of
-     * script nodes, this does not guarantee that contained
-     * script is ready to use.
-     * @method _track
-     * @param type {string} the type of node to track
-     * @param n {HTMLElement} the node to track
-     * @param id {string} the id of the request
-     * @param url {string} the url that is being loaded
-     * @param win {Window} the targeted window
-     * @param qlength the number of remaining items in the queue,
-     * including this one
-     * @param trackfn {Function} function to execute when finished
-     * the default is _next
-     * @private
-     */
-    var _track = function(type, n, id, url, win, qlength, trackfn) {
-        var f = trackfn || _next;
-
-        // IE supports the readystatechange event for script and css nodes
-        if (ua.ie) {
-            n.onreadystatechange = function() {
-                var rs = this.readyState;
-                if ("loaded" === rs || "complete" === rs) {
-                    n.onreadystatechange = null;
-                    f(id, url);
-                }
-            };
-
-        // webkit prior to 3.x is problemmatic
-        } else if (ua.webkit) {
-
-            if (type === "script") {
-
-                // Safari 3.x supports the load event for script nodes (DOM2)
-                if (ua.webkit >= 420) {
-
-                    n.addEventListener("load", function() {
-                        f(id, url);
-                    });
-
-                // Nothing can be done with Safari < 3.x except to pause and hope
-                // for the best, particularly after last script is inserted. The
-                // scripts will always execute in the order they arrive, not
-                // necessarily the order in which they were inserted.  To support
-                // script nodes with complete reliability in these browsers, script
-                // nodes either need to invoke a function in the window once they
-                // are loaded or the implementer needs to provide a well-known
-                // property that the utility can poll for.
-                } else {
-                    // Poll for the existence of the named variable, if it
-                    // was supplied.
-                    var q = queues[id];
-                    if (q.varName) {
-                        var freq=YAHOO.util.Get.POLL_FREQ;
-                        q.maxattempts = YAHOO.util.Get.TIMEOUT/freq;
-                        q.attempts = 0;
-                        q._cache = q.varName[0].split(".");
-                        q.timer = lang.later(freq, q, function(o) {
-                            var a=this._cache, l=a.length, w=this.win, i;
-                            for (i=0; i<l; i=i+1) {
-                                w = w[a[i]];
-                                if (!w) {
-                                    // if we have exausted our attempts, give up
-                                    this.attempts++;
-                                    if (this.attempts++ > this.maxattempts) {
-                                        var msg = "Over retry limit, giving up";
-                                        q.timer.cancel();
-                                        _fail(id, msg);
-                                    } else {
-                                    }
-                                    return;
-                                }
-                            }
-                            
-
-                            q.timer.cancel();
-                            f(id, url);
-
-                        }, null, true);
-                    } else {
-                        lang.later(YAHOO.util.Get.POLL_FREQ, null, f, [id, url]);
-                    }
-                }
-            } 
-
-        // FireFox and Opera support onload (but not DOM2 in FF) handlers for
-        // script nodes.  Opera, but not FF, supports the onload event for link
-        // nodes.
-        } else { 
-            n.onload = function() {
-                f(id, url);
-            };
-        }
-    };
-
-    return {
-
-        /**
-         * The default poll freqency in ms, when needed
-         * @property POLL_FREQ
-         * @static
-         * @type int
-         * @default 10
-         */
-        POLL_FREQ: 10,
-
-        /**
-         * The number of request required before an automatic purge.
-         * property PURGE_THRESH
-         * @static
-         * @type int
-         * @default 20
-         */
-        PURGE_THRESH: 20,
-
-        /**
-         * The length time to poll for varName when loading a script in
-         * Safari 2.x before the transaction fails.
-         * property TIMEOUT
-         * @static
-         * @type int
-         * @default 2000
-         */
-        TIMEOUT: 2000,
-        
-        /**
-         * Called by the the helper for detecting script load in Safari
-         * @method _finalize
-         * @param id {string} the transaction id
-         * @private
-         */
-        _finalize: function(id) {
-            lang.later(0, null, _finish, id);
-        },
-
-        /**
-         * Abort a transaction
-         * @method abort
-         * @param {string|object} either the tId or the object returned from
-         * script() or css()
-         */
-        abort: function(o) {
-            var id = (lang.isString(o)) ? o : o.tId;
-            var q = queues[id];
-            if (q) {
-                q.aborted = true;
-            }
-        }, 
-
-        /**
-         * Fetches and inserts one or more script nodes into the head
-         * of the current document or the document in a specified window.
-         *
-         * @method script
-         * @static
-         * @param url {string|string[]} the url or urls to the script(s)
-         * @param opts {object} Options: 
-         * <dl>
-         * <dt>onSuccess</dt>
-         * <dd>
-         * callback to execute when the script(s) are finished loading
-         * The callback receives an object back with the following
-         * data:
-         * <dl>
-         * <dt>win</dt>
-         * <dd>the window the script(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove the nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>onFailure</dt>
-         * <dd>
-         * callback to execute when the script load operation fails
-         * The callback receives an object back with the following
-         * data:
-         * <dl>
-         * <dt>win</dt>
-         * <dd>the window the script(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted successfully</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove any nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>onTimeout</dt>
-         * <dd>
-         * callback to execute when a timeout occurs.
-         * The callback receives an object back with the following
-         * data:
-         * <dl>
-         * <dt>win</dt>
-         * <dd>the window the script(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove the nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>scope</dt>
-         * <dd>the execution context for the callbacks</dd>
-         * <dt>win</dt>
-         * <dd>a window other than the one the utility occupies</dd>
-         * <dt>autopurge</dt>
-         * <dd>
-         * setting to true will let the utilities cleanup routine purge 
-         * the script once loaded
-         * </dd>
-         * <dt>data</dt>
-         * <dd>
-         * data that is supplied to the callback when the script(s) are
-         * loaded.
-         * </dd>
-         * <dt>varName</dt>
-         * <dd>
-         * variable that should be available when a script is finished
-         * loading.  Used to help Safari 2.x and below with script load 
-         * detection.  The type of this property should match what was
-         * passed into the url parameter: if loading a single url, a
-         * string can be supplied.  If loading multiple scripts, you
-         * must supply an array that contains the variable name for
-         * each script.
-         * </dd>
-         * <dt>insertBefore</dt>
-         * <dd>node or node id that will become the new node's nextSibling</dd>
-         * </dl>
-         * <dt>charset</dt>
-         * <dd>Node charset, default utf-8</dd>
-         * <dt>timeout</dt>
-         * <dd>Number of milliseconds to wait before aborting and firing the timeout event</dd>
-         * <pre>
-         * // assumes yahoo, dom, and event are already on the page
-         * &nbsp;&nbsp;YAHOO.util.Get.script(
-         * &nbsp;&nbsp;["http://yui.yahooapis.com/2.3.1/build/dragdrop/dragdrop-min.js",
-         * &nbsp;&nbsp;&nbsp;"http://yui.yahooapis.com/2.3.1/build/animation/animation-min.js"], &#123;
-         * &nbsp;&nbsp;&nbsp;&nbsp;onSuccess: function(o) &#123;
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;new YAHOO.util.DDProxy("dd1"); // also new o.reference("dd1"); would work
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this.log("won't cause error because YAHOO is the scope");
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this.log(o.nodes.length === 2) // true
-         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// o.purge(); // optionally remove the script nodes immediately
-         * &nbsp;&nbsp;&nbsp;&nbsp;&#125;,
-         * &nbsp;&nbsp;&nbsp;&nbsp;onFailure: function(o) &#123;
-         * &nbsp;&nbsp;&nbsp;&nbsp;&#125;,
-         * &nbsp;&nbsp;&nbsp;&nbsp;data: "foo",
-         * &nbsp;&nbsp;&nbsp;&nbsp;timeout: 10000, // 10 second timeout
-         * &nbsp;&nbsp;&nbsp;&nbsp;scope: YAHOO,
-         * &nbsp;&nbsp;&nbsp;&nbsp;// win: otherframe // target another window/frame
-         * &nbsp;&nbsp;&nbsp;&nbsp;autopurge: true // allow the utility to choose when to remove the nodes
-         * &nbsp;&nbsp;&#125;);
-         * </pre>
-         * @return {tId: string} an object containing info about the transaction
-         */
-        script: function(url, opts) { return _queue("script", url, opts); },
-
-        /**
-         * Fetches and inserts one or more css link nodes into the 
-         * head of the current document or the document in a specified
-         * window.
-         * @method css
-         * @static
-         * @param url {string} the url or urls to the css file(s)
-         * @param opts Options: 
-         * <dl>
-         * <dt>onSuccess</dt>
-         * <dd>
-         * callback to execute when the css file(s) are finished loading
-         * The callback receives an object back with the following
-         * data:
-         * <dl>win</dl>
-         * <dd>the window the link nodes(s) were inserted into</dd>
-         * <dt>data</dt>
-         * <dd>the data object passed in when the request was made</dd>
-         * <dt>nodes</dt>
-         * <dd>An array containing references to the nodes that were
-         * inserted</dd>
-         * <dt>purge</dt>
-         * <dd>A function that, when executed, will remove the nodes
-         * that were inserted</dd>
-         * <dt>
-         * </dl>
-         * </dd>
-         * <dt>scope</dt>
-         * <dd>the execution context for the callbacks</dd>
-         * <dt>win</dt>
-         * <dd>a window other than the one the utility occupies</dd>
-         * <dt>data</dt>
-         * <dd>
-         * data that is supplied to the callbacks when the nodes(s) are
-         * loaded.
-         * </dd>
-         * <dt>insertBefore</dt>
-         * <dd>node or node id that will become the new node's nextSibling</dd>
-         * <dt>charset</dt>
-         * <dd>Node charset, default utf-8</dd>
-         * </dl>
-         * <pre>
-         *      YAHOO.util.Get.css("http://yui.yahooapis.com/2.3.1/build/menu/assets/skins/sam/menu.css");
-         * </pre>
-         * <pre>
-         *      YAHOO.util.Get.css(["http://yui.yahooapis.com/2.3.1/build/menu/assets/skins/sam/menu.css",
-         * </pre>
-         * @return {tId: string} an object containing info about the transaction
-         */
-        css: function(url, opts) {
-            return _queue("css", url, opts); 
-        }
-    };
-}();
-
-YAHOO.register("get", YAHOO.util.Get, {version: "2.6.0", build: "1321"});
-/**
- * Provides dynamic loading for the YUI library.  It includes the dependency
- * info for the library, and will automatically pull in dependencies for
- * the modules requested.  It supports rollup files (such as utilities.js
- * and yahoo-dom-event.js), and will automatically use these when
- * appropriate in order to minimize the number of http connections
- * required to load all of the dependencies.
- * 
- * @module yuiloader
- * @namespace YAHOO.util
- */
-
-/**
- * YUILoader provides dynamic loading for YUI.
- * @class YAHOO.util.YUILoader
- * @todo
- *      version management, automatic sandboxing
- */
-(function() {
-
-    var Y=YAHOO, util=Y.util, lang=Y.lang, env=Y.env,
-        PROV = "_provides", SUPER = "_supersedes",
-        REQ = "expanded", AFTER = "_after";
- 
-    var YUI = {
-
-        dupsAllowed: {'yahoo': true, 'get': true},
-
-        /*
-         * The library metadata for the current release  The is the default
-         * value for YAHOO.util.YUILoader.moduleInfo
-         * @property YUIInfo
-         * @static
-         */
-        info: {
-
-    // 'root': '2.5.2/build/',
-    // 'base': 'http://yui.yahooapis.com/2.5.2/build/',
-
-    'root': '2.6.0/build/',
-    'base': 'http://yui.yahooapis.com/2.6.0/build/',
-
-    'comboBase': 'http://yui.yahooapis.com/combo?',
-
-    'skin': {
-        'defaultSkin': 'sam',
-        'base': 'assets/skins/',
-        'path': 'skin.css',
-        'after': ['reset', 'fonts', 'grids', 'base'],
-        'rollup': 3
-    },
-
-    dupsAllowed: ['yahoo', 'get'],
-
-    'moduleInfo': {
-
-        'animation': {
-            'type': 'js',
-            'path': 'animation/animation-min.js',
-            'requires': ['dom', 'event']
-        },
-
-        'autocomplete': {
-            'type': 'js',
-            'path': 'autocomplete/autocomplete-min.js',
-            'requires': ['dom', 'event', 'datasource'],
-            'optional': ['connection', 'animation'],
-            'skinnable': true
-        },
-
-        'base': {
-            'type': 'css',
-            'path': 'base/base-min.css',
-            'after': ['reset', 'fonts', 'grids']
-        },
-
-        'button': {
-            'type': 'js',
-            'path': 'button/button-min.js',
-            'requires': ['element'],
-            'optional': ['menu'],
-            'skinnable': true
-        },
-
-        'calendar': {
-            'type': 'js',
-            'path': 'calendar/calendar-min.js',
-            'requires': ['event', 'dom'],
-            'skinnable': true
-        },
-
-        'carousel': {
-            'type': 'js',
-            'path': 'carousel/carousel-beta-min.js',
-            'requires': ['element'],
-            'optional': ['animation'],
-            'skinnable': true
-        },
-
-        'charts': {
-            'type': 'js',
-            'path': 'charts/charts-experimental-min.js',
-            'requires': ['element', 'json', 'datasource']
-        },
-
-        'colorpicker': {
-            'type': 'js',
-            'path': 'colorpicker/colorpicker-min.js',
-            'requires': ['slider', 'element'],
-            'optional': ['animation'],
-            'skinnable': true
-        },
-
-        'connection': {
-            'type': 'js',
-            'path': 'connection/connection-min.js',
-            'requires': ['event']
-        },
-
-        'container': {
-            'type': 'js',
-            'path': 'container/container-min.js',
-            'requires': ['dom', 'event'],
-            // button is also optional, but this creates a circular 
-            // dependency when loadOptional is specified.  button
-            // optionally includes menu, menu requires container.
-            'optional': ['dragdrop', 'animation', 'connection'],
-            'supersedes': ['containercore'],
-            'skinnable': true
-        },
-
-        'containercore': {
-            'type': 'js',
-            'path': 'container/container_core-min.js',
-            'requires': ['dom', 'event'],
-            'pkg': 'container'
-        },
-
-        'cookie': {
-            'type': 'js',
-            'path': 'cookie/cookie-min.js',
-            'requires': ['yahoo']
-        },
-
-        'datasource': {
-            'type': 'js',
-            'path': 'datasource/datasource-min.js',
-            'requires': ['event'],
-            'optional': ['connection']
-        },
-
-        'datatable': {
-            'type': 'js',
-            'path': 'datatable/datatable-min.js',
-            'requires': ['element', 'datasource'],
-            'optional': ['calendar', 'dragdrop', 'paginator'],
-            'skinnable': true
-        },
-
-        'dom': {
-            'type': 'js',
-            'path': 'dom/dom-min.js',
-            'requires': ['yahoo']
-        },
-
-        'dragdrop': {
-            'type': 'js',
-            'path': 'dragdrop/dragdrop-min.js',
-            'requires': ['dom', 'event']
-        },
-
-        'editor': {
-            'type': 'js',
-            'path': 'editor/editor-min.js',
-            'requires': ['menu', 'element', 'button'],
-            'optional': ['animation', 'dragdrop'],
-            'supersedes': ['simpleeditor'],
-            'skinnable': true
-        },
-
-        'element': {
-            'type': 'js',
-            'path': 'element/element-beta-min.js',
-            'requires': ['dom', 'event']
-        },
-
-        'event': {
-            'type': 'js',
-            'path': 'event/event-min.js',
-            'requires': ['yahoo']
-        },
-
-        'fonts': {
-            'type': 'css',
-            'path': 'fonts/fonts-min.css'
-        },
-
-        'get': {
-            'type': 'js',
-            'path': 'get/get-min.js',
-            'requires': ['yahoo']
-        },
-
-        'grids': {
-            'type': 'css',
-            'path': 'grids/grids-min.css',
-            'requires': ['fonts'],
-            'optional': ['reset']
-        },
-
-        'history': {
-            'type': 'js',
-            'path': 'history/history-min.js',
-            'requires': ['event']
-        },
-
-         'imagecropper': {
-             'type': 'js',
-             'path': 'imagecropper/imagecropper-beta-min.js',
-             'requires': ['dom', 'event', 'dragdrop', 'element', 'resize'],
-             'skinnable': true
-         },
-
-         'imageloader': {
-            'type': 'js',
-            'path': 'imageloader/imageloader-min.js',
-            'requires': ['event', 'dom']
-         },
-
-         'json': {
-            'type': 'js',
-            'path': 'json/json-min.js',
-            'requires': ['yahoo']
-         },
-
-         'layout': {
-             'type': 'js',
-             'path': 'layout/layout-min.js',
-             'requires': ['dom', 'event', 'element'],
-             'optional': ['animation', 'dragdrop', 'resize', 'selector'],
-             'skinnable': true
-         }, 
-
-        'logger': {
-            'type': 'js',
-            'path': 'logger/logger-min.js',
-            'requires': ['event', 'dom'],
-            'optional': ['dragdrop'],
-            'skinnable': true
-        },
-
-        'menu': {
-            'type': 'js',
-            'path': 'menu/menu-min.js',
-            'requires': ['containercore'],
-            'skinnable': true
-        },
-
-        'paginator': {
-            'type': 'js',
-            'path': 'paginator/paginator-min.js',
-            'requires': ['element'],
-            'skinnable': true
-        },
-
-        'profiler': {
-            'type': 'js',
-            'path': 'profiler/profiler-min.js',
-            'requires': ['yahoo']
-        },
-
-
-        'profilerviewer': {
-            'type': 'js',
-            'path': 'profilerviewer/profilerviewer-beta-min.js',
-            'requires': ['profiler', 'yuiloader', 'element'],
-            'skinnable': true
-        },
-
-        'reset': {
-            'type': 'css',
-            'path': 'reset/reset-min.css'
-        },
-
-        'reset-fonts-grids': {
-            'type': 'css',
-            'path': 'reset-fonts-grids/reset-fonts-grids.css',
-            'supersedes': ['reset', 'fonts', 'grids', 'reset-fonts'],
-            'rollup': 4
-        },
-
-        'reset-fonts': {
-            'type': 'css',
-            'path': 'reset-fonts/reset-fonts.css',
-            'supersedes': ['reset', 'fonts'],
-            'rollup': 2
-        },
-
-         'resize': {
-             'type': 'js',
-             'path': 'resize/resize-min.js',
-             'requires': ['dom', 'event', 'dragdrop', 'element'],
-             'optional': ['animation'],
-             'skinnable': true
-         },
-
-        'selector': {
-            'type': 'js',
-            'path': 'selector/selector-beta-min.js',
-            'requires': ['yahoo', 'dom']
-        },
-
-        'simpleeditor': {
-            'type': 'js',
-            'path': 'editor/simpleeditor-min.js',
-            'requires': ['element'],
-            'optional': ['containercore', 'menu', 'button', 'animation', 'dragdrop'],
-            'skinnable': true,
-            'pkg': 'editor'
-        },
-
-        'slider': {
-            'type': 'js',
-            'path': 'slider/slider-min.js',
-            'requires': ['dragdrop'],
-            'optional': ['animation'],
-            'skinnable': true
-        },
-
-        'tabview': {
-            'type': 'js',
-            'path': 'tabview/tabview-min.js',
-            'requires': ['element'],
-            'optional': ['connection'],
-            'skinnable': true
-        },
-
-        'treeview': {
-            'type': 'js',
-            'path': 'treeview/treeview-min.js',
-            'requires': ['event', 'dom'],
-            'skinnable': true
-        },
-
-        'uploader': {
-            'type': 'js',
-            'path': 'uploader/uploader-experimental.js',
-            'requires': ['element']
-        },
-
-        'utilities': {
-            'type': 'js',
-            'path': 'utilities/utilities.js',
-            'supersedes': ['yahoo', 'event', 'dragdrop', 'animation', 'dom', 'connection', 'element', 'yahoo-dom-event', 'get', 'yuiloader', 'yuiloader-dom-event'],
-            'rollup': 8
-        },
-
-        'yahoo': {
-            'type': 'js',
-            'path': 'yahoo/yahoo-min.js'
-        },
-
-        'yahoo-dom-event': {
-            'type': 'js',
-            'path': 'yahoo-dom-event/yahoo-dom-event.js',
-            'supersedes': ['yahoo', 'event', 'dom'],
-            'rollup': 3
-        },
-
-        'yuiloader': {
-            'type': 'js',
-            'path': 'yuiloader/yuiloader-min.js',
-            'supersedes': ['yahoo', 'get']
-        },
-
-        'yuiloader-dom-event': {
-            'type': 'js',
-            'path': 'yuiloader-dom-event/yuiloader-dom-event.js',
-            'supersedes': ['yahoo', 'dom', 'event', 'get', 'yuiloader', 'yahoo-dom-event'],
-            'rollup': 5
-        },
-
-        'yuitest': {
-            'type': 'js',
-            'path': 'yuitest/yuitest-min.js',
-            'requires': ['logger'],
-            'skinnable': true
-        }
-    }
-}
- , 
-
-        ObjectUtil: {
-            appendArray: function(o, a) {
-                if (a) {
-                    for (var i=0; i<a.length; i=i+1) {
-                        o[a[i]] = true;
-                    }
-                }
-            },
-
-            keys: function(o, ordered) {
-                var a=[], i;
-                for (i in o) {
-                    if (lang.hasOwnProperty(o, i)) {
-                        a.push(i);
-                    }
-                }
-
-                return a;
-            }
-        },
-
-        ArrayUtil: {
-
-            appendArray: function(a1, a2) {
-                Array.prototype.push.apply(a1, a2);
-                /*
-                for (var i=0; i<a2.length; i=i+1) {
-                    a1.push(a2[i]);
-                }
-                */
-            },
-
-            indexOf: function(a, val) {
-                for (var i=0; i<a.length; i=i+1) {
-                    if (a[i] === val) {
-                        return i;
-                    }
-                }
-
-                return -1;
-            },
-
-            toObject: function(a) {
-                var o = {};
-                for (var i=0; i<a.length; i=i+1) {
-                    o[a[i]] = true;
-                }
-
-                return o;
-            },
-
-            /*
-             * Returns a unique array.  Does not maintain order, which is fine
-             * for this application, and performs better than it would if it
-             * did.
-             */
-            uniq: function(a) {
-                return YUI.ObjectUtil.keys(YUI.ArrayUtil.toObject(a));
-            }
-        }
-    };
-
-    YAHOO.util.YUILoader = function(o) {
-
-        /**
-         * Internal callback to handle multiple internal insert() calls
-         * so that css is inserted prior to js
-         * @property _internalCallback
-         * @private
-         */
-        this._internalCallback = null;
-
-        /**
-         * Use the YAHOO environment listener to detect script load.  This
-         * is only switched on for Safari 2.x and below.
-         * @property _useYahooListener
-         * @private
-         */
-        this._useYahooListener = false;
-
-        /**
-         * Callback that will be executed when the loader is finished
-         * with an insert
-         * @method onSuccess
-         * @type function
-         */
-        this.onSuccess = null;
-
-        /**
-         * Callback that will be executed if there is a failure
-         * @method onFailure
-         * @type function
-         */
-        this.onFailure = Y.log;
-
-        /**
-         * Callback that will be executed each time a new module is loaded
-         * @method onProgress
-         * @type function
-         */
-        this.onProgress = null;
-
-        /**
-         * Callback that will be executed if a timeout occurs
-         * @method onTimeout
-         * @type function
-         */
-        this.onTimeout = null;
-
-        /**
-         * The execution scope for all callbacks
-         * @property scope
-         * @default this
-         */
-        this.scope = this;
-
-        /**
-         * Data that is passed to all callbacks
-         * @property data
-         */
-        this.data = null;
-
-        /**
-         * Node reference or id where new nodes should be inserted before
-         * @property insertBefore
-         * @type string|HTMLElement
-         */
-        this.insertBefore = null;
-
-        /**
-         * The charset attribute for inserted nodes
-         * @property charset
-         * @type string
-         * @default utf-8
-         */
-        this.charset = null;
-
-        /**
-         * The name of the variable in a sandbox or script node 
-         * (for external script support in Safari 2.x and earlier)
-         * to reference when the load is complete.  If this variable 
-         * is not available in the specified scripts, the operation will 
-         * fail.  
-         * @property varName
-         * @type string
-         */
-        this.varName = null;
-
-        /**
-         * The base directory.
-         * @property base
-         * @type string
-         * @default http://yui.yahooapis.com/[YUI VERSION]/build/
-         */
-        this.base = YUI.info.base;
-
-        /**
-         * Base path for the combo service
-         * @property comboBase
-         * @type string
-         * @default http://yui.yahooapis.com/combo?
-         */
-        this.comboBase = YUI.info.comboBase;
-
-        /**
-         * If configured, YUI will use the the combo handler on the
-         * Yahoo! CDN to pontentially reduce the number of http requests
-         * required.
-         * @property combine
-         * @type boolean
-         * @default false
-         */
-        // this.combine = (o && !('base' in o));
-        this.combine = false;
-
-
-        /**
-         * Root path to prepend to module path for the combo
-         * service
-         * @property root
-         * @type string
-         * @default [YUI VERSION]/build/
-         */
-        this.root = YUI.info.root;
-
-        /**
-         * Timeout value in milliseconds.  If set, this value will be used by
-         * the get utility.  the timeout event will fire if
-         * a timeout occurs.
-         * @property timeout
-         * @type int
-         */
-        this.timeout = 0;
-
-        /**
-         * A list of modules that should not be loaded, even if
-         * they turn up in the dependency tree
-         * @property ignore
-         * @type string[]
-         */
-        this.ignore = null;
-
-        /**
-         * A list of modules that should always be loaded, even
-         * if they have already been inserted into the page.
-         * @property force
-         * @type string[]
-         */
-        this.force = null;
-
-        /**
-         * Should we allow rollups
-         * @property allowRollup
-         * @type boolean
-         * @default true
-         */
-        this.allowRollup = true;
-
-        /**
-         * A filter to apply to result urls.  This filter will modify the default
-         * path for all modules.  The default path for the YUI library is the
-         * minified version of the files (e.g., event-min.js).  The filter property
-         * can be a predefined filter or a custom filter.  The valid predefined 
-         * filters are:
-         * <dl>
-         *  <dt>DEBUG</dt>
-         *  <dd>Selects the debug versions of the library (e.g., event-debug.js).
-         *      This option will automatically include the logger widget</dd>
-         *  <dt>RAW</dt>
-         *  <dd>Selects the non-minified version of the library (e.g., event.js).
-         * </dl>
-         * You can also define a custom filter, which must be an object literal 
-         * containing a search expression and a replace string:
-         * <pre>
-         *  myFilter: &#123; 
-         *      'searchExp': "-min\\.js", 
-         *      'replaceStr': "-debug.js"
-         *  &#125;
-         * </pre>
-         * @property filter
-         * @type string|{searchExp: string, replaceStr: string}
-         */
-        this.filter = null;
-
-        /**
-         * The list of requested modules
-         * @property required
-         * @type {string: boolean}
-         */
-        this.required = {};
-
-        /**
-         * The library metadata
-         * @property moduleInfo
-         */
-        this.moduleInfo = lang.merge(YUI.info.moduleInfo);
-
-        /**
-         * List of rollup files found in the library metadata
-         * @property rollups
-         */
-        this.rollups = null;
-
-        /**
-         * Whether or not to load optional dependencies for 
-         * the requested modules
-         * @property loadOptional
-         * @type boolean
-         * @default false
-         */
-        this.loadOptional = false;
-
-        /**
-         * All of the derived dependencies in sorted order, which
-         * will be populated when either calculate() or insert()
-         * is called
-         * @property sorted
-         * @type string[]
-         */
-        this.sorted = [];
-
-        /**
-         * Set when beginning to compute the dependency tree. 
-         * Composed of what YAHOO reports to be loaded combined
-         * with what has been loaded by the tool
-         * @propery loaded
-         * @type {string: boolean}
-         */
-        this.loaded = {};
-
-        /**
-         * Flag to indicate the dependency tree needs to be recomputed
-         * if insert is called again.
-         * @property dirty
-         * @type boolean
-         * @default true
-         */
-        this.dirty = true;
-
-        /**
-         * List of modules inserted by the utility
-         * @property inserted
-         * @type {string: boolean}
-         */
-        this.inserted = {};
-
-        /**
-         * Provides the information used to skin the skinnable components.
-         * The following skin definition would result in 'skin1' and 'skin2'
-         * being loaded for calendar (if calendar was requested), and
-         * 'sam' for all other skinnable components:
-         *
-         *   <code>
-         *   skin: {
-         *
-         *      // The default skin, which is automatically applied if not
-         *      // overriden by a component-specific skin definition.
-         *      // Change this in to apply a different skin globally
-         *      defaultSkin: 'sam', 
-         *
-         *      // This is combined with the loader base property to get
-         *      // the default root directory for a skin. ex:
-         *      // http://yui.yahooapis.com/2.3.0/build/assets/skins/sam/
-         *      base: 'assets/skins/',
-         *
-         *      // The name of the rollup css file for the skin
-         *      path: 'skin.css',
-         *
-         *      // The number of skinnable components requested that are
-         *      // required before using the rollup file rather than the
-         *      // individual component css files
-         *      rollup: 3,
-         *
-         *      // Any component-specific overrides can be specified here,
-         *      // making it possible to load different skins for different
-         *      // components.  It is possible to load more than one skin
-         *      // for a given component as well.
-         *      overrides: {
-         *          calendar: ['skin1', 'skin2']
-         *      }
-         *   }
-         *   </code>
-         *   @property skin
-         */
-
-        var self = this;
-
-        env.listeners.push(function(m) {
-            if (self._useYahooListener) {
-                //Y.log("YAHOO listener: " + m.name);
-                self.loadNext(m.name);
-            }
-        });
-
-        this.skin = lang.merge(YUI.info.skin); 
-
-        this._config(o);
-
-    };
-
-    Y.util.YUILoader.prototype = {
-
-        FILTERS: {
-            RAW: { 
-                'searchExp': "-min\\.js", 
-                'replaceStr': ".js"
-            },
-            DEBUG: { 
-                'searchExp': "-min\\.js", 
-                'replaceStr': "-debug.js"
-            }
-        },
-
-        SKIN_PREFIX: "skin-",
-
-        _config: function(o) {
-
-            // apply config values
-            if (o) {
-                for (var i in o) {
-                    if (lang.hasOwnProperty(o, i)) {
-                        if (i == "require") {
-                            this.require(o[i]);
-                        } else {
-                            this[i] = o[i];
-                        }
-                    }
-                }
-            }
-
-            // fix filter
-            var f = this.filter;
-
-            if (lang.isString(f)) {
-                f = f.toUpperCase();
-
-                // the logger must be available in order to use the debug
-                // versions of the library
-                if (f === "DEBUG") {
-                    this.require("logger");
-                }
-
-                // hack to handle a a bug where LogWriter is being instantiated
-                // at load time, and the loader has no way to sort above it
-                // at the moment.
-                if (!Y.widget.LogWriter) {
-                    Y.widget.LogWriter = function() {
-                        return Y;
-                    };
-                }
-
-                this.filter = this.FILTERS[f];
-            }
-
-        },
-
-        /** Add a new module to the component metadata.         
-         * <dl>
-         *     <dt>name:</dt>       <dd>required, the component name</dd>
-         *     <dt>type:</dt>       <dd>required, the component type (js or css)</dd>
-         *     <dt>path:</dt>       <dd>required, the path to the script from "base"</dd>
-         *     <dt>requires:</dt>   <dd>array of modules required by this component</dd>
-         *     <dt>optional:</dt>   <dd>array of optional modules for this component</dd>
-         *     <dt>supersedes:</dt> <dd>array of the modules this component replaces</dd>
-         *     <dt>after:</dt>      <dd>array of modules the components which, if present, should be sorted above this one</dd>
-         *     <dt>rollup:</dt>     <dd>the number of superseded modules required for automatic rollup</dd>
-         *     <dt>fullpath:</dt>   <dd>If fullpath is specified, this is used instead of the configured base + path</dd>
-         *     <dt>skinnable:</dt>  <dd>flag to determine if skin assets should automatically be pulled in</dd>
-         * </dl>
-         * @method addModule
-         * @param o An object containing the module data
-         * @return {boolean} true if the module was added, false if 
-         * the object passed in did not provide all required attributes
-         */
-        addModule: function(o) {
-
-            if (!o || !o.name || !o.type || (!o.path && !o.fullpath)) {
-                return false;
-            }
-
-            o.ext = ('ext' in o) ? o.ext : true;
-            o.requires = o.requires || [];
-
-            this.moduleInfo[o.name] = o;
-            this.dirty = true;
-
-            return true;
-        },
-
-        /**
-         * Add a requirement for one or more module
-         * @method require
-         * @param what {string[] | string*} the modules to load
-         */
-        require: function(what) {
-            var a = (typeof what === "string") ? arguments : what;
-            this.dirty = true;
-            YUI.ObjectUtil.appendArray(this.required, a);
-        },
-
-        /**
-         * Adds the skin def to the module info
-         * @method _addSkin
-         * @param skin {string} the name of the skin
-         * @param mod {string} the name of the module
-         * @return {string} the module name for the skin
-         * @private
-         */
-        _addSkin: function(skin, mod) {
-
-            // Add a module definition for the skin rollup css
-            var name = this.formatSkin(skin), info = this.moduleInfo,
-                sinf = this.skin, ext = info[mod] && info[mod].ext;
-
-            // Y.log('ext? ' + mod + ": " + ext);
-            if (!info[name]) {
-                // Y.log('adding skin ' + name);
-                this.addModule({
-                    'name': name,
-                    'type': 'css',
-                    'path': sinf.base + skin + '/' + sinf.path,
-                    //'supersedes': '*',
-                    'after': sinf.after,
-                    'rollup': sinf.rollup,
-                    'ext': ext
-                });
-            }
-
-            // Add a module definition for the module-specific skin css
-            if (mod) {
-                name = this.formatSkin(skin, mod);
-                if (!info[name]) {
-                    var mdef = info[mod], pkg = mdef.pkg || mod;
-                    // Y.log('adding skin ' + name);
-                    this.addModule({
-                        'name': name,
-                        'type': 'css',
-                        'after': sinf.after,
-                        'path': pkg + '/' + sinf.base + skin + '/' + mod + '.css',
-                        'ext': ext
-                    });
-                }
-            }
-
-            return name;
-        },
-
-        /**
-         * Returns an object containing properties for all modules required
-         * in order to load the requested module
-         * @method getRequires
-         * @param mod The module definition from moduleInfo
-         */
-        getRequires: function(mod) {
-            if (!mod) {
-                return [];
-            }
-
-            if (!this.dirty && mod.expanded) {
-                return mod.expanded;
-            }
-
-            mod.requires=mod.requires || [];
-            var i, d=[], r=mod.requires, o=mod.optional, info=this.moduleInfo, m;
-            for (i=0; i<r.length; i=i+1) {
-                d.push(r[i]);
-                m = info[r[i]];
-                YUI.ArrayUtil.appendArray(d, this.getRequires(m));
-
-                // add existing skins for skinnable modules as well.  The only
-                // way to do this is go through the list of required items (this
-                // assumes that _skin is called before getRequires is called on
-                // the module.
-                // if (m.skinnable) {
-                //     var req=this.required, l=req.length;
-                //     for (var j=0; j<l; j=j+1) {
-                //         // YAHOO.log('checking ' + r[j]);
-                //         if (req[j].indexOf(r[j]) > -1) {
-                //             // YAHOO.log('adding ' + r[j]);
-                //             d.push(req[j]);
-                //         }
-                //     }
-                // }
-            }
-
-            if (o && this.loadOptional) {
-                for (i=0; i<o.length; i=i+1) {
-                    d.push(o[i]);
-                    YUI.ArrayUtil.appendArray(d, this.getRequires(info[o[i]]));
-                }
-            }
-
-            mod.expanded = YUI.ArrayUtil.uniq(d);
-
-            return mod.expanded;
-        },
-
-
-        /**
-         * Returns an object literal of the modules the supplied module satisfies
-         * @method getProvides
-         * @param name{string} The name of the module
-         * @param notMe {string} don't add this module name, only include superseded modules
-         * @return what this module provides
-         */
-        getProvides: function(name, notMe) {
-            var addMe = !(notMe), ckey = (addMe) ? PROV : SUPER,
-                m = this.moduleInfo[name], o = {};
-
-            if (!m) {
-                return o;
-            }
-
-            if (m[ckey]) {
-// Y.log('cached: ' + name + ' ' + ckey + ' ' + lang.dump(this.moduleInfo[name][ckey], 0));
-                return m[ckey];
-            }
-
-            var s = m.supersedes, done={}, me = this;
-
-            // use worker to break cycles
-            var add = function(mm) {
-                if (!done[mm]) {
-                    // Y.log(name + ' provides worker trying: ' + mm);
-                    done[mm] = true;
-                    // we always want the return value normal behavior 
-                    // (provides) for superseded modules.
-                    lang.augmentObject(o, me.getProvides(mm));
-                } 
-                
-                // else {
-                // Y.log(name + ' provides worker skipping done: ' + mm);
-                // }
-            };
-
-            // calculate superseded modules
-            if (s) {
-                for (var i=0; i<s.length; i=i+1) {
-                    add(s[i]);
-                }
-            }
-
-            // supersedes cache
-            m[SUPER] = o;
-            // provides cache
-            m[PROV] = lang.merge(o);
-            m[PROV][name] = true;
-
-// Y.log(name + " supersedes " + lang.dump(m[SUPER], 0));
-// Y.log(name + " provides " + lang.dump(m[PROV], 0));
-
-            return m[ckey];
-        },
-
-
-        /**
-         * Calculates the dependency tree, the result is stored in the sorted 
-         * property
-         * @method calculate
-         * @param o optional options object
-         */
-        calculate: function(o) {
-            if (o || this.dirty) {
-                this._config(o);
-                this._setup();
-                this._explode();
-                // this._skin(); // deprecated
-                if (this.allowRollup) {
-                    this._rollup();
-                }
-                this._reduce();
-                this._sort();
-
-                // Y.log("after calculate: " + lang.dump(this.required));
-
-                this.dirty = false;
-            }
-        },
-
-        /**
-         * Investigates the current YUI configuration on the page.  By default,
-         * modules already detected will not be loaded again unless a force
-         * option is encountered.  Called by calculate()
-         * @method _setup
-         * @private
-         */
-        _setup: function() {
-
-            var info = this.moduleInfo, name, i, j;
-
-            // Create skin modules
-            for (name in info) {
-
-                if (lang.hasOwnProperty(info, name)) {
-                    var m = info[name];
-                    if (m && m.skinnable) {
-                        // Y.log("skinning: " + name);
-                        var o=this.skin.overrides, smod;
-                        if (o && o[name]) {
-                            for (i=0; i<o[name].length; i=i+1) {
-                                smod = this._addSkin(o[name][i], name);
-                            }
-                        } else {
-                            smod = this._addSkin(this.skin.defaultSkin, name);
-                        }
-
-                        m.requires.push(smod);
-                    }
-                }
-
-            }
-
-            var l = lang.merge(this.inserted); // shallow clone
-            
-            if (!this._sandbox) {
-                l = lang.merge(l, env.modules);
-            }
-
-            // Y.log("Already loaded stuff: " + lang.dump(l, 0));
-
-            // add the ignore list to the list of loaded packages
-            if (this.ignore) {
-                YUI.ObjectUtil.appendArray(l, this.ignore);
-            }
-
-            // remove modules on the force list from the loaded list
-            if (this.force) {
-                for (i=0; i<this.force.length; i=i+1) {
-                    if (this.force[i] in l) {
-                        delete l[this.force[i]];
-                    }
-                }
-            }
-
-            // expand the list to include superseded modules
-            for (j in l) {
-                // Y.log("expanding: " + j);
-                if (lang.hasOwnProperty(l, j)) {
-                    lang.augmentObject(l, this.getProvides(j));
-                }
-            }
-
-            // Y.log("loaded expanded: " + lang.dump(l, 0));
-
-            this.loaded = l;
-
-        },
-        
-
-        /**
-         * Inspects the required modules list looking for additional 
-         * dependencies.  Expands the required list to include all 
-         * required modules.  Called by calculate()
-         * @method _explode
-         * @private
-         */
-        _explode: function() {
-
-            var r=this.required, i, mod;
-
-            for (i in r) {
-                if (lang.hasOwnProperty(r, i)) {
-                    mod = this.moduleInfo[i];
-                    if (mod) {
-
-                        var req = this.getRequires(mod);
-
-                        if (req) {
-                            YUI.ObjectUtil.appendArray(r, req);
-                        }
-                    }
-                }
-            }
-        },
-
-        /**
-         * Sets up the requirements for the skin assets if any of the
-         * requested modules are skinnable
-         * @method _skin
-         * @private
-         * @deprecated skin modules are generated for all skinnable
-         *             components during _setup(), and the components
-         *             are configured to require the skin.
-         */
-        _skin: function() {
-
-        },
-
-        /**
-         * Returns the skin module name for the specified skin name.  If a
-         * module name is supplied, the returned skin module name is 
-         * specific to the module passed in.
-         * @method formatSkin
-         * @param skin {string} the name of the skin
-         * @param mod {string} optional: the name of a module to skin
-         * @return {string} the full skin module name
-         */
-        formatSkin: function(skin, mod) {
-            var s = this.SKIN_PREFIX + skin;
-            if (mod) {
-                s = s + "-" + mod;
-            }
-
-            return s;
-        },
-        
-        /**
-         * Reverses <code>formatSkin</code>, providing the skin name and
-         * module name if the string matches the pattern for skins.
-         * @method parseSkin
-         * @param mod {string} the module name to parse
-         * @return {skin: string, module: string} the parsed skin name 
-         * and module name, or null if the supplied string does not match
-         * the skin pattern
-         */
-        parseSkin: function(mod) {
-            
-            if (mod.indexOf(this.SKIN_PREFIX) === 0) {
-                var a = mod.split("-");
-                return {skin: a[1], module: a[2]};
-            } 
-
-            return null;
-        },
-
-        /**
-         * Look for rollup packages to determine if all of the modules a
-         * rollup supersedes are required.  If so, include the rollup to
-         * help reduce the total number of connections required.  Called
-         * by calculate()
-         * @method _rollup
-         * @private
-         */
-        _rollup: function() {
-            var i, j, m, s, rollups={}, r=this.required, roll,
-                info = this.moduleInfo;
-
-            // find and cache rollup modules
-            if (this.dirty || !this.rollups) {
-                for (i in info) {
-                    if (lang.hasOwnProperty(info, i)) {
-                        m = info[i];
-                        //if (m && m.rollup && m.supersedes) {
-                        if (m && m.rollup) {
-                            rollups[i] = m;
-                        }
-                    }
-                }
-
-                this.rollups = rollups;
-            }
-
-            // make as many passes as needed to pick up rollup rollups
-            for (;;) {
-                var rolled = false;
-
-                // go through the rollup candidates
-                for (i in rollups) { 
-
-                    // there can be only one
-                    if (!r[i] && !this.loaded[i]) {
-                        m =info[i]; s = m.supersedes; roll=false;
-
-                        if (!m.rollup) {
-                            continue;
-                        }
-
-                        var skin = (m.ext) ? false : this.parseSkin(i), c = 0;
-
-                        // Y.log('skin? ' + i + ": " + skin);
-                        if (skin) {
-                            for (j in r) {
-                                if (lang.hasOwnProperty(r, j)) {
-                                    if (i !== j && this.parseSkin(j)) {
-                                        c++;
-                                        roll = (c >= m.rollup);
-                                        if (roll) {
-                                            // Y.log("skin rollup " + lang.dump(r));
-                                            break;
-                                        }
-                                    }
-                                }
-                            }
-
-                        } else {
-
-                            // check the threshold
-                            for (j=0;j<s.length;j=j+1) {
-
-                                // if the superseded module is loaded, we can't load the rollup
-                                if (this.loaded[s[j]] && (!YUI.dupsAllowed[s[j]])) {
-                                    roll = false;
-                                    break;
-                                // increment the counter if this module is required.  if we are
-                                // beyond the rollup threshold, we will use the rollup module
-                                } else if (r[s[j]]) {
-                                    c++;
-                                    roll = (c >= m.rollup);
-                                    if (roll) {
-                                        // Y.log("over thresh " + c + ", " + lang.dump(r));
-                                        break;
-                                    }
-                                }
-                            }
-                        }
-
-                        if (roll) {
-                            // Y.log("rollup: " +  i + ", " + lang.dump(this, 1));
-                            // add the rollup
-                            r[i] = true;
-                            rolled = true;
-
-                            // expand the rollup's dependencies
-                            this.getRequires(m);
-                        }
-                    }
-                }
-
-                // if we made it here w/o rolling up something, we are done
-                if (!rolled) {
-                    break;
-                }
-            }
-        },
-
-        /**
-         * Remove superceded modules and loaded modules.  Called by
-         * calculate() after we have the mega list of all dependencies
-         * @method _reduce
-         * @private
-         */
-        _reduce: function() {
-
-            var i, j, s, m, r=this.required;
-            for (i in r) {
-
-                // remove if already loaded
-                if (i in this.loaded) { 
-                    delete r[i];
-
-                // remove anything this module supersedes
-                } else {
-
-                    var skinDef = this.parseSkin(i);
-
-                    if (skinDef) {
-                        //YAHOO.log("skin found in reduce: " + skinDef.skin + ", " + skinDef.module);
-                        // the skin rollup will not have a module name
-                        if (!skinDef.module) {
-                            var skin_pre = this.SKIN_PREFIX + skinDef.skin;
-                            //YAHOO.log("skin_pre: " + skin_pre);
-                            for (j in r) {
-
-                                if (lang.hasOwnProperty(r, j)) {
-                                    m = this.moduleInfo[j];
-                                    var ext = m && m.ext;
-                                    if (!ext && j !== i && j.indexOf(skin_pre) > -1) {
-                                        // Y.log ("removing component skin: " + j);
-                                        delete r[j];
-                                    }
-                                }
-                            }
-                        }
-                    } else {
-
-                         m = this.moduleInfo[i];
-                         s = m && m.supersedes;
-                         if (s) {
-                             for (j=0; j<s.length; j=j+1) {
-                                 if (s[j] in r) {
-                                     delete r[s[j]];
-                                 }
-                             }
-                         }
-                    }
-                }
-            }
-        },
-
-        _onFailure: function(msg) {
-            YAHOO.log('Failure', 'info', 'loader');
-
-            var f = this.onFailure;
-            if (f) {
-                f.call(this.scope, {
-                    msg: 'failure: ' + msg,
-                    data: this.data,
-                    success: false
-                });
-            }
-        },
-
-        _onTimeout: function() {
-            YAHOO.log('Timeout', 'info', 'loader');
-            var f = this.onTimeout;
-            if (f) {
-                f.call(this.scope, {
-                    msg: 'timeout',
-                    data: this.data,
-                    success: false
-                });
-            }
-        },
-        
-        /**
-         * Sorts the dependency tree.  The last step of calculate()
-         * @method _sort
-         * @private
-         */
-        _sort: function() {
-            // create an indexed list
-            var s=[], info=this.moduleInfo, loaded=this.loaded,
-                checkOptional=!this.loadOptional, me = this;
-
-            // returns true if b is not loaded, and is required
-            // directly or by means of modules it supersedes.
-            var requires = function(aa, bb) {
-
-                var mm=info[aa];
-
-                if (loaded[bb] || !mm) {
-                    return false;
-                }
-
-                var ii, 
-                    rr = mm.expanded, 
-                    after = mm.after, 
-                    other = info[bb],
-                    optional = mm.optional;
-
-
-                // check if this module requires the other directly
-                if (rr && YUI.ArrayUtil.indexOf(rr, bb) > -1) {
-                    return true;
-                }
-
-                // check if this module should be sorted after the other
-                if (after && YUI.ArrayUtil.indexOf(after, bb) > -1) {
-                    return true;
-                }
-
-                // if loadOptional is not specified, optional dependencies still
-                // must be sorted correctly when present.
-                if (checkOptional && optional && YUI.ArrayUtil.indexOf(optional, bb) > -1) {
-                    return true;
-                }
-
-                // check if this module requires one the other supersedes
-                var ss=info[bb] && info[bb].supersedes;
-                if (ss) {
-                    for (ii=0; ii<ss.length; ii=ii+1) {
-                        if (requires(aa, ss[ii])) {
-                            return true;
-                        }
-                    }
-                }
-
-                // var ss=me.getProvides(bb, true);
-                // if (ss) {
-                //     for (ii in ss) {
-                //         if (requires(aa, ii)) {
-                //             return true;
-                //         }
-                //     }
-                // }
-
-                // external css files should be sorted below yui css
-                if (mm.ext && mm.type == 'css' && !other.ext && other.type == 'css') {
-                    return true;
-                }
-
-                return false;
-            };
-
-            // get the required items out of the obj into an array so we
-            // can sort
-            for (var i in this.required) {
-                if (lang.hasOwnProperty(this.required, i)) {
-                    s.push(i);
-                }
-            }
-
-            // pointer to the first unsorted item
-            var p=0; 
-
-            // keep going until we make a pass without moving anything
-            for (;;) {
-               
-                var l=s.length, a, b, j, k, moved=false;
-
-                // start the loop after items that are already sorted
-                for (j=p; j<l; j=j+1) {
-
-                    // check the next module on the list to see if its
-                    // dependencies have been met
-                    a = s[j];
-
-                    // check everything below current item and move if we
-                    // find a requirement for the current item
-                    for (k=j+1; k<l; k=k+1) {
-                        if (requires(a, s[k])) {
-
-                            // extract the dependency so we can move it up
-                            b = s.splice(k, 1);
-
-                            // insert the dependency above the item that 
-                            // requires it
-                            s.splice(j, 0, b[0]);
-
-                            moved = true;
-                            break;
-                        }
-                    }
-
-                    // jump out of loop if we moved something
-                    if (moved) {
-                        break;
-                    // this item is sorted, move our pointer and keep going
-                    } else {
-                        p = p + 1;
-                    }
-                }
-
-                // when we make it here and moved is false, we are 
-                // finished sorting
-                if (!moved) {
-                    break;
-                }
-
-            }
-
-            this.sorted = s;
-        },
-
-        toString: function() {
-            var o = {
-                type: "YUILoader",
-                base: this.base,
-                filter: this.filter,
-                required: this.required,
-                loaded: this.loaded,
-                inserted: this.inserted
-            };
-
-            lang.dump(o, 1);
-        },
-
-        _combine: function() {
-
-                this._combining = []; 
-
-                var self = this,
-                    s=this.sorted,
-                    len = s.length,
-                    js = this.comboBase,
-                    css = this.comboBase,
-                    target, 
-                    startLen = js.length,
-                    i, m, type = this.loadType;
-
-                YAHOO.log('type ' + type);
-
-                for (i=0; i<len; i=i+1) {
-
-                    m = this.moduleInfo[s[i]];
-
-                    if (m && !m.ext && (!type || type === m.type)) {
-
-                        target = this.root + m.path;
-
-                        // if (i < len-1) {
-                        target += '&';
-                        // }
-
-                        if (m.type == 'js') {
-                            js += target;
-                        } else {
-                            css += target;
-                        }
-
-                        // YAHOO.log(target);
-                        this._combining.push(s[i]);
-                    }
-                }
-
-                if (this._combining.length) {
-
-YAHOO.log('Attempting to combine: ' + this._combining, "info", "loader");
-
-                    var callback=function(o) {
-                        // YAHOO.log('Combo complete: ' + o.data, "info", "loader");
-                        // this._combineComplete = true;
-
-                        var c=this._combining, len=c.length, i, m;
-                        for (i=0; i<len; i=i+1) {
-                            this.inserted[c[i]] = true;
-                        }
-
-                        this.loadNext(o.data);
-                    }, 
-                    
-                    loadScript = function() {
-                        // YAHOO.log('combining js: ' + js);
-                        if (js.length > startLen) {
-                            YAHOO.util.Get.script(self._filter(js), {
-                                data: self._loading,
-                                onSuccess: callback,
-                                onFailure: self._onFailure,
-                                onTimeout: self._onTimeout,
-                                insertBefore: self.insertBefore,
-                                charset: self.charset,
-                                timeout: self.timeout,
-                                scope: self 
-                            });
-                        }
-                    };
-
-                    // load the css first
-                    // YAHOO.log('combining css: ' + css);
-                    if (css.length > startLen) {
-                        YAHOO.util.Get.css(this._filter(css), {
-                            data: this._loading,
-                            onSuccess: loadScript,
-                            onFailure: this._onFailure,
-                            onTimeout: this._onTimeout,
-                            insertBefore: this.insertBefore,
-                            charset: this.charset,
-                            timeout: this.timeout,
-                            scope: self 
-                        });
-                    } else {
-                        loadScript();
-                    }
-
-                    return;
-
-                } else {
-                    // this._combineComplete = true;
-                    this.loadNext(this._loading);
-                }
-        }, 
-
-        /**
-         * inserts the requested modules and their dependencies.  
-         * <code>type</code> can be "js" or "css".  Both script and 
-         * css are inserted if type is not provided.
-         * @method insert
-         * @param o optional options object
-         * @param type {string} the type of dependency to insert
-         */
-        insert: function(o, type) {
-            // if (o) {
-            //     Y.log("insert: " + lang.dump(o, 1) + ", " + type);
-            // } else {
-            //     Y.log("insert: " + this.toString() + ", " + type);
-            // }
-
-            // build the dependency list
-            this.calculate(o);
-
-
-            // set a flag to indicate the load has started
-            this._loading = true;
-
-            // flag to indicate we are done with the combo service
-            // and any additional files will need to be loaded
-            // individually
-            // this._combineComplete = false;
-
-            // keep the loadType (js, css or undefined) cached
-            this.loadType = type;
-
-            if (this.combine) {
-                return this._combine();
-            }
-
-            if (!type) {
-                // Y.log("trying to load css first");
-                var self = this;
-                this._internalCallback = function() {
-                            self._internalCallback = null;
-                            self.insert(null, "js");
-                        };
-                this.insert(null, "css");
-                return;
-            }
-
-
-            // start the load
-            this.loadNext();
-
-        },
-
-        /**
-         * Interns the script for the requested modules.  The callback is
-         * provided a reference to the sandboxed YAHOO object.  This only
-         * applies to the script: css can not be sandboxed; css will be
-         * loaded into the page normally if specified.
-         * @method sandbox
-         * @param callback {Function} the callback to exectued when the load is
-         *        complete.
-         */
-        sandbox: function(o, type) {
-            // if (o) {
-                // YAHOO.log("sandbox: " + lang.dump(o, 1) + ", " + type);
-            // } else {
-                // YAHOO.log("sandbox: " + this.toString() + ", " + type);
-            // }
-
-            this._config(o);
-
-            if (!this.onSuccess) {
-throw new Error("You must supply an onSuccess handler for your sandbox");
-            }
-
-            this._sandbox = true;
-
-            var self = this;
-
-            // take care of any css first (this can't be sandboxed)
-            if (!type || type !== "js") {
-                this._internalCallback = function() {
-                            self._internalCallback = null;
-                            self.sandbox(null, "js");
-                        };
-                this.insert(null, "css");
-                return;
-            }
-
-            // get the connection manager if not on the page
-            if (!util.Connect) {
-                // get a new loader instance to load connection.
-                var ld = new YAHOO.util.YUILoader();
-                ld.insert({
-                    base: this.base,
-                    filter: this.filter,
-                    require: "connection",
-                    insertBefore: this.insertBefore,
-                    charset: this.charset,
-                    onSuccess: function() {
-                        this.sandbox(null, "js");
-                    },
-                    scope: this
-                }, "js");
-                return;
-            }
-
-            this._scriptText = [];
-            this._loadCount = 0;
-            this._stopCount = this.sorted.length;
-            this._xhr = [];
-
-            this.calculate();
-
-            var s=this.sorted, l=s.length, i, m, url;
-
-            for (i=0; i<l; i=i+1) {
-                m = this.moduleInfo[s[i]];
-
-                // undefined modules cause a failure
-                if (!m) {
-                    this._onFailure("undefined module " + m);
-                    for (var j=0;j<this._xhr.length;j=j+1) {
-                        this._xhr[j].abort();
-                    }
-                    return;
-                }
-
-                // css files should be done
-                if (m.type !== "js") {
-                    this._loadCount++;
-                    continue;
-                }
-
-                url = m.fullpath;
-                url = (url) ? this._filter(url) : this._url(m.path);
-
-                // YAHOO.log("xhr request: " + url + ", " + i);
-
-                var xhrData = {
-
-                    success: function(o) {
-                        
-                        var idx=o.argument[0], name=o.argument[2];
-
-                        // store the response in the position it was requested
-                        this._scriptText[idx] = o.responseText; 
-                        
-                        // YAHOO.log("received: " + o.responseText.substr(0, 100) + ", " + idx);
-                    
-                        if (this.onProgress) {
-                            this.onProgress.call(this.scope, {
-                                        name: name,
-                                        scriptText: o.responseText,
-                                        xhrResponse: o,
-                                        data: this.data
-                                    });
-                        }
-
-                        // only generate the sandbox once everything is loaded
-                        this._loadCount++;
-
-                        if (this._loadCount >= this._stopCount) {
-
-                            // the variable to find
-                            var v = this.varName || "YAHOO";
-
-                            // wrap the contents of the requested modules in an anonymous function
-                            var t = "(function() {\n";
-                        
-                            // return the locally scoped reference.
-                            var b = "\nreturn " + v + ";\n})();";
-
-                            var ref = eval(t + this._scriptText.join("\n") + b);
-
-                            this._pushEvents(ref);
-
-                            if (ref) {
-                                this.onSuccess.call(this.scope, {
-                                        reference: ref,
-                                        data: this.data
-                                    });
-                            } else {
-                                this._onFailure.call(this.varName + " reference failure");
-                            }
-                        }
-                    },
-
-                    failure: function(o) {
-                        this.onFailure.call(this.scope, {
-                                msg: "XHR failure",
-                                xhrResponse: o,
-                                data: this.data
-                            });
-                    },
-
-                    scope: this,
-
-                    // module index, module name, sandbox name
-                    argument: [i, url, s[i]]
-
-                };
-
-                this._xhr.push(util.Connect.asyncRequest('GET', url, xhrData));
-            }
-        },
-
-        /**
-         * Executed every time a module is loaded, and if we are in a load
-         * cycle, we attempt to load the next script.  Public so that it
-         * is possible to call this if using a method other than
-         * YAHOO.register to determine when scripts are fully loaded
-         * @method loadNext
-         * @param mname {string} optional the name of the module that has
-         * been loaded (which is usually why it is time to load the next
-         * one)
-         */
-        loadNext: function(mname) {
-
-            // It is possible that this function is executed due to something
-            // else one the page loading a YUI module.  Only react when we
-            // are actively loading something
-            if (!this._loading) {
-                return;
-            }
-
-
-            if (mname) {
-
-                // if the module that was just loaded isn't what we were expecting,
-                // continue to wait
-                if (mname !== this._loading) {
-                    return;
-                }
-
-                // YAHOO.log("loadNext executing, just loaded " + mname);
-
-                // The global handler that is called when each module is loaded
-                // will pass that module name to this function.  Storing this
-                // data to avoid loading the same module multiple times
-                this.inserted[mname] = true;
-
-                if (this.onProgress) {
-                    this.onProgress.call(this.scope, {
-                            name: mname,
-                            data: this.data
-                        });
-                }
-                //var o = this.getProvides(mname);
-                //this.inserted = lang.merge(this.inserted, o);
-            }
-
-            var s=this.sorted, len=s.length, i, m;
-
-            for (i=0; i<len; i=i+1) {
-
-                // This.inserted keeps track of what the loader has loaded
-                if (s[i] in this.inserted) {
-                    // YAHOO.log(s[i] + " alread loaded ");
-                    continue;
-                }
-
-                // Because rollups will cause multiple load notifications
-                // from YAHOO, loadNext may be called multiple times for
-                // the same module when loading a rollup.  We can safely
-                // skip the subsequent requests
-                if (s[i] === this._loading) {
-                    // YAHOO.log("still loading " + s[i] + ", waiting");
-                    return;
-                }
-
-                // log("inserting " + s[i]);
-                m = this.moduleInfo[s[i]];
-
-                if (!m) {
-                    this.onFailure.call(this.scope, {
-                            msg: "undefined module " + m,
-                            data: this.data
-                        });
-                    return;
-                }
-
-                // The load type is stored to offer the possibility to load
-                // the css separately from the script.
-                if (!this.loadType || this.loadType === m.type) {
-                    this._loading = s[i];
-                    //YAHOO.log("attempting to load " + s[i] + ", " + this.base);
-
-                    var fn=(m.type === "css") ? util.Get.css : util.Get.script,
-                        url = m.fullpath,
-                        self=this, 
-                        c=function(o) {
-                            self.loadNext(o.data);
-                        };
-
-                        url = (url) ? this._filter(url) : this._url(m.path);
-
-                    // safari 2.x or lower, script, and part of YUI
-                    if (env.ua.webkit && env.ua.webkit < 420 && m.type === "js" && 
-                          !m.varName) {
-                          //YUI.info.moduleInfo[s[i]]) {
-                          //YAHOO.log("using YAHOO env " + s[i] + ", " + m.varName);
-                        c = null;
-                        this._useYahooListener = true;
-                    }
-
-                    fn(url, {
-                        data: s[i],
-                        onSuccess: c,
-                        onFailure: this._onFailure,
-                        onTimeout: this._onTimeout,
-                        insertBefore: this.insertBefore,
-                        charset: this.charset,
-                        timeout: this.timeout,
-                        varName: m.varName,
-                        scope: self 
-                    });
-
-                    return;
-                }
-            }
-
-            // we are finished
-            this._loading = null;
-
-            // internal callback for loading css first
-            if (this._internalCallback) {
-                var f = this._internalCallback;
-                this._internalCallback = null;
-                f.call(this);
-            } else if (this.onSuccess) {
-                this._pushEvents();
-                this.onSuccess.call(this.scope, {
-                        data: this.data
-                    });
-            }
-
-        },
-
-        /**
-         * In IE, the onAvailable/onDOMReady events need help when Event is
-         * loaded dynamically
-         * @method _pushEvents
-         * @param {Function} optional function reference
-         * @private
-         */
-        _pushEvents: function(ref) {
-            var r = ref || YAHOO;
-            if (r.util && r.util.Event) {
-                r.util.Event._load();
-            }
-        },
-
-        /**
-         * Applies filter
-         * method _filter
-         * @return {string} the filtered string
-         * @private
-         */
-        _filter: function(str) {
-            var f = this.filter;
-            return (f) ?  str.replace(new RegExp(f.searchExp), f.replaceStr) : str;
-        },
-
-        /**
-         * Generates the full url for a module
-         * method _url
-         * @param path {string} the path fragment
-         * @return {string} the full url
-         * @private
-         */
-        _url: function(path) {
-            
-            var u = this.base || "", f=this.filter;
-            u = u + path;
-            return this._filter(u);
-        }
-
-    };
-
-})();
diff --git a/eclipse.org-common/yui/2.6.0/build/yuitest/README b/eclipse.org-common/yui/2.6.0/build/yuitest/README
deleted file mode 100644
index 83e5290..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuitest/README
+++ /dev/null
@@ -1,34 +0,0 @@
-YUI Library - YUITest - Release Notes
-
-2.3.0
-
-  * Beta release
-
-2.3.1
-
-  * No changes
-
-2.4.0
-
-  * Changed test running from synchronous to asynchronous.
-  * Added wait() and resume() methods to TestRunner to allow testing of asynchronous features.
-  
-2.5.0
- 
-  * Updated test results format to include ignored tests, result types, and names.
-  * Introduced test result formats in JSON and XML.
-  * Introduced TestReporter object.
-  * Removed beta tag.
-  
-2.5.1
-
-  * Fixed ObjectAssert.hasProperty() so that is correctly identifies declared properties with a value of undefined.
-  * Fixed DateAssert documentation errors.
-  * Added ability to include framework assertion message in addition to custom assertion message.
-  * Fixed Assert.isUndefined() documentation error.
-  
-2.6.0
-
-  * Added failsafe mechanism for wait() - will automatically fail a test after 10 seconds if resume() isn't called.
-  * Augmented wait() to allow a single argument, a timeout after which point the test should fail.
-  * Fixed small bug in TestManager.
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/yuitest/assets/skins/sam/yuitest-skin.css b/eclipse.org-common/yui/2.6.0/build/yuitest/assets/skins/sam/yuitest-skin.css
deleted file mode 100644
index 85d776e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuitest/assets/skins/sam/yuitest-skin.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-
diff --git a/eclipse.org-common/yui/2.6.0/build/yuitest/assets/skins/sam/yuitest.css b/eclipse.org-common/yui/2.6.0/build/yuitest/assets/skins/sam/yuitest.css
deleted file mode 100644
index 85d776e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuitest/assets/skins/sam/yuitest.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-
diff --git a/eclipse.org-common/yui/2.6.0/build/yuitest/assets/testlogger.css b/eclipse.org-common/yui/2.6.0/build/yuitest/assets/testlogger.css
deleted file mode 100644
index 60ee530..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuitest/assets/testlogger.css
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-.yui-log {padding-top:3em;}
-/*
-.yui-log-container {position:relative;width:60em}
-.yui-log .yui-log-bd {height:auto; overflow:visible;}
-*/
-.yui-log-container {width:40em}
-.yui-log .yui-log-bd {height:60em}
-.yui-log .yui-log-btns {display:none;}
-.yui-log .yui-log-ft .yui-log-sourcefilters {visibility:hidden;}
-.yui-log .yui-log-hd {display:none;}
-.yui-log .yui-log-ft {position:absolute;top:0em;}
-
-.pass {
-    background-color: green;
-    font-weight: bold;
-    color: white;
-}
-.fail {
-    background-color: red;
-    font-weight: bold;
-    color: white;
-}
-.ignore {
-    background-color: #666;
-    font-weight: bold;
-    color: white;
-}
diff --git a/eclipse.org-common/yui/2.6.0/build/yuitest/assets/yuitest-core.css b/eclipse.org-common/yui/2.6.0/build/yuitest/assets/yuitest-core.css
deleted file mode 100644
index 85d776e..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuitest/assets/yuitest-core.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-
diff --git a/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest-debug.js b/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest-debug.js
deleted file mode 100644
index dee9a6f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest-debug.js
+++ /dev/null
@@ -1,3370 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.namespace("tool");
-
-//-----------------------------------------------------------------------------
-// TestCase object
-//-----------------------------------------------------------------------------
-(function(){
-    
-    //used for autogenerating test case names
-    var tempId = 0;
-    
-    /**
-     * Test case containing various tests to run.
-     * @param template An object containing any number of test methods, other methods,
-     *                 an optional name, and anything else the test case needs.
-     * @class TestCase
-     * @namespace YAHOO.tool
-     * @constructor
-     */
-    YAHOO.tool.TestCase = function (template /*:Object*/) {
-        
-        /**
-         * Special rules for the test case. Possible subobjects
-         * are fail, for tests that should fail, and error, for
-         * tests that should throw an error.
-         */
-        this._should /*:Object*/ = {};
-        
-        //copy over all properties from the template to this object
-        for (var prop in template) {
-            this[prop] = template[prop];
-        }    
-        
-        //check for a valid name
-        if (!YAHOO.lang.isString(this.name)){
-            /**
-             * Name for the test case.
-             */
-            this.name /*:String*/ = "testCase" + (tempId++);
-        }
-    
-    };
-    
-    
-    YAHOO.tool.TestCase.prototype = {  
-    
-        /**
-         * Resumes a paused test and runs the given function.
-         * @param {Function} segment (Optional) The function to run.
-         *      If omitted, the test automatically passes.
-         * @return {Void}
-         * @method resume
-         */
-        resume : function (segment /*:Function*/) /*:Void*/ {
-            YAHOO.tool.TestRunner.resume(segment);
-        },
-    
-        /**
-         * Causes the test case to wait a specified amount of time and then
-         * continue executing the given code.
-         * @param {Function} segment (Optional) The function to run after the delay.
-         *      If omitted, the TestRunner will wait until resume() is called.
-         * @param {int} delay (Optional) The number of milliseconds to wait before running
-         *      the function. If omitted, defaults to zero.
-         * @return {Void}
-         * @method wait
-         */
-        wait : function (segment /*:Function*/, delay /*:int*/) /*:Void*/{
-            var args = arguments;
-            if (YAHOO.lang.isFunction(args[0])){
-                throw new YAHOO.tool.TestCase.Wait(args[0], args[1]);
-            } else {
-                throw new YAHOO.tool.TestCase.Wait(function(){
-                    YAHOO.util.Assert.fail("Timeout: wait() called but resume() never called.");
-                }, (YAHOO.lang.isNumber(args[0]) ? args[0] : 10000));
-            }            
-        },
-    
-        //-------------------------------------------------------------------------
-        // Stub Methods
-        //-------------------------------------------------------------------------
-    
-        /**
-         * Function to run before each test is executed.
-         * @return {Void}
-         * @method setUp
-         */
-        setUp : function () /*:Void*/ {
-        },
-        
-        /**
-         * Function to run after each test is executed.
-         * @return {Void}
-         * @method tearDown
-         */
-        tearDown: function () /*:Void*/ {    
-        }
-    };
-    
-    /**
-     * Represents a stoppage in test execution to wait for an amount of time before
-     * continuing.
-     * @param {Function} segment A function to run when the wait is over.
-     * @param {int} delay The number of milliseconds to wait before running the code.
-     * @class Wait
-     * @namespace YAHOO.tool.TestCase
-     * @constructor
-     *
-     */
-    YAHOO.tool.TestCase.Wait = function (segment /*:Function*/, delay /*:int*/) {
-        
-        /**
-         * The segment of code to run when the wait is over.
-         * @type Function
-         * @property segment
-         */
-        this.segment /*:Function*/ = (YAHOO.lang.isFunction(segment) ? segment : null);
-    
-        /**
-         * The delay before running the segment of code.
-         * @type int
-         * @property delay
-         */
-        this.delay /*:int*/ = (YAHOO.lang.isNumber(delay) ? delay : 0);
-    
-    };
-
-})();
-
-YAHOO.namespace("tool");
-
-
-//-----------------------------------------------------------------------------
-// TestSuite object
-//-----------------------------------------------------------------------------
-
-/**
- * A test suite that can contain a collection of TestCase and TestSuite objects.
- * @param {String||Object} data The name of the test suite or an object containing
- *      a name property as well as setUp and tearDown methods.
- * @namespace YAHOO.tool
- * @class TestSuite
- * @constructor
- */
-YAHOO.tool.TestSuite = function (data /*:String||Object*/) {
-
-    /**
-     * The name of the test suite.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "";
-
-    /**
-     * Array of test suites and
-     * @private
-     */
-    this.items /*:Array*/ = [];
-
-    //initialize the properties
-    if (YAHOO.lang.isString(data)){
-        this.name = data;
-    } else if (YAHOO.lang.isObject(data)){
-        YAHOO.lang.augmentObject(this, data, true);
-    }
-
-    //double-check name
-    if (this.name === ""){
-        this.name = YAHOO.util.Dom.generateId(null, "testSuite");
-    }
-
-};
-
-YAHOO.tool.TestSuite.prototype = {
-    
-    /**
-     * Adds a test suite or test case to the test suite.
-     * @param {YAHOO.tool.TestSuite||YAHOO.tool.TestCase} testObject The test suite or test case to add.
-     * @return {Void}
-     * @method add
-     */
-    add : function (testObject /*:YAHOO.tool.TestSuite*/) /*:Void*/ {
-        if (testObject instanceof YAHOO.tool.TestSuite || testObject instanceof YAHOO.tool.TestCase) {
-            this.items.push(testObject);
-        }
-    },
-    
-    //-------------------------------------------------------------------------
-    // Stub Methods
-    //-------------------------------------------------------------------------
-
-    /**
-     * Function to run before each test is executed.
-     * @return {Void}
-     * @method setUp
-     */
-    setUp : function () /*:Void*/ {
-    },
-    
-    /**
-     * Function to run after each test is executed.
-     * @return {Void}
-     * @method tearDown
-     */
-    tearDown: function () /*:Void*/ {
-    }
-    
-};
-
-YAHOO.namespace("tool");
-
-/**
- * The YUI test tool
- * @module yuitest
- * @namespace YAHOO.tool
- * @requires yahoo,dom,event,logger
- */
-
-
-//-----------------------------------------------------------------------------
-// TestRunner object
-//-----------------------------------------------------------------------------
-
-
-YAHOO.tool.TestRunner = (function(){
-
-    /**
-     * A node in the test tree structure. May represent a TestSuite, TestCase, or
-     * test function.
-     * @param {Variant} testObject A TestSuite, TestCase, or the name of a test function.
-     * @class TestNode
-     * @constructor
-     * @private
-     */
-    function TestNode(testObject /*:Variant*/){
-    
-        /**
-         * The TestSuite, TestCase, or test function represented by this node.
-         * @type Variant
-         * @property testObject
-         */
-        this.testObject = testObject;
-        
-        /**
-         * Pointer to this node's first child.
-         * @type TestNode
-         * @property firstChild
-         */        
-        this.firstChild /*:TestNode*/ = null;
-        
-        /**
-         * Pointer to this node's last child.
-         * @type TestNode
-         * @property lastChild
-         */        
-        this.lastChild = null;
-        
-        /**
-         * Pointer to this node's parent.
-         * @type TestNode
-         * @property parent
-         */        
-        this.parent = null; 
-   
-        /**
-         * Pointer to this node's next sibling.
-         * @type TestNode
-         * @property next
-         */        
-        this.next = null;
-        
-        /**
-         * Test results for this test object.
-         * @type object
-         * @property results
-         */                
-        this.results /*:Object*/ = {
-            passed : 0,
-            failed : 0,
-            total : 0,
-            ignored : 0
-        };
-        
-        //initialize results
-        if (testObject instanceof YAHOO.tool.TestSuite){
-            this.results.type = "testsuite";
-            this.results.name = testObject.name;
-        } else if (testObject instanceof YAHOO.tool.TestCase){
-            this.results.type = "testcase";
-            this.results.name = testObject.name;
-        }
-       
-    }
-    
-    TestNode.prototype = {
-    
-        /**
-         * Appends a new test object (TestSuite, TestCase, or test function name) as a child
-         * of this node.
-         * @param {Variant} testObject A TestSuite, TestCase, or the name of a test function.
-         * @return {Void}
-         */
-        appendChild : function (testObject /*:Variant*/) /*:Void*/{
-            var node = new TestNode(testObject);
-            if (this.firstChild === null){
-                this.firstChild = this.lastChild = node;
-            } else {
-                this.lastChild.next = node;
-                this.lastChild = node;
-            }
-            node.parent = this;
-            return node;
-        }       
-    };
-
-    /**
-     * Runs test suites and test cases, providing events to allowing for the
-     * interpretation of test results.
-     * @namespace YAHOO.tool
-     * @class TestRunner
-     * @static
-     */
-    function TestRunner(){
-    
-        //inherit from EventProvider
-        TestRunner.superclass.constructor.apply(this,arguments);
-        
-        /**
-         * Suite on which to attach all TestSuites and TestCases to be run.
-         * @type YAHOO.tool.TestSuite
-         * @property masterSuite
-         * @private
-         * @static
-         */
-        this.masterSuite /*:YAHOO.tool.TestSuite*/ = new YAHOO.tool.TestSuite("YUI Test Results");        
-
-        /**
-         * Pointer to the current node in the test tree.
-         * @type TestNode
-         * @private
-         * @property _cur
-         * @static
-         */
-        this._cur = null;
-        
-        /**
-         * Pointer to the root node in the test tree.
-         * @type TestNode
-         * @private
-         * @property _root
-         * @static
-         */
-        this._root = null;
-        
-        //create events
-        var events /*:Array*/ = [
-            this.TEST_CASE_BEGIN_EVENT,
-            this.TEST_CASE_COMPLETE_EVENT,
-            this.TEST_SUITE_BEGIN_EVENT,
-            this.TEST_SUITE_COMPLETE_EVENT,
-            this.TEST_PASS_EVENT,
-            this.TEST_FAIL_EVENT,
-            this.TEST_IGNORE_EVENT,
-            this.COMPLETE_EVENT,
-            this.BEGIN_EVENT
-        ];
-        for (var i=0; i < events.length; i++){
-            this.createEvent(events[i], { scope: this });
-        }       
-   
-    }
-    
-    YAHOO.lang.extend(TestRunner, YAHOO.util.EventProvider, {
-    
-        //-------------------------------------------------------------------------
-        // Constants
-        //-------------------------------------------------------------------------
-         
-        /**
-         * Fires when a test case is opened but before the first 
-         * test is executed.
-         * @event testcasebegin
-         */         
-        TEST_CASE_BEGIN_EVENT /*:String*/ : "testcasebegin",
-        
-        /**
-         * Fires when all tests in a test case have been executed.
-         * @event testcasecomplete
-         */        
-        TEST_CASE_COMPLETE_EVENT /*:String*/ : "testcasecomplete",
-        
-        /**
-         * Fires when a test suite is opened but before the first 
-         * test is executed.
-         * @event testsuitebegin
-         */        
-        TEST_SUITE_BEGIN_EVENT /*:String*/ : "testsuitebegin",
-        
-        /**
-         * Fires when all test cases in a test suite have been
-         * completed.
-         * @event testsuitecomplete
-         */        
-        TEST_SUITE_COMPLETE_EVENT /*:String*/ : "testsuitecomplete",
-        
-        /**
-         * Fires when a test has passed.
-         * @event pass
-         */        
-        TEST_PASS_EVENT /*:String*/ : "pass",
-        
-        /**
-         * Fires when a test has failed.
-         * @event fail
-         */        
-        TEST_FAIL_EVENT /*:String*/ : "fail",
-        
-        /**
-         * Fires when a test has been ignored.
-         * @event ignore
-         */        
-        TEST_IGNORE_EVENT /*:String*/ : "ignore",
-        
-        /**
-         * Fires when all test suites and test cases have been completed.
-         * @event complete
-         */        
-        COMPLETE_EVENT /*:String*/ : "complete",
-        
-        /**
-         * Fires when the run() method is called.
-         * @event begin
-         */        
-        BEGIN_EVENT /*:String*/ : "begin",    
-        
-        //-------------------------------------------------------------------------
-        // Test Tree-Related Methods
-        //-------------------------------------------------------------------------
-
-        /**
-         * Adds a test case to the test tree as a child of the specified node.
-         * @param {TestNode} parentNode The node to add the test case to as a child.
-         * @param {YAHOO.tool.TestCase} testCase The test case to add.
-         * @return {Void}
-         * @static
-         * @private
-         * @method _addTestCaseToTestTree
-         */
-       _addTestCaseToTestTree : function (parentNode /*:TestNode*/, testCase /*:YAHOO.tool.TestCase*/) /*:Void*/{
-            
-            //add the test suite
-            var node = parentNode.appendChild(testCase);
-            
-            //iterate over the items in the test case
-            for (var prop in testCase){
-                if (prop.indexOf("test") === 0 && YAHOO.lang.isFunction(testCase[prop])){
-                    node.appendChild(prop);
-                }
-            }
-         
-        },
-        
-        /**
-         * Adds a test suite to the test tree as a child of the specified node.
-         * @param {TestNode} parentNode The node to add the test suite to as a child.
-         * @param {YAHOO.tool.TestSuite} testSuite The test suite to add.
-         * @return {Void}
-         * @static
-         * @private
-         * @method _addTestSuiteToTestTree
-         */
-        _addTestSuiteToTestTree : function (parentNode /*:TestNode*/, testSuite /*:YAHOO.tool.TestSuite*/) /*:Void*/ {
-            
-            //add the test suite
-            var node = parentNode.appendChild(testSuite);
-            
-            //iterate over the items in the master suite
-            for (var i=0; i < testSuite.items.length; i++){
-                if (testSuite.items[i] instanceof YAHOO.tool.TestSuite) {
-                    this._addTestSuiteToTestTree(node, testSuite.items[i]);
-                } else if (testSuite.items[i] instanceof YAHOO.tool.TestCase) {
-                    this._addTestCaseToTestTree(node, testSuite.items[i]);
-                }                   
-            }            
-        },
-        
-        /**
-         * Builds the test tree based on items in the master suite. The tree is a hierarchical
-         * representation of the test suites, test cases, and test functions. The resulting tree
-         * is stored in _root and the pointer _cur is set to the root initially.
-         * @return {Void}
-         * @static
-         * @private
-         * @method _buildTestTree
-         */
-        _buildTestTree : function () /*:Void*/ {
-        
-            this._root = new TestNode(this.masterSuite);
-            this._cur = this._root;
-            
-            //iterate over the items in the master suite
-            for (var i=0; i < this.masterSuite.items.length; i++){
-                if (this.masterSuite.items[i] instanceof YAHOO.tool.TestSuite) {
-                    this._addTestSuiteToTestTree(this._root, this.masterSuite.items[i]);
-                } else if (this.masterSuite.items[i] instanceof YAHOO.tool.TestCase) {
-                    this._addTestCaseToTestTree(this._root, this.masterSuite.items[i]);
-                }                   
-            }            
-        
-        }, 
-    
-        //-------------------------------------------------------------------------
-        // Private Methods
-        //-------------------------------------------------------------------------
-        
-        /**
-         * Handles the completion of a test object's tests. Tallies test results 
-         * from one level up to the next.
-         * @param {TestNode} node The TestNode representing the test object.
-         * @return {Void}
-         * @method _handleTestObjectComplete
-         * @private
-         * @static
-         */
-        _handleTestObjectComplete : function (node /*:TestNode*/) /*:Void*/ {
-            if (YAHOO.lang.isObject(node.testObject)){
-                node.parent.results.passed += node.results.passed;
-                node.parent.results.failed += node.results.failed;
-                node.parent.results.total += node.results.total;                
-                node.parent.results.ignored += node.results.ignored;                
-                node.parent.results[node.testObject.name] = node.results;
-            
-                if (node.testObject instanceof YAHOO.tool.TestSuite){
-                    node.testObject.tearDown();
-                    this.fireEvent(this.TEST_SUITE_COMPLETE_EVENT, { testSuite: node.testObject, results: node.results});
-                } else if (node.testObject instanceof YAHOO.tool.TestCase){
-                    this.fireEvent(this.TEST_CASE_COMPLETE_EVENT, { testCase: node.testObject, results: node.results});
-                }      
-            } 
-        },                
-        
-        //-------------------------------------------------------------------------
-        // Navigation Methods
-        //-------------------------------------------------------------------------
-        
-        /**
-         * Retrieves the next node in the test tree.
-         * @return {TestNode} The next node in the test tree or null if the end is reached.
-         * @private
-         * @static
-         * @method _next
-         */
-        _next : function () /*:TestNode*/ {
-        
-            if (this._cur.firstChild) {
-                this._cur = this._cur.firstChild;
-            } else if (this._cur.next) {
-                this._cur = this._cur.next;            
-            } else {
-                while (this._cur && !this._cur.next && this._cur !== this._root){
-                    this._handleTestObjectComplete(this._cur);
-                    this._cur = this._cur.parent;
-                }
-                
-                if (this._cur == this._root){
-                    this._cur.results.type = "report";
-                    this._cur.results.timestamp = (new Date()).toLocaleString();
-                    this._cur.results.duration = (new Date()) - this._cur.results.duration;
-                    this.fireEvent(this.COMPLETE_EVENT, { results: this._cur.results});
-                    this._cur = null;
-                } else {
-                    this._handleTestObjectComplete(this._cur);               
-                    this._cur = this._cur.next;                
-                }
-            }
-        
-            return this._cur;
-        },
-        
-        /**
-         * Runs a test case or test suite, returning the results.
-         * @param {YAHOO.tool.TestCase|YAHOO.tool.TestSuite} testObject The test case or test suite to run.
-         * @return {Object} Results of the execution with properties passed, failed, and total.
-         * @private
-         * @method _run
-         * @static
-         */
-        _run : function () /*:Void*/ {
-        
-            //flag to indicate if the TestRunner should wait before continuing
-            var shouldWait /*:Boolean*/ = false;
-            
-            //get the next test node
-            var node = this._next();
-            
-            if (node !== null) {
-                var testObject = node.testObject;
-                
-                //figure out what to do
-                if (YAHOO.lang.isObject(testObject)){
-                    if (testObject instanceof YAHOO.tool.TestSuite){
-                        this.fireEvent(this.TEST_SUITE_BEGIN_EVENT, { testSuite: testObject });
-                        testObject.setUp();
-                    } else if (testObject instanceof YAHOO.tool.TestCase){
-                        this.fireEvent(this.TEST_CASE_BEGIN_EVENT, { testCase: testObject });
-                    }
-                    
-                    //some environments don't support setTimeout
-                    if (typeof setTimeout != "undefined"){                    
-                        setTimeout(function(){
-                            YAHOO.tool.TestRunner._run();
-                        }, 0);
-                    } else {
-                        this._run();
-                    }
-                } else {
-                    this._runTest(node);
-                }
-
-            }
-        },
-        
-        _resumeTest : function (segment /*:Function*/) /*:Void*/ {
-        
-            //get relevant information
-            var node /*:TestNode*/ = this._cur;
-            var testName /*:String*/ = node.testObject;
-            var testCase /*:YAHOO.tool.TestCase*/ = node.parent.testObject;
-            
-            //cancel other waits if available
-            if (testCase.__yui_wait){
-                clearTimeout(testCase.__yui_wait);
-                delete testCase.__yui_wait;
-            }            
-            
-            //get the "should" test cases
-            var shouldFail /*:Object*/ = (testCase._should.fail || {})[testName];
-            var shouldError /*:Object*/ = (testCase._should.error || {})[testName];
-            
-            //variable to hold whether or not the test failed
-            var failed /*:Boolean*/ = false;
-            var error /*:Error*/ = null;
-                
-            //try the test
-            try {
-            
-                //run the test
-                segment.apply(testCase);
-                
-                //if it should fail, and it got here, then it's a fail because it didn't
-                if (shouldFail){
-                    error = new YAHOO.util.ShouldFail();
-                    failed = true;
-                } else if (shouldError){
-                    error = new YAHOO.util.ShouldError();
-                    failed = true;
-                }
-                           
-            } catch (thrown /*:Error*/){
-                if (thrown instanceof YAHOO.util.AssertionError) {
-                    if (!shouldFail){
-                        error = thrown;
-                        failed = true;
-                    }
-                } else if (thrown instanceof YAHOO.tool.TestCase.Wait){
-                
-                    if (YAHOO.lang.isFunction(thrown.segment)){
-                        if (YAHOO.lang.isNumber(thrown.delay)){
-                        
-                            //some environments don't support setTimeout
-                            if (typeof setTimeout != "undefined"){
-                                testCase.__yui_wait = setTimeout(function(){
-                                    YAHOO.tool.TestRunner._resumeTest(thrown.segment);
-                                }, thrown.delay);                             
-                            } else {
-                                throw new Error("Asynchronous tests not supported in this environment.");
-                            }
-                        }
-                    }
-                    
-                    return;
-                
-                } else {
-                    //first check to see if it should error
-                    if (!shouldError) {                        
-                        error = new YAHOO.util.UnexpectedError(thrown);
-                        failed = true;
-                    } else {
-                        //check to see what type of data we have
-                        if (YAHOO.lang.isString(shouldError)){
-                            
-                            //if it's a string, check the error message
-                            if (thrown.message != shouldError){
-                                error = new YAHOO.util.UnexpectedError(thrown);
-                                failed = true;                                    
-                            }
-                        } else if (YAHOO.lang.isFunction(shouldError)){
-                        
-                            //if it's a function, see if the error is an instance of it
-                            if (!(thrown instanceof shouldError)){
-                                error = new YAHOO.util.UnexpectedError(thrown);
-                                failed = true;
-                            }
-                        
-                        } else if (YAHOO.lang.isObject(shouldError)){
-                        
-                            //if it's an object, check the instance and message
-                            if (!(thrown instanceof shouldError.constructor) || 
-                                    thrown.message != shouldError.message){
-                                error = new YAHOO.util.UnexpectedError(thrown);
-                                failed = true;                                    
-                            }
-                        
-                        }
-                    
-                    }
-                }
-                
-            }
-            
-            //fireEvent appropriate event
-            if (failed) {
-                this.fireEvent(this.TEST_FAIL_EVENT, { testCase: testCase, testName: testName, error: error });
-            } else {
-                this.fireEvent(this.TEST_PASS_EVENT, { testCase: testCase, testName: testName });
-            }
-            
-            //run the tear down
-            testCase.tearDown();
-            
-            //update results
-            node.parent.results[testName] = { 
-                result: failed ? "fail" : "pass",
-                message: error ? error.getMessage() : "Test passed",
-                type: "test",
-                name: testName
-            };
-            
-            if (failed){
-                node.parent.results.failed++;
-            } else {
-                node.parent.results.passed++;
-            }
-            node.parent.results.total++;
-
-            //set timeout not supported in all environments
-            if (typeof setTimeout != "undefined"){
-                setTimeout(function(){
-                    YAHOO.tool.TestRunner._run();
-                }, 0);
-            } else {
-                this._run();
-            }
-        
-        },
-                
-        /**
-         * Runs a single test based on the data provided in the node.
-         * @param {TestNode} node The TestNode representing the test to run.
-         * @return {Void}
-         * @static
-         * @private
-         * @name _runTest
-         */
-        _runTest : function (node /*:TestNode*/) /*:Void*/ {
-        
-            //get relevant information
-            var testName /*:String*/ = node.testObject;
-            var testCase /*:YAHOO.tool.TestCase*/ = node.parent.testObject;
-            var test /*:Function*/ = testCase[testName];
-            
-            //get the "should" test cases
-            var shouldIgnore /*:Object*/ = (testCase._should.ignore || {})[testName];
-            
-            //figure out if the test should be ignored or not
-            if (shouldIgnore){
-            
-                //update results
-                node.parent.results[testName] = { 
-                    result: "ignore",
-                    message: "Test ignored",
-                    type: "test",
-                    name: testName
-                };
-                
-                node.parent.results.ignored++;
-                node.parent.results.total++;
-            
-                this.fireEvent(this.TEST_IGNORE_EVENT, { testCase: testCase, testName: testName });
-                
-                //some environments don't support setTimeout
-                if (typeof setTimeout != "undefined"){                    
-                    setTimeout(function(){
-                        YAHOO.tool.TestRunner._run();
-                    }, 0);              
-                } else {
-                    this._run();
-                }
-
-            } else {
-            
-                //run the setup
-                testCase.setUp();
-                
-                //now call the body of the test
-                this._resumeTest(test);                
-            }
-
-        },        
-        
-        //-------------------------------------------------------------------------
-        // Protected Methods
-        //-------------------------------------------------------------------------   
-    
-        /**
-         * Fires events for the TestRunner. This overrides the default fireEvent()
-         * method from EventProvider to add the type property to the data that is
-         * passed through on each event call.
-         * @param {String} type The type of event to fire.
-         * @param {Object} data (Optional) Data for the event.
-         * @method fireEvent
-         * @static
-         * @protected
-         */
-        fireEvent : function (type /*:String*/, data /*:Object*/) /*:Void*/ {
-            data = data || {};
-            data.type = type;
-            TestRunner.superclass.fireEvent.call(this, type, data);
-        },
-        
-        //-------------------------------------------------------------------------
-        // Public Methods
-        //-------------------------------------------------------------------------   
-    
-        /**
-         * Adds a test suite or test case to the list of test objects to run.
-         * @param testObject Either a TestCase or a TestSuite that should be run.
-         * @return {Void}
-         * @method add
-         * @static
-         */
-        add : function (testObject /*:Object*/) /*:Void*/ {
-            this.masterSuite.add(testObject);
-        },
-        
-        /**
-         * Removes all test objects from the runner.
-         * @return {Void}
-         * @method clear
-         * @static
-         */
-        clear : function () /*:Void*/ {
-            this.masterSuite.items = [];
-        },
-        
-        /**
-         * Resumes the TestRunner after wait() was called.
-         * @param {Function} segment The function to run as the rest
-         *      of the haulted test.
-         * @return {Void}
-         * @method resume
-         * @static
-         */
-        resume : function (segment /*:Function*/) /*:Void*/ {
-            this._resumeTest(segment || function(){});
-        },
-    
-        /**
-         * Runs the test suite.
-         * @return {Void}
-         * @method run
-         * @static
-         */
-        run : function (testObject /*:Object*/) /*:Void*/ {
-            
-            //pointer to runner to avoid scope issues 
-            var runner = YAHOO.tool.TestRunner;
-
-            //build the test tree
-            runner._buildTestTree();
-            
-            //set when the test started
-            runner._root.results.duration = (new Date()).valueOf();
-            
-            //fire the begin event
-            runner.fireEvent(runner.BEGIN_EVENT);
-       
-            //begin the testing
-            runner._run();
-        }    
-    });
-    
-    return new TestRunner();
-    
-})();
-
-YAHOO.namespace("util");
-
-//-----------------------------------------------------------------------------
-// Assert object
-//-----------------------------------------------------------------------------
-
-/**
- * The Assert object provides functions to test JavaScript values against
- * known and expected results. Whenever a comparison (assertion) fails,
- * an error is thrown.
- *
- * @namespace YAHOO.util
- * @class Assert
- * @static
- */
-YAHOO.util.Assert = {
-
-    //-------------------------------------------------------------------------
-    // Helper Methods
-    //-------------------------------------------------------------------------
-    
-    /**
-     * Formats a message so that it can contain the original assertion message
-     * in addition to the custom message.
-     * @param {String} customMessage The message passed in by the developer.
-     * @param {String} defaultMessage The message created by the error by default.
-     * @return {String} The final error message, containing either or both.
-     * @protected
-     * @static
-     * @method _formatMessage
-     */
-    _formatMessage : function (customMessage /*:String*/, defaultMessage /*:String*/) /*:String*/ {
-        var message = customMessage;
-        if (YAHOO.lang.isString(customMessage) && customMessage.length > 0){
-            return YAHOO.lang.substitute(customMessage, { message: defaultMessage });
-        } else {
-            return defaultMessage;
-        }        
-    },
-    
-    //-------------------------------------------------------------------------
-    // Generic Assertion Methods
-    //-------------------------------------------------------------------------
-    
-    /** 
-     * Forces an assertion error to occur.
-     * @param {String} message (Optional) The message to display with the failure.
-     * @method fail
-     * @static
-     */
-    fail : function (message /*:String*/) /*:Void*/ {
-        throw new YAHOO.util.AssertionError(this._formatMessage(message, "Test force-failed."));
-    },       
-    
-    //-------------------------------------------------------------------------
-    // Equality Assertion Methods
-    //-------------------------------------------------------------------------    
-    
-    /**
-     * Asserts that a value is equal to another. This uses the double equals sign
-     * so type cohersion may occur.
-     * @param {Object} expected The expected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areEqual
-     * @static
-     */
-    areEqual : function (expected /*:Object*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (expected != actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Values should be equal."), expected, actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is not equal to another. This uses the double equals sign
-     * so type cohersion may occur.
-     * @param {Object} unexpected The unexpected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areNotEqual
-     * @static
-     */
-    areNotEqual : function (unexpected /*:Object*/, actual /*:Object*/, 
-                         message /*:String*/) /*:Void*/ {
-        if (unexpected == actual) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be equal."), unexpected);
-        }
-    },
-    
-    /**
-     * Asserts that a value is not the same as another. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} unexpected The unexpected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areNotSame
-     * @static
-     */
-    areNotSame : function (unexpected /*:Object*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (unexpected === actual) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be the same."), unexpected);
-        }
-    },
-
-    /**
-     * Asserts that a value is the same as another. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} expected The expected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areSame
-     * @static
-     */
-    areSame : function (expected /*:Object*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (expected !== actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Values should be the same."), expected, actual);
-        }
-    },    
-    
-    //-------------------------------------------------------------------------
-    // Boolean Assertion Methods
-    //-------------------------------------------------------------------------    
-    
-    /**
-     * Asserts that a value is false. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isFalse
-     * @static
-     */
-    isFalse : function (actual /*:Boolean*/, message /*:String*/) {
-        if (false !== actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be false."), false, actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is true. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isTrue
-     * @static
-     */
-    isTrue : function (actual /*:Boolean*/, message /*:String*/) /*:Void*/ {
-        if (true !== actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be true."), true, actual);
-        }
-
-    },
-    
-    //-------------------------------------------------------------------------
-    // Special Value Assertion Methods
-    //-------------------------------------------------------------------------    
-    
-    /**
-     * Asserts that a value is not a number.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNaN
-     * @static
-     */
-    isNaN : function (actual /*:Object*/, message /*:String*/) /*:Void*/{
-        if (!isNaN(actual)){
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be NaN."), NaN, actual);
-        }    
-    },
-    
-    /**
-     * Asserts that a value is not the special NaN value.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotNaN
-     * @static
-     */
-    isNotNaN : function (actual /*:Object*/, message /*:String*/) /*:Void*/{
-        if (isNaN(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be NaN."), NaN);
-        }    
-    },
-    
-    /**
-     * Asserts that a value is not null. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotNull
-     * @static
-     */
-    isNotNull : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (YAHOO.lang.isNull(actual)) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be null."), null);
-        }
-    },
-
-    /**
-     * Asserts that a value is not undefined. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotUndefined
-     * @static
-     */
-    isNotUndefined : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (YAHOO.lang.isUndefined(actual)) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should not be undefined."), undefined);
-        }
-    },
-
-    /**
-     * Asserts that a value is null. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNull
-     * @static
-     */
-    isNull : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isNull(actual)) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be null."), null, actual);
-        }
-    },
-        
-    /**
-     * Asserts that a value is undefined. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isUndefined
-     * @static
-     */
-    isUndefined : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isUndefined(actual)) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be undefined."), undefined, actual);
-        }
-    },    
-    
-    //--------------------------------------------------------------------------
-    // Instance Assertion Methods
-    //--------------------------------------------------------------------------    
-   
-    /**
-     * Asserts that a value is an array.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isArray
-     * @static
-     */
-    isArray : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isArray(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be an array."), actual);
-        }    
-    },
-   
-    /**
-     * Asserts that a value is a Boolean.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isBoolean
-     * @static
-     */
-    isBoolean : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isBoolean(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a Boolean."), actual);
-        }    
-    },
-   
-    /**
-     * Asserts that a value is a function.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isFunction
-     * @static
-     */
-    isFunction : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isFunction(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a function."), actual);
-        }    
-    },
-   
-    /**
-     * Asserts that a value is an instance of a particular object. This may return
-     * incorrect results when comparing objects from one frame to constructors in
-     * another frame. For best results, don't use in a cross-frame manner.
-     * @param {Function} expected The function that the object should be an instance of.
-     * @param {Object} actual The object to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isInstanceOf
-     * @static
-     */
-    isInstanceOf : function (expected /*:Function*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!(actual instanceof expected)){
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value isn't an instance of expected type."), expected, actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is a number.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNumber
-     * @static
-     */
-    isNumber : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isNumber(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a number."), actual);
-        }    
-    },    
-    
-    /**
-     * Asserts that a value is an object.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isObject
-     * @static
-     */
-    isObject : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isObject(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be an object."), actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is a string.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isString
-     * @static
-     */
-    isString : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isString(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a string."), actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is of a particular type. 
-     * @param {String} expectedType The expected type of the variable.
-     * @param {Object} actualValue The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isTypeOf
-     * @static
-     */
-    isTypeOf : function (expectedType /*:String*/, actualValue /*:Object*/, message /*:String*/) /*:Void*/{
-        if (typeof actualValue != expectedType){
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be of type " + expected + "."), expected, typeof actual);
-        }
-    }
-};
-
-//-----------------------------------------------------------------------------
-// Assertion errors
-//-----------------------------------------------------------------------------
-
-/**
- * AssertionError is thrown whenever an assertion fails. It provides methods
- * to more easily get at error information and also provides a base class
- * from which more specific assertion errors can be derived.
- *
- * @param {String} message The message to display when the error occurs.
- * @namespace YAHOO.util
- * @class AssertionError
- * @extends Error
- * @constructor
- */ 
-YAHOO.util.AssertionError = function (message /*:String*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message);
-    
-    /*
-     * Error message. Must be duplicated to ensure browser receives it.
-     * @type String
-     * @property message
-     */
-    this.message /*:String*/ = message;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "AssertionError";
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.AssertionError, Error, {
-
-    /**
-     * Returns a fully formatted error for an assertion failure. This should
-     * be overridden by all subclasses to provide specific information.
-     * @method getMessage
-     * @return {String} A string describing the error.
-     */
-    getMessage : function () /*:String*/ {
-        return this.message;
-    },
-    
-    /**
-     * Returns a string representation of the error.
-     * @method toString
-     * @return {String} A string representation of the error.
-     */
-    toString : function () /*:String*/ {
-        return this.name + ": " + this.getMessage();
-    },
-    
-    /**
-     * Returns a primitive value version of the error. Same as toString().
-     * @method valueOf
-     * @return {String} A primitive value version of the error.
-     */
-    valueOf : function () /*:String*/ {
-        return this.toString();
-    }
-
-});
-
-/**
- * ComparisonFailure is subclass of AssertionError that is thrown whenever
- * a comparison between two values fails. It provides mechanisms to retrieve
- * both the expected and actual value.
- *
- * @param {String} message The message to display when the error occurs.
- * @param {Object} expected The expected value.
- * @param {Object} actual The actual value that caused the assertion to fail.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class ComparisonFailure
- * @constructor
- */ 
-YAHOO.util.ComparisonFailure = function (message /*:String*/, expected /*:Object*/, actual /*:Object*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message);
-    
-    /**
-     * The expected value.
-     * @type Object
-     * @property expected
-     */
-    this.expected /*:Object*/ = expected;
-    
-    /**
-     * The actual value.
-     * @type Object
-     * @property actual
-     */
-    this.actual /*:Object*/ = actual;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "ComparisonFailure";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.ComparisonFailure, YAHOO.util.AssertionError, {
-
-    /**
-     * Returns a fully formatted error for an assertion failure. This message
-     * provides information about the expected and actual values.
-     * @method toString
-     * @return {String} A string describing the error.
-     */
-    getMessage : function () /*:String*/ {
-        return this.message + "\nExpected: " + this.expected + " (" + (typeof this.expected) + ")"  +
-            "\nActual:" + this.actual + " (" + (typeof this.actual) + ")";
-    }
-
-});
-
-/**
- * UnexpectedValue is subclass of AssertionError that is thrown whenever
- * a value was unexpected in its scope. This typically means that a test
- * was performed to determine that a value was *not* equal to a certain
- * value.
- *
- * @param {String} message The message to display when the error occurs.
- * @param {Object} unexpected The unexpected value.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class UnexpectedValue
- * @constructor
- */ 
-YAHOO.util.UnexpectedValue = function (message /*:String*/, unexpected /*:Object*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message);
-    
-    /**
-     * The unexpected value.
-     * @type Object
-     * @property unexpected
-     */
-    this.unexpected /*:Object*/ = unexpected;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "UnexpectedValue";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.UnexpectedValue, YAHOO.util.AssertionError, {
-
-    /**
-     * Returns a fully formatted error for an assertion failure. The message
-     * contains information about the unexpected value that was encountered.
-     * @method getMessage
-     * @return {String} A string describing the error.
-     */
-    getMessage : function () /*:String*/ {
-        return this.message + "\nUnexpected: " + this.unexpected + " (" + (typeof this.unexpected) + ") ";
-    }
-
-});
-
-/**
- * ShouldFail is subclass of AssertionError that is thrown whenever
- * a test was expected to fail but did not.
- *
- * @param {String} message The message to display when the error occurs.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class ShouldFail
- * @constructor
- */  
-YAHOO.util.ShouldFail = function (message /*:String*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message || "This test should fail but didn't.");
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "ShouldFail";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.ShouldFail, YAHOO.util.AssertionError);
-
-/**
- * ShouldError is subclass of AssertionError that is thrown whenever
- * a test is expected to throw an error but doesn't.
- *
- * @param {String} message The message to display when the error occurs.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class ShouldError
- * @constructor
- */  
-YAHOO.util.ShouldError = function (message /*:String*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message || "This test should have thrown an error but didn't.");
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "ShouldError";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.ShouldError, YAHOO.util.AssertionError);
-
-/**
- * UnexpectedError is subclass of AssertionError that is thrown whenever
- * an error occurs within the course of a test and the test was not expected
- * to throw an error.
- *
- * @param {Error} cause The unexpected error that caused this error to be 
- *                      thrown.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class UnexpectedError
- * @constructor
- */  
-YAHOO.util.UnexpectedError = function (cause /*:Object*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, "Unexpected error: " + cause.message);
-    
-    /**
-     * The unexpected error that occurred.
-     * @type Error
-     * @property cause
-     */
-    this.cause /*:Error*/ = cause;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "UnexpectedError";
-    
-    /**
-     * Stack information for the error (if provided).
-     * @type String
-     * @property stack
-     */
-    this.stack /*:String*/ = cause.stack;
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.UnexpectedError, YAHOO.util.AssertionError);
-
-//-----------------------------------------------------------------------------
-// ArrayAssert object
-//-----------------------------------------------------------------------------
-
-/**
- * The ArrayAssert object provides functions to test JavaScript array objects
- * for a variety of cases.
- *
- * @namespace YAHOO.util
- * @class ArrayAssert
- * @static
- */
- 
-YAHOO.util.ArrayAssert = {
-
-    /**
-     * Asserts that a value is present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur.
-     * @param {Object} needle The value that is expected in the array.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method contains
-     * @static
-     */
-    contains : function (needle /*:Object*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (haystack[i] === needle) {
-                found = true;
-            }
-        }
-        
-        if (!found){
-            Assert.fail(Assert._formatMessage(message, "Value " + needle + " (" + (typeof needle) + ") not found in array [" + haystack + "]."));
-        }
-    },
-
-    /**
-     * Asserts that a set of values are present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur. For this assertion to pass, all values must
-     * be found.
-     * @param {Object[]} needles An array of values that are expected in the array.
-     * @param {Array} haystack An array of values to check.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method containsItems
-     * @static
-     */
-    containsItems : function (needles /*:Object[]*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-
-        //begin checking values
-        for (var i=0; i < needles.length; i++){
-            this.contains(needles[i], haystack, message);
-        }
-    },
-
-    /**
-     * Asserts that a value matching some condition is present in an array. This uses
-     * a function to determine a match.
-     * @param {Function} matcher A function that returns true if the items matches or false if not.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method containsMatch
-     * @static
-     */
-    containsMatch : function (matcher /*:Function*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        //check for valid matcher
-        if (typeof matcher != "function"){
-            throw new TypeError("ArrayAssert.containsMatch(): First argument must be a function.");
-        }
-        
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (matcher(haystack[i])) {
-                found = true;
-            }
-        }
-        
-        if (!found){
-            Assert.fail(Assert._formatMessage(message, "No match found in array [" + haystack + "]."));
-        }
-    },
-
-    /**
-     * Asserts that a value is not present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur.
-     * @param {Object} needle The value that is expected in the array.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method doesNotContain
-     * @static
-     */
-    doesNotContain : function (needle /*:Object*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (haystack[i] === needle) {
-                found = true;
-            }
-        }
-        
-        if (found){
-            Assert.fail(Assert._formatMessage(message, "Value found in array [" + haystack + "]."));
-        }
-    },
-
-    /**
-     * Asserts that a set of values are not present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur. For this assertion to pass, all values must
-     * not be found.
-     * @param {Object[]} needles An array of values that are not expected in the array.
-     * @param {Array} haystack An array of values to check.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method doesNotContainItems
-     * @static
-     */
-    doesNotContainItems : function (needles /*:Object[]*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-
-        for (var i=0; i < needles.length; i++){
-            this.doesNotContain(needles[i], haystack, message);
-        }
-
-    },
-        
-    /**
-     * Asserts that no values matching a condition are present in an array. This uses
-     * a function to determine a match.
-     * @param {Function} matcher A function that returns true if the items matches or false if not.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method doesNotContainMatch
-     * @static
-     */
-    doesNotContainMatch : function (matcher /*:Function*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        //check for valid matcher
-        if (typeof matcher != "function"){
-            throw new TypeError("ArrayAssert.doesNotContainMatch(): First argument must be a function.");
-        }
-
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (matcher(haystack[i])) {
-                found = true;
-            }
-        }
-        
-        if (found){
-            Assert.fail(Assert._formatMessage(message, "Value found in array [" + haystack + "]."));
-        }
-    },
-        
-    /**
-     * Asserts that the given value is contained in an array at the specified index.
-     * This uses the triple equals sign so no type cohersion will occur.
-     * @param {Object} needle The value to look for.
-     * @param {Array} haystack The array to search in.
-     * @param {int} index The index at which the value should exist.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method indexOf
-     * @static
-     */
-    indexOf : function (needle /*:Object*/, haystack /*:Array*/, index /*:int*/, message /*:String*/) /*:Void*/ {
-    
-        //try to find the value in the array
-        for (var i=0; i < haystack.length; i++){
-            if (haystack[i] === needle){
-                YAHOO.util.Assert.areEqual(index, i, message || "Value exists at index " + i + " but should be at index " + index + ".");
-                return;
-            }
-        }
-        
-        var Assert = YAHOO.util.Assert;
-        
-        //if it makes it here, it wasn't found at all
-        Assert.fail(Assert._formatMessage(message, "Value doesn't exist in array [" + haystack + "]."));
-    },
-        
-    /**
-     * Asserts that the values in an array are equal, and in the same position,
-     * as values in another array. This uses the double equals sign
-     * so type cohersion may occur. Note that the array objects themselves
-     * need not be the same for this test to pass.
-     * @param {Array} expected An array of the expected values.
-     * @param {Array} actual Any array of the actual values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method itemsAreEqual
-     * @static
-     */
-    itemsAreEqual : function (expected /*:Array*/, actual /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        //one may be longer than the other, so get the maximum length
-        var len /*:int*/ = Math.max(expected.length, actual.length);
-        var Assert = YAHOO.util.Assert;
-       
-        //begin checking values
-        for (var i=0; i < len; i++){
-            Assert.areEqual(expected[i], actual[i], 
-                Assert._formatMessage(message, "Values in position " + i + " are not equal."));
-        }
-    },
-    
-    /**
-     * Asserts that the values in an array are equivalent, and in the same position,
-     * as values in another array. This uses a function to determine if the values
-     * are equivalent. Note that the array objects themselves
-     * need not be the same for this test to pass.
-     * @param {Array} expected An array of the expected values.
-     * @param {Array} actual Any array of the actual values.
-     * @param {Function} comparator A function that returns true if the values are equivalent
-     *      or false if not.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @return {Void}
-     * @method itemsAreEquivalent
-     * @static
-     */
-    itemsAreEquivalent : function (expected /*:Array*/, actual /*:Array*/, 
-                           comparator /*:Function*/, message /*:String*/) /*:Void*/ {
-        
-        //make sure the comparator is valid
-        if (typeof comparator != "function"){
-            throw new TypeError("ArrayAssert.itemsAreEquivalent(): Third argument must be a function.");
-        }
-        
-        //one may be longer than the other, so get the maximum length
-        var len /*:int*/ = Math.max(expected.length, actual.length);
-        
-        //begin checking values
-        for (var i=0; i < len; i++){
-            if (!comparator(expected[i], actual[i])){
-                throw new YAHOO.util.ComparisonFailure(YAHOO.util.Assert._formatMessage(message, "Values in position " + i + " are not equivalent."), expected[i], actual[i]);
-            }
-        }
-    },
-    
-    /**
-     * Asserts that an array is empty.
-     * @param {Array} actual The array to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isEmpty
-     * @static
-     */
-    isEmpty : function (actual /*:Array*/, message /*:String*/) /*:Void*/ {        
-        if (actual.length > 0){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Array should be empty."));
-        }
-    },    
-    
-    /**
-     * Asserts that an array is not empty.
-     * @param {Array} actual The array to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotEmpty
-     * @static
-     */
-    isNotEmpty : function (actual /*:Array*/, message /*:String*/) /*:Void*/ {        
-        if (actual.length === 0){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Array should not be empty."));
-        }
-    },    
-    
-    /**
-     * Asserts that the values in an array are the same, and in the same position,
-     * as values in another array. This uses the triple equals sign
-     * so no type cohersion will occur. Note that the array objects themselves
-     * need not be the same for this test to pass.
-     * @param {Array} expected An array of the expected values.
-     * @param {Array} actual Any array of the actual values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method itemsAreSame
-     * @static
-     */
-    itemsAreSame : function (expected /*:Array*/, actual /*:Array*/, 
-                          message /*:String*/) /*:Void*/ {
-        
-        //one may be longer than the other, so get the maximum length
-        var len /*:int*/ = Math.max(expected.length, actual.length);
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < len; i++){
-            Assert.areSame(expected[i], actual[i], 
-                Assert._formatMessage(message, "Values in position " + i + " are not the same."));
-        }
-    },
-    
-    /**
-     * Asserts that the given value is contained in an array at the specified index,
-     * starting from the back of the array.
-     * This uses the triple equals sign so no type cohersion will occur.
-     * @param {Object} needle The value to look for.
-     * @param {Array} haystack The array to search in.
-     * @param {int} index The index at which the value should exist.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method lastIndexOf
-     * @static
-     */
-    lastIndexOf : function (needle /*:Object*/, haystack /*:Array*/, index /*:int*/, message /*:String*/) /*:Void*/ {
-    
-        var Assert = YAHOO.util.Assert;
-    
-        //try to find the value in the array
-        for (var i=haystack.length; i >= 0; i--){
-            if (haystack[i] === needle){
-                Assert.areEqual(index, i, Assert._formatMessage(message, "Value exists at index " + i + " but should be at index " + index + "."));
-                return;
-            }
-        }
-        
-        //if it makes it here, it wasn't found at all
-        Assert.fail(Assert._formatMessage(message, "Value doesn't exist in array."));        
-    }
-    
-};
-
-YAHOO.namespace("util");
-
-
-//-----------------------------------------------------------------------------
-// ObjectAssert object
-//-----------------------------------------------------------------------------
-
-/**
- * The ObjectAssert object provides functions to test JavaScript objects
- * for a variety of cases.
- *
- * @namespace YAHOO.util
- * @class ObjectAssert
- * @static
- */
-YAHOO.util.ObjectAssert = {
-        
-    /**
-     * Asserts that all properties in the object exist in another object.
-     * @param {Object} expected An object with the expected properties.
-     * @param {Object} actual An object with the actual properties.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method propertiesAreEqual
-     * @static
-     */
-    propertiesAreEqual : function (expected /*:Object*/, actual /*:Object*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        var Assert = YAHOO.util.Assert;
-        
-        //get all properties in the object
-        var properties /*:Array*/ = [];        
-        for (var property in expected){
-            properties.push(property);
-        }
-        
-        //see if the properties are in the expected object
-        for (var i=0; i < properties.length; i++){
-            Assert.isNotUndefined(actual[properties[i]], 
-                Assert._formatMessage(message, "Property '" + properties[i] + "' expected."));
-        }
-
-    },
-    
-    /**
-     * Asserts that an object has a property with the given name.
-     * @param {String} propertyName The name of the property to test.
-     * @param {Object} object The object to search.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method hasProperty
-     * @static
-     */    
-    hasProperty : function (propertyName /*:String*/, object /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!(propertyName in object)){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Property '" + propertyName + "' not found on object."));
-        }    
-    },
-    
-    /**
-     * Asserts that a property with the given name exists on an object instance (not on its prototype).
-     * @param {String} propertyName The name of the property to test.
-     * @param {Object} object The object to search.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method hasProperty
-     * @static
-     */    
-    hasOwnProperty : function (propertyName /*:String*/, object /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.hasOwnProperty(object, propertyName)){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Property '" + propertyName + "' not found on object instance."));
-        }     
-    }
-};
-
-//-----------------------------------------------------------------------------
-// DateAssert object
-//-----------------------------------------------------------------------------
-
-/**
- * The DateAssert object provides functions to test JavaScript Date objects
- * for a variety of cases.
- *
- * @namespace YAHOO.util
- * @class DateAssert
- * @static
- */
- 
-YAHOO.util.DateAssert = {
-
-    /**
-     * Asserts that a date's month, day, and year are equal to another date's.
-     * @param {Date} expected The expected date.
-     * @param {Date} actual The actual date to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method datesAreEqual
-     * @static
-     */
-    datesAreEqual : function (expected /*:Date*/, actual /*:Date*/, message /*:String*/){
-        if (expected instanceof Date && actual instanceof Date){
-            var Assert = YAHOO.util.Assert;
-            Assert.areEqual(expected.getFullYear(), actual.getFullYear(), Assert._formatMessage(message, "Years should be equal."));
-            Assert.areEqual(expected.getMonth(), actual.getMonth(), Assert._formatMessage(message, "Months should be equal."));
-            Assert.areEqual(expected.getDate(), actual.getDate(), Assert._formatMessage(message, "Day of month should be equal."));
-        } else {
-            throw new TypeError("DateAssert.datesAreEqual(): Expected and actual values must be Date objects.");
-        }
-    },
-
-    /**
-     * Asserts that a date's hour, minutes, and seconds are equal to another date's.
-     * @param {Date} expected The expected date.
-     * @param {Date} actual The actual date to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method timesAreEqual
-     * @static
-     */
-    timesAreEqual : function (expected /*:Date*/, actual /*:Date*/, message /*:String*/){
-        if (expected instanceof Date && actual instanceof Date){
-            var Assert = YAHOO.util.Assert;
-            Assert.areEqual(expected.getHours(), actual.getHours(), Assert._formatMessage(message, "Hours should be equal."));
-            Assert.areEqual(expected.getMinutes(), actual.getMinutes(), Assert._formatMessage(message, "Minutes should be equal."));
-            Assert.areEqual(expected.getSeconds(), actual.getSeconds(), Assert._formatMessage(message, "Seconds should be equal."));
-        } else {
-            throw new TypeError("DateAssert.timesAreEqual(): Expected and actual values must be Date objects.");
-        }
-    }
-    
-};
-
-YAHOO.namespace("util");
-
-/**
- * The UserAction object provides functions that simulate events occurring in
- * the browser. Since these are simulated events, they do not behave exactly
- * as regular, user-initiated events do, but can be used to test simple
- * user interactions safely.
- *
- * @namespace YAHOO.util
- * @class UserAction
- * @static
- */
-YAHOO.util.UserAction = {
-
-    //--------------------------------------------------------------------------
-    // Generic event methods
-    //--------------------------------------------------------------------------
-
-    /**
-     * Simulates a key event using the given event information to populate
-     * the generated event object. This method does browser-equalizing
-     * calculations to account for differences in the DOM and IE event models
-     * as well as different browser quirks. Note: keydown causes Safari 2.x to
-     * crash.
-     * @method simulateKeyEvent
-     * @private
-     * @static
-     * @param {HTMLElement} target The target of the given event.
-     * @param {String} type The type of event to fire. This can be any one of
-     *      the following: keyup, keydown, and keypress.
-     * @param {Boolean} bubbles (Optional) Indicates if the event can be
-     *      bubbled up. DOM Level 3 specifies that all key events bubble by
-     *      default. The default is true.
-     * @param {Boolean} cancelable (Optional) Indicates if the event can be
-     *      canceled using preventDefault(). DOM Level 3 specifies that all
-     *      key events can be cancelled. The default 
-     *      is true.
-     * @param {Window} view (Optional) The view containing the target. This is
-     *      typically the window object. The default is window.
-     * @param {Boolean} ctrlKey (Optional) Indicates if one of the CTRL keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {Boolean} altKey (Optional) Indicates if one of the ALT keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {Boolean} shiftKey (Optional) Indicates if one of the SHIFT keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {Boolean} metaKey (Optional) Indicates if one of the META keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {int} keyCode (Optional) The code for the key that is in use. 
-     *      The default is 0.
-     * @param {int} charCode (Optional) The Unicode code for the character
-     *      associated with the key being used. The default is 0.
-     */
-    simulateKeyEvent : function (target /*:HTMLElement*/, type /*:String*/, 
-                                 bubbles /*:Boolean*/,  cancelable /*:Boolean*/,    
-                                 view /*:Window*/,
-                                 ctrlKey /*:Boolean*/,    altKey /*:Boolean*/, 
-                                 shiftKey /*:Boolean*/,   metaKey /*:Boolean*/, 
-                                 keyCode /*:int*/,        charCode /*:int*/) /*:Void*/                             
-    {
-        //check target
-        target = YAHOO.util.Dom.get(target);        
-        if (!target){
-            throw new Error("simulateKeyEvent(): Invalid target.");
-        }
-        
-        //check event type
-        if (YAHOO.lang.isString(type)){
-            type = type.toLowerCase();
-            switch(type){
-                case "keyup":
-                case "keydown":
-                case "keypress":
-                    break;
-                case "textevent": //DOM Level 3
-                    type = "keypress";
-                    break;
-                    // @TODO was the fallthrough intentional, if so throw error
-                default:
-                    throw new Error("simulateKeyEvent(): Event type '" + type + "' not supported.");
-            }
-        } else {
-            throw new Error("simulateKeyEvent(): Event type must be a string.");
-        }
-        
-        //setup default values
-        if (!YAHOO.lang.isBoolean(bubbles)){
-            bubbles = true; //all key events bubble
-        }
-        if (!YAHOO.lang.isBoolean(cancelable)){
-            cancelable = true; //all key events can be cancelled
-        }
-        if (!YAHOO.lang.isObject(view)){
-            view = window; //view is typically window
-        }
-        if (!YAHOO.lang.isBoolean(ctrlKey)){
-            ctrlKey = false;
-        }
-        if (!YAHOO.lang.isBoolean(altKey)){
-            altKey = false;
-        }
-        if (!YAHOO.lang.isBoolean(shiftKey)){
-            shiftKey = false;
-        }
-        if (!YAHOO.lang.isBoolean(metaKey)){
-            metaKey = false;
-        }
-        if (!YAHOO.lang.isNumber(keyCode)){
-            keyCode = 0;
-        }
-        if (!YAHOO.lang.isNumber(charCode)){
-            charCode = 0; 
-        }
-
-        //try to create a mouse event
-        var customEvent /*:MouseEvent*/ = null;
-            
-        //check for DOM-compliant browsers first
-        if (YAHOO.lang.isFunction(document.createEvent)){
-        
-            try {
-                
-                //try to create key event
-                customEvent = document.createEvent("KeyEvents");
-                
-                /*
-                 * Interesting problem: Firefox implemented a non-standard
-                 * version of initKeyEvent() based on DOM Level 2 specs.
-                 * Key event was removed from DOM Level 2 and re-introduced
-                 * in DOM Level 3 with a different interface. Firefox is the
-                 * only browser with any implementation of Key Events, so for
-                 * now, assume it's Firefox if the above line doesn't error.
-                 */
-                //TODO: Decipher between Firefox's implementation and a correct one.
-                customEvent.initKeyEvent(type, bubbles, cancelable, view, ctrlKey,
-                    altKey, shiftKey, metaKey, keyCode, charCode);       
-                
-            } catch (ex /*:Error*/){
-
-                /*
-                 * If it got here, that means key events aren't officially supported. 
-                 * Safari/WebKit is a real problem now. WebKit 522 won't let you
-                 * set keyCode, charCode, or other properties if you use a
-                 * UIEvent, so we first must try to create a generic event. The
-                 * fun part is that this will throw an error on Safari 2.x. The
-                 * end result is that we need another try...catch statement just to
-                 * deal with this mess.
-                 */
-                try {
-
-                    //try to create generic event - will fail in Safari 2.x
-                    customEvent = document.createEvent("Events");
-
-                } catch (uierror /*:Error*/){
-
-                    //the above failed, so create a UIEvent for Safari 2.x
-                    customEvent = document.createEvent("UIEvents");
-
-                } finally {
-
-                    customEvent.initEvent(type, bubbles, cancelable);
-    
-                    //initialize
-                    customEvent.view = view;
-                    customEvent.altKey = altKey;
-                    customEvent.ctrlKey = ctrlKey;
-                    customEvent.shiftKey = shiftKey;
-                    customEvent.metaKey = metaKey;
-                    customEvent.keyCode = keyCode;
-                    customEvent.charCode = charCode;
-          
-                }          
-             
-            }
-            
-            //fire the event
-            target.dispatchEvent(customEvent);
-
-        } else if (YAHOO.lang.isObject(document.createEventObject)){ //IE
-        
-            //create an IE event object
-            customEvent = document.createEventObject();
-            
-            //assign available properties
-            customEvent.bubbles = bubbles;
-            customEvent.cancelable = cancelable;
-            customEvent.view = view;
-            customEvent.ctrlKey = ctrlKey;
-            customEvent.altKey = altKey;
-            customEvent.shiftKey = shiftKey;
-            customEvent.metaKey = metaKey;
-            
-            /*
-             * IE doesn't support charCode explicitly. CharCode should
-             * take precedence over any keyCode value for accurate
-             * representation.
-             */
-            customEvent.keyCode = (charCode > 0) ? charCode : keyCode;
-            
-            //fire the event
-            target.fireEvent("on" + type, customEvent);  
-                    
-        } else {
-            throw new Error("simulateKeyEvent(): No event simulation framework present.");
-        }
-    },
-
-    /**
-     * Simulates a mouse event using the given event information to populate
-     * the generated event object. This method does browser-equalizing
-     * calculations to account for differences in the DOM and IE event models
-     * as well as different browser quirks.
-     * @method simulateMouseEvent
-     * @private
-     * @static
-     * @param {HTMLElement} target The target of the given event.
-     * @param {String} type The type of event to fire. This can be any one of
-     *      the following: click, dblclick, mousedown, mouseup, mouseout,
-     *      mouseover, and mousemove.
-     * @param {Boolean} bubbles (Optional) Indicates if the event can be
-     *      bubbled up. DOM Level 2 specifies that all mouse events bubble by
-     *      default. The default is true.
-     * @param {Boolean} cancelable (Optional) Indicates if the event can be
-     *      canceled using preventDefault(). DOM Level 2 specifies that all
-     *      mouse events except mousemove can be cancelled. The default 
-     *      is true for all events except mousemove, for which the default 
-     *      is false.
-     * @param {Window} view (Optional) The view containing the target. This is
-     *      typically the window object. The default is window.
-     * @param {int} detail (Optional) The number of times the mouse button has
-     *      been used. The default value is 1.
-     * @param {int} screenX (Optional) The x-coordinate on the screen at which
-     *      point the event occured. The default is 0.
-     * @param {int} screenY (Optional) The y-coordinate on the screen at which
-     *      point the event occured. The default is 0.
-     * @param {int} clientX (Optional) The x-coordinate on the client at which
-     *      point the event occured. The default is 0.
-     * @param {int} clientY (Optional) The y-coordinate on the client at which
-     *      point the event occured. The default is 0.
-     * @param {Boolean} ctrlKey (Optional) Indicates if one of the CTRL keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {Boolean} altKey (Optional) Indicates if one of the ALT keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {Boolean} shiftKey (Optional) Indicates if one of the SHIFT keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {Boolean} metaKey (Optional) Indicates if one of the META keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {int} button (Optional) The button being pressed while the event
-     *      is executing. The value should be 0 for the primary mouse button
-     *      (typically the left button), 1 for the terciary mouse button
-     *      (typically the middle button), and 2 for the secondary mouse button
-     *      (typically the right button). The default is 0.
-     * @param {HTMLElement} relatedTarget (Optional) For mouseout events,
-     *      this is the element that the mouse has moved to. For mouseover
-     *      events, this is the element that the mouse has moved from. This
-     *      argument is ignored for all other events. The default is null.
-     */
-    simulateMouseEvent : function (target /*:HTMLElement*/, type /*:String*/, 
-                                   bubbles /*:Boolean*/,  cancelable /*:Boolean*/,    
-                                   view /*:Window*/,        detail /*:int*/, 
-                                   screenX /*:int*/,        screenY /*:int*/, 
-                                   clientX /*:int*/,        clientY /*:int*/,       
-                                   ctrlKey /*:Boolean*/,    altKey /*:Boolean*/, 
-                                   shiftKey /*:Boolean*/,   metaKey /*:Boolean*/, 
-                                   button /*:int*/,         relatedTarget /*:HTMLElement*/) /*:Void*/
-    {
-        
-        //check target
-        target = YAHOO.util.Dom.get(target);        
-        if (!target){
-            throw new Error("simulateMouseEvent(): Invalid target.");
-        }
-        
-        //check event type
-        if (YAHOO.lang.isString(type)){
-            type = type.toLowerCase();
-            switch(type){
-                case "mouseover":
-                case "mouseout":
-                case "mousedown":
-                case "mouseup":
-                case "click":
-                case "dblclick":
-                case "mousemove":
-                    break;
-                default:
-                    throw new Error("simulateMouseEvent(): Event type '" + type + "' not supported.");
-            }
-        } else {
-            throw new Error("simulateMouseEvent(): Event type must be a string.");
-        }
-        
-        //setup default values
-        if (!YAHOO.lang.isBoolean(bubbles)){
-            bubbles = true; //all mouse events bubble
-        }
-        if (!YAHOO.lang.isBoolean(cancelable)){
-            cancelable = (type != "mousemove"); //mousemove is the only one that can't be cancelled
-        }
-        if (!YAHOO.lang.isObject(view)){
-            view = window; //view is typically window
-        }
-        if (!YAHOO.lang.isNumber(detail)){
-            detail = 1;  //number of mouse clicks must be at least one
-        }
-        if (!YAHOO.lang.isNumber(screenX)){
-            screenX = 0; 
-        }
-        if (!YAHOO.lang.isNumber(screenY)){
-            screenY = 0; 
-        }
-        if (!YAHOO.lang.isNumber(clientX)){
-            clientX = 0; 
-        }
-        if (!YAHOO.lang.isNumber(clientY)){
-            clientY = 0; 
-        }
-        if (!YAHOO.lang.isBoolean(ctrlKey)){
-            ctrlKey = false;
-        }
-        if (!YAHOO.lang.isBoolean(altKey)){
-            altKey = false;
-        }
-        if (!YAHOO.lang.isBoolean(shiftKey)){
-            shiftKey = false;
-        }
-        if (!YAHOO.lang.isBoolean(metaKey)){
-            metaKey = false;
-        }
-        if (!YAHOO.lang.isNumber(button)){
-            button = 0; 
-        }
-
-        //try to create a mouse event
-        var customEvent /*:MouseEvent*/ = null;
-            
-        //check for DOM-compliant browsers first
-        if (YAHOO.lang.isFunction(document.createEvent)){
-        
-            customEvent = document.createEvent("MouseEvents");
-        
-            //Safari 2.x (WebKit 418) still doesn't implement initMouseEvent()
-            if (customEvent.initMouseEvent){
-                customEvent.initMouseEvent(type, bubbles, cancelable, view, detail,
-                                     screenX, screenY, clientX, clientY, 
-                                     ctrlKey, altKey, shiftKey, metaKey, 
-                                     button, relatedTarget);
-            } else { //Safari
-            
-                //the closest thing available in Safari 2.x is UIEvents
-                customEvent = document.createEvent("UIEvents");
-                customEvent.initEvent(type, bubbles, cancelable);
-                customEvent.view = view;
-                customEvent.detail = detail;
-                customEvent.screenX = screenX;
-                customEvent.screenY = screenY;
-                customEvent.clientX = clientX;
-                customEvent.clientY = clientY;
-                customEvent.ctrlKey = ctrlKey;
-                customEvent.altKey = altKey;
-                customEvent.metaKey = metaKey;
-                customEvent.shiftKey = shiftKey;
-                customEvent.button = button;
-                customEvent.relatedTarget = relatedTarget;
-            }
-            
-            /*
-             * Check to see if relatedTarget has been assigned. Firefox
-             * versions less than 2.0 don't allow it to be assigned via
-             * initMouseEvent() and the property is readonly after event
-             * creation, so in order to keep YAHOO.util.getRelatedTarget()
-             * working, assign to the IE proprietary toElement property
-             * for mouseout event and fromElement property for mouseover
-             * event.
-             */
-            if (relatedTarget && !customEvent.relatedTarget){
-                if (type == "mouseout"){
-                    customEvent.toElement = relatedTarget;
-                } else if (type == "mouseover"){
-                    customEvent.fromElement = relatedTarget;
-                }
-            }
-            
-            //fire the event
-            target.dispatchEvent(customEvent);
-
-        } else if (YAHOO.lang.isObject(document.createEventObject)){ //IE
-        
-            //create an IE event object
-            customEvent = document.createEventObject();
-            
-            //assign available properties
-            customEvent.bubbles = bubbles;
-            customEvent.cancelable = cancelable;
-            customEvent.view = view;
-            customEvent.detail = detail;
-            customEvent.screenX = screenX;
-            customEvent.screenY = screenY;
-            customEvent.clientX = clientX;
-            customEvent.clientY = clientY;
-            customEvent.ctrlKey = ctrlKey;
-            customEvent.altKey = altKey;
-            customEvent.metaKey = metaKey;
-            customEvent.shiftKey = shiftKey;
-
-            //fix button property for IE's wacky implementation
-            switch(button){
-                case 0:
-                    customEvent.button = 1;
-                    break;
-                case 1:
-                    customEvent.button = 4;
-                    break;
-                case 2:
-                    //leave as is
-                    break;
-                default:
-                    customEvent.button = 0;                    
-            }    
-
-            /*
-             * Have to use relatedTarget because IE won't allow assignment
-             * to toElement or fromElement on generic events. This keeps
-             * YAHOO.util.customEvent.getRelatedTarget() functional.
-             */
-            customEvent.relatedTarget = relatedTarget;
-            
-            //fire the event
-            target.fireEvent("on" + type, customEvent);
-                    
-        } else {
-            throw new Error("simulateMouseEvent(): No event simulation framework present.");
-        }
-    },
-   
-    //--------------------------------------------------------------------------
-    // Mouse events
-    //--------------------------------------------------------------------------
-
-    /**
-     * Simulates a mouse event on a particular element.
-     * @param {HTMLElement} target The element to click on.
-     * @param {String} type The type of event to fire. This can be any one of
-     *      the following: click, dblclick, mousedown, mouseup, mouseout,
-     *      mouseover, and mousemove.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method mouseEvent
-     * @static
-     */
-    fireMouseEvent : function (target /*:HTMLElement*/, type /*:String*/, 
-                           options /*:Object*/) /*:Void*/
-    {
-        options = options || {};
-        this.simulateMouseEvent(target, type, options.bubbles,
-            options.cancelable, options.view, options.detail, options.screenX,        
-            options.screenY, options.clientX, options.clientY, options.ctrlKey,
-            options.altKey, options.shiftKey, options.metaKey, options.button,         
-            options.relatedTarget);        
-    },
-
-    /**
-     * Simulates a click on a particular element.
-     * @param {HTMLElement} target The element to click on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method click
-     * @static     
-     */
-    click : function (target /*:HTMLElement*/, options /*:Object*/) /*:Void*/ {
-        this.fireMouseEvent(target, "click", options);
-    },
-    
-    /**
-     * Simulates a double click on a particular element.
-     * @param {HTMLElement} target The element to double click on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method dblclick
-     * @static
-     */
-    dblclick : function (target /*:HTMLElement*/, options /*:Object*/) /*:Void*/ {
-        this.fireMouseEvent( target, "dblclick", options);
-    },
-    
-    /**
-     * Simulates a mousedown on a particular element.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method mousedown
-     * @static
-     */
-    mousedown : function (target /*:HTMLElement*/, options /*Object*/) /*:Void*/ {
-        this.fireMouseEvent(target, "mousedown", options);
-    },
-    
-    /**
-     * Simulates a mousemove on a particular element.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method mousemove
-     * @static
-     */
-    mousemove : function (target /*:HTMLElement*/, options /*Object*/) /*:Void*/ {
-        this.fireMouseEvent(target, "mousemove", options);
-    },
-    
-    /**
-     * Simulates a mouseout event on a particular element. Use "relatedTarget"
-     * on the options object to specify where the mouse moved to.
-     * Quirks: Firefox less than 2.0 doesn't set relatedTarget properly, so
-     * toElement is assigned in its place. IE doesn't allow toElement to be
-     * be assigned, so relatedTarget is assigned in its place. Both of these
-     * concessions allow YAHOO.util.Event.getRelatedTarget() to work correctly
-     * in both browsers.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method mouseout
-     * @static
-     */
-    mouseout : function (target /*:HTMLElement*/, options /*Object*/) /*:Void*/ {
-        this.fireMouseEvent(target, "mouseout", options);
-    },
-    
-    /**
-     * Simulates a mouseover event on a particular element. Use "relatedTarget"
-     * on the options object to specify where the mouse moved from.
-     * Quirks: Firefox less than 2.0 doesn't set relatedTarget properly, so
-     * fromElement is assigned in its place. IE doesn't allow fromElement to be
-     * be assigned, so relatedTarget is assigned in its place. Both of these
-     * concessions allow YAHOO.util.Event.getRelatedTarget() to work correctly
-     * in both browsers.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method mouseover
-     * @static
-     */
-    mouseover : function (target /*:HTMLElement*/, options /*Object*/) /*:Void*/ {
-        this.fireMouseEvent(target, "mouseover", options);
-    },
-    
-    /**
-     * Simulates a mouseup on a particular element.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method mouseup
-     * @static
-     */
-    mouseup : function (target /*:HTMLElement*/, options /*Object*/) /*:Void*/ {
-        this.fireMouseEvent(target, "mouseup", options);
-    },
-    
-    //--------------------------------------------------------------------------
-    // Key events
-    //--------------------------------------------------------------------------
-
-    /**
-     * Fires an event that normally would be fired by the keyboard (keyup,
-     * keydown, keypress). Make sure to specify either keyCode or charCode as
-     * an option.
-     * @private
-     * @param {String} type The type of event ("keyup", "keydown" or "keypress").
-     * @param {HTMLElement} target The target of the event.
-     * @param {Object} options Options for the event. Either keyCode or charCode
-     *                         are required.
-     * @method fireKeyEvent
-     * @static
-     */     
-    fireKeyEvent : function (type /*:String*/, target /*:HTMLElement*/,
-                             options /*:Object*/) /*:Void*/ 
-    {
-        options = options || {};
-        this.simulateKeyEvent(target, type, options.bubbles,
-            options.cancelable, options.view, options.ctrlKey,
-            options.altKey, options.shiftKey, options.metaKey, 
-            options.keyCode, options.charCode);    
-    },
-    
-    /**
-     * Simulates a keydown event on a particular element.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method keydown
-     * @static
-     */
-    keydown : function (target /*:HTMLElement*/, options /*:Object*/) /*:Void*/ {
-        this.fireKeyEvent("keydown", target, options);
-    },
-    
-    /**
-     * Simulates a keypress on a particular element.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method keypress
-     * @static
-     */
-    keypress : function (target /*:HTMLElement*/, options /*:Object*/) /*:Void*/ {
-        this.fireKeyEvent("keypress", target, options);
-    },
-    
-    /**
-     * Simulates a keyup event on a particular element.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method keyup
-     * @static
-     */
-    keyup : function (target /*:HTMLElement*/, options /*Object*/) /*:Void*/ {
-        this.fireKeyEvent("keyup", target, options);
-    }
-    
-
-};
-
-YAHOO.namespace("tool");
-
-//-----------------------------------------------------------------------------
-// TestManager object
-//-----------------------------------------------------------------------------
-
-/**
- * Runs pages containing test suite definitions.
- * @namespace YAHOO.tool
- * @class TestManager
- * @static
- */
-YAHOO.tool.TestManager = {
-
-    /**
-     * Constant for the testpagebegin custom event
-     * @property TEST_PAGE_BEGIN_EVENT
-     * @static
-     * @type string
-     * @final
-     */
-    TEST_PAGE_BEGIN_EVENT /*:String*/ : "testpagebegin",
-
-    /**
-     * Constant for the testpagecomplete custom event
-     * @property TEST_PAGE_COMPLETE_EVENT
-     * @static
-     * @type string
-     * @final
-     */
-    TEST_PAGE_COMPLETE_EVENT /*:String*/ : "testpagecomplete",
-
-    /**
-     * Constant for the testmanagerbegin custom event
-     * @property TEST_MANAGER_BEGIN_EVENT
-     * @static
-     * @type string
-     * @final
-     */
-    TEST_MANAGER_BEGIN_EVENT /*:String*/ : "testmanagerbegin",
-
-    /**
-     * Constant for the testmanagercomplete custom event
-     * @property TEST_MANAGER_COMPLETE_EVENT
-     * @static
-     * @type string
-     * @final
-     */
-    TEST_MANAGER_COMPLETE_EVENT /*:String*/ : "testmanagercomplete",
-
-    //-------------------------------------------------------------------------
-    // Private Properties
-    //-------------------------------------------------------------------------
-    
-    
-    /**
-     * The URL of the page currently being executed.
-     * @type String
-     * @private
-     * @property _curPage
-     * @static
-     */
-    _curPage /*:String*/ : null,
-    
-    /**
-     * The frame used to load and run tests.
-     * @type Window
-     * @private
-     * @property _frame
-     * @static
-     */
-    _frame /*:Window*/ : null,
-    
-    /**
-     * The logger used to output results from the various tests.
-     * @type YAHOO.tool.TestLogger
-     * @private
-     * @property _logger
-     * @static
-     */
-    _logger : null,
-    
-    /**
-     * The timeout ID for the next iteration through the tests.
-     * @type int
-     * @private
-     * @property _timeoutId
-     * @static
-     */
-    _timeoutId /*:int*/ : 0,
-    
-    /**
-     * Array of pages to load.
-     * @type String[]
-     * @private
-     * @property _pages
-     * @static
-     */
-    _pages /*:String[]*/ : [],
-    
-    /**
-     * Aggregated results
-     * @type Object
-     * @private
-     * @property _results
-     * @static
-     */
-    _results: null,
-    
-    //-------------------------------------------------------------------------
-    // Private Methods
-    //-------------------------------------------------------------------------
-    
-    /**
-     * Handles TestRunner.COMPLETE_EVENT, storing the results and beginning
-     * the loop again.
-     * @param {Object} data Data about the event.
-     * @return {Void}
-     * @private
-     * @static
-     */
-    _handleTestRunnerComplete : function (data /*:Object*/) /*:Void*/ {
-
-        this.fireEvent(this.TEST_PAGE_COMPLETE_EVENT, {
-                page: this._curPage,
-                results: data.results
-            });
-    
-        //save results
-        //this._results[this.curPage] = data.results;
-        
-        //process 'em
-        this._processResults(this._curPage, data.results);
-        
-        this._logger.clearTestRunner();
-    
-        //if there's more to do, set a timeout to begin again
-        if (this._pages.length){
-            this._timeoutId = setTimeout(function(){
-                YAHOO.tool.TestManager._run();
-            }, 1000);
-        } else {
-            this.fireEvent(this.TEST_MANAGER_COMPLETE_EVENT, this._results);
-        }
-    },
-    
-    /**
-     * Processes the results of a test page run, outputting log messages
-     * for failed tests.
-     * @return {Void}
-     * @private
-     * @static
-     */
-    _processResults : function (page /*:String*/, results /*:Object*/) /*:Void*/ {
-
-        var r = this._results;
-        
-        r.passed += results.passed;
-        r.failed += results.failed;
-        r.ignored += results.ignored;
-        r.total += results.total;
-        r.duration += results.duration;
-        
-        if (results.failed){
-            r.failedPages.push(page);
-        } else {
-            r.passedPages.push(page);
-        }
-        
-        results.name = page;
-        results.type = "page";
-        
-        r[page] = results;
-    },
-    
-    /**
-     * Loads the next test page into the iframe.
-     * @return {Void}
-     * @static
-     * @private
-     */
-    _run : function () /*:Void*/ {
-    
-        //set the current page
-        this._curPage = this._pages.shift();
-
-        this.fireEvent(this.TEST_PAGE_BEGIN_EVENT, this._curPage);
-        
-        //load the frame - destroy history in case there are other iframes that
-        //need testing
-        this._frame.location.replace(this._curPage);
-    
-    },
-        
-    //-------------------------------------------------------------------------
-    // Public Methods
-    //-------------------------------------------------------------------------
-    
-    /**
-     * Signals that a test page has been loaded. This should be called from
-     * within the test page itself to notify the TestManager that it is ready.
-     * @return {Void}
-     * @static
-     */
-    load : function () /*:Void*/ {
-        if (parent.YAHOO.tool.TestManager !== this){
-            parent.YAHOO.tool.TestManager.load();
-        } else {
-            
-            if (this._frame) {
-                //assign event handling
-                var TestRunner = this._frame.YAHOO.tool.TestRunner;
-
-                this._logger.setTestRunner(TestRunner);
-                TestRunner.subscribe(TestRunner.COMPLETE_EVENT, this._handleTestRunnerComplete, this, true);
-                
-                //run it
-                TestRunner.run();
-            }
-        }
-    },
-    
-    /**
-     * Sets the pages to be loaded.
-     * @param {String[]} pages An array of URLs to load.
-     * @return {Void}
-     * @static
-     */
-    setPages : function (pages /*:String[]*/) /*:Void*/ {
-        this._pages = pages;
-    },
-    
-    /**
-     * Begins the process of running the tests.
-     * @return {Void}
-     * @static
-     */
-    start : function () /*:Void*/ {
-
-        if (!this._initialized) {
-
-            /**
-             * Fires when loading a test page
-             * @event testpagebegin
-             * @param curPage {string} the page being loaded
-             * @static
-             */
-            this.createEvent(this.TEST_PAGE_BEGIN_EVENT);
-
-            /**
-             * Fires when a test page is complete
-             * @event testpagecomplete
-             * @param obj {page: string, results: object} the name of the
-             * page that was loaded, and the test suite results
-             * @static
-             */
-            this.createEvent(this.TEST_PAGE_COMPLETE_EVENT);
-
-            /**
-             * Fires when the test manager starts running all test pages
-             * @event testmanagerbegin
-             * @static
-             */
-            this.createEvent(this.TEST_MANAGER_BEGIN_EVENT);
-
-            /**
-             * Fires when the test manager finishes running all test pages.  External
-             * test runners should subscribe to this event in order to get the
-             * aggregated test results.
-             * @event testmanagercomplete
-             * @param obj { pages_passed: int, pages_failed: int, tests_passed: int
-             *              tests_failed: int, passed: string[], failed: string[],
-             *              page_results: {} }
-             * @static
-             */
-            this.createEvent(this.TEST_MANAGER_COMPLETE_EVENT);
-
-            //create iframe if not already available
-            if (!this._frame){
-                var frame /*:HTMLElement*/ = document.createElement("iframe");
-                frame.style.visibility = "hidden";
-                frame.style.position = "absolute";
-                document.body.appendChild(frame);
-                this._frame = frame.contentWindow || frame.contentDocument.parentWindow;
-            }
-            
-            //create test logger if not already available
-            if (!this._logger){
-                this._logger = new YAHOO.tool.TestLogger();
-            }
-
-            this._initialized = true;
-        }
-
-
-        // reset the results cache
-        this._results = {
-        
-            passed: 0,
-            failed: 0,
-            ignored: 0,
-            total: 0,
-            type: "report",
-            name: "YUI Test Results",
-            duration: 0,
-            failedPages:[],
-            passedPages:[]
-            /*
-            // number of pages that pass
-            pages_passed: 0,
-            // number of pages that fail
-            pages_failed: 0,
-            // total number of tests passed
-            tests_passed: 0,
-            // total number of tests failed
-            tests_failed: 0,
-            // array of pages that passed
-            passed: [],
-            // array of pages that failed
-            failed: [],
-            // map of full results for each page
-            page_results: {}*/
-        };
-
-        this.fireEvent(this.TEST_MANAGER_BEGIN_EVENT, null);
-        this._run();
-    
-    },
-
-    /**
-     * Stops the execution of tests.
-     * @return {Void}
-     * @static
-     */
-    stop : function () /*:Void*/ {
-        clearTimeout(this._timeoutId);
-    }
-
-};
-
-YAHOO.lang.augmentObject(YAHOO.tool.TestManager, YAHOO.util.EventProvider.prototype);
-
-
-YAHOO.namespace("tool");
-
-//-----------------------------------------------------------------------------
-// TestLogger object
-//-----------------------------------------------------------------------------
-
-/**
- * Displays test execution progress and results, providing filters based on
- * different key events.
- * @namespace YAHOO.tool
- * @class TestLogger
- * @constructor
- * @param {HTMLElement} element (Optional) The element to create the logger in.
- * @param {Object} config (Optional) Configuration options for the logger.
- */
-YAHOO.tool.TestLogger = function (element, config) {
-    YAHOO.tool.TestLogger.superclass.constructor.call(this, element, config);
-    this.init();
-};
-
-YAHOO.lang.extend(YAHOO.tool.TestLogger, YAHOO.widget.LogReader, {
-
-    footerEnabled : true,
-    newestOnTop : false,
-
-    /**
-     * Formats message string to HTML for output to console.
-     * @private
-     * @method formatMsg
-     * @param oLogMsg {Object} Log message object.
-     * @return {String} HTML-formatted message for output to console.
-     */
-    formatMsg : function(message /*:Object*/) {
-    
-        var category /*:String*/ = message.category;        
-        var text /*:String*/ = this.html2Text(message.msg);
-        
-        return "<pre><p><span class=\"" + category + "\">" + category.toUpperCase() + "</span> " + text + "</p></pre>";
-    
-    },
-    
-    //-------------------------------------------------------------------------
-    // Private Methods
-    //-------------------------------------------------------------------------
-    
-    /*
-     * Initializes the logger.
-     * @private
-     */
-    init : function () {
-    
-        //attach to any available TestRunner
-        if (YAHOO.tool.TestRunner){
-            this.setTestRunner(YAHOO.tool.TestRunner);
-        }
-        
-        //hide useless sources
-        this.hideSource("global");
-        this.hideSource("LogReader");
-        
-        //hide useless message categories
-        this.hideCategory("warn");
-        this.hideCategory("window");
-        this.hideCategory("time");
-        
-        //reset the logger
-        this.clearConsole();
-    },
-    
-    /**
-     * Clears the reference to the TestRunner from previous operations. This 
-     * unsubscribes all events and removes the object reference.
-     * @return {Void}
-     * @static
-     */
-    clearTestRunner : function () /*:Void*/ {
-        if (this._runner){
-            this._runner.unsubscribeAll();
-            this._runner = null;
-        }
-    },
-    
-    /**
-     * Sets the source test runner that the logger should monitor.
-     * @param {YAHOO.tool.TestRunner} testRunner The TestRunner to observe.
-     * @return {Void}
-     * @static
-     */
-    setTestRunner : function (testRunner /*:YAHOO.tool.TestRunner*/) /*:Void*/ {
-    
-        if (this._runner){
-            this.clearTestRunner();
-        }
-        
-        this._runner = testRunner;
-        
-        //setup event _handlers
-        testRunner.subscribe(testRunner.TEST_PASS_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.TEST_FAIL_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.TEST_IGNORE_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.BEGIN_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.COMPLETE_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.TEST_SUITE_BEGIN_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.TEST_SUITE_COMPLETE_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.TEST_CASE_BEGIN_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.TEST_CASE_COMPLETE_EVENT, this._handleTestRunnerEvent, this, true);    
-    },
-    
-    //-------------------------------------------------------------------------
-    // Event Handlers
-    //-------------------------------------------------------------------------
-    
-    /**
-     * Handles all TestRunner events, outputting appropriate data into the console.
-     * @param {Object} data The event data object.
-     * @return {Void}
-     * @private
-     */
-    _handleTestRunnerEvent : function (data /*:Object*/) /*:Void*/ {
-    
-        //shortcut variables
-        var TestRunner /*:Object*/ = YAHOO.tool.TestRunner;
-    
-        //data variables
-        var message /*:String*/ = "";
-        var messageType /*:String*/ = "";
-        
-        switch(data.type){
-            case TestRunner.BEGIN_EVENT:
-                message = "Testing began at " + (new Date()).toString() + ".";
-                messageType = "info";
-                break;
-                
-            case TestRunner.COMPLETE_EVENT:
-                message = "Testing completed at " + (new Date()).toString() + ".\nPassed:" + 
-                    data.results.passed + " Failed:" + data.results.failed + " Total:" + data.results.total;
-                messageType = "info";
-                break;
-                
-            case TestRunner.TEST_FAIL_EVENT:
-                message = data.testName + ": " + data.error.getMessage();
-                messageType = "fail";
-                break;
-                
-            case TestRunner.TEST_IGNORE_EVENT:
-                message = data.testName + ": ignored.";
-                messageType = "ignore";
-                break;
-                
-            case TestRunner.TEST_PASS_EVENT:
-                message = data.testName + ": passed.";
-                messageType = "pass";
-                break;
-                
-            case TestRunner.TEST_SUITE_BEGIN_EVENT:
-                message = "Test suite \"" + data.testSuite.name + "\" started.";
-                messageType = "info";
-                break;
-                
-            case TestRunner.TEST_SUITE_COMPLETE_EVENT:
-                message = "Test suite \"" + data.testSuite.name + "\" completed.\nPassed:" + 
-                    data.results.passed + " Failed:" + data.results.failed + " Total:" + data.results.total;
-                messageType = "info";
-                break;
-                
-            case TestRunner.TEST_CASE_BEGIN_EVENT:
-                message = "Test case \"" + data.testCase.name + "\" started.";
-                messageType = "info";
-                break;
-                
-            case TestRunner.TEST_CASE_COMPLETE_EVENT:
-                message = "Test case \"" + data.testCase.name + "\" completed.\nPassed:" + 
-                    data.results.passed + " Failed:" + data.results.failed + " Total:" + data.results.total;
-                messageType = "info";
-                break;
-            default:
-                message = "Unexpected event " + data.type;
-                message = "info";
-        }
-    
-        YAHOO.log(message, messageType, "TestRunner");    
-    }
-    
-});
-
-YAHOO.namespace("tool.TestFormat");
-
-/**
- * Returns test results formatted as a JSON string. Requires JSON utility.
- * @param {Object} result The results object created by TestRunner.
- * @return {String} An XML-formatted string of results.
- * @namespace YAHOO.tool.TestFormat
- * @method JSON
- * @static
- */
-YAHOO.tool.TestFormat.JSON = function(results /*:Object*/) /*:String*/ {
-    return YAHOO.lang.JSON.stringify(results);
-};
-
-/**
- * Returns test results formatted as an XML string.
- * @param {Object} result The results object created by TestRunner.
- * @return {String} An XML-formatted string of results.
- * @namespace YAHOO.tool.TestFormat
- * @method XML
- * @static
- */
-YAHOO.tool.TestFormat.XML = function(results /*:Object*/) /*:String*/ {
-
-    var l = YAHOO.lang;
-    var xml /*:String*/ = "<" + results.type + " name=\"" + results.name.replace(/"/g, "&quot;").replace(/'/g, "&apos;") + "\"";
-    
-    if (l.isNumber(results.duration)){
-        xml += " duration=\"" + results.duration + "\"";
-    }
-    
-    if (results.type == "test"){
-        xml += " result=\"" + results.result + "\" message=\"" + results.message + "\">";
-    } else {
-        xml += " passed=\"" + results.passed + "\" failed=\"" + results.failed + "\" ignored=\"" + results.ignored + "\" total=\"" + results.total + "\">";
-        for (var prop in results) {
-            if (l.hasOwnProperty(results, prop) && l.isObject(results[prop]) && !l.isArray(results[prop])){
-                xml += arguments.callee(results[prop]);
-            }
-        }        
-    }
-
-    xml += "</" + results.type + ">";
-    
-    return xml;
-
-};
-
-YAHOO.namespace("tool");
-
-/**
- * An object capable of sending test results to a server.
- * @param {String} url The URL to submit the results to.
- * @param {Function} format (Optiona) A function that outputs the results in a specific format.
- *      Default is YAHOO.tool.TestFormat.XML.
- * @constructor
- * @namespace YAHOO.tool
- * @class TestReporter
- */
-YAHOO.tool.TestReporter = function(url /*:String*/, format /*:Function*/) {
-
-    /**
-     * The URL to submit the data to.
-     * @type String
-     * @property url
-     */
-    this.url /*:String*/ = url;
-
-    /**
-     * The formatting function to call when submitting the data.
-     * @type Function
-     * @property format
-     */
-    this.format /*:Function*/ = format || YAHOO.tool.TestFormat.XML;
-
-    /**
-     * Extra fields to submit with the request.
-     * @type Object
-     * @property _fields
-     * @private
-     */
-    this._fields /*:Object*/ = new Object();
-    
-    /**
-     * The form element used to submit the results.
-     * @type HTMLFormElement
-     * @property _form
-     * @private
-     */
-    this._form /*:HTMLElement*/ = null;
-
-    /**
-     * Iframe used as a target for form submission.
-     * @type HTMLIFrameElement
-     * @property _iframe
-     * @private
-     */
-    this._iframe /*:HTMLElement*/ = null;
-};
-
-YAHOO.tool.TestReporter.prototype = {
-
-    //restore missing constructor
-    constructor: YAHOO.tool.TestReporter,
-    
-    /**
-     * Convert a date into ISO format.
-     * From Douglas Crockford's json2.js
-     * @param {Date} date The date to convert.
-     * @return {String} An ISO-formatted date string
-     * @method _convertToISOString
-     * @private
-     */    
-    _convertToISOString: function(date){
-        function f(n) {
-            // Format integers to have at least two digits.
-            return n < 10 ? '0' + n : n;
-        }
-
-        return date.getUTCFullYear()   + '-' +
-             f(date.getUTCMonth() + 1) + '-' +
-             f(date.getUTCDate())      + 'T' +
-             f(date.getUTCHours())     + ':' +
-             f(date.getUTCMinutes())   + ':' +
-             f(date.getUTCSeconds())   + 'Z';     
-    
-    },
-
-    /**
-     * Adds a field to the form that submits the results.
-     * @param {String} name The name of the field.
-     * @param {Variant} value The value of the field.
-     * @return {Void}
-     * @method addField
-     */
-    addField : function (name /*:String*/, value /*:Variant*/) /*:Void*/{
-        this._fields[name] = value;    
-    },
-    
-    /**
-     * Removes all previous defined fields.
-     * @return {Void}
-     * @method addField
-     */
-    clearFields : function() /*:Void*/{
-        this._fields = new Object();
-    },
-
-    /**
-     * Cleans up the memory associated with the TestReporter, removing DOM elements
-     * that were created.
-     * @return {Void}
-     * @method destroy
-     */
-    destroy : function() /*:Void*/ {
-        if (this._form){
-            this._form.parentNode.removeChild(this._form);
-            this._form = null;
-        }        
-        if (this._iframe){
-            this._iframe.parentNode.removeChild(this._iframe);
-            this._iframe = null;
-        }
-        this._fields = null;
-    },
-
-    /**
-     * Sends the report to the server.
-     * @param {Object} results The results object created by TestRunner.
-     * @return {Void}
-     * @method report
-     */
-    report : function(results /*:Object*/) /*:Void*/{
-    
-        //if the form hasn't been created yet, create it
-        if (!this._form){
-            this._form = document.createElement("form");
-            this._form.method = "post";
-            this._form.style.visibility = "hidden";
-            this._form.style.position = "absolute";
-            this._form.style.top = 0;
-            document.body.appendChild(this._form);
-        
-            //IE won't let you assign a name using the DOM, must do it the hacky way
-            if (YAHOO.env.ua.ie){
-                this._iframe = document.createElement("<iframe name=\"yuiTestTarget\" />");
-            } else {
-                this._iframe = document.createElement("iframe");
-                this._iframe.name = "yuiTestTarget";
-            }
-
-            this._iframe.src = "javascript:false";
-            this._iframe.style.visibility = "hidden";
-            this._iframe.style.position = "absolute";
-            this._iframe.style.top = 0;
-            document.body.appendChild(this._iframe);
-
-            this._form.target = "yuiTestTarget";
-        }
-
-        //set the form's action
-        this._form.action = this.url;
-    
-        //remove any existing fields
-        while(this._form.hasChildNodes()){
-            this._form.removeChild(this._form.lastChild);
-        }
-        
-        //create default fields
-        this._fields.results = this.format(results);
-        this._fields.useragent = navigator.userAgent;
-        this._fields.timestamp = this._convertToISOString(new Date());
-
-        //add fields to the form
-        for (var prop in this._fields){
-            if (YAHOO.lang.hasOwnProperty(this._fields, prop) && typeof this._fields[prop] != "function"){
-                if (YAHOO.env.ua.ie){
-                    input = document.createElement("<input name=\"" + prop + "\" >");
-                } else {
-                    input = document.createElement("input");
-                    input.name = prop;
-                }
-                input.type = "hidden";
-                input.value = this._fields[prop];
-                this._form.appendChild(input);
-            }
-        }
-
-        //remove default fields
-        delete this._fields.results;
-        delete this._fields.useragent;
-        delete this._fields.timestamp;
-        
-        if (arguments[1] !== false){
-            this._form.submit();
-        }
-    
-    }
-
-};
-
-YAHOO.register("yuitest", YAHOO.tool.TestRunner, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest-min.js b/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest-min.js
deleted file mode 100644
index 5ff5945..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest-min.js
+++ /dev/null
@@ -1,11 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.namespace("tool");(function(){var A=0;YAHOO.tool.TestCase=function(B){this._should={};for(var C in B){this[C]=B[C];}if(!YAHOO.lang.isString(this.name)){this.name="testCase"+(A++);}};YAHOO.tool.TestCase.prototype={resume:function(B){YAHOO.tool.TestRunner.resume(B);},wait:function(D,C){var B=arguments;if(YAHOO.lang.isFunction(B[0])){throw new YAHOO.tool.TestCase.Wait(B[0],B[1]);}else{throw new YAHOO.tool.TestCase.Wait(function(){YAHOO.util.Assert.fail("Timeout: wait() called but resume() never called.");},(YAHOO.lang.isNumber(B[0])?B[0]:10000));}},setUp:function(){},tearDown:function(){}};YAHOO.tool.TestCase.Wait=function(C,B){this.segment=(YAHOO.lang.isFunction(C)?C:null);this.delay=(YAHOO.lang.isNumber(B)?B:0);};})();YAHOO.namespace("tool");YAHOO.tool.TestSuite=function(A){this.name="";this.items=[];if(YAHOO.lang.isString(A)){this.name=A;}else{if(YAHOO.lang.isObject(A)){YAHOO.lang.augmentObject(this,A,true);}}if(this.name===""){this.name=YAHOO.util.Dom.generateId(null,"testSuite");}};YAHOO.tool.TestSuite.prototype={add:function(A){if(A instanceof YAHOO.tool.TestSuite||A instanceof YAHOO.tool.TestCase){this.items.push(A);}},setUp:function(){},tearDown:function(){}};YAHOO.namespace("tool");YAHOO.tool.TestRunner=(function(){function B(C){this.testObject=C;this.firstChild=null;this.lastChild=null;this.parent=null;this.next=null;this.results={passed:0,failed:0,total:0,ignored:0};if(C instanceof YAHOO.tool.TestSuite){this.results.type="testsuite";this.results.name=C.name;}else{if(C instanceof YAHOO.tool.TestCase){this.results.type="testcase";this.results.name=C.name;}}}B.prototype={appendChild:function(C){var D=new B(C);if(this.firstChild===null){this.firstChild=this.lastChild=D;}else{this.lastChild.next=D;this.lastChild=D;}D.parent=this;return D;}};function A(){A.superclass.constructor.apply(this,arguments);this.masterSuite=new YAHOO.tool.TestSuite("YUI Test Results");this._cur=null;this._root=null;var D=[this.TEST_CASE_BEGIN_EVENT,this.TEST_CASE_COMPLETE_EVENT,this.TEST_SUITE_BEGIN_EVENT,this.TEST_SUITE_COMPLETE_EVENT,this.TEST_PASS_EVENT,this.TEST_FAIL_EVENT,this.TEST_IGNORE_EVENT,this.COMPLETE_EVENT,this.BEGIN_EVENT];for(var C=0;C<D.length;C++){this.createEvent(D[C],{scope:this});}}YAHOO.lang.extend(A,YAHOO.util.EventProvider,{TEST_CASE_BEGIN_EVENT:"testcasebegin",TEST_CASE_COMPLETE_EVENT:"testcasecomplete",TEST_SUITE_BEGIN_EVENT:"testsuitebegin",TEST_SUITE_COMPLETE_EVENT:"testsuitecomplete",TEST_PASS_EVENT:"pass",TEST_FAIL_EVENT:"fail",TEST_IGNORE_EVENT:"ignore",COMPLETE_EVENT:"complete",BEGIN_EVENT:"begin",_addTestCaseToTestTree:function(C,D){var E=C.appendChild(D);for(var F in D){if(F.indexOf("test")===0&&YAHOO.lang.isFunction(D[F])){E.appendChild(F);}}},_addTestSuiteToTestTree:function(C,F){var E=C.appendChild(F);for(var D=0;D<F.items.length;D++){if(F.items[D] instanceof YAHOO.tool.TestSuite){this._addTestSuiteToTestTree(E,F.items[D]);}else{if(F.items[D] instanceof YAHOO.tool.TestCase){this._addTestCaseToTestTree(E,F.items[D]);}}}},_buildTestTree:function(){this._root=new B(this.masterSuite);this._cur=this._root;for(var C=0;C<this.masterSuite.items.length;C++){if(this.masterSuite.items[C] instanceof YAHOO.tool.TestSuite){this._addTestSuiteToTestTree(this._root,this.masterSuite.items[C]);}else{if(this.masterSuite.items[C] instanceof YAHOO.tool.TestCase){this._addTestCaseToTestTree(this._root,this.masterSuite.items[C]);}}}},_handleTestObjectComplete:function(C){if(YAHOO.lang.isObject(C.testObject)){C.parent.results.passed+=C.results.passed;C.parent.results.failed+=C.results.failed;C.parent.results.total+=C.results.total;C.parent.results.ignored+=C.results.ignored;C.parent.results[C.testObject.name]=C.results;if(C.testObject instanceof YAHOO.tool.TestSuite){C.testObject.tearDown();this.fireEvent(this.TEST_SUITE_COMPLETE_EVENT,{testSuite:C.testObject,results:C.results});}else{if(C.testObject instanceof YAHOO.tool.TestCase){this.fireEvent(this.TEST_CASE_COMPLETE_EVENT,{testCase:C.testObject,results:C.results});}}}},_next:function(){if(this._cur.firstChild){this._cur=this._cur.firstChild;}else{if(this._cur.next){this._cur=this._cur.next;}else{while(this._cur&&!this._cur.next&&this._cur!==this._root){this._handleTestObjectComplete(this._cur);this._cur=this._cur.parent;}if(this._cur==this._root){this._cur.results.type="report";this._cur.results.timestamp=(new Date()).toLocaleString();this._cur.results.duration=(new Date())-this._cur.results.duration;this.fireEvent(this.COMPLETE_EVENT,{results:this._cur.results});this._cur=null;}else{this._handleTestObjectComplete(this._cur);this._cur=this._cur.next;}}}return this._cur;},_run:function(){var E=false;var D=this._next();if(D!==null){var C=D.testObject;if(YAHOO.lang.isObject(C)){if(C instanceof YAHOO.tool.TestSuite){this.fireEvent(this.TEST_SUITE_BEGIN_EVENT,{testSuite:C});C.setUp();}else{if(C instanceof YAHOO.tool.TestCase){this.fireEvent(this.TEST_CASE_BEGIN_EVENT,{testCase:C});}}if(typeof setTimeout!="undefined"){setTimeout(function(){YAHOO.tool.TestRunner._run();},0);}else{this._run();}}else{this._runTest(D);}}},_resumeTest:function(G){var C=this._cur;var H=C.testObject;var E=C.parent.testObject;if(E.__yui_wait){clearTimeout(E.__yui_wait);delete E.__yui_wait;}var K=(E._should.fail||{})[H];var D=(E._should.error||{})[H];var F=false;var I=null;try{G.apply(E);if(K){I=new YAHOO.util.ShouldFail();F=true;}else{if(D){I=new YAHOO.util.ShouldError();F=true;}}}catch(J){if(J instanceof YAHOO.util.AssertionError){if(!K){I=J;F=true;}}else{if(J instanceof YAHOO.tool.TestCase.Wait){if(YAHOO.lang.isFunction(J.segment)){if(YAHOO.lang.isNumber(J.delay)){if(typeof setTimeout!="undefined"){E.__yui_wait=setTimeout(function(){YAHOO.tool.TestRunner._resumeTest(J.segment);},J.delay);}else{throw new Error("Asynchronous tests not supported in this environment.");}}}return ;}else{if(!D){I=new YAHOO.util.UnexpectedError(J);F=true;}else{if(YAHOO.lang.isString(D)){if(J.message!=D){I=new YAHOO.util.UnexpectedError(J);F=true;}}else{if(YAHOO.lang.isFunction(D)){if(!(J instanceof D)){I=new YAHOO.util.UnexpectedError(J);
-F=true;}}else{if(YAHOO.lang.isObject(D)){if(!(J instanceof D.constructor)||J.message!=D.message){I=new YAHOO.util.UnexpectedError(J);F=true;}}}}}}}}if(F){this.fireEvent(this.TEST_FAIL_EVENT,{testCase:E,testName:H,error:I});}else{this.fireEvent(this.TEST_PASS_EVENT,{testCase:E,testName:H});}E.tearDown();C.parent.results[H]={result:F?"fail":"pass",message:I?I.getMessage():"Test passed",type:"test",name:H};if(F){C.parent.results.failed++;}else{C.parent.results.passed++;}C.parent.results.total++;if(typeof setTimeout!="undefined"){setTimeout(function(){YAHOO.tool.TestRunner._run();},0);}else{this._run();}},_runTest:function(F){var C=F.testObject;var D=F.parent.testObject;var G=D[C];var E=(D._should.ignore||{})[C];if(E){F.parent.results[C]={result:"ignore",message:"Test ignored",type:"test",name:C};F.parent.results.ignored++;F.parent.results.total++;this.fireEvent(this.TEST_IGNORE_EVENT,{testCase:D,testName:C});if(typeof setTimeout!="undefined"){setTimeout(function(){YAHOO.tool.TestRunner._run();},0);}else{this._run();}}else{D.setUp();this._resumeTest(G);}},fireEvent:function(C,D){D=D||{};D.type=C;A.superclass.fireEvent.call(this,C,D);},add:function(C){this.masterSuite.add(C);},clear:function(){this.masterSuite.items=[];},resume:function(C){this._resumeTest(C||function(){});},run:function(C){var D=YAHOO.tool.TestRunner;D._buildTestTree();D._root.results.duration=(new Date()).valueOf();D.fireEvent(D.BEGIN_EVENT);D._run();}});return new A();})();YAHOO.namespace("util");YAHOO.util.Assert={_formatMessage:function(B,A){var C=B;if(YAHOO.lang.isString(B)&&B.length>0){return YAHOO.lang.substitute(B,{message:A});}else{return A;}},fail:function(A){throw new YAHOO.util.AssertionError(this._formatMessage(A,"Test force-failed."));},areEqual:function(B,C,A){if(B!=C){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Values should be equal."),B,C);}},areNotEqual:function(A,C,B){if(A==C){throw new YAHOO.util.UnexpectedValue(this._formatMessage(B,"Values should not be equal."),A);}},areNotSame:function(A,C,B){if(A===C){throw new YAHOO.util.UnexpectedValue(this._formatMessage(B,"Values should not be the same."),A);}},areSame:function(B,C,A){if(B!==C){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Values should be the same."),B,C);}},isFalse:function(B,A){if(false!==B){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Value should be false."),false,B);}},isTrue:function(B,A){if(true!==B){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Value should be true."),true,B);}},isNaN:function(B,A){if(!isNaN(B)){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Value should be NaN."),NaN,B);}},isNotNaN:function(B,A){if(isNaN(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Values should not be NaN."),NaN);}},isNotNull:function(B,A){if(YAHOO.lang.isNull(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Values should not be null."),null);}},isNotUndefined:function(B,A){if(YAHOO.lang.isUndefined(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Value should not be undefined."),undefined);}},isNull:function(B,A){if(!YAHOO.lang.isNull(B)){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Value should be null."),null,B);}},isUndefined:function(B,A){if(!YAHOO.lang.isUndefined(B)){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Value should be undefined."),undefined,B);}},isArray:function(B,A){if(!YAHOO.lang.isArray(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Value should be an array."),B);}},isBoolean:function(B,A){if(!YAHOO.lang.isBoolean(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Value should be a Boolean."),B);}},isFunction:function(B,A){if(!YAHOO.lang.isFunction(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Value should be a function."),B);}},isInstanceOf:function(B,C,A){if(!(C instanceof B)){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Value isn't an instance of expected type."),B,C);}},isNumber:function(B,A){if(!YAHOO.lang.isNumber(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Value should be a number."),B);}},isObject:function(B,A){if(!YAHOO.lang.isObject(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Value should be an object."),B);}},isString:function(B,A){if(!YAHOO.lang.isString(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Value should be a string."),B);}},isTypeOf:function(A,C,B){if(typeof C!=A){throw new YAHOO.util.ComparisonFailure(this._formatMessage(B,"Value should be of type "+expected+"."),expected,typeof actual);}}};YAHOO.util.AssertionError=function(A){arguments.callee.superclass.constructor.call(this,A);this.message=A;this.name="AssertionError";};YAHOO.lang.extend(YAHOO.util.AssertionError,Error,{getMessage:function(){return this.message;},toString:function(){return this.name+": "+this.getMessage();},valueOf:function(){return this.toString();}});YAHOO.util.ComparisonFailure=function(B,A,C){arguments.callee.superclass.constructor.call(this,B);this.expected=A;this.actual=C;this.name="ComparisonFailure";};YAHOO.lang.extend(YAHOO.util.ComparisonFailure,YAHOO.util.AssertionError,{getMessage:function(){return this.message+"\nExpected: "+this.expected+" ("+(typeof this.expected)+")\nActual:"+this.actual+" ("+(typeof this.actual)+")";}});YAHOO.util.UnexpectedValue=function(B,A){arguments.callee.superclass.constructor.call(this,B);this.unexpected=A;this.name="UnexpectedValue";};YAHOO.lang.extend(YAHOO.util.UnexpectedValue,YAHOO.util.AssertionError,{getMessage:function(){return this.message+"\nUnexpected: "+this.unexpected+" ("+(typeof this.unexpected)+") ";}});YAHOO.util.ShouldFail=function(A){arguments.callee.superclass.constructor.call(this,A||"This test should fail but didn't.");this.name="ShouldFail";};YAHOO.lang.extend(YAHOO.util.ShouldFail,YAHOO.util.AssertionError);YAHOO.util.ShouldError=function(A){arguments.callee.superclass.constructor.call(this,A||"This test should have thrown an error but didn't.");
-this.name="ShouldError";};YAHOO.lang.extend(YAHOO.util.ShouldError,YAHOO.util.AssertionError);YAHOO.util.UnexpectedError=function(A){arguments.callee.superclass.constructor.call(this,"Unexpected error: "+A.message);this.cause=A;this.name="UnexpectedError";this.stack=A.stack;};YAHOO.lang.extend(YAHOO.util.UnexpectedError,YAHOO.util.AssertionError);YAHOO.util.ArrayAssert={contains:function(E,D,B){var C=false;var F=YAHOO.util.Assert;for(var A=0;A<D.length&&!C;A++){if(D[A]===E){C=true;}}if(!C){F.fail(F._formatMessage(B,"Value "+E+" ("+(typeof E)+") not found in array ["+D+"]."));}},containsItems:function(C,D,B){for(var A=0;A<C.length;A++){this.contains(C[A],D,B);}},containsMatch:function(E,D,B){if(typeof E!="function"){throw new TypeError("ArrayAssert.containsMatch(): First argument must be a function.");}var C=false;var F=YAHOO.util.Assert;for(var A=0;A<D.length&&!C;A++){if(E(D[A])){C=true;}}if(!C){F.fail(F._formatMessage(B,"No match found in array ["+D+"]."));}},doesNotContain:function(E,D,B){var C=false;var F=YAHOO.util.Assert;for(var A=0;A<D.length&&!C;A++){if(D[A]===E){C=true;}}if(C){F.fail(F._formatMessage(B,"Value found in array ["+D+"]."));}},doesNotContainItems:function(C,D,B){for(var A=0;A<C.length;A++){this.doesNotContain(C[A],D,B);}},doesNotContainMatch:function(E,D,B){if(typeof E!="function"){throw new TypeError("ArrayAssert.doesNotContainMatch(): First argument must be a function.");}var C=false;var F=YAHOO.util.Assert;for(var A=0;A<D.length&&!C;A++){if(E(D[A])){C=true;}}if(C){F.fail(F._formatMessage(B,"Value found in array ["+D+"]."));}},indexOf:function(E,D,A,C){for(var B=0;B<D.length;B++){if(D[B]===E){YAHOO.util.Assert.areEqual(A,B,C||"Value exists at index "+B+" but should be at index "+A+".");return ;}}var F=YAHOO.util.Assert;F.fail(F._formatMessage(C,"Value doesn't exist in array ["+D+"]."));},itemsAreEqual:function(D,F,C){var A=Math.max(D.length,F.length);var E=YAHOO.util.Assert;for(var B=0;B<A;B++){E.areEqual(D[B],F[B],E._formatMessage(C,"Values in position "+B+" are not equal."));}},itemsAreEquivalent:function(E,F,B,D){if(typeof B!="function"){throw new TypeError("ArrayAssert.itemsAreEquivalent(): Third argument must be a function.");}var A=Math.max(E.length,F.length);for(var C=0;C<A;C++){if(!B(E[C],F[C])){throw new YAHOO.util.ComparisonFailure(YAHOO.util.Assert._formatMessage(D,"Values in position "+C+" are not equivalent."),E[C],F[C]);}}},isEmpty:function(C,A){if(C.length>0){var B=YAHOO.util.Assert;B.fail(B._formatMessage(A,"Array should be empty."));}},isNotEmpty:function(C,A){if(C.length===0){var B=YAHOO.util.Assert;B.fail(B._formatMessage(A,"Array should not be empty."));}},itemsAreSame:function(D,F,C){var A=Math.max(D.length,F.length);var E=YAHOO.util.Assert;for(var B=0;B<A;B++){E.areSame(D[B],F[B],E._formatMessage(C,"Values in position "+B+" are not the same."));}},lastIndexOf:function(E,D,A,C){var F=YAHOO.util.Assert;for(var B=D.length;B>=0;B--){if(D[B]===E){F.areEqual(A,B,F._formatMessage(C,"Value exists at index "+B+" but should be at index "+A+"."));return ;}}F.fail(F._formatMessage(C,"Value doesn't exist in array."));}};YAHOO.namespace("util");YAHOO.util.ObjectAssert={propertiesAreEqual:function(D,G,C){var F=YAHOO.util.Assert;var B=[];for(var E in D){B.push(E);}for(var A=0;A<B.length;A++){F.isNotUndefined(G[B[A]],F._formatMessage(C,"Property '"+B[A]+"' expected."));}},hasProperty:function(A,B,C){if(!(A in B)){var D=YAHOO.util.Assert;D.fail(D._formatMessage(C,"Property '"+A+"' not found on object."));}},hasOwnProperty:function(A,B,C){if(!YAHOO.lang.hasOwnProperty(B,A)){var D=YAHOO.util.Assert;D.fail(D._formatMessage(C,"Property '"+A+"' not found on object instance."));}}};YAHOO.util.DateAssert={datesAreEqual:function(B,D,A){if(B instanceof Date&&D instanceof Date){var C=YAHOO.util.Assert;C.areEqual(B.getFullYear(),D.getFullYear(),C._formatMessage(A,"Years should be equal."));C.areEqual(B.getMonth(),D.getMonth(),C._formatMessage(A,"Months should be equal."));C.areEqual(B.getDate(),D.getDate(),C._formatMessage(A,"Day of month should be equal."));}else{throw new TypeError("DateAssert.datesAreEqual(): Expected and actual values must be Date objects.");}},timesAreEqual:function(B,D,A){if(B instanceof Date&&D instanceof Date){var C=YAHOO.util.Assert;C.areEqual(B.getHours(),D.getHours(),C._formatMessage(A,"Hours should be equal."));C.areEqual(B.getMinutes(),D.getMinutes(),C._formatMessage(A,"Minutes should be equal."));C.areEqual(B.getSeconds(),D.getSeconds(),C._formatMessage(A,"Seconds should be equal."));}else{throw new TypeError("DateAssert.timesAreEqual(): Expected and actual values must be Date objects.");}}};YAHOO.namespace("util");YAHOO.util.UserAction={simulateKeyEvent:function(F,J,E,C,L,B,A,K,H,N,M){F=YAHOO.util.Dom.get(F);if(!F){throw new Error("simulateKeyEvent(): Invalid target.");}if(YAHOO.lang.isString(J)){J=J.toLowerCase();switch(J){case"keyup":case"keydown":case"keypress":break;case"textevent":J="keypress";break;default:throw new Error("simulateKeyEvent(): Event type '"+J+"' not supported.");}}else{throw new Error("simulateKeyEvent(): Event type must be a string.");}if(!YAHOO.lang.isBoolean(E)){E=true;}if(!YAHOO.lang.isBoolean(C)){C=true;}if(!YAHOO.lang.isObject(L)){L=window;}if(!YAHOO.lang.isBoolean(B)){B=false;}if(!YAHOO.lang.isBoolean(A)){A=false;}if(!YAHOO.lang.isBoolean(K)){K=false;}if(!YAHOO.lang.isBoolean(H)){H=false;}if(!YAHOO.lang.isNumber(N)){N=0;}if(!YAHOO.lang.isNumber(M)){M=0;}var I=null;if(YAHOO.lang.isFunction(document.createEvent)){try{I=document.createEvent("KeyEvents");I.initKeyEvent(J,E,C,L,B,A,K,H,N,M);}catch(G){try{I=document.createEvent("Events");}catch(D){I=document.createEvent("UIEvents");}finally{I.initEvent(J,E,C);I.view=L;I.altKey=A;I.ctrlKey=B;I.shiftKey=K;I.metaKey=H;I.keyCode=N;I.charCode=M;}}F.dispatchEvent(I);}else{if(YAHOO.lang.isObject(document.createEventObject)){I=document.createEventObject();I.bubbles=E;I.cancelable=C;I.view=L;I.ctrlKey=B;I.altKey=A;I.shiftKey=K;I.metaKey=H;I.keyCode=(M>0)?M:N;F.fireEvent("on"+J,I);
-}else{throw new Error("simulateKeyEvent(): No event simulation framework present.");}}},simulateMouseEvent:function(K,P,H,E,Q,J,G,F,D,B,C,A,O,M,I,L){K=YAHOO.util.Dom.get(K);if(!K){throw new Error("simulateMouseEvent(): Invalid target.");}if(YAHOO.lang.isString(P)){P=P.toLowerCase();switch(P){case"mouseover":case"mouseout":case"mousedown":case"mouseup":case"click":case"dblclick":case"mousemove":break;default:throw new Error("simulateMouseEvent(): Event type '"+P+"' not supported.");}}else{throw new Error("simulateMouseEvent(): Event type must be a string.");}if(!YAHOO.lang.isBoolean(H)){H=true;}if(!YAHOO.lang.isBoolean(E)){E=(P!="mousemove");}if(!YAHOO.lang.isObject(Q)){Q=window;}if(!YAHOO.lang.isNumber(J)){J=1;}if(!YAHOO.lang.isNumber(G)){G=0;}if(!YAHOO.lang.isNumber(F)){F=0;}if(!YAHOO.lang.isNumber(D)){D=0;}if(!YAHOO.lang.isNumber(B)){B=0;}if(!YAHOO.lang.isBoolean(C)){C=false;}if(!YAHOO.lang.isBoolean(A)){A=false;}if(!YAHOO.lang.isBoolean(O)){O=false;}if(!YAHOO.lang.isBoolean(M)){M=false;}if(!YAHOO.lang.isNumber(I)){I=0;}var N=null;if(YAHOO.lang.isFunction(document.createEvent)){N=document.createEvent("MouseEvents");if(N.initMouseEvent){N.initMouseEvent(P,H,E,Q,J,G,F,D,B,C,A,O,M,I,L);}else{N=document.createEvent("UIEvents");N.initEvent(P,H,E);N.view=Q;N.detail=J;N.screenX=G;N.screenY=F;N.clientX=D;N.clientY=B;N.ctrlKey=C;N.altKey=A;N.metaKey=M;N.shiftKey=O;N.button=I;N.relatedTarget=L;}if(L&&!N.relatedTarget){if(P=="mouseout"){N.toElement=L;}else{if(P=="mouseover"){N.fromElement=L;}}}K.dispatchEvent(N);}else{if(YAHOO.lang.isObject(document.createEventObject)){N=document.createEventObject();N.bubbles=H;N.cancelable=E;N.view=Q;N.detail=J;N.screenX=G;N.screenY=F;N.clientX=D;N.clientY=B;N.ctrlKey=C;N.altKey=A;N.metaKey=M;N.shiftKey=O;switch(I){case 0:N.button=1;break;case 1:N.button=4;break;case 2:break;default:N.button=0;}N.relatedTarget=L;K.fireEvent("on"+P,N);}else{throw new Error("simulateMouseEvent(): No event simulation framework present.");}}},fireMouseEvent:function(C,B,A){A=A||{};this.simulateMouseEvent(C,B,A.bubbles,A.cancelable,A.view,A.detail,A.screenX,A.screenY,A.clientX,A.clientY,A.ctrlKey,A.altKey,A.shiftKey,A.metaKey,A.button,A.relatedTarget);},click:function(B,A){this.fireMouseEvent(B,"click",A);},dblclick:function(B,A){this.fireMouseEvent(B,"dblclick",A);},mousedown:function(B,A){this.fireMouseEvent(B,"mousedown",A);},mousemove:function(B,A){this.fireMouseEvent(B,"mousemove",A);},mouseout:function(B,A){this.fireMouseEvent(B,"mouseout",A);},mouseover:function(B,A){this.fireMouseEvent(B,"mouseover",A);},mouseup:function(B,A){this.fireMouseEvent(B,"mouseup",A);},fireKeyEvent:function(B,C,A){A=A||{};this.simulateKeyEvent(C,B,A.bubbles,A.cancelable,A.view,A.ctrlKey,A.altKey,A.shiftKey,A.metaKey,A.keyCode,A.charCode);},keydown:function(B,A){this.fireKeyEvent("keydown",B,A);},keypress:function(B,A){this.fireKeyEvent("keypress",B,A);},keyup:function(B,A){this.fireKeyEvent("keyup",B,A);}};YAHOO.namespace("tool");YAHOO.tool.TestManager={TEST_PAGE_BEGIN_EVENT:"testpagebegin",TEST_PAGE_COMPLETE_EVENT:"testpagecomplete",TEST_MANAGER_BEGIN_EVENT:"testmanagerbegin",TEST_MANAGER_COMPLETE_EVENT:"testmanagercomplete",_curPage:null,_frame:null,_logger:null,_timeoutId:0,_pages:[],_results:null,_handleTestRunnerComplete:function(A){this.fireEvent(this.TEST_PAGE_COMPLETE_EVENT,{page:this._curPage,results:A.results});this._processResults(this._curPage,A.results);this._logger.clearTestRunner();if(this._pages.length){this._timeoutId=setTimeout(function(){YAHOO.tool.TestManager._run();},1000);}else{this.fireEvent(this.TEST_MANAGER_COMPLETE_EVENT,this._results);}},_processResults:function(C,A){var B=this._results;B.passed+=A.passed;B.failed+=A.failed;B.ignored+=A.ignored;B.total+=A.total;B.duration+=A.duration;if(A.failed){B.failedPages.push(C);}else{B.passedPages.push(C);}A.name=C;A.type="page";B[C]=A;},_run:function(){this._curPage=this._pages.shift();this.fireEvent(this.TEST_PAGE_BEGIN_EVENT,this._curPage);this._frame.location.replace(this._curPage);},load:function(){if(parent.YAHOO.tool.TestManager!==this){parent.YAHOO.tool.TestManager.load();}else{if(this._frame){var A=this._frame.YAHOO.tool.TestRunner;this._logger.setTestRunner(A);A.subscribe(A.COMPLETE_EVENT,this._handleTestRunnerComplete,this,true);A.run();}}},setPages:function(A){this._pages=A;},start:function(){if(!this._initialized){this.createEvent(this.TEST_PAGE_BEGIN_EVENT);this.createEvent(this.TEST_PAGE_COMPLETE_EVENT);this.createEvent(this.TEST_MANAGER_BEGIN_EVENT);this.createEvent(this.TEST_MANAGER_COMPLETE_EVENT);if(!this._frame){var A=document.createElement("iframe");A.style.visibility="hidden";A.style.position="absolute";document.body.appendChild(A);this._frame=A.contentWindow||A.contentDocument.parentWindow;}if(!this._logger){this._logger=new YAHOO.tool.TestLogger();}this._initialized=true;}this._results={passed:0,failed:0,ignored:0,total:0,type:"report",name:"YUI Test Results",duration:0,failedPages:[],passedPages:[]};this.fireEvent(this.TEST_MANAGER_BEGIN_EVENT,null);this._run();},stop:function(){clearTimeout(this._timeoutId);}};YAHOO.lang.augmentObject(YAHOO.tool.TestManager,YAHOO.util.EventProvider.prototype);YAHOO.namespace("tool");YAHOO.tool.TestLogger=function(B,A){YAHOO.tool.TestLogger.superclass.constructor.call(this,B,A);this.init();};YAHOO.lang.extend(YAHOO.tool.TestLogger,YAHOO.widget.LogReader,{footerEnabled:true,newestOnTop:false,formatMsg:function(B){var A=B.category;var C=this.html2Text(B.msg);return"<pre><p><span class=\""+A+"\">"+A.toUpperCase()+"</span> "+C+"</p></pre>";},init:function(){if(YAHOO.tool.TestRunner){this.setTestRunner(YAHOO.tool.TestRunner);}this.hideSource("global");this.hideSource("LogReader");this.hideCategory("warn");this.hideCategory("window");this.hideCategory("time");this.clearConsole();},clearTestRunner:function(){if(this._runner){this._runner.unsubscribeAll();this._runner=null;}},setTestRunner:function(A){if(this._runner){this.clearTestRunner();}this._runner=A;A.subscribe(A.TEST_PASS_EVENT,this._handleTestRunnerEvent,this,true);
-A.subscribe(A.TEST_FAIL_EVENT,this._handleTestRunnerEvent,this,true);A.subscribe(A.TEST_IGNORE_EVENT,this._handleTestRunnerEvent,this,true);A.subscribe(A.BEGIN_EVENT,this._handleTestRunnerEvent,this,true);A.subscribe(A.COMPLETE_EVENT,this._handleTestRunnerEvent,this,true);A.subscribe(A.TEST_SUITE_BEGIN_EVENT,this._handleTestRunnerEvent,this,true);A.subscribe(A.TEST_SUITE_COMPLETE_EVENT,this._handleTestRunnerEvent,this,true);A.subscribe(A.TEST_CASE_BEGIN_EVENT,this._handleTestRunnerEvent,this,true);A.subscribe(A.TEST_CASE_COMPLETE_EVENT,this._handleTestRunnerEvent,this,true);},_handleTestRunnerEvent:function(D){var A=YAHOO.tool.TestRunner;var C="";var B="";switch(D.type){case A.BEGIN_EVENT:C="Testing began at "+(new Date()).toString()+".";B="info";break;case A.COMPLETE_EVENT:C="Testing completed at "+(new Date()).toString()+".\nPassed:"+D.results.passed+" Failed:"+D.results.failed+" Total:"+D.results.total;B="info";break;case A.TEST_FAIL_EVENT:C=D.testName+": "+D.error.getMessage();B="fail";break;case A.TEST_IGNORE_EVENT:C=D.testName+": ignored.";B="ignore";break;case A.TEST_PASS_EVENT:C=D.testName+": passed.";B="pass";break;case A.TEST_SUITE_BEGIN_EVENT:C="Test suite \""+D.testSuite.name+"\" started.";B="info";break;case A.TEST_SUITE_COMPLETE_EVENT:C="Test suite \""+D.testSuite.name+"\" completed.\nPassed:"+D.results.passed+" Failed:"+D.results.failed+" Total:"+D.results.total;B="info";break;case A.TEST_CASE_BEGIN_EVENT:C="Test case \""+D.testCase.name+"\" started.";B="info";break;case A.TEST_CASE_COMPLETE_EVENT:C="Test case \""+D.testCase.name+"\" completed.\nPassed:"+D.results.passed+" Failed:"+D.results.failed+" Total:"+D.results.total;B="info";break;default:C="Unexpected event "+D.type;C="info";}YAHOO.log(C,B,"TestRunner");}});YAHOO.namespace("tool.TestFormat");YAHOO.tool.TestFormat.JSON=function(A){return YAHOO.lang.JSON.stringify(A);};YAHOO.tool.TestFormat.XML=function(C){var A=YAHOO.lang;var B="<"+C.type+" name=\""+C.name.replace(/"/g,"&quot;").replace(/'/g,"&apos;")+"\"";if(A.isNumber(C.duration)){B+=" duration=\""+C.duration+"\"";}if(C.type=="test"){B+=" result=\""+C.result+"\" message=\""+C.message+"\">";}else{B+=" passed=\""+C.passed+"\" failed=\""+C.failed+"\" ignored=\""+C.ignored+"\" total=\""+C.total+"\">";for(var D in C){if(A.hasOwnProperty(C,D)&&A.isObject(C[D])&&!A.isArray(C[D])){B+=arguments.callee(C[D]);}}}B+="</"+C.type+">";return B;};YAHOO.namespace("tool");YAHOO.tool.TestReporter=function(A,B){this.url=A;this.format=B||YAHOO.tool.TestFormat.XML;this._fields=new Object();this._form=null;this._iframe=null;};YAHOO.tool.TestReporter.prototype={constructor:YAHOO.tool.TestReporter,_convertToISOString:function(A){function B(C){return C<10?"0"+C:C;}return A.getUTCFullYear()+"-"+B(A.getUTCMonth()+1)+"-"+B(A.getUTCDate())+"T"+B(A.getUTCHours())+":"+B(A.getUTCMinutes())+":"+B(A.getUTCSeconds())+"Z";},addField:function(A,B){this._fields[A]=B;},clearFields:function(){this._fields=new Object();},destroy:function(){if(this._form){this._form.parentNode.removeChild(this._form);this._form=null;}if(this._iframe){this._iframe.parentNode.removeChild(this._iframe);this._iframe=null;}this._fields=null;},report:function(A){if(!this._form){this._form=document.createElement("form");this._form.method="post";this._form.style.visibility="hidden";this._form.style.position="absolute";this._form.style.top=0;document.body.appendChild(this._form);if(YAHOO.env.ua.ie){this._iframe=document.createElement("<iframe name=\"yuiTestTarget\" />");}else{this._iframe=document.createElement("iframe");this._iframe.name="yuiTestTarget";}this._iframe.src="javascript:false";this._iframe.style.visibility="hidden";this._iframe.style.position="absolute";this._iframe.style.top=0;document.body.appendChild(this._iframe);this._form.target="yuiTestTarget";}this._form.action=this.url;while(this._form.hasChildNodes()){this._form.removeChild(this._form.lastChild);}this._fields.results=this.format(A);this._fields.useragent=navigator.userAgent;this._fields.timestamp=this._convertToISOString(new Date());for(var B in this._fields){if(YAHOO.lang.hasOwnProperty(this._fields,B)&&typeof this._fields[B]!="function"){if(YAHOO.env.ua.ie){input=document.createElement("<input name=\""+B+"\" >");}else{input=document.createElement("input");input.name=B;}input.type="hidden";input.value=this._fields[B];this._form.appendChild(input);}}delete this._fields.results;delete this._fields.useragent;delete this._fields.timestamp;if(arguments[1]!==false){this._form.submit();}}};YAHOO.register("yuitest",YAHOO.tool.TestRunner,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest.js b/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest.js
deleted file mode 100644
index dee9a6f..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest.js
+++ /dev/null
@@ -1,3370 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.namespace("tool");
-
-//-----------------------------------------------------------------------------
-// TestCase object
-//-----------------------------------------------------------------------------
-(function(){
-    
-    //used for autogenerating test case names
-    var tempId = 0;
-    
-    /**
-     * Test case containing various tests to run.
-     * @param template An object containing any number of test methods, other methods,
-     *                 an optional name, and anything else the test case needs.
-     * @class TestCase
-     * @namespace YAHOO.tool
-     * @constructor
-     */
-    YAHOO.tool.TestCase = function (template /*:Object*/) {
-        
-        /**
-         * Special rules for the test case. Possible subobjects
-         * are fail, for tests that should fail, and error, for
-         * tests that should throw an error.
-         */
-        this._should /*:Object*/ = {};
-        
-        //copy over all properties from the template to this object
-        for (var prop in template) {
-            this[prop] = template[prop];
-        }    
-        
-        //check for a valid name
-        if (!YAHOO.lang.isString(this.name)){
-            /**
-             * Name for the test case.
-             */
-            this.name /*:String*/ = "testCase" + (tempId++);
-        }
-    
-    };
-    
-    
-    YAHOO.tool.TestCase.prototype = {  
-    
-        /**
-         * Resumes a paused test and runs the given function.
-         * @param {Function} segment (Optional) The function to run.
-         *      If omitted, the test automatically passes.
-         * @return {Void}
-         * @method resume
-         */
-        resume : function (segment /*:Function*/) /*:Void*/ {
-            YAHOO.tool.TestRunner.resume(segment);
-        },
-    
-        /**
-         * Causes the test case to wait a specified amount of time and then
-         * continue executing the given code.
-         * @param {Function} segment (Optional) The function to run after the delay.
-         *      If omitted, the TestRunner will wait until resume() is called.
-         * @param {int} delay (Optional) The number of milliseconds to wait before running
-         *      the function. If omitted, defaults to zero.
-         * @return {Void}
-         * @method wait
-         */
-        wait : function (segment /*:Function*/, delay /*:int*/) /*:Void*/{
-            var args = arguments;
-            if (YAHOO.lang.isFunction(args[0])){
-                throw new YAHOO.tool.TestCase.Wait(args[0], args[1]);
-            } else {
-                throw new YAHOO.tool.TestCase.Wait(function(){
-                    YAHOO.util.Assert.fail("Timeout: wait() called but resume() never called.");
-                }, (YAHOO.lang.isNumber(args[0]) ? args[0] : 10000));
-            }            
-        },
-    
-        //-------------------------------------------------------------------------
-        // Stub Methods
-        //-------------------------------------------------------------------------
-    
-        /**
-         * Function to run before each test is executed.
-         * @return {Void}
-         * @method setUp
-         */
-        setUp : function () /*:Void*/ {
-        },
-        
-        /**
-         * Function to run after each test is executed.
-         * @return {Void}
-         * @method tearDown
-         */
-        tearDown: function () /*:Void*/ {    
-        }
-    };
-    
-    /**
-     * Represents a stoppage in test execution to wait for an amount of time before
-     * continuing.
-     * @param {Function} segment A function to run when the wait is over.
-     * @param {int} delay The number of milliseconds to wait before running the code.
-     * @class Wait
-     * @namespace YAHOO.tool.TestCase
-     * @constructor
-     *
-     */
-    YAHOO.tool.TestCase.Wait = function (segment /*:Function*/, delay /*:int*/) {
-        
-        /**
-         * The segment of code to run when the wait is over.
-         * @type Function
-         * @property segment
-         */
-        this.segment /*:Function*/ = (YAHOO.lang.isFunction(segment) ? segment : null);
-    
-        /**
-         * The delay before running the segment of code.
-         * @type int
-         * @property delay
-         */
-        this.delay /*:int*/ = (YAHOO.lang.isNumber(delay) ? delay : 0);
-    
-    };
-
-})();
-
-YAHOO.namespace("tool");
-
-
-//-----------------------------------------------------------------------------
-// TestSuite object
-//-----------------------------------------------------------------------------
-
-/**
- * A test suite that can contain a collection of TestCase and TestSuite objects.
- * @param {String||Object} data The name of the test suite or an object containing
- *      a name property as well as setUp and tearDown methods.
- * @namespace YAHOO.tool
- * @class TestSuite
- * @constructor
- */
-YAHOO.tool.TestSuite = function (data /*:String||Object*/) {
-
-    /**
-     * The name of the test suite.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "";
-
-    /**
-     * Array of test suites and
-     * @private
-     */
-    this.items /*:Array*/ = [];
-
-    //initialize the properties
-    if (YAHOO.lang.isString(data)){
-        this.name = data;
-    } else if (YAHOO.lang.isObject(data)){
-        YAHOO.lang.augmentObject(this, data, true);
-    }
-
-    //double-check name
-    if (this.name === ""){
-        this.name = YAHOO.util.Dom.generateId(null, "testSuite");
-    }
-
-};
-
-YAHOO.tool.TestSuite.prototype = {
-    
-    /**
-     * Adds a test suite or test case to the test suite.
-     * @param {YAHOO.tool.TestSuite||YAHOO.tool.TestCase} testObject The test suite or test case to add.
-     * @return {Void}
-     * @method add
-     */
-    add : function (testObject /*:YAHOO.tool.TestSuite*/) /*:Void*/ {
-        if (testObject instanceof YAHOO.tool.TestSuite || testObject instanceof YAHOO.tool.TestCase) {
-            this.items.push(testObject);
-        }
-    },
-    
-    //-------------------------------------------------------------------------
-    // Stub Methods
-    //-------------------------------------------------------------------------
-
-    /**
-     * Function to run before each test is executed.
-     * @return {Void}
-     * @method setUp
-     */
-    setUp : function () /*:Void*/ {
-    },
-    
-    /**
-     * Function to run after each test is executed.
-     * @return {Void}
-     * @method tearDown
-     */
-    tearDown: function () /*:Void*/ {
-    }
-    
-};
-
-YAHOO.namespace("tool");
-
-/**
- * The YUI test tool
- * @module yuitest
- * @namespace YAHOO.tool
- * @requires yahoo,dom,event,logger
- */
-
-
-//-----------------------------------------------------------------------------
-// TestRunner object
-//-----------------------------------------------------------------------------
-
-
-YAHOO.tool.TestRunner = (function(){
-
-    /**
-     * A node in the test tree structure. May represent a TestSuite, TestCase, or
-     * test function.
-     * @param {Variant} testObject A TestSuite, TestCase, or the name of a test function.
-     * @class TestNode
-     * @constructor
-     * @private
-     */
-    function TestNode(testObject /*:Variant*/){
-    
-        /**
-         * The TestSuite, TestCase, or test function represented by this node.
-         * @type Variant
-         * @property testObject
-         */
-        this.testObject = testObject;
-        
-        /**
-         * Pointer to this node's first child.
-         * @type TestNode
-         * @property firstChild
-         */        
-        this.firstChild /*:TestNode*/ = null;
-        
-        /**
-         * Pointer to this node's last child.
-         * @type TestNode
-         * @property lastChild
-         */        
-        this.lastChild = null;
-        
-        /**
-         * Pointer to this node's parent.
-         * @type TestNode
-         * @property parent
-         */        
-        this.parent = null; 
-   
-        /**
-         * Pointer to this node's next sibling.
-         * @type TestNode
-         * @property next
-         */        
-        this.next = null;
-        
-        /**
-         * Test results for this test object.
-         * @type object
-         * @property results
-         */                
-        this.results /*:Object*/ = {
-            passed : 0,
-            failed : 0,
-            total : 0,
-            ignored : 0
-        };
-        
-        //initialize results
-        if (testObject instanceof YAHOO.tool.TestSuite){
-            this.results.type = "testsuite";
-            this.results.name = testObject.name;
-        } else if (testObject instanceof YAHOO.tool.TestCase){
-            this.results.type = "testcase";
-            this.results.name = testObject.name;
-        }
-       
-    }
-    
-    TestNode.prototype = {
-    
-        /**
-         * Appends a new test object (TestSuite, TestCase, or test function name) as a child
-         * of this node.
-         * @param {Variant} testObject A TestSuite, TestCase, or the name of a test function.
-         * @return {Void}
-         */
-        appendChild : function (testObject /*:Variant*/) /*:Void*/{
-            var node = new TestNode(testObject);
-            if (this.firstChild === null){
-                this.firstChild = this.lastChild = node;
-            } else {
-                this.lastChild.next = node;
-                this.lastChild = node;
-            }
-            node.parent = this;
-            return node;
-        }       
-    };
-
-    /**
-     * Runs test suites and test cases, providing events to allowing for the
-     * interpretation of test results.
-     * @namespace YAHOO.tool
-     * @class TestRunner
-     * @static
-     */
-    function TestRunner(){
-    
-        //inherit from EventProvider
-        TestRunner.superclass.constructor.apply(this,arguments);
-        
-        /**
-         * Suite on which to attach all TestSuites and TestCases to be run.
-         * @type YAHOO.tool.TestSuite
-         * @property masterSuite
-         * @private
-         * @static
-         */
-        this.masterSuite /*:YAHOO.tool.TestSuite*/ = new YAHOO.tool.TestSuite("YUI Test Results");        
-
-        /**
-         * Pointer to the current node in the test tree.
-         * @type TestNode
-         * @private
-         * @property _cur
-         * @static
-         */
-        this._cur = null;
-        
-        /**
-         * Pointer to the root node in the test tree.
-         * @type TestNode
-         * @private
-         * @property _root
-         * @static
-         */
-        this._root = null;
-        
-        //create events
-        var events /*:Array*/ = [
-            this.TEST_CASE_BEGIN_EVENT,
-            this.TEST_CASE_COMPLETE_EVENT,
-            this.TEST_SUITE_BEGIN_EVENT,
-            this.TEST_SUITE_COMPLETE_EVENT,
-            this.TEST_PASS_EVENT,
-            this.TEST_FAIL_EVENT,
-            this.TEST_IGNORE_EVENT,
-            this.COMPLETE_EVENT,
-            this.BEGIN_EVENT
-        ];
-        for (var i=0; i < events.length; i++){
-            this.createEvent(events[i], { scope: this });
-        }       
-   
-    }
-    
-    YAHOO.lang.extend(TestRunner, YAHOO.util.EventProvider, {
-    
-        //-------------------------------------------------------------------------
-        // Constants
-        //-------------------------------------------------------------------------
-         
-        /**
-         * Fires when a test case is opened but before the first 
-         * test is executed.
-         * @event testcasebegin
-         */         
-        TEST_CASE_BEGIN_EVENT /*:String*/ : "testcasebegin",
-        
-        /**
-         * Fires when all tests in a test case have been executed.
-         * @event testcasecomplete
-         */        
-        TEST_CASE_COMPLETE_EVENT /*:String*/ : "testcasecomplete",
-        
-        /**
-         * Fires when a test suite is opened but before the first 
-         * test is executed.
-         * @event testsuitebegin
-         */        
-        TEST_SUITE_BEGIN_EVENT /*:String*/ : "testsuitebegin",
-        
-        /**
-         * Fires when all test cases in a test suite have been
-         * completed.
-         * @event testsuitecomplete
-         */        
-        TEST_SUITE_COMPLETE_EVENT /*:String*/ : "testsuitecomplete",
-        
-        /**
-         * Fires when a test has passed.
-         * @event pass
-         */        
-        TEST_PASS_EVENT /*:String*/ : "pass",
-        
-        /**
-         * Fires when a test has failed.
-         * @event fail
-         */        
-        TEST_FAIL_EVENT /*:String*/ : "fail",
-        
-        /**
-         * Fires when a test has been ignored.
-         * @event ignore
-         */        
-        TEST_IGNORE_EVENT /*:String*/ : "ignore",
-        
-        /**
-         * Fires when all test suites and test cases have been completed.
-         * @event complete
-         */        
-        COMPLETE_EVENT /*:String*/ : "complete",
-        
-        /**
-         * Fires when the run() method is called.
-         * @event begin
-         */        
-        BEGIN_EVENT /*:String*/ : "begin",    
-        
-        //-------------------------------------------------------------------------
-        // Test Tree-Related Methods
-        //-------------------------------------------------------------------------
-
-        /**
-         * Adds a test case to the test tree as a child of the specified node.
-         * @param {TestNode} parentNode The node to add the test case to as a child.
-         * @param {YAHOO.tool.TestCase} testCase The test case to add.
-         * @return {Void}
-         * @static
-         * @private
-         * @method _addTestCaseToTestTree
-         */
-       _addTestCaseToTestTree : function (parentNode /*:TestNode*/, testCase /*:YAHOO.tool.TestCase*/) /*:Void*/{
-            
-            //add the test suite
-            var node = parentNode.appendChild(testCase);
-            
-            //iterate over the items in the test case
-            for (var prop in testCase){
-                if (prop.indexOf("test") === 0 && YAHOO.lang.isFunction(testCase[prop])){
-                    node.appendChild(prop);
-                }
-            }
-         
-        },
-        
-        /**
-         * Adds a test suite to the test tree as a child of the specified node.
-         * @param {TestNode} parentNode The node to add the test suite to as a child.
-         * @param {YAHOO.tool.TestSuite} testSuite The test suite to add.
-         * @return {Void}
-         * @static
-         * @private
-         * @method _addTestSuiteToTestTree
-         */
-        _addTestSuiteToTestTree : function (parentNode /*:TestNode*/, testSuite /*:YAHOO.tool.TestSuite*/) /*:Void*/ {
-            
-            //add the test suite
-            var node = parentNode.appendChild(testSuite);
-            
-            //iterate over the items in the master suite
-            for (var i=0; i < testSuite.items.length; i++){
-                if (testSuite.items[i] instanceof YAHOO.tool.TestSuite) {
-                    this._addTestSuiteToTestTree(node, testSuite.items[i]);
-                } else if (testSuite.items[i] instanceof YAHOO.tool.TestCase) {
-                    this._addTestCaseToTestTree(node, testSuite.items[i]);
-                }                   
-            }            
-        },
-        
-        /**
-         * Builds the test tree based on items in the master suite. The tree is a hierarchical
-         * representation of the test suites, test cases, and test functions. The resulting tree
-         * is stored in _root and the pointer _cur is set to the root initially.
-         * @return {Void}
-         * @static
-         * @private
-         * @method _buildTestTree
-         */
-        _buildTestTree : function () /*:Void*/ {
-        
-            this._root = new TestNode(this.masterSuite);
-            this._cur = this._root;
-            
-            //iterate over the items in the master suite
-            for (var i=0; i < this.masterSuite.items.length; i++){
-                if (this.masterSuite.items[i] instanceof YAHOO.tool.TestSuite) {
-                    this._addTestSuiteToTestTree(this._root, this.masterSuite.items[i]);
-                } else if (this.masterSuite.items[i] instanceof YAHOO.tool.TestCase) {
-                    this._addTestCaseToTestTree(this._root, this.masterSuite.items[i]);
-                }                   
-            }            
-        
-        }, 
-    
-        //-------------------------------------------------------------------------
-        // Private Methods
-        //-------------------------------------------------------------------------
-        
-        /**
-         * Handles the completion of a test object's tests. Tallies test results 
-         * from one level up to the next.
-         * @param {TestNode} node The TestNode representing the test object.
-         * @return {Void}
-         * @method _handleTestObjectComplete
-         * @private
-         * @static
-         */
-        _handleTestObjectComplete : function (node /*:TestNode*/) /*:Void*/ {
-            if (YAHOO.lang.isObject(node.testObject)){
-                node.parent.results.passed += node.results.passed;
-                node.parent.results.failed += node.results.failed;
-                node.parent.results.total += node.results.total;                
-                node.parent.results.ignored += node.results.ignored;                
-                node.parent.results[node.testObject.name] = node.results;
-            
-                if (node.testObject instanceof YAHOO.tool.TestSuite){
-                    node.testObject.tearDown();
-                    this.fireEvent(this.TEST_SUITE_COMPLETE_EVENT, { testSuite: node.testObject, results: node.results});
-                } else if (node.testObject instanceof YAHOO.tool.TestCase){
-                    this.fireEvent(this.TEST_CASE_COMPLETE_EVENT, { testCase: node.testObject, results: node.results});
-                }      
-            } 
-        },                
-        
-        //-------------------------------------------------------------------------
-        // Navigation Methods
-        //-------------------------------------------------------------------------
-        
-        /**
-         * Retrieves the next node in the test tree.
-         * @return {TestNode} The next node in the test tree or null if the end is reached.
-         * @private
-         * @static
-         * @method _next
-         */
-        _next : function () /*:TestNode*/ {
-        
-            if (this._cur.firstChild) {
-                this._cur = this._cur.firstChild;
-            } else if (this._cur.next) {
-                this._cur = this._cur.next;            
-            } else {
-                while (this._cur && !this._cur.next && this._cur !== this._root){
-                    this._handleTestObjectComplete(this._cur);
-                    this._cur = this._cur.parent;
-                }
-                
-                if (this._cur == this._root){
-                    this._cur.results.type = "report";
-                    this._cur.results.timestamp = (new Date()).toLocaleString();
-                    this._cur.results.duration = (new Date()) - this._cur.results.duration;
-                    this.fireEvent(this.COMPLETE_EVENT, { results: this._cur.results});
-                    this._cur = null;
-                } else {
-                    this._handleTestObjectComplete(this._cur);               
-                    this._cur = this._cur.next;                
-                }
-            }
-        
-            return this._cur;
-        },
-        
-        /**
-         * Runs a test case or test suite, returning the results.
-         * @param {YAHOO.tool.TestCase|YAHOO.tool.TestSuite} testObject The test case or test suite to run.
-         * @return {Object} Results of the execution with properties passed, failed, and total.
-         * @private
-         * @method _run
-         * @static
-         */
-        _run : function () /*:Void*/ {
-        
-            //flag to indicate if the TestRunner should wait before continuing
-            var shouldWait /*:Boolean*/ = false;
-            
-            //get the next test node
-            var node = this._next();
-            
-            if (node !== null) {
-                var testObject = node.testObject;
-                
-                //figure out what to do
-                if (YAHOO.lang.isObject(testObject)){
-                    if (testObject instanceof YAHOO.tool.TestSuite){
-                        this.fireEvent(this.TEST_SUITE_BEGIN_EVENT, { testSuite: testObject });
-                        testObject.setUp();
-                    } else if (testObject instanceof YAHOO.tool.TestCase){
-                        this.fireEvent(this.TEST_CASE_BEGIN_EVENT, { testCase: testObject });
-                    }
-                    
-                    //some environments don't support setTimeout
-                    if (typeof setTimeout != "undefined"){                    
-                        setTimeout(function(){
-                            YAHOO.tool.TestRunner._run();
-                        }, 0);
-                    } else {
-                        this._run();
-                    }
-                } else {
-                    this._runTest(node);
-                }
-
-            }
-        },
-        
-        _resumeTest : function (segment /*:Function*/) /*:Void*/ {
-        
-            //get relevant information
-            var node /*:TestNode*/ = this._cur;
-            var testName /*:String*/ = node.testObject;
-            var testCase /*:YAHOO.tool.TestCase*/ = node.parent.testObject;
-            
-            //cancel other waits if available
-            if (testCase.__yui_wait){
-                clearTimeout(testCase.__yui_wait);
-                delete testCase.__yui_wait;
-            }            
-            
-            //get the "should" test cases
-            var shouldFail /*:Object*/ = (testCase._should.fail || {})[testName];
-            var shouldError /*:Object*/ = (testCase._should.error || {})[testName];
-            
-            //variable to hold whether or not the test failed
-            var failed /*:Boolean*/ = false;
-            var error /*:Error*/ = null;
-                
-            //try the test
-            try {
-            
-                //run the test
-                segment.apply(testCase);
-                
-                //if it should fail, and it got here, then it's a fail because it didn't
-                if (shouldFail){
-                    error = new YAHOO.util.ShouldFail();
-                    failed = true;
-                } else if (shouldError){
-                    error = new YAHOO.util.ShouldError();
-                    failed = true;
-                }
-                           
-            } catch (thrown /*:Error*/){
-                if (thrown instanceof YAHOO.util.AssertionError) {
-                    if (!shouldFail){
-                        error = thrown;
-                        failed = true;
-                    }
-                } else if (thrown instanceof YAHOO.tool.TestCase.Wait){
-                
-                    if (YAHOO.lang.isFunction(thrown.segment)){
-                        if (YAHOO.lang.isNumber(thrown.delay)){
-                        
-                            //some environments don't support setTimeout
-                            if (typeof setTimeout != "undefined"){
-                                testCase.__yui_wait = setTimeout(function(){
-                                    YAHOO.tool.TestRunner._resumeTest(thrown.segment);
-                                }, thrown.delay);                             
-                            } else {
-                                throw new Error("Asynchronous tests not supported in this environment.");
-                            }
-                        }
-                    }
-                    
-                    return;
-                
-                } else {
-                    //first check to see if it should error
-                    if (!shouldError) {                        
-                        error = new YAHOO.util.UnexpectedError(thrown);
-                        failed = true;
-                    } else {
-                        //check to see what type of data we have
-                        if (YAHOO.lang.isString(shouldError)){
-                            
-                            //if it's a string, check the error message
-                            if (thrown.message != shouldError){
-                                error = new YAHOO.util.UnexpectedError(thrown);
-                                failed = true;                                    
-                            }
-                        } else if (YAHOO.lang.isFunction(shouldError)){
-                        
-                            //if it's a function, see if the error is an instance of it
-                            if (!(thrown instanceof shouldError)){
-                                error = new YAHOO.util.UnexpectedError(thrown);
-                                failed = true;
-                            }
-                        
-                        } else if (YAHOO.lang.isObject(shouldError)){
-                        
-                            //if it's an object, check the instance and message
-                            if (!(thrown instanceof shouldError.constructor) || 
-                                    thrown.message != shouldError.message){
-                                error = new YAHOO.util.UnexpectedError(thrown);
-                                failed = true;                                    
-                            }
-                        
-                        }
-                    
-                    }
-                }
-                
-            }
-            
-            //fireEvent appropriate event
-            if (failed) {
-                this.fireEvent(this.TEST_FAIL_EVENT, { testCase: testCase, testName: testName, error: error });
-            } else {
-                this.fireEvent(this.TEST_PASS_EVENT, { testCase: testCase, testName: testName });
-            }
-            
-            //run the tear down
-            testCase.tearDown();
-            
-            //update results
-            node.parent.results[testName] = { 
-                result: failed ? "fail" : "pass",
-                message: error ? error.getMessage() : "Test passed",
-                type: "test",
-                name: testName
-            };
-            
-            if (failed){
-                node.parent.results.failed++;
-            } else {
-                node.parent.results.passed++;
-            }
-            node.parent.results.total++;
-
-            //set timeout not supported in all environments
-            if (typeof setTimeout != "undefined"){
-                setTimeout(function(){
-                    YAHOO.tool.TestRunner._run();
-                }, 0);
-            } else {
-                this._run();
-            }
-        
-        },
-                
-        /**
-         * Runs a single test based on the data provided in the node.
-         * @param {TestNode} node The TestNode representing the test to run.
-         * @return {Void}
-         * @static
-         * @private
-         * @name _runTest
-         */
-        _runTest : function (node /*:TestNode*/) /*:Void*/ {
-        
-            //get relevant information
-            var testName /*:String*/ = node.testObject;
-            var testCase /*:YAHOO.tool.TestCase*/ = node.parent.testObject;
-            var test /*:Function*/ = testCase[testName];
-            
-            //get the "should" test cases
-            var shouldIgnore /*:Object*/ = (testCase._should.ignore || {})[testName];
-            
-            //figure out if the test should be ignored or not
-            if (shouldIgnore){
-            
-                //update results
-                node.parent.results[testName] = { 
-                    result: "ignore",
-                    message: "Test ignored",
-                    type: "test",
-                    name: testName
-                };
-                
-                node.parent.results.ignored++;
-                node.parent.results.total++;
-            
-                this.fireEvent(this.TEST_IGNORE_EVENT, { testCase: testCase, testName: testName });
-                
-                //some environments don't support setTimeout
-                if (typeof setTimeout != "undefined"){                    
-                    setTimeout(function(){
-                        YAHOO.tool.TestRunner._run();
-                    }, 0);              
-                } else {
-                    this._run();
-                }
-
-            } else {
-            
-                //run the setup
-                testCase.setUp();
-                
-                //now call the body of the test
-                this._resumeTest(test);                
-            }
-
-        },        
-        
-        //-------------------------------------------------------------------------
-        // Protected Methods
-        //-------------------------------------------------------------------------   
-    
-        /**
-         * Fires events for the TestRunner. This overrides the default fireEvent()
-         * method from EventProvider to add the type property to the data that is
-         * passed through on each event call.
-         * @param {String} type The type of event to fire.
-         * @param {Object} data (Optional) Data for the event.
-         * @method fireEvent
-         * @static
-         * @protected
-         */
-        fireEvent : function (type /*:String*/, data /*:Object*/) /*:Void*/ {
-            data = data || {};
-            data.type = type;
-            TestRunner.superclass.fireEvent.call(this, type, data);
-        },
-        
-        //-------------------------------------------------------------------------
-        // Public Methods
-        //-------------------------------------------------------------------------   
-    
-        /**
-         * Adds a test suite or test case to the list of test objects to run.
-         * @param testObject Either a TestCase or a TestSuite that should be run.
-         * @return {Void}
-         * @method add
-         * @static
-         */
-        add : function (testObject /*:Object*/) /*:Void*/ {
-            this.masterSuite.add(testObject);
-        },
-        
-        /**
-         * Removes all test objects from the runner.
-         * @return {Void}
-         * @method clear
-         * @static
-         */
-        clear : function () /*:Void*/ {
-            this.masterSuite.items = [];
-        },
-        
-        /**
-         * Resumes the TestRunner after wait() was called.
-         * @param {Function} segment The function to run as the rest
-         *      of the haulted test.
-         * @return {Void}
-         * @method resume
-         * @static
-         */
-        resume : function (segment /*:Function*/) /*:Void*/ {
-            this._resumeTest(segment || function(){});
-        },
-    
-        /**
-         * Runs the test suite.
-         * @return {Void}
-         * @method run
-         * @static
-         */
-        run : function (testObject /*:Object*/) /*:Void*/ {
-            
-            //pointer to runner to avoid scope issues 
-            var runner = YAHOO.tool.TestRunner;
-
-            //build the test tree
-            runner._buildTestTree();
-            
-            //set when the test started
-            runner._root.results.duration = (new Date()).valueOf();
-            
-            //fire the begin event
-            runner.fireEvent(runner.BEGIN_EVENT);
-       
-            //begin the testing
-            runner._run();
-        }    
-    });
-    
-    return new TestRunner();
-    
-})();
-
-YAHOO.namespace("util");
-
-//-----------------------------------------------------------------------------
-// Assert object
-//-----------------------------------------------------------------------------
-
-/**
- * The Assert object provides functions to test JavaScript values against
- * known and expected results. Whenever a comparison (assertion) fails,
- * an error is thrown.
- *
- * @namespace YAHOO.util
- * @class Assert
- * @static
- */
-YAHOO.util.Assert = {
-
-    //-------------------------------------------------------------------------
-    // Helper Methods
-    //-------------------------------------------------------------------------
-    
-    /**
-     * Formats a message so that it can contain the original assertion message
-     * in addition to the custom message.
-     * @param {String} customMessage The message passed in by the developer.
-     * @param {String} defaultMessage The message created by the error by default.
-     * @return {String} The final error message, containing either or both.
-     * @protected
-     * @static
-     * @method _formatMessage
-     */
-    _formatMessage : function (customMessage /*:String*/, defaultMessage /*:String*/) /*:String*/ {
-        var message = customMessage;
-        if (YAHOO.lang.isString(customMessage) && customMessage.length > 0){
-            return YAHOO.lang.substitute(customMessage, { message: defaultMessage });
-        } else {
-            return defaultMessage;
-        }        
-    },
-    
-    //-------------------------------------------------------------------------
-    // Generic Assertion Methods
-    //-------------------------------------------------------------------------
-    
-    /** 
-     * Forces an assertion error to occur.
-     * @param {String} message (Optional) The message to display with the failure.
-     * @method fail
-     * @static
-     */
-    fail : function (message /*:String*/) /*:Void*/ {
-        throw new YAHOO.util.AssertionError(this._formatMessage(message, "Test force-failed."));
-    },       
-    
-    //-------------------------------------------------------------------------
-    // Equality Assertion Methods
-    //-------------------------------------------------------------------------    
-    
-    /**
-     * Asserts that a value is equal to another. This uses the double equals sign
-     * so type cohersion may occur.
-     * @param {Object} expected The expected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areEqual
-     * @static
-     */
-    areEqual : function (expected /*:Object*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (expected != actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Values should be equal."), expected, actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is not equal to another. This uses the double equals sign
-     * so type cohersion may occur.
-     * @param {Object} unexpected The unexpected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areNotEqual
-     * @static
-     */
-    areNotEqual : function (unexpected /*:Object*/, actual /*:Object*/, 
-                         message /*:String*/) /*:Void*/ {
-        if (unexpected == actual) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be equal."), unexpected);
-        }
-    },
-    
-    /**
-     * Asserts that a value is not the same as another. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} unexpected The unexpected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areNotSame
-     * @static
-     */
-    areNotSame : function (unexpected /*:Object*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (unexpected === actual) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be the same."), unexpected);
-        }
-    },
-
-    /**
-     * Asserts that a value is the same as another. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} expected The expected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areSame
-     * @static
-     */
-    areSame : function (expected /*:Object*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (expected !== actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Values should be the same."), expected, actual);
-        }
-    },    
-    
-    //-------------------------------------------------------------------------
-    // Boolean Assertion Methods
-    //-------------------------------------------------------------------------    
-    
-    /**
-     * Asserts that a value is false. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isFalse
-     * @static
-     */
-    isFalse : function (actual /*:Boolean*/, message /*:String*/) {
-        if (false !== actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be false."), false, actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is true. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isTrue
-     * @static
-     */
-    isTrue : function (actual /*:Boolean*/, message /*:String*/) /*:Void*/ {
-        if (true !== actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be true."), true, actual);
-        }
-
-    },
-    
-    //-------------------------------------------------------------------------
-    // Special Value Assertion Methods
-    //-------------------------------------------------------------------------    
-    
-    /**
-     * Asserts that a value is not a number.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNaN
-     * @static
-     */
-    isNaN : function (actual /*:Object*/, message /*:String*/) /*:Void*/{
-        if (!isNaN(actual)){
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be NaN."), NaN, actual);
-        }    
-    },
-    
-    /**
-     * Asserts that a value is not the special NaN value.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotNaN
-     * @static
-     */
-    isNotNaN : function (actual /*:Object*/, message /*:String*/) /*:Void*/{
-        if (isNaN(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be NaN."), NaN);
-        }    
-    },
-    
-    /**
-     * Asserts that a value is not null. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotNull
-     * @static
-     */
-    isNotNull : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (YAHOO.lang.isNull(actual)) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be null."), null);
-        }
-    },
-
-    /**
-     * Asserts that a value is not undefined. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotUndefined
-     * @static
-     */
-    isNotUndefined : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (YAHOO.lang.isUndefined(actual)) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should not be undefined."), undefined);
-        }
-    },
-
-    /**
-     * Asserts that a value is null. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNull
-     * @static
-     */
-    isNull : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isNull(actual)) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be null."), null, actual);
-        }
-    },
-        
-    /**
-     * Asserts that a value is undefined. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isUndefined
-     * @static
-     */
-    isUndefined : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isUndefined(actual)) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be undefined."), undefined, actual);
-        }
-    },    
-    
-    //--------------------------------------------------------------------------
-    // Instance Assertion Methods
-    //--------------------------------------------------------------------------    
-   
-    /**
-     * Asserts that a value is an array.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isArray
-     * @static
-     */
-    isArray : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isArray(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be an array."), actual);
-        }    
-    },
-   
-    /**
-     * Asserts that a value is a Boolean.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isBoolean
-     * @static
-     */
-    isBoolean : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isBoolean(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a Boolean."), actual);
-        }    
-    },
-   
-    /**
-     * Asserts that a value is a function.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isFunction
-     * @static
-     */
-    isFunction : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isFunction(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a function."), actual);
-        }    
-    },
-   
-    /**
-     * Asserts that a value is an instance of a particular object. This may return
-     * incorrect results when comparing objects from one frame to constructors in
-     * another frame. For best results, don't use in a cross-frame manner.
-     * @param {Function} expected The function that the object should be an instance of.
-     * @param {Object} actual The object to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isInstanceOf
-     * @static
-     */
-    isInstanceOf : function (expected /*:Function*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!(actual instanceof expected)){
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value isn't an instance of expected type."), expected, actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is a number.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNumber
-     * @static
-     */
-    isNumber : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isNumber(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a number."), actual);
-        }    
-    },    
-    
-    /**
-     * Asserts that a value is an object.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isObject
-     * @static
-     */
-    isObject : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isObject(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be an object."), actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is a string.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isString
-     * @static
-     */
-    isString : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isString(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a string."), actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is of a particular type. 
-     * @param {String} expectedType The expected type of the variable.
-     * @param {Object} actualValue The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isTypeOf
-     * @static
-     */
-    isTypeOf : function (expectedType /*:String*/, actualValue /*:Object*/, message /*:String*/) /*:Void*/{
-        if (typeof actualValue != expectedType){
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be of type " + expected + "."), expected, typeof actual);
-        }
-    }
-};
-
-//-----------------------------------------------------------------------------
-// Assertion errors
-//-----------------------------------------------------------------------------
-
-/**
- * AssertionError is thrown whenever an assertion fails. It provides methods
- * to more easily get at error information and also provides a base class
- * from which more specific assertion errors can be derived.
- *
- * @param {String} message The message to display when the error occurs.
- * @namespace YAHOO.util
- * @class AssertionError
- * @extends Error
- * @constructor
- */ 
-YAHOO.util.AssertionError = function (message /*:String*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message);
-    
-    /*
-     * Error message. Must be duplicated to ensure browser receives it.
-     * @type String
-     * @property message
-     */
-    this.message /*:String*/ = message;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "AssertionError";
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.AssertionError, Error, {
-
-    /**
-     * Returns a fully formatted error for an assertion failure. This should
-     * be overridden by all subclasses to provide specific information.
-     * @method getMessage
-     * @return {String} A string describing the error.
-     */
-    getMessage : function () /*:String*/ {
-        return this.message;
-    },
-    
-    /**
-     * Returns a string representation of the error.
-     * @method toString
-     * @return {String} A string representation of the error.
-     */
-    toString : function () /*:String*/ {
-        return this.name + ": " + this.getMessage();
-    },
-    
-    /**
-     * Returns a primitive value version of the error. Same as toString().
-     * @method valueOf
-     * @return {String} A primitive value version of the error.
-     */
-    valueOf : function () /*:String*/ {
-        return this.toString();
-    }
-
-});
-
-/**
- * ComparisonFailure is subclass of AssertionError that is thrown whenever
- * a comparison between two values fails. It provides mechanisms to retrieve
- * both the expected and actual value.
- *
- * @param {String} message The message to display when the error occurs.
- * @param {Object} expected The expected value.
- * @param {Object} actual The actual value that caused the assertion to fail.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class ComparisonFailure
- * @constructor
- */ 
-YAHOO.util.ComparisonFailure = function (message /*:String*/, expected /*:Object*/, actual /*:Object*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message);
-    
-    /**
-     * The expected value.
-     * @type Object
-     * @property expected
-     */
-    this.expected /*:Object*/ = expected;
-    
-    /**
-     * The actual value.
-     * @type Object
-     * @property actual
-     */
-    this.actual /*:Object*/ = actual;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "ComparisonFailure";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.ComparisonFailure, YAHOO.util.AssertionError, {
-
-    /**
-     * Returns a fully formatted error for an assertion failure. This message
-     * provides information about the expected and actual values.
-     * @method toString
-     * @return {String} A string describing the error.
-     */
-    getMessage : function () /*:String*/ {
-        return this.message + "\nExpected: " + this.expected + " (" + (typeof this.expected) + ")"  +
-            "\nActual:" + this.actual + " (" + (typeof this.actual) + ")";
-    }
-
-});
-
-/**
- * UnexpectedValue is subclass of AssertionError that is thrown whenever
- * a value was unexpected in its scope. This typically means that a test
- * was performed to determine that a value was *not* equal to a certain
- * value.
- *
- * @param {String} message The message to display when the error occurs.
- * @param {Object} unexpected The unexpected value.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class UnexpectedValue
- * @constructor
- */ 
-YAHOO.util.UnexpectedValue = function (message /*:String*/, unexpected /*:Object*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message);
-    
-    /**
-     * The unexpected value.
-     * @type Object
-     * @property unexpected
-     */
-    this.unexpected /*:Object*/ = unexpected;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "UnexpectedValue";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.UnexpectedValue, YAHOO.util.AssertionError, {
-
-    /**
-     * Returns a fully formatted error for an assertion failure. The message
-     * contains information about the unexpected value that was encountered.
-     * @method getMessage
-     * @return {String} A string describing the error.
-     */
-    getMessage : function () /*:String*/ {
-        return this.message + "\nUnexpected: " + this.unexpected + " (" + (typeof this.unexpected) + ") ";
-    }
-
-});
-
-/**
- * ShouldFail is subclass of AssertionError that is thrown whenever
- * a test was expected to fail but did not.
- *
- * @param {String} message The message to display when the error occurs.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class ShouldFail
- * @constructor
- */  
-YAHOO.util.ShouldFail = function (message /*:String*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message || "This test should fail but didn't.");
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "ShouldFail";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.ShouldFail, YAHOO.util.AssertionError);
-
-/**
- * ShouldError is subclass of AssertionError that is thrown whenever
- * a test is expected to throw an error but doesn't.
- *
- * @param {String} message The message to display when the error occurs.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class ShouldError
- * @constructor
- */  
-YAHOO.util.ShouldError = function (message /*:String*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message || "This test should have thrown an error but didn't.");
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "ShouldError";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.ShouldError, YAHOO.util.AssertionError);
-
-/**
- * UnexpectedError is subclass of AssertionError that is thrown whenever
- * an error occurs within the course of a test and the test was not expected
- * to throw an error.
- *
- * @param {Error} cause The unexpected error that caused this error to be 
- *                      thrown.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class UnexpectedError
- * @constructor
- */  
-YAHOO.util.UnexpectedError = function (cause /*:Object*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, "Unexpected error: " + cause.message);
-    
-    /**
-     * The unexpected error that occurred.
-     * @type Error
-     * @property cause
-     */
-    this.cause /*:Error*/ = cause;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "UnexpectedError";
-    
-    /**
-     * Stack information for the error (if provided).
-     * @type String
-     * @property stack
-     */
-    this.stack /*:String*/ = cause.stack;
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.UnexpectedError, YAHOO.util.AssertionError);
-
-//-----------------------------------------------------------------------------
-// ArrayAssert object
-//-----------------------------------------------------------------------------
-
-/**
- * The ArrayAssert object provides functions to test JavaScript array objects
- * for a variety of cases.
- *
- * @namespace YAHOO.util
- * @class ArrayAssert
- * @static
- */
- 
-YAHOO.util.ArrayAssert = {
-
-    /**
-     * Asserts that a value is present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur.
-     * @param {Object} needle The value that is expected in the array.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method contains
-     * @static
-     */
-    contains : function (needle /*:Object*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (haystack[i] === needle) {
-                found = true;
-            }
-        }
-        
-        if (!found){
-            Assert.fail(Assert._formatMessage(message, "Value " + needle + " (" + (typeof needle) + ") not found in array [" + haystack + "]."));
-        }
-    },
-
-    /**
-     * Asserts that a set of values are present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur. For this assertion to pass, all values must
-     * be found.
-     * @param {Object[]} needles An array of values that are expected in the array.
-     * @param {Array} haystack An array of values to check.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method containsItems
-     * @static
-     */
-    containsItems : function (needles /*:Object[]*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-
-        //begin checking values
-        for (var i=0; i < needles.length; i++){
-            this.contains(needles[i], haystack, message);
-        }
-    },
-
-    /**
-     * Asserts that a value matching some condition is present in an array. This uses
-     * a function to determine a match.
-     * @param {Function} matcher A function that returns true if the items matches or false if not.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method containsMatch
-     * @static
-     */
-    containsMatch : function (matcher /*:Function*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        //check for valid matcher
-        if (typeof matcher != "function"){
-            throw new TypeError("ArrayAssert.containsMatch(): First argument must be a function.");
-        }
-        
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (matcher(haystack[i])) {
-                found = true;
-            }
-        }
-        
-        if (!found){
-            Assert.fail(Assert._formatMessage(message, "No match found in array [" + haystack + "]."));
-        }
-    },
-
-    /**
-     * Asserts that a value is not present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur.
-     * @param {Object} needle The value that is expected in the array.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method doesNotContain
-     * @static
-     */
-    doesNotContain : function (needle /*:Object*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (haystack[i] === needle) {
-                found = true;
-            }
-        }
-        
-        if (found){
-            Assert.fail(Assert._formatMessage(message, "Value found in array [" + haystack + "]."));
-        }
-    },
-
-    /**
-     * Asserts that a set of values are not present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur. For this assertion to pass, all values must
-     * not be found.
-     * @param {Object[]} needles An array of values that are not expected in the array.
-     * @param {Array} haystack An array of values to check.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method doesNotContainItems
-     * @static
-     */
-    doesNotContainItems : function (needles /*:Object[]*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-
-        for (var i=0; i < needles.length; i++){
-            this.doesNotContain(needles[i], haystack, message);
-        }
-
-    },
-        
-    /**
-     * Asserts that no values matching a condition are present in an array. This uses
-     * a function to determine a match.
-     * @param {Function} matcher A function that returns true if the items matches or false if not.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method doesNotContainMatch
-     * @static
-     */
-    doesNotContainMatch : function (matcher /*:Function*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        //check for valid matcher
-        if (typeof matcher != "function"){
-            throw new TypeError("ArrayAssert.doesNotContainMatch(): First argument must be a function.");
-        }
-
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (matcher(haystack[i])) {
-                found = true;
-            }
-        }
-        
-        if (found){
-            Assert.fail(Assert._formatMessage(message, "Value found in array [" + haystack + "]."));
-        }
-    },
-        
-    /**
-     * Asserts that the given value is contained in an array at the specified index.
-     * This uses the triple equals sign so no type cohersion will occur.
-     * @param {Object} needle The value to look for.
-     * @param {Array} haystack The array to search in.
-     * @param {int} index The index at which the value should exist.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method indexOf
-     * @static
-     */
-    indexOf : function (needle /*:Object*/, haystack /*:Array*/, index /*:int*/, message /*:String*/) /*:Void*/ {
-    
-        //try to find the value in the array
-        for (var i=0; i < haystack.length; i++){
-            if (haystack[i] === needle){
-                YAHOO.util.Assert.areEqual(index, i, message || "Value exists at index " + i + " but should be at index " + index + ".");
-                return;
-            }
-        }
-        
-        var Assert = YAHOO.util.Assert;
-        
-        //if it makes it here, it wasn't found at all
-        Assert.fail(Assert._formatMessage(message, "Value doesn't exist in array [" + haystack + "]."));
-    },
-        
-    /**
-     * Asserts that the values in an array are equal, and in the same position,
-     * as values in another array. This uses the double equals sign
-     * so type cohersion may occur. Note that the array objects themselves
-     * need not be the same for this test to pass.
-     * @param {Array} expected An array of the expected values.
-     * @param {Array} actual Any array of the actual values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method itemsAreEqual
-     * @static
-     */
-    itemsAreEqual : function (expected /*:Array*/, actual /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        //one may be longer than the other, so get the maximum length
-        var len /*:int*/ = Math.max(expected.length, actual.length);
-        var Assert = YAHOO.util.Assert;
-       
-        //begin checking values
-        for (var i=0; i < len; i++){
-            Assert.areEqual(expected[i], actual[i], 
-                Assert._formatMessage(message, "Values in position " + i + " are not equal."));
-        }
-    },
-    
-    /**
-     * Asserts that the values in an array are equivalent, and in the same position,
-     * as values in another array. This uses a function to determine if the values
-     * are equivalent. Note that the array objects themselves
-     * need not be the same for this test to pass.
-     * @param {Array} expected An array of the expected values.
-     * @param {Array} actual Any array of the actual values.
-     * @param {Function} comparator A function that returns true if the values are equivalent
-     *      or false if not.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @return {Void}
-     * @method itemsAreEquivalent
-     * @static
-     */
-    itemsAreEquivalent : function (expected /*:Array*/, actual /*:Array*/, 
-                           comparator /*:Function*/, message /*:String*/) /*:Void*/ {
-        
-        //make sure the comparator is valid
-        if (typeof comparator != "function"){
-            throw new TypeError("ArrayAssert.itemsAreEquivalent(): Third argument must be a function.");
-        }
-        
-        //one may be longer than the other, so get the maximum length
-        var len /*:int*/ = Math.max(expected.length, actual.length);
-        
-        //begin checking values
-        for (var i=0; i < len; i++){
-            if (!comparator(expected[i], actual[i])){
-                throw new YAHOO.util.ComparisonFailure(YAHOO.util.Assert._formatMessage(message, "Values in position " + i + " are not equivalent."), expected[i], actual[i]);
-            }
-        }
-    },
-    
-    /**
-     * Asserts that an array is empty.
-     * @param {Array} actual The array to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isEmpty
-     * @static
-     */
-    isEmpty : function (actual /*:Array*/, message /*:String*/) /*:Void*/ {        
-        if (actual.length > 0){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Array should be empty."));
-        }
-    },    
-    
-    /**
-     * Asserts that an array is not empty.
-     * @param {Array} actual The array to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotEmpty
-     * @static
-     */
-    isNotEmpty : function (actual /*:Array*/, message /*:String*/) /*:Void*/ {        
-        if (actual.length === 0){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Array should not be empty."));
-        }
-    },    
-    
-    /**
-     * Asserts that the values in an array are the same, and in the same position,
-     * as values in another array. This uses the triple equals sign
-     * so no type cohersion will occur. Note that the array objects themselves
-     * need not be the same for this test to pass.
-     * @param {Array} expected An array of the expected values.
-     * @param {Array} actual Any array of the actual values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method itemsAreSame
-     * @static
-     */
-    itemsAreSame : function (expected /*:Array*/, actual /*:Array*/, 
-                          message /*:String*/) /*:Void*/ {
-        
-        //one may be longer than the other, so get the maximum length
-        var len /*:int*/ = Math.max(expected.length, actual.length);
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < len; i++){
-            Assert.areSame(expected[i], actual[i], 
-                Assert._formatMessage(message, "Values in position " + i + " are not the same."));
-        }
-    },
-    
-    /**
-     * Asserts that the given value is contained in an array at the specified index,
-     * starting from the back of the array.
-     * This uses the triple equals sign so no type cohersion will occur.
-     * @param {Object} needle The value to look for.
-     * @param {Array} haystack The array to search in.
-     * @param {int} index The index at which the value should exist.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method lastIndexOf
-     * @static
-     */
-    lastIndexOf : function (needle /*:Object*/, haystack /*:Array*/, index /*:int*/, message /*:String*/) /*:Void*/ {
-    
-        var Assert = YAHOO.util.Assert;
-    
-        //try to find the value in the array
-        for (var i=haystack.length; i >= 0; i--){
-            if (haystack[i] === needle){
-                Assert.areEqual(index, i, Assert._formatMessage(message, "Value exists at index " + i + " but should be at index " + index + "."));
-                return;
-            }
-        }
-        
-        //if it makes it here, it wasn't found at all
-        Assert.fail(Assert._formatMessage(message, "Value doesn't exist in array."));        
-    }
-    
-};
-
-YAHOO.namespace("util");
-
-
-//-----------------------------------------------------------------------------
-// ObjectAssert object
-//-----------------------------------------------------------------------------
-
-/**
- * The ObjectAssert object provides functions to test JavaScript objects
- * for a variety of cases.
- *
- * @namespace YAHOO.util
- * @class ObjectAssert
- * @static
- */
-YAHOO.util.ObjectAssert = {
-        
-    /**
-     * Asserts that all properties in the object exist in another object.
-     * @param {Object} expected An object with the expected properties.
-     * @param {Object} actual An object with the actual properties.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method propertiesAreEqual
-     * @static
-     */
-    propertiesAreEqual : function (expected /*:Object*/, actual /*:Object*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        var Assert = YAHOO.util.Assert;
-        
-        //get all properties in the object
-        var properties /*:Array*/ = [];        
-        for (var property in expected){
-            properties.push(property);
-        }
-        
-        //see if the properties are in the expected object
-        for (var i=0; i < properties.length; i++){
-            Assert.isNotUndefined(actual[properties[i]], 
-                Assert._formatMessage(message, "Property '" + properties[i] + "' expected."));
-        }
-
-    },
-    
-    /**
-     * Asserts that an object has a property with the given name.
-     * @param {String} propertyName The name of the property to test.
-     * @param {Object} object The object to search.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method hasProperty
-     * @static
-     */    
-    hasProperty : function (propertyName /*:String*/, object /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!(propertyName in object)){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Property '" + propertyName + "' not found on object."));
-        }    
-    },
-    
-    /**
-     * Asserts that a property with the given name exists on an object instance (not on its prototype).
-     * @param {String} propertyName The name of the property to test.
-     * @param {Object} object The object to search.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method hasProperty
-     * @static
-     */    
-    hasOwnProperty : function (propertyName /*:String*/, object /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.hasOwnProperty(object, propertyName)){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Property '" + propertyName + "' not found on object instance."));
-        }     
-    }
-};
-
-//-----------------------------------------------------------------------------
-// DateAssert object
-//-----------------------------------------------------------------------------
-
-/**
- * The DateAssert object provides functions to test JavaScript Date objects
- * for a variety of cases.
- *
- * @namespace YAHOO.util
- * @class DateAssert
- * @static
- */
- 
-YAHOO.util.DateAssert = {
-
-    /**
-     * Asserts that a date's month, day, and year are equal to another date's.
-     * @param {Date} expected The expected date.
-     * @param {Date} actual The actual date to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method datesAreEqual
-     * @static
-     */
-    datesAreEqual : function (expected /*:Date*/, actual /*:Date*/, message /*:String*/){
-        if (expected instanceof Date && actual instanceof Date){
-            var Assert = YAHOO.util.Assert;
-            Assert.areEqual(expected.getFullYear(), actual.getFullYear(), Assert._formatMessage(message, "Years should be equal."));
-            Assert.areEqual(expected.getMonth(), actual.getMonth(), Assert._formatMessage(message, "Months should be equal."));
-            Assert.areEqual(expected.getDate(), actual.getDate(), Assert._formatMessage(message, "Day of month should be equal."));
-        } else {
-            throw new TypeError("DateAssert.datesAreEqual(): Expected and actual values must be Date objects.");
-        }
-    },
-
-    /**
-     * Asserts that a date's hour, minutes, and seconds are equal to another date's.
-     * @param {Date} expected The expected date.
-     * @param {Date} actual The actual date to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method timesAreEqual
-     * @static
-     */
-    timesAreEqual : function (expected /*:Date*/, actual /*:Date*/, message /*:String*/){
-        if (expected instanceof Date && actual instanceof Date){
-            var Assert = YAHOO.util.Assert;
-            Assert.areEqual(expected.getHours(), actual.getHours(), Assert._formatMessage(message, "Hours should be equal."));
-            Assert.areEqual(expected.getMinutes(), actual.getMinutes(), Assert._formatMessage(message, "Minutes should be equal."));
-            Assert.areEqual(expected.getSeconds(), actual.getSeconds(), Assert._formatMessage(message, "Seconds should be equal."));
-        } else {
-            throw new TypeError("DateAssert.timesAreEqual(): Expected and actual values must be Date objects.");
-        }
-    }
-    
-};
-
-YAHOO.namespace("util");
-
-/**
- * The UserAction object provides functions that simulate events occurring in
- * the browser. Since these are simulated events, they do not behave exactly
- * as regular, user-initiated events do, but can be used to test simple
- * user interactions safely.
- *
- * @namespace YAHOO.util
- * @class UserAction
- * @static
- */
-YAHOO.util.UserAction = {
-
-    //--------------------------------------------------------------------------
-    // Generic event methods
-    //--------------------------------------------------------------------------
-
-    /**
-     * Simulates a key event using the given event information to populate
-     * the generated event object. This method does browser-equalizing
-     * calculations to account for differences in the DOM and IE event models
-     * as well as different browser quirks. Note: keydown causes Safari 2.x to
-     * crash.
-     * @method simulateKeyEvent
-     * @private
-     * @static
-     * @param {HTMLElement} target The target of the given event.
-     * @param {String} type The type of event to fire. This can be any one of
-     *      the following: keyup, keydown, and keypress.
-     * @param {Boolean} bubbles (Optional) Indicates if the event can be
-     *      bubbled up. DOM Level 3 specifies that all key events bubble by
-     *      default. The default is true.
-     * @param {Boolean} cancelable (Optional) Indicates if the event can be
-     *      canceled using preventDefault(). DOM Level 3 specifies that all
-     *      key events can be cancelled. The default 
-     *      is true.
-     * @param {Window} view (Optional) The view containing the target. This is
-     *      typically the window object. The default is window.
-     * @param {Boolean} ctrlKey (Optional) Indicates if one of the CTRL keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {Boolean} altKey (Optional) Indicates if one of the ALT keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {Boolean} shiftKey (Optional) Indicates if one of the SHIFT keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {Boolean} metaKey (Optional) Indicates if one of the META keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {int} keyCode (Optional) The code for the key that is in use. 
-     *      The default is 0.
-     * @param {int} charCode (Optional) The Unicode code for the character
-     *      associated with the key being used. The default is 0.
-     */
-    simulateKeyEvent : function (target /*:HTMLElement*/, type /*:String*/, 
-                                 bubbles /*:Boolean*/,  cancelable /*:Boolean*/,    
-                                 view /*:Window*/,
-                                 ctrlKey /*:Boolean*/,    altKey /*:Boolean*/, 
-                                 shiftKey /*:Boolean*/,   metaKey /*:Boolean*/, 
-                                 keyCode /*:int*/,        charCode /*:int*/) /*:Void*/                             
-    {
-        //check target
-        target = YAHOO.util.Dom.get(target);        
-        if (!target){
-            throw new Error("simulateKeyEvent(): Invalid target.");
-        }
-        
-        //check event type
-        if (YAHOO.lang.isString(type)){
-            type = type.toLowerCase();
-            switch(type){
-                case "keyup":
-                case "keydown":
-                case "keypress":
-                    break;
-                case "textevent": //DOM Level 3
-                    type = "keypress";
-                    break;
-                    // @TODO was the fallthrough intentional, if so throw error
-                default:
-                    throw new Error("simulateKeyEvent(): Event type '" + type + "' not supported.");
-            }
-        } else {
-            throw new Error("simulateKeyEvent(): Event type must be a string.");
-        }
-        
-        //setup default values
-        if (!YAHOO.lang.isBoolean(bubbles)){
-            bubbles = true; //all key events bubble
-        }
-        if (!YAHOO.lang.isBoolean(cancelable)){
-            cancelable = true; //all key events can be cancelled
-        }
-        if (!YAHOO.lang.isObject(view)){
-            view = window; //view is typically window
-        }
-        if (!YAHOO.lang.isBoolean(ctrlKey)){
-            ctrlKey = false;
-        }
-        if (!YAHOO.lang.isBoolean(altKey)){
-            altKey = false;
-        }
-        if (!YAHOO.lang.isBoolean(shiftKey)){
-            shiftKey = false;
-        }
-        if (!YAHOO.lang.isBoolean(metaKey)){
-            metaKey = false;
-        }
-        if (!YAHOO.lang.isNumber(keyCode)){
-            keyCode = 0;
-        }
-        if (!YAHOO.lang.isNumber(charCode)){
-            charCode = 0; 
-        }
-
-        //try to create a mouse event
-        var customEvent /*:MouseEvent*/ = null;
-            
-        //check for DOM-compliant browsers first
-        if (YAHOO.lang.isFunction(document.createEvent)){
-        
-            try {
-                
-                //try to create key event
-                customEvent = document.createEvent("KeyEvents");
-                
-                /*
-                 * Interesting problem: Firefox implemented a non-standard
-                 * version of initKeyEvent() based on DOM Level 2 specs.
-                 * Key event was removed from DOM Level 2 and re-introduced
-                 * in DOM Level 3 with a different interface. Firefox is the
-                 * only browser with any implementation of Key Events, so for
-                 * now, assume it's Firefox if the above line doesn't error.
-                 */
-                //TODO: Decipher between Firefox's implementation and a correct one.
-                customEvent.initKeyEvent(type, bubbles, cancelable, view, ctrlKey,
-                    altKey, shiftKey, metaKey, keyCode, charCode);       
-                
-            } catch (ex /*:Error*/){
-
-                /*
-                 * If it got here, that means key events aren't officially supported. 
-                 * Safari/WebKit is a real problem now. WebKit 522 won't let you
-                 * set keyCode, charCode, or other properties if you use a
-                 * UIEvent, so we first must try to create a generic event. The
-                 * fun part is that this will throw an error on Safari 2.x. The
-                 * end result is that we need another try...catch statement just to
-                 * deal with this mess.
-                 */
-                try {
-
-                    //try to create generic event - will fail in Safari 2.x
-                    customEvent = document.createEvent("Events");
-
-                } catch (uierror /*:Error*/){
-
-                    //the above failed, so create a UIEvent for Safari 2.x
-                    customEvent = document.createEvent("UIEvents");
-
-                } finally {
-
-                    customEvent.initEvent(type, bubbles, cancelable);
-    
-                    //initialize
-                    customEvent.view = view;
-                    customEvent.altKey = altKey;
-                    customEvent.ctrlKey = ctrlKey;
-                    customEvent.shiftKey = shiftKey;
-                    customEvent.metaKey = metaKey;
-                    customEvent.keyCode = keyCode;
-                    customEvent.charCode = charCode;
-          
-                }          
-             
-            }
-            
-            //fire the event
-            target.dispatchEvent(customEvent);
-
-        } else if (YAHOO.lang.isObject(document.createEventObject)){ //IE
-        
-            //create an IE event object
-            customEvent = document.createEventObject();
-            
-            //assign available properties
-            customEvent.bubbles = bubbles;
-            customEvent.cancelable = cancelable;
-            customEvent.view = view;
-            customEvent.ctrlKey = ctrlKey;
-            customEvent.altKey = altKey;
-            customEvent.shiftKey = shiftKey;
-            customEvent.metaKey = metaKey;
-            
-            /*
-             * IE doesn't support charCode explicitly. CharCode should
-             * take precedence over any keyCode value for accurate
-             * representation.
-             */
-            customEvent.keyCode = (charCode > 0) ? charCode : keyCode;
-            
-            //fire the event
-            target.fireEvent("on" + type, customEvent);  
-                    
-        } else {
-            throw new Error("simulateKeyEvent(): No event simulation framework present.");
-        }
-    },
-
-    /**
-     * Simulates a mouse event using the given event information to populate
-     * the generated event object. This method does browser-equalizing
-     * calculations to account for differences in the DOM and IE event models
-     * as well as different browser quirks.
-     * @method simulateMouseEvent
-     * @private
-     * @static
-     * @param {HTMLElement} target The target of the given event.
-     * @param {String} type The type of event to fire. This can be any one of
-     *      the following: click, dblclick, mousedown, mouseup, mouseout,
-     *      mouseover, and mousemove.
-     * @param {Boolean} bubbles (Optional) Indicates if the event can be
-     *      bubbled up. DOM Level 2 specifies that all mouse events bubble by
-     *      default. The default is true.
-     * @param {Boolean} cancelable (Optional) Indicates if the event can be
-     *      canceled using preventDefault(). DOM Level 2 specifies that all
-     *      mouse events except mousemove can be cancelled. The default 
-     *      is true for all events except mousemove, for which the default 
-     *      is false.
-     * @param {Window} view (Optional) The view containing the target. This is
-     *      typically the window object. The default is window.
-     * @param {int} detail (Optional) The number of times the mouse button has
-     *      been used. The default value is 1.
-     * @param {int} screenX (Optional) The x-coordinate on the screen at which
-     *      point the event occured. The default is 0.
-     * @param {int} screenY (Optional) The y-coordinate on the screen at which
-     *      point the event occured. The default is 0.
-     * @param {int} clientX (Optional) The x-coordinate on the client at which
-     *      point the event occured. The default is 0.
-     * @param {int} clientY (Optional) The y-coordinate on the client at which
-     *      point the event occured. The default is 0.
-     * @param {Boolean} ctrlKey (Optional) Indicates if one of the CTRL keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {Boolean} altKey (Optional) Indicates if one of the ALT keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {Boolean} shiftKey (Optional) Indicates if one of the SHIFT keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {Boolean} metaKey (Optional) Indicates if one of the META keys
-     *      is pressed while the event is firing. The default is false.
-     * @param {int} button (Optional) The button being pressed while the event
-     *      is executing. The value should be 0 for the primary mouse button
-     *      (typically the left button), 1 for the terciary mouse button
-     *      (typically the middle button), and 2 for the secondary mouse button
-     *      (typically the right button). The default is 0.
-     * @param {HTMLElement} relatedTarget (Optional) For mouseout events,
-     *      this is the element that the mouse has moved to. For mouseover
-     *      events, this is the element that the mouse has moved from. This
-     *      argument is ignored for all other events. The default is null.
-     */
-    simulateMouseEvent : function (target /*:HTMLElement*/, type /*:String*/, 
-                                   bubbles /*:Boolean*/,  cancelable /*:Boolean*/,    
-                                   view /*:Window*/,        detail /*:int*/, 
-                                   screenX /*:int*/,        screenY /*:int*/, 
-                                   clientX /*:int*/,        clientY /*:int*/,       
-                                   ctrlKey /*:Boolean*/,    altKey /*:Boolean*/, 
-                                   shiftKey /*:Boolean*/,   metaKey /*:Boolean*/, 
-                                   button /*:int*/,         relatedTarget /*:HTMLElement*/) /*:Void*/
-    {
-        
-        //check target
-        target = YAHOO.util.Dom.get(target);        
-        if (!target){
-            throw new Error("simulateMouseEvent(): Invalid target.");
-        }
-        
-        //check event type
-        if (YAHOO.lang.isString(type)){
-            type = type.toLowerCase();
-            switch(type){
-                case "mouseover":
-                case "mouseout":
-                case "mousedown":
-                case "mouseup":
-                case "click":
-                case "dblclick":
-                case "mousemove":
-                    break;
-                default:
-                    throw new Error("simulateMouseEvent(): Event type '" + type + "' not supported.");
-            }
-        } else {
-            throw new Error("simulateMouseEvent(): Event type must be a string.");
-        }
-        
-        //setup default values
-        if (!YAHOO.lang.isBoolean(bubbles)){
-            bubbles = true; //all mouse events bubble
-        }
-        if (!YAHOO.lang.isBoolean(cancelable)){
-            cancelable = (type != "mousemove"); //mousemove is the only one that can't be cancelled
-        }
-        if (!YAHOO.lang.isObject(view)){
-            view = window; //view is typically window
-        }
-        if (!YAHOO.lang.isNumber(detail)){
-            detail = 1;  //number of mouse clicks must be at least one
-        }
-        if (!YAHOO.lang.isNumber(screenX)){
-            screenX = 0; 
-        }
-        if (!YAHOO.lang.isNumber(screenY)){
-            screenY = 0; 
-        }
-        if (!YAHOO.lang.isNumber(clientX)){
-            clientX = 0; 
-        }
-        if (!YAHOO.lang.isNumber(clientY)){
-            clientY = 0; 
-        }
-        if (!YAHOO.lang.isBoolean(ctrlKey)){
-            ctrlKey = false;
-        }
-        if (!YAHOO.lang.isBoolean(altKey)){
-            altKey = false;
-        }
-        if (!YAHOO.lang.isBoolean(shiftKey)){
-            shiftKey = false;
-        }
-        if (!YAHOO.lang.isBoolean(metaKey)){
-            metaKey = false;
-        }
-        if (!YAHOO.lang.isNumber(button)){
-            button = 0; 
-        }
-
-        //try to create a mouse event
-        var customEvent /*:MouseEvent*/ = null;
-            
-        //check for DOM-compliant browsers first
-        if (YAHOO.lang.isFunction(document.createEvent)){
-        
-            customEvent = document.createEvent("MouseEvents");
-        
-            //Safari 2.x (WebKit 418) still doesn't implement initMouseEvent()
-            if (customEvent.initMouseEvent){
-                customEvent.initMouseEvent(type, bubbles, cancelable, view, detail,
-                                     screenX, screenY, clientX, clientY, 
-                                     ctrlKey, altKey, shiftKey, metaKey, 
-                                     button, relatedTarget);
-            } else { //Safari
-            
-                //the closest thing available in Safari 2.x is UIEvents
-                customEvent = document.createEvent("UIEvents");
-                customEvent.initEvent(type, bubbles, cancelable);
-                customEvent.view = view;
-                customEvent.detail = detail;
-                customEvent.screenX = screenX;
-                customEvent.screenY = screenY;
-                customEvent.clientX = clientX;
-                customEvent.clientY = clientY;
-                customEvent.ctrlKey = ctrlKey;
-                customEvent.altKey = altKey;
-                customEvent.metaKey = metaKey;
-                customEvent.shiftKey = shiftKey;
-                customEvent.button = button;
-                customEvent.relatedTarget = relatedTarget;
-            }
-            
-            /*
-             * Check to see if relatedTarget has been assigned. Firefox
-             * versions less than 2.0 don't allow it to be assigned via
-             * initMouseEvent() and the property is readonly after event
-             * creation, so in order to keep YAHOO.util.getRelatedTarget()
-             * working, assign to the IE proprietary toElement property
-             * for mouseout event and fromElement property for mouseover
-             * event.
-             */
-            if (relatedTarget && !customEvent.relatedTarget){
-                if (type == "mouseout"){
-                    customEvent.toElement = relatedTarget;
-                } else if (type == "mouseover"){
-                    customEvent.fromElement = relatedTarget;
-                }
-            }
-            
-            //fire the event
-            target.dispatchEvent(customEvent);
-
-        } else if (YAHOO.lang.isObject(document.createEventObject)){ //IE
-        
-            //create an IE event object
-            customEvent = document.createEventObject();
-            
-            //assign available properties
-            customEvent.bubbles = bubbles;
-            customEvent.cancelable = cancelable;
-            customEvent.view = view;
-            customEvent.detail = detail;
-            customEvent.screenX = screenX;
-            customEvent.screenY = screenY;
-            customEvent.clientX = clientX;
-            customEvent.clientY = clientY;
-            customEvent.ctrlKey = ctrlKey;
-            customEvent.altKey = altKey;
-            customEvent.metaKey = metaKey;
-            customEvent.shiftKey = shiftKey;
-
-            //fix button property for IE's wacky implementation
-            switch(button){
-                case 0:
-                    customEvent.button = 1;
-                    break;
-                case 1:
-                    customEvent.button = 4;
-                    break;
-                case 2:
-                    //leave as is
-                    break;
-                default:
-                    customEvent.button = 0;                    
-            }    
-
-            /*
-             * Have to use relatedTarget because IE won't allow assignment
-             * to toElement or fromElement on generic events. This keeps
-             * YAHOO.util.customEvent.getRelatedTarget() functional.
-             */
-            customEvent.relatedTarget = relatedTarget;
-            
-            //fire the event
-            target.fireEvent("on" + type, customEvent);
-                    
-        } else {
-            throw new Error("simulateMouseEvent(): No event simulation framework present.");
-        }
-    },
-   
-    //--------------------------------------------------------------------------
-    // Mouse events
-    //--------------------------------------------------------------------------
-
-    /**
-     * Simulates a mouse event on a particular element.
-     * @param {HTMLElement} target The element to click on.
-     * @param {String} type The type of event to fire. This can be any one of
-     *      the following: click, dblclick, mousedown, mouseup, mouseout,
-     *      mouseover, and mousemove.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method mouseEvent
-     * @static
-     */
-    fireMouseEvent : function (target /*:HTMLElement*/, type /*:String*/, 
-                           options /*:Object*/) /*:Void*/
-    {
-        options = options || {};
-        this.simulateMouseEvent(target, type, options.bubbles,
-            options.cancelable, options.view, options.detail, options.screenX,        
-            options.screenY, options.clientX, options.clientY, options.ctrlKey,
-            options.altKey, options.shiftKey, options.metaKey, options.button,         
-            options.relatedTarget);        
-    },
-
-    /**
-     * Simulates a click on a particular element.
-     * @param {HTMLElement} target The element to click on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method click
-     * @static     
-     */
-    click : function (target /*:HTMLElement*/, options /*:Object*/) /*:Void*/ {
-        this.fireMouseEvent(target, "click", options);
-    },
-    
-    /**
-     * Simulates a double click on a particular element.
-     * @param {HTMLElement} target The element to double click on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method dblclick
-     * @static
-     */
-    dblclick : function (target /*:HTMLElement*/, options /*:Object*/) /*:Void*/ {
-        this.fireMouseEvent( target, "dblclick", options);
-    },
-    
-    /**
-     * Simulates a mousedown on a particular element.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method mousedown
-     * @static
-     */
-    mousedown : function (target /*:HTMLElement*/, options /*Object*/) /*:Void*/ {
-        this.fireMouseEvent(target, "mousedown", options);
-    },
-    
-    /**
-     * Simulates a mousemove on a particular element.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method mousemove
-     * @static
-     */
-    mousemove : function (target /*:HTMLElement*/, options /*Object*/) /*:Void*/ {
-        this.fireMouseEvent(target, "mousemove", options);
-    },
-    
-    /**
-     * Simulates a mouseout event on a particular element. Use "relatedTarget"
-     * on the options object to specify where the mouse moved to.
-     * Quirks: Firefox less than 2.0 doesn't set relatedTarget properly, so
-     * toElement is assigned in its place. IE doesn't allow toElement to be
-     * be assigned, so relatedTarget is assigned in its place. Both of these
-     * concessions allow YAHOO.util.Event.getRelatedTarget() to work correctly
-     * in both browsers.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method mouseout
-     * @static
-     */
-    mouseout : function (target /*:HTMLElement*/, options /*Object*/) /*:Void*/ {
-        this.fireMouseEvent(target, "mouseout", options);
-    },
-    
-    /**
-     * Simulates a mouseover event on a particular element. Use "relatedTarget"
-     * on the options object to specify where the mouse moved from.
-     * Quirks: Firefox less than 2.0 doesn't set relatedTarget properly, so
-     * fromElement is assigned in its place. IE doesn't allow fromElement to be
-     * be assigned, so relatedTarget is assigned in its place. Both of these
-     * concessions allow YAHOO.util.Event.getRelatedTarget() to work correctly
-     * in both browsers.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method mouseover
-     * @static
-     */
-    mouseover : function (target /*:HTMLElement*/, options /*Object*/) /*:Void*/ {
-        this.fireMouseEvent(target, "mouseover", options);
-    },
-    
-    /**
-     * Simulates a mouseup on a particular element.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method mouseup
-     * @static
-     */
-    mouseup : function (target /*:HTMLElement*/, options /*Object*/) /*:Void*/ {
-        this.fireMouseEvent(target, "mouseup", options);
-    },
-    
-    //--------------------------------------------------------------------------
-    // Key events
-    //--------------------------------------------------------------------------
-
-    /**
-     * Fires an event that normally would be fired by the keyboard (keyup,
-     * keydown, keypress). Make sure to specify either keyCode or charCode as
-     * an option.
-     * @private
-     * @param {String} type The type of event ("keyup", "keydown" or "keypress").
-     * @param {HTMLElement} target The target of the event.
-     * @param {Object} options Options for the event. Either keyCode or charCode
-     *                         are required.
-     * @method fireKeyEvent
-     * @static
-     */     
-    fireKeyEvent : function (type /*:String*/, target /*:HTMLElement*/,
-                             options /*:Object*/) /*:Void*/ 
-    {
-        options = options || {};
-        this.simulateKeyEvent(target, type, options.bubbles,
-            options.cancelable, options.view, options.ctrlKey,
-            options.altKey, options.shiftKey, options.metaKey, 
-            options.keyCode, options.charCode);    
-    },
-    
-    /**
-     * Simulates a keydown event on a particular element.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method keydown
-     * @static
-     */
-    keydown : function (target /*:HTMLElement*/, options /*:Object*/) /*:Void*/ {
-        this.fireKeyEvent("keydown", target, options);
-    },
-    
-    /**
-     * Simulates a keypress on a particular element.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method keypress
-     * @static
-     */
-    keypress : function (target /*:HTMLElement*/, options /*:Object*/) /*:Void*/ {
-        this.fireKeyEvent("keypress", target, options);
-    },
-    
-    /**
-     * Simulates a keyup event on a particular element.
-     * @param {HTMLElement} target The element to act on.
-     * @param {Object} options Additional event options (use DOM standard names).
-     * @method keyup
-     * @static
-     */
-    keyup : function (target /*:HTMLElement*/, options /*Object*/) /*:Void*/ {
-        this.fireKeyEvent("keyup", target, options);
-    }
-    
-
-};
-
-YAHOO.namespace("tool");
-
-//-----------------------------------------------------------------------------
-// TestManager object
-//-----------------------------------------------------------------------------
-
-/**
- * Runs pages containing test suite definitions.
- * @namespace YAHOO.tool
- * @class TestManager
- * @static
- */
-YAHOO.tool.TestManager = {
-
-    /**
-     * Constant for the testpagebegin custom event
-     * @property TEST_PAGE_BEGIN_EVENT
-     * @static
-     * @type string
-     * @final
-     */
-    TEST_PAGE_BEGIN_EVENT /*:String*/ : "testpagebegin",
-
-    /**
-     * Constant for the testpagecomplete custom event
-     * @property TEST_PAGE_COMPLETE_EVENT
-     * @static
-     * @type string
-     * @final
-     */
-    TEST_PAGE_COMPLETE_EVENT /*:String*/ : "testpagecomplete",
-
-    /**
-     * Constant for the testmanagerbegin custom event
-     * @property TEST_MANAGER_BEGIN_EVENT
-     * @static
-     * @type string
-     * @final
-     */
-    TEST_MANAGER_BEGIN_EVENT /*:String*/ : "testmanagerbegin",
-
-    /**
-     * Constant for the testmanagercomplete custom event
-     * @property TEST_MANAGER_COMPLETE_EVENT
-     * @static
-     * @type string
-     * @final
-     */
-    TEST_MANAGER_COMPLETE_EVENT /*:String*/ : "testmanagercomplete",
-
-    //-------------------------------------------------------------------------
-    // Private Properties
-    //-------------------------------------------------------------------------
-    
-    
-    /**
-     * The URL of the page currently being executed.
-     * @type String
-     * @private
-     * @property _curPage
-     * @static
-     */
-    _curPage /*:String*/ : null,
-    
-    /**
-     * The frame used to load and run tests.
-     * @type Window
-     * @private
-     * @property _frame
-     * @static
-     */
-    _frame /*:Window*/ : null,
-    
-    /**
-     * The logger used to output results from the various tests.
-     * @type YAHOO.tool.TestLogger
-     * @private
-     * @property _logger
-     * @static
-     */
-    _logger : null,
-    
-    /**
-     * The timeout ID for the next iteration through the tests.
-     * @type int
-     * @private
-     * @property _timeoutId
-     * @static
-     */
-    _timeoutId /*:int*/ : 0,
-    
-    /**
-     * Array of pages to load.
-     * @type String[]
-     * @private
-     * @property _pages
-     * @static
-     */
-    _pages /*:String[]*/ : [],
-    
-    /**
-     * Aggregated results
-     * @type Object
-     * @private
-     * @property _results
-     * @static
-     */
-    _results: null,
-    
-    //-------------------------------------------------------------------------
-    // Private Methods
-    //-------------------------------------------------------------------------
-    
-    /**
-     * Handles TestRunner.COMPLETE_EVENT, storing the results and beginning
-     * the loop again.
-     * @param {Object} data Data about the event.
-     * @return {Void}
-     * @private
-     * @static
-     */
-    _handleTestRunnerComplete : function (data /*:Object*/) /*:Void*/ {
-
-        this.fireEvent(this.TEST_PAGE_COMPLETE_EVENT, {
-                page: this._curPage,
-                results: data.results
-            });
-    
-        //save results
-        //this._results[this.curPage] = data.results;
-        
-        //process 'em
-        this._processResults(this._curPage, data.results);
-        
-        this._logger.clearTestRunner();
-    
-        //if there's more to do, set a timeout to begin again
-        if (this._pages.length){
-            this._timeoutId = setTimeout(function(){
-                YAHOO.tool.TestManager._run();
-            }, 1000);
-        } else {
-            this.fireEvent(this.TEST_MANAGER_COMPLETE_EVENT, this._results);
-        }
-    },
-    
-    /**
-     * Processes the results of a test page run, outputting log messages
-     * for failed tests.
-     * @return {Void}
-     * @private
-     * @static
-     */
-    _processResults : function (page /*:String*/, results /*:Object*/) /*:Void*/ {
-
-        var r = this._results;
-        
-        r.passed += results.passed;
-        r.failed += results.failed;
-        r.ignored += results.ignored;
-        r.total += results.total;
-        r.duration += results.duration;
-        
-        if (results.failed){
-            r.failedPages.push(page);
-        } else {
-            r.passedPages.push(page);
-        }
-        
-        results.name = page;
-        results.type = "page";
-        
-        r[page] = results;
-    },
-    
-    /**
-     * Loads the next test page into the iframe.
-     * @return {Void}
-     * @static
-     * @private
-     */
-    _run : function () /*:Void*/ {
-    
-        //set the current page
-        this._curPage = this._pages.shift();
-
-        this.fireEvent(this.TEST_PAGE_BEGIN_EVENT, this._curPage);
-        
-        //load the frame - destroy history in case there are other iframes that
-        //need testing
-        this._frame.location.replace(this._curPage);
-    
-    },
-        
-    //-------------------------------------------------------------------------
-    // Public Methods
-    //-------------------------------------------------------------------------
-    
-    /**
-     * Signals that a test page has been loaded. This should be called from
-     * within the test page itself to notify the TestManager that it is ready.
-     * @return {Void}
-     * @static
-     */
-    load : function () /*:Void*/ {
-        if (parent.YAHOO.tool.TestManager !== this){
-            parent.YAHOO.tool.TestManager.load();
-        } else {
-            
-            if (this._frame) {
-                //assign event handling
-                var TestRunner = this._frame.YAHOO.tool.TestRunner;
-
-                this._logger.setTestRunner(TestRunner);
-                TestRunner.subscribe(TestRunner.COMPLETE_EVENT, this._handleTestRunnerComplete, this, true);
-                
-                //run it
-                TestRunner.run();
-            }
-        }
-    },
-    
-    /**
-     * Sets the pages to be loaded.
-     * @param {String[]} pages An array of URLs to load.
-     * @return {Void}
-     * @static
-     */
-    setPages : function (pages /*:String[]*/) /*:Void*/ {
-        this._pages = pages;
-    },
-    
-    /**
-     * Begins the process of running the tests.
-     * @return {Void}
-     * @static
-     */
-    start : function () /*:Void*/ {
-
-        if (!this._initialized) {
-
-            /**
-             * Fires when loading a test page
-             * @event testpagebegin
-             * @param curPage {string} the page being loaded
-             * @static
-             */
-            this.createEvent(this.TEST_PAGE_BEGIN_EVENT);
-
-            /**
-             * Fires when a test page is complete
-             * @event testpagecomplete
-             * @param obj {page: string, results: object} the name of the
-             * page that was loaded, and the test suite results
-             * @static
-             */
-            this.createEvent(this.TEST_PAGE_COMPLETE_EVENT);
-
-            /**
-             * Fires when the test manager starts running all test pages
-             * @event testmanagerbegin
-             * @static
-             */
-            this.createEvent(this.TEST_MANAGER_BEGIN_EVENT);
-
-            /**
-             * Fires when the test manager finishes running all test pages.  External
-             * test runners should subscribe to this event in order to get the
-             * aggregated test results.
-             * @event testmanagercomplete
-             * @param obj { pages_passed: int, pages_failed: int, tests_passed: int
-             *              tests_failed: int, passed: string[], failed: string[],
-             *              page_results: {} }
-             * @static
-             */
-            this.createEvent(this.TEST_MANAGER_COMPLETE_EVENT);
-
-            //create iframe if not already available
-            if (!this._frame){
-                var frame /*:HTMLElement*/ = document.createElement("iframe");
-                frame.style.visibility = "hidden";
-                frame.style.position = "absolute";
-                document.body.appendChild(frame);
-                this._frame = frame.contentWindow || frame.contentDocument.parentWindow;
-            }
-            
-            //create test logger if not already available
-            if (!this._logger){
-                this._logger = new YAHOO.tool.TestLogger();
-            }
-
-            this._initialized = true;
-        }
-
-
-        // reset the results cache
-        this._results = {
-        
-            passed: 0,
-            failed: 0,
-            ignored: 0,
-            total: 0,
-            type: "report",
-            name: "YUI Test Results",
-            duration: 0,
-            failedPages:[],
-            passedPages:[]
-            /*
-            // number of pages that pass
-            pages_passed: 0,
-            // number of pages that fail
-            pages_failed: 0,
-            // total number of tests passed
-            tests_passed: 0,
-            // total number of tests failed
-            tests_failed: 0,
-            // array of pages that passed
-            passed: [],
-            // array of pages that failed
-            failed: [],
-            // map of full results for each page
-            page_results: {}*/
-        };
-
-        this.fireEvent(this.TEST_MANAGER_BEGIN_EVENT, null);
-        this._run();
-    
-    },
-
-    /**
-     * Stops the execution of tests.
-     * @return {Void}
-     * @static
-     */
-    stop : function () /*:Void*/ {
-        clearTimeout(this._timeoutId);
-    }
-
-};
-
-YAHOO.lang.augmentObject(YAHOO.tool.TestManager, YAHOO.util.EventProvider.prototype);
-
-
-YAHOO.namespace("tool");
-
-//-----------------------------------------------------------------------------
-// TestLogger object
-//-----------------------------------------------------------------------------
-
-/**
- * Displays test execution progress and results, providing filters based on
- * different key events.
- * @namespace YAHOO.tool
- * @class TestLogger
- * @constructor
- * @param {HTMLElement} element (Optional) The element to create the logger in.
- * @param {Object} config (Optional) Configuration options for the logger.
- */
-YAHOO.tool.TestLogger = function (element, config) {
-    YAHOO.tool.TestLogger.superclass.constructor.call(this, element, config);
-    this.init();
-};
-
-YAHOO.lang.extend(YAHOO.tool.TestLogger, YAHOO.widget.LogReader, {
-
-    footerEnabled : true,
-    newestOnTop : false,
-
-    /**
-     * Formats message string to HTML for output to console.
-     * @private
-     * @method formatMsg
-     * @param oLogMsg {Object} Log message object.
-     * @return {String} HTML-formatted message for output to console.
-     */
-    formatMsg : function(message /*:Object*/) {
-    
-        var category /*:String*/ = message.category;        
-        var text /*:String*/ = this.html2Text(message.msg);
-        
-        return "<pre><p><span class=\"" + category + "\">" + category.toUpperCase() + "</span> " + text + "</p></pre>";
-    
-    },
-    
-    //-------------------------------------------------------------------------
-    // Private Methods
-    //-------------------------------------------------------------------------
-    
-    /*
-     * Initializes the logger.
-     * @private
-     */
-    init : function () {
-    
-        //attach to any available TestRunner
-        if (YAHOO.tool.TestRunner){
-            this.setTestRunner(YAHOO.tool.TestRunner);
-        }
-        
-        //hide useless sources
-        this.hideSource("global");
-        this.hideSource("LogReader");
-        
-        //hide useless message categories
-        this.hideCategory("warn");
-        this.hideCategory("window");
-        this.hideCategory("time");
-        
-        //reset the logger
-        this.clearConsole();
-    },
-    
-    /**
-     * Clears the reference to the TestRunner from previous operations. This 
-     * unsubscribes all events and removes the object reference.
-     * @return {Void}
-     * @static
-     */
-    clearTestRunner : function () /*:Void*/ {
-        if (this._runner){
-            this._runner.unsubscribeAll();
-            this._runner = null;
-        }
-    },
-    
-    /**
-     * Sets the source test runner that the logger should monitor.
-     * @param {YAHOO.tool.TestRunner} testRunner The TestRunner to observe.
-     * @return {Void}
-     * @static
-     */
-    setTestRunner : function (testRunner /*:YAHOO.tool.TestRunner*/) /*:Void*/ {
-    
-        if (this._runner){
-            this.clearTestRunner();
-        }
-        
-        this._runner = testRunner;
-        
-        //setup event _handlers
-        testRunner.subscribe(testRunner.TEST_PASS_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.TEST_FAIL_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.TEST_IGNORE_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.BEGIN_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.COMPLETE_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.TEST_SUITE_BEGIN_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.TEST_SUITE_COMPLETE_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.TEST_CASE_BEGIN_EVENT, this._handleTestRunnerEvent, this, true);
-        testRunner.subscribe(testRunner.TEST_CASE_COMPLETE_EVENT, this._handleTestRunnerEvent, this, true);    
-    },
-    
-    //-------------------------------------------------------------------------
-    // Event Handlers
-    //-------------------------------------------------------------------------
-    
-    /**
-     * Handles all TestRunner events, outputting appropriate data into the console.
-     * @param {Object} data The event data object.
-     * @return {Void}
-     * @private
-     */
-    _handleTestRunnerEvent : function (data /*:Object*/) /*:Void*/ {
-    
-        //shortcut variables
-        var TestRunner /*:Object*/ = YAHOO.tool.TestRunner;
-    
-        //data variables
-        var message /*:String*/ = "";
-        var messageType /*:String*/ = "";
-        
-        switch(data.type){
-            case TestRunner.BEGIN_EVENT:
-                message = "Testing began at " + (new Date()).toString() + ".";
-                messageType = "info";
-                break;
-                
-            case TestRunner.COMPLETE_EVENT:
-                message = "Testing completed at " + (new Date()).toString() + ".\nPassed:" + 
-                    data.results.passed + " Failed:" + data.results.failed + " Total:" + data.results.total;
-                messageType = "info";
-                break;
-                
-            case TestRunner.TEST_FAIL_EVENT:
-                message = data.testName + ": " + data.error.getMessage();
-                messageType = "fail";
-                break;
-                
-            case TestRunner.TEST_IGNORE_EVENT:
-                message = data.testName + ": ignored.";
-                messageType = "ignore";
-                break;
-                
-            case TestRunner.TEST_PASS_EVENT:
-                message = data.testName + ": passed.";
-                messageType = "pass";
-                break;
-                
-            case TestRunner.TEST_SUITE_BEGIN_EVENT:
-                message = "Test suite \"" + data.testSuite.name + "\" started.";
-                messageType = "info";
-                break;
-                
-            case TestRunner.TEST_SUITE_COMPLETE_EVENT:
-                message = "Test suite \"" + data.testSuite.name + "\" completed.\nPassed:" + 
-                    data.results.passed + " Failed:" + data.results.failed + " Total:" + data.results.total;
-                messageType = "info";
-                break;
-                
-            case TestRunner.TEST_CASE_BEGIN_EVENT:
-                message = "Test case \"" + data.testCase.name + "\" started.";
-                messageType = "info";
-                break;
-                
-            case TestRunner.TEST_CASE_COMPLETE_EVENT:
-                message = "Test case \"" + data.testCase.name + "\" completed.\nPassed:" + 
-                    data.results.passed + " Failed:" + data.results.failed + " Total:" + data.results.total;
-                messageType = "info";
-                break;
-            default:
-                message = "Unexpected event " + data.type;
-                message = "info";
-        }
-    
-        YAHOO.log(message, messageType, "TestRunner");    
-    }
-    
-});
-
-YAHOO.namespace("tool.TestFormat");
-
-/**
- * Returns test results formatted as a JSON string. Requires JSON utility.
- * @param {Object} result The results object created by TestRunner.
- * @return {String} An XML-formatted string of results.
- * @namespace YAHOO.tool.TestFormat
- * @method JSON
- * @static
- */
-YAHOO.tool.TestFormat.JSON = function(results /*:Object*/) /*:String*/ {
-    return YAHOO.lang.JSON.stringify(results);
-};
-
-/**
- * Returns test results formatted as an XML string.
- * @param {Object} result The results object created by TestRunner.
- * @return {String} An XML-formatted string of results.
- * @namespace YAHOO.tool.TestFormat
- * @method XML
- * @static
- */
-YAHOO.tool.TestFormat.XML = function(results /*:Object*/) /*:String*/ {
-
-    var l = YAHOO.lang;
-    var xml /*:String*/ = "<" + results.type + " name=\"" + results.name.replace(/"/g, "&quot;").replace(/'/g, "&apos;") + "\"";
-    
-    if (l.isNumber(results.duration)){
-        xml += " duration=\"" + results.duration + "\"";
-    }
-    
-    if (results.type == "test"){
-        xml += " result=\"" + results.result + "\" message=\"" + results.message + "\">";
-    } else {
-        xml += " passed=\"" + results.passed + "\" failed=\"" + results.failed + "\" ignored=\"" + results.ignored + "\" total=\"" + results.total + "\">";
-        for (var prop in results) {
-            if (l.hasOwnProperty(results, prop) && l.isObject(results[prop]) && !l.isArray(results[prop])){
-                xml += arguments.callee(results[prop]);
-            }
-        }        
-    }
-
-    xml += "</" + results.type + ">";
-    
-    return xml;
-
-};
-
-YAHOO.namespace("tool");
-
-/**
- * An object capable of sending test results to a server.
- * @param {String} url The URL to submit the results to.
- * @param {Function} format (Optiona) A function that outputs the results in a specific format.
- *      Default is YAHOO.tool.TestFormat.XML.
- * @constructor
- * @namespace YAHOO.tool
- * @class TestReporter
- */
-YAHOO.tool.TestReporter = function(url /*:String*/, format /*:Function*/) {
-
-    /**
-     * The URL to submit the data to.
-     * @type String
-     * @property url
-     */
-    this.url /*:String*/ = url;
-
-    /**
-     * The formatting function to call when submitting the data.
-     * @type Function
-     * @property format
-     */
-    this.format /*:Function*/ = format || YAHOO.tool.TestFormat.XML;
-
-    /**
-     * Extra fields to submit with the request.
-     * @type Object
-     * @property _fields
-     * @private
-     */
-    this._fields /*:Object*/ = new Object();
-    
-    /**
-     * The form element used to submit the results.
-     * @type HTMLFormElement
-     * @property _form
-     * @private
-     */
-    this._form /*:HTMLElement*/ = null;
-
-    /**
-     * Iframe used as a target for form submission.
-     * @type HTMLIFrameElement
-     * @property _iframe
-     * @private
-     */
-    this._iframe /*:HTMLElement*/ = null;
-};
-
-YAHOO.tool.TestReporter.prototype = {
-
-    //restore missing constructor
-    constructor: YAHOO.tool.TestReporter,
-    
-    /**
-     * Convert a date into ISO format.
-     * From Douglas Crockford's json2.js
-     * @param {Date} date The date to convert.
-     * @return {String} An ISO-formatted date string
-     * @method _convertToISOString
-     * @private
-     */    
-    _convertToISOString: function(date){
-        function f(n) {
-            // Format integers to have at least two digits.
-            return n < 10 ? '0' + n : n;
-        }
-
-        return date.getUTCFullYear()   + '-' +
-             f(date.getUTCMonth() + 1) + '-' +
-             f(date.getUTCDate())      + 'T' +
-             f(date.getUTCHours())     + ':' +
-             f(date.getUTCMinutes())   + ':' +
-             f(date.getUTCSeconds())   + 'Z';     
-    
-    },
-
-    /**
-     * Adds a field to the form that submits the results.
-     * @param {String} name The name of the field.
-     * @param {Variant} value The value of the field.
-     * @return {Void}
-     * @method addField
-     */
-    addField : function (name /*:String*/, value /*:Variant*/) /*:Void*/{
-        this._fields[name] = value;    
-    },
-    
-    /**
-     * Removes all previous defined fields.
-     * @return {Void}
-     * @method addField
-     */
-    clearFields : function() /*:Void*/{
-        this._fields = new Object();
-    },
-
-    /**
-     * Cleans up the memory associated with the TestReporter, removing DOM elements
-     * that were created.
-     * @return {Void}
-     * @method destroy
-     */
-    destroy : function() /*:Void*/ {
-        if (this._form){
-            this._form.parentNode.removeChild(this._form);
-            this._form = null;
-        }        
-        if (this._iframe){
-            this._iframe.parentNode.removeChild(this._iframe);
-            this._iframe = null;
-        }
-        this._fields = null;
-    },
-
-    /**
-     * Sends the report to the server.
-     * @param {Object} results The results object created by TestRunner.
-     * @return {Void}
-     * @method report
-     */
-    report : function(results /*:Object*/) /*:Void*/{
-    
-        //if the form hasn't been created yet, create it
-        if (!this._form){
-            this._form = document.createElement("form");
-            this._form.method = "post";
-            this._form.style.visibility = "hidden";
-            this._form.style.position = "absolute";
-            this._form.style.top = 0;
-            document.body.appendChild(this._form);
-        
-            //IE won't let you assign a name using the DOM, must do it the hacky way
-            if (YAHOO.env.ua.ie){
-                this._iframe = document.createElement("<iframe name=\"yuiTestTarget\" />");
-            } else {
-                this._iframe = document.createElement("iframe");
-                this._iframe.name = "yuiTestTarget";
-            }
-
-            this._iframe.src = "javascript:false";
-            this._iframe.style.visibility = "hidden";
-            this._iframe.style.position = "absolute";
-            this._iframe.style.top = 0;
-            document.body.appendChild(this._iframe);
-
-            this._form.target = "yuiTestTarget";
-        }
-
-        //set the form's action
-        this._form.action = this.url;
-    
-        //remove any existing fields
-        while(this._form.hasChildNodes()){
-            this._form.removeChild(this._form.lastChild);
-        }
-        
-        //create default fields
-        this._fields.results = this.format(results);
-        this._fields.useragent = navigator.userAgent;
-        this._fields.timestamp = this._convertToISOString(new Date());
-
-        //add fields to the form
-        for (var prop in this._fields){
-            if (YAHOO.lang.hasOwnProperty(this._fields, prop) && typeof this._fields[prop] != "function"){
-                if (YAHOO.env.ua.ie){
-                    input = document.createElement("<input name=\"" + prop + "\" >");
-                } else {
-                    input = document.createElement("input");
-                    input.name = prop;
-                }
-                input.type = "hidden";
-                input.value = this._fields[prop];
-                this._form.appendChild(input);
-            }
-        }
-
-        //remove default fields
-        delete this._fields.results;
-        delete this._fields.useragent;
-        delete this._fields.timestamp;
-        
-        if (arguments[1] !== false){
-            this._form.submit();
-        }
-    
-    }
-
-};
-
-YAHOO.register("yuitest", YAHOO.tool.TestRunner, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest_core-debug.js b/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest_core-debug.js
deleted file mode 100644
index 345e80c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest_core-debug.js
+++ /dev/null
@@ -1,1991 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.namespace("tool");
-
-//-----------------------------------------------------------------------------
-// TestCase object
-//-----------------------------------------------------------------------------
-(function(){
-    
-    //used for autogenerating test case names
-    var tempId = 0;
-    
-    /**
-     * Test case containing various tests to run.
-     * @param template An object containing any number of test methods, other methods,
-     *                 an optional name, and anything else the test case needs.
-     * @class TestCase
-     * @namespace YAHOO.tool
-     * @constructor
-     */
-    YAHOO.tool.TestCase = function (template /*:Object*/) {
-        
-        /**
-         * Special rules for the test case. Possible subobjects
-         * are fail, for tests that should fail, and error, for
-         * tests that should throw an error.
-         */
-        this._should /*:Object*/ = {};
-        
-        //copy over all properties from the template to this object
-        for (var prop in template) {
-            this[prop] = template[prop];
-        }    
-        
-        //check for a valid name
-        if (!YAHOO.lang.isString(this.name)){
-            /**
-             * Name for the test case.
-             */
-            this.name /*:String*/ = "testCase" + (tempId++);
-        }
-    
-    };
-    
-    
-    YAHOO.tool.TestCase.prototype = {  
-    
-        /**
-         * Resumes a paused test and runs the given function.
-         * @param {Function} segment (Optional) The function to run.
-         *      If omitted, the test automatically passes.
-         * @return {Void}
-         * @method resume
-         */
-        resume : function (segment /*:Function*/) /*:Void*/ {
-            YAHOO.tool.TestRunner.resume(segment);
-        },
-    
-        /**
-         * Causes the test case to wait a specified amount of time and then
-         * continue executing the given code.
-         * @param {Function} segment (Optional) The function to run after the delay.
-         *      If omitted, the TestRunner will wait until resume() is called.
-         * @param {int} delay (Optional) The number of milliseconds to wait before running
-         *      the function. If omitted, defaults to zero.
-         * @return {Void}
-         * @method wait
-         */
-        wait : function (segment /*:Function*/, delay /*:int*/) /*:Void*/{
-            var args = arguments;
-            if (YAHOO.lang.isFunction(args[0])){
-                throw new YAHOO.tool.TestCase.Wait(args[0], args[1]);
-            } else {
-                throw new YAHOO.tool.TestCase.Wait(function(){
-                    YAHOO.util.Assert.fail("Timeout: wait() called but resume() never called.");
-                }, (YAHOO.lang.isNumber(args[0]) ? args[0] : 10000));
-            }            
-        },
-    
-        //-------------------------------------------------------------------------
-        // Stub Methods
-        //-------------------------------------------------------------------------
-    
-        /**
-         * Function to run before each test is executed.
-         * @return {Void}
-         * @method setUp
-         */
-        setUp : function () /*:Void*/ {
-        },
-        
-        /**
-         * Function to run after each test is executed.
-         * @return {Void}
-         * @method tearDown
-         */
-        tearDown: function () /*:Void*/ {    
-        }
-    };
-    
-    /**
-     * Represents a stoppage in test execution to wait for an amount of time before
-     * continuing.
-     * @param {Function} segment A function to run when the wait is over.
-     * @param {int} delay The number of milliseconds to wait before running the code.
-     * @class Wait
-     * @namespace YAHOO.tool.TestCase
-     * @constructor
-     *
-     */
-    YAHOO.tool.TestCase.Wait = function (segment /*:Function*/, delay /*:int*/) {
-        
-        /**
-         * The segment of code to run when the wait is over.
-         * @type Function
-         * @property segment
-         */
-        this.segment /*:Function*/ = (YAHOO.lang.isFunction(segment) ? segment : null);
-    
-        /**
-         * The delay before running the segment of code.
-         * @type int
-         * @property delay
-         */
-        this.delay /*:int*/ = (YAHOO.lang.isNumber(delay) ? delay : 0);
-    
-    };
-
-})();
-
-YAHOO.namespace("tool");
-
-
-//-----------------------------------------------------------------------------
-// TestSuite object
-//-----------------------------------------------------------------------------
-
-/**
- * A test suite that can contain a collection of TestCase and TestSuite objects.
- * @param {String||Object} data The name of the test suite or an object containing
- *      a name property as well as setUp and tearDown methods.
- * @namespace YAHOO.tool
- * @class TestSuite
- * @constructor
- */
-YAHOO.tool.TestSuite = function (data /*:String||Object*/) {
-
-    /**
-     * The name of the test suite.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "";
-
-    /**
-     * Array of test suites and
-     * @private
-     */
-    this.items /*:Array*/ = [];
-
-    //initialize the properties
-    if (YAHOO.lang.isString(data)){
-        this.name = data;
-    } else if (YAHOO.lang.isObject(data)){
-        YAHOO.lang.augmentObject(this, data, true);
-    }
-
-    //double-check name
-    if (this.name === ""){
-        this.name = YAHOO.util.Dom.generateId(null, "testSuite");
-    }
-
-};
-
-YAHOO.tool.TestSuite.prototype = {
-    
-    /**
-     * Adds a test suite or test case to the test suite.
-     * @param {YAHOO.tool.TestSuite||YAHOO.tool.TestCase} testObject The test suite or test case to add.
-     * @return {Void}
-     * @method add
-     */
-    add : function (testObject /*:YAHOO.tool.TestSuite*/) /*:Void*/ {
-        if (testObject instanceof YAHOO.tool.TestSuite || testObject instanceof YAHOO.tool.TestCase) {
-            this.items.push(testObject);
-        }
-    },
-    
-    //-------------------------------------------------------------------------
-    // Stub Methods
-    //-------------------------------------------------------------------------
-
-    /**
-     * Function to run before each test is executed.
-     * @return {Void}
-     * @method setUp
-     */
-    setUp : function () /*:Void*/ {
-    },
-    
-    /**
-     * Function to run after each test is executed.
-     * @return {Void}
-     * @method tearDown
-     */
-    tearDown: function () /*:Void*/ {
-    }
-    
-};
-
-YAHOO.namespace("tool");
-
-/**
- * The YUI test tool
- * @module yuitest
- * @namespace YAHOO.tool
- * @requires yahoo,dom,event,logger
- */
-
-
-//-----------------------------------------------------------------------------
-// TestRunner object
-//-----------------------------------------------------------------------------
-
-
-YAHOO.tool.TestRunner = (function(){
-
-    /**
-     * A node in the test tree structure. May represent a TestSuite, TestCase, or
-     * test function.
-     * @param {Variant} testObject A TestSuite, TestCase, or the name of a test function.
-     * @class TestNode
-     * @constructor
-     * @private
-     */
-    function TestNode(testObject /*:Variant*/){
-    
-        /**
-         * The TestSuite, TestCase, or test function represented by this node.
-         * @type Variant
-         * @property testObject
-         */
-        this.testObject = testObject;
-        
-        /**
-         * Pointer to this node's first child.
-         * @type TestNode
-         * @property firstChild
-         */        
-        this.firstChild /*:TestNode*/ = null;
-        
-        /**
-         * Pointer to this node's last child.
-         * @type TestNode
-         * @property lastChild
-         */        
-        this.lastChild = null;
-        
-        /**
-         * Pointer to this node's parent.
-         * @type TestNode
-         * @property parent
-         */        
-        this.parent = null; 
-   
-        /**
-         * Pointer to this node's next sibling.
-         * @type TestNode
-         * @property next
-         */        
-        this.next = null;
-        
-        /**
-         * Test results for this test object.
-         * @type object
-         * @property results
-         */                
-        this.results /*:Object*/ = {
-            passed : 0,
-            failed : 0,
-            total : 0,
-            ignored : 0
-        };
-        
-        //initialize results
-        if (testObject instanceof YAHOO.tool.TestSuite){
-            this.results.type = "testsuite";
-            this.results.name = testObject.name;
-        } else if (testObject instanceof YAHOO.tool.TestCase){
-            this.results.type = "testcase";
-            this.results.name = testObject.name;
-        }
-       
-    }
-    
-    TestNode.prototype = {
-    
-        /**
-         * Appends a new test object (TestSuite, TestCase, or test function name) as a child
-         * of this node.
-         * @param {Variant} testObject A TestSuite, TestCase, or the name of a test function.
-         * @return {Void}
-         */
-        appendChild : function (testObject /*:Variant*/) /*:Void*/{
-            var node = new TestNode(testObject);
-            if (this.firstChild === null){
-                this.firstChild = this.lastChild = node;
-            } else {
-                this.lastChild.next = node;
-                this.lastChild = node;
-            }
-            node.parent = this;
-            return node;
-        }       
-    };
-
-    /**
-     * Runs test suites and test cases, providing events to allowing for the
-     * interpretation of test results.
-     * @namespace YAHOO.tool
-     * @class TestRunner
-     * @static
-     */
-    function TestRunner(){
-    
-        //inherit from EventProvider
-        TestRunner.superclass.constructor.apply(this,arguments);
-        
-        /**
-         * Suite on which to attach all TestSuites and TestCases to be run.
-         * @type YAHOO.tool.TestSuite
-         * @property masterSuite
-         * @private
-         * @static
-         */
-        this.masterSuite /*:YAHOO.tool.TestSuite*/ = new YAHOO.tool.TestSuite("YUI Test Results");        
-
-        /**
-         * Pointer to the current node in the test tree.
-         * @type TestNode
-         * @private
-         * @property _cur
-         * @static
-         */
-        this._cur = null;
-        
-        /**
-         * Pointer to the root node in the test tree.
-         * @type TestNode
-         * @private
-         * @property _root
-         * @static
-         */
-        this._root = null;
-        
-        //create events
-        var events /*:Array*/ = [
-            this.TEST_CASE_BEGIN_EVENT,
-            this.TEST_CASE_COMPLETE_EVENT,
-            this.TEST_SUITE_BEGIN_EVENT,
-            this.TEST_SUITE_COMPLETE_EVENT,
-            this.TEST_PASS_EVENT,
-            this.TEST_FAIL_EVENT,
-            this.TEST_IGNORE_EVENT,
-            this.COMPLETE_EVENT,
-            this.BEGIN_EVENT
-        ];
-        for (var i=0; i < events.length; i++){
-            this.createEvent(events[i], { scope: this });
-        }       
-   
-    }
-    
-    YAHOO.lang.extend(TestRunner, YAHOO.util.EventProvider, {
-    
-        //-------------------------------------------------------------------------
-        // Constants
-        //-------------------------------------------------------------------------
-         
-        /**
-         * Fires when a test case is opened but before the first 
-         * test is executed.
-         * @event testcasebegin
-         */         
-        TEST_CASE_BEGIN_EVENT /*:String*/ : "testcasebegin",
-        
-        /**
-         * Fires when all tests in a test case have been executed.
-         * @event testcasecomplete
-         */        
-        TEST_CASE_COMPLETE_EVENT /*:String*/ : "testcasecomplete",
-        
-        /**
-         * Fires when a test suite is opened but before the first 
-         * test is executed.
-         * @event testsuitebegin
-         */        
-        TEST_SUITE_BEGIN_EVENT /*:String*/ : "testsuitebegin",
-        
-        /**
-         * Fires when all test cases in a test suite have been
-         * completed.
-         * @event testsuitecomplete
-         */        
-        TEST_SUITE_COMPLETE_EVENT /*:String*/ : "testsuitecomplete",
-        
-        /**
-         * Fires when a test has passed.
-         * @event pass
-         */        
-        TEST_PASS_EVENT /*:String*/ : "pass",
-        
-        /**
-         * Fires when a test has failed.
-         * @event fail
-         */        
-        TEST_FAIL_EVENT /*:String*/ : "fail",
-        
-        /**
-         * Fires when a test has been ignored.
-         * @event ignore
-         */        
-        TEST_IGNORE_EVENT /*:String*/ : "ignore",
-        
-        /**
-         * Fires when all test suites and test cases have been completed.
-         * @event complete
-         */        
-        COMPLETE_EVENT /*:String*/ : "complete",
-        
-        /**
-         * Fires when the run() method is called.
-         * @event begin
-         */        
-        BEGIN_EVENT /*:String*/ : "begin",    
-        
-        //-------------------------------------------------------------------------
-        // Test Tree-Related Methods
-        //-------------------------------------------------------------------------
-
-        /**
-         * Adds a test case to the test tree as a child of the specified node.
-         * @param {TestNode} parentNode The node to add the test case to as a child.
-         * @param {YAHOO.tool.TestCase} testCase The test case to add.
-         * @return {Void}
-         * @static
-         * @private
-         * @method _addTestCaseToTestTree
-         */
-       _addTestCaseToTestTree : function (parentNode /*:TestNode*/, testCase /*:YAHOO.tool.TestCase*/) /*:Void*/{
-            
-            //add the test suite
-            var node = parentNode.appendChild(testCase);
-            
-            //iterate over the items in the test case
-            for (var prop in testCase){
-                if (prop.indexOf("test") === 0 && YAHOO.lang.isFunction(testCase[prop])){
-                    node.appendChild(prop);
-                }
-            }
-         
-        },
-        
-        /**
-         * Adds a test suite to the test tree as a child of the specified node.
-         * @param {TestNode} parentNode The node to add the test suite to as a child.
-         * @param {YAHOO.tool.TestSuite} testSuite The test suite to add.
-         * @return {Void}
-         * @static
-         * @private
-         * @method _addTestSuiteToTestTree
-         */
-        _addTestSuiteToTestTree : function (parentNode /*:TestNode*/, testSuite /*:YAHOO.tool.TestSuite*/) /*:Void*/ {
-            
-            //add the test suite
-            var node = parentNode.appendChild(testSuite);
-            
-            //iterate over the items in the master suite
-            for (var i=0; i < testSuite.items.length; i++){
-                if (testSuite.items[i] instanceof YAHOO.tool.TestSuite) {
-                    this._addTestSuiteToTestTree(node, testSuite.items[i]);
-                } else if (testSuite.items[i] instanceof YAHOO.tool.TestCase) {
-                    this._addTestCaseToTestTree(node, testSuite.items[i]);
-                }                   
-            }            
-        },
-        
-        /**
-         * Builds the test tree based on items in the master suite. The tree is a hierarchical
-         * representation of the test suites, test cases, and test functions. The resulting tree
-         * is stored in _root and the pointer _cur is set to the root initially.
-         * @return {Void}
-         * @static
-         * @private
-         * @method _buildTestTree
-         */
-        _buildTestTree : function () /*:Void*/ {
-        
-            this._root = new TestNode(this.masterSuite);
-            this._cur = this._root;
-            
-            //iterate over the items in the master suite
-            for (var i=0; i < this.masterSuite.items.length; i++){
-                if (this.masterSuite.items[i] instanceof YAHOO.tool.TestSuite) {
-                    this._addTestSuiteToTestTree(this._root, this.masterSuite.items[i]);
-                } else if (this.masterSuite.items[i] instanceof YAHOO.tool.TestCase) {
-                    this._addTestCaseToTestTree(this._root, this.masterSuite.items[i]);
-                }                   
-            }            
-        
-        }, 
-    
-        //-------------------------------------------------------------------------
-        // Private Methods
-        //-------------------------------------------------------------------------
-        
-        /**
-         * Handles the completion of a test object's tests. Tallies test results 
-         * from one level up to the next.
-         * @param {TestNode} node The TestNode representing the test object.
-         * @return {Void}
-         * @method _handleTestObjectComplete
-         * @private
-         * @static
-         */
-        _handleTestObjectComplete : function (node /*:TestNode*/) /*:Void*/ {
-            if (YAHOO.lang.isObject(node.testObject)){
-                node.parent.results.passed += node.results.passed;
-                node.parent.results.failed += node.results.failed;
-                node.parent.results.total += node.results.total;                
-                node.parent.results.ignored += node.results.ignored;                
-                node.parent.results[node.testObject.name] = node.results;
-            
-                if (node.testObject instanceof YAHOO.tool.TestSuite){
-                    node.testObject.tearDown();
-                    this.fireEvent(this.TEST_SUITE_COMPLETE_EVENT, { testSuite: node.testObject, results: node.results});
-                } else if (node.testObject instanceof YAHOO.tool.TestCase){
-                    this.fireEvent(this.TEST_CASE_COMPLETE_EVENT, { testCase: node.testObject, results: node.results});
-                }      
-            } 
-        },                
-        
-        //-------------------------------------------------------------------------
-        // Navigation Methods
-        //-------------------------------------------------------------------------
-        
-        /**
-         * Retrieves the next node in the test tree.
-         * @return {TestNode} The next node in the test tree or null if the end is reached.
-         * @private
-         * @static
-         * @method _next
-         */
-        _next : function () /*:TestNode*/ {
-        
-            if (this._cur.firstChild) {
-                this._cur = this._cur.firstChild;
-            } else if (this._cur.next) {
-                this._cur = this._cur.next;            
-            } else {
-                while (this._cur && !this._cur.next && this._cur !== this._root){
-                    this._handleTestObjectComplete(this._cur);
-                    this._cur = this._cur.parent;
-                }
-                
-                if (this._cur == this._root){
-                    this._cur.results.type = "report";
-                    this._cur.results.timestamp = (new Date()).toLocaleString();
-                    this._cur.results.duration = (new Date()) - this._cur.results.duration;
-                    this.fireEvent(this.COMPLETE_EVENT, { results: this._cur.results});
-                    this._cur = null;
-                } else {
-                    this._handleTestObjectComplete(this._cur);               
-                    this._cur = this._cur.next;                
-                }
-            }
-        
-            return this._cur;
-        },
-        
-        /**
-         * Runs a test case or test suite, returning the results.
-         * @param {YAHOO.tool.TestCase|YAHOO.tool.TestSuite} testObject The test case or test suite to run.
-         * @return {Object} Results of the execution with properties passed, failed, and total.
-         * @private
-         * @method _run
-         * @static
-         */
-        _run : function () /*:Void*/ {
-        
-            //flag to indicate if the TestRunner should wait before continuing
-            var shouldWait /*:Boolean*/ = false;
-            
-            //get the next test node
-            var node = this._next();
-            
-            if (node !== null) {
-                var testObject = node.testObject;
-                
-                //figure out what to do
-                if (YAHOO.lang.isObject(testObject)){
-                    if (testObject instanceof YAHOO.tool.TestSuite){
-                        this.fireEvent(this.TEST_SUITE_BEGIN_EVENT, { testSuite: testObject });
-                        testObject.setUp();
-                    } else if (testObject instanceof YAHOO.tool.TestCase){
-                        this.fireEvent(this.TEST_CASE_BEGIN_EVENT, { testCase: testObject });
-                    }
-                    
-                    //some environments don't support setTimeout
-                    if (typeof setTimeout != "undefined"){                    
-                        setTimeout(function(){
-                            YAHOO.tool.TestRunner._run();
-                        }, 0);
-                    } else {
-                        this._run();
-                    }
-                } else {
-                    this._runTest(node);
-                }
-
-            }
-        },
-        
-        _resumeTest : function (segment /*:Function*/) /*:Void*/ {
-        
-            //get relevant information
-            var node /*:TestNode*/ = this._cur;
-            var testName /*:String*/ = node.testObject;
-            var testCase /*:YAHOO.tool.TestCase*/ = node.parent.testObject;
-            
-            //cancel other waits if available
-            if (testCase.__yui_wait){
-                clearTimeout(testCase.__yui_wait);
-                delete testCase.__yui_wait;
-            }            
-            
-            //get the "should" test cases
-            var shouldFail /*:Object*/ = (testCase._should.fail || {})[testName];
-            var shouldError /*:Object*/ = (testCase._should.error || {})[testName];
-            
-            //variable to hold whether or not the test failed
-            var failed /*:Boolean*/ = false;
-            var error /*:Error*/ = null;
-                
-            //try the test
-            try {
-            
-                //run the test
-                segment.apply(testCase);
-                
-                //if it should fail, and it got here, then it's a fail because it didn't
-                if (shouldFail){
-                    error = new YAHOO.util.ShouldFail();
-                    failed = true;
-                } else if (shouldError){
-                    error = new YAHOO.util.ShouldError();
-                    failed = true;
-                }
-                           
-            } catch (thrown /*:Error*/){
-                if (thrown instanceof YAHOO.util.AssertionError) {
-                    if (!shouldFail){
-                        error = thrown;
-                        failed = true;
-                    }
-                } else if (thrown instanceof YAHOO.tool.TestCase.Wait){
-                
-                    if (YAHOO.lang.isFunction(thrown.segment)){
-                        if (YAHOO.lang.isNumber(thrown.delay)){
-                        
-                            //some environments don't support setTimeout
-                            if (typeof setTimeout != "undefined"){
-                                testCase.__yui_wait = setTimeout(function(){
-                                    YAHOO.tool.TestRunner._resumeTest(thrown.segment);
-                                }, thrown.delay);                             
-                            } else {
-                                throw new Error("Asynchronous tests not supported in this environment.");
-                            }
-                        }
-                    }
-                    
-                    return;
-                
-                } else {
-                    //first check to see if it should error
-                    if (!shouldError) {                        
-                        error = new YAHOO.util.UnexpectedError(thrown);
-                        failed = true;
-                    } else {
-                        //check to see what type of data we have
-                        if (YAHOO.lang.isString(shouldError)){
-                            
-                            //if it's a string, check the error message
-                            if (thrown.message != shouldError){
-                                error = new YAHOO.util.UnexpectedError(thrown);
-                                failed = true;                                    
-                            }
-                        } else if (YAHOO.lang.isFunction(shouldError)){
-                        
-                            //if it's a function, see if the error is an instance of it
-                            if (!(thrown instanceof shouldError)){
-                                error = new YAHOO.util.UnexpectedError(thrown);
-                                failed = true;
-                            }
-                        
-                        } else if (YAHOO.lang.isObject(shouldError)){
-                        
-                            //if it's an object, check the instance and message
-                            if (!(thrown instanceof shouldError.constructor) || 
-                                    thrown.message != shouldError.message){
-                                error = new YAHOO.util.UnexpectedError(thrown);
-                                failed = true;                                    
-                            }
-                        
-                        }
-                    
-                    }
-                }
-                
-            }
-            
-            //fireEvent appropriate event
-            if (failed) {
-                this.fireEvent(this.TEST_FAIL_EVENT, { testCase: testCase, testName: testName, error: error });
-            } else {
-                this.fireEvent(this.TEST_PASS_EVENT, { testCase: testCase, testName: testName });
-            }
-            
-            //run the tear down
-            testCase.tearDown();
-            
-            //update results
-            node.parent.results[testName] = { 
-                result: failed ? "fail" : "pass",
-                message: error ? error.getMessage() : "Test passed",
-                type: "test",
-                name: testName
-            };
-            
-            if (failed){
-                node.parent.results.failed++;
-            } else {
-                node.parent.results.passed++;
-            }
-            node.parent.results.total++;
-
-            //set timeout not supported in all environments
-            if (typeof setTimeout != "undefined"){
-                setTimeout(function(){
-                    YAHOO.tool.TestRunner._run();
-                }, 0);
-            } else {
-                this._run();
-            }
-        
-        },
-                
-        /**
-         * Runs a single test based on the data provided in the node.
-         * @param {TestNode} node The TestNode representing the test to run.
-         * @return {Void}
-         * @static
-         * @private
-         * @name _runTest
-         */
-        _runTest : function (node /*:TestNode*/) /*:Void*/ {
-        
-            //get relevant information
-            var testName /*:String*/ = node.testObject;
-            var testCase /*:YAHOO.tool.TestCase*/ = node.parent.testObject;
-            var test /*:Function*/ = testCase[testName];
-            
-            //get the "should" test cases
-            var shouldIgnore /*:Object*/ = (testCase._should.ignore || {})[testName];
-            
-            //figure out if the test should be ignored or not
-            if (shouldIgnore){
-            
-                //update results
-                node.parent.results[testName] = { 
-                    result: "ignore",
-                    message: "Test ignored",
-                    type: "test",
-                    name: testName
-                };
-                
-                node.parent.results.ignored++;
-                node.parent.results.total++;
-            
-                this.fireEvent(this.TEST_IGNORE_EVENT, { testCase: testCase, testName: testName });
-                
-                //some environments don't support setTimeout
-                if (typeof setTimeout != "undefined"){                    
-                    setTimeout(function(){
-                        YAHOO.tool.TestRunner._run();
-                    }, 0);              
-                } else {
-                    this._run();
-                }
-
-            } else {
-            
-                //run the setup
-                testCase.setUp();
-                
-                //now call the body of the test
-                this._resumeTest(test);                
-            }
-
-        },        
-        
-        //-------------------------------------------------------------------------
-        // Protected Methods
-        //-------------------------------------------------------------------------   
-    
-        /**
-         * Fires events for the TestRunner. This overrides the default fireEvent()
-         * method from EventProvider to add the type property to the data that is
-         * passed through on each event call.
-         * @param {String} type The type of event to fire.
-         * @param {Object} data (Optional) Data for the event.
-         * @method fireEvent
-         * @static
-         * @protected
-         */
-        fireEvent : function (type /*:String*/, data /*:Object*/) /*:Void*/ {
-            data = data || {};
-            data.type = type;
-            TestRunner.superclass.fireEvent.call(this, type, data);
-        },
-        
-        //-------------------------------------------------------------------------
-        // Public Methods
-        //-------------------------------------------------------------------------   
-    
-        /**
-         * Adds a test suite or test case to the list of test objects to run.
-         * @param testObject Either a TestCase or a TestSuite that should be run.
-         * @return {Void}
-         * @method add
-         * @static
-         */
-        add : function (testObject /*:Object*/) /*:Void*/ {
-            this.masterSuite.add(testObject);
-        },
-        
-        /**
-         * Removes all test objects from the runner.
-         * @return {Void}
-         * @method clear
-         * @static
-         */
-        clear : function () /*:Void*/ {
-            this.masterSuite.items = [];
-        },
-        
-        /**
-         * Resumes the TestRunner after wait() was called.
-         * @param {Function} segment The function to run as the rest
-         *      of the haulted test.
-         * @return {Void}
-         * @method resume
-         * @static
-         */
-        resume : function (segment /*:Function*/) /*:Void*/ {
-            this._resumeTest(segment || function(){});
-        },
-    
-        /**
-         * Runs the test suite.
-         * @return {Void}
-         * @method run
-         * @static
-         */
-        run : function (testObject /*:Object*/) /*:Void*/ {
-            
-            //pointer to runner to avoid scope issues 
-            var runner = YAHOO.tool.TestRunner;
-
-            //build the test tree
-            runner._buildTestTree();
-            
-            //set when the test started
-            runner._root.results.duration = (new Date()).valueOf();
-            
-            //fire the begin event
-            runner.fireEvent(runner.BEGIN_EVENT);
-       
-            //begin the testing
-            runner._run();
-        }    
-    });
-    
-    return new TestRunner();
-    
-})();
-
-YAHOO.namespace("util");
-
-//-----------------------------------------------------------------------------
-// Assert object
-//-----------------------------------------------------------------------------
-
-/**
- * The Assert object provides functions to test JavaScript values against
- * known and expected results. Whenever a comparison (assertion) fails,
- * an error is thrown.
- *
- * @namespace YAHOO.util
- * @class Assert
- * @static
- */
-YAHOO.util.Assert = {
-
-    //-------------------------------------------------------------------------
-    // Helper Methods
-    //-------------------------------------------------------------------------
-    
-    /**
-     * Formats a message so that it can contain the original assertion message
-     * in addition to the custom message.
-     * @param {String} customMessage The message passed in by the developer.
-     * @param {String} defaultMessage The message created by the error by default.
-     * @return {String} The final error message, containing either or both.
-     * @protected
-     * @static
-     * @method _formatMessage
-     */
-    _formatMessage : function (customMessage /*:String*/, defaultMessage /*:String*/) /*:String*/ {
-        var message = customMessage;
-        if (YAHOO.lang.isString(customMessage) && customMessage.length > 0){
-            return YAHOO.lang.substitute(customMessage, { message: defaultMessage });
-        } else {
-            return defaultMessage;
-        }        
-    },
-    
-    //-------------------------------------------------------------------------
-    // Generic Assertion Methods
-    //-------------------------------------------------------------------------
-    
-    /** 
-     * Forces an assertion error to occur.
-     * @param {String} message (Optional) The message to display with the failure.
-     * @method fail
-     * @static
-     */
-    fail : function (message /*:String*/) /*:Void*/ {
-        throw new YAHOO.util.AssertionError(this._formatMessage(message, "Test force-failed."));
-    },       
-    
-    //-------------------------------------------------------------------------
-    // Equality Assertion Methods
-    //-------------------------------------------------------------------------    
-    
-    /**
-     * Asserts that a value is equal to another. This uses the double equals sign
-     * so type cohersion may occur.
-     * @param {Object} expected The expected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areEqual
-     * @static
-     */
-    areEqual : function (expected /*:Object*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (expected != actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Values should be equal."), expected, actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is not equal to another. This uses the double equals sign
-     * so type cohersion may occur.
-     * @param {Object} unexpected The unexpected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areNotEqual
-     * @static
-     */
-    areNotEqual : function (unexpected /*:Object*/, actual /*:Object*/, 
-                         message /*:String*/) /*:Void*/ {
-        if (unexpected == actual) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be equal."), unexpected);
-        }
-    },
-    
-    /**
-     * Asserts that a value is not the same as another. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} unexpected The unexpected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areNotSame
-     * @static
-     */
-    areNotSame : function (unexpected /*:Object*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (unexpected === actual) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be the same."), unexpected);
-        }
-    },
-
-    /**
-     * Asserts that a value is the same as another. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} expected The expected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areSame
-     * @static
-     */
-    areSame : function (expected /*:Object*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (expected !== actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Values should be the same."), expected, actual);
-        }
-    },    
-    
-    //-------------------------------------------------------------------------
-    // Boolean Assertion Methods
-    //-------------------------------------------------------------------------    
-    
-    /**
-     * Asserts that a value is false. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isFalse
-     * @static
-     */
-    isFalse : function (actual /*:Boolean*/, message /*:String*/) {
-        if (false !== actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be false."), false, actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is true. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isTrue
-     * @static
-     */
-    isTrue : function (actual /*:Boolean*/, message /*:String*/) /*:Void*/ {
-        if (true !== actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be true."), true, actual);
-        }
-
-    },
-    
-    //-------------------------------------------------------------------------
-    // Special Value Assertion Methods
-    //-------------------------------------------------------------------------    
-    
-    /**
-     * Asserts that a value is not a number.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNaN
-     * @static
-     */
-    isNaN : function (actual /*:Object*/, message /*:String*/) /*:Void*/{
-        if (!isNaN(actual)){
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be NaN."), NaN, actual);
-        }    
-    },
-    
-    /**
-     * Asserts that a value is not the special NaN value.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotNaN
-     * @static
-     */
-    isNotNaN : function (actual /*:Object*/, message /*:String*/) /*:Void*/{
-        if (isNaN(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be NaN."), NaN);
-        }    
-    },
-    
-    /**
-     * Asserts that a value is not null. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotNull
-     * @static
-     */
-    isNotNull : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (YAHOO.lang.isNull(actual)) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be null."), null);
-        }
-    },
-
-    /**
-     * Asserts that a value is not undefined. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotUndefined
-     * @static
-     */
-    isNotUndefined : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (YAHOO.lang.isUndefined(actual)) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should not be undefined."), undefined);
-        }
-    },
-
-    /**
-     * Asserts that a value is null. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNull
-     * @static
-     */
-    isNull : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isNull(actual)) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be null."), null, actual);
-        }
-    },
-        
-    /**
-     * Asserts that a value is undefined. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isUndefined
-     * @static
-     */
-    isUndefined : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isUndefined(actual)) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be undefined."), undefined, actual);
-        }
-    },    
-    
-    //--------------------------------------------------------------------------
-    // Instance Assertion Methods
-    //--------------------------------------------------------------------------    
-   
-    /**
-     * Asserts that a value is an array.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isArray
-     * @static
-     */
-    isArray : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isArray(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be an array."), actual);
-        }    
-    },
-   
-    /**
-     * Asserts that a value is a Boolean.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isBoolean
-     * @static
-     */
-    isBoolean : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isBoolean(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a Boolean."), actual);
-        }    
-    },
-   
-    /**
-     * Asserts that a value is a function.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isFunction
-     * @static
-     */
-    isFunction : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isFunction(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a function."), actual);
-        }    
-    },
-   
-    /**
-     * Asserts that a value is an instance of a particular object. This may return
-     * incorrect results when comparing objects from one frame to constructors in
-     * another frame. For best results, don't use in a cross-frame manner.
-     * @param {Function} expected The function that the object should be an instance of.
-     * @param {Object} actual The object to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isInstanceOf
-     * @static
-     */
-    isInstanceOf : function (expected /*:Function*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!(actual instanceof expected)){
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value isn't an instance of expected type."), expected, actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is a number.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNumber
-     * @static
-     */
-    isNumber : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isNumber(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a number."), actual);
-        }    
-    },    
-    
-    /**
-     * Asserts that a value is an object.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isObject
-     * @static
-     */
-    isObject : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isObject(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be an object."), actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is a string.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isString
-     * @static
-     */
-    isString : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isString(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a string."), actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is of a particular type. 
-     * @param {String} expectedType The expected type of the variable.
-     * @param {Object} actualValue The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isTypeOf
-     * @static
-     */
-    isTypeOf : function (expectedType /*:String*/, actualValue /*:Object*/, message /*:String*/) /*:Void*/{
-        if (typeof actualValue != expectedType){
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be of type " + expected + "."), expected, typeof actual);
-        }
-    }
-};
-
-//-----------------------------------------------------------------------------
-// Assertion errors
-//-----------------------------------------------------------------------------
-
-/**
- * AssertionError is thrown whenever an assertion fails. It provides methods
- * to more easily get at error information and also provides a base class
- * from which more specific assertion errors can be derived.
- *
- * @param {String} message The message to display when the error occurs.
- * @namespace YAHOO.util
- * @class AssertionError
- * @extends Error
- * @constructor
- */ 
-YAHOO.util.AssertionError = function (message /*:String*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message);
-    
-    /*
-     * Error message. Must be duplicated to ensure browser receives it.
-     * @type String
-     * @property message
-     */
-    this.message /*:String*/ = message;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "AssertionError";
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.AssertionError, Error, {
-
-    /**
-     * Returns a fully formatted error for an assertion failure. This should
-     * be overridden by all subclasses to provide specific information.
-     * @method getMessage
-     * @return {String} A string describing the error.
-     */
-    getMessage : function () /*:String*/ {
-        return this.message;
-    },
-    
-    /**
-     * Returns a string representation of the error.
-     * @method toString
-     * @return {String} A string representation of the error.
-     */
-    toString : function () /*:String*/ {
-        return this.name + ": " + this.getMessage();
-    },
-    
-    /**
-     * Returns a primitive value version of the error. Same as toString().
-     * @method valueOf
-     * @return {String} A primitive value version of the error.
-     */
-    valueOf : function () /*:String*/ {
-        return this.toString();
-    }
-
-});
-
-/**
- * ComparisonFailure is subclass of AssertionError that is thrown whenever
- * a comparison between two values fails. It provides mechanisms to retrieve
- * both the expected and actual value.
- *
- * @param {String} message The message to display when the error occurs.
- * @param {Object} expected The expected value.
- * @param {Object} actual The actual value that caused the assertion to fail.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class ComparisonFailure
- * @constructor
- */ 
-YAHOO.util.ComparisonFailure = function (message /*:String*/, expected /*:Object*/, actual /*:Object*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message);
-    
-    /**
-     * The expected value.
-     * @type Object
-     * @property expected
-     */
-    this.expected /*:Object*/ = expected;
-    
-    /**
-     * The actual value.
-     * @type Object
-     * @property actual
-     */
-    this.actual /*:Object*/ = actual;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "ComparisonFailure";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.ComparisonFailure, YAHOO.util.AssertionError, {
-
-    /**
-     * Returns a fully formatted error for an assertion failure. This message
-     * provides information about the expected and actual values.
-     * @method toString
-     * @return {String} A string describing the error.
-     */
-    getMessage : function () /*:String*/ {
-        return this.message + "\nExpected: " + this.expected + " (" + (typeof this.expected) + ")"  +
-            "\nActual:" + this.actual + " (" + (typeof this.actual) + ")";
-    }
-
-});
-
-/**
- * UnexpectedValue is subclass of AssertionError that is thrown whenever
- * a value was unexpected in its scope. This typically means that a test
- * was performed to determine that a value was *not* equal to a certain
- * value.
- *
- * @param {String} message The message to display when the error occurs.
- * @param {Object} unexpected The unexpected value.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class UnexpectedValue
- * @constructor
- */ 
-YAHOO.util.UnexpectedValue = function (message /*:String*/, unexpected /*:Object*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message);
-    
-    /**
-     * The unexpected value.
-     * @type Object
-     * @property unexpected
-     */
-    this.unexpected /*:Object*/ = unexpected;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "UnexpectedValue";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.UnexpectedValue, YAHOO.util.AssertionError, {
-
-    /**
-     * Returns a fully formatted error for an assertion failure. The message
-     * contains information about the unexpected value that was encountered.
-     * @method getMessage
-     * @return {String} A string describing the error.
-     */
-    getMessage : function () /*:String*/ {
-        return this.message + "\nUnexpected: " + this.unexpected + " (" + (typeof this.unexpected) + ") ";
-    }
-
-});
-
-/**
- * ShouldFail is subclass of AssertionError that is thrown whenever
- * a test was expected to fail but did not.
- *
- * @param {String} message The message to display when the error occurs.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class ShouldFail
- * @constructor
- */  
-YAHOO.util.ShouldFail = function (message /*:String*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message || "This test should fail but didn't.");
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "ShouldFail";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.ShouldFail, YAHOO.util.AssertionError);
-
-/**
- * ShouldError is subclass of AssertionError that is thrown whenever
- * a test is expected to throw an error but doesn't.
- *
- * @param {String} message The message to display when the error occurs.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class ShouldError
- * @constructor
- */  
-YAHOO.util.ShouldError = function (message /*:String*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message || "This test should have thrown an error but didn't.");
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "ShouldError";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.ShouldError, YAHOO.util.AssertionError);
-
-/**
- * UnexpectedError is subclass of AssertionError that is thrown whenever
- * an error occurs within the course of a test and the test was not expected
- * to throw an error.
- *
- * @param {Error} cause The unexpected error that caused this error to be 
- *                      thrown.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class UnexpectedError
- * @constructor
- */  
-YAHOO.util.UnexpectedError = function (cause /*:Object*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, "Unexpected error: " + cause.message);
-    
-    /**
-     * The unexpected error that occurred.
-     * @type Error
-     * @property cause
-     */
-    this.cause /*:Error*/ = cause;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "UnexpectedError";
-    
-    /**
-     * Stack information for the error (if provided).
-     * @type String
-     * @property stack
-     */
-    this.stack /*:String*/ = cause.stack;
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.UnexpectedError, YAHOO.util.AssertionError);
-
-//-----------------------------------------------------------------------------
-// ArrayAssert object
-//-----------------------------------------------------------------------------
-
-/**
- * The ArrayAssert object provides functions to test JavaScript array objects
- * for a variety of cases.
- *
- * @namespace YAHOO.util
- * @class ArrayAssert
- * @static
- */
- 
-YAHOO.util.ArrayAssert = {
-
-    /**
-     * Asserts that a value is present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur.
-     * @param {Object} needle The value that is expected in the array.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method contains
-     * @static
-     */
-    contains : function (needle /*:Object*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (haystack[i] === needle) {
-                found = true;
-            }
-        }
-        
-        if (!found){
-            Assert.fail(Assert._formatMessage(message, "Value " + needle + " (" + (typeof needle) + ") not found in array [" + haystack + "]."));
-        }
-    },
-
-    /**
-     * Asserts that a set of values are present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur. For this assertion to pass, all values must
-     * be found.
-     * @param {Object[]} needles An array of values that are expected in the array.
-     * @param {Array} haystack An array of values to check.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method containsItems
-     * @static
-     */
-    containsItems : function (needles /*:Object[]*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-
-        //begin checking values
-        for (var i=0; i < needles.length; i++){
-            this.contains(needles[i], haystack, message);
-        }
-    },
-
-    /**
-     * Asserts that a value matching some condition is present in an array. This uses
-     * a function to determine a match.
-     * @param {Function} matcher A function that returns true if the items matches or false if not.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method containsMatch
-     * @static
-     */
-    containsMatch : function (matcher /*:Function*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        //check for valid matcher
-        if (typeof matcher != "function"){
-            throw new TypeError("ArrayAssert.containsMatch(): First argument must be a function.");
-        }
-        
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (matcher(haystack[i])) {
-                found = true;
-            }
-        }
-        
-        if (!found){
-            Assert.fail(Assert._formatMessage(message, "No match found in array [" + haystack + "]."));
-        }
-    },
-
-    /**
-     * Asserts that a value is not present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur.
-     * @param {Object} needle The value that is expected in the array.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method doesNotContain
-     * @static
-     */
-    doesNotContain : function (needle /*:Object*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (haystack[i] === needle) {
-                found = true;
-            }
-        }
-        
-        if (found){
-            Assert.fail(Assert._formatMessage(message, "Value found in array [" + haystack + "]."));
-        }
-    },
-
-    /**
-     * Asserts that a set of values are not present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur. For this assertion to pass, all values must
-     * not be found.
-     * @param {Object[]} needles An array of values that are not expected in the array.
-     * @param {Array} haystack An array of values to check.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method doesNotContainItems
-     * @static
-     */
-    doesNotContainItems : function (needles /*:Object[]*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-
-        for (var i=0; i < needles.length; i++){
-            this.doesNotContain(needles[i], haystack, message);
-        }
-
-    },
-        
-    /**
-     * Asserts that no values matching a condition are present in an array. This uses
-     * a function to determine a match.
-     * @param {Function} matcher A function that returns true if the items matches or false if not.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method doesNotContainMatch
-     * @static
-     */
-    doesNotContainMatch : function (matcher /*:Function*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        //check for valid matcher
-        if (typeof matcher != "function"){
-            throw new TypeError("ArrayAssert.doesNotContainMatch(): First argument must be a function.");
-        }
-
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (matcher(haystack[i])) {
-                found = true;
-            }
-        }
-        
-        if (found){
-            Assert.fail(Assert._formatMessage(message, "Value found in array [" + haystack + "]."));
-        }
-    },
-        
-    /**
-     * Asserts that the given value is contained in an array at the specified index.
-     * This uses the triple equals sign so no type cohersion will occur.
-     * @param {Object} needle The value to look for.
-     * @param {Array} haystack The array to search in.
-     * @param {int} index The index at which the value should exist.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method indexOf
-     * @static
-     */
-    indexOf : function (needle /*:Object*/, haystack /*:Array*/, index /*:int*/, message /*:String*/) /*:Void*/ {
-    
-        //try to find the value in the array
-        for (var i=0; i < haystack.length; i++){
-            if (haystack[i] === needle){
-                YAHOO.util.Assert.areEqual(index, i, message || "Value exists at index " + i + " but should be at index " + index + ".");
-                return;
-            }
-        }
-        
-        var Assert = YAHOO.util.Assert;
-        
-        //if it makes it here, it wasn't found at all
-        Assert.fail(Assert._formatMessage(message, "Value doesn't exist in array [" + haystack + "]."));
-    },
-        
-    /**
-     * Asserts that the values in an array are equal, and in the same position,
-     * as values in another array. This uses the double equals sign
-     * so type cohersion may occur. Note that the array objects themselves
-     * need not be the same for this test to pass.
-     * @param {Array} expected An array of the expected values.
-     * @param {Array} actual Any array of the actual values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method itemsAreEqual
-     * @static
-     */
-    itemsAreEqual : function (expected /*:Array*/, actual /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        //one may be longer than the other, so get the maximum length
-        var len /*:int*/ = Math.max(expected.length, actual.length);
-        var Assert = YAHOO.util.Assert;
-       
-        //begin checking values
-        for (var i=0; i < len; i++){
-            Assert.areEqual(expected[i], actual[i], 
-                Assert._formatMessage(message, "Values in position " + i + " are not equal."));
-        }
-    },
-    
-    /**
-     * Asserts that the values in an array are equivalent, and in the same position,
-     * as values in another array. This uses a function to determine if the values
-     * are equivalent. Note that the array objects themselves
-     * need not be the same for this test to pass.
-     * @param {Array} expected An array of the expected values.
-     * @param {Array} actual Any array of the actual values.
-     * @param {Function} comparator A function that returns true if the values are equivalent
-     *      or false if not.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @return {Void}
-     * @method itemsAreEquivalent
-     * @static
-     */
-    itemsAreEquivalent : function (expected /*:Array*/, actual /*:Array*/, 
-                           comparator /*:Function*/, message /*:String*/) /*:Void*/ {
-        
-        //make sure the comparator is valid
-        if (typeof comparator != "function"){
-            throw new TypeError("ArrayAssert.itemsAreEquivalent(): Third argument must be a function.");
-        }
-        
-        //one may be longer than the other, so get the maximum length
-        var len /*:int*/ = Math.max(expected.length, actual.length);
-        
-        //begin checking values
-        for (var i=0; i < len; i++){
-            if (!comparator(expected[i], actual[i])){
-                throw new YAHOO.util.ComparisonFailure(YAHOO.util.Assert._formatMessage(message, "Values in position " + i + " are not equivalent."), expected[i], actual[i]);
-            }
-        }
-    },
-    
-    /**
-     * Asserts that an array is empty.
-     * @param {Array} actual The array to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isEmpty
-     * @static
-     */
-    isEmpty : function (actual /*:Array*/, message /*:String*/) /*:Void*/ {        
-        if (actual.length > 0){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Array should be empty."));
-        }
-    },    
-    
-    /**
-     * Asserts that an array is not empty.
-     * @param {Array} actual The array to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotEmpty
-     * @static
-     */
-    isNotEmpty : function (actual /*:Array*/, message /*:String*/) /*:Void*/ {        
-        if (actual.length === 0){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Array should not be empty."));
-        }
-    },    
-    
-    /**
-     * Asserts that the values in an array are the same, and in the same position,
-     * as values in another array. This uses the triple equals sign
-     * so no type cohersion will occur. Note that the array objects themselves
-     * need not be the same for this test to pass.
-     * @param {Array} expected An array of the expected values.
-     * @param {Array} actual Any array of the actual values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method itemsAreSame
-     * @static
-     */
-    itemsAreSame : function (expected /*:Array*/, actual /*:Array*/, 
-                          message /*:String*/) /*:Void*/ {
-        
-        //one may be longer than the other, so get the maximum length
-        var len /*:int*/ = Math.max(expected.length, actual.length);
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < len; i++){
-            Assert.areSame(expected[i], actual[i], 
-                Assert._formatMessage(message, "Values in position " + i + " are not the same."));
-        }
-    },
-    
-    /**
-     * Asserts that the given value is contained in an array at the specified index,
-     * starting from the back of the array.
-     * This uses the triple equals sign so no type cohersion will occur.
-     * @param {Object} needle The value to look for.
-     * @param {Array} haystack The array to search in.
-     * @param {int} index The index at which the value should exist.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method lastIndexOf
-     * @static
-     */
-    lastIndexOf : function (needle /*:Object*/, haystack /*:Array*/, index /*:int*/, message /*:String*/) /*:Void*/ {
-    
-        var Assert = YAHOO.util.Assert;
-    
-        //try to find the value in the array
-        for (var i=haystack.length; i >= 0; i--){
-            if (haystack[i] === needle){
-                Assert.areEqual(index, i, Assert._formatMessage(message, "Value exists at index " + i + " but should be at index " + index + "."));
-                return;
-            }
-        }
-        
-        //if it makes it here, it wasn't found at all
-        Assert.fail(Assert._formatMessage(message, "Value doesn't exist in array."));        
-    }
-    
-};
-
-YAHOO.namespace("util");
-
-
-//-----------------------------------------------------------------------------
-// ObjectAssert object
-//-----------------------------------------------------------------------------
-
-/**
- * The ObjectAssert object provides functions to test JavaScript objects
- * for a variety of cases.
- *
- * @namespace YAHOO.util
- * @class ObjectAssert
- * @static
- */
-YAHOO.util.ObjectAssert = {
-        
-    /**
-     * Asserts that all properties in the object exist in another object.
-     * @param {Object} expected An object with the expected properties.
-     * @param {Object} actual An object with the actual properties.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method propertiesAreEqual
-     * @static
-     */
-    propertiesAreEqual : function (expected /*:Object*/, actual /*:Object*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        var Assert = YAHOO.util.Assert;
-        
-        //get all properties in the object
-        var properties /*:Array*/ = [];        
-        for (var property in expected){
-            properties.push(property);
-        }
-        
-        //see if the properties are in the expected object
-        for (var i=0; i < properties.length; i++){
-            Assert.isNotUndefined(actual[properties[i]], 
-                Assert._formatMessage(message, "Property '" + properties[i] + "' expected."));
-        }
-
-    },
-    
-    /**
-     * Asserts that an object has a property with the given name.
-     * @param {String} propertyName The name of the property to test.
-     * @param {Object} object The object to search.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method hasProperty
-     * @static
-     */    
-    hasProperty : function (propertyName /*:String*/, object /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!(propertyName in object)){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Property '" + propertyName + "' not found on object."));
-        }    
-    },
-    
-    /**
-     * Asserts that a property with the given name exists on an object instance (not on its prototype).
-     * @param {String} propertyName The name of the property to test.
-     * @param {Object} object The object to search.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method hasProperty
-     * @static
-     */    
-    hasOwnProperty : function (propertyName /*:String*/, object /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.hasOwnProperty(object, propertyName)){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Property '" + propertyName + "' not found on object instance."));
-        }     
-    }
-};
-
-//-----------------------------------------------------------------------------
-// DateAssert object
-//-----------------------------------------------------------------------------
-
-/**
- * The DateAssert object provides functions to test JavaScript Date objects
- * for a variety of cases.
- *
- * @namespace YAHOO.util
- * @class DateAssert
- * @static
- */
- 
-YAHOO.util.DateAssert = {
-
-    /**
-     * Asserts that a date's month, day, and year are equal to another date's.
-     * @param {Date} expected The expected date.
-     * @param {Date} actual The actual date to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method datesAreEqual
-     * @static
-     */
-    datesAreEqual : function (expected /*:Date*/, actual /*:Date*/, message /*:String*/){
-        if (expected instanceof Date && actual instanceof Date){
-            var Assert = YAHOO.util.Assert;
-            Assert.areEqual(expected.getFullYear(), actual.getFullYear(), Assert._formatMessage(message, "Years should be equal."));
-            Assert.areEqual(expected.getMonth(), actual.getMonth(), Assert._formatMessage(message, "Months should be equal."));
-            Assert.areEqual(expected.getDate(), actual.getDate(), Assert._formatMessage(message, "Day of month should be equal."));
-        } else {
-            throw new TypeError("DateAssert.datesAreEqual(): Expected and actual values must be Date objects.");
-        }
-    },
-
-    /**
-     * Asserts that a date's hour, minutes, and seconds are equal to another date's.
-     * @param {Date} expected The expected date.
-     * @param {Date} actual The actual date to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method timesAreEqual
-     * @static
-     */
-    timesAreEqual : function (expected /*:Date*/, actual /*:Date*/, message /*:String*/){
-        if (expected instanceof Date && actual instanceof Date){
-            var Assert = YAHOO.util.Assert;
-            Assert.areEqual(expected.getHours(), actual.getHours(), Assert._formatMessage(message, "Hours should be equal."));
-            Assert.areEqual(expected.getMinutes(), actual.getMinutes(), Assert._formatMessage(message, "Minutes should be equal."));
-            Assert.areEqual(expected.getSeconds(), actual.getSeconds(), Assert._formatMessage(message, "Seconds should be equal."));
-        } else {
-            throw new TypeError("DateAssert.timesAreEqual(): Expected and actual values must be Date objects.");
-        }
-    }
-    
-};
-
-YAHOO.register("yuitest_core", YAHOO.tool.TestRunner, {version: "2.6.0", build: "1321"});
diff --git a/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest_core-min.js b/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest_core-min.js
deleted file mode 100644
index 788b6af..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest_core-min.js
+++ /dev/null
@@ -1,9 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.namespace("tool");(function(){var A=0;YAHOO.tool.TestCase=function(B){this._should={};for(var C in B){this[C]=B[C];}if(!YAHOO.lang.isString(this.name)){this.name="testCase"+(A++);}};YAHOO.tool.TestCase.prototype={resume:function(B){YAHOO.tool.TestRunner.resume(B);},wait:function(D,C){var B=arguments;if(YAHOO.lang.isFunction(B[0])){throw new YAHOO.tool.TestCase.Wait(B[0],B[1]);}else{throw new YAHOO.tool.TestCase.Wait(function(){YAHOO.util.Assert.fail("Timeout: wait() called but resume() never called.");},(YAHOO.lang.isNumber(B[0])?B[0]:10000));}},setUp:function(){},tearDown:function(){}};YAHOO.tool.TestCase.Wait=function(C,B){this.segment=(YAHOO.lang.isFunction(C)?C:null);this.delay=(YAHOO.lang.isNumber(B)?B:0);};})();YAHOO.namespace("tool");YAHOO.tool.TestSuite=function(A){this.name="";this.items=[];if(YAHOO.lang.isString(A)){this.name=A;}else{if(YAHOO.lang.isObject(A)){YAHOO.lang.augmentObject(this,A,true);}}if(this.name===""){this.name=YAHOO.util.Dom.generateId(null,"testSuite");}};YAHOO.tool.TestSuite.prototype={add:function(A){if(A instanceof YAHOO.tool.TestSuite||A instanceof YAHOO.tool.TestCase){this.items.push(A);}},setUp:function(){},tearDown:function(){}};YAHOO.namespace("tool");YAHOO.tool.TestRunner=(function(){function B(C){this.testObject=C;this.firstChild=null;this.lastChild=null;this.parent=null;this.next=null;this.results={passed:0,failed:0,total:0,ignored:0};if(C instanceof YAHOO.tool.TestSuite){this.results.type="testsuite";this.results.name=C.name;}else{if(C instanceof YAHOO.tool.TestCase){this.results.type="testcase";this.results.name=C.name;}}}B.prototype={appendChild:function(C){var D=new B(C);if(this.firstChild===null){this.firstChild=this.lastChild=D;}else{this.lastChild.next=D;this.lastChild=D;}D.parent=this;return D;}};function A(){A.superclass.constructor.apply(this,arguments);this.masterSuite=new YAHOO.tool.TestSuite("YUI Test Results");this._cur=null;this._root=null;var D=[this.TEST_CASE_BEGIN_EVENT,this.TEST_CASE_COMPLETE_EVENT,this.TEST_SUITE_BEGIN_EVENT,this.TEST_SUITE_COMPLETE_EVENT,this.TEST_PASS_EVENT,this.TEST_FAIL_EVENT,this.TEST_IGNORE_EVENT,this.COMPLETE_EVENT,this.BEGIN_EVENT];for(var C=0;C<D.length;C++){this.createEvent(D[C],{scope:this});}}YAHOO.lang.extend(A,YAHOO.util.EventProvider,{TEST_CASE_BEGIN_EVENT:"testcasebegin",TEST_CASE_COMPLETE_EVENT:"testcasecomplete",TEST_SUITE_BEGIN_EVENT:"testsuitebegin",TEST_SUITE_COMPLETE_EVENT:"testsuitecomplete",TEST_PASS_EVENT:"pass",TEST_FAIL_EVENT:"fail",TEST_IGNORE_EVENT:"ignore",COMPLETE_EVENT:"complete",BEGIN_EVENT:"begin",_addTestCaseToTestTree:function(C,D){var E=C.appendChild(D);for(var F in D){if(F.indexOf("test")===0&&YAHOO.lang.isFunction(D[F])){E.appendChild(F);}}},_addTestSuiteToTestTree:function(C,F){var E=C.appendChild(F);for(var D=0;D<F.items.length;D++){if(F.items[D] instanceof YAHOO.tool.TestSuite){this._addTestSuiteToTestTree(E,F.items[D]);}else{if(F.items[D] instanceof YAHOO.tool.TestCase){this._addTestCaseToTestTree(E,F.items[D]);}}}},_buildTestTree:function(){this._root=new B(this.masterSuite);this._cur=this._root;for(var C=0;C<this.masterSuite.items.length;C++){if(this.masterSuite.items[C] instanceof YAHOO.tool.TestSuite){this._addTestSuiteToTestTree(this._root,this.masterSuite.items[C]);}else{if(this.masterSuite.items[C] instanceof YAHOO.tool.TestCase){this._addTestCaseToTestTree(this._root,this.masterSuite.items[C]);}}}},_handleTestObjectComplete:function(C){if(YAHOO.lang.isObject(C.testObject)){C.parent.results.passed+=C.results.passed;C.parent.results.failed+=C.results.failed;C.parent.results.total+=C.results.total;C.parent.results.ignored+=C.results.ignored;C.parent.results[C.testObject.name]=C.results;if(C.testObject instanceof YAHOO.tool.TestSuite){C.testObject.tearDown();this.fireEvent(this.TEST_SUITE_COMPLETE_EVENT,{testSuite:C.testObject,results:C.results});}else{if(C.testObject instanceof YAHOO.tool.TestCase){this.fireEvent(this.TEST_CASE_COMPLETE_EVENT,{testCase:C.testObject,results:C.results});}}}},_next:function(){if(this._cur.firstChild){this._cur=this._cur.firstChild;}else{if(this._cur.next){this._cur=this._cur.next;}else{while(this._cur&&!this._cur.next&&this._cur!==this._root){this._handleTestObjectComplete(this._cur);this._cur=this._cur.parent;}if(this._cur==this._root){this._cur.results.type="report";this._cur.results.timestamp=(new Date()).toLocaleString();this._cur.results.duration=(new Date())-this._cur.results.duration;this.fireEvent(this.COMPLETE_EVENT,{results:this._cur.results});this._cur=null;}else{this._handleTestObjectComplete(this._cur);this._cur=this._cur.next;}}}return this._cur;},_run:function(){var E=false;var D=this._next();if(D!==null){var C=D.testObject;if(YAHOO.lang.isObject(C)){if(C instanceof YAHOO.tool.TestSuite){this.fireEvent(this.TEST_SUITE_BEGIN_EVENT,{testSuite:C});C.setUp();}else{if(C instanceof YAHOO.tool.TestCase){this.fireEvent(this.TEST_CASE_BEGIN_EVENT,{testCase:C});}}if(typeof setTimeout!="undefined"){setTimeout(function(){YAHOO.tool.TestRunner._run();},0);}else{this._run();}}else{this._runTest(D);}}},_resumeTest:function(G){var C=this._cur;var H=C.testObject;var E=C.parent.testObject;if(E.__yui_wait){clearTimeout(E.__yui_wait);delete E.__yui_wait;}var K=(E._should.fail||{})[H];var D=(E._should.error||{})[H];var F=false;var I=null;try{G.apply(E);if(K){I=new YAHOO.util.ShouldFail();F=true;}else{if(D){I=new YAHOO.util.ShouldError();F=true;}}}catch(J){if(J instanceof YAHOO.util.AssertionError){if(!K){I=J;F=true;}}else{if(J instanceof YAHOO.tool.TestCase.Wait){if(YAHOO.lang.isFunction(J.segment)){if(YAHOO.lang.isNumber(J.delay)){if(typeof setTimeout!="undefined"){E.__yui_wait=setTimeout(function(){YAHOO.tool.TestRunner._resumeTest(J.segment);},J.delay);}else{throw new Error("Asynchronous tests not supported in this environment.");}}}return ;}else{if(!D){I=new YAHOO.util.UnexpectedError(J);F=true;}else{if(YAHOO.lang.isString(D)){if(J.message!=D){I=new YAHOO.util.UnexpectedError(J);F=true;}}else{if(YAHOO.lang.isFunction(D)){if(!(J instanceof D)){I=new YAHOO.util.UnexpectedError(J);
-F=true;}}else{if(YAHOO.lang.isObject(D)){if(!(J instanceof D.constructor)||J.message!=D.message){I=new YAHOO.util.UnexpectedError(J);F=true;}}}}}}}}if(F){this.fireEvent(this.TEST_FAIL_EVENT,{testCase:E,testName:H,error:I});}else{this.fireEvent(this.TEST_PASS_EVENT,{testCase:E,testName:H});}E.tearDown();C.parent.results[H]={result:F?"fail":"pass",message:I?I.getMessage():"Test passed",type:"test",name:H};if(F){C.parent.results.failed++;}else{C.parent.results.passed++;}C.parent.results.total++;if(typeof setTimeout!="undefined"){setTimeout(function(){YAHOO.tool.TestRunner._run();},0);}else{this._run();}},_runTest:function(F){var C=F.testObject;var D=F.parent.testObject;var G=D[C];var E=(D._should.ignore||{})[C];if(E){F.parent.results[C]={result:"ignore",message:"Test ignored",type:"test",name:C};F.parent.results.ignored++;F.parent.results.total++;this.fireEvent(this.TEST_IGNORE_EVENT,{testCase:D,testName:C});if(typeof setTimeout!="undefined"){setTimeout(function(){YAHOO.tool.TestRunner._run();},0);}else{this._run();}}else{D.setUp();this._resumeTest(G);}},fireEvent:function(C,D){D=D||{};D.type=C;A.superclass.fireEvent.call(this,C,D);},add:function(C){this.masterSuite.add(C);},clear:function(){this.masterSuite.items=[];},resume:function(C){this._resumeTest(C||function(){});},run:function(C){var D=YAHOO.tool.TestRunner;D._buildTestTree();D._root.results.duration=(new Date()).valueOf();D.fireEvent(D.BEGIN_EVENT);D._run();}});return new A();})();YAHOO.namespace("util");YAHOO.util.Assert={_formatMessage:function(B,A){var C=B;if(YAHOO.lang.isString(B)&&B.length>0){return YAHOO.lang.substitute(B,{message:A});}else{return A;}},fail:function(A){throw new YAHOO.util.AssertionError(this._formatMessage(A,"Test force-failed."));},areEqual:function(B,C,A){if(B!=C){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Values should be equal."),B,C);}},areNotEqual:function(A,C,B){if(A==C){throw new YAHOO.util.UnexpectedValue(this._formatMessage(B,"Values should not be equal."),A);}},areNotSame:function(A,C,B){if(A===C){throw new YAHOO.util.UnexpectedValue(this._formatMessage(B,"Values should not be the same."),A);}},areSame:function(B,C,A){if(B!==C){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Values should be the same."),B,C);}},isFalse:function(B,A){if(false!==B){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Value should be false."),false,B);}},isTrue:function(B,A){if(true!==B){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Value should be true."),true,B);}},isNaN:function(B,A){if(!isNaN(B)){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Value should be NaN."),NaN,B);}},isNotNaN:function(B,A){if(isNaN(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Values should not be NaN."),NaN);}},isNotNull:function(B,A){if(YAHOO.lang.isNull(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Values should not be null."),null);}},isNotUndefined:function(B,A){if(YAHOO.lang.isUndefined(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Value should not be undefined."),undefined);}},isNull:function(B,A){if(!YAHOO.lang.isNull(B)){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Value should be null."),null,B);}},isUndefined:function(B,A){if(!YAHOO.lang.isUndefined(B)){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Value should be undefined."),undefined,B);}},isArray:function(B,A){if(!YAHOO.lang.isArray(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Value should be an array."),B);}},isBoolean:function(B,A){if(!YAHOO.lang.isBoolean(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Value should be a Boolean."),B);}},isFunction:function(B,A){if(!YAHOO.lang.isFunction(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Value should be a function."),B);}},isInstanceOf:function(B,C,A){if(!(C instanceof B)){throw new YAHOO.util.ComparisonFailure(this._formatMessage(A,"Value isn't an instance of expected type."),B,C);}},isNumber:function(B,A){if(!YAHOO.lang.isNumber(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Value should be a number."),B);}},isObject:function(B,A){if(!YAHOO.lang.isObject(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Value should be an object."),B);}},isString:function(B,A){if(!YAHOO.lang.isString(B)){throw new YAHOO.util.UnexpectedValue(this._formatMessage(A,"Value should be a string."),B);}},isTypeOf:function(A,C,B){if(typeof C!=A){throw new YAHOO.util.ComparisonFailure(this._formatMessage(B,"Value should be of type "+expected+"."),expected,typeof actual);}}};YAHOO.util.AssertionError=function(A){arguments.callee.superclass.constructor.call(this,A);this.message=A;this.name="AssertionError";};YAHOO.lang.extend(YAHOO.util.AssertionError,Error,{getMessage:function(){return this.message;},toString:function(){return this.name+": "+this.getMessage();},valueOf:function(){return this.toString();}});YAHOO.util.ComparisonFailure=function(B,A,C){arguments.callee.superclass.constructor.call(this,B);this.expected=A;this.actual=C;this.name="ComparisonFailure";};YAHOO.lang.extend(YAHOO.util.ComparisonFailure,YAHOO.util.AssertionError,{getMessage:function(){return this.message+"\nExpected: "+this.expected+" ("+(typeof this.expected)+")\nActual:"+this.actual+" ("+(typeof this.actual)+")";}});YAHOO.util.UnexpectedValue=function(B,A){arguments.callee.superclass.constructor.call(this,B);this.unexpected=A;this.name="UnexpectedValue";};YAHOO.lang.extend(YAHOO.util.UnexpectedValue,YAHOO.util.AssertionError,{getMessage:function(){return this.message+"\nUnexpected: "+this.unexpected+" ("+(typeof this.unexpected)+") ";}});YAHOO.util.ShouldFail=function(A){arguments.callee.superclass.constructor.call(this,A||"This test should fail but didn't.");this.name="ShouldFail";};YAHOO.lang.extend(YAHOO.util.ShouldFail,YAHOO.util.AssertionError);YAHOO.util.ShouldError=function(A){arguments.callee.superclass.constructor.call(this,A||"This test should have thrown an error but didn't.");
-this.name="ShouldError";};YAHOO.lang.extend(YAHOO.util.ShouldError,YAHOO.util.AssertionError);YAHOO.util.UnexpectedError=function(A){arguments.callee.superclass.constructor.call(this,"Unexpected error: "+A.message);this.cause=A;this.name="UnexpectedError";this.stack=A.stack;};YAHOO.lang.extend(YAHOO.util.UnexpectedError,YAHOO.util.AssertionError);YAHOO.util.ArrayAssert={contains:function(E,D,B){var C=false;var F=YAHOO.util.Assert;for(var A=0;A<D.length&&!C;A++){if(D[A]===E){C=true;}}if(!C){F.fail(F._formatMessage(B,"Value "+E+" ("+(typeof E)+") not found in array ["+D+"]."));}},containsItems:function(C,D,B){for(var A=0;A<C.length;A++){this.contains(C[A],D,B);}},containsMatch:function(E,D,B){if(typeof E!="function"){throw new TypeError("ArrayAssert.containsMatch(): First argument must be a function.");}var C=false;var F=YAHOO.util.Assert;for(var A=0;A<D.length&&!C;A++){if(E(D[A])){C=true;}}if(!C){F.fail(F._formatMessage(B,"No match found in array ["+D+"]."));}},doesNotContain:function(E,D,B){var C=false;var F=YAHOO.util.Assert;for(var A=0;A<D.length&&!C;A++){if(D[A]===E){C=true;}}if(C){F.fail(F._formatMessage(B,"Value found in array ["+D+"]."));}},doesNotContainItems:function(C,D,B){for(var A=0;A<C.length;A++){this.doesNotContain(C[A],D,B);}},doesNotContainMatch:function(E,D,B){if(typeof E!="function"){throw new TypeError("ArrayAssert.doesNotContainMatch(): First argument must be a function.");}var C=false;var F=YAHOO.util.Assert;for(var A=0;A<D.length&&!C;A++){if(E(D[A])){C=true;}}if(C){F.fail(F._formatMessage(B,"Value found in array ["+D+"]."));}},indexOf:function(E,D,A,C){for(var B=0;B<D.length;B++){if(D[B]===E){YAHOO.util.Assert.areEqual(A,B,C||"Value exists at index "+B+" but should be at index "+A+".");return ;}}var F=YAHOO.util.Assert;F.fail(F._formatMessage(C,"Value doesn't exist in array ["+D+"]."));},itemsAreEqual:function(D,F,C){var A=Math.max(D.length,F.length);var E=YAHOO.util.Assert;for(var B=0;B<A;B++){E.areEqual(D[B],F[B],E._formatMessage(C,"Values in position "+B+" are not equal."));}},itemsAreEquivalent:function(E,F,B,D){if(typeof B!="function"){throw new TypeError("ArrayAssert.itemsAreEquivalent(): Third argument must be a function.");}var A=Math.max(E.length,F.length);for(var C=0;C<A;C++){if(!B(E[C],F[C])){throw new YAHOO.util.ComparisonFailure(YAHOO.util.Assert._formatMessage(D,"Values in position "+C+" are not equivalent."),E[C],F[C]);}}},isEmpty:function(C,A){if(C.length>0){var B=YAHOO.util.Assert;B.fail(B._formatMessage(A,"Array should be empty."));}},isNotEmpty:function(C,A){if(C.length===0){var B=YAHOO.util.Assert;B.fail(B._formatMessage(A,"Array should not be empty."));}},itemsAreSame:function(D,F,C){var A=Math.max(D.length,F.length);var E=YAHOO.util.Assert;for(var B=0;B<A;B++){E.areSame(D[B],F[B],E._formatMessage(C,"Values in position "+B+" are not the same."));}},lastIndexOf:function(E,D,A,C){var F=YAHOO.util.Assert;for(var B=D.length;B>=0;B--){if(D[B]===E){F.areEqual(A,B,F._formatMessage(C,"Value exists at index "+B+" but should be at index "+A+"."));return ;}}F.fail(F._formatMessage(C,"Value doesn't exist in array."));}};YAHOO.namespace("util");YAHOO.util.ObjectAssert={propertiesAreEqual:function(D,G,C){var F=YAHOO.util.Assert;var B=[];for(var E in D){B.push(E);}for(var A=0;A<B.length;A++){F.isNotUndefined(G[B[A]],F._formatMessage(C,"Property '"+B[A]+"' expected."));}},hasProperty:function(A,B,C){if(!(A in B)){var D=YAHOO.util.Assert;D.fail(D._formatMessage(C,"Property '"+A+"' not found on object."));}},hasOwnProperty:function(A,B,C){if(!YAHOO.lang.hasOwnProperty(B,A)){var D=YAHOO.util.Assert;D.fail(D._formatMessage(C,"Property '"+A+"' not found on object instance."));}}};YAHOO.util.DateAssert={datesAreEqual:function(B,D,A){if(B instanceof Date&&D instanceof Date){var C=YAHOO.util.Assert;C.areEqual(B.getFullYear(),D.getFullYear(),C._formatMessage(A,"Years should be equal."));C.areEqual(B.getMonth(),D.getMonth(),C._formatMessage(A,"Months should be equal."));C.areEqual(B.getDate(),D.getDate(),C._formatMessage(A,"Day of month should be equal."));}else{throw new TypeError("DateAssert.datesAreEqual(): Expected and actual values must be Date objects.");}},timesAreEqual:function(B,D,A){if(B instanceof Date&&D instanceof Date){var C=YAHOO.util.Assert;C.areEqual(B.getHours(),D.getHours(),C._formatMessage(A,"Hours should be equal."));C.areEqual(B.getMinutes(),D.getMinutes(),C._formatMessage(A,"Minutes should be equal."));C.areEqual(B.getSeconds(),D.getSeconds(),C._formatMessage(A,"Seconds should be equal."));}else{throw new TypeError("DateAssert.timesAreEqual(): Expected and actual values must be Date objects.");}}};YAHOO.register("yuitest_core",YAHOO.tool.TestRunner,{version:"2.6.0",build:"1321"});
\ No newline at end of file
diff --git a/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest_core.js b/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest_core.js
deleted file mode 100644
index 345e80c..0000000
--- a/eclipse.org-common/yui/2.6.0/build/yuitest/yuitest_core.js
+++ /dev/null
@@ -1,1991 +0,0 @@
-/*
-Copyright (c) 2008, Yahoo! Inc. All rights reserved.
-Code licensed under the BSD License:
-http://developer.yahoo.net/yui/license.txt
-version: 2.6.0
-*/
-YAHOO.namespace("tool");
-
-//-----------------------------------------------------------------------------
-// TestCase object
-//-----------------------------------------------------------------------------
-(function(){
-    
-    //used for autogenerating test case names
-    var tempId = 0;
-    
-    /**
-     * Test case containing various tests to run.
-     * @param template An object containing any number of test methods, other methods,
-     *                 an optional name, and anything else the test case needs.
-     * @class TestCase
-     * @namespace YAHOO.tool
-     * @constructor
-     */
-    YAHOO.tool.TestCase = function (template /*:Object*/) {
-        
-        /**
-         * Special rules for the test case. Possible subobjects
-         * are fail, for tests that should fail, and error, for
-         * tests that should throw an error.
-         */
-        this._should /*:Object*/ = {};
-        
-        //copy over all properties from the template to this object
-        for (var prop in template) {
-            this[prop] = template[prop];
-        }    
-        
-        //check for a valid name
-        if (!YAHOO.lang.isString(this.name)){
-            /**
-             * Name for the test case.
-             */
-            this.name /*:String*/ = "testCase" + (tempId++);
-        }
-    
-    };
-    
-    
-    YAHOO.tool.TestCase.prototype = {  
-    
-        /**
-         * Resumes a paused test and runs the given function.
-         * @param {Function} segment (Optional) The function to run.
-         *      If omitted, the test automatically passes.
-         * @return {Void}
-         * @method resume
-         */
-        resume : function (segment /*:Function*/) /*:Void*/ {
-            YAHOO.tool.TestRunner.resume(segment);
-        },
-    
-        /**
-         * Causes the test case to wait a specified amount of time and then
-         * continue executing the given code.
-         * @param {Function} segment (Optional) The function to run after the delay.
-         *      If omitted, the TestRunner will wait until resume() is called.
-         * @param {int} delay (Optional) The number of milliseconds to wait before running
-         *      the function. If omitted, defaults to zero.
-         * @return {Void}
-         * @method wait
-         */
-        wait : function (segment /*:Function*/, delay /*:int*/) /*:Void*/{
-            var args = arguments;
-            if (YAHOO.lang.isFunction(args[0])){
-                throw new YAHOO.tool.TestCase.Wait(args[0], args[1]);
-            } else {
-                throw new YAHOO.tool.TestCase.Wait(function(){
-                    YAHOO.util.Assert.fail("Timeout: wait() called but resume() never called.");
-                }, (YAHOO.lang.isNumber(args[0]) ? args[0] : 10000));
-            }            
-        },
-    
-        //-------------------------------------------------------------------------
-        // Stub Methods
-        //-------------------------------------------------------------------------
-    
-        /**
-         * Function to run before each test is executed.
-         * @return {Void}
-         * @method setUp
-         */
-        setUp : function () /*:Void*/ {
-        },
-        
-        /**
-         * Function to run after each test is executed.
-         * @return {Void}
-         * @method tearDown
-         */
-        tearDown: function () /*:Void*/ {    
-        }
-    };
-    
-    /**
-     * Represents a stoppage in test execution to wait for an amount of time before
-     * continuing.
-     * @param {Function} segment A function to run when the wait is over.
-     * @param {int} delay The number of milliseconds to wait before running the code.
-     * @class Wait
-     * @namespace YAHOO.tool.TestCase
-     * @constructor
-     *
-     */
-    YAHOO.tool.TestCase.Wait = function (segment /*:Function*/, delay /*:int*/) {
-        
-        /**
-         * The segment of code to run when the wait is over.
-         * @type Function
-         * @property segment
-         */
-        this.segment /*:Function*/ = (YAHOO.lang.isFunction(segment) ? segment : null);
-    
-        /**
-         * The delay before running the segment of code.
-         * @type int
-         * @property delay
-         */
-        this.delay /*:int*/ = (YAHOO.lang.isNumber(delay) ? delay : 0);
-    
-    };
-
-})();
-
-YAHOO.namespace("tool");
-
-
-//-----------------------------------------------------------------------------
-// TestSuite object
-//-----------------------------------------------------------------------------
-
-/**
- * A test suite that can contain a collection of TestCase and TestSuite objects.
- * @param {String||Object} data The name of the test suite or an object containing
- *      a name property as well as setUp and tearDown methods.
- * @namespace YAHOO.tool
- * @class TestSuite
- * @constructor
- */
-YAHOO.tool.TestSuite = function (data /*:String||Object*/) {
-
-    /**
-     * The name of the test suite.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "";
-
-    /**
-     * Array of test suites and
-     * @private
-     */
-    this.items /*:Array*/ = [];
-
-    //initialize the properties
-    if (YAHOO.lang.isString(data)){
-        this.name = data;
-    } else if (YAHOO.lang.isObject(data)){
-        YAHOO.lang.augmentObject(this, data, true);
-    }
-
-    //double-check name
-    if (this.name === ""){
-        this.name = YAHOO.util.Dom.generateId(null, "testSuite");
-    }
-
-};
-
-YAHOO.tool.TestSuite.prototype = {
-    
-    /**
-     * Adds a test suite or test case to the test suite.
-     * @param {YAHOO.tool.TestSuite||YAHOO.tool.TestCase} testObject The test suite or test case to add.
-     * @return {Void}
-     * @method add
-     */
-    add : function (testObject /*:YAHOO.tool.TestSuite*/) /*:Void*/ {
-        if (testObject instanceof YAHOO.tool.TestSuite || testObject instanceof YAHOO.tool.TestCase) {
-            this.items.push(testObject);
-        }
-    },
-    
-    //-------------------------------------------------------------------------
-    // Stub Methods
-    //-------------------------------------------------------------------------
-
-    /**
-     * Function to run before each test is executed.
-     * @return {Void}
-     * @method setUp
-     */
-    setUp : function () /*:Void*/ {
-    },
-    
-    /**
-     * Function to run after each test is executed.
-     * @return {Void}
-     * @method tearDown
-     */
-    tearDown: function () /*:Void*/ {
-    }
-    
-};
-
-YAHOO.namespace("tool");
-
-/**
- * The YUI test tool
- * @module yuitest
- * @namespace YAHOO.tool
- * @requires yahoo,dom,event,logger
- */
-
-
-//-----------------------------------------------------------------------------
-// TestRunner object
-//-----------------------------------------------------------------------------
-
-
-YAHOO.tool.TestRunner = (function(){
-
-    /**
-     * A node in the test tree structure. May represent a TestSuite, TestCase, or
-     * test function.
-     * @param {Variant} testObject A TestSuite, TestCase, or the name of a test function.
-     * @class TestNode
-     * @constructor
-     * @private
-     */
-    function TestNode(testObject /*:Variant*/){
-    
-        /**
-         * The TestSuite, TestCase, or test function represented by this node.
-         * @type Variant
-         * @property testObject
-         */
-        this.testObject = testObject;
-        
-        /**
-         * Pointer to this node's first child.
-         * @type TestNode
-         * @property firstChild
-         */        
-        this.firstChild /*:TestNode*/ = null;
-        
-        /**
-         * Pointer to this node's last child.
-         * @type TestNode
-         * @property lastChild
-         */        
-        this.lastChild = null;
-        
-        /**
-         * Pointer to this node's parent.
-         * @type TestNode
-         * @property parent
-         */        
-        this.parent = null; 
-   
-        /**
-         * Pointer to this node's next sibling.
-         * @type TestNode
-         * @property next
-         */        
-        this.next = null;
-        
-        /**
-         * Test results for this test object.
-         * @type object
-         * @property results
-         */                
-        this.results /*:Object*/ = {
-            passed : 0,
-            failed : 0,
-            total : 0,
-            ignored : 0
-        };
-        
-        //initialize results
-        if (testObject instanceof YAHOO.tool.TestSuite){
-            this.results.type = "testsuite";
-            this.results.name = testObject.name;
-        } else if (testObject instanceof YAHOO.tool.TestCase){
-            this.results.type = "testcase";
-            this.results.name = testObject.name;
-        }
-       
-    }
-    
-    TestNode.prototype = {
-    
-        /**
-         * Appends a new test object (TestSuite, TestCase, or test function name) as a child
-         * of this node.
-         * @param {Variant} testObject A TestSuite, TestCase, or the name of a test function.
-         * @return {Void}
-         */
-        appendChild : function (testObject /*:Variant*/) /*:Void*/{
-            var node = new TestNode(testObject);
-            if (this.firstChild === null){
-                this.firstChild = this.lastChild = node;
-            } else {
-                this.lastChild.next = node;
-                this.lastChild = node;
-            }
-            node.parent = this;
-            return node;
-        }       
-    };
-
-    /**
-     * Runs test suites and test cases, providing events to allowing for the
-     * interpretation of test results.
-     * @namespace YAHOO.tool
-     * @class TestRunner
-     * @static
-     */
-    function TestRunner(){
-    
-        //inherit from EventProvider
-        TestRunner.superclass.constructor.apply(this,arguments);
-        
-        /**
-         * Suite on which to attach all TestSuites and TestCases to be run.
-         * @type YAHOO.tool.TestSuite
-         * @property masterSuite
-         * @private
-         * @static
-         */
-        this.masterSuite /*:YAHOO.tool.TestSuite*/ = new YAHOO.tool.TestSuite("YUI Test Results");        
-
-        /**
-         * Pointer to the current node in the test tree.
-         * @type TestNode
-         * @private
-         * @property _cur
-         * @static
-         */
-        this._cur = null;
-        
-        /**
-         * Pointer to the root node in the test tree.
-         * @type TestNode
-         * @private
-         * @property _root
-         * @static
-         */
-        this._root = null;
-        
-        //create events
-        var events /*:Array*/ = [
-            this.TEST_CASE_BEGIN_EVENT,
-            this.TEST_CASE_COMPLETE_EVENT,
-            this.TEST_SUITE_BEGIN_EVENT,
-            this.TEST_SUITE_COMPLETE_EVENT,
-            this.TEST_PASS_EVENT,
-            this.TEST_FAIL_EVENT,
-            this.TEST_IGNORE_EVENT,
-            this.COMPLETE_EVENT,
-            this.BEGIN_EVENT
-        ];
-        for (var i=0; i < events.length; i++){
-            this.createEvent(events[i], { scope: this });
-        }       
-   
-    }
-    
-    YAHOO.lang.extend(TestRunner, YAHOO.util.EventProvider, {
-    
-        //-------------------------------------------------------------------------
-        // Constants
-        //-------------------------------------------------------------------------
-         
-        /**
-         * Fires when a test case is opened but before the first 
-         * test is executed.
-         * @event testcasebegin
-         */         
-        TEST_CASE_BEGIN_EVENT /*:String*/ : "testcasebegin",
-        
-        /**
-         * Fires when all tests in a test case have been executed.
-         * @event testcasecomplete
-         */        
-        TEST_CASE_COMPLETE_EVENT /*:String*/ : "testcasecomplete",
-        
-        /**
-         * Fires when a test suite is opened but before the first 
-         * test is executed.
-         * @event testsuitebegin
-         */        
-        TEST_SUITE_BEGIN_EVENT /*:String*/ : "testsuitebegin",
-        
-        /**
-         * Fires when all test cases in a test suite have been
-         * completed.
-         * @event testsuitecomplete
-         */        
-        TEST_SUITE_COMPLETE_EVENT /*:String*/ : "testsuitecomplete",
-        
-        /**
-         * Fires when a test has passed.
-         * @event pass
-         */        
-        TEST_PASS_EVENT /*:String*/ : "pass",
-        
-        /**
-         * Fires when a test has failed.
-         * @event fail
-         */        
-        TEST_FAIL_EVENT /*:String*/ : "fail",
-        
-        /**
-         * Fires when a test has been ignored.
-         * @event ignore
-         */        
-        TEST_IGNORE_EVENT /*:String*/ : "ignore",
-        
-        /**
-         * Fires when all test suites and test cases have been completed.
-         * @event complete
-         */        
-        COMPLETE_EVENT /*:String*/ : "complete",
-        
-        /**
-         * Fires when the run() method is called.
-         * @event begin
-         */        
-        BEGIN_EVENT /*:String*/ : "begin",    
-        
-        //-------------------------------------------------------------------------
-        // Test Tree-Related Methods
-        //-------------------------------------------------------------------------
-
-        /**
-         * Adds a test case to the test tree as a child of the specified node.
-         * @param {TestNode} parentNode The node to add the test case to as a child.
-         * @param {YAHOO.tool.TestCase} testCase The test case to add.
-         * @return {Void}
-         * @static
-         * @private
-         * @method _addTestCaseToTestTree
-         */
-       _addTestCaseToTestTree : function (parentNode /*:TestNode*/, testCase /*:YAHOO.tool.TestCase*/) /*:Void*/{
-            
-            //add the test suite
-            var node = parentNode.appendChild(testCase);
-            
-            //iterate over the items in the test case
-            for (var prop in testCase){
-                if (prop.indexOf("test") === 0 && YAHOO.lang.isFunction(testCase[prop])){
-                    node.appendChild(prop);
-                }
-            }
-         
-        },
-        
-        /**
-         * Adds a test suite to the test tree as a child of the specified node.
-         * @param {TestNode} parentNode The node to add the test suite to as a child.
-         * @param {YAHOO.tool.TestSuite} testSuite The test suite to add.
-         * @return {Void}
-         * @static
-         * @private
-         * @method _addTestSuiteToTestTree
-         */
-        _addTestSuiteToTestTree : function (parentNode /*:TestNode*/, testSuite /*:YAHOO.tool.TestSuite*/) /*:Void*/ {
-            
-            //add the test suite
-            var node = parentNode.appendChild(testSuite);
-            
-            //iterate over the items in the master suite
-            for (var i=0; i < testSuite.items.length; i++){
-                if (testSuite.items[i] instanceof YAHOO.tool.TestSuite) {
-                    this._addTestSuiteToTestTree(node, testSuite.items[i]);
-                } else if (testSuite.items[i] instanceof YAHOO.tool.TestCase) {
-                    this._addTestCaseToTestTree(node, testSuite.items[i]);
-                }                   
-            }            
-        },
-        
-        /**
-         * Builds the test tree based on items in the master suite. The tree is a hierarchical
-         * representation of the test suites, test cases, and test functions. The resulting tree
-         * is stored in _root and the pointer _cur is set to the root initially.
-         * @return {Void}
-         * @static
-         * @private
-         * @method _buildTestTree
-         */
-        _buildTestTree : function () /*:Void*/ {
-        
-            this._root = new TestNode(this.masterSuite);
-            this._cur = this._root;
-            
-            //iterate over the items in the master suite
-            for (var i=0; i < this.masterSuite.items.length; i++){
-                if (this.masterSuite.items[i] instanceof YAHOO.tool.TestSuite) {
-                    this._addTestSuiteToTestTree(this._root, this.masterSuite.items[i]);
-                } else if (this.masterSuite.items[i] instanceof YAHOO.tool.TestCase) {
-                    this._addTestCaseToTestTree(this._root, this.masterSuite.items[i]);
-                }                   
-            }            
-        
-        }, 
-    
-        //-------------------------------------------------------------------------
-        // Private Methods
-        //-------------------------------------------------------------------------
-        
-        /**
-         * Handles the completion of a test object's tests. Tallies test results 
-         * from one level up to the next.
-         * @param {TestNode} node The TestNode representing the test object.
-         * @return {Void}
-         * @method _handleTestObjectComplete
-         * @private
-         * @static
-         */
-        _handleTestObjectComplete : function (node /*:TestNode*/) /*:Void*/ {
-            if (YAHOO.lang.isObject(node.testObject)){
-                node.parent.results.passed += node.results.passed;
-                node.parent.results.failed += node.results.failed;
-                node.parent.results.total += node.results.total;                
-                node.parent.results.ignored += node.results.ignored;                
-                node.parent.results[node.testObject.name] = node.results;
-            
-                if (node.testObject instanceof YAHOO.tool.TestSuite){
-                    node.testObject.tearDown();
-                    this.fireEvent(this.TEST_SUITE_COMPLETE_EVENT, { testSuite: node.testObject, results: node.results});
-                } else if (node.testObject instanceof YAHOO.tool.TestCase){
-                    this.fireEvent(this.TEST_CASE_COMPLETE_EVENT, { testCase: node.testObject, results: node.results});
-                }      
-            } 
-        },                
-        
-        //-------------------------------------------------------------------------
-        // Navigation Methods
-        //-------------------------------------------------------------------------
-        
-        /**
-         * Retrieves the next node in the test tree.
-         * @return {TestNode} The next node in the test tree or null if the end is reached.
-         * @private
-         * @static
-         * @method _next
-         */
-        _next : function () /*:TestNode*/ {
-        
-            if (this._cur.firstChild) {
-                this._cur = this._cur.firstChild;
-            } else if (this._cur.next) {
-                this._cur = this._cur.next;            
-            } else {
-                while (this._cur && !this._cur.next && this._cur !== this._root){
-                    this._handleTestObjectComplete(this._cur);
-                    this._cur = this._cur.parent;
-                }
-                
-                if (this._cur == this._root){
-                    this._cur.results.type = "report";
-                    this._cur.results.timestamp = (new Date()).toLocaleString();
-                    this._cur.results.duration = (new Date()) - this._cur.results.duration;
-                    this.fireEvent(this.COMPLETE_EVENT, { results: this._cur.results});
-                    this._cur = null;
-                } else {
-                    this._handleTestObjectComplete(this._cur);               
-                    this._cur = this._cur.next;                
-                }
-            }
-        
-            return this._cur;
-        },
-        
-        /**
-         * Runs a test case or test suite, returning the results.
-         * @param {YAHOO.tool.TestCase|YAHOO.tool.TestSuite} testObject The test case or test suite to run.
-         * @return {Object} Results of the execution with properties passed, failed, and total.
-         * @private
-         * @method _run
-         * @static
-         */
-        _run : function () /*:Void*/ {
-        
-            //flag to indicate if the TestRunner should wait before continuing
-            var shouldWait /*:Boolean*/ = false;
-            
-            //get the next test node
-            var node = this._next();
-            
-            if (node !== null) {
-                var testObject = node.testObject;
-                
-                //figure out what to do
-                if (YAHOO.lang.isObject(testObject)){
-                    if (testObject instanceof YAHOO.tool.TestSuite){
-                        this.fireEvent(this.TEST_SUITE_BEGIN_EVENT, { testSuite: testObject });
-                        testObject.setUp();
-                    } else if (testObject instanceof YAHOO.tool.TestCase){
-                        this.fireEvent(this.TEST_CASE_BEGIN_EVENT, { testCase: testObject });
-                    }
-                    
-                    //some environments don't support setTimeout
-                    if (typeof setTimeout != "undefined"){                    
-                        setTimeout(function(){
-                            YAHOO.tool.TestRunner._run();
-                        }, 0);
-                    } else {
-                        this._run();
-                    }
-                } else {
-                    this._runTest(node);
-                }
-
-            }
-        },
-        
-        _resumeTest : function (segment /*:Function*/) /*:Void*/ {
-        
-            //get relevant information
-            var node /*:TestNode*/ = this._cur;
-            var testName /*:String*/ = node.testObject;
-            var testCase /*:YAHOO.tool.TestCase*/ = node.parent.testObject;
-            
-            //cancel other waits if available
-            if (testCase.__yui_wait){
-                clearTimeout(testCase.__yui_wait);
-                delete testCase.__yui_wait;
-            }            
-            
-            //get the "should" test cases
-            var shouldFail /*:Object*/ = (testCase._should.fail || {})[testName];
-            var shouldError /*:Object*/ = (testCase._should.error || {})[testName];
-            
-            //variable to hold whether or not the test failed
-            var failed /*:Boolean*/ = false;
-            var error /*:Error*/ = null;
-                
-            //try the test
-            try {
-            
-                //run the test
-                segment.apply(testCase);
-                
-                //if it should fail, and it got here, then it's a fail because it didn't
-                if (shouldFail){
-                    error = new YAHOO.util.ShouldFail();
-                    failed = true;
-                } else if (shouldError){
-                    error = new YAHOO.util.ShouldError();
-                    failed = true;
-                }
-                           
-            } catch (thrown /*:Error*/){
-                if (thrown instanceof YAHOO.util.AssertionError) {
-                    if (!shouldFail){
-                        error = thrown;
-                        failed = true;
-                    }
-                } else if (thrown instanceof YAHOO.tool.TestCase.Wait){
-                
-                    if (YAHOO.lang.isFunction(thrown.segment)){
-                        if (YAHOO.lang.isNumber(thrown.delay)){
-                        
-                            //some environments don't support setTimeout
-                            if (typeof setTimeout != "undefined"){
-                                testCase.__yui_wait = setTimeout(function(){
-                                    YAHOO.tool.TestRunner._resumeTest(thrown.segment);
-                                }, thrown.delay);                             
-                            } else {
-                                throw new Error("Asynchronous tests not supported in this environment.");
-                            }
-                        }
-                    }
-                    
-                    return;
-                
-                } else {
-                    //first check to see if it should error
-                    if (!shouldError) {                        
-                        error = new YAHOO.util.UnexpectedError(thrown);
-                        failed = true;
-                    } else {
-                        //check to see what type of data we have
-                        if (YAHOO.lang.isString(shouldError)){
-                            
-                            //if it's a string, check the error message
-                            if (thrown.message != shouldError){
-                                error = new YAHOO.util.UnexpectedError(thrown);
-                                failed = true;                                    
-                            }
-                        } else if (YAHOO.lang.isFunction(shouldError)){
-                        
-                            //if it's a function, see if the error is an instance of it
-                            if (!(thrown instanceof shouldError)){
-                                error = new YAHOO.util.UnexpectedError(thrown);
-                                failed = true;
-                            }
-                        
-                        } else if (YAHOO.lang.isObject(shouldError)){
-                        
-                            //if it's an object, check the instance and message
-                            if (!(thrown instanceof shouldError.constructor) || 
-                                    thrown.message != shouldError.message){
-                                error = new YAHOO.util.UnexpectedError(thrown);
-                                failed = true;                                    
-                            }
-                        
-                        }
-                    
-                    }
-                }
-                
-            }
-            
-            //fireEvent appropriate event
-            if (failed) {
-                this.fireEvent(this.TEST_FAIL_EVENT, { testCase: testCase, testName: testName, error: error });
-            } else {
-                this.fireEvent(this.TEST_PASS_EVENT, { testCase: testCase, testName: testName });
-            }
-            
-            //run the tear down
-            testCase.tearDown();
-            
-            //update results
-            node.parent.results[testName] = { 
-                result: failed ? "fail" : "pass",
-                message: error ? error.getMessage() : "Test passed",
-                type: "test",
-                name: testName
-            };
-            
-            if (failed){
-                node.parent.results.failed++;
-            } else {
-                node.parent.results.passed++;
-            }
-            node.parent.results.total++;
-
-            //set timeout not supported in all environments
-            if (typeof setTimeout != "undefined"){
-                setTimeout(function(){
-                    YAHOO.tool.TestRunner._run();
-                }, 0);
-            } else {
-                this._run();
-            }
-        
-        },
-                
-        /**
-         * Runs a single test based on the data provided in the node.
-         * @param {TestNode} node The TestNode representing the test to run.
-         * @return {Void}
-         * @static
-         * @private
-         * @name _runTest
-         */
-        _runTest : function (node /*:TestNode*/) /*:Void*/ {
-        
-            //get relevant information
-            var testName /*:String*/ = node.testObject;
-            var testCase /*:YAHOO.tool.TestCase*/ = node.parent.testObject;
-            var test /*:Function*/ = testCase[testName];
-            
-            //get the "should" test cases
-            var shouldIgnore /*:Object*/ = (testCase._should.ignore || {})[testName];
-            
-            //figure out if the test should be ignored or not
-            if (shouldIgnore){
-            
-                //update results
-                node.parent.results[testName] = { 
-                    result: "ignore",
-                    message: "Test ignored",
-                    type: "test",
-                    name: testName
-                };
-                
-                node.parent.results.ignored++;
-                node.parent.results.total++;
-            
-                this.fireEvent(this.TEST_IGNORE_EVENT, { testCase: testCase, testName: testName });
-                
-                //some environments don't support setTimeout
-                if (typeof setTimeout != "undefined"){                    
-                    setTimeout(function(){
-                        YAHOO.tool.TestRunner._run();
-                    }, 0);              
-                } else {
-                    this._run();
-                }
-
-            } else {
-            
-                //run the setup
-                testCase.setUp();
-                
-                //now call the body of the test
-                this._resumeTest(test);                
-            }
-
-        },        
-        
-        //-------------------------------------------------------------------------
-        // Protected Methods
-        //-------------------------------------------------------------------------   
-    
-        /**
-         * Fires events for the TestRunner. This overrides the default fireEvent()
-         * method from EventProvider to add the type property to the data that is
-         * passed through on each event call.
-         * @param {String} type The type of event to fire.
-         * @param {Object} data (Optional) Data for the event.
-         * @method fireEvent
-         * @static
-         * @protected
-         */
-        fireEvent : function (type /*:String*/, data /*:Object*/) /*:Void*/ {
-            data = data || {};
-            data.type = type;
-            TestRunner.superclass.fireEvent.call(this, type, data);
-        },
-        
-        //-------------------------------------------------------------------------
-        // Public Methods
-        //-------------------------------------------------------------------------   
-    
-        /**
-         * Adds a test suite or test case to the list of test objects to run.
-         * @param testObject Either a TestCase or a TestSuite that should be run.
-         * @return {Void}
-         * @method add
-         * @static
-         */
-        add : function (testObject /*:Object*/) /*:Void*/ {
-            this.masterSuite.add(testObject);
-        },
-        
-        /**
-         * Removes all test objects from the runner.
-         * @return {Void}
-         * @method clear
-         * @static
-         */
-        clear : function () /*:Void*/ {
-            this.masterSuite.items = [];
-        },
-        
-        /**
-         * Resumes the TestRunner after wait() was called.
-         * @param {Function} segment The function to run as the rest
-         *      of the haulted test.
-         * @return {Void}
-         * @method resume
-         * @static
-         */
-        resume : function (segment /*:Function*/) /*:Void*/ {
-            this._resumeTest(segment || function(){});
-        },
-    
-        /**
-         * Runs the test suite.
-         * @return {Void}
-         * @method run
-         * @static
-         */
-        run : function (testObject /*:Object*/) /*:Void*/ {
-            
-            //pointer to runner to avoid scope issues 
-            var runner = YAHOO.tool.TestRunner;
-
-            //build the test tree
-            runner._buildTestTree();
-            
-            //set when the test started
-            runner._root.results.duration = (new Date()).valueOf();
-            
-            //fire the begin event
-            runner.fireEvent(runner.BEGIN_EVENT);
-       
-            //begin the testing
-            runner._run();
-        }    
-    });
-    
-    return new TestRunner();
-    
-})();
-
-YAHOO.namespace("util");
-
-//-----------------------------------------------------------------------------
-// Assert object
-//-----------------------------------------------------------------------------
-
-/**
- * The Assert object provides functions to test JavaScript values against
- * known and expected results. Whenever a comparison (assertion) fails,
- * an error is thrown.
- *
- * @namespace YAHOO.util
- * @class Assert
- * @static
- */
-YAHOO.util.Assert = {
-
-    //-------------------------------------------------------------------------
-    // Helper Methods
-    //-------------------------------------------------------------------------
-    
-    /**
-     * Formats a message so that it can contain the original assertion message
-     * in addition to the custom message.
-     * @param {String} customMessage The message passed in by the developer.
-     * @param {String} defaultMessage The message created by the error by default.
-     * @return {String} The final error message, containing either or both.
-     * @protected
-     * @static
-     * @method _formatMessage
-     */
-    _formatMessage : function (customMessage /*:String*/, defaultMessage /*:String*/) /*:String*/ {
-        var message = customMessage;
-        if (YAHOO.lang.isString(customMessage) && customMessage.length > 0){
-            return YAHOO.lang.substitute(customMessage, { message: defaultMessage });
-        } else {
-            return defaultMessage;
-        }        
-    },
-    
-    //-------------------------------------------------------------------------
-    // Generic Assertion Methods
-    //-------------------------------------------------------------------------
-    
-    /** 
-     * Forces an assertion error to occur.
-     * @param {String} message (Optional) The message to display with the failure.
-     * @method fail
-     * @static
-     */
-    fail : function (message /*:String*/) /*:Void*/ {
-        throw new YAHOO.util.AssertionError(this._formatMessage(message, "Test force-failed."));
-    },       
-    
-    //-------------------------------------------------------------------------
-    // Equality Assertion Methods
-    //-------------------------------------------------------------------------    
-    
-    /**
-     * Asserts that a value is equal to another. This uses the double equals sign
-     * so type cohersion may occur.
-     * @param {Object} expected The expected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areEqual
-     * @static
-     */
-    areEqual : function (expected /*:Object*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (expected != actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Values should be equal."), expected, actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is not equal to another. This uses the double equals sign
-     * so type cohersion may occur.
-     * @param {Object} unexpected The unexpected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areNotEqual
-     * @static
-     */
-    areNotEqual : function (unexpected /*:Object*/, actual /*:Object*/, 
-                         message /*:String*/) /*:Void*/ {
-        if (unexpected == actual) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be equal."), unexpected);
-        }
-    },
-    
-    /**
-     * Asserts that a value is not the same as another. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} unexpected The unexpected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areNotSame
-     * @static
-     */
-    areNotSame : function (unexpected /*:Object*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (unexpected === actual) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be the same."), unexpected);
-        }
-    },
-
-    /**
-     * Asserts that a value is the same as another. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} expected The expected value.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method areSame
-     * @static
-     */
-    areSame : function (expected /*:Object*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (expected !== actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Values should be the same."), expected, actual);
-        }
-    },    
-    
-    //-------------------------------------------------------------------------
-    // Boolean Assertion Methods
-    //-------------------------------------------------------------------------    
-    
-    /**
-     * Asserts that a value is false. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isFalse
-     * @static
-     */
-    isFalse : function (actual /*:Boolean*/, message /*:String*/) {
-        if (false !== actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be false."), false, actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is true. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isTrue
-     * @static
-     */
-    isTrue : function (actual /*:Boolean*/, message /*:String*/) /*:Void*/ {
-        if (true !== actual) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be true."), true, actual);
-        }
-
-    },
-    
-    //-------------------------------------------------------------------------
-    // Special Value Assertion Methods
-    //-------------------------------------------------------------------------    
-    
-    /**
-     * Asserts that a value is not a number.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNaN
-     * @static
-     */
-    isNaN : function (actual /*:Object*/, message /*:String*/) /*:Void*/{
-        if (!isNaN(actual)){
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be NaN."), NaN, actual);
-        }    
-    },
-    
-    /**
-     * Asserts that a value is not the special NaN value.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotNaN
-     * @static
-     */
-    isNotNaN : function (actual /*:Object*/, message /*:String*/) /*:Void*/{
-        if (isNaN(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be NaN."), NaN);
-        }    
-    },
-    
-    /**
-     * Asserts that a value is not null. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotNull
-     * @static
-     */
-    isNotNull : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (YAHOO.lang.isNull(actual)) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Values should not be null."), null);
-        }
-    },
-
-    /**
-     * Asserts that a value is not undefined. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotUndefined
-     * @static
-     */
-    isNotUndefined : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (YAHOO.lang.isUndefined(actual)) {
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should not be undefined."), undefined);
-        }
-    },
-
-    /**
-     * Asserts that a value is null. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNull
-     * @static
-     */
-    isNull : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isNull(actual)) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be null."), null, actual);
-        }
-    },
-        
-    /**
-     * Asserts that a value is undefined. This uses the triple equals sign
-     * so no type cohersion may occur.
-     * @param {Object} actual The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isUndefined
-     * @static
-     */
-    isUndefined : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isUndefined(actual)) {
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be undefined."), undefined, actual);
-        }
-    },    
-    
-    //--------------------------------------------------------------------------
-    // Instance Assertion Methods
-    //--------------------------------------------------------------------------    
-   
-    /**
-     * Asserts that a value is an array.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isArray
-     * @static
-     */
-    isArray : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isArray(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be an array."), actual);
-        }    
-    },
-   
-    /**
-     * Asserts that a value is a Boolean.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isBoolean
-     * @static
-     */
-    isBoolean : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isBoolean(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a Boolean."), actual);
-        }    
-    },
-   
-    /**
-     * Asserts that a value is a function.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isFunction
-     * @static
-     */
-    isFunction : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isFunction(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a function."), actual);
-        }    
-    },
-   
-    /**
-     * Asserts that a value is an instance of a particular object. This may return
-     * incorrect results when comparing objects from one frame to constructors in
-     * another frame. For best results, don't use in a cross-frame manner.
-     * @param {Function} expected The function that the object should be an instance of.
-     * @param {Object} actual The object to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isInstanceOf
-     * @static
-     */
-    isInstanceOf : function (expected /*:Function*/, actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!(actual instanceof expected)){
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value isn't an instance of expected type."), expected, actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is a number.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNumber
-     * @static
-     */
-    isNumber : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isNumber(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a number."), actual);
-        }    
-    },    
-    
-    /**
-     * Asserts that a value is an object.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isObject
-     * @static
-     */
-    isObject : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isObject(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be an object."), actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is a string.
-     * @param {Object} actual The value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isString
-     * @static
-     */
-    isString : function (actual /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.isString(actual)){
-            throw new YAHOO.util.UnexpectedValue(this._formatMessage(message, "Value should be a string."), actual);
-        }
-    },
-    
-    /**
-     * Asserts that a value is of a particular type. 
-     * @param {String} expectedType The expected type of the variable.
-     * @param {Object} actualValue The actual value to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isTypeOf
-     * @static
-     */
-    isTypeOf : function (expectedType /*:String*/, actualValue /*:Object*/, message /*:String*/) /*:Void*/{
-        if (typeof actualValue != expectedType){
-            throw new YAHOO.util.ComparisonFailure(this._formatMessage(message, "Value should be of type " + expected + "."), expected, typeof actual);
-        }
-    }
-};
-
-//-----------------------------------------------------------------------------
-// Assertion errors
-//-----------------------------------------------------------------------------
-
-/**
- * AssertionError is thrown whenever an assertion fails. It provides methods
- * to more easily get at error information and also provides a base class
- * from which more specific assertion errors can be derived.
- *
- * @param {String} message The message to display when the error occurs.
- * @namespace YAHOO.util
- * @class AssertionError
- * @extends Error
- * @constructor
- */ 
-YAHOO.util.AssertionError = function (message /*:String*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message);
-    
-    /*
-     * Error message. Must be duplicated to ensure browser receives it.
-     * @type String
-     * @property message
-     */
-    this.message /*:String*/ = message;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "AssertionError";
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.AssertionError, Error, {
-
-    /**
-     * Returns a fully formatted error for an assertion failure. This should
-     * be overridden by all subclasses to provide specific information.
-     * @method getMessage
-     * @return {String} A string describing the error.
-     */
-    getMessage : function () /*:String*/ {
-        return this.message;
-    },
-    
-    /**
-     * Returns a string representation of the error.
-     * @method toString
-     * @return {String} A string representation of the error.
-     */
-    toString : function () /*:String*/ {
-        return this.name + ": " + this.getMessage();
-    },
-    
-    /**
-     * Returns a primitive value version of the error. Same as toString().
-     * @method valueOf
-     * @return {String} A primitive value version of the error.
-     */
-    valueOf : function () /*:String*/ {
-        return this.toString();
-    }
-
-});
-
-/**
- * ComparisonFailure is subclass of AssertionError that is thrown whenever
- * a comparison between two values fails. It provides mechanisms to retrieve
- * both the expected and actual value.
- *
- * @param {String} message The message to display when the error occurs.
- * @param {Object} expected The expected value.
- * @param {Object} actual The actual value that caused the assertion to fail.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class ComparisonFailure
- * @constructor
- */ 
-YAHOO.util.ComparisonFailure = function (message /*:String*/, expected /*:Object*/, actual /*:Object*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message);
-    
-    /**
-     * The expected value.
-     * @type Object
-     * @property expected
-     */
-    this.expected /*:Object*/ = expected;
-    
-    /**
-     * The actual value.
-     * @type Object
-     * @property actual
-     */
-    this.actual /*:Object*/ = actual;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "ComparisonFailure";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.ComparisonFailure, YAHOO.util.AssertionError, {
-
-    /**
-     * Returns a fully formatted error for an assertion failure. This message
-     * provides information about the expected and actual values.
-     * @method toString
-     * @return {String} A string describing the error.
-     */
-    getMessage : function () /*:String*/ {
-        return this.message + "\nExpected: " + this.expected + " (" + (typeof this.expected) + ")"  +
-            "\nActual:" + this.actual + " (" + (typeof this.actual) + ")";
-    }
-
-});
-
-/**
- * UnexpectedValue is subclass of AssertionError that is thrown whenever
- * a value was unexpected in its scope. This typically means that a test
- * was performed to determine that a value was *not* equal to a certain
- * value.
- *
- * @param {String} message The message to display when the error occurs.
- * @param {Object} unexpected The unexpected value.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class UnexpectedValue
- * @constructor
- */ 
-YAHOO.util.UnexpectedValue = function (message /*:String*/, unexpected /*:Object*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message);
-    
-    /**
-     * The unexpected value.
-     * @type Object
-     * @property unexpected
-     */
-    this.unexpected /*:Object*/ = unexpected;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "UnexpectedValue";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.UnexpectedValue, YAHOO.util.AssertionError, {
-
-    /**
-     * Returns a fully formatted error for an assertion failure. The message
-     * contains information about the unexpected value that was encountered.
-     * @method getMessage
-     * @return {String} A string describing the error.
-     */
-    getMessage : function () /*:String*/ {
-        return this.message + "\nUnexpected: " + this.unexpected + " (" + (typeof this.unexpected) + ") ";
-    }
-
-});
-
-/**
- * ShouldFail is subclass of AssertionError that is thrown whenever
- * a test was expected to fail but did not.
- *
- * @param {String} message The message to display when the error occurs.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class ShouldFail
- * @constructor
- */  
-YAHOO.util.ShouldFail = function (message /*:String*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message || "This test should fail but didn't.");
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "ShouldFail";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.ShouldFail, YAHOO.util.AssertionError);
-
-/**
- * ShouldError is subclass of AssertionError that is thrown whenever
- * a test is expected to throw an error but doesn't.
- *
- * @param {String} message The message to display when the error occurs.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class ShouldError
- * @constructor
- */  
-YAHOO.util.ShouldError = function (message /*:String*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, message || "This test should have thrown an error but didn't.");
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "ShouldError";
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.ShouldError, YAHOO.util.AssertionError);
-
-/**
- * UnexpectedError is subclass of AssertionError that is thrown whenever
- * an error occurs within the course of a test and the test was not expected
- * to throw an error.
- *
- * @param {Error} cause The unexpected error that caused this error to be 
- *                      thrown.
- * @namespace YAHOO.util
- * @extends YAHOO.util.AssertionError
- * @class UnexpectedError
- * @constructor
- */  
-YAHOO.util.UnexpectedError = function (cause /*:Object*/){
-
-    //call superclass
-    arguments.callee.superclass.constructor.call(this, "Unexpected error: " + cause.message);
-    
-    /**
-     * The unexpected error that occurred.
-     * @type Error
-     * @property cause
-     */
-    this.cause /*:Error*/ = cause;
-    
-    /**
-     * The name of the error that occurred.
-     * @type String
-     * @property name
-     */
-    this.name /*:String*/ = "UnexpectedError";
-    
-    /**
-     * Stack information for the error (if provided).
-     * @type String
-     * @property stack
-     */
-    this.stack /*:String*/ = cause.stack;
-    
-};
-
-//inherit methods
-YAHOO.lang.extend(YAHOO.util.UnexpectedError, YAHOO.util.AssertionError);
-
-//-----------------------------------------------------------------------------
-// ArrayAssert object
-//-----------------------------------------------------------------------------
-
-/**
- * The ArrayAssert object provides functions to test JavaScript array objects
- * for a variety of cases.
- *
- * @namespace YAHOO.util
- * @class ArrayAssert
- * @static
- */
- 
-YAHOO.util.ArrayAssert = {
-
-    /**
-     * Asserts that a value is present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur.
-     * @param {Object} needle The value that is expected in the array.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method contains
-     * @static
-     */
-    contains : function (needle /*:Object*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (haystack[i] === needle) {
-                found = true;
-            }
-        }
-        
-        if (!found){
-            Assert.fail(Assert._formatMessage(message, "Value " + needle + " (" + (typeof needle) + ") not found in array [" + haystack + "]."));
-        }
-    },
-
-    /**
-     * Asserts that a set of values are present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur. For this assertion to pass, all values must
-     * be found.
-     * @param {Object[]} needles An array of values that are expected in the array.
-     * @param {Array} haystack An array of values to check.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method containsItems
-     * @static
-     */
-    containsItems : function (needles /*:Object[]*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-
-        //begin checking values
-        for (var i=0; i < needles.length; i++){
-            this.contains(needles[i], haystack, message);
-        }
-    },
-
-    /**
-     * Asserts that a value matching some condition is present in an array. This uses
-     * a function to determine a match.
-     * @param {Function} matcher A function that returns true if the items matches or false if not.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method containsMatch
-     * @static
-     */
-    containsMatch : function (matcher /*:Function*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        //check for valid matcher
-        if (typeof matcher != "function"){
-            throw new TypeError("ArrayAssert.containsMatch(): First argument must be a function.");
-        }
-        
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (matcher(haystack[i])) {
-                found = true;
-            }
-        }
-        
-        if (!found){
-            Assert.fail(Assert._formatMessage(message, "No match found in array [" + haystack + "]."));
-        }
-    },
-
-    /**
-     * Asserts that a value is not present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur.
-     * @param {Object} needle The value that is expected in the array.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method doesNotContain
-     * @static
-     */
-    doesNotContain : function (needle /*:Object*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (haystack[i] === needle) {
-                found = true;
-            }
-        }
-        
-        if (found){
-            Assert.fail(Assert._formatMessage(message, "Value found in array [" + haystack + "]."));
-        }
-    },
-
-    /**
-     * Asserts that a set of values are not present in an array. This uses the triple equals 
-     * sign so no type cohersion may occur. For this assertion to pass, all values must
-     * not be found.
-     * @param {Object[]} needles An array of values that are not expected in the array.
-     * @param {Array} haystack An array of values to check.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method doesNotContainItems
-     * @static
-     */
-    doesNotContainItems : function (needles /*:Object[]*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-
-        for (var i=0; i < needles.length; i++){
-            this.doesNotContain(needles[i], haystack, message);
-        }
-
-    },
-        
-    /**
-     * Asserts that no values matching a condition are present in an array. This uses
-     * a function to determine a match.
-     * @param {Function} matcher A function that returns true if the items matches or false if not.
-     * @param {Array} haystack An array of values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method doesNotContainMatch
-     * @static
-     */
-    doesNotContainMatch : function (matcher /*:Function*/, haystack /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        //check for valid matcher
-        if (typeof matcher != "function"){
-            throw new TypeError("ArrayAssert.doesNotContainMatch(): First argument must be a function.");
-        }
-
-        var found /*:Boolean*/ = false;
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < haystack.length && !found; i++){
-            if (matcher(haystack[i])) {
-                found = true;
-            }
-        }
-        
-        if (found){
-            Assert.fail(Assert._formatMessage(message, "Value found in array [" + haystack + "]."));
-        }
-    },
-        
-    /**
-     * Asserts that the given value is contained in an array at the specified index.
-     * This uses the triple equals sign so no type cohersion will occur.
-     * @param {Object} needle The value to look for.
-     * @param {Array} haystack The array to search in.
-     * @param {int} index The index at which the value should exist.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method indexOf
-     * @static
-     */
-    indexOf : function (needle /*:Object*/, haystack /*:Array*/, index /*:int*/, message /*:String*/) /*:Void*/ {
-    
-        //try to find the value in the array
-        for (var i=0; i < haystack.length; i++){
-            if (haystack[i] === needle){
-                YAHOO.util.Assert.areEqual(index, i, message || "Value exists at index " + i + " but should be at index " + index + ".");
-                return;
-            }
-        }
-        
-        var Assert = YAHOO.util.Assert;
-        
-        //if it makes it here, it wasn't found at all
-        Assert.fail(Assert._formatMessage(message, "Value doesn't exist in array [" + haystack + "]."));
-    },
-        
-    /**
-     * Asserts that the values in an array are equal, and in the same position,
-     * as values in another array. This uses the double equals sign
-     * so type cohersion may occur. Note that the array objects themselves
-     * need not be the same for this test to pass.
-     * @param {Array} expected An array of the expected values.
-     * @param {Array} actual Any array of the actual values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method itemsAreEqual
-     * @static
-     */
-    itemsAreEqual : function (expected /*:Array*/, actual /*:Array*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        //one may be longer than the other, so get the maximum length
-        var len /*:int*/ = Math.max(expected.length, actual.length);
-        var Assert = YAHOO.util.Assert;
-       
-        //begin checking values
-        for (var i=0; i < len; i++){
-            Assert.areEqual(expected[i], actual[i], 
-                Assert._formatMessage(message, "Values in position " + i + " are not equal."));
-        }
-    },
-    
-    /**
-     * Asserts that the values in an array are equivalent, and in the same position,
-     * as values in another array. This uses a function to determine if the values
-     * are equivalent. Note that the array objects themselves
-     * need not be the same for this test to pass.
-     * @param {Array} expected An array of the expected values.
-     * @param {Array} actual Any array of the actual values.
-     * @param {Function} comparator A function that returns true if the values are equivalent
-     *      or false if not.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @return {Void}
-     * @method itemsAreEquivalent
-     * @static
-     */
-    itemsAreEquivalent : function (expected /*:Array*/, actual /*:Array*/, 
-                           comparator /*:Function*/, message /*:String*/) /*:Void*/ {
-        
-        //make sure the comparator is valid
-        if (typeof comparator != "function"){
-            throw new TypeError("ArrayAssert.itemsAreEquivalent(): Third argument must be a function.");
-        }
-        
-        //one may be longer than the other, so get the maximum length
-        var len /*:int*/ = Math.max(expected.length, actual.length);
-        
-        //begin checking values
-        for (var i=0; i < len; i++){
-            if (!comparator(expected[i], actual[i])){
-                throw new YAHOO.util.ComparisonFailure(YAHOO.util.Assert._formatMessage(message, "Values in position " + i + " are not equivalent."), expected[i], actual[i]);
-            }
-        }
-    },
-    
-    /**
-     * Asserts that an array is empty.
-     * @param {Array} actual The array to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isEmpty
-     * @static
-     */
-    isEmpty : function (actual /*:Array*/, message /*:String*/) /*:Void*/ {        
-        if (actual.length > 0){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Array should be empty."));
-        }
-    },    
-    
-    /**
-     * Asserts that an array is not empty.
-     * @param {Array} actual The array to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method isNotEmpty
-     * @static
-     */
-    isNotEmpty : function (actual /*:Array*/, message /*:String*/) /*:Void*/ {        
-        if (actual.length === 0){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Array should not be empty."));
-        }
-    },    
-    
-    /**
-     * Asserts that the values in an array are the same, and in the same position,
-     * as values in another array. This uses the triple equals sign
-     * so no type cohersion will occur. Note that the array objects themselves
-     * need not be the same for this test to pass.
-     * @param {Array} expected An array of the expected values.
-     * @param {Array} actual Any array of the actual values.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method itemsAreSame
-     * @static
-     */
-    itemsAreSame : function (expected /*:Array*/, actual /*:Array*/, 
-                          message /*:String*/) /*:Void*/ {
-        
-        //one may be longer than the other, so get the maximum length
-        var len /*:int*/ = Math.max(expected.length, actual.length);
-        var Assert = YAHOO.util.Assert;
-        
-        //begin checking values
-        for (var i=0; i < len; i++){
-            Assert.areSame(expected[i], actual[i], 
-                Assert._formatMessage(message, "Values in position " + i + " are not the same."));
-        }
-    },
-    
-    /**
-     * Asserts that the given value is contained in an array at the specified index,
-     * starting from the back of the array.
-     * This uses the triple equals sign so no type cohersion will occur.
-     * @param {Object} needle The value to look for.
-     * @param {Array} haystack The array to search in.
-     * @param {int} index The index at which the value should exist.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method lastIndexOf
-     * @static
-     */
-    lastIndexOf : function (needle /*:Object*/, haystack /*:Array*/, index /*:int*/, message /*:String*/) /*:Void*/ {
-    
-        var Assert = YAHOO.util.Assert;
-    
-        //try to find the value in the array
-        for (var i=haystack.length; i >= 0; i--){
-            if (haystack[i] === needle){
-                Assert.areEqual(index, i, Assert._formatMessage(message, "Value exists at index " + i + " but should be at index " + index + "."));
-                return;
-            }
-        }
-        
-        //if it makes it here, it wasn't found at all
-        Assert.fail(Assert._formatMessage(message, "Value doesn't exist in array."));        
-    }
-    
-};
-
-YAHOO.namespace("util");
-
-
-//-----------------------------------------------------------------------------
-// ObjectAssert object
-//-----------------------------------------------------------------------------
-
-/**
- * The ObjectAssert object provides functions to test JavaScript objects
- * for a variety of cases.
- *
- * @namespace YAHOO.util
- * @class ObjectAssert
- * @static
- */
-YAHOO.util.ObjectAssert = {
-        
-    /**
-     * Asserts that all properties in the object exist in another object.
-     * @param {Object} expected An object with the expected properties.
-     * @param {Object} actual An object with the actual properties.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method propertiesAreEqual
-     * @static
-     */
-    propertiesAreEqual : function (expected /*:Object*/, actual /*:Object*/, 
-                           message /*:String*/) /*:Void*/ {
-        
-        var Assert = YAHOO.util.Assert;
-        
-        //get all properties in the object
-        var properties /*:Array*/ = [];        
-        for (var property in expected){
-            properties.push(property);
-        }
-        
-        //see if the properties are in the expected object
-        for (var i=0; i < properties.length; i++){
-            Assert.isNotUndefined(actual[properties[i]], 
-                Assert._formatMessage(message, "Property '" + properties[i] + "' expected."));
-        }
-
-    },
-    
-    /**
-     * Asserts that an object has a property with the given name.
-     * @param {String} propertyName The name of the property to test.
-     * @param {Object} object The object to search.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method hasProperty
-     * @static
-     */    
-    hasProperty : function (propertyName /*:String*/, object /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!(propertyName in object)){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Property '" + propertyName + "' not found on object."));
-        }    
-    },
-    
-    /**
-     * Asserts that a property with the given name exists on an object instance (not on its prototype).
-     * @param {String} propertyName The name of the property to test.
-     * @param {Object} object The object to search.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method hasProperty
-     * @static
-     */    
-    hasOwnProperty : function (propertyName /*:String*/, object /*:Object*/, message /*:String*/) /*:Void*/ {
-        if (!YAHOO.lang.hasOwnProperty(object, propertyName)){
-            var Assert = YAHOO.util.Assert;
-            Assert.fail(Assert._formatMessage(message, "Property '" + propertyName + "' not found on object instance."));
-        }     
-    }
-};
-
-//-----------------------------------------------------------------------------
-// DateAssert object
-//-----------------------------------------------------------------------------
-
-/**
- * The DateAssert object provides functions to test JavaScript Date objects
- * for a variety of cases.
- *
- * @namespace YAHOO.util
- * @class DateAssert
- * @static
- */
- 
-YAHOO.util.DateAssert = {
-
-    /**
-     * Asserts that a date's month, day, and year are equal to another date's.
-     * @param {Date} expected The expected date.
-     * @param {Date} actual The actual date to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method datesAreEqual
-     * @static
-     */
-    datesAreEqual : function (expected /*:Date*/, actual /*:Date*/, message /*:String*/){
-        if (expected instanceof Date && actual instanceof Date){
-            var Assert = YAHOO.util.Assert;
-            Assert.areEqual(expected.getFullYear(), actual.getFullYear(), Assert._formatMessage(message, "Years should be equal."));
-            Assert.areEqual(expected.getMonth(), actual.getMonth(), Assert._formatMessage(message, "Months should be equal."));
-            Assert.areEqual(expected.getDate(), actual.getDate(), Assert._formatMessage(message, "Day of month should be equal."));
-        } else {
-            throw new TypeError("DateAssert.datesAreEqual(): Expected and actual values must be Date objects.");
-        }
-    },
-
-    /**
-     * Asserts that a date's hour, minutes, and seconds are equal to another date's.
-     * @param {Date} expected The expected date.
-     * @param {Date} actual The actual date to test.
-     * @param {String} message (Optional) The message to display if the assertion fails.
-     * @method timesAreEqual
-     * @static
-     */
-    timesAreEqual : function (expected /*:Date*/, actual /*:Date*/, message /*:String*/){
-        if (expected instanceof Date && actual instanceof Date){
-            var Assert = YAHOO.util.Assert;
-            Assert.areEqual(expected.getHours(), actual.getHours(), Assert._formatMessage(message, "Hours should be equal."));
-            Assert.areEqual(expected.getMinutes(), actual.getMinutes(), Assert._formatMessage(message, "Minutes should be equal."));
-            Assert.areEqual(expected.getSeconds(), actual.getSeconds(), Assert._formatMessage(message, "Seconds should be equal."));
-        } else {
-            throw new TypeError("DateAssert.timesAreEqual(): Expected and actual values must be Date objects.");
-        }
-    }
-    
-};
-
-YAHOO.register("yuitest_core", YAHOO.tool.TestRunner, {version: "2.6.0", build: "1321"});